blob: 813c96cc795deb81fcdb9fa6824bd365b901f608 [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerafade922002-11-20 22:28:10 +00009//
10// This class contains all of the shared state and information that is used by
11// the BugPoint tool to track down errors in optimizations. This class is the
12// main driver class that invokes all sub-functionality.
13//
14//===----------------------------------------------------------------------===//
15
16#include "BugDriver.h"
Chris Lattnerf1b20d82006-06-06 22:30:59 +000017#include "ToolRunner.h"
Reid Spencer605b9e22004-11-14 23:00:08 +000018#include "llvm/Linker.h"
Chris Lattnerafade922002-11-20 22:28:10 +000019#include "llvm/Module.h"
Chris Lattnerafade922002-11-20 22:28:10 +000020#include "llvm/Pass.h"
Dan Gohmandad45ea2009-09-03 16:32:58 +000021#include "llvm/Support/IRReader.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000022#include "llvm/Support/CommandLine.h"
23#include "llvm/Support/FileUtilities.h"
Chris Lattner03b69632007-05-06 05:47:06 +000024#include "llvm/Support/MemoryBuffer.h"
Chris Lattner92bcb422009-07-02 22:46:18 +000025#include "llvm/Support/SourceMgr.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000026#include "llvm/Support/raw_ostream.h"
Daniel Dunbarca740962009-08-18 03:35:57 +000027#include "llvm/System/Host.h"
Chris Lattnerafade922002-11-20 22:28:10 +000028#include <memory>
Brian Gaeked0fde302003-11-11 22:41:34 +000029using namespace llvm;
30
Daniel Dunbarca740962009-08-18 03:35:57 +000031namespace llvm {
32 Triple TargetTriple;
33}
34
Misha Brukman50733362003-07-24 18:17:43 +000035// Anonymous namespace to define command line options for debugging.
36//
37namespace {
38 // Output - The user can specify a file containing the expected output of the
39 // program. If this filename is set, it is used as the reference diff source,
40 // otherwise the raw input run through an interpreter is used as the reference
41 // source.
42 //
Misha Brukman3da94ae2005-04-22 00:00:37 +000043 cl::opt<std::string>
Misha Brukman50733362003-07-24 18:17:43 +000044 OutputFile("output", cl::desc("Specify a reference program output "
45 "(for miscompilation detection)"));
Misha Brukman50733362003-07-24 18:17:43 +000046}
47
Chris Lattner06905db2004-02-18 21:24:48 +000048/// setNewProgram - If we reduce or update the program somehow, call this method
49/// to update bugdriver with it. This deletes the old module and sets the
50/// specified one as the current program.
51void BugDriver::setNewProgram(Module *M) {
52 delete Program;
53 Program = M;
54}
55
56
Chris Lattner640f22e2003-04-24 17:02:17 +000057/// getPassesString - Turn a list of passes into a string which indicates the
58/// command line options that must be passed to add the passes.
59///
Chris Lattnerfa761832004-01-14 03:38:37 +000060std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
Chris Lattner640f22e2003-04-24 17:02:17 +000061 std::string Result;
62 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
63 if (i) Result += " ";
64 Result += "-";
65 Result += Passes[i]->getPassArgument();
66 }
67 return Result;
68}
69
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +000070BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs,
Jeffrey Yasskinc3e68592010-03-19 00:09:28 +000071 unsigned timeout, unsigned memlimit, bool use_valgrind,
Owen Anderson4434ed42009-07-01 23:13:44 +000072 LLVMContext& ctxt)
Owen Anderson8b477ed2009-07-01 16:58:40 +000073 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile),
Dan Gohman70ef4492008-12-08 04:02:47 +000074 Program(0), Interpreter(0), SafeInterpreter(0), gcc(0),
Owen Anderson8b477ed2009-07-01 16:58:40 +000075 run_as_child(as_child), run_find_bugs(find_bugs), Timeout(timeout),
Jeffrey Yasskinc3e68592010-03-19 00:09:28 +000076 MemoryLimit(memlimit), UseValgrind(use_valgrind) {}
Misha Brukman50733362003-07-24 18:17:43 +000077
78
Gabor Greif8ff70c22007-07-04 21:55:50 +000079/// ParseInputFile - Given a bitcode or assembly input filename, parse and
Chris Lattnerafade922002-11-20 22:28:10 +000080/// return it, or return null if not possible.
81///
Owen Anderson31895e72009-07-01 21:22:36 +000082Module *llvm::ParseInputFile(const std::string &Filename,
Owen Anderson4434ed42009-07-01 23:13:44 +000083 LLVMContext& Ctxt) {
Chris Lattner92bcb422009-07-02 22:46:18 +000084 SMDiagnostic Err;
Dan Gohmandad45ea2009-09-03 16:32:58 +000085 Module *Result = ParseIRFile(Filename, Err, Ctxt);
86 if (!Result)
87 Err.Print("bugpoint", errs());
88
Daniel Dunbarca740962009-08-18 03:35:57 +000089 // If we don't have an override triple, use the first one to configure
90 // bugpoint, or use the host triple if none provided.
91 if (Result) {
92 if (TargetTriple.getTriple().empty()) {
93 Triple TheTriple(Result->getTargetTriple());
94
95 if (TheTriple.getTriple().empty())
96 TheTriple.setTriple(sys::getHostTriple());
97
98 TargetTriple.setTriple(TheTriple.getTriple());
99 }
100
101 Result->setTargetTriple(TargetTriple.getTriple()); // override the triple
102 }
Chris Lattnerafade922002-11-20 22:28:10 +0000103 return Result;
104}
105
106// This method takes the specified list of LLVM input files, attempts to load
Gabor Greif8ff70c22007-07-04 21:55:50 +0000107// them, either as assembly or bitcode, then link them together. It returns
108// true on failure (if, for example, an input bitcode file could not be
Brian Gaekedae7f922003-05-23 05:34:32 +0000109// parsed), and false on success.
Chris Lattnerafade922002-11-20 22:28:10 +0000110//
111bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
112 assert(Program == 0 && "Cannot call addSources multiple times!");
113 assert(!Filenames.empty() && "Must specify at least on input filename!");
114
Chris Lattner53bd1b92006-05-14 19:15:56 +0000115 try {
116 // Load the first input file.
Owen Anderson8b477ed2009-07-01 16:58:40 +0000117 Program = ParseInputFile(Filenames[0], Context);
Chris Lattner53bd1b92006-05-14 19:15:56 +0000118 if (Program == 0) return true;
Chris Lattner065344d2007-05-06 23:45:49 +0000119
Reid Spencerc4bb0522005-12-22 20:02:55 +0000120 if (!run_as_child)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000121 outs() << "Read input file : '" << Filenames[0] << "'\n";
Chris Lattner53bd1b92006-05-14 19:15:56 +0000122
123 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
Owen Anderson8b477ed2009-07-01 16:58:40 +0000124 std::auto_ptr<Module> M(ParseInputFile(Filenames[i], Context));
Chris Lattner53bd1b92006-05-14 19:15:56 +0000125 if (M.get() == 0) return true;
126
127 if (!run_as_child)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000128 outs() << "Linking in input file: '" << Filenames[i] << "'\n";
Chris Lattner53bd1b92006-05-14 19:15:56 +0000129 std::string ErrorMessage;
130 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000131 errs() << ToolName << ": error linking in '" << Filenames[i] << "': "
132 << ErrorMessage << '\n';
Chris Lattner53bd1b92006-05-14 19:15:56 +0000133 return true;
134 }
Chris Lattnerafade922002-11-20 22:28:10 +0000135 }
Chris Lattner53bd1b92006-05-14 19:15:56 +0000136 } catch (const std::string &Error) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000137 errs() << ToolName << ": error reading input '" << Error << "'\n";
Chris Lattner53bd1b92006-05-14 19:15:56 +0000138 return true;
Chris Lattnerafade922002-11-20 22:28:10 +0000139 }
140
Reid Spencerc4bb0522005-12-22 20:02:55 +0000141 if (!run_as_child)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000142 outs() << "*** All input ok\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000143
144 // All input files read successfully!
145 return false;
146}
147
148
149
150/// run - The top level method that is invoked after all of the instance
151/// variables are set up from command line arguments.
152///
153bool BugDriver::run() {
Reid Spencerc4bb0522005-12-22 20:02:55 +0000154 // The first thing to do is determine if we're running as a child. If we are,
155 // then what to do is very narrow. This form of invocation is only called
156 // from the runPasses method to actually run those passes in a child process.
157 if (run_as_child) {
158 // Execute the passes
159 return runPassesAsChild(PassesToRun);
160 }
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000161
162 if (run_find_bugs) {
163 // Rearrange the passes and apply them to the program. Repeat this process
164 // until the user kills the program or we find a bug.
165 return runManyPasses(PassesToRun);
166 }
Reid Spencerc4bb0522005-12-22 20:02:55 +0000167
168 // If we're not running as a child, the first thing that we must do is
169 // determine what the problem is. Does the optimization series crash the
170 // compiler, or does it produce illegal code? We make the top-level
171 // decision by trying to run all of the passes on the the input program,
Gabor Greif8ff70c22007-07-04 21:55:50 +0000172 // which should generate a bitcode file. If it does generate a bitcode
Reid Spencerc4bb0522005-12-22 20:02:55 +0000173 // file, then we know the compiler didn't crash, so try to diagnose a
174 // miscompilation.
Chris Lattner99b85332003-10-13 21:04:26 +0000175 if (!PassesToRun.empty()) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000176 outs() << "Running selected passes on program to test for crash: ";
Chris Lattner99b85332003-10-13 21:04:26 +0000177 if (runPasses(PassesToRun))
Chris Lattner02526262004-02-18 21:02:04 +0000178 return debugOptimizerCrash();
Chris Lattner99b85332003-10-13 21:04:26 +0000179 }
Misha Brukman50733362003-07-24 18:17:43 +0000180
Gabor Greif8ff70c22007-07-04 21:55:50 +0000181 // Set up the execution environment, selecting a method to run LLVM bitcode.
Misha Brukman50733362003-07-24 18:17:43 +0000182 if (initializeExecutionEnvironment()) return true;
183
Chris Lattner7c955fd2004-02-19 17:03:49 +0000184 // Test to see if we have a code generator crash.
Dan Gohmanac95cc72009-07-16 15:30:09 +0000185 outs() << "Running the code generator to test for a crash: ";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000186 try {
187 compileProgram(Program);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000188 outs() << '\n';
Chris Lattner7c955fd2004-02-19 17:03:49 +0000189 } catch (ToolExecutionError &TEE) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000190 outs() << TEE.what();
Chris Lattner7c955fd2004-02-19 17:03:49 +0000191 return debugCodeGeneratorCrash();
192 }
193
194
Misha Brukman50733362003-07-24 18:17:43 +0000195 // Run the raw input to see where we are coming from. If a reference output
196 // was specified, make sure that the raw output matches it. If not, it's a
197 // problem in the front-end or the code generator.
198 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000199 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000200 if (ReferenceOutputFile.empty()) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000201 outs() << "Generating reference output from raw program: ";
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000202 if(!createReferenceFile(Program)){
Bill Wendling584c3bf2008-02-26 10:46:10 +0000203 return debugCodeGeneratorCrash();
Chris Lattner02526262004-02-18 21:02:04 +0000204 }
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000205 CreatedOutput = true;
Misha Brukman50733362003-07-24 18:17:43 +0000206 }
207
Chris Lattnera5a96a92003-10-14 20:52:55 +0000208 // Make sure the reference output file gets deleted on exit from this
209 // function, if appropriate.
Reid Spencer5d282182004-12-20 19:16:12 +0000210 sys::Path ROF(ReferenceOutputFile);
Anton Korobeynikov86c006a2009-08-05 09:32:10 +0000211 FileRemover RemoverInstance(ROF, CreatedOutput && !SaveTemps);
Chris Lattnera5a96a92003-10-14 20:52:55 +0000212
213 // Diff the output of the raw program against the reference output. If it
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000214 // matches, then we assume there is a miscompilation bug and try to
215 // diagnose it.
Dan Gohmanac95cc72009-07-16 15:30:09 +0000216 outs() << "*** Checking the code generator...\n";
Chris Lattner02526262004-02-18 21:02:04 +0000217 try {
218 if (!diffProgram()) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000219 outs() << "\n*** Output matches: Debugging miscompilation!\n";
Chris Lattner02526262004-02-18 21:02:04 +0000220 return debugMiscompilation();
221 }
222 } catch (ToolExecutionError &TEE) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000223 errs() << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000224 return debugCodeGeneratorCrash();
Chris Lattnera5a96a92003-10-14 20:52:55 +0000225 }
226
Dan Gohmanac95cc72009-07-16 15:30:09 +0000227 outs() << "\n*** Input program does not match reference diff!\n";
228 outs() << "Debugging code generator problem!\n";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000229 try {
230 return debugCodeGenerator();
231 } catch (ToolExecutionError &TEE) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000232 errs() << TEE.what();
Chris Lattner7c955fd2004-02-19 17:03:49 +0000233 return debugCodeGeneratorCrash();
234 }
Misha Brukman50733362003-07-24 18:17:43 +0000235}
236
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000237void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
238 unsigned NumPrint = Funcs.size();
239 if (NumPrint > 10) NumPrint = 10;
240 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000241 outs() << " " << Funcs[i]->getName();
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000242 if (NumPrint < Funcs.size())
Dan Gohmanac95cc72009-07-16 15:30:09 +0000243 outs() << "... <" << Funcs.size() << " total>";
244 outs().flush();
Chris Lattnerafade922002-11-20 22:28:10 +0000245}
Bill Wendling4e3be892006-10-25 18:36:14 +0000246
247void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) {
248 unsigned NumPrint = GVs.size();
249 if (NumPrint > 10) NumPrint = 10;
250 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000251 outs() << " " << GVs[i]->getName();
Bill Wendling4e3be892006-10-25 18:36:14 +0000252 if (NumPrint < GVs.size())
Dan Gohmanac95cc72009-07-16 15:30:09 +0000253 outs() << "... <" << GVs.size() << " total>";
254 outs().flush();
Bill Wendling4e3be892006-10-25 18:36:14 +0000255}