Switch GVN and memdep to use PHITransAddr, which correctly handles
[oota-llvm.git] / test / Transforms / GVN /
2009-12-09 Chris LattnerSwitch GVN and memdep to use PHITransAddr, which correc...
2009-12-06 Chris Lattnerconstant fold loads from memcpy's from global constants...
2009-12-06 Chris Lattneradd support for forwarding mem intrinsic values to...
2009-12-06 Chris LattnerHandle forwarding local memsets to loads. For example...
2009-12-06 Chris Lattnermerge two tests.
2009-12-04 Chris LattnerSmall and carefully crafted testcase showing a miscompi...
2009-12-03 Owen AndersonFix this crasher, and add a FIXME for a missed optimiza...
2009-12-03 Chris Lattneradd a failing testcase.
2009-12-02 Owen AndersonCleanup/remove some parts of the lifetime region handli...
2009-12-01 Chris Lattnerminimize this a bit more.
2009-12-01 Chris Lattnermerge 2009-11-29-ReverseMap.ll into crash.ll
2009-11-30 Nick LewyckyAdd a testcase for the current llvm-gcc build failure.
2009-11-29 Chris Lattneradd PR#
2009-11-29 Chris LattnerAdd a testcase for:
2009-11-29 Chris Lattneradd a testcase for
2009-11-28 Chris Lattnerreenable load address insertion in load pre. This...
2009-11-27 Chris Lattnerdisable value insertion for now, I need to figure out how
2009-11-27 Chris LattnerI accidentally implemented this :)
2009-11-27 Chris Lattneradd support for recursive phi translation and phi
2009-11-27 Chris Lattneradd two simple test cases we now optimize (to one load...
2009-11-27 Chris Lattnerteach GVN's load PRE to insert computations of the...
2009-11-27 Chris Lattneradd some tests for memdep phi translation + PRE.
2009-11-27 Chris Lattnerthis test is failing, and is expected to.
2009-11-27 Chris Lattnerfilecheckize
2009-11-27 Chris Lattnerrename test.
2009-11-27 Chris LattnerFix phi translation in load PRE to agree with the phi
2009-11-27 Chris Lattnerredisable this, my bootstrap worked because it wasn...
2009-11-27 Chris Lattnertry again.
2009-11-27 Chris Lattnerthis is causing buildbot failures, disable for now.
2009-11-27 Chris Lattnerteach phi translation of GEPs to simplify geps like...
2009-11-27 Chris Lattnerteach memdep to do trivial PHI translation of GEPs...
2009-11-26 Chris LattnerTeach memdep to phi translate bitcasts. This allows...
2009-11-26 Chris Lattnerconvert to filecheck
2009-11-20 Benjamin KramerTry to work around grep's "Binary file (standard input...
2009-11-19 Dan GohmanExtend CaptureTracking to indicate when a value is...
2009-11-09 Dan GohmanDefault-addressspace null pointers don't alias anything...
2009-10-28 Owen AndersonTreat lifetime begin/end markers as allocations/frees...
2009-10-28 Owen AndersonBe more careful about invariance reasoning on "store...
2009-10-28 Owen AndersonAdd trivial support for the invariance intrinsics to...
2009-10-16 Duncan SandsCheck that GVN performs this transform even if the...
2009-10-13 Victor HernandezMemory dependence analysis was incorrectly stopping...
2009-10-10 Chris Lattnerswitch GVN to use SSAUpdater. Besides removing a lot...
2009-09-21 Chris Lattnerfix PR5016, a crash I introduced in GVN handing first...
2009-09-21 Chris Lattnerenable non-local analysis and PRE of large store -...
2009-09-21 Chris Lattneradd pr#
2009-09-21 Chris LattnerImprove GVN to be able to forward substitute a small...
2009-09-21 Chris Lattnerfix a FileCheck bug where:
2009-09-20 Daniel DunbarWork around a FileCheck bug, for now.
2009-09-20 Chris LattnerRevert r82404, it is causing a bootstrap miscompile...
2009-09-20 Chris Lattnerthis was not supposed to be committed
2009-09-20 Chris Lattnerimplement and document support for CHECK-NOT
2009-09-20 Chris Lattnerimprove memdep to eliminate bitcasts (and aliases,...
2009-09-20 Chris LattnerMove CoerceAvailableValueToLoadType earlier in GVN...
2009-09-20 Chris Lattnerenhance GVN to forward substitute a stored value to...
2009-09-11 Dan GohmanChange tests from "opt %s" to "opt < %s" so that opt...
2009-09-08 Dan GohmanUse opt -S instead of piping bitcode output through...
2009-09-08 Dan GohmanChange these tests to feed the assembly files to opt...
2009-09-05 Daniel DunbarEliminate uses of %prcontext.
2009-09-03 Dan GohmanChange PHINode::hasConstantValue to have a DominatorTre...
2009-07-13 Chris LattnerMove the re-sort of invalidated NonLocalPointerDeps...
2009-06-17 Dale JohannesenThis fixes a bug introduced in 72661, which can
2009-05-31 Owen AndersonBe more aggressive in doing LoadPRE by tracing backward...
2009-05-25 Chris Lattnermake memdep use the getModRefInfo method for stores...
2009-04-01 Owen AndersonReapply r68211, with the miscompilations it caused...
2009-04-01 Dan GohmanRevert r68172. It caused regressions in
2009-04-01 Owen AndersonEnhance GVN to propagate simple conditionals. This...
2009-03-10 John CriswellDo not attempt to do parial redundancy elimination...
2009-03-06 Devang PatelSkip DbgInfoIntrinsic.
2009-02-18 Owen AndersonAdd a test for r61358, which I forgot to add way back...
2009-01-23 Chris Lattnerfix two more cases where we could let the NLPDI cache...
2009-01-22 Chris LattnerFix PR3358, a really nasty bug where recursive phi...
2008-12-16 Chris Lattnerfix PR3217: fully cached queries need to be verified...
2008-12-15 Chris LattnerAdd a testcase for GCC PR 23455, which lpre handles...
2008-12-15 Chris Lattnergvn now hoists this load out of the hot non-call path.
2008-12-15 Chris LattnerAdjust testcase to make it more stable across visitatio...
2008-12-15 Chris Lattnermake GVN try to rename inputs to the resultant replaced...
2008-12-15 Chris LattnerImplement initial support for PHI translation in memdep...
2008-12-14 Chris Lattneranother random testcase that shouldn't crash gvn and is
2008-12-13 Chris LattnerRLE isn't smart enough to eliminate this safely yet.
2008-12-13 Chris Lattnerrename some tests to be more uniform in naming convention.
2008-12-13 Chris Lattnergvn should never crash on this.
2008-12-13 Bill WendlingTemporarily revert r60973. It's inexplicably causing...
2008-12-13 Chris Lattnermake RLE preserve the name of the load that it replaces...
2008-12-09 Chris Lattnerloosen up an assertion that isn't valid when called...
2008-12-09 Chris LattnerTeach BasicAA::getModRefInfo(CallSite, CallSite) some
2008-12-05 Chris LattnerFix test/Transforms/GVN/pre-load.ll
2008-12-02 Chris LattnerImplement PRE of loads in the GVN pass with a pretty...
2008-12-02 Owen AndersonAdd a test for my previous PRE fix.
2008-12-01 Chris Lattnertestcase for my previous commit.
2008-11-29 Chris Lattnerdon't require GVN to work on dead values, just make the
2008-07-02 Owen AndersonA better fix for PR2503 that doesn't pessimize GVN...
2008-06-26 Owen AndersonUse the -enable-pre flag so this test doesn't fail.
2008-06-18 Owen AndersonAdd local PRE to GVN. This only operates in cases...
2008-05-20 Gabor Greifsabre brings to my attention that the 'tr' suffix is...
2008-05-20 Gabor GreifRename the last test with .llx extension to .ll, resolv...
2008-05-13 Owen AndersonAdd a testcase for non-local CSE of read-only calls.
2008-04-11 Owen AndersonAdd testcase for PR2213.
2008-04-09 Owen AndersonFactor a bunch of functionality related to memcpy and...
2008-03-29 Chris Lattneradd a testcase for forming memset from noncontiguous...
2008-03-24 Chris Lattnerapparently tclsh doesn't lex like bash. Weird.
next