blob: 1bac8da24373d6974e1e02c9d0a0a931b57d6e48 [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"
Misha Brukman008248f2004-06-23 17:33:09 +000021#include "llvm/Support/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"
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 //
38 cl::opt<std::string>
39 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
Misha Brukman50733362003-07-24 18:17:43 +000065BugDriver::BugDriver(const char *toolname)
66 : ToolName(toolname), ReferenceOutputFile(OutputFile),
Misha Brukmana259c9b2003-07-24 21:59:10 +000067 Program(0), Interpreter(0), cbe(0), gcc(0) {}
Misha Brukman50733362003-07-24 18:17:43 +000068
69
Chris Lattnerafade922002-11-20 22:28:10 +000070/// ParseInputFile - Given a bytecode or assembly input filename, parse and
71/// return it, or return null if not possible.
72///
Chris Lattnerefdc0b52004-03-14 20:50:42 +000073Module *llvm::ParseInputFile(const std::string &InputFilename) {
Chris Lattnerafade922002-11-20 22:28:10 +000074 Module *Result = 0;
75 try {
76 Result = ParseBytecodeFile(InputFilename);
77 if (!Result && !(Result = ParseAssemblyFile(InputFilename))){
Chris Lattnerefdc0b52004-03-14 20:50:42 +000078 std::cerr << "bugpoint: could not read input file '"
Chris Lattnerafade922002-11-20 22:28:10 +000079 << InputFilename << "'!\n";
80 }
81 } catch (const ParseException &E) {
Misha Brukmaneed80e22004-07-23 01:30:49 +000082 std::cerr << "bugpoint: " << E.getMessage() << '\n';
Chris Lattnerafade922002-11-20 22:28:10 +000083 Result = 0;
84 }
85 return Result;
86}
87
88// This method takes the specified list of LLVM input files, attempts to load
Brian Gaekedae7f922003-05-23 05:34:32 +000089// them, either as assembly or bytecode, then link them together. It returns
90// true on failure (if, for example, an input bytecode file could not be
91// parsed), and false on success.
Chris Lattnerafade922002-11-20 22:28:10 +000092//
93bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
94 assert(Program == 0 && "Cannot call addSources multiple times!");
95 assert(!Filenames.empty() && "Must specify at least on input filename!");
96
97 // Load the first input file...
98 Program = ParseInputFile(Filenames[0]);
99 if (Program == 0) return true;
100 std::cout << "Read input file : '" << Filenames[0] << "'\n";
101
102 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
103 std::auto_ptr<Module> M(ParseInputFile(Filenames[i]));
104 if (M.get() == 0) return true;
105
106 std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
107 std::string ErrorMessage;
108 if (LinkModules(Program, M.get(), &ErrorMessage)) {
109 std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
Misha Brukmaneed80e22004-07-23 01:30:49 +0000110 << ErrorMessage << '\n';
Chris Lattnerafade922002-11-20 22:28:10 +0000111 return true;
112 }
113 }
114
115 std::cout << "*** All input ok\n";
116
117 // All input files read successfully!
118 return false;
119}
120
121
122
123/// run - The top level method that is invoked after all of the instance
124/// variables are set up from command line arguments.
125///
126bool BugDriver::run() {
Misha Brukmanb04da8a2004-04-06 17:04:30 +0000127 // The first thing that we must do is determine what the problem is. Does the
128 // optimization series crash the compiler, or does it produce illegal code?
129 // We make the top-level decision by trying to run all of the passes on the
130 // the input program, which should generate a bytecode file. If it does
131 // generate a bytecode file, then we know the compiler didn't crash, so try
132 // to diagnose a miscompilation.
Chris Lattner99b85332003-10-13 21:04:26 +0000133 if (!PassesToRun.empty()) {
134 std::cout << "Running selected passes on program to test for crash: ";
135 if (runPasses(PassesToRun))
Chris Lattner02526262004-02-18 21:02:04 +0000136 return debugOptimizerCrash();
Chris Lattner99b85332003-10-13 21:04:26 +0000137 }
Misha Brukman50733362003-07-24 18:17:43 +0000138
Misha Brukman50733362003-07-24 18:17:43 +0000139 // Set up the execution environment, selecting a method to run LLVM bytecode.
140 if (initializeExecutionEnvironment()) return true;
141
Chris Lattner7c955fd2004-02-19 17:03:49 +0000142 // Test to see if we have a code generator crash.
143 std::cout << "Running the code generator to test for a crash: ";
144 try {
145 compileProgram(Program);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000146 std::cout << '\n';
Chris Lattner7c955fd2004-02-19 17:03:49 +0000147 } catch (ToolExecutionError &TEE) {
148 std::cout << TEE.what();
149 return debugCodeGeneratorCrash();
150 }
151
152
Misha Brukman50733362003-07-24 18:17:43 +0000153 // Run the raw input to see where we are coming from. If a reference output
154 // was specified, make sure that the raw output matches it. If not, it's a
155 // problem in the front-end or the code generator.
156 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000157 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000158 if (ReferenceOutputFile.empty()) {
159 std::cout << "Generating reference output from raw program...";
Chris Lattner02526262004-02-18 21:02:04 +0000160 try {
161 ReferenceOutputFile = executeProgramWithCBE("bugpoint.reference.out");
162 CreatedOutput = true;
Misha Brukmaneed80e22004-07-23 01:30:49 +0000163 std::cout << "Reference output is: " << ReferenceOutputFile << '\n';
Chris Lattner02526262004-02-18 21:02:04 +0000164 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000165 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000166 if (Interpreter != cbe) {
167 std::cerr << "*** There is a bug running the C backend. Either debug"
168 << " it (use the -run-cbe bugpoint option), or fix the error"
169 << " some other way.\n";
170 return 1;
171 }
172 return debugCodeGeneratorCrash();
173 }
Misha Brukman50733362003-07-24 18:17:43 +0000174 }
175
Chris Lattnera5a96a92003-10-14 20:52:55 +0000176 // Make sure the reference output file gets deleted on exit from this
177 // function, if appropriate.
Chris Lattner5dcc3662004-02-18 20:22:25 +0000178 FileRemover RemoverInstance(ReferenceOutputFile, CreatedOutput);
Chris Lattnera5a96a92003-10-14 20:52:55 +0000179
180 // Diff the output of the raw program against the reference output. If it
181 // matches, then we have a miscompilation bug.
182 std::cout << "*** Checking the code generator...\n";
Chris Lattner02526262004-02-18 21:02:04 +0000183 try {
184 if (!diffProgram()) {
185 std::cout << "\n*** Debugging miscompilation!\n";
186 return debugMiscompilation();
187 }
188 } catch (ToolExecutionError &TEE) {
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +0000189 std::cerr << TEE.what();
Chris Lattner02526262004-02-18 21:02:04 +0000190 return debugCodeGeneratorCrash();
Chris Lattnera5a96a92003-10-14 20:52:55 +0000191 }
192
193 std::cout << "\n*** Input program does not match reference diff!\n";
194 std::cout << "Debugging code generator problem!\n";
Chris Lattner7c955fd2004-02-19 17:03:49 +0000195 try {
196 return debugCodeGenerator();
197 } catch (ToolExecutionError &TEE) {
198 std::cerr << TEE.what();
199 return debugCodeGeneratorCrash();
200 }
Misha Brukman50733362003-07-24 18:17:43 +0000201}
202
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000203void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
204 unsigned NumPrint = Funcs.size();
205 if (NumPrint > 10) NumPrint = 10;
206 for (unsigned i = 0; i != NumPrint; ++i)
207 std::cout << " " << Funcs[i]->getName();
208 if (NumPrint < Funcs.size())
209 std::cout << "... <" << Funcs.size() << " total>";
Brian Gaekeb6c3a882003-10-15 20:42:48 +0000210 std::cout << std::flush;
Chris Lattnerafade922002-11-20 22:28:10 +0000211}