blob: 21636eabab1fbb193a7b3dce65021cf044a1841b [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 Lattner92bcb422009-07-02 22:46:18 +000024#include "llvm/Support/SourceMgr.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000025#include "llvm/Support/raw_ostream.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000026#include "llvm/Support/Host.h"
Chris Lattnerafade922002-11-20 22:28:10 +000027#include <memory>
Brian Gaeked0fde302003-11-11 22:41:34 +000028using namespace llvm;
29
Daniel Dunbarca740962009-08-18 03:35:57 +000030namespace llvm {
31 Triple TargetTriple;
32}
33
Misha Brukman50733362003-07-24 18:17:43 +000034// Anonymous namespace to define command line options for debugging.
35//
36namespace {
37 // Output - The user can specify a file containing the expected output of the
38 // program. If this filename is set, it is used as the reference diff source,
39 // otherwise the raw input run through an interpreter is used as the reference
40 // source.
41 //
Misha Brukman3da94ae2005-04-22 00:00:37 +000042 cl::opt<std::string>
Misha Brukman50733362003-07-24 18:17:43 +000043 OutputFile("output", cl::desc("Specify a reference program output "
44 "(for miscompilation detection)"));
Misha Brukman50733362003-07-24 18:17:43 +000045}
46
Chris Lattner06905db2004-02-18 21:24:48 +000047/// setNewProgram - If we reduce or update the program somehow, call this method
48/// to update bugdriver with it. This deletes the old module and sets the
49/// specified one as the current program.
50void BugDriver::setNewProgram(Module *M) {
51 delete Program;
52 Program = M;
53}
54
55
Chris Lattner640f22e2003-04-24 17:02:17 +000056/// getPassesString - Turn a list of passes into a string which indicates the
57/// command line options that must be passed to add the passes.
58///
Rafael Espindola8261dfe2010-08-08 03:55:08 +000059std::string llvm::getPassesString(const std::vector<std::string> &Passes) {
Chris Lattner640f22e2003-04-24 17:02:17 +000060 std::string Result;
61 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
62 if (i) Result += " ";
63 Result += "-";
Rafael Espindola8261dfe2010-08-08 03:55:08 +000064 Result += Passes[i];
Chris Lattner640f22e2003-04-24 17:02:17 +000065 }
66 return Result;
67}
68
Rafael Espindola7f99f742010-08-07 23:03:21 +000069BugDriver::BugDriver(const char *toolname, bool find_bugs,
Jeffrey Yasskinc3e68592010-03-19 00:09:28 +000070 unsigned timeout, unsigned memlimit, bool use_valgrind,
Owen Anderson4434ed42009-07-01 23:13:44 +000071 LLVMContext& ctxt)
Owen Anderson8b477ed2009-07-01 16:58:40 +000072 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile),
Dan Gohman70ef4492008-12-08 04:02:47 +000073 Program(0), Interpreter(0), SafeInterpreter(0), gcc(0),
Michael J. Spencer56584fc2011-03-31 13:06:39 +000074 run_find_bugs(find_bugs), Timeout(timeout),
Jeffrey Yasskinc3e68592010-03-19 00:09:28 +000075 MemoryLimit(memlimit), UseValgrind(use_valgrind) {}
Misha Brukman50733362003-07-24 18:17:43 +000076
Jeffrey Yasskinc1dc0672010-03-22 05:23:37 +000077BugDriver::~BugDriver() {
78 delete Program;
79}
80
Misha Brukman50733362003-07-24 18:17:43 +000081
Gabor Greif8ff70c22007-07-04 21:55:50 +000082/// ParseInputFile - Given a bitcode or assembly input filename, parse and
Chris Lattnerafade922002-11-20 22:28:10 +000083/// return it, or return null if not possible.
84///
Owen Anderson31895e72009-07-01 21:22:36 +000085Module *llvm::ParseInputFile(const std::string &Filename,
Owen Anderson4434ed42009-07-01 23:13:44 +000086 LLVMContext& Ctxt) {
Chris Lattner92bcb422009-07-02 22:46:18 +000087 SMDiagnostic Err;
Dan Gohmandad45ea2009-09-03 16:32:58 +000088 Module *Result = ParseIRFile(Filename, Err, Ctxt);
89 if (!Result)
Chris Lattnerd8b7aa22011-10-16 04:47:35 +000090 Err.print("bugpoint", errs());
Dan Gohmandad45ea2009-09-03 16:32:58 +000091
Daniel Dunbarca740962009-08-18 03:35:57 +000092 // If we don't have an override triple, use the first one to configure
93 // bugpoint, or use the host triple if none provided.
94 if (Result) {
95 if (TargetTriple.getTriple().empty()) {
96 Triple TheTriple(Result->getTargetTriple());
97
98 if (TheTriple.getTriple().empty())
Sebastian Pop01738642011-11-01 21:32:20 +000099 TheTriple.setTriple(sys::getDefaultTargetTriple());
Michael J. Spencer56584fc2011-03-31 13:06:39 +0000100
Daniel Dunbarca740962009-08-18 03:35:57 +0000101 TargetTriple.setTriple(TheTriple.getTriple());
102 }
103
104 Result->setTargetTriple(TargetTriple.getTriple()); // override the triple
105 }
Chris Lattnerafade922002-11-20 22:28:10 +0000106 return Result;
107}
108
109// This method takes the specified list of LLVM input files, attempts to load
Gabor Greif8ff70c22007-07-04 21:55:50 +0000110// them, either as assembly or bitcode, then link them together. It returns
111// true on failure (if, for example, an input bitcode file could not be
Brian Gaekedae7f922003-05-23 05:34:32 +0000112// parsed), and false on success.
Chris Lattnerafade922002-11-20 22:28:10 +0000113//
114bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
115 assert(Program == 0 && "Cannot call addSources multiple times!");
116 assert(!Filenames.empty() && "Must specify at least on input filename!");
117
Nick Lewycky22ff7482010-04-12 05:08:25 +0000118 // Load the first input file.
119 Program = ParseInputFile(Filenames[0], Context);
120 if (Program == 0) return true;
Michael J. Spencer56584fc2011-03-31 13:06:39 +0000121
Rafael Espindola7f99f742010-08-07 23:03:21 +0000122 outs() << "Read input file : '" << Filenames[0] << "'\n";
Nick Lewycky22ff7482010-04-12 05:08:25 +0000123
124 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
125 std::auto_ptr<Module> M(ParseInputFile(Filenames[i], Context));
126 if (M.get() == 0) return true;
127
Rafael Espindola7f99f742010-08-07 23:03:21 +0000128 outs() << "Linking in input file: '" << Filenames[i] << "'\n";
Nick Lewycky22ff7482010-04-12 05:08:25 +0000129 std::string ErrorMessage;
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000130 if (Linker::LinkModules(Program, M.get(), Linker::DestroySource,
131 &ErrorMessage)) {
Nick Lewycky22ff7482010-04-12 05:08:25 +0000132 errs() << ToolName << ": error linking in '" << Filenames[i] << "': "
133 << ErrorMessage << '\n';
134 return true;
Chris Lattnerafade922002-11-20 22:28:10 +0000135 }
136 }
137
Rafael Espindola7f99f742010-08-07 23:03:21 +0000138 outs() << "*** All input ok\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000139
140 // All input files read successfully!
141 return false;
142}
143
144
145
146/// run - The top level method that is invoked after all of the instance
147/// variables are set up from command line arguments.
148///
Nick Lewycky22ff7482010-04-12 05:08:25 +0000149bool BugDriver::run(std::string &ErrMsg) {
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000150 if (run_find_bugs) {
151 // Rearrange the passes and apply them to the program. Repeat this process
152 // until the user kills the program or we find a bug.
Nick Lewycky22ff7482010-04-12 05:08:25 +0000153 return runManyPasses(PassesToRun, ErrMsg);
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000154 }
Reid Spencerc4bb0522005-12-22 20:02:55 +0000155
Michael J. Spencer56584fc2011-03-31 13:06:39 +0000156 // If we're not running as a child, the first thing that we must do is
157 // determine what the problem is. Does the optimization series crash the
158 // compiler, or does it produce illegal code? We make the top-level
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +0000159 // decision by trying to run all of the passes on the input program,
Michael J. Spencer56584fc2011-03-31 13:06:39 +0000160 // which should generate a bitcode file. If it does generate a bitcode
161 // file, then we know the compiler didn't crash, so try to diagnose a
Reid Spencerc4bb0522005-12-22 20:02:55 +0000162 // miscompilation.
Chris Lattner99b85332003-10-13 21:04:26 +0000163 if (!PassesToRun.empty()) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000164 outs() << "Running selected passes on program to test for crash: ";
Rafael Espindola5d8cace2010-08-05 02:16:32 +0000165 if (runPasses(Program, PassesToRun))
Chris Lattner02526262004-02-18 21:02:04 +0000166 return debugOptimizerCrash();
Chris Lattner99b85332003-10-13 21:04:26 +0000167 }
Misha Brukman50733362003-07-24 18:17:43 +0000168
Gabor Greif8ff70c22007-07-04 21:55:50 +0000169 // Set up the execution environment, selecting a method to run LLVM bitcode.
Misha Brukman50733362003-07-24 18:17:43 +0000170 if (initializeExecutionEnvironment()) return true;
171
Chris Lattner7c955fd2004-02-19 17:03:49 +0000172 // Test to see if we have a code generator crash.
Dan Gohmanac95cc72009-07-16 15:30:09 +0000173 outs() << "Running the code generator to test for a crash: ";
Nick Lewycky22ff7482010-04-12 05:08:25 +0000174 std::string Error;
175 compileProgram(Program, &Error);
176 if (!Error.empty()) {
177 outs() << Error;
178 return debugCodeGeneratorCrash(ErrMsg);
Chris Lattner7c955fd2004-02-19 17:03:49 +0000179 }
Nick Lewycky22ff7482010-04-12 05:08:25 +0000180 outs() << '\n';
Chris Lattner7c955fd2004-02-19 17:03:49 +0000181
Misha Brukman50733362003-07-24 18:17:43 +0000182 // Run the raw input to see where we are coming from. If a reference output
183 // was specified, make sure that the raw output matches it. If not, it's a
184 // problem in the front-end or the code generator.
185 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000186 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000187 if (ReferenceOutputFile.empty()) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000188 outs() << "Generating reference output from raw program: ";
Nick Lewycky22ff7482010-04-12 05:08:25 +0000189 if (!createReferenceFile(Program)) {
190 return debugCodeGeneratorCrash(ErrMsg);
Chris Lattner02526262004-02-18 21:02:04 +0000191 }
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000192 CreatedOutput = true;
Misha Brukman50733362003-07-24 18:17:43 +0000193 }
194
Chris Lattnera5a96a92003-10-14 20:52:55 +0000195 // Make sure the reference output file gets deleted on exit from this
196 // function, if appropriate.
Reid Spencer5d282182004-12-20 19:16:12 +0000197 sys::Path ROF(ReferenceOutputFile);
Michael J. Spencerc9c08fb2011-03-31 13:04:19 +0000198 FileRemover RemoverInstance(ROF.str(), CreatedOutput && !SaveTemps);
Chris Lattnera5a96a92003-10-14 20:52:55 +0000199
200 // Diff the output of the raw program against the reference output. If it
Michael J. Spencer56584fc2011-03-31 13:06:39 +0000201 // matches, then we assume there is a miscompilation bug and try to
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000202 // diagnose it.
Dan Gohmanac95cc72009-07-16 15:30:09 +0000203 outs() << "*** Checking the code generator...\n";
Rafael Espindola10757dd2010-07-30 14:19:00 +0000204 bool Diff = diffProgram(Program, "", "", false, &Error);
Nick Lewycky22ff7482010-04-12 05:08:25 +0000205 if (!Error.empty()) {
206 errs() << Error;
207 return debugCodeGeneratorCrash(ErrMsg);
208 }
209 if (!Diff) {
210 outs() << "\n*** Output matches: Debugging miscompilation!\n";
211 debugMiscompilation(&Error);
212 if (!Error.empty()) {
213 errs() << Error;
214 return debugCodeGeneratorCrash(ErrMsg);
Chris Lattner02526262004-02-18 21:02:04 +0000215 }
Nick Lewycky22ff7482010-04-12 05:08:25 +0000216 return false;
Chris Lattnera5a96a92003-10-14 20:52:55 +0000217 }
218
Dan Gohmanac95cc72009-07-16 15:30:09 +0000219 outs() << "\n*** Input program does not match reference diff!\n";
220 outs() << "Debugging code generator problem!\n";
Nick Lewycky22ff7482010-04-12 05:08:25 +0000221 bool Failure = debugCodeGenerator(&Error);
222 if (!Error.empty()) {
223 errs() << Error;
224 return debugCodeGeneratorCrash(ErrMsg);
Chris Lattner7c955fd2004-02-19 17:03:49 +0000225 }
Nick Lewycky22ff7482010-04-12 05:08:25 +0000226 return Failure;
Misha Brukman50733362003-07-24 18:17:43 +0000227}
228
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000229void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
230 unsigned NumPrint = Funcs.size();
231 if (NumPrint > 10) NumPrint = 10;
232 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000233 outs() << " " << Funcs[i]->getName();
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000234 if (NumPrint < Funcs.size())
Dan Gohmanac95cc72009-07-16 15:30:09 +0000235 outs() << "... <" << Funcs.size() << " total>";
236 outs().flush();
Chris Lattnerafade922002-11-20 22:28:10 +0000237}
Bill Wendling4e3be892006-10-25 18:36:14 +0000238
239void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) {
240 unsigned NumPrint = GVs.size();
241 if (NumPrint > 10) NumPrint = 10;
242 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000243 outs() << " " << GVs[i]->getName();
Bill Wendling4e3be892006-10-25 18:36:14 +0000244 if (NumPrint < GVs.size())
Dan Gohmanac95cc72009-07-16 15:30:09 +0000245 outs() << "... <" << GVs.size() << " total>";
246 outs().flush();
Bill Wendling4e3be892006-10-25 18:36:14 +0000247}