summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-05-02 17:43:35 +0000
committerDan Gohman <gohman@apple.com>2009-05-02 17:43:35 +0000
commitf150572af72f108fd727d11c0b4641a618fc57d4 (patch)
tree454bcbed4c5e227176161f562da0aeeb20533ea2 /llvm/include
parentc27345f0b4d9af879d249c9aca26e4f8d0aab0b5 (diff)
downloadbcm5719-llvm-f150572af72f108fd727d11c0b4641a618fc57d4.tar.gz
bcm5719-llvm-f150572af72f108fd727d11c0b4641a618fc57d4.zip
When ScalarEvolution is told to forget the trip count for a loop, have
it also forget any SCEVs associated with loop-header PHIs in the loop, as they may be dependent on trip count information. llvm-svn: 70633
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/Analysis/ScalarEvolution.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h
index 6ef0b35e35d..a0a7c1e81d2 100644
--- a/llvm/include/llvm/Analysis/ScalarEvolution.h
+++ b/llvm/include/llvm/Analysis/ScalarEvolution.h
@@ -333,6 +333,11 @@ namespace llvm {
/// expression cannot be evaluated, return UnknownValue itself.
SCEVHandle getSCEVAtScope(SCEV *S, const Loop *L);
+ /// forgetLoopPHIs - Delete the memoized SCEVs associated with the
+ /// PHI nodes in the given loop. This is used when the trip count of
+ /// the loop may have changed.
+ void forgetLoopPHIs(const Loop *L);
+
public:
static char ID; // Pass identification, replacement for typeid
ScalarEvolution();
OpenPOWER on IntegriCloud