aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/InitPreprocessor.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2014-01-04 05:52:49 +0000
committerAndrew Trick <atrick@apple.com>2014-01-04 05:52:49 +0000
commitaceac9746da3d4a8547aaaedd9d763a9638c1b5c (patch)
treef579b760874d8908e399cf2a19de4169441368f1 /clang/lib/Frontend/InitPreprocessor.cpp
parentc19df037745e31f0a9ad47b1e413f4d0746da9d9 (diff)
downloadllvm-aceac9746da3d4a8547aaaedd9d763a9638c1b5c.zip
llvm-aceac9746da3d4a8547aaaedd9d763a9638c1b5c.tar.gz
llvm-aceac9746da3d4a8547aaaedd9d763a9638c1b5c.tar.bz2
Fix PR18361: Invalidate LoopDispositions after LoopSimplify hoists things.
getSCEV for an ashr instruction creates an intermediate zext expression when it truncates its operand. The operand is initially inside the loop, so the narrow zext expression has a non-loop-invariant loop disposition. LoopSimplify then runs on an outer loop, hoists the ashr operand, and properly invalidate the SCEVs that are mapped to value. The SCEV expression for the ashr is now an AddRec with the hoisted value as the now loop-invariant start value. The LoopDisposition of this wide value was properly invalidated during LoopSimplify. However, if we later get the ashr SCEV again, we again try to create the intermediate zext expression. We get the same SCEV that we did earlier, and it is still cached because it was never mapped to a Value. When we try to create a new AddRec we abort because we're using the old non-loop-invariant LoopDisposition. I don't have a solution for this other than to clear LoopDisposition when LoopSimplify hoists things. I think the long-term strategy should be to perform LoopSimplify on all loops before computing SCEV and before running any loop opts on individual loops. It's possible we may want to rerun LoopSimplify on individual loops, but it should rarely do anything, so rarely require invalidating SCEV. llvm-svn: 198478
Diffstat (limited to 'clang/lib/Frontend/InitPreprocessor.cpp')
0 files changed, 0 insertions, 0 deletions