blob: dda8c5122b48111fee50fbe61fde956dc6d53a90 [file] [log] [blame]
Chris Lattner9e97f4a2003-05-03 03:18:41 +00001//===- bugpoint.cpp - The LLVM BugPoint utility ---------------------------===//
Chris Lattner73a6bdd2002-11-20 22:28:10 +00002//
3// This program is an automated compiler debugger tool. It is used to narrow
4// down miscompilations and crash problems to a specific pass in the compiler,
5// and the specific Module or Function input that is causing the problem.
6//
7//===----------------------------------------------------------------------===//
8
9#include "BugDriver.h"
10#include "Support/CommandLine.h"
11#include "llvm/Support/PassNameParser.h"
12
13static cl::list<std::string>
14InputFilenames(cl::Positional, cl::OneOrMore,
15 cl::desc("<input llvm ll/bc files>"));
16
17// The AnalysesList is automatically populated with registered Passes by the
18// PassNameParser.
19//
20static cl::list<const PassInfo*, bool, PassNameParser>
Misha Brukmand792c9b2003-07-24 18:17:43 +000021PassList(cl::desc("Passes available:"), cl::ZeroOrMore);
Chris Lattner73a6bdd2002-11-20 22:28:10 +000022
23//cl::list<std::string>
24//InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
25
Chris Lattner73a6bdd2002-11-20 22:28:10 +000026int main(int argc, char **argv) {
27 cl::ParseCommandLineOptions(argc, argv);
28
Chris Lattner73a6bdd2002-11-20 22:28:10 +000029 BugDriver D(argv[0]);
30 if (D.addSources(InputFilenames)) return 1;
31 D.addPasses(PassList.begin(), PassList.end());
32
33 return D.run();
34}