aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen
Commit message (Expand)AuthorAgeFilesLines
* Add a target callback for FastISel.Dan Gohman2008-08-281-0/+8
* erect abstraction boundaries for accessing SDValue members, rename Val -> Nod...Gabor Greif2008-08-281-34/+34
* Add support for fast-isel of opcodes that require use of extract_subreg. Bec...Owen Anderson2008-08-281-21/+43
* Update a comment to reflect recent changes.Dan Gohman2008-08-271-1/+1
* Basic FastISel support for floating-point constants.Dan Gohman2008-08-271-0/+13
* disallow direct access to SDValue::ResNo, provide a getter insteadGabor Greif2008-08-261-2/+2
* Refactor a bunch of FastISelEmitter code into a helper class, andDan Gohman2008-08-262-29/+63
* - small bug corrected: incorrect iterator type.Cédric Venet2008-08-261-2/+2
* We need to check that the return type is correct, even in cases where we don'tOwen Anderson2008-08-261-0/+3
* code simplification, no functionality change.Chris Lattner2008-08-261-11/+1
* stabilize more printing, this doesn't cause a problemChris Lattner2008-08-261-10/+8
* stablize SubRegsSet printing, part of PR2590Chris Lattner2008-08-261-6/+8
* Stabilize 'getDwarfRegNumFull' output to not depend on random memory Chris Lattner2008-08-263-22/+25
* Throw the switch to allow FastISel to emit instructions whose return types di...Owen Anderson2008-08-261-9/+16
* Enhance TableGen to emit code for FastISel of opcodes with variadic return ty...Owen Anderson2008-08-261-13/+97
* Add a RetVT parameter to emitted FastISel methods, so that we will be able to...Owen Anderson2008-08-251-8/+14
* Deepen the map structure tablegen uses to compute FastISel patterns, in prepa...Owen Anderson2008-08-251-54/+61
* Add support for fast isel of (integer) immediate materialization pattens, and...Owen Anderson2008-08-251-3/+6
* Move the point at which FastISel taps into the SelectionDAGISelDan Gohman2008-08-231-1/+1
* Add a few comments.Dan Gohman2008-08-221-0/+4
* Factor out the predicate check code from DAGISelEmitter.cppDan Gohman2008-08-224-48/+99
* Basic fast-isel support for instructions with constant int operands.Dan Gohman2008-08-211-13/+40
* Remove the code that limited FastISel to certain fixed signatures.Dan Gohman2008-08-211-19/+5
* Begin making more use of the FastISelEmitter class.Dan Gohman2008-08-212-28/+28
* Remove an obsolete todo comment.Dan Gohman2008-08-201-2/+0
* Factor the code for determining the target-specific instructionDan Gohman2008-08-204-18/+22
* Simplify FastISel's constructor argument list, make the FastISelDan Gohman2008-08-201-5/+3
* Fix the string for MVT::isVoid.Dan Gohman2008-08-201-1/+1
* For now, restrict FastISel to instructions that only involve oneDan Gohman2008-08-191-2/+6
* Factor out the code to scan an instruction's operands into aDan Gohman2008-08-191-26/+36
* Add more comments.Dan Gohman2008-08-191-1/+8
* Fix indentation in FastISel tablegen-emitted code.Dan Gohman2008-08-191-1/+1
* Add more checking to filter out more kinds of things thatDan Gohman2008-08-191-1/+11
* 80 columns.Dan Gohman2008-08-191-2/+4
* Add a few doxygen comments.Dan Gohman2008-08-191-0/+6
* Remove an unneeded #include.Dan Gohman2008-08-191-1/+0
* Speed up addRegisterDead by adding more fast checks before performing the exp...Owen Anderson2008-08-141-3/+9
* Initial checkin of the new "fast" instruction selection support. SeeDan Gohman2008-08-133-0/+407
* Oops, check in these files too, for the FastISel -> Fast rename.Dan Gohman2008-08-131-1/+1
* Added support for overloading intrinsics (atomics) based on pointersMon P Wang2008-07-305-9/+26
* Rename SDOperand to SDValue.Dan Gohman2008-07-271-76/+76
* Add a new function, ReplaceAllUsesOfValuesWith, which handles bulkDan Gohman2008-07-171-42/+55
* TargetRegisterDesc::Name field is the same as the abstract register name. The...Evan Cheng2008-07-071-10/+1
* Refactor the tablegen DAGISelEmitter code for outputing calls toDan Gohman2008-07-071-201/+208
* Add explicit keywords.Dan Gohman2008-07-071-4/+4
* isel load folding is disabled at -fast. Now hoist the check up to the top lev...Evan Cheng2008-07-031-8/+27
* Replace a few uses of SelectionDAG::getTargetNode withDan Gohman2008-07-021-13/+28
* Make the subregister hashtable output more readable by wrapping the lines,Owen Anderson2008-07-011-12/+16
* Use delete[] instead of free on an array created with new[].Owen Anderson2008-07-011-1/+1
* Implement suggestions from Chris:Owen Anderson2008-07-011-9/+10