aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/TableGen/AsmWriterInst.cpp
AgeCommit message (Collapse)AuthorFilesLines
2014-11-25Remove dead code.Craig Topper1-3/+1
llvm-svn: 222781
2013-12-02Remove dead code.Rafael Espindola1-33/+2
llvm-svn: 196066
2013-07-23Remove 'else' after 'return'. No functional change.Craig Topper1-2/+1
llvm-svn: 186929
2013-07-23Remove trailing whitespace.Craig Topper1-26/+26
llvm-svn: 186928
2012-10-25Remove exception handling usage from tblgen.Joerg Sonnenberger1-11/+12
Most places can use PrintFatalError as the unwinding mechanism was not used for anything other than printing the error. The single exception was CodeGenDAGPatterns.cpp, where intermediate errors during type resolution were ignored to simplify incremental platform development. This use is replaced by an error flag in TreePattern and bailout earlier in various places if it is set. llvm-svn: 166712
2011-10-01Move TableGen's parser and entry point into a libraryPeter Collingbourne1-1/+1
This is the first step towards splitting LLVM and Clang's tblgen executables. llvm-svn: 140951
2010-11-01factor the operand list (and related fields/operations) out of Chris Lattner1-2/+2
CodeGenInstruction into its own helper class. No functionality change. llvm-svn: 117893
2010-11-01move FlattenVariants out of AsmMatcherEmitter into a sharedChris Lattner1-70/+38
CodeGenInstruction::FlattenAsmStringVariants method. Use it to simplify the code in AsmWriterInst, which now no longer needs to worry about variants. llvm-svn: 117886
2010-04-04change a ton of code to not implicitly use the "O" raw_ostreamChris Lattner1-0/+1
member of AsmPrinter. Instead, pass it in explicitly. llvm-svn: 100306
2010-02-10Changed AsmWriterOperand to also include the index of theSean Callanan1-2/+7
operand into the CodeGenInstruction's list of operands, which is useful for EDEmitter. (Still working on PR6219) llvm-svn: 95759
2010-02-09Fixed some indentation in the AsmWriterInstSean Callanan1-12/+12
implementation. Also changed the constructor so that it does not require a Record, making it usable by the EDEmitter. llvm-svn: 95715
2010-02-09Per PR 6219, factored AsmWriterInst and AsmWriterOperandSean Callanan1-0/+259
out of the AsmWriterEmitter. This patch does the physical code movement, but leaves the implementation unchanged. I'll make any changes necessary to generalize the code in a separate patch. llvm-svn: 95697