summaryrefslogtreecommitdiff
path: root/include/llvm/PassManagers.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-15 05:03:04 +0000
committerChris Lattner <sabre@nondot.org>2009-09-15 05:03:04 +0000
commit9554c613282c28fbe94bc8b0a5ba736f046643b8 (patch)
tree478d7169a7b8ab7c1adaa975a290c1b5c8297fd3 /include/llvm/PassManagers.h
parent745c9be986bce1fb99fdbad6b9ae1307586c04a2 (diff)
downloadllvm-9554c613282c28fbe94bc8b0a5ba736f046643b8.tar.gz
llvm-9554c613282c28fbe94bc8b0a5ba736f046643b8.tar.bz2
llvm-9554c613282c28fbe94bc8b0a5ba736f046643b8.tar.xz
make -debug-pass=Executions show information about what call graph nodes
are in the SCC for each execution of a CGSCC pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassManagers.h')
-rw-r--r--include/llvm/PassManagers.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/PassManagers.h b/include/llvm/PassManagers.h
index 1c4c741d43..6a14b152bb 100644
--- a/include/llvm/PassManagers.h
+++ b/include/llvm/PassManagers.h
@@ -380,6 +380,11 @@ protected:
// then PMT_Last active pass mangers.
std::map<AnalysisID, Pass *> *InheritedAnalysis[PMT_Last];
+
+ /// isPassDebuggingExecutionsOrMore - Return true if -debug-pass=Executions
+ /// or higher is specified.
+ bool isPassDebuggingExecutionsOrMore() const;
+
private:
void dumpAnalysisUsage(const StringRef &Msg, const Pass *P,
const AnalysisUsage::VectorType &Set) const;