--- Reverse-merging r80147 into '.':
[oota-llvm.git] / lib / CodeGen / AsmPrinter / AsmPrinter.cpp
2009-08-27 Bill Wendling--- Reverse-merging r80147 into '.':
2009-08-26 Devang PatelRevert 79977. It causes llvm-gcc bootstrap failures...
2009-08-25 Devang PatelUpdate DebugInfo interface to use metadata, instead...
2009-08-23 Chris Lattnerconvert LoopInfo.h and GraphWriter.h to use raw_ostream
2009-08-23 Chris Lattnerrandom code cleanups.
2009-08-23 Chris Lattnerremove some random indentation stuff, yay for efficiency.
2009-08-22 Chris Lattnerrename TAI -> MAI, being careful not to make MAILJMP...
2009-08-22 Chris LattnerRename TargetAsmInfo (and its subclasses) to MCAsmInfo.
2009-08-22 Devang PatelRecord variable debug info at ISel time directly.
2009-08-19 Daniel DunbarSwitch to SmallString::str from SmallString::c_str...
2009-08-19 Chris Lattnerswitch asmprinter to emit alignments through OutStreamer.
2009-08-19 Chris Lattnereliminate AsmPrinter::SwitchToSection and just have...
2009-08-18 David GreeneMake various changes suggested by Chris.
2009-08-18 Chris LattnerMake AsmStreamer maintain a notion of the current secti...
2009-08-17 Chris Lattnerthe MinPad argument to PadToColumn only really makes...
2009-08-17 Chris Lattnerchange AsmPrinter to switch sections using AsmStreamer...
2009-08-17 Chris Lattnergive MCAsmStreamer a TargetAsmInfo.
2009-08-14 Daniel DunbarAdd virtual printMCInst method to AsmPrinter, as a...
2009-08-13 Owen AndersonPush LLVMContexts through the IntegerType APIs.
2009-08-13 Dan GohmanVarious AsmWriter output cleanups. Use WriteAsOperand...
2009-08-12 Dan GohmanUse WriteAsOperand to print BasicBlock names.
2009-08-12 Dan GohmanFix a few more places to use PadToColumn instead of...
2009-08-12 Dan GohmanUse PadToColumn instead of tabs for aligning comments...
2009-08-11 Chris LattnerChange the asmprinter to print the comment character...
2009-08-11 Chris Lattner"TAI::JumpTableDirective" is always null for current...
2009-08-10 David GreeneAdd support for printing loop structure information...
2009-08-08 Chris Lattner1. Make MCSection an abstract class.
2009-08-08 Chris Lattnereliminate TargetLoweringObjectFileSparc in favor of...
2009-08-07 Chris Lattnercode cleanup
2009-08-07 Chris Lattnerremove a bunch of now-dead crud from the asmprinter...
2009-08-07 Chris Lattnertidy up
2009-08-05 David GreeneFix some column padding bugs, reorganize things as...
2009-08-05 Chris Lattnerremove the 'DataSectionStartSuffix' and 'TextSectionSta...
2009-08-05 Chris Lattneradd a temporary hook to allow reuse of the asmprinter...
2009-08-04 Chris Lattnerrip out SectionEndDirectiveSuffix support, only uses by
2009-08-03 Chris Lattnereliminate CurrentSection, rename CurrentSection_ -...
2009-08-03 Chris LattnerKill off SwitchToDataSection and SwitchToTextSection...
2009-08-03 Chris Lattnermake getObjFileLowering() return a non-const reference.
2009-08-03 Chris Lattnermake SwitchToSection accept null sections for now.
2009-08-02 Chris Lattnerconvert ctors/dtors section to be in TLOF instead of
2009-08-01 Chris Lattner(re)introduce new simpler apis for creation sectionkinds.
2009-08-01 Chris LattnerRemove "JumpTableDataSection" from TAI, instead, have...
2009-08-01 Chris Lattnerloweringinfo is always non-null.
2009-08-01 Chris Lattnerfix a problem Eli noticed where we would compile the...
2009-08-01 Chris LattnerChange SectionKind to be a property that is true of...
2009-07-31 Dan GohmanUse setPreservesAll and setPreservesCFG in CodeGen...
2009-07-31 David GreeneSimplify operand padding by keying off tabs in the...
2009-07-31 Chris Lattnermove emitUsedDirectiveFor to TargetLoweringObjectFile...
2009-07-31 Chris Lattnerswitch off of 'Section' onto MCSection. We're not...
2009-07-31 Chris Lattnerrefactor section construction in TLOF to be through...
2009-07-29 Chris Lattnerpass the mangler down into the various SectionForGlobal...
2009-07-28 Chris LattnerRip all of the global variable lowering logic out of...
2009-07-27 Chris Lattnerhoist MCContext/MCStreamer up to AsmPrinter since we...
2009-07-27 Chris LattnerEliminate SectionFlags, just embed a SectionKind into...
2009-07-26 Daniel DunbarRemove Value::getName{Start,End}, the last of the old...
2009-07-26 Chris Lattnerremove a densemap from TargetAsmInfo that was uniquing...
2009-07-26 Chris Lattnermake SectionKind know whether a symbol is weak or not...
2009-07-26 Chris Lattnerrename Mergable -> Mergeable and Writable -> Writeable
2009-07-26 Chris Lattnertwo files I missed in the last commit.
2009-07-26 Chris Lattnersimplify getSectionForMergableConstant to take a Sectio...
2009-07-25 Daniel DunbarRemove Value::{isName, getNameRef}.
2009-07-24 Chris Lattnerremove a use of SectionFlagsForGlobal.
2009-07-24 Chris Lattnerdocument SectionFlags::Named better and make it more...
2009-07-22 David GreenePut comment printing under asm-verbose.
2009-07-22 Chris Lattnerremove the SelectSectionForMachineConst hook, replacing...
2009-07-21 Chris Lattnermake AsmPrinter::doFinalization iterate over the global...
2009-07-21 Chris LattnerRename LessPrivateGlobalPrefix -> LinkerPrivateGlobalPr...
2009-07-20 Bill WendlingPass in the unfortunately named "LessPrivatePrefix...
2009-07-20 Chris Lattnerimplement a new magic global "llvm.compiler.used" which...
2009-07-17 Chris Lattnerremove AsmPrinter::findGlobalValue, just use Value...
2009-07-17 Chris LattnerUntangle a snarl that I discovered when updating the...
2009-07-16 David GreeneEmit line numbers in asm comments when available.
2009-07-15 Chris Lattnerremove printSuffixedName.
2009-07-14 David GreeneHave asm printers use formatted_raw_ostream directly...
2009-07-14 Chris LattnerReapply my previous asmprinter changes now with more...
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-14 Daniel DunbarRevert r7561{9,8,7,6}, which depend on r75610.
2009-07-14 Chris Lattnerrename getValueName -> getMangledName. These two files...
2009-07-14 Chris LattnerChange the internal interface to makeNameProper to...
2009-07-13 David GreeneAdd infrastructure to allow post instruction printing...
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-07-11 Torok EdwinConvert more assert(0)+abort() -> LLVM_UNREACHABLE,
2009-07-01 Daniel DunbarRemove unused AsmPrinter OptLevel argument, and propogate.
2009-06-25 Owen AndersonPrivatize some more debug-related static data.
2009-06-24 Owen AndersonMove local statics to per-instance variables.
2009-06-24 Chris Lattnersink management of DwarfWriter & MachineModuleInfo...
2009-06-24 Chris Lattnersink dwarf finalization out of each target into AsmPrin...
2009-06-24 Chris Lattnereliminate the ExtWeakSymbols set from AsmPrinter. ...
2009-06-19 Devang PatelMove up dwarf writer initialization in common AsmPrinte...
2009-06-18 Chris Lattnermove mangler quote handling from asm printers to Target...
2009-06-18 Evan ChengOn Darwin, ams printer should output a second label...
2009-06-14 Dan GohmanFix old-style type names in comments.
2009-05-21 Bill WendlingTemporarily revert r72191. It was causing an assert...
2009-05-20 Argyrios KyrtzidisIntroduce DebugScope which gets embedded into the machi...
2009-05-09 Duncan SandsRename PaddedSize to AllocSize, in the hope that this
2009-05-07 Argyrios KyrtzidisMove the tablegen-produced DebugLoc handling into a...
2009-04-29 Bill WendlingInstead of passing in an unsigned value for the optimiz...
2009-04-29 Bill WendlingSecond attempt:
2009-04-28 Sanjiv GuptaInitialized arrays can be in any address space.
2009-04-28 Bill Wendlingr70270 isn't ready yet. Back this out. Sorry for the...
next