blob: d57cd5159608a79525e9862fc1e20fd5c7242db3 [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"
Chris Lattner536a9d52006-03-31 04:46:47 +000058#include "llvm/ADT/StringExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000059#include "llvm/ADT/STLExtras.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000060#include "llvm/Support/Compiler.h"
Chris Lattner44d5bd92002-02-20 17:55:43 +000061#include <algorithm>
Reid Spencere2fac772004-07-04 11:55:37 +000062#include <iostream>
Chris Lattnerfdc38c42004-04-02 15:45:08 +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;
Chris Lattner24e845f2002-06-25 15:56:27 +0000102 verifySymbolTable(M.getSymbolTable());
Chris Lattner3e1f1442002-09-19 16:12:19 +0000103
104 // If this is a real pass, in a pass manager, we must abort before
105 // returning back to the pass manager, or else the pass manager may try to
106 // run other passes on the broken module.
Chris Lattner3e1f1442002-09-19 16:12:19 +0000107 if (RealPass)
Reid Spencer7107c3b2006-07-26 16:18:00 +0000108 return abortIfBroken();
Chris Lattnerd231fc32002-04-18 20:37:37 +0000109 return false;
110 }
111
Chris Lattner24e845f2002-06-25 15:56:27 +0000112 bool runOnFunction(Function &F) {
Chris Lattner9ce231f2002-08-02 17:37:08 +0000113 // Get dominator information if we are being run by PassManager
Chris Lattner0b2192c2006-01-12 06:17:59 +0000114 if (RealPass) EF = &getAnalysis<ETForest>();
Chris Lattnerd231fc32002-04-18 20:37:37 +0000115 visit(F);
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000116 InstsInThisBlock.clear();
Chris Lattner3e1f1442002-09-19 16:12:19 +0000117
118 // If this is a real pass, in a pass manager, we must abort before
119 // returning back to the pass manager, or else the pass manager may try to
120 // run other passes on the broken module.
Chris Lattner3e1f1442002-09-19 16:12:19 +0000121 if (RealPass)
Reid Spencer7107c3b2006-07-26 16:18:00 +0000122 return abortIfBroken();
Chris Lattner3e1f1442002-09-19 16:12:19 +0000123
Chris Lattnerd231fc32002-04-18 20:37:37 +0000124 return false;
125 }
126
Chris Lattner24e845f2002-06-25 15:56:27 +0000127 bool doFinalization(Module &M) {
Chris Lattner794caa12002-04-28 16:04:26 +0000128 // Scan through, checking all of the external function's linkage now...
Chris Lattner7c277b32004-06-03 06:38:43 +0000129 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner53997412003-04-16 20:42:40 +0000130 visitGlobalValue(*I);
Chris Lattner794caa12002-04-28 16:04:26 +0000131
Chris Lattner7c277b32004-06-03 06:38:43 +0000132 // Check to make sure function prototypes are okay.
133 if (I->isExternal()) visitFunction(*I);
134 }
135
Reid Spencer0b118202006-01-16 21:12:35 +0000136 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
137 I != E; ++I)
Chris Lattner56998b22004-12-15 20:23:49 +0000138 visitGlobalVariable(*I);
Chris Lattner61b91bc2002-10-06 22:47:32 +0000139
Chris Lattner3e1f1442002-09-19 16:12:19 +0000140 // If the module is broken, abort at this time.
Reid Spencer7107c3b2006-07-26 16:18:00 +0000141 return abortIfBroken();
Chris Lattnera00409e2002-04-24 19:12:21 +0000142 }
143
Chris Lattner97e52e42002-04-28 21:27:06 +0000144 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
145 AU.setPreservesAll();
Chris Lattner9ce231f2002-08-02 17:37:08 +0000146 if (RealPass)
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000147 AU.addRequired<ETForest>();
Chris Lattner97e52e42002-04-28 21:27:06 +0000148 }
149
Misha Brukmanab5c6002004-03-02 00:22:19 +0000150 /// abortIfBroken - If the module is broken and we are supposed to abort on
151 /// this condition, do so.
152 ///
Reid Spencer7107c3b2006-07-26 16:18:00 +0000153 bool abortIfBroken() {
Chris Lattner05ac92c2006-07-06 18:02:27 +0000154 if (Broken) {
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000155 msgs << "Broken module found, ";
Chris Lattner05ac92c2006-07-06 18:02:27 +0000156 switch (action) {
John Criswell4a9c9042004-05-04 21:46:05 +0000157 case AbortProcessAction:
158 msgs << "compilation aborted!\n";
159 std::cerr << msgs.str();
160 abort();
John Criswell4a9c9042004-05-04 21:46:05 +0000161 case PrintMessageAction:
162 msgs << "verification continues.\n";
163 std::cerr << msgs.str();
Reid Spencer7107c3b2006-07-26 16:18:00 +0000164 return false;
John Criswell4a9c9042004-05-04 21:46:05 +0000165 case ReturnStatusAction:
Reid Spencer7107c3b2006-07-26 16:18:00 +0000166 msgs << "compilation terminated.\n";
167 return Broken;
John Criswell4a9c9042004-05-04 21:46:05 +0000168 }
Chris Lattner3e1f1442002-09-19 16:12:19 +0000169 }
Reid Spencer7107c3b2006-07-26 16:18:00 +0000170 return false;
Chris Lattner3e1f1442002-09-19 16:12:19 +0000171 }
172
Chris Lattner53997412003-04-16 20:42:40 +0000173
Chris Lattnerd231fc32002-04-18 20:37:37 +0000174 // Verification methods...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000175 void verifySymbolTable(SymbolTable &ST);
Chris Lattner53997412003-04-16 20:42:40 +0000176 void visitGlobalValue(GlobalValue &GV);
Chris Lattner56998b22004-12-15 20:23:49 +0000177 void visitGlobalVariable(GlobalVariable &GV);
Chris Lattner24e845f2002-06-25 15:56:27 +0000178 void visitFunction(Function &F);
179 void visitBasicBlock(BasicBlock &BB);
Reid Spencer3da59db2006-11-27 01:05:10 +0000180 void visitTruncInst(TruncInst &I);
181 void visitZExtInst(ZExtInst &I);
182 void visitSExtInst(SExtInst &I);
183 void visitFPTruncInst(FPTruncInst &I);
184 void visitFPExtInst(FPExtInst &I);
185 void visitFPToUIInst(FPToUIInst &I);
186 void visitFPToSIInst(FPToSIInst &I);
187 void visitUIToFPInst(UIToFPInst &I);
188 void visitSIToFPInst(SIToFPInst &I);
189 void visitIntToPtrInst(IntToPtrInst &I);
190 void visitPtrToIntInst(PtrToIntInst &I);
191 void visitBitCastInst(BitCastInst &I);
Chris Lattner24e845f2002-06-25 15:56:27 +0000192 void visitPHINode(PHINode &PN);
193 void visitBinaryOperator(BinaryOperator &B);
Reid Spencer45fb3f32006-11-20 01:22:35 +0000194 void visitICmpInst(ICmpInst &IC);
195 void visitFCmpInst(FCmpInst &FC);
Chris Lattner1a143ae2002-09-09 20:26:04 +0000196 void visitShiftInst(ShiftInst &SI);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000197 void visitExtractElementInst(ExtractElementInst &EI);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000198 void visitInsertElementInst(InsertElementInst &EI);
Chris Lattner00f10232006-04-08 01:18:18 +0000199 void visitShuffleVectorInst(ShuffleVectorInst &EI);
Chris Lattner4d45bd02003-10-18 05:57:43 +0000200 void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); }
Chris Lattner24e845f2002-06-25 15:56:27 +0000201 void visitCallInst(CallInst &CI);
202 void visitGetElementPtrInst(GetElementPtrInst &GEP);
203 void visitLoadInst(LoadInst &LI);
204 void visitStoreInst(StoreInst &SI);
205 void visitInstruction(Instruction &I);
206 void visitTerminatorInst(TerminatorInst &I);
207 void visitReturnInst(ReturnInst &RI);
Chris Lattner0f9e9d02004-05-21 16:47:21 +0000208 void visitSwitchInst(SwitchInst &SI);
Chris Lattner230c1a72004-03-12 05:54:31 +0000209 void visitSelectInst(SelectInst &SI);
Chris Lattner627079d2002-11-21 16:54:22 +0000210 void visitUserOp1(Instruction &I);
211 void visitUserOp2(Instruction &I) { visitUserOp1(I); }
Brian Gaeked0fde302003-11-11 22:41:34 +0000212 void visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000213
Chris Lattner536a9d52006-03-31 04:46:47 +0000214 void VerifyIntrinsicPrototype(Function *F, ...);
Chris Lattner15e87522003-11-21 17:35:51 +0000215
216 void WriteValue(const Value *V) {
217 if (!V) return;
Chris Lattner31f84992003-11-21 20:23:48 +0000218 if (isa<Instruction>(V)) {
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000219 msgs << *V;
Chris Lattner31f84992003-11-21 20:23:48 +0000220 } else {
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000221 WriteAsOperand (msgs, V, true, true, Mod);
222 msgs << "\n";
Chris Lattner15e87522003-11-21 17:35:51 +0000223 }
224 }
225
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000226 void WriteType(const Type* T ) {
227 if ( !T ) return;
228 WriteTypeSymbolic(msgs, T, Mod );
229 }
230
Chris Lattner15e87522003-11-21 17:35:51 +0000231
Chris Lattnerd231fc32002-04-18 20:37:37 +0000232 // CheckFailed - A check failed, so print out the condition and the message
233 // that failed. This provides a nice place to put a breakpoint if you want
234 // to see why something is not correct.
Chris Lattner15e87522003-11-21 17:35:51 +0000235 void CheckFailed(const std::string &Message,
236 const Value *V1 = 0, const Value *V2 = 0,
237 const Value *V3 = 0, const Value *V4 = 0) {
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000238 msgs << Message << "\n";
Chris Lattner15e87522003-11-21 17:35:51 +0000239 WriteValue(V1);
240 WriteValue(V2);
241 WriteValue(V3);
242 WriteValue(V4);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000243 Broken = true;
244 }
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000245
Misha Brukmanfd939082005-04-21 23:48:37 +0000246 void CheckFailed( const std::string& Message, const Value* V1,
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000247 const Type* T2, const Value* V3 = 0 ) {
248 msgs << Message << "\n";
249 WriteValue(V1);
250 WriteType(T2);
251 WriteValue(V3);
Reid Spencer5dff1582004-05-27 21:58:13 +0000252 Broken = true;
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000253 }
Chris Lattnerd231fc32002-04-18 20:37:37 +0000254 };
Chris Lattnere20a5dd2002-07-23 18:08:17 +0000255
Chris Lattner7f8897f2006-08-27 22:42:52 +0000256 RegisterPass<Verifier> X("verify", "Module Verifier");
Chris Lattner31f84992003-11-21 20:23:48 +0000257} // End anonymous namespace
258
Chris Lattner00950542001-06-06 20:29:01 +0000259
Chris Lattner44d5bd92002-02-20 17:55:43 +0000260// Assert - We know that cond should be true, if not print an error message.
261#define Assert(C, M) \
Chris Lattner39dd0242002-04-28 16:06:24 +0000262 do { if (!(C)) { CheckFailed(M); return; } } while (0)
Chris Lattner44d5bd92002-02-20 17:55:43 +0000263#define Assert1(C, M, V1) \
Chris Lattner39dd0242002-04-28 16:06:24 +0000264 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
Chris Lattner44d5bd92002-02-20 17:55:43 +0000265#define Assert2(C, M, V1, V2) \
Chris Lattner39dd0242002-04-28 16:06:24 +0000266 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
Chris Lattner24e845f2002-06-25 15:56:27 +0000267#define Assert3(C, M, V1, V2, V3) \
268 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
269#define Assert4(C, M, V1, V2, V3, V4) \
270 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
Chris Lattner00950542001-06-06 20:29:01 +0000271
Chris Lattner44d5bd92002-02-20 17:55:43 +0000272
Chris Lattner53997412003-04-16 20:42:40 +0000273void Verifier::visitGlobalValue(GlobalValue &GV) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000274 Assert1(!GV.isExternal() ||
275 GV.hasExternalLinkage() ||
276 GV.hasDLLImportLinkage() ||
277 GV.hasExternalWeakLinkage(),
278 "Global is external, but doesn't have external or dllimport or weak linkage!",
279 &GV);
280
281 Assert1(!GV.hasDLLImportLinkage() || GV.isExternal(),
282 "Global is marked as dllimport, but not external", &GV);
283
Chris Lattner53997412003-04-16 20:42:40 +0000284 Assert1(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
285 "Only global variables can have appending linkage!", &GV);
286
287 if (GV.hasAppendingLinkage()) {
288 GlobalVariable &GVar = cast<GlobalVariable>(GV);
289 Assert1(isa<ArrayType>(GVar.getType()->getElementType()),
290 "Only global arrays can have appending linkage!", &GV);
291 }
292}
293
Chris Lattner56998b22004-12-15 20:23:49 +0000294void Verifier::visitGlobalVariable(GlobalVariable &GV) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000295 if (GV.hasInitializer())
Chris Lattner56998b22004-12-15 20:23:49 +0000296 Assert1(GV.getInitializer()->getType() == GV.getType()->getElementType(),
297 "Global variable initializer type does not match global "
298 "variable type!", &GV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000299
Chris Lattner56998b22004-12-15 20:23:49 +0000300 visitGlobalValue(GV);
301}
302
303
Chris Lattnerea249242002-04-13 22:48:46 +0000304// verifySymbolTable - Verify that a function or module symbol table is ok
Chris Lattneracd3cae2002-03-15 20:25:09 +0000305//
Chris Lattner6e6026b2002-11-20 18:36:02 +0000306void Verifier::verifySymbolTable(SymbolTable &ST) {
Chris Lattneracd3cae2002-03-15 20:25:09 +0000307
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000308 // Loop over all of the values in all type planes in the symbol table.
Misha Brukmanfd939082005-04-21 23:48:37 +0000309 for (SymbolTable::plane_const_iterator PI = ST.plane_begin(),
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000310 PE = ST.plane_end(); PI != PE; ++PI)
311 for (SymbolTable::value_const_iterator VI = PI->second.begin(),
312 VE = PI->second.end(); VI != VE; ++VI) {
313 Value *V = VI->second;
Chris Lattneracd3cae2002-03-15 20:25:09 +0000314 // Check that there are no void typed values in the symbol table. Values
315 // with a void type cannot be put into symbol tables because they cannot
316 // have names!
317 Assert1(V->getType() != Type::VoidTy,
Reid Spenceraf90b0d2004-05-25 08:53:29 +0000318 "Values with void type are not allowed to have names!", V);
Chris Lattneracd3cae2002-03-15 20:25:09 +0000319 }
Chris Lattneracd3cae2002-03-15 20:25:09 +0000320}
321
Chris Lattnerd231fc32002-04-18 20:37:37 +0000322// visitFunction - Verify that a function is ok.
Chris Lattner44d5bd92002-02-20 17:55:43 +0000323//
Chris Lattner24e845f2002-06-25 15:56:27 +0000324void Verifier::visitFunction(Function &F) {
Chris Lattner37c121a2005-05-08 22:27:09 +0000325 // Check function arguments.
Chris Lattner24e845f2002-06-25 15:56:27 +0000326 const FunctionType *FT = F.getFunctionType();
327 unsigned NumArgs = F.getArgumentList().size();
Chris Lattnerea249242002-04-13 22:48:46 +0000328
Chris Lattner69da5cf2002-10-13 20:57:00 +0000329 Assert2(FT->getNumParams() == NumArgs,
Chris Lattnerea249242002-04-13 22:48:46 +0000330 "# formal arguments must match # of arguments for function type!",
Chris Lattner24e845f2002-06-25 15:56:27 +0000331 &F, FT);
Chris Lattnerc282f5a2003-11-21 22:32:23 +0000332 Assert1(F.getReturnType()->isFirstClassType() ||
333 F.getReturnType() == Type::VoidTy,
334 "Functions cannot return aggregate values!", &F);
Chris Lattnerea249242002-04-13 22:48:46 +0000335
Chris Lattner80105dd2006-05-19 21:25:17 +0000336 // Check that this function meets the restrictions on this calling convention.
337 switch (F.getCallingConv()) {
338 default:
339 break;
340 case CallingConv::C:
341 break;
342 case CallingConv::CSRet:
343 Assert1(FT->getReturnType() == Type::VoidTy &&
344 FT->getNumParams() > 0 && isa<PointerType>(FT->getParamType(0)),
345 "Invalid struct-return function!", &F);
346 break;
347 case CallingConv::Fast:
348 case CallingConv::Cold:
Anton Korobeynikovbcb97702006-09-17 20:25:45 +0000349 case CallingConv::X86_FastCall:
Chris Lattner80105dd2006-05-19 21:25:17 +0000350 Assert1(!F.isVarArg(),
351 "Varargs functions must have C calling conventions!", &F);
352 break;
353 }
354
Chris Lattnerea249242002-04-13 22:48:46 +0000355 // Check that the argument values match the function type for this function...
Chris Lattner69da5cf2002-10-13 20:57:00 +0000356 unsigned i = 0;
Chris Lattnere4d5c442005-03-15 04:54:21 +0000357 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I, ++i) {
Chris Lattner69da5cf2002-10-13 20:57:00 +0000358 Assert2(I->getType() == FT->getParamType(i),
359 "Argument value does not match function argument type!",
360 I, FT->getParamType(i));
Chris Lattner7c277b32004-06-03 06:38:43 +0000361 // Make sure no aggregates are passed by value.
Misha Brukmanfd939082005-04-21 23:48:37 +0000362 Assert1(I->getType()->isFirstClassType(),
Chris Lattner7c277b32004-06-03 06:38:43 +0000363 "Functions cannot take aggregates as arguments by value!", I);
364 }
Chris Lattnerea249242002-04-13 22:48:46 +0000365
Chris Lattner69da5cf2002-10-13 20:57:00 +0000366 if (!F.isExternal()) {
367 verifySymbolTable(F.getSymbolTable());
368
369 // Check the entry node
Chris Lattner02a3be02003-09-20 14:39:18 +0000370 BasicBlock *Entry = &F.getEntryBlock();
Chris Lattner69da5cf2002-10-13 20:57:00 +0000371 Assert1(pred_begin(Entry) == pred_end(Entry),
372 "Entry block to function must not have predecessors!", Entry);
373 }
Chris Lattner44d5bd92002-02-20 17:55:43 +0000374}
375
376
Chris Lattnerd231fc32002-04-18 20:37:37 +0000377// verifyBasicBlock - Verify that a basic block is well formed...
378//
Chris Lattner24e845f2002-06-25 15:56:27 +0000379void Verifier::visitBasicBlock(BasicBlock &BB) {
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000380 InstsInThisBlock.clear();
381
Alkis Evlogimenos4f4cf992004-12-04 02:30:42 +0000382 // Ensure that basic blocks have terminators!
383 Assert1(BB.getTerminator(), "Basic Block does not have terminator!", &BB);
384
Chris Lattnerbede31f2003-10-05 17:44:18 +0000385 // Check constraints that this basic block imposes on all of the PHI nodes in
386 // it.
387 if (isa<PHINode>(BB.front())) {
388 std::vector<BasicBlock*> Preds(pred_begin(&BB), pred_end(&BB));
389 std::sort(Preds.begin(), Preds.end());
Misha Brukmanfd939082005-04-21 23:48:37 +0000390 PHINode *PN;
Chris Lattnerc70a5092004-06-05 17:44:48 +0000391 for (BasicBlock::iterator I = BB.begin(); (PN = dyn_cast<PHINode>(I));++I) {
Chris Lattnerbede31f2003-10-05 17:44:18 +0000392
393 // Ensure that PHI nodes have at least one entry!
394 Assert1(PN->getNumIncomingValues() != 0,
395 "PHI nodes must have at least one entry. If the block is dead, "
396 "the PHI should be removed!", PN);
Brian Gaeke2fea9ad2004-05-17 21:15:18 +0000397 Assert1(PN->getNumIncomingValues() == Preds.size(),
398 "PHINode should have one entry for each predecessor of its "
399 "parent basic block!", PN);
Misha Brukmanfd939082005-04-21 23:48:37 +0000400
Chris Lattnerbede31f2003-10-05 17:44:18 +0000401 // Get and sort all incoming values in the PHI node...
402 std::vector<std::pair<BasicBlock*, Value*> > Values;
403 Values.reserve(PN->getNumIncomingValues());
404 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
405 Values.push_back(std::make_pair(PN->getIncomingBlock(i),
406 PN->getIncomingValue(i)));
407 std::sort(Values.begin(), Values.end());
Misha Brukmanfd939082005-04-21 23:48:37 +0000408
Chris Lattnerbede31f2003-10-05 17:44:18 +0000409 for (unsigned i = 0, e = Values.size(); i != e; ++i) {
410 // Check to make sure that if there is more than one entry for a
411 // particular basic block in this PHI node, that the incoming values are
412 // all identical.
413 //
414 Assert4(i == 0 || Values[i].first != Values[i-1].first ||
415 Values[i].second == Values[i-1].second,
416 "PHI node has multiple entries for the same basic block with "
417 "different incoming values!", PN, Values[i].first,
418 Values[i].second, Values[i-1].second);
Misha Brukmanfd939082005-04-21 23:48:37 +0000419
Chris Lattnerbede31f2003-10-05 17:44:18 +0000420 // Check to make sure that the predecessors and PHI node entries are
421 // matched up.
422 Assert3(Values[i].first == Preds[i],
423 "PHI node entries do not match predecessors!", PN,
Misha Brukmanfd939082005-04-21 23:48:37 +0000424 Values[i].first, Preds[i]);
Chris Lattnerbede31f2003-10-05 17:44:18 +0000425 }
426 }
427 }
Chris Lattner24e845f2002-06-25 15:56:27 +0000428}
Chris Lattneracd3cae2002-03-15 20:25:09 +0000429
Chris Lattner24e845f2002-06-25 15:56:27 +0000430void Verifier::visitTerminatorInst(TerminatorInst &I) {
431 // Ensure that terminators only exist at the end of the basic block.
432 Assert1(&I == I.getParent()->getTerminator(),
433 "Terminator found in the middle of a basic block!", I.getParent());
Chris Lattner3535c9b2002-07-18 00:13:42 +0000434 visitInstruction(I);
Chris Lattner24e845f2002-06-25 15:56:27 +0000435}
436
437void Verifier::visitReturnInst(ReturnInst &RI) {
438 Function *F = RI.getParent()->getParent();
439 if (RI.getNumOperands() == 0)
Alkis Evlogimenos8b42b432004-12-04 01:25:06 +0000440 Assert2(F->getReturnType() == Type::VoidTy,
441 "Found return instr that returns void in Function of non-void "
442 "return type!", &RI, F->getReturnType());
Chris Lattner24e845f2002-06-25 15:56:27 +0000443 else
444 Assert2(F->getReturnType() == RI.getOperand(0)->getType(),
445 "Function return type does not match operand "
446 "type of return inst!", &RI, F->getReturnType());
447
Misha Brukman5560c9d2003-08-18 14:43:39 +0000448 // Check to make sure that the return value has necessary properties for
Chris Lattner24e845f2002-06-25 15:56:27 +0000449 // terminators...
450 visitTerminatorInst(RI);
Chris Lattner44d5bd92002-02-20 17:55:43 +0000451}
452
Chris Lattner0f9e9d02004-05-21 16:47:21 +0000453void Verifier::visitSwitchInst(SwitchInst &SI) {
454 // Check to make sure that all of the constants in the switch instruction
455 // have the same type as the switched-on value.
456 const Type *SwitchTy = SI.getCondition()->getType();
457 for (unsigned i = 1, e = SI.getNumCases(); i != e; ++i)
458 Assert1(SI.getCaseValue(i)->getType() == SwitchTy,
459 "Switch constants must all be same type as switch value!", &SI);
460
461 visitTerminatorInst(SI);
462}
463
Chris Lattner230c1a72004-03-12 05:54:31 +0000464void Verifier::visitSelectInst(SelectInst &SI) {
465 Assert1(SI.getCondition()->getType() == Type::BoolTy,
466 "Select condition type must be bool!", &SI);
467 Assert1(SI.getTrueValue()->getType() == SI.getFalseValue()->getType(),
468 "Select values must have identical types!", &SI);
469 Assert1(SI.getTrueValue()->getType() == SI.getType(),
470 "Select values must have same type as select instruction!", &SI);
Chris Lattner0030e6c2004-09-29 21:19:28 +0000471 visitInstruction(SI);
Chris Lattner230c1a72004-03-12 05:54:31 +0000472}
473
474
Misha Brukmanab5c6002004-03-02 00:22:19 +0000475/// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of
476/// a pass, if any exist, it's an error.
477///
Chris Lattner627079d2002-11-21 16:54:22 +0000478void Verifier::visitUserOp1(Instruction &I) {
Chris Lattner536a9d52006-03-31 04:46:47 +0000479 Assert1(0, "User-defined operators should not live outside of a pass!", &I);
Chris Lattner627079d2002-11-21 16:54:22 +0000480}
Chris Lattnerd231fc32002-04-18 20:37:37 +0000481
Reid Spencer3da59db2006-11-27 01:05:10 +0000482void Verifier::visitTruncInst(TruncInst &I) {
483 // Get the source and destination types
484 const Type *SrcTy = I.getOperand(0)->getType();
485 const Type *DestTy = I.getType();
486
487 // Get the size of the types in bits, we'll need this later
488 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
489 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
490
491 Assert1(SrcTy->isIntegral(), "Trunc only operates on integer", &I);
492 Assert1(DestTy->isIntegral(),"Trunc only produces integral", &I);
493 Assert1(SrcBitSize > DestBitSize,"DestTy too big for Trunc", &I);
494
495 visitInstruction(I);
496}
497
498void Verifier::visitZExtInst(ZExtInst &I) {
499 // Get the source and destination types
500 const Type *SrcTy = I.getOperand(0)->getType();
501 const Type *DestTy = I.getType();
502
503 // Get the size of the types in bits, we'll need this later
504 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
505 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
506
507 Assert1(SrcTy->isIntegral(),"ZExt only operates on integral", &I);
508 Assert1(DestTy->isInteger(),"ZExt only produces an integer", &I);
509 Assert1(SrcBitSize < DestBitSize,"Type too small for ZExt", &I);
510
511 visitInstruction(I);
512}
513
514void Verifier::visitSExtInst(SExtInst &I) {
515 // Get the source and destination types
516 const Type *SrcTy = I.getOperand(0)->getType();
517 const Type *DestTy = I.getType();
518
519 // Get the size of the types in bits, we'll need this later
520 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
521 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
522
523 Assert1(SrcTy->isIntegral(),"SExt only operates on integral", &I);
524 Assert1(DestTy->isInteger(),"SExt only produces an integer", &I);
525 Assert1(SrcBitSize < DestBitSize,"Type too small for SExt", &I);
526
527 visitInstruction(I);
528}
529
530void Verifier::visitFPTruncInst(FPTruncInst &I) {
531 // Get the source and destination types
532 const Type *SrcTy = I.getOperand(0)->getType();
533 const Type *DestTy = I.getType();
534 // Get the size of the types in bits, we'll need this later
535 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
536 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
537
538 Assert1(SrcTy->isFloatingPoint(),"FPTrunc only operates on FP", &I);
539 Assert1(DestTy->isFloatingPoint(),"FPTrunc only produces an FP", &I);
540 Assert1(SrcBitSize > DestBitSize,"DestTy too big for FPTrunc", &I);
541
542 visitInstruction(I);
543}
544
545void Verifier::visitFPExtInst(FPExtInst &I) {
546 // Get the source and destination types
547 const Type *SrcTy = I.getOperand(0)->getType();
548 const Type *DestTy = I.getType();
549
550 // Get the size of the types in bits, we'll need this later
551 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
552 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
553
554 Assert1(SrcTy->isFloatingPoint(),"FPExt only operates on FP", &I);
555 Assert1(DestTy->isFloatingPoint(),"FPExt only produces an FP", &I);
556 Assert1(SrcBitSize < DestBitSize,"DestTy too small for FPExt", &I);
557
558 visitInstruction(I);
559}
560
561void Verifier::visitUIToFPInst(UIToFPInst &I) {
562 // Get the source and destination types
563 const Type *SrcTy = I.getOperand(0)->getType();
564 const Type *DestTy = I.getType();
565
566 Assert1(SrcTy->isIntegral(),"UInt2FP source must be integral", &I);
567 Assert1(DestTy->isFloatingPoint(),"UInt2FP result must be FP", &I);
568
569 visitInstruction(I);
570}
571
572void Verifier::visitSIToFPInst(SIToFPInst &I) {
573 // Get the source and destination types
574 const Type *SrcTy = I.getOperand(0)->getType();
575 const Type *DestTy = I.getType();
576
577 Assert1(SrcTy->isIntegral(),"SInt2FP source must be integral", &I);
578 Assert1(DestTy->isFloatingPoint(),"SInt2FP result must be FP", &I);
579
580 visitInstruction(I);
581}
582
583void Verifier::visitFPToUIInst(FPToUIInst &I) {
584 // Get the source and destination types
585 const Type *SrcTy = I.getOperand(0)->getType();
586 const Type *DestTy = I.getType();
587
588 Assert1(SrcTy->isFloatingPoint(),"FP2UInt source must be FP", &I);
589 Assert1(DestTy->isIntegral(),"FP2UInt result must be integral", &I);
590
591 visitInstruction(I);
592}
593
594void Verifier::visitFPToSIInst(FPToSIInst &I) {
595 // Get the source and destination types
596 const Type *SrcTy = I.getOperand(0)->getType();
597 const Type *DestTy = I.getType();
598
599 Assert1(SrcTy->isFloatingPoint(),"FPToSI source must be FP", &I);
600 Assert1(DestTy->isIntegral(),"FP2ToI result must be integral", &I);
601
602 visitInstruction(I);
603}
604
605void Verifier::visitPtrToIntInst(PtrToIntInst &I) {
606 // Get the source and destination types
607 const Type *SrcTy = I.getOperand(0)->getType();
608 const Type *DestTy = I.getType();
609
610 Assert1(isa<PointerType>(SrcTy), "PtrToInt source must be pointer", &I);
611 Assert1(DestTy->isIntegral(), "PtrToInt result must be integral", &I);
612
613 visitInstruction(I);
614}
615
616void Verifier::visitIntToPtrInst(IntToPtrInst &I) {
617 // Get the source and destination types
618 const Type *SrcTy = I.getOperand(0)->getType();
619 const Type *DestTy = I.getType();
620
621 Assert1(SrcTy->isIntegral(), "IntToPtr source must be an integral", &I);
622 Assert1(isa<PointerType>(DestTy), "IntToPtr result must be a pointer",&I);
623
624 visitInstruction(I);
625}
626
627void Verifier::visitBitCastInst(BitCastInst &I) {
628 // Get the source and destination types
629 const Type *SrcTy = I.getOperand(0)->getType();
630 const Type *DestTy = I.getType();
631
632 // Get the size of the types in bits, we'll need this later
633 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
634 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
635
636 // BitCast implies a no-op cast of type only. No bits change.
637 // However, you can't cast pointers to anything but pointers.
638 Assert1(isa<PointerType>(DestTy) == isa<PointerType>(DestTy),
639 "Bitcast requires both operands to be pointer or neither", &I);
640 Assert1(SrcBitSize == DestBitSize, "Bitcast requies types of same width", &I);
641
642 visitInstruction(I);
643}
644
Misha Brukmanab5c6002004-03-02 00:22:19 +0000645/// visitPHINode - Ensure that a PHI node is well formed.
646///
Chris Lattner24e845f2002-06-25 15:56:27 +0000647void Verifier::visitPHINode(PHINode &PN) {
648 // Ensure that the PHI nodes are all grouped together at the top of the block.
649 // This can be tested by checking whether the instruction before this is
Misha Brukman6b634522003-10-10 17:54:14 +0000650 // either nonexistent (because this is begin()) or is a PHI node. If not,
Chris Lattner24e845f2002-06-25 15:56:27 +0000651 // then there is some other instruction before a PHI.
Chris Lattnerbede31f2003-10-05 17:44:18 +0000652 Assert2(&PN.getParent()->front() == &PN || isa<PHINode>(PN.getPrev()),
Chris Lattner24e845f2002-06-25 15:56:27 +0000653 "PHI nodes not grouped at top of basic block!",
654 &PN, PN.getParent());
655
Chris Lattner579de712003-11-12 07:13:37 +0000656 // Check that all of the operands of the PHI node have the same type as the
657 // result.
658 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
659 Assert1(PN.getType() == PN.getIncomingValue(i)->getType(),
660 "PHI node operands are not the same type as the result!", &PN);
661
Chris Lattnerbede31f2003-10-05 17:44:18 +0000662 // All other PHI node constraints are checked in the visitBasicBlock method.
Chris Lattnerd231fc32002-04-18 20:37:37 +0000663
664 visitInstruction(PN);
665}
666
Chris Lattner24e845f2002-06-25 15:56:27 +0000667void Verifier::visitCallInst(CallInst &CI) {
668 Assert1(isa<PointerType>(CI.getOperand(0)->getType()),
669 "Called function must be a pointer!", &CI);
670 const PointerType *FPTy = cast<PointerType>(CI.getOperand(0)->getType());
Chris Lattnerefdd0a22002-04-18 22:11:52 +0000671 Assert1(isa<FunctionType>(FPTy->getElementType()),
Chris Lattner24e845f2002-06-25 15:56:27 +0000672 "Called function is not pointer to function type!", &CI);
Chris Lattner56732fb2002-05-08 19:49:50 +0000673
Chris Lattner24e845f2002-06-25 15:56:27 +0000674 const FunctionType *FTy = cast<FunctionType>(FPTy->getElementType());
Chris Lattner56732fb2002-05-08 19:49:50 +0000675
676 // Verify that the correct number of arguments are being passed
677 if (FTy->isVarArg())
Chris Lattner24e845f2002-06-25 15:56:27 +0000678 Assert1(CI.getNumOperands()-1 >= FTy->getNumParams(),
679 "Called function requires more parameters than were provided!",&CI);
Chris Lattner56732fb2002-05-08 19:49:50 +0000680 else
Chris Lattner24e845f2002-06-25 15:56:27 +0000681 Assert1(CI.getNumOperands()-1 == FTy->getNumParams(),
682 "Incorrect number of arguments passed to called function!", &CI);
Chris Lattner56732fb2002-05-08 19:49:50 +0000683
684 // Verify that all arguments to the call match the function type...
685 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
Chris Lattner2a116532004-02-24 22:06:07 +0000686 Assert3(CI.getOperand(i+1)->getType() == FTy->getParamType(i),
Chris Lattner56732fb2002-05-08 19:49:50 +0000687 "Call parameter type does not match function signature!",
Chris Lattner2a116532004-02-24 22:06:07 +0000688 CI.getOperand(i+1), FTy->getParamType(i), &CI);
Chris Lattner3535c9b2002-07-18 00:13:42 +0000689
Chris Lattnerdd035d12003-05-08 03:47:33 +0000690 if (Function *F = CI.getCalledFunction())
Brian Gaeked0fde302003-11-11 22:41:34 +0000691 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
Chris Lattnerdd035d12003-05-08 03:47:33 +0000692 visitIntrinsicFunctionCall(ID, CI);
693
Chris Lattner3535c9b2002-07-18 00:13:42 +0000694 visitInstruction(CI);
Chris Lattnerefdd0a22002-04-18 22:11:52 +0000695}
Chris Lattnerd231fc32002-04-18 20:37:37 +0000696
Misha Brukmanab5c6002004-03-02 00:22:19 +0000697/// visitBinaryOperator - Check that both arguments to the binary operator are
698/// of the same type!
699///
Chris Lattner24e845f2002-06-25 15:56:27 +0000700void Verifier::visitBinaryOperator(BinaryOperator &B) {
Chris Lattner1a143ae2002-09-09 20:26:04 +0000701 Assert1(B.getOperand(0)->getType() == B.getOperand(1)->getType(),
702 "Both operands to a binary operator are not of the same type!", &B);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000703
Chris Lattner1a143ae2002-09-09 20:26:04 +0000704 // Check that logical operators are only used with integral operands.
705 if (B.getOpcode() == Instruction::And || B.getOpcode() == Instruction::Or ||
706 B.getOpcode() == Instruction::Xor) {
Chris Lattnerb9d41002005-12-21 18:22:19 +0000707 Assert1(B.getType()->isIntegral() ||
708 (isa<PackedType>(B.getType()) &&
709 cast<PackedType>(B.getType())->getElementType()->isIntegral()),
Chris Lattner1a143ae2002-09-09 20:26:04 +0000710 "Logical operators only work with integral types!", &B);
711 Assert1(B.getType() == B.getOperand(0)->getType(),
712 "Logical operators must have same type for operands and result!",
713 &B);
714 } else if (isa<SetCondInst>(B)) {
715 // Check that setcc instructions return bool
716 Assert1(B.getType() == Type::BoolTy,
717 "setcc instructions must return boolean values!", &B);
718 } else {
719 // Arithmetic operators only work on integer or fp values
720 Assert1(B.getType() == B.getOperand(0)->getType(),
721 "Arithmetic operators must have same type for operands and result!",
722 &B);
Misha Brukmanfd939082005-04-21 23:48:37 +0000723 Assert1(B.getType()->isInteger() || B.getType()->isFloatingPoint() ||
Brian Gaeke715c90b2004-08-20 06:00:58 +0000724 isa<PackedType>(B.getType()),
725 "Arithmetic operators must have integer, fp, or packed type!", &B);
Chris Lattner1a143ae2002-09-09 20:26:04 +0000726 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000727
Chris Lattnerd231fc32002-04-18 20:37:37 +0000728 visitInstruction(B);
729}
730
Reid Spencer45fb3f32006-11-20 01:22:35 +0000731void Verifier::visitICmpInst(ICmpInst& IC) {
732 // Check that the operands are the same type
733 const Type* Op0Ty = IC.getOperand(0)->getType();
734 const Type* Op1Ty = IC.getOperand(1)->getType();
735 Assert1(Op0Ty == Op1Ty,
736 "Both operands to ICmp instruction are not of the same type!", &IC);
737 // Check that the operands are the right type
738 Assert1(Op0Ty->isIntegral() || Op0Ty->getTypeID() == Type::PointerTyID ||
739 (isa<PackedType>(Op0Ty) &&
740 cast<PackedType>(Op0Ty)->getElementType()->isIntegral()),
741 "Invalid operand types for ICmp instruction", &IC);
742 visitInstruction(IC);
743}
744
745void Verifier::visitFCmpInst(FCmpInst& FC) {
746 // Check that the operands are the same type
747 const Type* Op0Ty = FC.getOperand(0)->getType();
748 const Type* Op1Ty = FC.getOperand(1)->getType();
749 Assert1(Op0Ty == Op1Ty,
750 "Both operands to FCmp instruction are not of the same type!", &FC);
751 // Check that the operands are the right type
752 Assert1(Op0Ty->isFloatingPoint() || (isa<PackedType>(Op0Ty) &&
753 cast<PackedType>(Op0Ty)->getElementType()->isFloatingPoint()),
754 "Invalid operand types for FCmp instruction", &FC);
755 visitInstruction(FC);
756}
757
Chris Lattner1a143ae2002-09-09 20:26:04 +0000758void Verifier::visitShiftInst(ShiftInst &SI) {
759 Assert1(SI.getType()->isInteger(),
760 "Shift must return an integer result!", &SI);
761 Assert1(SI.getType() == SI.getOperand(0)->getType(),
762 "Shift return type must be same as first operand!", &SI);
763 Assert1(SI.getOperand(1)->getType() == Type::UByteTy,
764 "Second operand to shift must be ubyte type!", &SI);
765 visitInstruction(SI);
766}
767
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000768void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
Chris Lattner1cbe05b2006-04-08 04:07:52 +0000769 Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0),
770 EI.getOperand(1)),
771 "Invalid extractelement operands!", &EI);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000772 visitInstruction(EI);
773}
774
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000775void Verifier::visitInsertElementInst(InsertElementInst &IE) {
Chris Lattner1cbe05b2006-04-08 04:07:52 +0000776 Assert1(InsertElementInst::isValidOperands(IE.getOperand(0),
777 IE.getOperand(1),
778 IE.getOperand(2)),
779 "Invalid insertelement operands!", &IE);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000780 visitInstruction(IE);
781}
782
Chris Lattner00f10232006-04-08 01:18:18 +0000783void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
784 Assert1(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1),
785 SV.getOperand(2)),
786 "Invalid shufflevector operands!", &SV);
787 Assert1(SV.getType() == SV.getOperand(0)->getType(),
788 "Result of shufflevector must match first operand type!", &SV);
789
790 // Check to see if Mask is valid.
791 if (const ConstantPacked *MV = dyn_cast<ConstantPacked>(SV.getOperand(2))) {
792 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000793 Assert1(isa<ConstantInt>(MV->getOperand(i)) ||
Chris Lattner00f10232006-04-08 01:18:18 +0000794 isa<UndefValue>(MV->getOperand(i)),
795 "Invalid shufflevector shuffle mask!", &SV);
796 }
797 } else {
798 Assert1(isa<UndefValue>(SV.getOperand(2)) ||
799 isa<ConstantAggregateZero>(SV.getOperand(2)),
800 "Invalid shufflevector shuffle mask!", &SV);
801 }
802
803 visitInstruction(SV);
804}
805
Chris Lattner24e845f2002-06-25 15:56:27 +0000806void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) {
Chris Lattnercc63f1c2002-08-22 23:37:20 +0000807 const Type *ElTy =
808 GetElementPtrInst::getIndexedType(GEP.getOperand(0)->getType(),
809 std::vector<Value*>(GEP.idx_begin(), GEP.idx_end()), true);
Chris Lattner24e845f2002-06-25 15:56:27 +0000810 Assert1(ElTy, "Invalid indices for GEP pointer type!", &GEP);
811 Assert2(PointerType::get(ElTy) == GEP.getType(),
812 "GEP is not of right type for indices!", &GEP, ElTy);
Chris Lattnera00409e2002-04-24 19:12:21 +0000813 visitInstruction(GEP);
814}
815
Chris Lattner24e845f2002-06-25 15:56:27 +0000816void Verifier::visitLoadInst(LoadInst &LI) {
Chris Lattner24ea74e2002-08-22 22:49:05 +0000817 const Type *ElTy =
818 cast<PointerType>(LI.getOperand(0)->getType())->getElementType();
Chris Lattner24e845f2002-06-25 15:56:27 +0000819 Assert2(ElTy == LI.getType(),
Chris Lattner7334f2e2003-11-21 17:06:29 +0000820 "Load result type does not match pointer operand type!", &LI, ElTy);
Chris Lattnera00409e2002-04-24 19:12:21 +0000821 visitInstruction(LI);
822}
823
Chris Lattner24e845f2002-06-25 15:56:27 +0000824void Verifier::visitStoreInst(StoreInst &SI) {
Chris Lattner24ea74e2002-08-22 22:49:05 +0000825 const Type *ElTy =
826 cast<PointerType>(SI.getOperand(1)->getType())->getElementType();
Chris Lattner24e845f2002-06-25 15:56:27 +0000827 Assert2(ElTy == SI.getOperand(0)->getType(),
Chris Lattner7334f2e2003-11-21 17:06:29 +0000828 "Stored value type does not match pointer operand type!", &SI, ElTy);
Chris Lattnera00409e2002-04-24 19:12:21 +0000829 visitInstruction(SI);
830}
831
Chris Lattnerd231fc32002-04-18 20:37:37 +0000832
Misha Brukmanab5c6002004-03-02 00:22:19 +0000833/// verifyInstruction - Verify that an instruction is well formed.
834///
Chris Lattner24e845f2002-06-25 15:56:27 +0000835void Verifier::visitInstruction(Instruction &I) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000836 BasicBlock *BB = I.getParent();
Chris Lattner1a143ae2002-09-09 20:26:04 +0000837 Assert1(BB, "Instruction not embedded in basic block!", &I);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000838
Chris Lattnerbede31f2003-10-05 17:44:18 +0000839 if (!isa<PHINode>(I)) { // Check that non-phi nodes are not self referential
840 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
841 UI != UE; ++UI)
Chris Lattner08092532004-02-27 17:28:25 +0000842 Assert1(*UI != (User*)&I ||
Chris Lattner0b2192c2006-01-12 06:17:59 +0000843 !EF->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattnerbede31f2003-10-05 17:44:18 +0000844 "Only PHI nodes may reference their own value!", &I);
845 }
846
847 // Check that void typed values don't have names
848 Assert1(I.getType() != Type::VoidTy || !I.hasName(),
849 "Instruction has a name, but provides a void value!", &I);
850
Chris Lattner944cfaf2004-03-29 00:29:36 +0000851 // Check that the return value of the instruction is either void or a legal
852 // value type.
853 Assert1(I.getType() == Type::VoidTy || I.getType()->isFirstClassType(),
854 "Instruction returns a non-scalar type!", &I);
855
Chris Lattnerd231fc32002-04-18 20:37:37 +0000856 // Check that all uses of the instruction, if they are instructions
857 // themselves, actually have parent basic blocks. If the use is not an
858 // instruction, it is an error!
Chris Lattner24e845f2002-06-25 15:56:27 +0000859 for (User::use_iterator UI = I.use_begin(), UE = I.use_end();
Chris Lattnerd231fc32002-04-18 20:37:37 +0000860 UI != UE; ++UI) {
861 Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!",
862 *UI);
Chris Lattnerefdd0a22002-04-18 22:11:52 +0000863 Instruction *Used = cast<Instruction>(*UI);
864 Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
Chris Lattner24e845f2002-06-25 15:56:27 +0000865 " embeded in a basic block!", &I, Used);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000866 }
867
Chris Lattnerbede31f2003-10-05 17:44:18 +0000868 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Chris Lattneraab18202005-02-24 16:58:29 +0000869 Assert1(I.getOperand(i) != 0, "Instruction has null operand!", &I);
Chris Lattnerf4ea9212006-07-11 20:29:49 +0000870
871 // Check to make sure that only first-class-values are operands to
872 // instructions.
873 Assert1(I.getOperand(i)->getType()->isFirstClassType(),
874 "Instruction operands must be first-class values!", &I);
875
Chris Lattner59c35692004-03-14 03:23:54 +0000876 if (Function *F = dyn_cast<Function>(I.getOperand(i))) {
Chris Lattnerf4ea9212006-07-11 20:29:49 +0000877 // Check to make sure that the "address of" an intrinsic function is never
878 // taken.
Chris Lattnerdd035d12003-05-08 03:47:33 +0000879 Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)),
880 "Cannot take the address of an intrinsic!", &I);
Chris Lattner59c35692004-03-14 03:23:54 +0000881 } else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) {
882 Assert1(OpBB->getParent() == BB->getParent(),
883 "Referring to a basic block in another function!", &I);
884 } else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) {
885 Assert1(OpArg->getParent() == BB->getParent(),
886 "Referring to an argument in another function!", &I);
887 } else if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) {
Chris Lattner30768ac2004-01-14 04:25:59 +0000888 BasicBlock *OpBlock = Op->getParent();
Chris Lattner30768ac2004-01-14 04:25:59 +0000889
Chris Lattnerbede31f2003-10-05 17:44:18 +0000890 // Check that a definition dominates all of its uses.
Chris Lattnerbede31f2003-10-05 17:44:18 +0000891 if (!isa<PHINode>(I)) {
Chris Lattnerc9b07022004-01-14 05:42:52 +0000892 // Invoke results are only usable in the normal destination, not in the
893 // exceptional destination.
894 if (InvokeInst *II = dyn_cast<InvokeInst>(Op))
895 OpBlock = II->getNormalDest();
Chris Lattnere1f0cf12004-04-16 05:51:47 +0000896 else if (OpBlock == BB) {
897 // If they are in the same basic block, make sure that the definition
898 // comes before the use.
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000899 Assert2(InstsInThisBlock.count(Op) ||
Chris Lattner0b2192c2006-01-12 06:17:59 +0000900 !EF->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattnere1f0cf12004-04-16 05:51:47 +0000901 "Instruction does not dominate all uses!", Op, &I);
902 }
Chris Lattnerc9b07022004-01-14 05:42:52 +0000903
Chris Lattnerbede31f2003-10-05 17:44:18 +0000904 // Definition must dominate use unless use is unreachable!
Chris Lattner0b2192c2006-01-12 06:17:59 +0000905 Assert2(EF->dominates(OpBlock, BB) ||
906 !EF->dominates(&BB->getParent()->getEntryBlock(), BB),
Chris Lattnerbede31f2003-10-05 17:44:18 +0000907 "Instruction does not dominate all uses!", Op, &I);
908 } else {
909 // PHI nodes are more difficult than other nodes because they actually
910 // "use" the value in the predecessor basic blocks they correspond to.
911 BasicBlock *PredBB = cast<BasicBlock>(I.getOperand(i+1));
Chris Lattner0b2192c2006-01-12 06:17:59 +0000912 Assert2(EF->dominates(OpBlock, PredBB) ||
913 !EF->dominates(&BB->getParent()->getEntryBlock(), PredBB),
Chris Lattnerbede31f2003-10-05 17:44:18 +0000914 "Instruction does not dominate all uses!", Op, &I);
915 }
Chris Lattner3188b732006-01-26 00:08:45 +0000916 } else if (isa<InlineAsm>(I.getOperand(i))) {
917 Assert1(i == 0 && isa<CallInst>(I),
918 "Cannot take the address of an inline asm!", &I);
Chris Lattnerbede31f2003-10-05 17:44:18 +0000919 }
920 }
Chris Lattnera7b1c7e2004-09-29 20:07:45 +0000921 InstsInThisBlock.insert(&I);
Chris Lattnerdd035d12003-05-08 03:47:33 +0000922}
923
924/// visitIntrinsicFunction - Allow intrinsics to be verified in different ways.
Misha Brukmanab5c6002004-03-02 00:22:19 +0000925///
Brian Gaeked0fde302003-11-11 22:41:34 +0000926void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
Chris Lattnerdd035d12003-05-08 03:47:33 +0000927 Function *IF = CI.getCalledFunction();
Chris Lattnerdd035d12003-05-08 03:47:33 +0000928 Assert1(IF->isExternal(), "Intrinsic functions should never be defined!", IF);
Chris Lattner3b816b72006-03-09 22:06:04 +0000929
930#define GET_INTRINSIC_VERIFIER
931#include "llvm/Intrinsics.gen"
932#undef GET_INTRINSIC_VERIFIER
Chris Lattnerd231fc32002-04-18 20:37:37 +0000933}
934
Chris Lattner536a9d52006-03-31 04:46:47 +0000935/// VerifyIntrinsicPrototype - TableGen emits calls to this function into
936/// Intrinsics.gen. This implements a little state machine that verifies the
937/// prototype of intrinsics.
938void Verifier::VerifyIntrinsicPrototype(Function *F, ...) {
939 va_list VA;
940 va_start(VA, F);
941
942 const FunctionType *FTy = F->getFunctionType();
943
944 // Note that "arg#0" is the return type.
945 for (unsigned ArgNo = 0; 1; ++ArgNo) {
946 int TypeID = va_arg(VA, int);
947
948 if (TypeID == -1) {
949 if (ArgNo != FTy->getNumParams()+1)
950 CheckFailed("Intrinsic prototype has too many arguments!", F);
951 break;
952 }
953
954 if (ArgNo == FTy->getNumParams()+1) {
955 CheckFailed("Intrinsic prototype has too few arguments!", F);
956 break;
957 }
958
959 const Type *Ty;
960 if (ArgNo == 0)
961 Ty = FTy->getReturnType();
962 else
963 Ty = FTy->getParamType(ArgNo-1);
964
965 if (Ty->getTypeID() != TypeID) {
966 if (ArgNo == 0)
967 CheckFailed("Intrinsic prototype has incorrect result type!", F);
968 else
969 CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " is wrong!",F);
970 break;
971 }
972
973 // If this is a packed argument, verify the number and type of elements.
974 if (TypeID == Type::PackedTyID) {
975 const PackedType *PTy = cast<PackedType>(Ty);
976 if (va_arg(VA, int) != PTy->getElementType()->getTypeID()) {
977 CheckFailed("Intrinsic prototype has incorrect vector element type!",F);
978 break;
979 }
980
981 if ((unsigned)va_arg(VA, int) != PTy->getNumElements()) {
982 CheckFailed("Intrinsic prototype has incorrect number of "
983 "vector elements!",F);
984 break;
985 }
986 }
987 }
988
989 va_end(VA);
990}
991
Chris Lattnerd231fc32002-04-18 20:37:37 +0000992
993//===----------------------------------------------------------------------===//
994// Implement the public interfaces to this file...
995//===----------------------------------------------------------------------===//
996
Chris Lattnerfdc38c42004-04-02 15:45:08 +0000997FunctionPass *llvm::createVerifierPass(VerifierFailureAction action) {
998 return new Verifier(action);
Chris Lattnerd231fc32002-04-18 20:37:37 +0000999}
1000
Chris Lattner9ce231f2002-08-02 17:37:08 +00001001
Misha Brukmanfd939082005-04-21 23:48:37 +00001002// verifyFunction - Create
Chris Lattnerfdc38c42004-04-02 15:45:08 +00001003bool llvm::verifyFunction(const Function &f, VerifierFailureAction action) {
Chris Lattner2eff8592004-03-14 03:16:15 +00001004 Function &F = const_cast<Function&>(f);
Chris Lattner9ce231f2002-08-02 17:37:08 +00001005 assert(!F.isExternal() && "Cannot verify external functions");
Misha Brukmanfd939082005-04-21 23:48:37 +00001006
Chris Lattner2eff8592004-03-14 03:16:15 +00001007 FunctionPassManager FPM(new ExistingModuleProvider(F.getParent()));
Chris Lattnerfdc38c42004-04-02 15:45:08 +00001008 Verifier *V = new Verifier(action);
Chris Lattner2eff8592004-03-14 03:16:15 +00001009 FPM.add(V);
1010 FPM.run(F);
1011 return V->Broken;
Chris Lattner44d5bd92002-02-20 17:55:43 +00001012}
1013
Misha Brukmanab5c6002004-03-02 00:22:19 +00001014/// verifyModule - Check a module for errors, printing messages on stderr.
1015/// Return true if the module is corrupt.
1016///
Chris Lattner05ac92c2006-07-06 18:02:27 +00001017bool llvm::verifyModule(const Module &M, VerifierFailureAction action,
1018 std::string *ErrorInfo) {
Chris Lattner9ce231f2002-08-02 17:37:08 +00001019 PassManager PM;
Chris Lattnerfdc38c42004-04-02 15:45:08 +00001020 Verifier *V = new Verifier(action);
Chris Lattner9ce231f2002-08-02 17:37:08 +00001021 PM.add(V);
1022 PM.run((Module&)M);
Chris Lattner05ac92c2006-07-06 18:02:27 +00001023
1024 if (ErrorInfo && V->Broken)
1025 *ErrorInfo = V->msgs.str();
Chris Lattner9ce231f2002-08-02 17:37:08 +00001026 return V->Broken;
Chris Lattner00950542001-06-06 20:29:01 +00001027}
Reid Spenceraf90b0d2004-05-25 08:53:29 +00001028
1029// vim: sw=2