blob: aab50720c6efe587e2ce134cb0d84e40ffdd52c8 [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"
Misha Brukmane49603d2003-08-07 21:19:30 +000021#include "llvm/Assembly/Parser.h"
Chris Lattner03b69632007-05-06 05:47:06 +000022#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/FileUtilities.h"
Chris Lattner03b69632007-05-06 05:47:06 +000025#include "llvm/Support/MemoryBuffer.h"
Chris Lattner92bcb422009-07-02 22:46:18 +000026#include "llvm/Support/SourceMgr.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000027#include "llvm/Support/raw_ostream.h"
Reid Spencer86f42bd2004-07-04 12:20:55 +000028#include <iostream>
Chris Lattnerafade922002-11-20 22:28:10 +000029#include <memory>
Brian Gaeked0fde302003-11-11 22:41:34 +000030using namespace llvm;
31
Misha Brukman50733362003-07-24 18:17:43 +000032// Anonymous namespace to define command line options for debugging.
33//
34namespace {
35 // Output - The user can specify a file containing the expected output of the
36 // program. If this filename is set, it is used as the reference diff source,
37 // otherwise the raw input run through an interpreter is used as the reference
38 // source.
39 //
Misha Brukman3da94ae2005-04-22 00:00:37 +000040 cl::opt<std::string>
Misha Brukman50733362003-07-24 18:17:43 +000041 OutputFile("output", cl::desc("Specify a reference program output "
42 "(for miscompilation detection)"));
Misha Brukman50733362003-07-24 18:17:43 +000043}
44
Chris Lattner06905db2004-02-18 21:24:48 +000045/// setNewProgram - If we reduce or update the program somehow, call this method
46/// to update bugdriver with it. This deletes the old module and sets the
47/// specified one as the current program.
48void BugDriver::setNewProgram(Module *M) {
49 delete Program;
50 Program = M;
51}
52
53
Chris Lattner640f22e2003-04-24 17:02:17 +000054/// getPassesString - Turn a list of passes into a string which indicates the
55/// command line options that must be passed to add the passes.
56///
Chris Lattnerfa761832004-01-14 03:38:37 +000057std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
Chris Lattner640f22e2003-04-24 17:02:17 +000058 std::string Result;
59 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
60 if (i) Result += " ";
61 Result += "-";
62 Result += Passes[i]->getPassArgument();
63 }
64 return Result;
65}
66
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +000067BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs,
Owen Anderson31895e72009-07-01 21:22:36 +000068 unsigned timeout, unsigned memlimit,
Owen Anderson4434ed42009-07-01 23:13:44 +000069 LLVMContext& ctxt)
Owen Anderson8b477ed2009-07-01 16:58:40 +000070 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile),
Dan Gohman70ef4492008-12-08 04:02:47 +000071 Program(0), Interpreter(0), SafeInterpreter(0), gcc(0),
Owen Anderson8b477ed2009-07-01 16:58:40 +000072 run_as_child(as_child), run_find_bugs(find_bugs), Timeout(timeout),
73 MemoryLimit(memlimit) {}
Misha Brukman50733362003-07-24 18:17:43 +000074
75
Gabor Greif8ff70c22007-07-04 21:55:50 +000076/// ParseInputFile - Given a bitcode or assembly input filename, parse and
Chris Lattnerafade922002-11-20 22:28:10 +000077/// return it, or return null if not possible.
78///
Owen Anderson31895e72009-07-01 21:22:36 +000079Module *llvm::ParseInputFile(const std::string &Filename,
Owen Anderson4434ed42009-07-01 23:13:44 +000080 LLVMContext& Ctxt) {
Chris Lattner065344d2007-05-06 23:45:49 +000081 std::auto_ptr<MemoryBuffer> Buffer(MemoryBuffer::getFileOrSTDIN(Filename));
Chris Lattner744879e2007-05-06 09:32:02 +000082 Module *Result = 0;
83 if (Buffer.get())
Owen Anderson8b477ed2009-07-01 16:58:40 +000084 Result = ParseBitcodeFile(Buffer.get(), Ctxt);
Chris Lattner03b69632007-05-06 05:47:06 +000085
Chris Lattner92bcb422009-07-02 22:46:18 +000086 SMDiagnostic Err;
Owen Anderson8b477ed2009-07-01 16:58:40 +000087 if (!Result && !(Result = ParseAssemblyFile(Filename, Err, Ctxt))) {
Chris Lattner92bcb422009-07-02 22:46:18 +000088 Err.Print("bugpoint", errs());
Chris Lattnerafade922002-11-20 22:28:10 +000089 Result = 0;
90 }
Chris Lattner065344d2007-05-06 23:45:49 +000091
Chris Lattnerafade922002-11-20 22:28:10 +000092 return Result;
93}
94
95// This method takes the specified list of LLVM input files, attempts to load
Gabor Greif8ff70c22007-07-04 21:55:50 +000096// them, either as assembly or bitcode, then link them together. It returns
97// true on failure (if, for example, an input bitcode file could not be
Brian Gaekedae7f922003-05-23 05:34:32 +000098// parsed), and false on success.
Chris Lattnerafade922002-11-20 22:28:10 +000099//
100bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
101 assert(Program == 0 && "Cannot call addSources multiple times!");
102 assert(!Filenames.empty() && "Must specify at least on input filename!");
103
Chris Lattner53bd1b92006-05-14 19:15:56 +0000104 try {
105 // Load the first input file.
Owen Anderson8b477ed2009-07-01 16:58:40 +0000106 Program = ParseInputFile(Filenames[0], Context);
Chris Lattner53bd1b92006-05-14 19:15:56 +0000107 if (Program == 0) return true;
Chris Lattner065344d2007-05-06 23:45:49 +0000108
Reid Spencerc4bb0522005-12-22 20:02:55 +0000109 if (!run_as_child)
Chris Lattner53bd1b92006-05-14 19:15:56 +0000110 std::cout << "Read input file : '" << Filenames[0] << "'\n";
111
112 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
Owen Anderson8b477ed2009-07-01 16:58:40 +0000113 std::auto_ptr<Module> M(ParseInputFile(Filenames[i], Context));
Chris Lattner53bd1b92006-05-14 19:15:56 +0000114 if (M.get() == 0) return true;
115
116 if (!run_as_child)
117 std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
118 std::string ErrorMessage;
119 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
120 std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
121 << ErrorMessage << '\n';
122 return true;
123 }
Chris Lattnerafade922002-11-20 22:28:10 +0000124 }
Chris Lattner53bd1b92006-05-14 19:15:56 +0000125 } catch (const std::string &Error) {
126 std::cerr << ToolName << ": error reading input '" << Error << "'\n";
127 return true;
Chris Lattnerafade922002-11-20 22:28:10 +0000128 }
129
Reid Spencerc4bb0522005-12-22 20:02:55 +0000130 if (!run_as_child)
131 std::cout << "*** All input ok\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000132
133 // All input files read successfully!
134 return false;
135}
136
137
138
139/// run - The top level method that is invoked after all of the instance
140/// variables are set up from command line arguments.
141///
142bool BugDriver::run() {
Reid Spencerc4bb0522005-12-22 20:02:55 +0000143 // The first thing to do is determine if we're running as a child. If we are,
144 // then what to do is very narrow. This form of invocation is only called
145 // from the runPasses method to actually run those passes in a child process.
146 if (run_as_child) {
147 // Execute the passes
148 return runPassesAsChild(PassesToRun);
149 }
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000150
151 if (run_find_bugs) {
152 // Rearrange the passes and apply them to the program. Repeat this process
153 // until the user kills the program or we find a bug.
154 return runManyPasses(PassesToRun);
155 }
Reid Spencerc4bb0522005-12-22 20:02:55 +0000156
157 // If we're not running as a child, the first thing that we must do is
158 // determine what the problem is. Does the optimization series crash the
159 // compiler, or does it produce illegal code? We make the top-level
160 // decision by trying to run all of the passes on the the input program,
Gabor Greif8ff70c22007-07-04 21:55:50 +0000161 // which should generate a bitcode file. If it does generate a bitcode
Reid Spencerc4bb0522005-12-22 20:02:55 +0000162 // file, then we know the compiler didn't crash, so try to diagnose a
163 // miscompilation.
Chris Lattner99b85332003-10-13 21:04:26 +0000164 if (!PassesToRun.empty()) {
165 std::cout << "Running selected passes on program to test for crash: ";
166 if (runPasses(PassesToRun))
Chris Lattner02526262004-02-18 21:02:04 +0000167 return debugOptimizerCrash();
Chris Lattner99b85332003-10-13 21:04:26 +0000168 }
Misha Brukman50733362003-07-24 18:17:43 +0000169
Gabor Greif8ff70c22007-07-04 21:55:50 +0000170 // Set up the execution environment, selecting a method to run LLVM bitcode.
Misha Brukman50733362003-07-24 18:17:43 +0000171 if (initializeExecutionEnvironment()) return true;
172
Chris Lattner7c955fd2004-02-19 17:03:49 +0000173 // Test to see if we have a code generator crash.
174 std::cout << "Running the code generator to test for a crash: ";
175 try {
176 compileProgram(Program);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000177 std::cout << '\n';
Chris Lattner7c955fd2004-02-19 17:03:49 +0000178 } catch (ToolExecutionError &TEE) {
179 std::cout << TEE.what();
180 return debugCodeGeneratorCrash();
181 }
182
183
Misha Brukman50733362003-07-24 18:17:43 +0000184 // Run the raw input to see where we are coming from. If a reference output
185 // was specified, make sure that the raw output matches it. If not, it's a
186 // problem in the front-end or the code generator.
187 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000188 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000189 if (ReferenceOutputFile.empty()) {
Chris Lattner7d91e492004-07-24 07:53:26 +0000190 std::cout << "Generating reference output from raw program: ";
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000191 if(!createReferenceFile(Program)){
Bill Wendling584c3bf2008-02-26 10:46:10 +0000192 return debugCodeGeneratorCrash();
Chris Lattner02526262004-02-18 21:02:04 +0000193 }
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000194 CreatedOutput = true;
Misha Brukman50733362003-07-24 18:17:43 +0000195 }
196
Chris Lattnera5a96a92003-10-14 20:52:55 +0000197 // Make sure the reference output file gets deleted on exit from this
198 // function, if appropriate.
Reid Spencer5d282182004-12-20 19:16:12 +0000199 sys::Path ROF(ReferenceOutputFile);
200 FileRemover RemoverInstance(ROF, CreatedOutput);
Chris Lattnera5a96a92003-10-14 20:52:55 +0000201
202 // Diff the output of the raw program against the reference output. If it
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000203 // matches, then we assume there is a miscompilation bug and try to
204 // diagnose it.
Chris Lattnera5a96a92003-10-14 20:52:55 +0000205 std::cout << "*** Checking the code generator...\n";
Chris Lattner02526262004-02-18 21:02:04 +0000206 try {
207 if (!diffProgram()) {
208 std::cout << "\n*** Debugging miscompilation!\n";
209 return debugMiscompilation();
210 }
211 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000212 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000213 return debugCodeGeneratorCrash();
Chris Lattnera5a96a92003-10-14 20:52:55 +0000214 }
215
216 std::cout << "\n*** Input program does not match reference diff!\n";
217 std::cout << "Debugging code generator problem!\n";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000218 try {
219 return debugCodeGenerator();
220 } catch (ToolExecutionError &TEE) {
221 std::cerr << TEE.what();
222 return debugCodeGeneratorCrash();
223 }
Misha Brukman50733362003-07-24 18:17:43 +0000224}
225
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000226void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
227 unsigned NumPrint = Funcs.size();
228 if (NumPrint > 10) NumPrint = 10;
229 for (unsigned i = 0; i != NumPrint; ++i)
230 std::cout << " " << Funcs[i]->getName();
231 if (NumPrint < Funcs.size())
232 std::cout << "... <" << Funcs.size() << " total>";
Brian Gaekeb6c3a882003-10-15 20:42:48 +0000233 std::cout << std::flush;
Chris Lattnerafade922002-11-20 22:28:10 +0000234}
Bill Wendling4e3be892006-10-25 18:36:14 +0000235
236void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) {
237 unsigned NumPrint = GVs.size();
238 if (NumPrint > 10) NumPrint = 10;
239 for (unsigned i = 0; i != NumPrint; ++i)
240 std::cout << " " << GVs[i]->getName();
241 if (NumPrint < GVs.size())
242 std::cout << "... <" << GVs.size() << " total>";
243 std::cout << std::flush;
244}