[PATCH] D90487: [CFG] Replace hardcoded max BBs explored as CL option. NFC.
Anna Thomas via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 30 12:12:07 PDT 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7aac3a904887: [CFG] Replace hardcoded max BBs explored as CL option. NFC. (authored by anna).
Changed prior to commit:
https://reviews.llvm.org/D90487?vs=301965&id=301985#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90487/new/
https://reviews.llvm.org/D90487
Files:
llvm/lib/Analysis/CFG.cpp
Index: llvm/lib/Analysis/CFG.cpp
===================================================================
--- llvm/lib/Analysis/CFG.cpp
+++ llvm/lib/Analysis/CFG.cpp
@@ -14,9 +14,18 @@
#include "llvm/Analysis/CFG.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/IR/Dominators.h"
+#include "llvm/Support/CommandLine.h"
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
/// loop backedges in the function and return them. This is a relatively cheap
/// (compared to computing dominators and loop info) analysis.
@@ -152,9 +161,7 @@
const Loop *StopLoop = LI ? getOutermostLoop(LI, StopBB) : nullptr;
- // Limit the number of blocks we visit. The goal is to avoid run-away compile
- // times on large CFGs without hampering sensible code. Arbitrarily chosen.
- unsigned Limit = 32;
+ unsigned Limit = DefaultMaxBBsToExplore;
SmallPtrSet<const BasicBlock*, 32> Visited;
do {
BasicBlock *BB = Worklist.pop_back_val();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D90487.301985.patch
Type: text/x-patch
Size: 1438 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20201030/09700cf2/attachment.bin>
More information about the llvm-commits
mailing list