| Commit message (Expand) | Author | Age | Files | Lines |
* | rename X86ATTAsmPrinter.cpp -> X86AsmPrinter.cpp likewise the .h file. | Chris Lattner | 2009-09-20 | 1 | -947/+0 |
* | move target registry stuff to X86ATTAsmPrinter.cpp | Chris Lattner | 2009-09-20 | 1 | -0/+25 |
* | rename X86ATTAsmPrinter class -> X86AsmPrinter | Chris Lattner | 2009-09-20 | 1 | -29/+28 |
* | delete X86IntelAsmPrinter! Now -x86-asm-syntax just switches | Chris Lattner | 2009-09-20 | 1 | -1/+5 |
* | split random COFF asmprinter state out to X86COFFMachineModuleInfo.h. | Chris Lattner | 2009-09-20 | 1 | -116/+41 |
* | Make a new X8632_MachoTargetObjectFile TLOF implementation whose | Chris Lattner | 2009-09-18 | 1 | -24/+1 |
* | move FnStubs/GVSTubs/HiddenGVStub handling out of the X86 asmprinter | Chris Lattner | 2009-09-16 | 1 | -34/+28 |
* | tidy up | Chris Lattner | 2009-09-16 | 1 | -3/+3 |
* | rearrange X86ATTAsmPrinter::doFinalization, making a scan of | Chris Lattner | 2009-09-16 | 1 | -32/+34 |
* | Give MCInstPrinter a MCAsmInfo member, make X86ATTInstPrinter | Chris Lattner | 2009-09-14 | 1 | -1/+1 |
* | remove all but one reference to TargetRegisterDesc::AsmName. | Chris Lattner | 2009-09-13 | 1 | -4/+2 |
* | switch the x86 asmprinters to use getRegisterName instead | Chris Lattner | 2009-09-13 | 1 | -1/+1 |
* | split MCInst printing out of the X86ATTInstPrinter | Chris Lattner | 2009-09-13 | 1 | -0/+5 |
* | make X86ATTAsmPrinter::PrintPICBaseSymbol forward to X86MCInstLower. | Chris Lattner | 2009-09-13 | 1 | -8/+4 |
* | replace printBasicBlockLabel with EmitBasicBlockStart, | Chris Lattner | 2009-09-13 | 1 | -1/+1 |
* | convert some uses of printBasicBlockLabel to use GetMBBSymbol | Chris Lattner | 2009-09-13 | 1 | -4/+6 |
* | remove the "old" at&t style asmprinter. Unfortunately, most of the | Chris Lattner | 2009-09-12 | 1 | -13/+1 |
* | fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare | Chris Lattner | 2009-09-12 | 1 | -1/+1 |
* | fix pasto | Chris Lattner | 2009-09-11 | 1 | -2/+2 |
* | fix some fixmes: emit stubs in sorted order. | Chris Lattner | 2009-09-11 | 1 | -14/+34 |
* | turn on -experimental-asm-printer for x86 / AT&T by default. | Chris Lattner | 2009-09-11 | 1 | -1/+1 |
* | switch HiddenGVStubs to be a DenseMap instead of a string map, mirroring FnSt... | Chris Lattner | 2009-09-11 | 1 | -5/+17 |
* | Fix a bug I introduced in FnStubs generation, switch GVStubs to be a | Chris Lattner | 2009-09-11 | 1 | -22/+54 |
* | change FnStubs from being a StringMap<std::string> to being a much | Chris Lattner | 2009-09-11 | 1 | -8/+21 |
* | rearrange some code, export a SmallString version of DecorateCygMingName. | Chris Lattner | 2009-09-11 | 1 | -30/+28 |
* | remove DebugLoc from MCInst and eliminate "Comment printing" from | Chris Lattner | 2009-09-09 | 1 | -0/+4 |
* | hoist the call to processDebugLoc out of the generated | Chris Lattner | 2009-09-09 | 1 | -0/+2 |
* | disable the new asmprinter by default. Both the Mangler and MCSymbol | Chris Lattner | 2009-09-09 | 1 | -1/+1 |
* | turn the mcinst asmprinter on by default for x86, tweaking two tests to | Chris Lattner | 2009-09-09 | 1 | -1/+1 |
* | change selectiondag to add the sign extended versions of immediate operands | Chris Lattner | 2009-09-08 | 1 | -1/+1 |
* | Reference to hidden symbols do not have to go through non-lazy pointer in non... | Evan Cheng | 2009-09-03 | 1 | -4/+1 |
* | split mcinst lowering stuff out to its own file. | Chris Lattner | 2009-09-02 | 1 | -260/+5 |
* | Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. | Sandeep Patel | 2009-09-02 | 1 | -2/+2 |
* | X86/exp-asm-printer: Lower MachineOperand::MO_JumpTableIndex to MCOperand. | Daniel Dunbar | 2009-08-31 | 1 | -1/+34 |
* | Stop printing old asm printing code inline with -experimental-asm-printer (th... | Daniel Dunbar | 2009-08-31 | 1 | -9/+0 |
* | Avoid unnecessary +0 in experimental-asm-printer. | Daniel Dunbar | 2009-08-31 | 1 | -7/+10 |
* | llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue. | Daniel Dunbar | 2009-08-31 | 1 | -4/+23 |
* | Fix PR 4751, another difficulty with %a modifier on x86. | Dale Johannesen | 2009-08-25 | 1 | -0/+4 |
* | rename TAI -> MAI, being careful not to make MAILJMP instructions :) | Chris Lattner | 2009-08-22 | 1 | -33/+33 |
* | Rename TargetAsmInfo (and its subclasses) to MCAsmInfo. | Chris Lattner | 2009-08-22 | 1 | -2/+2 |
* | Record variable debug info at ISel time directly. | Devang Patel | 2009-08-22 | 1 | -3/+0 |
* | Add an extra line to conform with preferred style. | Dale Johannesen | 2009-08-19 | 1 | -1/+2 |
* | Handle 'a' modifier in X86 asms. PR 4742. | Dale Johannesen | 2009-08-19 | 1 | -0/+12 |
* | eliminate AsmPrinter::SwitchToSection and just have clients | Chris Lattner | 2009-08-19 | 1 | -7/+7 |
* | add support for some targetflags on GV operands. This allows us to | Chris Lattner | 2009-08-18 | 1 | -2/+44 |
* | the MinPad argument to PadToColumn only really makes sense to be 1, | Chris Lattner | 2009-08-17 | 1 | -4/+4 |
* | add support for external symbols + X86::MOVPC32r. | Chris Lattner | 2009-08-16 | 1 | -59/+120 |
* | implement support for lowering references to global addresses. For example, ... | Chris Lattner | 2009-08-16 | 1 | -5/+51 |
* | Various AsmWriter output cleanups. Use WriteAsOperand instead of | Dan Gohman | 2009-08-13 | 1 | -17/+16 |
* | Symbols with LinkerPrivateLinkage are weak. | Dale Johannesen | 2009-08-13 | 1 | -2/+2 |