summaryrefslogtreecommitdiffstats
path: root/llvm/lib/TableGen/Record.cpp
Commit message (Expand)AuthorAgeFilesLines
* [TableGen] Make some variable names consistent with their type names and just...Craig Topper2015-05-201-23/+23
* [TableGen] Fix a memory leak.Craig Topper2015-05-201-2/+2
* [TableGen] Change 'car' to 'head' and 'cdr' to 'tail' in assert comments. The...Craig Topper2015-05-161-2/+2
* [TableGen] Remove !! that I can't really explain why I wrote. Also remove som...Craig Topper2015-05-161-6/+4
* [TableGen] Restructure a loop to make it exit early instead of skipping a por...Craig Topper2015-05-161-5/+6
* TableGen: Avoid undefined behaviour by doing this shift in int64Justin Bogner2015-05-141-1/+1
* [TableGen] Remove an unnecessary outer 'if' around 3 separate inner ifs. No f...Craig Topper2015-05-141-29/+25
* [TableGen] Simplify some code. NFCCraig Topper2015-05-141-9/+4
* [TableGen] Replace some calls to ListInit::getSize() with ListInit::empty() i...Craig Topper2015-05-141-3/+3
* Use ArrayRef::slice instead of manually constructing an ArrayRef from ArrayRe...Craig Topper2015-05-131-6/+1
* Remove unnecessary variables by folding calls into for loop header. NFC.Craig Topper2015-05-121-4/+2
* [TableGen] Replace 'static_cast' with 'cast'.Craig Topper2015-05-041-1/+1
* [TableGen] Formatting cleanup. Mostly removing trailing whitespace and unnece...Craig Topper2015-05-041-68/+41
* [TableGen] Cleanup formatting by moving operators from beginning of line to e...Craig Topper2015-04-301-14/+13
* [TableGen] Used range-based for loop. NFC.Craig Topper2015-04-301-6/+2
* [TableGen] Merge a variable assignment and a return to drop curly braces. Fol...Craig Topper2015-04-301-13/+7
* [TableGen] Use range-based for loops. NFC.Craig Topper2015-04-291-23/+9
* [TableGen] Fold a couple dyn_casts into the ifs that check their results. NFCCraig Topper2015-04-291-11/+8
* [TableGen] Replace some dyn_casts followed by an assert with just a regular c...Craig Topper2015-04-291-23/+10
* [TableGen] Fix all remaining memory leaks of Init and RecTy objects.Craig Topper2015-04-241-34/+33
* [TableGen] Use range based for loops.Craig Topper2015-04-221-14/+4
* [TableGen] Remove some deletes that violate ownership semantics. These don't ...Craig Topper2015-04-221-10/+2
* [TableGen] Make BitRecTy::baseClassOf return true when RHS is an IntRecTy.Craig Topper2015-04-221-1/+1
* Don't use 'nullptr' in comment. Just use 'null'.Craig Topper2015-04-221-1/+1
* Revert "[TableGen] Use cast instead of dyn_cast where result isn't checked be...Craig Topper2015-04-221-1/+1
* Fix stale comment that mentioned 0 instead of nullptr. NFC.Craig Topper2015-04-221-1/+1
* [TableGen] Remove Pool helper class and just use unique_ptr in the maps.Craig Topper2015-04-221-41/+24
* [TableGen] Use StringRecTy::get() instead of allocating (and leaking) a Strin...Craig Topper2015-04-221-2/+2
* [TableGen] Use 'isa' to identify UnsetInits rather than comparing with the si...Craig Topper2015-04-221-2/+2
* [TableGen] Use cast instead of dyn_cast where result isn't checked before bei...Craig Topper2015-04-221-1/+1
* Reduce dyn_cast<> to isa<> or cast<> where possible.Benjamin Kramer2015-04-101-1/+1
* Replace size method call of containers to empty method where appropriateAlexander Kornienko2015-01-151-1/+1
* Clean up static analyzer warnings.Michael Ilseman2014-12-121-1/+1
* TableGen: unique_ptr-ify RecordKeeperDylan Noblesmith2014-08-241-1/+1
* TableGen: delete no-op codeDylan Noblesmith2014-08-241-7/+0
* TableGen: use auto and for-rangeDylan Noblesmith2014-08-241-12/+9
* Update BitRecTy::convertValue to allow if expressions with bit values on both...Pete Cooper2014-08-071-0/+10
* TableGen: Change { } to only accept bits<n> entries when n == 1.Pete Cooper2014-08-071-1/+4
* Allow binary and for tblgen math.Joerg Sonnenberger2014-08-051-0/+3
* [TableGen] Allow shift operators to take bits<n>Adam Nemet2014-07-171-2/+4
* Convert some assert(0) to llvm_unreachable or fold an 'if' condition into the...Craig Topper2014-06-191-8/+2
* Use a vector of unique_ptrs to fix a memory leak introduced in r208179.Daniel Sanders2014-05-081-2/+2
* [tablegen] Add !listconcat operator with the similar semantics as !strconcatDaniel Sanders2014-05-071-0/+13
* [C++11] Make use of 'nullptr' in TableGen library.Craig Topper2014-04-091-90/+83
* tblgen: Twinify PrintFatalError.Benjamin Kramer2014-03-291-19/+19
* Fix odd indentation.Craig Topper2014-02-271-1/+1
* Fix most memory leaks in tablegen.Rafael Espindola2013-10-311-11/+20
* Make helpers static. Add missing include so LLVMInitializeObjCARCOpts gets C ...Benjamin Kramer2013-02-151-5/+3
* Add an addition operator to TableGenHal Finkel2013-01-251-0/+3
* Simplify TableGen type-compatibility checks.Sean Silva2013-01-071-7/+38
OpenPOWER on IntegriCloud