blob: f8beb2a64c2ed7d25e946193688c3d081148d4fd [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
22#include "llvm/Bytecode/Reader.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/FileUtilities.h"
Reid Spencer86f42bd2004-07-04 12:20:55 +000025#include <iostream>
Chris Lattnerafade922002-11-20 22:28:10 +000026#include <memory>
Reid Spencer86f42bd2004-07-04 12:20:55 +000027
Brian Gaeked0fde302003-11-11 22:41:34 +000028using namespace llvm;
29
Misha Brukman50733362003-07-24 18:17:43 +000030// Anonymous namespace to define command line options for debugging.
31//
32namespace {
33 // Output - The user can specify a file containing the expected output of the
34 // program. If this filename is set, it is used as the reference diff source,
35 // otherwise the raw input run through an interpreter is used as the reference
36 // source.
37 //
Misha Brukman3da94ae2005-04-22 00:00:37 +000038 cl::opt<std::string>
Misha Brukman50733362003-07-24 18:17:43 +000039 OutputFile("output", cl::desc("Specify a reference program output "
40 "(for miscompilation detection)"));
Misha Brukman50733362003-07-24 18:17:43 +000041}
42
Chris Lattner06905db2004-02-18 21:24:48 +000043/// setNewProgram - If we reduce or update the program somehow, call this method
44/// to update bugdriver with it. This deletes the old module and sets the
45/// specified one as the current program.
46void BugDriver::setNewProgram(Module *M) {
47 delete Program;
48 Program = M;
49}
50
51
Chris Lattner640f22e2003-04-24 17:02:17 +000052/// getPassesString - Turn a list of passes into a string which indicates the
53/// command line options that must be passed to add the passes.
54///
Chris Lattnerfa761832004-01-14 03:38:37 +000055std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
Chris Lattner640f22e2003-04-24 17:02:17 +000056 std::string Result;
57 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
58 if (i) Result += " ";
59 Result += "-";
60 Result += Passes[i]->getPassArgument();
61 }
62 return Result;
63}
64
Chris Lattner9686ae72006-06-13 03:10:48 +000065BugDriver::BugDriver(const char *toolname, bool as_child, unsigned timeout)
Misha Brukman50733362003-07-24 18:17:43 +000066 : ToolName(toolname), ReferenceOutputFile(OutputFile),
Chris Lattner9686ae72006-06-13 03:10:48 +000067 Program(0), Interpreter(0), cbe(0), gcc(0), run_as_child(as_child),
68 Timeout(timeout) {}
Misha Brukman50733362003-07-24 18:17:43 +000069
70
Chris Lattnerafade922002-11-20 22:28:10 +000071/// ParseInputFile - Given a bytecode or assembly input filename, parse and
72/// return it, or return null if not possible.
73///
Chris Lattnerefdc0b52004-03-14 20:50:42 +000074Module *llvm::ParseInputFile(const std::string &InputFilename) {
Chris Lattnerafade922002-11-20 22:28:10 +000075 Module *Result = 0;
76 try {
77 Result = ParseBytecodeFile(InputFilename);
78 if (!Result && !(Result = ParseAssemblyFile(InputFilename))){
Chris Lattnerefdc0b52004-03-14 20:50:42 +000079 std::cerr << "bugpoint: could not read input file '"
Chris Lattnerafade922002-11-20 22:28:10 +000080 << InputFilename << "'!\n";
81 }
82 } catch (const ParseException &E) {
Misha Brukmaneed80e22004-07-23 01:30:49 +000083 std::cerr << "bugpoint: " << E.getMessage() << '\n';
Chris Lattnerafade922002-11-20 22:28:10 +000084 Result = 0;
85 }
86 return Result;
87}
88
89// This method takes the specified list of LLVM input files, attempts to load
Brian Gaekedae7f922003-05-23 05:34:32 +000090// them, either as assembly or bytecode, then link them together. It returns
91// true on failure (if, for example, an input bytecode file could not be
92// parsed), and false on success.
Chris Lattnerafade922002-11-20 22:28:10 +000093//
94bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
95 assert(Program == 0 && "Cannot call addSources multiple times!");
96 assert(!Filenames.empty() && "Must specify at least on input filename!");
97
Chris Lattner53bd1b92006-05-14 19:15:56 +000098 try {
99 // Load the first input file.
100 Program = ParseInputFile(Filenames[0]);
101 if (Program == 0) return true;
Reid Spencerc4bb0522005-12-22 20:02:55 +0000102 if (!run_as_child)
Chris Lattner53bd1b92006-05-14 19:15:56 +0000103 std::cout << "Read input file : '" << Filenames[0] << "'\n";
104
105 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
106 std::auto_ptr<Module> M(ParseInputFile(Filenames[i]));
107 if (M.get() == 0) return true;
108
109 if (!run_as_child)
110 std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
111 std::string ErrorMessage;
112 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
113 std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
114 << ErrorMessage << '\n';
115 return true;
116 }
Chris Lattnerafade922002-11-20 22:28:10 +0000117 }
Chris Lattner53bd1b92006-05-14 19:15:56 +0000118 } catch (const std::string &Error) {
119 std::cerr << ToolName << ": error reading input '" << Error << "'\n";
120 return true;
Chris Lattnerafade922002-11-20 22:28:10 +0000121 }
122
Reid Spencerc4bb0522005-12-22 20:02:55 +0000123 if (!run_as_child)
124 std::cout << "*** All input ok\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000125
126 // All input files read successfully!
127 return false;
128}
129
130
131
132/// run - The top level method that is invoked after all of the instance
133/// variables are set up from command line arguments.
134///
135bool BugDriver::run() {
Reid Spencerc4bb0522005-12-22 20:02:55 +0000136 // The first thing to do is determine if we're running as a child. If we are,
137 // then what to do is very narrow. This form of invocation is only called
138 // from the runPasses method to actually run those passes in a child process.
139 if (run_as_child) {
140 // Execute the passes
141 return runPassesAsChild(PassesToRun);
142 }
143
144 // If we're not running as a child, the first thing that we must do is
145 // determine what the problem is. Does the optimization series crash the
146 // compiler, or does it produce illegal code? We make the top-level
147 // decision by trying to run all of the passes on the the input program,
148 // which should generate a bytecode file. If it does generate a bytecode
149 // file, then we know the compiler didn't crash, so try to diagnose a
150 // miscompilation.
Chris Lattner99b85332003-10-13 21:04:26 +0000151 if (!PassesToRun.empty()) {
152 std::cout << "Running selected passes on program to test for crash: ";
153 if (runPasses(PassesToRun))
Chris Lattner02526262004-02-18 21:02:04 +0000154 return debugOptimizerCrash();
Chris Lattner99b85332003-10-13 21:04:26 +0000155 }
Misha Brukman50733362003-07-24 18:17:43 +0000156
Misha Brukman50733362003-07-24 18:17:43 +0000157 // Set up the execution environment, selecting a method to run LLVM bytecode.
158 if (initializeExecutionEnvironment()) return true;
159
Chris Lattner7c955fd2004-02-19 17:03:49 +0000160 // Test to see if we have a code generator crash.
161 std::cout << "Running the code generator to test for a crash: ";
162 try {
163 compileProgram(Program);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000164 std::cout << '\n';
Chris Lattner7c955fd2004-02-19 17:03:49 +0000165 } catch (ToolExecutionError &TEE) {
166 std::cout << TEE.what();
167 return debugCodeGeneratorCrash();
168 }
169
170
Misha Brukman50733362003-07-24 18:17:43 +0000171 // Run the raw input to see where we are coming from. If a reference output
172 // was specified, make sure that the raw output matches it. If not, it's a
173 // problem in the front-end or the code generator.
174 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000175 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000176 if (ReferenceOutputFile.empty()) {
Chris Lattner7d91e492004-07-24 07:53:26 +0000177 std::cout << "Generating reference output from raw program: ";
Chris Lattner02526262004-02-18 21:02:04 +0000178 try {
179 ReferenceOutputFile = executeProgramWithCBE("bugpoint.reference.out");
180 CreatedOutput = true;
Misha Brukmaneed80e22004-07-23 01:30:49 +0000181 std::cout << "Reference output is: " << ReferenceOutputFile << '\n';
Chris Lattner02526262004-02-18 21:02:04 +0000182 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000183 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000184 if (Interpreter != cbe) {
185 std::cerr << "*** There is a bug running the C backend. Either debug"
186 << " it (use the -run-cbe bugpoint option), or fix the error"
187 << " some other way.\n";
188 return 1;
189 }
190 return debugCodeGeneratorCrash();
191 }
Misha Brukman50733362003-07-24 18:17:43 +0000192 }
193
Chris Lattnera5a96a92003-10-14 20:52:55 +0000194 // Make sure the reference output file gets deleted on exit from this
195 // function, if appropriate.
Reid Spencer5d282182004-12-20 19:16:12 +0000196 sys::Path ROF(ReferenceOutputFile);
197 FileRemover RemoverInstance(ROF, CreatedOutput);
Chris Lattnera5a96a92003-10-14 20:52:55 +0000198
199 // Diff the output of the raw program against the reference output. If it
200 // matches, then we have a miscompilation bug.
201 std::cout << "*** Checking the code generator...\n";
Chris Lattner02526262004-02-18 21:02:04 +0000202 try {
203 if (!diffProgram()) {
204 std::cout << "\n*** Debugging miscompilation!\n";
205 return debugMiscompilation();
206 }
207 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000208 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000209 return debugCodeGeneratorCrash();
Chris Lattnera5a96a92003-10-14 20:52:55 +0000210 }
211
212 std::cout << "\n*** Input program does not match reference diff!\n";
213 std::cout << "Debugging code generator problem!\n";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000214 try {
215 return debugCodeGenerator();
216 } catch (ToolExecutionError &TEE) {
217 std::cerr << TEE.what();
218 return debugCodeGeneratorCrash();
219 }
Misha Brukman50733362003-07-24 18:17:43 +0000220}
221
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000222void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
223 unsigned NumPrint = Funcs.size();
224 if (NumPrint > 10) NumPrint = 10;
225 for (unsigned i = 0; i != NumPrint; ++i)
226 std::cout << " " << Funcs[i]->getName();
227 if (NumPrint < Funcs.size())
228 std::cout << "... <" << Funcs.size() << " total>";
Brian Gaekeb6c3a882003-10-15 20:42:48 +0000229 std::cout << std::flush;
Chris Lattnerafade922002-11-20 22:28:10 +0000230}