Change the Verifier to support returning first class aggregrates.
[oota-llvm.git] / lib / VMCore / Verifier.cpp
1 //===-- Verifier.cpp - Implement the Module Verifier -------------*- C++ -*-==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the function verifier interface, that can be used for some
11 // sanity checking of input to the system.
12 //
13 // Note that this does not provide full `Java style' security and verifications,
14 // instead it just tries to ensure that code is well-formed.
15 //
16 //  * Both of a binary operator's parameters are of the same type
17 //  * Verify that the indices of mem access instructions match other operands
18 //  * Verify that arithmetic and other things are only performed on first-class
19 //    types.  Verify that shifts & logicals only happen on integrals f.e.
20 //  * All of the constants in a switch statement are of the correct type
21 //  * The code is in valid SSA form
22 //  * It should be illegal to put a label into any other type (like a structure)
23 //    or to return one. [except constant arrays!]
24 //  * Only phi nodes can be self referential: 'add i32 %0, %0 ; <int>:0' is bad
25 //  * PHI nodes must have an entry for each predecessor, with no extras.
26 //  * PHI nodes must be the first thing in a basic block, all grouped together
27 //  * PHI nodes must have at least one entry
28 //  * All basic blocks should only end with terminator insts, not contain them
29 //  * The entry node to a function must not have predecessors
30 //  * All Instructions must be embedded into a basic block
31 //  * Functions cannot take a void-typed parameter
32 //  * Verify that a function's argument list agrees with it's declared type.
33 //  * It is illegal to specify a name for a void value.
34 //  * It is illegal to have a internal global value with no initializer
35 //  * It is illegal to have a ret instruction that returns a value that does not
36 //    agree with the function return value type.
37 //  * Function call argument types match the function prototype
38 //  * All other things that are tested by asserts spread about the code...
39 //
40 //===----------------------------------------------------------------------===//
41
42 #include "llvm/Analysis/Verifier.h"
43 #include "llvm/CallingConv.h"
44 #include "llvm/Constants.h"
45 #include "llvm/DerivedTypes.h"
46 #include "llvm/InlineAsm.h"
47 #include "llvm/IntrinsicInst.h"
48 #include "llvm/Module.h"
49 #include "llvm/ModuleProvider.h"
50 #include "llvm/Pass.h"
51 #include "llvm/PassManager.h"
52 #include "llvm/Analysis/Dominators.h"
53 #include "llvm/Assembly/Writer.h"
54 #include "llvm/CodeGen/ValueTypes.h"
55 #include "llvm/Support/CallSite.h"
56 #include "llvm/Support/CFG.h"
57 #include "llvm/Support/InstVisitor.h"
58 #include "llvm/Support/Streams.h"
59 #include "llvm/ADT/SmallPtrSet.h"
60 #include "llvm/ADT/SmallVector.h"
61 #include "llvm/ADT/StringExtras.h"
62 #include "llvm/ADT/STLExtras.h"
63 #include "llvm/Support/Compiler.h"
64 #include <algorithm>
65 #include <sstream>
66 #include <cstdarg>
67 using namespace llvm;
68
69 namespace {  // Anonymous namespace for class
70   struct VISIBILITY_HIDDEN PreVerifier : public FunctionPass {
71     static char ID; // Pass ID, replacement for typeid
72
73     PreVerifier() : FunctionPass((intptr_t)&ID) { }
74
75     // Check that the prerequisites for successful DominatorTree construction
76     // are satisfied.
77     bool runOnFunction(Function &F) {
78       bool Broken = false;
79
80       for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
81         if (I->empty() || !I->back().isTerminator()) {
82           cerr << "Basic Block does not have terminator!\n";
83           WriteAsOperand(*cerr, I, true);
84           cerr << "\n";
85           Broken = true;
86         }
87       }
88
89       if (Broken)
90         abort();
91
92       return false;
93     }
94   };
95 }
96
97 char PreVerifier::ID = 0;
98 static RegisterPass<PreVerifier>
99 PreVer("preverify", "Preliminary module verification");
100 static const PassInfo *const PreVerifyID = &PreVer;
101
102 namespace {
103   struct VISIBILITY_HIDDEN
104      Verifier : public FunctionPass, InstVisitor<Verifier> {
105     static char ID; // Pass ID, replacement for typeid
106     bool Broken;          // Is this module found to be broken?
107     bool RealPass;        // Are we not being run by a PassManager?
108     VerifierFailureAction action;
109                           // What to do if verification fails.
110     Module *Mod;          // Module we are verifying right now
111     DominatorTree *DT; // Dominator Tree, caution can be null!
112     std::stringstream msgs;  // A stringstream to collect messages
113
114     /// InstInThisBlock - when verifying a basic block, keep track of all of the
115     /// instructions we have seen so far.  This allows us to do efficient
116     /// dominance checks for the case when an instruction has an operand that is
117     /// an instruction in the same block.
118     SmallPtrSet<Instruction*, 16> InstsInThisBlock;
119
120     Verifier()
121       : FunctionPass((intptr_t)&ID), 
122       Broken(false), RealPass(true), action(AbortProcessAction),
123       DT(0), msgs( std::ios::app | std::ios::out ) {}
124     explicit Verifier(VerifierFailureAction ctn)
125       : FunctionPass((intptr_t)&ID), 
126       Broken(false), RealPass(true), action(ctn), DT(0),
127       msgs( std::ios::app | std::ios::out ) {}
128     explicit Verifier(bool AB)
129       : FunctionPass((intptr_t)&ID), 
130       Broken(false), RealPass(true),
131       action( AB ? AbortProcessAction : PrintMessageAction), DT(0),
132       msgs( std::ios::app | std::ios::out ) {}
133     explicit Verifier(DominatorTree &dt)
134       : FunctionPass((intptr_t)&ID), 
135       Broken(false), RealPass(false), action(PrintMessageAction),
136       DT(&dt), msgs( std::ios::app | std::ios::out ) {}
137
138
139     bool doInitialization(Module &M) {
140       Mod = &M;
141       verifyTypeSymbolTable(M.getTypeSymbolTable());
142
143       // If this is a real pass, in a pass manager, we must abort before
144       // returning back to the pass manager, or else the pass manager may try to
145       // run other passes on the broken module.
146       if (RealPass)
147         return abortIfBroken();
148       return false;
149     }
150
151     bool runOnFunction(Function &F) {
152       // Get dominator information if we are being run by PassManager
153       if (RealPass) DT = &getAnalysis<DominatorTree>();
154
155       Mod = F.getParent();
156
157       visit(F);
158       InstsInThisBlock.clear();
159
160       // If this is a real pass, in a pass manager, we must abort before
161       // returning back to the pass manager, or else the pass manager may try to
162       // run other passes on the broken module.
163       if (RealPass)
164         return abortIfBroken();
165
166       return false;
167     }
168
169     bool doFinalization(Module &M) {
170       // Scan through, checking all of the external function's linkage now...
171       for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
172         visitGlobalValue(*I);
173
174         // Check to make sure function prototypes are okay.
175         if (I->isDeclaration()) visitFunction(*I);
176       }
177
178       for (Module::global_iterator I = M.global_begin(), E = M.global_end(); 
179            I != E; ++I)
180         visitGlobalVariable(*I);
181
182       for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); 
183            I != E; ++I)
184         visitGlobalAlias(*I);
185
186       // If the module is broken, abort at this time.
187       return abortIfBroken();
188     }
189
190     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
191       AU.setPreservesAll();
192       AU.addRequiredID(PreVerifyID);
193       if (RealPass)
194         AU.addRequired<DominatorTree>();
195     }
196
197     /// abortIfBroken - If the module is broken and we are supposed to abort on
198     /// this condition, do so.
199     ///
200     bool abortIfBroken() {
201       if (Broken) {
202         msgs << "Broken module found, ";
203         switch (action) {
204           case AbortProcessAction:
205             msgs << "compilation aborted!\n";
206             cerr << msgs.str();
207             abort();
208           case PrintMessageAction:
209             msgs << "verification continues.\n";
210             cerr << msgs.str();
211             return false;
212           case ReturnStatusAction:
213             msgs << "compilation terminated.\n";
214             return Broken;
215         }
216       }
217       return false;
218     }
219
220
221     // Verification methods...
222     void verifyTypeSymbolTable(TypeSymbolTable &ST);
223     void visitGlobalValue(GlobalValue &GV);
224     void visitGlobalVariable(GlobalVariable &GV);
225     void visitGlobalAlias(GlobalAlias &GA);
226     void visitFunction(Function &F);
227     void visitBasicBlock(BasicBlock &BB);
228     void visitTruncInst(TruncInst &I);
229     void visitZExtInst(ZExtInst &I);
230     void visitSExtInst(SExtInst &I);
231     void visitFPTruncInst(FPTruncInst &I);
232     void visitFPExtInst(FPExtInst &I);
233     void visitFPToUIInst(FPToUIInst &I);
234     void visitFPToSIInst(FPToSIInst &I);
235     void visitUIToFPInst(UIToFPInst &I);
236     void visitSIToFPInst(SIToFPInst &I);
237     void visitIntToPtrInst(IntToPtrInst &I);
238     void visitPtrToIntInst(PtrToIntInst &I);
239     void visitBitCastInst(BitCastInst &I);
240     void visitPHINode(PHINode &PN);
241     void visitBinaryOperator(BinaryOperator &B);
242     void visitICmpInst(ICmpInst &IC);
243     void visitFCmpInst(FCmpInst &FC);
244     void visitExtractElementInst(ExtractElementInst &EI);
245     void visitInsertElementInst(InsertElementInst &EI);
246     void visitShuffleVectorInst(ShuffleVectorInst &EI);
247     void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); }
248     void visitCallInst(CallInst &CI);
249     void visitInvokeInst(InvokeInst &II);
250     void visitGetElementPtrInst(GetElementPtrInst &GEP);
251     void visitLoadInst(LoadInst &LI);
252     void visitStoreInst(StoreInst &SI);
253     void visitInstruction(Instruction &I);
254     void visitTerminatorInst(TerminatorInst &I);
255     void visitReturnInst(ReturnInst &RI);
256     void visitSwitchInst(SwitchInst &SI);
257     void visitSelectInst(SelectInst &SI);
258     void visitUserOp1(Instruction &I);
259     void visitUserOp2(Instruction &I) { visitUserOp1(I); }
260     void visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI);
261     void visitAllocationInst(AllocationInst &AI);
262     void visitGetResultInst(GetResultInst &GRI);
263
264     void VerifyCallSite(CallSite CS);
265     void VerifyIntrinsicPrototype(Intrinsic::ID ID, Function *F,
266                                   unsigned Count, ...);
267     void VerifyAttrs(ParameterAttributes Attrs, const Type *Ty,
268                      bool isReturnValue, const Value *V);
269     void VerifyFunctionAttrs(const FunctionType *FT, const PAListPtr &Attrs,
270                              const Value *V);
271
272     void WriteValue(const Value *V) {
273       if (!V) return;
274       if (isa<Instruction>(V)) {
275         msgs << *V;
276       } else {
277         WriteAsOperand(msgs, V, true, Mod);
278         msgs << "\n";
279       }
280     }
281
282     void WriteType(const Type* T ) {
283       if ( !T ) return;
284       WriteTypeSymbolic(msgs, T, Mod );
285     }
286
287
288     // CheckFailed - A check failed, so print out the condition and the message
289     // that failed.  This provides a nice place to put a breakpoint if you want
290     // to see why something is not correct.
291     void CheckFailed(const std::string &Message,
292                      const Value *V1 = 0, const Value *V2 = 0,
293                      const Value *V3 = 0, const Value *V4 = 0) {
294       msgs << Message << "\n";
295       WriteValue(V1);
296       WriteValue(V2);
297       WriteValue(V3);
298       WriteValue(V4);
299       Broken = true;
300     }
301
302     void CheckFailed( const std::string& Message, const Value* V1,
303                       const Type* T2, const Value* V3 = 0 ) {
304       msgs << Message << "\n";
305       WriteValue(V1);
306       WriteType(T2);
307       WriteValue(V3);
308       Broken = true;
309     }
310   };
311 } // End anonymous namespace
312
313 char Verifier::ID = 0;
314 static RegisterPass<Verifier> X("verify", "Module Verifier");
315
316 // Assert - We know that cond should be true, if not print an error message.
317 #define Assert(C, M) \
318   do { if (!(C)) { CheckFailed(M); return; } } while (0)
319 #define Assert1(C, M, V1) \
320   do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
321 #define Assert2(C, M, V1, V2) \
322   do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
323 #define Assert3(C, M, V1, V2, V3) \
324   do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
325 #define Assert4(C, M, V1, V2, V3, V4) \
326   do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
327
328
329 void Verifier::visitGlobalValue(GlobalValue &GV) {
330   Assert1(!GV.isDeclaration() ||
331           GV.hasExternalLinkage() ||
332           GV.hasDLLImportLinkage() ||
333           GV.hasExternalWeakLinkage() ||
334           (isa<GlobalAlias>(GV) &&
335            (GV.hasInternalLinkage() || GV.hasWeakLinkage())),
336   "Global is external, but doesn't have external or dllimport or weak linkage!",
337           &GV);
338
339   Assert1(!GV.hasDLLImportLinkage() || GV.isDeclaration(),
340           "Global is marked as dllimport, but not external", &GV);
341   
342   Assert1(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
343           "Only global variables can have appending linkage!", &GV);
344
345   if (GV.hasAppendingLinkage()) {
346     GlobalVariable &GVar = cast<GlobalVariable>(GV);
347     Assert1(isa<ArrayType>(GVar.getType()->getElementType()),
348             "Only global arrays can have appending linkage!", &GV);
349   }
350 }
351
352 void Verifier::visitGlobalVariable(GlobalVariable &GV) {
353   if (GV.hasInitializer()) {
354     Assert1(GV.getInitializer()->getType() == GV.getType()->getElementType(),
355             "Global variable initializer type does not match global "
356             "variable type!", &GV);
357   } else {
358     Assert1(GV.hasExternalLinkage() || GV.hasDLLImportLinkage() ||
359             GV.hasExternalWeakLinkage(),
360             "invalid linkage type for global declaration", &GV);
361   }
362
363   visitGlobalValue(GV);
364 }
365
366 void Verifier::visitGlobalAlias(GlobalAlias &GA) {
367   Assert1(!GA.getName().empty(),
368           "Alias name cannot be empty!", &GA);
369   Assert1(GA.hasExternalLinkage() || GA.hasInternalLinkage() ||
370           GA.hasWeakLinkage(),
371           "Alias should have external or external weak linkage!", &GA);
372   Assert1(GA.getAliasee(),
373           "Aliasee cannot be NULL!", &GA);
374   Assert1(GA.getType() == GA.getAliasee()->getType(),
375           "Alias and aliasee types should match!", &GA);
376
377   if (!isa<GlobalValue>(GA.getAliasee())) {
378     const ConstantExpr *CE = dyn_cast<ConstantExpr>(GA.getAliasee());
379     Assert1(CE && CE->getOpcode() == Instruction::BitCast &&
380             isa<GlobalValue>(CE->getOperand(0)),
381             "Aliasee should be either GlobalValue or bitcast of GlobalValue",
382             &GA);
383   }
384
385   const GlobalValue* Aliasee = GA.resolveAliasedGlobal();
386   Assert1(Aliasee,
387           "Aliasing chain should end with function or global variable", &GA);
388
389   visitGlobalValue(GA);
390 }
391
392 void Verifier::verifyTypeSymbolTable(TypeSymbolTable &ST) {
393 }
394
395 // VerifyAttrs - Check the given parameter attributes for an argument or return
396 // value of the specified type.  The value V is printed in error messages.
397 void Verifier::VerifyAttrs(ParameterAttributes Attrs, const Type *Ty, 
398                            bool isReturnValue, const Value *V) {
399   if (Attrs == ParamAttr::None)
400     return;
401
402   if (isReturnValue) {
403     ParameterAttributes RetI = Attrs & ParamAttr::ParameterOnly;
404     Assert1(!RetI, "Attribute " + ParamAttr::getAsString(RetI) +
405             "does not apply to return values!", V);
406   } else {
407     ParameterAttributes ParmI = Attrs & ParamAttr::ReturnOnly;
408     Assert1(!ParmI, "Attribute " + ParamAttr::getAsString(ParmI) +
409             "only applies to return values!", V);
410   }
411
412   for (unsigned i = 0;
413        i < array_lengthof(ParamAttr::MutuallyIncompatible); ++i) {
414     ParameterAttributes MutI = Attrs & ParamAttr::MutuallyIncompatible[i];
415     Assert1(!(MutI & (MutI - 1)), "Attributes " +
416             ParamAttr::getAsString(MutI) + "are incompatible!", V);
417   }
418
419   ParameterAttributes TypeI = Attrs & ParamAttr::typeIncompatible(Ty);
420   Assert1(!TypeI, "Wrong type for attribute " +
421           ParamAttr::getAsString(TypeI), V);
422 }
423
424 // VerifyFunctionAttrs - Check parameter attributes against a function type.
425 // The value V is printed in error messages.
426 void Verifier::VerifyFunctionAttrs(const FunctionType *FT,
427                                    const PAListPtr &Attrs,
428                                    const Value *V) {
429   if (Attrs.isEmpty())
430     return;
431
432   bool SawNest = false;
433
434   for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
435     const ParamAttrsWithIndex &Attr = Attrs.getSlot(i);
436
437     const Type *Ty;
438     if (Attr.Index == 0)
439       Ty = FT->getReturnType();
440     else if (Attr.Index-1 < FT->getNumParams())
441       Ty = FT->getParamType(Attr.Index-1);
442     else
443       break;  // VarArgs attributes, don't verify.
444     
445     VerifyAttrs(Attr.Attrs, Ty, Attr.Index == 0, V);
446
447     if (Attr.Attrs & ParamAttr::Nest) {
448       Assert1(!SawNest, "More than one parameter has attribute nest!", V);
449       SawNest = true;
450     }
451
452     if (Attr.Attrs & ParamAttr::StructRet)
453       Assert1(Attr.Index == 1, "Attribute sret not on first parameter!", V);
454   }
455 }
456
457 // visitFunction - Verify that a function is ok.
458 //
459 void Verifier::visitFunction(Function &F) {
460   // Check function arguments.
461   const FunctionType *FT = F.getFunctionType();
462   unsigned NumArgs = F.arg_size();
463
464   Assert2(FT->getNumParams() == NumArgs,
465           "# formal arguments must match # of arguments for function type!",
466           &F, FT);
467   Assert1(F.getReturnType()->isFirstClassType() ||
468           F.getReturnType() == Type::VoidTy || 
469           isa<StructType>(F.getReturnType()),
470           "Functions cannot return aggregate values!", &F);
471
472   Assert1(!F.hasStructRetAttr() || F.getReturnType() == Type::VoidTy,
473           "Invalid struct return type!", &F);
474
475   const PAListPtr &Attrs = F.getParamAttrs();
476
477   Assert1(Attrs.isEmpty() ||
478           Attrs.getSlot(Attrs.getNumSlots()-1).Index <= FT->getNumParams(),
479           "Attributes after last parameter!", &F);
480
481   // Check function attributes.
482   VerifyFunctionAttrs(FT, Attrs, &F);
483
484   // Check that this function meets the restrictions on this calling convention.
485   switch (F.getCallingConv()) {
486   default:
487     break;
488   case CallingConv::C:
489     break;
490   case CallingConv::Fast:
491   case CallingConv::Cold:
492   case CallingConv::X86_FastCall:
493     Assert1(!F.isVarArg(),
494             "Varargs functions must have C calling conventions!", &F);
495     break;
496   }
497   
498   // Check that the argument values match the function type for this function...
499   unsigned i = 0;
500   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
501        I != E; ++I, ++i) {
502     Assert2(I->getType() == FT->getParamType(i),
503             "Argument value does not match function argument type!",
504             I, FT->getParamType(i));
505     // Make sure no aggregates are passed by value.
506     Assert1(I->getType()->isFirstClassType(),
507             "Functions cannot take aggregates as arguments by value!", I);
508    }
509
510   if (F.isDeclaration()) {
511     Assert1(F.hasExternalLinkage() || F.hasDLLImportLinkage() ||
512             F.hasExternalWeakLinkage(),
513             "invalid linkage type for function declaration", &F);
514   } else {
515     // Verify that this function (which has a body) is not named "llvm.*".  It
516     // is not legal to define intrinsics.
517     if (F.getName().size() >= 5)
518       Assert1(F.getName().substr(0, 5) != "llvm.",
519               "llvm intrinsics cannot be defined!", &F);
520     
521     // Check the entry node
522     BasicBlock *Entry = &F.getEntryBlock();
523     Assert1(pred_begin(Entry) == pred_end(Entry),
524             "Entry block to function must not have predecessors!", Entry);
525   }
526 }
527
528
529 // verifyBasicBlock - Verify that a basic block is well formed...
530 //
531 void Verifier::visitBasicBlock(BasicBlock &BB) {
532   InstsInThisBlock.clear();
533
534   // Ensure that basic blocks have terminators!
535   Assert1(BB.getTerminator(), "Basic Block does not have terminator!", &BB);
536
537   // Check constraints that this basic block imposes on all of the PHI nodes in
538   // it.
539   if (isa<PHINode>(BB.front())) {
540     SmallVector<BasicBlock*, 8> Preds(pred_begin(&BB), pred_end(&BB));
541     SmallVector<std::pair<BasicBlock*, Value*>, 8> Values;
542     std::sort(Preds.begin(), Preds.end());
543     PHINode *PN;
544     for (BasicBlock::iterator I = BB.begin(); (PN = dyn_cast<PHINode>(I));++I) {
545
546       // Ensure that PHI nodes have at least one entry!
547       Assert1(PN->getNumIncomingValues() != 0,
548               "PHI nodes must have at least one entry.  If the block is dead, "
549               "the PHI should be removed!", PN);
550       Assert1(PN->getNumIncomingValues() == Preds.size(),
551               "PHINode should have one entry for each predecessor of its "
552               "parent basic block!", PN);
553
554       // Get and sort all incoming values in the PHI node...
555       Values.clear();
556       Values.reserve(PN->getNumIncomingValues());
557       for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
558         Values.push_back(std::make_pair(PN->getIncomingBlock(i),
559                                         PN->getIncomingValue(i)));
560       std::sort(Values.begin(), Values.end());
561
562       for (unsigned i = 0, e = Values.size(); i != e; ++i) {
563         // Check to make sure that if there is more than one entry for a
564         // particular basic block in this PHI node, that the incoming values are
565         // all identical.
566         //
567         Assert4(i == 0 || Values[i].first  != Values[i-1].first ||
568                 Values[i].second == Values[i-1].second,
569                 "PHI node has multiple entries for the same basic block with "
570                 "different incoming values!", PN, Values[i].first,
571                 Values[i].second, Values[i-1].second);
572
573         // Check to make sure that the predecessors and PHI node entries are
574         // matched up.
575         Assert3(Values[i].first == Preds[i],
576                 "PHI node entries do not match predecessors!", PN,
577                 Values[i].first, Preds[i]);
578       }
579     }
580   }
581 }
582
583 void Verifier::visitTerminatorInst(TerminatorInst &I) {
584   // Ensure that terminators only exist at the end of the basic block.
585   Assert1(&I == I.getParent()->getTerminator(),
586           "Terminator found in the middle of a basic block!", I.getParent());
587   visitInstruction(I);
588 }
589
590 void Verifier::visitReturnInst(ReturnInst &RI) {
591   Function *F = RI.getParent()->getParent();
592   unsigned N = RI.getNumOperands();
593   if (F->getReturnType() == Type::VoidTy) 
594     Assert2(N == 0,
595             "Found return instr that returns void in Function of non-void "
596             "return type!", &RI, F->getReturnType());
597   else if (N > 1) {
598     const StructType *STy = dyn_cast<StructType>(F->getReturnType());
599     Assert2(STy, "Return instr with multiple values, but return type is not "
600                  "a struct", &RI, F->getReturnType());
601     Assert2(STy->getNumElements() == N,
602             "Incorrect number of return values in ret instruction!",
603             &RI, F->getReturnType());
604     for (unsigned i = 0; i != N; ++i)
605       Assert2(STy->getElementType(i) == RI.getOperand(i)->getType(),
606               "Function return type does not match operand "
607               "type of return inst!", &RI, F->getReturnType());
608   } else {
609     Assert2(N == 1 && F->getReturnType() == RI.getOperand(0)->getType(),
610             "Function return type does not match operand "
611             "type of return inst!", &RI, F->getReturnType());
612   }
613   
614   // Check to make sure that the return value has necessary properties for
615   // terminators...
616   visitTerminatorInst(RI);
617 }
618
619 void Verifier::visitSwitchInst(SwitchInst &SI) {
620   // Check to make sure that all of the constants in the switch instruction
621   // have the same type as the switched-on value.
622   const Type *SwitchTy = SI.getCondition()->getType();
623   for (unsigned i = 1, e = SI.getNumCases(); i != e; ++i)
624     Assert1(SI.getCaseValue(i)->getType() == SwitchTy,
625             "Switch constants must all be same type as switch value!", &SI);
626
627   visitTerminatorInst(SI);
628 }
629
630 void Verifier::visitSelectInst(SelectInst &SI) {
631   Assert1(SI.getCondition()->getType() == Type::Int1Ty,
632           "Select condition type must be bool!", &SI);
633   Assert1(SI.getTrueValue()->getType() == SI.getFalseValue()->getType(),
634           "Select values must have identical types!", &SI);
635   Assert1(SI.getTrueValue()->getType() == SI.getType(),
636           "Select values must have same type as select instruction!", &SI);
637   visitInstruction(SI);
638 }
639
640
641 /// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of
642 /// a pass, if any exist, it's an error.
643 ///
644 void Verifier::visitUserOp1(Instruction &I) {
645   Assert1(0, "User-defined operators should not live outside of a pass!", &I);
646 }
647
648 void Verifier::visitTruncInst(TruncInst &I) {
649   // Get the source and destination types
650   const Type *SrcTy = I.getOperand(0)->getType();
651   const Type *DestTy = I.getType();
652
653   // Get the size of the types in bits, we'll need this later
654   unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
655   unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
656
657   Assert1(SrcTy->isInteger(), "Trunc only operates on integer", &I);
658   Assert1(DestTy->isInteger(), "Trunc only produces integer", &I);
659   Assert1(SrcBitSize > DestBitSize,"DestTy too big for Trunc", &I);
660
661   visitInstruction(I);
662 }
663
664 void Verifier::visitZExtInst(ZExtInst &I) {
665   // Get the source and destination types
666   const Type *SrcTy = I.getOperand(0)->getType();
667   const Type *DestTy = I.getType();
668
669   // Get the size of the types in bits, we'll need this later
670   Assert1(SrcTy->isInteger(), "ZExt only operates on integer", &I);
671   Assert1(DestTy->isInteger(), "ZExt only produces an integer", &I);
672   unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
673   unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
674
675   Assert1(SrcBitSize < DestBitSize,"Type too small for ZExt", &I);
676
677   visitInstruction(I);
678 }
679
680 void Verifier::visitSExtInst(SExtInst &I) {
681   // Get the source and destination types
682   const Type *SrcTy = I.getOperand(0)->getType();
683   const Type *DestTy = I.getType();
684
685   // Get the size of the types in bits, we'll need this later
686   unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
687   unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
688
689   Assert1(SrcTy->isInteger(), "SExt only operates on integer", &I);
690   Assert1(DestTy->isInteger(), "SExt only produces an integer", &I);
691   Assert1(SrcBitSize < DestBitSize,"Type too small for SExt", &I);
692
693   visitInstruction(I);
694 }
695
696 void Verifier::visitFPTruncInst(FPTruncInst &I) {
697   // Get the source and destination types
698   const Type *SrcTy = I.getOperand(0)->getType();
699   const Type *DestTy = I.getType();
700   // Get the size of the types in bits, we'll need this later
701   unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
702   unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
703
704   Assert1(SrcTy->isFloatingPoint(),"FPTrunc only operates on FP", &I);
705   Assert1(DestTy->isFloatingPoint(),"FPTrunc only produces an FP", &I);
706   Assert1(SrcBitSize > DestBitSize,"DestTy too big for FPTrunc", &I);
707
708   visitInstruction(I);
709 }
710
711 void Verifier::visitFPExtInst(FPExtInst &I) {
712   // Get the source and destination types
713   const Type *SrcTy = I.getOperand(0)->getType();
714   const Type *DestTy = I.getType();
715
716   // Get the size of the types in bits, we'll need this later
717   unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
718   unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
719
720   Assert1(SrcTy->isFloatingPoint(),"FPExt only operates on FP", &I);
721   Assert1(DestTy->isFloatingPoint(),"FPExt only produces an FP", &I);
722   Assert1(SrcBitSize < DestBitSize,"DestTy too small for FPExt", &I);
723
724   visitInstruction(I);
725 }
726
727 void Verifier::visitUIToFPInst(UIToFPInst &I) {
728   // Get the source and destination types
729   const Type *SrcTy = I.getOperand(0)->getType();
730   const Type *DestTy = I.getType();
731
732   bool SrcVec = isa<VectorType>(SrcTy);
733   bool DstVec = isa<VectorType>(DestTy);
734
735   Assert1(SrcVec == DstVec,
736           "UIToFP source and dest must both be vector or scalar", &I);
737   Assert1(SrcTy->isIntOrIntVector(),
738           "UIToFP source must be integer or integer vector", &I);
739   Assert1(DestTy->isFPOrFPVector(),
740           "UIToFP result must be FP or FP vector", &I);
741
742   if (SrcVec && DstVec)
743     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
744             cast<VectorType>(DestTy)->getNumElements(),
745             "UIToFP source and dest vector length mismatch", &I);
746
747   visitInstruction(I);
748 }
749
750 void Verifier::visitSIToFPInst(SIToFPInst &I) {
751   // Get the source and destination types
752   const Type *SrcTy = I.getOperand(0)->getType();
753   const Type *DestTy = I.getType();
754
755   bool SrcVec = SrcTy->getTypeID() == Type::VectorTyID;
756   bool DstVec = DestTy->getTypeID() == Type::VectorTyID;
757
758   Assert1(SrcVec == DstVec,
759           "SIToFP source and dest must both be vector or scalar", &I);
760   Assert1(SrcTy->isIntOrIntVector(),
761           "SIToFP source must be integer or integer vector", &I);
762   Assert1(DestTy->isFPOrFPVector(),
763           "SIToFP result must be FP or FP vector", &I);
764
765   if (SrcVec && DstVec)
766     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
767             cast<VectorType>(DestTy)->getNumElements(),
768             "SIToFP source and dest vector length mismatch", &I);
769
770   visitInstruction(I);
771 }
772
773 void Verifier::visitFPToUIInst(FPToUIInst &I) {
774   // Get the source and destination types
775   const Type *SrcTy = I.getOperand(0)->getType();
776   const Type *DestTy = I.getType();
777
778   bool SrcVec = isa<VectorType>(SrcTy);
779   bool DstVec = isa<VectorType>(DestTy);
780
781   Assert1(SrcVec == DstVec,
782           "FPToUI source and dest must both be vector or scalar", &I);
783   Assert1(SrcTy->isFPOrFPVector(), "FPToUI source must be FP or FP vector", &I);
784   Assert1(DestTy->isIntOrIntVector(),
785           "FPToUI result must be integer or integer vector", &I);
786
787   if (SrcVec && DstVec)
788     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
789             cast<VectorType>(DestTy)->getNumElements(),
790             "FPToUI source and dest vector length mismatch", &I);
791
792   visitInstruction(I);
793 }
794
795 void Verifier::visitFPToSIInst(FPToSIInst &I) {
796   // Get the source and destination types
797   const Type *SrcTy = I.getOperand(0)->getType();
798   const Type *DestTy = I.getType();
799
800   bool SrcVec = isa<VectorType>(SrcTy);
801   bool DstVec = isa<VectorType>(DestTy);
802
803   Assert1(SrcVec == DstVec,
804           "FPToSI source and dest must both be vector or scalar", &I);
805   Assert1(SrcTy->isFPOrFPVector(),
806           "FPToSI source must be FP or FP vector", &I);
807   Assert1(DestTy->isIntOrIntVector(),
808           "FPToSI result must be integer or integer vector", &I);
809
810   if (SrcVec && DstVec)
811     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
812             cast<VectorType>(DestTy)->getNumElements(),
813             "FPToSI source and dest vector length mismatch", &I);
814
815   visitInstruction(I);
816 }
817
818 void Verifier::visitPtrToIntInst(PtrToIntInst &I) {
819   // Get the source and destination types
820   const Type *SrcTy = I.getOperand(0)->getType();
821   const Type *DestTy = I.getType();
822
823   Assert1(isa<PointerType>(SrcTy), "PtrToInt source must be pointer", &I);
824   Assert1(DestTy->isInteger(), "PtrToInt result must be integral", &I);
825
826   visitInstruction(I);
827 }
828
829 void Verifier::visitIntToPtrInst(IntToPtrInst &I) {
830   // Get the source and destination types
831   const Type *SrcTy = I.getOperand(0)->getType();
832   const Type *DestTy = I.getType();
833
834   Assert1(SrcTy->isInteger(), "IntToPtr source must be an integral", &I);
835   Assert1(isa<PointerType>(DestTy), "IntToPtr result must be a pointer",&I);
836
837   visitInstruction(I);
838 }
839
840 void Verifier::visitBitCastInst(BitCastInst &I) {
841   // Get the source and destination types
842   const Type *SrcTy = I.getOperand(0)->getType();
843   const Type *DestTy = I.getType();
844
845   // Get the size of the types in bits, we'll need this later
846   unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
847   unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
848
849   // BitCast implies a no-op cast of type only. No bits change.
850   // However, you can't cast pointers to anything but pointers.
851   Assert1(isa<PointerType>(DestTy) == isa<PointerType>(DestTy),
852           "Bitcast requires both operands to be pointer or neither", &I);
853   Assert1(SrcBitSize == DestBitSize, "Bitcast requies types of same width", &I);
854
855   visitInstruction(I);
856 }
857
858 /// visitPHINode - Ensure that a PHI node is well formed.
859 ///
860 void Verifier::visitPHINode(PHINode &PN) {
861   // Ensure that the PHI nodes are all grouped together at the top of the block.
862   // This can be tested by checking whether the instruction before this is
863   // either nonexistent (because this is begin()) or is a PHI node.  If not,
864   // then there is some other instruction before a PHI.
865   Assert2(&PN == &PN.getParent()->front() || 
866           isa<PHINode>(--BasicBlock::iterator(&PN)),
867           "PHI nodes not grouped at top of basic block!",
868           &PN, PN.getParent());
869
870   // Check that all of the operands of the PHI node have the same type as the
871   // result.
872   for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
873     Assert1(PN.getType() == PN.getIncomingValue(i)->getType(),
874             "PHI node operands are not the same type as the result!", &PN);
875
876   // All other PHI node constraints are checked in the visitBasicBlock method.
877
878   visitInstruction(PN);
879 }
880
881 void Verifier::VerifyCallSite(CallSite CS) {
882   Instruction *I = CS.getInstruction();
883
884   Assert1(isa<PointerType>(CS.getCalledValue()->getType()),
885           "Called function must be a pointer!", I);
886   const PointerType *FPTy = cast<PointerType>(CS.getCalledValue()->getType());
887   Assert1(isa<FunctionType>(FPTy->getElementType()),
888           "Called function is not pointer to function type!", I);
889
890   const FunctionType *FTy = cast<FunctionType>(FPTy->getElementType());
891
892   // Verify that the correct number of arguments are being passed
893   if (FTy->isVarArg())
894     Assert1(CS.arg_size() >= FTy->getNumParams(),
895             "Called function requires more parameters than were provided!",I);
896   else
897     Assert1(CS.arg_size() == FTy->getNumParams(),
898             "Incorrect number of arguments passed to called function!", I);
899
900   // Verify that all arguments to the call match the function type...
901   for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
902     Assert3(CS.getArgument(i)->getType() == FTy->getParamType(i),
903             "Call parameter type does not match function signature!",
904             CS.getArgument(i), FTy->getParamType(i), I);
905
906   const PAListPtr &Attrs = CS.getParamAttrs();
907
908   Assert1(Attrs.isEmpty() ||
909           Attrs.getSlot(Attrs.getNumSlots()-1).Index <= CS.arg_size(),
910           "Attributes after last parameter!", I);
911
912   // Verify call attributes.
913   VerifyFunctionAttrs(FTy, Attrs, I);
914
915   if (FTy->isVarArg())
916     // Check attributes on the varargs part.
917     for (unsigned Idx = 1 + FTy->getNumParams(); Idx <= CS.arg_size(); ++Idx) {
918       ParameterAttributes Attr = Attrs.getParamAttrs(Idx);
919
920       VerifyAttrs(Attr, CS.getArgument(Idx-1)->getType(), false, I);
921
922       ParameterAttributes VArgI = Attr & ParamAttr::VarArgsIncompatible;
923       Assert1(!VArgI, "Attribute " + ParamAttr::getAsString(VArgI) +
924               "cannot be used for vararg call arguments!", I);
925     }
926
927   visitInstruction(*I);
928 }
929
930 void Verifier::visitCallInst(CallInst &CI) {
931   VerifyCallSite(&CI);
932
933   if (Function *F = CI.getCalledFunction()) {
934     if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
935       visitIntrinsicFunctionCall(ID, CI);
936   }
937 }
938
939 void Verifier::visitInvokeInst(InvokeInst &II) {
940   VerifyCallSite(&II);
941 }
942
943 /// visitBinaryOperator - Check that both arguments to the binary operator are
944 /// of the same type!
945 ///
946 void Verifier::visitBinaryOperator(BinaryOperator &B) {
947   Assert1(B.getOperand(0)->getType() == B.getOperand(1)->getType(),
948           "Both operands to a binary operator are not of the same type!", &B);
949
950   switch (B.getOpcode()) {
951   // Check that logical operators are only used with integral operands.
952   case Instruction::And:
953   case Instruction::Or:
954   case Instruction::Xor:
955     Assert1(B.getType()->isInteger() ||
956             (isa<VectorType>(B.getType()) && 
957              cast<VectorType>(B.getType())->getElementType()->isInteger()),
958             "Logical operators only work with integral types!", &B);
959     Assert1(B.getType() == B.getOperand(0)->getType(),
960             "Logical operators must have same type for operands and result!",
961             &B);
962     break;
963   case Instruction::Shl:
964   case Instruction::LShr:
965   case Instruction::AShr:
966     Assert1(B.getType()->isInteger(),
967             "Shift must return an integer result!", &B);
968     Assert1(B.getType() == B.getOperand(0)->getType(),
969             "Shift return type must be same as operands!", &B);
970     /* FALL THROUGH */
971   default:
972     // Arithmetic operators only work on integer or fp values
973     Assert1(B.getType() == B.getOperand(0)->getType(),
974             "Arithmetic operators must have same type for operands and result!",
975             &B);
976     Assert1(B.getType()->isInteger() || B.getType()->isFloatingPoint() ||
977             isa<VectorType>(B.getType()),
978             "Arithmetic operators must have integer, fp, or vector type!", &B);
979     break;
980   }
981
982   visitInstruction(B);
983 }
984
985 void Verifier::visitICmpInst(ICmpInst& IC) {
986   // Check that the operands are the same type
987   const Type* Op0Ty = IC.getOperand(0)->getType();
988   const Type* Op1Ty = IC.getOperand(1)->getType();
989   Assert1(Op0Ty == Op1Ty,
990           "Both operands to ICmp instruction are not of the same type!", &IC);
991   // Check that the operands are the right type
992   Assert1(Op0Ty->isInteger() || isa<PointerType>(Op0Ty),
993           "Invalid operand types for ICmp instruction", &IC);
994   visitInstruction(IC);
995 }
996
997 void Verifier::visitFCmpInst(FCmpInst& FC) {
998   // Check that the operands are the same type
999   const Type* Op0Ty = FC.getOperand(0)->getType();
1000   const Type* Op1Ty = FC.getOperand(1)->getType();
1001   Assert1(Op0Ty == Op1Ty,
1002           "Both operands to FCmp instruction are not of the same type!", &FC);
1003   // Check that the operands are the right type
1004   Assert1(Op0Ty->isFloatingPoint(),
1005           "Invalid operand types for FCmp instruction", &FC);
1006   visitInstruction(FC);
1007 }
1008
1009 void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
1010   Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0),
1011                                               EI.getOperand(1)),
1012           "Invalid extractelement operands!", &EI);
1013   visitInstruction(EI);
1014 }
1015
1016 void Verifier::visitInsertElementInst(InsertElementInst &IE) {
1017   Assert1(InsertElementInst::isValidOperands(IE.getOperand(0),
1018                                              IE.getOperand(1),
1019                                              IE.getOperand(2)),
1020           "Invalid insertelement operands!", &IE);
1021   visitInstruction(IE);
1022 }
1023
1024 void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
1025   Assert1(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1),
1026                                              SV.getOperand(2)),
1027           "Invalid shufflevector operands!", &SV);
1028   Assert1(SV.getType() == SV.getOperand(0)->getType(),
1029           "Result of shufflevector must match first operand type!", &SV);
1030   
1031   // Check to see if Mask is valid.
1032   if (const ConstantVector *MV = dyn_cast<ConstantVector>(SV.getOperand(2))) {
1033     for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
1034       Assert1(isa<ConstantInt>(MV->getOperand(i)) ||
1035               isa<UndefValue>(MV->getOperand(i)),
1036               "Invalid shufflevector shuffle mask!", &SV);
1037     }
1038   } else {
1039     Assert1(isa<UndefValue>(SV.getOperand(2)) || 
1040             isa<ConstantAggregateZero>(SV.getOperand(2)),
1041             "Invalid shufflevector shuffle mask!", &SV);
1042   }
1043   
1044   visitInstruction(SV);
1045 }
1046
1047 void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) {
1048   SmallVector<Value*, 16> Idxs(GEP.idx_begin(), GEP.idx_end());
1049   const Type *ElTy =
1050     GetElementPtrInst::getIndexedType(GEP.getOperand(0)->getType(),
1051                                       Idxs.begin(), Idxs.end());
1052   Assert1(ElTy, "Invalid indices for GEP pointer type!", &GEP);
1053   Assert2(isa<PointerType>(GEP.getType()) &&
1054           cast<PointerType>(GEP.getType())->getElementType() == ElTy,
1055           "GEP is not of right type for indices!", &GEP, ElTy);
1056   visitInstruction(GEP);
1057 }
1058
1059 void Verifier::visitLoadInst(LoadInst &LI) {
1060   const Type *ElTy =
1061     cast<PointerType>(LI.getOperand(0)->getType())->getElementType();
1062   Assert2(ElTy == LI.getType(),
1063           "Load result type does not match pointer operand type!", &LI, ElTy);
1064   visitInstruction(LI);
1065 }
1066
1067 void Verifier::visitStoreInst(StoreInst &SI) {
1068   const Type *ElTy =
1069     cast<PointerType>(SI.getOperand(1)->getType())->getElementType();
1070   Assert2(ElTy == SI.getOperand(0)->getType(),
1071           "Stored value type does not match pointer operand type!", &SI, ElTy);
1072   visitInstruction(SI);
1073 }
1074
1075 void Verifier::visitAllocationInst(AllocationInst &AI) {
1076   const PointerType *PTy = AI.getType();
1077   Assert1(PTy->getAddressSpace() == 0, 
1078           "Allocation instruction pointer not in the generic address space!",
1079           &AI);
1080   Assert1(PTy->getElementType()->isSized(), "Cannot allocate unsized type",
1081           &AI);
1082   visitInstruction(AI);
1083 }
1084
1085 void Verifier::visitGetResultInst(GetResultInst &GRI) {
1086   Assert1(GetResultInst::isValidOperands(GRI.getAggregateValue(),
1087                                          GRI.getIndex()),
1088           "Invalid GetResultInst operands!", &GRI);
1089   Assert1(isa<CallInst>(GRI.getAggregateValue()) ||
1090           isa<InvokeInst>(GRI.getAggregateValue()) ||
1091           isa<UndefValue>(GRI.getAggregateValue()),
1092           "GetResultInst operand must be a call/invoke/undef!", &GRI);
1093   
1094   visitInstruction(GRI);
1095 }
1096
1097
1098 /// verifyInstruction - Verify that an instruction is well formed.
1099 ///
1100 void Verifier::visitInstruction(Instruction &I) {
1101   BasicBlock *BB = I.getParent();
1102   Assert1(BB, "Instruction not embedded in basic block!", &I);
1103
1104   if (!isa<PHINode>(I)) {   // Check that non-phi nodes are not self referential
1105     for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
1106          UI != UE; ++UI)
1107       Assert1(*UI != (User*)&I ||
1108               !DT->dominates(&BB->getParent()->getEntryBlock(), BB),
1109               "Only PHI nodes may reference their own value!", &I);
1110   }
1111   
1112   // Verify that if this is a terminator that it is at the end of the block.
1113   if (isa<TerminatorInst>(I))
1114     Assert1(BB->getTerminator() == &I, "Terminator not at end of block!", &I);
1115   
1116
1117   // Check that void typed values don't have names
1118   Assert1(I.getType() != Type::VoidTy || !I.hasName(),
1119           "Instruction has a name, but provides a void value!", &I);
1120
1121   // Check that the return value of the instruction is either void or a legal
1122   // value type.
1123   Assert1(I.getType() == Type::VoidTy || I.getType()->isFirstClassType()
1124           || ((isa<CallInst>(I) || isa<InvokeInst>(I)) 
1125               && isa<StructType>(I.getType())),
1126           "Instruction returns a non-scalar type!", &I);
1127
1128   // Check that all uses of the instruction, if they are instructions
1129   // themselves, actually have parent basic blocks.  If the use is not an
1130   // instruction, it is an error!
1131   for (User::use_iterator UI = I.use_begin(), UE = I.use_end();
1132        UI != UE; ++UI) {
1133     Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!",
1134             *UI);
1135     Instruction *Used = cast<Instruction>(*UI);
1136     Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
1137             " embeded in a basic block!", &I, Used);
1138   }
1139
1140   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
1141     Assert1(I.getOperand(i) != 0, "Instruction has null operand!", &I);
1142
1143     // Check to make sure that only first-class-values are operands to
1144     // instructions.
1145     if (!I.getOperand(i)->getType()->isFirstClassType()) {
1146       if (isa<ReturnInst>(I) || isa<GetResultInst>(I))
1147         Assert1(isa<StructType>(I.getOperand(i)->getType()),
1148                 "Invalid ReturnInst operands!", &I);
1149       else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
1150         if (const PointerType *PT = dyn_cast<PointerType>
1151             (I.getOperand(i)->getType())) {
1152           const Type *ETy = PT->getElementType();
1153           Assert1(isa<StructType>(ETy), "Invalid CallInst operands!", &I);
1154         }
1155         else
1156           Assert1(0, "Invalid CallInst operands!", &I);
1157       }
1158       else
1159         Assert1(0, "Instruction operands must be first-class values!", &I);
1160     }
1161     
1162     if (Function *F = dyn_cast<Function>(I.getOperand(i))) {
1163       // Check to make sure that the "address of" an intrinsic function is never
1164       // taken.
1165       Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)),
1166               "Cannot take the address of an intrinsic!", &I);
1167       Assert1(F->getParent() == Mod, "Referencing function in another module!",
1168               &I);
1169     } else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) {
1170       Assert1(OpBB->getParent() == BB->getParent(),
1171               "Referring to a basic block in another function!", &I);
1172     } else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) {
1173       Assert1(OpArg->getParent() == BB->getParent(),
1174               "Referring to an argument in another function!", &I);
1175     } else if (GlobalValue *GV = dyn_cast<GlobalValue>(I.getOperand(i))) {
1176       Assert1(GV->getParent() == Mod, "Referencing global in another module!",
1177               &I);
1178     } else if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) {
1179       BasicBlock *OpBlock = Op->getParent();
1180
1181       // Check that a definition dominates all of its uses.
1182       if (!isa<PHINode>(I)) {
1183         // Invoke results are only usable in the normal destination, not in the
1184         // exceptional destination.
1185         if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
1186           OpBlock = II->getNormalDest();
1187           
1188           Assert2(OpBlock != II->getUnwindDest(),
1189                   "No uses of invoke possible due to dominance structure!",
1190                   Op, II);
1191           
1192           // If the normal successor of an invoke instruction has multiple
1193           // predecessors, then the normal edge from the invoke is critical, so
1194           // the invoke value can only be live if the destination block
1195           // dominates all of it's predecessors (other than the invoke) or if
1196           // the invoke value is only used by a phi in the successor.
1197           if (!OpBlock->getSinglePredecessor() &&
1198               DT->dominates(&BB->getParent()->getEntryBlock(), BB)) {
1199             // The first case we allow is if the use is a PHI operand in the
1200             // normal block, and if that PHI operand corresponds to the invoke's
1201             // block.
1202             bool Bad = true;
1203             if (PHINode *PN = dyn_cast<PHINode>(&I))
1204               if (PN->getParent() == OpBlock &&
1205                   PN->getIncomingBlock(i/2) == Op->getParent())
1206                 Bad = false;
1207             
1208             // If it is used by something non-phi, then the other case is that
1209             // 'OpBlock' dominates all of its predecessors other than the
1210             // invoke.  In this case, the invoke value can still be used.
1211             if (Bad) {
1212               Bad = false;
1213               for (pred_iterator PI = pred_begin(OpBlock),
1214                    E = pred_end(OpBlock); PI != E; ++PI) {
1215                 if (*PI != II->getParent() && !DT->dominates(OpBlock, *PI)) {
1216                   Bad = true;
1217                   break;
1218                 }
1219               }
1220             }
1221             Assert2(!Bad,
1222                     "Invoke value defined on critical edge but not dead!", &I,
1223                     Op);
1224           }
1225         } else if (OpBlock == BB) {
1226           // If they are in the same basic block, make sure that the definition
1227           // comes before the use.
1228           Assert2(InstsInThisBlock.count(Op) ||
1229                   !DT->dominates(&BB->getParent()->getEntryBlock(), BB),
1230                   "Instruction does not dominate all uses!", Op, &I);
1231         }
1232
1233         // Definition must dominate use unless use is unreachable!
1234         Assert2(DT->dominates(Op, &I) ||
1235                 !DT->dominates(&BB->getParent()->getEntryBlock(), BB),
1236                 "Instruction does not dominate all uses!", Op, &I);
1237       } else {
1238         // PHI nodes are more difficult than other nodes because they actually
1239         // "use" the value in the predecessor basic blocks they correspond to.
1240         BasicBlock *PredBB = cast<BasicBlock>(I.getOperand(i+1));
1241         Assert2(DT->dominates(OpBlock, PredBB) ||
1242                 !DT->dominates(&BB->getParent()->getEntryBlock(), PredBB),
1243                 "Instruction does not dominate all uses!", Op, &I);
1244       }
1245     } else if (isa<InlineAsm>(I.getOperand(i))) {
1246       Assert1(i == 0 && (isa<CallInst>(I) || isa<InvokeInst>(I)),
1247               "Cannot take the address of an inline asm!", &I);
1248     }
1249   }
1250   InstsInThisBlock.insert(&I);
1251 }
1252
1253 /// visitIntrinsicFunction - Allow intrinsics to be verified in different ways.
1254 ///
1255 void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
1256   Function *IF = CI.getCalledFunction();
1257   Assert1(IF->isDeclaration(), "Intrinsic functions should never be defined!",
1258           IF);
1259   
1260 #define GET_INTRINSIC_VERIFIER
1261 #include "llvm/Intrinsics.gen"
1262 #undef GET_INTRINSIC_VERIFIER
1263   
1264   switch (ID) {
1265   default:
1266     break;
1267   case Intrinsic::gcroot:
1268   case Intrinsic::gcwrite:
1269   case Intrinsic::gcread: {
1270       Type *PtrTy    = PointerType::getUnqual(Type::Int8Ty),
1271            *PtrPtrTy = PointerType::getUnqual(PtrTy);
1272       
1273       switch (ID) {
1274       default:
1275         break;
1276       case Intrinsic::gcroot:
1277         Assert1(CI.getOperand(1)->getType() == PtrPtrTy,
1278                 "Intrinsic parameter #1 is not i8**.", &CI);
1279         Assert1(CI.getOperand(2)->getType() == PtrTy,
1280                 "Intrinsic parameter #2 is not i8*.", &CI);
1281         Assert1(isa<AllocaInst>(CI.getOperand(1)->stripPointerCasts()),
1282                 "llvm.gcroot parameter #1 must be an alloca.", &CI);
1283         Assert1(isa<Constant>(CI.getOperand(2)),
1284                 "llvm.gcroot parameter #2 must be a constant.", &CI);
1285         break;
1286       case Intrinsic::gcwrite:
1287         Assert1(CI.getOperand(1)->getType() == PtrTy,
1288                 "Intrinsic parameter #1 is not a i8*.", &CI);
1289         Assert1(CI.getOperand(2)->getType() == PtrTy,
1290                 "Intrinsic parameter #2 is not a i8*.", &CI);
1291         Assert1(CI.getOperand(3)->getType() == PtrPtrTy,
1292                 "Intrinsic parameter #3 is not a i8**.", &CI);
1293         break;
1294       case Intrinsic::gcread:
1295         Assert1(CI.getOperand(1)->getType() == PtrTy,
1296                 "Intrinsic parameter #1 is not a i8*.", &CI);
1297         Assert1(CI.getOperand(2)->getType() == PtrPtrTy,
1298                 "Intrinsic parameter #2 is not a i8**.", &CI);
1299         break;
1300       }
1301       
1302       Assert1(CI.getParent()->getParent()->hasCollector(),
1303               "Enclosing function does not specify a collector algorithm.",
1304               &CI);
1305     } break;
1306   case Intrinsic::init_trampoline:
1307     Assert1(isa<Function>(CI.getOperand(2)->stripPointerCasts()),
1308             "llvm.init_trampoline parameter #2 must resolve to a function.",
1309             &CI);
1310     break;
1311   }
1312 }
1313
1314 /// VerifyIntrinsicPrototype - TableGen emits calls to this function into
1315 /// Intrinsics.gen.  This implements a little state machine that verifies the
1316 /// prototype of intrinsics.
1317 void Verifier::VerifyIntrinsicPrototype(Intrinsic::ID ID,
1318                                         Function *F,
1319                                         unsigned Count, ...) {
1320   va_list VA;
1321   va_start(VA, Count);
1322   
1323   const FunctionType *FTy = F->getFunctionType();
1324   
1325   // For overloaded intrinsics, the Suffix of the function name must match the
1326   // types of the arguments. This variable keeps track of the expected
1327   // suffix, to be checked at the end.
1328   std::string Suffix;
1329
1330   if (FTy->getNumParams() + FTy->isVarArg() != Count - 1) {
1331     CheckFailed("Intrinsic prototype has incorrect number of arguments!", F);
1332     return;
1333   }
1334
1335   // Note that "arg#0" is the return type.
1336   for (unsigned ArgNo = 0; ArgNo < Count; ++ArgNo) {
1337     MVT::ValueType VT = va_arg(VA, MVT::ValueType);
1338
1339     if (VT == MVT::isVoid && ArgNo > 0) {
1340       if (!FTy->isVarArg())
1341         CheckFailed("Intrinsic prototype has no '...'!", F);
1342       break;
1343     }
1344
1345     const Type *Ty;
1346     if (ArgNo == 0)
1347       Ty = FTy->getReturnType();
1348     else
1349       Ty = FTy->getParamType(ArgNo-1);
1350
1351     unsigned NumElts = 0;
1352     const Type *EltTy = Ty;
1353     if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1354       EltTy = VTy->getElementType();
1355       NumElts = VTy->getNumElements();
1356     }
1357     
1358     if ((int)VT < 0) {
1359       int Match = ~VT;
1360       if (Match == 0) {
1361         if (Ty != FTy->getReturnType()) {
1362           CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " does not "
1363                       "match return type.", F);
1364           break;
1365         }
1366       } else {
1367         if (Ty != FTy->getParamType(Match-1)) {
1368           CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " does not "
1369                       "match parameter %" + utostr(Match-1) + ".", F);
1370           break;
1371         }
1372       }
1373     } else if (VT == MVT::iAny) {
1374       if (!EltTy->isInteger()) {
1375         if (ArgNo == 0)
1376           CheckFailed("Intrinsic result type is not "
1377                       "an integer type.", F);
1378         else
1379           CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " is not "
1380                       "an integer type.", F);
1381         break;
1382       }
1383       unsigned GotBits = cast<IntegerType>(EltTy)->getBitWidth();
1384       Suffix += ".";
1385       if (EltTy != Ty)
1386         Suffix += "v" + utostr(NumElts);
1387       Suffix += "i" + utostr(GotBits);;
1388       // Check some constraints on various intrinsics.
1389       switch (ID) {
1390         default: break; // Not everything needs to be checked.
1391         case Intrinsic::bswap:
1392           if (GotBits < 16 || GotBits % 16 != 0)
1393             CheckFailed("Intrinsic requires even byte width argument", F);
1394           break;
1395       }
1396     } else if (VT == MVT::fAny) {
1397       if (!EltTy->isFloatingPoint()) {
1398         if (ArgNo == 0)
1399           CheckFailed("Intrinsic result type is not "
1400                       "a floating-point type.", F);
1401         else
1402           CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " is not "
1403                       "a floating-point type.", F);
1404         break;
1405       }
1406       Suffix += ".";
1407       if (EltTy != Ty)
1408         Suffix += "v" + utostr(NumElts);
1409       Suffix += MVT::getValueTypeString(MVT::getValueType(EltTy));
1410     } else if (VT == MVT::iPTR) {
1411       if (!isa<PointerType>(Ty)) {
1412         if (ArgNo == 0)
1413           CheckFailed("Intrinsic result type is not a "
1414                       "pointer and a pointer is required.", F);
1415         else
1416           CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " is not a "
1417                       "pointer and a pointer is required.", F);
1418         break;
1419       }
1420     } else if (MVT::isVector(VT)) {
1421       // If this is a vector argument, verify the number and type of elements.
1422       if (MVT::getVectorElementType(VT) != MVT::getValueType(EltTy)) {
1423         CheckFailed("Intrinsic prototype has incorrect vector element type!",
1424                     F);
1425         break;
1426       }
1427       if (MVT::getVectorNumElements(VT) != NumElts) {
1428         CheckFailed("Intrinsic prototype has incorrect number of "
1429                     "vector elements!",F);
1430         break;
1431       }
1432     } else if (MVT::getTypeForValueType(VT) != EltTy) {
1433       if (ArgNo == 0)
1434         CheckFailed("Intrinsic prototype has incorrect result type!", F);
1435       else
1436         CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " is wrong!",F);
1437       break;
1438     } else if (EltTy != Ty) {
1439       if (ArgNo == 0)
1440         CheckFailed("Intrinsic result type is vector "
1441                     "and a scalar is required.", F);
1442       else
1443         CheckFailed("Intrinsic parameter #" + utostr(ArgNo-1) + " is vector "
1444                     "and a scalar is required.", F);
1445     }
1446   }
1447
1448   va_end(VA);
1449
1450   // If we computed a Suffix then the intrinsic is overloaded and we need to 
1451   // make sure that the name of the function is correct. We add the suffix to
1452   // the name of the intrinsic and compare against the given function name. If
1453   // they are not the same, the function name is invalid. This ensures that
1454   // overloading of intrinsics uses a sane and consistent naming convention.
1455   if (!Suffix.empty()) {
1456     std::string Name(Intrinsic::getName(ID));
1457     if (Name + Suffix != F->getName())
1458       CheckFailed("Overloaded intrinsic has incorrect suffix: '" +
1459                   F->getName().substr(Name.length()) + "'. It should be '" +
1460                   Suffix + "'", F);
1461   }
1462
1463   // Check parameter attributes.
1464   Assert1(F->getParamAttrs() == Intrinsic::getParamAttrs(ID),
1465           "Intrinsic has wrong parameter attributes!", F);
1466 }
1467
1468
1469 //===----------------------------------------------------------------------===//
1470 //  Implement the public interfaces to this file...
1471 //===----------------------------------------------------------------------===//
1472
1473 FunctionPass *llvm::createVerifierPass(VerifierFailureAction action) {
1474   return new Verifier(action);
1475 }
1476
1477
1478 // verifyFunction - Create
1479 bool llvm::verifyFunction(const Function &f, VerifierFailureAction action) {
1480   Function &F = const_cast<Function&>(f);
1481   assert(!F.isDeclaration() && "Cannot verify external functions");
1482
1483   FunctionPassManager FPM(new ExistingModuleProvider(F.getParent()));
1484   Verifier *V = new Verifier(action);
1485   FPM.add(V);
1486   FPM.run(F);
1487   return V->Broken;
1488 }
1489
1490 /// verifyModule - Check a module for errors, printing messages on stderr.
1491 /// Return true if the module is corrupt.
1492 ///
1493 bool llvm::verifyModule(const Module &M, VerifierFailureAction action,
1494                         std::string *ErrorInfo) {
1495   PassManager PM;
1496   Verifier *V = new Verifier(action);
1497   PM.add(V);
1498   PM.run((Module&)M);
1499   
1500   if (ErrorInfo && V->Broken)
1501     *ErrorInfo = V->msgs.str();
1502   return V->Broken;
1503 }
1504
1505 // vim: sw=2