aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter
AgeCommit message (Expand)Author
2010-01-28Remove the argument from EmitJumpTableInfo, because it doesn't need it.Chris Lattner
2010-01-28Drop the argument to AsmPrinter::EmitConstantPool and make it virtual.Chris Lattner
2010-01-28rename printVisibility to EmitVisibility and make it private,Chris Lattner
2010-01-27add a new AsmPrinter::EmitFunctionEntryLabel virtual function,Chris Lattner
2010-01-26mcize label emission for functions.Chris Lattner
2010-01-26use EmitLinkage for functions as well as globals. One outputChris Lattner
2010-01-26pull linkage emission code out to a new EmitLinkage function.Chris Lattner
2010-01-26rearrange some directives, no functionality change.Chris Lattner
2010-01-26remove a noop function.Chris Lattner
2010-01-26now that enough stuff is constified, move function header printingChris Lattner
2010-01-26constify a bunch of dwarf stuff now that the registerinfo methodChris Lattner
2010-01-26emit jump table an alias ".set" directives through MCStreamer as Chris Lattner
2010-01-26Use AssertingVH, just to be paranoid.Devang Patel
2010-01-26Emit DW_AT_containing_type attribute for a class if containing type is known.Devang Patel
2010-01-26Eliminate SetDirective, and replace it with HasSetDirective.Chris Lattner
2010-01-26eliminate MCAsmInfo::NeedsSet: we now just use .set on any platformChris Lattner
2010-01-26eliminate the TargetLowering::UsesGlobalOffsetTable bool, which isChris Lattner
2010-01-26Now that printPICJumpTableSetLabel is not overloaded,Chris Lattner
2010-01-26Move getJTISymbol from MachineJumpTableInfo to MachineFunction,Chris Lattner
2010-01-26add a new MachineJumpTableInfo::getJTISymbol method,Chris Lattner
2010-01-26simplify asmprinter: only emit .set directives when entries haveChris Lattner
2010-01-26rename printPICJumpTableEntry -> EmitJumpTableEntry,Chris Lattner
2010-01-26add a new MachineBasicBlock::getSymbol method, replacingChris Lattner
2010-01-26make MachineFunction keep track of its ID and make Chris Lattner
2010-01-26Add support for target-specific 32-bit custom-lowered Chris Lattner
2010-01-26switch jump table entry emission to be based on EntryKindChris Lattner
2010-01-25Rearrange handling of jump tables. Highlights:Chris Lattner
2010-01-25eliminate redundant argument to EmitJumpTableInfoChris Lattner
2010-01-25mcstreamerize gprel32 emission.Chris Lattner
2010-01-25mcize the non-gprel cases of AsmPrinter::printPICJumpTableEntryChris Lattner
2010-01-25handle the _set_ symbol with an MCSymbol.Chris Lattner
2010-01-25rename MAI::PICJumpTableDirective to MAI::GPRel32Directive toChris Lattner
2010-01-25pull the non-pic jump table case out of printPICJumpTableEntryChris Lattner
2010-01-25remove JumpTableDirective, it is always null.Chris Lattner
2010-01-25sink an arm specific method out of asmprinter into the ARMAsmPrinter andChris Lattner
2010-01-25mcstreamerize .file and .file. This also fixes an issue where theChris Lattner
2010-01-25emit ELF .type directives through MCStreamer instead of doing it textually.Chris Lattner
2010-01-25add a commentChris Lattner
2010-01-25emit the .size directive for global variables on ELF throughChris Lattner
2010-01-24make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.Chris Lattner
2010-01-24fix some issues where we weren't emitting enough newlines.Chris Lattner
2010-01-24when emitting DIEs, emit the comment on the same line as the directive.Chris Lattner
2010-01-23mcize lcomm, simplify .comm, extend both to support 64-bit sizes.Chris Lattner
2010-01-23resolve a fixme: the "nonexecutable stack directive" is actuallyChris Lattner
2010-01-23mcize visibility directives.Chris Lattner
2010-01-23move the various directive enums out of the MCStreamer classChris Lattner
2010-01-23Change constantexpr global variable initializers to convert the constantsChris Lattner
2010-01-23mcstreamerize .no_dead_strip and .reference for static ctors/dtors.Chris Lattner
2010-01-23mcize jump table and constant pool entry labels, .local on elf,Chris Lattner
2010-01-23emit .ascii and .asciz through MCStreamer.Chris Lattner