Allow the inline limit to be modified on the commandline for debugging
authorChris Lattner <sabre@nondot.org>
Sat, 27 Apr 2002 02:27:48 +0000 (02:27 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 27 Apr 2002 02:27:48 +0000 (02:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2327 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/ComputeClosure.cpp

index 4327baaa80bb8d2f5a914ce180362a3eeb247b16..501fd0c3d912c1e7457ccd33c28878ac79f89f5e 100644 (file)
@@ -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<GlobalDSNode>(CN->getArgValues(0)[0].Node);
     Function *F = cast<Function>(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;
     }