2002-11-20 23:28:10 +01:00
|
|
|
//===- TestPasses.cpp - "buggy" passes used to test bugpoint --------------===//
|
2003-10-20 19:47:21 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-20 23:28:10 +01:00
|
|
|
//
|
|
|
|
// This file contains "buggy" passes that are used to test bugpoint, to check
|
|
|
|
// that it is narrowing down testcases correctly.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-07 23:19:30 +02:00
|
|
|
#include "llvm/BasicBlock.h"
|
|
|
|
#include "llvm/Constant.h"
|
2004-07-29 19:30:56 +02:00
|
|
|
#include "llvm/Instructions.h"
|
2003-08-07 23:19:30 +02:00
|
|
|
#include "llvm/Pass.h"
|
2002-11-20 23:28:10 +01:00
|
|
|
#include "llvm/Support/InstVisitor.h"
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
2002-11-20 23:28:10 +01:00
|
|
|
namespace {
|
|
|
|
/// CrashOnCalls - This pass is used to test bugpoint. It intentionally
|
|
|
|
/// crashes on any call instructions.
|
|
|
|
class CrashOnCalls : public BasicBlockPass {
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnBasicBlock(BasicBlock &BB) {
|
|
|
|
for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
|
|
|
|
if (isa<CallInst>(*I))
|
|
|
|
abort();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
RegisterPass<CrashOnCalls>
|
|
|
|
X("bugpoint-crashcalls",
|
|
|
|
"BugPoint Test Pass - Intentionally crash on CallInsts");
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// DeleteCalls - This pass is used to test bugpoint. It intentionally
|
2004-03-17 18:29:08 +01:00
|
|
|
/// deletes some call instructions, "misoptimizing" the program.
|
2002-11-20 23:28:10 +01:00
|
|
|
class DeleteCalls : public BasicBlockPass {
|
|
|
|
bool runOnBasicBlock(BasicBlock &BB) {
|
|
|
|
for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
|
2003-04-23 18:38:00 +02:00
|
|
|
if (CallInst *CI = dyn_cast<CallInst>(I)) {
|
2002-11-20 23:28:10 +01:00
|
|
|
if (!CI->use_empty())
|
|
|
|
CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
|
|
|
|
CI->getParent()->getInstList().erase(CI);
|
2004-03-17 18:29:08 +01:00
|
|
|
break;
|
2002-11-20 23:28:10 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
RegisterPass<DeleteCalls>
|
|
|
|
Y("bugpoint-deletecalls",
|
|
|
|
"BugPoint Test Pass - Intentionally 'misoptimize' CallInsts");
|
|
|
|
}
|