blob: 753a75ea0cfc6b1e3343e9293c5dc2d965754532 [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001//===-- Verifier.cpp - Implement the Module Verifier -------------*- C++ -*-==//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// 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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattner3e6e3e62002-03-29 19:06:18 +000010// This file defines the function verifier interface, that can be used for some
Chris Lattner2f7c9632001-06-06 20:29:01 +000011// sanity checking of input to the system.
12//
Misha Brukman1c9de462004-06-24 21:47:35 +000013// 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 Lattner2f7c9632001-06-06 20:29:01 +000015//
Misha Brukman1c9de462004-06-24 21:47:35 +000016// * Both of a binary operator's parameters are of the same type
Chris Lattnerd46bb6e2002-04-24 19:12:21 +000017// * Verify that the indices of mem access instructions match other operands
Misha Brukman1c9de462004-06-24 21:47:35 +000018// * Verify that arithmetic and other things are only performed on first-class
Chris Lattner8e72d6f2002-08-02 17:37:08 +000019// types. Verify that shifts & logicals only happen on integrals f.e.
Misha Brukman1c9de462004-06-24 21:47:35 +000020// * All of the constants in a switch statement are of the correct type
Chris Lattner8e72d6f2002-08-02 17:37:08 +000021// * The code is in valid SSA form
Misha Brukman1c9de462004-06-24 21:47:35 +000022// * It should be illegal to put a label into any other type (like a structure)
Chris Lattner2f7c9632001-06-06 20:29:01 +000023// or to return one. [except constant arrays!]
Chris Lattner7704e9f2002-03-14 16:53:48 +000024// * Only phi nodes can be self referential: 'add int %0, %0 ; <int>:0' is bad
Chris Lattnerd02f08d2002-02-20 17:55:43 +000025// * PHI nodes must have an entry for each predecessor, with no extras.
Chris Lattner069a7952002-06-25 15:56:27 +000026// * PHI nodes must be the first thing in a basic block, all grouped together
Chris Lattner4cd9df82002-10-06 21:00:31 +000027// * PHI nodes must have at least one entry
Chris Lattner069a7952002-06-25 15:56:27 +000028// * All basic blocks should only end with terminator insts, not contain them
Chris Lattner3e6e3e62002-03-29 19:06:18 +000029// * The entry node to a function must not have predecessors
Misha Brukmanfa100532003-10-10 17:54:14 +000030// * All Instructions must be embedded into a basic block
Misha Brukman1c9de462004-06-24 21:47:35 +000031// * Functions cannot take a void-typed parameter
Chris Lattneraf95e582002-04-13 22:48:46 +000032// * Verify that a function's argument list agrees with it's declared type.
Chris Lattnerfbf5be52002-03-15 20:25:09 +000033// * It is illegal to specify a name for a void value.
Misha Brukmanfa100532003-10-10 17:54:14 +000034// * It is illegal to have a internal global value with no initializer
Chris Lattner486302a2002-04-12 18:20:49 +000035// * It is illegal to have a ret instruction that returns a value that does not
36// agree with the function return value type.
Chris Lattner338a4622002-05-08 19:49:50 +000037// * Function call argument types match the function prototype
Chris Lattnerd46bb6e2002-04-24 19:12:21 +000038// * All other things that are tested by asserts spread about the code...
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//
40//===----------------------------------------------------------------------===//
41
42#include "llvm/Analysis/Verifier.h"
Brian Gaeke9f479272003-11-16 23:07:42 +000043#include "llvm/Assembly/Writer.h"
Chris Lattner2ad5aa82005-05-08 22:27:09 +000044#include "llvm/CallingConv.h"
Chris Lattnerdc632112004-02-14 02:47:17 +000045#include "llvm/Constants.h"
Chris Lattnerd02f08d2002-02-20 17:55:43 +000046#include "llvm/Pass.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000047#include "llvm/Module.h"
Chris Lattnerb870ca72004-03-14 03:16:15 +000048#include "llvm/ModuleProvider.h"
Chris Lattneraf95e582002-04-13 22:48:46 +000049#include "llvm/DerivedTypes.h"
Chris Lattnerdc632112004-02-14 02:47:17 +000050#include "llvm/Instructions.h"
Chris Lattnerbb346d02003-05-08 03:47:33 +000051#include "llvm/Intrinsics.h"
Chris Lattnerdc632112004-02-14 02:47:17 +000052#include "llvm/PassManager.h"
53#include "llvm/SymbolTable.h"
Chris Lattner8e72d6f2002-08-02 17:37:08 +000054#include "llvm/Analysis/Dominators.h"
Chris Lattnerd02f08d2002-02-20 17:55:43 +000055#include "llvm/Support/CFG.h"
Chris Lattner0e851da2002-04-18 20:37:37 +000056#include "llvm/Support/InstVisitor.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000057#include "llvm/ADT/STLExtras.h"
Chris Lattnerd02f08d2002-02-20 17:55:43 +000058#include <algorithm>
Reid Spencer8baf8e22004-07-04 11:55:37 +000059#include <iostream>
Chris Lattnera45a2162004-04-02 15:45:08 +000060#include <sstream>
Chris Lattner189d19f2003-11-21 20:23:48 +000061using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000062
Chris Lattner0e851da2002-04-18 20:37:37 +000063namespace { // Anonymous namespace for class
Chris Lattner2f7c9632001-06-06 20:29:01 +000064
Chris Lattnerc8e66542002-04-27 06:56:12 +000065 struct Verifier : public FunctionPass, InstVisitor<Verifier> {
Chris Lattner8e72d6f2002-08-02 17:37:08 +000066 bool Broken; // Is this module found to be broken?
67 bool RealPass; // Are we not being run by a PassManager?
Chris Lattnera45a2162004-04-02 15:45:08 +000068 VerifierFailureAction action;
Reid Spencer47cf71a2004-05-25 08:53:29 +000069 // What to do if verification fails.
Misha Brukmanc566ca362004-03-02 00:22:19 +000070 Module *Mod; // Module we are verifying right now
71 DominatorSet *DS; // Dominator set, caution can be null!
Chris Lattnera45a2162004-04-02 15:45:08 +000072 std::stringstream msgs; // A stringstream to collect messages
Chris Lattner2f7c9632001-06-06 20:29:01 +000073
Chris Lattnerc9e79d02004-09-29 20:07:45 +000074 /// 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 Brukmanb1c93172005-04-21 23:48:37 +000080 Verifier()
Reid Spencer47cf71a2004-05-25 08:53:29 +000081 : Broken(false), RealPass(true), action(AbortProcessAction),
Jeff Cohenc8f1f4b2005-01-22 17:36:17 +000082 DS(0), msgs( std::ios::app | std::ios::out ) {}
Chris Lattnera45a2162004-04-02 15:45:08 +000083 Verifier( VerifierFailureAction ctn )
Misha Brukmanb1c93172005-04-21 23:48:37 +000084 : Broken(false), RealPass(true), action(ctn), DS(0),
Jeff Cohenc8f1f4b2005-01-22 17:36:17 +000085 msgs( std::ios::app | std::ios::out ) {}
Misha Brukmanb1c93172005-04-21 23:48:37 +000086 Verifier(bool AB )
87 : Broken(false), RealPass(true),
88 action( AB ? AbortProcessAction : PrintMessageAction), DS(0),
Jeff Cohenc8f1f4b2005-01-22 17:36:17 +000089 msgs( std::ios::app | std::ios::out ) {}
Misha Brukmanb1c93172005-04-21 23:48:37 +000090 Verifier(DominatorSet &ds)
Chris Lattnera45a2162004-04-02 15:45:08 +000091 : Broken(false), RealPass(false), action(PrintMessageAction),
Jeff Cohenc8f1f4b2005-01-22 17:36:17 +000092 DS(&ds), msgs( std::ios::app | std::ios::out ) {}
Chris Lattner8e72d6f2002-08-02 17:37:08 +000093
Chris Lattner2f7c9632001-06-06 20:29:01 +000094
Chris Lattner069a7952002-06-25 15:56:27 +000095 bool doInitialization(Module &M) {
Brian Gaeke9f479272003-11-16 23:07:42 +000096 Mod = &M;
Chris Lattner069a7952002-06-25 15:56:27 +000097 verifySymbolTable(M.getSymbolTable());
Chris Lattnera4503972002-09-19 16:12:19 +000098
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 Lattnera4503972002-09-19 16:12:19 +0000102 if (RealPass)
103 abortIfBroken();
Chris Lattner0e851da2002-04-18 20:37:37 +0000104 return false;
105 }
106
Chris Lattner069a7952002-06-25 15:56:27 +0000107 bool runOnFunction(Function &F) {
Chris Lattner8e72d6f2002-08-02 17:37:08 +0000108 // Get dominator information if we are being run by PassManager
109 if (RealPass) DS = &getAnalysis<DominatorSet>();
Chris Lattner0e851da2002-04-18 20:37:37 +0000110 visit(F);
Chris Lattnerc9e79d02004-09-29 20:07:45 +0000111 InstsInThisBlock.clear();
Chris Lattnera4503972002-09-19 16:12:19 +0000112
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 Lattnera4503972002-09-19 16:12:19 +0000116 if (RealPass)
117 abortIfBroken();
118
Chris Lattner0e851da2002-04-18 20:37:37 +0000119 return false;
120 }
121
Chris Lattner069a7952002-06-25 15:56:27 +0000122 bool doFinalization(Module &M) {
Chris Lattner9713b842002-04-28 16:04:26 +0000123 // Scan through, checking all of the external function's linkage now...
Chris Lattnerf75832b2004-06-03 06:38:43 +0000124 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner3ac483b2003-04-16 20:42:40 +0000125 visitGlobalValue(*I);
Chris Lattner9713b842002-04-28 16:04:26 +0000126
Chris Lattnerf75832b2004-06-03 06:38:43 +0000127 // Check to make sure function prototypes are okay.
128 if (I->isExternal()) visitFunction(*I);
129 }
130
Chris Lattner531f9e92005-03-15 04:54:21 +0000131 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
Chris Lattnere3400652004-12-15 20:23:49 +0000132 visitGlobalVariable(*I);
Chris Lattner78bc0fa2002-10-06 22:47:32 +0000133
Chris Lattnera4503972002-09-19 16:12:19 +0000134 // If the module is broken, abort at this time.
135 abortIfBroken();
Chris Lattnerd46bb6e2002-04-24 19:12:21 +0000136 return false;
137 }
138
Chris Lattnerf12cc842002-04-28 21:27:06 +0000139 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
140 AU.setPreservesAll();
Chris Lattner8e72d6f2002-08-02 17:37:08 +0000141 if (RealPass)
Chris Lattner40eb9da2002-08-08 19:01:28 +0000142 AU.addRequired<DominatorSet>();
Chris Lattnerf12cc842002-04-28 21:27:06 +0000143 }
144
Misha Brukmanc566ca362004-03-02 00:22:19 +0000145 /// abortIfBroken - If the module is broken and we are supposed to abort on
146 /// this condition, do so.
147 ///
Chris Lattnera45a2162004-04-02 15:45:08 +0000148 void abortIfBroken() {
149 if (Broken)
150 {
151 msgs << "Broken module found, ";
John Criswell987ad192004-05-04 21:46:05 +0000152 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 Lattnera4503972002-09-19 16:12:19 +0000168 }
169 }
170
Chris Lattner3ac483b2003-04-16 20:42:40 +0000171
Chris Lattner0e851da2002-04-18 20:37:37 +0000172 // Verification methods...
Chris Lattner98cf1f52002-11-20 18:36:02 +0000173 void verifySymbolTable(SymbolTable &ST);
Chris Lattner3ac483b2003-04-16 20:42:40 +0000174 void visitGlobalValue(GlobalValue &GV);
Chris Lattnere3400652004-12-15 20:23:49 +0000175 void visitGlobalVariable(GlobalVariable &GV);
Chris Lattner069a7952002-06-25 15:56:27 +0000176 void visitFunction(Function &F);
177 void visitBasicBlock(BasicBlock &BB);
178 void visitPHINode(PHINode &PN);
179 void visitBinaryOperator(BinaryOperator &B);
Chris Lattner1f419252002-09-09 20:26:04 +0000180 void visitShiftInst(ShiftInst &SI);
Chris Lattner5b337482003-10-18 05:57:43 +0000181 void visitVANextInst(VANextInst &VAN) { visitInstruction(VAN); }
182 void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); }
Chris Lattner069a7952002-06-25 15:56:27 +0000183 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 Lattnerab5aa142004-05-21 16:47:21 +0000190 void visitSwitchInst(SwitchInst &SI);
Chris Lattner75648e72004-03-12 05:54:31 +0000191 void visitSelectInst(SelectInst &SI);
Chris Lattner903a25d2002-11-21 16:54:22 +0000192 void visitUserOp1(Instruction &I);
193 void visitUserOp2(Instruction &I) { visitUserOp1(I); }
Brian Gaeke960707c2003-11-11 22:41:34 +0000194 void visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI);
Chris Lattner0e851da2002-04-18 20:37:37 +0000195
Chris Lattner7e5e4562003-11-21 17:35:51 +0000196
197 void WriteValue(const Value *V) {
198 if (!V) return;
Chris Lattner189d19f2003-11-21 20:23:48 +0000199 if (isa<Instruction>(V)) {
Chris Lattnera45a2162004-04-02 15:45:08 +0000200 msgs << *V;
Chris Lattner189d19f2003-11-21 20:23:48 +0000201 } else {
Chris Lattnera45a2162004-04-02 15:45:08 +0000202 WriteAsOperand (msgs, V, true, true, Mod);
203 msgs << "\n";
Chris Lattner7e5e4562003-11-21 17:35:51 +0000204 }
205 }
206
Reid Spencer47cf71a2004-05-25 08:53:29 +0000207 void WriteType(const Type* T ) {
208 if ( !T ) return;
209 WriteTypeSymbolic(msgs, T, Mod );
210 }
211
Chris Lattner7e5e4562003-11-21 17:35:51 +0000212
Chris Lattner0e851da2002-04-18 20:37:37 +0000213 // 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 Lattner7e5e4562003-11-21 17:35:51 +0000216 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 Lattnera45a2162004-04-02 15:45:08 +0000219 msgs << Message << "\n";
Chris Lattner7e5e4562003-11-21 17:35:51 +0000220 WriteValue(V1);
221 WriteValue(V2);
222 WriteValue(V3);
223 WriteValue(V4);
Chris Lattner0e851da2002-04-18 20:37:37 +0000224 Broken = true;
225 }
Reid Spencer47cf71a2004-05-25 08:53:29 +0000226
Misha Brukmanb1c93172005-04-21 23:48:37 +0000227 void CheckFailed( const std::string& Message, const Value* V1,
Reid Spencer47cf71a2004-05-25 08:53:29 +0000228 const Type* T2, const Value* V3 = 0 ) {
229 msgs << Message << "\n";
230 WriteValue(V1);
231 WriteType(T2);
232 WriteValue(V3);
Reid Spencer41481392004-05-27 21:58:13 +0000233 Broken = true;
Reid Spencer47cf71a2004-05-25 08:53:29 +0000234 }
Chris Lattner0e851da2002-04-18 20:37:37 +0000235 };
Chris Lattner00fb26c2002-07-23 18:08:17 +0000236
Chris Lattneref901292003-11-13 19:47:29 +0000237 RegisterOpt<Verifier> X("verify", "Module Verifier");
Chris Lattner189d19f2003-11-21 20:23:48 +0000238} // End anonymous namespace
239
Chris Lattner2f7c9632001-06-06 20:29:01 +0000240
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000241// Assert - We know that cond should be true, if not print an error message.
242#define Assert(C, M) \
Chris Lattner412d2772002-04-28 16:06:24 +0000243 do { if (!(C)) { CheckFailed(M); return; } } while (0)
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000244#define Assert1(C, M, V1) \
Chris Lattner412d2772002-04-28 16:06:24 +0000245 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000246#define Assert2(C, M, V1, V2) \
Chris Lattner412d2772002-04-28 16:06:24 +0000247 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
Chris Lattner069a7952002-06-25 15:56:27 +0000248#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 Lattner2f7c9632001-06-06 20:29:01 +0000252
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000253
Chris Lattner3ac483b2003-04-16 20:42:40 +0000254void Verifier::visitGlobalValue(GlobalValue &GV) {
255 Assert1(!GV.isExternal() || GV.hasExternalLinkage(),
Chris Lattnerdcdc3712003-11-21 20:33:27 +0000256 "Global is external, but doesn't have external linkage!", &GV);
Chris Lattner3ac483b2003-04-16 20:42:40 +0000257 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 Lattnere3400652004-12-15 20:23:49 +0000267void Verifier::visitGlobalVariable(GlobalVariable &GV) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000268 if (GV.hasInitializer())
Chris Lattnere3400652004-12-15 20:23:49 +0000269 Assert1(GV.getInitializer()->getType() == GV.getType()->getElementType(),
270 "Global variable initializer type does not match global "
271 "variable type!", &GV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000272
Chris Lattnere3400652004-12-15 20:23:49 +0000273 visitGlobalValue(GV);
274}
275
276
Chris Lattneraf95e582002-04-13 22:48:46 +0000277// verifySymbolTable - Verify that a function or module symbol table is ok
Chris Lattnerfbf5be52002-03-15 20:25:09 +0000278//
Chris Lattner98cf1f52002-11-20 18:36:02 +0000279void Verifier::verifySymbolTable(SymbolTable &ST) {
Chris Lattnerfbf5be52002-03-15 20:25:09 +0000280
Reid Spencer47cf71a2004-05-25 08:53:29 +0000281 // Loop over all of the values in all type planes in the symbol table.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000282 for (SymbolTable::plane_const_iterator PI = ST.plane_begin(),
Reid Spencer47cf71a2004-05-25 08:53:29 +0000283 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 Lattnerfbf5be52002-03-15 20:25:09 +0000287 // 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 Spencer47cf71a2004-05-25 08:53:29 +0000291 "Values with void type are not allowed to have names!", V);
Chris Lattnerfbf5be52002-03-15 20:25:09 +0000292 }
Chris Lattnerfbf5be52002-03-15 20:25:09 +0000293}
294
Chris Lattner0e851da2002-04-18 20:37:37 +0000295// visitFunction - Verify that a function is ok.
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000296//
Chris Lattner069a7952002-06-25 15:56:27 +0000297void Verifier::visitFunction(Function &F) {
Chris Lattner2ad5aa82005-05-08 22:27:09 +0000298 Assert1(!F.isVarArg() || F.getCallingConv() == CallingConv::C,
299 "Varargs functions must have C calling conventions!", &F);
300
301 // Check function arguments.
Chris Lattner069a7952002-06-25 15:56:27 +0000302 const FunctionType *FT = F.getFunctionType();
303 unsigned NumArgs = F.getArgumentList().size();
Chris Lattneraf95e582002-04-13 22:48:46 +0000304
Chris Lattner149376d2002-10-13 20:57:00 +0000305 Assert2(FT->getNumParams() == NumArgs,
Chris Lattneraf95e582002-04-13 22:48:46 +0000306 "# formal arguments must match # of arguments for function type!",
Chris Lattner069a7952002-06-25 15:56:27 +0000307 &F, FT);
Chris Lattner3ae303c2003-11-21 22:32:23 +0000308 Assert1(F.getReturnType()->isFirstClassType() ||
309 F.getReturnType() == Type::VoidTy,
310 "Functions cannot return aggregate values!", &F);
Chris Lattneraf95e582002-04-13 22:48:46 +0000311
312 // Check that the argument values match the function type for this function...
Chris Lattner149376d2002-10-13 20:57:00 +0000313 unsigned i = 0;
Chris Lattner531f9e92005-03-15 04:54:21 +0000314 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I, ++i) {
Chris Lattner149376d2002-10-13 20:57:00 +0000315 Assert2(I->getType() == FT->getParamType(i),
316 "Argument value does not match function argument type!",
317 I, FT->getParamType(i));
Chris Lattnerf75832b2004-06-03 06:38:43 +0000318 // Make sure no aggregates are passed by value.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000319 Assert1(I->getType()->isFirstClassType(),
Chris Lattnerf75832b2004-06-03 06:38:43 +0000320 "Functions cannot take aggregates as arguments by value!", I);
321 }
Chris Lattneraf95e582002-04-13 22:48:46 +0000322
Chris Lattner149376d2002-10-13 20:57:00 +0000323 if (!F.isExternal()) {
324 verifySymbolTable(F.getSymbolTable());
325
326 // Check the entry node
Chris Lattner5dac64f2003-09-20 14:39:18 +0000327 BasicBlock *Entry = &F.getEntryBlock();
Chris Lattner149376d2002-10-13 20:57:00 +0000328 Assert1(pred_begin(Entry) == pred_end(Entry),
329 "Entry block to function must not have predecessors!", Entry);
330 }
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000331}
332
333
Chris Lattner0e851da2002-04-18 20:37:37 +0000334// verifyBasicBlock - Verify that a basic block is well formed...
335//
Chris Lattner069a7952002-06-25 15:56:27 +0000336void Verifier::visitBasicBlock(BasicBlock &BB) {
Chris Lattnerc9e79d02004-09-29 20:07:45 +0000337 InstsInThisBlock.clear();
338
Alkis Evlogimenosbe526cf2004-12-04 02:30:42 +0000339 // Ensure that basic blocks have terminators!
340 Assert1(BB.getTerminator(), "Basic Block does not have terminator!", &BB);
341
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000342 // 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 Brukmanb1c93172005-04-21 23:48:37 +0000347 PHINode *PN;
Chris Lattner307e1df2004-06-05 17:44:48 +0000348 for (BasicBlock::iterator I = BB.begin(); (PN = dyn_cast<PHINode>(I));++I) {
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000349
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 Gaekee8a6bf32004-05-17 21:15:18 +0000354 Assert1(PN->getNumIncomingValues() == Preds.size(),
355 "PHINode should have one entry for each predecessor of its "
356 "parent basic block!", PN);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000357
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000358 // 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 Brukmanb1c93172005-04-21 23:48:37 +0000365
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000366 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 Brukmanb1c93172005-04-21 23:48:37 +0000376
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000377 // 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 Brukmanb1c93172005-04-21 23:48:37 +0000381 Values[i].first, Preds[i]);
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000382 }
383 }
384 }
Chris Lattner069a7952002-06-25 15:56:27 +0000385}
Chris Lattnerfbf5be52002-03-15 20:25:09 +0000386
Chris Lattner069a7952002-06-25 15:56:27 +0000387void 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 Lattner7af3ee92002-07-18 00:13:42 +0000391 visitInstruction(I);
Chris Lattner069a7952002-06-25 15:56:27 +0000392}
393
394void Verifier::visitReturnInst(ReturnInst &RI) {
395 Function *F = RI.getParent()->getParent();
396 if (RI.getNumOperands() == 0)
Alkis Evlogimenosb92de192004-12-04 01:25:06 +0000397 Assert2(F->getReturnType() == Type::VoidTy,
398 "Found return instr that returns void in Function of non-void "
399 "return type!", &RI, F->getReturnType());
Chris Lattner069a7952002-06-25 15:56:27 +0000400 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 Brukman7eb05a12003-08-18 14:43:39 +0000405 // Check to make sure that the return value has necessary properties for
Chris Lattner069a7952002-06-25 15:56:27 +0000406 // terminators...
407 visitTerminatorInst(RI);
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000408}
409
Chris Lattnerab5aa142004-05-21 16:47:21 +0000410void 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 Lattner75648e72004-03-12 05:54:31 +0000421void 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 Lattnercde15fb2004-09-29 21:19:28 +0000428 visitInstruction(SI);
Chris Lattner75648e72004-03-12 05:54:31 +0000429}
430
431
Misha Brukmanc566ca362004-03-02 00:22:19 +0000432/// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of
433/// a pass, if any exist, it's an error.
434///
Chris Lattner903a25d2002-11-21 16:54:22 +0000435void Verifier::visitUserOp1(Instruction &I) {
436 Assert1(0, "User-defined operators should not live outside of a pass!",
437 &I);
438}
Chris Lattner0e851da2002-04-18 20:37:37 +0000439
Misha Brukmanc566ca362004-03-02 00:22:19 +0000440/// visitPHINode - Ensure that a PHI node is well formed.
441///
Chris Lattner069a7952002-06-25 15:56:27 +0000442void 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 Brukmanfa100532003-10-10 17:54:14 +0000445 // either nonexistent (because this is begin()) or is a PHI node. If not,
Chris Lattner069a7952002-06-25 15:56:27 +0000446 // then there is some other instruction before a PHI.
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000447 Assert2(&PN.getParent()->front() == &PN || isa<PHINode>(PN.getPrev()),
Chris Lattner069a7952002-06-25 15:56:27 +0000448 "PHI nodes not grouped at top of basic block!",
449 &PN, PN.getParent());
450
Chris Lattner3b93c912003-11-12 07:13:37 +0000451 // 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 Lattnerdf9779c2003-10-05 17:44:18 +0000457 // All other PHI node constraints are checked in the visitBasicBlock method.
Chris Lattner0e851da2002-04-18 20:37:37 +0000458
459 visitInstruction(PN);
460}
461
Chris Lattner069a7952002-06-25 15:56:27 +0000462void 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 Lattner21ea83b2002-04-18 22:11:52 +0000466 Assert1(isa<FunctionType>(FPTy->getElementType()),
Chris Lattner069a7952002-06-25 15:56:27 +0000467 "Called function is not pointer to function type!", &CI);
Chris Lattner338a4622002-05-08 19:49:50 +0000468
Chris Lattner069a7952002-06-25 15:56:27 +0000469 const FunctionType *FTy = cast<FunctionType>(FPTy->getElementType());
Chris Lattner338a4622002-05-08 19:49:50 +0000470
471 // Verify that the correct number of arguments are being passed
472 if (FTy->isVarArg())
Chris Lattner069a7952002-06-25 15:56:27 +0000473 Assert1(CI.getNumOperands()-1 >= FTy->getNumParams(),
474 "Called function requires more parameters than were provided!",&CI);
Chris Lattner338a4622002-05-08 19:49:50 +0000475 else
Chris Lattner069a7952002-06-25 15:56:27 +0000476 Assert1(CI.getNumOperands()-1 == FTy->getNumParams(),
477 "Incorrect number of arguments passed to called function!", &CI);
Chris Lattner338a4622002-05-08 19:49:50 +0000478
479 // Verify that all arguments to the call match the function type...
480 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
Chris Lattnerd996e542004-02-24 22:06:07 +0000481 Assert3(CI.getOperand(i+1)->getType() == FTy->getParamType(i),
Chris Lattner338a4622002-05-08 19:49:50 +0000482 "Call parameter type does not match function signature!",
Chris Lattnerd996e542004-02-24 22:06:07 +0000483 CI.getOperand(i+1), FTy->getParamType(i), &CI);
Chris Lattner7af3ee92002-07-18 00:13:42 +0000484
Chris Lattnerbb346d02003-05-08 03:47:33 +0000485 if (Function *F = CI.getCalledFunction())
Brian Gaeke960707c2003-11-11 22:41:34 +0000486 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
Chris Lattnerbb346d02003-05-08 03:47:33 +0000487 visitIntrinsicFunctionCall(ID, CI);
488
Chris Lattner7af3ee92002-07-18 00:13:42 +0000489 visitInstruction(CI);
Chris Lattner21ea83b2002-04-18 22:11:52 +0000490}
Chris Lattner0e851da2002-04-18 20:37:37 +0000491
Misha Brukmanc566ca362004-03-02 00:22:19 +0000492/// visitBinaryOperator - Check that both arguments to the binary operator are
493/// of the same type!
494///
Chris Lattner069a7952002-06-25 15:56:27 +0000495void Verifier::visitBinaryOperator(BinaryOperator &B) {
Chris Lattner1f419252002-09-09 20:26:04 +0000496 Assert1(B.getOperand(0)->getType() == B.getOperand(1)->getType(),
497 "Both operands to a binary operator are not of the same type!", &B);
Chris Lattner0e851da2002-04-18 20:37:37 +0000498
Chris Lattner1f419252002-09-09 20:26:04 +0000499 // 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 Brukmanb1c93172005-04-21 23:48:37 +0000516 Assert1(B.getType()->isInteger() || B.getType()->isFloatingPoint() ||
Brian Gaeke02209042004-08-20 06:00:58 +0000517 isa<PackedType>(B.getType()),
518 "Arithmetic operators must have integer, fp, or packed type!", &B);
Chris Lattner1f419252002-09-09 20:26:04 +0000519 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000520
Chris Lattner0e851da2002-04-18 20:37:37 +0000521 visitInstruction(B);
522}
523
Chris Lattner1f419252002-09-09 20:26:04 +0000524void 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 Lattner069a7952002-06-25 15:56:27 +0000534void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) {
Chris Lattnerdfb3a2c2002-08-22 23:37:20 +0000535 const Type *ElTy =
536 GetElementPtrInst::getIndexedType(GEP.getOperand(0)->getType(),
537 std::vector<Value*>(GEP.idx_begin(), GEP.idx_end()), true);
Chris Lattner069a7952002-06-25 15:56:27 +0000538 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 Lattnerd46bb6e2002-04-24 19:12:21 +0000541 visitInstruction(GEP);
542}
543
Chris Lattner069a7952002-06-25 15:56:27 +0000544void Verifier::visitLoadInst(LoadInst &LI) {
Chris Lattnercd709cb2002-08-22 22:49:05 +0000545 const Type *ElTy =
546 cast<PointerType>(LI.getOperand(0)->getType())->getElementType();
Chris Lattner069a7952002-06-25 15:56:27 +0000547 Assert2(ElTy == LI.getType(),
Chris Lattner9d72c2f2003-11-21 17:06:29 +0000548 "Load result type does not match pointer operand type!", &LI, ElTy);
Chris Lattnerd46bb6e2002-04-24 19:12:21 +0000549 visitInstruction(LI);
550}
551
Chris Lattner069a7952002-06-25 15:56:27 +0000552void Verifier::visitStoreInst(StoreInst &SI) {
Chris Lattnercd709cb2002-08-22 22:49:05 +0000553 const Type *ElTy =
554 cast<PointerType>(SI.getOperand(1)->getType())->getElementType();
Chris Lattner069a7952002-06-25 15:56:27 +0000555 Assert2(ElTy == SI.getOperand(0)->getType(),
Chris Lattner9d72c2f2003-11-21 17:06:29 +0000556 "Stored value type does not match pointer operand type!", &SI, ElTy);
Chris Lattnerd46bb6e2002-04-24 19:12:21 +0000557 visitInstruction(SI);
558}
559
Chris Lattner0e851da2002-04-18 20:37:37 +0000560
Misha Brukmanc566ca362004-03-02 00:22:19 +0000561/// verifyInstruction - Verify that an instruction is well formed.
562///
Chris Lattner069a7952002-06-25 15:56:27 +0000563void Verifier::visitInstruction(Instruction &I) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000564 BasicBlock *BB = I.getParent();
Chris Lattner1f419252002-09-09 20:26:04 +0000565 Assert1(BB, "Instruction not embedded in basic block!", &I);
Chris Lattner0e851da2002-04-18 20:37:37 +0000566
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000567 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 Lattner37053702004-02-27 17:28:25 +0000570 Assert1(*UI != (User*)&I ||
571 !DS->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000572 "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 Lattner5f126b72004-03-29 00:29:36 +0000579 // 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 Lattner0e851da2002-04-18 20:37:37 +0000584 // 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 Lattner069a7952002-06-25 15:56:27 +0000587 for (User::use_iterator UI = I.use_begin(), UE = I.use_end();
Chris Lattner0e851da2002-04-18 20:37:37 +0000588 UI != UE; ++UI) {
589 Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!",
590 *UI);
Chris Lattner21ea83b2002-04-18 22:11:52 +0000591 Instruction *Used = cast<Instruction>(*UI);
592 Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
Chris Lattner069a7952002-06-25 15:56:27 +0000593 " embeded in a basic block!", &I, Used);
Chris Lattner0e851da2002-04-18 20:37:37 +0000594 }
595
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000596 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 Lattner08f7d0c2005-02-24 16:58:29 +0000599 Assert1(I.getOperand(i) != 0, "Instruction has null operand!", &I);
Chris Lattner9ece94b2004-03-14 03:23:54 +0000600 if (Function *F = dyn_cast<Function>(I.getOperand(i))) {
Chris Lattnerbb346d02003-05-08 03:47:33 +0000601 Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)),
602 "Cannot take the address of an intrinsic!", &I);
Chris Lattner9ece94b2004-03-14 03:23:54 +0000603 } 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 Lattnerec5089a2004-01-14 04:25:59 +0000610 BasicBlock *OpBlock = Op->getParent();
Chris Lattnerec5089a2004-01-14 04:25:59 +0000611
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000612 // Check that a definition dominates all of its uses.
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000613 if (!isa<PHINode>(I)) {
Chris Lattner02062822004-01-14 05:42:52 +0000614 // 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 Lattner0377e432004-04-16 05:51:47 +0000618 else if (OpBlock == BB) {
619 // If they are in the same basic block, make sure that the definition
620 // comes before the use.
Chris Lattnerc9e79d02004-09-29 20:07:45 +0000621 Assert2(InstsInThisBlock.count(Op) ||
Chris Lattner71dbebf2004-06-07 23:07:33 +0000622 !DS->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattner0377e432004-04-16 05:51:47 +0000623 "Instruction does not dominate all uses!", Op, &I);
624 }
Chris Lattner02062822004-01-14 05:42:52 +0000625
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000626 // Definition must dominate use unless use is unreachable!
Chris Lattnerec5089a2004-01-14 04:25:59 +0000627 Assert2(DS->dominates(OpBlock, BB) ||
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000628 !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 Lattnerec5089a2004-01-14 04:25:59 +0000634 Assert2(DS->dominates(OpBlock, PredBB) ||
Chris Lattnerdf9779c2003-10-05 17:44:18 +0000635 !DS->dominates(&BB->getParent()->getEntryBlock(), PredBB),
636 "Instruction does not dominate all uses!", Op, &I);
637 }
638 }
639 }
Chris Lattnerc9e79d02004-09-29 20:07:45 +0000640 InstsInThisBlock.insert(&I);
Chris Lattnerbb346d02003-05-08 03:47:33 +0000641}
642
643/// visitIntrinsicFunction - Allow intrinsics to be verified in different ways.
Misha Brukmanc566ca362004-03-02 00:22:19 +0000644///
Brian Gaeke960707c2003-11-11 22:41:34 +0000645void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
Chris Lattnerbb346d02003-05-08 03:47:33 +0000646 Function *IF = CI.getCalledFunction();
647 const FunctionType *FT = IF->getFunctionType();
648 Assert1(IF->isExternal(), "Intrinsic functions should never be defined!", IF);
Chris Lattnerd295d992003-06-05 21:01:26 +0000649 unsigned NumArgs = 0;
Chris Lattnerbb346d02003-05-08 03:47:33 +0000650
Chris Lattnerade94102003-08-24 05:30:29 +0000651 // FIXME: this should check the return type of each intrinsic as well, also
652 // arguments!
Chris Lattnerbb346d02003-05-08 03:47:33 +0000653 switch (ID) {
Chris Lattner071a5e52004-03-13 00:24:00 +0000654 case Intrinsic::vastart:
Chris Lattnerbad4b4a2003-05-08 15:55:31 +0000655 Assert1(CI.getParent()->getParent()->getFunctionType()->isVarArg(),
656 "llvm.va_start intrinsic may only occur in function with variable"
657 " args!", &CI);
Chris Lattner5b337482003-10-18 05:57:43 +0000658 NumArgs = 0;
Chris Lattnerbb346d02003-05-08 03:47:33 +0000659 break;
Chris Lattner071a5e52004-03-13 00:24:00 +0000660 case Intrinsic::vaend: NumArgs = 1; break;
661 case Intrinsic::vacopy: NumArgs = 1; break;
Chris Lattnerade94102003-08-24 05:30:29 +0000662
Chris Lattnerdc632112004-02-14 02:47:17 +0000663 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 Criswell52010042004-04-08 20:27:38 +0000673 // 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 Criswell2b4c96e2004-04-09 19:09:14 +0000678 Assert1(FT->getParamType(0)->isIntegral(),
John Criswell52010042004-04-08 20:27:38 +0000679 "First argument not unsigned int!", IF);
John Criswell2b4c96e2004-04-09 19:09:14 +0000680 Assert1(FT->getParamType(1)->isUnsigned(),
John Criswell52010042004-04-08 20:27:38 +0000681 "First argument not unsigned int!", IF);
682 NumArgs = 2;
683 break;
684
John Criswell23c48d62004-04-14 13:46:52 +0000685 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 Lattner395e2192004-06-17 17:56:54 +0000690 Assert1(isa<PointerType>(FT->getParamType(1)),
John Criswell23c48d62004-04-14 13:46:52 +0000691 "Second argument not a pointer!", IF);
692 NumArgs = 2;
693 break;
694
John Criswell52010042004-04-08 20:27:38 +0000695 case Intrinsic::readport:
696 Assert1(FT->getNumParams() == 1,
697 "Illegal # arguments for intrinsic function!", IF);
John Criswell23c48d62004-04-14 13:46:52 +0000698 Assert1(FT->getReturnType()->isFirstClassType(),
699 "Return type is not a first class type!", IF);
John Criswell52010042004-04-08 20:27:38 +0000700 Assert1(FT->getParamType(0)->isUnsigned(),
701 "First argument not unsigned int!", IF);
702 NumArgs = 1;
703 break;
704
Chris Lattner9c251eb2004-05-23 21:16:51 +0000705 case Intrinsic::readio: {
706 const PointerType *ParamType = dyn_cast<PointerType>(FT->getParamType(0));
707 const Type *ReturnType = FT->getReturnType();
John Criswell0c654c62004-04-14 14:49:36 +0000708
John Criswell23c48d62004-04-14 13:46:52 +0000709 Assert1(FT->getNumParams() == 1,
710 "Illegal # arguments for intrinsic function!", IF);
Chris Lattner9c251eb2004-05-23 21:16:51 +0000711 Assert1(ParamType, "First argument not a pointer!", IF);
712 Assert1(ParamType->getElementType() == ReturnType,
John Criswellc4e72c92004-04-14 15:06:48 +0000713 "Pointer type doesn't match return type!", IF);
John Criswell23c48d62004-04-14 13:46:52 +0000714 NumArgs = 1;
715 break;
John Criswell0c654c62004-04-14 14:49:36 +0000716 }
John Criswell23c48d62004-04-14 13:46:52 +0000717
Alkis Evlogimenos9d740622004-06-12 19:19:14 +0000718 case Intrinsic::isunordered:
Alkis Evlogimenoscf9f8f12004-06-13 00:55:26 +0000719 Assert1(FT->getNumParams() == 2,
720 "Illegal # arguments for intrinsic function!", IF);
Alkis Evlogimenos9d740622004-06-12 19:19:14 +0000721 Assert1(FT->getReturnType() == Type::BoolTy,
Alkis Evlogimenoscf9f8f12004-06-13 00:55:26 +0000722 "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 Evlogimenos9d740622004-06-12 19:19:14 +0000727 NumArgs = 2;
728 break;
729
Andrew Lenharth5e177822005-05-03 17:19:30 +0000730 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 Lattner1c636f12005-04-30 03:44:07 +0000742 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 Gaeke960707c2003-11-11 22:41:34 +0000752 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 Lattner3d903f02004-01-05 05:36:30 +0000756
Chris Lattner9c251eb2004-05-23 21:16:51 +0000757 case Intrinsic::gcroot:
758 Assert1(FT->getNumParams() == 2,
759 "Illegal # arguments for intrinsic function!", IF);
Reid Spencer49fc8a72004-07-18 00:02:41 +0000760 Assert1(isa<Constant>(CI.getOperand(2)),
Chris Lattner9c251eb2004-05-23 21:16:51 +0000761 "Second argument to llvm.gcroot must be a constant!", &CI);
762 NumArgs = 2;
763 break;
Chris Lattner001aba72004-07-22 05:50:01 +0000764 case Intrinsic::gcread: NumArgs = 2; break;
765 case Intrinsic::gcwrite: NumArgs = 3; break;
Chris Lattner9c251eb2004-05-23 21:16:51 +0000766
Chris Lattner3d903f02004-01-05 05:36:30 +0000767 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 Lattner59f1ef42004-01-06 05:33:02 +0000771 case Intrinsic::dbg_declare: NumArgs = 1; break;
Chris Lattner17d028d2004-02-12 17:01:09 +0000772
773 case Intrinsic::memcpy: NumArgs = 4; break;
Chris Lattner5ed171e2004-02-12 18:11:20 +0000774 case Intrinsic::memmove: NumArgs = 4; break;
Chris Lattnerdc632112004-02-14 02:47:17 +0000775 case Intrinsic::memset: NumArgs = 4; break;
Chris Lattner39637ef2005-02-28 19:27:42 +0000776
777 case Intrinsic::prefetch: NumArgs = 3; break;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000778 case Intrinsic::pcmarker:
779 NumArgs = 1;
Andrew Lenharthb4427912005-03-28 20:05:49 +0000780 Assert1(isa<Constant>(CI.getOperand(1)),
781 "First argument to llvm.pcmarker must be a constant!", &CI);
782 break;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000783
784 case Intrinsic::not_intrinsic:
Chris Lattnerbb346d02003-05-08 03:47:33 +0000785 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 Lattner0e851da2002-04-18 20:37:37 +0000791}
792
793
794//===----------------------------------------------------------------------===//
795// Implement the public interfaces to this file...
796//===----------------------------------------------------------------------===//
797
Chris Lattnera45a2162004-04-02 15:45:08 +0000798FunctionPass *llvm::createVerifierPass(VerifierFailureAction action) {
799 return new Verifier(action);
Chris Lattner0e851da2002-04-18 20:37:37 +0000800}
801
Chris Lattner8e72d6f2002-08-02 17:37:08 +0000802
Misha Brukmanb1c93172005-04-21 23:48:37 +0000803// verifyFunction - Create
Chris Lattnera45a2162004-04-02 15:45:08 +0000804bool llvm::verifyFunction(const Function &f, VerifierFailureAction action) {
Chris Lattnerb870ca72004-03-14 03:16:15 +0000805 Function &F = const_cast<Function&>(f);
Chris Lattner8e72d6f2002-08-02 17:37:08 +0000806 assert(!F.isExternal() && "Cannot verify external functions");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000807
Chris Lattnerb870ca72004-03-14 03:16:15 +0000808 FunctionPassManager FPM(new ExistingModuleProvider(F.getParent()));
Chris Lattnera45a2162004-04-02 15:45:08 +0000809 Verifier *V = new Verifier(action);
Chris Lattnerb870ca72004-03-14 03:16:15 +0000810 FPM.add(V);
811 FPM.run(F);
812 return V->Broken;
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000813}
814
Misha Brukmanc566ca362004-03-02 00:22:19 +0000815/// verifyModule - Check a module for errors, printing messages on stderr.
816/// Return true if the module is corrupt.
817///
Chris Lattnera45a2162004-04-02 15:45:08 +0000818bool llvm::verifyModule(const Module &M, VerifierFailureAction action) {
Chris Lattner8e72d6f2002-08-02 17:37:08 +0000819 PassManager PM;
Chris Lattnera45a2162004-04-02 15:45:08 +0000820 Verifier *V = new Verifier(action);
Chris Lattner8e72d6f2002-08-02 17:37:08 +0000821 PM.add(V);
822 PM.run((Module&)M);
823 return V->Broken;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000824}
Reid Spencer47cf71a2004-05-25 08:53:29 +0000825
826// vim: sw=2