2001-06-06 20:29:01 +00:00
|
|
|
//===-- Verifier.cpp - Implement the Module Verifier -------------*- C++ -*-==//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-03-29 19:06:18 +00:00
|
|
|
// This file defines the function verifier interface, that can be used for some
|
2001-06-06 20:29:01 +00:00
|
|
|
// sanity checking of input to the system.
|
|
|
|
//
|
2004-06-24 21:47:35 +00:00
|
|
|
// Note that this does not provide full `Java style' security and verifications,
|
|
|
|
// instead it just tries to ensure that code is well-formed.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2004-06-24 21:47:35 +00:00
|
|
|
// * Both of a binary operator's parameters are of the same type
|
2002-04-24 19:12:21 +00:00
|
|
|
// * Verify that the indices of mem access instructions match other operands
|
2004-06-24 21:47:35 +00:00
|
|
|
// * Verify that arithmetic and other things are only performed on first-class
|
2002-08-02 17:37:08 +00:00
|
|
|
// types. Verify that shifts & logicals only happen on integrals f.e.
|
2004-06-24 21:47:35 +00:00
|
|
|
// * All of the constants in a switch statement are of the correct type
|
2002-08-02 17:37:08 +00:00
|
|
|
// * The code is in valid SSA form
|
2004-06-24 21:47:35 +00:00
|
|
|
// * It should be illegal to put a label into any other type (like a structure)
|
2001-06-06 20:29:01 +00:00
|
|
|
// or to return one. [except constant arrays!]
|
2008-03-28 06:46:51 +00:00
|
|
|
// * Only phi nodes can be self referential: 'add i32 %0, %0 ; <int>:0' is bad
|
2002-02-20 17:55:43 +00:00
|
|
|
// * PHI nodes must have an entry for each predecessor, with no extras.
|
2002-06-25 15:56:27 +00:00
|
|
|
// * PHI nodes must be the first thing in a basic block, all grouped together
|
2002-10-06 21:00:31 +00:00
|
|
|
// * PHI nodes must have at least one entry
|
2002-06-25 15:56:27 +00:00
|
|
|
// * All basic blocks should only end with terminator insts, not contain them
|
2002-03-29 19:06:18 +00:00
|
|
|
// * The entry node to a function must not have predecessors
|
2003-10-10 17:54:14 +00:00
|
|
|
// * All Instructions must be embedded into a basic block
|
2004-06-24 21:47:35 +00:00
|
|
|
// * Functions cannot take a void-typed parameter
|
2002-04-13 22:48:46 +00:00
|
|
|
// * Verify that a function's argument list agrees with it's declared type.
|
2002-03-15 20:25:09 +00:00
|
|
|
// * It is illegal to specify a name for a void value.
|
2003-10-10 17:54:14 +00:00
|
|
|
// * It is illegal to have a internal global value with no initializer
|
2002-04-12 18:20:49 +00:00
|
|
|
// * It is illegal to have a ret instruction that returns a value that does not
|
|
|
|
// agree with the function return value type.
|
2002-05-08 19:49:50 +00:00
|
|
|
// * Function call argument types match the function prototype
|
2002-04-24 19:12:21 +00:00
|
|
|
// * All other things that are tested by asserts spread about the code...
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2005-05-08 22:27:09 +00:00
|
|
|
#include "llvm/CallingConv.h"
|
2004-02-14 02:47:17 +00:00
|
|
|
#include "llvm/Constants.h"
|
2002-04-13 22:48:46 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2006-01-26 00:08:45 +00:00
|
|
|
#include "llvm/InlineAsm.h"
|
2007-09-18 10:14:30 +00:00
|
|
|
#include "llvm/IntrinsicInst.h"
|
2008-03-12 17:45:29 +00:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/ModuleProvider.h"
|
|
|
|
#include "llvm/Pass.h"
|
2004-02-14 02:47:17 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2002-08-02 17:37:08 +00:00
|
|
|
#include "llvm/Analysis/Dominators.h"
|
2008-03-12 17:45:29 +00:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
2007-08-04 01:51:18 +00:00
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
2007-12-21 19:19:01 +00:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2002-02-20 17:55:43 +00:00
|
|
|
#include "llvm/Support/CFG.h"
|
2002-04-18 20:37:37 +00:00
|
|
|
#include "llvm/Support/InstVisitor.h"
|
2006-11-28 02:09:03 +00:00
|
|
|
#include "llvm/Support/Streams.h"
|
2007-02-10 08:19:44 +00:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2007-02-10 08:30:29 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2006-03-31 04:46:47 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2006-08-27 12:54:02 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2002-02-20 17:55:43 +00:00
|
|
|
#include <algorithm>
|
2006-12-07 23:41:45 +00:00
|
|
|
#include <sstream>
|
2006-03-31 07:22:05 +00:00
|
|
|
#include <cstdarg>
|
2003-11-21 20:23:48 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
namespace { // Anonymous namespace for class
|
2007-10-31 21:04:18 +00:00
|
|
|
struct VISIBILITY_HIDDEN PreVerifier : public FunctionPass {
|
2007-11-01 03:54:23 +00:00
|
|
|
static char ID; // Pass ID, replacement for typeid
|
2007-11-01 10:50:26 +00:00
|
|
|
|
2008-09-04 17:05:41 +00:00
|
|
|
PreVerifier() : FunctionPass(&ID) { }
|
2007-11-01 10:50:26 +00:00
|
|
|
|
2008-12-01 03:58:38 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
|
2007-11-01 10:50:26 +00:00
|
|
|
// Check that the prerequisites for successful DominatorTree construction
|
|
|
|
// are satisfied.
|
2007-11-01 03:54:23 +00:00
|
|
|
bool runOnFunction(Function &F) {
|
2007-11-01 10:50:26 +00:00
|
|
|
bool Broken = false;
|
|
|
|
|
|
|
|
for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
|
|
|
|
if (I->empty() || !I->back().isTerminator()) {
|
|
|
|
cerr << "Basic Block does not have terminator!\n";
|
|
|
|
WriteAsOperand(*cerr, I, true);
|
|
|
|
cerr << "\n";
|
|
|
|
Broken = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Broken)
|
|
|
|
abort();
|
|
|
|
|
|
|
|
return false;
|
2007-11-01 03:54:23 +00:00
|
|
|
}
|
2007-10-31 21:04:18 +00:00
|
|
|
};
|
2008-05-13 00:00:25 +00:00
|
|
|
}
|
2007-11-01 10:50:26 +00:00
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
char PreVerifier::ID = 0;
|
|
|
|
static RegisterPass<PreVerifier>
|
|
|
|
PreVer("preverify", "Preliminary module verification");
|
2008-05-14 00:42:30 +00:00
|
|
|
static const PassInfo *const PreVerifyID = &PreVer;
|
2007-11-01 10:50:26 +00:00
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
namespace {
|
2006-06-28 21:38:54 +00:00
|
|
|
struct VISIBILITY_HIDDEN
|
|
|
|
Verifier : public FunctionPass, InstVisitor<Verifier> {
|
2007-05-03 01:11:54 +00:00
|
|
|
static char ID; // Pass ID, replacement for typeid
|
2002-08-02 17:37:08 +00:00
|
|
|
bool Broken; // Is this module found to be broken?
|
|
|
|
bool RealPass; // Are we not being run by a PassManager?
|
2004-04-02 15:45:08 +00:00
|
|
|
VerifierFailureAction action;
|
2004-05-25 08:53:29 +00:00
|
|
|
// What to do if verification fails.
|
2004-03-02 00:22:19 +00:00
|
|
|
Module *Mod; // Module we are verifying right now
|
2007-06-11 15:40:48 +00:00
|
|
|
DominatorTree *DT; // Dominator Tree, caution can be null!
|
2004-04-02 15:45:08 +00:00
|
|
|
std::stringstream msgs; // A stringstream to collect messages
|
|
|
|
|
2004-09-29 20:07:45 +00:00
|
|
|
/// InstInThisBlock - when verifying a basic block, keep track of all of the
|
|
|
|
/// instructions we have seen so far. This allows us to do efficient
|
|
|
|
/// dominance checks for the case when an instruction has an operand that is
|
|
|
|
/// an instruction in the same block.
|
2007-02-10 08:19:44 +00:00
|
|
|
SmallPtrSet<Instruction*, 16> InstsInThisBlock;
|
2004-09-29 20:07:45 +00:00
|
|
|
|
2005-04-21 23:48:37 +00:00
|
|
|
Verifier()
|
2008-09-04 17:05:41 +00:00
|
|
|
: FunctionPass(&ID),
|
2007-05-01 21:15:47 +00:00
|
|
|
Broken(false), RealPass(true), action(AbortProcessAction),
|
2007-06-11 15:40:48 +00:00
|
|
|
DT(0), msgs( std::ios::app | std::ios::out ) {}
|
2008-03-25 22:06:05 +00:00
|
|
|
explicit Verifier(VerifierFailureAction ctn)
|
2008-09-04 17:05:41 +00:00
|
|
|
: FunctionPass(&ID),
|
2007-06-11 15:40:48 +00:00
|
|
|
Broken(false), RealPass(true), action(ctn), DT(0),
|
2007-05-01 21:15:47 +00:00
|
|
|
msgs( std::ios::app | std::ios::out ) {}
|
2008-03-25 22:06:05 +00:00
|
|
|
explicit Verifier(bool AB)
|
2008-09-04 17:05:41 +00:00
|
|
|
: FunctionPass(&ID),
|
2007-05-01 21:15:47 +00:00
|
|
|
Broken(false), RealPass(true),
|
2007-06-11 15:40:48 +00:00
|
|
|
action( AB ? AbortProcessAction : PrintMessageAction), DT(0),
|
2007-05-01 21:15:47 +00:00
|
|
|
msgs( std::ios::app | std::ios::out ) {}
|
2008-03-25 22:06:05 +00:00
|
|
|
explicit Verifier(DominatorTree &dt)
|
2008-09-04 17:05:41 +00:00
|
|
|
: FunctionPass(&ID),
|
2007-05-01 21:15:47 +00:00
|
|
|
Broken(false), RealPass(false), action(PrintMessageAction),
|
2007-06-11 15:40:48 +00:00
|
|
|
DT(&dt), msgs( std::ios::app | std::ios::out ) {}
|
2002-02-20 17:55:43 +00:00
|
|
|
|
|
|
|
|
2002-06-25 15:56:27 +00:00
|
|
|
bool doInitialization(Module &M) {
|
2003-11-16 23:07:42 +00:00
|
|
|
Mod = &M;
|
2007-01-06 07:24:44 +00:00
|
|
|
verifyTypeSymbolTable(M.getTypeSymbolTable());
|
2002-09-19 16:12:19 +00:00
|
|
|
|
|
|
|
// If this is a real pass, in a pass manager, we must abort before
|
|
|
|
// returning back to the pass manager, or else the pass manager may try to
|
|
|
|
// run other passes on the broken module.
|
|
|
|
if (RealPass)
|
2006-07-26 16:18:00 +00:00
|
|
|
return abortIfBroken();
|
2002-04-18 20:37:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-06-25 15:56:27 +00:00
|
|
|
bool runOnFunction(Function &F) {
|
2002-08-02 17:37:08 +00:00
|
|
|
// Get dominator information if we are being run by PassManager
|
2007-06-11 15:40:48 +00:00
|
|
|
if (RealPass) DT = &getAnalysis<DominatorTree>();
|
2007-04-20 23:59:29 +00:00
|
|
|
|
|
|
|
Mod = F.getParent();
|
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
visit(F);
|
2004-09-29 20:07:45 +00:00
|
|
|
InstsInThisBlock.clear();
|
2002-09-19 16:12:19 +00:00
|
|
|
|
|
|
|
// If this is a real pass, in a pass manager, we must abort before
|
|
|
|
// returning back to the pass manager, or else the pass manager may try to
|
|
|
|
// run other passes on the broken module.
|
|
|
|
if (RealPass)
|
2006-07-26 16:18:00 +00:00
|
|
|
return abortIfBroken();
|
2002-09-19 16:12:19 +00:00
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
2002-02-20 17:55:43 +00:00
|
|
|
|
2002-06-25 15:56:27 +00:00
|
|
|
bool doFinalization(Module &M) {
|
2002-04-28 16:04:26 +00:00
|
|
|
// Scan through, checking all of the external function's linkage now...
|
2004-06-03 06:38:43 +00:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
|
2003-04-16 20:42:40 +00:00
|
|
|
visitGlobalValue(*I);
|
2002-04-28 16:04:26 +00:00
|
|
|
|
2004-06-03 06:38:43 +00:00
|
|
|
// Check to make sure function prototypes are okay.
|
2007-01-30 20:08:39 +00:00
|
|
|
if (I->isDeclaration()) visitFunction(*I);
|
2004-06-03 06:38:43 +00:00
|
|
|
}
|
|
|
|
|
For PR411:
This patch is an incremental step towards supporting a flat symbol table.
It de-overloads the intrinsic functions by providing type-specific intrinsics
and arranging for automatically upgrading from the old overloaded name to
the new non-overloaded name. Specifically:
llvm.isunordered -> llvm.isunordered.f32, llvm.isunordered.f64
llvm.sqrt -> llvm.sqrt.f32, llvm.sqrt.f64
llvm.ctpop -> llvm.ctpop.i8, llvm.ctpop.i16, llvm.ctpop.i32, llvm.ctpop.i64
llvm.ctlz -> llvm.ctlz.i8, llvm.ctlz.i16, llvm.ctlz.i32, llvm.ctlz.i64
llvm.cttz -> llvm.cttz.i8, llvm.cttz.i16, llvm.cttz.i32, llvm.cttz.i64
New code should not use the overloaded intrinsic names. Warnings will be
emitted if they are used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25366 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-16 21:12:35 +00:00
|
|
|
for (Module::global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I)
|
2004-12-15 20:23:49 +00:00
|
|
|
visitGlobalVariable(*I);
|
2002-10-06 22:47:32 +00:00
|
|
|
|
2007-04-25 14:27:10 +00:00
|
|
|
for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
|
|
|
|
I != E; ++I)
|
|
|
|
visitGlobalAlias(*I);
|
|
|
|
|
2002-09-19 16:12:19 +00:00
|
|
|
// If the module is broken, abort at this time.
|
2006-07-26 16:18:00 +00:00
|
|
|
return abortIfBroken();
|
2002-04-24 19:12:21 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 21:27:06 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
2007-10-31 21:04:18 +00:00
|
|
|
AU.addRequiredID(PreVerifyID);
|
2002-08-02 17:37:08 +00:00
|
|
|
if (RealPass)
|
2007-06-11 15:40:48 +00:00
|
|
|
AU.addRequired<DominatorTree>();
|
2002-04-28 21:27:06 +00:00
|
|
|
}
|
|
|
|
|
2004-03-02 00:22:19 +00:00
|
|
|
/// abortIfBroken - If the module is broken and we are supposed to abort on
|
|
|
|
/// this condition, do so.
|
|
|
|
///
|
2006-07-26 16:18:00 +00:00
|
|
|
bool abortIfBroken() {
|
2008-08-27 17:36:58 +00:00
|
|
|
if (!Broken) return false;
|
|
|
|
msgs << "Broken module found, ";
|
|
|
|
switch (action) {
|
|
|
|
default: assert(0 && "Unknown action");
|
|
|
|
case AbortProcessAction:
|
|
|
|
msgs << "compilation aborted!\n";
|
|
|
|
cerr << msgs.str();
|
|
|
|
abort();
|
|
|
|
case PrintMessageAction:
|
|
|
|
msgs << "verification continues.\n";
|
|
|
|
cerr << msgs.str();
|
|
|
|
return false;
|
|
|
|
case ReturnStatusAction:
|
|
|
|
msgs << "compilation terminated.\n";
|
|
|
|
return Broken;
|
2002-09-19 16:12:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-16 20:42:40 +00:00
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
// Verification methods...
|
2007-01-06 07:24:44 +00:00
|
|
|
void verifyTypeSymbolTable(TypeSymbolTable &ST);
|
2003-04-16 20:42:40 +00:00
|
|
|
void visitGlobalValue(GlobalValue &GV);
|
2004-12-15 20:23:49 +00:00
|
|
|
void visitGlobalVariable(GlobalVariable &GV);
|
2007-04-25 14:27:10 +00:00
|
|
|
void visitGlobalAlias(GlobalAlias &GA);
|
2002-06-25 15:56:27 +00:00
|
|
|
void visitFunction(Function &F);
|
|
|
|
void visitBasicBlock(BasicBlock &BB);
|
2008-08-28 04:02:44 +00:00
|
|
|
using InstVisitor<Verifier>::visit;
|
|
|
|
|
|
|
|
void visit(Instruction &I);
|
|
|
|
|
2006-11-27 01:05:10 +00:00
|
|
|
void visitTruncInst(TruncInst &I);
|
|
|
|
void visitZExtInst(ZExtInst &I);
|
|
|
|
void visitSExtInst(SExtInst &I);
|
|
|
|
void visitFPTruncInst(FPTruncInst &I);
|
|
|
|
void visitFPExtInst(FPExtInst &I);
|
|
|
|
void visitFPToUIInst(FPToUIInst &I);
|
|
|
|
void visitFPToSIInst(FPToSIInst &I);
|
|
|
|
void visitUIToFPInst(UIToFPInst &I);
|
|
|
|
void visitSIToFPInst(SIToFPInst &I);
|
|
|
|
void visitIntToPtrInst(IntToPtrInst &I);
|
|
|
|
void visitPtrToIntInst(PtrToIntInst &I);
|
|
|
|
void visitBitCastInst(BitCastInst &I);
|
2002-06-25 15:56:27 +00:00
|
|
|
void visitPHINode(PHINode &PN);
|
|
|
|
void visitBinaryOperator(BinaryOperator &B);
|
2006-11-20 01:22:35 +00:00
|
|
|
void visitICmpInst(ICmpInst &IC);
|
|
|
|
void visitFCmpInst(FCmpInst &FC);
|
2006-01-10 19:05:34 +00:00
|
|
|
void visitExtractElementInst(ExtractElementInst &EI);
|
2006-01-17 20:07:22 +00:00
|
|
|
void visitInsertElementInst(InsertElementInst &EI);
|
2006-04-08 01:18:18 +00:00
|
|
|
void visitShuffleVectorInst(ShuffleVectorInst &EI);
|
2003-10-18 05:57:43 +00:00
|
|
|
void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); }
|
2002-06-25 15:56:27 +00:00
|
|
|
void visitCallInst(CallInst &CI);
|
2007-12-21 19:19:01 +00:00
|
|
|
void visitInvokeInst(InvokeInst &II);
|
2002-06-25 15:56:27 +00:00
|
|
|
void visitGetElementPtrInst(GetElementPtrInst &GEP);
|
|
|
|
void visitLoadInst(LoadInst &LI);
|
|
|
|
void visitStoreInst(StoreInst &SI);
|
|
|
|
void visitInstruction(Instruction &I);
|
|
|
|
void visitTerminatorInst(TerminatorInst &I);
|
|
|
|
void visitReturnInst(ReturnInst &RI);
|
2004-05-21 16:47:21 +00:00
|
|
|
void visitSwitchInst(SwitchInst &SI);
|
2004-03-12 05:54:31 +00:00
|
|
|
void visitSelectInst(SelectInst &SI);
|
2002-11-21 16:54:22 +00:00
|
|
|
void visitUserOp1(Instruction &I);
|
|
|
|
void visitUserOp2(Instruction &I) { visitUserOp1(I); }
|
2003-11-11 22:41:34 +00:00
|
|
|
void visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI);
|
2007-12-17 01:00:21 +00:00
|
|
|
void visitAllocationInst(AllocationInst &AI);
|
2008-07-23 00:34:11 +00:00
|
|
|
void visitExtractValueInst(ExtractValueInst &EVI);
|
|
|
|
void visitInsertValueInst(InsertValueInst &IVI);
|
2002-04-18 20:37:37 +00:00
|
|
|
|
2007-12-21 19:19:01 +00:00
|
|
|
void VerifyCallSite(CallSite CS);
|
2008-11-13 07:11:27 +00:00
|
|
|
bool PerformTypeCheck(Intrinsic::ID ID, Function *F, const Type *Ty,
|
|
|
|
int VT, unsigned ArgNo, std::string &Suffix);
|
2007-08-04 01:51:18 +00:00
|
|
|
void VerifyIntrinsicPrototype(Intrinsic::ID ID, Function *F,
|
2008-11-13 09:08:33 +00:00
|
|
|
unsigned RetNum, unsigned ParamNum, ...);
|
2008-09-23 23:03:40 +00:00
|
|
|
void VerifyAttrs(Attributes Attrs, const Type *Ty,
|
2008-02-19 21:38:47 +00:00
|
|
|
bool isReturnValue, const Value *V);
|
2008-09-25 21:00:45 +00:00
|
|
|
void VerifyFunctionAttrs(const FunctionType *FT, const AttrListPtr &Attrs,
|
2008-01-12 16:42:01 +00:00
|
|
|
const Value *V);
|
2003-11-21 17:35:51 +00:00
|
|
|
|
|
|
|
void WriteValue(const Value *V) {
|
|
|
|
if (!V) return;
|
2003-11-21 20:23:48 +00:00
|
|
|
if (isa<Instruction>(V)) {
|
2004-04-02 15:45:08 +00:00
|
|
|
msgs << *V;
|
2003-11-21 20:23:48 +00:00
|
|
|
} else {
|
2006-12-06 06:16:21 +00:00
|
|
|
WriteAsOperand(msgs, V, true, Mod);
|
2004-04-02 15:45:08 +00:00
|
|
|
msgs << "\n";
|
2003-11-21 17:35:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-19 04:45:47 +00:00
|
|
|
void WriteType(const Type *T) {
|
2004-05-25 08:53:29 +00:00
|
|
|
if ( !T ) return;
|
|
|
|
WriteTypeSymbolic(msgs, T, Mod );
|
|
|
|
}
|
|
|
|
|
2003-11-21 17:35:51 +00:00
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
// CheckFailed - A check failed, so print out the condition and the message
|
|
|
|
// that failed. This provides a nice place to put a breakpoint if you want
|
|
|
|
// to see why something is not correct.
|
2003-11-21 17:35:51 +00:00
|
|
|
void CheckFailed(const std::string &Message,
|
|
|
|
const Value *V1 = 0, const Value *V2 = 0,
|
|
|
|
const Value *V3 = 0, const Value *V4 = 0) {
|
2004-04-02 15:45:08 +00:00
|
|
|
msgs << Message << "\n";
|
2003-11-21 17:35:51 +00:00
|
|
|
WriteValue(V1);
|
|
|
|
WriteValue(V2);
|
|
|
|
WriteValue(V3);
|
|
|
|
WriteValue(V4);
|
2002-04-18 20:37:37 +00:00
|
|
|
Broken = true;
|
2002-02-20 17:55:43 +00:00
|
|
|
}
|
2004-05-25 08:53:29 +00:00
|
|
|
|
2005-04-21 23:48:37 +00:00
|
|
|
void CheckFailed( const std::string& Message, const Value* V1,
|
2004-05-25 08:53:29 +00:00
|
|
|
const Type* T2, const Value* V3 = 0 ) {
|
|
|
|
msgs << Message << "\n";
|
|
|
|
WriteValue(V1);
|
|
|
|
WriteType(T2);
|
|
|
|
WriteValue(V3);
|
2004-05-27 21:58:13 +00:00
|
|
|
Broken = true;
|
2004-05-25 08:53:29 +00:00
|
|
|
}
|
2002-04-18 20:37:37 +00:00
|
|
|
};
|
2003-11-21 20:23:48 +00:00
|
|
|
} // End anonymous namespace
|
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
char Verifier::ID = 0;
|
|
|
|
static RegisterPass<Verifier> X("verify", "Module Verifier");
|
2002-02-20 17:55:43 +00:00
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
// Assert - We know that cond should be true, if not print an error message.
|
|
|
|
#define Assert(C, M) \
|
2002-04-28 16:06:24 +00:00
|
|
|
do { if (!(C)) { CheckFailed(M); return; } } while (0)
|
2002-04-18 20:37:37 +00:00
|
|
|
#define Assert1(C, M, V1) \
|
2002-04-28 16:06:24 +00:00
|
|
|
do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
|
2002-04-18 20:37:37 +00:00
|
|
|
#define Assert2(C, M, V1, V2) \
|
2002-04-28 16:06:24 +00:00
|
|
|
do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
|
2002-06-25 15:56:27 +00:00
|
|
|
#define Assert3(C, M, V1, V2, V3) \
|
|
|
|
do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
|
|
|
|
#define Assert4(C, M, V1, V2, V3, V4) \
|
|
|
|
do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
|
2002-02-20 17:55:43 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2008-08-28 04:02:44 +00:00
|
|
|
void Verifier::visit(Instruction &I) {
|
|
|
|
for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
|
|
|
|
Assert1(I.getOperand(i) != 0, "Operand is null", &I);
|
|
|
|
InstVisitor<Verifier>::visit(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-16 20:42:40 +00:00
|
|
|
void Verifier::visitGlobalValue(GlobalValue &GV) {
|
2007-01-30 20:08:39 +00:00
|
|
|
Assert1(!GV.isDeclaration() ||
|
2006-09-14 18:23:27 +00:00
|
|
|
GV.hasExternalLinkage() ||
|
|
|
|
GV.hasDLLImportLinkage() ||
|
2007-04-25 14:27:10 +00:00
|
|
|
GV.hasExternalWeakLinkage() ||
|
2008-07-25 17:28:23 +00:00
|
|
|
GV.hasGhostLinkage() ||
|
2007-04-25 14:27:10 +00:00
|
|
|
(isa<GlobalAlias>(GV) &&
|
2009-01-15 20:18:42 +00:00
|
|
|
(GV.hasLocalLinkage() || GV.hasWeakLinkage())),
|
2006-09-14 18:23:27 +00:00
|
|
|
"Global is external, but doesn't have external or dllimport or weak linkage!",
|
|
|
|
&GV);
|
|
|
|
|
2007-01-30 20:08:39 +00:00
|
|
|
Assert1(!GV.hasDLLImportLinkage() || GV.isDeclaration(),
|
2006-09-14 18:23:27 +00:00
|
|
|
"Global is marked as dllimport, but not external", &GV);
|
|
|
|
|
2003-04-16 20:42:40 +00:00
|
|
|
Assert1(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
|
|
|
|
"Only global variables can have appending linkage!", &GV);
|
|
|
|
|
|
|
|
if (GV.hasAppendingLinkage()) {
|
|
|
|
GlobalVariable &GVar = cast<GlobalVariable>(GV);
|
|
|
|
Assert1(isa<ArrayType>(GVar.getType()->getElementType()),
|
|
|
|
"Only global arrays can have appending linkage!", &GV);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-15 20:23:49 +00:00
|
|
|
void Verifier::visitGlobalVariable(GlobalVariable &GV) {
|
2007-09-19 17:14:45 +00:00
|
|
|
if (GV.hasInitializer()) {
|
2004-12-15 20:23:49 +00:00
|
|
|
Assert1(GV.getInitializer()->getType() == GV.getType()->getElementType(),
|
|
|
|
"Global variable initializer type does not match global "
|
|
|
|
"variable type!", &GV);
|
2007-09-19 17:14:45 +00:00
|
|
|
} else {
|
|
|
|
Assert1(GV.hasExternalLinkage() || GV.hasDLLImportLinkage() ||
|
|
|
|
GV.hasExternalWeakLinkage(),
|
|
|
|
"invalid linkage type for global declaration", &GV);
|
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2004-12-15 20:23:49 +00:00
|
|
|
visitGlobalValue(GV);
|
|
|
|
}
|
|
|
|
|
2007-04-25 14:27:10 +00:00
|
|
|
void Verifier::visitGlobalAlias(GlobalAlias &GA) {
|
|
|
|
Assert1(!GA.getName().empty(),
|
|
|
|
"Alias name cannot be empty!", &GA);
|
2009-01-15 20:18:42 +00:00
|
|
|
Assert1(GA.hasExternalLinkage() || GA.hasLocalLinkage() ||
|
2007-04-25 14:27:10 +00:00
|
|
|
GA.hasWeakLinkage(),
|
|
|
|
"Alias should have external or external weak linkage!", &GA);
|
2008-05-08 23:11:06 +00:00
|
|
|
Assert1(GA.getAliasee(),
|
|
|
|
"Aliasee cannot be NULL!", &GA);
|
2007-04-28 13:45:00 +00:00
|
|
|
Assert1(GA.getType() == GA.getAliasee()->getType(),
|
|
|
|
"Alias and aliasee types should match!", &GA);
|
2008-05-08 23:11:06 +00:00
|
|
|
|
2007-04-28 14:35:41 +00:00
|
|
|
if (!isa<GlobalValue>(GA.getAliasee())) {
|
|
|
|
const ConstantExpr *CE = dyn_cast<ConstantExpr>(GA.getAliasee());
|
2007-04-29 18:02:48 +00:00
|
|
|
Assert1(CE && CE->getOpcode() == Instruction::BitCast &&
|
|
|
|
isa<GlobalValue>(CE->getOperand(0)),
|
2007-04-28 14:35:41 +00:00
|
|
|
"Aliasee should be either GlobalValue or bitcast of GlobalValue",
|
|
|
|
&GA);
|
|
|
|
}
|
2008-03-22 08:36:14 +00:00
|
|
|
|
2008-09-09 20:05:04 +00:00
|
|
|
const GlobalValue* Aliasee = GA.resolveAliasedGlobal(/*stopOnWeak*/ false);
|
2008-03-22 08:36:14 +00:00
|
|
|
Assert1(Aliasee,
|
2008-03-22 08:37:05 +00:00
|
|
|
"Aliasing chain should end with function or global variable", &GA);
|
2008-03-22 08:36:14 +00:00
|
|
|
|
2007-04-25 14:27:10 +00:00
|
|
|
visitGlobalValue(GA);
|
|
|
|
}
|
|
|
|
|
2007-01-06 07:24:44 +00:00
|
|
|
void Verifier::verifyTypeSymbolTable(TypeSymbolTable &ST) {
|
|
|
|
}
|
2004-12-15 20:23:49 +00:00
|
|
|
|
2008-01-12 16:42:01 +00:00
|
|
|
// VerifyAttrs - Check the given parameter attributes for an argument or return
|
|
|
|
// value of the specified type. The value V is printed in error messages.
|
2008-09-23 23:03:40 +00:00
|
|
|
void Verifier::VerifyAttrs(Attributes Attrs, const Type *Ty,
|
2008-02-19 21:38:47 +00:00
|
|
|
bool isReturnValue, const Value *V) {
|
2008-09-25 21:00:45 +00:00
|
|
|
if (Attrs == Attribute::None)
|
2008-01-12 16:42:01 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (isReturnValue) {
|
2008-09-25 21:00:45 +00:00
|
|
|
Attributes RetI = Attrs & Attribute::ParameterOnly;
|
|
|
|
Assert1(!RetI, "Attribute " + Attribute::getAsString(RetI) +
|
2008-08-05 15:51:44 +00:00
|
|
|
" does not apply to return values!", V);
|
2008-01-12 16:42:01 +00:00
|
|
|
}
|
2008-10-03 21:11:02 +00:00
|
|
|
Attributes FnCheckAttr = Attrs & Attribute::FunctionOnly;
|
|
|
|
Assert1(!FnCheckAttr, "Attribute " + Attribute::getAsString(FnCheckAttr) +
|
2008-10-05 18:24:03 +00:00
|
|
|
" only applies to functions!", V);
|
2008-10-03 21:11:02 +00:00
|
|
|
|
2008-01-12 16:42:01 +00:00
|
|
|
for (unsigned i = 0;
|
2008-09-25 21:00:45 +00:00
|
|
|
i < array_lengthof(Attribute::MutuallyIncompatible); ++i) {
|
|
|
|
Attributes MutI = Attrs & Attribute::MutuallyIncompatible[i];
|
2008-01-12 16:42:01 +00:00
|
|
|
Assert1(!(MutI & (MutI - 1)), "Attributes " +
|
2008-09-25 21:00:45 +00:00
|
|
|
Attribute::getAsString(MutI) + " are incompatible!", V);
|
2008-01-12 16:42:01 +00:00
|
|
|
}
|
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
Attributes TypeI = Attrs & Attribute::typeIncompatible(Ty);
|
2008-01-12 16:42:01 +00:00
|
|
|
Assert1(!TypeI, "Wrong type for attribute " +
|
2008-09-25 21:00:45 +00:00
|
|
|
Attribute::getAsString(TypeI), V);
|
2008-08-27 14:48:06 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
Attributes ByValI = Attrs & Attribute::ByVal;
|
2008-08-27 14:48:06 +00:00
|
|
|
if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
|
|
|
|
Assert1(!ByValI || PTy->getElementType()->isSized(),
|
2008-09-25 21:00:45 +00:00
|
|
|
"Attribute " + Attribute::getAsString(ByValI) +
|
2008-08-27 14:48:06 +00:00
|
|
|
" does not support unsized types!", V);
|
|
|
|
} else {
|
|
|
|
Assert1(!ByValI,
|
2008-09-25 21:00:45 +00:00
|
|
|
"Attribute " + Attribute::getAsString(ByValI) +
|
2008-08-27 14:48:06 +00:00
|
|
|
" only applies to parameters with pointer type!", V);
|
|
|
|
}
|
2008-01-12 16:42:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// VerifyFunctionAttrs - Check parameter attributes against a function type.
|
2007-12-21 19:19:01 +00:00
|
|
|
// The value V is printed in error messages.
|
2008-01-12 16:42:01 +00:00
|
|
|
void Verifier::VerifyFunctionAttrs(const FunctionType *FT,
|
2008-09-25 21:00:45 +00:00
|
|
|
const AttrListPtr &Attrs,
|
2008-01-12 16:42:01 +00:00
|
|
|
const Value *V) {
|
2008-03-12 17:45:29 +00:00
|
|
|
if (Attrs.isEmpty())
|
2007-12-21 19:19:01 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
bool SawNest = false;
|
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
|
2008-09-25 21:00:45 +00:00
|
|
|
const AttributeWithIndex &Attr = Attrs.getSlot(i);
|
2007-12-21 19:19:01 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
const Type *Ty;
|
|
|
|
if (Attr.Index == 0)
|
|
|
|
Ty = FT->getReturnType();
|
|
|
|
else if (Attr.Index-1 < FT->getNumParams())
|
|
|
|
Ty = FT->getParamType(Attr.Index-1);
|
|
|
|
else
|
|
|
|
break; // VarArgs attributes, don't verify.
|
|
|
|
|
|
|
|
VerifyAttrs(Attr.Attrs, Ty, Attr.Index == 0, V);
|
2007-12-21 19:19:01 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
if (Attr.Attrs & Attribute::Nest) {
|
2007-12-21 19:19:01 +00:00
|
|
|
Assert1(!SawNest, "More than one parameter has attribute nest!", V);
|
|
|
|
SawNest = true;
|
|
|
|
}
|
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
if (Attr.Attrs & Attribute::StructRet)
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(Attr.Index == 1, "Attribute sret not on first parameter!", V);
|
2007-12-21 19:19:01 +00:00
|
|
|
}
|
2008-10-01 23:41:25 +00:00
|
|
|
|
|
|
|
Attributes FAttrs = Attrs.getFnAttributes();
|
2008-10-03 21:11:02 +00:00
|
|
|
Assert1(!(FAttrs & (~Attribute::FunctionOnly)),
|
2008-10-03 17:50:00 +00:00
|
|
|
"Attribute " + Attribute::getAsString(FAttrs) +
|
|
|
|
" does not apply to function!", V);
|
|
|
|
|
2008-10-01 23:41:25 +00:00
|
|
|
for (unsigned i = 0;
|
|
|
|
i < array_lengthof(Attribute::MutuallyIncompatible); ++i) {
|
|
|
|
Attributes MutI = FAttrs & Attribute::MutuallyIncompatible[i];
|
|
|
|
Assert1(!(MutI & (MutI - 1)), "Attributes " +
|
|
|
|
Attribute::getAsString(MutI) + " are incompatible!", V);
|
|
|
|
}
|
2007-12-21 19:19:01 +00:00
|
|
|
}
|
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
static bool VerifyAttributeCount(const AttrListPtr &Attrs, unsigned Params) {
|
2008-09-23 22:35:17 +00:00
|
|
|
if (Attrs.isEmpty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
unsigned LastSlot = Attrs.getNumSlots() - 1;
|
|
|
|
unsigned LastIndex = Attrs.getSlot(LastSlot).Index;
|
|
|
|
if (LastIndex <= Params
|
|
|
|
|| (LastIndex == (unsigned)~0
|
|
|
|
&& (LastSlot == 0 || Attrs.getSlot(LastSlot - 1).Index <= Params)))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2002-04-18 20:37:37 +00:00
|
|
|
// visitFunction - Verify that a function is ok.
|
2002-02-20 17:55:43 +00:00
|
|
|
//
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitFunction(Function &F) {
|
2005-05-08 22:27:09 +00:00
|
|
|
// Check function arguments.
|
2002-06-25 15:56:27 +00:00
|
|
|
const FunctionType *FT = F.getFunctionType();
|
2007-08-18 06:13:19 +00:00
|
|
|
unsigned NumArgs = F.arg_size();
|
2002-04-13 22:48:46 +00:00
|
|
|
|
2002-10-13 20:57:00 +00:00
|
|
|
Assert2(FT->getNumParams() == NumArgs,
|
2002-04-13 22:48:46 +00:00
|
|
|
"# formal arguments must match # of arguments for function type!",
|
2002-06-25 15:56:27 +00:00
|
|
|
&F, FT);
|
2003-11-21 22:32:23 +00:00
|
|
|
Assert1(F.getReturnType()->isFirstClassType() ||
|
2008-02-20 22:36:03 +00:00
|
|
|
F.getReturnType() == Type::VoidTy ||
|
2008-02-21 22:24:17 +00:00
|
|
|
isa<StructType>(F.getReturnType()),
|
2003-11-21 22:32:23 +00:00
|
|
|
"Functions cannot return aggregate values!", &F);
|
2002-04-13 22:48:46 +00:00
|
|
|
|
2008-03-03 21:46:28 +00:00
|
|
|
Assert1(!F.hasStructRetAttr() || F.getReturnType() == Type::VoidTy,
|
|
|
|
"Invalid struct return type!", &F);
|
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
const AttrListPtr &Attrs = F.getAttributes();
|
2008-01-11 22:36:48 +00:00
|
|
|
|
2008-09-23 22:35:17 +00:00
|
|
|
Assert1(VerifyAttributeCount(Attrs, FT->getNumParams()),
|
2008-01-11 22:36:48 +00:00
|
|
|
"Attributes after last parameter!", &F);
|
|
|
|
|
2007-12-21 19:19:01 +00:00
|
|
|
// Check function attributes.
|
2008-01-12 16:42:01 +00:00
|
|
|
VerifyFunctionAttrs(FT, Attrs, &F);
|
2007-07-27 15:09:54 +00:00
|
|
|
|
2006-05-19 21:25:17 +00:00
|
|
|
// Check that this function meets the restrictions on this calling convention.
|
|
|
|
switch (F.getCallingConv()) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case CallingConv::C:
|
|
|
|
break;
|
|
|
|
case CallingConv::Fast:
|
|
|
|
case CallingConv::Cold:
|
2006-09-17 20:25:45 +00:00
|
|
|
case CallingConv::X86_FastCall:
|
2006-05-19 21:25:17 +00:00
|
|
|
Assert1(!F.isVarArg(),
|
|
|
|
"Varargs functions must have C calling conventions!", &F);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-04-13 22:48:46 +00:00
|
|
|
// Check that the argument values match the function type for this function...
|
2002-10-13 20:57:00 +00:00
|
|
|
unsigned i = 0;
|
2006-12-16 02:25:35 +00:00
|
|
|
for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
|
|
|
|
I != E; ++I, ++i) {
|
2002-10-13 20:57:00 +00:00
|
|
|
Assert2(I->getType() == FT->getParamType(i),
|
|
|
|
"Argument value does not match function argument type!",
|
|
|
|
I, FT->getParamType(i));
|
2005-04-21 23:48:37 +00:00
|
|
|
Assert1(I->getType()->isFirstClassType(),
|
2008-08-27 14:44:57 +00:00
|
|
|
"Function arguments must have first-class types!", I);
|
|
|
|
}
|
2002-10-13 20:57:00 +00:00
|
|
|
|
2007-09-19 17:14:45 +00:00
|
|
|
if (F.isDeclaration()) {
|
|
|
|
Assert1(F.hasExternalLinkage() || F.hasDLLImportLinkage() ||
|
2008-07-25 17:28:23 +00:00
|
|
|
F.hasExternalWeakLinkage() || F.hasGhostLinkage(),
|
2007-09-19 17:14:45 +00:00
|
|
|
"invalid linkage type for function declaration", &F);
|
|
|
|
} else {
|
2006-12-13 04:45:46 +00:00
|
|
|
// Verify that this function (which has a body) is not named "llvm.*". It
|
|
|
|
// is not legal to define intrinsics.
|
|
|
|
if (F.getName().size() >= 5)
|
|
|
|
Assert1(F.getName().substr(0, 5) != "llvm.",
|
|
|
|
"llvm intrinsics cannot be defined!", &F);
|
|
|
|
|
2002-10-13 20:57:00 +00:00
|
|
|
// Check the entry node
|
2003-09-20 14:39:18 +00:00
|
|
|
BasicBlock *Entry = &F.getEntryBlock();
|
2002-10-13 20:57:00 +00:00
|
|
|
Assert1(pred_begin(Entry) == pred_end(Entry),
|
|
|
|
"Entry block to function must not have predecessors!", Entry);
|
2002-04-13 22:48:46 +00:00
|
|
|
}
|
2002-04-18 20:37:37 +00:00
|
|
|
}
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
// verifyBasicBlock - Verify that a basic block is well formed...
|
|
|
|
//
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitBasicBlock(BasicBlock &BB) {
|
2004-09-29 20:07:45 +00:00
|
|
|
InstsInThisBlock.clear();
|
|
|
|
|
2004-12-04 02:30:42 +00:00
|
|
|
// Ensure that basic blocks have terminators!
|
|
|
|
Assert1(BB.getTerminator(), "Basic Block does not have terminator!", &BB);
|
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
// Check constraints that this basic block imposes on all of the PHI nodes in
|
|
|
|
// it.
|
|
|
|
if (isa<PHINode>(BB.front())) {
|
2007-02-10 08:33:11 +00:00
|
|
|
SmallVector<BasicBlock*, 8> Preds(pred_begin(&BB), pred_end(&BB));
|
|
|
|
SmallVector<std::pair<BasicBlock*, Value*>, 8> Values;
|
2003-10-05 17:44:18 +00:00
|
|
|
std::sort(Preds.begin(), Preds.end());
|
2005-04-21 23:48:37 +00:00
|
|
|
PHINode *PN;
|
2004-06-05 17:44:48 +00:00
|
|
|
for (BasicBlock::iterator I = BB.begin(); (PN = dyn_cast<PHINode>(I));++I) {
|
2003-10-05 17:44:18 +00:00
|
|
|
|
|
|
|
// Ensure that PHI nodes have at least one entry!
|
|
|
|
Assert1(PN->getNumIncomingValues() != 0,
|
|
|
|
"PHI nodes must have at least one entry. If the block is dead, "
|
|
|
|
"the PHI should be removed!", PN);
|
2004-05-17 21:15:18 +00:00
|
|
|
Assert1(PN->getNumIncomingValues() == Preds.size(),
|
|
|
|
"PHINode should have one entry for each predecessor of its "
|
|
|
|
"parent basic block!", PN);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
// Get and sort all incoming values in the PHI node...
|
2007-02-10 08:33:11 +00:00
|
|
|
Values.clear();
|
2003-10-05 17:44:18 +00:00
|
|
|
Values.reserve(PN->getNumIncomingValues());
|
|
|
|
for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
|
|
|
|
Values.push_back(std::make_pair(PN->getIncomingBlock(i),
|
|
|
|
PN->getIncomingValue(i)));
|
|
|
|
std::sort(Values.begin(), Values.end());
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
for (unsigned i = 0, e = Values.size(); i != e; ++i) {
|
|
|
|
// Check to make sure that if there is more than one entry for a
|
|
|
|
// particular basic block in this PHI node, that the incoming values are
|
|
|
|
// all identical.
|
|
|
|
//
|
|
|
|
Assert4(i == 0 || Values[i].first != Values[i-1].first ||
|
|
|
|
Values[i].second == Values[i-1].second,
|
|
|
|
"PHI node has multiple entries for the same basic block with "
|
|
|
|
"different incoming values!", PN, Values[i].first,
|
|
|
|
Values[i].second, Values[i-1].second);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
// Check to make sure that the predecessors and PHI node entries are
|
|
|
|
// matched up.
|
|
|
|
Assert3(Values[i].first == Preds[i],
|
|
|
|
"PHI node entries do not match predecessors!", PN,
|
2005-04-21 23:48:37 +00:00
|
|
|
Values[i].first, Preds[i]);
|
2003-10-05 17:44:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-06-25 15:56:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitTerminatorInst(TerminatorInst &I) {
|
|
|
|
// Ensure that terminators only exist at the end of the basic block.
|
|
|
|
Assert1(&I == I.getParent()->getTerminator(),
|
|
|
|
"Terminator found in the middle of a basic block!", I.getParent());
|
2002-07-18 00:13:42 +00:00
|
|
|
visitInstruction(I);
|
2002-06-25 15:56:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitReturnInst(ReturnInst &RI) {
|
|
|
|
Function *F = RI.getParent()->getParent();
|
2008-02-23 00:35:18 +00:00
|
|
|
unsigned N = RI.getNumOperands();
|
2008-04-23 20:33:41 +00:00
|
|
|
if (F->getReturnType() == Type::VoidTy)
|
|
|
|
Assert2(N == 0,
|
2008-11-15 17:50:47 +00:00
|
|
|
"Found return instr that returns non-void in Function of void "
|
2004-12-04 01:25:06 +00:00
|
|
|
"return type!", &RI, F->getReturnType());
|
2008-06-09 21:26:13 +00:00
|
|
|
else if (N == 1 && F->getReturnType() == RI.getOperand(0)->getType()) {
|
|
|
|
// Exactly one return value and it matches the return type. Good.
|
|
|
|
} else if (const StructType *STy = dyn_cast<StructType>(F->getReturnType())) {
|
|
|
|
// The return type is a struct; check for multiple return values.
|
2008-04-23 20:33:41 +00:00
|
|
|
Assert2(STy->getNumElements() == N,
|
|
|
|
"Incorrect number of return values in ret instruction!",
|
|
|
|
&RI, F->getReturnType());
|
|
|
|
for (unsigned i = 0; i != N; ++i)
|
2008-02-23 00:35:18 +00:00
|
|
|
Assert2(STy->getElementType(i) == RI.getOperand(i)->getType(),
|
2008-02-26 22:55:21 +00:00
|
|
|
"Function return type does not match operand "
|
|
|
|
"type of return inst!", &RI, F->getReturnType());
|
2008-06-09 21:26:13 +00:00
|
|
|
} else if (const ArrayType *ATy = dyn_cast<ArrayType>(F->getReturnType())) {
|
|
|
|
// The return type is an array; check for multiple return values.
|
|
|
|
Assert2(ATy->getNumElements() == N,
|
|
|
|
"Incorrect number of return values in ret instruction!",
|
|
|
|
&RI, F->getReturnType());
|
|
|
|
for (unsigned i = 0; i != N; ++i)
|
|
|
|
Assert2(ATy->getElementType() == RI.getOperand(i)->getType(),
|
|
|
|
"Function return type does not match operand "
|
|
|
|
"type of return inst!", &RI, F->getReturnType());
|
2008-04-23 20:33:41 +00:00
|
|
|
} else {
|
2008-06-09 21:26:13 +00:00
|
|
|
CheckFailed("Function return type does not match operand "
|
|
|
|
"type of return inst!", &RI, F->getReturnType());
|
2008-04-23 20:33:41 +00:00
|
|
|
}
|
2008-03-05 00:27:05 +00:00
|
|
|
|
2003-08-18 14:43:39 +00:00
|
|
|
// Check to make sure that the return value has necessary properties for
|
2002-06-25 15:56:27 +00:00
|
|
|
// terminators...
|
|
|
|
visitTerminatorInst(RI);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2004-05-21 16:47:21 +00:00
|
|
|
void Verifier::visitSwitchInst(SwitchInst &SI) {
|
|
|
|
// Check to make sure that all of the constants in the switch instruction
|
|
|
|
// have the same type as the switched-on value.
|
|
|
|
const Type *SwitchTy = SI.getCondition()->getType();
|
|
|
|
for (unsigned i = 1, e = SI.getNumCases(); i != e; ++i)
|
|
|
|
Assert1(SI.getCaseValue(i)->getType() == SwitchTy,
|
|
|
|
"Switch constants must all be same type as switch value!", &SI);
|
|
|
|
|
|
|
|
visitTerminatorInst(SI);
|
|
|
|
}
|
|
|
|
|
2004-03-12 05:54:31 +00:00
|
|
|
void Verifier::visitSelectInst(SelectInst &SI) {
|
2008-12-29 00:12:50 +00:00
|
|
|
Assert1(!SelectInst::areInvalidOperands(SI.getOperand(0), SI.getOperand(1),
|
|
|
|
SI.getOperand(2)),
|
|
|
|
"Invalid operands for select instruction!", &SI);
|
|
|
|
|
2004-03-12 05:54:31 +00:00
|
|
|
Assert1(SI.getTrueValue()->getType() == SI.getType(),
|
|
|
|
"Select values must have same type as select instruction!", &SI);
|
2004-09-29 21:19:28 +00:00
|
|
|
visitInstruction(SI);
|
2004-03-12 05:54:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-02 00:22:19 +00:00
|
|
|
/// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of
|
|
|
|
/// a pass, if any exist, it's an error.
|
|
|
|
///
|
2002-11-21 16:54:22 +00:00
|
|
|
void Verifier::visitUserOp1(Instruction &I) {
|
2006-03-31 04:46:47 +00:00
|
|
|
Assert1(0, "User-defined operators should not live outside of a pass!", &I);
|
2002-11-21 16:54:22 +00:00
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2006-11-27 01:05:10 +00:00
|
|
|
void Verifier::visitTruncInst(TruncInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
|
|
|
// Get the size of the types in bits, we'll need this later
|
|
|
|
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
|
|
|
unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
|
|
|
|
|
2008-08-14 20:04:46 +00:00
|
|
|
Assert1(SrcTy->isIntOrIntVector(), "Trunc only operates on integer", &I);
|
|
|
|
Assert1(DestTy->isIntOrIntVector(), "Trunc only produces integer", &I);
|
2009-02-02 07:40:17 +00:00
|
|
|
Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
|
|
|
|
"trunc source and destination must both be a vector or neither", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
Assert1(SrcBitSize > DestBitSize,"DestTy too big for Trunc", &I);
|
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitZExtInst(ZExtInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
|
|
|
// Get the size of the types in bits, we'll need this later
|
2008-08-14 20:04:46 +00:00
|
|
|
Assert1(SrcTy->isIntOrIntVector(), "ZExt only operates on integer", &I);
|
|
|
|
Assert1(DestTy->isIntOrIntVector(), "ZExt only produces an integer", &I);
|
2009-02-02 07:40:17 +00:00
|
|
|
Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
|
|
|
|
"zext source and destination must both be a vector or neither", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
|
|
|
unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
|
|
|
|
|
|
|
|
Assert1(SrcBitSize < DestBitSize,"Type too small for ZExt", &I);
|
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitSExtInst(SExtInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
|
|
|
// Get the size of the types in bits, we'll need this later
|
|
|
|
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
|
|
|
unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
|
|
|
|
|
2008-08-14 20:04:46 +00:00
|
|
|
Assert1(SrcTy->isIntOrIntVector(), "SExt only operates on integer", &I);
|
|
|
|
Assert1(DestTy->isIntOrIntVector(), "SExt only produces an integer", &I);
|
2009-02-02 07:40:17 +00:00
|
|
|
Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
|
|
|
|
"sext source and destination must both be a vector or neither", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
Assert1(SrcBitSize < DestBitSize,"Type too small for SExt", &I);
|
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitFPTruncInst(FPTruncInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
// Get the size of the types in bits, we'll need this later
|
|
|
|
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
|
|
|
unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
|
|
|
|
|
2008-08-14 20:04:46 +00:00
|
|
|
Assert1(SrcTy->isFPOrFPVector(),"FPTrunc only operates on FP", &I);
|
|
|
|
Assert1(DestTy->isFPOrFPVector(),"FPTrunc only produces an FP", &I);
|
2009-02-02 07:40:17 +00:00
|
|
|
Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
|
|
|
|
"fptrunc source and destination must both be a vector or neither",&I);
|
2006-11-27 01:05:10 +00:00
|
|
|
Assert1(SrcBitSize > DestBitSize,"DestTy too big for FPTrunc", &I);
|
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitFPExtInst(FPExtInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
|
|
|
// Get the size of the types in bits, we'll need this later
|
|
|
|
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
|
|
|
unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
|
|
|
|
|
2008-08-14 20:04:46 +00:00
|
|
|
Assert1(SrcTy->isFPOrFPVector(),"FPExt only operates on FP", &I);
|
|
|
|
Assert1(DestTy->isFPOrFPVector(),"FPExt only produces an FP", &I);
|
2009-02-02 07:40:17 +00:00
|
|
|
Assert1(isa<VectorType>(SrcTy) == isa<VectorType>(DestTy),
|
|
|
|
"fpext source and destination must both be a vector or neither", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
Assert1(SrcBitSize < DestBitSize,"DestTy too small for FPExt", &I);
|
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitUIToFPInst(UIToFPInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
bool SrcVec = isa<VectorType>(SrcTy);
|
|
|
|
bool DstVec = isa<VectorType>(DestTy);
|
2007-11-17 03:58:34 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(SrcVec == DstVec,
|
|
|
|
"UIToFP source and dest must both be vector or scalar", &I);
|
|
|
|
Assert1(SrcTy->isIntOrIntVector(),
|
|
|
|
"UIToFP source must be integer or integer vector", &I);
|
|
|
|
Assert1(DestTy->isFPOrFPVector(),
|
|
|
|
"UIToFP result must be FP or FP vector", &I);
|
2007-11-17 03:58:34 +00:00
|
|
|
|
|
|
|
if (SrcVec && DstVec)
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
|
|
|
|
cast<VectorType>(DestTy)->getNumElements(),
|
2007-11-17 03:58:34 +00:00
|
|
|
"UIToFP source and dest vector length mismatch", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitSIToFPInst(SIToFPInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
2007-11-17 03:58:34 +00:00
|
|
|
bool SrcVec = SrcTy->getTypeID() == Type::VectorTyID;
|
|
|
|
bool DstVec = DestTy->getTypeID() == Type::VectorTyID;
|
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(SrcVec == DstVec,
|
|
|
|
"SIToFP source and dest must both be vector or scalar", &I);
|
|
|
|
Assert1(SrcTy->isIntOrIntVector(),
|
|
|
|
"SIToFP source must be integer or integer vector", &I);
|
|
|
|
Assert1(DestTy->isFPOrFPVector(),
|
|
|
|
"SIToFP result must be FP or FP vector", &I);
|
2007-11-17 03:58:34 +00:00
|
|
|
|
|
|
|
if (SrcVec && DstVec)
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
|
|
|
|
cast<VectorType>(DestTy)->getNumElements(),
|
2007-11-17 03:58:34 +00:00
|
|
|
"SIToFP source and dest vector length mismatch", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitFPToUIInst(FPToUIInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
bool SrcVec = isa<VectorType>(SrcTy);
|
|
|
|
bool DstVec = isa<VectorType>(DestTy);
|
2007-11-17 03:58:34 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(SrcVec == DstVec,
|
|
|
|
"FPToUI source and dest must both be vector or scalar", &I);
|
|
|
|
Assert1(SrcTy->isFPOrFPVector(), "FPToUI source must be FP or FP vector", &I);
|
|
|
|
Assert1(DestTy->isIntOrIntVector(),
|
|
|
|
"FPToUI result must be integer or integer vector", &I);
|
2007-11-17 03:58:34 +00:00
|
|
|
|
|
|
|
if (SrcVec && DstVec)
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
|
|
|
|
cast<VectorType>(DestTy)->getNumElements(),
|
2007-11-17 03:58:34 +00:00
|
|
|
"FPToUI source and dest vector length mismatch", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitFPToSIInst(FPToSIInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
bool SrcVec = isa<VectorType>(SrcTy);
|
|
|
|
bool DstVec = isa<VectorType>(DestTy);
|
2007-11-17 03:58:34 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(SrcVec == DstVec,
|
|
|
|
"FPToSI source and dest must both be vector or scalar", &I);
|
|
|
|
Assert1(SrcTy->isFPOrFPVector(),
|
|
|
|
"FPToSI source must be FP or FP vector", &I);
|
|
|
|
Assert1(DestTy->isIntOrIntVector(),
|
|
|
|
"FPToSI result must be integer or integer vector", &I);
|
2007-11-17 03:58:34 +00:00
|
|
|
|
|
|
|
if (SrcVec && DstVec)
|
2008-03-12 17:45:29 +00:00
|
|
|
Assert1(cast<VectorType>(SrcTy)->getNumElements() ==
|
|
|
|
cast<VectorType>(DestTy)->getNumElements(),
|
2007-11-17 03:58:34 +00:00
|
|
|
"FPToSI source and dest vector length mismatch", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitPtrToIntInst(PtrToIntInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
|
|
|
Assert1(isa<PointerType>(SrcTy), "PtrToInt source must be pointer", &I);
|
2007-01-15 02:27:26 +00:00
|
|
|
Assert1(DestTy->isInteger(), "PtrToInt result must be integral", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitIntToPtrInst(IntToPtrInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
2007-01-15 02:27:26 +00:00
|
|
|
Assert1(SrcTy->isInteger(), "IntToPtr source must be an integral", &I);
|
2006-11-27 01:05:10 +00:00
|
|
|
Assert1(isa<PointerType>(DestTy), "IntToPtr result must be a pointer",&I);
|
|
|
|
|
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitBitCastInst(BitCastInst &I) {
|
|
|
|
// Get the source and destination types
|
|
|
|
const Type *SrcTy = I.getOperand(0)->getType();
|
|
|
|
const Type *DestTy = I.getType();
|
|
|
|
|
|
|
|
// Get the size of the types in bits, we'll need this later
|
|
|
|
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
|
|
|
unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
|
|
|
|
|
|
|
|
// BitCast implies a no-op cast of type only. No bits change.
|
|
|
|
// However, you can't cast pointers to anything but pointers.
|
|
|
|
Assert1(isa<PointerType>(DestTy) == isa<PointerType>(DestTy),
|
|
|
|
"Bitcast requires both operands to be pointer or neither", &I);
|
|
|
|
Assert1(SrcBitSize == DestBitSize, "Bitcast requies types of same width", &I);
|
|
|
|
|
2008-09-08 16:45:59 +00:00
|
|
|
// Disallow aggregates.
|
|
|
|
Assert1(!SrcTy->isAggregateType(),
|
|
|
|
"Bitcast operand must not be aggregate", &I);
|
|
|
|
Assert1(!DestTy->isAggregateType(),
|
|
|
|
"Bitcast type must not be aggregate", &I);
|
|
|
|
|
2006-11-27 01:05:10 +00:00
|
|
|
visitInstruction(I);
|
|
|
|
}
|
|
|
|
|
2004-03-02 00:22:19 +00:00
|
|
|
/// visitPHINode - Ensure that a PHI node is well formed.
|
|
|
|
///
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitPHINode(PHINode &PN) {
|
|
|
|
// Ensure that the PHI nodes are all grouped together at the top of the block.
|
|
|
|
// This can be tested by checking whether the instruction before this is
|
2003-10-10 17:54:14 +00:00
|
|
|
// either nonexistent (because this is begin()) or is a PHI node. If not,
|
2002-06-25 15:56:27 +00:00
|
|
|
// then there is some other instruction before a PHI.
|
2007-04-17 17:36:12 +00:00
|
|
|
Assert2(&PN == &PN.getParent()->front() ||
|
|
|
|
isa<PHINode>(--BasicBlock::iterator(&PN)),
|
2002-06-25 15:56:27 +00:00
|
|
|
"PHI nodes not grouped at top of basic block!",
|
|
|
|
&PN, PN.getParent());
|
|
|
|
|
2003-11-12 07:13:37 +00:00
|
|
|
// Check that all of the operands of the PHI node have the same type as the
|
|
|
|
// result.
|
|
|
|
for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
|
|
|
|
Assert1(PN.getType() == PN.getIncomingValue(i)->getType(),
|
|
|
|
"PHI node operands are not the same type as the result!", &PN);
|
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
// All other PHI node constraints are checked in the visitBasicBlock method.
|
2002-04-18 20:37:37 +00:00
|
|
|
|
|
|
|
visitInstruction(PN);
|
|
|
|
}
|
2002-03-15 20:25:09 +00:00
|
|
|
|
2007-12-21 19:19:01 +00:00
|
|
|
void Verifier::VerifyCallSite(CallSite CS) {
|
|
|
|
Instruction *I = CS.getInstruction();
|
|
|
|
|
|
|
|
Assert1(isa<PointerType>(CS.getCalledValue()->getType()),
|
|
|
|
"Called function must be a pointer!", I);
|
|
|
|
const PointerType *FPTy = cast<PointerType>(CS.getCalledValue()->getType());
|
2002-04-18 22:11:52 +00:00
|
|
|
Assert1(isa<FunctionType>(FPTy->getElementType()),
|
2007-12-21 19:19:01 +00:00
|
|
|
"Called function is not pointer to function type!", I);
|
2002-05-08 19:49:50 +00:00
|
|
|
|
2002-06-25 15:56:27 +00:00
|
|
|
const FunctionType *FTy = cast<FunctionType>(FPTy->getElementType());
|
2002-05-08 19:49:50 +00:00
|
|
|
|
|
|
|
// Verify that the correct number of arguments are being passed
|
|
|
|
if (FTy->isVarArg())
|
2007-12-21 19:19:01 +00:00
|
|
|
Assert1(CS.arg_size() >= FTy->getNumParams(),
|
|
|
|
"Called function requires more parameters than were provided!",I);
|
2002-05-08 19:49:50 +00:00
|
|
|
else
|
2007-12-21 19:19:01 +00:00
|
|
|
Assert1(CS.arg_size() == FTy->getNumParams(),
|
|
|
|
"Incorrect number of arguments passed to called function!", I);
|
2002-05-08 19:49:50 +00:00
|
|
|
|
|
|
|
// Verify that all arguments to the call match the function type...
|
|
|
|
for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
|
2007-12-21 19:19:01 +00:00
|
|
|
Assert3(CS.getArgument(i)->getType() == FTy->getParamType(i),
|
2002-05-08 19:49:50 +00:00
|
|
|
"Call parameter type does not match function signature!",
|
2007-12-21 19:19:01 +00:00
|
|
|
CS.getArgument(i), FTy->getParamType(i), I);
|
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
const AttrListPtr &Attrs = CS.getAttributes();
|
2008-01-11 22:36:48 +00:00
|
|
|
|
2008-09-23 22:35:17 +00:00
|
|
|
Assert1(VerifyAttributeCount(Attrs, CS.arg_size()),
|
2008-03-12 17:45:29 +00:00
|
|
|
"Attributes after last parameter!", I);
|
2008-01-11 22:36:48 +00:00
|
|
|
|
2007-12-21 19:19:01 +00:00
|
|
|
// Verify call attributes.
|
2008-01-12 16:42:01 +00:00
|
|
|
VerifyFunctionAttrs(FTy, Attrs, I);
|
2008-01-11 22:36:48 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
if (FTy->isVarArg())
|
2008-01-11 22:36:48 +00:00
|
|
|
// Check attributes on the varargs part.
|
|
|
|
for (unsigned Idx = 1 + FTy->getNumParams(); Idx <= CS.arg_size(); ++Idx) {
|
2008-09-26 22:53:05 +00:00
|
|
|
Attributes Attr = Attrs.getParamAttributes(Idx);
|
2008-01-12 16:42:01 +00:00
|
|
|
|
|
|
|
VerifyAttrs(Attr, CS.getArgument(Idx-1)->getType(), false, I);
|
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
Attributes VArgI = Attr & Attribute::VarArgsIncompatible;
|
|
|
|
Assert1(!VArgI, "Attribute " + Attribute::getAsString(VArgI) +
|
2008-08-05 15:51:44 +00:00
|
|
|
" cannot be used for vararg call arguments!", I);
|
2008-01-11 22:36:48 +00:00
|
|
|
}
|
2007-12-21 19:19:01 +00:00
|
|
|
|
|
|
|
visitInstruction(*I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitCallInst(CallInst &CI) {
|
|
|
|
VerifyCallSite(&CI);
|
2002-07-18 00:13:42 +00:00
|
|
|
|
2007-10-28 22:50:32 +00:00
|
|
|
if (Function *F = CI.getCalledFunction()) {
|
2003-11-11 22:41:34 +00:00
|
|
|
if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
|
2003-05-08 03:47:33 +00:00
|
|
|
visitIntrinsicFunctionCall(ID, CI);
|
2007-10-28 22:50:32 +00:00
|
|
|
}
|
2007-12-21 19:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitInvokeInst(InvokeInst &II) {
|
|
|
|
VerifyCallSite(&II);
|
2002-04-18 22:11:52 +00:00
|
|
|
}
|
2002-04-18 20:37:37 +00:00
|
|
|
|
2004-03-02 00:22:19 +00:00
|
|
|
/// visitBinaryOperator - Check that both arguments to the binary operator are
|
|
|
|
/// of the same type!
|
|
|
|
///
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitBinaryOperator(BinaryOperator &B) {
|
2002-09-09 20:26:04 +00:00
|
|
|
Assert1(B.getOperand(0)->getType() == B.getOperand(1)->getType(),
|
|
|
|
"Both operands to a binary operator are not of the same type!", &B);
|
|
|
|
|
2007-02-02 02:16:23 +00:00
|
|
|
switch (B.getOpcode()) {
|
2002-09-09 20:26:04 +00:00
|
|
|
// Check that logical operators are only used with integral operands.
|
2007-02-02 02:16:23 +00:00
|
|
|
case Instruction::And:
|
|
|
|
case Instruction::Or:
|
|
|
|
case Instruction::Xor:
|
2007-01-15 02:27:26 +00:00
|
|
|
Assert1(B.getType()->isInteger() ||
|
2007-02-15 02:26:10 +00:00
|
|
|
(isa<VectorType>(B.getType()) &&
|
|
|
|
cast<VectorType>(B.getType())->getElementType()->isInteger()),
|
2002-09-09 20:26:04 +00:00
|
|
|
"Logical operators only work with integral types!", &B);
|
|
|
|
Assert1(B.getType() == B.getOperand(0)->getType(),
|
|
|
|
"Logical operators must have same type for operands and result!",
|
|
|
|
&B);
|
2007-02-02 02:16:23 +00:00
|
|
|
break;
|
|
|
|
case Instruction::Shl:
|
|
|
|
case Instruction::LShr:
|
|
|
|
case Instruction::AShr:
|
2008-07-29 15:49:41 +00:00
|
|
|
Assert1(B.getType()->isInteger() ||
|
|
|
|
(isa<VectorType>(B.getType()) &&
|
|
|
|
cast<VectorType>(B.getType())->getElementType()->isInteger()),
|
|
|
|
"Shifts only work with integral types!", &B);
|
2007-02-02 02:16:23 +00:00
|
|
|
Assert1(B.getType() == B.getOperand(0)->getType(),
|
|
|
|
"Shift return type must be same as operands!", &B);
|
|
|
|
/* FALL THROUGH */
|
|
|
|
default:
|
2002-09-09 20:26:04 +00:00
|
|
|
// Arithmetic operators only work on integer or fp values
|
|
|
|
Assert1(B.getType() == B.getOperand(0)->getType(),
|
|
|
|
"Arithmetic operators must have same type for operands and result!",
|
|
|
|
&B);
|
2007-01-15 02:27:26 +00:00
|
|
|
Assert1(B.getType()->isInteger() || B.getType()->isFloatingPoint() ||
|
2007-02-15 02:26:10 +00:00
|
|
|
isa<VectorType>(B.getType()),
|
2007-02-15 03:39:18 +00:00
|
|
|
"Arithmetic operators must have integer, fp, or vector type!", &B);
|
2007-02-02 02:16:23 +00:00
|
|
|
break;
|
2002-09-09 20:26:04 +00:00
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
visitInstruction(B);
|
2002-02-20 17:55:43 +00:00
|
|
|
}
|
|
|
|
|
2006-11-20 01:22:35 +00:00
|
|
|
void Verifier::visitICmpInst(ICmpInst& IC) {
|
|
|
|
// Check that the operands are the same type
|
|
|
|
const Type* Op0Ty = IC.getOperand(0)->getType();
|
|
|
|
const Type* Op1Ty = IC.getOperand(1)->getType();
|
|
|
|
Assert1(Op0Ty == Op1Ty,
|
|
|
|
"Both operands to ICmp instruction are not of the same type!", &IC);
|
|
|
|
// Check that the operands are the right type
|
2008-09-09 01:02:47 +00:00
|
|
|
Assert1(Op0Ty->isIntOrIntVector() || isa<PointerType>(Op0Ty),
|
2006-11-20 01:22:35 +00:00
|
|
|
"Invalid operand types for ICmp instruction", &IC);
|
|
|
|
visitInstruction(IC);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verifier::visitFCmpInst(FCmpInst& FC) {
|
|
|
|
// Check that the operands are the same type
|
|
|
|
const Type* Op0Ty = FC.getOperand(0)->getType();
|
|
|
|
const Type* Op1Ty = FC.getOperand(1)->getType();
|
|
|
|
Assert1(Op0Ty == Op1Ty,
|
|
|
|
"Both operands to FCmp instruction are not of the same type!", &FC);
|
|
|
|
// Check that the operands are the right type
|
2008-09-09 01:02:47 +00:00
|
|
|
Assert1(Op0Ty->isFPOrFPVector(),
|
2006-11-20 01:22:35 +00:00
|
|
|
"Invalid operand types for FCmp instruction", &FC);
|
|
|
|
visitInstruction(FC);
|
|
|
|
}
|
|
|
|
|
2006-01-10 19:05:34 +00:00
|
|
|
void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
|
2006-04-08 04:07:52 +00:00
|
|
|
Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0),
|
|
|
|
EI.getOperand(1)),
|
|
|
|
"Invalid extractelement operands!", &EI);
|
2006-01-10 19:05:34 +00:00
|
|
|
visitInstruction(EI);
|
|
|
|
}
|
|
|
|
|
2006-01-17 20:07:22 +00:00
|
|
|
void Verifier::visitInsertElementInst(InsertElementInst &IE) {
|
2006-04-08 04:07:52 +00:00
|
|
|
Assert1(InsertElementInst::isValidOperands(IE.getOperand(0),
|
|
|
|
IE.getOperand(1),
|
|
|
|
IE.getOperand(2)),
|
|
|
|
"Invalid insertelement operands!", &IE);
|
2006-01-17 20:07:22 +00:00
|
|
|
visitInstruction(IE);
|
|
|
|
}
|
|
|
|
|
2006-04-08 01:18:18 +00:00
|
|
|
void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
|
|
|
|
Assert1(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1),
|
|
|
|
SV.getOperand(2)),
|
|
|
|
"Invalid shufflevector operands!", &SV);
|
2008-11-10 04:46:22 +00:00
|
|
|
|
|
|
|
const VectorType *VTy = dyn_cast<VectorType>(SV.getOperand(0)->getType());
|
|
|
|
Assert1(VTy, "Operands are not a vector type", &SV);
|
|
|
|
|
2006-04-08 01:18:18 +00:00
|
|
|
// Check to see if Mask is valid.
|
2007-02-15 02:26:10 +00:00
|
|
|
if (const ConstantVector *MV = dyn_cast<ConstantVector>(SV.getOperand(2))) {
|
2006-04-08 01:18:18 +00:00
|
|
|
for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
|
2008-07-29 15:49:41 +00:00
|
|
|
if (ConstantInt* CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
|
2008-11-10 04:46:22 +00:00
|
|
|
Assert1(!CI->uge(VTy->getNumElements()*2),
|
2008-07-29 15:49:41 +00:00
|
|
|
"Invalid shufflevector shuffle mask!", &SV);
|
|
|
|
} else {
|
|
|
|
Assert1(isa<UndefValue>(MV->getOperand(i)),
|
|
|
|
"Invalid shufflevector shuffle mask!", &SV);
|
|
|
|
}
|
2006-04-08 01:18:18 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Assert1(isa<UndefValue>(SV.getOperand(2)) ||
|
|
|
|
isa<ConstantAggregateZero>(SV.getOperand(2)),
|
|
|
|
"Invalid shufflevector shuffle mask!", &SV);
|
|
|
|
}
|
2008-11-10 04:46:22 +00:00
|
|
|
|
2006-04-08 01:18:18 +00:00
|
|
|
visitInstruction(SV);
|
|
|
|
}
|
|
|
|
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) {
|
2007-02-10 08:30:29 +00:00
|
|
|
SmallVector<Value*, 16> Idxs(GEP.idx_begin(), GEP.idx_end());
|
2002-08-22 23:37:20 +00:00
|
|
|
const Type *ElTy =
|
|
|
|
GetElementPtrInst::getIndexedType(GEP.getOperand(0)->getType(),
|
2008-05-15 19:50:34 +00:00
|
|
|
Idxs.begin(), Idxs.end());
|
2002-06-25 15:56:27 +00:00
|
|
|
Assert1(ElTy, "Invalid indices for GEP pointer type!", &GEP);
|
2007-02-10 08:30:29 +00:00
|
|
|
Assert2(isa<PointerType>(GEP.getType()) &&
|
|
|
|
cast<PointerType>(GEP.getType())->getElementType() == ElTy,
|
2002-06-25 15:56:27 +00:00
|
|
|
"GEP is not of right type for indices!", &GEP, ElTy);
|
2002-04-24 19:12:21 +00:00
|
|
|
visitInstruction(GEP);
|
|
|
|
}
|
|
|
|
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitLoadInst(LoadInst &LI) {
|
2002-08-22 22:49:05 +00:00
|
|
|
const Type *ElTy =
|
|
|
|
cast<PointerType>(LI.getOperand(0)->getType())->getElementType();
|
2002-06-25 15:56:27 +00:00
|
|
|
Assert2(ElTy == LI.getType(),
|
2003-11-21 17:06:29 +00:00
|
|
|
"Load result type does not match pointer operand type!", &LI, ElTy);
|
2002-04-24 19:12:21 +00:00
|
|
|
visitInstruction(LI);
|
|
|
|
}
|
|
|
|
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitStoreInst(StoreInst &SI) {
|
2002-08-22 22:49:05 +00:00
|
|
|
const Type *ElTy =
|
|
|
|
cast<PointerType>(SI.getOperand(1)->getType())->getElementType();
|
2002-06-25 15:56:27 +00:00
|
|
|
Assert2(ElTy == SI.getOperand(0)->getType(),
|
2003-11-21 17:06:29 +00:00
|
|
|
"Stored value type does not match pointer operand type!", &SI, ElTy);
|
2002-04-24 19:12:21 +00:00
|
|
|
visitInstruction(SI);
|
|
|
|
}
|
|
|
|
|
2007-12-17 01:00:21 +00:00
|
|
|
void Verifier::visitAllocationInst(AllocationInst &AI) {
|
2008-03-01 09:01:57 +00:00
|
|
|
const PointerType *PTy = AI.getType();
|
|
|
|
Assert1(PTy->getAddressSpace() == 0,
|
|
|
|
"Allocation instruction pointer not in the generic address space!",
|
|
|
|
&AI);
|
|
|
|
Assert1(PTy->getElementType()->isSized(), "Cannot allocate unsized type",
|
|
|
|
&AI);
|
2007-12-17 01:00:21 +00:00
|
|
|
visitInstruction(AI);
|
|
|
|
}
|
|
|
|
|
2008-07-23 00:34:11 +00:00
|
|
|
void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
|
|
|
|
Assert1(ExtractValueInst::getIndexedType(EVI.getAggregateOperand()->getType(),
|
|
|
|
EVI.idx_begin(), EVI.idx_end()) ==
|
|
|
|
EVI.getType(),
|
|
|
|
"Invalid ExtractValueInst operands!", &EVI);
|
2008-04-23 04:06:15 +00:00
|
|
|
|
2008-07-23 00:34:11 +00:00
|
|
|
visitInstruction(EVI);
|
2008-02-19 22:15:16 +00:00
|
|
|
}
|
|
|
|
|
2008-07-23 00:34:11 +00:00
|
|
|
void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
|
|
|
|
Assert1(ExtractValueInst::getIndexedType(IVI.getAggregateOperand()->getType(),
|
|
|
|
IVI.idx_begin(), IVI.idx_end()) ==
|
|
|
|
IVI.getOperand(1)->getType(),
|
|
|
|
"Invalid InsertValueInst operands!", &IVI);
|
|
|
|
|
|
|
|
visitInstruction(IVI);
|
|
|
|
}
|
2002-04-18 20:37:37 +00:00
|
|
|
|
2004-03-02 00:22:19 +00:00
|
|
|
/// verifyInstruction - Verify that an instruction is well formed.
|
|
|
|
///
|
2002-06-25 15:56:27 +00:00
|
|
|
void Verifier::visitInstruction(Instruction &I) {
|
2005-04-21 23:48:37 +00:00
|
|
|
BasicBlock *BB = I.getParent();
|
2002-09-09 20:26:04 +00:00
|
|
|
Assert1(BB, "Instruction not embedded in basic block!", &I);
|
2002-04-18 20:37:37 +00:00
|
|
|
|
|
|
|
if (!isa<PHINode>(I)) { // Check that non-phi nodes are not self referential
|
2002-06-25 15:56:27 +00:00
|
|
|
for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
|
2002-04-18 20:37:37 +00:00
|
|
|
UI != UE; ++UI)
|
2004-02-27 17:28:25 +00:00
|
|
|
Assert1(*UI != (User*)&I ||
|
2007-06-11 15:40:48 +00:00
|
|
|
!DT->dominates(&BB->getParent()->getEntryBlock(), BB),
|
2002-06-25 15:56:27 +00:00
|
|
|
"Only PHI nodes may reference their own value!", &I);
|
2002-04-18 20:37:37 +00:00
|
|
|
}
|
2008-02-09 01:06:01 +00:00
|
|
|
|
|
|
|
// Verify that if this is a terminator that it is at the end of the block.
|
|
|
|
if (isa<TerminatorInst>(I))
|
|
|
|
Assert1(BB->getTerminator() == &I, "Terminator not at end of block!", &I);
|
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
|
2002-07-18 00:13:42 +00:00
|
|
|
// Check that void typed values don't have names
|
2002-06-25 15:56:27 +00:00
|
|
|
Assert1(I.getType() != Type::VoidTy || !I.hasName(),
|
|
|
|
"Instruction has a name, but provides a void value!", &I);
|
2002-07-18 00:13:42 +00:00
|
|
|
|
2004-03-29 00:29:36 +00:00
|
|
|
// Check that the return value of the instruction is either void or a legal
|
|
|
|
// value type.
|
2008-02-21 01:54:02 +00:00
|
|
|
Assert1(I.getType() == Type::VoidTy || I.getType()->isFirstClassType()
|
2008-02-21 22:24:17 +00:00
|
|
|
|| ((isa<CallInst>(I) || isa<InvokeInst>(I))
|
|
|
|
&& isa<StructType>(I.getType())),
|
2004-03-29 00:29:36 +00:00
|
|
|
"Instruction returns a non-scalar type!", &I);
|
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
// Check that all uses of the instruction, if they are instructions
|
|
|
|
// themselves, actually have parent basic blocks. If the use is not an
|
|
|
|
// instruction, it is an error!
|
2002-07-18 00:13:42 +00:00
|
|
|
for (User::use_iterator UI = I.use_begin(), UE = I.use_end();
|
|
|
|
UI != UE; ++UI) {
|
2003-10-05 17:44:18 +00:00
|
|
|
Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!",
|
|
|
|
*UI);
|
|
|
|
Instruction *Used = cast<Instruction>(*UI);
|
|
|
|
Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
|
|
|
|
" embeded in a basic block!", &I, Used);
|
2002-07-18 00:13:42 +00:00
|
|
|
}
|
2003-05-08 03:47:33 +00:00
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
|
2005-02-24 16:58:29 +00:00
|
|
|
Assert1(I.getOperand(i) != 0, "Instruction has null operand!", &I);
|
2006-07-11 20:29:49 +00:00
|
|
|
|
|
|
|
// Check to make sure that only first-class-values are operands to
|
|
|
|
// instructions.
|
2008-02-21 01:54:02 +00:00
|
|
|
if (!I.getOperand(i)->getType()->isFirstClassType()) {
|
2008-07-23 00:34:11 +00:00
|
|
|
Assert1(0, "Instruction operands must be first-class values!", &I);
|
2008-02-21 01:54:02 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 03:23:54 +00:00
|
|
|
if (Function *F = dyn_cast<Function>(I.getOperand(i))) {
|
2006-07-11 20:29:49 +00:00
|
|
|
// Check to make sure that the "address of" an intrinsic function is never
|
|
|
|
// taken.
|
2003-05-08 03:47:33 +00:00
|
|
|
Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)),
|
|
|
|
"Cannot take the address of an intrinsic!", &I);
|
2007-04-20 21:48:08 +00:00
|
|
|
Assert1(F->getParent() == Mod, "Referencing function in another module!",
|
|
|
|
&I);
|
2004-03-14 03:23:54 +00:00
|
|
|
} else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) {
|
|
|
|
Assert1(OpBB->getParent() == BB->getParent(),
|
|
|
|
"Referring to a basic block in another function!", &I);
|
|
|
|
} else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) {
|
|
|
|
Assert1(OpArg->getParent() == BB->getParent(),
|
|
|
|
"Referring to an argument in another function!", &I);
|
2007-04-20 21:48:08 +00:00
|
|
|
} else if (GlobalValue *GV = dyn_cast<GlobalValue>(I.getOperand(i))) {
|
|
|
|
Assert1(GV->getParent() == Mod, "Referencing global in another module!",
|
|
|
|
&I);
|
2004-03-14 03:23:54 +00:00
|
|
|
} else if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) {
|
2004-01-14 04:25:59 +00:00
|
|
|
BasicBlock *OpBlock = Op->getParent();
|
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
// Check that a definition dominates all of its uses.
|
|
|
|
if (!isa<PHINode>(I)) {
|
2004-01-14 05:42:52 +00:00
|
|
|
// Invoke results are only usable in the normal destination, not in the
|
|
|
|
// exceptional destination.
|
2006-12-16 02:25:35 +00:00
|
|
|
if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
|
2004-01-14 05:42:52 +00:00
|
|
|
OpBlock = II->getNormalDest();
|
2006-12-16 02:25:35 +00:00
|
|
|
|
2006-12-20 21:20:13 +00:00
|
|
|
Assert2(OpBlock != II->getUnwindDest(),
|
|
|
|
"No uses of invoke possible due to dominance structure!",
|
|
|
|
Op, II);
|
|
|
|
|
2006-12-16 02:25:35 +00:00
|
|
|
// If the normal successor of an invoke instruction has multiple
|
|
|
|
// predecessors, then the normal edge from the invoke is critical, so
|
|
|
|
// the invoke value can only be live if the destination block
|
|
|
|
// dominates all of it's predecessors (other than the invoke) or if
|
|
|
|
// the invoke value is only used by a phi in the successor.
|
|
|
|
if (!OpBlock->getSinglePredecessor() &&
|
2007-06-11 15:40:48 +00:00
|
|
|
DT->dominates(&BB->getParent()->getEntryBlock(), BB)) {
|
2006-12-16 02:25:35 +00:00
|
|
|
// The first case we allow is if the use is a PHI operand in the
|
|
|
|
// normal block, and if that PHI operand corresponds to the invoke's
|
|
|
|
// block.
|
|
|
|
bool Bad = true;
|
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(&I))
|
|
|
|
if (PN->getParent() == OpBlock &&
|
|
|
|
PN->getIncomingBlock(i/2) == Op->getParent())
|
|
|
|
Bad = false;
|
|
|
|
|
|
|
|
// If it is used by something non-phi, then the other case is that
|
|
|
|
// 'OpBlock' dominates all of its predecessors other than the
|
|
|
|
// invoke. In this case, the invoke value can still be used.
|
2006-12-20 19:50:15 +00:00
|
|
|
if (Bad) {
|
|
|
|
Bad = false;
|
2006-12-16 02:25:35 +00:00
|
|
|
for (pred_iterator PI = pred_begin(OpBlock),
|
|
|
|
E = pred_end(OpBlock); PI != E; ++PI) {
|
2007-06-11 15:40:48 +00:00
|
|
|
if (*PI != II->getParent() && !DT->dominates(OpBlock, *PI)) {
|
2006-12-16 02:25:35 +00:00
|
|
|
Bad = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-12-20 21:20:13 +00:00
|
|
|
Assert2(!Bad,
|
|
|
|
"Invoke value defined on critical edge but not dead!", &I,
|
|
|
|
Op);
|
2006-12-16 02:25:35 +00:00
|
|
|
}
|
|
|
|
} else if (OpBlock == BB) {
|
2004-04-16 05:51:47 +00:00
|
|
|
// If they are in the same basic block, make sure that the definition
|
|
|
|
// comes before the use.
|
2004-09-29 20:07:45 +00:00
|
|
|
Assert2(InstsInThisBlock.count(Op) ||
|
2007-06-11 15:40:48 +00:00
|
|
|
!DT->dominates(&BB->getParent()->getEntryBlock(), BB),
|
2004-04-16 05:51:47 +00:00
|
|
|
"Instruction does not dominate all uses!", Op, &I);
|
|
|
|
}
|
2004-01-14 05:42:52 +00:00
|
|
|
|
2003-10-05 17:44:18 +00:00
|
|
|
// Definition must dominate use unless use is unreachable!
|
2008-07-18 05:23:39 +00:00
|
|
|
Assert2(InstsInThisBlock.count(Op) || DT->dominates(Op, &I) ||
|
2007-06-11 15:40:48 +00:00
|
|
|
!DT->dominates(&BB->getParent()->getEntryBlock(), BB),
|
2003-10-05 17:44:18 +00:00
|
|
|
"Instruction does not dominate all uses!", Op, &I);
|
|
|
|
} else {
|
|
|
|
// PHI nodes are more difficult than other nodes because they actually
|
|
|
|
// "use" the value in the predecessor basic blocks they correspond to.
|
|
|
|
BasicBlock *PredBB = cast<BasicBlock>(I.getOperand(i+1));
|
2007-06-11 15:40:48 +00:00
|
|
|
Assert2(DT->dominates(OpBlock, PredBB) ||
|
|
|
|
!DT->dominates(&BB->getParent()->getEntryBlock(), PredBB),
|
2003-10-05 17:44:18 +00:00
|
|
|
"Instruction does not dominate all uses!", Op, &I);
|
|
|
|
}
|
2006-01-26 00:08:45 +00:00
|
|
|
} else if (isa<InlineAsm>(I.getOperand(i))) {
|
2007-12-17 18:08:19 +00:00
|
|
|
Assert1(i == 0 && (isa<CallInst>(I) || isa<InvokeInst>(I)),
|
2006-01-26 00:08:45 +00:00
|
|
|
"Cannot take the address of an inline asm!", &I);
|
2003-10-05 17:44:18 +00:00
|
|
|
}
|
|
|
|
}
|
2004-09-29 20:07:45 +00:00
|
|
|
InstsInThisBlock.insert(&I);
|
2003-05-08 03:47:33 +00:00
|
|
|
}
|
|
|
|
|
2009-01-07 00:09:01 +00:00
|
|
|
// Flags used by TableGen to mark intrinsic parameters with the
|
|
|
|
// LLVMExtendedElementVectorType and LLVMTruncatedElementVectorType classes.
|
|
|
|
static const unsigned ExtendedElementVectorType = 0x40000000;
|
|
|
|
static const unsigned TruncatedElementVectorType = 0x20000000;
|
|
|
|
|
2003-05-08 03:47:33 +00:00
|
|
|
/// visitIntrinsicFunction - Allow intrinsics to be verified in different ways.
|
2004-03-02 00:22:19 +00:00
|
|
|
///
|
2003-11-11 22:41:34 +00:00
|
|
|
void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
|
2003-05-08 03:47:33 +00:00
|
|
|
Function *IF = CI.getCalledFunction();
|
2007-04-20 21:48:08 +00:00
|
|
|
Assert1(IF->isDeclaration(), "Intrinsic functions should never be defined!",
|
|
|
|
IF);
|
2006-03-09 22:06:04 +00:00
|
|
|
|
|
|
|
#define GET_INTRINSIC_VERIFIER
|
|
|
|
#include "llvm/Intrinsics.gen"
|
|
|
|
#undef GET_INTRINSIC_VERIFIER
|
2007-09-17 20:30:04 +00:00
|
|
|
|
|
|
|
switch (ID) {
|
|
|
|
default:
|
|
|
|
break;
|
2009-01-19 21:00:48 +00:00
|
|
|
case Intrinsic::dbg_declare: // llvm.dbg.declare
|
|
|
|
if (Constant *C = dyn_cast<Constant>(CI.getOperand(1)))
|
|
|
|
Assert1(C && !isa<ConstantPointerNull>(C),
|
|
|
|
"invalid llvm.dbg.declare intrinsic call", &CI);
|
|
|
|
break;
|
2008-11-21 16:42:48 +00:00
|
|
|
case Intrinsic::memcpy:
|
|
|
|
case Intrinsic::memmove:
|
|
|
|
case Intrinsic::memset:
|
2008-08-23 05:31:10 +00:00
|
|
|
Assert1(isa<ConstantInt>(CI.getOperand(4)),
|
|
|
|
"alignment argument of memory intrinsics must be a constant int",
|
|
|
|
&CI);
|
|
|
|
break;
|
2008-08-23 09:46:46 +00:00
|
|
|
case Intrinsic::gcroot:
|
|
|
|
case Intrinsic::gcwrite:
|
2008-08-24 20:46:13 +00:00
|
|
|
case Intrinsic::gcread:
|
|
|
|
if (ID == Intrinsic::gcroot) {
|
2008-10-25 16:28:35 +00:00
|
|
|
AllocaInst *AI =
|
|
|
|
dyn_cast<AllocaInst>(CI.getOperand(1)->stripPointerCasts());
|
|
|
|
Assert1(AI && isa<PointerType>(AI->getType()->getElementType()),
|
|
|
|
"llvm.gcroot parameter #1 must be a pointer alloca.", &CI);
|
2008-08-24 20:46:13 +00:00
|
|
|
Assert1(isa<Constant>(CI.getOperand(2)),
|
|
|
|
"llvm.gcroot parameter #2 must be a constant.", &CI);
|
|
|
|
}
|
2008-08-23 09:46:46 +00:00
|
|
|
|
2008-08-24 20:46:13 +00:00
|
|
|
Assert1(CI.getParent()->getParent()->hasGC(),
|
|
|
|
"Enclosing function does not use GC.", &CI);
|
|
|
|
break;
|
2007-09-29 16:25:54 +00:00
|
|
|
case Intrinsic::init_trampoline:
|
2008-05-07 22:54:15 +00:00
|
|
|
Assert1(isa<Function>(CI.getOperand(2)->stripPointerCasts()),
|
2007-09-29 16:25:54 +00:00
|
|
|
"llvm.init_trampoline parameter #2 must resolve to a function.",
|
|
|
|
&CI);
|
2007-12-25 02:02:10 +00:00
|
|
|
break;
|
2008-10-16 06:00:36 +00:00
|
|
|
case Intrinsic::prefetch:
|
|
|
|
Assert1(isa<ConstantInt>(CI.getOperand(2)) &&
|
|
|
|
isa<ConstantInt>(CI.getOperand(3)) &&
|
|
|
|
cast<ConstantInt>(CI.getOperand(2))->getZExtValue() < 2 &&
|
|
|
|
cast<ConstantInt>(CI.getOperand(3))->getZExtValue() < 4,
|
|
|
|
"invalid arguments to llvm.prefetch",
|
|
|
|
&CI);
|
|
|
|
break;
|
2008-11-18 23:09:31 +00:00
|
|
|
case Intrinsic::stackprotector:
|
2008-11-19 09:17:16 +00:00
|
|
|
Assert1(isa<AllocaInst>(CI.getOperand(2)->stripPointerCasts()),
|
2008-11-18 23:09:31 +00:00
|
|
|
"llvm.stackprotector parameter #2 must resolve to an alloca.",
|
|
|
|
&CI);
|
|
|
|
break;
|
2007-09-17 20:30:04 +00:00
|
|
|
}
|
2002-04-18 20:37:37 +00:00
|
|
|
}
|
|
|
|
|
2009-01-08 01:56:06 +00:00
|
|
|
/// Produce a string to identify an intrinsic parameter or return value.
|
|
|
|
/// The ArgNo value numbers the return values from 0 to NumRets-1 and the
|
|
|
|
/// parameters beginning with NumRets.
|
|
|
|
///
|
|
|
|
static std::string IntrinsicParam(unsigned ArgNo, unsigned NumRets) {
|
|
|
|
if (ArgNo < NumRets) {
|
|
|
|
if (NumRets == 1)
|
|
|
|
return "Intrinsic result type";
|
|
|
|
else
|
|
|
|
return "Intrinsic result type #" + utostr(ArgNo);
|
|
|
|
} else
|
|
|
|
return "Intrinsic parameter #" + utostr(ArgNo - NumRets);
|
|
|
|
}
|
|
|
|
|
2008-11-13 07:11:27 +00:00
|
|
|
bool Verifier::PerformTypeCheck(Intrinsic::ID ID, Function *F, const Type *Ty,
|
|
|
|
int VT, unsigned ArgNo, std::string &Suffix) {
|
|
|
|
const FunctionType *FTy = F->getFunctionType();
|
|
|
|
|
|
|
|
unsigned NumElts = 0;
|
|
|
|
const Type *EltTy = Ty;
|
2009-01-07 00:09:01 +00:00
|
|
|
const VectorType *VTy = dyn_cast<VectorType>(Ty);
|
|
|
|
if (VTy) {
|
2008-11-13 07:11:27 +00:00
|
|
|
EltTy = VTy->getElementType();
|
|
|
|
NumElts = VTy->getNumElements();
|
|
|
|
}
|
|
|
|
|
2009-01-08 01:56:06 +00:00
|
|
|
const Type *RetTy = FTy->getReturnType();
|
|
|
|
const StructType *ST = dyn_cast<StructType>(RetTy);
|
|
|
|
unsigned NumRets = 1;
|
|
|
|
if (ST)
|
|
|
|
NumRets = ST->getNumElements();
|
|
|
|
|
2008-11-13 07:11:27 +00:00
|
|
|
if (VT < 0) {
|
|
|
|
int Match = ~VT;
|
2009-01-07 00:09:01 +00:00
|
|
|
|
|
|
|
// Check flags that indicate a type that is an integral vector type with
|
|
|
|
// elements that are larger or smaller than the elements of the matched
|
|
|
|
// type.
|
|
|
|
if ((Match & (ExtendedElementVectorType |
|
|
|
|
TruncatedElementVectorType)) != 0) {
|
2009-01-07 23:44:27 +00:00
|
|
|
const IntegerType *IEltTy = dyn_cast<IntegerType>(EltTy);
|
|
|
|
if (!VTy || !IEltTy) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not "
|
2009-01-07 23:44:27 +00:00
|
|
|
"an integral vector type.", F);
|
2009-01-07 00:09:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Adjust the current Ty (in the opposite direction) rather than
|
|
|
|
// the type being matched against.
|
2009-01-07 23:44:27 +00:00
|
|
|
if ((Match & ExtendedElementVectorType) != 0) {
|
|
|
|
if ((IEltTy->getBitWidth() & 1) != 0) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " vector "
|
2009-01-07 23:44:27 +00:00
|
|
|
"element bit-width is odd.", F);
|
|
|
|
return false;
|
|
|
|
}
|
2009-01-07 00:09:01 +00:00
|
|
|
Ty = VectorType::getTruncatedElementVectorType(VTy);
|
2009-01-07 23:44:27 +00:00
|
|
|
} else
|
2009-01-07 00:09:01 +00:00
|
|
|
Ty = VectorType::getExtendedElementVectorType(VTy);
|
|
|
|
Match &= ~(ExtendedElementVectorType | TruncatedElementVectorType);
|
|
|
|
}
|
|
|
|
|
2008-11-19 01:15:05 +00:00
|
|
|
if (Match <= static_cast<int>(NumRets - 1)) {
|
|
|
|
if (ST)
|
|
|
|
RetTy = ST->getElementType(Match);
|
|
|
|
|
|
|
|
if (Ty != RetTy) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " does not "
|
2008-11-13 07:11:27 +00:00
|
|
|
"match return type.", F);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (Ty != FTy->getParamType(Match - 1)) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " does not "
|
2008-11-13 07:11:27 +00:00
|
|
|
"match parameter %" + utostr(Match - 1) + ".", F);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (VT == MVT::iAny) {
|
|
|
|
if (!EltTy->isInteger()) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not "
|
|
|
|
"an integer type.", F);
|
2008-11-13 07:11:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned GotBits = cast<IntegerType>(EltTy)->getBitWidth();
|
|
|
|
Suffix += ".";
|
|
|
|
|
|
|
|
if (EltTy != Ty)
|
|
|
|
Suffix += "v" + utostr(NumElts);
|
|
|
|
|
|
|
|
Suffix += "i" + utostr(GotBits);;
|
|
|
|
|
|
|
|
// Check some constraints on various intrinsics.
|
|
|
|
switch (ID) {
|
|
|
|
default: break; // Not everything needs to be checked.
|
|
|
|
case Intrinsic::bswap:
|
2009-01-08 01:56:06 +00:00
|
|
|
if (GotBits < 16 || GotBits % 16 != 0) {
|
2008-11-13 07:11:27 +00:00
|
|
|
CheckFailed("Intrinsic requires even byte width argument", F);
|
2009-01-08 01:56:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-11-13 07:11:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (VT == MVT::fAny) {
|
|
|
|
if (!EltTy->isFloatingPoint()) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not "
|
|
|
|
"a floating-point type.", F);
|
2008-11-13 07:11:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Suffix += ".";
|
|
|
|
|
|
|
|
if (EltTy != Ty)
|
|
|
|
Suffix += "v" + utostr(NumElts);
|
|
|
|
|
|
|
|
Suffix += MVT::getMVT(EltTy).getMVTString();
|
|
|
|
} else if (VT == MVT::iPTR) {
|
|
|
|
if (!isa<PointerType>(Ty)) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not a "
|
|
|
|
"pointer and a pointer is required.", F);
|
|
|
|
return false;
|
2008-11-13 07:11:27 +00:00
|
|
|
}
|
|
|
|
} else if (VT == MVT::iPTRAny) {
|
|
|
|
// Outside of TableGen, we don't distinguish iPTRAny (to any address space)
|
|
|
|
// and iPTR. In the verifier, we can not distinguish which case we have so
|
|
|
|
// allow either case to be legal.
|
|
|
|
if (const PointerType* PTyp = dyn_cast<PointerType>(Ty)) {
|
|
|
|
Suffix += ".p" + utostr(PTyp->getAddressSpace()) +
|
|
|
|
MVT::getMVT(PTyp->getElementType()).getMVTString();
|
|
|
|
} else {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is not a "
|
|
|
|
"pointer and a pointer is required.", F);
|
2008-11-13 07:11:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (MVT((MVT::SimpleValueType)VT).isVector()) {
|
|
|
|
MVT VVT = MVT((MVT::SimpleValueType)VT);
|
|
|
|
|
|
|
|
// If this is a vector argument, verify the number and type of elements.
|
|
|
|
if (VVT.getVectorElementType() != MVT::getMVT(EltTy)) {
|
|
|
|
CheckFailed("Intrinsic prototype has incorrect vector element type!", F);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (VVT.getVectorNumElements() != NumElts) {
|
|
|
|
CheckFailed("Intrinsic prototype has incorrect number of "
|
|
|
|
"vector elements!", F);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (MVT((MVT::SimpleValueType)VT).getTypeForMVT() != EltTy) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is wrong!", F);
|
2008-11-13 07:11:27 +00:00
|
|
|
return false;
|
|
|
|
} else if (EltTy != Ty) {
|
2009-01-08 01:56:06 +00:00
|
|
|
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " is a vector "
|
|
|
|
"and a scalar is required.", F);
|
|
|
|
return false;
|
2008-11-13 07:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-31 04:46:47 +00:00
|
|
|
/// VerifyIntrinsicPrototype - TableGen emits calls to this function into
|
|
|
|
/// Intrinsics.gen. This implements a little state machine that verifies the
|
|
|
|
/// prototype of intrinsics.
|
2008-11-13 09:08:33 +00:00
|
|
|
void Verifier::VerifyIntrinsicPrototype(Intrinsic::ID ID, Function *F,
|
|
|
|
unsigned RetNum,
|
|
|
|
unsigned ParamNum, ...) {
|
2006-03-31 04:46:47 +00:00
|
|
|
va_list VA;
|
2008-11-13 09:08:33 +00:00
|
|
|
va_start(VA, ParamNum);
|
2006-03-31 04:46:47 +00:00
|
|
|
const FunctionType *FTy = F->getFunctionType();
|
|
|
|
|
2007-04-01 07:22:57 +00:00
|
|
|
// For overloaded intrinsics, the Suffix of the function name must match the
|
|
|
|
// types of the arguments. This variable keeps track of the expected
|
|
|
|
// suffix, to be checked at the end.
|
|
|
|
std::string Suffix;
|
|
|
|
|
2008-11-13 09:08:33 +00:00
|
|
|
if (FTy->getNumParams() + FTy->isVarArg() != ParamNum) {
|
2007-08-04 01:51:18 +00:00
|
|
|
CheckFailed("Intrinsic prototype has incorrect number of arguments!", F);
|
|
|
|
return;
|
|
|
|
}
|
2006-03-31 04:46:47 +00:00
|
|
|
|
2008-11-13 09:08:33 +00:00
|
|
|
const Type *Ty = FTy->getReturnType();
|
|
|
|
const StructType *ST = dyn_cast<StructType>(Ty);
|
|
|
|
|
|
|
|
// Verify the return types.
|
|
|
|
if (ST && ST->getNumElements() != RetNum) {
|
|
|
|
CheckFailed("Intrinsic prototype has incorrect number of return types!", F);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned ArgNo = 0; ArgNo < RetNum; ++ArgNo) {
|
|
|
|
int VT = va_arg(VA, int); // An MVT::SimpleValueType when non-negative.
|
|
|
|
|
|
|
|
if (ST) Ty = ST->getElementType(ArgNo);
|
|
|
|
|
|
|
|
if (!PerformTypeCheck(ID, F, Ty, VT, ArgNo, Suffix))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify the parameter types.
|
|
|
|
for (unsigned ArgNo = 0; ArgNo < ParamNum; ++ArgNo) {
|
2008-06-06 12:08:01 +00:00
|
|
|
int VT = va_arg(VA, int); // An MVT::SimpleValueType when non-negative.
|
2007-02-06 18:02:54 +00:00
|
|
|
|
2007-08-04 01:51:18 +00:00
|
|
|
if (VT == MVT::isVoid && ArgNo > 0) {
|
|
|
|
if (!FTy->isVarArg())
|
|
|
|
CheckFailed("Intrinsic prototype has no '...'!", F);
|
2006-03-31 04:46:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-01-08 01:56:06 +00:00
|
|
|
if (!PerformTypeCheck(ID, F, FTy->getParamType(ArgNo), VT, ArgNo + RetNum,
|
|
|
|
Suffix))
|
2007-08-04 01:51:18 +00:00
|
|
|
break;
|
2006-03-31 04:46:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
va_end(VA);
|
2007-04-01 07:22:57 +00:00
|
|
|
|
2008-07-30 04:36:53 +00:00
|
|
|
// For intrinsics without pointer arguments, if we computed a Suffix then the
|
|
|
|
// intrinsic is overloaded and we need to make sure that the name of the
|
|
|
|
// function is correct. We add the suffix to the name of the intrinsic and
|
|
|
|
// compare against the given function name. If they are not the same, the
|
|
|
|
// function name is invalid. This ensures that overloading of intrinsics
|
|
|
|
// uses a sane and consistent naming convention. Note that intrinsics with
|
|
|
|
// pointer argument may or may not be overloaded so we will check assuming it
|
|
|
|
// has a suffix and not.
|
2007-04-01 07:22:57 +00:00
|
|
|
if (!Suffix.empty()) {
|
|
|
|
std::string Name(Intrinsic::getName(ID));
|
2008-07-30 04:36:53 +00:00
|
|
|
if (Name + Suffix != F->getName()) {
|
2007-04-01 07:22:57 +00:00
|
|
|
CheckFailed("Overloaded intrinsic has incorrect suffix: '" +
|
|
|
|
F->getName().substr(Name.length()) + "'. It should be '" +
|
|
|
|
Suffix + "'", F);
|
2008-07-30 04:36:53 +00:00
|
|
|
}
|
2007-04-01 07:22:57 +00:00
|
|
|
}
|
2008-04-07 13:39:11 +00:00
|
|
|
|
|
|
|
// Check parameter attributes.
|
2008-09-25 21:00:45 +00:00
|
|
|
Assert1(F->getAttributes() == Intrinsic::getAttributes(ID),
|
2008-04-07 13:39:11 +00:00
|
|
|
"Intrinsic has wrong parameter attributes!", F);
|
2006-03-31 04:46:47 +00:00
|
|
|
}
|
|
|
|
|
2002-04-18 20:37:37 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Implement the public interfaces to this file...
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-04-02 15:45:08 +00:00
|
|
|
FunctionPass *llvm::createVerifierPass(VerifierFailureAction action) {
|
|
|
|
return new Verifier(action);
|
2002-04-18 20:37:37 +00:00
|
|
|
}
|
|
|
|
|
2002-08-02 17:37:08 +00:00
|
|
|
|
2005-04-21 23:48:37 +00:00
|
|
|
// verifyFunction - Create
|
2004-04-02 15:45:08 +00:00
|
|
|
bool llvm::verifyFunction(const Function &f, VerifierFailureAction action) {
|
2004-03-14 03:16:15 +00:00
|
|
|
Function &F = const_cast<Function&>(f);
|
2007-01-30 20:08:39 +00:00
|
|
|
assert(!F.isDeclaration() && "Cannot verify external functions");
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2008-09-02 11:30:10 +00:00
|
|
|
ExistingModuleProvider MP(F.getParent());
|
|
|
|
FunctionPassManager FPM(&MP);
|
2004-04-02 15:45:08 +00:00
|
|
|
Verifier *V = new Verifier(action);
|
2004-03-14 03:16:15 +00:00
|
|
|
FPM.add(V);
|
|
|
|
FPM.run(F);
|
2008-09-02 11:30:10 +00:00
|
|
|
MP.releaseModule();
|
2004-03-14 03:16:15 +00:00
|
|
|
return V->Broken;
|
2002-02-20 17:55:43 +00:00
|
|
|
}
|
|
|
|
|
2004-03-02 00:22:19 +00:00
|
|
|
/// verifyModule - Check a module for errors, printing messages on stderr.
|
|
|
|
/// Return true if the module is corrupt.
|
|
|
|
///
|
2006-07-06 18:02:27 +00:00
|
|
|
bool llvm::verifyModule(const Module &M, VerifierFailureAction action,
|
|
|
|
std::string *ErrorInfo) {
|
2002-08-02 17:37:08 +00:00
|
|
|
PassManager PM;
|
2004-04-02 15:45:08 +00:00
|
|
|
Verifier *V = new Verifier(action);
|
2002-08-02 17:37:08 +00:00
|
|
|
PM.add(V);
|
2008-06-24 17:47:37 +00:00
|
|
|
PM.run(const_cast<Module&>(M));
|
2006-07-06 18:02:27 +00:00
|
|
|
|
|
|
|
if (ErrorInfo && V->Broken)
|
|
|
|
*ErrorInfo = V->msgs.str();
|
2002-08-02 17:37:08 +00:00
|
|
|
return V->Broken;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2004-05-25 08:53:29 +00:00
|
|
|
|
|
|
|
// vim: sw=2
|