Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 1 | //===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===// |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 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" |
Chris Lattner | f1b20d8 | 2006-06-06 22:30:59 +0000 | [diff] [blame] | 17 | #include "ToolRunner.h" |
Reid Spencer | 605b9e2 | 2004-11-14 23:00:08 +0000 | [diff] [blame] | 18 | #include "llvm/Linker.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 19 | #include "llvm/Module.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 20 | #include "llvm/Pass.h" |
Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 21 | #include "llvm/Assembly/Parser.h" |
Chris Lattner | 03b6963 | 2007-05-06 05:47:06 +0000 | [diff] [blame] | 22 | #include "llvm/Bitcode/ReaderWriter.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 23 | #include "llvm/Support/CommandLine.h" |
| 24 | #include "llvm/Support/FileUtilities.h" |
Chris Lattner | 03b6963 | 2007-05-06 05:47:06 +0000 | [diff] [blame] | 25 | #include "llvm/Support/MemoryBuffer.h" |
Reid Spencer | 86f42bd | 2004-07-04 12:20:55 +0000 | [diff] [blame] | 26 | #include <iostream> |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 27 | #include <memory> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 30 | // Anonymous namespace to define command line options for debugging. |
| 31 | // |
| 32 | namespace { |
| 33 | // Output - The user can specify a file containing the expected output of the |
| 34 | // program. If this filename is set, it is used as the reference diff source, |
| 35 | // otherwise the raw input run through an interpreter is used as the reference |
| 36 | // source. |
| 37 | // |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 38 | cl::opt<std::string> |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 39 | OutputFile("output", cl::desc("Specify a reference program output " |
| 40 | "(for miscompilation detection)")); |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 43 | /// setNewProgram - If we reduce or update the program somehow, call this method |
| 44 | /// to update bugdriver with it. This deletes the old module and sets the |
| 45 | /// specified one as the current program. |
| 46 | void BugDriver::setNewProgram(Module *M) { |
| 47 | delete Program; |
| 48 | Program = M; |
| 49 | } |
| 50 | |
| 51 | |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 52 | /// getPassesString - Turn a list of passes into a string which indicates the |
| 53 | /// command line options that must be passed to add the passes. |
| 54 | /// |
Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 55 | std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) { |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 56 | std::string Result; |
| 57 | for (unsigned i = 0, e = Passes.size(); i != e; ++i) { |
| 58 | if (i) Result += " "; |
| 59 | Result += "-"; |
| 60 | Result += Passes[i]->getPassArgument(); |
| 61 | } |
| 62 | return Result; |
| 63 | } |
| 64 | |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 65 | BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 66 | unsigned timeout, unsigned memlimit) |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 67 | : ToolName(toolname), ReferenceOutputFile(OutputFile), |
Chris Lattner | 9686ae7 | 2006-06-13 03:10:48 +0000 | [diff] [blame] | 68 | Program(0), Interpreter(0), cbe(0), gcc(0), run_as_child(as_child), |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 69 | run_find_bugs(find_bugs), Timeout(timeout), MemoryLimit(memlimit) {} |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 70 | |
| 71 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame^] | 72 | /// ParseInputFile - Given a bitcode or assembly input filename, parse and |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 73 | /// return it, or return null if not possible. |
| 74 | /// |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 75 | Module *llvm::ParseInputFile(const std::string &Filename) { |
| 76 | std::auto_ptr<MemoryBuffer> Buffer(MemoryBuffer::getFileOrSTDIN(Filename)); |
Chris Lattner | 744879e | 2007-05-06 09:32:02 +0000 | [diff] [blame] | 77 | Module *Result = 0; |
| 78 | if (Buffer.get()) |
| 79 | Result = ParseBitcodeFile(Buffer.get()); |
Chris Lattner | 03b6963 | 2007-05-06 05:47:06 +0000 | [diff] [blame] | 80 | |
Chris Lattner | 744879e | 2007-05-06 09:32:02 +0000 | [diff] [blame] | 81 | ParseError Err; |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 82 | if (!Result && !(Result = ParseAssemblyFile(Filename, &Err))) { |
Reid Spencer | 61c83e0 | 2006-08-18 08:43:06 +0000 | [diff] [blame] | 83 | std::cerr << "bugpoint: " << Err.getMessage() << "\n"; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 84 | Result = 0; |
| 85 | } |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 86 | |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 87 | return Result; |
| 88 | } |
| 89 | |
| 90 | // This method takes the specified list of LLVM input files, attempts to load |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame^] | 91 | // them, either as assembly or bitcode, then link them together. It returns |
| 92 | // true on failure (if, for example, an input bitcode file could not be |
Brian Gaeke | dae7f92 | 2003-05-23 05:34:32 +0000 | [diff] [blame] | 93 | // parsed), and false on success. |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 94 | // |
| 95 | bool BugDriver::addSources(const std::vector<std::string> &Filenames) { |
| 96 | assert(Program == 0 && "Cannot call addSources multiple times!"); |
| 97 | assert(!Filenames.empty() && "Must specify at least on input filename!"); |
| 98 | |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 99 | try { |
| 100 | // Load the first input file. |
| 101 | Program = ParseInputFile(Filenames[0]); |
| 102 | if (Program == 0) return true; |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 103 | |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 104 | if (!run_as_child) |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 105 | std::cout << "Read input file : '" << Filenames[0] << "'\n"; |
| 106 | |
| 107 | for (unsigned i = 1, e = Filenames.size(); i != e; ++i) { |
| 108 | std::auto_ptr<Module> M(ParseInputFile(Filenames[i])); |
| 109 | if (M.get() == 0) return true; |
| 110 | |
| 111 | if (!run_as_child) |
| 112 | std::cout << "Linking in input file: '" << Filenames[i] << "'\n"; |
| 113 | std::string ErrorMessage; |
| 114 | if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) { |
| 115 | std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': " |
| 116 | << ErrorMessage << '\n'; |
| 117 | return true; |
| 118 | } |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 119 | } |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 120 | } catch (const std::string &Error) { |
| 121 | std::cerr << ToolName << ": error reading input '" << Error << "'\n"; |
| 122 | return true; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 125 | if (!run_as_child) |
| 126 | std::cout << "*** All input ok\n"; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 127 | |
| 128 | // All input files read successfully! |
| 129 | return false; |
| 130 | } |
| 131 | |
| 132 | |
| 133 | |
| 134 | /// run - The top level method that is invoked after all of the instance |
| 135 | /// variables are set up from command line arguments. |
| 136 | /// |
| 137 | bool BugDriver::run() { |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 138 | // The first thing to do is determine if we're running as a child. If we are, |
| 139 | // then what to do is very narrow. This form of invocation is only called |
| 140 | // from the runPasses method to actually run those passes in a child process. |
| 141 | if (run_as_child) { |
| 142 | // Execute the passes |
| 143 | return runPassesAsChild(PassesToRun); |
| 144 | } |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 145 | |
| 146 | if (run_find_bugs) { |
| 147 | // Rearrange the passes and apply them to the program. Repeat this process |
| 148 | // until the user kills the program or we find a bug. |
| 149 | return runManyPasses(PassesToRun); |
| 150 | } |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 151 | |
| 152 | // If we're not running as a child, the first thing that we must do is |
| 153 | // determine what the problem is. Does the optimization series crash the |
| 154 | // compiler, or does it produce illegal code? We make the top-level |
| 155 | // decision by trying to run all of the passes on the the input program, |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame^] | 156 | // which should generate a bitcode file. If it does generate a bitcode |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 157 | // file, then we know the compiler didn't crash, so try to diagnose a |
| 158 | // miscompilation. |
Chris Lattner | 99b8533 | 2003-10-13 21:04:26 +0000 | [diff] [blame] | 159 | if (!PassesToRun.empty()) { |
| 160 | std::cout << "Running selected passes on program to test for crash: "; |
| 161 | if (runPasses(PassesToRun)) |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 162 | return debugOptimizerCrash(); |
Chris Lattner | 99b8533 | 2003-10-13 21:04:26 +0000 | [diff] [blame] | 163 | } |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 164 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame^] | 165 | // Set up the execution environment, selecting a method to run LLVM bitcode. |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 166 | if (initializeExecutionEnvironment()) return true; |
| 167 | |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 168 | // Test to see if we have a code generator crash. |
| 169 | std::cout << "Running the code generator to test for a crash: "; |
| 170 | try { |
| 171 | compileProgram(Program); |
Misha Brukman | eed80e2 | 2004-07-23 01:30:49 +0000 | [diff] [blame] | 172 | std::cout << '\n'; |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 173 | } catch (ToolExecutionError &TEE) { |
| 174 | std::cout << TEE.what(); |
| 175 | return debugCodeGeneratorCrash(); |
| 176 | } |
| 177 | |
| 178 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 179 | // Run the raw input to see where we are coming from. If a reference output |
| 180 | // was specified, make sure that the raw output matches it. If not, it's a |
| 181 | // problem in the front-end or the code generator. |
| 182 | // |
Chris Lattner | c28c1d3 | 2003-08-22 18:57:43 +0000 | [diff] [blame] | 183 | bool CreatedOutput = false; |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 184 | if (ReferenceOutputFile.empty()) { |
Chris Lattner | 7d91e49 | 2004-07-24 07:53:26 +0000 | [diff] [blame] | 185 | std::cout << "Generating reference output from raw program: "; |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 186 | if(!createReferenceFile(Program)){ |
| 187 | return debugCodeGeneratorCrash(); |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 188 | } |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 189 | CreatedOutput = true; |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 192 | // Make sure the reference output file gets deleted on exit from this |
| 193 | // function, if appropriate. |
Reid Spencer | 5d28218 | 2004-12-20 19:16:12 +0000 | [diff] [blame] | 194 | sys::Path ROF(ReferenceOutputFile); |
| 195 | FileRemover RemoverInstance(ROF, CreatedOutput); |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 196 | |
| 197 | // Diff the output of the raw program against the reference output. If it |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 198 | // matches, then we assume there is a miscompilation bug and try to |
| 199 | // diagnose it. |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 200 | std::cout << "*** Checking the code generator...\n"; |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 201 | try { |
| 202 | if (!diffProgram()) { |
| 203 | std::cout << "\n*** Debugging miscompilation!\n"; |
| 204 | return debugMiscompilation(); |
| 205 | } |
| 206 | } catch (ToolExecutionError &TEE) { |
Alkis Evlogimenos | 1d29a6d | 2004-02-19 07:39:26 +0000 | [diff] [blame] | 207 | std::cerr << TEE.what(); |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 208 | return debugCodeGeneratorCrash(); |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | std::cout << "\n*** Input program does not match reference diff!\n"; |
| 212 | std::cout << "Debugging code generator problem!\n"; |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 213 | try { |
| 214 | return debugCodeGenerator(); |
| 215 | } catch (ToolExecutionError &TEE) { |
| 216 | std::cerr << TEE.what(); |
| 217 | return debugCodeGeneratorCrash(); |
| 218 | } |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 221 | void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) { |
| 222 | unsigned NumPrint = Funcs.size(); |
| 223 | if (NumPrint > 10) NumPrint = 10; |
| 224 | for (unsigned i = 0; i != NumPrint; ++i) |
| 225 | std::cout << " " << Funcs[i]->getName(); |
| 226 | if (NumPrint < Funcs.size()) |
| 227 | std::cout << "... <" << Funcs.size() << " total>"; |
Brian Gaeke | b6c3a88 | 2003-10-15 20:42:48 +0000 | [diff] [blame] | 228 | std::cout << std::flush; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 229 | } |
Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 230 | |
| 231 | void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) { |
| 232 | unsigned NumPrint = GVs.size(); |
| 233 | if (NumPrint > 10) NumPrint = 10; |
| 234 | for (unsigned i = 0; i != NumPrint; ++i) |
| 235 | std::cout << " " << GVs[i]->getName(); |
| 236 | if (NumPrint < GVs.size()) |
| 237 | std::cout << "... <" << GVs.size() << " total>"; |
| 238 | std::cout << std::flush; |
| 239 | } |