Generalize abstract interpreter interface to allow linking in an arbitrary number...
[oota-llvm.git] / tools / bugpoint / bugpoint.cpp
index e781aa8f3cd8d19f0167bf459df7a9ffcdc8eff2..25fe1a25245fe04c7b88992952fd9a5d39deeb2f 100644 (file)
@@ -7,8 +7,10 @@
 //===----------------------------------------------------------------------===//
 
 #include "BugDriver.h"
-#include "Support/CommandLine.h"
 #include "llvm/Support/PassNameParser.h"
+#include "Support/CommandLine.h"
+#include "Config/unistd.h"
+#include <sys/resource.h>
 
 static cl::list<std::string>
 InputFilenames(cl::Positional, cl::OneOrMore,
@@ -18,18 +20,24 @@ InputFilenames(cl::Positional, cl::OneOrMore,
 // PassNameParser.
 //
 static cl::list<const PassInfo*, bool, PassNameParser>
-PassList(cl::desc("Passes available:"), cl::OneOrMore);
-
-//cl::list<std::string>
-//InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
+PassList(cl::desc("Passes available:"), cl::ZeroOrMore);
 
 int main(int argc, char **argv) {
   cl::ParseCommandLineOptions(argc, argv);
 
-  
   BugDriver D(argv[0]);
   if (D.addSources(InputFilenames)) return 1;
   D.addPasses(PassList.begin(), PassList.end());
 
+  // Bugpoint has the ability of generating a plethora of core files, so to
+  // avoid filling up the disk, set the max core file size to 0.
+  struct rlimit rlim;
+  rlim.rlim_cur = rlim.rlim_max = 0;
+  int res = setrlimit(RLIMIT_CORE, &rlim);
+  if (res < 0) {
+    // setrlimit() may have failed, but we're not going to let that stop us
+    perror("setrlimit: RLIMIT_CORE");
+  }
+
   return D.run();
 }