blob: 2c5cf24890f11e6446f4d79913a7c36ee90688be [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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"
17#include "llvm/Module.h"
Chris Lattnerafade922002-11-20 22:28:10 +000018#include "llvm/Pass.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000019#include "llvm/Assembly/Parser.h"
20#include "llvm/Bytecode/Reader.h"
21#include "llvm/Transforms/Utils/Linker.h"
Chris Lattner02526262004-02-18 21:02:04 +000022#include "llvm/Support/ToolRunner.h"
Misha Brukman50733362003-07-24 18:17:43 +000023#include "Support/CommandLine.h"
Misha Brukman3d9cafa2003-08-07 21:42:28 +000024#include "Support/FileUtilities.h"
Chris Lattnerafade922002-11-20 22:28:10 +000025#include <memory>
Brian Gaeked0fde302003-11-11 22:41:34 +000026using namespace llvm;
27
Misha Brukman50733362003-07-24 18:17:43 +000028// Anonymous namespace to define command line options for debugging.
29//
30namespace {
31 // Output - The user can specify a file containing the expected output of the
32 // program. If this filename is set, it is used as the reference diff source,
33 // otherwise the raw input run through an interpreter is used as the reference
34 // source.
35 //
36 cl::opt<std::string>
37 OutputFile("output", cl::desc("Specify a reference program output "
38 "(for miscompilation detection)"));
Misha Brukman50733362003-07-24 18:17:43 +000039}
40
Chris Lattner06905db2004-02-18 21:24:48 +000041/// setNewProgram - If we reduce or update the program somehow, call this method
42/// to update bugdriver with it. This deletes the old module and sets the
43/// specified one as the current program.
44void BugDriver::setNewProgram(Module *M) {
45 delete Program;
46 Program = M;
47}
48
49
Chris Lattner640f22e2003-04-24 17:02:17 +000050/// getPassesString - Turn a list of passes into a string which indicates the
51/// command line options that must be passed to add the passes.
52///
Chris Lattnerfa761832004-01-14 03:38:37 +000053std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
Chris Lattner640f22e2003-04-24 17:02:17 +000054 std::string Result;
55 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
56 if (i) Result += " ";
57 Result += "-";
58 Result += Passes[i]->getPassArgument();
59 }
60 return Result;
61}
62
Misha Brukman50733362003-07-24 18:17:43 +000063BugDriver::BugDriver(const char *toolname)
64 : ToolName(toolname), ReferenceOutputFile(OutputFile),
Misha Brukmana259c9b2003-07-24 21:59:10 +000065 Program(0), Interpreter(0), cbe(0), gcc(0) {}
Misha Brukman50733362003-07-24 18:17:43 +000066
67
Chris Lattnerafade922002-11-20 22:28:10 +000068/// ParseInputFile - Given a bytecode or assembly input filename, parse and
69/// return it, or return null if not possible.
70///
71Module *BugDriver::ParseInputFile(const std::string &InputFilename) const {
72 Module *Result = 0;
73 try {
74 Result = ParseBytecodeFile(InputFilename);
75 if (!Result && !(Result = ParseAssemblyFile(InputFilename))){
76 std::cerr << ToolName << ": could not read input file '"
77 << InputFilename << "'!\n";
78 }
79 } catch (const ParseException &E) {
80 std::cerr << ToolName << ": " << E.getMessage() << "\n";
81 Result = 0;
82 }
83 return Result;
84}
85
86// This method takes the specified list of LLVM input files, attempts to load
Brian Gaekedae7f922003-05-23 05:34:32 +000087// them, either as assembly or bytecode, then link them together. It returns
88// true on failure (if, for example, an input bytecode file could not be
89// parsed), and false on success.
Chris Lattnerafade922002-11-20 22:28:10 +000090//
91bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
92 assert(Program == 0 && "Cannot call addSources multiple times!");
93 assert(!Filenames.empty() && "Must specify at least on input filename!");
94
95 // Load the first input file...
96 Program = ParseInputFile(Filenames[0]);
97 if (Program == 0) return true;
98 std::cout << "Read input file : '" << Filenames[0] << "'\n";
99
100 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
101 std::auto_ptr<Module> M(ParseInputFile(Filenames[i]));
102 if (M.get() == 0) return true;
103
104 std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
105 std::string ErrorMessage;
106 if (LinkModules(Program, M.get(), &ErrorMessage)) {
107 std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
108 << ErrorMessage << "\n";
109 return true;
110 }
111 }
112
113 std::cout << "*** All input ok\n";
114
115 // All input files read successfully!
116 return false;
117}
118
119
120
121/// run - The top level method that is invoked after all of the instance
122/// variables are set up from command line arguments.
123///
124bool BugDriver::run() {
125 // The first thing that we must do is determine what the problem is. Does the
126 // optimization series crash the compiler, or does it produce illegal code? We
127 // make the top-level decision by trying to run all of the passes on the the
128 // input program, which should generate a bytecode file. If it does generate
129 // a bytecode file, then we know the compiler didn't crash, so try to diagnose
130 // a miscompilation.
131 //
Chris Lattner99b85332003-10-13 21:04:26 +0000132 if (!PassesToRun.empty()) {
133 std::cout << "Running selected passes on program to test for crash: ";
134 if (runPasses(PassesToRun))
Chris Lattner02526262004-02-18 21:02:04 +0000135 return debugOptimizerCrash();
Chris Lattner99b85332003-10-13 21:04:26 +0000136 }
Misha Brukman50733362003-07-24 18:17:43 +0000137
Misha Brukman50733362003-07-24 18:17:43 +0000138 // Set up the execution environment, selecting a method to run LLVM bytecode.
139 if (initializeExecutionEnvironment()) return true;
140
Chris Lattner7c955fd2004-02-19 17:03:49 +0000141 // Test to see if we have a code generator crash.
142 std::cout << "Running the code generator to test for a crash: ";
143 try {
144 compileProgram(Program);
Chris Lattner47dd2762004-02-20 05:56:48 +0000145 std::cout << "\n";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000146 } catch (ToolExecutionError &TEE) {
147 std::cout << TEE.what();
148 return debugCodeGeneratorCrash();
149 }
150
151
Misha Brukman50733362003-07-24 18:17:43 +0000152 // Run the raw input to see where we are coming from. If a reference output
153 // was specified, make sure that the raw output matches it. If not, it's a
154 // problem in the front-end or the code generator.
155 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000156 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000157 if (ReferenceOutputFile.empty()) {
158 std::cout << "Generating reference output from raw program...";
Chris Lattner02526262004-02-18 21:02:04 +0000159 try {
160 ReferenceOutputFile = executeProgramWithCBE("bugpoint.reference.out");
161 CreatedOutput = true;
162 std::cout << "Reference output is: " << ReferenceOutputFile << "\n";
163 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000164 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000165 if (Interpreter != cbe) {
166 std::cerr << "*** There is a bug running the C backend. Either debug"
167 << " it (use the -run-cbe bugpoint option), or fix the error"
168 << " some other way.\n";
169 return 1;
170 }
171 return debugCodeGeneratorCrash();
172 }
Misha Brukman50733362003-07-24 18:17:43 +0000173 }
174
Chris Lattnera5a96a92003-10-14 20:52:55 +0000175 // Make sure the reference output file gets deleted on exit from this
176 // function, if appropriate.
Chris Lattner5dcc3662004-02-18 20:22:25 +0000177 FileRemover RemoverInstance(ReferenceOutputFile, CreatedOutput);
Chris Lattnera5a96a92003-10-14 20:52:55 +0000178
179 // Diff the output of the raw program against the reference output. If it
180 // matches, then we have a miscompilation bug.
181 std::cout << "*** Checking the code generator...\n";
Chris Lattner02526262004-02-18 21:02:04 +0000182 try {
183 if (!diffProgram()) {
184 std::cout << "\n*** Debugging miscompilation!\n";
185 return debugMiscompilation();
186 }
187 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000188 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000189 return debugCodeGeneratorCrash();
Chris Lattnera5a96a92003-10-14 20:52:55 +0000190 }
191
192 std::cout << "\n*** Input program does not match reference diff!\n";
193 std::cout << "Debugging code generator problem!\n";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000194 try {
195 return debugCodeGenerator();
196 } catch (ToolExecutionError &TEE) {
197 std::cerr << TEE.what();
198 return debugCodeGeneratorCrash();
199 }
Misha Brukman50733362003-07-24 18:17:43 +0000200}
201
Chris Lattnera5a96a92003-10-14 20:52:55 +0000202void BugDriver::PrintFunctionList(const std::vector<Function*> &Funcs) {
Misha Brukman50733362003-07-24 18:17:43 +0000203 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
204 if (i) std::cout << ", ";
205 std::cout << Funcs[i]->getName();
206 }
Brian Gaekeb6c3a882003-10-15 20:42:48 +0000207 std::cout << std::flush;
Chris Lattnerafade922002-11-20 22:28:10 +0000208}
Brian Gaeked0fde302003-11-11 22:41:34 +0000209