aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/AsmWriterEmitter.cpp
AgeCommit message (Expand)Author
2010-07-16Update comment.Bill Wendling
2010-04-04change a ton of code to not implicitly use the "O" raw_ostreamChris Lattner
2010-03-19make inst_begin/inst_end iterate over InstructionsByEnumValue.Chris Lattner
2010-03-19revert 98912Chris Lattner
2010-03-19make inst_begin/inst_end iterate over InstructionsByEnumValue.Chris Lattner
2010-03-19change Target.getInstructionsByEnumValue to return a referenceChris Lattner
2010-02-11enhance llvm-mc -show-inst to print the enum of an instruction, like so:Chris Lattner
2010-02-09Fixed some indentation in the AsmWriterInstSean Callanan
2010-02-09Per PR 6219, factored AsmWriterInst and AsmWriterOperandSean Callanan
2010-02-03sink handling of target-independent machine instrs (otherChris Lattner
2009-11-06Don't print a redundant tab for inline asm, and do use the new printKill.Dan Gohman
2009-10-17Move UnescapeString to a static function for its sole client; its inefficient...Daniel Dunbar
2009-09-28Introduce the TargetInstrInfo::KILL machine instruction and get rid of theJakob Stoklund Olesen
2009-09-18add a comment.Chris Lattner
2009-09-14slightly increase prettiness.Chris Lattner
2009-09-14emit the register table as a massive string to avoid relocations.Chris Lattner
2009-09-14move StringToOffsetTable out to its own header.Chris Lattner
2009-09-14factor string table generation out to its own class. This changesChris Lattner
2009-09-13the tblgen produced 'getRegisterName' method does not accessChris Lattner
2009-09-13make tblgen produce a function that returns the name for a physreg.Chris Lattner
2009-09-11PHI nodes can never reach the asmprinter, assert and die instead of printingChris Lattner
2009-09-09remove DebugLoc from MCInst and eliminate "Comment printing" fromChris Lattner
2009-09-09Fix a subtle bug in "return;" generation which caused us to missChris Lattner
2009-09-09hoist the call to processDebugLoc out of the generatedChris Lattner
2009-08-23remove some DOUTsChris Lattner
2009-08-22Record variable debug info at ISel time directly.Devang Patel
2009-08-17the MinPad argument to PadToColumn only really makes sense to be 1,Chris Lattner
2009-08-08make printInstruction return void since its result is omitted. Make the Chris Lattner
2009-08-08don't check the result of printInstruction anymore.Chris Lattner
2009-08-07Unbreak build.Benjamin Kramer
2009-08-07fix the column output stuff in the asmwriter from being dynamic andChris Lattner
2009-08-05Suppress compiler warning.Daniel Dunbar
2009-08-05Fix some column padding bugs, reorganize things as suggested by ChrisDavid Greene
2009-07-31Simplify operand padding by keying off tabs in the asm stream. IfDavid Greene
2009-07-29Re-enable comment and operand padding.David Greene
2009-07-29Revert AsmWriterEmitter.cpp to 74742. The recent changes are causing serious ...Evan Cheng
2009-07-21Make a bunch of changes suggested by Chris and others to improveDavid Greene
2009-07-20Re-apply 75490, 75806 and 76177 with fixes and tests. Efficiency comesDavid Greene
2009-07-20Restore AsmWriterEmitter.cpp back to 74742. The recent changes broke Thumb.Evan Cheng
2009-07-18Revert 76177 for now. It's messing up ARM asm printing. Also this significant...Evan Cheng
2009-07-17Add logic to align instruction operands to columns for pretty-printing.David Greene
2009-07-15Get rid of postInstructionAction and call EmitComments directly.David Greene
2009-07-13Add infrastructure to allow post instruction printing action triggers.David Greene
2009-07-03Replace std::iostreams with raw_ostream in TableGen.Daniel Dunbar
2009-06-19allow clients of the asmprinter to opt-out of the boilerplate with a #define.Chris Lattner
2009-05-07Move the tablegen-produced DebugLoc handling into a AsmWriter::processDebugLo...Argyrios Kyrtzidis
2009-05-04Restore minor deletion.Mike Stump
2009-04-30Make DebugLoc independent of DwarfWriter.Argyrios Kyrtzidis
2009-04-29Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling
2009-04-29Second attempt:Bill Wendling