aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar
Commit message (Expand)AuthorAgeFilesLines
* Temporary reverting r41817Bill Wendling2007-09-141-15/+5
* Change llvm.gcroot to not init the root to null at runtime, this preventsChris Lattner2007-09-121-4/+1
* Turn calls to trampolines into calls to the underlyingDuncan Sands2007-09-111-0/+138
* Avoid negative logic.Devang Patel2007-09-111-4/+4
* Refactor code into a separate method.Devang Patel2007-09-111-28/+47
* Clear split info object.Devang Patel2007-09-111-0/+1
* Split condition does not have to be ICmpInst in all cases.Devang Patel2007-09-111-5/+8
* Check all terminators inside loop.Devang Patel2007-09-101-4/+3
* remove some dead code, this is handled by constant folding.Chris Lattner2007-09-101-8/+1
* Swap exit condition operands if it works.Devang Patel2007-09-101-5/+15
* Prevent tailcallelim from breaking "recursive" calls to builtins.Chris Lattner2007-09-101-0/+9
* Filter exit conditions which are not yet handled.Devang Patel2007-09-101-1/+3
* Require SCEV before LCSSA.Devang Patel2007-09-101-1/+1
* Don't zap back to back volatile load/storesChris Lattner2007-09-071-1/+1
* Next round of APFloat changes.Dale Johannesen2007-09-061-1/+1
* Use isTrueWhenEqual. Thanks Chris!Nick Lewycky2007-09-061-8/+13
* When the two operands of an icmp are equal, there are five possible predicatesNick Lewycky2007-09-061-1/+3
* Forgot to obey 80 column rule. Fixing that.Chuck Rose III2007-09-051-1/+2
* Added default parameters to GetElementPtrInstr constructor call. Visual Stud...Chuck Rose III2007-09-051-1/+1
* Update GEP constructors to use an iterator interface to fixDavid Greene2007-09-046-25/+47
* Fix a gcroot lowering bug.Evan Cheng2007-09-011-2/+5
* Cut off crazy computation. This helps PR1622 slightly.Chris Lattner2007-08-281-0/+4
* Use simpler test to filter loops.Devang Patel2007-08-271-14/+3
* Update InvokeInst to work like CallInstDavid Greene2007-08-272-2/+2
* Don't DSe volatile stores.Owen Anderson2007-08-261-18/+25
* Move exit condition and exit branch from exiting block into loop header and d...Devang Patel2007-08-251-0/+155
* Constant split values needs upper bound and lower bound check, just like any ...Devang Patel2007-08-251-6/+0
* While calculating upper loop bound for first loop and lower loop bound for se...Devang Patel2007-08-251-36/+231
* Fix regression that I caused yesterday night while adding logic to select app...Devang Patel2007-08-241-2/+2
* It is not safe to execute split condition's true branch first all the time. I...Devang Patel2007-08-241-5/+35
* Reject ICMP_NE as index split condition.Devang Patel2007-08-241-0/+3
* Tightenup loop filter.Devang Patel2007-08-241-2/+22
* Remove incomplete cost analysis.Devang Patel2007-08-241-40/+3
* Remove dead code.Devang Patel2007-08-221-5/+0
* Fix typo.Devang Patel2007-08-221-1/+1
* Cosmetic changeDevang Patel2007-08-221-84/+102
* Refactor loop condition check in a separate function.Devang Patel2007-08-221-17/+34
* Fix thinko.Devang Patel2007-08-221-3/+3
* Rename bunch of variables.Devang Patel2007-08-211-72/+79
* Preserve LCSSA.Devang Patel2007-08-211-1/+15
* Use SmallVector instead of std::vector.Devang Patel2007-08-214-7/+7
* s/ExitBlock/ExitingBlock/gDevang Patel2007-08-201-26/+27
* Replace indunction variable with split value in loop body.Devang Patel2007-08-201-1/+5
* Do not split loops rejected by processOneIterationLoop().Devang Patel2007-08-201-5/+11
* Oops, remove assert that wasn't meant to be committed.Nick Lewycky2007-08-181-2/+0
* Never insert duplicate edges.Nick Lewycky2007-08-181-13/+17
* Typo.Nick Lewycky2007-08-181-1/+1
* Avoid spliting loops where two split condition branches are not independent.Devang Patel2007-08-181-1/+11
* When one branch of condition is eliminated then head of the otherDevang Patel2007-08-171-21/+42
* Factor out some code into a helper function.Owen Anderson2007-08-161-55/+34