blob: abd940b34bf4357a788013dc6da60b27de25b40a [file] [log] [blame]
Misha Brukman50733362003-07-24 18:17:43 +00001//===- CodeGeneratorBug.cpp - Debug code generation bugs ------------------===//
2//
3// This file implements program code generation debugging support.
4//
5//===----------------------------------------------------------------------===//
6
7#include "BugDriver.h"
8#include "SystemUtils.h"
9#include "ListReducer.h"
Misha Brukman91eabc12003-07-28 19:16:14 +000010#include "llvm/Constants.h"
11#include "llvm/DerivedTypes.h"
12#include "llvm/GlobalValue.h"
13#include "llvm/iMemory.h"
14#include "llvm/iTerminators.h"
15#include "llvm/iOther.h"
Misha Brukman50733362003-07-24 18:17:43 +000016#include "llvm/Module.h"
Misha Brukman91eabc12003-07-28 19:16:14 +000017#include "llvm/Pass.h"
18#include "llvm/Analysis/Verifier.h"
Misha Brukmanc1e39ee2003-07-28 21:07:39 +000019#include "llvm/Support/Mangler.h"
Misha Brukman91eabc12003-07-28 19:16:14 +000020#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Misha Brukman50733362003-07-24 18:17:43 +000021#include "llvm/Transforms/Utils/Cloning.h"
22#include "llvm/Transforms/Utils/Linker.h"
Misha Brukmanbe6bf562003-07-30 20:15:56 +000023#include "Support/CommandLine.h"
Misha Brukman50733362003-07-24 18:17:43 +000024#include "Support/Statistic.h"
25#include "Support/StringExtras.h"
26#include <algorithm>
27#include <set>
28
Misha Brukmanbe6bf562003-07-30 20:15:56 +000029extern cl::list<std::string> InputArgv;
30
Misha Brukman50733362003-07-24 18:17:43 +000031class ReduceMisCodegenFunctions : public ListReducer<Function*> {
32 BugDriver &BD;
33public:
34 ReduceMisCodegenFunctions(BugDriver &bd) : BD(bd) {}
35
36 virtual TestResult doTest(std::vector<Function*> &Prefix,
37 std::vector<Function*> &Suffix) {
38 if (!Prefix.empty() && TestFuncs(Prefix))
39 return KeepPrefix;
40 if (!Suffix.empty() && TestFuncs(Suffix))
41 return KeepSuffix;
42 return NoFailure;
43 }
44
Misha Brukman91eabc12003-07-28 19:16:14 +000045 bool TestFuncs(const std::vector<Function*> &CodegenTest,
46 bool KeepFiles = false);
Misha Brukman50733362003-07-24 18:17:43 +000047};
48
49
Misha Brukman91eabc12003-07-28 19:16:14 +000050bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs,
51 bool KeepFiles)
Misha Brukman50733362003-07-24 18:17:43 +000052{
Misha Brukmanbe6bf562003-07-30 20:15:56 +000053 std::cout << "Testing functions: ";
54 BD.PrintFunctionList(Funcs);
55 std::cout << "\t";
Misha Brukman91eabc12003-07-28 19:16:14 +000056
Misha Brukman50733362003-07-24 18:17:43 +000057 // Clone the module for the two halves of the program we want.
58 Module *SafeModule = CloneModule(BD.Program);
59
60 // Make sure functions & globals are all external so that linkage
61 // between the two modules will work.
62 for (Module::iterator I = SafeModule->begin(), E = SafeModule->end();I!=E;++I)
63 I->setLinkage(GlobalValue::ExternalLinkage);
64 for (Module::giterator I=SafeModule->gbegin(),E = SafeModule->gend();I!=E;++I)
65 I->setLinkage(GlobalValue::ExternalLinkage);
66
Misha Brukman50733362003-07-24 18:17:43 +000067 Module *TestModule = CloneModule(SafeModule);
68
69 // Make sure global initializers exist only in the safe module (CBE->.so)
70 for (Module::giterator I=TestModule->gbegin(),E = TestModule->gend();I!=E;++I)
71 I->setInitializer(0); // Delete the initializer to make it external
72
Misha Brukmana259c9b2003-07-24 21:59:10 +000073 // Remove the Test functions from the Safe module
Misha Brukman50733362003-07-24 18:17:43 +000074 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
75 Function *TNOF = SafeModule->getFunction(Funcs[i]->getName(),
76 Funcs[i]->getFunctionType());
Misha Brukmande9720f2003-07-29 16:02:28 +000077 DEBUG(std::cerr << "Removing function " << Funcs[i]->getName() << "\n");
Misha Brukman50733362003-07-24 18:17:43 +000078 assert(TNOF && "Function doesn't exist in module!");
79 DeleteFunctionBody(TNOF); // Function is now external in this module!
80 }
81
Misha Brukman91eabc12003-07-28 19:16:14 +000082 // Remove the Safe functions from the Test module
83 for (Module::iterator I=TestModule->begin(),E=TestModule->end(); I!=E; ++I) {
84 bool funcFound = false;
85 for (std::vector<Function*>::const_iterator F=Funcs.begin(),Fe=Funcs.end();
86 F != Fe; ++F)
87 if (I->getName() == (*F)->getName()) funcFound = true;
88
89 if (!funcFound && !(BD.isExecutingJIT() && I->getName() == "main"))
90 DeleteFunctionBody(I);
91 }
92
93 // This is only applicable if we are debugging the JIT:
94 // Find all external functions in the Safe modules that are actually used
95 // (called or taken address of), and make them call the JIT wrapper instead
96 if (BD.isExecutingJIT()) {
97 // Must delete `main' from Safe module if it has it
Misha Brukmanc1e39ee2003-07-28 21:07:39 +000098 Function *safeMain = SafeModule->getNamedFunction("main");
Misha Brukmande9720f2003-07-29 16:02:28 +000099 assert(safeMain && "`main' function not found in safe module!");
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000100 DeleteFunctionBody(safeMain);
Misha Brukman91eabc12003-07-28 19:16:14 +0000101
102 // Add an external function "getPointerToNamedFunction" that JIT provides
103 // Prototype: void *getPointerToNamedFunction(const char* Name)
104 std::vector<const Type*> Params;
105 Params.push_back(PointerType::get(Type::SByteTy)); // std::string&
106 FunctionType *resolverTy = FunctionType::get(PointerType::get(Type::VoidTy),
107 Params, false /* isVarArg */);
Misha Brukman91eabc12003-07-28 19:16:14 +0000108 Function *resolverFunc = new Function(resolverTy,
109 GlobalValue::ExternalLinkage,
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000110 "getPointerToNamedFunction",
Misha Brukman91eabc12003-07-28 19:16:14 +0000111 SafeModule);
112
113 // Use the function we just added to get addresses of functions we need
114 // Iterate over the global declarations in the Safe module
115 for (Module::iterator F=SafeModule->begin(),E=SafeModule->end(); F!=E; ++F){
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000116 if (F->isExternal() && !F->use_empty() && &(*F) != resolverFunc) {
Misha Brukman91eabc12003-07-28 19:16:14 +0000117 // If it has a non-zero use list,
118 // 1. Add a string constant with its name to the global file
119 // The correct type is `const [ NUM x sbyte ]' where NUM is length of
120 // function name + 1
121 const std::string &Name = F->getName();
122 GlobalVariable *funcName =
123 new GlobalVariable(ArrayType::get(Type::SByteTy, Name.length()+1),
124 true /* isConstant */,
125 GlobalValue::InternalLinkage,
126 ConstantArray::get(Name),
127 Name + "_name",
128 SafeModule);
129
130 // 2. Use `GetElementPtr *funcName, 0, 0' to convert the string to an
131 // sbyte* so it matches the signature of the resolver function.
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000132 std::vector<Constant*> GEPargs(2, Constant::getNullValue(Type::LongTy));
Misha Brukman91eabc12003-07-28 19:16:14 +0000133
134 // 3. Replace all uses of `func' with calls to resolver by:
135 // (a) Iterating through the list of uses of this function
136 // (b) Insert a cast instruction in front of each use
137 // (c) Replace use of old call with new call
138
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000139 // GetElementPtr *funcName, ulong 0, ulong 0
140 Value *GEP =
141 ConstantExpr::getGetElementPtr(ConstantPointerRef::get(funcName),
142 GEPargs);
143 std::vector<Value*> ResolverArgs;
144 ResolverArgs.push_back(GEP);
Misha Brukman91eabc12003-07-28 19:16:14 +0000145
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000146 // Insert code at the beginning of the function
Misha Brukman91eabc12003-07-28 19:16:14 +0000147 for (Value::use_iterator i=F->use_begin(), e=F->use_end(); i!=e; ++i) {
148 if (Instruction* Inst = dyn_cast<Instruction>(*i)) {
Misha Brukman91eabc12003-07-28 19:16:14 +0000149 // call resolver(GetElementPtr...)
150 CallInst *resolve = new CallInst(resolverFunc, ResolverArgs,
151 "resolver", Inst);
152 // cast the result from the resolver to correctly-typed function
153 CastInst *castResolver =
154 new CastInst(resolve, PointerType::get(F->getFunctionType()),
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000155 "resolverCast", Inst);
Misha Brukman91eabc12003-07-28 19:16:14 +0000156 // actually use the resolved function
157 Inst->replaceUsesOfWith(F, castResolver);
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000158 } else {
159 // FIXME: need to take care of cases where a function is used that
160 // is not an instruction, e.g. global variable initializer...
161 std::cerr << "Non-instruction is using an external function!\n";
162 abort();
Misha Brukman91eabc12003-07-28 19:16:14 +0000163 }
164 }
165 }
166 }
167 }
168
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000169 DEBUG(std::cerr << "Safe module:\n";
170 typedef Module::iterator MI;
171 typedef Module::giterator MGI;
Misha Brukman91eabc12003-07-28 19:16:14 +0000172
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000173 for (MI I = SafeModule->begin(), E = SafeModule->end(); I != E; ++I)
174 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
175 for (MGI I = SafeModule->gbegin(), E = SafeModule->gend(); I!=E; ++I)
176 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
177
178 std::cerr << "Test module:\n";
179 for (MI I = TestModule->begin(), E = TestModule->end(); I != E; ++I)
180 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
181 for (MGI I=TestModule->gbegin(),E = TestModule->gend(); I!= E; ++I)
182 if (!I->isExternal()) std::cerr << "\t" << I->getName() << "\n";
183 );
Misha Brukman91eabc12003-07-28 19:16:14 +0000184
Misha Brukman50733362003-07-24 18:17:43 +0000185 // Write out the bytecode to be sent to CBE
Misha Brukman91eabc12003-07-28 19:16:14 +0000186 std::string SafeModuleBC = getUniqueFilename("bugpoint.safe.bc");
187 if (verifyModule(*SafeModule)) {
188 std::cerr << "Bytecode file corrupted!\n";
189 exit(1);
190 }
Misha Brukman50733362003-07-24 18:17:43 +0000191 if (BD.writeProgramToFile(SafeModuleBC, SafeModule)) {
192 std::cerr << "Error writing bytecode to `" << SafeModuleBC << "'\nExiting.";
193 exit(1);
194 }
195
196 // Make a shared library
197 std::string SharedObject;
198 BD.compileSharedObject(SafeModuleBC, SharedObject);
199
200 // Remove all functions from the Test module EXCEPT for the ones specified in
201 // Funcs. We know which ones these are because they are non-external in
202 // ToOptimize, but external in ToNotOptimize.
203 //
204 for (Module::iterator I = TestModule->begin(), E = TestModule->end();I!=E;++I)
205 if (!I->isExternal()) {
206 Function *TNOF = SafeModule->getFunction(I->getName(),
207 I->getFunctionType());
208 assert(TNOF && "Function doesn't exist in ToNotOptimize module??");
209 if (!TNOF->isExternal())
210 DeleteFunctionBody(I);
211 }
212
Misha Brukman91eabc12003-07-28 19:16:14 +0000213 std::string TestModuleBC = getUniqueFilename("bugpoint.test.bc");
214 if (verifyModule(*TestModule)) {
215 std::cerr << "Bytecode file corrupted!\n";
216 exit(1);
217 }
Misha Brukman50733362003-07-24 18:17:43 +0000218 if (BD.writeProgramToFile(TestModuleBC, TestModule)) {
219 std::cerr << "Error writing bytecode to `" << SafeModuleBC << "'\nExiting.";
220 exit(1);
221 }
222
Misha Brukman91eabc12003-07-28 19:16:14 +0000223 delete SafeModule;
224 delete TestModule;
225
Misha Brukman50733362003-07-24 18:17:43 +0000226 // Run the code generator on the `Test' code, loading the shared library.
227 // The function returns whether or not the new output differs from reference.
Misha Brukmana259c9b2003-07-24 21:59:10 +0000228 int Result = BD.diffProgram(TestModuleBC, SharedObject, false);
Misha Brukman91eabc12003-07-28 19:16:14 +0000229 if (KeepFiles) {
230 std::cout << "You can reproduce the problem with the command line: \n"
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000231 << (BD.isExecutingJIT() ? "lli" : "llc")
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000232 << " -load " << SharedObject << " " << TestModuleBC;
233 for (unsigned i=0, e = InputArgv.size(); i != e; ++i)
234 std::cout << " " << InputArgv[i];
235 std::cout << "\n";
236 std::cout << "The shared object " << SharedObject << " was created from "
237 << SafeModuleBC << ", using `dis -c'.\n";
Misha Brukman91eabc12003-07-28 19:16:14 +0000238 } else {
239 removeFile(TestModuleBC);
240 removeFile(SafeModuleBC);
241 removeFile(SharedObject);
242 }
Misha Brukmana259c9b2003-07-24 21:59:10 +0000243 return Result;
Misha Brukman50733362003-07-24 18:17:43 +0000244}
245
246namespace {
Misha Brukmana259c9b2003-07-24 21:59:10 +0000247 struct Disambiguator {
Misha Brukman91eabc12003-07-28 19:16:14 +0000248 std::set<std::string> SymbolNames;
249 std::set<GlobalValue*> Symbols;
Misha Brukman50733362003-07-24 18:17:43 +0000250 uint64_t uniqueCounter;
251 bool externalOnly;
Misha Brukmana259c9b2003-07-24 21:59:10 +0000252 public:
Misha Brukman50733362003-07-24 18:17:43 +0000253 Disambiguator() : uniqueCounter(0), externalOnly(true) {}
254 void setExternalOnly(bool value) { externalOnly = value; }
Misha Brukmana259c9b2003-07-24 21:59:10 +0000255 void add(GlobalValue &V) {
Misha Brukman91eabc12003-07-28 19:16:14 +0000256 // If we're only processing externals and this isn't external, bail
Misha Brukman50733362003-07-24 18:17:43 +0000257 if (externalOnly && !V.isExternal()) return;
Misha Brukman91eabc12003-07-28 19:16:14 +0000258 // If we're already processed this symbol, don't add it again
259 if (Symbols.count(&V) != 0) return;
Misha Brukman50733362003-07-24 18:17:43 +0000260
Misha Brukman91eabc12003-07-28 19:16:14 +0000261 std::string SymName = V.getName();
262
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000263 // Use the Mangler facility to make symbol names that will be valid in
264 // shared objects.
265 SymName = Mangler::makeNameProper(SymName);
266 V.setName(SymName);
Misha Brukman91eabc12003-07-28 19:16:14 +0000267
268 if (SymbolNames.count(SymName) == 0) {
269 DEBUG(std::cerr << "Disambiguator: adding " << SymName
Misha Brukman50733362003-07-24 18:17:43 +0000270 << ", no conflicts.\n");
Misha Brukman91eabc12003-07-28 19:16:14 +0000271 SymbolNames.insert(SymName);
Misha Brukman50733362003-07-24 18:17:43 +0000272 } else {
273 // Mangle name before adding
274 std::string newName;
275 do {
Misha Brukman91eabc12003-07-28 19:16:14 +0000276 newName = SymName + "_" + utostr(uniqueCounter);
Misha Brukman50733362003-07-24 18:17:43 +0000277 if (SymbolNames.count(newName) == 0) break;
278 else ++uniqueCounter;
279 } while (1);
280 //while (SymbolNames.count(V->getName()+utostr(uniqueCounter++))==0);
Misha Brukman91eabc12003-07-28 19:16:14 +0000281 DEBUG(std::cerr << "Disambiguator: conflict: " << SymName
Misha Brukman50733362003-07-24 18:17:43 +0000282 << ", adding: " << newName << "\n");
283 V.setName(newName);
284 SymbolNames.insert(newName);
Misha Brukman50733362003-07-24 18:17:43 +0000285 }
Misha Brukman91eabc12003-07-28 19:16:14 +0000286 Symbols.insert(&V);
Misha Brukman50733362003-07-24 18:17:43 +0000287 }
288 };
289}
290
Misha Brukmande9720f2003-07-29 16:02:28 +0000291void DisambiguateGlobalSymbols(Module *M) {
Misha Brukman50733362003-07-24 18:17:43 +0000292 // First, try not to cause collisions by minimizing chances of renaming an
293 // already-external symbol, so take in external globals and functions as-is.
Misha Brukmana259c9b2003-07-24 21:59:10 +0000294 Disambiguator D;
Misha Brukman91eabc12003-07-28 19:16:14 +0000295 DEBUG(std::cerr << "Disambiguating globals (external-only)\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000296 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) D.add(*I);
Misha Brukman91eabc12003-07-28 19:16:14 +0000297 DEBUG(std::cerr << "Disambiguating functions (external-only)\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000298 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) D.add(*I);
Misha Brukman50733362003-07-24 18:17:43 +0000299
300 // Now just rename functions and globals as necessary, keeping what's already
301 // in the set unique.
302 D.setExternalOnly(false);
Misha Brukman91eabc12003-07-28 19:16:14 +0000303 DEBUG(std::cerr << "Disambiguating globals\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000304 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) D.add(*I);
Misha Brukman91eabc12003-07-28 19:16:14 +0000305 DEBUG(std::cerr << "Disambiguating globals\n");
Misha Brukmana259c9b2003-07-24 21:59:10 +0000306 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) D.add(*I);
Misha Brukman50733362003-07-24 18:17:43 +0000307}
308
309
310bool BugDriver::debugCodeGenerator() {
311 // See if we can pin down which functions are being miscompiled...
312 //First, build a list of all of the non-external functions in the program.
313 std::vector<Function*> MisCodegenFunctions;
314 for (Module::iterator I = Program->begin(), E = Program->end(); I != E; ++I)
315 if (!I->isExternal())
316 MisCodegenFunctions.push_back(I);
317
Misha Brukman91eabc12003-07-28 19:16:14 +0000318 // If we are executing the JIT, we *must* keep the function `main' in the
319 // module that is passed in, and not the shared library. However, we still
320 // want to be able to debug the `main' function alone. Thus, we create a new
321 // function `main' which just calls the old one.
322 if (isExecutingJIT()) {
323 // Get the `main' function
324 Function *oldMain = Program->getNamedFunction("main");
Misha Brukmande9720f2003-07-29 16:02:28 +0000325 assert(oldMain && "`main' function not found in program!");
Misha Brukman91eabc12003-07-28 19:16:14 +0000326 // Rename it
327 oldMain->setName("old_main");
328 // Create a NEW `main' function with same type
329 Function *newMain = new Function(oldMain->getFunctionType(),
Misha Brukmanc1e39ee2003-07-28 21:07:39 +0000330 GlobalValue::ExternalLinkage,
Misha Brukman91eabc12003-07-28 19:16:14 +0000331 "main", Program);
332 // Call the old main function and return its result
333 BasicBlock *BB = new BasicBlock("entry", newMain);
334 std::vector<Value*> args;
335 for (Function::aiterator I=newMain->abegin(), E=newMain->aend(); I!=E; ++I)
336 args.push_back(I);
337 CallInst *call = new CallInst(oldMain, args);
338 BB->getInstList().push_back(call);
339
340 // if the type of old function wasn't void, return value of call
341 ReturnInst *ret;
342 if (oldMain->getReturnType() != Type::VoidTy) {
343 ret = new ReturnInst(call);
344 } else {
345 ret = new ReturnInst();
346 }
347
348 // Add the return instruction to the BasicBlock
349 BB->getInstList().push_back(ret);
350 }
351
Misha Brukmande9720f2003-07-29 16:02:28 +0000352 DisambiguateGlobalSymbols(Program);
353
Misha Brukman50733362003-07-24 18:17:43 +0000354 // Do the reduction...
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000355 if (!ReduceMisCodegenFunctions(*this).reduceList(MisCodegenFunctions)) {
356 std::cerr << "*** Execution matches reference output! No problem "
357 << "detected...\nbugpoint can't help you with your problem!\n";
358 return false;
359 }
Misha Brukman50733362003-07-24 18:17:43 +0000360
361 std::cout << "\n*** The following functions are being miscompiled: ";
362 PrintFunctionList(MisCodegenFunctions);
363 std::cout << "\n";
364
365 // Output a bunch of bytecode files for the user...
Misha Brukman91eabc12003-07-28 19:16:14 +0000366 ReduceMisCodegenFunctions(*this).TestFuncs(MisCodegenFunctions, true);
Misha Brukman50733362003-07-24 18:17:43 +0000367
368 return false;
369}