summaryrefslogtreecommitdiff
path: root/test/Transforms/LoopIndexSplit
Commit message (Expand)AuthorAge
* Remove LoopIndexSplit pass. It is neither maintained nor used by anyone.Devang Patel2010-10-07
* Check for side effects before splitting loop.Devang Patel2010-05-03
* add newlines at the end of files.Chris Lattner2010-04-07
* Remove tests that checks @llvm.dbg.stoppoint handling.Devang Patel2010-03-01
* Delete useless trailing semicolons.Dan Gohman2010-01-05
* Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman2009-09-11
* Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman2009-09-08
* Change these tests to feed the assembly files to opt directly, insteadDan Gohman2009-09-08
* Fix PR3913, patch by Jakub Staszak!Chris Lattner2009-08-28
* Don't try to split a loop when the controlling icmp instructionDan Gohman2009-06-27
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-04
* Loop Index Split can eliminate a loop if it can determin if loop body is exec...Devang Patel2009-03-30
* If branch conditions' one successor is dominating another non-latch successor...Devang Patel2009-03-02
* Ignore DbgInfoIntrinsics.Devang Patel2009-02-06
* Rewrite code that 1) filters loops and 2) calculates new loop bounds.Devang Patel2008-12-04
* If the sign of exit condition and split condition does not matchDevang Patel2008-11-10
* Check loop exit predicate properly while eliminating one iteration loop.Devang Patel2008-10-10
* Fix typo, fix PR 2865.Devang Patel2008-10-06
* splitLoop does not handle split condition EQ.Devang Patel2008-09-18
* Do not ignore iv uses outside the loop.Devang Patel2008-09-17
* If loop induction variable's start value is less then its exit value then do ...Devang Patel2008-07-09
* Testcase for LoopIndexSplit and DomFrontier.Owen Anderson2008-06-03
* sabre brings to my attention that the 'tr' suffix is also obsoleteGabor Greif2008-05-20
* Rename the last test with .llx extension to .ll, resolve duplicate test by re...Gabor Greif2008-05-20
* Do not erase induction variable increment if it is used outside the loop.Devang Patel2008-05-19
* Add incoming value from header only if phi node has any use inside the loop.Devang Patel2008-03-24
* If loop header is also loop exiting block then OrigPN is incoming value for B...Devang Patel2008-02-14
* A loop latch phi node may have uses inside loop, not just in loop header.Devang Patel2008-02-13
* While moving exit condition, do not drop loop latch on the floor.Devang Patel2008-02-13
* Keep track of exit value operand number when operands are swapped.Devang Patel2008-02-13
* Fix PR 1995.Devang Patel2008-02-08
* Filter loops that subtract induction variables.Devang Patel2008-01-29
* If ExitValue operand is also defined in Loop header thenDevang Patel2007-12-03
* Handle multiple induction variables.Devang Patel2007-09-25
* Add transformation to update loop interation space. Now,Devang Patel2007-09-25
* Fix PR1692Devang Patel2007-09-21
* Filter exit conditions which are not yet handled.Devang Patel2007-09-10
* Constant split values needs upper bound and lower bound check, just like any ...Devang Patel2007-08-25
* While calculating upper loop bound for first loop and lower loop bound for se...Devang Patel2007-08-25
* Do not split loops rejected by processOneIterationLoop().Devang Patel2007-08-20
* Add loop index split tests.Devang Patel2007-08-17