| Commit message (Expand) | Author | Age | Files | Lines |
* | [CodeGenPrepare][AddressingModeMatcher] The promotion mechanism was expecting | Quentin Colombet | 2014-09-16 | 1 | -45/+55 |
* | [CodeGenPrepare][AddressingModeMatcher] Fix a think-o for the sext(zext) -> z... | Quentin Colombet | 2014-09-15 | 1 | -7/+9 |
* | [CodeGenPrepare] Teach the addressing mode matcher how to promote zext. | Quentin Colombet | 2014-09-11 | 1 | -13/+56 |
* | Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin... | Craig Topper | 2014-08-21 | 1 | -1/+1 |
* | Revert "Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoi... | Craig Topper | 2014-08-18 | 1 | -1/+1 |
* | Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin... | Craig Topper | 2014-08-17 | 1 | -1/+1 |
* | Remove the TargetMachine forwards for TargetSubtargetInfo based | Eric Christopher | 2014-08-04 | 1 | -1/+2 |
* | CodeGenPrep: fall back to MVT::Other if instruction's type isn't an EVT. | Tim Northover | 2014-07-29 | 1 | -3/+6 |
* | Revert "[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) ite... | Duncan P. N. Exon Smith | 2014-07-21 | 1 | -5/+5 |
* | [C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) iterator ra... | Manuel Jacob | 2014-07-20 | 1 | -5/+5 |
* | Fixed formatting, removed bug reference, renamed testcase | Sanjay Patel | 2014-07-16 | 1 | -3/+4 |
* | trivial fix for PR20314 | Sanjay Patel | 2014-07-16 | 1 | -1/+4 |
* | Create macro INITIALIZE_TM_PASS. | Jiangning Liu | 2014-06-11 | 1 | -13/+2 |
* | Remove use of comma operator. | Richard Trieu | 2014-05-30 | 1 | -2/+5 |
* | Similar to bitcast, treat addrspacecast as a foldable operand. | Eli Bendersky | 2014-05-22 | 1 | -0/+2 |
* | Add missing line breaks to debug output in CodeGenPrepare | Louis Gerbarg | 2014-05-13 | 1 | -3/+3 |
* | [CGP] r205941 changed the logic, so that a cast happens *before* 'Result' is | Joey Gouly | 2014-05-13 | 1 | -1/+1 |
* | Make helper functions static. | Benjamin Kramer | 2014-04-27 | 1 | -2/+2 |
* | Revert r206749 till a final decision about the intrinsics is made. | Michael Zolotukhin | 2014-04-26 | 1 | -236/+0 |
* | This reapplies r207235 with an additional bugfixes caught by the msan | Adrian Prantl | 2014-04-25 | 1 | -1/+6 |
* | Revert "This reapplies r207130 with an additional testcase+and a missing chec... | Adrian Prantl | 2014-04-25 | 1 | -6/+1 |
* | This reapplies r207130 with an additional testcase+and a missing check for | Adrian Prantl | 2014-04-25 | 1 | -1/+6 |
* | Revert "This reapplies r207130 with an additional testcase+and a missing chec... | Adrian Prantl | 2014-04-25 | 1 | -6/+1 |
* | This reapplies r207130 with an additional testcase+and a missing check for | Adrian Prantl | 2014-04-25 | 1 | -1/+6 |
* | Revert "Debug info for optimized code: Support variables that are on the stac... | Adrian Prantl | 2014-04-25 | 1 | -6/+1 |
* | Debug info for optimized code: Support variables that are on the stack and | Adrian Prantl | 2014-04-24 | 1 | -1/+6 |
* | [Modules] Remove potential ODR violations by sinking the DEBUG_TYPE | Chandler Carruth | 2014-04-22 | 1 | -1/+2 |
* | [CodeGenPrepare] Use APInt to check the value of the immediate in a and | Quentin Colombet | 2014-04-22 | 1 | -2/+2 |
* | ARM64: Combine shifts and uses from different basic block to bit-extract inst... | Yi Jiang | 2014-04-21 | 1 | -0/+192 |
* | Reapply r206732. This time without optimization of branches. | Michael Zolotukhin | 2014-04-21 | 1 | -0/+236 |
* | Revert r206732 which is causing llc to crash on most of the build bots. | Chandler Carruth | 2014-04-21 | 1 | -287/+0 |
* | Implement builtins for safe division: safe.sdiv.iN, safe.udiv.iN, safe.srem.iN, | Michael Zolotukhin | 2014-04-21 | 1 | -0/+287 |
* | Use unique_ptr to manage TypePromotionActions owned by TypePromotionTransaction. | David Blaikie | 2014-04-15 | 1 | -28/+19 |
* | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 2014-04-14 | 1 | -39/+40 |
* | Add the ability to use GEPs for address sinking in CGP | Hal Finkel | 2014-04-12 | 1 | -0/+126 |
* | Fix to support properly cleaning up failed address sinking against constants | Jim Grosbach | 2014-04-10 | 1 | -2/+3 |
* | Disable each MachineFunctionPass for 'optnone' functions, unless that | Paul Robinson | 2014-03-31 | 1 | -0/+3 |
* | CodeGenPrep: wrangle IR to exploit AArch64 tbz/tbnz inst. | Tim Northover | 2014-03-29 | 1 | -0/+80 |
* | Fix for incorrect address sinking in the presence of potential overflows. | Jim Grosbach | 2014-03-26 | 1 | -1/+8 |
* | CodeGenPrep: sink extends of illegal types into use block. | Manuel Jacob | 2014-03-13 | 1 | -36/+49 |
* | Revert r203230, "CodeGenPrep: sink extends of illegal types into use block." | NAKAMURA Takumi | 2014-03-09 | 1 | -58/+34 |
* | [C++11] Add range based accessors for the Use-Def chain of a Value. | Chandler Carruth | 2014-03-09 | 1 | -44/+34 |
* | CodeGenPrep: sink extends of illegal types into use block. | Tim Northover | 2014-03-07 | 1 | -34/+58 |
* | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 2014-03-07 | 1 | -14/+14 |
* | [Modules] Move ValueMap to the IR library. While this class does not | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [Modules] Move ValueHandle into the IR library where Value itself lives. | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [Modules] Move the LLVM IR pattern match header into the IR library, it | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [Modules] Move CallSite into the IR library where it belogs. It is | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [Modules] Move GetElementPtrTypeIterator into the IR library. As its | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [C++11] Replace llvm::next and llvm::prior with std::next and std::prev. | Benjamin Kramer | 2014-03-02 | 1 | -2/+2 |