Move TableGen's parser and entry point into a library
[oota-llvm.git] / utils / TableGen / AsmWriterEmitter.cpp
2011-10-01 Peter CollingbourneMove TableGen's parser and entry point into a library
2011-09-29 Jakob Stoklund OlesenSwitch to ArrayRef<CodeGenRegisterClass*>.
2011-07-06 Evan ChengRemove the AsmWriterEmitter (unused) feature that rely...
2011-06-29 Francois PichetChange AsmName's type from StringRef to std::string...
2011-06-27 Owen AndersonAdd support for alternative register names, useful...
2011-06-21 Jim GrosbachConsolidate some TableGen diagnostic helper functions.
2011-06-18 Jakob Stoklund OlesenStore CodeGenRegisters as pointers so they won't be...
2011-06-15 Jakob Stoklund OlesenGive CodeGenRegisterClass a real sorted member set.
2011-06-15 Bill WendlingImprove the heuristic to emit the alias if the number...
2011-06-14 Bill WendlingHeuristic: If the number of operands in the alias are...
2011-05-23 Bill WendlingUse a more efficient data structure for the "operand...
2011-04-18 Eric ChristopherInvert the meaning of printAliasInstr's return value...
2011-04-13 Bill WendlingAdd an option to not print the alias of an instruction...
2011-04-08 Bill WendlingOnly emit the AvailableFeatures variable if it's used.
2011-04-07 Bill WendlingReplace the old algorithm that emitted the "print the...
2011-03-21 Bill WendlingCall static functions so that they aren't left unused.
2011-03-21 Bill WendlingA WIP commit of the InstAlias printing cleanup. This...
2011-03-21 Bill WendlingAdd the IAPrinter class.
2011-03-21 Bill Wendling* Add classes that support the "feature" information.
2011-02-26 Bill WendlingA new TableGen feature! (Not turned on just yet.)
2010-12-13 Chris Lattnereliminate the Records global variable, patch by Garriso...
2010-09-30 Jim GrosbachLet a target specify whether it wants an assembly print...
2010-09-29 Jim Grosbachtrailing whitespace
2010-09-18 Eric ChristopherHandle the odd case where we only have one instruction.
2010-07-16 Bill WendlingUpdate comment.
2010-04-04 Chris Lattnerchange a ton of code to not implicitly use the "O"...
2010-03-19 Chris Lattnermake inst_begin/inst_end iterate over InstructionsByEnu...
2010-03-19 Chris Lattnerrevert 98912
2010-03-19 Chris Lattnermake inst_begin/inst_end iterate over InstructionsByEnu...
2010-03-19 Chris Lattnerchange Target.getInstructionsByEnumValue to return...
2010-02-11 Chris Lattnerenhance llvm-mc -show-inst to print the enum of an...
2010-02-09 Sean CallananFixed some indentation in the AsmWriterInst
2010-02-09 Sean CallananPer PR 6219, factored AsmWriterInst and AsmWriterOperand
2010-02-03 Chris Lattnersink handling of target-independent machine instrs...
2009-11-06 Dan GohmanDon't print a redundant tab for inline asm, and do...
2009-10-17 Daniel DunbarMove UnescapeString to a static function for its sole...
2009-09-28 Jakob Stoklund OlesenIntroduce the TargetInstrInfo::KILL machine instruction...
2009-09-18 Chris Lattneradd a comment.
2009-09-14 Chris Lattnerslightly increase prettiness.
2009-09-14 Chris Lattneremit the register table as a massive string to avoid...
2009-09-14 Chris Lattnermove StringToOffsetTable out to its own header.
2009-09-14 Chris Lattnerfactor string table generation out to its own class...
2009-09-13 Chris Lattnerthe tblgen produced 'getRegisterName' method does not...
2009-09-13 Chris Lattnermake tblgen produce a function that returns the name...
2009-09-11 Chris LattnerPHI nodes can never reach the asmprinter, assert and...
2009-09-09 Chris Lattnerremove DebugLoc from MCInst and eliminate "Comment...
2009-09-09 Chris LattnerFix a subtle bug in "return;" generation which caused...
2009-09-09 Chris Lattnerhoist the call to processDebugLoc out of the generated
2009-08-23 Chris Lattnerremove some DOUTs
2009-08-22 Devang PatelRecord variable debug info at ISel time directly.
2009-08-17 Chris Lattnerthe MinPad argument to PadToColumn only really makes...
2009-08-08 Chris Lattnermake printInstruction return void since its result...
2009-08-08 Chris Lattnerdon't check the result of printInstruction anymore.
2009-08-07 Benjamin KramerUnbreak build.
2009-08-07 Chris Lattnerfix the column output stuff in the asmwriter from being...
2009-08-05 Daniel DunbarSuppress compiler warning.
2009-08-05 David GreeneFix some column padding bugs, reorganize things as...
2009-07-31 David GreeneSimplify operand padding by keying off tabs in the...
2009-07-29 David GreeneRe-enable comment and operand padding.
2009-07-29 Evan ChengRevert AsmWriterEmitter.cpp to 74742. The recent change...
2009-07-21 David GreeneMake a bunch of changes suggested by Chris and others...
2009-07-20 David GreeneRe-apply 75490, 75806 and 76177 with fixes and tests...
2009-07-20 Evan ChengRestore AsmWriterEmitter.cpp back to 74742. The recent...
2009-07-18 Evan ChengRevert 76177 for now. It's messing up ARM asm printing...
2009-07-17 David GreeneAdd logic to align instruction operands to columns...
2009-07-15 David GreeneGet rid of postInstructionAction and call EmitComments...
2009-07-13 David GreeneAdd infrastructure to allow post instruction printing...
2009-07-03 Daniel DunbarReplace std::iostreams with raw_ostream in TableGen.
2009-06-19 Chris Lattnerallow clients of the asmprinter to opt-out of the boile...
2009-05-07 Argyrios KyrtzidisMove the tablegen-produced DebugLoc handling into a...
2009-05-04 Mike StumpRestore minor deletion.
2009-04-30 Argyrios KyrtzidisMake DebugLoc independent of DwarfWriter.
2009-04-29 Bill WendlingInstead of passing in an unsigned value for the optimiz...
2009-04-29 Bill WendlingSecond attempt:
2009-04-28 Bill Wendlingr70270 isn't ready yet. Back this out. Sorry for the...
2009-04-28 Bill WendlingMassive check in. This changes the "-fast" flag to...
2009-03-13 Chris LattnerFix escaping in asm string literals correctly by having...
2009-02-24 Bill WendlingOverhaul my earlier submission due to feedback. It...
2009-02-24 Bill Wendling- Use the "Fast" flag instead of "OptimizeForSize"...
2009-02-20 Bill WendlingWe have logic in there to emit a default debugging...
2009-02-20 Bill WendlingAdd an accessor method to DwarfWriter to tell of debugg...
2009-02-19 Bill WendlingPrint out a new label only if the debug location *tuple...
2009-02-19 Bill WendlingForgot to check that debug information is supported.
2009-02-18 Bill WendlingPut code that generates debug labels into TableGen...
2009-02-18 Dan GohmanAdd explicit keywords.
2008-10-27 Cedric VenetRemove tabs from my previous commit.
2008-10-26 Cedric VenetAdd a default constructor to AsmWriterOperand to make...
2008-07-01 Dan GohmanSplit ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL...
2008-04-09 Nate BegemanFix a bug where an incorrect bit mask would be generate...
2008-03-17 Nate BegemanAdd support for escaping {} in asm strings, based on...
2008-03-15 Evan ChengReplace all target specific implicit def instructions...
2008-02-20 Anton KorobeynikovUnbreak build with gcc 4.3: provide missed includes...
2008-02-02 Evan ChengGet rid of the annoying blank lines before labels.
2008-02-02 Evan ChengSDIsel processes llvm.dbg.declare by recording the...
2007-12-29 Chris Lattnerremove attributions from utils.
2007-07-18 Chris LattnerWork around a bogus gcc 4.2 warning.
2007-01-26 Jim LaskeyFiles missing from LABEL check in.
2006-12-07 Bill WendlingWhat should be the last unnecessary <iostream>s in...
2006-11-15 Chris LattnerRemove the isTwoAddress property from the CodeGenInstru...
2006-11-05 Jeff CohenUnbreak VC++ build.
next