blob: 4431c81d294c0a9ca01bca4853b86cf834a571f8 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===-- Verifier.cpp - Implement the Module Verifier -------------*- C++ -*-==//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattnera5c3dec2002-03-29 19:06:18 +000010// This file defines the function verifier interface, that can be used for some
Chris Lattner00950542001-06-06 20:29:01 +000011// sanity checking of input to the system.
12//
Misha Brukman5b636312004-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 Lattner00950542001-06-06 20:29:01 +000015//
Misha Brukman5b636312004-06-24 21:47:35 +000016// * Both of a binary operator's parameters are of the same type
Chris Lattnera00409e2002-04-24 19:12:21 +000017// * Verify that the indices of mem access instructions match other operands
Misha Brukman5b636312004-06-24 21:47:35 +000018// * Verify that arithmetic and other things are only performed on first-class
Chris Lattner9ce231f2002-08-02 17:37:08 +000019// types. Verify that shifts & logicals only happen on integrals f.e.
Misha Brukman5b636312004-06-24 21:47:35 +000020// * All of the constants in a switch statement are of the correct type
Chris Lattner9ce231f2002-08-02 17:37:08 +000021// * The code is in valid SSA form
Misha Brukman5b636312004-06-24 21:47:35 +000022// * It should be illegal to put a label into any other type (like a structure)
Chris Lattner00950542001-06-06 20:29:01 +000023// or to return one. [except constant arrays!]
Chris Lattnerfdec2462002-03-14 16:53:48 +000024// * Only phi nodes can be self referential: 'add int %0, %0 ; <int>:0' is bad
Chris Lattner44d5bd92002-02-20 17:55:43 +000025// * PHI nodes must have an entry for each predecessor, with no extras.
Chris Lattner24e845f2002-06-25 15:56:27 +000026// * PHI nodes must be the first thing in a basic block, all grouped together
Chris Lattnerf6ffcb62002-10-06 21:00:31 +000027// * PHI nodes must have at least one entry
Chris Lattner24e845f2002-06-25 15:56:27 +000028// * All basic blocks should only end with terminator insts, not contain them
Chris Lattnera5c3dec2002-03-29 19:06:18 +000029// * The entry node to a function must not have predecessors
Misha Brukman6b634522003-10-10 17:54:14 +000030// * All Instructions must be embedded into a basic block
Misha Brukman5b636312004-06-24 21:47:35 +000031// * Functions cannot take a void-typed parameter
Chris Lattnerea249242002-04-13 22:48:46 +000032// * Verify that a function's argument list agrees with it's declared type.
Chris Lattneracd3cae2002-03-15 20:25:09 +000033// * It is illegal to specify a name for a void value.
Misha Brukman6b634522003-10-10 17:54:14 +000034// * It is illegal to have a internal global value with no initializer
Chris Lattner23f0ce62002-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 Lattner56732fb2002-05-08 19:49:50 +000037// * Function call argument types match the function prototype
Chris Lattnera00409e2002-04-24 19:12:21 +000038// * All other things that are tested by asserts spread about the code...
Chris Lattner00950542001-06-06 20:29:01 +000039//
40//===----------------------------------------------------------------------===//
41
42#include "llvm/Analysis/Verifier.h"
Brian Gaeke9cebe2d2003-11-16 23:07:42 +000043#include "llvm/Assembly/Writer.h"
Chris Lattner37c121a2005-05-08 22:27:09 +000044#include "llvm/CallingConv.h"
Chris Lattnercf899082004-02-14 02:47:17 +000045#include "llvm/Constants.h"
Chris Lattner44d5bd92002-02-20 17:55:43 +000046#include "llvm/Pass.h"
Chris Lattner00950542001-06-06 20:29:01 +000047#include "llvm/Module.h"
Chris Lattner2eff8592004-03-14 03:16:15 +000048#include "llvm/ModuleProvider.h"
Chris Lattnerea249242002-04-13 22:48:46 +000049#include "llvm/DerivedTypes.h"
Chris Lattner3188b732006-01-26 00:08:45 +000050#include "llvm/InlineAsm.h"
Chris Lattnercf899082004-02-14 02:47:17 +000051#include "llvm/Instructions.h"
Chris Lattnerdd035d12003-05-08 03:47:33 +000052#include "llvm/Intrinsics.h"
Chris Lattnercf899082004-02-14 02:47:17 +000053#include "llvm/PassManager.h"
54#include "llvm/SymbolTable.h"
Chris Lattner9ce231f2002-08-02 17:37:08 +000055#include "llvm/Analysis/Dominators.h"
Chris Lattner44d5bd92002-02-20 17:55:43 +000056#include "llvm/Support/CFG.h"
Chris Lattnerd231fc32002-04-18 20:37:37 +000057#include "llvm/Support/InstVisitor.h"
Bill Wendling8f487662006-11-28 02:09:03 +000058#include "llvm/Support/Streams.h"
Chris Lattner536a9d52006-03-31 04:46:47 +000059#include "llvm/ADT/StringExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000060#include "llvm/ADT/STLExtras.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000061#include "llvm/Support/Compiler.h"
Chris Lattner44d5bd92002-02-20 17:55:43 +000062#include <algorithm>
Bill Wendling1a097e32006-12-07 23:41:45 +000063#include <sstream>
Jeff Cohen4c5701d2006-03-31 07:22:05 +000064#include <cstdarg>
Chris Lattner31f84992003-11-21 20:23:48 +000065using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000066
Chris Lattnerd231fc32002-04-18 20:37:37 +000067namespace { // Anonymous namespace for class
Chris Lattner00950542001-06-06 20:29:01 +000068
Chris Lattnerf190d382006-06-28 21:38:54 +000069 struct VISIBILITY_HIDDEN
70 Verifier : public FunctionPass, InstVisitor<Verifier> {
Chris Lattner9ce231f2002-08-02 17:37:08 +000071 bool Broken; // Is this module found to be broken?
72 bool RealPass; // Are we not being run by a PassManager?
Chris Lattnerfdc38c42004-04-02 15:45:08 +000073 VerifierFailureAction action;
Reid Spenceraf90b0d2004-05-25 08:53:29 +000074 // What to do if verification fails.
Misha Brukmanab5c6002004-03-02 00:22:19 +000075 Module *Mod; // Module we are verifying right now
Chris Lattner0b2192c2006-01-12 06:17:59 +000076 ETForest *EF; // ET-Forest, caution can be null!
Chris Lattnerfdc38c42004-04-02 15:45:08 +000077 std::stringstream msgs; // A stringstream to collect messages
Chris Lattner00950542001-06-06 20:29:01 +000078
Chris Lattnera7b1c7e2004-09-29 20:07:45 +000079 /// InstInThisBlock - when verifying a basic block, keep track of all of the
80 /// instructions we have seen so far. This allows us to do efficient
81 /// dominance checks for the case when an instruction has an operand that is
82 /// an instruction in the same block.
83 std::set<Instruction*> InstsInThisBlock;
84
Misha Brukmanfd939082005-04-21 23:48:37 +000085 Verifier()
Reid Spenceraf90b0d2004-05-25 08:53:29 +000086 : Broken(false), RealPass(true), action(AbortProcessAction),
Chris Lattner0b2192c2006-01-12 06:17:59 +000087 EF(0), msgs( std::ios::app | std::ios::out ) {}
Chris Lattnerfdc38c42004-04-02 15:45:08 +000088 Verifier( VerifierFailureAction ctn )
Chris Lattner0b2192c2006-01-12 06:17:59 +000089 : Broken(false), RealPass(true), action(ctn), EF(0),
Jeff Cohen5fb6ed42005-01-22 17:36:17 +000090 msgs( std::ios::app | std::ios::out ) {}
Misha Brukmanfd939082005-04-21 23:48:37 +000091 Verifier(bool AB )
92 : Broken(false), RealPass(true),
Chris Lattner0b2192c2006-01-12 06:17:59 +000093 action( AB ? AbortProcessAction : PrintMessageAction), EF(0),
Jeff Cohen5fb6ed42005-01-22 17:36:17 +000094 msgs( std::ios::app | std::ios::out ) {}
Chris Lattner0b2192c2006-01-12 06:17:59 +000095 Verifier(ETForest &ef)
Chris Lattnerfdc38c42004-04-02 15:45:08 +000096 : Broken(false), RealPass(false), action(PrintMessageAction),
Chris Lattner0b2192c2006-01-12 06:17:59 +000097 EF(&ef), msgs( std::ios::app | std::ios::out ) {}
Chris Lattner9ce231f2002-08-02 17:37:08 +000098
Chris Lattner00950542001-06-06 20:29:01 +000099
Chris Lattner24e845f2002-06-25 15:56:27 +0000100 bool doInitialization(Module &M) {
Brian Gaeke9cebe2d2003-11-16 23:07:42 +0000101 Mod = &M;
Reid Spencer78d033e2007-01-06 07:24:44 +0000102 verifyTypeSymbolTable(M.getTypeSymbolTable());
103 verifyValueSymbolTable(M.getValueSymbolTable());
Chris Lattner3e1f1442002-09-19 16:12:19 +0000104
105 // If this is a real pass, in a pass manager, we must abort before
106 // returning back to the pass manager, or else the pass manager may try to
107 // run other passes on the broken module.
Chris Lattner3e1f1442002-09-19 16:12:19 +0000108 if (RealPass)
Reid Spencer7107c3b2006-07-26 16:18:00 +0000109 return abortIfBroken();
Chris Lattnerd231fc32002-04-18 20:37:37 +0000110 return false;
111 }
112
Chris Lattner24e845f2002-06-25 15:56:27 +0000113 bool runOnFunction(Function &F) {
Chris Lattner9ce231f2002-08-02 17:37:08 +0000114 // Get dominator information if we are being run by PassManager
Chris Lattner0b2192c2006-01-12 06:17:59 +0000115 if (RealPass) EF = &getAnalysis<ETForest>();
Chris Lattner41af7192006-12-13 04:30:37 +0000116
Chris Lattnerd231fc32002-04-18 20:37:37 +0000117 visit(F);
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000118 InstsInThisBlock.clear();
Chris Lattner3e1f1442002-09-19 16:12:19 +0000119
120 // If this is a real pass, in a pass manager, we must abort before
121 // returning back to the pass manager, or else the pass manager may try to
122 // run other passes on the broken module.
Chris Lattner3e1f1442002-09-19 16:12:19 +0000123 if (RealPass)
Reid Spencer7107c3b2006-07-26 16:18:00 +0000124 return abortIfBroken();
Chris Lattner3e1f1442002-09-19 16:12:19 +0000125
Chris Lattnerd231fc32002-04-18 20:37:37 +0000126 return false;
127 }
128
Chris Lattner24e845f2002-06-25 15:56:27 +0000129 bool doFinalization(Module &M) {
Chris Lattner794caa12002-04-28 16:04:26 +0000130 // Scan through, checking all of the external function's linkage now...
Chris Lattner7c277b32004-06-03 06:38:43 +0000131 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner53997412003-04-16 20:42:40 +0000132 visitGlobalValue(*I);
Chris Lattner794caa12002-04-28 16:04:26 +0000133
Chris Lattner7c277b32004-06-03 06:38:43 +0000134 // Check to make sure function prototypes are okay.
135 if (I->isExternal()) visitFunction(*I);
136 }
137
Reid Spencer0b118202006-01-16 21:12:35 +0000138 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
139 I != E; ++I)
Chris Lattner56998b22004-12-15 20:23:49 +0000140 visitGlobalVariable(*I);
Chris Lattner61b91bc2002-10-06 22:47:32 +0000141
Chris Lattner3e1f1442002-09-19 16:12:19 +0000142 // If the module is broken, abort at this time.
Reid Spencer7107c3b2006-07-26 16:18:00 +0000143 return abortIfBroken();
Chris Lattnera00409e2002-04-24 19:12:21 +0000144 }
145
Chris Lattner97e52e42002-04-28 21:27:06 +0000146 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
147 AU.setPreservesAll();
Chris Lattner9ce231f2002-08-02 17:37:08 +0000148 if (RealPass)
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000149 AU.addRequired<ETForest>();
Chris Lattner97e52e42002-04-28 21:27:06 +0000150 }
151
Misha Brukmanab5c6002004-03-02 00:22:19 +0000152 /// abortIfBroken - If the module is broken and we are supposed to abort on
153 /// this condition, do so.
154 ///
Reid Spencer7107c3b2006-07-26 16:18:00 +0000155 bool abortIfBroken() {
Chris Lattner05ac92c2006-07-06 18:02:27 +0000156 if (Broken) {
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000157 msgs << "Broken module found, ";
Chris Lattner05ac92c2006-07-06 18:02:27 +0000158 switch (action) {
John Criswell4a9c9042004-05-04 21:46:05 +0000159 case AbortProcessAction:
160 msgs << "compilation aborted!\n";
Bill Wendlinge8156192006-12-07 01:30:32 +0000161 cerr << msgs.str();
John Criswell4a9c9042004-05-04 21:46:05 +0000162 abort();
John Criswell4a9c9042004-05-04 21:46:05 +0000163 case PrintMessageAction:
164 msgs << "verification continues.\n";
Bill Wendlinge8156192006-12-07 01:30:32 +0000165 cerr << msgs.str();
Reid Spencer7107c3b2006-07-26 16:18:00 +0000166 return false;
John Criswell4a9c9042004-05-04 21:46:05 +0000167 case ReturnStatusAction:
Reid Spencer7107c3b2006-07-26 16:18:00 +0000168 msgs << "compilation terminated.\n";
169 return Broken;
John Criswell4a9c9042004-05-04 21:46:05 +0000170 }
Chris Lattner3e1f1442002-09-19 16:12:19 +0000171 }
Reid Spencer7107c3b2006-07-26 16:18:00 +0000172 return false;
Chris Lattner3e1f1442002-09-19 16:12:19 +0000173 }
174
Chris Lattner53997412003-04-16 20:42:40 +0000175
Chris Lattnerd231fc32002-04-18 20:37:37 +0000176 // Verification methods...
Reid Spencer78d033e2007-01-06 07:24:44 +0000177 void verifyTypeSymbolTable(TypeSymbolTable &ST);
178 void verifyValueSymbolTable(SymbolTable &ST);
Chris Lattner53997412003-04-16 20:42:40 +0000179 void visitGlobalValue(GlobalValue &GV);
Chris Lattner56998b22004-12-15 20:23:49 +0000180 void visitGlobalVariable(GlobalVariable &GV);
Chris Lattner24e845f2002-06-25 15:56:27 +0000181 void visitFunction(Function &F);
182 void visitBasicBlock(BasicBlock &BB);
Reid Spencer3da59db2006-11-27 01:05:10 +0000183 void visitTruncInst(TruncInst &I);
184 void visitZExtInst(ZExtInst &I);
185 void visitSExtInst(SExtInst &I);
186 void visitFPTruncInst(FPTruncInst &I);
187 void visitFPExtInst(FPExtInst &I);
188 void visitFPToUIInst(FPToUIInst &I);
189 void visitFPToSIInst(FPToSIInst &I);
190 void visitUIToFPInst(UIToFPInst &I);
191 void visitSIToFPInst(SIToFPInst &I);
192 void visitIntToPtrInst(IntToPtrInst &I);
193 void visitPtrToIntInst(PtrToIntInst &I);
194 void visitBitCastInst(BitCastInst &I);
Chris Lattner24e845f2002-06-25 15:56:27 +0000195 void visitPHINode(PHINode &PN);
196 void visitBinaryOperator(BinaryOperator &B);
Reid Spencer45fb3f32006-11-20 01:22:35 +0000197 void visitICmpInst(ICmpInst &IC);
198 void visitFCmpInst(FCmpInst &FC);
Chris Lattner1a143ae2002-09-09 20:26:04 +0000199 void visitShiftInst(ShiftInst &SI);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000200 void visitExtractElementInst(ExtractElementInst &EI);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000201 void visitInsertElementInst(InsertElementInst &EI);
Chris Lattner00f10232006-04-08 01:18:18 +0000202 void visitShuffleVectorInst(ShuffleVectorInst &EI);
Chris Lattner4d45bd02003-10-18 05:57:43 +0000203 void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); }
Chris Lattner24e845f2002-06-25 15:56:27 +0000204 void visitCallInst(CallInst &CI);
205 void visitGetElementPtrInst(GetElementPtrInst &GEP);
206 void visitLoadInst(LoadInst &LI);
207 void visitStoreInst(StoreInst &SI);
208 void visitInstruction(Instruction &I);
209 void visitTerminatorInst(TerminatorInst &I);
210 void visitReturnInst(ReturnInst &RI);
Chris Lattner0f9e9d02004-05-21 16:47:21 +0000211 void visitSwitchInst(SwitchInst &SI);
Chris Lattner230c1a72004-03-12 05:54:31 +0000212 void visitSelectInst(SelectInst &SI);
Chris Lattner627079d2002-11-21 16:54:22 +0000213 void visitUserOp1(Instruction &I);
214 void visitUserOp2(Instruction &I) { visitUserOp1(I); }
Brian Gaeked0fde302003-11-11 22:41:34 +0000215 void visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000216
Chris Lattner536a9d52006-03-31 04:46:47 +0000217 void VerifyIntrinsicPrototype(Function *F, ...);
Chris Lattner15e87522003-11-21 17:35:51 +0000218
219 void WriteValue(const Value *V) {
220 if (!V) return;
Chris Lattner31f84992003-11-21 20:23:48 +0000221 if (isa<Instruction>(V)) {
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000222 msgs << *V;
Chris Lattner31f84992003-11-21 20:23:48 +0000223 } else {
Chris Lattner3749c9c2006-12-06 06:16:21 +0000224 WriteAsOperand(msgs, V, true, Mod);
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000225 msgs << "\n";
Chris Lattner15e87522003-11-21 17:35:51 +0000226 }
227 }
228
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000229 void WriteType(const Type* T ) {
230 if ( !T ) return;
231 WriteTypeSymbolic(msgs, T, Mod );
232 }
233
Chris Lattner15e87522003-11-21 17:35:51 +0000234
Chris Lattnerd231fc32002-04-18 20:37:37 +0000235 // CheckFailed - A check failed, so print out the condition and the message
236 // that failed. This provides a nice place to put a breakpoint if you want
237 // to see why something is not correct.
Chris Lattner15e87522003-11-21 17:35:51 +0000238 void CheckFailed(const std::string &Message,
239 const Value *V1 = 0, const Value *V2 = 0,
240 const Value *V3 = 0, const Value *V4 = 0) {
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000241 msgs << Message << "\n";
Chris Lattner15e87522003-11-21 17:35:51 +0000242 WriteValue(V1);
243 WriteValue(V2);
244 WriteValue(V3);
245 WriteValue(V4);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000246 Broken = true;
247 }
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000248
Misha Brukmanfd939082005-04-21 23:48:37 +0000249 void CheckFailed( const std::string& Message, const Value* V1,
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000250 const Type* T2, const Value* V3 = 0 ) {
251 msgs << Message << "\n";
252 WriteValue(V1);
253 WriteType(T2);
254 WriteValue(V3);
Reid Spencer5dff1582004-05-27 21:58:13 +0000255 Broken = true;
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000256 }
Chris Lattnerd231fc32002-04-18 20:37:37 +0000257 };
Chris Lattnere20a5dd2002-07-23 18:08:17 +0000258
Chris Lattner7f8897f2006-08-27 22:42:52 +0000259 RegisterPass<Verifier> X("verify", "Module Verifier");
Chris Lattner31f84992003-11-21 20:23:48 +0000260} // End anonymous namespace
261
Chris Lattner00950542001-06-06 20:29:01 +0000262
Chris Lattner44d5bd92002-02-20 17:55:43 +0000263// Assert - We know that cond should be true, if not print an error message.
264#define Assert(C, M) \
Chris Lattner39dd0242002-04-28 16:06:24 +0000265 do { if (!(C)) { CheckFailed(M); return; } } while (0)
Chris Lattner44d5bd92002-02-20 17:55:43 +0000266#define Assert1(C, M, V1) \
Chris Lattner39dd0242002-04-28 16:06:24 +0000267 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
Chris Lattner44d5bd92002-02-20 17:55:43 +0000268#define Assert2(C, M, V1, V2) \
Chris Lattner39dd0242002-04-28 16:06:24 +0000269 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
Chris Lattner24e845f2002-06-25 15:56:27 +0000270#define Assert3(C, M, V1, V2, V3) \
271 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
272#define Assert4(C, M, V1, V2, V3, V4) \
273 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
Chris Lattner00950542001-06-06 20:29:01 +0000274
Chris Lattner44d5bd92002-02-20 17:55:43 +0000275
Chris Lattner53997412003-04-16 20:42:40 +0000276void Verifier::visitGlobalValue(GlobalValue &GV) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000277 Assert1(!GV.isExternal() ||
278 GV.hasExternalLinkage() ||
279 GV.hasDLLImportLinkage() ||
280 GV.hasExternalWeakLinkage(),
281 "Global is external, but doesn't have external or dllimport or weak linkage!",
282 &GV);
283
284 Assert1(!GV.hasDLLImportLinkage() || GV.isExternal(),
285 "Global is marked as dllimport, but not external", &GV);
286
Chris Lattner53997412003-04-16 20:42:40 +0000287 Assert1(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
288 "Only global variables can have appending linkage!", &GV);
289
290 if (GV.hasAppendingLinkage()) {
291 GlobalVariable &GVar = cast<GlobalVariable>(GV);
292 Assert1(isa<ArrayType>(GVar.getType()->getElementType()),
293 "Only global arrays can have appending linkage!", &GV);
294 }
295}
296
Chris Lattner56998b22004-12-15 20:23:49 +0000297void Verifier::visitGlobalVariable(GlobalVariable &GV) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000298 if (GV.hasInitializer())
Chris Lattner56998b22004-12-15 20:23:49 +0000299 Assert1(GV.getInitializer()->getType() == GV.getType()->getElementType(),
300 "Global variable initializer type does not match global "
301 "variable type!", &GV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000302
Chris Lattner56998b22004-12-15 20:23:49 +0000303 visitGlobalValue(GV);
304}
305
Reid Spencer78d033e2007-01-06 07:24:44 +0000306void Verifier::verifyTypeSymbolTable(TypeSymbolTable &ST) {
307}
Chris Lattner56998b22004-12-15 20:23:49 +0000308
Chris Lattnerea249242002-04-13 22:48:46 +0000309// verifySymbolTable - Verify that a function or module symbol table is ok
Chris Lattneracd3cae2002-03-15 20:25:09 +0000310//
Reid Spencer78d033e2007-01-06 07:24:44 +0000311void Verifier::verifyValueSymbolTable(SymbolTable &ST) {
Chris Lattneracd3cae2002-03-15 20:25:09 +0000312
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000313 // Loop over all of the values in all type planes in the symbol table.
Misha Brukmanfd939082005-04-21 23:48:37 +0000314 for (SymbolTable::plane_const_iterator PI = ST.plane_begin(),
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000315 PE = ST.plane_end(); PI != PE; ++PI)
316 for (SymbolTable::value_const_iterator VI = PI->second.begin(),
317 VE = PI->second.end(); VI != VE; ++VI) {
318 Value *V = VI->second;
Chris Lattneracd3cae2002-03-15 20:25:09 +0000319 // Check that there are no void typed values in the symbol table. Values
320 // with a void type cannot be put into symbol tables because they cannot
321 // have names!
322 Assert1(V->getType() != Type::VoidTy,
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000323 "Values with void type are not allowed to have names!", V);
Chris Lattneracd3cae2002-03-15 20:25:09 +0000324 }
Chris Lattneracd3cae2002-03-15 20:25:09 +0000325}
326
Chris Lattnerd231fc32002-04-18 20:37:37 +0000327// visitFunction - Verify that a function is ok.
Chris Lattner44d5bd92002-02-20 17:55:43 +0000328//
Chris Lattner24e845f2002-06-25 15:56:27 +0000329void Verifier::visitFunction(Function &F) {
Chris Lattner37c121a2005-05-08 22:27:09 +0000330 // Check function arguments.
Chris Lattner24e845f2002-06-25 15:56:27 +0000331 const FunctionType *FT = F.getFunctionType();
332 unsigned NumArgs = F.getArgumentList().size();
Chris Lattnerea249242002-04-13 22:48:46 +0000333
Chris Lattner69da5cf2002-10-13 20:57:00 +0000334 Assert2(FT->getNumParams() == NumArgs,
Chris Lattnerea249242002-04-13 22:48:46 +0000335 "# formal arguments must match # of arguments for function type!",
Chris Lattner24e845f2002-06-25 15:56:27 +0000336 &F, FT);
Chris Lattnerc282f5a2003-11-21 22:32:23 +0000337 Assert1(F.getReturnType()->isFirstClassType() ||
338 F.getReturnType() == Type::VoidTy,
339 "Functions cannot return aggregate values!", &F);
Chris Lattnerea249242002-04-13 22:48:46 +0000340
Chris Lattner80105dd2006-05-19 21:25:17 +0000341 // Check that this function meets the restrictions on this calling convention.
342 switch (F.getCallingConv()) {
343 default:
344 break;
345 case CallingConv::C:
346 break;
347 case CallingConv::CSRet:
348 Assert1(FT->getReturnType() == Type::VoidTy &&
349 FT->getNumParams() > 0 && isa<PointerType>(FT->getParamType(0)),
350 "Invalid struct-return function!", &F);
351 break;
352 case CallingConv::Fast:
353 case CallingConv::Cold:
Anton Korobeynikovbcb97702006-09-17 20:25:45 +0000354 case CallingConv::X86_FastCall:
Chris Lattner80105dd2006-05-19 21:25:17 +0000355 Assert1(!F.isVarArg(),
356 "Varargs functions must have C calling conventions!", &F);
357 break;
358 }
359
Chris Lattnerea249242002-04-13 22:48:46 +0000360 // Check that the argument values match the function type for this function...
Chris Lattner69da5cf2002-10-13 20:57:00 +0000361 unsigned i = 0;
Chris Lattnere3cbe032006-12-16 02:25:35 +0000362 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
363 I != E; ++I, ++i) {
Chris Lattner69da5cf2002-10-13 20:57:00 +0000364 Assert2(I->getType() == FT->getParamType(i),
365 "Argument value does not match function argument type!",
366 I, FT->getParamType(i));
Chris Lattner7c277b32004-06-03 06:38:43 +0000367 // Make sure no aggregates are passed by value.
Misha Brukmanfd939082005-04-21 23:48:37 +0000368 Assert1(I->getType()->isFirstClassType(),
Chris Lattner7c277b32004-06-03 06:38:43 +0000369 "Functions cannot take aggregates as arguments by value!", I);
370 }
Chris Lattnerea249242002-04-13 22:48:46 +0000371
Chris Lattner69da5cf2002-10-13 20:57:00 +0000372 if (!F.isExternal()) {
Chris Lattner4d17caa2006-12-13 04:45:46 +0000373 // Verify that this function (which has a body) is not named "llvm.*". It
374 // is not legal to define intrinsics.
375 if (F.getName().size() >= 5)
376 Assert1(F.getName().substr(0, 5) != "llvm.",
377 "llvm intrinsics cannot be defined!", &F);
378
Reid Spencer78d033e2007-01-06 07:24:44 +0000379 verifyValueSymbolTable(F.getValueSymbolTable());
Chris Lattner69da5cf2002-10-13 20:57:00 +0000380
381 // Check the entry node
Chris Lattner02a3be02003-09-20 14:39:18 +0000382 BasicBlock *Entry = &F.getEntryBlock();
Chris Lattner69da5cf2002-10-13 20:57:00 +0000383 Assert1(pred_begin(Entry) == pred_end(Entry),
384 "Entry block to function must not have predecessors!", Entry);
385 }
Chris Lattner44d5bd92002-02-20 17:55:43 +0000386}
387
388
Chris Lattnerd231fc32002-04-18 20:37:37 +0000389// verifyBasicBlock - Verify that a basic block is well formed...
390//
Chris Lattner24e845f2002-06-25 15:56:27 +0000391void Verifier::visitBasicBlock(BasicBlock &BB) {
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000392 InstsInThisBlock.clear();
393
Alkis Evlogimenos4f4cf992004-12-04 02:30:42 +0000394 // Ensure that basic blocks have terminators!
395 Assert1(BB.getTerminator(), "Basic Block does not have terminator!", &BB);
396
Chris Lattnerbede31f2003-10-05 17:44:18 +0000397 // Check constraints that this basic block imposes on all of the PHI nodes in
398 // it.
399 if (isa<PHINode>(BB.front())) {
400 std::vector<BasicBlock*> Preds(pred_begin(&BB), pred_end(&BB));
401 std::sort(Preds.begin(), Preds.end());
Misha Brukmanfd939082005-04-21 23:48:37 +0000402 PHINode *PN;
Chris Lattnerc70a5092004-06-05 17:44:48 +0000403 for (BasicBlock::iterator I = BB.begin(); (PN = dyn_cast<PHINode>(I));++I) {
Chris Lattnerbede31f2003-10-05 17:44:18 +0000404
405 // Ensure that PHI nodes have at least one entry!
406 Assert1(PN->getNumIncomingValues() != 0,
407 "PHI nodes must have at least one entry. If the block is dead, "
408 "the PHI should be removed!", PN);
Brian Gaeke2fea9ad2004-05-17 21:15:18 +0000409 Assert1(PN->getNumIncomingValues() == Preds.size(),
410 "PHINode should have one entry for each predecessor of its "
411 "parent basic block!", PN);
Misha Brukmanfd939082005-04-21 23:48:37 +0000412
Chris Lattnerbede31f2003-10-05 17:44:18 +0000413 // Get and sort all incoming values in the PHI node...
414 std::vector<std::pair<BasicBlock*, Value*> > Values;
415 Values.reserve(PN->getNumIncomingValues());
416 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
417 Values.push_back(std::make_pair(PN->getIncomingBlock(i),
418 PN->getIncomingValue(i)));
419 std::sort(Values.begin(), Values.end());
Misha Brukmanfd939082005-04-21 23:48:37 +0000420
Chris Lattnerbede31f2003-10-05 17:44:18 +0000421 for (unsigned i = 0, e = Values.size(); i != e; ++i) {
422 // Check to make sure that if there is more than one entry for a
423 // particular basic block in this PHI node, that the incoming values are
424 // all identical.
425 //
426 Assert4(i == 0 || Values[i].first != Values[i-1].first ||
427 Values[i].second == Values[i-1].second,
428 "PHI node has multiple entries for the same basic block with "
429 "different incoming values!", PN, Values[i].first,
430 Values[i].second, Values[i-1].second);
Misha Brukmanfd939082005-04-21 23:48:37 +0000431
Chris Lattnerbede31f2003-10-05 17:44:18 +0000432 // Check to make sure that the predecessors and PHI node entries are
433 // matched up.
434 Assert3(Values[i].first == Preds[i],
435 "PHI node entries do not match predecessors!", PN,
Misha Brukmanfd939082005-04-21 23:48:37 +0000436 Values[i].first, Preds[i]);
Chris Lattnerbede31f2003-10-05 17:44:18 +0000437 }
438 }
439 }
Chris Lattner24e845f2002-06-25 15:56:27 +0000440}
Chris Lattneracd3cae2002-03-15 20:25:09 +0000441
Chris Lattner24e845f2002-06-25 15:56:27 +0000442void Verifier::visitTerminatorInst(TerminatorInst &I) {
443 // Ensure that terminators only exist at the end of the basic block.
444 Assert1(&I == I.getParent()->getTerminator(),
445 "Terminator found in the middle of a basic block!", I.getParent());
Chris Lattner3535c9b2002-07-18 00:13:42 +0000446 visitInstruction(I);
Chris Lattner24e845f2002-06-25 15:56:27 +0000447}
448
449void Verifier::visitReturnInst(ReturnInst &RI) {
450 Function *F = RI.getParent()->getParent();
451 if (RI.getNumOperands() == 0)
Alkis Evlogimenos8b42b432004-12-04 01:25:06 +0000452 Assert2(F->getReturnType() == Type::VoidTy,
453 "Found return instr that returns void in Function of non-void "
454 "return type!", &RI, F->getReturnType());
Chris Lattner24e845f2002-06-25 15:56:27 +0000455 else
456 Assert2(F->getReturnType() == RI.getOperand(0)->getType(),
457 "Function return type does not match operand "
458 "type of return inst!", &RI, F->getReturnType());
459
Misha Brukman5560c9d2003-08-18 14:43:39 +0000460 // Check to make sure that the return value has necessary properties for
Chris Lattner24e845f2002-06-25 15:56:27 +0000461 // terminators...
462 visitTerminatorInst(RI);
Chris Lattner44d5bd92002-02-20 17:55:43 +0000463}
464
Chris Lattner0f9e9d02004-05-21 16:47:21 +0000465void Verifier::visitSwitchInst(SwitchInst &SI) {
466 // Check to make sure that all of the constants in the switch instruction
467 // have the same type as the switched-on value.
468 const Type *SwitchTy = SI.getCondition()->getType();
469 for (unsigned i = 1, e = SI.getNumCases(); i != e; ++i)
470 Assert1(SI.getCaseValue(i)->getType() == SwitchTy,
471 "Switch constants must all be same type as switch value!", &SI);
472
473 visitTerminatorInst(SI);
474}
475
Chris Lattner230c1a72004-03-12 05:54:31 +0000476void Verifier::visitSelectInst(SelectInst &SI) {
Reid Spencer4fe16d62007-01-11 18:21:29 +0000477 Assert1(SI.getCondition()->getType() == Type::Int1Ty,
Chris Lattner230c1a72004-03-12 05:54:31 +0000478 "Select condition type must be bool!", &SI);
479 Assert1(SI.getTrueValue()->getType() == SI.getFalseValue()->getType(),
480 "Select values must have identical types!", &SI);
481 Assert1(SI.getTrueValue()->getType() == SI.getType(),
482 "Select values must have same type as select instruction!", &SI);
Chris Lattner0030e6c2004-09-29 21:19:28 +0000483 visitInstruction(SI);
Chris Lattner230c1a72004-03-12 05:54:31 +0000484}
485
486
Misha Brukmanab5c6002004-03-02 00:22:19 +0000487/// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of
488/// a pass, if any exist, it's an error.
489///
Chris Lattner627079d2002-11-21 16:54:22 +0000490void Verifier::visitUserOp1(Instruction &I) {
Chris Lattner536a9d52006-03-31 04:46:47 +0000491 Assert1(0, "User-defined operators should not live outside of a pass!", &I);
Chris Lattner627079d2002-11-21 16:54:22 +0000492}
Chris Lattnerd231fc32002-04-18 20:37:37 +0000493
Reid Spencer3da59db2006-11-27 01:05:10 +0000494void Verifier::visitTruncInst(TruncInst &I) {
495 // Get the source and destination types
496 const Type *SrcTy = I.getOperand(0)->getType();
497 const Type *DestTy = I.getType();
498
499 // Get the size of the types in bits, we'll need this later
500 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
501 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
502
503 Assert1(SrcTy->isIntegral(), "Trunc only operates on integer", &I);
504 Assert1(DestTy->isIntegral(),"Trunc only produces integral", &I);
505 Assert1(SrcBitSize > DestBitSize,"DestTy too big for Trunc", &I);
506
507 visitInstruction(I);
508}
509
510void Verifier::visitZExtInst(ZExtInst &I) {
511 // Get the source and destination types
512 const Type *SrcTy = I.getOperand(0)->getType();
513 const Type *DestTy = I.getType();
514
515 // Get the size of the types in bits, we'll need this later
516 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
517 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
518
519 Assert1(SrcTy->isIntegral(),"ZExt only operates on integral", &I);
520 Assert1(DestTy->isInteger(),"ZExt only produces an integer", &I);
521 Assert1(SrcBitSize < DestBitSize,"Type too small for ZExt", &I);
522
523 visitInstruction(I);
524}
525
526void Verifier::visitSExtInst(SExtInst &I) {
527 // Get the source and destination types
528 const Type *SrcTy = I.getOperand(0)->getType();
529 const Type *DestTy = I.getType();
530
531 // Get the size of the types in bits, we'll need this later
532 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
533 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
534
535 Assert1(SrcTy->isIntegral(),"SExt only operates on integral", &I);
536 Assert1(DestTy->isInteger(),"SExt only produces an integer", &I);
537 Assert1(SrcBitSize < DestBitSize,"Type too small for SExt", &I);
538
539 visitInstruction(I);
540}
541
542void Verifier::visitFPTruncInst(FPTruncInst &I) {
543 // Get the source and destination types
544 const Type *SrcTy = I.getOperand(0)->getType();
545 const Type *DestTy = I.getType();
546 // Get the size of the types in bits, we'll need this later
547 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
548 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
549
550 Assert1(SrcTy->isFloatingPoint(),"FPTrunc only operates on FP", &I);
551 Assert1(DestTy->isFloatingPoint(),"FPTrunc only produces an FP", &I);
552 Assert1(SrcBitSize > DestBitSize,"DestTy too big for FPTrunc", &I);
553
554 visitInstruction(I);
555}
556
557void Verifier::visitFPExtInst(FPExtInst &I) {
558 // Get the source and destination types
559 const Type *SrcTy = I.getOperand(0)->getType();
560 const Type *DestTy = I.getType();
561
562 // Get the size of the types in bits, we'll need this later
563 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
564 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
565
566 Assert1(SrcTy->isFloatingPoint(),"FPExt only operates on FP", &I);
567 Assert1(DestTy->isFloatingPoint(),"FPExt only produces an FP", &I);
568 Assert1(SrcBitSize < DestBitSize,"DestTy too small for FPExt", &I);
569
570 visitInstruction(I);
571}
572
573void Verifier::visitUIToFPInst(UIToFPInst &I) {
574 // Get the source and destination types
575 const Type *SrcTy = I.getOperand(0)->getType();
576 const Type *DestTy = I.getType();
577
578 Assert1(SrcTy->isIntegral(),"UInt2FP source must be integral", &I);
579 Assert1(DestTy->isFloatingPoint(),"UInt2FP result must be FP", &I);
580
581 visitInstruction(I);
582}
583
584void Verifier::visitSIToFPInst(SIToFPInst &I) {
585 // Get the source and destination types
586 const Type *SrcTy = I.getOperand(0)->getType();
587 const Type *DestTy = I.getType();
588
589 Assert1(SrcTy->isIntegral(),"SInt2FP source must be integral", &I);
590 Assert1(DestTy->isFloatingPoint(),"SInt2FP result must be FP", &I);
591
592 visitInstruction(I);
593}
594
595void Verifier::visitFPToUIInst(FPToUIInst &I) {
596 // Get the source and destination types
597 const Type *SrcTy = I.getOperand(0)->getType();
598 const Type *DestTy = I.getType();
599
600 Assert1(SrcTy->isFloatingPoint(),"FP2UInt source must be FP", &I);
601 Assert1(DestTy->isIntegral(),"FP2UInt result must be integral", &I);
602
603 visitInstruction(I);
604}
605
606void Verifier::visitFPToSIInst(FPToSIInst &I) {
607 // Get the source and destination types
608 const Type *SrcTy = I.getOperand(0)->getType();
609 const Type *DestTy = I.getType();
610
611 Assert1(SrcTy->isFloatingPoint(),"FPToSI source must be FP", &I);
612 Assert1(DestTy->isIntegral(),"FP2ToI result must be integral", &I);
613
614 visitInstruction(I);
615}
616
617void Verifier::visitPtrToIntInst(PtrToIntInst &I) {
618 // Get the source and destination types
619 const Type *SrcTy = I.getOperand(0)->getType();
620 const Type *DestTy = I.getType();
621
622 Assert1(isa<PointerType>(SrcTy), "PtrToInt source must be pointer", &I);
623 Assert1(DestTy->isIntegral(), "PtrToInt result must be integral", &I);
624
625 visitInstruction(I);
626}
627
628void Verifier::visitIntToPtrInst(IntToPtrInst &I) {
629 // Get the source and destination types
630 const Type *SrcTy = I.getOperand(0)->getType();
631 const Type *DestTy = I.getType();
632
633 Assert1(SrcTy->isIntegral(), "IntToPtr source must be an integral", &I);
634 Assert1(isa<PointerType>(DestTy), "IntToPtr result must be a pointer",&I);
635
636 visitInstruction(I);
637}
638
639void Verifier::visitBitCastInst(BitCastInst &I) {
640 // Get the source and destination types
641 const Type *SrcTy = I.getOperand(0)->getType();
642 const Type *DestTy = I.getType();
643
644 // Get the size of the types in bits, we'll need this later
645 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
646 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
647
648 // BitCast implies a no-op cast of type only. No bits change.
649 // However, you can't cast pointers to anything but pointers.
650 Assert1(isa<PointerType>(DestTy) == isa<PointerType>(DestTy),
651 "Bitcast requires both operands to be pointer or neither", &I);
652 Assert1(SrcBitSize == DestBitSize, "Bitcast requies types of same width", &I);
653
654 visitInstruction(I);
655}
656
Misha Brukmanab5c6002004-03-02 00:22:19 +0000657/// visitPHINode - Ensure that a PHI node is well formed.
658///
Chris Lattner24e845f2002-06-25 15:56:27 +0000659void Verifier::visitPHINode(PHINode &PN) {
660 // Ensure that the PHI nodes are all grouped together at the top of the block.
661 // This can be tested by checking whether the instruction before this is
Misha Brukman6b634522003-10-10 17:54:14 +0000662 // either nonexistent (because this is begin()) or is a PHI node. If not,
Chris Lattner24e845f2002-06-25 15:56:27 +0000663 // then there is some other instruction before a PHI.
Chris Lattnerbede31f2003-10-05 17:44:18 +0000664 Assert2(&PN.getParent()->front() == &PN || isa<PHINode>(PN.getPrev()),
Chris Lattner24e845f2002-06-25 15:56:27 +0000665 "PHI nodes not grouped at top of basic block!",
666 &PN, PN.getParent());
667
Chris Lattner579de712003-11-12 07:13:37 +0000668 // Check that all of the operands of the PHI node have the same type as the
669 // result.
670 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
671 Assert1(PN.getType() == PN.getIncomingValue(i)->getType(),
672 "PHI node operands are not the same type as the result!", &PN);
673
Chris Lattnerbede31f2003-10-05 17:44:18 +0000674 // All other PHI node constraints are checked in the visitBasicBlock method.
Chris Lattnerd231fc32002-04-18 20:37:37 +0000675
676 visitInstruction(PN);
677}
678
Chris Lattner24e845f2002-06-25 15:56:27 +0000679void Verifier::visitCallInst(CallInst &CI) {
680 Assert1(isa<PointerType>(CI.getOperand(0)->getType()),
681 "Called function must be a pointer!", &CI);
682 const PointerType *FPTy = cast<PointerType>(CI.getOperand(0)->getType());
Chris Lattnerefdd0a22002-04-18 22:11:52 +0000683 Assert1(isa<FunctionType>(FPTy->getElementType()),
Chris Lattner24e845f2002-06-25 15:56:27 +0000684 "Called function is not pointer to function type!", &CI);
Chris Lattner56732fb2002-05-08 19:49:50 +0000685
Chris Lattner24e845f2002-06-25 15:56:27 +0000686 const FunctionType *FTy = cast<FunctionType>(FPTy->getElementType());
Chris Lattner56732fb2002-05-08 19:49:50 +0000687
688 // Verify that the correct number of arguments are being passed
689 if (FTy->isVarArg())
Chris Lattner24e845f2002-06-25 15:56:27 +0000690 Assert1(CI.getNumOperands()-1 >= FTy->getNumParams(),
691 "Called function requires more parameters than were provided!",&CI);
Chris Lattner56732fb2002-05-08 19:49:50 +0000692 else
Chris Lattner24e845f2002-06-25 15:56:27 +0000693 Assert1(CI.getNumOperands()-1 == FTy->getNumParams(),
694 "Incorrect number of arguments passed to called function!", &CI);
Chris Lattner56732fb2002-05-08 19:49:50 +0000695
696 // Verify that all arguments to the call match the function type...
697 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
Chris Lattner2a116532004-02-24 22:06:07 +0000698 Assert3(CI.getOperand(i+1)->getType() == FTy->getParamType(i),
Chris Lattner56732fb2002-05-08 19:49:50 +0000699 "Call parameter type does not match function signature!",
Chris Lattner2a116532004-02-24 22:06:07 +0000700 CI.getOperand(i+1), FTy->getParamType(i), &CI);
Chris Lattner3535c9b2002-07-18 00:13:42 +0000701
Chris Lattnerdd035d12003-05-08 03:47:33 +0000702 if (Function *F = CI.getCalledFunction())
Brian Gaeked0fde302003-11-11 22:41:34 +0000703 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
Chris Lattnerdd035d12003-05-08 03:47:33 +0000704 visitIntrinsicFunctionCall(ID, CI);
705
Chris Lattner3535c9b2002-07-18 00:13:42 +0000706 visitInstruction(CI);
Chris Lattnerefdd0a22002-04-18 22:11:52 +0000707}
Chris Lattnerd231fc32002-04-18 20:37:37 +0000708
Misha Brukmanab5c6002004-03-02 00:22:19 +0000709/// visitBinaryOperator - Check that both arguments to the binary operator are
710/// of the same type!
711///
Chris Lattner24e845f2002-06-25 15:56:27 +0000712void Verifier::visitBinaryOperator(BinaryOperator &B) {
Chris Lattner1a143ae2002-09-09 20:26:04 +0000713 Assert1(B.getOperand(0)->getType() == B.getOperand(1)->getType(),
714 "Both operands to a binary operator are not of the same type!", &B);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000715
Chris Lattner1a143ae2002-09-09 20:26:04 +0000716 // Check that logical operators are only used with integral operands.
717 if (B.getOpcode() == Instruction::And || B.getOpcode() == Instruction::Or ||
718 B.getOpcode() == Instruction::Xor) {
Chris Lattnerb9d41002005-12-21 18:22:19 +0000719 Assert1(B.getType()->isIntegral() ||
720 (isa<PackedType>(B.getType()) &&
721 cast<PackedType>(B.getType())->getElementType()->isIntegral()),
Chris Lattner1a143ae2002-09-09 20:26:04 +0000722 "Logical operators only work with integral types!", &B);
723 Assert1(B.getType() == B.getOperand(0)->getType(),
724 "Logical operators must have same type for operands and result!",
725 &B);
Chris Lattner1a143ae2002-09-09 20:26:04 +0000726 } else {
727 // Arithmetic operators only work on integer or fp values
728 Assert1(B.getType() == B.getOperand(0)->getType(),
729 "Arithmetic operators must have same type for operands and result!",
730 &B);
Misha Brukmanfd939082005-04-21 23:48:37 +0000731 Assert1(B.getType()->isInteger() || B.getType()->isFloatingPoint() ||
Brian Gaeke715c90b2004-08-20 06:00:58 +0000732 isa<PackedType>(B.getType()),
733 "Arithmetic operators must have integer, fp, or packed type!", &B);
Chris Lattner1a143ae2002-09-09 20:26:04 +0000734 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000735
Chris Lattnerd231fc32002-04-18 20:37:37 +0000736 visitInstruction(B);
737}
738
Reid Spencer45fb3f32006-11-20 01:22:35 +0000739void Verifier::visitICmpInst(ICmpInst& IC) {
740 // Check that the operands are the same type
741 const Type* Op0Ty = IC.getOperand(0)->getType();
742 const Type* Op1Ty = IC.getOperand(1)->getType();
743 Assert1(Op0Ty == Op1Ty,
744 "Both operands to ICmp instruction are not of the same type!", &IC);
745 // Check that the operands are the right type
Reid Spenceraffaf072007-01-04 05:22:18 +0000746 Assert1(Op0Ty->isIntegral() || Op0Ty->getTypeID() == Type::PointerTyID,
Reid Spencer45fb3f32006-11-20 01:22:35 +0000747 "Invalid operand types for ICmp instruction", &IC);
748 visitInstruction(IC);
749}
750
751void Verifier::visitFCmpInst(FCmpInst& FC) {
752 // Check that the operands are the same type
753 const Type* Op0Ty = FC.getOperand(0)->getType();
754 const Type* Op1Ty = FC.getOperand(1)->getType();
755 Assert1(Op0Ty == Op1Ty,
756 "Both operands to FCmp instruction are not of the same type!", &FC);
757 // Check that the operands are the right type
Reid Spenceraffaf072007-01-04 05:22:18 +0000758 Assert1(Op0Ty->isFloatingPoint(),
Reid Spencer45fb3f32006-11-20 01:22:35 +0000759 "Invalid operand types for FCmp instruction", &FC);
760 visitInstruction(FC);
761}
762
Chris Lattner1a143ae2002-09-09 20:26:04 +0000763void Verifier::visitShiftInst(ShiftInst &SI) {
764 Assert1(SI.getType()->isInteger(),
765 "Shift must return an integer result!", &SI);
766 Assert1(SI.getType() == SI.getOperand(0)->getType(),
767 "Shift return type must be same as first operand!", &SI);
Reid Spencer79e21d32006-12-31 05:26:44 +0000768 Assert1(SI.getOperand(1)->getType() == Type::Int8Ty,
Chris Lattner1a143ae2002-09-09 20:26:04 +0000769 "Second operand to shift must be ubyte type!", &SI);
770 visitInstruction(SI);
771}
772
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000773void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
Chris Lattner1cbe05b2006-04-08 04:07:52 +0000774 Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0),
775 EI.getOperand(1)),
776 "Invalid extractelement operands!", &EI);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000777 visitInstruction(EI);
778}
779
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000780void Verifier::visitInsertElementInst(InsertElementInst &IE) {
Chris Lattner1cbe05b2006-04-08 04:07:52 +0000781 Assert1(InsertElementInst::isValidOperands(IE.getOperand(0),
782 IE.getOperand(1),
783 IE.getOperand(2)),
784 "Invalid insertelement operands!", &IE);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000785 visitInstruction(IE);
786}
787
Chris Lattner00f10232006-04-08 01:18:18 +0000788void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
789 Assert1(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1),
790 SV.getOperand(2)),
791 "Invalid shufflevector operands!", &SV);
792 Assert1(SV.getType() == SV.getOperand(0)->getType(),
793 "Result of shufflevector must match first operand type!", &SV);
794
795 // Check to see if Mask is valid.
796 if (const ConstantPacked *MV = dyn_cast<ConstantPacked>(SV.getOperand(2))) {
797 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000798 Assert1(isa<ConstantInt>(MV->getOperand(i)) ||
Chris Lattner00f10232006-04-08 01:18:18 +0000799 isa<UndefValue>(MV->getOperand(i)),
800 "Invalid shufflevector shuffle mask!", &SV);
801 }
802 } else {
803 Assert1(isa<UndefValue>(SV.getOperand(2)) ||
804 isa<ConstantAggregateZero>(SV.getOperand(2)),
805 "Invalid shufflevector shuffle mask!", &SV);
806 }
807
808 visitInstruction(SV);
809}
810
Chris Lattner24e845f2002-06-25 15:56:27 +0000811void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) {
Chris Lattnercc63f1c2002-08-22 23:37:20 +0000812 const Type *ElTy =
813 GetElementPtrInst::getIndexedType(GEP.getOperand(0)->getType(),
814 std::vector<Value*>(GEP.idx_begin(), GEP.idx_end()), true);
Chris Lattner24e845f2002-06-25 15:56:27 +0000815 Assert1(ElTy, "Invalid indices for GEP pointer type!", &GEP);
816 Assert2(PointerType::get(ElTy) == GEP.getType(),
817 "GEP is not of right type for indices!", &GEP, ElTy);
Chris Lattnera00409e2002-04-24 19:12:21 +0000818 visitInstruction(GEP);
819}
820
Chris Lattner24e845f2002-06-25 15:56:27 +0000821void Verifier::visitLoadInst(LoadInst &LI) {
Chris Lattner24ea74e2002-08-22 22:49:05 +0000822 const Type *ElTy =
823 cast<PointerType>(LI.getOperand(0)->getType())->getElementType();
Chris Lattner24e845f2002-06-25 15:56:27 +0000824 Assert2(ElTy == LI.getType(),
Chris Lattner7334f2e2003-11-21 17:06:29 +0000825 "Load result type does not match pointer operand type!", &LI, ElTy);
Chris Lattnera00409e2002-04-24 19:12:21 +0000826 visitInstruction(LI);
827}
828
Chris Lattner24e845f2002-06-25 15:56:27 +0000829void Verifier::visitStoreInst(StoreInst &SI) {
Chris Lattner24ea74e2002-08-22 22:49:05 +0000830 const Type *ElTy =
831 cast<PointerType>(SI.getOperand(1)->getType())->getElementType();
Chris Lattner24e845f2002-06-25 15:56:27 +0000832 Assert2(ElTy == SI.getOperand(0)->getType(),
Chris Lattner7334f2e2003-11-21 17:06:29 +0000833 "Stored value type does not match pointer operand type!", &SI, ElTy);
Chris Lattnera00409e2002-04-24 19:12:21 +0000834 visitInstruction(SI);
835}
836
Chris Lattnerd231fc32002-04-18 20:37:37 +0000837
Misha Brukmanab5c6002004-03-02 00:22:19 +0000838/// verifyInstruction - Verify that an instruction is well formed.
839///
Chris Lattner24e845f2002-06-25 15:56:27 +0000840void Verifier::visitInstruction(Instruction &I) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000841 BasicBlock *BB = I.getParent();
Chris Lattner1a143ae2002-09-09 20:26:04 +0000842 Assert1(BB, "Instruction not embedded in basic block!", &I);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000843
Chris Lattnerbede31f2003-10-05 17:44:18 +0000844 if (!isa<PHINode>(I)) { // Check that non-phi nodes are not self referential
845 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
846 UI != UE; ++UI)
Chris Lattner08092532004-02-27 17:28:25 +0000847 Assert1(*UI != (User*)&I ||
Chris Lattner0b2192c2006-01-12 06:17:59 +0000848 !EF->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattnerbede31f2003-10-05 17:44:18 +0000849 "Only PHI nodes may reference their own value!", &I);
850 }
851
852 // Check that void typed values don't have names
853 Assert1(I.getType() != Type::VoidTy || !I.hasName(),
854 "Instruction has a name, but provides a void value!", &I);
855
Chris Lattner944cfaf2004-03-29 00:29:36 +0000856 // Check that the return value of the instruction is either void or a legal
857 // value type.
858 Assert1(I.getType() == Type::VoidTy || I.getType()->isFirstClassType(),
859 "Instruction returns a non-scalar type!", &I);
860
Chris Lattnerd231fc32002-04-18 20:37:37 +0000861 // Check that all uses of the instruction, if they are instructions
862 // themselves, actually have parent basic blocks. If the use is not an
863 // instruction, it is an error!
Chris Lattner24e845f2002-06-25 15:56:27 +0000864 for (User::use_iterator UI = I.use_begin(), UE = I.use_end();
Chris Lattnerd231fc32002-04-18 20:37:37 +0000865 UI != UE; ++UI) {
866 Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!",
867 *UI);
Chris Lattnerefdd0a22002-04-18 22:11:52 +0000868 Instruction *Used = cast<Instruction>(*UI);
869 Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
Chris Lattner24e845f2002-06-25 15:56:27 +0000870 " embeded in a basic block!", &I, Used);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000871 }
872
Chris Lattnerbede31f2003-10-05 17:44:18 +0000873 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Chris Lattneraab18202005-02-24 16:58:29 +0000874 Assert1(I.getOperand(i) != 0, "Instruction has null operand!", &I);
Chris Lattnerf4ea9212006-07-11 20:29:49 +0000875
876 // Check to make sure that only first-class-values are operands to
877 // instructions.
878 Assert1(I.getOperand(i)->getType()->isFirstClassType(),
879 "Instruction operands must be first-class values!", &I);
880
Chris Lattner59c35692004-03-14 03:23:54 +0000881 if (Function *F = dyn_cast<Function>(I.getOperand(i))) {
Chris Lattnerf4ea9212006-07-11 20:29:49 +0000882 // Check to make sure that the "address of" an intrinsic function is never
883 // taken.
Chris Lattnerdd035d12003-05-08 03:47:33 +0000884 Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)),
885 "Cannot take the address of an intrinsic!", &I);
Chris Lattner59c35692004-03-14 03:23:54 +0000886 } else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) {
887 Assert1(OpBB->getParent() == BB->getParent(),
888 "Referring to a basic block in another function!", &I);
889 } else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) {
890 Assert1(OpArg->getParent() == BB->getParent(),
891 "Referring to an argument in another function!", &I);
892 } else if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) {
Chris Lattner30768ac2004-01-14 04:25:59 +0000893 BasicBlock *OpBlock = Op->getParent();
Chris Lattner30768ac2004-01-14 04:25:59 +0000894
Chris Lattnerbede31f2003-10-05 17:44:18 +0000895 // Check that a definition dominates all of its uses.
Chris Lattnerbede31f2003-10-05 17:44:18 +0000896 if (!isa<PHINode>(I)) {
Chris Lattnerc9b07022004-01-14 05:42:52 +0000897 // Invoke results are only usable in the normal destination, not in the
898 // exceptional destination.
Chris Lattnere3cbe032006-12-16 02:25:35 +0000899 if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
Chris Lattnerc9b07022004-01-14 05:42:52 +0000900 OpBlock = II->getNormalDest();
Chris Lattnere3cbe032006-12-16 02:25:35 +0000901
Chris Lattner62d75e72006-12-20 21:20:13 +0000902 Assert2(OpBlock != II->getUnwindDest(),
903 "No uses of invoke possible due to dominance structure!",
904 Op, II);
905
Chris Lattnere3cbe032006-12-16 02:25:35 +0000906 // If the normal successor of an invoke instruction has multiple
907 // predecessors, then the normal edge from the invoke is critical, so
908 // the invoke value can only be live if the destination block
909 // dominates all of it's predecessors (other than the invoke) or if
910 // the invoke value is only used by a phi in the successor.
911 if (!OpBlock->getSinglePredecessor() &&
912 EF->dominates(&BB->getParent()->getEntryBlock(), BB)) {
913 // The first case we allow is if the use is a PHI operand in the
914 // normal block, and if that PHI operand corresponds to the invoke's
915 // block.
916 bool Bad = true;
917 if (PHINode *PN = dyn_cast<PHINode>(&I))
918 if (PN->getParent() == OpBlock &&
919 PN->getIncomingBlock(i/2) == Op->getParent())
920 Bad = false;
921
922 // If it is used by something non-phi, then the other case is that
923 // 'OpBlock' dominates all of its predecessors other than the
924 // invoke. In this case, the invoke value can still be used.
Chris Lattner19591b32006-12-20 19:50:15 +0000925 if (Bad) {
926 Bad = false;
Chris Lattnere3cbe032006-12-16 02:25:35 +0000927 for (pred_iterator PI = pred_begin(OpBlock),
928 E = pred_end(OpBlock); PI != E; ++PI) {
929 if (*PI != II->getParent() && !EF->dominates(OpBlock, *PI)) {
930 Bad = true;
931 break;
932 }
933 }
934 }
Chris Lattner62d75e72006-12-20 21:20:13 +0000935 Assert2(!Bad,
936 "Invoke value defined on critical edge but not dead!", &I,
937 Op);
Chris Lattnere3cbe032006-12-16 02:25:35 +0000938 }
939 } else if (OpBlock == BB) {
Chris Lattnere1f0cf12004-04-16 05:51:47 +0000940 // If they are in the same basic block, make sure that the definition
941 // comes before the use.
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000942 Assert2(InstsInThisBlock.count(Op) ||
Chris Lattner0b2192c2006-01-12 06:17:59 +0000943 !EF->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattnere1f0cf12004-04-16 05:51:47 +0000944 "Instruction does not dominate all uses!", Op, &I);
945 }
Chris Lattnerc9b07022004-01-14 05:42:52 +0000946
Chris Lattnerbede31f2003-10-05 17:44:18 +0000947 // Definition must dominate use unless use is unreachable!
Chris Lattner0b2192c2006-01-12 06:17:59 +0000948 Assert2(EF->dominates(OpBlock, BB) ||
949 !EF->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattnerbede31f2003-10-05 17:44:18 +0000950 "Instruction does not dominate all uses!", Op, &I);
951 } else {
952 // PHI nodes are more difficult than other nodes because they actually
953 // "use" the value in the predecessor basic blocks they correspond to.
954 BasicBlock *PredBB = cast<BasicBlock>(I.getOperand(i+1));
Chris Lattner0b2192c2006-01-12 06:17:59 +0000955 Assert2(EF->dominates(OpBlock, PredBB) ||
956 !EF->dominates(&BB->getParent()->getEntryBlock(), PredBB),
Chris Lattnerbede31f2003-10-05 17:44:18 +0000957 "Instruction does not dominate all uses!", Op, &I);
958 }
Chris Lattner3188b732006-01-26 00:08:45 +0000959 } else if (isa<InlineAsm>(I.getOperand(i))) {
960 Assert1(i == 0 && isa<CallInst>(I),
961 "Cannot take the address of an inline asm!", &I);
Chris Lattnerbede31f2003-10-05 17:44:18 +0000962 }
963 }
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000964 InstsInThisBlock.insert(&I);
Chris Lattnerdd035d12003-05-08 03:47:33 +0000965}
966
967/// visitIntrinsicFunction - Allow intrinsics to be verified in different ways.
Misha Brukmanab5c6002004-03-02 00:22:19 +0000968///
Brian Gaeked0fde302003-11-11 22:41:34 +0000969void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
Chris Lattnerdd035d12003-05-08 03:47:33 +0000970 Function *IF = CI.getCalledFunction();
Chris Lattnerdd035d12003-05-08 03:47:33 +0000971 Assert1(IF->isExternal(), "Intrinsic functions should never be defined!", IF);
Chris Lattner3b816b72006-03-09 22:06:04 +0000972
973#define GET_INTRINSIC_VERIFIER
974#include "llvm/Intrinsics.gen"
975#undef GET_INTRINSIC_VERIFIER
Chris Lattnerd231fc32002-04-18 20:37:37 +0000976}
977
Chris Lattner536a9d52006-03-31 04:46:47 +0000978/// VerifyIntrinsicPrototype - TableGen emits calls to this function into
979/// Intrinsics.gen. This implements a little state machine that verifies the
980/// prototype of intrinsics.
981void Verifier::VerifyIntrinsicPrototype(Function *F, ...) {
982 va_list VA;
983 va_start(VA, F);
984
985 const FunctionType *FTy = F->getFunctionType();
986
987 // Note that "arg#0" is the return type.
988 for (unsigned ArgNo = 0; 1; ++ArgNo) {
989 int TypeID = va_arg(VA, int);
990
991 if (TypeID == -1) {
992 if (ArgNo != FTy->getNumParams()+1)
993 CheckFailed("Intrinsic prototype has too many arguments!", F);
994 break;
995 }
996
997 if (ArgNo == FTy->getNumParams()+1) {
998 CheckFailed("Intrinsic prototype has too few arguments!", F);
999 break;
1000 }
1001
1002 const Type *Ty;
1003 if (ArgNo == 0)
1004 Ty = FTy->getReturnType();
1005 else
1006 Ty = FTy->getParamType(ArgNo-1);
1007
1008 if (Ty->getTypeID() != TypeID) {
1009 if (ArgNo == 0)
1010 CheckFailed("Intrinsic prototype has incorrect result type!", F);
1011 else
1012 CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " is wrong!",F);
1013 break;
1014 }
1015
1016 // If this is a packed argument, verify the number and type of elements.
1017 if (TypeID == Type::PackedTyID) {
1018 const PackedType *PTy = cast<PackedType>(Ty);
1019 if (va_arg(VA, int) != PTy->getElementType()->getTypeID()) {
1020 CheckFailed("Intrinsic prototype has incorrect vector element type!",F);
1021 break;
1022 }
1023
1024 if ((unsigned)va_arg(VA, int) != PTy->getNumElements()) {
1025 CheckFailed("Intrinsic prototype has incorrect number of "
1026 "vector elements!",F);
1027 break;
1028 }
1029 }
1030 }
1031
1032 va_end(VA);
1033}
1034
Chris Lattnerd231fc32002-04-18 20:37:37 +00001035
1036//===----------------------------------------------------------------------===//
1037// Implement the public interfaces to this file...
1038//===----------------------------------------------------------------------===//
1039
Chris Lattnerfdc38c42004-04-02 15:45:08 +00001040FunctionPass *llvm::createVerifierPass(VerifierFailureAction action) {
1041 return new Verifier(action);
Chris Lattnerd231fc32002-04-18 20:37:37 +00001042}
1043
Chris Lattner9ce231f2002-08-02 17:37:08 +00001044
Misha Brukmanfd939082005-04-21 23:48:37 +00001045// verifyFunction - Create
Chris Lattnerfdc38c42004-04-02 15:45:08 +00001046bool llvm::verifyFunction(const Function &f, VerifierFailureAction action) {
Chris Lattner2eff8592004-03-14 03:16:15 +00001047 Function &F = const_cast<Function&>(f);
Chris Lattner9ce231f2002-08-02 17:37:08 +00001048 assert(!F.isExternal() && "Cannot verify external functions");
Misha Brukmanfd939082005-04-21 23:48:37 +00001049
Chris Lattner2eff8592004-03-14 03:16:15 +00001050 FunctionPassManager FPM(new ExistingModuleProvider(F.getParent()));
Chris Lattnerfdc38c42004-04-02 15:45:08 +00001051 Verifier *V = new Verifier(action);
Chris Lattner2eff8592004-03-14 03:16:15 +00001052 FPM.add(V);
1053 FPM.run(F);
1054 return V->Broken;
Chris Lattner44d5bd92002-02-20 17:55:43 +00001055}
1056
Misha Brukmanab5c6002004-03-02 00:22:19 +00001057/// verifyModule - Check a module for errors, printing messages on stderr.
1058/// Return true if the module is corrupt.
1059///
Chris Lattner05ac92c2006-07-06 18:02:27 +00001060bool llvm::verifyModule(const Module &M, VerifierFailureAction action,
1061 std::string *ErrorInfo) {
Chris Lattner9ce231f2002-08-02 17:37:08 +00001062 PassManager PM;
Chris Lattnerfdc38c42004-04-02 15:45:08 +00001063 Verifier *V = new Verifier(action);
Chris Lattner9ce231f2002-08-02 17:37:08 +00001064 PM.add(V);
1065 PM.run((Module&)M);
Chris Lattner05ac92c2006-07-06 18:02:27 +00001066
1067 if (ErrorInfo && V->Broken)
1068 *ErrorInfo = V->msgs.str();
Chris Lattner9ce231f2002-08-02 17:37:08 +00001069 return V->Broken;
Chris Lattner00950542001-06-06 20:29:01 +00001070}
Reid Spenceraf90b0d2004-05-25 08:53:29 +00001071
1072// vim: sw=2