| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | move EmitCFAByte to AsmPrinter. | Chris Lattner | 2010-04-04 | 2 | -19/+20 |
* | inline EmitDifference away. | Chris Lattner | 2010-04-04 | 5 | -45/+38 |
* | resolve a fixme. | Chris Lattner | 2010-04-04 | 1 | -6/+1 |
* | move gettemplabel and getdwlabel to AsmPrinter and rename | Chris Lattner | 2010-04-04 | 5 | -129/+137 |
* | move uleb/sleb printing into AsmPrinter from DwarfPrinter. | Chris Lattner | 2010-04-04 | 8 | -113/+125 |
* | more interface cleanup make some helpers static functions. | Chris Lattner | 2010-04-04 | 1 | -27/+24 |
* | clean up the asmprinter header and privatize some stuff. | Chris Lattner | 2010-04-04 | 3 | -32/+32 |
* | use stringref instead of strtol to avoid errno gymnastics. | Chris Lattner | 2010-04-04 | 1 | -7/+6 |
* | split inline asm support out to its own .cpp file. | Chris Lattner | 2010-04-04 | 3 | -294/+317 |
* | inline processDebugLoc and simplify it. | Chris Lattner | 2010-04-04 | 1 | -19/+7 |
* | minor tidying. | Chris Lattner | 2010-04-04 | 1 | -15/+14 |
* | clean up the asmprinter interface a bit, rename a few | Chris Lattner | 2010-04-04 | 1 | -15/+9 |
* | remove TargetMachine.h #include, also, TRI isn't used frequently | Chris Lattner | 2010-04-04 | 4 | -3/+7 |
* | lazily allocate the GCMetadataPrinters map and remove DenseMap | Chris Lattner | 2010-04-04 | 1 | -10/+25 |
* | Momentous day: remove the "O" member from AsmPrinter. Now all | Chris Lattner | 2010-04-04 | 2 | -20/+3 |
* | now that all operand printing happens to specified streams, we can | Chris Lattner | 2010-04-04 | 1 | -5/+0 |
* | remove the raw_ostream from various dwarf printing things. | Chris Lattner | 2010-04-04 | 8 | -33/+24 |
* | mcize the gc metadata printing stuff. | Chris Lattner | 2010-04-04 | 3 | -51/+41 |
* | use EmitRawText instead of O in DwarfPrinter. | Chris Lattner | 2010-04-04 | 2 | -3/+1 |
* | fix PrintAsmOperand and PrintAsmMemoryOperand to pass down | Chris Lattner | 2010-04-04 | 1 | -4/+6 |
* | change this back too | Chris Lattner | 2010-04-04 | 1 | -1/+1 |
* | check in what I tested. :( | Chris Lattner | 2010-04-04 | 1 | -1/+1 |
* | MMI is always available, rename O -> OS in printInlineAsm. | Chris Lattner | 2010-04-04 | 1 | -16/+16 |
* | fix an ugly wart in the MCInstPrinter api where the | Chris Lattner | 2010-04-04 | 1 | -1/+1 |
* | change a ton of code to not implicitly use the "O" raw_ostream | Chris Lattner | 2010-04-04 | 1 | -6/+6 |
* | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-04 | 2 | -28/+56 |
* | asmstreamerize the .size directive for function bodies, force clients | Chris Lattner | 2010-04-03 | 1 | -10/+13 |
* | emit the cygwin stub thing through mcstreamer. | Chris Lattner | 2010-04-03 | 1 | -4/+11 |
* | add a twine form of MCStreamer::EmitRawText, and mc'ize | Chris Lattner | 2010-04-03 | 1 | -16/+20 |
* | start moving towards emitting inline asm statements with | Chris Lattner | 2010-04-03 | 1 | -9/+35 |
* | add a new EmitInlineAsm function to asmprinter to handle inline asm. | Chris Lattner | 2010-04-03 | 1 | -5/+19 |
* | mc'ize comment printing around file scope inline asm. | Chris Lattner | 2010-04-03 | 1 | -5/+10 |
* | Ok, third time's the charm. No changes from last time except the CMake | David Greene | 2010-04-02 | 4 | -34/+67 |
* | Skip debug info when looking for existing EH calls at the | Dale Johannesen | 2010-04-02 | 1 | -2/+2 |
* | Fix anachronism. | Benjamin Kramer | 2010-04-02 | 1 | -1/+1 |
* | fix the llvm-x86_64-linux buildbot. | Chris Lattner | 2010-04-02 | 1 | -0/+1 |
* | remove empty file. | Chris Lattner | 2010-04-02 | 2 | -1/+0 |
* | stop using DebugLoc::getUnknownLoc() | Chris Lattner | 2010-04-02 | 6 | -21/+13 |
* | Switch the code generator (except the JIT) onto the new DebugLoc | Chris Lattner | 2010-04-02 | 8 | -106/+98 |
* | Correctly lower memset / memcpy of undef. It should be a nop. PR6767. | Evan Cheng | 2010-04-02 | 1 | -11/+23 |
* | Revert 100204. It broke a bunch of tests and apparently changed what passes a... | Evan Cheng | 2010-04-02 | 3 | -66/+34 |
* | Update CMake. | Benjamin Kramer | 2010-04-02 | 1 | -0/+1 |
* | Let's try this again. Re-apply 100143 including an apparent missing | David Greene | 2010-04-02 | 3 | -34/+66 |
* | Revert r100191 since it breaks objc in clang | Mon P Wang | 2010-04-02 | 2 | -53/+26 |
* | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-02 | 2 | -26/+53 |
* | After trivial coalescing, the MI being visited may have become a copy. Avoid ... | Evan Cheng | 2010-04-02 | 1 | -1/+5 |
* | Teach AnalyzeBranch, RemoveBranch and the branch | Dale Johannesen | 2010-04-02 | 1 | -3/+9 |
* | Revert r100143. | Eric Christopher | 2010-04-01 | 3 | -66/+34 |
* | Revert r100117. | Devang Patel | 2010-04-01 | 1 | -18/+6 |
* | Add some switches helpful for debugging: | David Greene | 2010-04-01 | 3 | -34/+66 |