aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/Record.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add a std::string Wrapper for TableGenDavid Greene2011-07-291-0/+46
* Intern all RecTy subclass instances to avoid duplicates.Jakob Stoklund Olesen2011-07-181-9/+45
* Revert r134921, 134917, 134908 and 134907. They're causing failuresEric Christopher2011-07-111-651/+317
* Use get(0 Instead of Create()David Greene2011-07-111-78/+78
* [AVX] Make Inits FoldableDavid Greene2011-07-111-317/+651
* Add support for alternative register names, useful for instructions whose ope...Owen Anderson2011-06-271-0/+19
* Consolidate some TableGen diagnostic helper functions.Jim Grosbach2011-06-211-0/+1
* Rework the logic to not rely on undefined behaviour (1LL << 64). Also simplify.Nick Lewycky2011-06-031-8/+3
* Improve diagnostics for some parse errors. Not asserting when a user inputJim Grosbach2011-05-061-7/+3
* Rename lisp-like functions as suggested by Gabor Greif as loooong timeDavid Greene2011-01-071-6/+6
* Add support for using the `!if' operator when initializing variables:Bill Wendling2010-12-131-10/+62
* eliminate the Records global variable, patch by Garrison Venn!Chris Lattner2010-12-131-6/+6
* clean up RecordKeeper::getAllDerivedDefinitions, patch by Garrison Venn!Chris Lattner2010-12-131-1/+1
* Get rid of ellipses.Bill Wendling2010-12-101-7/+7
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* remove the !nameconcat tblgen feature. It "shorthand" and only used in 4 placesChris Lattner2010-10-061-82/+6
* Generalize getFieldType to work on all TypedInits. Add a couple of testcases...David Greene2010-09-031-17/+11
* Fix a tblgen bug.Bruno Cardoso Lopes2010-06-231-1/+1
* In case Rec is a definition and not a class, do the proper comparison!Bruno Cardoso Lopes2010-06-171-1/+9
* Fix the handling of !if result, avoiding null results for non 'int'.Bruno Cardoso Lopes2010-06-171-4/+6
* For a tablegen expression such as !if(a,b,c), let 'a'Bruno Cardoso Lopes2010-06-171-2/+4
* let the '!eq' expression support 'int' and 'bit' typesBruno Cardoso Lopes2010-06-161-1/+12
* Replace TSFlagsFields and TSFlagsShifts with a simpler TSFlags field.Jakob Stoklund Olesen2010-04-051-11/+0
* Teach TableGen to understand X.Y notation in the TSFlagsFields strings.Jakob Stoklund Olesen2010-03-251-0/+10
* Fix evil TableGen bug in template parameters with defaults.Jakob Stoklund Olesen2010-03-251-8/+12
* disallow concatenation of two dags with different operators.Chris Lattner2010-03-181-12/+2
* Add an !eq() operator to TableGen. It operates on strings only.David Greene2010-01-051-0/+10
* Fix a bug in !subst where TableGen would go and resubstitute text it hadDavid Greene2009-12-211-1/+3
* Delete some dead and non-obvious code.Dan Gohman2009-11-241-49/+0
* Fix whitespace.Bob Wilson2009-11-221-56/+51
* Fix pr5470. Tablegen handles template arguments by temporarily setting theirBob Wilson2009-11-221-8/+20
* Fix some spelling in comments.Bob Wilson2009-11-211-3/+3
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* convert some stuff to StringRef to avoid temporary std::strings.Chris Lattner2009-09-181-30/+30
* Fix non-determinism in DAGISel emitter.Daniel Dunbar2009-08-231-0/+2
* Replace std::iostreams with raw_ostream in TableGen.Daniel Dunbar2009-07-031-20/+19
* Remove commented code.David Greene2009-06-291-15/+0
* Implement !cast<string>.David Greene2009-06-291-36/+81
* Revert 73074 and 73099 because Windows doesn't have POSIXDavid Greene2009-06-091-98/+0
* Add a !patsubst operator. Use on string types.David Greene2009-06-081-0/+65
* Make IntInits and ListInits typed. This helps deduce types of !if andDavid Greene2009-06-081-8/+84
* Make !if short-circuit when possible.David Greene2009-06-081-1/+17
* Add a !regmatch operator to do pattern matching in TableGen.David Greene2009-06-081-0/+33
* Fix warning.Nick Lewycky2009-05-151-1/+1
* Implement !if, analogous to $(if) in GNU make.David Greene2009-05-141-0/+14
* Graduate LLVM to the big leagues by embedding a LISP processor into TableGen.David Greene2009-05-141-0/+38
* Implement a !foreach operator analogous to GNU make's $(foreach).David Greene2009-05-141-138/+142
* Implement a !subst operation simmilar to $(subst) in GNU make to doDavid Greene2009-05-141-221/+212
* Implement !cast.David Greene2009-05-141-81/+81
* Operation EnhancementsDavid Greene2009-05-141-26/+348