aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
AgeCommit message (Expand)Author
2010-02-23use OutStreamer.EmitCodeAlignment for alignment in the textChris Lattner
2010-02-17move isOnlyReachableByFallthrough out of MachineBasicBlock into AsmPrinter,Chris Lattner
2010-02-10Fix "the the" and similar typos.Dan Gohman
2010-02-10fix a layering violation: VirtRegRewriter.cpp shouldn't use AsmPrinter.h.Chris Lattner
2010-02-10Move verbose asm instruction comments to using MCStreamer.Chris Lattner
2010-02-10print all the newlines at the end of instructions withChris Lattner
2010-02-09move target-independent opcodes out of TargetInstrInfoChris Lattner
2010-02-09Implement AsmPrinter support for several more operators which haveDan Gohman
2010-02-08now that @GOTOFF is no longer represented as a suffix on aChris Lattner
2010-02-08ConstantFoldConstantExpression can theoretically return the originalDan Gohman
2010-02-08When CodeGen'ing unoptimized code, there may be unfolded constant expressionsDan Gohman
2010-02-05An empty global constant (one of size 0) may have a section immediatelyBill Wendling
2010-02-03don't emit \n's at the start of X86AsmPrinter::runOnMachineFunction,Chris Lattner
2010-02-03privatize a bunch of methods and move \n printing into them.Chris Lattner
2010-02-03rejigger the world so that EmitInstruction prints the \n atChris Lattner
2010-02-03sink handling of target-independent machine instrs (otherChris Lattner
2010-02-02refactor code so that LLVMTargetMachine creates the asmstreamer and Chris Lattner
2010-02-02move handling of asm-verbose out of AsmPrinter.cpp into LLVMTargetMachine.cpp...Chris Lattner
2010-01-28add target hooks for emitting random gunk before and after the function body.Chris Lattner
2010-01-28Give AsmPrinter the most common expected implementation of Chris Lattner
2010-01-28emit a 0 byte instead of a noop if a function is empty on darwin.Chris Lattner
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-26now that enough stuff is constified, move function header printingChris Lattner
2010-01-26emit jump table an alias ".set" directives through MCStreamer as Chris Lattner
2010-01-26Eliminate SetDirective, and replace it with HasSetDirective.Chris 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