[JumpThreading] PR36133 enable/disable DominatorTree for LVI analysis
authorBrian M. Rzycki <brzycki@gmail.com>
Fri, 16 Feb 2018 16:35:17 +0000 (16:35 +0000)
committerBrian M. Rzycki <brzycki@gmail.com>
Fri, 16 Feb 2018 16:35:17 +0000 (16:35 +0000)
commitf1a7df5ef296296a48b892775ba39ab886b7de6f
treec06cfc4bb18925da136452a4435c669de4624a43
parentda38b5fd49b210b0187b0fb0a3f74d48a5c5c883
[JumpThreading] PR36133 enable/disable DominatorTree for LVI analysis

Summary:
The LazyValueInfo pass caches a copy of the DominatorTree when available.
Whenever there are pending DominatorTree updates within JumpThreading's
DeferredDominance object we cannot use the cached DT for LVI analysis.
This commit adds the new methods enableDT() and disableDT() to LVI.
JumpThreading also sets the appropriate usage model before calling LVI
analysis methods.

Fixes https://bugs.llvm.org/show_bug.cgi?id=36133

Reviewers: sebpop, dberlin, kuhar

Reviewed by: sebpop, kuhar

Subscribers: uabelho, llvm-commits, aprantl, hiraditya, a.elovikov

Differential Revision: https://reviews.llvm.org/D42717

llvm-svn: 325356
llvm/include/llvm/Analysis/LazyValueInfo.h
llvm/include/llvm/IR/Dominators.h
llvm/lib/Analysis/LazyValueInfo.cpp
llvm/lib/IR/Dominators.cpp
llvm/lib/Transforms/Scalar/JumpThreading.cpp
llvm/test/Transforms/JumpThreading/pr36133.ll [new file with mode: 0644]