| Commit message (Expand) | Author | Age | Files | Lines |
* | Use getSCEV instead of getUnknown to create a SCEV for a | Dan Gohman | 2009-06-29 | 1 | -3/+3 |
* | Don't cache PHI exit values from exhaustive evaluations, because | Dan Gohman | 2009-06-29 | 1 | -1/+0 |
* | Relax LDA memory instruction checks. | Andreas Bolka | 2009-06-29 | 1 | -4/+7 |
* | Call doInitialization(), releaseMemory(), and doFinalization() for on-the-fly... | Edwin Török | 2009-06-29 | 1 | -0/+3 |
* | Simplify this code, and avoid using APInt(). This fixes | Dan Gohman | 2009-06-29 | 1 | -4/+2 |
* | Missed one. | Andreas Bolka | 2009-06-29 | 1 | -1/+1 |
* | Fix case in LDA util function names. | Andreas Bolka | 2009-06-29 | 1 | -4/+4 |
* | Print pairwise dependence results, add testcases. | Andreas Bolka | 2009-06-28 | 1 | -2/+26 |
* | Minimal LDA interface, maximally conservative tester. | Andreas Bolka | 2009-06-28 | 1 | -0/+24 |
* | LDA analysis output scaffolding. | Andreas Bolka | 2009-06-28 | 1 | -1/+19 |
* | Eliminate a layer of indirection in LoopInfo and MachineLoopInfo. | Dan Gohman | 2009-06-27 | 1 | -1/+1 |
* | Convert ScalarEvolution to use BumpPtrAllocator and FoldingSet, instead | Dan Gohman | 2009-06-27 | 1 | -141/+222 |
* | Change SCEVExpander to use an IRBuilder to emit instructions. | Dan Gohman | 2009-06-27 | 1 | -72/+70 |
* | Incorporate the insertion point into the key of SCEVExpander's CSE map. | Dan Gohman | 2009-06-26 | 1 | -14/+19 |
* | Fix ScalarEvolution::getAddRecExpr's code which canonicalized the | Dan Gohman | 2009-06-26 | 1 | -2/+23 |
* | Fix SCEVAddRecExpr::isLoopInvariant to test if all of its operands | Dan Gohman | 2009-06-26 | 1 | -5/+15 |
* | Fix linking of llvm-ld and lli with CMake, from Xerxes Rånby | Douglas Gregor | 2009-06-26 | 1 | -0/+2 |
* | Remove debug info anchors - llvm.dbg.compile_units, llvm.dbg.subprograms | Devang Patel | 2009-06-26 | 1 | -67/+37 |
* | Use a more correct atomic increment style. This isn't really necessary in | Owen Anderson | 2009-06-25 | 1 | -2/+2 |
* | Make this thread-safe. | Owen Anderson | 2009-06-24 | 1 | -1/+3 |
* | Get rid of a static boolean. | Owen Anderson | 2009-06-24 | 1 | -2/+2 |
* | Scaffolding for LDA pass. | Andreas Bolka | 2009-06-24 | 2 | -0/+48 |
* | Get rid of the global CFGOnly flag by threading a ShortNames parameters throu... | Owen Anderson | 2009-06-24 | 1 | -20/+17 |
* | Minor whitespace cleanups. | Dan Gohman | 2009-06-24 | 1 | -16/+16 |
* | Simplify [su]max(MAX, n) to MAX. This comes up in loop tripcount | Dan Gohman | 2009-06-24 | 1 | -2/+10 |
* | Delete some orphaned comments, fix some 80-column violations, | Dan Gohman | 2009-06-24 | 1 | -95/+80 |
* | Extend ScalarEvolution's multiple-exit support to compute exact | Dan Gohman | 2009-06-24 | 2 | -143/+163 |
* | Teach GetMinSignBits about SCEVAddExprs. | Dan Gohman | 2009-06-24 | 1 | -0/+32 |
* | Move the special cases for constants out of getUnknown and into | Dan Gohman | 2009-06-24 | 1 | -15/+14 |
* | Use ScalarEvolution::getConstant instead of getUnknown to create | Dan Gohman | 2009-06-24 | 1 | -7/+8 |
* | Include the maximum trip count expression in ScalarEvolution's print output. | Dan Gohman | 2009-06-24 | 1 | -0/+9 |
* | Add an isAllOnesValue utility function, similar to isZero and isOne. | Dan Gohman | 2009-06-24 | 1 | -0/+6 |
* | It is not a good idea to have data member's name match argument's name. In fa... | Devang Patel | 2009-06-23 | 1 | -21/+21 |
* | Use getReturnTypeName() to print return type. | Devang Patel | 2009-06-23 | 1 | -1/+1 |
* | Fix a bug in the trip-count computation with And/Or. If either of the | Dan Gohman | 2009-06-22 | 1 | -8/+4 |
* | Remove unneeded #include. | Owen Anderson | 2009-06-22 | 1 | -1/+0 |
* | Fix a few minor issues that were exposed by the removal of SCEVHandle. | Dan Gohman | 2009-06-22 | 1 | -1/+1 |
* | Fix llvm::ComputeNumSignBits to handle pointer types | Dan Gohman | 2009-06-22 | 1 | -1/+5 |
* | Remove the parent pointer from SCEV, since it did not end up being needed. | Owen Anderson | 2009-06-22 | 1 | -30/+22 |
* | SCEVHandle is no more! | Owen Anderson | 2009-06-22 | 4 | -311/+310 |
* | Fix some typos that Duncan noticed. | Dan Gohman | 2009-06-22 | 1 | -2/+2 |
* | Banish global state from ScalarEvolution! SCEV uniquing is now done by table... | Owen Anderson | 2009-06-22 | 1 | -58/+50 |
* | Make use of getUMinFromMismatchedTypes when computing backedge-taken | Dan Gohman | 2009-06-22 | 1 | -14/+14 |
* | Add a getUMinFromMismatchedTypes helper function. | Dan Gohman | 2009-06-22 | 1 | -0/+16 |
* | Factor out code for computing umin and smin for SCEV expressions into | Dan Gohman | 2009-06-22 | 1 | -7/+14 |
* | Teach ScalarEvolution how to analyze loops with multiple exit | Dan Gohman | 2009-06-22 | 1 | -27/+221 |
* | Delete an unused variable. | Dan Gohman | 2009-06-22 | 1 | -1/+0 |
* | Fix ScalarEvolution's backedge-taken count computations to check for | Dan Gohman | 2009-06-21 | 1 | -7/+29 |
* | Generalize isLoopGuardedByCond's checking to consider two | Dan Gohman | 2009-06-20 | 1 | -3/+27 |
* | Use ScalarEvolution's new GetMinSignBits and GetMinLeadingZeros | Dan Gohman | 2009-06-20 | 1 | -3/+6 |