aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/FastISel.h
Commit message (Expand)AuthorAgeFilesLines
* Fall back to selection DAG isel for calls to builtin functions.Bob Wilson2012-08-031-1/+4
* ARM: properly handle alignment for struct byval.Manman Ren2012-06-011-0/+9
* [fast-isel] Add support for selecting insertvalue.Chad Rosier2011-12-091-0/+2
* If fast-isel fails, remove dead instructions generated during the failed Chad Rosier2011-11-291-0/+4
* Make headers standalone.Benjamin Kramer2011-11-141-1/+4
* FastISel: avoid function calls between the materialization of the constant an...Ivan Krasin2011-08-181-1/+19
* Revert r135423.Devang Patel2011-07-191-4/+0
* During bottom up fast-isel, instructions emitted to materalize registers are ...Devang Patel2011-07-181-0/+4
* Revert r133953 for now.Devang Patel2011-06-291-4/+0
* During bottom up fast-isel, instructions emitted to materalize registers are ...Devang Patel2011-06-271-0/+4
* Make fast-isel work correctly s/uadd.with.overflow intrinsics.Eli Friedman2011-05-161-1/+1
* Basic fast-isel of extractvalue. Not too helpful on its own, given the IR cl...Eli Friedman2011-05-161-0/+2
* Allow FastISel of three-register-operand instructions.Owen Anderson2011-05-051-0/+9
* Make the fast-isel code for literal 0.0 a bit shorter/faster, since 0.0 is co...Eli Friedman2011-04-271-0/+4
* Remove unused function.Eli Friedman2011-04-271-9/+0
* Teach FastISel to deal with instructions that have two immediate operands.Owen Anderson2011-04-221-1/+6
* Fix comment.Eric Christopher2011-04-221-3/+3
* Teach FastISel to support register-immediate-immediate instructions.Owen Anderson2011-03-111-9/+17
* Prune includes.Benjamin Kramer2010-11-061-3/+0
* implement rdar://6653118 - fastisel should fold loads where possible.Chris Lattner2010-09-051-1/+11
* Delete fast-isel's trivial load optimization; it breaks debugging becauseDan Gohman2010-07-141-2/+0
* Don't propagate debug locations to instructions for materializingDan Gohman2010-07-141-3/+8
* Reapply bottom-up fast-isel, with several fixes for x86-32:Dan Gohman2010-07-101-13/+22
* --- Reverse-merging r107947 into '.':Bob Wilson2010-07-091-22/+13
* Re-apply bottom-up fast-isel, with fixes. Be very careful to avoid emittingDan Gohman2010-07-091-13/+22
* Revert 107840 107839 107813 107804 107800 107797 107791.Dan Gohman2010-07-081-7/+13
* Implement bottom-up fast-isel. This has the advantage of not requiringDan Gohman2010-07-071-4/+7
* Give FunctionLoweringInfo an MBB member, avoiding the need to pass itDan Gohman2010-07-071-10/+1
* Simplify FastISel's constructor by giving it a FunctionLoweringInfoDan Gohman2010-07-071-17/+3
* Teach fast-isel to avoid loading a value from memory when it's alreadyDan Gohman2010-07-011-0/+2
* Teach regular and fast isel to set dead flags on unused implicit defsDan Gohman2010-06-181-0/+2
* Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). ThisStuart Hastings2010-06-171-1/+1
* Add initial kill flag support to FastISel.Dan Gohman2010-05-111-17/+32
* Add an "IsBottomUp" member function to FastISel, which will be used toDan Gohman2010-05-051-0/+1
* Factor out FastISel's code for materializing constants and other valuesDan Gohman2010-05-031-0/+5
* Move FastISel's HandlePHINodesInSuccessorBlocks call down into FastISelDan Gohman2010-04-231-8/+8
* Move HandlePHINodesInSuccessorBlocks functions out of SelectionDAGISelDan Gohman2010-04-221-1/+12
* Sink DebugLoc handling out of SelectionDAGISel into FastISel andDan Gohman2010-04-201-5/+0
* Add const qualifiers to CodeGen's use of LLVM IR constructs.Dan Gohman2010-04-151-19/+19
* Factor out EH landing pad code into a separate function, and constifyDan Gohman2010-04-141-2/+2
* Fix a missing #include.Dan Gohman2010-04-141-0/+1
* Refine #includes.Dan Gohman2010-04-141-1/+2
* trim some prototypes.Chris Lattner2010-04-051-1/+0
* unthread MMI from FastISelChris Lattner2010-04-051-2/+0
* fastisel doesn't need DwarfWriter, remove some tendricles.Chris Lattner2010-04-051-3/+0
* Don't use the ISD::NodeType enum for SDNode opcodes, as CodeGenDan Gohman2010-01-051-12/+12
* Make TargetSelectInstruction protected and called from FastISel.cppDan Gohman2009-12-051-8/+8
* Fix a name in a comment.Dan Gohman2009-10-051-1/+1
* LLVM currently represents floating-point negation as -0.0 - x. FixDan Gohman2009-09-031-0/+2
* Split EVT into MVT and EVT, the former representing _just_ a primitive type, ...Owen Anderson2009-08-111-22/+22