blob: 41df79a110a96f16eb964ecb13d695442ddba681 [file] [log] [blame]
Misha Brukman50733362003-07-24 18:17:43 +00001//===- CodeGeneratorBug.cpp - Debug code generation bugs ------------------===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
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//===----------------------------------------------------------------------===//
Misha Brukman50733362003-07-24 18:17:43 +00009//
10// This file implements program code generation debugging support.
11//
12//===----------------------------------------------------------------------===//
13
14#include "BugDriver.h"
Misha Brukman50733362003-07-24 18:17:43 +000015#include "ListReducer.h"
Misha Brukman91eabc12003-07-28 19:16:14 +000016#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/GlobalValue.h"
19#include "llvm/iMemory.h"
20#include "llvm/iTerminators.h"
21#include "llvm/iOther.h"
Misha Brukman50733362003-07-24 18:17:43 +000022#include "llvm/Module.h"
Misha Brukman91eabc12003-07-28 19:16:14 +000023#include "llvm/Pass.h"
24#include "llvm/Analysis/Verifier.h"
Misha Brukmanc1e39ee2003-07-28 21:07:39 +000025#include "llvm/Support/Mangler.h"
Misha Brukman91eabc12003-07-28 19:16:14 +000026#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Misha Brukman50733362003-07-24 18:17:43 +000027#include "llvm/Transforms/Utils/Cloning.h"
28#include "llvm/Transforms/Utils/Linker.h"
Misha Brukmanbe6bf562003-07-30 20:15:56 +000029#include "Support/CommandLine.h"
Chris Lattnerc648dab2003-08-01 22:13:59 +000030#include "Support/Debug.h"
Misha Brukman50733362003-07-24 18:17:43 +000031#include "Support/StringExtras.h"
Misha Brukman3d9cafa2003-08-07 21:42:28 +000032#include "Support/FileUtilities.h"
Misha Brukman50733362003-07-24 18:17:43 +000033#include <algorithm>
34#include <set>
35
Misha Brukmanbe6bf562003-07-30 20:15:56 +000036extern cl::list<std::string> InputArgv;
37
Misha Brukman50733362003-07-24 18:17:43 +000038class ReduceMisCodegenFunctions : public ListReducer<Function*> {
39 BugDriver &BD;
40public:
41 ReduceMisCodegenFunctions(BugDriver &bd) : BD(bd) {}
42
43 virtual TestResult doTest(std::vector<Function*> &Prefix,
44 std::vector<Function*> &Suffix) {
45 if (!Prefix.empty() && TestFuncs(Prefix))
46 return KeepPrefix;
47 if (!Suffix.empty() && TestFuncs(Suffix))
48 return KeepSuffix;
49 return NoFailure;
50 }
51
Misha Brukman91eabc12003-07-28 19:16:14 +000052 bool TestFuncs(const std::vector<Function*> &CodegenTest,
53 bool KeepFiles = false);
Misha Brukman50733362003-07-24 18:17:43 +000054};
55
56
Misha Brukman91eabc12003-07-28 19:16:14 +000057bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs,
Chris Lattner769f1fe2003-10-14 21:59:36 +000058 bool KeepFiles) {
Misha Brukmanbe6bf562003-07-30 20:15:56 +000059 std::cout << "Testing functions: ";
60 BD.PrintFunctionList(Funcs);
61 std::cout << "\t";
Misha Brukman91eabc12003-07-28 19:16:14 +000062
Misha Brukman50733362003-07-24 18:17:43 +000063 // Clone the module for the two halves of the program we want.
64 Module *SafeModule = CloneModule(BD.Program);
65
66 // Make sure functions & globals are all external so that linkage
67 // between the two modules will work.
68 for (Module::iterator I = SafeModule->begin(), E = SafeModule->end();I!=E;++I)
69 I->setLinkage(GlobalValue::ExternalLinkage);
70 for (Module::giterator I=SafeModule->gbegin(),E = SafeModule->gend();I!=E;++I)
71 I->setLinkage(GlobalValue::ExternalLinkage);
72
Misha Brukman50733362003-07-24 18:17:43 +000073 Module *TestModule = CloneModule(SafeModule);
74
75 // Make sure global initializers exist only in the safe module (CBE->.so)
76 for (Module::giterator I=TestModule->gbegin(),E = TestModule->gend();I!=E;++I)
77 I->setInitializer(0); // Delete the initializer to make it external
78
Misha Brukmana259c9b2003-07-24 21:59:10 +000079 // Remove the Test functions from the Safe module
Misha Brukman50733362003-07-24 18:17:43 +000080 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
81 Function *TNOF = SafeModule->getFunction(Funcs[i]->getName(),
82 Funcs[i]->getFunctionType());
Misha Brukmande9720f2003-07-29 16:02:28 +000083 DEBUG(std::cerr << "Removing function " << Funcs[i]->getName() << "\n");
Misha Brukman50733362003-07-24 18:17:43 +000084 assert(TNOF && "Function doesn't exist in module!");
85 DeleteFunctionBody(TNOF); // Function is now external in this module!
86 }
87
Misha Brukman91eabc12003-07-28 19:16:14 +000088 // Remove the Safe functions from the Test module
89 for (Module::iterator I=TestModule->begin(),E=TestModule->end(); I!=E; ++I) {
90 bool funcFound = false;
91 for (std::vector<Function*>::const_iterator F=Funcs.begin(),Fe=Funcs.end();
92 F != Fe; ++F)
93 if (I->getName() == (*F)->getName()) funcFound = true;
94
95 if (!funcFound && !(BD.isExecutingJIT() && I->getName() == "main"))
96 DeleteFunctionBody(I);
97 }
98
99 // This is only applicable if we are debugging the JIT:
100 // Find all external functions in the Safe modules that are actually used
101 // (called or taken address of), and make them call the JIT wrapper instead
102 if (BD.isExecutingJIT()) {
103 // Must delete `main' from Safe module if it has it
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000104 Function *safeMain = SafeModule->getNamedFunction("main");
Misha Brukmande9720f2003-07-29 16:02:28 +0000105 assert(safeMain && "`main' function not found in safe module!");
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000106 DeleteFunctionBody(safeMain);
Misha Brukman91eabc12003-07-28 19:16:14 +0000107
108 // Add an external function "getPointerToNamedFunction" that JIT provides
109 // Prototype: void *getPointerToNamedFunction(const char* Name)
110 std::vector<const Type*> Params;
111 Params.push_back(PointerType::get(Type::SByteTy)); // std::string&
112 FunctionType *resolverTy = FunctionType::get(PointerType::get(Type::VoidTy),
113 Params, false /* isVarArg */);
Misha Brukman91eabc12003-07-28 19:16:14 +0000114 Function *resolverFunc = new Function(resolverTy,
115 GlobalValue::ExternalLinkage,
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000116 "getPointerToNamedFunction",
Misha Brukman91eabc12003-07-28 19:16:14 +0000117 SafeModule);
118
119 // Use the function we just added to get addresses of functions we need
120 // Iterate over the global declarations in the Safe module
121 for (Module::iterator F=SafeModule->begin(),E=SafeModule->end(); F!=E; ++F){
Chris Lattner9fc2adc2003-10-19 23:32:50 +0000122 if (F->isExternal() && !F->use_empty() && &*F != resolverFunc &&
123 F->getIntrinsicID() == 0 /* ignore intrinsics */ &&
124 // Don't forward functions which are external in the test module too.
125 !TestModule->getNamedFunction(F->getName())->isExternal()) {
Misha Brukman91eabc12003-07-28 19:16:14 +0000126 // If it has a non-zero use list,
127 // 1. Add a string constant with its name to the global file
128 // The correct type is `const [ NUM x sbyte ]' where NUM is length of
129 // function name + 1
130 const std::string &Name = F->getName();
131 GlobalVariable *funcName =
132 new GlobalVariable(ArrayType::get(Type::SByteTy, Name.length()+1),
133 true /* isConstant */,
134 GlobalValue::InternalLinkage,
135 ConstantArray::get(Name),
136 Name + "_name",
137 SafeModule);
138
139 // 2. Use `GetElementPtr *funcName, 0, 0' to convert the string to an
140 // sbyte* so it matches the signature of the resolver function.
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000141 std::vector<Constant*> GEPargs(2, Constant::getNullValue(Type::LongTy));
Misha Brukman91eabc12003-07-28 19:16:14 +0000142
143 // 3. Replace all uses of `func' with calls to resolver by:
144 // (a) Iterating through the list of uses of this function
145 // (b) Insert a cast instruction in front of each use
146 // (c) Replace use of old call with new call
147
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000148 // GetElementPtr *funcName, ulong 0, ulong 0
149 Value *GEP =
150 ConstantExpr::getGetElementPtr(ConstantPointerRef::get(funcName),
151 GEPargs);
152 std::vector<Value*> ResolverArgs;
153 ResolverArgs.push_back(GEP);
Misha Brukman91eabc12003-07-28 19:16:14 +0000154
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000155 // Insert code at the beginning of the function
Chris Lattnerb656c202003-10-19 21:48:27 +0000156 while (!F->use_empty())
157 if (Instruction *Inst = dyn_cast<Instruction>(F->use_back())) {
Misha Brukman91eabc12003-07-28 19:16:14 +0000158 // call resolver(GetElementPtr...)
159 CallInst *resolve = new CallInst(resolverFunc, ResolverArgs,
160 "resolver", Inst);
161 // cast the result from the resolver to correctly-typed function
162 CastInst *castResolver =
163 new CastInst(resolve, PointerType::get(F->getFunctionType()),
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000164 "resolverCast", Inst);
Misha Brukman91eabc12003-07-28 19:16:14 +0000165 // actually use the resolved function
166 Inst->replaceUsesOfWith(F, castResolver);
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000167 } else {
168 // FIXME: need to take care of cases where a function is used that
169 // is not an instruction, e.g. global variable initializer...
Misha Brukman06ea1512003-10-20 19:43:47 +0000170 std::cerr <<
171 "UNSUPPORTED: External function used as global initializer!\n";
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000172 abort();
Misha Brukman91eabc12003-07-28 19:16:14 +0000173 }
Misha Brukman91eabc12003-07-28 19:16:14 +0000174 }
175 }
176 }
177
Chris Lattner10b9fa82003-08-01 16:14:33 +0000178 if (verifyModule(*SafeModule) || verifyModule(*TestModule)) {
179 std::cerr << "Bugpoint has a bug, an corrupted a module!!\n";
180 abort();
181 }
182
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000183 DEBUG(std::cerr << "Safe module:\n";
184 typedef Module::iterator MI;
185 typedef Module::giterator MGI;
Misha Brukman91eabc12003-07-28 19:16:14 +0000186
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000187 for (MI I = SafeModule->begin(), E = SafeModule->end(); I != E; ++I)
188 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
189 for (MGI I = SafeModule->gbegin(), E = SafeModule->gend(); I!=E; ++I)
190 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
191
192 std::cerr << "Test module:\n";
193 for (MI I = TestModule->begin(), E = TestModule->end(); I != E; ++I)
194 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
195 for (MGI I=TestModule->gbegin(),E = TestModule->gend(); I!= E; ++I)
196 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
197 );
Misha Brukman91eabc12003-07-28 19:16:14 +0000198
Misha Brukman50733362003-07-24 18:17:43 +0000199 // Write out the bytecode to be sent to CBE
Misha Brukman91eabc12003-07-28 19:16:14 +0000200 std::string SafeModuleBC = getUniqueFilename("bugpoint.safe.bc");
Chris Lattner10b9fa82003-08-01 16:14:33 +0000201
Misha Brukman50733362003-07-24 18:17:43 +0000202 if (BD.writeProgramToFile(SafeModuleBC, SafeModule)) {
203 std::cerr << "Error writing bytecode to `" << SafeModuleBC << "'\nExiting.";
204 exit(1);
205 }
206
Misha Brukman50733362003-07-24 18:17:43 +0000207 // Remove all functions from the Test module EXCEPT for the ones specified in
208 // Funcs. We know which ones these are because they are non-external in
209 // ToOptimize, but external in ToNotOptimize.
210 //
211 for (Module::iterator I = TestModule->begin(), E = TestModule->end();I!=E;++I)
212 if (!I->isExternal()) {
213 Function *TNOF = SafeModule->getFunction(I->getName(),
214 I->getFunctionType());
215 assert(TNOF && "Function doesn't exist in ToNotOptimize module??");
216 if (!TNOF->isExternal())
217 DeleteFunctionBody(I);
218 }
219
Misha Brukman91eabc12003-07-28 19:16:14 +0000220 std::string TestModuleBC = getUniqueFilename("bugpoint.test.bc");
221 if (verifyModule(*TestModule)) {
222 std::cerr << "Bytecode file corrupted!\n";
223 exit(1);
224 }
Chris Lattner15d11272003-08-03 22:29:43 +0000225
226 // Clean up the modules, removing extra cruft that we don't need anymore...
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000227 SafeModule = BD.performFinalCleanups(SafeModule);
228 TestModule = BD.performFinalCleanups(TestModule);
Chris Lattner15d11272003-08-03 22:29:43 +0000229
Misha Brukman50733362003-07-24 18:17:43 +0000230 if (BD.writeProgramToFile(TestModuleBC, TestModule)) {
231 std::cerr << "Error writing bytecode to `" << SafeModuleBC << "'\nExiting.";
232 exit(1);
233 }
234
Chris Lattner15d11272003-08-03 22:29:43 +0000235 // Make a shared library
Chris Lattner769f1fe2003-10-14 21:59:36 +0000236 std::string SharedObject = BD.compileSharedObject(SafeModuleBC);
Chris Lattner15d11272003-08-03 22:29:43 +0000237
Misha Brukman91eabc12003-07-28 19:16:14 +0000238 delete SafeModule;
239 delete TestModule;
240
Misha Brukman50733362003-07-24 18:17:43 +0000241 // Run the code generator on the `Test' code, loading the shared library.
242 // The function returns whether or not the new output differs from reference.
Chris Lattner6730c812003-08-04 00:56:27 +0000243 int Result = BD.diffProgram(TestModuleBC, SharedObject, false);
244
245 if (Result)
Misha Brukman11c65922003-08-07 21:05:13 +0000246 std::cerr << ": still failing!\n";
Chris Lattner6730c812003-08-04 00:56:27 +0000247 else
248 std::cerr << ": didn't fail.\n";
249
Misha Brukman91eabc12003-07-28 19:16:14 +0000250 if (KeepFiles) {
Chris Lattner6730c812003-08-04 00:56:27 +0000251 std::cout << "You can reproduce the problem with the command line: \n";
252 if (BD.isExecutingJIT()) {
253 std::cout << " lli -load " << SharedObject << " " << TestModuleBC;
254 } else {
Chris Lattner6730c812003-08-04 00:56:27 +0000255 std::cout << " llc " << TestModuleBC << " -o " << TestModuleBC << ".s\n";
256 std::cout << " gcc " << SharedObject << " " << TestModuleBC
Chris Lattner365f09a2003-10-18 21:55:47 +0000257 << ".s -o " << TestModuleBC << ".exe -Wl,-R.\n";
Chris Lattner6730c812003-08-04 00:56:27 +0000258 std::cout << " " << TestModuleBC << ".exe";
259 }
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000260 for (unsigned i=0, e = InputArgv.size(); i != e; ++i)
261 std::cout << " " << InputArgv[i];
262 std::cout << "\n";
Misha Brukman85544ba2003-08-28 22:14:16 +0000263 std::cout << "The shared object was created with:\n llvm-dis -c "
Chris Lattnere533cef2003-08-17 22:08:25 +0000264 << SafeModuleBC << " -o temporary.c\n"
Chris Lattner57c69412003-08-17 23:38:53 +0000265 << " gcc -xc temporary.c -O2 -o " << SharedObject
266#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
Chris Lattner182a21e2003-10-14 20:55:56 +0000267 << " -G" // Compile a shared library, `-G' for Sparc
Chris Lattner8deb5812003-10-14 21:01:51 +0000268#else
269 << " -shared" // `-shared' for Linux/X86, maybe others
Chris Lattner57c69412003-08-17 23:38:53 +0000270#endif
Chris Lattnerb7154972003-10-18 21:08:57 +0000271 << " -fno-strict-aliasing\n";
Misha Brukman91eabc12003-07-28 19:16:14 +0000272 } else {
273 removeFile(TestModuleBC);
274 removeFile(SafeModuleBC);
275 removeFile(SharedObject);
276 }
Misha Brukmana259c9b2003-07-24 21:59:10 +0000277 return Result;
Misha Brukman50733362003-07-24 18:17:43 +0000278}
279
280namespace {
Misha Brukmana259c9b2003-07-24 21:59:10 +0000281 struct Disambiguator {
Misha Brukman91eabc12003-07-28 19:16:14 +0000282 std::set<std::string> SymbolNames;
283 std::set<GlobalValue*> Symbols;
Misha Brukman50733362003-07-24 18:17:43 +0000284 uint64_t uniqueCounter;
285 bool externalOnly;
Misha Brukmana259c9b2003-07-24 21:59:10 +0000286 public:
Misha Brukman50733362003-07-24 18:17:43 +0000287 Disambiguator() : uniqueCounter(0), externalOnly(true) {}
288 void setExternalOnly(bool value) { externalOnly = value; }
Misha Brukmana259c9b2003-07-24 21:59:10 +0000289 void add(GlobalValue &V) {
Misha Brukman91eabc12003-07-28 19:16:14 +0000290 // If we're only processing externals and this isn't external, bail
Misha Brukman50733362003-07-24 18:17:43 +0000291 if (externalOnly && !V.isExternal()) return;
Misha Brukman91eabc12003-07-28 19:16:14 +0000292 // If we're already processed this symbol, don't add it again
293 if (Symbols.count(&V) != 0) return;
Misha Brukman3b624622003-07-30 21:45:20 +0000294 // Ignore intrinsic functions
295 if (Function *F = dyn_cast<Function>(&V))
296 if (F->getIntrinsicID() != 0)
297 return;
Misha Brukman50733362003-07-24 18:17:43 +0000298
Misha Brukman91eabc12003-07-28 19:16:14 +0000299 std::string SymName = V.getName();
300
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000301 // Use the Mangler facility to make symbol names that will be valid in
302 // shared objects.
303 SymName = Mangler::makeNameProper(SymName);
304 V.setName(SymName);
Misha Brukman91eabc12003-07-28 19:16:14 +0000305
306 if (SymbolNames.count(SymName) == 0) {
307 DEBUG(std::cerr << "Disambiguator: adding " << SymName
Misha Brukman50733362003-07-24 18:17:43 +0000308 << ", no conflicts.\n");
Misha Brukman91eabc12003-07-28 19:16:14 +0000309 SymbolNames.insert(SymName);
Misha Brukman50733362003-07-24 18:17:43 +0000310 } else {
311 // Mangle name before adding
312 std::string newName;
313 do {
Misha Brukman91eabc12003-07-28 19:16:14 +0000314 newName = SymName + "_" + utostr(uniqueCounter);
Misha Brukman50733362003-07-24 18:17:43 +0000315 if (SymbolNames.count(newName) == 0) break;
316 else ++uniqueCounter;
317 } while (1);
318 //while (SymbolNames.count(V->getName()+utostr(uniqueCounter++))==0);
Misha Brukman91eabc12003-07-28 19:16:14 +0000319 DEBUG(std::cerr << "Disambiguator: conflict: " << SymName
Misha Brukman50733362003-07-24 18:17:43 +0000320 << ", adding: " << newName << "\n");
321 V.setName(newName);
322 SymbolNames.insert(newName);
Misha Brukman50733362003-07-24 18:17:43 +0000323 }
Misha Brukman91eabc12003-07-28 19:16:14 +0000324 Symbols.insert(&V);
Misha Brukman50733362003-07-24 18:17:43 +0000325 }
326 };
327}
328
Misha Brukmande9720f2003-07-29 16:02:28 +0000329void DisambiguateGlobalSymbols(Module *M) {
Misha Brukman50733362003-07-24 18:17:43 +0000330 // First, try not to cause collisions by minimizing chances of renaming an
331 // already-external symbol, so take in external globals and functions as-is.
Misha Brukmana259c9b2003-07-24 21:59:10 +0000332 Disambiguator D;
Misha Brukman91eabc12003-07-28 19:16:14 +0000333 DEBUG(std::cerr << "Disambiguating globals (external-only)\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000334 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) D.add(*I);
Misha Brukman91eabc12003-07-28 19:16:14 +0000335 DEBUG(std::cerr << "Disambiguating functions (external-only)\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000336 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) D.add(*I);
Misha Brukman50733362003-07-24 18:17:43 +0000337
338 // Now just rename functions and globals as necessary, keeping what's already
339 // in the set unique.
340 D.setExternalOnly(false);
Misha Brukman91eabc12003-07-28 19:16:14 +0000341 DEBUG(std::cerr << "Disambiguating globals\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000342 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) D.add(*I);
Misha Brukman91eabc12003-07-28 19:16:14 +0000343 DEBUG(std::cerr << "Disambiguating globals\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000344 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) D.add(*I);
Misha Brukman50733362003-07-24 18:17:43 +0000345}
346
347
348bool BugDriver::debugCodeGenerator() {
349 // See if we can pin down which functions are being miscompiled...
350 //First, build a list of all of the non-external functions in the program.
351 std::vector<Function*> MisCodegenFunctions;
352 for (Module::iterator I = Program->begin(), E = Program->end(); I != E; ++I)
353 if (!I->isExternal())
354 MisCodegenFunctions.push_back(I);
355
Misha Brukman91eabc12003-07-28 19:16:14 +0000356 // If we are executing the JIT, we *must* keep the function `main' in the
357 // module that is passed in, and not the shared library. However, we still
358 // want to be able to debug the `main' function alone. Thus, we create a new
359 // function `main' which just calls the old one.
360 if (isExecutingJIT()) {
361 // Get the `main' function
362 Function *oldMain = Program->getNamedFunction("main");
Misha Brukmande9720f2003-07-29 16:02:28 +0000363 assert(oldMain && "`main' function not found in program!");
Misha Brukman91eabc12003-07-28 19:16:14 +0000364 // Rename it
Misha Brukman11c65922003-08-07 21:05:13 +0000365 oldMain->setName("llvm_old_main");
Misha Brukman91eabc12003-07-28 19:16:14 +0000366 // Create a NEW `main' function with same type
367 Function *newMain = new Function(oldMain->getFunctionType(),
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000368 GlobalValue::ExternalLinkage,
Misha Brukman91eabc12003-07-28 19:16:14 +0000369 "main", Program);
370 // Call the old main function and return its result
371 BasicBlock *BB = new BasicBlock("entry", newMain);
372 std::vector<Value*> args;
Chris Lattner57e5a702003-08-17 22:14:20 +0000373 for (Function::aiterator I = newMain->abegin(), E = newMain->aend(),
374 OI = oldMain->abegin(); I != E; ++I, ++OI) {
375 I->setName(OI->getName()); // Copy argument names from oldMain
Misha Brukman91eabc12003-07-28 19:16:14 +0000376 args.push_back(I);
Chris Lattner57e5a702003-08-17 22:14:20 +0000377 }
Misha Brukman91eabc12003-07-28 19:16:14 +0000378 CallInst *call = new CallInst(oldMain, args);
379 BB->getInstList().push_back(call);
380
381 // if the type of old function wasn't void, return value of call
382 ReturnInst *ret;
383 if (oldMain->getReturnType() != Type::VoidTy) {
384 ret = new ReturnInst(call);
385 } else {
386 ret = new ReturnInst();
387 }
388
389 // Add the return instruction to the BasicBlock
390 BB->getInstList().push_back(ret);
391 }
392
Misha Brukmande9720f2003-07-29 16:02:28 +0000393 DisambiguateGlobalSymbols(Program);
394
Misha Brukman50733362003-07-24 18:17:43 +0000395 // Do the reduction...
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000396 if (!ReduceMisCodegenFunctions(*this).reduceList(MisCodegenFunctions)) {
Chris Lattner6730c812003-08-04 00:56:27 +0000397 std::cerr << "*** Execution matches reference output! "
398 << "bugpoint can't help you with your problem!\n";
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000399 return false;
400 }
Misha Brukman50733362003-07-24 18:17:43 +0000401
402 std::cout << "\n*** The following functions are being miscompiled: ";
403 PrintFunctionList(MisCodegenFunctions);
404 std::cout << "\n";
405
406 // Output a bunch of bytecode files for the user...
Misha Brukman91eabc12003-07-28 19:16:14 +0000407 ReduceMisCodegenFunctions(*this).TestFuncs(MisCodegenFunctions, true);
Misha Brukman50733362003-07-24 18:17:43 +0000408
409 return false;
410}