Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 1 | //===-- FindBugs.cpp - Run Many Different Optimizations -------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 21c62da | 2007-12-29 20:44:31 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines an interface that allows bugpoint to choose different |
| 11 | // combinations of optimizations to run on the selected input. Bugpoint will |
| 12 | // run these optimizations and record the success/failure of each. This way |
| 13 | // we can hopefully spot bugs in the optimizations. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 16 | |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 17 | #include "BugDriver.h" |
| 18 | #include "ToolRunner.h" |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 19 | #include "llvm/Pass.h" |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 21 | #include <algorithm> |
| 22 | #include <ctime> |
| 23 | using namespace llvm; |
| 24 | |
| 25 | /// runManyPasses - Take the specified pass list and create different |
| 26 | /// combinations of passes to compile the program with. Compile the program with |
| 27 | /// each set and mark test to see if it compiled correctly. If the passes |
| 28 | /// compiled correctly output nothing and rearrange the passes into a new order. |
| 29 | /// If the passes did not compile correctly, output the command required to |
| 30 | /// recreate the failure. This returns true if a compiler error is found. |
| 31 | /// |
Rafael Espindola | 8261dfe | 2010-08-08 03:55:08 +0000 | [diff] [blame] | 32 | bool BugDriver::runManyPasses(const std::vector<std::string> &AllPasses, |
Nick Lewycky | 22ff748 | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 33 | std::string &ErrMsg) { |
Nick Lewycky | 1d1ef14 | 2008-02-14 05:01:46 +0000 | [diff] [blame] | 34 | setPassesToRun(AllPasses); |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 35 | outs() << "Starting bug finding procedure...\n\n"; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 36 | |
| 37 | // Creating a reference output if necessary |
| 38 | if (initializeExecutionEnvironment()) return false; |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 39 | |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 40 | outs() << "\n"; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 41 | if (ReferenceOutputFile.empty()) { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 42 | outs() << "Generating reference output from raw program: \n"; |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 43 | if (!createReferenceFile(Program)) |
| 44 | return false; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | srand(time(NULL)); |
Nick Lewycky | 1d1ef14 | 2008-02-14 05:01:46 +0000 | [diff] [blame] | 48 | |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 49 | unsigned num = 1; |
| 50 | while(1) { |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 51 | // |
| 52 | // Step 1: Randomize the order of the optimizer passes. |
| 53 | // |
Nick Lewycky | 1d1ef14 | 2008-02-14 05:01:46 +0000 | [diff] [blame] | 54 | std::random_shuffle(PassesToRun.begin(), PassesToRun.end()); |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 55 | |
| 56 | // |
| 57 | // Step 2: Run optimizer passes on the program and check for success. |
| 58 | // |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 59 | outs() << "Running selected passes on program to test for crash: "; |
Nick Lewycky | 1d1ef14 | 2008-02-14 05:01:46 +0000 | [diff] [blame] | 60 | for(int i = 0, e = PassesToRun.size(); i != e; i++) { |
Rafael Espindola | 8261dfe | 2010-08-08 03:55:08 +0000 | [diff] [blame] | 61 | outs() << "-" << PassesToRun[i] << " "; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 62 | } |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 63 | |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 64 | std::string Filename; |
Rafael Espindola | ca356af | 2010-08-05 00:29:04 +0000 | [diff] [blame] | 65 | if(runPasses(Program, PassesToRun, Filename, false)) { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 66 | outs() << "\n"; |
| 67 | outs() << "Optimizer passes caused failure!\n\n"; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 68 | debugOptimizerCrash(); |
| 69 | return true; |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 70 | } else { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 71 | outs() << "Combination " << num << " optimized successfully!\n"; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 72 | } |
Nick Lewycky | 1d1ef14 | 2008-02-14 05:01:46 +0000 | [diff] [blame] | 73 | |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 74 | // |
| 75 | // Step 3: Compile the optimized code. |
| 76 | // |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 77 | outs() << "Running the code generator to test for a crash: "; |
Nick Lewycky | 22ff748 | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 78 | std::string Error; |
| 79 | compileProgram(Program, &Error); |
| 80 | if (!Error.empty()) { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 81 | outs() << "\n*** compileProgram threw an exception: "; |
Nick Lewycky | 22ff748 | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 82 | outs() << Error; |
| 83 | return debugCodeGeneratorCrash(ErrMsg); |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 84 | } |
Nick Lewycky | 22ff748 | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 85 | outs() << '\n'; |
Nick Lewycky | 1d1ef14 | 2008-02-14 05:01:46 +0000 | [diff] [blame] | 86 | |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 87 | // |
| 88 | // Step 4: Run the program and compare its output to the reference |
| 89 | // output (created above). |
| 90 | // |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 91 | outs() << "*** Checking if passes caused miscompliation:\n"; |
Rafael Espindola | 10757dd | 2010-07-30 14:19:00 +0000 | [diff] [blame] | 92 | bool Diff = diffProgram(Program, Filename, "", false, &Error); |
Nick Lewycky | 22ff748 | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 93 | if (Error.empty() && Diff) { |
| 94 | outs() << "\n*** diffProgram returned true!\n"; |
| 95 | debugMiscompilation(&Error); |
| 96 | if (Error.empty()) |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 97 | return true; |
Nick Lewycky | 22ff748 | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 98 | } |
| 99 | if (!Error.empty()) { |
| 100 | errs() << Error; |
| 101 | debugCodeGeneratorCrash(ErrMsg); |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 102 | return true; |
| 103 | } |
Nick Lewycky | 22ff748 | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 104 | outs() << "\n*** diff'd output matches!\n"; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 105 | |
| 106 | sys::Path(Filename).eraseFromDisk(); |
| 107 | |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 108 | outs() << "\n\n"; |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 109 | num++; |
| 110 | } //end while |
| 111 | |
Chris Lattner | 7f27570 | 2006-08-17 18:49:52 +0000 | [diff] [blame] | 112 | // Unreachable. |
Patrick Jenkins | 032091d | 2006-08-15 16:41:52 +0000 | [diff] [blame] | 113 | } |