diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-02-24 01:39:00 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-02-24 01:39:00 +0000 |
commit | 9d2ed8e632b71914b2a668932f4f49b87c3ca0b1 (patch) | |
tree | 509e863adc4d263f96df159cd8139d372dc1cb7f /lib/Analysis/MemoryDependenceAnalysis.cpp | |
parent | c3027f769a7a7479f3c24537d9d525edd83e90b1 (diff) | |
download | external_llvm-9d2ed8e632b71914b2a668932f4f49b87c3ca0b1.zip external_llvm-9d2ed8e632b71914b2a668932f4f49b87c3ca0b1.tar.gz external_llvm-9d2ed8e632b71914b2a668932f4f49b87c3ca0b1.tar.bz2 |
Add an argument to PHITranslateValue to specify the DominatorTree. If this
argument is non-null, pass it along to PHITranslateSubExpr so that it can
prefer using existing values that dominate the PredBB, instead of just
blindly picking the first equivalent value that it finds on a uselist.
Also when the DominatorTree is specified, have PHITranslateValue filter
out any result that does not dominate the PredBB. This is basically just
refactoring the check that used to be in GetAvailablePHITranslatedSubExpr
and also in GVN.
Despite my initial expectations, this change does not affect the results
of GVN for any testcases that I could find, but it should help compile time.
Before this change, if PHITranslateSubExpr picked a value that does not
dominate, PHITranslateWithInsertion would then insert a new value, which GVN
would later determine to be redundant and would replace. By picking a good
value to begin with, we save GVN the extra work of inserting and then
replacing a new value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97010 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/MemoryDependenceAnalysis.cpp')
-rw-r--r-- | lib/Analysis/MemoryDependenceAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp index 04641e8..2aa2f17 100644 --- a/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -861,7 +861,7 @@ getNonLocalPointerDepFromBB(const PHITransAddr &Pointer, uint64_t PointeeSize, // Get the PHI translated pointer in this predecessor. This can fail if // not translatable, in which case the getAddr() returns null. PHITransAddr PredPointer(Pointer); - PredPointer.PHITranslateValue(BB, Pred); + PredPointer.PHITranslateValue(BB, Pred, 0); Value *PredPtrVal = PredPointer.getAddr(); |