| Commit message (Expand) | Author | Age | Files | Lines |
* | Changed "mode: c++" => "C++" at the suggestion of Nick Lewycky. | Michael Gottesman | 2013-07-10 | 1 | -1/+1 |
* | Fixed up the comments in FastISel.h so that they conform to the LLVM style gu... | Michael Gottesman | 2013-07-09 | 1 | -150/+122 |
* | Added "mode: c++" to FastISel.h header. | Michael Gottesman | 2013-07-09 | 1 | -1/+1 |
* | Remove forward declaration of MachineBasicBlock. It is #included anyway. | Jakub Staszak | 2013-06-13 | 1 | -1/+0 |
* | Simplify the code in FastISel::tryToFoldLoad, add an assertion and fix a comm... | Eli Bendersky | 2013-04-19 | 1 | -1/+1 |
* | Move TryToFoldFastISelLoad to FastISel, where it belongs. In general, I'm | Eli Bendersky | 2013-04-19 | 1 | -3/+19 |
* | Reverted: r176136 - Have a way for a target to opt-out of target-independent ... | Michael Ilseman | 2013-02-27 | 1 | -5/+0 |
* | Have a way for a target to opt-out of target-independent fast isel | Michael Ilseman | 2013-02-26 | 1 | -0/+5 |
* | Currently, codegen may spent some time in SDISel passes even if an entire | Evan Cheng | 2013-02-11 | 1 | -0/+10 |
* | Fall back to the selection dag isel to select tail calls. | Chad Rosier | 2012-12-11 | 1 | -4/+4 |
* | Sort the #include lines for the include/... tree with the script. | Chandler Carruth | 2012-12-03 | 1 | -1/+1 |
* | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -2/+2 |
* | Revert 165051-165049 while looking into the foreach.m failure in | Eric Christopher | 2012-10-03 | 1 | -2/+7 |
* | Remove the SavePoint infrastructure from fast isel, replace | Eric Christopher | 2012-10-02 | 1 | -7/+2 |
* | Fall back to selection DAG isel for calls to builtin functions. | Bob Wilson | 2012-08-03 | 1 | -1/+4 |
* | ARM: properly handle alignment for struct byval. | Manman Ren | 2012-06-01 | 1 | -0/+9 |
* | [fast-isel] Add support for selecting insertvalue. | Chad Rosier | 2011-12-09 | 1 | -0/+2 |
* | If fast-isel fails, remove dead instructions generated during the failed | Chad Rosier | 2011-11-29 | 1 | -0/+4 |
* | Make headers standalone. | Benjamin Kramer | 2011-11-14 | 1 | -1/+4 |
* | FastISel: avoid function calls between the materialization of the constant an... | Ivan Krasin | 2011-08-18 | 1 | -1/+19 |
* | Revert r135423. | Devang Patel | 2011-07-19 | 1 | -4/+0 |
* | During bottom up fast-isel, instructions emitted to materalize registers are ... | Devang Patel | 2011-07-18 | 1 | -0/+4 |
* | Revert r133953 for now. | Devang Patel | 2011-06-29 | 1 | -4/+0 |
* | During bottom up fast-isel, instructions emitted to materalize registers are ... | Devang Patel | 2011-06-27 | 1 | -0/+4 |
* | Make fast-isel work correctly s/uadd.with.overflow intrinsics. | Eli Friedman | 2011-05-16 | 1 | -1/+1 |
* | Basic fast-isel of extractvalue. Not too helpful on its own, given the IR cl... | Eli Friedman | 2011-05-16 | 1 | -0/+2 |
* | Allow FastISel of three-register-operand instructions. | Owen Anderson | 2011-05-05 | 1 | -0/+9 |
* | Make the fast-isel code for literal 0.0 a bit shorter/faster, since 0.0 is co... | Eli Friedman | 2011-04-27 | 1 | -0/+4 |
* | Remove unused function. | Eli Friedman | 2011-04-27 | 1 | -9/+0 |
* | Teach FastISel to deal with instructions that have two immediate operands. | Owen Anderson | 2011-04-22 | 1 | -1/+6 |
* | Fix comment. | Eric Christopher | 2011-04-22 | 1 | -3/+3 |
* | Teach FastISel to support register-immediate-immediate instructions. | Owen Anderson | 2011-03-11 | 1 | -9/+17 |
* | Prune includes. | Benjamin Kramer | 2010-11-06 | 1 | -3/+0 |
* | implement rdar://6653118 - fastisel should fold loads where possible. | Chris Lattner | 2010-09-05 | 1 | -1/+11 |
* | Delete fast-isel's trivial load optimization; it breaks debugging because | Dan Gohman | 2010-07-14 | 1 | -2/+0 |
* | Don't propagate debug locations to instructions for materializing | Dan Gohman | 2010-07-14 | 1 | -3/+8 |
* | Reapply bottom-up fast-isel, with several fixes for x86-32: | Dan Gohman | 2010-07-10 | 1 | -13/+22 |
* | --- Reverse-merging r107947 into '.': | Bob Wilson | 2010-07-09 | 1 | -22/+13 |
* | Re-apply bottom-up fast-isel, with fixes. Be very careful to avoid emitting | Dan Gohman | 2010-07-09 | 1 | -13/+22 |
* | Revert 107840 107839 107813 107804 107800 107797 107791. | Dan Gohman | 2010-07-08 | 1 | -7/+13 |
* | Implement bottom-up fast-isel. This has the advantage of not requiring | Dan Gohman | 2010-07-07 | 1 | -4/+7 |
* | Give FunctionLoweringInfo an MBB member, avoiding the need to pass it | Dan Gohman | 2010-07-07 | 1 | -10/+1 |
* | Simplify FastISel's constructor by giving it a FunctionLoweringInfo | Dan Gohman | 2010-07-07 | 1 | -17/+3 |
* | Teach fast-isel to avoid loading a value from memory when it's already | Dan Gohman | 2010-07-01 | 1 | -0/+2 |
* | Teach regular and fast isel to set dead flags on unused implicit defs | Dan Gohman | 2010-06-18 | 1 | -0/+2 |
* | Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). This | Stuart Hastings | 2010-06-17 | 1 | -1/+1 |
* | Add initial kill flag support to FastISel. | Dan Gohman | 2010-05-11 | 1 | -17/+32 |
* | Add an "IsBottomUp" member function to FastISel, which will be used to | Dan Gohman | 2010-05-05 | 1 | -0/+1 |
* | Factor out FastISel's code for materializing constants and other values | Dan Gohman | 2010-05-03 | 1 | -0/+5 |
* | Move FastISel's HandlePHINodesInSuccessorBlocks call down into FastISel | Dan Gohman | 2010-04-23 | 1 | -8/+8 |