blob: 12843588c881c4e4dd24642b2d1bd34d5d1af456 [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"
Misha Brukman50733362003-07-24 18:17:43 +000022#include "Support/CommandLine.h"
Misha Brukman3d9cafa2003-08-07 21:42:28 +000023#include "Support/FileUtilities.h"
Chris Lattnerafade922002-11-20 22:28:10 +000024#include <memory>
25
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
Brian Gaeked0fde302003-11-11 22:41:34 +000041namespace llvm {
42
Chris Lattner640f22e2003-04-24 17:02:17 +000043/// getPassesString - Turn a list of passes into a string which indicates the
44/// command line options that must be passed to add the passes.
45///
46std::string getPassesString(const std::vector<const PassInfo*> &Passes) {
47 std::string Result;
48 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
49 if (i) Result += " ";
50 Result += "-";
51 Result += Passes[i]->getPassArgument();
52 }
53 return Result;
54}
55
Misha Brukmanc8b27312003-05-03 02:16:43 +000056// DeleteFunctionBody - "Remove" the function by deleting all of its basic
Chris Lattnerff4aaf02003-04-24 22:23:34 +000057// blocks, making it external.
58//
59void DeleteFunctionBody(Function *F) {
Chris Lattner79f03d32003-09-17 05:00:07 +000060 // delete the body of the function...
61 F->deleteBody();
Chris Lattnerff4aaf02003-04-24 22:23:34 +000062 assert(F->isExternal() && "This didn't make the function external!");
63}
Chris Lattner640f22e2003-04-24 17:02:17 +000064
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///
73Module *BugDriver::ParseInputFile(const std::string &InputFilename) const {
74 Module *Result = 0;
75 try {
76 Result = ParseBytecodeFile(InputFilename);
77 if (!Result && !(Result = ParseAssemblyFile(InputFilename))){
78 std::cerr << ToolName << ": could not read input file '"
79 << InputFilename << "'!\n";
80 }
81 } catch (const ParseException &E) {
82 std::cerr << ToolName << ": " << E.getMessage() << "\n";
83 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] << "': "
110 << ErrorMessage << "\n";
111 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() {
127 // 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? We
129 // make the top-level decision by trying to run all of the passes on the the
130 // input program, which should generate a bytecode file. If it does generate
131 // a bytecode file, then we know the compiler didn't crash, so try to diagnose
132 // a miscompilation.
133 //
Chris Lattner99b85332003-10-13 21:04:26 +0000134 if (!PassesToRun.empty()) {
135 std::cout << "Running selected passes on program to test for crash: ";
136 if (runPasses(PassesToRun))
137 return debugCrash();
138 }
Misha Brukman50733362003-07-24 18:17:43 +0000139
Misha Brukman50733362003-07-24 18:17:43 +0000140 // Set up the execution environment, selecting a method to run LLVM bytecode.
141 if (initializeExecutionEnvironment()) return true;
142
143 // Run the raw input to see where we are coming from. If a reference output
144 // was specified, make sure that the raw output matches it. If not, it's a
145 // problem in the front-end or the code generator.
146 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000147 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000148 if (ReferenceOutputFile.empty()) {
149 std::cout << "Generating reference output from raw program...";
Chris Lattnera5a96a92003-10-14 20:52:55 +0000150 ReferenceOutputFile = executeProgramWithCBE("bugpoint.reference.out");
Misha Brukman50733362003-07-24 18:17:43 +0000151 CreatedOutput = true;
152 std::cout << "Reference output is: " << ReferenceOutputFile << "\n";
Misha Brukman50733362003-07-24 18:17:43 +0000153 }
154
Chris Lattnera5a96a92003-10-14 20:52:55 +0000155 // Make sure the reference output file gets deleted on exit from this
156 // function, if appropriate.
157 struct Remover {
158 bool DeleteIt; const std::string &Filename;
159 Remover(bool deleteIt, const std::string &filename)
160 : DeleteIt(deleteIt), Filename(filename) {}
161 ~Remover() {
162 if (DeleteIt) removeFile(Filename);
163 }
164 } RemoverInstance(CreatedOutput, ReferenceOutputFile);
165
166 // Diff the output of the raw program against the reference output. If it
167 // matches, then we have a miscompilation bug.
168 std::cout << "*** Checking the code generator...\n";
169 if (!diffProgram()) {
170 std::cout << "\n*** Debugging miscompilation!\n";
171 return debugMiscompilation();
172 }
173
174 std::cout << "\n*** Input program does not match reference diff!\n";
175 std::cout << "Debugging code generator problem!\n";
176 return debugCodeGenerator();
Misha Brukman50733362003-07-24 18:17:43 +0000177}
178
Chris Lattnera5a96a92003-10-14 20:52:55 +0000179void BugDriver::PrintFunctionList(const std::vector<Function*> &Funcs) {
Misha Brukman50733362003-07-24 18:17:43 +0000180 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
181 if (i) std::cout << ", ";
182 std::cout << Funcs[i]->getName();
183 }
Brian Gaekeb6c3a882003-10-15 20:42:48 +0000184 std::cout << std::flush;
Chris Lattnerafade922002-11-20 22:28:10 +0000185}
Brian Gaeked0fde302003-11-11 22:41:34 +0000186
187} // End llvm namespace