From 4e52f71340bea0c5ddeb61f3ed85e8b2fc468d11 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 27 Apr 2002 02:27:48 +0000 Subject: [PATCH] Allow the inline limit to be modified on the commandline for debugging llvm-svn: 2327 --- lib/Analysis/DataStructure/ComputeClosure.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/Analysis/DataStructure/ComputeClosure.cpp b/lib/Analysis/DataStructure/ComputeClosure.cpp index 4327baaa80b..501fd0c3d91 100644 --- a/lib/Analysis/DataStructure/ComputeClosure.cpp +++ b/lib/Analysis/DataStructure/ComputeClosure.cpp @@ -86,6 +86,8 @@ static bool isResolvableCallNode(CallDSNode *CN) { return false; } +#include "Support/CommandLine.h" +static cl::Int InlineLimit("dsinlinelimit", "Max number of graphs to inline when computing ds closure", cl::Hidden, 100); // computeClosure - Replace all of the resolvable call nodes with the contents // of their corresponding method data structure graph... @@ -107,8 +109,11 @@ void FunctionDSGraph::computeClosure(const DataStructure &DS) { GlobalDSNode *FGDN = cast(CN->getArgValues(0)[0].Node); Function *F = cast(FGDN->getGlobal()); - if (NumInlines++ == 100) { // CUTE hack huh? + if (NumInlines++ == InlineLimit) { // CUTE hack huh? cerr << "Infinite (?) recursion halted\n"; + cerr << "Not inlining: " << F->getName() << "\n"; + CN->dump(); + return; }