2002-11-20 23:28:10 +01:00
|
|
|
//===- TestPasses.cpp - "buggy" passes used to test bugpoint --------------===//
|
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 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"
|
2005-03-17 16:38:16 +01:00
|
|
|
#include "llvm/Type.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 {
|
2007-05-01 23:15:47 +02:00
|
|
|
public:
|
2007-05-03 03:11:54 +02:00
|
|
|
static char ID; // Pass ID, replacement for typeid
|
2009-02-18 06:09:16 +01:00
|
|
|
CrashOnCalls() : BasicBlockPass(&ID) {}
|
2007-05-01 23:15:47 +02:00
|
|
|
private:
|
2002-11-20 23:28:10 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-05-03 03:11:54 +02:00
|
|
|
char CrashOnCalls::ID = 0;
|
2002-11-20 23:28:10 +01:00
|
|
|
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 {
|
2007-05-01 23:15:47 +02:00
|
|
|
public:
|
2007-05-03 03:11:54 +02:00
|
|
|
static char ID; // Pass ID, replacement for typeid
|
2009-02-18 06:09:16 +01:00
|
|
|
DeleteCalls() : BasicBlockPass(&ID) {}
|
2007-05-01 23:15:47 +02:00
|
|
|
private:
|
2002-11-20 23:28:10 +01:00
|
|
|
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())
|
2009-07-31 22:28:14 +02:00
|
|
|
CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
|
2002-11-20 23:28:10 +01:00
|
|
|
CI->getParent()->getInstList().erase(CI);
|
2004-03-17 18:29:08 +01:00
|
|
|
break;
|
2002-11-20 23:28:10 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2007-05-01 23:15:47 +02:00
|
|
|
|
2007-05-03 03:11:54 +02:00
|
|
|
char DeleteCalls::ID = 0;
|
2002-11-20 23:28:10 +01:00
|
|
|
RegisterPass<DeleteCalls>
|
|
|
|
Y("bugpoint-deletecalls",
|
|
|
|
"BugPoint Test Pass - Intentionally 'misoptimize' CallInsts");
|
|
|
|
}
|