aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
AgeCommit message (Expand)Author
2009-08-11"TAI::JumpTableDirective" is always null for current arm targets, simplifyChris Lattner
2009-08-10Add support for printing loop structure information in asm comments.David Greene
2009-08-081. Make MCSection an abstract class.Chris Lattner
2009-08-08eliminate TargetLoweringObjectFileSparc in favor of a TAI hook.Chris Lattner
2009-08-07code cleanupChris Lattner
2009-08-07remove a bunch of now-dead crud from the asmprinter and TAI interfaces.Chris Lattner
2009-08-07tidy upChris Lattner
2009-08-05Fix some column padding bugs, reorganize things as suggested by ChrisDavid Greene
2009-08-05remove the 'DataSectionStartSuffix' and 'TextSectionStartSuffix' knobs.Chris Lattner
2009-08-05add a temporary hook to allow reuse of the asmprinter from the disassembler.Chris Lattner
2009-08-04rip out SectionEndDirectiveSuffix support, only uses byChris Lattner
2009-08-03eliminate CurrentSection, rename CurrentSection_ -> CurrentSection, make it p...Chris Lattner
2009-08-03Kill off SwitchToDataSection and SwitchToTextSection, woo.Chris Lattner
2009-08-03make getObjFileLowering() return a non-const reference.Chris Lattner
2009-08-03make SwitchToSection accept null sections for now.Chris Lattner
2009-08-02convert ctors/dtors section to be in TLOF instead ofChris Lattner
2009-08-01(re)introduce new simpler apis for creation sectionkinds.Chris Lattner
2009-08-01Remove "JumpTableDataSection" from TAI, instead, have AsmPrinterChris Lattner
2009-08-01loweringinfo is always non-null.Chris Lattner
2009-08-01fix a problem Eli noticed where we would compile the attached ptrtointChris Lattner
2009-08-01Change SectionKind to be a property that is true of a *section*, itChris Lattner
2009-07-31Use setPreservesAll and setPreservesCFG in CodeGen passes.Dan Gohman
2009-07-31Simplify operand padding by keying off tabs in the asm stream. IfDavid Greene
2009-07-31move emitUsedDirectiveFor to TargetLoweringObjectFile and rename it toChris Lattner
2009-07-31switch off of 'Section' onto MCSection. We're not properly usingChris Lattner
2009-07-31refactor section construction in TLOF to be through an explicitChris Lattner
2009-07-29pass the mangler down into the various SectionForGlobal methods.Chris Lattner
2009-07-28Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner
2009-07-27hoist MCContext/MCStreamer up to AsmPrinter since we're going to start creatingChris Lattner
2009-07-27Eliminate SectionFlags, just embed a SectionKind into SectionChris Lattner
2009-07-26Remove Value::getName{Start,End}, the last of the old Name APIs.Daniel Dunbar
2009-07-26remove a densemap from TargetAsmInfo that was uniquing the targetflags strings,Chris Lattner
2009-07-26make SectionKind know whether a symbol is weak or not in additionChris Lattner
2009-07-26rename Mergable -> Mergeable and Writable -> WriteableChris Lattner
2009-07-26two files I missed in the last commit.Chris Lattner
2009-07-26simplify getSectionForMergableConstant to take a SectionKind.Chris Lattner
2009-07-25Remove Value::{isName, getNameRef}.Daniel Dunbar
2009-07-24remove a use of SectionFlagsForGlobal.Chris Lattner
2009-07-24document SectionFlags::Named better and make it more easily greppable byChris Lattner
2009-07-22Put comment printing under asm-verbose.David Greene
2009-07-22remove the SelectSectionForMachineConst hook, replacing it withChris Lattner
2009-07-21make AsmPrinter::doFinalization iterate over the global variablesChris Lattner
2009-07-21Rename LessPrivateGlobalPrefix -> LinkerPrivateGlobalPrefix to match theChris Lattner
2009-07-20Pass in the unfortunately named "LessPrivatePrefix" for theBill Wendling
2009-07-20implement a new magic global "llvm.compiler.used" which is like llvm.used, butChris Lattner
2009-07-17remove AsmPrinter::findGlobalValue, just use Value::stripPointerCasts instead.Chris Lattner
2009-07-17Untangle a snarl that I discovered when updating the mangler,Chris Lattner
2009-07-16Emit line numbers in asm comments when available.David Greene
2009-07-15remove printSuffixedName.Chris Lattner
2009-07-14Have asm printers use formatted_raw_ostream directly to avoid aDavid Greene