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