Push LLVMContexts through the IntegerType APIs.
[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/Metadata.h"
49 #include "llvm/Module.h"
50 #include "llvm/ModuleProvider.h"
51 #include "llvm/Pass.h"
52 #include "llvm/PassManager.h"
53 #include "llvm/Analysis/Dominators.h"
54 #include "llvm/Assembly/Writer.h"
55 #include "llvm/CodeGen/ValueTypes.h"
56 #include "llvm/Support/CallSite.h"
57 #include "llvm/Support/CFG.h"
58 #include "llvm/Support/InstVisitor.h"
59 #include "llvm/Support/Streams.h"
60 #include "llvm/ADT/SmallPtrSet.h"
61 #include "llvm/ADT/SmallVector.h"
62 #include "llvm/ADT/StringExtras.h"
63 #include "llvm/ADT/STLExtras.h"
64 #include "llvm/Support/Compiler.h"
65 #include "llvm/Support/ErrorHandling.h"
66 #include "llvm/Support/raw_ostream.h"
67 #include <algorithm>
68 #include <sstream>
69 #include <cstdarg>
70 using namespace llvm;
71
72 namespace {  // Anonymous namespace for class
73   struct VISIBILITY_HIDDEN PreVerifier : public FunctionPass {
74     static char ID; // Pass ID, replacement for typeid
75
76     PreVerifier() : FunctionPass(&ID) { }
77
78     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
79       AU.setPreservesAll();
80     }
81
82     // Check that the prerequisites for successful DominatorTree construction
83     // are satisfied.
84     bool runOnFunction(Function &F) {
85       bool Broken = false;
86
87       for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
88         if (I->empty() || !I->back().isTerminator()) {
89           cerr << "Basic Block does not have terminator!\n";
90           WriteAsOperand(*cerr, I, true);
91           cerr << "\n";
92           Broken = true;
93         }
94       }
95
96       if (Broken)
97         llvm_report_error("Broken module, no Basic Block terminator!");
98
99       return false;
100     }
101   };
102 }
103
104 char PreVerifier::ID = 0;
105 static RegisterPass<PreVerifier>
106 PreVer("preverify", "Preliminary module verification");
107 static const PassInfo *const PreVerifyID = &PreVer;
108
109 namespace {
110   struct VISIBILITY_HIDDEN
111      Verifier : public FunctionPass, InstVisitor<Verifier> {
112     static char ID; // Pass ID, replacement for typeid
113     bool Broken;          // Is this module found to be broken?
114     bool RealPass;        // Are we not being run by a PassManager?
115     VerifierFailureAction action;
116                           // What to do if verification fails.
117     Module *Mod;          // Module we are verifying right now
118     DominatorTree *DT; // Dominator Tree, caution can be null!
119     std::stringstream msgs;  // A stringstream to collect messages
120
121     /// InstInThisBlock - when verifying a basic block, keep track of all of the
122     /// instructions we have seen so far.  This allows us to do efficient
123     /// dominance checks for the case when an instruction has an operand that is
124     /// an instruction in the same block.
125     SmallPtrSet<Instruction*, 16> InstsInThisBlock;
126
127     Verifier()
128       : FunctionPass(&ID), 
129       Broken(false), RealPass(true), action(AbortProcessAction),
130       DT(0), msgs( std::ios::app | std::ios::out ) {}
131     explicit Verifier(VerifierFailureAction ctn)
132       : FunctionPass(&ID), 
133       Broken(false), RealPass(true), action(ctn), DT(0),
134       msgs( std::ios::app | std::ios::out ) {}
135     explicit Verifier(bool AB)
136       : FunctionPass(&ID), 
137       Broken(false), RealPass(true),
138       action( AB ? AbortProcessAction : PrintMessageAction), DT(0),
139       msgs( std::ios::app | std::ios::out ) {}
140     explicit Verifier(DominatorTree &dt)
141       : FunctionPass(&ID), 
142       Broken(false), RealPass(false), action(PrintMessageAction),
143       DT(&dt), msgs( std::ios::app | std::ios::out ) {}
144
145
146     bool doInitialization(Module &M) {
147       Mod = &M;
148       verifyTypeSymbolTable(M.getTypeSymbolTable());
149
150       // If this is a real pass, in a pass manager, we must abort before
151       // returning back to the pass manager, or else the pass manager may try to
152       // run other passes on the broken module.
153       if (RealPass)
154         return abortIfBroken();
155       return false;
156     }
157
158     bool runOnFunction(Function &F) {
159       // Get dominator information if we are being run by PassManager
160       if (RealPass) DT = &getAnalysis<DominatorTree>();
161
162       Mod = F.getParent();
163
164       visit(F);
165       InstsInThisBlock.clear();
166
167       // If this is a real pass, in a pass manager, we must abort before
168       // returning back to the pass manager, or else the pass manager may try to
169       // run other passes on the broken module.
170       if (RealPass)
171         return abortIfBroken();
172
173       return false;
174     }
175
176     bool doFinalization(Module &M) {
177       // Scan through, checking all of the external function's linkage now...
178       for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
179         visitGlobalValue(*I);
180
181         // Check to make sure function prototypes are okay.
182         if (I->isDeclaration()) visitFunction(*I);
183       }
184
185       for (Module::global_iterator I = M.global_begin(), E = M.global_end(); 
186            I != E; ++I)
187         visitGlobalVariable(*I);
188
189       for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); 
190            I != E; ++I)
191         visitGlobalAlias(*I);
192
193       // If the module is broken, abort at this time.
194       return abortIfBroken();
195     }
196
197     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
198       AU.setPreservesAll();
199       AU.addRequiredID(PreVerifyID);
200       if (RealPass)
201         AU.addRequired<DominatorTree>();
202     }
203
204     /// abortIfBroken - If the module is broken and we are supposed to abort on
205     /// this condition, do so.
206     ///
207     bool abortIfBroken() {
208       if (!Broken) return false;
209       msgs << "Broken module found, ";
210       switch (action) {
211       default: llvm_unreachable("Unknown action");
212       case AbortProcessAction:
213         msgs << "compilation aborted!\n";
214         cerr << msgs.str();
215         // Client should choose different reaction if abort is not desired
216         abort();
217       case PrintMessageAction:
218         msgs << "verification continues.\n";
219         cerr << msgs.str();
220         return false;
221       case ReturnStatusAction:
222         msgs << "compilation terminated.\n";
223         return true;
224       }
225     }
226
227
228     // Verification methods...
229     void verifyTypeSymbolTable(TypeSymbolTable &ST);
230     void visitGlobalValue(GlobalValue &GV);
231     void visitGlobalVariable(GlobalVariable &GV);
232     void visitGlobalAlias(GlobalAlias &GA);
233     void visitFunction(Function &F);
234     void visitBasicBlock(BasicBlock &BB);
235     using InstVisitor<Verifier>::visit;
236        
237     void visit(Instruction &I);
238        
239     void visitTruncInst(TruncInst &I);
240     void visitZExtInst(ZExtInst &I);
241     void visitSExtInst(SExtInst &I);
242     void visitFPTruncInst(FPTruncInst &I);
243     void visitFPExtInst(FPExtInst &I);
244     void visitFPToUIInst(FPToUIInst &I);
245     void visitFPToSIInst(FPToSIInst &I);
246     void visitUIToFPInst(UIToFPInst &I);
247     void visitSIToFPInst(SIToFPInst &I);
248     void visitIntToPtrInst(IntToPtrInst &I);
249     void visitPtrToIntInst(PtrToIntInst &I);
250     void visitBitCastInst(BitCastInst &I);
251     void visitPHINode(PHINode &PN);
252     void visitBinaryOperator(BinaryOperator &B);
253     void visitICmpInst(ICmpInst &IC);
254     void visitFCmpInst(FCmpInst &FC);
255     void visitExtractElementInst(ExtractElementInst &EI);
256     void visitInsertElementInst(InsertElementInst &EI);
257     void visitShuffleVectorInst(ShuffleVectorInst &EI);
258     void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); }
259     void visitCallInst(CallInst &CI);
260     void visitInvokeInst(InvokeInst &II);
261     void visitGetElementPtrInst(GetElementPtrInst &GEP);
262     void visitLoadInst(LoadInst &LI);
263     void visitStoreInst(StoreInst &SI);
264     void visitInstruction(Instruction &I);
265     void visitTerminatorInst(TerminatorInst &I);
266     void visitReturnInst(ReturnInst &RI);
267     void visitSwitchInst(SwitchInst &SI);
268     void visitSelectInst(SelectInst &SI);
269     void visitUserOp1(Instruction &I);
270     void visitUserOp2(Instruction &I) { visitUserOp1(I); }
271     void visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI);
272     void visitAllocationInst(AllocationInst &AI);
273     void visitExtractValueInst(ExtractValueInst &EVI);
274     void visitInsertValueInst(InsertValueInst &IVI);
275
276     void VerifyCallSite(CallSite CS);
277     bool PerformTypeCheck(Intrinsic::ID ID, Function *F, const Type *Ty,
278                           int VT, unsigned ArgNo, std::string &Suffix);
279     void VerifyIntrinsicPrototype(Intrinsic::ID ID, Function *F,
280                                   unsigned RetNum, unsigned ParamNum, ...);
281     void VerifyParameterAttrs(Attributes Attrs, const Type *Ty,
282                               bool isReturnValue, const Value *V);
283     void VerifyFunctionAttrs(const FunctionType *FT, const AttrListPtr &Attrs,
284                              const Value *V);
285
286     void WriteValue(const Value *V) {
287       if (!V) return;
288       if (isa<Instruction>(V)) {
289         msgs << *V;
290       } else {
291         WriteAsOperand(msgs, V, true, Mod);
292         msgs << "\n";
293       }
294     }
295
296     void WriteType(const Type *T) {
297       if (!T) return;
298       raw_os_ostream RO(msgs);
299       RO << ' ';
300       WriteTypeSymbolic(RO, T, Mod);
301     }
302
303
304     // CheckFailed - A check failed, so print out the condition and the message
305     // that failed.  This provides a nice place to put a breakpoint if you want
306     // to see why something is not correct.
307     void CheckFailed(const Twine &Message,
308                      const Value *V1 = 0, const Value *V2 = 0,
309                      const Value *V3 = 0, const Value *V4 = 0) {
310       msgs << Message.str() << "\n";
311       WriteValue(V1);
312       WriteValue(V2);
313       WriteValue(V3);
314       WriteValue(V4);
315       Broken = true;
316     }
317
318     void CheckFailed(const Twine &Message, const Value* V1,
319                      const Type* T2, const Value* V3 = 0) {
320       msgs << Message.str() << "\n";
321       WriteValue(V1);
322       WriteType(T2);
323       WriteValue(V3);
324       Broken = true;
325     }
326   };
327 } // End anonymous namespace
328
329 char Verifier::ID = 0;
330 static RegisterPass<Verifier> X("verify", "Module Verifier");
331
332 // Assert - We know that cond should be true, if not print an error message.
333 #define Assert(C, M) \
334   do { if (!(C)) { CheckFailed(M); return; } } while (0)
335 #define Assert1(C, M, V1) \
336   do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
337 #define Assert2(C, M, V1, V2) \
338   do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
339 #define Assert3(C, M, V1, V2, V3) \
340   do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
341 #define Assert4(C, M, V1, V2, V3, V4) \
342   do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
343
344 void Verifier::visit(Instruction &I) {
345   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
346     Assert1(I.getOperand(i) != 0, "Operand is null", &I);
347   InstVisitor<Verifier>::visit(I);
348 }
349
350
351 void Verifier::visitGlobalValue(GlobalValue &GV) {
352   Assert1(!GV.isDeclaration() ||
353           GV.hasExternalLinkage() ||
354           GV.hasDLLImportLinkage() ||
355           GV.hasExternalWeakLinkage() ||
356           GV.hasGhostLinkage() ||
357           (isa<GlobalAlias>(GV) &&
358            (GV.hasLocalLinkage() || GV.hasWeakLinkage())),
359   "Global is external, but doesn't have external or dllimport or weak linkage!",
360           &GV);
361
362   Assert1(!GV.hasDLLImportLinkage() || GV.isDeclaration(),
363           "Global is marked as dllimport, but not external", &GV);
364   
365   Assert1(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
366           "Only global variables can have appending linkage!", &GV);
367
368   if (GV.hasAppendingLinkage()) {
369     GlobalVariable &GVar = cast<GlobalVariable>(GV);
370     Assert1(isa<ArrayType>(GVar.getType()->getElementType()),
371             "Only global arrays can have appending linkage!", &GV);
372   }
373 }
374
375 void Verifier::visitGlobalVariable(GlobalVariable &GV) {
376   if (GV.hasInitializer()) {
377     Assert1(GV.getInitializer()->getType() == GV.getType()->getElementType(),
378             "Global variable initializer type does not match global "
379             "variable type!", &GV);
380
381     // If the global has common linkage, it must have a zero initializer and
382     // cannot be constant.
383     if (GV.hasCommonLinkage()) {
384       Assert1(GV.getInitializer()->isNullValue(),
385               "'common' global must have a zero initializer!", &GV);
386       Assert1(!GV.isConstant(), "'common' global may not be marked constant!",
387               &GV);
388     }
389     
390     // Verify that any metadata used in a global initializer points only to
391     // other globals.
392     if (MDNode *FirstNode = dyn_cast<MDNode>(GV.getInitializer())) {
393       SmallVector<const MDNode *, 4> NodesToAnalyze;
394       NodesToAnalyze.push_back(FirstNode);
395       while (!NodesToAnalyze.empty()) {
396         const MDNode *N = NodesToAnalyze.back();
397         NodesToAnalyze.pop_back();
398
399         for (MDNode::const_elem_iterator I = N->elem_begin(),
400                E = N->elem_end(); I != E; ++I)
401           if (const Value *V = *I) {
402             if (const MDNode *Next = dyn_cast<MDNode>(V))
403               NodesToAnalyze.push_back(Next);
404             else
405               Assert3(isa<Constant>(V),
406                       "reference to instruction from global metadata node",
407                       &GV, N, V);
408           }
409       }
410     }
411   } else {
412     Assert1(GV.hasExternalLinkage() || GV.hasDLLImportLinkage() ||
413             GV.hasExternalWeakLinkage(),
414             "invalid linkage type for global declaration", &GV);
415   }
416
417   visitGlobalValue(GV);
418 }
419
420 void Verifier::visitGlobalAlias(GlobalAlias &GA) {
421   Assert1(!GA.getName().empty(),
422           "Alias name cannot be empty!", &GA);
423   Assert1(GA.hasExternalLinkage() || GA.hasLocalLinkage() ||
424           GA.hasWeakLinkage(),
425           "Alias should have external or external weak linkage!", &GA);
426   Assert1(GA.getAliasee(),
427           "Aliasee cannot be NULL!", &GA);
428   Assert1(GA.getType() == GA.getAliasee()->getType(),
429           "Alias and aliasee types should match!", &GA);
430
431   if (!isa<GlobalValue>(GA.getAliasee())) {
432     const ConstantExpr *CE = dyn_cast<ConstantExpr>(GA.getAliasee());
433     Assert1(CE && 
434             (CE->getOpcode() == Instruction::BitCast ||
435              CE->getOpcode() == Instruction::GetElementPtr) &&
436             isa<GlobalValue>(CE->getOperand(0)),
437             "Aliasee should be either GlobalValue or bitcast of GlobalValue",
438             &GA);
439   }
440
441   const GlobalValue* Aliasee = GA.resolveAliasedGlobal(/*stopOnWeak*/ false);
442   Assert1(Aliasee,
443           "Aliasing chain should end with function or global variable", &GA);
444
445   visitGlobalValue(GA);
446 }
447
448 void Verifier::verifyTypeSymbolTable(TypeSymbolTable &ST) {
449 }
450
451 // VerifyParameterAttrs - Check the given attributes for an argument or return
452 // value of the specified type.  The value V is printed in error messages.
453 void Verifier::VerifyParameterAttrs(Attributes Attrs, const Type *Ty,
454                                     bool isReturnValue, const Value *V) {
455   if (Attrs == Attribute::None)
456     return;
457
458   Attributes FnCheckAttr = Attrs & Attribute::FunctionOnly;
459   Assert1(!FnCheckAttr, "Attribute " + Attribute::getAsString(FnCheckAttr) +
460           " only applies to the function!", V);
461
462   if (isReturnValue) {
463     Attributes RetI = Attrs & Attribute::ParameterOnly;
464     Assert1(!RetI, "Attribute " + Attribute::getAsString(RetI) +
465             " does not apply to return values!", V);
466   }
467
468   for (unsigned i = 0;
469        i < array_lengthof(Attribute::MutuallyIncompatible); ++i) {
470     Attributes MutI = Attrs & Attribute::MutuallyIncompatible[i];
471     Assert1(!(MutI & (MutI - 1)), "Attributes " +
472             Attribute::getAsString(MutI) + " are incompatible!", V);
473   }
474
475   Attributes TypeI = Attrs & Attribute::typeIncompatible(Ty);
476   Assert1(!TypeI, "Wrong type for attribute " +
477           Attribute::getAsString(TypeI), V);
478
479   Attributes ByValI = Attrs & Attribute::ByVal;
480   if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
481     Assert1(!ByValI || PTy->getElementType()->isSized(),
482             "Attribute " + Attribute::getAsString(ByValI) +
483             " does not support unsized types!", V);
484   } else {
485     Assert1(!ByValI,
486             "Attribute " + Attribute::getAsString(ByValI) +
487             " only applies to parameters with pointer type!", V);
488   }
489 }
490
491 // VerifyFunctionAttrs - Check parameter attributes against a function type.
492 // The value V is printed in error messages.
493 void Verifier::VerifyFunctionAttrs(const FunctionType *FT,
494                                    const AttrListPtr &Attrs,
495                                    const Value *V) {
496   if (Attrs.isEmpty())
497     return;
498
499   bool SawNest = false;
500
501   for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
502     const AttributeWithIndex &Attr = Attrs.getSlot(i);
503
504     const Type *Ty;
505     if (Attr.Index == 0)
506       Ty = FT->getReturnType();
507     else if (Attr.Index-1 < FT->getNumParams())
508       Ty = FT->getParamType(Attr.Index-1);
509     else
510       break;  // VarArgs attributes, verified elsewhere.
511
512     VerifyParameterAttrs(Attr.Attrs, Ty, Attr.Index == 0, V);
513
514     if (Attr.Attrs & Attribute::Nest) {
515       Assert1(!SawNest, "More than one parameter has attribute nest!", V);
516       SawNest = true;
517     }
518
519     if (Attr.Attrs & Attribute::StructRet)
520       Assert1(Attr.Index == 1, "Attribute sret not on first parameter!", V);
521   }
522
523   Attributes FAttrs = Attrs.getFnAttributes();
524   Attributes NotFn = FAttrs & (~Attribute::FunctionOnly);
525   Assert1(!NotFn, "Attribute " + Attribute::getAsString(NotFn) +
526           " does not apply to the function!", V);
527
528   for (unsigned i = 0;
529        i < array_lengthof(Attribute::MutuallyIncompatible); ++i) {
530     Attributes MutI = FAttrs & Attribute::MutuallyIncompatible[i];
531     Assert1(!(MutI & (MutI - 1)), "Attributes " +
532             Attribute::getAsString(MutI) + " are incompatible!", V);
533   }
534 }
535
536 static bool VerifyAttributeCount(const AttrListPtr &Attrs, unsigned Params) {
537   if (Attrs.isEmpty())
538     return true;
539     
540   unsigned LastSlot = Attrs.getNumSlots() - 1;
541   unsigned LastIndex = Attrs.getSlot(LastSlot).Index;
542   if (LastIndex <= Params
543       || (LastIndex == (unsigned)~0
544           && (LastSlot == 0 || Attrs.getSlot(LastSlot - 1).Index <= Params)))  
545     return true;
546     
547   return false;
548 }
549 // visitFunction - Verify that a function is ok.
550 //
551 void Verifier::visitFunction(Function &F) {
552   // Check function arguments.
553   const FunctionType *FT = F.getFunctionType();
554   unsigned NumArgs = F.arg_size();
555
556   Assert1(!F.hasCommonLinkage(), "Functions may not have common linkage", &F);
557   Assert2(FT->getNumParams() == NumArgs,
558           "# formal arguments must match # of arguments for function type!",
559           &F, FT);
560   Assert1(F.getReturnType()->isFirstClassType() ||
561           F.getReturnType() == Type::getVoidTy(F.getContext()) || 
562           isa<StructType>(F.getReturnType()),
563           "Functions cannot return aggregate values!", &F);
564
565   Assert1(!F.hasStructRetAttr() ||
566           F.getReturnType() == Type::getVoidTy(F.getContext()),
567           "Invalid struct return type!", &F);
568
569   const AttrListPtr &Attrs = F.getAttributes();
570
571   Assert1(VerifyAttributeCount(Attrs, FT->getNumParams()),
572           "Attributes after last parameter!", &F);
573
574   // Check function attributes.
575   VerifyFunctionAttrs(FT, Attrs, &F);
576
577   // Check that this function meets the restrictions on this calling convention.
578   switch (F.getCallingConv()) {
579   default:
580     break;
581   case CallingConv::C:
582     break;
583   case CallingConv::Fast:
584   case CallingConv::Cold:
585   case CallingConv::X86_FastCall:
586     Assert1(!F.isVarArg(),
587             "Varargs functions must have C calling conventions!", &F);
588     break;
589   }
590   
591   bool isLLVMdotName = F.getName().size() >= 5 &&
592                        F.getName().substr(0, 5) == "llvm.";
593   if (!isLLVMdotName)
594     Assert1(F.getReturnType() != Type::getMetadataTy(F.getContext()),
595             "Function may not return metadata unless it's an intrinsic", &F);
596
597   // Check that the argument values match the function type for this function...
598   unsigned i = 0;
599   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
600        I != E; ++I, ++i) {
601     Assert2(I->getType() == FT->getParamType(i),
602             "Argument value does not match function argument type!",
603             I, FT->getParamType(i));
604     Assert1(I->getType()->isFirstClassType(),
605             "Function arguments must have first-class types!", I);
606     if (!isLLVMdotName)
607       Assert2(I->getType() != Type::getMetadataTy(F.getContext()),
608               "Function takes metadata but isn't an intrinsic", I, &F);
609   }
610
611   if (F.isDeclaration()) {
612     Assert1(F.hasExternalLinkage() || F.hasDLLImportLinkage() ||
613             F.hasExternalWeakLinkage() || F.hasGhostLinkage(),
614             "invalid linkage type for function declaration", &F);
615   } else {
616     // Verify that this function (which has a body) is not named "llvm.*".  It
617     // is not legal to define intrinsics.
618     Assert1(!isLLVMdotName, "llvm intrinsics cannot be defined!", &F);
619     
620     // Check the entry node
621     BasicBlock *Entry = &F.getEntryBlock();
622     Assert1(pred_begin(Entry) == pred_end(Entry),
623             "Entry block to function must not have predecessors!", Entry);
624   }
625 }
626
627
628 // verifyBasicBlock - Verify that a basic block is well formed...
629 //
630 void Verifier::visitBasicBlock(BasicBlock &BB) {
631   InstsInThisBlock.clear();
632
633   // Ensure that basic blocks have terminators!
634   Assert1(BB.getTerminator(), "Basic Block does not have terminator!", &BB);
635
636   // Check constraints that this basic block imposes on all of the PHI nodes in
637   // it.
638   if (isa<PHINode>(BB.front())) {
639     SmallVector<BasicBlock*, 8> Preds(pred_begin(&BB), pred_end(&BB));
640     SmallVector<std::pair<BasicBlock*, Value*>, 8> Values;
641     std::sort(Preds.begin(), Preds.end());
642     PHINode *PN;
643     for (BasicBlock::iterator I = BB.begin(); (PN = dyn_cast<PHINode>(I));++I) {
644
645       // Ensure that PHI nodes have at least one entry!
646       Assert1(PN->getNumIncomingValues() != 0,
647               "PHI nodes must have at least one entry.  If the block is dead, "
648               "the PHI should be removed!", PN);
649       Assert1(PN->getNumIncomingValues() == Preds.size(),
650               "PHINode should have one entry for each predecessor of its "
651               "parent basic block!", PN);
652
653       // Get and sort all incoming values in the PHI node...
654       Values.clear();
655       Values.reserve(PN->getNumIncomingValues());
656       for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
657         Values.push_back(std::make_pair(PN->getIncomingBlock(i),
658                                         PN->getIncomingValue(i)));
659       std::sort(Values.begin(), Values.end());
660
661       for (unsigned i = 0, e = Values.size(); i != e; ++i) {
662         // Check to make sure that if there is more than one entry for a
663         // particular basic block in this PHI node, that the incoming values are
664         // all identical.
665         //
666         Assert4(i == 0 || Values[i].first  != Values[i-1].first ||
667                 Values[i].second == Values[i-1].second,
668                 "PHI node has multiple entries for the same basic block with "
669                 "different incoming values!", PN, Values[i].first,
670                 Values[i].second, Values[i-1].second);
671
672         // Check to make sure that the predecessors and PHI node entries are
673         // matched up.
674         Assert3(Values[i].first == Preds[i],
675                 "PHI node entries do not match predecessors!", PN,
676                 Values[i].first, Preds[i]);
677       }
678     }
679   }
680 }
681
682 void Verifier::visitTerminatorInst(TerminatorInst &I) {
683   // Ensure that terminators only exist at the end of the basic block.
684   Assert1(&I == I.getParent()->getTerminator(),
685           "Terminator found in the middle of a basic block!", I.getParent());
686   visitInstruction(I);
687 }
688
689 void Verifier::visitReturnInst(ReturnInst &RI) {
690   Function *F = RI.getParent()->getParent();
691   unsigned N = RI.getNumOperands();
692   if (F->getReturnType() == Type::getVoidTy(RI.getContext())) 
693     Assert2(N == 0,
694             "Found return instr that returns non-void in Function of void "
695             "return type!", &RI, F->getReturnType());
696   else if (N == 1 && F->getReturnType() == RI.getOperand(0)->getType()) {
697     // Exactly one return value and it matches the return type. Good.
698   } else if (const StructType *STy = dyn_cast<StructType>(F->getReturnType())) {
699     // The return type is a struct; check for multiple return values.
700     Assert2(STy->getNumElements() == N,
701             "Incorrect number of return values in ret instruction!",
702             &RI, F->getReturnType());
703     for (unsigned i = 0; i != N; ++i)
704       Assert2(STy->getElementType(i) == RI.getOperand(i)->getType(),
705               "Function return type does not match operand "
706               "type of return inst!", &RI, F->getReturnType());
707   } else if (const ArrayType *ATy = dyn_cast<ArrayType>(F->getReturnType())) {
708     // The return type is an array; check for multiple return values.
709     Assert2(ATy->getNumElements() == N,
710             "Incorrect number of return values in ret instruction!",
711             &RI, F->getReturnType());
712     for (unsigned i = 0; i != N; ++i)
713       Assert2(ATy->getElementType() == RI.getOperand(i)->getType(),
714               "Function return type does not match operand "
715               "type of return inst!", &RI, F->getReturnType());
716   } else {
717     CheckFailed("Function return type does not match operand "
718                 "type of return inst!", &RI, F->getReturnType());
719   }
720   
721   // Check to make sure that the return value has necessary properties for
722   // terminators...
723   visitTerminatorInst(RI);
724 }
725
726 void Verifier::visitSwitchInst(SwitchInst &SI) {
727   // Check to make sure that all of the constants in the switch instruction
728   // have the same type as the switched-on value.
729   const Type *SwitchTy = SI.getCondition()->getType();
730   for (unsigned i = 1, e = SI.getNumCases(); i != e; ++i)
731     Assert1(SI.getCaseValue(i)->getType() == SwitchTy,
732             "Switch constants must all be same type as switch value!", &SI);
733
734   visitTerminatorInst(SI);
735 }
736
737 void Verifier::visitSelectInst(SelectInst &SI) {
738   Assert1(!SelectInst::areInvalidOperands(SI.getOperand(0), SI.getOperand(1),
739                                           SI.getOperand(2)),
740           "Invalid operands for select instruction!", &SI);
741
742   Assert1(SI.getTrueValue()->getType() == SI.getType(),
743           "Select values must have same type as select instruction!", &SI);
744   visitInstruction(SI);
745 }
746
747
748 /// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of
749 /// a pass, if any exist, it's an error.
750 ///
751 void Verifier::visitUserOp1(Instruction &I) {
752   Assert1(0, "User-defined operators should not live outside of a pass!", &I);
753 }
754
755 void Verifier::visitTruncInst(TruncInst &I) {
756   // Get the source and destination types
757   const Type *SrcTy = I.getOperand(0)->getType();
758   const Type *DestTy = I.getType();
759
760   // Get the size of the types in bits, we'll need this later
761   unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
762   unsigned DestBitSize = DestTy->getScalarSizeInBits();
763
764   Assert1(SrcTy->isIntOrIntVector(), "Trunc only operates on integer", &I);
765   Assert1(DestTy->isIntOrIntVector(), "Trunc only produces integer", &I);
766   Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
767           "trunc source and destination must both be a vector or neither", &I);
768   Assert1(SrcBitSize > DestBitSize,"DestTy too big for Trunc", &I);
769
770   visitInstruction(I);
771 }
772
773 void Verifier::visitZExtInst(ZExtInst &I) {
774   // Get the source and destination types
775   const Type *SrcTy = I.getOperand(0)->getType();
776   const Type *DestTy = I.getType();
777
778   // Get the size of the types in bits, we'll need this later
779   Assert1(SrcTy->isIntOrIntVector(), "ZExt only operates on integer", &I);
780   Assert1(DestTy->isIntOrIntVector(), "ZExt only produces an integer", &I);
781   Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
782           "zext source and destination must both be a vector or neither", &I);
783   unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
784   unsigned DestBitSize = DestTy->getScalarSizeInBits();
785
786   Assert1(SrcBitSize < DestBitSize,"Type too small for ZExt", &I);
787
788   visitInstruction(I);
789 }
790
791 void Verifier::visitSExtInst(SExtInst &I) {
792   // Get the source and destination types
793   const Type *SrcTy = I.getOperand(0)->getType();
794   const Type *DestTy = I.getType();
795
796   // Get the size of the types in bits, we'll need this later
797   unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
798   unsigned DestBitSize = DestTy->getScalarSizeInBits();
799
800   Assert1(SrcTy->isIntOrIntVector(), "SExt only operates on integer", &I);
801   Assert1(DestTy->isIntOrIntVector(), "SExt only produces an integer", &I);
802   Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
803           "sext source and destination must both be a vector or neither", &I);
804   Assert1(SrcBitSize < DestBitSize,"Type too small for SExt", &I);
805
806   visitInstruction(I);
807 }
808
809 void Verifier::visitFPTruncInst(FPTruncInst &I) {
810   // Get the source and destination types
811   const Type *SrcTy = I.getOperand(0)->getType();
812   const Type *DestTy = I.getType();
813   // Get the size of the types in bits, we'll need this later
814   unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
815   unsigned DestBitSize = DestTy->getScalarSizeInBits();
816
817   Assert1(SrcTy->isFPOrFPVector(),"FPTrunc only operates on FP", &I);
818   Assert1(DestTy->isFPOrFPVector(),"FPTrunc only produces an FP", &I);
819   Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
820           "fptrunc source and destination must both be a vector or neither",&I);
821   Assert1(SrcBitSize > DestBitSize,"DestTy too big for FPTrunc", &I);
822
823   visitInstruction(I);
824 }
825
826 void Verifier::visitFPExtInst(FPExtInst &I) {
827   // Get the source and destination types
828   const Type *SrcTy = I.getOperand(0)->getType();
829   const Type *DestTy = I.getType();
830
831   // Get the size of the types in bits, we'll need this later
832   unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
833   unsigned DestBitSize = DestTy->getScalarSizeInBits();
834
835   Assert1(SrcTy->isFPOrFPVector(),"FPExt only operates on FP", &I);
836   Assert1(DestTy->isFPOrFPVector(),"FPExt only produces an FP", &I);
837   Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
838           "fpext source and destination must both be a vector or neither", &I);
839   Assert1(SrcBitSize < DestBitSize,"DestTy too small for FPExt", &I);
840
841   visitInstruction(I);
842 }
843
844 void Verifier::visitUIToFPInst(UIToFPInst &I) {
845   // Get the source and destination types
846   const Type *SrcTy = I.getOperand(0)->getType();
847   const Type *DestTy = I.getType();
848
849   bool SrcVec = isa<VectorType>(SrcTy);
850   bool DstVec = isa<VectorType>(DestTy);
851
852   Assert1(SrcVec == DstVec,
853           "UIToFP source and dest must both be vector or scalar", &I);
854   Assert1(SrcTy->isIntOrIntVector(),
855           "UIToFP source must be integer or integer vector", &I);
856   Assert1(DestTy->isFPOrFPVector(),
857           "UIToFP result must be FP or FP vector", &I);
858
859   if (SrcVec && DstVec)
860     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
861             cast<VectorType>(DestTy)->getNumElements(),
862             "UIToFP source and dest vector length mismatch", &I);
863
864   visitInstruction(I);
865 }
866
867 void Verifier::visitSIToFPInst(SIToFPInst &I) {
868   // Get the source and destination types
869   const Type *SrcTy = I.getOperand(0)->getType();
870   const Type *DestTy = I.getType();
871
872   bool SrcVec = SrcTy->getTypeID() == Type::VectorTyID;
873   bool DstVec = DestTy->getTypeID() == Type::VectorTyID;
874
875   Assert1(SrcVec == DstVec,
876           "SIToFP source and dest must both be vector or scalar", &I);
877   Assert1(SrcTy->isIntOrIntVector(),
878           "SIToFP source must be integer or integer vector", &I);
879   Assert1(DestTy->isFPOrFPVector(),
880           "SIToFP result must be FP or FP vector", &I);
881
882   if (SrcVec && DstVec)
883     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
884             cast<VectorType>(DestTy)->getNumElements(),
885             "SIToFP source and dest vector length mismatch", &I);
886
887   visitInstruction(I);
888 }
889
890 void Verifier::visitFPToUIInst(FPToUIInst &I) {
891   // Get the source and destination types
892   const Type *SrcTy = I.getOperand(0)->getType();
893   const Type *DestTy = I.getType();
894
895   bool SrcVec = isa<VectorType>(SrcTy);
896   bool DstVec = isa<VectorType>(DestTy);
897
898   Assert1(SrcVec == DstVec,
899           "FPToUI source and dest must both be vector or scalar", &I);
900   Assert1(SrcTy->isFPOrFPVector(), "FPToUI source must be FP or FP vector", &I);
901   Assert1(DestTy->isIntOrIntVector(),
902           "FPToUI result must be integer or integer vector", &I);
903
904   if (SrcVec && DstVec)
905     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
906             cast<VectorType>(DestTy)->getNumElements(),
907             "FPToUI source and dest vector length mismatch", &I);
908
909   visitInstruction(I);
910 }
911
912 void Verifier::visitFPToSIInst(FPToSIInst &I) {
913   // Get the source and destination types
914   const Type *SrcTy = I.getOperand(0)->getType();
915   const Type *DestTy = I.getType();
916
917   bool SrcVec = isa<VectorType>(SrcTy);
918   bool DstVec = isa<VectorType>(DestTy);
919
920   Assert1(SrcVec == DstVec,
921           "FPToSI source and dest must both be vector or scalar", &I);
922   Assert1(SrcTy->isFPOrFPVector(),
923           "FPToSI source must be FP or FP vector", &I);
924   Assert1(DestTy->isIntOrIntVector(),
925           "FPToSI result must be integer or integer vector", &I);
926
927   if (SrcVec && DstVec)
928     Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
929             cast<VectorType>(DestTy)->getNumElements(),
930             "FPToSI source and dest vector length mismatch", &I);
931
932   visitInstruction(I);
933 }
934
935 void Verifier::visitPtrToIntInst(PtrToIntInst &I) {
936   // Get the source and destination types
937   const Type *SrcTy = I.getOperand(0)->getType();
938   const Type *DestTy = I.getType();
939
940   Assert1(isa<PointerType>(SrcTy), "PtrToInt source must be pointer", &I);
941   Assert1(DestTy->isInteger(), "PtrToInt result must be integral", &I);
942
943   visitInstruction(I);
944 }
945
946 void Verifier::visitIntToPtrInst(IntToPtrInst &I) {
947   // Get the source and destination types
948   const Type *SrcTy = I.getOperand(0)->getType();
949   const Type *DestTy = I.getType();
950
951   Assert1(SrcTy->isInteger(), "IntToPtr source must be an integral", &I);
952   Assert1(isa<PointerType>(DestTy), "IntToPtr result must be a pointer",&I);
953
954   visitInstruction(I);
955 }
956
957 void Verifier::visitBitCastInst(BitCastInst &I) {
958   // Get the source and destination types
959   const Type *SrcTy = I.getOperand(0)->getType();
960   const Type *DestTy = I.getType();
961
962   // Get the size of the types in bits, we'll need this later
963   unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
964   unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
965
966   // BitCast implies a no-op cast of type only. No bits change.
967   // However, you can't cast pointers to anything but pointers.
968   Assert1(isa<PointerType>(DestTy) == isa<PointerType>(DestTy),
969           "Bitcast requires both operands to be pointer or neither", &I);
970   Assert1(SrcBitSize == DestBitSize, "Bitcast requires types of same width",&I);
971
972   // Disallow aggregates.
973   Assert1(!SrcTy->isAggregateType(),
974           "Bitcast operand must not be aggregate", &I);
975   Assert1(!DestTy->isAggregateType(),
976           "Bitcast type must not be aggregate", &I);
977
978   visitInstruction(I);
979 }
980
981 /// visitPHINode - Ensure that a PHI node is well formed.
982 ///
983 void Verifier::visitPHINode(PHINode &PN) {
984   // Ensure that the PHI nodes are all grouped together at the top of the block.
985   // This can be tested by checking whether the instruction before this is
986   // either nonexistent (because this is begin()) or is a PHI node.  If not,
987   // then there is some other instruction before a PHI.
988   Assert2(&PN == &PN.getParent()->front() || 
989           isa<PHINode>(--BasicBlock::iterator(&PN)),
990           "PHI nodes not grouped at top of basic block!",
991           &PN, PN.getParent());
992
993   // Check that all of the operands of the PHI node have the same type as the
994   // result.
995   for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
996     Assert1(PN.getType() == PN.getIncomingValue(i)->getType(),
997             "PHI node operands are not the same type as the result!", &PN);
998
999   // All other PHI node constraints are checked in the visitBasicBlock method.
1000
1001   visitInstruction(PN);
1002 }
1003
1004 void Verifier::VerifyCallSite(CallSite CS) {
1005   Instruction *I = CS.getInstruction();
1006
1007   Assert1(isa<PointerType>(CS.getCalledValue()->getType()),
1008           "Called function must be a pointer!", I);
1009   const PointerType *FPTy = cast<PointerType>(CS.getCalledValue()->getType());
1010   Assert1(isa<FunctionType>(FPTy->getElementType()),
1011           "Called function is not pointer to function type!", I);
1012
1013   const FunctionType *FTy = cast<FunctionType>(FPTy->getElementType());
1014
1015   // Verify that the correct number of arguments are being passed
1016   if (FTy->isVarArg())
1017     Assert1(CS.arg_size() >= FTy->getNumParams(),
1018             "Called function requires more parameters than were provided!",I);
1019   else
1020     Assert1(CS.arg_size() == FTy->getNumParams(),
1021             "Incorrect number of arguments passed to called function!", I);
1022
1023   // Verify that all arguments to the call match the function type...
1024   for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
1025     Assert3(CS.getArgument(i)->getType() == FTy->getParamType(i),
1026             "Call parameter type does not match function signature!",
1027             CS.getArgument(i), FTy->getParamType(i), I);
1028
1029   const AttrListPtr &Attrs = CS.getAttributes();
1030
1031   Assert1(VerifyAttributeCount(Attrs, CS.arg_size()),
1032           "Attributes after last parameter!", I);
1033
1034   // Verify call attributes.
1035   VerifyFunctionAttrs(FTy, Attrs, I);
1036
1037   if (FTy->isVarArg())
1038     // Check attributes on the varargs part.
1039     for (unsigned Idx = 1 + FTy->getNumParams(); Idx <= CS.arg_size(); ++Idx) {
1040       Attributes Attr = Attrs.getParamAttributes(Idx);
1041
1042       VerifyParameterAttrs(Attr, CS.getArgument(Idx-1)->getType(), false, I);
1043
1044       Attributes VArgI = Attr & Attribute::VarArgsIncompatible;
1045       Assert1(!VArgI, "Attribute " + Attribute::getAsString(VArgI) +
1046               " cannot be used for vararg call arguments!", I);
1047     }
1048
1049   // Verify that there's no metadata unless it's a direct call to an intrinsic.
1050   if (!CS.getCalledFunction() || CS.getCalledFunction()->getName().size() < 5 ||
1051       CS.getCalledFunction()->getName().substr(0, 5) != "llvm.") {
1052     Assert1(FTy->getReturnType() != Type::getMetadataTy(I->getContext()),
1053             "Only intrinsics may return metadata", I);
1054     for (FunctionType::param_iterator PI = FTy->param_begin(),
1055            PE = FTy->param_end(); PI != PE; ++PI)
1056       Assert1(PI->get() != Type::getMetadataTy(I->getContext()),
1057               "Function has metadata parameter but isn't an intrinsic", I);
1058   }
1059
1060   visitInstruction(*I);
1061 }
1062
1063 void Verifier::visitCallInst(CallInst &CI) {
1064   VerifyCallSite(&CI);
1065
1066   if (Function *F = CI.getCalledFunction())
1067     if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
1068       visitIntrinsicFunctionCall(ID, CI);
1069 }
1070
1071 void Verifier::visitInvokeInst(InvokeInst &II) {
1072   VerifyCallSite(&II);
1073 }
1074
1075 /// visitBinaryOperator - Check that both arguments to the binary operator are
1076 /// of the same type!
1077 ///
1078 void Verifier::visitBinaryOperator(BinaryOperator &B) {
1079   Assert1(B.getOperand(0)->getType() == B.getOperand(1)->getType(),
1080           "Both operands to a binary operator are not of the same type!", &B);
1081
1082   switch (B.getOpcode()) {
1083   // Check that integer arithmetic operators are only used with
1084   // integral operands.
1085   case Instruction::Add:
1086   case Instruction::Sub:
1087   case Instruction::Mul:
1088   case Instruction::SDiv:
1089   case Instruction::UDiv:
1090   case Instruction::SRem:
1091   case Instruction::URem:
1092     Assert1(B.getType()->isIntOrIntVector(),
1093             "Integer arithmetic operators only work with integral types!", &B);
1094     Assert1(B.getType() == B.getOperand(0)->getType(),
1095             "Integer arithmetic operators must have same type "
1096             "for operands and result!", &B);
1097     break;
1098   // Check that floating-point arithmetic operators are only used with
1099   // floating-point operands.
1100   case Instruction::FAdd:
1101   case Instruction::FSub:
1102   case Instruction::FMul:
1103   case Instruction::FDiv:
1104   case Instruction::FRem:
1105     Assert1(B.getType()->isFPOrFPVector(),
1106             "Floating-point arithmetic operators only work with "
1107             "floating-point types!", &B);
1108     Assert1(B.getType() == B.getOperand(0)->getType(),
1109             "Floating-point arithmetic operators must have same type "
1110             "for operands and result!", &B);
1111     break;
1112   // Check that logical operators are only used with integral operands.
1113   case Instruction::And:
1114   case Instruction::Or:
1115   case Instruction::Xor:
1116     Assert1(B.getType()->isIntOrIntVector(),
1117             "Logical operators only work with integral types!", &B);
1118     Assert1(B.getType() == B.getOperand(0)->getType(),
1119             "Logical operators must have same type for operands and result!",
1120             &B);
1121     break;
1122   case Instruction::Shl:
1123   case Instruction::LShr:
1124   case Instruction::AShr:
1125     Assert1(B.getType()->isIntOrIntVector(),
1126             "Shifts only work with integral types!", &B);
1127     Assert1(B.getType() == B.getOperand(0)->getType(),
1128             "Shift return type must be same as operands!", &B);
1129     break;
1130   default:
1131     llvm_unreachable("Unknown BinaryOperator opcode!");
1132   }
1133
1134   visitInstruction(B);
1135 }
1136
1137 void Verifier::visitICmpInst(ICmpInst& IC) {
1138   // Check that the operands are the same type
1139   const Type* Op0Ty = IC.getOperand(0)->getType();
1140   const Type* Op1Ty = IC.getOperand(1)->getType();
1141   Assert1(Op0Ty == Op1Ty,
1142           "Both operands to ICmp instruction are not of the same type!", &IC);
1143   // Check that the operands are the right type
1144   Assert1(Op0Ty->isIntOrIntVector() || isa<PointerType>(Op0Ty),
1145           "Invalid operand types for ICmp instruction", &IC);
1146
1147   visitInstruction(IC);
1148 }
1149
1150 void Verifier::visitFCmpInst(FCmpInst& FC) {
1151   // Check that the operands are the same type
1152   const Type* Op0Ty = FC.getOperand(0)->getType();
1153   const Type* Op1Ty = FC.getOperand(1)->getType();
1154   Assert1(Op0Ty == Op1Ty,
1155           "Both operands to FCmp instruction are not of the same type!", &FC);
1156   // Check that the operands are the right type
1157   Assert1(Op0Ty->isFPOrFPVector(),
1158           "Invalid operand types for FCmp instruction", &FC);
1159   visitInstruction(FC);
1160 }
1161
1162 void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
1163   Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0),
1164                                               EI.getOperand(1)),
1165           "Invalid extractelement operands!", &EI);
1166   visitInstruction(EI);
1167 }
1168
1169 void Verifier::visitInsertElementInst(InsertElementInst &IE) {
1170   Assert1(InsertElementInst::isValidOperands(IE.getOperand(0),
1171                                              IE.getOperand(1),
1172                                              IE.getOperand(2)),
1173           "Invalid insertelement operands!", &IE);
1174   visitInstruction(IE);
1175 }
1176
1177 void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
1178   Assert1(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1),
1179                                              SV.getOperand(2)),
1180           "Invalid shufflevector operands!", &SV);
1181
1182   const VectorType *VTy = dyn_cast<VectorType>(SV.getOperand(0)->getType());
1183   Assert1(VTy, "Operands are not a vector type", &SV);
1184
1185   // Check to see if Mask is valid.
1186   if (const ConstantVector *MV = dyn_cast<ConstantVector>(SV.getOperand(2))) {
1187     for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
1188       if (ConstantInt* CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1189         Assert1(!CI->uge(VTy->getNumElements()*2),
1190                 "Invalid shufflevector shuffle mask!", &SV);
1191       } else {
1192         Assert1(isa<UndefValue>(MV->getOperand(i)),
1193                 "Invalid shufflevector shuffle mask!", &SV);
1194       }
1195     }
1196   } else {
1197     Assert1(isa<UndefValue>(SV.getOperand(2)) || 
1198             isa<ConstantAggregateZero>(SV.getOperand(2)),
1199             "Invalid shufflevector shuffle mask!", &SV);
1200   }
1201
1202   visitInstruction(SV);
1203 }
1204
1205 void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) {
1206   SmallVector<Value*, 16> Idxs(GEP.idx_begin(), GEP.idx_end());
1207   const Type *ElTy =
1208     GetElementPtrInst::getIndexedType(GEP.getOperand(0)->getType(),
1209                                       Idxs.begin(), Idxs.end());
1210   Assert1(ElTy, "Invalid indices for GEP pointer type!", &GEP);
1211   Assert2(isa<PointerType>(GEP.getType()) &&
1212           cast<PointerType>(GEP.getType())->getElementType() == ElTy,
1213           "GEP is not of right type for indices!", &GEP, ElTy);
1214   visitInstruction(GEP);
1215 }
1216
1217 void Verifier::visitLoadInst(LoadInst &LI) {
1218   const Type *ElTy =
1219     cast<PointerType>(LI.getOperand(0)->getType())->getElementType();
1220   Assert2(ElTy == LI.getType(),
1221           "Load result type does not match pointer operand type!", &LI, ElTy);
1222   Assert1(ElTy != Type::getMetadataTy(LI.getContext()),
1223           "Can't load metadata!", &LI);
1224   visitInstruction(LI);
1225 }
1226
1227 void Verifier::visitStoreInst(StoreInst &SI) {
1228   const Type *ElTy =
1229     cast<PointerType>(SI.getOperand(1)->getType())->getElementType();
1230   Assert2(ElTy == SI.getOperand(0)->getType(),
1231           "Stored value type does not match pointer operand type!", &SI, ElTy);
1232   Assert1(ElTy != Type::getMetadataTy(SI.getContext()),
1233           "Can't store metadata!", &SI);
1234   visitInstruction(SI);
1235 }
1236
1237 void Verifier::visitAllocationInst(AllocationInst &AI) {
1238   const PointerType *PTy = AI.getType();
1239   Assert1(PTy->getAddressSpace() == 0, 
1240           "Allocation instruction pointer not in the generic address space!",
1241           &AI);
1242   Assert1(PTy->getElementType()->isSized(), "Cannot allocate unsized type",
1243           &AI);
1244   visitInstruction(AI);
1245 }
1246
1247 void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
1248   Assert1(ExtractValueInst::getIndexedType(EVI.getAggregateOperand()->getType(),
1249                                            EVI.idx_begin(), EVI.idx_end()) ==
1250           EVI.getType(),
1251           "Invalid ExtractValueInst operands!", &EVI);
1252   
1253   visitInstruction(EVI);
1254 }
1255
1256 void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
1257   Assert1(ExtractValueInst::getIndexedType(IVI.getAggregateOperand()->getType(),
1258                                            IVI.idx_begin(), IVI.idx_end()) ==
1259           IVI.getOperand(1)->getType(),
1260           "Invalid InsertValueInst operands!", &IVI);
1261   
1262   visitInstruction(IVI);
1263 }
1264
1265 /// verifyInstruction - Verify that an instruction is well formed.
1266 ///
1267 void Verifier::visitInstruction(Instruction &I) {
1268   BasicBlock *BB = I.getParent();
1269   Assert1(BB, "Instruction not embedded in basic block!", &I);
1270
1271   if (!isa<PHINode>(I)) {   // Check that non-phi nodes are not self referential
1272     for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
1273          UI != UE; ++UI)
1274       Assert1(*UI != (User*)&I || !DT->isReachableFromEntry(BB),
1275               "Only PHI nodes may reference their own value!", &I);
1276   }
1277   
1278   // Verify that if this is a terminator that it is at the end of the block.
1279   if (isa<TerminatorInst>(I))
1280     Assert1(BB->getTerminator() == &I, "Terminator not at end of block!", &I);
1281   
1282
1283   // Check that void typed values don't have names
1284   Assert1(I.getType() != Type::getVoidTy(I.getContext()) || !I.hasName(),
1285           "Instruction has a name, but provides a void value!", &I);
1286
1287   // Check that the return value of the instruction is either void or a legal
1288   // value type.
1289   Assert1(I.getType() == Type::getVoidTy(I.getContext()) || 
1290           I.getType()->isFirstClassType()
1291           || ((isa<CallInst>(I) || isa<InvokeInst>(I)) 
1292               && isa<StructType>(I.getType())),
1293           "Instruction returns a non-scalar type!", &I);
1294
1295   // Check that the instruction doesn't produce metadata or metadata*. Calls
1296   // all already checked against the callee type.
1297   Assert1(I.getType() != Type::getMetadataTy(I.getContext()) ||
1298           isa<CallInst>(I) || isa<InvokeInst>(I),
1299           "Invalid use of metadata!", &I);
1300
1301   if (const PointerType *PTy = dyn_cast<PointerType>(I.getType()))
1302     Assert1(PTy->getElementType() != Type::getMetadataTy(I.getContext()),
1303             "Instructions may not produce pointer to metadata.", &I);
1304
1305
1306   // Check that all uses of the instruction, if they are instructions
1307   // themselves, actually have parent basic blocks.  If the use is not an
1308   // instruction, it is an error!
1309   for (User::use_iterator UI = I.use_begin(), UE = I.use_end();
1310        UI != UE; ++UI) {
1311     Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!",
1312             *UI);
1313     Instruction *Used = cast<Instruction>(*UI);
1314     Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
1315             " embedded in a basic block!", &I, Used);
1316   }
1317
1318   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
1319     Assert1(I.getOperand(i) != 0, "Instruction has null operand!", &I);
1320
1321     // Check to make sure that only first-class-values are operands to
1322     // instructions.
1323     if (!I.getOperand(i)->getType()->isFirstClassType()) {
1324       Assert1(0, "Instruction operands must be first-class values!", &I);
1325     }
1326
1327     if (const PointerType *PTy =
1328             dyn_cast<PointerType>(I.getOperand(i)->getType()))
1329       Assert1(PTy->getElementType() != Type::getMetadataTy(I.getContext()),
1330               "Invalid use of metadata pointer.", &I);
1331     
1332     if (Function *F = dyn_cast<Function>(I.getOperand(i))) {
1333       // Check to make sure that the "address of" an intrinsic function is never
1334       // taken.
1335       Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)),
1336               "Cannot take the address of an intrinsic!", &I);
1337       Assert1(F->getParent() == Mod, "Referencing function in another module!",
1338               &I);
1339     } else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) {
1340       Assert1(OpBB->getParent() == BB->getParent(),
1341               "Referring to a basic block in another function!", &I);
1342     } else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) {
1343       Assert1(OpArg->getParent() == BB->getParent(),
1344               "Referring to an argument in another function!", &I);
1345     } else if (GlobalValue *GV = dyn_cast<GlobalValue>(I.getOperand(i))) {
1346       Assert1(GV->getParent() == Mod, "Referencing global in another module!",
1347               &I);
1348     } else if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) {
1349       BasicBlock *OpBlock = Op->getParent();
1350
1351       // Check that a definition dominates all of its uses.
1352       if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
1353         // Invoke results are only usable in the normal destination, not in the
1354         // exceptional destination.
1355         BasicBlock *NormalDest = II->getNormalDest();
1356
1357         Assert2(NormalDest != II->getUnwindDest(),
1358                 "No uses of invoke possible due to dominance structure!",
1359                 Op, &I);
1360
1361         // PHI nodes differ from other nodes because they actually "use" the
1362         // value in the predecessor basic blocks they correspond to.
1363         BasicBlock *UseBlock = BB;
1364         if (isa<PHINode>(I))
1365           UseBlock = cast<BasicBlock>(I.getOperand(i+1));
1366
1367         if (isa<PHINode>(I) && UseBlock == OpBlock) {
1368           // Special case of a phi node in the normal destination or the unwind
1369           // destination.
1370           Assert2(BB == NormalDest || !DT->isReachableFromEntry(UseBlock),
1371                   "Invoke result not available in the unwind destination!",
1372                   Op, &I);
1373         } else {
1374           Assert2(DT->dominates(NormalDest, UseBlock) ||
1375                   !DT->isReachableFromEntry(UseBlock),
1376                   "Invoke result does not dominate all uses!", Op, &I);
1377
1378           // If the normal successor of an invoke instruction has multiple
1379           // predecessors, then the normal edge from the invoke is critical,
1380           // so the invoke value can only be live if the destination block
1381           // dominates all of it's predecessors (other than the invoke).
1382           if (!NormalDest->getSinglePredecessor() &&
1383               DT->isReachableFromEntry(UseBlock))
1384             // If it is used by something non-phi, then the other case is that
1385             // 'NormalDest' dominates all of its predecessors other than the
1386             // invoke.  In this case, the invoke value can still be used.
1387             for (pred_iterator PI = pred_begin(NormalDest),
1388                  E = pred_end(NormalDest); PI != E; ++PI)
1389               if (*PI != II->getParent() && !DT->dominates(NormalDest, *PI) &&
1390                   DT->isReachableFromEntry(*PI)) {
1391                 CheckFailed("Invoke result does not dominate all uses!", Op,&I);
1392                 return;
1393               }
1394         }
1395       } else if (isa<PHINode>(I)) {
1396         // PHI nodes are more difficult than other nodes because they actually
1397         // "use" the value in the predecessor basic blocks they correspond to.
1398         BasicBlock *PredBB = cast<BasicBlock>(I.getOperand(i+1));
1399         Assert2(DT->dominates(OpBlock, PredBB) ||
1400                 !DT->isReachableFromEntry(PredBB),
1401                 "Instruction does not dominate all uses!", Op, &I);
1402       } else {
1403         if (OpBlock == BB) {
1404           // If they are in the same basic block, make sure that the definition
1405           // comes before the use.
1406           Assert2(InstsInThisBlock.count(Op) || !DT->isReachableFromEntry(BB),
1407                   "Instruction does not dominate all uses!", Op, &I);
1408         }
1409
1410         // Definition must dominate use unless use is unreachable!
1411         Assert2(InstsInThisBlock.count(Op) || DT->dominates(Op, &I) ||
1412                 !DT->isReachableFromEntry(BB),
1413                 "Instruction does not dominate all uses!", Op, &I);
1414       }
1415     } else if (isa<InlineAsm>(I.getOperand(i))) {
1416       Assert1(i == 0 && (isa<CallInst>(I) || isa<InvokeInst>(I)),
1417               "Cannot take the address of an inline asm!", &I);
1418     }
1419   }
1420   InstsInThisBlock.insert(&I);
1421 }
1422
1423 // Flags used by TableGen to mark intrinsic parameters with the
1424 // LLVMExtendedElementVectorType and LLVMTruncatedElementVectorType classes.
1425 static const unsigned ExtendedElementVectorType = 0x40000000;
1426 static const unsigned TruncatedElementVectorType = 0x20000000;
1427
1428 /// visitIntrinsicFunction - Allow intrinsics to be verified in different ways.
1429 ///
1430 void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
1431   Function *IF = CI.getCalledFunction();
1432   Assert1(IF->isDeclaration(), "Intrinsic functions should never be defined!",
1433           IF);
1434   
1435 #define GET_INTRINSIC_VERIFIER
1436 #include "llvm/Intrinsics.gen"
1437 #undef GET_INTRINSIC_VERIFIER
1438   
1439   switch (ID) {
1440   default:
1441     break;
1442   case Intrinsic::dbg_declare:  // llvm.dbg.declare
1443     if (Constant *C = dyn_cast<Constant>(CI.getOperand(1)))
1444       Assert1(C && !isa<ConstantPointerNull>(C),
1445               "invalid llvm.dbg.declare intrinsic call", &CI);
1446     break;
1447   case Intrinsic::memcpy:
1448   case Intrinsic::memmove:
1449   case Intrinsic::memset:
1450     Assert1(isa<ConstantInt>(CI.getOperand(4)),
1451             "alignment argument of memory intrinsics must be a constant int",
1452             &CI);
1453     break;
1454   case Intrinsic::gcroot:
1455   case Intrinsic::gcwrite:
1456   case Intrinsic::gcread:
1457     if (ID == Intrinsic::gcroot) {
1458       AllocaInst *AI =
1459         dyn_cast<AllocaInst>(CI.getOperand(1)->stripPointerCasts());
1460       Assert1(AI && isa<PointerType>(AI->getType()->getElementType()),
1461               "llvm.gcroot parameter #1 must be a pointer alloca.", &CI);
1462       Assert1(isa<Constant>(CI.getOperand(2)),
1463               "llvm.gcroot parameter #2 must be a constant.", &CI);
1464     }
1465       
1466     Assert1(CI.getParent()->getParent()->hasGC(),
1467             "Enclosing function does not use GC.", &CI);
1468     break;
1469   case Intrinsic::init_trampoline:
1470     Assert1(isa<Function>(CI.getOperand(2)->stripPointerCasts()),
1471             "llvm.init_trampoline parameter #2 must resolve to a function.",
1472             &CI);
1473     break;
1474   case Intrinsic::prefetch:
1475     Assert1(isa<ConstantInt>(CI.getOperand(2)) &&
1476             isa<ConstantInt>(CI.getOperand(3)) &&
1477             cast<ConstantInt>(CI.getOperand(2))->getZExtValue() < 2 &&
1478             cast<ConstantInt>(CI.getOperand(3))->getZExtValue() < 4,
1479             "invalid arguments to llvm.prefetch",
1480             &CI);
1481     break;
1482   case Intrinsic::stackprotector:
1483     Assert1(isa<AllocaInst>(CI.getOperand(2)->stripPointerCasts()),
1484             "llvm.stackprotector parameter #2 must resolve to an alloca.",
1485             &CI);
1486     break;
1487   }
1488 }
1489
1490 /// Produce a string to identify an intrinsic parameter or return value.
1491 /// The ArgNo value numbers the return values from 0 to NumRets-1 and the
1492 /// parameters beginning with NumRets.
1493 ///
1494 static std::string IntrinsicParam(unsigned ArgNo, unsigned NumRets) {
1495   if (ArgNo < NumRets) {
1496     if (NumRets == 1)
1497       return "Intrinsic result type";
1498     else
1499       return "Intrinsic result type #" + utostr(ArgNo);
1500   } else
1501     return "Intrinsic parameter #" + utostr(ArgNo - NumRets);
1502 }
1503
1504 bool Verifier::PerformTypeCheck(Intrinsic::ID ID, Function *F, const Type *Ty,
1505                                 int VT, unsigned ArgNo, std::string &Suffix) {
1506   const FunctionType *FTy = F->getFunctionType();
1507
1508   unsigned NumElts = 0;
1509   const Type *EltTy = Ty;
1510   const VectorType *VTy = dyn_cast<VectorType>(Ty);
1511   if (VTy) {
1512     EltTy = VTy->getElementType();
1513     NumElts = VTy->getNumElements();
1514   }
1515
1516   const Type *RetTy = FTy->getReturnType();
1517   const StructType *ST = dyn_cast<StructType>(RetTy);
1518   unsigned NumRets = 1;
1519   if (ST)
1520     NumRets = ST->getNumElements();
1521
1522   if (VT < 0) {
1523     int Match = ~VT;
1524
1525     // Check flags that indicate a type that is an integral vector type with
1526     // elements that are larger or smaller than the elements of the matched
1527     // type.
1528     if ((Match & (ExtendedElementVectorType |
1529                   TruncatedElementVectorType)) != 0) {
1530       const IntegerType *IEltTy = dyn_cast<IntegerType>(EltTy);
1531       if (!VTy || !IEltTy) {
1532         CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not "
1533                     "an integral vector type.", F);
1534         return false;
1535       }
1536       // Adjust the current Ty (in the opposite direction) rather than
1537       // the type being matched against.
1538       if ((Match & ExtendedElementVectorType) != 0) {
1539         if ((IEltTy->getBitWidth() & 1) != 0) {
1540           CheckFailed(IntrinsicParam(ArgNo, NumRets) + " vector "
1541                       "element bit-width is odd.", F);
1542           return false;
1543         }
1544         Ty = VectorType::getTruncatedElementVectorType(VTy);
1545       } else
1546         Ty = VectorType::getExtendedElementVectorType(VTy);
1547       Match &= ~(ExtendedElementVectorType | TruncatedElementVectorType);
1548     }
1549
1550     if (Match <= static_cast<int>(NumRets - 1)) {
1551       if (ST)
1552         RetTy = ST->getElementType(Match);
1553
1554       if (Ty != RetTy) {
1555         CheckFailed(IntrinsicParam(ArgNo, NumRets) + " does not "
1556                     "match return type.", F);
1557         return false;
1558       }
1559     } else {
1560       if (Ty != FTy->getParamType(Match - NumRets)) {
1561         CheckFailed(IntrinsicParam(ArgNo, NumRets) + " does not "
1562                     "match parameter %" + utostr(Match - NumRets) + ".", F);
1563         return false;
1564       }
1565     }
1566   } else if (VT == MVT::iAny) {
1567     if (!EltTy->isInteger()) {
1568       CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not "
1569                   "an integer type.", F);
1570       return false;
1571     }
1572
1573     unsigned GotBits = cast<IntegerType>(EltTy)->getBitWidth();
1574     Suffix += ".";
1575
1576     if (EltTy != Ty)
1577       Suffix += "v" + utostr(NumElts);
1578
1579     Suffix += "i" + utostr(GotBits);
1580
1581     // Check some constraints on various intrinsics.
1582     switch (ID) {
1583     default: break; // Not everything needs to be checked.
1584     case Intrinsic::bswap:
1585       if (GotBits < 16 || GotBits % 16 != 0) {
1586         CheckFailed("Intrinsic requires even byte width argument", F);
1587         return false;
1588       }
1589       break;
1590     }
1591   } else if (VT == MVT::fAny) {
1592     if (!EltTy->isFloatingPoint()) {
1593       CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not "
1594                   "a floating-point type.", F);
1595       return false;
1596     }
1597
1598     Suffix += ".";
1599
1600     if (EltTy != Ty)
1601       Suffix += "v" + utostr(NumElts);
1602
1603     Suffix += EVT::getEVT(EltTy).getEVTString();
1604   } else if (VT == MVT::vAny) {
1605     if (!VTy) {
1606       CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not a vector type.", F);
1607       return false;
1608     }
1609     Suffix += ".v" + utostr(NumElts) + EVT::getEVT(EltTy).getEVTString();
1610   } else if (VT == MVT::iPTR) {
1611     if (!isa<PointerType>(Ty)) {
1612       CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not a "
1613                   "pointer and a pointer is required.", F);
1614       return false;
1615     }
1616   } else if (VT == MVT::iPTRAny) {
1617     // Outside of TableGen, we don't distinguish iPTRAny (to any address space)
1618     // and iPTR. In the verifier, we can not distinguish which case we have so
1619     // allow either case to be legal.
1620     if (const PointerType* PTyp = dyn_cast<PointerType>(Ty)) {
1621       Suffix += ".p" + utostr(PTyp->getAddressSpace()) + 
1622         EVT::getEVT(PTyp->getElementType()).getEVTString();
1623     } else {
1624       CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not a "
1625                   "pointer and a pointer is required.", F);
1626       return false;
1627     }
1628   } else if (EVT((MVT::SimpleValueType)VT).isVector()) {
1629     EVT VVT = EVT((MVT::SimpleValueType)VT);
1630
1631     // If this is a vector argument, verify the number and type of elements.
1632     if (VVT.getVectorElementType() != EVT::getEVT(EltTy)) {
1633       CheckFailed("Intrinsic prototype has incorrect vector element type!", F);
1634       return false;
1635     }
1636
1637     if (VVT.getVectorNumElements() != NumElts) {
1638       CheckFailed("Intrinsic prototype has incorrect number of "
1639                   "vector elements!", F);
1640       return false;
1641     }
1642   } else if (EVT((MVT::SimpleValueType)VT).getTypeForEVT(Ty->getContext()) != 
1643              EltTy) {
1644     CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is wrong!", F);
1645     return false;
1646   } else if (EltTy != Ty) {
1647     CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is a vector "
1648                 "and a scalar is required.", F);
1649     return false;
1650   }
1651
1652   return true;
1653 }
1654
1655 /// VerifyIntrinsicPrototype - TableGen emits calls to this function into
1656 /// Intrinsics.gen.  This implements a little state machine that verifies the
1657 /// prototype of intrinsics.
1658 void Verifier::VerifyIntrinsicPrototype(Intrinsic::ID ID, Function *F,
1659                                         unsigned RetNum,
1660                                         unsigned ParamNum, ...) {
1661   va_list VA;
1662   va_start(VA, ParamNum);
1663   const FunctionType *FTy = F->getFunctionType();
1664   
1665   // For overloaded intrinsics, the Suffix of the function name must match the
1666   // types of the arguments. This variable keeps track of the expected
1667   // suffix, to be checked at the end.
1668   std::string Suffix;
1669
1670   if (FTy->getNumParams() + FTy->isVarArg() != ParamNum) {
1671     CheckFailed("Intrinsic prototype has incorrect number of arguments!", F);
1672     return;
1673   }
1674
1675   const Type *Ty = FTy->getReturnType();
1676   const StructType *ST = dyn_cast<StructType>(Ty);
1677
1678   // Verify the return types.
1679   if (ST && ST->getNumElements() != RetNum) {
1680     CheckFailed("Intrinsic prototype has incorrect number of return types!", F);
1681     return;
1682   }
1683
1684   for (unsigned ArgNo = 0; ArgNo < RetNum; ++ArgNo) {
1685     int VT = va_arg(VA, int); // An MVT::SimpleValueType when non-negative.
1686
1687     if (ST) Ty = ST->getElementType(ArgNo);
1688
1689     if (!PerformTypeCheck(ID, F, Ty, VT, ArgNo, Suffix))
1690       break;
1691   }
1692
1693   // Verify the parameter types.
1694   for (unsigned ArgNo = 0; ArgNo < ParamNum; ++ArgNo) {
1695     int VT = va_arg(VA, int); // An MVT::SimpleValueType when non-negative.
1696
1697     if (VT == MVT::isVoid && ArgNo > 0) {
1698       if (!FTy->isVarArg())
1699         CheckFailed("Intrinsic prototype has no '...'!", F);
1700       break;
1701     }
1702
1703     if (!PerformTypeCheck(ID, F, FTy->getParamType(ArgNo), VT, ArgNo + RetNum,
1704                           Suffix))
1705       break;
1706   }
1707
1708   va_end(VA);
1709
1710   // For intrinsics without pointer arguments, if we computed a Suffix then the
1711   // intrinsic is overloaded and we need to make sure that the name of the
1712   // function is correct. We add the suffix to the name of the intrinsic and
1713   // compare against the given function name. If they are not the same, the
1714   // function name is invalid. This ensures that overloading of intrinsics
1715   // uses a sane and consistent naming convention.  Note that intrinsics with
1716   // pointer argument may or may not be overloaded so we will check assuming it
1717   // has a suffix and not.
1718   if (!Suffix.empty()) {
1719     std::string Name(Intrinsic::getName(ID));
1720     if (Name + Suffix != F->getName()) {
1721       CheckFailed("Overloaded intrinsic has incorrect suffix: '" +
1722                   F->getName().substr(Name.length()) + "'. It should be '" +
1723                   Suffix + "'", F);
1724     }
1725   }
1726
1727   // Check parameter attributes.
1728   Assert1(F->getAttributes() == Intrinsic::getAttributes(ID),
1729           "Intrinsic has wrong parameter attributes!", F);
1730 }
1731
1732
1733 //===----------------------------------------------------------------------===//
1734 //  Implement the public interfaces to this file...
1735 //===----------------------------------------------------------------------===//
1736
1737 FunctionPass *llvm::createVerifierPass(VerifierFailureAction action) {
1738   return new Verifier(action);
1739 }
1740
1741
1742 // verifyFunction - Create
1743 bool llvm::verifyFunction(const Function &f, VerifierFailureAction action) {
1744   Function &F = const_cast<Function&>(f);
1745   assert(!F.isDeclaration() && "Cannot verify external functions");
1746
1747   ExistingModuleProvider MP(F.getParent());
1748   FunctionPassManager FPM(&MP);
1749   Verifier *V = new Verifier(action);
1750   FPM.add(V);
1751   FPM.run(F);
1752   MP.releaseModule();
1753   return V->Broken;
1754 }
1755
1756 /// verifyModule - Check a module for errors, printing messages on stderr.
1757 /// Return true if the module is corrupt.
1758 ///
1759 bool llvm::verifyModule(const Module &M, VerifierFailureAction action,
1760                         std::string *ErrorInfo) {
1761   PassManager PM;
1762   Verifier *V = new Verifier(action);
1763   PM.add(V);
1764   PM.run(const_cast<Module&>(M));
1765   
1766   if (ErrorInfo && V->Broken)
1767     *ErrorInfo = V->msgs.str();
1768   return V->Broken;
1769 }
1770
1771 // vim: sw=2