aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/AsmPrinter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Honour aliases visibility during asm emissionAnton Korobeynikov2008-03-111-1/+9
* Don't fill eh frames even though these are text sections.Evan Cheng2008-02-291-2/+3
* Add a quick and dirty "loop aligner pass". x86 uses it to align its loops to ...Evan Cheng2008-02-281-8/+22
* Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov2008-02-201-1/+2
* Don't make up new directives. (".set_foobar")Nick Lewycky2008-02-071-1/+1
* Dwarf requires variable entries to be in the source order. Right now, since w...Evan Cheng2008-02-041-4/+7
* Get rid of the annoying blank lines before labels.Evan Cheng2008-02-021-3/+3
* SDIsel processes llvm.dbg.declare by recording the variable debug information...Evan Cheng2008-02-021-0/+6
* Remove the nasty LABEL hack with a much less evil one. Now llvm.dbg.func.star...Evan Cheng2008-02-011-0/+4
* Handle 'X' constraint in asm's better.Dale Johannesen2008-01-291-2/+3
* For long double constants, print an approximation of their value to the .s fi...Chris Lattner2008-01-271-2/+6
* Enabling the target-independent garbage collection infrastructure by hooking itGordon Henriksen2008-01-071-0/+19
* Rename SSARegMap -> MachineRegisterInfo in keeping with the idea Chris Lattner2007-12-311-0/+1
* Add new shorter predicates for testing machine operands for various types: Chris Lattner2007-12-301-1/+1
* MachineOperand::getImmedValue -> MachineOperand::getImmChris Lattner2007-12-301-7/+4
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Support more insane CEP's in AsmPrinter (Yes, PyPy folks do really use them).Anton Korobeynikov2007-12-181-1/+24
* Fix PIC jump table codegen on x86-32/linux. In fact, such thing should be app...Anton Korobeynikov2007-11-141-28/+41
* Much improved pic jumptable codegen:Evan Cheng2007-11-091-9/+10
* Make labels work in asm blocks; allow labels asDale Johannesen2007-11-051-7/+12
* Don't output ABI size padding twice. By using the storeDuncan Sands2007-11-051-5/+6
* Eliminate the remaining uses of getTypeSize. ThisDuncan Sands2007-11-051-17/+16
* Revert 42908 for now.Evan Cheng2007-10-141-19/+19
* Change the names used for internal labels to use the currentDan Gohman2007-10-121-19/+19
* Implement ppc long double->uint conversion.Dale Johannesen2007-10-111-0/+33
* Call getFunctionNumber() instead of referencing FunctionNumber directly,Dan Gohman2007-10-081-1/+1
* Fix stride computations for long double arrays.Dale Johannesen2007-10-011-1/+5
* minor long double related changesDale Johannesen2007-09-281-0/+1
* Make temporaries explicit to avoid prematureDale Johannesen2007-09-261-1/+3
* Add a routine for emitting .file directives, for setting upDan Gohman2007-09-241-0/+11
* Don't pass back a reference to a temporary.Bill Wendling2007-09-181-2/+1
* The exception handling function info should be reset for each newBill Wendling2007-09-181-4/+2
* Objective-C was generating EH frame info like this:Bill Wendling2007-09-181-0/+9
* Remove isReg, isImm, and isMBB, and change all their users to use Dan Gohman2007-09-141-1/+1
* Revise previous patch per review comments.Dale Johannesen2007-09-121-4/+41
* Add APInt interfaces to APFloat (allows directlyDale Johannesen2007-09-111-8/+10
* Next round of APFloat changes.Dale Johannesen2007-09-061-1/+2
* Proper handle case, when aliasee is external weak symbol referenced only by a...Anton Korobeynikov2007-09-061-6/+13
* move this check. ppc outputs .no_dead_strip properlyAndrew Lenharth2007-08-221-6/+6
* Print a space between the comment character and the basic block name,Dan Gohman2007-07-301-1/+2
* EmitAlignment() also emits optional fill value.Evan Cheng2007-07-251-2/+5
* Global ctors / dtors alignment shouldn't be hard-coded at 4. e.g. It could be...Evan Cheng2007-06-041-2/+4
* Fix the asmprinter so that a globalvalue can specify an explicit alignmentChris Lattner2007-05-311-5/+18
* Drop 'const'Devang Patel2007-05-031-1/+1
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-1/+1
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-1/+2
* Clean up multi-line asam string printing. Instead of printing:Chris Lattner2007-04-301-1/+1
* Implement review feedbackAnton Korobeynikov2007-04-291-12/+3
* Implement review feedback. Aliasees can be either GlobalValue's orAnton Korobeynikov2007-04-281-6/+17
* Implement aliases. This fixes PR1017 and it's dependent bugs. CFE partAnton Korobeynikov2007-04-251-1/+25