blob: c655e714271113b0016fed5bf1990c15033c4335 [file] [log] [blame]
Chris Lattner4a106452002-12-23 23:50:16 +00001//===- Miscompilation.cpp - Debug program miscompilations -----------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner4a106452002-12-23 23:50:16 +00009//
Chris Lattnera57d86b2004-04-05 22:58:16 +000010// This file implements optimizer and code generation miscompilation debugging
11// support.
Chris Lattner4a106452002-12-23 23:50:16 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "BugDriver.h"
Chris Lattner126840f2003-04-24 20:16:29 +000016#include "ListReducer.h"
Chris Lattnera57d86b2004-04-05 22:58:16 +000017#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/Instructions.h"
Reid Spencer605b9e22004-11-14 23:00:08 +000020#include "llvm/Linker.h"
Chris Lattner4a106452002-12-23 23:50:16 +000021#include "llvm/Module.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000022#include "llvm/Pass.h"
Chris Lattnera57d86b2004-04-05 22:58:16 +000023#include "llvm/Analysis/Verifier.h"
24#include "llvm/Support/Mangler.h"
Chris Lattner640f22e2003-04-24 17:02:17 +000025#include "llvm/Transforms/Utils/Cloning.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/FileUtilities.h"
Chris Lattner59615f02005-01-15 00:07:19 +000028#include "llvm/Config/config.h" // for HAVE_LINK_R
Chris Lattnerfa761832004-01-14 03:38:37 +000029using namespace llvm;
Chris Lattner4a106452002-12-23 23:50:16 +000030
Chris Lattnera57d86b2004-04-05 22:58:16 +000031namespace llvm {
32 extern cl::list<std::string> InputArgv;
33}
34
Chris Lattnerefdc0b52004-03-14 20:50:42 +000035namespace {
Reid Spencerdc31a8a2006-11-11 19:05:02 +000036 static llvm::cl::opt<bool>
37 DisableLoopExtraction("disable-loop-extraction",
38 cl::desc("Don't extract loops when searching for miscompilations"),
39 cl::init(false));
40
Chris Lattnerfa761832004-01-14 03:38:37 +000041 class ReduceMiscompilingPasses : public ListReducer<const PassInfo*> {
42 BugDriver &BD;
43 public:
44 ReduceMiscompilingPasses(BugDriver &bd) : BD(bd) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +000045
Chris Lattnerfa761832004-01-14 03:38:37 +000046 virtual TestResult doTest(std::vector<const PassInfo*> &Prefix,
47 std::vector<const PassInfo*> &Suffix);
48 };
49}
Chris Lattner640f22e2003-04-24 17:02:17 +000050
Misha Brukman8c194ea2004-04-21 18:36:43 +000051/// TestResult - After passes have been split into a test group and a control
52/// group, see if they still break the program.
53///
Chris Lattner640f22e2003-04-24 17:02:17 +000054ReduceMiscompilingPasses::TestResult
Chris Lattner39aebca2003-04-24 22:24:22 +000055ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix,
Chris Lattner06943ad2003-04-25 03:16:05 +000056 std::vector<const PassInfo*> &Suffix) {
57 // First, run the program with just the Suffix passes. If it is still broken
Chris Lattner640f22e2003-04-24 17:02:17 +000058 // with JUST the kept passes, discard the prefix passes.
Chris Lattner06943ad2003-04-25 03:16:05 +000059 std::cout << "Checking to see if '" << getPassesString(Suffix)
David Goodwin80becf12009-07-10 21:39:28 +000060 << "' compiles correctly: ";
Chris Lattner640f22e2003-04-24 17:02:17 +000061
Gabor Greif8ff70c22007-07-04 21:55:50 +000062 std::string BitcodeResult;
63 if (BD.runPasses(Suffix, BitcodeResult, false/*delete*/, true/*quiet*/)) {
Misha Brukman3da94ae2005-04-22 00:00:37 +000064 std::cerr << " Error running this sequence of passes"
Chris Lattner640f22e2003-04-24 17:02:17 +000065 << " on the input program!\n";
Chris Lattner5ef681c2003-10-17 23:07:47 +000066 BD.setPassesToRun(Suffix);
Gabor Greif8ff70c22007-07-04 21:55:50 +000067 BD.EmitProgressBitcode("pass-error", false);
Chris Lattner02526262004-02-18 21:02:04 +000068 exit(BD.debugOptimizerCrash());
Chris Lattner640f22e2003-04-24 17:02:17 +000069 }
Owen Anderson9adc0ab2009-07-14 23:09:55 +000070
Chris Lattner640f22e2003-04-24 17:02:17 +000071 // Check to see if the finished program matches the reference output...
Gabor Greif8ff70c22007-07-04 21:55:50 +000072 if (BD.diffProgram(BitcodeResult, "", true /*delete bitcode*/)) {
Misha Brukman123f8fe2004-04-22 20:02:09 +000073 std::cout << " nope.\n";
Chris Lattner59615f02005-01-15 00:07:19 +000074 if (Suffix.empty()) {
75 std::cerr << BD.getToolName() << ": I'm confused: the test fails when "
76 << "no passes are run, nondeterministic program?\n";
77 exit(1);
78 }
Misha Brukman123f8fe2004-04-22 20:02:09 +000079 return KeepSuffix; // Miscompilation detected!
Chris Lattner640f22e2003-04-24 17:02:17 +000080 }
Misha Brukman123f8fe2004-04-22 20:02:09 +000081 std::cout << " yup.\n"; // No miscompilation!
Chris Lattner640f22e2003-04-24 17:02:17 +000082
83 if (Prefix.empty()) return NoFailure;
84
Chris Lattner06943ad2003-04-25 03:16:05 +000085 // Next, see if the program is broken if we run the "prefix" passes first,
Misha Brukmanbc0e9982003-07-14 17:20:40 +000086 // then separately run the "kept" passes.
Chris Lattner640f22e2003-04-24 17:02:17 +000087 std::cout << "Checking to see if '" << getPassesString(Prefix)
David Goodwin80becf12009-07-10 21:39:28 +000088 << "' compiles correctly: ";
Chris Lattner640f22e2003-04-24 17:02:17 +000089
90 // If it is not broken with the kept passes, it's possible that the prefix
91 // passes must be run before the kept passes to break it. If the program
92 // WORKS after the prefix passes, but then fails if running the prefix AND
Gabor Greif8ff70c22007-07-04 21:55:50 +000093 // kept passes, we can update our bitcode file to include the result of the
Chris Lattner640f22e2003-04-24 17:02:17 +000094 // prefix passes, then discard the prefix passes.
95 //
Gabor Greif8ff70c22007-07-04 21:55:50 +000096 if (BD.runPasses(Prefix, BitcodeResult, false/*delete*/, true/*quiet*/)) {
Misha Brukman3da94ae2005-04-22 00:00:37 +000097 std::cerr << " Error running this sequence of passes"
Chris Lattner640f22e2003-04-24 17:02:17 +000098 << " on the input program!\n";
Chris Lattner9c6cfe12003-10-17 23:03:16 +000099 BD.setPassesToRun(Prefix);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000100 BD.EmitProgressBitcode("pass-error", false);
Chris Lattner02526262004-02-18 21:02:04 +0000101 exit(BD.debugOptimizerCrash());
Chris Lattner640f22e2003-04-24 17:02:17 +0000102 }
103
104 // If the prefix maintains the predicate by itself, only keep the prefix!
Gabor Greif8ff70c22007-07-04 21:55:50 +0000105 if (BD.diffProgram(BitcodeResult)) {
Misha Brukman123f8fe2004-04-22 20:02:09 +0000106 std::cout << " nope.\n";
Gabor Greif8ff70c22007-07-04 21:55:50 +0000107 sys::Path(BitcodeResult).eraseFromDisk();
Chris Lattner640f22e2003-04-24 17:02:17 +0000108 return KeepPrefix;
109 }
Misha Brukman123f8fe2004-04-22 20:02:09 +0000110 std::cout << " yup.\n"; // No miscompilation!
Chris Lattner640f22e2003-04-24 17:02:17 +0000111
112 // Ok, so now we know that the prefix passes work, try running the suffix
113 // passes on the result of the prefix passes.
114 //
Owen Anderson8b477ed2009-07-01 16:58:40 +0000115 Module *PrefixOutput = ParseInputFile(BitcodeResult, BD.getContext());
Chris Lattner640f22e2003-04-24 17:02:17 +0000116 if (PrefixOutput == 0) {
Gabor Greif8ff70c22007-07-04 21:55:50 +0000117 std::cerr << BD.getToolName() << ": Error reading bitcode file '"
118 << BitcodeResult << "'!\n";
Chris Lattner640f22e2003-04-24 17:02:17 +0000119 exit(1);
120 }
Gabor Greif8ff70c22007-07-04 21:55:50 +0000121 sys::Path(BitcodeResult).eraseFromDisk(); // No longer need the file on disk
Chris Lattnerf4789e62004-04-23 20:36:51 +0000122
123 // Don't check if there are no passes in the suffix.
124 if (Suffix.empty())
125 return NoFailure;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000126
Chris Lattner06943ad2003-04-25 03:16:05 +0000127 std::cout << "Checking to see if '" << getPassesString(Suffix)
Chris Lattner640f22e2003-04-24 17:02:17 +0000128 << "' passes compile correctly after the '"
129 << getPassesString(Prefix) << "' passes: ";
130
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000131 Module *OriginalInput = BD.swapProgramIn(PrefixOutput);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000132 if (BD.runPasses(Suffix, BitcodeResult, false/*delete*/, true/*quiet*/)) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000133 std::cerr << " Error running this sequence of passes"
Chris Lattner640f22e2003-04-24 17:02:17 +0000134 << " on the input program!\n";
Chris Lattner5ef681c2003-10-17 23:07:47 +0000135 BD.setPassesToRun(Suffix);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000136 BD.EmitProgressBitcode("pass-error", false);
Chris Lattner02526262004-02-18 21:02:04 +0000137 exit(BD.debugOptimizerCrash());
Chris Lattner640f22e2003-04-24 17:02:17 +0000138 }
139
140 // Run the result...
Gabor Greif8ff70c22007-07-04 21:55:50 +0000141 if (BD.diffProgram(BitcodeResult, "", true/*delete bitcode*/)) {
Misha Brukman123f8fe2004-04-22 20:02:09 +0000142 std::cout << " nope.\n";
Chris Lattner640f22e2003-04-24 17:02:17 +0000143 delete OriginalInput; // We pruned down the original input...
Chris Lattner06943ad2003-04-25 03:16:05 +0000144 return KeepSuffix;
Chris Lattner640f22e2003-04-24 17:02:17 +0000145 }
146
147 // Otherwise, we must not be running the bad pass anymore.
Misha Brukman123f8fe2004-04-22 20:02:09 +0000148 std::cout << " yup.\n"; // No miscompilation!
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000149 delete BD.swapProgramIn(OriginalInput); // Restore orig program & free test
Chris Lattner640f22e2003-04-24 17:02:17 +0000150 return NoFailure;
151}
152
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000153namespace {
Chris Lattnerfa761832004-01-14 03:38:37 +0000154 class ReduceMiscompilingFunctions : public ListReducer<Function*> {
155 BugDriver &BD;
Chris Lattnerb15825b2004-04-05 21:37:38 +0000156 bool (*TestFn)(BugDriver &, Module *, Module *);
Chris Lattnerfa761832004-01-14 03:38:37 +0000157 public:
Chris Lattnerb15825b2004-04-05 21:37:38 +0000158 ReduceMiscompilingFunctions(BugDriver &bd,
159 bool (*F)(BugDriver &, Module *, Module *))
160 : BD(bd), TestFn(F) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000161
Chris Lattnerfa761832004-01-14 03:38:37 +0000162 virtual TestResult doTest(std::vector<Function*> &Prefix,
163 std::vector<Function*> &Suffix) {
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000164 if (!Suffix.empty() && TestFuncs(Suffix))
Chris Lattnerfa761832004-01-14 03:38:37 +0000165 return KeepSuffix;
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000166 if (!Prefix.empty() && TestFuncs(Prefix))
Chris Lattnerfa761832004-01-14 03:38:37 +0000167 return KeepPrefix;
168 return NoFailure;
169 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000170
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000171 bool TestFuncs(const std::vector<Function*> &Prefix);
Chris Lattnerfa761832004-01-14 03:38:37 +0000172 };
173}
Chris Lattner640f22e2003-04-24 17:02:17 +0000174
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000175/// TestMergedProgram - Given two modules, link them together and run the
176/// program, checking to see if the program matches the diff. If the diff
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000177/// matches, return false, otherwise return true. If the DeleteInputs argument
178/// is set to true then this function deletes both input modules before it
179/// returns.
Misha Brukman8c194ea2004-04-21 18:36:43 +0000180///
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000181static bool TestMergedProgram(BugDriver &BD, Module *M1, Module *M2,
182 bool DeleteInputs) {
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000183 // Link the two portions of the program back to together.
184 std::string ErrorMsg;
Chris Lattner90c18c52004-11-16 06:31:38 +0000185 if (!DeleteInputs) {
186 M1 = CloneModule(M1);
187 M2 = CloneModule(M2);
188 }
Reid Spencere4874022004-12-13 03:01:03 +0000189 if (Linker::LinkModules(M1, M2, &ErrorMsg)) {
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000190 std::cerr << BD.getToolName() << ": Error linking modules together:"
Misha Brukmaneed80e22004-07-23 01:30:49 +0000191 << ErrorMsg << '\n';
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000192 exit(1);
193 }
Chris Lattner90c18c52004-11-16 06:31:38 +0000194 delete M2; // We are done with this module.
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000195
196 Module *OldProgram = BD.swapProgramIn(M1);
197
198 // Execute the program. If it does not match the expected output, we must
199 // return true.
200 bool Broken = BD.diffProgram();
201
202 // Delete the linked module & restore the original
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000203 BD.swapProgramIn(OldProgram);
Chris Lattner5313f232004-04-02 06:32:17 +0000204 delete M1;
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000205 return Broken;
206}
207
Misha Brukman8c194ea2004-04-21 18:36:43 +0000208/// TestFuncs - split functions in a Module into two groups: those that are
209/// under consideration for miscompilation vs. those that are not, and test
210/// accordingly. Each group of functions becomes a separate Module.
211///
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000212bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*>&Funcs){
Chris Lattner640f22e2003-04-24 17:02:17 +0000213 // Test to see if the function is misoptimized if we ONLY run it on the
214 // functions listed in Funcs.
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000215 std::cout << "Checking to see if the program is misoptimized when "
216 << (Funcs.size()==1 ? "this function is" : "these functions are")
217 << " run through the pass"
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000218 << (BD.getPassesToRun().size() == 1 ? "" : "es") << ":";
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000219 PrintFunctionList(Funcs);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000220 std::cout << '\n';
Chris Lattner640f22e2003-04-24 17:02:17 +0000221
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000222 // Split the module into the two halves of the program we want.
Dan Gohmand50330c2009-04-22 15:57:18 +0000223 DenseMap<const Value*, Value*> ValueMap;
224 Module *ToNotOptimize = CloneModule(BD.getProgram(), ValueMap);
225 Module *ToOptimize = SplitFunctionsOutOfModule(ToNotOptimize, Funcs,
226 ValueMap);
Chris Lattner640f22e2003-04-24 17:02:17 +0000227
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000228 // Run the predicate, note that the predicate will delete both input modules.
Chris Lattnerb15825b2004-04-05 21:37:38 +0000229 return TestFn(BD, ToOptimize, ToNotOptimize);
Chris Lattner640f22e2003-04-24 17:02:17 +0000230}
231
Misha Brukman8c194ea2004-04-21 18:36:43 +0000232/// DisambiguateGlobalSymbols - Mangle symbols to guarantee uniqueness by
233/// modifying predominantly internal symbols rather than external ones.
234///
Chris Lattner36ee07f2004-04-11 23:52:35 +0000235static void DisambiguateGlobalSymbols(Module *M) {
236 // Try not to cause collisions by minimizing chances of renaming an
237 // already-external symbol, so take in external globals and functions as-is.
238 // The code should work correctly without disambiguation (assuming the same
239 // mangler is used by the two code generators), but having symbols with the
240 // same name causes warnings to be emitted by the code generator.
241 Mangler Mang(*M);
Andrew Lenharth0fccc742005-12-06 20:51:30 +0000242 // Agree with the CBE on symbol naming
243 Mang.markCharUnacceptable('.');
Chris Lattner67ef9e42006-05-04 23:35:31 +0000244 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Chris Lattner9d5511b2009-07-15 04:50:47 +0000245 I != E; ++I) {
246 // Don't mangle asm names.
247 if (!I->hasName() || I->getName()[0] != 1)
248 I->setName(Mang.getMangledName(I));
249 }
250 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
251 // Don't mangle asm names.
252 if (!I->hasName() || I->getName()[0] != 1)
253 I->setName(Mang.getMangledName(I));
254 }
Chris Lattner36ee07f2004-04-11 23:52:35 +0000255}
256
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000257/// ExtractLoops - Given a reduced list of functions that still exposed the bug,
258/// check to see if we can extract the loops in the region without obscuring the
259/// bug. If so, it reduces the amount of code identified.
Misha Brukman8c194ea2004-04-21 18:36:43 +0000260///
Chris Lattnerb15825b2004-04-05 21:37:38 +0000261static bool ExtractLoops(BugDriver &BD,
262 bool (*TestFn)(BugDriver &, Module *, Module *),
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000263 std::vector<Function*> &MiscompiledFunctions) {
264 bool MadeChange = false;
265 while (1) {
Chris Lattneraed98fa2005-08-02 23:25:56 +0000266 if (BugpointIsInterrupted) return MadeChange;
267
Dan Gohmand50330c2009-04-22 15:57:18 +0000268 DenseMap<const Value*, Value*> ValueMap;
269 Module *ToNotOptimize = CloneModule(BD.getProgram(), ValueMap);
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000270 Module *ToOptimize = SplitFunctionsOutOfModule(ToNotOptimize,
Dan Gohmand50330c2009-04-22 15:57:18 +0000271 MiscompiledFunctions,
272 ValueMap);
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000273 Module *ToOptimizeLoopExtracted = BD.ExtractLoop(ToOptimize);
274 if (!ToOptimizeLoopExtracted) {
275 // If the loop extractor crashed or if there were no extractible loops,
276 // then this chapter of our odyssey is over with.
277 delete ToNotOptimize;
278 delete ToOptimize;
279 return MadeChange;
280 }
281
282 std::cerr << "Extracted a loop from the breaking portion of the program.\n";
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000283
284 // Bugpoint is intentionally not very trusting of LLVM transformations. In
285 // particular, we're not going to assume that the loop extractor works, so
286 // we're going to test the newly loop extracted program to make sure nothing
287 // has broken. If something broke, then we'll inform the user and stop
288 // extraction.
Dan Gohman70ef4492008-12-08 04:02:47 +0000289 AbstractInterpreter *AI = BD.switchToSafeInterpreter();
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000290 if (TestMergedProgram(BD, ToOptimizeLoopExtracted, ToNotOptimize, false)) {
Chris Lattnera57d86b2004-04-05 22:58:16 +0000291 BD.switchToInterpreter(AI);
292
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000293 // Merged program doesn't work anymore!
294 std::cerr << " *** ERROR: Loop extraction broke the program. :("
295 << " Please report a bug!\n";
296 std::cerr << " Continuing on with un-loop-extracted version.\n";
Chris Lattner56c41862005-05-08 21:54:56 +0000297
298 BD.writeProgramToFile("bugpoint-loop-extract-fail-tno.bc", ToNotOptimize);
299 BD.writeProgramToFile("bugpoint-loop-extract-fail-to.bc", ToOptimize);
300 BD.writeProgramToFile("bugpoint-loop-extract-fail-to-le.bc",
301 ToOptimizeLoopExtracted);
302
303 std::cerr << "Please submit the bugpoint-loop-extract-fail-*.bc files.\n";
304 delete ToOptimize;
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000305 delete ToNotOptimize;
306 delete ToOptimizeLoopExtracted;
307 return MadeChange;
308 }
Chris Lattner56c41862005-05-08 21:54:56 +0000309 delete ToOptimize;
Chris Lattnera57d86b2004-04-05 22:58:16 +0000310 BD.switchToInterpreter(AI);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000311
Chris Lattnerb15825b2004-04-05 21:37:38 +0000312 std::cout << " Testing after loop extraction:\n";
313 // Clone modules, the tester function will free them.
314 Module *TOLEBackup = CloneModule(ToOptimizeLoopExtracted);
315 Module *TNOBackup = CloneModule(ToNotOptimize);
316 if (!TestFn(BD, ToOptimizeLoopExtracted, ToNotOptimize)) {
317 std::cout << "*** Loop extraction masked the problem. Undoing.\n";
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000318 // If the program is not still broken, then loop extraction did something
319 // that masked the error. Stop loop extraction now.
Chris Lattnerb15825b2004-04-05 21:37:38 +0000320 delete TOLEBackup;
321 delete TNOBackup;
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000322 return MadeChange;
323 }
Chris Lattnerb15825b2004-04-05 21:37:38 +0000324 ToOptimizeLoopExtracted = TOLEBackup;
325 ToNotOptimize = TNOBackup;
326
327 std::cout << "*** Loop extraction successful!\n";
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000328
Chris Lattner90c18c52004-11-16 06:31:38 +0000329 std::vector<std::pair<std::string, const FunctionType*> > MisCompFunctions;
330 for (Module::iterator I = ToOptimizeLoopExtracted->begin(),
331 E = ToOptimizeLoopExtracted->end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000332 if (!I->isDeclaration())
Chris Lattnerfa1af132004-11-19 07:09:40 +0000333 MisCompFunctions.push_back(std::make_pair(I->getName(),
334 I->getFunctionType()));
Chris Lattner90c18c52004-11-16 06:31:38 +0000335
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000336 // Okay, great! Now we know that we extracted a loop and that loop
337 // extraction both didn't break the program, and didn't mask the problem.
338 // Replace the current program with the loop extracted version, and try to
339 // extract another loop.
340 std::string ErrorMsg;
Reid Spencere4874022004-12-13 03:01:03 +0000341 if (Linker::LinkModules(ToNotOptimize, ToOptimizeLoopExtracted, &ErrorMsg)){
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000342 std::cerr << BD.getToolName() << ": Error linking modules together:"
Misha Brukmaneed80e22004-07-23 01:30:49 +0000343 << ErrorMsg << '\n';
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000344 exit(1);
345 }
Chris Lattner90c18c52004-11-16 06:31:38 +0000346 delete ToOptimizeLoopExtracted;
Chris Lattnerd3a533d2004-03-17 17:42:09 +0000347
348 // All of the Function*'s in the MiscompiledFunctions list are in the old
Chris Lattner5313f232004-04-02 06:32:17 +0000349 // module. Update this list to include all of the functions in the
350 // optimized and loop extracted module.
351 MiscompiledFunctions.clear();
Chris Lattner90c18c52004-11-16 06:31:38 +0000352 for (unsigned i = 0, e = MisCompFunctions.size(); i != e; ++i) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000353 Function *NewF = ToNotOptimize->getFunction(MisCompFunctions[i].first);
354
Chris Lattner90c18c52004-11-16 06:31:38 +0000355 assert(NewF && "Function not found??");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000356 assert(NewF->getFunctionType() == MisCompFunctions[i].second &&
357 "found wrong function type?");
Chris Lattner90c18c52004-11-16 06:31:38 +0000358 MiscompiledFunctions.push_back(NewF);
Chris Lattnerd3a533d2004-03-17 17:42:09 +0000359 }
360
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000361 BD.setNewProgram(ToNotOptimize);
362 MadeChange = true;
363 }
364}
365
Chris Lattner5e783ab2004-05-11 21:54:13 +0000366namespace {
367 class ReduceMiscompiledBlocks : public ListReducer<BasicBlock*> {
368 BugDriver &BD;
369 bool (*TestFn)(BugDriver &, Module *, Module *);
370 std::vector<Function*> FunctionsBeingTested;
371 public:
372 ReduceMiscompiledBlocks(BugDriver &bd,
373 bool (*F)(BugDriver &, Module *, Module *),
374 const std::vector<Function*> &Fns)
375 : BD(bd), TestFn(F), FunctionsBeingTested(Fns) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000376
Chris Lattner5e783ab2004-05-11 21:54:13 +0000377 virtual TestResult doTest(std::vector<BasicBlock*> &Prefix,
378 std::vector<BasicBlock*> &Suffix) {
379 if (!Suffix.empty() && TestFuncs(Suffix))
380 return KeepSuffix;
381 if (TestFuncs(Prefix))
382 return KeepPrefix;
383 return NoFailure;
384 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000385
Chris Lattner5e783ab2004-05-11 21:54:13 +0000386 bool TestFuncs(const std::vector<BasicBlock*> &Prefix);
387 };
388}
389
390/// TestFuncs - Extract all blocks for the miscompiled functions except for the
391/// specified blocks. If the problem still exists, return true.
392///
393bool ReduceMiscompiledBlocks::TestFuncs(const std::vector<BasicBlock*> &BBs) {
394 // Test to see if the function is misoptimized if we ONLY run it on the
395 // functions listed in Funcs.
Chris Lattner68bee932004-05-12 16:08:01 +0000396 std::cout << "Checking to see if the program is misoptimized when all ";
397 if (!BBs.empty()) {
398 std::cout << "but these " << BBs.size() << " blocks are extracted: ";
399 for (unsigned i = 0, e = BBs.size() < 10 ? BBs.size() : 10; i != e; ++i)
400 std::cout << BBs[i]->getName() << " ";
401 if (BBs.size() > 10) std::cout << "...";
402 } else {
403 std::cout << "blocks are extracted.";
404 }
Misha Brukmaneed80e22004-07-23 01:30:49 +0000405 std::cout << '\n';
Chris Lattner5e783ab2004-05-11 21:54:13 +0000406
407 // Split the module into the two halves of the program we want.
Dan Gohmand50330c2009-04-22 15:57:18 +0000408 DenseMap<const Value*, Value*> ValueMap;
409 Module *ToNotOptimize = CloneModule(BD.getProgram(), ValueMap);
Chris Lattner5e783ab2004-05-11 21:54:13 +0000410 Module *ToOptimize = SplitFunctionsOutOfModule(ToNotOptimize,
Dan Gohmand50330c2009-04-22 15:57:18 +0000411 FunctionsBeingTested,
412 ValueMap);
Chris Lattner5e783ab2004-05-11 21:54:13 +0000413
414 // Try the extraction. If it doesn't work, then the block extractor crashed
415 // or something, in which case bugpoint can't chase down this possibility.
416 if (Module *New = BD.ExtractMappedBlocksFromModule(BBs, ToOptimize)) {
417 delete ToOptimize;
418 // Run the predicate, not that the predicate will delete both input modules.
419 return TestFn(BD, New, ToNotOptimize);
420 }
421 delete ToOptimize;
422 delete ToNotOptimize;
423 return false;
424}
425
426
427/// ExtractBlocks - Given a reduced list of functions that still expose the bug,
428/// extract as many basic blocks from the region as possible without obscuring
429/// the bug.
430///
431static bool ExtractBlocks(BugDriver &BD,
432 bool (*TestFn)(BugDriver &, Module *, Module *),
433 std::vector<Function*> &MiscompiledFunctions) {
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000434 if (BugpointIsInterrupted) return false;
435
Chris Lattner5e783ab2004-05-11 21:54:13 +0000436 std::vector<BasicBlock*> Blocks;
437 for (unsigned i = 0, e = MiscompiledFunctions.size(); i != e; ++i)
438 for (Function::iterator I = MiscompiledFunctions[i]->begin(),
439 E = MiscompiledFunctions[i]->end(); I != E; ++I)
440 Blocks.push_back(I);
441
442 // Use the list reducer to identify blocks that can be extracted without
443 // obscuring the bug. The Blocks list will end up containing blocks that must
444 // be retained from the original program.
445 unsigned OldSize = Blocks.size();
Chris Lattner68bee932004-05-12 16:08:01 +0000446
447 // Check to see if all blocks are extractible first.
448 if (ReduceMiscompiledBlocks(BD, TestFn,
449 MiscompiledFunctions).TestFuncs(std::vector<BasicBlock*>())) {
450 Blocks.clear();
451 } else {
452 ReduceMiscompiledBlocks(BD, TestFn,MiscompiledFunctions).reduceList(Blocks);
453 if (Blocks.size() == OldSize)
454 return false;
455 }
Chris Lattner5e783ab2004-05-11 21:54:13 +0000456
Dan Gohmand50330c2009-04-22 15:57:18 +0000457 DenseMap<const Value*, Value*> ValueMap;
458 Module *ProgClone = CloneModule(BD.getProgram(), ValueMap);
Chris Lattner2290e752004-05-12 02:43:24 +0000459 Module *ToExtract = SplitFunctionsOutOfModule(ProgClone,
Dan Gohmand50330c2009-04-22 15:57:18 +0000460 MiscompiledFunctions,
461 ValueMap);
Chris Lattner2290e752004-05-12 02:43:24 +0000462 Module *Extracted = BD.ExtractMappedBlocksFromModule(Blocks, ToExtract);
463 if (Extracted == 0) {
Chris Lattnerda895d62005-02-27 06:18:25 +0000464 // Weird, extraction should have worked.
Chris Lattner2290e752004-05-12 02:43:24 +0000465 std::cerr << "Nondeterministic problem extracting blocks??\n";
466 delete ProgClone;
467 delete ToExtract;
468 return false;
469 }
Chris Lattner5e783ab2004-05-11 21:54:13 +0000470
Chris Lattner2290e752004-05-12 02:43:24 +0000471 // Otherwise, block extraction succeeded. Link the two program fragments back
472 // together.
473 delete ToExtract;
Chris Lattner5e783ab2004-05-11 21:54:13 +0000474
Chris Lattner90c18c52004-11-16 06:31:38 +0000475 std::vector<std::pair<std::string, const FunctionType*> > MisCompFunctions;
476 for (Module::iterator I = Extracted->begin(), E = Extracted->end();
477 I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000478 if (!I->isDeclaration())
Chris Lattnerfa1af132004-11-19 07:09:40 +0000479 MisCompFunctions.push_back(std::make_pair(I->getName(),
480 I->getFunctionType()));
Chris Lattner90c18c52004-11-16 06:31:38 +0000481
Chris Lattner2290e752004-05-12 02:43:24 +0000482 std::string ErrorMsg;
Reid Spencere4874022004-12-13 03:01:03 +0000483 if (Linker::LinkModules(ProgClone, Extracted, &ErrorMsg)) {
Chris Lattner2290e752004-05-12 02:43:24 +0000484 std::cerr << BD.getToolName() << ": Error linking modules together:"
Misha Brukmaneed80e22004-07-23 01:30:49 +0000485 << ErrorMsg << '\n';
Chris Lattner2290e752004-05-12 02:43:24 +0000486 exit(1);
487 }
Chris Lattner90c18c52004-11-16 06:31:38 +0000488 delete Extracted;
Chris Lattner5e783ab2004-05-11 21:54:13 +0000489
Chris Lattner2290e752004-05-12 02:43:24 +0000490 // Set the new program and delete the old one.
491 BD.setNewProgram(ProgClone);
Chris Lattner5e783ab2004-05-11 21:54:13 +0000492
Chris Lattner2290e752004-05-12 02:43:24 +0000493 // Update the list of miscompiled functions.
494 MiscompiledFunctions.clear();
Chris Lattner5e783ab2004-05-11 21:54:13 +0000495
Chris Lattner90c18c52004-11-16 06:31:38 +0000496 for (unsigned i = 0, e = MisCompFunctions.size(); i != e; ++i) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000497 Function *NewF = ProgClone->getFunction(MisCompFunctions[i].first);
Chris Lattner90c18c52004-11-16 06:31:38 +0000498 assert(NewF && "Function not found??");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000499 assert(NewF->getFunctionType() == MisCompFunctions[i].second &&
500 "Function has wrong type??");
Chris Lattner90c18c52004-11-16 06:31:38 +0000501 MiscompiledFunctions.push_back(NewF);
502 }
Chris Lattner2290e752004-05-12 02:43:24 +0000503
504 return true;
Chris Lattner5e783ab2004-05-11 21:54:13 +0000505}
506
507
Chris Lattnerb15825b2004-04-05 21:37:38 +0000508/// DebugAMiscompilation - This is a generic driver to narrow down
509/// miscompilations, either in an optimization or a code generator.
Misha Brukman8c194ea2004-04-21 18:36:43 +0000510///
Chris Lattnerb15825b2004-04-05 21:37:38 +0000511static std::vector<Function*>
512DebugAMiscompilation(BugDriver &BD,
513 bool (*TestFn)(BugDriver &, Module *, Module *)) {
514 // Okay, now that we have reduced the list of passes which are causing the
515 // failure, see if we can pin down which functions are being
516 // miscompiled... first build a list of all of the non-external functions in
517 // the program.
518 std::vector<Function*> MiscompiledFunctions;
519 Module *Prog = BD.getProgram();
520 for (Module::iterator I = Prog->begin(), E = Prog->end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000521 if (!I->isDeclaration())
Chris Lattnerb15825b2004-04-05 21:37:38 +0000522 MiscompiledFunctions.push_back(I);
523
524 // Do the reduction...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000525 if (!BugpointIsInterrupted)
526 ReduceMiscompilingFunctions(BD, TestFn).reduceList(MiscompiledFunctions);
Chris Lattnerb15825b2004-04-05 21:37:38 +0000527
528 std::cout << "\n*** The following function"
529 << (MiscompiledFunctions.size() == 1 ? " is" : "s are")
530 << " being miscompiled: ";
531 PrintFunctionList(MiscompiledFunctions);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000532 std::cout << '\n';
Chris Lattnerb15825b2004-04-05 21:37:38 +0000533
534 // See if we can rip any loops out of the miscompiled functions and still
535 // trigger the problem.
Reid Spencerdc31a8a2006-11-11 19:05:02 +0000536
Reid Spencer2803b4c2006-11-11 19:59:25 +0000537 if (!BugpointIsInterrupted && !DisableLoopExtraction &&
538 ExtractLoops(BD, TestFn, MiscompiledFunctions)) {
Chris Lattnerb15825b2004-04-05 21:37:38 +0000539 // Okay, we extracted some loops and the problem still appears. See if we
540 // can eliminate some of the created functions from being candidates.
541
Chris Lattner36ee07f2004-04-11 23:52:35 +0000542 // Loop extraction can introduce functions with the same name (foo_code).
543 // Make sure to disambiguate the symbols so that when the program is split
544 // apart that we can link it back together again.
545 DisambiguateGlobalSymbols(BD.getProgram());
546
Chris Lattnerb15825b2004-04-05 21:37:38 +0000547 // Do the reduction...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000548 if (!BugpointIsInterrupted)
549 ReduceMiscompilingFunctions(BD, TestFn).reduceList(MiscompiledFunctions);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000550
Chris Lattnerb15825b2004-04-05 21:37:38 +0000551 std::cout << "\n*** The following function"
552 << (MiscompiledFunctions.size() == 1 ? " is" : "s are")
553 << " being miscompiled: ";
554 PrintFunctionList(MiscompiledFunctions);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000555 std::cout << '\n';
Chris Lattnerb15825b2004-04-05 21:37:38 +0000556 }
557
Chris Lattneraed98fa2005-08-02 23:25:56 +0000558 if (!BugpointIsInterrupted &&
559 ExtractBlocks(BD, TestFn, MiscompiledFunctions)) {
Chris Lattner5e783ab2004-05-11 21:54:13 +0000560 // Okay, we extracted some blocks and the problem still appears. See if we
561 // can eliminate some of the created functions from being candidates.
562
563 // Block extraction can introduce functions with the same name (foo_code).
564 // Make sure to disambiguate the symbols so that when the program is split
565 // apart that we can link it back together again.
566 DisambiguateGlobalSymbols(BD.getProgram());
567
568 // Do the reduction...
569 ReduceMiscompilingFunctions(BD, TestFn).reduceList(MiscompiledFunctions);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000570
Chris Lattner5e783ab2004-05-11 21:54:13 +0000571 std::cout << "\n*** The following function"
572 << (MiscompiledFunctions.size() == 1 ? " is" : "s are")
573 << " being miscompiled: ";
574 PrintFunctionList(MiscompiledFunctions);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000575 std::cout << '\n';
Chris Lattner5e783ab2004-05-11 21:54:13 +0000576 }
577
Chris Lattnerb15825b2004-04-05 21:37:38 +0000578 return MiscompiledFunctions;
579}
580
Chris Lattnera57d86b2004-04-05 22:58:16 +0000581/// TestOptimizer - This is the predicate function used to check to see if the
582/// "Test" portion of the program is misoptimized. If so, return true. In any
583/// case, both module arguments are deleted.
Misha Brukman8c194ea2004-04-21 18:36:43 +0000584///
Chris Lattnerb15825b2004-04-05 21:37:38 +0000585static bool TestOptimizer(BugDriver &BD, Module *Test, Module *Safe) {
586 // Run the optimization passes on ToOptimize, producing a transformed version
587 // of the functions being tested.
588 std::cout << " Optimizing functions being tested: ";
589 Module *Optimized = BD.runPassesOn(Test, BD.getPassesToRun(),
590 /*AutoDebugCrashes*/true);
591 std::cout << "done.\n";
592 delete Test;
593
594 std::cout << " Checking to see if the merged program executes correctly: ";
Chris Lattner2423db02004-04-09 22:28:33 +0000595 bool Broken = TestMergedProgram(BD, Optimized, Safe, true);
Chris Lattnerb15825b2004-04-05 21:37:38 +0000596 std::cout << (Broken ? " nope.\n" : " yup.\n");
597 return Broken;
598}
599
600
Chris Lattner4a106452002-12-23 23:50:16 +0000601/// debugMiscompilation - This method is used when the passes selected are not
602/// crashing, but the generated output is semantically different from the
603/// input.
604///
605bool BugDriver::debugMiscompilation() {
Chris Lattner4a106452002-12-23 23:50:16 +0000606 // Make sure something was miscompiled...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000607 if (!BugpointIsInterrupted)
608 if (!ReduceMiscompilingPasses(*this).reduceList(PassesToRun)) {
609 std::cerr << "*** Optimized program matches reference output! No problem"
610 << " detected...\nbugpoint can't help you with your problem!\n";
611 return false;
612 }
Chris Lattner4a106452002-12-23 23:50:16 +0000613
Chris Lattner640f22e2003-04-24 17:02:17 +0000614 std::cout << "\n*** Found miscompiling pass"
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000615 << (getPassesToRun().size() == 1 ? "" : "es") << ": "
Misha Brukmaneed80e22004-07-23 01:30:49 +0000616 << getPassesString(getPassesToRun()) << '\n';
Gabor Greif8ff70c22007-07-04 21:55:50 +0000617 EmitProgressBitcode("passinput");
Chris Lattner4a106452002-12-23 23:50:16 +0000618
Chris Lattnerb15825b2004-04-05 21:37:38 +0000619 std::vector<Function*> MiscompiledFunctions =
620 DebugAMiscompilation(*this, TestOptimizer);
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000621
Gabor Greif8ff70c22007-07-04 21:55:50 +0000622 // Output a bunch of bitcode files for the user...
623 std::cout << "Outputting reduced bitcode files which expose the problem:\n";
Dan Gohmand50330c2009-04-22 15:57:18 +0000624 DenseMap<const Value*, Value*> ValueMap;
625 Module *ToNotOptimize = CloneModule(getProgram(), ValueMap);
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000626 Module *ToOptimize = SplitFunctionsOutOfModule(ToNotOptimize,
Dan Gohmand50330c2009-04-22 15:57:18 +0000627 MiscompiledFunctions,
628 ValueMap);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000629
630 std::cout << " Non-optimized portion: ";
Chris Lattnerb15825b2004-04-05 21:37:38 +0000631 ToNotOptimize = swapProgramIn(ToNotOptimize);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000632 EmitProgressBitcode("tonotoptimize", true);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000633 setNewProgram(ToNotOptimize); // Delete hacked module.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000634
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000635 std::cout << " Portion that is input to optimizer: ";
Chris Lattnerb15825b2004-04-05 21:37:38 +0000636 ToOptimize = swapProgramIn(ToOptimize);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000637 EmitProgressBitcode("tooptimize");
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000638 setNewProgram(ToOptimize); // Delete hacked module.
Chris Lattner4a106452002-12-23 23:50:16 +0000639
Chris Lattner4a106452002-12-23 23:50:16 +0000640 return false;
641}
Brian Gaeked0fde302003-11-11 22:41:34 +0000642
Chris Lattnera57d86b2004-04-05 22:58:16 +0000643/// CleanupAndPrepareModules - Get the specified modules ready for code
644/// generator testing.
Misha Brukman8c194ea2004-04-21 18:36:43 +0000645///
Chris Lattnera57d86b2004-04-05 22:58:16 +0000646static void CleanupAndPrepareModules(BugDriver &BD, Module *&Test,
647 Module *Safe) {
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000648 LLVMContext &Context = BD.getContext();
649
Chris Lattnera57d86b2004-04-05 22:58:16 +0000650 // Clean up the modules, removing extra cruft that we don't need anymore...
651 Test = BD.performFinalCleanups(Test);
652
653 // If we are executing the JIT, we have several nasty issues to take care of.
654 if (!BD.isExecutingJIT()) return;
655
656 // First, if the main function is in the Safe module, we must add a stub to
657 // the Test module to call into it. Thus, we create a new function `main'
658 // which just calls the old one.
Reid Spencer688b0492007-02-05 21:19:13 +0000659 if (Function *oldMain = Safe->getFunction("main"))
Reid Spencer5cbf9852007-01-30 20:08:39 +0000660 if (!oldMain->isDeclaration()) {
Chris Lattnera57d86b2004-04-05 22:58:16 +0000661 // Rename it
662 oldMain->setName("llvm_bugpoint_old_main");
663 // Create a NEW `main' function with same type in the test module.
Gabor Greif051a9502008-04-06 20:25:17 +0000664 Function *newMain = Function::Create(oldMain->getFunctionType(),
665 GlobalValue::ExternalLinkage,
666 "main", Test);
Chris Lattnera57d86b2004-04-05 22:58:16 +0000667 // Create an `oldmain' prototype in the test module, which will
668 // corresponds to the real main function in the same module.
Gabor Greif051a9502008-04-06 20:25:17 +0000669 Function *oldMainProto = Function::Create(oldMain->getFunctionType(),
670 GlobalValue::ExternalLinkage,
671 oldMain->getName(), Test);
Chris Lattnera57d86b2004-04-05 22:58:16 +0000672 // Set up and remember the argument list for the main function.
673 std::vector<Value*> args;
Alkis Evlogimenos5a1c58d2005-03-15 07:02:26 +0000674 for (Function::arg_iterator
675 I = newMain->arg_begin(), E = newMain->arg_end(),
676 OI = oldMain->arg_begin(); I != E; ++I, ++OI) {
Owen Anderson6bc41e82008-04-14 17:38:21 +0000677 I->setName(OI->getName()); // Copy argument names from oldMain
Chris Lattnera57d86b2004-04-05 22:58:16 +0000678 args.push_back(I);
679 }
680
681 // Call the old main function and return its result
Gabor Greif051a9502008-04-06 20:25:17 +0000682 BasicBlock *BB = BasicBlock::Create("entry", newMain);
683 CallInst *call = CallInst::Create(oldMainProto, args.begin(), args.end(),
684 "", BB);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000685
Chris Lattnera57d86b2004-04-05 22:58:16 +0000686 // If the type of old function wasn't void, return value of call
Gabor Greif051a9502008-04-06 20:25:17 +0000687 ReturnInst::Create(call, BB);
Chris Lattnera57d86b2004-04-05 22:58:16 +0000688 }
689
690 // The second nasty issue we must deal with in the JIT is that the Safe
691 // module cannot directly reference any functions defined in the test
692 // module. Instead, we use a JIT API call to dynamically resolve the
693 // symbol.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000694
Chris Lattnera57d86b2004-04-05 22:58:16 +0000695 // Add the resolver to the Safe module.
696 // Prototype: void *getPointerToNamedFunction(const char* Name)
Chris Lattner2db43c82007-01-07 08:13:39 +0000697 Constant *resolverFunc =
Chris Lattnera57d86b2004-04-05 22:58:16 +0000698 Safe->getOrInsertFunction("getPointerToNamedFunction",
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000699 Context.getPointerTypeUnqual(Type::Int8Ty),
700 Context.getPointerTypeUnqual(Type::Int8Ty), (Type *)0);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000701
Chris Lattnera57d86b2004-04-05 22:58:16 +0000702 // Use the function we just added to get addresses of functions we need.
Misha Brukmandc7fef82004-04-19 01:12:01 +0000703 for (Module::iterator F = Safe->begin(), E = Safe->end(); F != E; ++F) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000704 if (F->isDeclaration() && !F->use_empty() && &*F != resolverFunc &&
Duncan Sandsa3355ff2007-12-03 20:06:50 +0000705 !F->isIntrinsic() /* ignore intrinsics */) {
Reid Spencer688b0492007-02-05 21:19:13 +0000706 Function *TestFn = Test->getFunction(F->getName());
Chris Lattnera57d86b2004-04-05 22:58:16 +0000707
708 // Don't forward functions which are external in the test module too.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000709 if (TestFn && !TestFn->isDeclaration()) {
Chris Lattnera57d86b2004-04-05 22:58:16 +0000710 // 1. Add a string constant with its name to the global file
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000711 Constant *InitArray = Context.getConstantArray(F->getName());
Chris Lattnera57d86b2004-04-05 22:58:16 +0000712 GlobalVariable *funcName =
Owen Andersone9b11b42009-07-08 19:03:57 +0000713 new GlobalVariable(*Safe, InitArray->getType(), true /*isConstant*/,
Misha Brukman3da94ae2005-04-22 00:00:37 +0000714 GlobalValue::InternalLinkage, InitArray,
Owen Andersone9b11b42009-07-08 19:03:57 +0000715 F->getName() + "_name");
Chris Lattnera57d86b2004-04-05 22:58:16 +0000716
717 // 2. Use `GetElementPtr *funcName, 0, 0' to convert the string to an
718 // sbyte* so it matches the signature of the resolver function.
719
720 // GetElementPtr *funcName, ulong 0, ulong 0
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000721 std::vector<Constant*> GEPargs(2, Context.getNullValue(Type::Int32Ty));
722 Value *GEP =
723 Context.getConstantExprGetElementPtr(funcName, &GEPargs[0], 2);
Chris Lattnera57d86b2004-04-05 22:58:16 +0000724 std::vector<Value*> ResolverArgs;
725 ResolverArgs.push_back(GEP);
726
Misha Brukmande4803d2004-04-19 03:36:47 +0000727 // Rewrite uses of F in global initializers, etc. to uses of a wrapper
728 // function that dynamically resolves the calls to F via our JIT API
Chris Lattnera3efca12005-07-12 01:00:32 +0000729 if (!F->use_empty()) {
730 // Create a new global to hold the cached function pointer.
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000731 Constant *NullPtr = Context.getConstantPointerNull(F->getType());
Chris Lattnera3efca12005-07-12 01:00:32 +0000732 GlobalVariable *Cache =
Owen Andersone9b11b42009-07-08 19:03:57 +0000733 new GlobalVariable(*F->getParent(), F->getType(),
734 false, GlobalValue::InternalLinkage,
735 NullPtr,F->getName()+".fpcache");
Jeff Cohen00b168892005-07-27 06:12:32 +0000736
Misha Brukmande4803d2004-04-19 03:36:47 +0000737 // Construct a new stub function that will re-route calls to F
Misha Brukmandc7fef82004-04-19 01:12:01 +0000738 const FunctionType *FuncTy = F->getFunctionType();
Gabor Greif051a9502008-04-06 20:25:17 +0000739 Function *FuncWrapper = Function::Create(FuncTy,
740 GlobalValue::InternalLinkage,
741 F->getName() + "_wrapper",
742 F->getParent());
743 BasicBlock *EntryBB = BasicBlock::Create("entry", FuncWrapper);
744 BasicBlock *DoCallBB = BasicBlock::Create("usecache", FuncWrapper);
745 BasicBlock *LookupBB = BasicBlock::Create("lookupfp", FuncWrapper);
Jeff Cohen00b168892005-07-27 06:12:32 +0000746
Chris Lattnera3efca12005-07-12 01:00:32 +0000747 // Check to see if we already looked up the value.
748 Value *CachedVal = new LoadInst(Cache, "fpcache", EntryBB);
Owen Anderson333c4002009-07-09 23:48:35 +0000749 Value *IsNull = new ICmpInst(*EntryBB, ICmpInst::ICMP_EQ, CachedVal,
750 NullPtr, "isNull");
Gabor Greif051a9502008-04-06 20:25:17 +0000751 BranchInst::Create(LookupBB, DoCallBB, IsNull, EntryBB);
Jeff Cohen00b168892005-07-27 06:12:32 +0000752
Misha Brukmande4803d2004-04-19 03:36:47 +0000753 // Resolve the call to function F via the JIT API:
754 //
755 // call resolver(GetElementPtr...)
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000756 CallInst *Resolver =
757 CallInst::Create(resolverFunc, ResolverArgs.begin(),
758 ResolverArgs.end(), "resolver", LookupBB);
759
760 // Cast the result from the resolver to correctly-typed function.
761 CastInst *CastedResolver =
762 new BitCastInst(Resolver,
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000763 Context.getPointerTypeUnqual(F->getFunctionType()),
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000764 "resolverCast", LookupBB);
Reid Spencer3da59db2006-11-27 01:05:10 +0000765
Chris Lattnera3efca12005-07-12 01:00:32 +0000766 // Save the value in our cache.
767 new StoreInst(CastedResolver, Cache, LookupBB);
Gabor Greif051a9502008-04-06 20:25:17 +0000768 BranchInst::Create(DoCallBB, LookupBB);
Jeff Cohen00b168892005-07-27 06:12:32 +0000769
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000770 PHINode *FuncPtr = PHINode::Create(NullPtr->getType(),
771 "fp", DoCallBB);
Chris Lattnera3efca12005-07-12 01:00:32 +0000772 FuncPtr->addIncoming(CastedResolver, LookupBB);
773 FuncPtr->addIncoming(CachedVal, EntryBB);
Jeff Cohen00b168892005-07-27 06:12:32 +0000774
Chris Lattnera3efca12005-07-12 01:00:32 +0000775 // Save the argument list.
Misha Brukmandc7fef82004-04-19 01:12:01 +0000776 std::vector<Value*> Args;
Alkis Evlogimenos5a1c58d2005-03-15 07:02:26 +0000777 for (Function::arg_iterator i = FuncWrapper->arg_begin(),
778 e = FuncWrapper->arg_end(); i != e; ++i)
Misha Brukmandc7fef82004-04-19 01:12:01 +0000779 Args.push_back(i);
780
781 // Pass on the arguments to the real function, return its result
782 if (F->getReturnType() == Type::VoidTy) {
Gabor Greif051a9502008-04-06 20:25:17 +0000783 CallInst::Create(FuncPtr, Args.begin(), Args.end(), "", DoCallBB);
784 ReturnInst::Create(DoCallBB);
Misha Brukmandc7fef82004-04-19 01:12:01 +0000785 } else {
Gabor Greif051a9502008-04-06 20:25:17 +0000786 CallInst *Call = CallInst::Create(FuncPtr, Args.begin(), Args.end(),
787 "retval", DoCallBB);
788 ReturnInst::Create(Call, DoCallBB);
Misha Brukmandc7fef82004-04-19 01:12:01 +0000789 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000790
Misha Brukmande4803d2004-04-19 03:36:47 +0000791 // Use the wrapper function instead of the old function
792 F->replaceAllUsesWith(FuncWrapper);
Misha Brukmandc7fef82004-04-19 01:12:01 +0000793 }
Chris Lattnera57d86b2004-04-05 22:58:16 +0000794 }
795 }
796 }
797
798 if (verifyModule(*Test) || verifyModule(*Safe)) {
799 std::cerr << "Bugpoint has a bug, which corrupted a module!!\n";
800 abort();
801 }
802}
803
804
805
806/// TestCodeGenerator - This is the predicate function used to check to see if
807/// the "Test" portion of the program is miscompiled by the code generator under
808/// test. If so, return true. In any case, both module arguments are deleted.
Misha Brukman8c194ea2004-04-21 18:36:43 +0000809///
Chris Lattnera57d86b2004-04-05 22:58:16 +0000810static bool TestCodeGenerator(BugDriver &BD, Module *Test, Module *Safe) {
811 CleanupAndPrepareModules(BD, Test, Safe);
812
Reid Spencer97182982004-12-15 01:53:08 +0000813 sys::Path TestModuleBC("bugpoint.test.bc");
Reid Spencer51c5a282006-08-23 20:34:57 +0000814 std::string ErrMsg;
815 if (TestModuleBC.makeUnique(true, &ErrMsg)) {
816 std::cerr << BD.getToolName() << "Error making unique filename: "
817 << ErrMsg << "\n";
818 exit(1);
819 }
Reid Spencer97182982004-12-15 01:53:08 +0000820 if (BD.writeProgramToFile(TestModuleBC.toString(), Test)) {
Gabor Greif8ff70c22007-07-04 21:55:50 +0000821 std::cerr << "Error writing bitcode to `" << TestModuleBC << "'\nExiting.";
Chris Lattnera57d86b2004-04-05 22:58:16 +0000822 exit(1);
823 }
824 delete Test;
825
826 // Make the shared library
Reid Spencer97182982004-12-15 01:53:08 +0000827 sys::Path SafeModuleBC("bugpoint.safe.bc");
Reid Spencer51c5a282006-08-23 20:34:57 +0000828 if (SafeModuleBC.makeUnique(true, &ErrMsg)) {
829 std::cerr << BD.getToolName() << "Error making unique filename: "
830 << ErrMsg << "\n";
831 exit(1);
832 }
Chris Lattnera57d86b2004-04-05 22:58:16 +0000833
Reid Spencer97182982004-12-15 01:53:08 +0000834 if (BD.writeProgramToFile(SafeModuleBC.toString(), Safe)) {
Gabor Greif8ff70c22007-07-04 21:55:50 +0000835 std::cerr << "Error writing bitcode to `" << SafeModuleBC << "'\nExiting.";
Chris Lattnera57d86b2004-04-05 22:58:16 +0000836 exit(1);
837 }
Reid Spencer97182982004-12-15 01:53:08 +0000838 std::string SharedObject = BD.compileSharedObject(SafeModuleBC.toString());
Chris Lattnera57d86b2004-04-05 22:58:16 +0000839 delete Safe;
840
841 // Run the code generator on the `Test' code, loading the shared library.
842 // The function returns whether or not the new output differs from reference.
Reid Spencer97182982004-12-15 01:53:08 +0000843 int Result = BD.diffProgram(TestModuleBC.toString(), SharedObject, false);
Chris Lattnera57d86b2004-04-05 22:58:16 +0000844
845 if (Result)
846 std::cerr << ": still failing!\n";
847 else
848 std::cerr << ": didn't fail.\n";
Reid Spencera229c5c2005-07-08 03:08:58 +0000849 TestModuleBC.eraseFromDisk();
850 SafeModuleBC.eraseFromDisk();
851 sys::Path(SharedObject).eraseFromDisk();
Chris Lattnera57d86b2004-04-05 22:58:16 +0000852
853 return Result;
854}
855
856
Misha Brukman8c194ea2004-04-21 18:36:43 +0000857/// debugCodeGenerator - debug errors in LLC, LLI, or CBE.
858///
Chris Lattnera57d86b2004-04-05 22:58:16 +0000859bool BugDriver::debugCodeGenerator() {
Dan Gohman70ef4492008-12-08 04:02:47 +0000860 if ((void*)SafeInterpreter == (void*)Interpreter) {
861 std::string Result = executeProgramSafely("bugpoint.safe.out");
862 std::cout << "\n*** The \"safe\" i.e. 'known good' backend cannot match "
863 << "the reference diff. This may be due to a\n front-end "
864 << "bug or a bug in the original program, but this can also "
865 << "happen if bugpoint isn't running the program with the "
866 << "right flags or input.\n I left the result of executing "
867 << "the program with the \"safe\" backend in this file for "
868 << "you: '"
Chris Lattnera57d86b2004-04-05 22:58:16 +0000869 << Result << "'.\n";
870 return true;
871 }
872
873 DisambiguateGlobalSymbols(Program);
874
875 std::vector<Function*> Funcs = DebugAMiscompilation(*this, TestCodeGenerator);
876
877 // Split the module into the two halves of the program we want.
Dan Gohmand50330c2009-04-22 15:57:18 +0000878 DenseMap<const Value*, Value*> ValueMap;
879 Module *ToNotCodeGen = CloneModule(getProgram(), ValueMap);
880 Module *ToCodeGen = SplitFunctionsOutOfModule(ToNotCodeGen, Funcs, ValueMap);
Chris Lattnera57d86b2004-04-05 22:58:16 +0000881
882 // Condition the modules
883 CleanupAndPrepareModules(*this, ToCodeGen, ToNotCodeGen);
884
Reid Spencer97182982004-12-15 01:53:08 +0000885 sys::Path TestModuleBC("bugpoint.test.bc");
Reid Spencer51c5a282006-08-23 20:34:57 +0000886 std::string ErrMsg;
887 if (TestModuleBC.makeUnique(true, &ErrMsg)) {
888 std::cerr << getToolName() << "Error making unique filename: "
889 << ErrMsg << "\n";
890 exit(1);
891 }
Reid Spencer97182982004-12-15 01:53:08 +0000892
893 if (writeProgramToFile(TestModuleBC.toString(), ToCodeGen)) {
Gabor Greif8ff70c22007-07-04 21:55:50 +0000894 std::cerr << "Error writing bitcode to `" << TestModuleBC << "'\nExiting.";
Chris Lattnera57d86b2004-04-05 22:58:16 +0000895 exit(1);
896 }
897 delete ToCodeGen;
898
899 // Make the shared library
Reid Spencer97182982004-12-15 01:53:08 +0000900 sys::Path SafeModuleBC("bugpoint.safe.bc");
Reid Spencer51c5a282006-08-23 20:34:57 +0000901 if (SafeModuleBC.makeUnique(true, &ErrMsg)) {
902 std::cerr << getToolName() << "Error making unique filename: "
903 << ErrMsg << "\n";
904 exit(1);
905 }
Reid Spencer97182982004-12-15 01:53:08 +0000906
907 if (writeProgramToFile(SafeModuleBC.toString(), ToNotCodeGen)) {
Gabor Greif8ff70c22007-07-04 21:55:50 +0000908 std::cerr << "Error writing bitcode to `" << SafeModuleBC << "'\nExiting.";
Chris Lattnera57d86b2004-04-05 22:58:16 +0000909 exit(1);
910 }
Reid Spencer97182982004-12-15 01:53:08 +0000911 std::string SharedObject = compileSharedObject(SafeModuleBC.toString());
Chris Lattnera57d86b2004-04-05 22:58:16 +0000912 delete ToNotCodeGen;
913
914 std::cout << "You can reproduce the problem with the command line: \n";
915 if (isExecutingJIT()) {
916 std::cout << " lli -load " << SharedObject << " " << TestModuleBC;
917 } else {
Chris Lattner59615f02005-01-15 00:07:19 +0000918 std::cout << " llc -f " << TestModuleBC << " -o " << TestModuleBC<< ".s\n";
Chris Lattnera57d86b2004-04-05 22:58:16 +0000919 std::cout << " gcc " << SharedObject << " " << TestModuleBC
Chris Lattner59615f02005-01-15 00:07:19 +0000920 << ".s -o " << TestModuleBC << ".exe";
921#if defined (HAVE_LINK_R)
Chris Lattner3bd5fac2005-12-14 22:01:07 +0000922 std::cout << " -Wl,-R.";
Chris Lattner59615f02005-01-15 00:07:19 +0000923#endif
924 std::cout << "\n";
Chris Lattnera57d86b2004-04-05 22:58:16 +0000925 std::cout << " " << TestModuleBC << ".exe";
926 }
927 for (unsigned i=0, e = InputArgv.size(); i != e; ++i)
928 std::cout << " " << InputArgv[i];
Misha Brukmaneed80e22004-07-23 01:30:49 +0000929 std::cout << '\n';
Chris Lattnera57d86b2004-04-05 22:58:16 +0000930 std::cout << "The shared object was created with:\n llc -march=c "
931 << SafeModuleBC << " -o temporary.c\n"
932 << " gcc -xc temporary.c -O2 -o " << SharedObject
933#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
934 << " -G" // Compile a shared library, `-G' for Sparc
935#else
Torok Edwinaf4fc282008-04-06 12:42:29 +0000936 << " -fPIC -shared" // `-shared' for Linux/X86, maybe others
Chris Lattnera57d86b2004-04-05 22:58:16 +0000937#endif
938 << " -fno-strict-aliasing\n";
939
940 return false;
941}