summaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/GVN.cpp
Commit message (Expand)AuthorAgeFilesLines
* Change GetPointerBaseWithConstantOffset's DataLayout argument from aDan Gohman2013-01-311-3/+3
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-6/+6
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-6/+6
* Fix an obvious typo that causes an assertion failure when runningDuncan Sands2012-11-021-1/+1
* Remove a wrapper around getIntPtrType added to GVN by Hal in commit 166624 (theDuncan Sands2012-10-291-14/+4
* Update GVN to support vectors of pointers.Hal Finkel2012-10-241-20/+30
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-241-4/+5
* Move TargetData to DataLayout.Micah Villmow2012-10-081-15/+15
* Release build: guard dump functions withManman Ren2012-09-121-1/+1
* Move spaces to the right places. No functionality change.Nick Lewycky2012-09-091-4/+4
* Release build: guard dump functions with "ifndef NDEBUG"Manman Ren2012-09-061-0/+2
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-291-2/+2
* GVN: Fix quadratic runtime on the number of switch cases.Benjamin Kramer2012-08-241-2/+10
* Teach GVN to reason about edges dominating uses. This allows it to handle casesRafael Espindola2012-08-161-47/+48
* Constify some basic blocks, no functionality change.Rafael Espindola2012-08-101-8/+8
* Clean whitespaces.Nadav Rotem2012-07-241-133/+133
* Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth2012-06-291-11/+11
* refactor the MemoryBuiltin analysis:Nuno Lopes2012-06-211-2/+2
* Move the Metadata merging methods from GVN and make them public in MDNode.Hal Finkel2012-06-161-153/+3
* When gvn decides to replace an instruction with another, we have to patch theRafael Espindola2012-06-041-2/+200
* Fix PR12858, a crash due to GVN's PRE not fully removing an instruction from theDuncan Sands2012-05-221-6/+12
* Change recurse depth limit to uint32 to fix warning.David Blaikie2012-04-271-1/+1
* Add an early bailout to IsValueFullyAvailableInBlock from deeply nested blocks.Mon P Wang2012-04-271-3/+12
* Make GVN's propagateEquality non-recursive. No intended functionality change.Duncan Sands2012-04-061-98/+105
* Don't PRE compares.Jakob Stoklund Olesen2012-03-291-1/+8
* When propagating equalities, eg replacing A with B in every basic blockDuncan Sands2012-03-231-0/+3
* llvm::SwitchInstStepan Dyatkovskiy2012-03-111-1/+1
* Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy2012-03-081-3/+4
* This is not a common case, in fact it never happens!Duncan Sands2012-03-051-4/+0
* Replace the ad-hoc hashing in GVN with the new hashing infrastructure.Chandler Carruth2012-03-051-10/+13
* Nick pointed out on IRC that GVN's propagateEquality wasn't propagatingDuncan Sands2012-03-041-1/+11
* Have GVN also do condition propagation when the right-hand side is notDuncan Sands2012-02-291-11/+20
* Micro-optimization, no functionality change.Duncan Sands2012-02-271-7/+12
* The value numbering function is recursive, so it is possible for multiple newDuncan Sands2012-02-271-2/+2
* When performing a conditional branch depending on the value of a comparisonDuncan Sands2012-02-271-4/+62
* Teach GVN that x+y is the same as y+x and that x<y is the same as y>x.Duncan Sands2012-02-241-1/+16
* Use Use::set rather than finding the operand number of the useDuncan Sands2012-02-081-6/+3
* Neaten up this method. Check that if there is only oneDuncan Sands2012-02-051-3/+3
* Fix a thinko pointed out by Eli and the buildbots.Duncan Sands2012-02-051-1/+1
* Reduce the number of dom queries made by GVN's conditional propagationDuncan Sands2012-02-051-31/+9
* Reduce the number of non-trivial domtree queries by about 1% whenDuncan Sands2012-02-051-15/+17
* SwitchInst refactoring.Stepan Dyatkovskiy2012-02-011-2/+2
* Increase the initial vector size to be equivalent to the size of the DepsBill Wendling2012-01-311-2/+2
* Cache the size of the vector instead of calling .size() all over the place.Bill Wendling2012-01-311-5/+5
* Typo.Chad Rosier2012-01-301-1/+1
* Typo.Chad Rosier2012-01-301-1/+1
* Propagate TargetLibraryInfo throughout ConstantFolding.cpp and Chad Rosier2011-12-011-2/+7
* Don't replace all dominated uses if there is only one use, since thatDuncan Sands2011-10-151-4/+9
* Enhance the memdep interface so that users can tell the difference between a ...Eli Friedman2011-10-131-10/+10
* Teach GVN to also propagate switch cases. For example, in this codeDuncan Sands2011-10-071-31/+59