2003-10-20 17:57:13 +00:00
|
|
|
//===- bugpoint.cpp - The LLVM Bugpoint utility ---------------------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:44:31 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-20 22:28:10 +00:00
|
|
|
//
|
|
|
|
// This program is an automated compiler debugger tool. It is used to narrow
|
|
|
|
// down miscompilations and crash problems to a specific pass in the compiler,
|
|
|
|
// and the specific Module or Function input that is causing the problem.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "BugDriver.h"
|
2006-06-06 22:30:59 +00:00
|
|
|
#include "ToolRunner.h"
|
2006-08-21 05:34:03 +00:00
|
|
|
#include "llvm/LinkAllPasses.h"
|
2009-07-01 16:58:40 +00:00
|
|
|
#include "llvm/LLVMContext.h"
|
2002-11-20 22:28:10 +00:00
|
|
|
#include "llvm/Support/PassNameParser.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2009-03-06 05:34:10 +00:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2009-07-20 07:01:01 +00:00
|
|
|
#include "llvm/Support/StandardPasses.h"
|
2004-12-27 06:18:02 +00:00
|
|
|
#include "llvm/System/Process.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2006-06-07 23:06:50 +00:00
|
|
|
#include "llvm/LinkAllVMCore.h"
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2005-12-22 20:02:55 +00:00
|
|
|
// AsChild - Specifies that this invocation of bugpoint is being generated
|
|
|
|
// from a parent process. It is not intended to be used by users so the
|
|
|
|
// option is hidden.
|
|
|
|
static cl::opt<bool>
|
2006-08-15 16:40:49 +00:00
|
|
|
AsChild("as-child", cl::desc("Run bugpoint as child process"),
|
|
|
|
cl::ReallyHidden);
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
2008-02-18 17:15:45 +00:00
|
|
|
FindBugs("find-bugs", cl::desc("Run many different optimization sequences "
|
2006-08-15 16:40:49 +00:00
|
|
|
"on program to find bugs"), cl::init(false));
|
2005-12-22 20:02:55 +00:00
|
|
|
|
2002-11-20 22:28:10 +00:00
|
|
|
static cl::list<std::string>
|
|
|
|
InputFilenames(cl::Positional, cl::OneOrMore,
|
|
|
|
cl::desc("<input llvm ll/bc files>"));
|
|
|
|
|
2006-06-13 03:10:48 +00:00
|
|
|
static cl::opt<unsigned>
|
|
|
|
TimeoutValue("timeout", cl::init(300), cl::value_desc("seconds"),
|
|
|
|
cl::desc("Number of seconds program is allowed to run before it "
|
|
|
|
"is killed (default is 300s), 0 disables timeout"));
|
|
|
|
|
2007-02-16 19:11:07 +00:00
|
|
|
static cl::opt<unsigned>
|
|
|
|
MemoryLimit("mlimit", cl::init(100), cl::value_desc("MBytes"),
|
|
|
|
cl::desc("Maximum amount of memory to use. 0 disables check."));
|
|
|
|
|
2002-11-20 22:28:10 +00:00
|
|
|
// The AnalysesList is automatically populated with registered Passes by the
|
|
|
|
// PassNameParser.
|
|
|
|
//
|
|
|
|
static cl::list<const PassInfo*, bool, PassNameParser>
|
Major addition to bugpoint: ability to debug code generators (LLC and LLI).
The C backend is assumed correct and is used to generate shared objects to be
loaded by the other two code generators.
LLC debugging should be functional now, LLI needs a few more additions to work,
the major one is renaming of external functions to call the JIT lazy function
resolver.
Bugpoint now has a command-line switch -mode with options 'compile' and
'codegen' to debug appropriate portions of tools.
ExecutionDriver.cpp: Added implementations of AbstractInterpreter for LLC and
GCC, broke out common code within other tools, and added ability to generate C
code with CBE individually, without executing the program, and the GCC tool can
generate executables shared objects or executables.
If no reference output is specified to Bugpoint, it will be generated with CBE,
because it is already assumed to be correct for the purposes of debugging using
this method. As a result, many functions now accept as an optional parameter a
shared object to be loaded in, if specified.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7293 91177308-0d34-0410-b5e6-96231b3b80d8
2003-07-24 18:17:43 +00:00
|
|
|
PassList(cl::desc("Passes available:"), cl::ZeroOrMore);
|
2002-11-20 22:28:10 +00:00
|
|
|
|
2009-07-20 07:01:01 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
StandardCompileOpts("std-compile-opts",
|
|
|
|
cl::desc("Include the standard compile time optimizations"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
StandardLinkOpts("std-link-opts",
|
|
|
|
cl::desc("Include the standard link time optimizations"));
|
|
|
|
|
2009-08-18 03:35:57 +00:00
|
|
|
static cl::opt<std::string>
|
|
|
|
OverrideTriple("mtriple", cl::desc("Override target triple for module"));
|
|
|
|
|
2005-08-02 02:16:17 +00:00
|
|
|
/// BugpointIsInterrupted - Set to true when the user presses ctrl-c.
|
|
|
|
bool llvm::BugpointIsInterrupted = false;
|
|
|
|
|
|
|
|
static void BugpointInterruptFunction() {
|
|
|
|
BugpointIsInterrupted = true;
|
|
|
|
}
|
|
|
|
|
2009-07-20 07:01:01 +00:00
|
|
|
// Hack to capture a pass list.
|
|
|
|
namespace {
|
|
|
|
class AddToDriver : public PassManager {
|
|
|
|
BugDriver &D;
|
|
|
|
public:
|
|
|
|
AddToDriver(BugDriver &_D) : D(_D) {}
|
|
|
|
|
|
|
|
virtual void add(Pass *P) {
|
|
|
|
const PassInfo *PI = P->getPassInfo();
|
|
|
|
D.addPasses(&PI, &PI + 1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2002-11-20 22:28:10 +00:00
|
|
|
int main(int argc, char **argv) {
|
2009-03-06 05:34:10 +00:00
|
|
|
llvm::sys::PrintStackTraceOnErrorSignal();
|
|
|
|
llvm::PrettyStackTraceProgram X(argc, argv);
|
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
2003-10-18 21:55:35 +00:00
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
2007-10-08 15:45:12 +00:00
|
|
|
"LLVM automatic testcase reducer. See\nhttp://"
|
2009-02-07 18:56:30 +00:00
|
|
|
"llvm.org/cmds/bugpoint.html"
|
2003-10-18 21:55:35 +00:00
|
|
|
" for more information.\n");
|
2005-08-02 02:16:17 +00:00
|
|
|
sys::SetInterruptFunction(BugpointInterruptFunction);
|
2009-07-01 16:58:40 +00:00
|
|
|
|
2009-07-15 22:16:10 +00:00
|
|
|
LLVMContext& Context = getGlobalContext();
|
2009-08-18 03:35:57 +00:00
|
|
|
// If we have an override, set it and then track the triple we want Modules
|
|
|
|
// to use.
|
2009-08-31 03:22:35 +00:00
|
|
|
if (!OverrideTriple.empty()) {
|
2009-08-18 03:35:57 +00:00
|
|
|
TargetTriple.setTriple(OverrideTriple);
|
2009-08-31 03:22:35 +00:00
|
|
|
outs() << "Override triple set to '" << OverrideTriple << "'\n";
|
|
|
|
}
|
2009-08-18 03:35:57 +00:00
|
|
|
|
2009-07-01 21:22:36 +00:00
|
|
|
BugDriver D(argv[0], AsChild, FindBugs, TimeoutValue, MemoryLimit, Context);
|
2002-11-20 22:28:10 +00:00
|
|
|
if (D.addSources(InputFilenames)) return 1;
|
2009-08-18 03:35:57 +00:00
|
|
|
|
2009-07-20 07:01:01 +00:00
|
|
|
AddToDriver PM(D);
|
|
|
|
if (StandardCompileOpts) {
|
|
|
|
createStandardModulePasses(&PM, 3,
|
|
|
|
/*OptimizeSize=*/ false,
|
|
|
|
/*UnitAtATime=*/ true,
|
|
|
|
/*UnrollLoops=*/ true,
|
|
|
|
/*SimplifyLibCalls=*/ true,
|
|
|
|
/*HaveExceptions=*/ true,
|
|
|
|
createFunctionInliningPass());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (StandardLinkOpts)
|
2009-07-27 23:23:47 +00:00
|
|
|
createStandardLTOPasses(&PM, /*Internalize=*/true,
|
2009-07-20 07:01:01 +00:00
|
|
|
/*RunInliner=*/true,
|
|
|
|
/*VerifyEach=*/false);
|
|
|
|
|
2002-11-20 22:28:10 +00:00
|
|
|
D.addPasses(PassList.begin(), PassList.end());
|
|
|
|
|
2003-09-12 20:42:57 +00:00
|
|
|
// Bugpoint has the ability of generating a plethora of core files, so to
|
2004-09-01 22:55:40 +00:00
|
|
|
// avoid filling up the disk, we prevent it
|
2004-12-27 06:18:02 +00:00
|
|
|
sys::Process::PreventCoreFiles();
|
2003-09-12 20:42:57 +00:00
|
|
|
|
2004-02-18 17:32:54 +00:00
|
|
|
try {
|
|
|
|
return D.run();
|
2004-02-18 20:22:11 +00:00
|
|
|
} catch (ToolExecutionError &TEE) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << "Tool execution error: " << TEE.what() << '\n';
|
2004-12-30 05:36:08 +00:00
|
|
|
} catch (const std::string& msg) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << argv[0] << ": " << msg << "\n";
|
2009-08-07 20:50:09 +00:00
|
|
|
} catch (const std::bad_alloc&) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << "Oh no, a bugpoint process ran out of memory!\n"
|
|
|
|
"To increase the allocation limits for bugpoint child\n"
|
|
|
|
"processes, use the -mlimit option.\n";
|
2009-04-27 01:30:37 +00:00
|
|
|
} catch (const std::exception &e) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << "Whoops, a std::exception leaked out of bugpoint: "
|
|
|
|
<< e.what() << "\n"
|
|
|
|
<< "This is a bug in bugpoint!\n";
|
2004-02-18 17:32:54 +00:00
|
|
|
} catch (...) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << "Whoops, an exception leaked out of bugpoint. "
|
|
|
|
<< "This is a bug in bugpoint!\n";
|
2004-02-18 17:32:54 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
return 1;
|
2002-11-20 22:28:10 +00:00
|
|
|
}
|