blob: b2a8f030c5f4ebb5f4a1296aaa16879e649ea816 [file] [log] [blame]
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001//===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===//
Misha Brukman650ba8e2005-04-22 00:00:37 +00002//
John Criswell09344dc2003-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 Brukman650ba8e2005-04-22 00:00:37 +00007//
John Criswell09344dc2003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner73a6bdd2002-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 Lattnerffac2862006-06-06 22:30:59 +000017#include "ToolRunner.h"
Reid Spencer16c3bb32004-11-14 23:00:08 +000018#include "llvm/Linker.h"
Chris Lattner73a6bdd2002-11-20 22:28:10 +000019#include "llvm/Module.h"
Chris Lattner73a6bdd2002-11-20 22:28:10 +000020#include "llvm/Pass.h"
Misha Brukman0c2305b2003-08-07 21:19:30 +000021#include "llvm/Assembly/Parser.h"
22#include "llvm/Bytecode/Reader.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/Support/CommandLine.h"
Chris Lattnera0e49f22007-02-07 21:41:02 +000024#include "llvm/Support/Compressor.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000025#include "llvm/Support/FileUtilities.h"
Reid Spencerf0ebb252004-07-04 12:20:55 +000026#include <iostream>
Chris Lattner73a6bdd2002-11-20 22:28:10 +000027#include <memory>
Reid Spencerf0ebb252004-07-04 12:20:55 +000028
Brian Gaeke960707c2003-11-11 22:41:34 +000029using namespace llvm;
30
Misha Brukmand792c9b2003-07-24 18:17:43 +000031// Anonymous namespace to define command line options for debugging.
32//
33namespace {
34 // Output - The user can specify a file containing the expected output of the
35 // program. If this filename is set, it is used as the reference diff source,
36 // otherwise the raw input run through an interpreter is used as the reference
37 // source.
38 //
Misha Brukman650ba8e2005-04-22 00:00:37 +000039 cl::opt<std::string>
Misha Brukmand792c9b2003-07-24 18:17:43 +000040 OutputFile("output", cl::desc("Specify a reference program output "
41 "(for miscompilation detection)"));
Misha Brukmand792c9b2003-07-24 18:17:43 +000042}
43
Chris Lattner327019b2004-02-18 21:24:48 +000044/// setNewProgram - If we reduce or update the program somehow, call this method
45/// to update bugdriver with it. This deletes the old module and sets the
46/// specified one as the current program.
47void BugDriver::setNewProgram(Module *M) {
48 delete Program;
49 Program = M;
50}
51
52
Chris Lattner16a41312003-04-24 17:02:17 +000053/// getPassesString - Turn a list of passes into a string which indicates the
54/// command line options that must be passed to add the passes.
55///
Chris Lattner2f1aa112004-01-14 03:38:37 +000056std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
Chris Lattner16a41312003-04-24 17:02:17 +000057 std::string Result;
58 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
59 if (i) Result += " ";
60 Result += "-";
61 Result += Passes[i]->getPassArgument();
62 }
63 return Result;
64}
65
Patrick Jenkinsc46c0382006-08-15 16:40:49 +000066BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs,
Anton Korobeynikovd01defe2007-02-16 19:11:07 +000067 unsigned timeout, unsigned memlimit)
Misha Brukmand792c9b2003-07-24 18:17:43 +000068 : ToolName(toolname), ReferenceOutputFile(OutputFile),
Chris Lattner20ec1652006-06-13 03:10:48 +000069 Program(0), Interpreter(0), cbe(0), gcc(0), run_as_child(as_child),
Anton Korobeynikovd01defe2007-02-16 19:11:07 +000070 run_find_bugs(find_bugs), Timeout(timeout), MemoryLimit(memlimit) {}
Misha Brukmand792c9b2003-07-24 18:17:43 +000071
72
Chris Lattner73a6bdd2002-11-20 22:28:10 +000073/// ParseInputFile - Given a bytecode or assembly input filename, parse and
74/// return it, or return null if not possible.
75///
Chris Lattnerfd72bed2004-03-14 20:50:42 +000076Module *llvm::ParseInputFile(const std::string &InputFilename) {
Reid Spencer713eedc2006-08-18 08:43:06 +000077 ParseError Err;
Chris Lattnera0e49f22007-02-07 21:41:02 +000078 Module *Result = ParseBytecodeFile(InputFilename,
79 Compressor::decompressToNewBuffer);
Reid Spencer713eedc2006-08-18 08:43:06 +000080 if (!Result && !(Result = ParseAssemblyFile(InputFilename,&Err))) {
81 std::cerr << "bugpoint: " << Err.getMessage() << "\n";
Chris Lattner73a6bdd2002-11-20 22:28:10 +000082 Result = 0;
83 }
84 return Result;
85}
86
87// This method takes the specified list of LLVM input files, attempts to load
Brian Gaeke61a05da2003-05-23 05:34:32 +000088// them, either as assembly or bytecode, then link them together. It returns
89// true on failure (if, for example, an input bytecode file could not be
90// parsed), and false on success.
Chris Lattner73a6bdd2002-11-20 22:28:10 +000091//
92bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
93 assert(Program == 0 && "Cannot call addSources multiple times!");
94 assert(!Filenames.empty() && "Must specify at least on input filename!");
95
Chris Lattner2bd9d8e2006-05-14 19:15:56 +000096 try {
97 // Load the first input file.
98 Program = ParseInputFile(Filenames[0]);
99 if (Program == 0) return true;
Reid Spencer842118c2005-12-22 20:02:55 +0000100 if (!run_as_child)
Chris Lattner2bd9d8e2006-05-14 19:15:56 +0000101 std::cout << "Read input file : '" << Filenames[0] << "'\n";
102
103 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
104 std::auto_ptr<Module> M(ParseInputFile(Filenames[i]));
105 if (M.get() == 0) return true;
106
107 if (!run_as_child)
108 std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
109 std::string ErrorMessage;
110 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
111 std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
112 << ErrorMessage << '\n';
113 return true;
114 }
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000115 }
Chris Lattner2bd9d8e2006-05-14 19:15:56 +0000116 } catch (const std::string &Error) {
117 std::cerr << ToolName << ": error reading input '" << Error << "'\n";
118 return true;
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000119 }
120
Reid Spencer842118c2005-12-22 20:02:55 +0000121 if (!run_as_child)
122 std::cout << "*** All input ok\n";
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000123
124 // All input files read successfully!
125 return false;
126}
127
128
129
130/// run - The top level method that is invoked after all of the instance
131/// variables are set up from command line arguments.
132///
133bool BugDriver::run() {
Reid Spencer842118c2005-12-22 20:02:55 +0000134 // The first thing to do is determine if we're running as a child. If we are,
135 // then what to do is very narrow. This form of invocation is only called
136 // from the runPasses method to actually run those passes in a child process.
137 if (run_as_child) {
138 // Execute the passes
139 return runPassesAsChild(PassesToRun);
140 }
Patrick Jenkinsc46c0382006-08-15 16:40:49 +0000141
142 if (run_find_bugs) {
143 // Rearrange the passes and apply them to the program. Repeat this process
144 // until the user kills the program or we find a bug.
145 return runManyPasses(PassesToRun);
146 }
Reid Spencer842118c2005-12-22 20:02:55 +0000147
148 // If we're not running as a child, the first thing that we must do is
149 // determine what the problem is. Does the optimization series crash the
150 // compiler, or does it produce illegal code? We make the top-level
151 // decision by trying to run all of the passes on the the input program,
152 // which should generate a bytecode file. If it does generate a bytecode
153 // file, then we know the compiler didn't crash, so try to diagnose a
154 // miscompilation.
Chris Lattner6ca0b872003-10-13 21:04:26 +0000155 if (!PassesToRun.empty()) {
156 std::cout << "Running selected passes on program to test for crash: ";
157 if (runPasses(PassesToRun))
Chris Lattneread1dff2004-02-18 21:02:04 +0000158 return debugOptimizerCrash();
Chris Lattner6ca0b872003-10-13 21:04:26 +0000159 }
Misha Brukmand792c9b2003-07-24 18:17:43 +0000160
Misha Brukmand792c9b2003-07-24 18:17:43 +0000161 // Set up the execution environment, selecting a method to run LLVM bytecode.
162 if (initializeExecutionEnvironment()) return true;
163
Chris Lattner5e9868a2004-02-19 17:03:49 +0000164 // Test to see if we have a code generator crash.
165 std::cout << "Running the code generator to test for a crash: ";
166 try {
167 compileProgram(Program);
Misha Brukman6aa3c832004-07-23 01:30:49 +0000168 std::cout << '\n';
Chris Lattner5e9868a2004-02-19 17:03:49 +0000169 } catch (ToolExecutionError &TEE) {
170 std::cout << TEE.what();
171 return debugCodeGeneratorCrash();
172 }
173
174
Misha Brukmand792c9b2003-07-24 18:17:43 +0000175 // Run the raw input to see where we are coming from. If a reference output
176 // was specified, make sure that the raw output matches it. If not, it's a
177 // problem in the front-end or the code generator.
178 //
Chris Lattnerd1123fd2003-08-22 18:57:43 +0000179 bool CreatedOutput = false;
Misha Brukmand792c9b2003-07-24 18:17:43 +0000180 if (ReferenceOutputFile.empty()) {
Chris Lattner4e0969b2004-07-24 07:53:26 +0000181 std::cout << "Generating reference output from raw program: ";
Patrick Jenkinsc46c0382006-08-15 16:40:49 +0000182 if(!createReferenceFile(Program)){
183 return debugCodeGeneratorCrash();
Chris Lattneread1dff2004-02-18 21:02:04 +0000184 }
Patrick Jenkinsc46c0382006-08-15 16:40:49 +0000185 CreatedOutput = true;
Misha Brukmand792c9b2003-07-24 18:17:43 +0000186 }
187
Chris Lattner2ed06422003-10-14 20:52:55 +0000188 // Make sure the reference output file gets deleted on exit from this
189 // function, if appropriate.
Reid Spencer08b4bd72004-12-20 19:16:12 +0000190 sys::Path ROF(ReferenceOutputFile);
191 FileRemover RemoverInstance(ROF, CreatedOutput);
Chris Lattner2ed06422003-10-14 20:52:55 +0000192
193 // Diff the output of the raw program against the reference output. If it
Patrick Jenkinsc46c0382006-08-15 16:40:49 +0000194 // matches, then we assume there is a miscompilation bug and try to
195 // diagnose it.
Chris Lattner2ed06422003-10-14 20:52:55 +0000196 std::cout << "*** Checking the code generator...\n";
Chris Lattneread1dff2004-02-18 21:02:04 +0000197 try {
198 if (!diffProgram()) {
199 std::cout << "\n*** Debugging miscompilation!\n";
200 return debugMiscompilation();
201 }
202 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos3562c2d2004-02-19 07:39:26 +0000203 std::cerr << TEE.what();
Chris Lattneread1dff2004-02-18 21:02:04 +0000204 return debugCodeGeneratorCrash();
Chris Lattner2ed06422003-10-14 20:52:55 +0000205 }
206
207 std::cout << "\n*** Input program does not match reference diff!\n";
208 std::cout << "Debugging code generator problem!\n";
Chris Lattner5e9868a2004-02-19 17:03:49 +0000209 try {
210 return debugCodeGenerator();
211 } catch (ToolExecutionError &TEE) {
212 std::cerr << TEE.what();
213 return debugCodeGeneratorCrash();
214 }
Misha Brukmand792c9b2003-07-24 18:17:43 +0000215}
216
Chris Lattnerfd72bed2004-03-14 20:50:42 +0000217void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
218 unsigned NumPrint = Funcs.size();
219 if (NumPrint > 10) NumPrint = 10;
220 for (unsigned i = 0; i != NumPrint; ++i)
221 std::cout << " " << Funcs[i]->getName();
222 if (NumPrint < Funcs.size())
223 std::cout << "... <" << Funcs.size() << " total>";
Brian Gaekeadbbfeb2003-10-15 20:42:48 +0000224 std::cout << std::flush;
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000225}
Bill Wendling3f833432006-10-25 18:36:14 +0000226
227void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) {
228 unsigned NumPrint = GVs.size();
229 if (NumPrint > 10) NumPrint = 10;
230 for (unsigned i = 0; i != NumPrint; ++i)
231 std::cout << " " << GVs[i]->getName();
232 if (NumPrint < GVs.size())
233 std::cout << "... <" << GVs.size() << " total>";
234 std::cout << std::flush;
235}