blob: a7f5369a6086895ce54b25dfd2bc71475bb3bc1e [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001//===-- Verifier.cpp - Implement the Module Verifier -------------*- C++ -*-==//
2//
3// This file defines the method verifier interface, that can be used for some
4// sanity checking of input to the system.
5//
6// Note that this does not provide full 'java style' security and verifications,
7// instead it just tries to ensure that code is well formed.
8//
9// . There are no duplicated names in a symbol table... ie there !exist a val
10// with the same name as something in the symbol table, but with a different
11// address as what is in the symbol table...
12// . Both of a binary operator's parameters are the same type
Chris Lattner68289f02001-11-06 22:53:11 +000013// . Verify that arithmetic and other things are only performed on first class
14// types. No adding structures or arrays.
Chris Lattner2f7c9632001-06-06 20:29:01 +000015// . All of the constants in a switch statement are of the correct type
16// . The code is in valid SSA form
17// . It should be illegal to put a label into any other type (like a structure)
18// or to return one. [except constant arrays!]
19// . Right now 'add bool 0, 0' is valid. This isn't particularly good.
Chris Lattnerd02f08d2002-02-20 17:55:43 +000020// . Only phi nodes can be self referential: 'add int %0, %0 ; <int>:0' is bad
21// * PHI nodes must have an entry for each predecessor, with no extras.
22// * All basic blocks should only end with terminator insts, not contain them
23// * The entry node to a method must not have predecessors
24// * All Instructions must be embeded into a basic block
Chris Lattner68289f02001-11-06 22:53:11 +000025// . Verify that none of the Value getType()'s are null.
Chris Lattner2f7c9632001-06-06 20:29:01 +000026// . Method's cannot take a void typed parameter
27// . Verify that a method's argument list agrees with it's declared type.
28// . Verify that arrays and structures have fixed elements: No unsized arrays.
Chris Lattnerd02f08d2002-02-20 17:55:43 +000029// . All other things that are tested by asserts spread about the code...
Chris Lattner2f7c9632001-06-06 20:29:01 +000030//
31//===----------------------------------------------------------------------===//
32
33#include "llvm/Analysis/Verifier.h"
Chris Lattnerd02f08d2002-02-20 17:55:43 +000034#include "llvm/Assembly/Writer.h"
35#include "llvm/Pass.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000036#include "llvm/Method.h"
37#include "llvm/Module.h"
38#include "llvm/BasicBlock.h"
39#include "llvm/Type.h"
Chris Lattnerd02f08d2002-02-20 17:55:43 +000040#include "llvm/iPHINode.h"
41#include "llvm/Support/CFG.h"
42#include "Support/STLExtras.h"
43#include <algorithm>
Chris Lattner7f74a562002-01-20 22:54:45 +000044
Chris Lattnerd02f08d2002-02-20 17:55:43 +000045#if 0
Chris Lattner2f7c9632001-06-06 20:29:01 +000046#define t(x) (1 << (unsigned)Type::x)
Chris Lattner2f7c9632001-06-06 20:29:01 +000047#define SignedIntegralTypes (t(SByteTyID) | t(ShortTyID) | \
48 t(IntTyID) | t(LongTyID))
49static long UnsignedIntegralTypes = t(UByteTyID) | t(UShortTyID) |
50 t(UIntTyID) | t(ULongTyID);
51static const long FloatingPointTypes = t(FloatTyID) | t(DoubleTyID);
52
53static const long IntegralTypes = SignedIntegralTypes | UnsignedIntegralTypes;
54
Chris Lattner2f7c9632001-06-06 20:29:01 +000055static long ValidTypes[Type::FirstDerivedTyID] = {
56 [(unsigned)Instruction::UnaryOps::Not] t(BoolTyID),
57 //[Instruction::UnaryOps::Add] = IntegralTypes,
58 // [Instruction::Sub] = IntegralTypes,
59};
Chris Lattnerd02f08d2002-02-20 17:55:43 +000060#undef t
Chris Lattner2f7c9632001-06-06 20:29:01 +000061#endif
62
Chris Lattnerd02f08d2002-02-20 17:55:43 +000063// CheckFailed - A check failed, so print out the condition and the message that
64// failed. This provides a nice place to put a breakpoint if you want to see
65// why something is not correct.
66//
Chris Lattner43373a62002-02-24 23:01:21 +000067static inline void CheckFailed(const char *Cond, const std::string &Message,
Chris Lattnerd02f08d2002-02-20 17:55:43 +000068 const Value *V1 = 0, const Value *V2 = 0) {
69 std::cerr << Message << "\n";
70 if (V1) std::cerr << V1 << "\n";
71 if (V2) std::cerr << V2 << "\n";
72}
Chris Lattner2f7c9632001-06-06 20:29:01 +000073
Chris Lattnerd02f08d2002-02-20 17:55:43 +000074// Assert - We know that cond should be true, if not print an error message.
75#define Assert(C, M) \
76 do { if (!(C)) { CheckFailed(#C, M); Broken = true; } } while (0)
77#define Assert1(C, M, V1) \
78 do { if (!(C)) { CheckFailed(#C, M, V1); Broken = true; } } while (0)
79#define Assert2(C, M, V1, V2) \
80 do { if (!(C)) { CheckFailed(#C, M, V1, V2); Broken = true; } } while (0)
Chris Lattner2f7c9632001-06-06 20:29:01 +000081
Chris Lattnerd02f08d2002-02-20 17:55:43 +000082
83// verifyInstruction - Verify that a non-terminator instruction is well formed.
84//
85static bool verifyInstruction(const Instruction *I) {
86 bool Broken = false;
87 assert(I->getParent() && "Instruction not embedded in basic block!");
88 Assert1(!isa<TerminatorInst>(I),
89 "Terminator instruction found embedded in basic block!\n", I);
90
91 // Check that all uses of the instruction, if they are instructions
92 // themselves, actually have parent basic blocks.
93 //
94 for (User::use_const_iterator UI = I->use_begin(), UE = I->use_end();
95 UI != UE; ++UI) {
96 if (Instruction *Used = dyn_cast<Instruction>(*UI))
97 Assert2(Used->getParent() != 0, "Instruction referencing instruction not"
98 " embeded in a basic block!", I, Used);
99 }
100
101 // Check that PHI nodes look ok
102 if (const PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattner43373a62002-02-24 23:01:21 +0000103 std::vector<const BasicBlock*> Preds(pred_begin(I->getParent()),
104 pred_end(I->getParent()));
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000105 // Loop over all of the incoming values, make sure that there are
106 // predecessors for each one...
107 //
108 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
109 const BasicBlock *BB = PN->getIncomingBlock(i);
Chris Lattner43373a62002-02-24 23:01:21 +0000110 std::vector<const BasicBlock*>::iterator PI =
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000111 find(Preds.begin(), Preds.end(), BB);
112 Assert2(PI != Preds.end(), "PHI node has entry for basic block that"
113 " is not a predecessor!", PN, BB);
114 if (PI != Preds.end()) Preds.erase(PI);
115 }
116
117 // There should be no entries left in the predecessor list...
Chris Lattner43373a62002-02-24 23:01:21 +0000118 for (std::vector<const BasicBlock*>::iterator I = Preds.begin(),
119 E = Preds.end(); I != E; ++I)
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000120 Assert2(0, "PHI node does not have entry for a predecessor basic block!",
121 PN, *I);
122 }
123 return Broken;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000124}
125
126
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000127// verifyBasicBlock - Verify that a basic block is well formed...
128//
129static bool verifyBasicBlock(const BasicBlock *BB) {
130 bool Broken = false;
131 Assert1(BB->getTerminator(), "Basic Block does not have terminator!\n", BB);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000132
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000133 // Verify all instructions, except the terminator...
134 Broken |= reduce_apply_bool(BB->begin(), BB->end()-1, verifyInstruction);
135 return Broken;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000136}
137
Chris Lattner2f7c9632001-06-06 20:29:01 +0000138
Chris Lattnerd02f08d2002-02-20 17:55:43 +0000139// verifyMethod - Verify that a method is ok.
140//
141static bool verifyMethod(const Method *M) {
142 if (M->isExternal()) return false; // Can happen if called by verifyModule
143
144 bool Broken = false;
145 const BasicBlock *Entry = M->front();
146 Assert1(pred_begin(Entry) == pred_end(Entry),
147 "Entry block to method must not have predecessors!", Entry);
148
149 Broken |= reduce_apply_bool(M->begin(), M->end(), verifyBasicBlock);
150 return Broken;
151}
152
153
154namespace { // Anonymous namespace for class
155 struct VerifierPass : public MethodPass {
156 bool runOnMethod(Method *M) { verifyMethod(M); return false; }
157 };
158}
159
160Pass *createVerifierPass() {
161 return new VerifierPass();
162}
163
164// verifyModule - Check a module for errors, printing messages on stderr.
165// Return true if the module is corrupt.
166//
167bool verifyModule(Module *M) {
168 return reduce_apply_bool(M->begin(), M->end(), verifyMethod);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000169}