[llvm-rc] Add rudimentary support for codepages
[llvm-core.git] / tools / bugpoint-passes / TestPasses.cpp
blob22ded6261a1a313534020c8a5a8e734d17bed9b3
1 //===- TestPasses.cpp - "buggy" passes used to test bugpoint --------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // 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.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/IR/BasicBlock.h"
16 #include "llvm/IR/Constant.h"
17 #include "llvm/IR/InstVisitor.h"
18 #include "llvm/IR/Instructions.h"
19 #include "llvm/IR/Type.h"
20 #include "llvm/Pass.h"
22 using namespace llvm;
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 public:
29 static char ID; // Pass ID, replacement for typeid
30 CrashOnCalls() : BasicBlockPass(ID) {}
31 private:
32 void getAnalysisUsage(AnalysisUsage &AU) const override {
33 AU.setPreservesAll();
36 bool runOnBasicBlock(BasicBlock &BB) override {
37 for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
38 if (isa<CallInst>(*I))
39 abort();
41 return false;
46 char CrashOnCalls::ID = 0;
47 static RegisterPass<CrashOnCalls>
48 X("bugpoint-crashcalls",
49 "BugPoint Test Pass - Intentionally crash on CallInsts");
51 namespace {
52 /// DeleteCalls - This pass is used to test bugpoint. It intentionally
53 /// deletes some call instructions, "misoptimizing" the program.
54 class DeleteCalls : public BasicBlockPass {
55 public:
56 static char ID; // Pass ID, replacement for typeid
57 DeleteCalls() : BasicBlockPass(ID) {}
58 private:
59 bool runOnBasicBlock(BasicBlock &BB) override {
60 for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
61 if (CallInst *CI = dyn_cast<CallInst>(I)) {
62 if (!CI->use_empty())
63 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
64 CI->getParent()->getInstList().erase(CI);
65 break;
67 return false;
72 char DeleteCalls::ID = 0;
73 static RegisterPass<DeleteCalls>
74 Y("bugpoint-deletecalls",
75 "BugPoint Test Pass - Intentionally 'misoptimize' CallInsts");
77 namespace {
78 /// CrashOnDeclFunc - This pass is used to test bugpoint. It intentionally
79 /// crashes if the module has an undefined function (ie a function that is
80 /// defined in an external module).
81 class CrashOnDeclFunc : public ModulePass {
82 public:
83 static char ID; // Pass ID, replacement for typeid
84 CrashOnDeclFunc() : ModulePass(ID) {}
86 private:
87 bool runOnModule(Module &M) override {
88 for (auto &F : M.functions()) {
89 if (F.isDeclaration())
90 abort();
92 return false;
97 char CrashOnDeclFunc::ID = 0;
98 static RegisterPass<CrashOnDeclFunc>
99 Z("bugpoint-crash-decl-funcs",
100 "BugPoint Test Pass - Intentionally crash on declared functions");
102 namespace {
103 /// CrashOnOneCU - This pass is used to test bugpoint. It intentionally
104 /// crashes if the Module has two or more compile units
105 class CrashOnTooManyCUs : public ModulePass {
106 public:
107 static char ID;
108 CrashOnTooManyCUs() : ModulePass(ID) {}
110 private:
111 bool runOnModule(Module &M) override {
112 NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu");
113 if (!CU_Nodes)
114 return false;
115 if (CU_Nodes->getNumOperands() >= 2)
116 abort();
117 return false;
122 char CrashOnTooManyCUs::ID = 0;
123 static RegisterPass<CrashOnTooManyCUs>
124 A("bugpoint-crash-too-many-cus",
125 "BugPoint Test Pass - Intentionally crash on too many CUs");