Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1 | //===-- Verifier.cpp - Implement the Module Verifier -------------*- C++ -*-==// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43: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 | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 3e6e3e6 | 2002-03-29 19:06:18 +0000 | [diff] [blame] | 10 | // This file defines the function verifier interface, that can be used for some |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 11 | // sanity checking of input to the system. |
| 12 | // |
Misha Brukman | 1c9de46 | 2004-06-24 21:47:35 +0000 | [diff] [blame] | 13 | // Note that this does not provide full `Java style' security and verifications, |
| 14 | // instead it just tries to ensure that code is well-formed. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 15 | // |
Misha Brukman | 1c9de46 | 2004-06-24 21:47:35 +0000 | [diff] [blame] | 16 | // * Both of a binary operator's parameters are of the same type |
Chris Lattner | d46bb6e | 2002-04-24 19:12:21 +0000 | [diff] [blame] | 17 | // * Verify that the indices of mem access instructions match other operands |
Misha Brukman | 1c9de46 | 2004-06-24 21:47:35 +0000 | [diff] [blame] | 18 | // * Verify that arithmetic and other things are only performed on first-class |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 19 | // types. Verify that shifts & logicals only happen on integrals f.e. |
Misha Brukman | 1c9de46 | 2004-06-24 21:47:35 +0000 | [diff] [blame] | 20 | // * All of the constants in a switch statement are of the correct type |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 21 | // * The code is in valid SSA form |
Misha Brukman | 1c9de46 | 2004-06-24 21:47:35 +0000 | [diff] [blame] | 22 | // * It should be illegal to put a label into any other type (like a structure) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 23 | // or to return one. [except constant arrays!] |
Chris Lattner | 7704e9f | 2002-03-14 16:53:48 +0000 | [diff] [blame] | 24 | // * Only phi nodes can be self referential: 'add int %0, %0 ; <int>:0' is bad |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 25 | // * PHI nodes must have an entry for each predecessor, with no extras. |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 26 | // * PHI nodes must be the first thing in a basic block, all grouped together |
Chris Lattner | 4cd9df8 | 2002-10-06 21:00:31 +0000 | [diff] [blame] | 27 | // * PHI nodes must have at least one entry |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 28 | // * All basic blocks should only end with terminator insts, not contain them |
Chris Lattner | 3e6e3e6 | 2002-03-29 19:06:18 +0000 | [diff] [blame] | 29 | // * The entry node to a function must not have predecessors |
Misha Brukman | fa10053 | 2003-10-10 17:54:14 +0000 | [diff] [blame] | 30 | // * All Instructions must be embedded into a basic block |
Misha Brukman | 1c9de46 | 2004-06-24 21:47:35 +0000 | [diff] [blame] | 31 | // * Functions cannot take a void-typed parameter |
Chris Lattner | af95e58 | 2002-04-13 22:48:46 +0000 | [diff] [blame] | 32 | // * Verify that a function's argument list agrees with it's declared type. |
Chris Lattner | fbf5be5 | 2002-03-15 20:25:09 +0000 | [diff] [blame] | 33 | // * It is illegal to specify a name for a void value. |
Misha Brukman | fa10053 | 2003-10-10 17:54:14 +0000 | [diff] [blame] | 34 | // * It is illegal to have a internal global value with no initializer |
Chris Lattner | 486302a | 2002-04-12 18:20:49 +0000 | [diff] [blame] | 35 | // * It is illegal to have a ret instruction that returns a value that does not |
| 36 | // agree with the function return value type. |
Chris Lattner | 338a462 | 2002-05-08 19:49:50 +0000 | [diff] [blame] | 37 | // * Function call argument types match the function prototype |
Chris Lattner | d46bb6e | 2002-04-24 19:12:21 +0000 | [diff] [blame] | 38 | // * All other things that are tested by asserts spread about the code... |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 39 | // |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | |
| 42 | #include "llvm/Analysis/Verifier.h" |
Brian Gaeke | 9f47927 | 2003-11-16 23:07:42 +0000 | [diff] [blame] | 43 | #include "llvm/Assembly/Writer.h" |
Chris Lattner | 2ad5aa8 | 2005-05-08 22:27:09 +0000 | [diff] [blame^] | 44 | #include "llvm/CallingConv.h" |
Chris Lattner | dc63211 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 45 | #include "llvm/Constants.h" |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 46 | #include "llvm/Pass.h" |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 47 | #include "llvm/Module.h" |
Chris Lattner | b870ca7 | 2004-03-14 03:16:15 +0000 | [diff] [blame] | 48 | #include "llvm/ModuleProvider.h" |
Chris Lattner | af95e58 | 2002-04-13 22:48:46 +0000 | [diff] [blame] | 49 | #include "llvm/DerivedTypes.h" |
Chris Lattner | dc63211 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 50 | #include "llvm/Instructions.h" |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 51 | #include "llvm/Intrinsics.h" |
Chris Lattner | dc63211 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 52 | #include "llvm/PassManager.h" |
| 53 | #include "llvm/SymbolTable.h" |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 54 | #include "llvm/Analysis/Dominators.h" |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 55 | #include "llvm/Support/CFG.h" |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 56 | #include "llvm/Support/InstVisitor.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 57 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 58 | #include <algorithm> |
Reid Spencer | 8baf8e2 | 2004-07-04 11:55:37 +0000 | [diff] [blame] | 59 | #include <iostream> |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 60 | #include <sstream> |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 61 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 62 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 63 | namespace { // Anonymous namespace for class |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 64 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 65 | struct Verifier : public FunctionPass, InstVisitor<Verifier> { |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 66 | bool Broken; // Is this module found to be broken? |
| 67 | bool RealPass; // Are we not being run by a PassManager? |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 68 | VerifierFailureAction action; |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 69 | // What to do if verification fails. |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 70 | Module *Mod; // Module we are verifying right now |
| 71 | DominatorSet *DS; // Dominator set, caution can be null! |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 72 | std::stringstream msgs; // A stringstream to collect messages |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 73 | |
Chris Lattner | c9e79d0 | 2004-09-29 20:07:45 +0000 | [diff] [blame] | 74 | /// InstInThisBlock - when verifying a basic block, keep track of all of the |
| 75 | /// instructions we have seen so far. This allows us to do efficient |
| 76 | /// dominance checks for the case when an instruction has an operand that is |
| 77 | /// an instruction in the same block. |
| 78 | std::set<Instruction*> InstsInThisBlock; |
| 79 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 80 | Verifier() |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 81 | : Broken(false), RealPass(true), action(AbortProcessAction), |
Jeff Cohen | c8f1f4b | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 82 | DS(0), msgs( std::ios::app | std::ios::out ) {} |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 83 | Verifier( VerifierFailureAction ctn ) |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 84 | : Broken(false), RealPass(true), action(ctn), DS(0), |
Jeff Cohen | c8f1f4b | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 85 | msgs( std::ios::app | std::ios::out ) {} |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 86 | Verifier(bool AB ) |
| 87 | : Broken(false), RealPass(true), |
| 88 | action( AB ? AbortProcessAction : PrintMessageAction), DS(0), |
Jeff Cohen | c8f1f4b | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 89 | msgs( std::ios::app | std::ios::out ) {} |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 90 | Verifier(DominatorSet &ds) |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 91 | : Broken(false), RealPass(false), action(PrintMessageAction), |
Jeff Cohen | c8f1f4b | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 92 | DS(&ds), msgs( std::ios::app | std::ios::out ) {} |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 93 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 94 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 95 | bool doInitialization(Module &M) { |
Brian Gaeke | 9f47927 | 2003-11-16 23:07:42 +0000 | [diff] [blame] | 96 | Mod = &M; |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 97 | verifySymbolTable(M.getSymbolTable()); |
Chris Lattner | a450397 | 2002-09-19 16:12:19 +0000 | [diff] [blame] | 98 | |
| 99 | // If this is a real pass, in a pass manager, we must abort before |
| 100 | // returning back to the pass manager, or else the pass manager may try to |
| 101 | // run other passes on the broken module. |
Chris Lattner | a450397 | 2002-09-19 16:12:19 +0000 | [diff] [blame] | 102 | if (RealPass) |
| 103 | abortIfBroken(); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 104 | return false; |
| 105 | } |
| 106 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 107 | bool runOnFunction(Function &F) { |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 108 | // Get dominator information if we are being run by PassManager |
| 109 | if (RealPass) DS = &getAnalysis<DominatorSet>(); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 110 | visit(F); |
Chris Lattner | c9e79d0 | 2004-09-29 20:07:45 +0000 | [diff] [blame] | 111 | InstsInThisBlock.clear(); |
Chris Lattner | a450397 | 2002-09-19 16:12:19 +0000 | [diff] [blame] | 112 | |
| 113 | // If this is a real pass, in a pass manager, we must abort before |
| 114 | // returning back to the pass manager, or else the pass manager may try to |
| 115 | // run other passes on the broken module. |
Chris Lattner | a450397 | 2002-09-19 16:12:19 +0000 | [diff] [blame] | 116 | if (RealPass) |
| 117 | abortIfBroken(); |
| 118 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 119 | return false; |
| 120 | } |
| 121 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 122 | bool doFinalization(Module &M) { |
Chris Lattner | 9713b84 | 2002-04-28 16:04:26 +0000 | [diff] [blame] | 123 | // Scan through, checking all of the external function's linkage now... |
Chris Lattner | f75832b | 2004-06-03 06:38:43 +0000 | [diff] [blame] | 124 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) { |
Chris Lattner | 3ac483b | 2003-04-16 20:42:40 +0000 | [diff] [blame] | 125 | visitGlobalValue(*I); |
Chris Lattner | 9713b84 | 2002-04-28 16:04:26 +0000 | [diff] [blame] | 126 | |
Chris Lattner | f75832b | 2004-06-03 06:38:43 +0000 | [diff] [blame] | 127 | // Check to make sure function prototypes are okay. |
| 128 | if (I->isExternal()) visitFunction(*I); |
| 129 | } |
| 130 | |
Chris Lattner | 531f9e9 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 131 | for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I) |
Chris Lattner | e340065 | 2004-12-15 20:23:49 +0000 | [diff] [blame] | 132 | visitGlobalVariable(*I); |
Chris Lattner | 78bc0fa | 2002-10-06 22:47:32 +0000 | [diff] [blame] | 133 | |
Chris Lattner | a450397 | 2002-09-19 16:12:19 +0000 | [diff] [blame] | 134 | // If the module is broken, abort at this time. |
| 135 | abortIfBroken(); |
Chris Lattner | d46bb6e | 2002-04-24 19:12:21 +0000 | [diff] [blame] | 136 | return false; |
| 137 | } |
| 138 | |
Chris Lattner | f12cc84 | 2002-04-28 21:27:06 +0000 | [diff] [blame] | 139 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 140 | AU.setPreservesAll(); |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 141 | if (RealPass) |
Chris Lattner | 40eb9da | 2002-08-08 19:01:28 +0000 | [diff] [blame] | 142 | AU.addRequired<DominatorSet>(); |
Chris Lattner | f12cc84 | 2002-04-28 21:27:06 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 145 | /// abortIfBroken - If the module is broken and we are supposed to abort on |
| 146 | /// this condition, do so. |
| 147 | /// |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 148 | void abortIfBroken() { |
| 149 | if (Broken) |
| 150 | { |
| 151 | msgs << "Broken module found, "; |
John Criswell | 987ad19 | 2004-05-04 21:46:05 +0000 | [diff] [blame] | 152 | switch (action) |
| 153 | { |
| 154 | case AbortProcessAction: |
| 155 | msgs << "compilation aborted!\n"; |
| 156 | std::cerr << msgs.str(); |
| 157 | abort(); |
| 158 | case ThrowExceptionAction: |
| 159 | msgs << "verification terminated.\n"; |
| 160 | throw msgs.str(); |
| 161 | case PrintMessageAction: |
| 162 | msgs << "verification continues.\n"; |
| 163 | std::cerr << msgs.str(); |
| 164 | break; |
| 165 | case ReturnStatusAction: |
| 166 | break; |
| 167 | } |
Chris Lattner | a450397 | 2002-09-19 16:12:19 +0000 | [diff] [blame] | 168 | } |
| 169 | } |
| 170 | |
Chris Lattner | 3ac483b | 2003-04-16 20:42:40 +0000 | [diff] [blame] | 171 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 172 | // Verification methods... |
Chris Lattner | 98cf1f5 | 2002-11-20 18:36:02 +0000 | [diff] [blame] | 173 | void verifySymbolTable(SymbolTable &ST); |
Chris Lattner | 3ac483b | 2003-04-16 20:42:40 +0000 | [diff] [blame] | 174 | void visitGlobalValue(GlobalValue &GV); |
Chris Lattner | e340065 | 2004-12-15 20:23:49 +0000 | [diff] [blame] | 175 | void visitGlobalVariable(GlobalVariable &GV); |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 176 | void visitFunction(Function &F); |
| 177 | void visitBasicBlock(BasicBlock &BB); |
| 178 | void visitPHINode(PHINode &PN); |
| 179 | void visitBinaryOperator(BinaryOperator &B); |
Chris Lattner | 1f41925 | 2002-09-09 20:26:04 +0000 | [diff] [blame] | 180 | void visitShiftInst(ShiftInst &SI); |
Chris Lattner | 5b33748 | 2003-10-18 05:57:43 +0000 | [diff] [blame] | 181 | void visitVANextInst(VANextInst &VAN) { visitInstruction(VAN); } |
| 182 | void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); } |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 183 | void visitCallInst(CallInst &CI); |
| 184 | void visitGetElementPtrInst(GetElementPtrInst &GEP); |
| 185 | void visitLoadInst(LoadInst &LI); |
| 186 | void visitStoreInst(StoreInst &SI); |
| 187 | void visitInstruction(Instruction &I); |
| 188 | void visitTerminatorInst(TerminatorInst &I); |
| 189 | void visitReturnInst(ReturnInst &RI); |
Chris Lattner | ab5aa14 | 2004-05-21 16:47:21 +0000 | [diff] [blame] | 190 | void visitSwitchInst(SwitchInst &SI); |
Chris Lattner | 75648e7 | 2004-03-12 05:54:31 +0000 | [diff] [blame] | 191 | void visitSelectInst(SelectInst &SI); |
Chris Lattner | 903a25d | 2002-11-21 16:54:22 +0000 | [diff] [blame] | 192 | void visitUserOp1(Instruction &I); |
| 193 | void visitUserOp2(Instruction &I) { visitUserOp1(I); } |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 194 | void visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 195 | |
Chris Lattner | 7e5e456 | 2003-11-21 17:35:51 +0000 | [diff] [blame] | 196 | |
| 197 | void WriteValue(const Value *V) { |
| 198 | if (!V) return; |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 199 | if (isa<Instruction>(V)) { |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 200 | msgs << *V; |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 201 | } else { |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 202 | WriteAsOperand (msgs, V, true, true, Mod); |
| 203 | msgs << "\n"; |
Chris Lattner | 7e5e456 | 2003-11-21 17:35:51 +0000 | [diff] [blame] | 204 | } |
| 205 | } |
| 206 | |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 207 | void WriteType(const Type* T ) { |
| 208 | if ( !T ) return; |
| 209 | WriteTypeSymbolic(msgs, T, Mod ); |
| 210 | } |
| 211 | |
Chris Lattner | 7e5e456 | 2003-11-21 17:35:51 +0000 | [diff] [blame] | 212 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 213 | // CheckFailed - A check failed, so print out the condition and the message |
| 214 | // that failed. This provides a nice place to put a breakpoint if you want |
| 215 | // to see why something is not correct. |
Chris Lattner | 7e5e456 | 2003-11-21 17:35:51 +0000 | [diff] [blame] | 216 | void CheckFailed(const std::string &Message, |
| 217 | const Value *V1 = 0, const Value *V2 = 0, |
| 218 | const Value *V3 = 0, const Value *V4 = 0) { |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 219 | msgs << Message << "\n"; |
Chris Lattner | 7e5e456 | 2003-11-21 17:35:51 +0000 | [diff] [blame] | 220 | WriteValue(V1); |
| 221 | WriteValue(V2); |
| 222 | WriteValue(V3); |
| 223 | WriteValue(V4); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 224 | Broken = true; |
| 225 | } |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 226 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 227 | void CheckFailed( const std::string& Message, const Value* V1, |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 228 | const Type* T2, const Value* V3 = 0 ) { |
| 229 | msgs << Message << "\n"; |
| 230 | WriteValue(V1); |
| 231 | WriteType(T2); |
| 232 | WriteValue(V3); |
Reid Spencer | 4148139 | 2004-05-27 21:58:13 +0000 | [diff] [blame] | 233 | Broken = true; |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 234 | } |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 235 | }; |
Chris Lattner | 00fb26c | 2002-07-23 18:08:17 +0000 | [diff] [blame] | 236 | |
Chris Lattner | ef90129 | 2003-11-13 19:47:29 +0000 | [diff] [blame] | 237 | RegisterOpt<Verifier> X("verify", "Module Verifier"); |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 238 | } // End anonymous namespace |
| 239 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 240 | |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 241 | // Assert - We know that cond should be true, if not print an error message. |
| 242 | #define Assert(C, M) \ |
Chris Lattner | 412d277 | 2002-04-28 16:06:24 +0000 | [diff] [blame] | 243 | do { if (!(C)) { CheckFailed(M); return; } } while (0) |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 244 | #define Assert1(C, M, V1) \ |
Chris Lattner | 412d277 | 2002-04-28 16:06:24 +0000 | [diff] [blame] | 245 | do { if (!(C)) { CheckFailed(M, V1); return; } } while (0) |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 246 | #define Assert2(C, M, V1, V2) \ |
Chris Lattner | 412d277 | 2002-04-28 16:06:24 +0000 | [diff] [blame] | 247 | do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0) |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 248 | #define Assert3(C, M, V1, V2, V3) \ |
| 249 | do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0) |
| 250 | #define Assert4(C, M, V1, V2, V3, V4) \ |
| 251 | do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 252 | |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 253 | |
Chris Lattner | 3ac483b | 2003-04-16 20:42:40 +0000 | [diff] [blame] | 254 | void Verifier::visitGlobalValue(GlobalValue &GV) { |
| 255 | Assert1(!GV.isExternal() || GV.hasExternalLinkage(), |
Chris Lattner | dcdc371 | 2003-11-21 20:33:27 +0000 | [diff] [blame] | 256 | "Global is external, but doesn't have external linkage!", &GV); |
Chris Lattner | 3ac483b | 2003-04-16 20:42:40 +0000 | [diff] [blame] | 257 | Assert1(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV), |
| 258 | "Only global variables can have appending linkage!", &GV); |
| 259 | |
| 260 | if (GV.hasAppendingLinkage()) { |
| 261 | GlobalVariable &GVar = cast<GlobalVariable>(GV); |
| 262 | Assert1(isa<ArrayType>(GVar.getType()->getElementType()), |
| 263 | "Only global arrays can have appending linkage!", &GV); |
| 264 | } |
| 265 | } |
| 266 | |
Chris Lattner | e340065 | 2004-12-15 20:23:49 +0000 | [diff] [blame] | 267 | void Verifier::visitGlobalVariable(GlobalVariable &GV) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 268 | if (GV.hasInitializer()) |
Chris Lattner | e340065 | 2004-12-15 20:23:49 +0000 | [diff] [blame] | 269 | Assert1(GV.getInitializer()->getType() == GV.getType()->getElementType(), |
| 270 | "Global variable initializer type does not match global " |
| 271 | "variable type!", &GV); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 272 | |
Chris Lattner | e340065 | 2004-12-15 20:23:49 +0000 | [diff] [blame] | 273 | visitGlobalValue(GV); |
| 274 | } |
| 275 | |
| 276 | |
Chris Lattner | af95e58 | 2002-04-13 22:48:46 +0000 | [diff] [blame] | 277 | // verifySymbolTable - Verify that a function or module symbol table is ok |
Chris Lattner | fbf5be5 | 2002-03-15 20:25:09 +0000 | [diff] [blame] | 278 | // |
Chris Lattner | 98cf1f5 | 2002-11-20 18:36:02 +0000 | [diff] [blame] | 279 | void Verifier::verifySymbolTable(SymbolTable &ST) { |
Chris Lattner | fbf5be5 | 2002-03-15 20:25:09 +0000 | [diff] [blame] | 280 | |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 281 | // Loop over all of the values in all type planes in the symbol table. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 282 | for (SymbolTable::plane_const_iterator PI = ST.plane_begin(), |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 283 | PE = ST.plane_end(); PI != PE; ++PI) |
| 284 | for (SymbolTable::value_const_iterator VI = PI->second.begin(), |
| 285 | VE = PI->second.end(); VI != VE; ++VI) { |
| 286 | Value *V = VI->second; |
Chris Lattner | fbf5be5 | 2002-03-15 20:25:09 +0000 | [diff] [blame] | 287 | // Check that there are no void typed values in the symbol table. Values |
| 288 | // with a void type cannot be put into symbol tables because they cannot |
| 289 | // have names! |
| 290 | Assert1(V->getType() != Type::VoidTy, |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 291 | "Values with void type are not allowed to have names!", V); |
Chris Lattner | fbf5be5 | 2002-03-15 20:25:09 +0000 | [diff] [blame] | 292 | } |
Chris Lattner | fbf5be5 | 2002-03-15 20:25:09 +0000 | [diff] [blame] | 293 | } |
| 294 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 295 | // visitFunction - Verify that a function is ok. |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 296 | // |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 297 | void Verifier::visitFunction(Function &F) { |
Chris Lattner | 2ad5aa8 | 2005-05-08 22:27:09 +0000 | [diff] [blame^] | 298 | Assert1(!F.isVarArg() || F.getCallingConv() == CallingConv::C, |
| 299 | "Varargs functions must have C calling conventions!", &F); |
| 300 | |
| 301 | // Check function arguments. |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 302 | const FunctionType *FT = F.getFunctionType(); |
| 303 | unsigned NumArgs = F.getArgumentList().size(); |
Chris Lattner | af95e58 | 2002-04-13 22:48:46 +0000 | [diff] [blame] | 304 | |
Chris Lattner | 149376d | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 305 | Assert2(FT->getNumParams() == NumArgs, |
Chris Lattner | af95e58 | 2002-04-13 22:48:46 +0000 | [diff] [blame] | 306 | "# formal arguments must match # of arguments for function type!", |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 307 | &F, FT); |
Chris Lattner | 3ae303c | 2003-11-21 22:32:23 +0000 | [diff] [blame] | 308 | Assert1(F.getReturnType()->isFirstClassType() || |
| 309 | F.getReturnType() == Type::VoidTy, |
| 310 | "Functions cannot return aggregate values!", &F); |
Chris Lattner | af95e58 | 2002-04-13 22:48:46 +0000 | [diff] [blame] | 311 | |
| 312 | // Check that the argument values match the function type for this function... |
Chris Lattner | 149376d | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 313 | unsigned i = 0; |
Chris Lattner | 531f9e9 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 314 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I, ++i) { |
Chris Lattner | 149376d | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 315 | Assert2(I->getType() == FT->getParamType(i), |
| 316 | "Argument value does not match function argument type!", |
| 317 | I, FT->getParamType(i)); |
Chris Lattner | f75832b | 2004-06-03 06:38:43 +0000 | [diff] [blame] | 318 | // Make sure no aggregates are passed by value. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 319 | Assert1(I->getType()->isFirstClassType(), |
Chris Lattner | f75832b | 2004-06-03 06:38:43 +0000 | [diff] [blame] | 320 | "Functions cannot take aggregates as arguments by value!", I); |
| 321 | } |
Chris Lattner | af95e58 | 2002-04-13 22:48:46 +0000 | [diff] [blame] | 322 | |
Chris Lattner | 149376d | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 323 | if (!F.isExternal()) { |
| 324 | verifySymbolTable(F.getSymbolTable()); |
| 325 | |
| 326 | // Check the entry node |
Chris Lattner | 5dac64f | 2003-09-20 14:39:18 +0000 | [diff] [blame] | 327 | BasicBlock *Entry = &F.getEntryBlock(); |
Chris Lattner | 149376d | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 328 | Assert1(pred_begin(Entry) == pred_end(Entry), |
| 329 | "Entry block to function must not have predecessors!", Entry); |
| 330 | } |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 334 | // verifyBasicBlock - Verify that a basic block is well formed... |
| 335 | // |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 336 | void Verifier::visitBasicBlock(BasicBlock &BB) { |
Chris Lattner | c9e79d0 | 2004-09-29 20:07:45 +0000 | [diff] [blame] | 337 | InstsInThisBlock.clear(); |
| 338 | |
Alkis Evlogimenos | be526cf | 2004-12-04 02:30:42 +0000 | [diff] [blame] | 339 | // Ensure that basic blocks have terminators! |
| 340 | Assert1(BB.getTerminator(), "Basic Block does not have terminator!", &BB); |
| 341 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 342 | // Check constraints that this basic block imposes on all of the PHI nodes in |
| 343 | // it. |
| 344 | if (isa<PHINode>(BB.front())) { |
| 345 | std::vector<BasicBlock*> Preds(pred_begin(&BB), pred_end(&BB)); |
| 346 | std::sort(Preds.begin(), Preds.end()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 347 | PHINode *PN; |
Chris Lattner | 307e1df | 2004-06-05 17:44:48 +0000 | [diff] [blame] | 348 | for (BasicBlock::iterator I = BB.begin(); (PN = dyn_cast<PHINode>(I));++I) { |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 349 | |
| 350 | // Ensure that PHI nodes have at least one entry! |
| 351 | Assert1(PN->getNumIncomingValues() != 0, |
| 352 | "PHI nodes must have at least one entry. If the block is dead, " |
| 353 | "the PHI should be removed!", PN); |
Brian Gaeke | e8a6bf3 | 2004-05-17 21:15:18 +0000 | [diff] [blame] | 354 | Assert1(PN->getNumIncomingValues() == Preds.size(), |
| 355 | "PHINode should have one entry for each predecessor of its " |
| 356 | "parent basic block!", PN); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 357 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 358 | // Get and sort all incoming values in the PHI node... |
| 359 | std::vector<std::pair<BasicBlock*, Value*> > Values; |
| 360 | Values.reserve(PN->getNumIncomingValues()); |
| 361 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 362 | Values.push_back(std::make_pair(PN->getIncomingBlock(i), |
| 363 | PN->getIncomingValue(i))); |
| 364 | std::sort(Values.begin(), Values.end()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 365 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 366 | for (unsigned i = 0, e = Values.size(); i != e; ++i) { |
| 367 | // Check to make sure that if there is more than one entry for a |
| 368 | // particular basic block in this PHI node, that the incoming values are |
| 369 | // all identical. |
| 370 | // |
| 371 | Assert4(i == 0 || Values[i].first != Values[i-1].first || |
| 372 | Values[i].second == Values[i-1].second, |
| 373 | "PHI node has multiple entries for the same basic block with " |
| 374 | "different incoming values!", PN, Values[i].first, |
| 375 | Values[i].second, Values[i-1].second); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 376 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 377 | // Check to make sure that the predecessors and PHI node entries are |
| 378 | // matched up. |
| 379 | Assert3(Values[i].first == Preds[i], |
| 380 | "PHI node entries do not match predecessors!", PN, |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 381 | Values[i].first, Preds[i]); |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 382 | } |
| 383 | } |
| 384 | } |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 385 | } |
Chris Lattner | fbf5be5 | 2002-03-15 20:25:09 +0000 | [diff] [blame] | 386 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 387 | void Verifier::visitTerminatorInst(TerminatorInst &I) { |
| 388 | // Ensure that terminators only exist at the end of the basic block. |
| 389 | Assert1(&I == I.getParent()->getTerminator(), |
| 390 | "Terminator found in the middle of a basic block!", I.getParent()); |
Chris Lattner | 7af3ee9 | 2002-07-18 00:13:42 +0000 | [diff] [blame] | 391 | visitInstruction(I); |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | void Verifier::visitReturnInst(ReturnInst &RI) { |
| 395 | Function *F = RI.getParent()->getParent(); |
| 396 | if (RI.getNumOperands() == 0) |
Alkis Evlogimenos | b92de19 | 2004-12-04 01:25:06 +0000 | [diff] [blame] | 397 | Assert2(F->getReturnType() == Type::VoidTy, |
| 398 | "Found return instr that returns void in Function of non-void " |
| 399 | "return type!", &RI, F->getReturnType()); |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 400 | else |
| 401 | Assert2(F->getReturnType() == RI.getOperand(0)->getType(), |
| 402 | "Function return type does not match operand " |
| 403 | "type of return inst!", &RI, F->getReturnType()); |
| 404 | |
Misha Brukman | 7eb05a1 | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 405 | // Check to make sure that the return value has necessary properties for |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 406 | // terminators... |
| 407 | visitTerminatorInst(RI); |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 408 | } |
| 409 | |
Chris Lattner | ab5aa14 | 2004-05-21 16:47:21 +0000 | [diff] [blame] | 410 | void Verifier::visitSwitchInst(SwitchInst &SI) { |
| 411 | // Check to make sure that all of the constants in the switch instruction |
| 412 | // have the same type as the switched-on value. |
| 413 | const Type *SwitchTy = SI.getCondition()->getType(); |
| 414 | for (unsigned i = 1, e = SI.getNumCases(); i != e; ++i) |
| 415 | Assert1(SI.getCaseValue(i)->getType() == SwitchTy, |
| 416 | "Switch constants must all be same type as switch value!", &SI); |
| 417 | |
| 418 | visitTerminatorInst(SI); |
| 419 | } |
| 420 | |
Chris Lattner | 75648e7 | 2004-03-12 05:54:31 +0000 | [diff] [blame] | 421 | void Verifier::visitSelectInst(SelectInst &SI) { |
| 422 | Assert1(SI.getCondition()->getType() == Type::BoolTy, |
| 423 | "Select condition type must be bool!", &SI); |
| 424 | Assert1(SI.getTrueValue()->getType() == SI.getFalseValue()->getType(), |
| 425 | "Select values must have identical types!", &SI); |
| 426 | Assert1(SI.getTrueValue()->getType() == SI.getType(), |
| 427 | "Select values must have same type as select instruction!", &SI); |
Chris Lattner | cde15fb | 2004-09-29 21:19:28 +0000 | [diff] [blame] | 428 | visitInstruction(SI); |
Chris Lattner | 75648e7 | 2004-03-12 05:54:31 +0000 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 432 | /// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of |
| 433 | /// a pass, if any exist, it's an error. |
| 434 | /// |
Chris Lattner | 903a25d | 2002-11-21 16:54:22 +0000 | [diff] [blame] | 435 | void Verifier::visitUserOp1(Instruction &I) { |
| 436 | Assert1(0, "User-defined operators should not live outside of a pass!", |
| 437 | &I); |
| 438 | } |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 439 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 440 | /// visitPHINode - Ensure that a PHI node is well formed. |
| 441 | /// |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 442 | void Verifier::visitPHINode(PHINode &PN) { |
| 443 | // Ensure that the PHI nodes are all grouped together at the top of the block. |
| 444 | // This can be tested by checking whether the instruction before this is |
Misha Brukman | fa10053 | 2003-10-10 17:54:14 +0000 | [diff] [blame] | 445 | // either nonexistent (because this is begin()) or is a PHI node. If not, |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 446 | // then there is some other instruction before a PHI. |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 447 | Assert2(&PN.getParent()->front() == &PN || isa<PHINode>(PN.getPrev()), |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 448 | "PHI nodes not grouped at top of basic block!", |
| 449 | &PN, PN.getParent()); |
| 450 | |
Chris Lattner | 3b93c91 | 2003-11-12 07:13:37 +0000 | [diff] [blame] | 451 | // Check that all of the operands of the PHI node have the same type as the |
| 452 | // result. |
| 453 | for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) |
| 454 | Assert1(PN.getType() == PN.getIncomingValue(i)->getType(), |
| 455 | "PHI node operands are not the same type as the result!", &PN); |
| 456 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 457 | // All other PHI node constraints are checked in the visitBasicBlock method. |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 458 | |
| 459 | visitInstruction(PN); |
| 460 | } |
| 461 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 462 | void Verifier::visitCallInst(CallInst &CI) { |
| 463 | Assert1(isa<PointerType>(CI.getOperand(0)->getType()), |
| 464 | "Called function must be a pointer!", &CI); |
| 465 | const PointerType *FPTy = cast<PointerType>(CI.getOperand(0)->getType()); |
Chris Lattner | 21ea83b | 2002-04-18 22:11:52 +0000 | [diff] [blame] | 466 | Assert1(isa<FunctionType>(FPTy->getElementType()), |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 467 | "Called function is not pointer to function type!", &CI); |
Chris Lattner | 338a462 | 2002-05-08 19:49:50 +0000 | [diff] [blame] | 468 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 469 | const FunctionType *FTy = cast<FunctionType>(FPTy->getElementType()); |
Chris Lattner | 338a462 | 2002-05-08 19:49:50 +0000 | [diff] [blame] | 470 | |
| 471 | // Verify that the correct number of arguments are being passed |
| 472 | if (FTy->isVarArg()) |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 473 | Assert1(CI.getNumOperands()-1 >= FTy->getNumParams(), |
| 474 | "Called function requires more parameters than were provided!",&CI); |
Chris Lattner | 338a462 | 2002-05-08 19:49:50 +0000 | [diff] [blame] | 475 | else |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 476 | Assert1(CI.getNumOperands()-1 == FTy->getNumParams(), |
| 477 | "Incorrect number of arguments passed to called function!", &CI); |
Chris Lattner | 338a462 | 2002-05-08 19:49:50 +0000 | [diff] [blame] | 478 | |
| 479 | // Verify that all arguments to the call match the function type... |
| 480 | for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) |
Chris Lattner | d996e54 | 2004-02-24 22:06:07 +0000 | [diff] [blame] | 481 | Assert3(CI.getOperand(i+1)->getType() == FTy->getParamType(i), |
Chris Lattner | 338a462 | 2002-05-08 19:49:50 +0000 | [diff] [blame] | 482 | "Call parameter type does not match function signature!", |
Chris Lattner | d996e54 | 2004-02-24 22:06:07 +0000 | [diff] [blame] | 483 | CI.getOperand(i+1), FTy->getParamType(i), &CI); |
Chris Lattner | 7af3ee9 | 2002-07-18 00:13:42 +0000 | [diff] [blame] | 484 | |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 485 | if (Function *F = CI.getCalledFunction()) |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 486 | if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 487 | visitIntrinsicFunctionCall(ID, CI); |
| 488 | |
Chris Lattner | 7af3ee9 | 2002-07-18 00:13:42 +0000 | [diff] [blame] | 489 | visitInstruction(CI); |
Chris Lattner | 21ea83b | 2002-04-18 22:11:52 +0000 | [diff] [blame] | 490 | } |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 491 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 492 | /// visitBinaryOperator - Check that both arguments to the binary operator are |
| 493 | /// of the same type! |
| 494 | /// |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 495 | void Verifier::visitBinaryOperator(BinaryOperator &B) { |
Chris Lattner | 1f41925 | 2002-09-09 20:26:04 +0000 | [diff] [blame] | 496 | Assert1(B.getOperand(0)->getType() == B.getOperand(1)->getType(), |
| 497 | "Both operands to a binary operator are not of the same type!", &B); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 498 | |
Chris Lattner | 1f41925 | 2002-09-09 20:26:04 +0000 | [diff] [blame] | 499 | // Check that logical operators are only used with integral operands. |
| 500 | if (B.getOpcode() == Instruction::And || B.getOpcode() == Instruction::Or || |
| 501 | B.getOpcode() == Instruction::Xor) { |
| 502 | Assert1(B.getType()->isIntegral(), |
| 503 | "Logical operators only work with integral types!", &B); |
| 504 | Assert1(B.getType() == B.getOperand(0)->getType(), |
| 505 | "Logical operators must have same type for operands and result!", |
| 506 | &B); |
| 507 | } else if (isa<SetCondInst>(B)) { |
| 508 | // Check that setcc instructions return bool |
| 509 | Assert1(B.getType() == Type::BoolTy, |
| 510 | "setcc instructions must return boolean values!", &B); |
| 511 | } else { |
| 512 | // Arithmetic operators only work on integer or fp values |
| 513 | Assert1(B.getType() == B.getOperand(0)->getType(), |
| 514 | "Arithmetic operators must have same type for operands and result!", |
| 515 | &B); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 516 | Assert1(B.getType()->isInteger() || B.getType()->isFloatingPoint() || |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 517 | isa<PackedType>(B.getType()), |
| 518 | "Arithmetic operators must have integer, fp, or packed type!", &B); |
Chris Lattner | 1f41925 | 2002-09-09 20:26:04 +0000 | [diff] [blame] | 519 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 520 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 521 | visitInstruction(B); |
| 522 | } |
| 523 | |
Chris Lattner | 1f41925 | 2002-09-09 20:26:04 +0000 | [diff] [blame] | 524 | void Verifier::visitShiftInst(ShiftInst &SI) { |
| 525 | Assert1(SI.getType()->isInteger(), |
| 526 | "Shift must return an integer result!", &SI); |
| 527 | Assert1(SI.getType() == SI.getOperand(0)->getType(), |
| 528 | "Shift return type must be same as first operand!", &SI); |
| 529 | Assert1(SI.getOperand(1)->getType() == Type::UByteTy, |
| 530 | "Second operand to shift must be ubyte type!", &SI); |
| 531 | visitInstruction(SI); |
| 532 | } |
| 533 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 534 | void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) { |
Chris Lattner | dfb3a2c | 2002-08-22 23:37:20 +0000 | [diff] [blame] | 535 | const Type *ElTy = |
| 536 | GetElementPtrInst::getIndexedType(GEP.getOperand(0)->getType(), |
| 537 | std::vector<Value*>(GEP.idx_begin(), GEP.idx_end()), true); |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 538 | Assert1(ElTy, "Invalid indices for GEP pointer type!", &GEP); |
| 539 | Assert2(PointerType::get(ElTy) == GEP.getType(), |
| 540 | "GEP is not of right type for indices!", &GEP, ElTy); |
Chris Lattner | d46bb6e | 2002-04-24 19:12:21 +0000 | [diff] [blame] | 541 | visitInstruction(GEP); |
| 542 | } |
| 543 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 544 | void Verifier::visitLoadInst(LoadInst &LI) { |
Chris Lattner | cd709cb | 2002-08-22 22:49:05 +0000 | [diff] [blame] | 545 | const Type *ElTy = |
| 546 | cast<PointerType>(LI.getOperand(0)->getType())->getElementType(); |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 547 | Assert2(ElTy == LI.getType(), |
Chris Lattner | 9d72c2f | 2003-11-21 17:06:29 +0000 | [diff] [blame] | 548 | "Load result type does not match pointer operand type!", &LI, ElTy); |
Chris Lattner | d46bb6e | 2002-04-24 19:12:21 +0000 | [diff] [blame] | 549 | visitInstruction(LI); |
| 550 | } |
| 551 | |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 552 | void Verifier::visitStoreInst(StoreInst &SI) { |
Chris Lattner | cd709cb | 2002-08-22 22:49:05 +0000 | [diff] [blame] | 553 | const Type *ElTy = |
| 554 | cast<PointerType>(SI.getOperand(1)->getType())->getElementType(); |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 555 | Assert2(ElTy == SI.getOperand(0)->getType(), |
Chris Lattner | 9d72c2f | 2003-11-21 17:06:29 +0000 | [diff] [blame] | 556 | "Stored value type does not match pointer operand type!", &SI, ElTy); |
Chris Lattner | d46bb6e | 2002-04-24 19:12:21 +0000 | [diff] [blame] | 557 | visitInstruction(SI); |
| 558 | } |
| 559 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 560 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 561 | /// verifyInstruction - Verify that an instruction is well formed. |
| 562 | /// |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 563 | void Verifier::visitInstruction(Instruction &I) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 564 | BasicBlock *BB = I.getParent(); |
Chris Lattner | 1f41925 | 2002-09-09 20:26:04 +0000 | [diff] [blame] | 565 | Assert1(BB, "Instruction not embedded in basic block!", &I); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 566 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 567 | if (!isa<PHINode>(I)) { // Check that non-phi nodes are not self referential |
| 568 | for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); |
| 569 | UI != UE; ++UI) |
Chris Lattner | 3705370 | 2004-02-27 17:28:25 +0000 | [diff] [blame] | 570 | Assert1(*UI != (User*)&I || |
| 571 | !DS->dominates(&BB->getParent()->getEntryBlock(), BB), |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 572 | "Only PHI nodes may reference their own value!", &I); |
| 573 | } |
| 574 | |
| 575 | // Check that void typed values don't have names |
| 576 | Assert1(I.getType() != Type::VoidTy || !I.hasName(), |
| 577 | "Instruction has a name, but provides a void value!", &I); |
| 578 | |
Chris Lattner | 5f126b7 | 2004-03-29 00:29:36 +0000 | [diff] [blame] | 579 | // Check that the return value of the instruction is either void or a legal |
| 580 | // value type. |
| 581 | Assert1(I.getType() == Type::VoidTy || I.getType()->isFirstClassType(), |
| 582 | "Instruction returns a non-scalar type!", &I); |
| 583 | |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 584 | // Check that all uses of the instruction, if they are instructions |
| 585 | // themselves, actually have parent basic blocks. If the use is not an |
| 586 | // instruction, it is an error! |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 587 | for (User::use_iterator UI = I.use_begin(), UE = I.use_end(); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 588 | UI != UE; ++UI) { |
| 589 | Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!", |
| 590 | *UI); |
Chris Lattner | 21ea83b | 2002-04-18 22:11:52 +0000 | [diff] [blame] | 591 | Instruction *Used = cast<Instruction>(*UI); |
| 592 | Assert2(Used->getParent() != 0, "Instruction referencing instruction not" |
Chris Lattner | 069a795 | 2002-06-25 15:56:27 +0000 | [diff] [blame] | 593 | " embeded in a basic block!", &I, Used); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 594 | } |
| 595 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 596 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
| 597 | // Check to make sure that the "address of" an intrinsic function is never |
| 598 | // taken. |
Chris Lattner | 08f7d0c | 2005-02-24 16:58:29 +0000 | [diff] [blame] | 599 | Assert1(I.getOperand(i) != 0, "Instruction has null operand!", &I); |
Chris Lattner | 9ece94b | 2004-03-14 03:23:54 +0000 | [diff] [blame] | 600 | if (Function *F = dyn_cast<Function>(I.getOperand(i))) { |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 601 | Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)), |
| 602 | "Cannot take the address of an intrinsic!", &I); |
Chris Lattner | 9ece94b | 2004-03-14 03:23:54 +0000 | [diff] [blame] | 603 | } else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) { |
| 604 | Assert1(OpBB->getParent() == BB->getParent(), |
| 605 | "Referring to a basic block in another function!", &I); |
| 606 | } else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) { |
| 607 | Assert1(OpArg->getParent() == BB->getParent(), |
| 608 | "Referring to an argument in another function!", &I); |
| 609 | } else if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) { |
Chris Lattner | ec5089a | 2004-01-14 04:25:59 +0000 | [diff] [blame] | 610 | BasicBlock *OpBlock = Op->getParent(); |
Chris Lattner | ec5089a | 2004-01-14 04:25:59 +0000 | [diff] [blame] | 611 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 612 | // Check that a definition dominates all of its uses. |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 613 | if (!isa<PHINode>(I)) { |
Chris Lattner | 0206282 | 2004-01-14 05:42:52 +0000 | [diff] [blame] | 614 | // Invoke results are only usable in the normal destination, not in the |
| 615 | // exceptional destination. |
| 616 | if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) |
| 617 | OpBlock = II->getNormalDest(); |
Chris Lattner | 0377e43 | 2004-04-16 05:51:47 +0000 | [diff] [blame] | 618 | else if (OpBlock == BB) { |
| 619 | // If they are in the same basic block, make sure that the definition |
| 620 | // comes before the use. |
Chris Lattner | c9e79d0 | 2004-09-29 20:07:45 +0000 | [diff] [blame] | 621 | Assert2(InstsInThisBlock.count(Op) || |
Chris Lattner | 71dbebf | 2004-06-07 23:07:33 +0000 | [diff] [blame] | 622 | !DS->dominates(&BB->getParent()->getEntryBlock(), BB), |
Chris Lattner | 0377e43 | 2004-04-16 05:51:47 +0000 | [diff] [blame] | 623 | "Instruction does not dominate all uses!", Op, &I); |
| 624 | } |
Chris Lattner | 0206282 | 2004-01-14 05:42:52 +0000 | [diff] [blame] | 625 | |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 626 | // Definition must dominate use unless use is unreachable! |
Chris Lattner | ec5089a | 2004-01-14 04:25:59 +0000 | [diff] [blame] | 627 | Assert2(DS->dominates(OpBlock, BB) || |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 628 | !DS->dominates(&BB->getParent()->getEntryBlock(), BB), |
| 629 | "Instruction does not dominate all uses!", Op, &I); |
| 630 | } else { |
| 631 | // PHI nodes are more difficult than other nodes because they actually |
| 632 | // "use" the value in the predecessor basic blocks they correspond to. |
| 633 | BasicBlock *PredBB = cast<BasicBlock>(I.getOperand(i+1)); |
Chris Lattner | ec5089a | 2004-01-14 04:25:59 +0000 | [diff] [blame] | 634 | Assert2(DS->dominates(OpBlock, PredBB) || |
Chris Lattner | df9779c | 2003-10-05 17:44:18 +0000 | [diff] [blame] | 635 | !DS->dominates(&BB->getParent()->getEntryBlock(), PredBB), |
| 636 | "Instruction does not dominate all uses!", Op, &I); |
| 637 | } |
| 638 | } |
| 639 | } |
Chris Lattner | c9e79d0 | 2004-09-29 20:07:45 +0000 | [diff] [blame] | 640 | InstsInThisBlock.insert(&I); |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | /// visitIntrinsicFunction - Allow intrinsics to be verified in different ways. |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 644 | /// |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 645 | void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) { |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 646 | Function *IF = CI.getCalledFunction(); |
| 647 | const FunctionType *FT = IF->getFunctionType(); |
| 648 | Assert1(IF->isExternal(), "Intrinsic functions should never be defined!", IF); |
Chris Lattner | d295d99 | 2003-06-05 21:01:26 +0000 | [diff] [blame] | 649 | unsigned NumArgs = 0; |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 650 | |
Chris Lattner | ade9410 | 2003-08-24 05:30:29 +0000 | [diff] [blame] | 651 | // FIXME: this should check the return type of each intrinsic as well, also |
| 652 | // arguments! |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 653 | switch (ID) { |
Chris Lattner | 071a5e5 | 2004-03-13 00:24:00 +0000 | [diff] [blame] | 654 | case Intrinsic::vastart: |
Chris Lattner | bad4b4a | 2003-05-08 15:55:31 +0000 | [diff] [blame] | 655 | Assert1(CI.getParent()->getParent()->getFunctionType()->isVarArg(), |
| 656 | "llvm.va_start intrinsic may only occur in function with variable" |
| 657 | " args!", &CI); |
Chris Lattner | 5b33748 | 2003-10-18 05:57:43 +0000 | [diff] [blame] | 658 | NumArgs = 0; |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 659 | break; |
Chris Lattner | 071a5e5 | 2004-03-13 00:24:00 +0000 | [diff] [blame] | 660 | case Intrinsic::vaend: NumArgs = 1; break; |
| 661 | case Intrinsic::vacopy: NumArgs = 1; break; |
Chris Lattner | ade9410 | 2003-08-24 05:30:29 +0000 | [diff] [blame] | 662 | |
Chris Lattner | dc63211 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 663 | case Intrinsic::returnaddress: |
| 664 | case Intrinsic::frameaddress: |
| 665 | Assert1(isa<PointerType>(FT->getReturnType()), |
| 666 | "llvm.(frame|return)address must return pointers", IF); |
| 667 | Assert1(FT->getNumParams() == 1 && isa<ConstantInt>(CI.getOperand(1)), |
| 668 | "llvm.(frame|return)address require a single constant integer argument", |
| 669 | &CI); |
| 670 | NumArgs = 1; |
| 671 | break; |
| 672 | |
John Criswell | 5201004 | 2004-04-08 20:27:38 +0000 | [diff] [blame] | 673 | // Verify that read and write port have integral parameters of the correct |
| 674 | // signed-ness. |
| 675 | case Intrinsic::writeport: |
| 676 | Assert1(FT->getNumParams() == 2, |
| 677 | "Illegal # arguments for intrinsic function!", IF); |
John Criswell | 2b4c96e | 2004-04-09 19:09:14 +0000 | [diff] [blame] | 678 | Assert1(FT->getParamType(0)->isIntegral(), |
John Criswell | 5201004 | 2004-04-08 20:27:38 +0000 | [diff] [blame] | 679 | "First argument not unsigned int!", IF); |
John Criswell | 2b4c96e | 2004-04-09 19:09:14 +0000 | [diff] [blame] | 680 | Assert1(FT->getParamType(1)->isUnsigned(), |
John Criswell | 5201004 | 2004-04-08 20:27:38 +0000 | [diff] [blame] | 681 | "First argument not unsigned int!", IF); |
| 682 | NumArgs = 2; |
| 683 | break; |
| 684 | |
John Criswell | 23c48d6 | 2004-04-14 13:46:52 +0000 | [diff] [blame] | 685 | case Intrinsic::writeio: |
| 686 | Assert1(FT->getNumParams() == 2, |
| 687 | "Illegal # arguments for intrinsic function!", IF); |
| 688 | Assert1(FT->getParamType(0)->isFirstClassType(), |
| 689 | "First argument not a first class type!", IF); |
Chris Lattner | 395e219 | 2004-06-17 17:56:54 +0000 | [diff] [blame] | 690 | Assert1(isa<PointerType>(FT->getParamType(1)), |
John Criswell | 23c48d6 | 2004-04-14 13:46:52 +0000 | [diff] [blame] | 691 | "Second argument not a pointer!", IF); |
| 692 | NumArgs = 2; |
| 693 | break; |
| 694 | |
John Criswell | 5201004 | 2004-04-08 20:27:38 +0000 | [diff] [blame] | 695 | case Intrinsic::readport: |
| 696 | Assert1(FT->getNumParams() == 1, |
| 697 | "Illegal # arguments for intrinsic function!", IF); |
John Criswell | 23c48d6 | 2004-04-14 13:46:52 +0000 | [diff] [blame] | 698 | Assert1(FT->getReturnType()->isFirstClassType(), |
| 699 | "Return type is not a first class type!", IF); |
John Criswell | 5201004 | 2004-04-08 20:27:38 +0000 | [diff] [blame] | 700 | Assert1(FT->getParamType(0)->isUnsigned(), |
| 701 | "First argument not unsigned int!", IF); |
| 702 | NumArgs = 1; |
| 703 | break; |
| 704 | |
Chris Lattner | 9c251eb | 2004-05-23 21:16:51 +0000 | [diff] [blame] | 705 | case Intrinsic::readio: { |
| 706 | const PointerType *ParamType = dyn_cast<PointerType>(FT->getParamType(0)); |
| 707 | const Type *ReturnType = FT->getReturnType(); |
John Criswell | 0c654c6 | 2004-04-14 14:49:36 +0000 | [diff] [blame] | 708 | |
John Criswell | 23c48d6 | 2004-04-14 13:46:52 +0000 | [diff] [blame] | 709 | Assert1(FT->getNumParams() == 1, |
| 710 | "Illegal # arguments for intrinsic function!", IF); |
Chris Lattner | 9c251eb | 2004-05-23 21:16:51 +0000 | [diff] [blame] | 711 | Assert1(ParamType, "First argument not a pointer!", IF); |
| 712 | Assert1(ParamType->getElementType() == ReturnType, |
John Criswell | c4e72c9 | 2004-04-14 15:06:48 +0000 | [diff] [blame] | 713 | "Pointer type doesn't match return type!", IF); |
John Criswell | 23c48d6 | 2004-04-14 13:46:52 +0000 | [diff] [blame] | 714 | NumArgs = 1; |
| 715 | break; |
John Criswell | 0c654c6 | 2004-04-14 14:49:36 +0000 | [diff] [blame] | 716 | } |
John Criswell | 23c48d6 | 2004-04-14 13:46:52 +0000 | [diff] [blame] | 717 | |
Alkis Evlogimenos | 9d74062 | 2004-06-12 19:19:14 +0000 | [diff] [blame] | 718 | case Intrinsic::isunordered: |
Alkis Evlogimenos | cf9f8f1 | 2004-06-13 00:55:26 +0000 | [diff] [blame] | 719 | Assert1(FT->getNumParams() == 2, |
| 720 | "Illegal # arguments for intrinsic function!", IF); |
Alkis Evlogimenos | 9d74062 | 2004-06-12 19:19:14 +0000 | [diff] [blame] | 721 | Assert1(FT->getReturnType() == Type::BoolTy, |
Alkis Evlogimenos | cf9f8f1 | 2004-06-13 00:55:26 +0000 | [diff] [blame] | 722 | "Return type is not bool!", IF); |
| 723 | Assert1(FT->getParamType(0) == FT->getParamType(1), |
| 724 | "Arguments must be of the same type!", IF); |
| 725 | Assert1(FT->getParamType(0)->isFloatingPoint(), |
| 726 | "Argument is not a floating point type!", IF); |
Alkis Evlogimenos | 9d74062 | 2004-06-12 19:19:14 +0000 | [diff] [blame] | 727 | NumArgs = 2; |
| 728 | break; |
| 729 | |
Andrew Lenharth | 5e17782 | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 730 | case Intrinsic::ctpop: |
| 731 | case Intrinsic::ctlz: |
| 732 | case Intrinsic::cttz: |
| 733 | Assert1(FT->getNumParams() == 1, |
| 734 | "Illegal # arguments for intrinsic function!", IF); |
| 735 | Assert1(FT->getReturnType() == FT->getParamType(0), |
| 736 | "Return type does not match source type", IF); |
| 737 | Assert1(FT->getParamType(0)->isIntegral(), |
| 738 | "Argument must be of an int type!", IF); |
| 739 | NumArgs = 1; |
| 740 | break; |
| 741 | |
Chris Lattner | 1c636f1 | 2005-04-30 03:44:07 +0000 | [diff] [blame] | 742 | case Intrinsic::sqrt: |
| 743 | Assert1(FT->getNumParams() == 1, |
| 744 | "Illegal # arguments for intrinsic function!", IF); |
| 745 | Assert1(FT->getParamType(0)->isFloatingPoint(), |
| 746 | "Argument is not a floating point type!", IF); |
| 747 | Assert1(FT->getReturnType() == FT->getParamType(0), |
| 748 | "Return type is not the same as argument type!", IF); |
| 749 | NumArgs = 1; |
| 750 | break; |
| 751 | |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 752 | case Intrinsic::setjmp: NumArgs = 1; break; |
| 753 | case Intrinsic::longjmp: NumArgs = 2; break; |
| 754 | case Intrinsic::sigsetjmp: NumArgs = 2; break; |
| 755 | case Intrinsic::siglongjmp: NumArgs = 2; break; |
Chris Lattner | 3d903f0 | 2004-01-05 05:36:30 +0000 | [diff] [blame] | 756 | |
Chris Lattner | 9c251eb | 2004-05-23 21:16:51 +0000 | [diff] [blame] | 757 | case Intrinsic::gcroot: |
| 758 | Assert1(FT->getNumParams() == 2, |
| 759 | "Illegal # arguments for intrinsic function!", IF); |
Reid Spencer | 49fc8a7 | 2004-07-18 00:02:41 +0000 | [diff] [blame] | 760 | Assert1(isa<Constant>(CI.getOperand(2)), |
Chris Lattner | 9c251eb | 2004-05-23 21:16:51 +0000 | [diff] [blame] | 761 | "Second argument to llvm.gcroot must be a constant!", &CI); |
| 762 | NumArgs = 2; |
| 763 | break; |
Chris Lattner | 001aba7 | 2004-07-22 05:50:01 +0000 | [diff] [blame] | 764 | case Intrinsic::gcread: NumArgs = 2; break; |
| 765 | case Intrinsic::gcwrite: NumArgs = 3; break; |
Chris Lattner | 9c251eb | 2004-05-23 21:16:51 +0000 | [diff] [blame] | 766 | |
Chris Lattner | 3d903f0 | 2004-01-05 05:36:30 +0000 | [diff] [blame] | 767 | case Intrinsic::dbg_stoppoint: NumArgs = 4; break; |
| 768 | case Intrinsic::dbg_region_start:NumArgs = 1; break; |
| 769 | case Intrinsic::dbg_region_end: NumArgs = 1; break; |
| 770 | case Intrinsic::dbg_func_start: NumArgs = 1; break; |
Chris Lattner | 59f1ef4 | 2004-01-06 05:33:02 +0000 | [diff] [blame] | 771 | case Intrinsic::dbg_declare: NumArgs = 1; break; |
Chris Lattner | 17d028d | 2004-02-12 17:01:09 +0000 | [diff] [blame] | 772 | |
| 773 | case Intrinsic::memcpy: NumArgs = 4; break; |
Chris Lattner | 5ed171e | 2004-02-12 18:11:20 +0000 | [diff] [blame] | 774 | case Intrinsic::memmove: NumArgs = 4; break; |
Chris Lattner | dc63211 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 775 | case Intrinsic::memset: NumArgs = 4; break; |
Chris Lattner | 39637ef | 2005-02-28 19:27:42 +0000 | [diff] [blame] | 776 | |
| 777 | case Intrinsic::prefetch: NumArgs = 3; break; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 778 | case Intrinsic::pcmarker: |
| 779 | NumArgs = 1; |
Andrew Lenharth | b442791 | 2005-03-28 20:05:49 +0000 | [diff] [blame] | 780 | Assert1(isa<Constant>(CI.getOperand(1)), |
| 781 | "First argument to llvm.pcmarker must be a constant!", &CI); |
| 782 | break; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 783 | |
| 784 | case Intrinsic::not_intrinsic: |
Chris Lattner | bb346d0 | 2003-05-08 03:47:33 +0000 | [diff] [blame] | 785 | assert(0 && "Invalid intrinsic!"); NumArgs = 0; break; |
| 786 | } |
| 787 | |
| 788 | Assert1(FT->getNumParams() == NumArgs || (FT->getNumParams() < NumArgs && |
| 789 | FT->isVarArg()), |
| 790 | "Illegal # arguments for intrinsic function!", IF); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | |
| 794 | //===----------------------------------------------------------------------===// |
| 795 | // Implement the public interfaces to this file... |
| 796 | //===----------------------------------------------------------------------===// |
| 797 | |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 798 | FunctionPass *llvm::createVerifierPass(VerifierFailureAction action) { |
| 799 | return new Verifier(action); |
Chris Lattner | 0e851da | 2002-04-18 20:37:37 +0000 | [diff] [blame] | 800 | } |
| 801 | |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 802 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 803 | // verifyFunction - Create |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 804 | bool llvm::verifyFunction(const Function &f, VerifierFailureAction action) { |
Chris Lattner | b870ca7 | 2004-03-14 03:16:15 +0000 | [diff] [blame] | 805 | Function &F = const_cast<Function&>(f); |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 806 | assert(!F.isExternal() && "Cannot verify external functions"); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 807 | |
Chris Lattner | b870ca7 | 2004-03-14 03:16:15 +0000 | [diff] [blame] | 808 | FunctionPassManager FPM(new ExistingModuleProvider(F.getParent())); |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 809 | Verifier *V = new Verifier(action); |
Chris Lattner | b870ca7 | 2004-03-14 03:16:15 +0000 | [diff] [blame] | 810 | FPM.add(V); |
| 811 | FPM.run(F); |
| 812 | return V->Broken; |
Chris Lattner | d02f08d | 2002-02-20 17:55:43 +0000 | [diff] [blame] | 813 | } |
| 814 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 815 | /// verifyModule - Check a module for errors, printing messages on stderr. |
| 816 | /// Return true if the module is corrupt. |
| 817 | /// |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 818 | bool llvm::verifyModule(const Module &M, VerifierFailureAction action) { |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 819 | PassManager PM; |
Chris Lattner | a45a216 | 2004-04-02 15:45:08 +0000 | [diff] [blame] | 820 | Verifier *V = new Verifier(action); |
Chris Lattner | 8e72d6f | 2002-08-02 17:37:08 +0000 | [diff] [blame] | 821 | PM.add(V); |
| 822 | PM.run((Module&)M); |
| 823 | return V->Broken; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 824 | } |
Reid Spencer | 47cf71a | 2004-05-25 08:53:29 +0000 | [diff] [blame] | 825 | |
| 826 | // vim: sw=2 |