blob: bbfdf27b9ee5d89ffa02974af776e7a68a310a78 [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>
Brian Gaeked0fde302003-11-11 22:41:34 +000025using namespace llvm;
26
Misha Brukman50733362003-07-24 18:17:43 +000027// Anonymous namespace to define command line options for debugging.
28//
29namespace {
30 // Output - The user can specify a file containing the expected output of the
31 // program. If this filename is set, it is used as the reference diff source,
32 // otherwise the raw input run through an interpreter is used as the reference
33 // source.
34 //
35 cl::opt<std::string>
36 OutputFile("output", cl::desc("Specify a reference program output "
37 "(for miscompilation detection)"));
Misha Brukman50733362003-07-24 18:17:43 +000038}
39
Chris Lattner640f22e2003-04-24 17:02:17 +000040/// getPassesString - Turn a list of passes into a string which indicates the
41/// command line options that must be passed to add the passes.
42///
Chris Lattnerfa761832004-01-14 03:38:37 +000043std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
Chris Lattner640f22e2003-04-24 17:02:17 +000044 std::string Result;
45 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
46 if (i) Result += " ";
47 Result += "-";
48 Result += Passes[i]->getPassArgument();
49 }
50 return Result;
51}
52
Misha Brukmanc8b27312003-05-03 02:16:43 +000053// DeleteFunctionBody - "Remove" the function by deleting all of its basic
Chris Lattnerff4aaf02003-04-24 22:23:34 +000054// blocks, making it external.
55//
Chris Lattnerfa761832004-01-14 03:38:37 +000056void llvm::DeleteFunctionBody(Function *F) {
Chris Lattner79f03d32003-09-17 05:00:07 +000057 // delete the body of the function...
58 F->deleteBody();
Chris Lattnerff4aaf02003-04-24 22:23:34 +000059 assert(F->isExternal() && "This didn't make the function external!");
60}
Chris Lattner640f22e2003-04-24 17:02:17 +000061
Misha Brukman50733362003-07-24 18:17:43 +000062BugDriver::BugDriver(const char *toolname)
63 : ToolName(toolname), ReferenceOutputFile(OutputFile),
Misha Brukmana259c9b2003-07-24 21:59:10 +000064 Program(0), Interpreter(0), cbe(0), gcc(0) {}
Misha Brukman50733362003-07-24 18:17:43 +000065
66
Chris Lattnerafade922002-11-20 22:28:10 +000067/// ParseInputFile - Given a bytecode or assembly input filename, parse and
68/// return it, or return null if not possible.
69///
70Module *BugDriver::ParseInputFile(const std::string &InputFilename) const {
71 Module *Result = 0;
72 try {
73 Result = ParseBytecodeFile(InputFilename);
74 if (!Result && !(Result = ParseAssemblyFile(InputFilename))){
75 std::cerr << ToolName << ": could not read input file '"
76 << InputFilename << "'!\n";
77 }
78 } catch (const ParseException &E) {
79 std::cerr << ToolName << ": " << E.getMessage() << "\n";
80 Result = 0;
81 }
82 return Result;
83}
84
85// This method takes the specified list of LLVM input files, attempts to load
Brian Gaekedae7f922003-05-23 05:34:32 +000086// them, either as assembly or bytecode, then link them together. It returns
87// true on failure (if, for example, an input bytecode file could not be
88// parsed), and false on success.
Chris Lattnerafade922002-11-20 22:28:10 +000089//
90bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
91 assert(Program == 0 && "Cannot call addSources multiple times!");
92 assert(!Filenames.empty() && "Must specify at least on input filename!");
93
94 // Load the first input file...
95 Program = ParseInputFile(Filenames[0]);
96 if (Program == 0) return true;
97 std::cout << "Read input file : '" << Filenames[0] << "'\n";
98
99 for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
100 std::auto_ptr<Module> M(ParseInputFile(Filenames[i]));
101 if (M.get() == 0) return true;
102
103 std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
104 std::string ErrorMessage;
105 if (LinkModules(Program, M.get(), &ErrorMessage)) {
106 std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
107 << ErrorMessage << "\n";
108 return true;
109 }
110 }
111
112 std::cout << "*** All input ok\n";
113
114 // All input files read successfully!
115 return false;
116}
117
118
119
120/// run - The top level method that is invoked after all of the instance
121/// variables are set up from command line arguments.
122///
123bool BugDriver::run() {
124 // The first thing that we must do is determine what the problem is. Does the
125 // optimization series crash the compiler, or does it produce illegal code? We
126 // make the top-level decision by trying to run all of the passes on the the
127 // input program, which should generate a bytecode file. If it does generate
128 // a bytecode file, then we know the compiler didn't crash, so try to diagnose
129 // a miscompilation.
130 //
Chris Lattner99b85332003-10-13 21:04:26 +0000131 if (!PassesToRun.empty()) {
132 std::cout << "Running selected passes on program to test for crash: ";
133 if (runPasses(PassesToRun))
134 return debugCrash();
135 }
Misha Brukman50733362003-07-24 18:17:43 +0000136
Misha Brukman50733362003-07-24 18:17:43 +0000137 // Set up the execution environment, selecting a method to run LLVM bytecode.
138 if (initializeExecutionEnvironment()) return true;
139
140 // Run the raw input to see where we are coming from. If a reference output
141 // was specified, make sure that the raw output matches it. If not, it's a
142 // problem in the front-end or the code generator.
143 //
Chris Lattnerc28c1d32003-08-22 18:57:43 +0000144 bool CreatedOutput = false;
Misha Brukman50733362003-07-24 18:17:43 +0000145 if (ReferenceOutputFile.empty()) {
146 std::cout << "Generating reference output from raw program...";
Chris Lattnera5a96a92003-10-14 20:52:55 +0000147 ReferenceOutputFile = executeProgramWithCBE("bugpoint.reference.out");
Misha Brukman50733362003-07-24 18:17:43 +0000148 CreatedOutput = true;
149 std::cout << "Reference output is: " << ReferenceOutputFile << "\n";
Misha Brukman50733362003-07-24 18:17:43 +0000150 }
151
Chris Lattnera5a96a92003-10-14 20:52:55 +0000152 // Make sure the reference output file gets deleted on exit from this
153 // function, if appropriate.
154 struct Remover {
155 bool DeleteIt; const std::string &Filename;
156 Remover(bool deleteIt, const std::string &filename)
157 : DeleteIt(deleteIt), Filename(filename) {}
158 ~Remover() {
159 if (DeleteIt) removeFile(Filename);
160 }
161 } RemoverInstance(CreatedOutput, ReferenceOutputFile);
162
163 // Diff the output of the raw program against the reference output. If it
164 // matches, then we have a miscompilation bug.
165 std::cout << "*** Checking the code generator...\n";
166 if (!diffProgram()) {
167 std::cout << "\n*** Debugging miscompilation!\n";
168 return debugMiscompilation();
169 }
170
171 std::cout << "\n*** Input program does not match reference diff!\n";
172 std::cout << "Debugging code generator problem!\n";
173 return debugCodeGenerator();
Misha Brukman50733362003-07-24 18:17:43 +0000174}
175
Chris Lattnera5a96a92003-10-14 20:52:55 +0000176void BugDriver::PrintFunctionList(const std::vector<Function*> &Funcs) {
Misha Brukman50733362003-07-24 18:17:43 +0000177 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
178 if (i) std::cout << ", ";
179 std::cout << Funcs[i]->getName();
180 }
Brian Gaekeb6c3a882003-10-15 20:42:48 +0000181 std::cout << std::flush;
Chris Lattnerafade922002-11-20 22:28:10 +0000182}
Brian Gaeked0fde302003-11-11 22:41:34 +0000183