blob: 45a0d4dd17a31e0ae77c1f360a3318e453b7be46 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
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"
17#include "ToolRunner.h"
18#include "llvm/Linker.h"
19#include "llvm/Module.h"
20#include "llvm/Pass.h"
Dan Gohman024ec132009-09-03 16:32:58 +000021#include "llvm/Support/IRReader.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Support/CommandLine.h"
23#include "llvm/Support/FileUtilities.h"
Chris Lattner13c68382009-07-02 22:46:18 +000024#include "llvm/Support/SourceMgr.h"
Chris Lattner103ff152009-01-02 07:01:27 +000025#include "llvm/Support/raw_ostream.h"
Daniel Dunbard8590af2009-08-18 03:35:57 +000026#include "llvm/System/Host.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include <memory>
28using namespace llvm;
29
Daniel Dunbard8590af2009-08-18 03:35:57 +000030namespace llvm {
31 Triple TargetTriple;
32}
33
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 //
42 cl::opt<std::string>
43 OutputFile("output", cl::desc("Specify a reference program output "
44 "(for miscompilation detection)"));
45}
46
47/// 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
56/// 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///
59std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
60 std::string Result;
61 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
62 if (i) Result += " ";
63 Result += "-";
64 Result += Passes[i]->getPassArgument();
65 }
66 return Result;
67}
68
69BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs,
Jeffrey Yasskin13baf9e2010-03-19 00:09:28 +000070 unsigned timeout, unsigned memlimit, bool use_valgrind,
Owen Anderson92adb182009-07-01 23:13:44 +000071 LLVMContext& ctxt)
Owen Anderson25209b42009-07-01 16:58:40 +000072 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile),
Dan Gohman7fb02ed2008-12-08 04:02:47 +000073 Program(0), Interpreter(0), SafeInterpreter(0), gcc(0),
Owen Anderson25209b42009-07-01 16:58:40 +000074 run_as_child(as_child), run_find_bugs(find_bugs), Timeout(timeout),
Jeffrey Yasskin13baf9e2010-03-19 00:09:28 +000075 MemoryLimit(memlimit), UseValgrind(use_valgrind) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076
Jeffrey Yasskince5d1b72010-03-22 05:23:37 +000077BugDriver::~BugDriver() {
78 delete Program;
79}
80
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081
82/// ParseInputFile - Given a bitcode or assembly input filename, parse and
83/// return it, or return null if not possible.
84///
Owen Andersona148fdd2009-07-01 21:22:36 +000085Module *llvm::ParseInputFile(const std::string &Filename,
Owen Anderson92adb182009-07-01 23:13:44 +000086 LLVMContext& Ctxt) {
Chris Lattner13c68382009-07-02 22:46:18 +000087 SMDiagnostic Err;
Dan Gohman024ec132009-09-03 16:32:58 +000088 Module *Result = ParseIRFile(Filename, Err, Ctxt);
89 if (!Result)
90 Err.Print("bugpoint", errs());
91
Daniel Dunbard8590af2009-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())
99 TheTriple.setTriple(sys::getHostTriple());
100
101 TargetTriple.setTriple(TheTriple.getTriple());
102 }
103
104 Result->setTargetTriple(TargetTriple.getTriple()); // override the triple
105 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 return Result;
107}
108
109// This method takes the specified list of LLVM input files, attempts to load
110// 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
112// parsed), and false on success.
113//
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 Lewycky3cefdd32010-04-12 05:08:25 +0000118 // Load the first input file.
119 Program = ParseInputFile(Filenames[0], Context);
120 if (Program == 0) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000122 if (!run_as_child)
123 outs() << "Read input file : '" << Filenames[0] << "'\n";
124
125 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
126 std::auto_ptr<Module> M(ParseInputFile(Filenames[i], Context));
127 if (M.get() == 0) return true;
128
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 if (!run_as_child)
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000130 outs() << "Linking in input file: '" << Filenames[i] << "'\n";
131 std::string ErrorMessage;
132 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
133 errs() << ToolName << ": error linking in '" << Filenames[i] << "': "
134 << ErrorMessage << '\n';
135 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137 }
138
139 if (!run_as_child)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000140 outs() << "*** All input ok\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141
142 // All input files read successfully!
143 return false;
144}
145
146
147
148/// run - The top level method that is invoked after all of the instance
149/// variables are set up from command line arguments.
150///
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000151bool BugDriver::run(std::string &ErrMsg) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 // The first thing to do is determine if we're running as a child. If we are,
153 // then what to do is very narrow. This form of invocation is only called
154 // from the runPasses method to actually run those passes in a child process.
155 if (run_as_child) {
156 // Execute the passes
157 return runPassesAsChild(PassesToRun);
158 }
159
160 if (run_find_bugs) {
161 // Rearrange the passes and apply them to the program. Repeat this process
162 // until the user kills the program or we find a bug.
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000163 return runManyPasses(PassesToRun, ErrMsg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 }
165
166 // If we're not running as a child, the first thing that we must do is
167 // determine what the problem is. Does the optimization series crash the
168 // compiler, or does it produce illegal code? We make the top-level
169 // decision by trying to run all of the passes on the the input program,
170 // which should generate a bitcode file. If it does generate a bitcode
171 // file, then we know the compiler didn't crash, so try to diagnose a
172 // miscompilation.
173 if (!PassesToRun.empty()) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000174 outs() << "Running selected passes on program to test for crash: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 if (runPasses(PassesToRun))
176 return debugOptimizerCrash();
177 }
178
179 // Set up the execution environment, selecting a method to run LLVM bitcode.
180 if (initializeExecutionEnvironment()) return true;
181
182 // Test to see if we have a code generator crash.
Dan Gohmanb714fab2009-07-16 15:30:09 +0000183 outs() << "Running the code generator to test for a crash: ";
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000184 std::string Error;
185 compileProgram(Program, &Error);
186 if (!Error.empty()) {
187 outs() << Error;
188 return debugCodeGeneratorCrash(ErrMsg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189 }
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000190 outs() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191
192 // Run the raw input to see where we are coming from. If a reference output
193 // was specified, make sure that the raw output matches it. If not, it's a
194 // problem in the front-end or the code generator.
195 //
196 bool CreatedOutput = false;
197 if (ReferenceOutputFile.empty()) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000198 outs() << "Generating reference output from raw program: ";
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000199 if (!createReferenceFile(Program)) {
200 return debugCodeGeneratorCrash(ErrMsg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 }
202 CreatedOutput = true;
203 }
204
205 // Make sure the reference output file gets deleted on exit from this
206 // function, if appropriate.
207 sys::Path ROF(ReferenceOutputFile);
Anton Korobeynikov43cf4f12009-08-05 09:32:10 +0000208 FileRemover RemoverInstance(ROF, CreatedOutput && !SaveTemps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209
210 // Diff the output of the raw program against the reference output. If it
211 // matches, then we assume there is a miscompilation bug and try to
212 // diagnose it.
Dan Gohmanb714fab2009-07-16 15:30:09 +0000213 outs() << "*** Checking the code generator...\n";
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000214 bool Diff = diffProgram("", "", false, &Error);
215 if (!Error.empty()) {
216 errs() << Error;
217 return debugCodeGeneratorCrash(ErrMsg);
218 }
219 if (!Diff) {
220 outs() << "\n*** Output matches: Debugging miscompilation!\n";
221 debugMiscompilation(&Error);
222 if (!Error.empty()) {
223 errs() << Error;
224 return debugCodeGeneratorCrash(ErrMsg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225 }
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000226 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 }
228
Dan Gohmanb714fab2009-07-16 15:30:09 +0000229 outs() << "\n*** Input program does not match reference diff!\n";
230 outs() << "Debugging code generator problem!\n";
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000231 bool Failure = debugCodeGenerator(&Error);
232 if (!Error.empty()) {
233 errs() << Error;
234 return debugCodeGeneratorCrash(ErrMsg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 }
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000236 return Failure;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237}
238
239void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
240 unsigned NumPrint = Funcs.size();
241 if (NumPrint > 10) NumPrint = 10;
242 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000243 outs() << " " << Funcs[i]->getName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 if (NumPrint < Funcs.size())
Dan Gohmanb714fab2009-07-16 15:30:09 +0000245 outs() << "... <" << Funcs.size() << " total>";
246 outs().flush();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247}
248
249void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) {
250 unsigned NumPrint = GVs.size();
251 if (NumPrint > 10) NumPrint = 10;
252 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000253 outs() << " " << GVs[i]->getName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 if (NumPrint < GVs.size())
Dan Gohmanb714fab2009-07-16 15:30:09 +0000255 outs() << "... <" << GVs.size() << " total>";
256 outs().flush();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257}