mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 08:46:23 +00:00
640f22e66d
is miscompiling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5893 91177308-0d34-0410-b5e6-96231b3b80d8
229 lines
7.7 KiB
C++
229 lines
7.7 KiB
C++
//===- CrashDebugger.cpp - Debug compilation crashes ----------------------===//
|
|
//
|
|
// This file defines the bugpoint internals that narrow down compilation crashes
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "BugDriver.h"
|
|
#include "SystemUtils.h"
|
|
#include "llvm/Module.h"
|
|
#include "llvm/Bytecode/Writer.h"
|
|
#include "llvm/Pass.h"
|
|
#include <fstream>
|
|
|
|
#if 0
|
|
class DebugCrashes : public ListReducer<const PassInfo*> {
|
|
BugDriver &BD;
|
|
public:
|
|
DebugCrashes(BugDriver &bd) : BD(bd) {}
|
|
|
|
// 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 bool doTest(const std::vector<ElTy> &Removed,
|
|
const std::vector<ElTy> &Kept) {
|
|
return BD.runPasses(Kept);
|
|
}
|
|
};
|
|
#endif
|
|
|
|
/// debugCrash - 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.
|
|
///
|
|
bool BugDriver::debugCrash() {
|
|
std::cout << "\n*** Debugging optimizer crash!\n";
|
|
|
|
#if 0
|
|
// Reduce the list of passes which causes the optimizer to crash...
|
|
DebugCrashes(*this).reduceList(PassesToRun);
|
|
#endif
|
|
|
|
unsigned LastToPass = 0, LastToCrash = PassesToRun.size();
|
|
while (LastToPass != LastToCrash) {
|
|
unsigned Mid = (LastToCrash+LastToPass+1) / 2;
|
|
std::vector<const PassInfo*> P(PassesToRun.begin(),
|
|
PassesToRun.begin()+Mid);
|
|
std::cout << "Checking to see if the first " << Mid << " passes crash: ";
|
|
|
|
if (runPasses(P))
|
|
LastToCrash = Mid-1;
|
|
else
|
|
LastToPass = Mid;
|
|
}
|
|
|
|
// Make sure something crashed. :)
|
|
if (LastToCrash >= PassesToRun.size()) {
|
|
std::cerr << "ERROR: No passes crashed!\n";
|
|
return true;
|
|
}
|
|
|
|
// Calculate which pass it is that crashes...
|
|
const PassInfo *CrashingPass = PassesToRun[LastToCrash];
|
|
|
|
std::cout << "\n*** Found crashing pass '-" << CrashingPass->getPassArgument()
|
|
<< "': " << CrashingPass->getPassName() << "\n";
|
|
|
|
// Compile the program with just the passes that don't crash.
|
|
if (LastToPass != 0) { // Don't bother doing this if the first pass crashes...
|
|
std::vector<const PassInfo*> P(PassesToRun.begin(),
|
|
PassesToRun.begin()+LastToPass);
|
|
std::string Filename;
|
|
std::cout << "Running passes that don't crash to get input for pass: ";
|
|
if (runPasses(P, Filename)) {
|
|
std::cerr << "ERROR: Running the first " << LastToPass
|
|
<< " passes crashed this time!\n";
|
|
return true;
|
|
}
|
|
|
|
// Assuming everything was successful, we now have a valid bytecode file in
|
|
// OutputName. Use it for "Program" Instead.
|
|
delete Program;
|
|
Program = ParseInputFile(Filename);
|
|
|
|
// Delete the file now.
|
|
removeFile(Filename);
|
|
}
|
|
|
|
PassesToRun.clear();
|
|
PassesToRun.push_back(CrashingPass);
|
|
|
|
return debugPassCrash(CrashingPass);
|
|
}
|
|
|
|
/// CountFunctions - return the number of non-external functions defined in the
|
|
/// module.
|
|
static unsigned CountFunctions(Module *M) {
|
|
unsigned N = 0;
|
|
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
|
if (!I->isExternal())
|
|
++N;
|
|
return N;
|
|
}
|
|
|
|
/// debugPassCrash - This method is called when the specified pass crashes on
|
|
/// Program as input. It tries to reduce the testcase to something that still
|
|
/// crashes, but it smaller.
|
|
///
|
|
bool BugDriver::debugPassCrash(const PassInfo *Pass) {
|
|
EmitProgressBytecode("passinput");
|
|
bool Reduced = false, AnyReduction = false;
|
|
|
|
if (CountFunctions(Program) > 1) {
|
|
// Attempt to reduce the input program down to a single function that still
|
|
// crashes. Do this by removing everything except for that one function...
|
|
//
|
|
std::cout << "\n*** Attempting to reduce the testcase to one function\n";
|
|
|
|
for (Module::iterator I = Program->begin(), E = Program->end(); I != E; ++I)
|
|
if (!I->isExternal()) {
|
|
// Extract one function from the module...
|
|
Module *M = extractFunctionFromModule(I);
|
|
|
|
// Make the function the current program...
|
|
std::swap(Program, M);
|
|
|
|
// Find out if the pass still crashes on this pass...
|
|
std::cout << "Checking function '" << I->getName() << "': ";
|
|
if (runPass(Pass)) {
|
|
// Yup, it does, we delete the old module, and continue trying to
|
|
// reduce the testcase...
|
|
delete M;
|
|
|
|
Reduced = AnyReduction = true;
|
|
break;
|
|
}
|
|
|
|
// This pass didn't crash on this function, try the next one.
|
|
delete Program;
|
|
Program = M;
|
|
}
|
|
|
|
if (CountFunctions(Program) > 1) {
|
|
std::cout << "\n*** Couldn't reduce testcase to one function.\n"
|
|
<< " Attempting to remove individual functions.\n";
|
|
std::cout << "XXX Individual function removal unimplemented!\n";
|
|
}
|
|
}
|
|
|
|
if (Reduced) {
|
|
EmitProgressBytecode("reduced-function");
|
|
Reduced = false;
|
|
}
|
|
|
|
// FIXME: This should attempt to delete entire basic blocks at a time to speed
|
|
// up convergence...
|
|
|
|
unsigned Simplification = 4;
|
|
do {
|
|
--Simplification;
|
|
std::cout << "\n*** Attempting to reduce testcase by deleting instruc"
|
|
<< "tions: Simplification Level #" << Simplification << "\n";
|
|
|
|
// Now that we have deleted the functions that are unneccesary for the
|
|
// program, try to remove instructions that are not neccesary to cause the
|
|
// 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.
|
|
//
|
|
TryAgain:
|
|
|
|
// Loop over all of the (non-terminator) instructions remaining in the
|
|
// function, attempting to delete them.
|
|
for (Module::iterator FI = Program->begin(), E = Program->end();
|
|
FI != E; ++FI)
|
|
if (!FI->isExternal()) {
|
|
for (Function::iterator BI = FI->begin(), E = FI->end(); BI != E; ++BI)
|
|
for (BasicBlock::iterator I = BI->begin(), E = --BI->end();
|
|
I != E; ++I) {
|
|
Module *M = deleteInstructionFromProgram(I, Simplification);
|
|
|
|
// Make the function the current program...
|
|
std::swap(Program, M);
|
|
|
|
// Find out if the pass still crashes on this pass...
|
|
std::cout << "Checking instruction '" << I->getName() << "': ";
|
|
if (runPass(Pass)) {
|
|
// Yup, it does, we delete the old module, and continue trying to
|
|
// reduce the testcase...
|
|
delete M;
|
|
Reduced = AnyReduction = true;
|
|
goto TryAgain; // I wish I had a multi-level break here!
|
|
}
|
|
|
|
// This pass didn't crash without this instruction, try the next
|
|
// one.
|
|
delete Program;
|
|
Program = M;
|
|
}
|
|
}
|
|
} while (Simplification);
|
|
|
|
// Try to clean up the testcase by running funcresolve and globaldce...
|
|
if (AnyReduction) {
|
|
std::cout << "\n*** Attempting to perform final cleanups: ";
|
|
Module *M = performFinalCleanups();
|
|
std::swap(Program, M);
|
|
|
|
// Find out if the pass still crashes on the cleaned up program...
|
|
if (runPass(Pass)) {
|
|
// Yup, it does, keep the reduced version...
|
|
delete M;
|
|
Reduced = AnyReduction = true;
|
|
} else {
|
|
delete Program; // Otherwise, restore the original module...
|
|
Program = M;
|
|
}
|
|
}
|
|
|
|
if (Reduced) {
|
|
EmitProgressBytecode("reduced-simplified");
|
|
Reduced = false;
|
|
}
|
|
|
|
return false;
|
|
}
|