blob: f86782a0bc937661612415e53d43ee15799ccad3 [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- BugDriver.h - Top-Level BugPoint class -------------------*- C++ -*-===//
2//
3// This class contains all of the shared state and information that is used by
4// the BugPoint tool to track down errors in optimizations. This class is the
5// main driver class that invokes all sub-functionality.
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef BUGDRIVER_H
10#define BUGDRIVER_H
11
12#include <vector>
13#include <string>
Misha Brukman50733362003-07-24 18:17:43 +000014
Chris Lattnerafade922002-11-20 22:28:10 +000015class PassInfo;
16class Module;
17class Function;
Chris Lattner218e26e2002-12-23 23:49:59 +000018class AbstractInterpreter;
Chris Lattner65207852003-01-23 02:48:33 +000019class Instruction;
Chris Lattnerafade922002-11-20 22:28:10 +000020
Chris Lattneraae33f92003-04-24 22:24:58 +000021class DebugCrashes;
Chris Lattner640f22e2003-04-24 17:02:17 +000022class ReduceMiscompilingPasses;
23class ReduceMiscompilingFunctions;
Chris Lattneraae33f92003-04-24 22:24:58 +000024class ReduceCrashingFunctions;
Chris Lattner286921e2003-04-24 23:51:38 +000025class ReduceCrashingBlocks;
Chris Lattner640f22e2003-04-24 17:02:17 +000026
Misha Brukmana259c9b2003-07-24 21:59:10 +000027class CBE;
28class GCC;
29
Chris Lattnerafade922002-11-20 22:28:10 +000030class BugDriver {
31 const std::string ToolName; // Name of bugpoint
Misha Brukmana259c9b2003-07-24 21:59:10 +000032 std::string ReferenceOutputFile; // Name of `good' output file
Chris Lattnerafade922002-11-20 22:28:10 +000033 Module *Program; // The raw program, linked together
34 std::vector<const PassInfo*> PassesToRun;
Chris Lattner218e26e2002-12-23 23:49:59 +000035 AbstractInterpreter *Interpreter; // How to run the program
Misha Brukmana259c9b2003-07-24 21:59:10 +000036 CBE *cbe;
37 GCC *gcc;
Chris Lattner640f22e2003-04-24 17:02:17 +000038
Chris Lattneraae33f92003-04-24 22:24:58 +000039 // FIXME: sort out public/private distinctions...
40 friend class DebugCrashes;
Chris Lattner640f22e2003-04-24 17:02:17 +000041 friend class ReduceMiscompilingPasses;
42 friend class ReduceMiscompilingFunctions;
Misha Brukman50733362003-07-24 18:17:43 +000043 friend class ReduceMisCodegenFunctions;
Chris Lattneraae33f92003-04-24 22:24:58 +000044 friend class ReduceCrashingFunctions;
Chris Lattner286921e2003-04-24 23:51:38 +000045 friend class ReduceCrashingBlocks;
Misha Brukman50733362003-07-24 18:17:43 +000046
Chris Lattnerafade922002-11-20 22:28:10 +000047public:
Misha Brukman50733362003-07-24 18:17:43 +000048 BugDriver(const char *toolname);
Chris Lattner218e26e2002-12-23 23:49:59 +000049
50 const std::string &getToolName() const { return ToolName; }
Chris Lattnerafade922002-11-20 22:28:10 +000051
52 // Set up methods... these methods are used to copy information about the
53 // command line arguments into instance variables of BugDriver.
54 //
55 bool addSources(const std::vector<std::string> &FileNames);
56 template<class It>
57 void addPasses(It I, It E) { PassesToRun.insert(PassesToRun.end(), I, E); }
58
59 /// run - The top level method that is invoked after all of the instance
60 /// variables are set up from command line arguments.
61 ///
62 bool run();
63
64 /// debugCrash - This method is called when some pass crashes on input. It
65 /// attempts to prune down the testcase to something reasonable, and figure
66 /// out exactly which pass is crashing.
67 ///
68 bool debugCrash();
69
Chris Lattnerafade922002-11-20 22:28:10 +000070 /// debugMiscompilation - This method is used when the passes selected are not
71 /// crashing, but the generated output is semantically different from the
72 /// input.
73 bool debugMiscompilation();
74
Chris Lattner218e26e2002-12-23 23:49:59 +000075 /// debugPassMiscompilation - This method is called when the specified pass
76 /// miscompiles Program as input. It tries to reduce the testcase to
77 /// something that smaller that still miscompiles the program.
78 /// ReferenceOutput contains the filename of the file containing the output we
79 /// are to match.
80 ///
81 bool debugPassMiscompilation(const PassInfo *ThePass,
82 const std::string &ReferenceOutput);
83
Misha Brukman50733362003-07-24 18:17:43 +000084 /// compileSharedObject - This method creates a SharedObject from a given
85 /// BytecodeFile for debugging a code generator.
86 int compileSharedObject(const std::string &BytecodeFile,
87 std::string &SharedObject);
88
89 /// debugCodeGenerator - This method narrows down a module to a function or
90 /// set of functions, using the CBE as a ``safe'' code generator for other
91 /// functions that are not under consideration.
92 bool debugCodeGenerator();
93
Misha Brukmanfe04db82003-07-28 20:59:16 +000094 /// isExecutingJIT - Returns true if bugpoint is currently testing the JIT
95 ///
Misha Brukman91eabc12003-07-28 19:16:14 +000096 bool isExecutingJIT();
97
Chris Lattnerafade922002-11-20 22:28:10 +000098private:
99 /// ParseInputFile - Given a bytecode or assembly input filename, parse and
100 /// return it, or return null if not possible.
101 ///
102 Module *ParseInputFile(const std::string &InputFilename) const;
103
Chris Lattnerafade922002-11-20 22:28:10 +0000104 /// writeProgramToFile - This writes the current "Program" to the named
105 /// bytecode file. If an error occurs, true is returned.
106 ///
Chris Lattner218e26e2002-12-23 23:49:59 +0000107 bool writeProgramToFile(const std::string &Filename, Module *M = 0) const;
Chris Lattnerafade922002-11-20 22:28:10 +0000108
109
110 /// EmitProgressBytecode - This function is used to output the current Program
111 /// to a file named "bugpoing-ID.bc".
112 ///
Chris Lattner640f22e2003-04-24 17:02:17 +0000113 void EmitProgressBytecode(const std::string &ID, bool NoFlyer = false);
Chris Lattnerafade922002-11-20 22:28:10 +0000114
115 /// runPasses - Run the specified passes on Program, outputting a bytecode
116 /// file and writting the filename into OutputFile if successful. If the
117 /// optimizations fail for some reason (optimizer crashes), return true,
118 /// otherwise return false. If DeleteOutput is set to true, the bytecode is
119 /// deleted on success, and the filename string is undefined. This prints to
120 /// cout a single line message indicating whether compilation was successful
Chris Lattner218e26e2002-12-23 23:49:59 +0000121 /// or failed, unless Quiet is set.
Chris Lattnerafade922002-11-20 22:28:10 +0000122 ///
123 bool runPasses(const std::vector<const PassInfo*> &PassesToRun,
Chris Lattner218e26e2002-12-23 23:49:59 +0000124 std::string &OutputFilename, bool DeleteOutput = false,
125 bool Quiet = false) const;
Chris Lattnerafade922002-11-20 22:28:10 +0000126
127 /// runPasses - Just like the method above, but this just returns true or
128 /// false indicating whether or not the optimizer crashed on the specified
129 /// input (true = crashed).
130 ///
131 bool runPasses(const std::vector<const PassInfo*> &PassesToRun,
132 bool DeleteOutput = true) const {
133 std::string Filename;
134 return runPasses(PassesToRun, Filename, DeleteOutput);
135 }
136
Misha Brukman50733362003-07-24 18:17:43 +0000137 /// PrintFunctionList - prints out list of problematic functions
Misha Brukmana259c9b2003-07-24 21:59:10 +0000138 ///
Misha Brukman50733362003-07-24 18:17:43 +0000139 static void PrintFunctionList(const std::vector<Function*> &Funcs);
140
Chris Lattner65207852003-01-23 02:48:33 +0000141 /// deleteInstructionFromProgram - This method clones the current Program and
142 /// deletes the specified instruction from the cloned module. It then runs a
143 /// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code
144 /// which depends on the value. The modified module is then returned.
145 ///
146 Module *deleteInstructionFromProgram(Instruction *I, unsigned Simp) const;
147
Chris Lattnerba386d92003-02-28 16:13:20 +0000148 /// performFinalCleanups - This method clones the current Program and performs
149 /// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner587a6ce2003-08-01 16:13:49 +0000150 /// before handing it to the user... if the module parameter is specified, it
151 /// operates directly on the specified Module, modifying it in place.
Chris Lattnerba386d92003-02-28 16:13:20 +0000152 ///
Chris Lattner587a6ce2003-08-01 16:13:49 +0000153 Module *performFinalCleanups(Module *M = 0) const;
Chris Lattnerba386d92003-02-28 16:13:20 +0000154
Chris Lattner218e26e2002-12-23 23:49:59 +0000155 /// initializeExecutionEnvironment - This method is used to set up the
156 /// environment for executing LLVM programs.
157 ///
158 bool initializeExecutionEnvironment();
159
160 /// executeProgram - This method runs "Program", capturing the output of the
161 /// program to a file, returning the filename of the file. A recommended
162 /// filename may be optionally specified.
163 ///
164 std::string executeProgram(std::string RequestedOutputFilename = "",
Misha Brukman50733362003-07-24 18:17:43 +0000165 std::string Bytecode = "",
166 std::string SharedObject = "",
167 AbstractInterpreter *AI = 0);
168
169 /// executeProgramWithCBE - Used to create reference output with the C
170 /// backend, if reference output is not provided.
171 std::string executeProgramWithCBE(std::string RequestedOutputFilename = "",
172 std::string Bytecode = "",
173 std::string SharedObject = "");
Chris Lattner218e26e2002-12-23 23:49:59 +0000174
175 /// diffProgram - This method executes the specified module and diffs the
176 /// output against the file specified by ReferenceOutputFile. If the output
177 /// is different, true is returned.
178 ///
Misha Brukman50733362003-07-24 18:17:43 +0000179 bool diffProgram(const std::string &BytecodeFile = "",
180 const std::string &SharedObject = "",
Chris Lattner640f22e2003-04-24 17:02:17 +0000181 bool RemoveBytecode = false);
Chris Lattnerafade922002-11-20 22:28:10 +0000182};
183
Chris Lattner640f22e2003-04-24 17:02:17 +0000184/// getPassesString - Turn a list of passes into a string which indicates the
185/// command line options that must be passed to add the passes.
186///
187std::string getPassesString(const std::vector<const PassInfo*> &Passes);
188
Chris Lattneraae33f92003-04-24 22:24:58 +0000189// DeleteFunctionBody - "Remove" the function by deleting all of it's basic
190// blocks, making it external.
191//
192void DeleteFunctionBody(Function *F);
193
Chris Lattnerafade922002-11-20 22:28:10 +0000194#endif