Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 1 | //===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===// |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 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 | //===----------------------------------------------------------------------===// |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 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 | #include "BugDriver.h" |
| 17 | #include "llvm/Module.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 18 | #include "llvm/Pass.h" |
Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 19 | #include "llvm/Assembly/Parser.h" |
| 20 | #include "llvm/Bytecode/Reader.h" |
| 21 | #include "llvm/Transforms/Utils/Linker.h" |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ToolRunner.h" |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 23 | #include "Support/CommandLine.h" |
Misha Brukman | 3d9cafa | 2003-08-07 21:42:28 +0000 | [diff] [blame] | 24 | #include "Support/FileUtilities.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 25 | #include <memory> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 26 | using namespace llvm; |
| 27 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 28 | // Anonymous namespace to define command line options for debugging. |
| 29 | // |
| 30 | namespace { |
| 31 | // Output - The user can specify a file containing the expected output of the |
| 32 | // program. If this filename is set, it is used as the reference diff source, |
| 33 | // otherwise the raw input run through an interpreter is used as the reference |
| 34 | // source. |
| 35 | // |
| 36 | cl::opt<std::string> |
| 37 | OutputFile("output", cl::desc("Specify a reference program output " |
| 38 | "(for miscompilation detection)")); |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 39 | } |
| 40 | |
Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 41 | /// setNewProgram - If we reduce or update the program somehow, call this method |
| 42 | /// to update bugdriver with it. This deletes the old module and sets the |
| 43 | /// specified one as the current program. |
| 44 | void BugDriver::setNewProgram(Module *M) { |
| 45 | delete Program; |
| 46 | Program = M; |
| 47 | } |
| 48 | |
| 49 | |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 50 | /// getPassesString - Turn a list of passes into a string which indicates the |
| 51 | /// command line options that must be passed to add the passes. |
| 52 | /// |
Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 53 | std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) { |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 54 | std::string Result; |
| 55 | for (unsigned i = 0, e = Passes.size(); i != e; ++i) { |
| 56 | if (i) Result += " "; |
| 57 | Result += "-"; |
| 58 | Result += Passes[i]->getPassArgument(); |
| 59 | } |
| 60 | return Result; |
| 61 | } |
| 62 | |
Misha Brukman | c8b2731 | 2003-05-03 02:16:43 +0000 | [diff] [blame] | 63 | // DeleteFunctionBody - "Remove" the function by deleting all of its basic |
Chris Lattner | ff4aaf0 | 2003-04-24 22:23:34 +0000 | [diff] [blame] | 64 | // blocks, making it external. |
| 65 | // |
Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 66 | void llvm::DeleteFunctionBody(Function *F) { |
Chris Lattner | 79f03d3 | 2003-09-17 05:00:07 +0000 | [diff] [blame] | 67 | // delete the body of the function... |
| 68 | F->deleteBody(); |
Chris Lattner | ff4aaf0 | 2003-04-24 22:23:34 +0000 | [diff] [blame] | 69 | assert(F->isExternal() && "This didn't make the function external!"); |
| 70 | } |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 71 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 72 | BugDriver::BugDriver(const char *toolname) |
| 73 | : ToolName(toolname), ReferenceOutputFile(OutputFile), |
Misha Brukman | a259c9b | 2003-07-24 21:59:10 +0000 | [diff] [blame] | 74 | Program(0), Interpreter(0), cbe(0), gcc(0) {} |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 75 | |
| 76 | |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 77 | /// ParseInputFile - Given a bytecode or assembly input filename, parse and |
| 78 | /// return it, or return null if not possible. |
| 79 | /// |
| 80 | Module *BugDriver::ParseInputFile(const std::string &InputFilename) const { |
| 81 | Module *Result = 0; |
| 82 | try { |
| 83 | Result = ParseBytecodeFile(InputFilename); |
| 84 | if (!Result && !(Result = ParseAssemblyFile(InputFilename))){ |
| 85 | std::cerr << ToolName << ": could not read input file '" |
| 86 | << InputFilename << "'!\n"; |
| 87 | } |
| 88 | } catch (const ParseException &E) { |
| 89 | std::cerr << ToolName << ": " << E.getMessage() << "\n"; |
| 90 | Result = 0; |
| 91 | } |
| 92 | return Result; |
| 93 | } |
| 94 | |
| 95 | // This method takes the specified list of LLVM input files, attempts to load |
Brian Gaeke | dae7f92 | 2003-05-23 05:34:32 +0000 | [diff] [blame] | 96 | // them, either as assembly or bytecode, then link them together. It returns |
| 97 | // true on failure (if, for example, an input bytecode file could not be |
| 98 | // parsed), and false on success. |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 99 | // |
| 100 | bool BugDriver::addSources(const std::vector<std::string> &Filenames) { |
| 101 | assert(Program == 0 && "Cannot call addSources multiple times!"); |
| 102 | assert(!Filenames.empty() && "Must specify at least on input filename!"); |
| 103 | |
| 104 | // Load the first input file... |
| 105 | Program = ParseInputFile(Filenames[0]); |
| 106 | if (Program == 0) return true; |
| 107 | std::cout << "Read input file : '" << Filenames[0] << "'\n"; |
| 108 | |
| 109 | for (unsigned i = 1, e = Filenames.size(); i != e; ++i) { |
| 110 | std::auto_ptr<Module> M(ParseInputFile(Filenames[i])); |
| 111 | if (M.get() == 0) return true; |
| 112 | |
| 113 | std::cout << "Linking in input file: '" << Filenames[i] << "'\n"; |
| 114 | std::string ErrorMessage; |
| 115 | if (LinkModules(Program, M.get(), &ErrorMessage)) { |
| 116 | std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': " |
| 117 | << ErrorMessage << "\n"; |
| 118 | return true; |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | std::cout << "*** All input ok\n"; |
| 123 | |
| 124 | // All input files read successfully! |
| 125 | return false; |
| 126 | } |
| 127 | |
| 128 | |
| 129 | |
| 130 | /// run - The top level method that is invoked after all of the instance |
| 131 | /// variables are set up from command line arguments. |
| 132 | /// |
| 133 | bool BugDriver::run() { |
| 134 | // The first thing that we must do is determine what the problem is. Does the |
| 135 | // optimization series crash the compiler, or does it produce illegal code? We |
| 136 | // make the top-level decision by trying to run all of the passes on the the |
| 137 | // input program, which should generate a bytecode file. If it does generate |
| 138 | // a bytecode file, then we know the compiler didn't crash, so try to diagnose |
| 139 | // a miscompilation. |
| 140 | // |
Chris Lattner | 99b8533 | 2003-10-13 21:04:26 +0000 | [diff] [blame] | 141 | if (!PassesToRun.empty()) { |
| 142 | std::cout << "Running selected passes on program to test for crash: "; |
| 143 | if (runPasses(PassesToRun)) |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 144 | return debugOptimizerCrash(); |
Chris Lattner | 99b8533 | 2003-10-13 21:04:26 +0000 | [diff] [blame] | 145 | } |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 146 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 147 | // Set up the execution environment, selecting a method to run LLVM bytecode. |
| 148 | if (initializeExecutionEnvironment()) return true; |
| 149 | |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame^] | 150 | // Test to see if we have a code generator crash. |
| 151 | std::cout << "Running the code generator to test for a crash: "; |
| 152 | try { |
| 153 | compileProgram(Program); |
| 154 | } catch (ToolExecutionError &TEE) { |
| 155 | std::cout << TEE.what(); |
| 156 | return debugCodeGeneratorCrash(); |
| 157 | } |
| 158 | |
| 159 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 160 | // Run the raw input to see where we are coming from. If a reference output |
| 161 | // was specified, make sure that the raw output matches it. If not, it's a |
| 162 | // problem in the front-end or the code generator. |
| 163 | // |
Chris Lattner | c28c1d3 | 2003-08-22 18:57:43 +0000 | [diff] [blame] | 164 | bool CreatedOutput = false; |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 165 | if (ReferenceOutputFile.empty()) { |
| 166 | std::cout << "Generating reference output from raw program..."; |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 167 | try { |
| 168 | ReferenceOutputFile = executeProgramWithCBE("bugpoint.reference.out"); |
| 169 | CreatedOutput = true; |
| 170 | std::cout << "Reference output is: " << ReferenceOutputFile << "\n"; |
| 171 | } catch (ToolExecutionError &TEE) { |
Alkis Evlogimenos | 1d29a6d | 2004-02-19 07:39:26 +0000 | [diff] [blame] | 172 | std::cerr << TEE.what(); |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 173 | if (Interpreter != cbe) { |
| 174 | std::cerr << "*** There is a bug running the C backend. Either debug" |
| 175 | << " it (use the -run-cbe bugpoint option), or fix the error" |
| 176 | << " some other way.\n"; |
| 177 | return 1; |
| 178 | } |
| 179 | return debugCodeGeneratorCrash(); |
| 180 | } |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 183 | // Make sure the reference output file gets deleted on exit from this |
| 184 | // function, if appropriate. |
Chris Lattner | 5dcc366 | 2004-02-18 20:22:25 +0000 | [diff] [blame] | 185 | FileRemover RemoverInstance(ReferenceOutputFile, CreatedOutput); |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 186 | |
| 187 | // Diff the output of the raw program against the reference output. If it |
| 188 | // matches, then we have a miscompilation bug. |
| 189 | std::cout << "*** Checking the code generator...\n"; |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 190 | try { |
| 191 | if (!diffProgram()) { |
| 192 | std::cout << "\n*** Debugging miscompilation!\n"; |
| 193 | return debugMiscompilation(); |
| 194 | } |
| 195 | } catch (ToolExecutionError &TEE) { |
Alkis Evlogimenos | 1d29a6d | 2004-02-19 07:39:26 +0000 | [diff] [blame] | 196 | std::cerr << TEE.what(); |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 197 | return debugCodeGeneratorCrash(); |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | std::cout << "\n*** Input program does not match reference diff!\n"; |
| 201 | std::cout << "Debugging code generator problem!\n"; |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame^] | 202 | try { |
| 203 | return debugCodeGenerator(); |
| 204 | } catch (ToolExecutionError &TEE) { |
| 205 | std::cerr << TEE.what(); |
| 206 | return debugCodeGeneratorCrash(); |
| 207 | } |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 210 | void BugDriver::PrintFunctionList(const std::vector<Function*> &Funcs) { |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 211 | for (unsigned i = 0, e = Funcs.size(); i != e; ++i) { |
| 212 | if (i) std::cout << ", "; |
| 213 | std::cout << Funcs[i]->getName(); |
| 214 | } |
Brian Gaeke | b6c3a88 | 2003-10-15 20:42:48 +0000 | [diff] [blame] | 215 | std::cout << std::flush; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 216 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 217 | |