aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LiveDebugVariables.cpp
diff options
context:
space:
mode:
authorFlorian Hahn <florian_hahn@apple.com>2019-10-29 11:54:18 +0000
committerFlorian Hahn <florian_hahn@apple.com>2019-10-29 12:05:09 +0000
commit596e4ab97a1637d2c7781aed20e3d62bcf07ef5d (patch)
treeb454cb42e5fd12559d05e17f69a31fe70e96f92d /llvm/lib/CodeGen/LiveDebugVariables.cpp
parent2c496bb5309c972d59b11f05aee4782ddc087e71 (diff)
downloadllvm-596e4ab97a1637d2c7781aed20e3d62bcf07ef5d.zip
llvm-596e4ab97a1637d2c7781aed20e3d62bcf07ef5d.tar.gz
llvm-596e4ab97a1637d2c7781aed20e3d62bcf07ef5d.tar.bz2
[LCSSA] Forget values we create LCSSA phis for
Summary: Currently we only forget the loop we added LCSSA phis for. But SCEV expressions in other loops could also depend on the instruction we added a PHI for and currently we do not invalidate those expressions. This can happen when we use ScalarEvolution before converting a function to LCSSA form. The SCEV expressions will refer to the non-LCSSA value. If this SCEV expression is then used with the expander, we do not preserve LCSSA form. This patch properly forgets the values we created PHIs for. Those need to be recomputed again. This patch fixes PR43458. Currently SCEV::verify does not catch this mismatch and any test would need to run multiple passes to trigger the error (e.g. -loop-reduce -loop-unroll). I will also look into catching this kind of mismatch in the verifier. Also, we currently forget the whole loop in LCSSA and I'll check if we can be more surgical. Reviewers: efriedma, sanjoy.google, reames Reviewed By: efriedma Subscribers: zzheng, hiraditya, javed.absar, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D68194
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
0 files changed, 0 insertions, 0 deletions