BugDriver.h revision c5cad211d6ec50fe90a0a716dee701c6c4721385
1//===- BugDriver.h - Top-Level BugPoint class -------------------*- C++ -*-===//
2//
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//===----------------------------------------------------------------------===//
9//
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>
21
22namespace llvm {
23
24class PassInfo;
25class Module;
26class Function;
27class AbstractInterpreter;
28class Instruction;
29
30class DebugCrashes;
31class ReduceMiscompilingPasses;
32class ReduceMiscompilingFunctions;
33class ReduceCrashingFunctions;
34class ReduceCrashingBlocks;
35
36class CBE;
37class GCC;
38
39extern bool DisableSimplifyCFG;
40
41class BugDriver {
42  const std::string ToolName;  // Name of bugpoint
43  std::string ReferenceOutputFile; // Name of `good' output file
44  Module *Program;             // The raw program, linked together
45  std::vector<const PassInfo*> PassesToRun;
46  AbstractInterpreter *Interpreter;   // How to run the program
47  CBE *cbe;
48  GCC *gcc;
49
50  // FIXME: sort out public/private distinctions...
51  friend class DebugCrashes;
52  friend class ReduceMiscompilingPasses;
53  friend class ReduceMiscompilingFunctions;
54  friend class ReduceMisCodegenFunctions;
55  friend class ReduceCrashingFunctions;
56  friend class ReduceCrashingBlocks;
57
58public:
59  BugDriver(const char *toolname);
60
61  const std::string &getToolName() const { return ToolName; }
62
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); }
69  void setPassesToRun(const std::vector<const PassInfo*> &PTR) {
70    PassesToRun = PTR;
71  }
72
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
78  /// debugCrash - This method is called when some pass crashes on input.  It
79  /// attempts to prune down the testcase to something reasonable, and figure
80  /// out exactly which pass is crashing.
81  ///
82  bool debugCrash();
83
84  /// debugMiscompilation - This method is used when the passes selected are not
85  /// crashing, but the generated output is semantically different from the
86  /// input.
87  bool debugMiscompilation();
88
89  /// debugPassMiscompilation - This method is called when the specified pass
90  /// miscompiles Program as input.  It tries to reduce the testcase to
91  /// something that smaller that still miscompiles the program.
92  /// ReferenceOutput contains the filename of the file containing the output we
93  /// are to match.
94  ///
95  bool debugPassMiscompilation(const PassInfo *ThePass,
96			       const std::string &ReferenceOutput);
97
98  /// compileSharedObject - This method creates a SharedObject from a given
99  /// BytecodeFile for debugging a code generator.
100  ///
101  std::string compileSharedObject(const std::string &BytecodeFile);
102
103  /// debugCodeGenerator - This method narrows down a module to a function or
104  /// set of functions, using the CBE as a ``safe'' code generator for other
105  /// functions that are not under consideration.
106  bool debugCodeGenerator();
107
108  /// isExecutingJIT - Returns true if bugpoint is currently testing the JIT
109  ///
110  bool isExecutingJIT();
111
112private:
113  /// ParseInputFile - Given a bytecode or assembly input filename, parse and
114  /// return it, or return null if not possible.
115  ///
116  Module *ParseInputFile(const std::string &InputFilename) const;
117
118  /// writeProgramToFile - This writes the current "Program" to the named
119  /// bytecode file.  If an error occurs, true is returned.
120  ///
121  bool writeProgramToFile(const std::string &Filename, Module *M = 0) const;
122
123
124  /// EmitProgressBytecode - This function is used to output the current Program
125  /// to a file named "bugpoint-ID.bc".
126  ///
127  void EmitProgressBytecode(const std::string &ID, bool NoFlyer = false);
128
129  /// runPasses - Run the specified passes on Program, outputting a bytecode
130  /// file and writting the filename into OutputFile if successful.  If the
131  /// optimizations fail for some reason (optimizer crashes), return true,
132  /// otherwise return false.  If DeleteOutput is set to true, the bytecode is
133  /// deleted on success, and the filename string is undefined.  This prints to
134  /// cout a single line message indicating whether compilation was successful
135  /// or failed, unless Quiet is set.
136  ///
137  bool runPasses(const std::vector<const PassInfo*> &PassesToRun,
138                 std::string &OutputFilename, bool DeleteOutput = false,
139		 bool Quiet = false) const;
140
141  /// runPasses - Just like the method above, but this just returns true or
142  /// false indicating whether or not the optimizer crashed on the specified
143  /// input (true = crashed).
144  ///
145  bool runPasses(const std::vector<const PassInfo*> &PassesToRun,
146                 bool DeleteOutput = true) const {
147    std::string Filename;
148    return runPasses(PassesToRun, Filename, DeleteOutput);
149  }
150
151  /// PrintFunctionList - prints out list of problematic functions
152  ///
153  static void PrintFunctionList(const std::vector<Function*> &Funcs);
154
155  /// deleteInstructionFromProgram - This method clones the current Program and
156  /// deletes the specified instruction from the cloned module.  It then runs a
157  /// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code
158  /// which depends on the value.  The modified module is then returned.
159  ///
160  Module *deleteInstructionFromProgram(Instruction *I, unsigned Simp) const;
161
162  /// performFinalCleanups - This method clones the current Program and performs
163  /// a series of cleanups intended to get rid of extra cruft on the module.  If
164  /// the MayModifySemantics argument is true, then the cleanups is allowed to
165  /// modify how the code behaves.
166  ///
167  Module *performFinalCleanups(Module *M, bool MayModifySemantics = false);
168
169  /// initializeExecutionEnvironment - This method is used to set up the
170  /// environment for executing LLVM programs.
171  ///
172  bool initializeExecutionEnvironment();
173
174  /// executeProgram - This method runs "Program", capturing the output of the
175  /// program to a file, returning the filename of the file.  A recommended
176  /// filename may be optionally specified.
177  ///
178  std::string executeProgram(std::string RequestedOutputFilename = "",
179                             std::string Bytecode = "",
180                             const std::string &SharedObjects = "",
181                             AbstractInterpreter *AI = 0,
182                             bool *ProgramExitedNonzero = 0);
183
184  /// executeProgramWithCBE - Used to create reference output with the C
185  /// backend, if reference output is not provided.
186  ///
187  std::string executeProgramWithCBE(std::string OutputFile = "");
188
189  /// diffProgram - This method executes the specified module and diffs the
190  /// output against the file specified by ReferenceOutputFile.  If the output
191  /// is different, true is returned.
192  ///
193  bool diffProgram(const std::string &BytecodeFile = "",
194                   const std::string &SharedObj = "",
195                   bool RemoveBytecode = false);
196};
197
198/// getPassesString - Turn a list of passes into a string which indicates the
199/// command line options that must be passed to add the passes.
200///
201std::string getPassesString(const std::vector<const PassInfo*> &Passes);
202
203// DeleteFunctionBody - "Remove" the function by deleting all of it's basic
204// blocks, making it external.
205//
206void DeleteFunctionBody(Function *F);
207
208} // End llvm namespace
209
210#endif
211