mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Tell ScalarEvolution to forget everything it knows about a loop before
rotating the loop, since loop rotation is a very significant change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82901 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6afea253e0
commit
e6fe67b2fb
@ -177,6 +177,11 @@ bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
|
|||||||
|
|
||||||
// Now, this loop is suitable for rotation.
|
// Now, this loop is suitable for rotation.
|
||||||
|
|
||||||
|
// Anything ScalarEvolution may know about this loop or the PHI nodes
|
||||||
|
// in its header will soon be invalidated.
|
||||||
|
if (ScalarEvolution *SE = getAnalysisIfAvailable<ScalarEvolution>())
|
||||||
|
SE->forgetLoopBackedgeTakenCount(L);
|
||||||
|
|
||||||
// Find new Loop header. NewHeader is a Header's one and only successor
|
// Find new Loop header. NewHeader is a Header's one and only successor
|
||||||
// that is inside loop. Header's other successor is outside the
|
// that is inside loop. Header's other successor is outside the
|
||||||
// loop. Otherwise loop is not suitable for rotation.
|
// loop. Otherwise loop is not suitable for rotation.
|
||||||
|
Loading…
Reference in New Issue
Block a user