Handle versioning of compile unit.
[oota-llvm.git] / lib / CodeGen / AsmPrinter.cpp
2006-06-15 Jim LaskeyWas pointed out that structure alignment and type align...
2006-06-15 Jim LaskeyAlignment of globals has not been quite right. Needed...
2006-06-15 Evan ChengAssert. Rather than silently stop printing.
2006-06-08 Chris LattnerFix an assert-on-inline-inline-asm bug.
2006-05-12 Chris LattnerRemove dead var
2006-05-12 Owen AndersonRefactor a bunch of includes so that TargetMachine...
2006-05-09 Chris LattnerFix a regression in my patch from last night that broke...
2006-05-09 Chris LattnerImplement MASM sections correctly, without a "has masm...
2006-05-09 Chris LattnerOh yeah, there are two of these now, unify both.
2006-05-09 Chris LattnerSetting SwitchToSectionDirective properly in the MASM...
2006-05-09 Chris LattnerDon't prefix section directives with a tab. Doing...
2006-05-09 Chris LattnerMake the masm codepath work like the normal code path.
2006-05-09 Chris LattnerThe MASM asmprinter has been fixed, these hacks are...
2006-05-09 Chris LattnerSplit SwitchSection into SwitchTo{Text|Data}Section...
2006-05-06 Jeff CohenFix some loose ends in MASM support.
2006-05-05 Chris LattnerIndent multiline asm strings more nicely
2006-05-03 Owen AndersonRefactor TargetMachine, pushing handling of TargetData...
2006-05-02 Nate BegemanPrint function number instead of name
2006-05-02 Nate BegemanExtend printBasicBlockLabel a bit so that it can be...
2006-05-02 Jeff CohenDe-virtualize SwitchSection.
2006-05-02 Jeff CohenDe-virtualize EmitZeroes.
2006-05-02 Jeff CohenMake Intel syntax mode friendlier to Microsoft ML assem...
2006-05-01 Chris LattnerFormat #APP lines a bit nicer
2006-04-22 Nate BegemanJumpTable support! What this represents is working...
2006-03-07 Jim LaskeyUse "llvm.metadata" section for debug globals. Filter...
2006-03-03 Evan ChengMove #include "llvm/CodeGen/AsmPrinter.h" to top since...
2006-03-01 Evan ChengDon't print llvm constant in assmebly file. Assembler...
2006-02-24 Chris LattnerUse the PrintAsmMemoryOperand to print addressing modes.
2006-02-24 Chris LattnerPass all the flags to the asm printer, not just the...
2006-02-23 Chris LattnerRecord all of the expanded registers in the DAG and...
2006-02-09 Chris LattnerAdjust to MachineConstantPool interface change: instead...
2006-02-09 Chris Lattnerrename fields of constant pool entries
2006-02-09 Chris LattnerSimplify code, alignment must be specified now.
2006-02-08 Chris LattnerAdd support for assembler directives that wrap inline asm
2006-02-06 Chris LattnerAdd support for modifier characters to operand printers
2006-02-05 Chris Lattnermake sure that global doubles are aligned to 8 bytes
2006-02-05 Chris LattnerImplement the AsmPrinter::getPreferredAlignmentLog...
2006-02-01 Chris LattnerImplement smart printing of inline asm strings, handlin...
2006-02-01 Chris Lattneradjust to changes in InlineAsm interface. Fix a few...
2006-01-31 Evan ChengAllow the specification of explicit alignments for...
2006-01-30 Chris LattnerPrint the most trivial inline asms.
2006-01-27 Chris LattnerStub out a method
2006-01-26 Jim LaskeySet up MachineDebugInfo to scan for debug information...
2006-01-24 Chris Lattnerrename method
2006-01-23 Chris LattnerPrint file-scope inline asm blocks at the start of...
2006-01-12 Chris LattnerIf using __main, emit global ctor/dtor list like any...
2006-01-04 Jim LaskeyApplied some recommend changes from sabre. The dominat...
2006-01-04 Jim LaskeyTie dwarf generation to darwin assembler.
2005-12-28 Duraid Madinaadd these so I can be less naughty
2005-12-21 Chris LattnerDon't emit a null terminator, nor anything after it...
2005-12-13 Chris LattnerAdd a couple more fields, move ctor init list to .cpp...
2005-12-09 Chris LattnerAvoid emitting two tabs when switching to a named section
2005-12-06 Nate BegemanTeach the SelectionDAG ISel how to turn ConstantPacked...
2005-11-21 Chris LattnerAllow target to customize directive used to switch...
2005-11-21 Chris Lattnerincrement the function number in SetupMachineFunction
2005-11-21 Chris LattnerAdjust to capitalized asmprinter method names
2005-11-21 Chris LattnerAdd section switching to common code generator code...
2005-11-15 Chris LattnerRemove extraneous parents around constants when using...
2005-11-14 Chris LattnerTeach emitAlignment to handle explicit alignment reques...
2005-11-10 Chris LattnerGet rid of casts by #including the right header
2005-11-10 Chris LattnerCompile C strings to:
2005-11-10 Chris Lattneradd support for .asciz, and enable it by default. ...
2005-08-17 Jim LaskeyCulling out use of unions for converting FP to bits...
2005-08-08 Chris LattnerHandle 64-bit constant exprs on 64-bit targets.
2005-05-15 Duraid MadinaaCC and STLport complained about this, because they...
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-04-02 Duraid Madinaadd support for prefix/suffix strings to go around...
2005-02-14 Chris LattnerPrint GEP offsets as signed values instead of unsigned...
2005-02-04 Andrew Lenharthfix constant pointer outputing on 64 bit machines
2005-01-08 Chris LattnerSilence VS warnings
2004-11-28 Chris LattnerFix SingleSource/UnitTests/2004-11-28-GlobalBoolLayout...
2004-10-16 Chris LattnerAdd support for undef
2004-08-24 Chris LattnerDo not use .xword and friends to emit zeros on V9....
2004-08-18 Chris LattnerRename var
2004-08-17 Chris LattnerAdd support for targets without a .zero directive
2004-08-17 Chris LattnerAdd support for alignment
2004-08-17 Chris LattnerUse a designated comment character when printing comments.
2004-08-17 Chris LattnerAdd support for targets that have .quad, drop extra...
2004-08-17 Chris LattnerImplement emitGlobalConstant
2004-08-17 Chris LattnerWe now allow targets to use any prefix they want for...
2004-08-17 Chris LattnerSome asmwriters want an _ prefix
2004-08-16 Chris LattnerInitial implementation of the asmprinter base class