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