af5c045788a724123eb63356480ef8154b622b5d
[oota-llvm.git] / tools / bugpoint / TestPasses.cpp
1 //===- TestPasses.cpp - "buggy" passes used to test bugpoint --------------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains "buggy" passes that are used to test bugpoint, to check
11 // that it is narrowing down testcases correctly.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/BasicBlock.h"
16 #include "llvm/Constant.h"
17 #include "llvm/iOther.h"
18 #include "llvm/Pass.h"
19 #include "llvm/Support/InstVisitor.h"
20
21 namespace {
22   /// CrashOnCalls - This pass is used to test bugpoint.  It intentionally
23   /// crashes on any call instructions.
24   class CrashOnCalls : public BasicBlockPass {
25     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
26       AU.setPreservesAll();
27     }
28
29     bool runOnBasicBlock(BasicBlock &BB) {
30       for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
31         if (isa<CallInst>(*I))
32           abort();
33
34       return false;
35     }
36   };
37
38   RegisterPass<CrashOnCalls>
39   X("bugpoint-crashcalls",
40     "BugPoint Test Pass - Intentionally crash on CallInsts");
41 }
42
43 namespace {
44   /// DeleteCalls - This pass is used to test bugpoint.  It intentionally
45   /// deletes all call instructions, "misoptimizing" the program.
46   class DeleteCalls : public BasicBlockPass {
47     bool runOnBasicBlock(BasicBlock &BB) {
48       for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
49         if (CallInst *CI = dyn_cast<CallInst>(I)) {
50           if (!CI->use_empty())
51             CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
52           CI->getParent()->getInstList().erase(CI);
53         }
54       return false;
55     }
56   };
57
58   RegisterPass<DeleteCalls>
59   Y("bugpoint-deletecalls",
60     "BugPoint Test Pass - Intentionally 'misoptimize' CallInsts");
61 }