aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
AgeCommit message (Expand)Author
2010-01-20emit integer and fp zeros as (e.g.) .byte 0 instead of .space 1,Chris Lattner
2010-01-20signficant cleanups to EmitGlobalConstant (including streamerization Chris Lattner
2010-01-20switch ConstantFP emission to use MCStreamer, significantly Chris Lattner
2010-01-20make mcasmstreamer handle expanding 8 byte integer constants to Chris Lattner
2010-01-20give createAsmStreamer an 'isLittleEndian' argument.Chris Lattner
2010-01-19simplify the rest of fp constant printing.Chris Lattner
2010-01-19simplify the code for printing x86 long double, don't do workChris Lattner
2010-01-19eliminate AsmPrinter::EmitZeros: just use MCStreamer directly.Chris Lattner
2010-01-19Generalize mcasmstreamer data emission APIs to take an address spaceChris Lattner
2010-01-19refactor code to be static functions instead of methods on AsmPrinter.Chris Lattner
2010-01-19mcstreamerize AsmPrinter::EmitZeros, at least when emitting to the Chris Lattner
2010-01-19remove MAI::ZeroDirectiveSuffix, which is only used by MASM,Chris Lattner
2010-01-19mcstreamer'ize the rest of EmitGlobalVariable that is used on Chris Lattner
2010-01-19stop using the .lcomm pseudoop on darwin, instead, directly use theChris Lattner
2010-01-19Avoid including DebugInfo.h in AsmPrinter.hDevang Patel
2010-01-19mc'ize some stuff, don't comment out .lcomm directive in -fverbose-asm mode.Chris Lattner
2010-01-19factor this code better.Chris Lattner
2010-01-19Now that we have everything nicely factored (e.g. asmprinter is notChris Lattner
2010-01-19hoist handling of external globals and special globals up to common code.Chris Lattner
2010-01-19move production of .reference directives for static ctor/dtor list onChris Lattner
2010-01-17now that MCSymbol::print doesn't use it's MAI argument, we can Chris Lattner
2010-01-17now that mangler is in libtarget, it can use MCAsmInfo instead of clientsChris Lattner
2010-01-17Switch some functions to take Twines, eliminate uses of StringExtras.h.Benjamin Kramer
2010-01-16move the mangler into libtarget from vmcore.Chris Lattner
2010-01-16unbreak the build.Chris Lattner
2010-01-16rename GetPrivateGlobalValueSymbolStub -> GetSymbolWithGlobalValueBase,Chris Lattner
2010-01-16eliminate uses of getMangledName from AsmPrinter.cpp, last up is Chris Lattner
2010-01-16Replace DebugLocTuple with DILocation.Devang Patel
2010-01-16fix inverted conditionalChris Lattner
2010-01-16CurrentFnName is now dead, remove it.Chris Lattner
2010-01-16remove the string form of printVisibility.Chris Lattner
2010-01-15supplement CurrentFnName with CurrentFnSym, which will eventuallyChris Lattner
2010-01-15add a version of AsmPrinter::printVisibility that takes an MCSymbol.Chris Lattner
2010-01-15add another helperChris Lattner
2010-01-15add a AsmPrinter::GetGlobalValueSymbol and GetExternalSymbolSymbolChris Lattner
2010-01-14Fix a comment.Dale Johannesen
2010-01-13remove uses of deprecated functions, this generates slightlyChris Lattner
2010-01-13use the new form of getNameWithPrefix, not makeNameProper.Chris Lattner
2010-01-13change Mangler::makeNameProper to return its result in a SmallVectorChris Lattner
2010-01-13fix assert in AsmPrinter::EmitGlobalConstantLargeInt to match reality.Chris Lattner
2010-01-13reduce nesting and code duplication in AsmPrinter::EmitGlobalConstantLargeInt.Chris Lattner
2010-01-13reduce indentation and add a fast-path to EmitGlobalConstant for 8-byte Chris Lattner
2010-01-13reduce indentation and use early exits in AsmPrinter::EmitConstantValueOnlyChris Lattner
2010-01-03fix PR5930, allowing the asmprinter to emit difference betweenChris Lattner
2009-12-25Remove dead store.Bill Wendling
2009-12-19Fix a bunch of little errors that Clang complains about when its being pedanticDouglas Gregor
2009-12-05Print newlines after printing labels for debug info, so that the outputDan Gohman
2009-12-05Fix this code to use DIScope instead of DICompileUnit, as in r90181.Dan Gohman
2009-12-04Print a space between the comment character and the text.Dan Gohman
2009-12-04Use new interfaces to print spill size.David Greene