2002-11-20 23:28:10 +01:00
|
|
|
//===- CrashDebugger.cpp - Debug compilation crashes ----------------------===//
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 19:47:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:44:31 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 02:00:37 +02:00
|
|
|
//
|
2003-10-20 19:47:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-20 23:28:10 +01:00
|
|
|
//
|
|
|
|
// This file defines the bugpoint internals that narrow down compilation crashes
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "BugDriver.h"
|
2006-06-07 00:30:59 +02:00
|
|
|
#include "ToolRunner.h"
|
2003-04-25 00:24:58 +02:00
|
|
|
#include "ListReducer.h"
|
2003-04-25 01:51:38 +02:00
|
|
|
#include "llvm/Constant.h"
|
2006-10-25 20:36:14 +02:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2004-07-29 19:30:56 +02:00
|
|
|
#include "llvm/Instructions.h"
|
2003-08-07 23:19:30 +02:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2007-02-05 21:47:22 +01:00
|
|
|
#include "llvm/ValueSymbolTable.h"
|
2003-04-25 01:51:38 +02:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2003-08-07 23:19:30 +02:00
|
|
|
#include "llvm/Support/CFG.h"
|
2003-04-25 01:51:38 +02:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2003-04-25 00:24:58 +02:00
|
|
|
#include "llvm/Transforms/Utils/Cloning.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Support/FileUtilities.h"
|
2006-03-05 23:21:36 +01:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2002-11-20 23:28:10 +01:00
|
|
|
#include <fstream>
|
2003-04-25 00:24:58 +02:00
|
|
|
#include <set>
|
2004-01-14 04:38:37 +01:00
|
|
|
using namespace llvm;
|
2002-11-20 23:28:10 +01:00
|
|
|
|
2006-03-05 23:21:36 +01:00
|
|
|
namespace {
|
|
|
|
cl::opt<bool>
|
|
|
|
KeepMain("keep-main",
|
|
|
|
cl::desc("Force function reduction to keep main"),
|
|
|
|
cl::init(false));
|
|
|
|
}
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
2004-02-18 22:24:48 +01:00
|
|
|
class ReducePassList : public ListReducer<const PassInfo*> {
|
2004-01-14 04:38:37 +01:00
|
|
|
BugDriver &BD;
|
|
|
|
public:
|
2004-02-18 22:24:48 +01:00
|
|
|
ReducePassList(BugDriver &bd) : BD(bd) {}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2004-01-14 04:38:37 +01:00
|
|
|
// doTest - Return true iff running the "removed" passes succeeds, and
|
|
|
|
// running the "Kept" passes fail when run on the output of the "removed"
|
|
|
|
// passes. If we return true, we update the current module of bugpoint.
|
|
|
|
//
|
|
|
|
virtual TestResult doTest(std::vector<const PassInfo*> &Removed,
|
|
|
|
std::vector<const PassInfo*> &Kept);
|
|
|
|
};
|
|
|
|
}
|
2003-04-25 00:24:58 +02:00
|
|
|
|
2004-02-18 22:24:48 +01:00
|
|
|
ReducePassList::TestResult
|
|
|
|
ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
|
|
|
|
std::vector<const PassInfo*> &Suffix) {
|
2004-12-17 00:04:20 +01:00
|
|
|
sys::Path PrefixOutput;
|
2003-06-02 06:54:29 +02:00
|
|
|
Module *OrigProgram = 0;
|
2003-04-25 00:24:58 +02:00
|
|
|
if (!Prefix.empty()) {
|
|
|
|
std::cout << "Checking to see if these passes crash: "
|
|
|
|
<< getPassesString(Prefix) << ": ";
|
2004-12-17 00:04:20 +01:00
|
|
|
std::string PfxOutput;
|
|
|
|
if (BD.runPasses(Prefix, PfxOutput))
|
2003-04-25 00:24:58 +02:00
|
|
|
return KeepPrefix;
|
2003-06-02 06:54:29 +02:00
|
|
|
|
2005-07-08 01:21:43 +02:00
|
|
|
PrefixOutput.set(PfxOutput);
|
2003-06-02 06:54:29 +02:00
|
|
|
OrigProgram = BD.Program;
|
|
|
|
|
2004-12-17 00:04:20 +01:00
|
|
|
BD.Program = ParseInputFile(PrefixOutput.toString());
|
2003-06-02 06:54:29 +02:00
|
|
|
if (BD.Program == 0) {
|
2007-07-04 23:55:50 +02:00
|
|
|
std::cerr << BD.getToolName() << ": Error reading bitcode file '"
|
2003-06-02 06:54:29 +02:00
|
|
|
<< PrefixOutput << "'!\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2005-07-08 05:08:58 +02:00
|
|
|
PrefixOutput.eraseFromDisk();
|
2003-04-25 00:24:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "Checking to see if these passes crash: "
|
|
|
|
<< getPassesString(Suffix) << ": ";
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2003-04-25 00:24:58 +02:00
|
|
|
if (BD.runPasses(Suffix)) {
|
|
|
|
delete OrigProgram; // The suffix crashes alone...
|
|
|
|
return KeepSuffix;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nothing failed, restore state...
|
2003-06-02 06:54:29 +02:00
|
|
|
if (OrigProgram) {
|
|
|
|
delete BD.Program;
|
|
|
|
BD.Program = OrigProgram;
|
|
|
|
}
|
2003-04-25 00:24:58 +02:00
|
|
|
return NoFailure;
|
|
|
|
}
|
|
|
|
|
2006-10-25 20:36:14 +02:00
|
|
|
namespace {
|
|
|
|
/// ReduceCrashingGlobalVariables - This works by removing the global
|
|
|
|
/// variable's initializer and seeing if the program still crashes. If it
|
|
|
|
/// does, then we keep that program and try again.
|
|
|
|
///
|
|
|
|
class ReduceCrashingGlobalVariables : public ListReducer<GlobalVariable*> {
|
|
|
|
BugDriver &BD;
|
|
|
|
bool (*TestFn)(BugDriver &, Module *);
|
|
|
|
public:
|
|
|
|
ReduceCrashingGlobalVariables(BugDriver &bd,
|
|
|
|
bool (*testFn)(BugDriver&, Module*))
|
|
|
|
: BD(bd), TestFn(testFn) {}
|
|
|
|
|
|
|
|
virtual TestResult doTest(std::vector<GlobalVariable*>& Prefix,
|
|
|
|
std::vector<GlobalVariable*>& Kept) {
|
|
|
|
if (!Kept.empty() && TestGlobalVariables(Kept))
|
|
|
|
return KeepSuffix;
|
|
|
|
|
|
|
|
if (!Prefix.empty() && TestGlobalVariables(Prefix))
|
|
|
|
return KeepPrefix;
|
|
|
|
|
|
|
|
return NoFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TestGlobalVariables(std::vector<GlobalVariable*>& GVs);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ReduceCrashingGlobalVariables::TestGlobalVariables(
|
|
|
|
std::vector<GlobalVariable*>& GVs) {
|
|
|
|
// Clone the program to try hacking it apart...
|
2008-03-24 23:16:14 +01:00
|
|
|
DenseMap<const Value*, Value*> ValueMap;
|
|
|
|
Module *M = CloneModule(BD.getProgram(), ValueMap);
|
2006-10-25 20:36:14 +02:00
|
|
|
|
|
|
|
// Convert list to set for fast lookup...
|
|
|
|
std::set<GlobalVariable*> GVSet;
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
|
2008-03-24 23:16:14 +01:00
|
|
|
GlobalVariable* CMGV = cast<GlobalVariable>(ValueMap[GVs[i]]);
|
2006-10-25 20:36:14 +02:00
|
|
|
assert(CMGV && "Global Variable not in module?!");
|
|
|
|
GVSet.insert(CMGV);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "Checking for crash with only these global variables: ";
|
|
|
|
PrintGlobalVariableList(GVs);
|
|
|
|
std::cout << ": ";
|
|
|
|
|
|
|
|
// Loop over and delete any global variables which we aren't supposed to be
|
|
|
|
// playing with...
|
|
|
|
for (Module::global_iterator I = M->global_begin(), E = M->global_end();
|
|
|
|
I != E; ++I)
|
|
|
|
if (I->hasInitializer()) {
|
|
|
|
I->setInitializer(0);
|
|
|
|
I->setLinkage(GlobalValue::ExternalLinkage);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try running the hacked up program...
|
|
|
|
if (TestFn(BD, M)) {
|
|
|
|
BD.setNewProgram(M); // It crashed, keep the trimmed version...
|
|
|
|
|
|
|
|
// Make sure to use global variable pointers that point into the now-current
|
|
|
|
// module.
|
|
|
|
GVs.assign(GVSet.begin(), GVSet.end());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete M;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-01-14 04:38:37 +01:00
|
|
|
namespace llvm {
|
2006-10-25 20:36:14 +02:00
|
|
|
/// ReduceCrashingFunctions reducer - This works by removing functions and
|
|
|
|
/// seeing if the program still crashes. If it does, then keep the newer,
|
|
|
|
/// smaller program.
|
|
|
|
///
|
2004-03-14 21:50:42 +01:00
|
|
|
class ReduceCrashingFunctions : public ListReducer<Function*> {
|
2004-01-14 04:38:37 +01:00
|
|
|
BugDriver &BD;
|
2004-02-19 00:26:28 +01:00
|
|
|
bool (*TestFn)(BugDriver &, Module *);
|
2004-01-14 04:38:37 +01:00
|
|
|
public:
|
2004-02-19 00:26:28 +01:00
|
|
|
ReduceCrashingFunctions(BugDriver &bd,
|
|
|
|
bool (*testFn)(BugDriver &, Module *))
|
|
|
|
: BD(bd), TestFn(testFn) {}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2004-03-14 21:50:42 +01:00
|
|
|
virtual TestResult doTest(std::vector<Function*> &Prefix,
|
|
|
|
std::vector<Function*> &Kept) {
|
2004-01-14 04:38:37 +01:00
|
|
|
if (!Kept.empty() && TestFuncs(Kept))
|
|
|
|
return KeepSuffix;
|
|
|
|
if (!Prefix.empty() && TestFuncs(Prefix))
|
|
|
|
return KeepPrefix;
|
|
|
|
return NoFailure;
|
|
|
|
}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2004-03-14 21:50:42 +01:00
|
|
|
bool TestFuncs(std::vector<Function*> &Prefix);
|
2004-01-14 04:38:37 +01:00
|
|
|
};
|
|
|
|
}
|
2003-04-25 00:24:58 +02:00
|
|
|
|
2004-03-14 21:50:42 +01:00
|
|
|
bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
|
2006-03-05 23:21:36 +01:00
|
|
|
|
|
|
|
//if main isn't present, claim there is no problem
|
2006-10-25 20:36:14 +02:00
|
|
|
if (KeepMain && find(Funcs.begin(), Funcs.end(),
|
2007-02-05 22:19:13 +01:00
|
|
|
BD.getProgram()->getFunction("main")) == Funcs.end())
|
2006-03-05 23:21:36 +01:00
|
|
|
return false;
|
|
|
|
|
2003-10-10 19:57:28 +02:00
|
|
|
// Clone the program to try hacking it apart...
|
2004-02-18 22:24:48 +01:00
|
|
|
Module *M = CloneModule(BD.getProgram());
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2003-04-25 00:24:58 +02:00
|
|
|
// Convert list to set for fast lookup...
|
|
|
|
std::set<Function*> Functions;
|
|
|
|
for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
|
2006-03-17 00:16:17 +01:00
|
|
|
// FIXME: bugpoint should add names to all stripped symbols.
|
|
|
|
assert(!Funcs[i]->getName().empty() &&
|
|
|
|
"Bugpoint doesn't work on stripped modules yet PR718!");
|
2007-02-05 21:47:22 +01:00
|
|
|
Function *CMF = M->getFunction(Funcs[i]->getName());
|
2003-04-25 00:24:58 +02:00
|
|
|
assert(CMF && "Function not in module?!");
|
2007-02-05 21:47:22 +01:00
|
|
|
assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
|
2003-04-25 00:54:06 +02:00
|
|
|
Functions.insert(CMF);
|
2003-04-25 00:24:58 +02:00
|
|
|
}
|
|
|
|
|
2004-03-14 21:50:42 +01:00
|
|
|
std::cout << "Checking for crash with only these functions: ";
|
|
|
|
PrintFunctionList(Funcs);
|
2003-04-25 00:24:58 +02:00
|
|
|
std::cout << ": ";
|
|
|
|
|
|
|
|
// Loop over and delete any functions which we aren't supposed to be playing
|
|
|
|
// with...
|
|
|
|
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
2007-01-30 21:08:39 +01:00
|
|
|
if (!I->isDeclaration() && !Functions.count(I))
|
2003-04-25 00:24:58 +02:00
|
|
|
DeleteFunctionBody(I);
|
|
|
|
|
|
|
|
// Try running the hacked up program...
|
2004-02-19 00:26:28 +01:00
|
|
|
if (TestFn(BD, M)) {
|
2004-02-18 22:24:48 +01:00
|
|
|
BD.setNewProgram(M); // It crashed, keep the trimmed version...
|
2003-04-25 00:24:58 +02:00
|
|
|
|
|
|
|
// Make sure to use function pointers that point into the now-current
|
|
|
|
// module.
|
|
|
|
Funcs.assign(Functions.begin(), Functions.end());
|
|
|
|
return true;
|
|
|
|
}
|
2004-02-18 22:24:48 +01:00
|
|
|
delete M;
|
2003-04-25 00:24:58 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-04-24 19:02:17 +02:00
|
|
|
|
2004-02-18 22:29:46 +01:00
|
|
|
namespace {
|
2004-01-14 04:38:37 +01:00
|
|
|
/// ReduceCrashingBlocks reducer - This works by setting the terminators of
|
|
|
|
/// all terminators except the specified basic blocks to a 'ret' instruction,
|
|
|
|
/// then running the simplify-cfg pass. This has the effect of chopping up
|
|
|
|
/// the CFG really fast which can reduce large functions quickly.
|
|
|
|
///
|
2004-02-19 00:26:28 +01:00
|
|
|
class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
|
2004-01-14 04:38:37 +01:00
|
|
|
BugDriver &BD;
|
2004-02-19 00:26:28 +01:00
|
|
|
bool (*TestFn)(BugDriver &, Module *);
|
2004-01-14 04:38:37 +01:00
|
|
|
public:
|
2004-02-19 00:26:28 +01:00
|
|
|
ReduceCrashingBlocks(BugDriver &bd, bool (*testFn)(BugDriver &, Module *))
|
|
|
|
: BD(bd), TestFn(testFn) {}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2004-02-19 00:26:28 +01:00
|
|
|
virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix,
|
|
|
|
std::vector<const BasicBlock*> &Kept) {
|
2004-01-14 04:38:37 +01:00
|
|
|
if (!Kept.empty() && TestBlocks(Kept))
|
|
|
|
return KeepSuffix;
|
|
|
|
if (!Prefix.empty() && TestBlocks(Prefix))
|
|
|
|
return KeepPrefix;
|
|
|
|
return NoFailure;
|
|
|
|
}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2004-02-19 00:26:28 +01:00
|
|
|
bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
|
2004-01-14 04:38:37 +01:00
|
|
|
};
|
|
|
|
}
|
2003-04-25 01:51:38 +02:00
|
|
|
|
2004-02-19 00:26:28 +01:00
|
|
|
bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
|
2003-10-10 19:57:28 +02:00
|
|
|
// Clone the program to try hacking it apart...
|
2004-02-18 22:24:48 +01:00
|
|
|
Module *M = CloneModule(BD.getProgram());
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2003-04-25 01:51:38 +02:00
|
|
|
// Convert list to set for fast lookup...
|
|
|
|
std::set<BasicBlock*> Blocks;
|
|
|
|
for (unsigned i = 0, e = BBs.size(); i != e; ++i) {
|
|
|
|
// Convert the basic block from the original module to the new module...
|
2004-02-19 00:26:28 +01:00
|
|
|
const Function *F = BBs[i]->getParent();
|
2007-02-05 21:47:22 +01:00
|
|
|
Function *CMF = M->getFunction(F->getName());
|
2003-04-25 01:51:38 +02:00
|
|
|
assert(CMF && "Function not in module?!");
|
2007-02-05 21:47:22 +01:00
|
|
|
assert(CMF->getFunctionType() == F->getFunctionType() && "wrong type?");
|
2003-04-25 01:51:38 +02:00
|
|
|
|
|
|
|
// Get the mapped basic block...
|
|
|
|
Function::iterator CBI = CMF->begin();
|
2004-02-19 00:26:28 +01:00
|
|
|
std::advance(CBI, std::distance(F->begin(),
|
|
|
|
Function::const_iterator(BBs[i])));
|
2003-04-25 01:51:38 +02:00
|
|
|
Blocks.insert(CBI);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "Checking for crash with only these blocks:";
|
2003-10-27 05:44:59 +01:00
|
|
|
unsigned NumPrint = Blocks.size();
|
|
|
|
if (NumPrint > 10) NumPrint = 10;
|
|
|
|
for (unsigned i = 0, e = NumPrint; i != e; ++i)
|
2003-04-25 01:51:38 +02:00
|
|
|
std::cout << " " << BBs[i]->getName();
|
2003-10-27 05:44:59 +01:00
|
|
|
if (NumPrint < Blocks.size())
|
|
|
|
std::cout << "... <" << Blocks.size() << " total>";
|
2003-04-25 01:51:38 +02:00
|
|
|
std::cout << ": ";
|
|
|
|
|
|
|
|
// Loop over and delete any hack up any blocks that are not listed...
|
|
|
|
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
|
|
|
for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
|
2003-11-22 03:10:38 +01:00
|
|
|
if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
|
2003-04-25 01:51:38 +02:00
|
|
|
// Loop over all of the successors of this block, deleting any PHI nodes
|
|
|
|
// that might include it.
|
|
|
|
for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
|
|
|
|
(*SI)->removePredecessor(BB);
|
|
|
|
|
2003-11-22 03:10:38 +01:00
|
|
|
if (BB->getTerminator()->getType() != Type::VoidTy)
|
|
|
|
BB->getTerminator()->replaceAllUsesWith(
|
|
|
|
Constant::getNullValue(BB->getTerminator()->getType()));
|
|
|
|
|
2003-04-25 01:51:38 +02:00
|
|
|
// Delete the old terminator instruction...
|
|
|
|
BB->getInstList().pop_back();
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2003-04-25 01:51:38 +02:00
|
|
|
// Add a new return instruction of the appropriate type...
|
|
|
|
const Type *RetTy = BB->getParent()->getReturnType();
|
2008-04-07 07:47:52 +02:00
|
|
|
ReturnInst::Create(RetTy == Type::VoidTy ? 0 :
|
|
|
|
Constant::getNullValue(RetTy), BB);
|
2003-04-25 01:51:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// The CFG Simplifier pass may delete one of the basic blocks we are
|
|
|
|
// interested in. If it does we need to take the block out of the list. Make
|
|
|
|
// a "persistent mapping" by turning basic blocks into <function, name> pairs.
|
|
|
|
// This won't work well if blocks are unnamed, but that is just the risk we
|
|
|
|
// have to take.
|
|
|
|
std::vector<std::pair<Function*, std::string> > BlockInfo;
|
|
|
|
|
|
|
|
for (std::set<BasicBlock*>::iterator I = Blocks.begin(), E = Blocks.end();
|
|
|
|
I != E; ++I)
|
|
|
|
BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName()));
|
|
|
|
|
|
|
|
// Now run the CFG simplify pass on the function...
|
|
|
|
PassManager Passes;
|
|
|
|
Passes.add(createCFGSimplificationPass());
|
|
|
|
Passes.add(createVerifierPass());
|
|
|
|
Passes.run(*M);
|
|
|
|
|
|
|
|
// Try running on the hacked up program...
|
2004-02-19 00:26:28 +01:00
|
|
|
if (TestFn(BD, M)) {
|
2004-02-18 22:24:48 +01:00
|
|
|
BD.setNewProgram(M); // It crashed, keep the trimmed version...
|
2003-04-25 01:51:38 +02:00
|
|
|
|
|
|
|
// Make sure to use basic block pointers that point into the now-current
|
|
|
|
// module, and that they don't include any deleted blocks.
|
|
|
|
BBs.clear();
|
|
|
|
for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
|
2007-02-05 21:47:22 +01:00
|
|
|
ValueSymbolTable &ST = BlockInfo[i].first->getValueSymbolTable();
|
|
|
|
Value* V = ST.lookup(BlockInfo[i].second);
|
|
|
|
if (V && V->getType() == Type::LabelTy)
|
|
|
|
BBs.push_back(cast<BasicBlock>(V));
|
2003-04-25 01:51:38 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2004-02-18 22:24:48 +01:00
|
|
|
delete M; // It didn't crash, try something else.
|
2003-04-25 01:51:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-02-19 00:26:28 +01:00
|
|
|
/// DebugACrash - Given a predicate that determines whether a component crashes
|
|
|
|
/// on a program, try to destructively reduce the program while still keeping
|
|
|
|
/// the predicate true.
|
|
|
|
static bool DebugACrash(BugDriver &BD, bool (*TestFn)(BugDriver &, Module *)) {
|
2006-10-25 20:36:14 +02:00
|
|
|
// See if we can get away with nuking some of the global variable initializers
|
2003-04-25 02:53:05 +02:00
|
|
|
// in the program...
|
2005-03-15 16:48:06 +01:00
|
|
|
if (BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
|
2006-10-25 20:36:14 +02:00
|
|
|
// Now try to reduce the number of global variable initializers in the
|
|
|
|
// module to something small.
|
2006-10-27 22:18:06 +02:00
|
|
|
Module *M = CloneModule(BD.getProgram());
|
|
|
|
bool DeletedInit = false;
|
|
|
|
|
|
|
|
for (Module::global_iterator I = M->global_begin(), E = M->global_end();
|
|
|
|
I != E; ++I)
|
|
|
|
if (I->hasInitializer()) {
|
|
|
|
I->setInitializer(0);
|
|
|
|
I->setLinkage(GlobalValue::ExternalLinkage);
|
|
|
|
DeletedInit = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DeletedInit) {
|
|
|
|
delete M; // No change made...
|
|
|
|
} else {
|
|
|
|
// See if the program still causes a crash...
|
|
|
|
std::cout << "\nChecking to see if we can delete global inits: ";
|
|
|
|
|
|
|
|
if (TestFn(BD, M)) { // Still crashes?
|
|
|
|
BD.setNewProgram(M);
|
|
|
|
std::cout << "\n*** Able to remove all global initializers!\n";
|
|
|
|
} else { // No longer crashes?
|
|
|
|
std::cout << " - Removing all global inits hides problem!\n";
|
|
|
|
delete M;
|
|
|
|
|
|
|
|
std::vector<GlobalVariable*> GVs;
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2006-10-27 22:18:06 +02:00
|
|
|
for (Module::global_iterator I = BD.getProgram()->global_begin(),
|
|
|
|
E = BD.getProgram()->global_end(); I != E; ++I)
|
|
|
|
if (I->hasInitializer())
|
|
|
|
GVs.push_back(I);
|
2006-10-25 20:36:14 +02:00
|
|
|
|
2006-10-27 22:18:06 +02:00
|
|
|
if (GVs.size() > 1 && !BugpointIsInterrupted) {
|
|
|
|
std::cout << "\n*** Attempting to reduce the number of global "
|
|
|
|
<< "variables in the testcase\n";
|
2006-10-25 20:36:14 +02:00
|
|
|
|
2006-10-27 22:18:06 +02:00
|
|
|
unsigned OldSize = GVs.size();
|
|
|
|
ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs);
|
2006-10-25 20:36:14 +02:00
|
|
|
|
2006-10-27 22:18:06 +02:00
|
|
|
if (GVs.size() < OldSize)
|
2007-07-04 23:55:50 +02:00
|
|
|
BD.EmitProgressBitcode("reduced-global-variables");
|
2006-10-27 22:18:06 +02:00
|
|
|
}
|
2006-10-27 22:22:04 +02:00
|
|
|
}
|
2003-04-25 02:53:05 +02:00
|
|
|
}
|
|
|
|
}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2003-04-25 00:24:58 +02:00
|
|
|
// Now try to reduce the number of functions in the module to something small.
|
2004-03-14 21:50:42 +01:00
|
|
|
std::vector<Function*> Functions;
|
|
|
|
for (Module::iterator I = BD.getProgram()->begin(),
|
2004-02-19 00:26:28 +01:00
|
|
|
E = BD.getProgram()->end(); I != E; ++I)
|
2007-01-30 21:08:39 +01:00
|
|
|
if (!I->isDeclaration())
|
2003-04-25 00:24:58 +02:00
|
|
|
Functions.push_back(I);
|
2002-11-20 23:28:10 +01:00
|
|
|
|
2005-08-02 04:16:17 +02:00
|
|
|
if (Functions.size() > 1 && !BugpointIsInterrupted) {
|
2003-04-25 00:24:58 +02:00
|
|
|
std::cout << "\n*** Attempting to reduce the number of functions "
|
|
|
|
"in the testcase\n";
|
2002-11-20 23:28:10 +01:00
|
|
|
|
2004-02-19 00:26:28 +01:00
|
|
|
unsigned OldSize = Functions.size();
|
|
|
|
ReduceCrashingFunctions(BD, TestFn).reduceList(Functions);
|
2002-11-20 23:28:10 +01:00
|
|
|
|
2005-08-02 04:16:17 +02:00
|
|
|
if (Functions.size() < OldSize)
|
2007-07-04 23:55:50 +02:00
|
|
|
BD.EmitProgressBitcode("reduced-function");
|
2002-12-24 00:49:59 +01:00
|
|
|
}
|
|
|
|
|
2003-04-25 01:51:38 +02:00
|
|
|
// Attempt to delete entire basic blocks at a time to speed up
|
|
|
|
// convergence... this actually works by setting the terminator of the blocks
|
|
|
|
// to a return instruction then running simplifycfg, which can potentially
|
|
|
|
// shrinks the code dramatically quickly
|
|
|
|
//
|
2005-08-02 04:16:17 +02:00
|
|
|
if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
|
2004-02-19 00:26:28 +01:00
|
|
|
std::vector<const BasicBlock*> Blocks;
|
|
|
|
for (Module::const_iterator I = BD.getProgram()->begin(),
|
|
|
|
E = BD.getProgram()->end(); I != E; ++I)
|
|
|
|
for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
|
2003-08-05 17:51:05 +02:00
|
|
|
Blocks.push_back(FI);
|
2004-02-19 00:26:28 +01:00
|
|
|
ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks);
|
2003-08-05 17:51:05 +02:00
|
|
|
}
|
2003-01-23 03:48:33 +01:00
|
|
|
|
2003-04-25 00:24:58 +02:00
|
|
|
// FIXME: This should use the list reducer to converge faster by deleting
|
|
|
|
// larger chunks of instructions at a time!
|
2004-03-13 20:35:54 +01:00
|
|
|
unsigned Simplification = 2;
|
2003-01-23 03:48:33 +01:00
|
|
|
do {
|
2005-08-02 04:16:17 +02:00
|
|
|
if (BugpointIsInterrupted) break;
|
2003-01-23 03:48:33 +01:00
|
|
|
--Simplification;
|
|
|
|
std::cout << "\n*** Attempting to reduce testcase by deleting instruc"
|
2004-07-23 03:30:49 +02:00
|
|
|
<< "tions: Simplification Level #" << Simplification << '\n';
|
2003-01-23 03:48:33 +01:00
|
|
|
|
2003-08-18 16:43:39 +02:00
|
|
|
// Now that we have deleted the functions that are unnecessary for the
|
|
|
|
// program, try to remove instructions that are not necessary to cause the
|
2003-01-23 03:48:33 +01:00
|
|
|
// crash. To do this, we loop through all of the instructions in the
|
|
|
|
// remaining functions, deleting them (replacing any values produced with
|
|
|
|
// nulls), and then running ADCE and SimplifyCFG. If the transformed input
|
|
|
|
// still triggers failure, keep deleting until we cannot trigger failure
|
|
|
|
// anymore.
|
|
|
|
//
|
2004-02-19 00:59:11 +01:00
|
|
|
unsigned InstructionsToSkipBeforeDeleting = 0;
|
2003-01-23 03:48:33 +01:00
|
|
|
TryAgain:
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2003-01-23 03:48:33 +01:00
|
|
|
// Loop over all of the (non-terminator) instructions remaining in the
|
|
|
|
// function, attempting to delete them.
|
2004-02-19 00:59:11 +01:00
|
|
|
unsigned CurInstructionNum = 0;
|
2004-02-19 00:26:28 +01:00
|
|
|
for (Module::const_iterator FI = BD.getProgram()->begin(),
|
|
|
|
E = BD.getProgram()->end(); FI != E; ++FI)
|
2007-01-30 21:08:39 +01:00
|
|
|
if (!FI->isDeclaration())
|
2004-02-19 00:26:28 +01:00
|
|
|
for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
|
|
|
|
++BI)
|
|
|
|
for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
|
2004-02-19 00:59:11 +01:00
|
|
|
I != E; ++I, ++CurInstructionNum)
|
|
|
|
if (InstructionsToSkipBeforeDeleting) {
|
|
|
|
--InstructionsToSkipBeforeDeleting;
|
|
|
|
} else {
|
2005-08-02 04:16:17 +02:00
|
|
|
if (BugpointIsInterrupted) goto ExitLoops;
|
|
|
|
|
2004-02-19 00:59:11 +01:00
|
|
|
std::cout << "Checking instruction '" << I->getName() << "': ";
|
|
|
|
Module *M = BD.deleteInstructionFromProgram(I, Simplification);
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2004-02-19 00:59:11 +01:00
|
|
|
// Find out if the pass still crashes on this pass...
|
|
|
|
if (TestFn(BD, M)) {
|
|
|
|
// Yup, it does, we delete the old module, and continue trying
|
|
|
|
// to reduce the testcase...
|
|
|
|
BD.setNewProgram(M);
|
|
|
|
InstructionsToSkipBeforeDeleting = CurInstructionNum;
|
|
|
|
goto TryAgain; // I wish I had a multi-level break here!
|
|
|
|
}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2004-02-19 00:59:11 +01:00
|
|
|
// This pass didn't crash without this instruction, try the next
|
|
|
|
// one.
|
|
|
|
delete M;
|
2003-01-23 03:48:33 +01:00
|
|
|
}
|
2004-02-19 00:59:11 +01:00
|
|
|
|
|
|
|
if (InstructionsToSkipBeforeDeleting) {
|
|
|
|
InstructionsToSkipBeforeDeleting = 0;
|
|
|
|
goto TryAgain;
|
|
|
|
}
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2003-01-23 03:48:33 +01:00
|
|
|
} while (Simplification);
|
2005-08-02 04:16:17 +02:00
|
|
|
ExitLoops:
|
2003-02-28 17:13:20 +01:00
|
|
|
|
|
|
|
// Try to clean up the testcase by running funcresolve and globaldce...
|
2005-08-02 04:16:17 +02:00
|
|
|
if (!BugpointIsInterrupted) {
|
|
|
|
std::cout << "\n*** Attempting to perform final cleanups: ";
|
|
|
|
Module *M = CloneModule(BD.getProgram());
|
|
|
|
M = BD.performFinalCleanups(M, true);
|
2005-04-22 02:00:37 +02:00
|
|
|
|
2005-08-02 04:16:17 +02:00
|
|
|
// Find out if the pass still crashes on the cleaned up program...
|
|
|
|
if (TestFn(BD, M)) {
|
|
|
|
BD.setNewProgram(M); // Yup, it does, keep the reduced version...
|
|
|
|
} else {
|
|
|
|
delete M;
|
|
|
|
}
|
2003-02-28 17:13:20 +01:00
|
|
|
}
|
|
|
|
|
2007-07-04 23:55:50 +02:00
|
|
|
BD.EmitProgressBitcode("reduced-simplified");
|
2003-02-28 17:13:20 +01:00
|
|
|
|
2005-04-22 02:00:37 +02:00
|
|
|
return false;
|
2004-02-19 00:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool TestForOptimizerCrash(BugDriver &BD, Module *M) {
|
|
|
|
return BD.runPasses(M);
|
2002-11-20 23:28:10 +01:00
|
|
|
}
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2004-02-19 00:26:28 +01:00
|
|
|
/// debugOptimizerCrash - This method is called when some pass crashes on input.
|
|
|
|
/// It attempts to prune down the testcase to something reasonable, and figure
|
|
|
|
/// out exactly which pass is crashing.
|
|
|
|
///
|
2006-08-15 18:40:49 +02:00
|
|
|
bool BugDriver::debugOptimizerCrash(const std::string &ID) {
|
2004-02-19 00:26:28 +01:00
|
|
|
std::cout << "\n*** Debugging optimizer crash!\n";
|
|
|
|
|
|
|
|
// Reduce the list of passes which causes the optimizer to crash...
|
2005-08-02 04:16:17 +02:00
|
|
|
if (!BugpointIsInterrupted)
|
|
|
|
ReducePassList(*this).reduceList(PassesToRun);
|
2004-02-19 00:26:28 +01:00
|
|
|
|
|
|
|
std::cout << "\n*** Found crashing pass"
|
|
|
|
<< (PassesToRun.size() == 1 ? ": " : "es: ")
|
2004-07-23 03:30:49 +02:00
|
|
|
<< getPassesString(PassesToRun) << '\n';
|
2004-02-18 22:02:04 +01:00
|
|
|
|
2007-07-04 23:55:50 +02:00
|
|
|
EmitProgressBitcode(ID);
|
2004-02-19 00:26:28 +01:00
|
|
|
|
|
|
|
return DebugACrash(*this, TestForOptimizerCrash);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool TestForCodeGenCrash(BugDriver &BD, Module *M) {
|
|
|
|
try {
|
2004-07-23 03:30:49 +02:00
|
|
|
std::cerr << '\n';
|
2004-02-19 00:26:28 +01:00
|
|
|
BD.compileProgram(M);
|
2004-07-23 03:30:49 +02:00
|
|
|
std::cerr << '\n';
|
2004-02-19 00:26:28 +01:00
|
|
|
return false;
|
2005-01-22 17:30:58 +01:00
|
|
|
} catch (ToolExecutionError &) {
|
2004-02-19 00:26:28 +01:00
|
|
|
std::cerr << "<crash>\n";
|
|
|
|
return true; // Tool is still crashing.
|
|
|
|
}
|
|
|
|
}
|
2004-02-18 22:02:04 +01:00
|
|
|
|
|
|
|
/// debugCodeGeneratorCrash - This method is called when the code generator
|
|
|
|
/// crashes on an input. It attempts to reduce the input as much as possible
|
|
|
|
/// while still causing the code generator to crash.
|
|
|
|
bool BugDriver::debugCodeGeneratorCrash() {
|
2004-02-18 22:24:48 +01:00
|
|
|
std::cerr << "*** Debugging code generator crash!\n";
|
2004-02-18 22:02:04 +01:00
|
|
|
|
2004-02-19 00:26:28 +01:00
|
|
|
return DebugACrash(*this, TestForCodeGenCrash);
|
2004-02-18 22:02:04 +01:00
|
|
|
}
|