blob: 25d4f9571dab37a2dff46ab5a552708a3005fa38 [file] [log] [blame]
Dan Gohman113902e2010-04-08 18:47:09 +00001//===-- Lint.cpp - Check for common errors in LLVM IR ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass statically checks for common and easily-identified constructs
11// which produce undefined or likely unintended behavior in LLVM IR.
12//
13// It is not a guarantee of correctness, in two ways. First, it isn't
14// comprehensive. There are checks which could be done statically which are
15// not yet implemented. Some of these are indicated by TODO comments, but
16// those aren't comprehensive either. Second, many conditions cannot be
17// checked statically. This pass does no dynamic instrumentation, so it
18// can't check for all possible problems.
19//
20// Another limitation is that it assumes all code will be executed. A store
21// through a null pointer in a basic block which is never reached is harmless,
22// but this pass will warn about it anyway.
Dan Gohman08833552010-04-22 01:30:05 +000023//
Dan Gohman113902e2010-04-08 18:47:09 +000024// Optimization passes may make conditions that this pass checks for more or
25// less obvious. If an optimization pass appears to be introducing a warning,
26// it may be that the optimization pass is merely exposing an existing
27// condition in the code.
28//
29// This code may be run before instcombine. In many cases, instcombine checks
30// for the same kinds of things and turns instructions with undefined behavior
31// into unreachable (or equivalent). Because of this, this pass makes some
32// effort to look through bitcasts and so on.
33//
34//===----------------------------------------------------------------------===//
35
36#include "llvm/Analysis/Passes.h"
37#include "llvm/Analysis/AliasAnalysis.h"
38#include "llvm/Analysis/Lint.h"
39#include "llvm/Analysis/ValueTracking.h"
40#include "llvm/Assembly/Writer.h"
41#include "llvm/Target/TargetData.h"
42#include "llvm/Pass.h"
43#include "llvm/PassManager.h"
44#include "llvm/IntrinsicInst.h"
45#include "llvm/Function.h"
46#include "llvm/Support/CallSite.h"
47#include "llvm/Support/Debug.h"
48#include "llvm/Support/InstVisitor.h"
49#include "llvm/Support/raw_ostream.h"
Dan Gohmanbe02b202010-04-09 01:39:53 +000050#include "llvm/ADT/STLExtras.h"
Dan Gohman113902e2010-04-08 18:47:09 +000051using namespace llvm;
52
53namespace {
Dan Gohman5b61b382010-04-30 19:05:00 +000054 namespace MemRef {
55 static unsigned Read = 1;
56 static unsigned Write = 2;
57 static unsigned Callee = 4;
58 static unsigned Branchee = 8;
59 }
60
Dan Gohman113902e2010-04-08 18:47:09 +000061 class Lint : public FunctionPass, public InstVisitor<Lint> {
62 friend class InstVisitor<Lint>;
63
Dan Gohmanbe02b202010-04-09 01:39:53 +000064 void visitFunction(Function &F);
65
Dan Gohman113902e2010-04-08 18:47:09 +000066 void visitCallSite(CallSite CS);
67 void visitMemoryReference(Instruction &I, Value *Ptr, unsigned Align,
Dan Gohman5b61b382010-04-30 19:05:00 +000068 const Type *Ty, unsigned Flags);
Dan Gohman113902e2010-04-08 18:47:09 +000069
Dan Gohman113902e2010-04-08 18:47:09 +000070 void visitCallInst(CallInst &I);
71 void visitInvokeInst(InvokeInst &I);
72 void visitReturnInst(ReturnInst &I);
73 void visitLoadInst(LoadInst &I);
74 void visitStoreInst(StoreInst &I);
Dan Gohmanbe02b202010-04-09 01:39:53 +000075 void visitXor(BinaryOperator &I);
76 void visitSub(BinaryOperator &I);
Dan Gohmandd98c4d2010-04-08 23:05:57 +000077 void visitLShr(BinaryOperator &I);
78 void visitAShr(BinaryOperator &I);
79 void visitShl(BinaryOperator &I);
Dan Gohman113902e2010-04-08 18:47:09 +000080 void visitSDiv(BinaryOperator &I);
81 void visitUDiv(BinaryOperator &I);
82 void visitSRem(BinaryOperator &I);
83 void visitURem(BinaryOperator &I);
84 void visitAllocaInst(AllocaInst &I);
85 void visitVAArgInst(VAArgInst &I);
86 void visitIndirectBrInst(IndirectBrInst &I);
Dan Gohmandd98c4d2010-04-08 23:05:57 +000087 void visitExtractElementInst(ExtractElementInst &I);
88 void visitInsertElementInst(InsertElementInst &I);
Dan Gohmanbe02b202010-04-09 01:39:53 +000089 void visitUnreachableInst(UnreachableInst &I);
Dan Gohman113902e2010-04-08 18:47:09 +000090
91 public:
92 Module *Mod;
93 AliasAnalysis *AA;
94 TargetData *TD;
95
96 std::string Messages;
97 raw_string_ostream MessagesStr;
98
99 static char ID; // Pass identification, replacement for typeid
100 Lint() : FunctionPass(&ID), MessagesStr(Messages) {}
101
102 virtual bool runOnFunction(Function &F);
103
104 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
105 AU.setPreservesAll();
106 AU.addRequired<AliasAnalysis>();
107 }
108 virtual void print(raw_ostream &O, const Module *M) const {}
109
110 void WriteValue(const Value *V) {
111 if (!V) return;
112 if (isa<Instruction>(V)) {
113 MessagesStr << *V << '\n';
114 } else {
115 WriteAsOperand(MessagesStr, V, true, Mod);
116 MessagesStr << '\n';
117 }
118 }
119
120 void WriteType(const Type *T) {
121 if (!T) return;
122 MessagesStr << ' ';
123 WriteTypeSymbolic(MessagesStr, T, Mod);
124 }
125
126 // CheckFailed - A check failed, so print out the condition and the message
127 // that failed. This provides a nice place to put a breakpoint if you want
128 // to see why something is not correct.
129 void CheckFailed(const Twine &Message,
130 const Value *V1 = 0, const Value *V2 = 0,
131 const Value *V3 = 0, const Value *V4 = 0) {
132 MessagesStr << Message.str() << "\n";
133 WriteValue(V1);
134 WriteValue(V2);
135 WriteValue(V3);
136 WriteValue(V4);
137 }
138
139 void CheckFailed(const Twine &Message, const Value *V1,
140 const Type *T2, const Value *V3 = 0) {
141 MessagesStr << Message.str() << "\n";
142 WriteValue(V1);
143 WriteType(T2);
144 WriteValue(V3);
145 }
146
147 void CheckFailed(const Twine &Message, const Type *T1,
148 const Type *T2 = 0, const Type *T3 = 0) {
149 MessagesStr << Message.str() << "\n";
150 WriteType(T1);
151 WriteType(T2);
152 WriteType(T3);
153 }
154 };
155}
156
157char Lint::ID = 0;
158static RegisterPass<Lint>
159X("lint", "Statically lint-checks LLVM IR", false, true);
160
161// Assert - We know that cond should be true, if not print an error message.
162#define Assert(C, M) \
163 do { if (!(C)) { CheckFailed(M); return; } } while (0)
164#define Assert1(C, M, V1) \
165 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
166#define Assert2(C, M, V1, V2) \
167 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
168#define Assert3(C, M, V1, V2, V3) \
169 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
170#define Assert4(C, M, V1, V2, V3, V4) \
171 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
172
173// Lint::run - This is the main Analysis entry point for a
174// function.
175//
176bool Lint::runOnFunction(Function &F) {
177 Mod = F.getParent();
178 AA = &getAnalysis<AliasAnalysis>();
179 TD = getAnalysisIfAvailable<TargetData>();
180 visit(F);
181 dbgs() << MessagesStr.str();
182 return false;
183}
184
Dan Gohmanbe02b202010-04-09 01:39:53 +0000185void Lint::visitFunction(Function &F) {
186 // This isn't undefined behavior, it's just a little unusual, and it's a
187 // fairly common mistake to neglect to name a function.
188 Assert1(F.hasName() || F.hasLocalLinkage(),
189 "Unusual: Unnamed function with non-local linkage", &F);
Dan Gohman113902e2010-04-08 18:47:09 +0000190}
191
192void Lint::visitCallSite(CallSite CS) {
193 Instruction &I = *CS.getInstruction();
194 Value *Callee = CS.getCalledValue();
195
196 // TODO: Check function alignment?
Dan Gohman5b61b382010-04-30 19:05:00 +0000197 visitMemoryReference(I, Callee, 0, 0, MemRef::Callee);
Dan Gohman113902e2010-04-08 18:47:09 +0000198
199 if (Function *F = dyn_cast<Function>(Callee->stripPointerCasts())) {
200 Assert1(CS.getCallingConv() == F->getCallingConv(),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000201 "Undefined behavior: Caller and callee calling convention differ",
202 &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000203
204 const FunctionType *FT = F->getFunctionType();
205 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
206
207 Assert1(FT->isVarArg() ?
208 FT->getNumParams() <= NumActualArgs :
209 FT->getNumParams() == NumActualArgs,
Dan Gohmanbe02b202010-04-09 01:39:53 +0000210 "Undefined behavior: Call argument count mismatches callee "
211 "argument count", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000212
213 // TODO: Check argument types (in case the callee was casted)
214
215 // TODO: Check ABI-significant attributes.
216
217 // TODO: Check noalias attribute.
218
219 // TODO: Check sret attribute.
220 }
221
222 // TODO: Check the "tail" keyword constraints.
223
224 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I))
225 switch (II->getIntrinsicID()) {
226 default: break;
227
228 // TODO: Check more intrinsics
229
230 case Intrinsic::memcpy: {
231 MemCpyInst *MCI = cast<MemCpyInst>(&I);
Dan Gohman5b61b382010-04-30 19:05:00 +0000232 visitMemoryReference(I, MCI->getSource(), MCI->getAlignment(), 0,
233 MemRef::Write);
234 visitMemoryReference(I, MCI->getDest(), MCI->getAlignment(), 0,
235 MemRef::Read);
Dan Gohman113902e2010-04-08 18:47:09 +0000236
Dan Gohmanbe02b202010-04-09 01:39:53 +0000237 // Check that the memcpy arguments don't overlap. The AliasAnalysis API
238 // isn't expressive enough for what we really want to do. Known partial
239 // overlap is not distinguished from the case where nothing is known.
Dan Gohman113902e2010-04-08 18:47:09 +0000240 unsigned Size = 0;
241 if (const ConstantInt *Len =
242 dyn_cast<ConstantInt>(MCI->getLength()->stripPointerCasts()))
243 if (Len->getValue().isIntN(32))
244 Size = Len->getValue().getZExtValue();
245 Assert1(AA->alias(MCI->getSource(), Size, MCI->getDest(), Size) !=
246 AliasAnalysis::MustAlias,
Dan Gohmanbe02b202010-04-09 01:39:53 +0000247 "Undefined behavior: memcpy source and destination overlap", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000248 break;
249 }
250 case Intrinsic::memmove: {
251 MemMoveInst *MMI = cast<MemMoveInst>(&I);
Dan Gohman5b61b382010-04-30 19:05:00 +0000252 visitMemoryReference(I, MMI->getSource(), MMI->getAlignment(), 0,
253 MemRef::Write);
254 visitMemoryReference(I, MMI->getDest(), MMI->getAlignment(), 0,
255 MemRef::Read);
Dan Gohman113902e2010-04-08 18:47:09 +0000256 break;
257 }
258 case Intrinsic::memset: {
259 MemSetInst *MSI = cast<MemSetInst>(&I);
Dan Gohman5b61b382010-04-30 19:05:00 +0000260 visitMemoryReference(I, MSI->getDest(), MSI->getAlignment(), 0,
261 MemRef::Write);
Dan Gohman113902e2010-04-08 18:47:09 +0000262 break;
263 }
264
265 case Intrinsic::vastart:
Dan Gohmanbe02b202010-04-09 01:39:53 +0000266 Assert1(I.getParent()->getParent()->isVarArg(),
267 "Undefined behavior: va_start called in a non-varargs function",
268 &I);
269
Dan Gohman5b61b382010-04-30 19:05:00 +0000270 visitMemoryReference(I, CS.getArgument(0), 0, 0,
271 MemRef::Read | MemRef::Write);
Dan Gohman113902e2010-04-08 18:47:09 +0000272 break;
273 case Intrinsic::vacopy:
Dan Gohman5b61b382010-04-30 19:05:00 +0000274 visitMemoryReference(I, CS.getArgument(0), 0, 0, MemRef::Write);
275 visitMemoryReference(I, CS.getArgument(1), 0, 0, MemRef::Read);
Dan Gohman113902e2010-04-08 18:47:09 +0000276 break;
277 case Intrinsic::vaend:
Dan Gohman5b61b382010-04-30 19:05:00 +0000278 visitMemoryReference(I, CS.getArgument(0), 0, 0,
279 MemRef::Read | MemRef::Write);
Dan Gohman113902e2010-04-08 18:47:09 +0000280 break;
281
282 case Intrinsic::stackrestore:
Dan Gohman5b61b382010-04-30 19:05:00 +0000283 visitMemoryReference(I, CS.getArgument(0), 0, 0,
284 MemRef::Read);
Dan Gohman113902e2010-04-08 18:47:09 +0000285 break;
286 }
287}
288
289void Lint::visitCallInst(CallInst &I) {
290 return visitCallSite(&I);
291}
292
293void Lint::visitInvokeInst(InvokeInst &I) {
294 return visitCallSite(&I);
295}
296
297void Lint::visitReturnInst(ReturnInst &I) {
298 Function *F = I.getParent()->getParent();
299 Assert1(!F->doesNotReturn(),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000300 "Unusual: Return statement in function with noreturn attribute",
301 &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000302}
303
304// TODO: Add a length argument and check that the reference is in bounds
Dan Gohman113902e2010-04-08 18:47:09 +0000305void Lint::visitMemoryReference(Instruction &I,
Dan Gohman5b61b382010-04-30 19:05:00 +0000306 Value *Ptr, unsigned Align, const Type *Ty,
307 unsigned Flags) {
Dan Gohmanbe02b202010-04-09 01:39:53 +0000308 Value *UnderlyingObject = Ptr->getUnderlyingObject();
309 Assert1(!isa<ConstantPointerNull>(UnderlyingObject),
310 "Undefined behavior: Null pointer dereference", &I);
311 Assert1(!isa<UndefValue>(UnderlyingObject),
312 "Undefined behavior: Undef pointer dereference", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000313
Dan Gohman5b61b382010-04-30 19:05:00 +0000314 if (Flags & MemRef::Write) {
315 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(UnderlyingObject))
316 Assert1(!GV->isConstant(),
317 "Undefined behavior: Write to read-only memory", &I);
318 Assert1(!isa<Function>(UnderlyingObject) &&
319 !isa<BlockAddress>(UnderlyingObject),
320 "Undefined behavior: Write to text section", &I);
321 }
322 if (Flags & MemRef::Read) {
323 Assert1(!isa<Function>(UnderlyingObject),
324 "Unusual: Load from function body", &I);
325 Assert1(!isa<BlockAddress>(UnderlyingObject),
326 "Undefined behavior: Load from block address", &I);
327 }
328 if (Flags & MemRef::Callee) {
329 Assert1(!isa<BlockAddress>(UnderlyingObject),
330 "Undefined behavior: Call to block address", &I);
331 }
332 if (Flags & MemRef::Branchee) {
333 Assert1(!isa<Constant>(UnderlyingObject) ||
334 isa<BlockAddress>(UnderlyingObject),
335 "Undefined behavior: Branch to non-blockaddress", &I);
336 }
337
Dan Gohman113902e2010-04-08 18:47:09 +0000338 if (TD) {
339 if (Align == 0 && Ty) Align = TD->getABITypeAlignment(Ty);
340
341 if (Align != 0) {
342 unsigned BitWidth = TD->getTypeSizeInBits(Ptr->getType());
343 APInt Mask = APInt::getAllOnesValue(BitWidth),
344 KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
345 ComputeMaskedBits(Ptr, Mask, KnownZero, KnownOne, TD);
346 Assert1(!(KnownOne & APInt::getLowBitsSet(BitWidth, Log2_32(Align))),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000347 "Undefined behavior: Memory reference address is misaligned", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000348 }
349 }
350}
351
352void Lint::visitLoadInst(LoadInst &I) {
Dan Gohman5b61b382010-04-30 19:05:00 +0000353 visitMemoryReference(I, I.getPointerOperand(), I.getAlignment(), I.getType(),
354 MemRef::Read);
Dan Gohman113902e2010-04-08 18:47:09 +0000355}
356
357void Lint::visitStoreInst(StoreInst &I) {
358 visitMemoryReference(I, I.getPointerOperand(), I.getAlignment(),
Dan Gohman5b61b382010-04-30 19:05:00 +0000359 I.getOperand(0)->getType(), MemRef::Write);
Dan Gohman113902e2010-04-08 18:47:09 +0000360}
361
Dan Gohmanbe02b202010-04-09 01:39:53 +0000362void Lint::visitXor(BinaryOperator &I) {
363 Assert1(!isa<UndefValue>(I.getOperand(0)) ||
364 !isa<UndefValue>(I.getOperand(1)),
365 "Undefined result: xor(undef, undef)", &I);
366}
367
368void Lint::visitSub(BinaryOperator &I) {
369 Assert1(!isa<UndefValue>(I.getOperand(0)) ||
370 !isa<UndefValue>(I.getOperand(1)),
371 "Undefined result: sub(undef, undef)", &I);
372}
373
Dan Gohmandd98c4d2010-04-08 23:05:57 +0000374void Lint::visitLShr(BinaryOperator &I) {
375 if (ConstantInt *CI =
376 dyn_cast<ConstantInt>(I.getOperand(1)->stripPointerCasts()))
377 Assert1(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000378 "Undefined result: Shift count out of range", &I);
Dan Gohmandd98c4d2010-04-08 23:05:57 +0000379}
380
381void Lint::visitAShr(BinaryOperator &I) {
382 if (ConstantInt *CI =
383 dyn_cast<ConstantInt>(I.getOperand(1)->stripPointerCasts()))
384 Assert1(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000385 "Undefined result: Shift count out of range", &I);
Dan Gohmandd98c4d2010-04-08 23:05:57 +0000386}
387
388void Lint::visitShl(BinaryOperator &I) {
389 if (ConstantInt *CI =
390 dyn_cast<ConstantInt>(I.getOperand(1)->stripPointerCasts()))
391 Assert1(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000392 "Undefined result: Shift count out of range", &I);
Dan Gohmandd98c4d2010-04-08 23:05:57 +0000393}
394
Dan Gohman113902e2010-04-08 18:47:09 +0000395static bool isZero(Value *V, TargetData *TD) {
Dan Gohmanbe02b202010-04-09 01:39:53 +0000396 // Assume undef could be zero.
397 if (isa<UndefValue>(V)) return true;
398
Dan Gohman113902e2010-04-08 18:47:09 +0000399 unsigned BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
400 APInt Mask = APInt::getAllOnesValue(BitWidth),
401 KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
402 ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD);
403 return KnownZero.isAllOnesValue();
404}
405
406void Lint::visitSDiv(BinaryOperator &I) {
Dan Gohmanbe02b202010-04-09 01:39:53 +0000407 Assert1(!isZero(I.getOperand(1), TD),
408 "Undefined behavior: Division by zero", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000409}
410
411void Lint::visitUDiv(BinaryOperator &I) {
Dan Gohmanbe02b202010-04-09 01:39:53 +0000412 Assert1(!isZero(I.getOperand(1), TD),
413 "Undefined behavior: Division by zero", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000414}
415
416void Lint::visitSRem(BinaryOperator &I) {
Dan Gohmanbe02b202010-04-09 01:39:53 +0000417 Assert1(!isZero(I.getOperand(1), TD),
418 "Undefined behavior: Division by zero", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000419}
420
421void Lint::visitURem(BinaryOperator &I) {
Dan Gohmanbe02b202010-04-09 01:39:53 +0000422 Assert1(!isZero(I.getOperand(1), TD),
423 "Undefined behavior: Division by zero", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000424}
425
426void Lint::visitAllocaInst(AllocaInst &I) {
427 if (isa<ConstantInt>(I.getArraySize()))
428 // This isn't undefined behavior, it's just an obvious pessimization.
429 Assert1(&I.getParent()->getParent()->getEntryBlock() == I.getParent(),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000430 "Pessimization: Static alloca outside of entry block", &I);
Dan Gohman113902e2010-04-08 18:47:09 +0000431}
432
433void Lint::visitVAArgInst(VAArgInst &I) {
Dan Gohman5b61b382010-04-30 19:05:00 +0000434 visitMemoryReference(I, I.getOperand(0), 0, 0,
435 MemRef::Read | MemRef::Write);
Dan Gohman113902e2010-04-08 18:47:09 +0000436}
437
438void Lint::visitIndirectBrInst(IndirectBrInst &I) {
Dan Gohman5b61b382010-04-30 19:05:00 +0000439 visitMemoryReference(I, I.getAddress(), 0, 0, MemRef::Branchee);
Dan Gohman113902e2010-04-08 18:47:09 +0000440}
441
Dan Gohmandd98c4d2010-04-08 23:05:57 +0000442void Lint::visitExtractElementInst(ExtractElementInst &I) {
443 if (ConstantInt *CI =
444 dyn_cast<ConstantInt>(I.getIndexOperand()->stripPointerCasts()))
445 Assert1(CI->getValue().ult(I.getVectorOperandType()->getNumElements()),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000446 "Undefined result: extractelement index out of range", &I);
Dan Gohmandd98c4d2010-04-08 23:05:57 +0000447}
448
449void Lint::visitInsertElementInst(InsertElementInst &I) {
450 if (ConstantInt *CI =
451 dyn_cast<ConstantInt>(I.getOperand(2)->stripPointerCasts()))
452 Assert1(CI->getValue().ult(I.getType()->getNumElements()),
Dan Gohmanbe02b202010-04-09 01:39:53 +0000453 "Undefined result: insertelement index out of range", &I);
454}
455
456void Lint::visitUnreachableInst(UnreachableInst &I) {
457 // This isn't undefined behavior, it's merely suspicious.
458 Assert1(&I == I.getParent()->begin() ||
459 prior(BasicBlock::iterator(&I))->mayHaveSideEffects(),
460 "Unusual: unreachable immediately preceded by instruction without "
461 "side effects", &I);
Dan Gohmandd98c4d2010-04-08 23:05:57 +0000462}
463
Dan Gohman113902e2010-04-08 18:47:09 +0000464//===----------------------------------------------------------------------===//
465// Implement the public interfaces to this file...
466//===----------------------------------------------------------------------===//
467
468FunctionPass *llvm::createLintPass() {
469 return new Lint();
470}
471
472/// lintFunction - Check a function for errors, printing messages on stderr.
473///
474void llvm::lintFunction(const Function &f) {
475 Function &F = const_cast<Function&>(f);
476 assert(!F.isDeclaration() && "Cannot lint external functions");
477
478 FunctionPassManager FPM(F.getParent());
479 Lint *V = new Lint();
480 FPM.add(V);
481 FPM.run(F);
482}
483
484/// lintModule - Check a module for errors, printing messages on stderr.
485/// Return true if the module is corrupt.
486///
487void llvm::lintModule(const Module &M, std::string *ErrorInfo) {
488 PassManager PM;
489 Lint *V = new Lint();
490 PM.add(V);
491 PM.run(const_cast<Module&>(M));
492
493 if (ErrorInfo)
494 *ErrorInfo = V->MessagesStr.str();
495}