index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Scalar
/
LoopIndexSplit.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix spelling.
Devang Patel
2008-12-08
1
-10
/
+10
*
Rewrite code that 1) filters loops and 2) calculates new loop bounds.
Devang Patel
2008-12-04
1
-1269
/
+715
*
If the sign of exit condition and split condition does not match
Devang Patel
2008-11-10
1
-1
/
+6
*
Change create*Pass factory functions to return Pass* instead of
Daniel Dunbar
2008-10-22
1
-1
/
+1
*
Check loop exit predicate properly while eliminating one iteration loop.
Devang Patel
2008-10-10
1
-13
/
+15
*
Fix typo, fix PR 2865.
Devang Patel
2008-10-06
1
-2
/
+2
*
splitLoop does not handle split condition EQ.
Devang Patel
2008-09-18
1
-0
/
+6
*
Do not ignore iv uses outside the loop.
Devang Patel
2008-09-17
1
-1
/
+21
*
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-09-04
1
-1
/
+1
*
Use empty() instead of begin() == end().
Dan Gohman
2008-08-14
1
-2
/
+2
*
If loop induction variable's start value is less then its exit value then do ...
Devang Patel
2008-07-09
1
-0
/
+13
*
Fix a typo in a comment.
Dan Gohman
2008-06-24
1
-1
/
+1
*
Do not erase induction variable increment if it is used outside the loop.
Devang Patel
2008-05-19
1
-4
/
+20
*
API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac...
Gabor Greif
2008-05-16
1
-10
/
+10
*
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-13
1
-3
/
+4
*
Porting r50563 from Tak to mainline.
Bill Wendling
2008-05-02
1
-0
/
+5
*
API changes for class Use size reduction, wave 1.
Gabor Greif
2008-04-06
1
-13
/
+13
*
Iterators folloring a SmallVector erased element are invalidated so
David Greene
2008-04-02
1
-6
/
+4
*
Reverting 49056 due to the build being broken.
Tanya Lattner
2008-04-01
1
-4
/
+6
*
Iterators folloring a SmallVector erased element are invalidated so
David Greene
2008-04-01
1
-6
/
+4
*
PHI->removeIncomingValue may remove PHInode.
Devang Patel
2008-03-27
1
-1
/
+2
*
Add incoming value from header only if phi node has any use inside the loop.
Devang Patel
2008-03-24
1
-2
/
+3
*
If loop header is also loop exiting block then OrigPN is incoming value for B...
Devang Patel
2008-02-14
1
-1
/
+7
*
A loop latch phi node may have uses inside loop, not just in loop header.
Devang Patel
2008-02-13
1
-4
/
+5
*
While moving exit condition, do not drop loop latch on the floor.
Devang Patel
2008-02-13
1
-4
/
+9
*
Keep track of exit value operand number when operands are swapped.
Devang Patel
2008-02-13
1
-1
/
+6
*
Fix PR 1995.
Devang Patel
2008-02-08
1
-21
/
+17
*
Filter loops that subtract induction variables.
Devang Patel
2008-01-29
1
-17
/
+17
*
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-29
1
-2
/
+2
*
If ExitValue operand is also defined in Loop header then
Devang Patel
2007-12-03
1
-0
/
+17
*
Handle multiple induction variables.
Devang Patel
2007-09-25
1
-7
/
+14
*
doh..
Devang Patel
2007-09-25
1
-1
/
+1
*
Add transformation to update loop interation space. Now,
Devang Patel
2007-09-25
1
-7
/
+148
*
Fix PR1692
Devang Patel
2007-09-21
1
-3
/
+5
*
Don't increment invalid iterator.
Devang Patel
2007-09-20
1
-1
/
+2
*
Relax loop ExitCondition predicate restriction.
Devang Patel
2007-09-19
1
-5
/
+7
*
Filter loops where split condition's false branch is not empty. For example
Devang Patel
2007-09-19
1
-0
/
+4
*
Bail out early, before modifying anything.
Devang Patel
2007-09-19
1
-4
/
+5
*
Work is incomplete. Loop is not modified at all right now.
Devang Patel
2007-09-19
1
-1
/
+1
*
Do not eliminate loop when it is invalid to do so. For example,
Devang Patel
2007-09-17
1
-14
/
+35
*
Skeleton for transformations to truncate loop's iteration space.
Devang Patel
2007-09-17
1
-2
/
+198
*
Temporary reverting r41817
Bill Wendling
2007-09-14
1
-15
/
+5
*
Avoid negative logic.
Devang Patel
2007-09-11
1
-4
/
+4
*
Refactor code into a separate method.
Devang Patel
2007-09-11
1
-28
/
+47
*
Clear split info object.
Devang Patel
2007-09-11
1
-0
/
+1
*
Split condition does not have to be ICmpInst in all cases.
Devang Patel
2007-09-11
1
-5
/
+8
*
Check all terminators inside loop.
Devang Patel
2007-09-10
1
-4
/
+3
*
Swap exit condition operands if it works.
Devang Patel
2007-09-10
1
-5
/
+15
*
Filter exit conditions which are not yet handled.
Devang Patel
2007-09-10
1
-1
/
+3
*
Use simpler test to filter loops.
Devang Patel
2007-08-27
1
-14
/
+3
[next]