blob: 024d8e219fa30e2d1f0082a99acdc77fefc341dd [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"
24#include "llvm/Support/MemoryBuffer.h"
Chris Lattner13c68382009-07-02 22:46:18 +000025#include "llvm/Support/SourceMgr.h"
Chris Lattner103ff152009-01-02 07:01:27 +000026#include "llvm/Support/raw_ostream.h"
Daniel Dunbard8590af2009-08-18 03:35:57 +000027#include "llvm/System/Host.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include <memory>
29using namespace llvm;
30
Daniel Dunbard8590af2009-08-18 03:35:57 +000031namespace llvm {
32 Triple TargetTriple;
33}
34
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 //
43 cl::opt<std::string>
44 OutputFile("output", cl::desc("Specify a reference program output "
45 "(for miscompilation detection)"));
46}
47
48/// 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
57/// 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///
60std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
61 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
70BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs,
Jeffrey Yasskin13baf9e2010-03-19 00:09:28 +000071 unsigned timeout, unsigned memlimit, bool use_valgrind,
Owen Anderson92adb182009-07-01 23:13:44 +000072 LLVMContext& ctxt)
Owen Anderson25209b42009-07-01 16:58:40 +000073 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile),
Dan Gohman7fb02ed2008-12-08 04:02:47 +000074 Program(0), Interpreter(0), SafeInterpreter(0), gcc(0),
Owen Anderson25209b42009-07-01 16:58:40 +000075 run_as_child(as_child), run_find_bugs(find_bugs), Timeout(timeout),
Jeffrey Yasskin13baf9e2010-03-19 00:09:28 +000076 MemoryLimit(memlimit), UseValgrind(use_valgrind) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077
Jeffrey Yasskince5d1b72010-03-22 05:23:37 +000078BugDriver::~BugDriver() {
79 delete Program;
80}
81
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082
83/// ParseInputFile - Given a bitcode or assembly input filename, parse and
84/// return it, or return null if not possible.
85///
Owen Andersona148fdd2009-07-01 21:22:36 +000086Module *llvm::ParseInputFile(const std::string &Filename,
Owen Anderson92adb182009-07-01 23:13:44 +000087 LLVMContext& Ctxt) {
Chris Lattner13c68382009-07-02 22:46:18 +000088 SMDiagnostic Err;
Dan Gohman024ec132009-09-03 16:32:58 +000089 Module *Result = ParseIRFile(Filename, Err, Ctxt);
90 if (!Result)
91 Err.Print("bugpoint", errs());
92
Daniel Dunbard8590af2009-08-18 03:35:57 +000093 // If we don't have an override triple, use the first one to configure
94 // bugpoint, or use the host triple if none provided.
95 if (Result) {
96 if (TargetTriple.getTriple().empty()) {
97 Triple TheTriple(Result->getTargetTriple());
98
99 if (TheTriple.getTriple().empty())
100 TheTriple.setTriple(sys::getHostTriple());
101
102 TargetTriple.setTriple(TheTriple.getTriple());
103 }
104
105 Result->setTargetTriple(TargetTriple.getTriple()); // override the triple
106 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000107 return Result;
108}
109
110// This method takes the specified list of LLVM input files, attempts to load
111// them, either as assembly or bitcode, then link them together. It returns
112// true on failure (if, for example, an input bitcode file could not be
113// parsed), and false on success.
114//
115bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
116 assert(Program == 0 && "Cannot call addSources multiple times!");
117 assert(!Filenames.empty() && "Must specify at least on input filename!");
118
119 try {
120 // Load the first input file.
Owen Anderson25209b42009-07-01 16:58:40 +0000121 Program = ParseInputFile(Filenames[0], Context);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 if (Program == 0) return true;
123
124 if (!run_as_child)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000125 outs() << "Read input file : '" << Filenames[0] << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126
127 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
Owen Anderson25209b42009-07-01 16:58:40 +0000128 std::auto_ptr<Module> M(ParseInputFile(Filenames[i], Context));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 if (M.get() == 0) return true;
130
131 if (!run_as_child)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000132 outs() << "Linking in input file: '" << Filenames[i] << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 std::string ErrorMessage;
134 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000135 errs() << ToolName << ": error linking in '" << Filenames[i] << "': "
136 << ErrorMessage << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137 return true;
138 }
139 }
140 } catch (const std::string &Error) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000141 errs() << ToolName << ": error reading input '" << Error << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 return true;
143 }
144
145 if (!run_as_child)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000146 outs() << "*** All input ok\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147
148 // All input files read successfully!
149 return false;
150}
151
152
153
154/// run - The top level method that is invoked after all of the instance
155/// variables are set up from command line arguments.
156///
157bool BugDriver::run() {
158 // The first thing to do is determine if we're running as a child. If we are,
159 // then what to do is very narrow. This form of invocation is only called
160 // from the runPasses method to actually run those passes in a child process.
161 if (run_as_child) {
162 // Execute the passes
163 return runPassesAsChild(PassesToRun);
164 }
165
166 if (run_find_bugs) {
167 // Rearrange the passes and apply them to the program. Repeat this process
168 // until the user kills the program or we find a bug.
169 return runManyPasses(PassesToRun);
170 }
171
172 // If we're not running as a child, the first thing that we must do is
173 // determine what the problem is. Does the optimization series crash the
174 // compiler, or does it produce illegal code? We make the top-level
175 // decision by trying to run all of the passes on the the input program,
176 // which should generate a bitcode file. If it does generate a bitcode
177 // file, then we know the compiler didn't crash, so try to diagnose a
178 // miscompilation.
179 if (!PassesToRun.empty()) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000180 outs() << "Running selected passes on program to test for crash: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 if (runPasses(PassesToRun))
182 return debugOptimizerCrash();
183 }
184
185 // Set up the execution environment, selecting a method to run LLVM bitcode.
186 if (initializeExecutionEnvironment()) return true;
187
188 // Test to see if we have a code generator crash.
Dan Gohmanb714fab2009-07-16 15:30:09 +0000189 outs() << "Running the code generator to test for a crash: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 try {
191 compileProgram(Program);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000192 outs() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 } catch (ToolExecutionError &TEE) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000194 outs() << TEE.what();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 return debugCodeGeneratorCrash();
196 }
197
198
199 // Run the raw input to see where we are coming from. If a reference output
200 // was specified, make sure that the raw output matches it. If not, it's a
201 // problem in the front-end or the code generator.
202 //
203 bool CreatedOutput = false;
204 if (ReferenceOutputFile.empty()) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000205 outs() << "Generating reference output from raw program: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 if(!createReferenceFile(Program)){
Bill Wendling4d7b0492008-02-26 10:46:10 +0000207 return debugCodeGeneratorCrash();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 }
209 CreatedOutput = true;
210 }
211
212 // Make sure the reference output file gets deleted on exit from this
213 // function, if appropriate.
214 sys::Path ROF(ReferenceOutputFile);
Anton Korobeynikov43cf4f12009-08-05 09:32:10 +0000215 FileRemover RemoverInstance(ROF, CreatedOutput && !SaveTemps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216
217 // Diff the output of the raw program against the reference output. If it
218 // matches, then we assume there is a miscompilation bug and try to
219 // diagnose it.
Dan Gohmanb714fab2009-07-16 15:30:09 +0000220 outs() << "*** Checking the code generator...\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 try {
222 if (!diffProgram()) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000223 outs() << "\n*** Output matches: Debugging miscompilation!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 return debugMiscompilation();
225 }
226 } catch (ToolExecutionError &TEE) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000227 errs() << TEE.what();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 return debugCodeGeneratorCrash();
229 }
230
Dan Gohmanb714fab2009-07-16 15:30:09 +0000231 outs() << "\n*** Input program does not match reference diff!\n";
232 outs() << "Debugging code generator problem!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233 try {
234 return debugCodeGenerator();
235 } catch (ToolExecutionError &TEE) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000236 errs() << TEE.what();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 return debugCodeGeneratorCrash();
238 }
239}
240
241void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
242 unsigned NumPrint = Funcs.size();
243 if (NumPrint > 10) NumPrint = 10;
244 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000245 outs() << " " << Funcs[i]->getName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 if (NumPrint < Funcs.size())
Dan Gohmanb714fab2009-07-16 15:30:09 +0000247 outs() << "... <" << Funcs.size() << " total>";
248 outs().flush();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249}
250
251void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) {
252 unsigned NumPrint = GVs.size();
253 if (NumPrint > 10) NumPrint = 10;
254 for (unsigned i = 0; i != NumPrint; ++i)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000255 outs() << " " << GVs[i]->getName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 if (NumPrint < GVs.size())
Dan Gohmanb714fab2009-07-16 15:30:09 +0000257 outs() << "... <" << GVs.size() << " total>";
258 outs().flush();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259}