summaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Verifier.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-18 22:11:52 +0000
committerChris Lattner <sabre@nondot.org>2002-04-18 22:11:52 +0000
commitefdd0a2c2eaccb6a6d9846faa64bb78e893f295b (patch)
treed72d9907731de62dc8b18e3eafdba659ea866a9f /lib/VMCore/Verifier.cpp
parent7b5577b371cd96cf500108fa173b179a705e6857 (diff)
downloadexternal_llvm-efdd0a2c2eaccb6a6d9846faa64bb78e893f295b.zip
external_llvm-efdd0a2c2eaccb6a6d9846faa64bb78e893f295b.tar.gz
external_llvm-efdd0a2c2eaccb6a6d9846faa64bb78e893f295b.tar.bz2
Add some basic checks of CallInst's.
Assert now returns from the current function on error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2308 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Verifier.cpp')
-rw-r--r--lib/VMCore/Verifier.cpp25
1 files changed, 17 insertions, 8 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp
index e34c484..a4bbf1d 100644
--- a/lib/VMCore/Verifier.cpp
+++ b/lib/VMCore/Verifier.cpp
@@ -41,6 +41,7 @@
#include "llvm/DerivedTypes.h"
#include "llvm/iPHINode.h"
#include "llvm/iTerminators.h"
+#include "llvm/iOther.h"
#include "llvm/Argument.h"
#include "llvm/SymbolTable.h"
#include "llvm/Support/CFG.h"
@@ -71,6 +72,7 @@ namespace { // Anonymous namespace for class
void visitBasicBlock(BasicBlock *BB);
void visitPHINode(PHINode *PN);
void visitBinaryOperator(BinaryOperator *B);
+ void visitCallInst(CallInst *CI);
void visitInstruction(Instruction *I);
// CheckFailed - A check failed, so print out the condition and the message
@@ -89,11 +91,11 @@ namespace { // Anonymous namespace for class
// Assert - We know that cond should be true, if not print an error message.
#define Assert(C, M) \
- do { if (!(C)) { CheckFailed(#C, M); } } while (0)
+ do { if (!(C)) { CheckFailed(#C, M); return; } } while (0)
#define Assert1(C, M, V1) \
- do { if (!(C)) { CheckFailed(#C, M, V1); } } while (0)
+ do { if (!(C)) { CheckFailed(#C, M, V1); return; } } while (0)
#define Assert2(C, M, V1, V2) \
- do { if (!(C)) { CheckFailed(#C, M, V1, V2); } } while (0)
+ do { if (!(C)) { CheckFailed(#C, M, V1, V2); return; } } while (0)
// verifySymbolTable - Verify that a function or module symbol table is ok
@@ -156,7 +158,7 @@ void Verifier::visitBasicBlock(BasicBlock *BB) {
Assert1(BB->getTerminator(), "Basic Block does not have terminator!\n", BB);
// Check that the terminator is ok as well...
- if (BB->getTerminator() && isa<ReturnInst>(BB->getTerminator())) {
+ if (isa<ReturnInst>(BB->getTerminator())) {
Instruction *I = BB->getTerminator();
Function *F = I->getParent()->getParent();
if (I->getNumOperands() == 0)
@@ -189,7 +191,7 @@ void Verifier::visitPHINode(PHINode *PN) {
find(Preds.begin(), Preds.end(), BB);
Assert2(PI != Preds.end(), "PHI node has entry for basic block that"
" is not a predecessor!", PN, BB);
- if (PI != Preds.end()) Preds.erase(PI);
+ Preds.erase(PI);
}
// There should be no entries left in the predecessor list...
@@ -201,6 +203,13 @@ void Verifier::visitPHINode(PHINode *PN) {
visitInstruction(PN);
}
+void Verifier::visitCallInst(CallInst *CI) {
+ Assert1(isa<PointerType>(CI->getOperand(0)->getType()),
+ "Called function must be a pointer!", CI);
+ PointerType *FPTy = cast<PointerType>(CI->getOperand(0)->getType());
+ Assert1(isa<FunctionType>(FPTy->getElementType()),
+ "Called function is not pointer to function type!", CI);
+}
// visitBinaryOperator - Check that both arguments to the binary operator are
// of the same type!
@@ -227,9 +236,9 @@ void Verifier::visitInstruction(Instruction *I) {
UI != UE; ++UI) {
Assert1(isa<Instruction>(*UI), "Use of instruction is not an instruction!",
*UI);
- if (Instruction *Used = dyn_cast<Instruction>(*UI))
- Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
- " embeded in a basic block!", I, Used);
+ Instruction *Used = cast<Instruction>(*UI);
+ Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
+ " embeded in a basic block!", I, Used);
}
if (!isa<PHINode>(I)) { // Check that non-phi nodes are not self referential