aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GVN
Commit message (Expand)AuthorAgeFilesLines
* Fix PR5744, a case where we were getting the pointer size instead of theChris Lattner2009-12-101-0/+16
* fix hte last remaining known (by me) phi translation bug. When we reanalyzeChris Lattner2009-12-091-4/+16
* Add a minor optimization: if we haven't changed the operands of anChris Lattner2009-12-091-66/+0
* fix PR5733, a case where we'd replace an add with a lexically identical Chris Lattner2009-12-091-0/+66
* merge crash-2.ll into crash.llChris Lattner2009-12-092-43/+43
* the code in GVN that tries to forward large loads to small Chris Lattner2009-12-091-0/+54
* Switch GVN and memdep to use PHITransAddr, which correctly handlesChris Lattner2009-12-091-1/+50
* constant fold loads from memcpy's from global constants. This is importantChris Lattner2009-12-061-0/+16
* add support for forwarding mem intrinsic values to non-local loads.Chris Lattner2009-12-061-0/+26
* Handle forwarding local memsets to loads. For example, we optimize this:Chris Lattner2009-12-061-0/+37
* merge two tests.Chris Lattner2009-12-062-20/+25
* Small and carefully crafted testcase showing a miscompilation by GVNChris Lattner2009-12-041-0/+33
* Fix this crasher, and add a FIXME for a missed optimization.Owen Anderson2009-12-031-1/+0
* add a failing testcase.Chris Lattner2009-12-031-0/+44
* Cleanup/remove some parts of the lifetime region handling code in memdep and ...Owen Anderson2009-12-021-2/+2
* minimize this a bit more.Chris Lattner2009-12-011-2/+1
* merge 2009-11-29-ReverseMap.ll into crash.llChris Lattner2009-12-012-33/+34
* Add a testcase for the current llvm-gcc build failure.Nick Lewycky2009-11-301-0/+33
* add PR#Chris Lattner2009-11-291-0/+1
* Add a testcase for:Chris Lattner2009-11-291-0/+47
* add a testcase forChris Lattner2009-11-291-0/+45
* reenable load address insertion in load pre. This allows us toChris Lattner2009-11-281-14/+14
* disable value insertion for now, I need to figure out howChris Lattner2009-11-272-13/+72
* I accidentally implemented this :)Chris Lattner2009-11-271-2/+1
* add support for recursive phi translation and phi Chris Lattner2009-11-271-0/+43
* add two simple test cases we now optimize (to one load in the loop each) and ...Chris Lattner2009-11-271-0/+121
* teach GVN's load PRE to insert computations of the address in predecessorsChris Lattner2009-11-271-0/+34
* add some tests for memdep phi translation + PRE.Chris Lattner2009-11-271-2/+53
* this test is failing, and is expected to.Chris Lattner2009-11-271-1/+5
* filecheckizeChris Lattner2009-11-271-2/+8
* rename test.Chris Lattner2009-11-271-0/+0
* Fix phi translation in load PRE to agree with the phi Chris Lattner2009-11-271-6/+6
* redisable this, my bootstrap worked because it wasn't an optimized build, who...Chris Lattner2009-11-271-6/+6
* try again.Chris Lattner2009-11-271-6/+6
* this is causing buildbot failures, disable for now.Chris Lattner2009-11-271-6/+6
* teach phi translation of GEPs to simplify geps like 'gep x, 0'.Chris Lattner2009-11-271-0/+26
* teach memdep to do trivial PHI translation of GEPs. More toChris Lattner2009-11-271-1/+27
* Teach memdep to phi translate bitcasts. This allows us to compileChris Lattner2009-11-261-0/+26
* convert to filecheckChris Lattner2009-11-261-15/+19
* Try to work around grep's "Binary file (standard input) matches" complaints seenBenjamin Kramer2009-11-201-1/+1
* Extend CaptureTracking to indicate when a value is never stored, evenDan Gohman2009-11-191-0/+108
* Default-addressspace null pointers don't alias anything. This allowsDan Gohman2009-11-091-0/+20
* Treat lifetime begin/end markers as allocations/frees respectively for theOwen Anderson2009-10-281-0/+20
* Be more careful about invariance reasoning on "store" queries. Stores still ...Owen Anderson2009-10-281-0/+15
* Add trivial support for the invariance intrinsics to memdep. This logic isOwen Anderson2009-10-281-0/+21
* Check that GVN performs this transform even if the callsDuncan Sands2009-10-161-14/+14
* Memory dependence analysis was incorrectly stopping to scan for stores to a p...Victor Hernandez2009-10-131-0/+15
* switch GVN to use SSAUpdater. Besides removing a lot of complexityChris Lattner2009-10-101-2/+2
* fix PR5016, a crash I introduced in GVN handing first classChris Lattner2009-09-211-0/+14
* enable non-local analysis and PRE of large store -> little load.Chris Lattner2009-09-211-1/+51