summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/AsmWriterInst.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove dead code.Rafael Espindola2013-12-021-33/+2
| | | | llvm-svn: 196066
* Remove 'else' after 'return'. No functional change.Craig Topper2013-07-231-2/+1
| | | | llvm-svn: 186929
* Remove trailing whitespace.Craig Topper2013-07-231-26/+26
| | | | llvm-svn: 186928
* Remove exception handling usage from tblgen.Joerg Sonnenberger2012-10-251-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
* Move TableGen's parser and entry point into a libraryPeter Collingbourne2011-10-011-1/+1
| | | | | | This is the first step towards splitting LLVM and Clang's tblgen executables. llvm-svn: 140951
* factor the operand list (and related fields/operations) out of Chris Lattner2010-11-011-2/+2
| | | | | | CodeGenInstruction into its own helper class. No functionality change. llvm-svn: 117893
* move FlattenVariants out of AsmMatcherEmitter into a sharedChris Lattner2010-11-011-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
* change a ton of code to not implicitly use the "O" raw_ostreamChris Lattner2010-04-041-0/+1
| | | | | | member of AsmPrinter. Instead, pass it in explicitly. llvm-svn: 100306
* Changed AsmWriterOperand to also include the index of theSean Callanan2010-02-101-2/+7
| | | | | | | operand into the CodeGenInstruction's list of operands, which is useful for EDEmitter. (Still working on PR6219) llvm-svn: 95759
* Fixed some indentation in the AsmWriterInstSean Callanan2010-02-091-12/+12
| | | | | | | | implementation. Also changed the constructor so that it does not require a Record, making it usable by the EDEmitter. llvm-svn: 95715
* Per PR 6219, factored AsmWriterInst and AsmWriterOperandSean Callanan2010-02-091-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
OpenPOWER on IntegriCloud