blob: 4d6754aa7cd997fc6b10170ac1304ceb59a95113 [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- BugDriver.h - Top-Level BugPoint class -------------------*- C++ -*-===//
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#ifndef BUGDRIVER_H
17#define BUGDRIVER_H
18
19#include <vector>
20#include <string>
Misha Brukman50733362003-07-24 18:17:43 +000021
Brian Gaeked0fde302003-11-11 22:41:34 +000022namespace llvm {
23
Chris Lattnerafade922002-11-20 22:28:10 +000024class PassInfo;
25class Module;
26class Function;
Chris Lattner218e26e2002-12-23 23:49:59 +000027class AbstractInterpreter;
Chris Lattner65207852003-01-23 02:48:33 +000028class Instruction;
Chris Lattnerafade922002-11-20 22:28:10 +000029
Chris Lattneraae33f92003-04-24 22:24:58 +000030class DebugCrashes;
Chris Lattner640f22e2003-04-24 17:02:17 +000031class ReduceMiscompilingPasses;
32class ReduceMiscompilingFunctions;
Chris Lattneraae33f92003-04-24 22:24:58 +000033class ReduceCrashingFunctions;
Chris Lattner286921e2003-04-24 23:51:38 +000034class ReduceCrashingBlocks;
Chris Lattner640f22e2003-04-24 17:02:17 +000035
Misha Brukmana259c9b2003-07-24 21:59:10 +000036class CBE;
37class GCC;
38
Chris Lattner47ae4a12003-08-05 15:51:05 +000039extern bool DisableSimplifyCFG;
40
Chris Lattnerafade922002-11-20 22:28:10 +000041class BugDriver {
42 const std::string ToolName; // Name of bugpoint
Misha Brukmana259c9b2003-07-24 21:59:10 +000043 std::string ReferenceOutputFile; // Name of `good' output file
Chris Lattnerafade922002-11-20 22:28:10 +000044 Module *Program; // The raw program, linked together
45 std::vector<const PassInfo*> PassesToRun;
Chris Lattner218e26e2002-12-23 23:49:59 +000046 AbstractInterpreter *Interpreter; // How to run the program
Misha Brukmana259c9b2003-07-24 21:59:10 +000047 CBE *cbe;
48 GCC *gcc;
Chris Lattner640f22e2003-04-24 17:02:17 +000049
Chris Lattneraae33f92003-04-24 22:24:58 +000050 // FIXME: sort out public/private distinctions...
51 friend class DebugCrashes;
Chris Lattner640f22e2003-04-24 17:02:17 +000052 friend class ReduceMiscompilingPasses;
53 friend class ReduceMiscompilingFunctions;
Misha Brukman50733362003-07-24 18:17:43 +000054 friend class ReduceMisCodegenFunctions;
Chris Lattneraae33f92003-04-24 22:24:58 +000055 friend class ReduceCrashingFunctions;
Chris Lattner286921e2003-04-24 23:51:38 +000056 friend class ReduceCrashingBlocks;
Misha Brukman50733362003-07-24 18:17:43 +000057
Chris Lattnerafade922002-11-20 22:28:10 +000058public:
Misha Brukman50733362003-07-24 18:17:43 +000059 BugDriver(const char *toolname);
Chris Lattner218e26e2002-12-23 23:49:59 +000060
61 const std::string &getToolName() const { return ToolName; }
Chris Lattnerafade922002-11-20 22:28:10 +000062
63 // Set up methods... these methods are used to copy information about the
64 // command line arguments into instance variables of BugDriver.
65 //
66 bool addSources(const std::vector<std::string> &FileNames);
67 template<class It>
68 void addPasses(It I, It E) { PassesToRun.insert(PassesToRun.end(), I, E); }
Chris Lattner9c6cfe12003-10-17 23:03:16 +000069 void setPassesToRun(const std::vector<const PassInfo*> &PTR) {
70 PassesToRun = PTR;
71 }
Chris Lattnerafade922002-11-20 22:28:10 +000072
73 /// run - The top level method that is invoked after all of the instance
74 /// variables are set up from command line arguments.
75 ///
76 bool run();
77
Chris Lattner02526262004-02-18 21:02:04 +000078 /// debugOptimizerCrash - This method is called when some optimizer pass
79 /// crashes on input. It attempts to prune down the testcase to something
80 /// reasonable, and figure out exactly which pass is crashing.
Chris Lattnerafade922002-11-20 22:28:10 +000081 ///
Chris Lattner02526262004-02-18 21:02:04 +000082 bool debugOptimizerCrash();
83
84 /// debugCodeGeneratorCrash - This method is called when the code generator
85 /// crashes on an input. It attempts to reduce the input as much as possible
86 /// while still causing the code generator to crash.
87 bool debugCodeGeneratorCrash();
Chris Lattnerafade922002-11-20 22:28:10 +000088
Chris Lattnerafade922002-11-20 22:28:10 +000089 /// debugMiscompilation - This method is used when the passes selected are not
90 /// crashing, but the generated output is semantically different from the
91 /// input.
92 bool debugMiscompilation();
93
Chris Lattner218e26e2002-12-23 23:49:59 +000094 /// debugPassMiscompilation - This method is called when the specified pass
95 /// miscompiles Program as input. It tries to reduce the testcase to
96 /// something that smaller that still miscompiles the program.
97 /// ReferenceOutput contains the filename of the file containing the output we
98 /// are to match.
99 ///
100 bool debugPassMiscompilation(const PassInfo *ThePass,
101 const std::string &ReferenceOutput);
102
Misha Brukman50733362003-07-24 18:17:43 +0000103 /// compileSharedObject - This method creates a SharedObject from a given
104 /// BytecodeFile for debugging a code generator.
Chris Lattnera0f5b152003-10-14 21:09:11 +0000105 ///
106 std::string compileSharedObject(const std::string &BytecodeFile);
Misha Brukman50733362003-07-24 18:17:43 +0000107
108 /// debugCodeGenerator - This method narrows down a module to a function or
109 /// set of functions, using the CBE as a ``safe'' code generator for other
110 /// functions that are not under consideration.
111 bool debugCodeGenerator();
112
Misha Brukmanfe04db82003-07-28 20:59:16 +0000113 /// isExecutingJIT - Returns true if bugpoint is currently testing the JIT
114 ///
Misha Brukman91eabc12003-07-28 19:16:14 +0000115 bool isExecutingJIT();
116
Chris Lattnerafade922002-11-20 22:28:10 +0000117private:
118 /// ParseInputFile - Given a bytecode or assembly input filename, parse and
119 /// return it, or return null if not possible.
120 ///
121 Module *ParseInputFile(const std::string &InputFilename) const;
122
Chris Lattnerafade922002-11-20 22:28:10 +0000123 /// writeProgramToFile - This writes the current "Program" to the named
124 /// bytecode file. If an error occurs, true is returned.
125 ///
Chris Lattner218e26e2002-12-23 23:49:59 +0000126 bool writeProgramToFile(const std::string &Filename, Module *M = 0) const;
Chris Lattnerafade922002-11-20 22:28:10 +0000127
128
129 /// EmitProgressBytecode - This function is used to output the current Program
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000130 /// to a file named "bugpoint-ID.bc".
Chris Lattnerafade922002-11-20 22:28:10 +0000131 ///
Chris Lattner640f22e2003-04-24 17:02:17 +0000132 void EmitProgressBytecode(const std::string &ID, bool NoFlyer = false);
Chris Lattnerafade922002-11-20 22:28:10 +0000133
134 /// runPasses - Run the specified passes on Program, outputting a bytecode
135 /// file and writting the filename into OutputFile if successful. If the
136 /// optimizations fail for some reason (optimizer crashes), return true,
137 /// otherwise return false. If DeleteOutput is set to true, the bytecode is
138 /// deleted on success, and the filename string is undefined. This prints to
139 /// cout a single line message indicating whether compilation was successful
Chris Lattner218e26e2002-12-23 23:49:59 +0000140 /// or failed, unless Quiet is set.
Chris Lattnerafade922002-11-20 22:28:10 +0000141 ///
142 bool runPasses(const std::vector<const PassInfo*> &PassesToRun,
Chris Lattner218e26e2002-12-23 23:49:59 +0000143 std::string &OutputFilename, bool DeleteOutput = false,
144 bool Quiet = false) const;
Chris Lattnerafade922002-11-20 22:28:10 +0000145
146 /// runPasses - Just like the method above, but this just returns true or
147 /// false indicating whether or not the optimizer crashed on the specified
148 /// input (true = crashed).
149 ///
150 bool runPasses(const std::vector<const PassInfo*> &PassesToRun,
151 bool DeleteOutput = true) const {
152 std::string Filename;
153 return runPasses(PassesToRun, Filename, DeleteOutput);
154 }
155
Misha Brukman50733362003-07-24 18:17:43 +0000156 /// PrintFunctionList - prints out list of problematic functions
Misha Brukmana259c9b2003-07-24 21:59:10 +0000157 ///
Misha Brukman50733362003-07-24 18:17:43 +0000158 static void PrintFunctionList(const std::vector<Function*> &Funcs);
159
Chris Lattner65207852003-01-23 02:48:33 +0000160 /// deleteInstructionFromProgram - This method clones the current Program and
161 /// deletes the specified instruction from the cloned module. It then runs a
162 /// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code
163 /// which depends on the value. The modified module is then returned.
164 ///
165 Module *deleteInstructionFromProgram(Instruction *I, unsigned Simp) const;
166
Chris Lattnerba386d92003-02-28 16:13:20 +0000167 /// performFinalCleanups - This method clones the current Program and performs
Chris Lattner417477d2003-11-05 21:15:19 +0000168 /// a series of cleanups intended to get rid of extra cruft on the module. If
169 /// the MayModifySemantics argument is true, then the cleanups is allowed to
170 /// modify how the code behaves.
Chris Lattnerba386d92003-02-28 16:13:20 +0000171 ///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000172 Module *performFinalCleanups(Module *M, bool MayModifySemantics = false);
Chris Lattnerba386d92003-02-28 16:13:20 +0000173
Chris Lattner218e26e2002-12-23 23:49:59 +0000174 /// initializeExecutionEnvironment - This method is used to set up the
175 /// environment for executing LLVM programs.
176 ///
177 bool initializeExecutionEnvironment();
178
179 /// executeProgram - This method runs "Program", capturing the output of the
180 /// program to a file, returning the filename of the file. A recommended
Chris Lattner7bb11542004-02-18 20:52:02 +0000181 /// filename may be optionally specified. If there is a problem with the code
182 /// generator (e.g., llc crashes), this will throw an exception.
Chris Lattner218e26e2002-12-23 23:49:59 +0000183 ///
184 std::string executeProgram(std::string RequestedOutputFilename = "",
Misha Brukman50733362003-07-24 18:17:43 +0000185 std::string Bytecode = "",
Chris Lattner769f1fe2003-10-14 21:59:36 +0000186 const std::string &SharedObjects = "",
Brian Gaekec5cad212004-02-11 18:37:32 +0000187 AbstractInterpreter *AI = 0,
188 bool *ProgramExitedNonzero = 0);
Misha Brukman50733362003-07-24 18:17:43 +0000189
190 /// executeProgramWithCBE - Used to create reference output with the C
Chris Lattner7bb11542004-02-18 20:52:02 +0000191 /// backend, if reference output is not provided. If there is a problem with
192 /// the code generator (e.g., llc crashes), this will throw an exception.
Chris Lattner769f1fe2003-10-14 21:59:36 +0000193 ///
Brian Gaekec5cad212004-02-11 18:37:32 +0000194 std::string executeProgramWithCBE(std::string OutputFile = "");
Chris Lattner218e26e2002-12-23 23:49:59 +0000195
196 /// diffProgram - This method executes the specified module and diffs the
197 /// output against the file specified by ReferenceOutputFile. If the output
Chris Lattner7bb11542004-02-18 20:52:02 +0000198 /// is different, true is returned. If there is a problem with the code
199 /// generator (e.g., llc crashes), this will throw an exception.
Chris Lattner218e26e2002-12-23 23:49:59 +0000200 ///
Misha Brukman50733362003-07-24 18:17:43 +0000201 bool diffProgram(const std::string &BytecodeFile = "",
Chris Lattner769f1fe2003-10-14 21:59:36 +0000202 const std::string &SharedObj = "",
Chris Lattner640f22e2003-04-24 17:02:17 +0000203 bool RemoveBytecode = false);
Chris Lattnerafade922002-11-20 22:28:10 +0000204};
205
Chris Lattner640f22e2003-04-24 17:02:17 +0000206/// getPassesString - Turn a list of passes into a string which indicates the
207/// command line options that must be passed to add the passes.
208///
209std::string getPassesString(const std::vector<const PassInfo*> &Passes);
210
Chris Lattneraae33f92003-04-24 22:24:58 +0000211// DeleteFunctionBody - "Remove" the function by deleting all of it's basic
212// blocks, making it external.
213//
214void DeleteFunctionBody(Function *F);
215
Brian Gaeked0fde302003-11-11 22:41:34 +0000216} // End llvm namespace
217
Chris Lattnerafade922002-11-20 22:28:10 +0000218#endif