forked from OSchip/llvm-project
[CFG] Replace hardcoded max BBs explored as CL option. NFC.
This option was hardcoded to 32. Changing this as a CL option since we have seen some cases downstream where increasing this limit allows us to disprove reachability. Reviewed-By: jdoerfert Differential Revision: https://reviews.llvm.org/D90487
This commit is contained in:
parent
ac49500cd0
commit
7aac3a9048
|
@ -14,9 +14,18 @@
|
||||||
#include "llvm/Analysis/CFG.h"
|
#include "llvm/Analysis/CFG.h"
|
||||||
#include "llvm/Analysis/LoopInfo.h"
|
#include "llvm/Analysis/LoopInfo.h"
|
||||||
#include "llvm/IR/Dominators.h"
|
#include "llvm/IR/Dominators.h"
|
||||||
|
#include "llvm/Support/CommandLine.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
|
// The max number of basic blocks explored during reachability analysis between
|
||||||
|
// two basic blocks. This is kept reasonably small to limit compile time when
|
||||||
|
// repeatedly used by clients of this analysis (such as captureTracking).
|
||||||
|
static cl::opt<unsigned> DefaultMaxBBsToExplore(
|
||||||
|
"dom-tree-reachability-max-bbs-to-explore", cl::Hidden,
|
||||||
|
cl::desc("Max number of BBs to explore for reachability analysis"),
|
||||||
|
cl::init(32));
|
||||||
|
|
||||||
/// FindFunctionBackedges - Analyze the specified function to find all of the
|
/// FindFunctionBackedges - Analyze the specified function to find all of the
|
||||||
/// loop backedges in the function and return them. This is a relatively cheap
|
/// loop backedges in the function and return them. This is a relatively cheap
|
||||||
/// (compared to computing dominators and loop info) analysis.
|
/// (compared to computing dominators and loop info) analysis.
|
||||||
|
@ -152,9 +161,7 @@ bool llvm::isPotentiallyReachableFromMany(
|
||||||
|
|
||||||
const Loop *StopLoop = LI ? getOutermostLoop(LI, StopBB) : nullptr;
|
const Loop *StopLoop = LI ? getOutermostLoop(LI, StopBB) : nullptr;
|
||||||
|
|
||||||
// Limit the number of blocks we visit. The goal is to avoid run-away compile
|
unsigned Limit = DefaultMaxBBsToExplore;
|
||||||
// times on large CFGs without hampering sensible code. Arbitrarily chosen.
|
|
||||||
unsigned Limit = 32;
|
|
||||||
SmallPtrSet<const BasicBlock*, 32> Visited;
|
SmallPtrSet<const BasicBlock*, 32> Visited;
|
||||||
do {
|
do {
|
||||||
BasicBlock *BB = Worklist.pop_back_val();
|
BasicBlock *BB = Worklist.pop_back_val();
|
||||||
|
|
Loading…
Reference in New Issue