This is an archive of the discontinued LLVM Phabricator instance.

[DO NOT MERGE] Explore MSSA behavior in LoopSimplifyCFG
AbandonedPublic

Authored by mkazantsev on Feb 21 2019, 3:44 AM.

Details

Summary

With this patch, test test/Transforms/LoopSimplifyCFG/lcssa.ll hits the assertion

opt: /home/mkazantsev/work/llvm/llvm/lib/Analysis/MemorySSAUpdater.cpp:848: void llvm::MemorySSAUpdater::applyInsertUpdates(llvm::ArrayRef<llvm::cfg::Update<llvm::BasicBlock*> >, llvm::DominatorTree&, const llvm::GraphDiff<llvm::BasicBlock*, false>*): Assertion `DT.dominates(NewIDom, PrevIDom) && "New idom should dominate old idom"' failed.

when we try to apply updates to MSSA. The very same updates have updated DT correctly (it passes verification).
It must be something fishy around how MSSA updater works which I don't understand.

Diff Detail

Event Timeline

mkazantsev created this revision.Feb 21 2019, 3:44 AM

Shall we close this?

mkazantsev abandoned this revision.Sep 24 2020, 12:29 AM