Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 1 | //===- TestPasses.cpp - "buggy" passes used to test bugpoint --------------===// |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 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 | |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 15 | #include "llvm/BasicBlock.h" |
Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 16 | #include "llvm/Constant.h" |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 17 | #include "llvm/Instructions.h" |
Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 18 | #include "llvm/Pass.h" |
Chris Lattner | 5b3a455 | 2005-03-17 15:38:16 +0000 | [diff] [blame] | 19 | #include "llvm/Type.h" |
Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 20 | #include "llvm/Support/InstVisitor.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 21 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 22 | using namespace llvm; |
| 23 | |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 24 | namespace { |
| 25 | /// CrashOnCalls - This pass is used to test bugpoint. It intentionally |
| 26 | /// crashes on any call instructions. |
| 27 | class CrashOnCalls : public BasicBlockPass { |
| 28 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 29 | AU.setPreservesAll(); |
| 30 | } |
| 31 | |
| 32 | bool runOnBasicBlock(BasicBlock &BB) { |
| 33 | for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I) |
| 34 | if (isa<CallInst>(*I)) |
| 35 | abort(); |
| 36 | |
| 37 | return false; |
| 38 | } |
| 39 | }; |
| 40 | |
| 41 | RegisterPass<CrashOnCalls> |
| 42 | X("bugpoint-crashcalls", |
| 43 | "BugPoint Test Pass - Intentionally crash on CallInsts"); |
| 44 | } |
| 45 | |
| 46 | namespace { |
| 47 | /// DeleteCalls - This pass is used to test bugpoint. It intentionally |
Chris Lattner | 9d5968d | 2004-03-17 17:29:08 +0000 | [diff] [blame] | 48 | /// deletes some call instructions, "misoptimizing" the program. |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 49 | class DeleteCalls : public BasicBlockPass { |
| 50 | bool runOnBasicBlock(BasicBlock &BB) { |
| 51 | for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I) |
Chris Lattner | 6e96a99c | 2003-04-23 16:38:00 +0000 | [diff] [blame] | 52 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 53 | if (!CI->use_empty()) |
| 54 | CI->replaceAllUsesWith(Constant::getNullValue(CI->getType())); |
| 55 | CI->getParent()->getInstList().erase(CI); |
Chris Lattner | 9d5968d | 2004-03-17 17:29:08 +0000 | [diff] [blame] | 56 | break; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 57 | } |
| 58 | return false; |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | RegisterPass<DeleteCalls> |
| 63 | Y("bugpoint-deletecalls", |
| 64 | "BugPoint Test Pass - Intentionally 'misoptimize' CallInsts"); |
| 65 | } |