blob: fe290805e4b1a08c3b33bb65cc2c286418b3eb39 [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"
Chris Lattner03b69632007-05-06 05:47:06 +000022#include "llvm/Bitcode/ReaderWriter.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000023#include "llvm/Bytecode/Reader.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000024#include "llvm/Support/CommandLine.h"
Chris Lattnerf2e292c2007-02-07 21:41:02 +000025#include "llvm/Support/Compressor.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/FileUtilities.h"
Chris Lattner03b69632007-05-06 05:47:06 +000027#include "llvm/Support/MemoryBuffer.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,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +000068 unsigned timeout, unsigned memlimit)
Misha Brukman50733362003-07-24 18:17:43 +000069 : ToolName(toolname), ReferenceOutputFile(OutputFile),
Chris Lattner9686ae72006-06-13 03:10:48 +000070 Program(0), Interpreter(0), cbe(0), gcc(0), run_as_child(as_child),
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +000071 run_find_bugs(find_bugs), Timeout(timeout), MemoryLimit(memlimit) {}
Misha Brukman50733362003-07-24 18:17:43 +000072
73
Chris Lattnerafade922002-11-20 22:28:10 +000074/// ParseInputFile - Given a bytecode or assembly input filename, parse and
75/// return it, or return null if not possible.
76///
Chris Lattnerefdc0b52004-03-14 20:50:42 +000077Module *llvm::ParseInputFile(const std::string &InputFilename) {
Reid Spencer61c83e02006-08-18 08:43:06 +000078 ParseError Err;
Chris Lattnerf2e292c2007-02-07 21:41:02 +000079 Module *Result = ParseBytecodeFile(InputFilename,
80 Compressor::decompressToNewBuffer);
Chris Lattner03b69632007-05-06 05:47:06 +000081 if (!Result) {
82 std::auto_ptr<MemoryBuffer> Buffer(
83 MemoryBuffer::getFileOrSTDIN(&InputFilename[0], InputFilename.size()));
84 if (Buffer.get())
85 Result = ParseBitcodeFile(Buffer.get());
86 }
87
Reid Spencer61c83e02006-08-18 08:43:06 +000088 if (!Result && !(Result = ParseAssemblyFile(InputFilename,&Err))) {
89 std::cerr << "bugpoint: " << Err.getMessage() << "\n";
Chris Lattnerafade922002-11-20 22:28:10 +000090 Result = 0;
91 }
92 return Result;
93}
94
95// This method takes the specified list of LLVM input files, attempts to load
Brian Gaekedae7f922003-05-23 05:34:32 +000096// them, either as assembly or bytecode, then link them together. It returns
97// true on failure (if, for example, an input bytecode file could not be
98// 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.
106 Program = ParseInputFile(Filenames[0]);
107 if (Program == 0) return true;
Reid Spencerc4bb0522005-12-22 20:02:55 +0000108 if (!run_as_child)
Chris Lattner53bd1b92006-05-14 19:15:56 +0000109 std::cout << "Read input file : '" << Filenames[0] << "'\n";
110
111 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
112 std::auto_ptr<Module> M(ParseInputFile(Filenames[i]));
113 if (M.get() == 0) return true;
114
115 if (!run_as_child)
116 std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
117 std::string ErrorMessage;
118 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
119 std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
120 << ErrorMessage << '\n';
121 return true;
122 }
Chris Lattnerafade922002-11-20 22:28:10 +0000123 }
Chris Lattner53bd1b92006-05-14 19:15:56 +0000124 } catch (const std::string &Error) {
125 std::cerr << ToolName << ": error reading input '" << Error << "'\n";
126 return true;
Chris Lattnerafade922002-11-20 22:28:10 +0000127 }
128
Reid Spencerc4bb0522005-12-22 20:02:55 +0000129 if (!run_as_child)
130 std::cout << "*** All input ok\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000131
132 // All input files read successfully!
133 return false;
134}
135
136
137
138/// run - The top level method that is invoked after all of the instance
139/// variables are set up from command line arguments.
140///
141bool BugDriver::run() {
Reid Spencerc4bb0522005-12-22 20:02:55 +0000142 // The first thing to do is determine if we're running as a child. If we are,
143 // then what to do is very narrow. This form of invocation is only called
144 // from the runPasses method to actually run those passes in a child process.
145 if (run_as_child) {
146 // Execute the passes
147 return runPassesAsChild(PassesToRun);
148 }
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000149
150 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.
153 return runManyPasses(PassesToRun);
154 }
Reid Spencerc4bb0522005-12-22 20:02:55 +0000155
156 // 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
159 // decision by trying to run all of the passes on the the input program,
160 // which should generate a bytecode file. If it does generate a bytecode
161 // file, then we know the compiler didn't crash, so try to diagnose a
162 // miscompilation.
Chris Lattner99b85332003-10-13 21:04:26 +0000163 if (!PassesToRun.empty()) {
164 std::cout << "Running selected passes on program to test for crash: ";
165 if (runPasses(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
Misha Brukman50733362003-07-24 18:17:43 +0000169 // Set up the execution environment, selecting a method to run LLVM bytecode.
170 if (initializeExecutionEnvironment()) return true;
171
Chris Lattner7c955fd2004-02-19 17:03:49 +0000172 // Test to see if we have a code generator crash.
173 std::cout << "Running the code generator to test for a crash: ";
174 try {
175 compileProgram(Program);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000176 std::cout << '\n';
Chris Lattner7c955fd2004-02-19 17:03:49 +0000177 } catch (ToolExecutionError &TEE) {
178 std::cout << TEE.what();
179 return debugCodeGeneratorCrash();
180 }
181
182
Misha Brukman50733362003-07-24 18:17:43 +0000183 // Run the raw input to see where we are coming from. If a reference output
184 // was specified, make sure that the raw output matches it. If not, it's a
185 // problem in the front-end or the code generator.
186 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000187 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000188 if (ReferenceOutputFile.empty()) {
Chris Lattner7d91e492004-07-24 07:53:26 +0000189 std::cout << "Generating reference output from raw program: ";
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000190 if(!createReferenceFile(Program)){
191 return debugCodeGeneratorCrash();
Chris Lattner02526262004-02-18 21:02:04 +0000192 }
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000193 CreatedOutput = true;
Misha Brukman50733362003-07-24 18:17:43 +0000194 }
195
Chris Lattnera5a96a92003-10-14 20:52:55 +0000196 // Make sure the reference output file gets deleted on exit from this
197 // function, if appropriate.
Reid Spencer5d282182004-12-20 19:16:12 +0000198 sys::Path ROF(ReferenceOutputFile);
199 FileRemover RemoverInstance(ROF, CreatedOutput);
Chris Lattnera5a96a92003-10-14 20:52:55 +0000200
201 // Diff the output of the raw program against the reference output. If it
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000202 // matches, then we assume there is a miscompilation bug and try to
203 // diagnose it.
Chris Lattnera5a96a92003-10-14 20:52:55 +0000204 std::cout << "*** Checking the code generator...\n";
Chris Lattner02526262004-02-18 21:02:04 +0000205 try {
206 if (!diffProgram()) {
207 std::cout << "\n*** Debugging miscompilation!\n";
208 return debugMiscompilation();
209 }
210 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000211 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000212 return debugCodeGeneratorCrash();
Chris Lattnera5a96a92003-10-14 20:52:55 +0000213 }
214
215 std::cout << "\n*** Input program does not match reference diff!\n";
216 std::cout << "Debugging code generator problem!\n";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000217 try {
218 return debugCodeGenerator();
219 } catch (ToolExecutionError &TEE) {
220 std::cerr << TEE.what();
221 return debugCodeGeneratorCrash();
222 }
Misha Brukman50733362003-07-24 18:17:43 +0000223}
224
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000225void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
226 unsigned NumPrint = Funcs.size();
227 if (NumPrint > 10) NumPrint = 10;
228 for (unsigned i = 0; i != NumPrint; ++i)
229 std::cout << " " << Funcs[i]->getName();
230 if (NumPrint < Funcs.size())
231 std::cout << "... <" << Funcs.size() << " total>";
Brian Gaekeb6c3a882003-10-15 20:42:48 +0000232 std::cout << std::flush;
Chris Lattnerafade922002-11-20 22:28:10 +0000233}
Bill Wendling4e3be892006-10-25 18:36:14 +0000234
235void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) {
236 unsigned NumPrint = GVs.size();
237 if (NumPrint > 10) NumPrint = 10;
238 for (unsigned i = 0; i != NumPrint; ++i)
239 std::cout << " " << GVs[i]->getName();
240 if (NumPrint < GVs.size())
241 std::cout << "... <" << GVs.size() << " total>";
242 std::cout << std::flush;
243}