2010-04-08 18:47:09 +00:00
|
|
|
//===-- Lint.cpp - Check for common errors in LLVM IR ---------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This pass statically checks for common and easily-identified constructs
|
|
|
|
// which produce undefined or likely unintended behavior in LLVM IR.
|
|
|
|
//
|
|
|
|
// It is not a guarantee of correctness, in two ways. First, it isn't
|
|
|
|
// comprehensive. There are checks which could be done statically which are
|
|
|
|
// not yet implemented. Some of these are indicated by TODO comments, but
|
|
|
|
// those aren't comprehensive either. Second, many conditions cannot be
|
|
|
|
// checked statically. This pass does no dynamic instrumentation, so it
|
|
|
|
// can't check for all possible problems.
|
2014-03-06 17:33:55 +00:00
|
|
|
//
|
2010-04-08 18:47:09 +00:00
|
|
|
// Another limitation is that it assumes all code will be executed. A store
|
|
|
|
// through a null pointer in a basic block which is never reached is harmless,
|
2010-07-06 15:21:57 +00:00
|
|
|
// but this pass will warn about it anyway. This is the main reason why most
|
|
|
|
// of these checks live here instead of in the Verifier pass.
|
2010-04-22 01:30:05 +00:00
|
|
|
//
|
2010-04-08 18:47:09 +00:00
|
|
|
// Optimization passes may make conditions that this pass checks for more or
|
|
|
|
// less obvious. If an optimization pass appears to be introducing a warning,
|
|
|
|
// it may be that the optimization pass is merely exposing an existing
|
|
|
|
// condition in the code.
|
2014-03-06 17:33:55 +00:00
|
|
|
//
|
2010-04-08 18:47:09 +00:00
|
|
|
// This code may be run before instcombine. In many cases, instcombine checks
|
|
|
|
// for the same kinds of things and turns instructions with undefined behavior
|
|
|
|
// into unreachable (or equivalent). Because of this, this pass makes some
|
|
|
|
// effort to look through bitcasts and so on.
|
2014-03-06 17:33:55 +00:00
|
|
|
//
|
2010-04-08 18:47:09 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Analysis/Lint.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2010-04-08 18:47:09 +00:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
2010-05-28 16:21:24 +00:00
|
|
|
#include "llvm/Analysis/ConstantFolding.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Analysis/InstructionSimplify.h"
|
2010-05-28 16:21:24 +00:00
|
|
|
#include "llvm/Analysis/Loads.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Analysis/Passes.h"
|
2010-04-08 18:47:09 +00:00
|
|
|
#include "llvm/Analysis/ValueTracking.h"
|
2014-03-04 11:01:28 +00:00
|
|
|
#include "llvm/IR/CallSite.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2014-01-13 09:26:24 +00:00
|
|
|
#include "llvm/IR/Dominators.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Function.h"
|
2014-03-06 03:23:41 +00:00
|
|
|
#include "llvm/IR/InstVisitor.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2010-04-08 18:47:09 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Target/TargetLibraryInfo.h"
|
2010-04-08 18:47:09 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
2010-04-30 19:05:00 +00:00
|
|
|
namespace MemRef {
|
|
|
|
static unsigned Read = 1;
|
|
|
|
static unsigned Write = 2;
|
|
|
|
static unsigned Callee = 4;
|
|
|
|
static unsigned Branchee = 8;
|
|
|
|
}
|
|
|
|
|
2010-04-08 18:47:09 +00:00
|
|
|
class Lint : public FunctionPass, public InstVisitor<Lint> {
|
|
|
|
friend class InstVisitor<Lint>;
|
|
|
|
|
2010-04-09 01:39:53 +00:00
|
|
|
void visitFunction(Function &F);
|
|
|
|
|
2010-04-08 18:47:09 +00:00
|
|
|
void visitCallSite(CallSite CS);
|
2010-05-28 21:43:57 +00:00
|
|
|
void visitMemoryReference(Instruction &I, Value *Ptr,
|
2010-10-19 22:54:46 +00:00
|
|
|
uint64_t Size, unsigned Align,
|
2011-07-18 04:54:35 +00:00
|
|
|
Type *Ty, unsigned Flags);
|
2010-04-08 18:47:09 +00:00
|
|
|
|
|
|
|
void visitCallInst(CallInst &I);
|
|
|
|
void visitInvokeInst(InvokeInst &I);
|
|
|
|
void visitReturnInst(ReturnInst &I);
|
|
|
|
void visitLoadInst(LoadInst &I);
|
|
|
|
void visitStoreInst(StoreInst &I);
|
2010-04-09 01:39:53 +00:00
|
|
|
void visitXor(BinaryOperator &I);
|
|
|
|
void visitSub(BinaryOperator &I);
|
2010-04-08 23:05:57 +00:00
|
|
|
void visitLShr(BinaryOperator &I);
|
|
|
|
void visitAShr(BinaryOperator &I);
|
|
|
|
void visitShl(BinaryOperator &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
void visitSDiv(BinaryOperator &I);
|
|
|
|
void visitUDiv(BinaryOperator &I);
|
|
|
|
void visitSRem(BinaryOperator &I);
|
|
|
|
void visitURem(BinaryOperator &I);
|
|
|
|
void visitAllocaInst(AllocaInst &I);
|
|
|
|
void visitVAArgInst(VAArgInst &I);
|
|
|
|
void visitIndirectBrInst(IndirectBrInst &I);
|
2010-04-08 23:05:57 +00:00
|
|
|
void visitExtractElementInst(ExtractElementInst &I);
|
|
|
|
void visitInsertElementInst(InsertElementInst &I);
|
2010-04-09 01:39:53 +00:00
|
|
|
void visitUnreachableInst(UnreachableInst &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2010-05-28 16:21:24 +00:00
|
|
|
Value *findValue(Value *V, bool OffsetOk) const;
|
2010-05-28 16:45:33 +00:00
|
|
|
Value *findValueImpl(Value *V, bool OffsetOk,
|
|
|
|
SmallPtrSet<Value *, 4> &Visited) const;
|
2010-05-28 16:21:24 +00:00
|
|
|
|
2010-04-08 18:47:09 +00:00
|
|
|
public:
|
|
|
|
Module *Mod;
|
|
|
|
AliasAnalysis *AA;
|
2010-05-28 16:21:24 +00:00
|
|
|
DominatorTree *DT;
|
2014-02-24 23:12:18 +00:00
|
|
|
const DataLayout *DL;
|
2011-12-01 03:08:23 +00:00
|
|
|
TargetLibraryInfo *TLI;
|
2010-04-08 18:47:09 +00:00
|
|
|
|
|
|
|
std::string Messages;
|
|
|
|
raw_string_ostream MessagesStr;
|
|
|
|
|
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-10-19 17:21:58 +00:00
|
|
|
Lint() : FunctionPass(ID), MessagesStr(Messages) {
|
|
|
|
initializeLintPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2014-03-05 07:30:04 +00:00
|
|
|
bool runOnFunction(Function &F) override;
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2014-03-05 07:30:04 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2010-04-08 18:47:09 +00:00
|
|
|
AU.setPreservesAll();
|
|
|
|
AU.addRequired<AliasAnalysis>();
|
2011-12-01 03:08:23 +00:00
|
|
|
AU.addRequired<TargetLibraryInfo>();
|
2014-01-13 13:07:17 +00:00
|
|
|
AU.addRequired<DominatorTreeWrapperPass>();
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
2014-03-05 07:30:04 +00:00
|
|
|
void print(raw_ostream &O, const Module *M) const override {}
|
2010-04-08 18:47:09 +00:00
|
|
|
|
|
|
|
void WriteValue(const Value *V) {
|
|
|
|
if (!V) return;
|
|
|
|
if (isa<Instruction>(V)) {
|
|
|
|
MessagesStr << *V << '\n';
|
|
|
|
} else {
|
2014-01-09 02:29:41 +00:00
|
|
|
V->printAsOperand(MessagesStr, true, Mod);
|
2010-04-08 18:47:09 +00:00
|
|
|
MessagesStr << '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
void CheckFailed(const Twine &Message,
|
|
|
|
const Value *V1 = 0, const Value *V2 = 0,
|
|
|
|
const Value *V3 = 0, const Value *V4 = 0) {
|
|
|
|
MessagesStr << Message.str() << "\n";
|
|
|
|
WriteValue(V1);
|
|
|
|
WriteValue(V2);
|
|
|
|
WriteValue(V3);
|
|
|
|
WriteValue(V4);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
char Lint::ID = 0;
|
2010-10-12 19:48:12 +00:00
|
|
|
INITIALIZE_PASS_BEGIN(Lint, "lint", "Statically lint-checks LLVM IR",
|
|
|
|
false, true)
|
2011-12-01 03:08:23 +00:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
|
2014-01-13 13:07:17 +00:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
2010-10-12 19:48:12 +00:00
|
|
|
INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
|
|
|
|
INITIALIZE_PASS_END(Lint, "lint", "Statically lint-checks LLVM IR",
|
|
|
|
false, true)
|
2010-04-08 18:47:09 +00:00
|
|
|
|
|
|
|
// Assert - We know that cond should be true, if not print an error message.
|
|
|
|
#define Assert(C, M) \
|
|
|
|
do { if (!(C)) { CheckFailed(M); return; } } while (0)
|
|
|
|
#define Assert1(C, M, V1) \
|
|
|
|
do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
|
|
|
|
#define Assert2(C, M, V1, V2) \
|
|
|
|
do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
|
|
|
|
#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)
|
|
|
|
|
|
|
|
// Lint::run - This is the main Analysis entry point for a
|
|
|
|
// function.
|
|
|
|
//
|
|
|
|
bool Lint::runOnFunction(Function &F) {
|
|
|
|
Mod = F.getParent();
|
|
|
|
AA = &getAnalysis<AliasAnalysis>();
|
2014-01-13 13:07:17 +00:00
|
|
|
DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
|
2014-02-25 17:30:31 +00:00
|
|
|
DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
|
|
|
|
DL = DLP ? &DLP->getDataLayout() : 0;
|
2011-12-01 03:08:23 +00:00
|
|
|
TLI = &getAnalysis<TargetLibraryInfo>();
|
2010-04-08 18:47:09 +00:00
|
|
|
visit(F);
|
|
|
|
dbgs() << MessagesStr.str();
|
2010-05-26 22:28:53 +00:00
|
|
|
Messages.clear();
|
2010-04-08 18:47:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-04-09 01:39:53 +00:00
|
|
|
void Lint::visitFunction(Function &F) {
|
|
|
|
// This isn't undefined behavior, it's just a little unusual, and it's a
|
|
|
|
// fairly common mistake to neglect to name a function.
|
|
|
|
Assert1(F.hasName() || F.hasLocalLinkage(),
|
|
|
|
"Unusual: Unnamed function with non-local linkage", &F);
|
2010-07-06 15:23:00 +00:00
|
|
|
|
|
|
|
// TODO: Check for irreducible control flow.
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitCallSite(CallSite CS) {
|
|
|
|
Instruction &I = *CS.getInstruction();
|
|
|
|
Value *Callee = CS.getCalledValue();
|
|
|
|
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, Callee, AliasAnalysis::UnknownSize,
|
|
|
|
0, 0, MemRef::Callee);
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2010-05-28 16:21:24 +00:00
|
|
|
if (Function *F = dyn_cast<Function>(findValue(Callee, /*OffsetOk=*/false))) {
|
2010-04-08 18:47:09 +00:00
|
|
|
Assert1(CS.getCallingConv() == F->getCallingConv(),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined behavior: Caller and callee calling convention differ",
|
|
|
|
&I);
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2011-07-18 04:54:35 +00:00
|
|
|
FunctionType *FT = F->getFunctionType();
|
2013-11-10 03:18:50 +00:00
|
|
|
unsigned NumActualArgs = CS.arg_size();
|
2010-04-08 18:47:09 +00:00
|
|
|
|
|
|
|
Assert1(FT->isVarArg() ?
|
|
|
|
FT->getNumParams() <= NumActualArgs :
|
|
|
|
FT->getNumParams() == NumActualArgs,
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined behavior: Call argument count mismatches callee "
|
|
|
|
"argument count", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2010-07-12 18:02:04 +00:00
|
|
|
Assert1(FT->getReturnType() == I.getType(),
|
|
|
|
"Undefined behavior: Call return type mismatches "
|
|
|
|
"callee return type", &I);
|
|
|
|
|
2010-05-28 21:43:57 +00:00
|
|
|
// Check argument types (in case the callee was casted) and attributes.
|
2010-07-06 15:23:00 +00:00
|
|
|
// TODO: Verify that caller and callee attributes are compatible.
|
2010-05-28 21:43:57 +00:00
|
|
|
Function::arg_iterator PI = F->arg_begin(), PE = F->arg_end();
|
|
|
|
CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
|
|
|
|
for (; AI != AE; ++AI) {
|
|
|
|
Value *Actual = *AI;
|
|
|
|
if (PI != PE) {
|
|
|
|
Argument *Formal = PI++;
|
|
|
|
Assert1(Formal->getType() == Actual->getType(),
|
|
|
|
"Undefined behavior: Call argument type mismatches "
|
|
|
|
"callee parameter type", &I);
|
2010-06-01 20:51:40 +00:00
|
|
|
|
2010-12-13 22:53:18 +00:00
|
|
|
// Check that noalias arguments don't alias other arguments. This is
|
|
|
|
// not fully precise because we don't know the sizes of the dereferenced
|
|
|
|
// memory regions.
|
2010-05-28 21:43:57 +00:00
|
|
|
if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
|
2010-11-11 19:23:51 +00:00
|
|
|
for (CallSite::arg_iterator BI = CS.arg_begin(); BI != AE; ++BI)
|
2010-12-10 20:04:06 +00:00
|
|
|
if (AI != BI && (*BI)->getType()->isPointerTy()) {
|
|
|
|
AliasAnalysis::AliasResult Result = AA->alias(*AI, *BI);
|
|
|
|
Assert1(Result != AliasAnalysis::MustAlias &&
|
|
|
|
Result != AliasAnalysis::PartialAlias,
|
|
|
|
"Unusual: noalias argument aliases another argument", &I);
|
|
|
|
}
|
2010-06-01 20:51:40 +00:00
|
|
|
|
|
|
|
// Check that an sret argument points to valid memory.
|
2010-05-28 21:43:57 +00:00
|
|
|
if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
|
2011-07-18 04:54:35 +00:00
|
|
|
Type *Ty =
|
2010-05-28 21:43:57 +00:00
|
|
|
cast<PointerType>(Formal->getType())->getElementType();
|
|
|
|
visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty),
|
2014-02-21 00:06:31 +00:00
|
|
|
DL ? DL->getABITypeAlignment(Ty) : 0,
|
2010-05-28 21:43:57 +00:00
|
|
|
Ty, MemRef::Read | MemRef::Write);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
2010-05-26 21:46:36 +00:00
|
|
|
if (CS.isCall() && cast<CallInst>(CS.getInstruction())->isTailCall())
|
|
|
|
for (CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
|
|
|
|
AI != AE; ++AI) {
|
2010-05-28 16:21:24 +00:00
|
|
|
Value *Obj = findValue(*AI, /*OffsetOk=*/true);
|
2010-05-28 16:34:49 +00:00
|
|
|
Assert1(!isa<AllocaInst>(Obj),
|
2010-05-26 21:46:36 +00:00
|
|
|
"Undefined behavior: Call with \"tail\" keyword references "
|
2010-05-28 16:34:49 +00:00
|
|
|
"alloca", &I);
|
2010-05-26 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
2010-04-08 18:47:09 +00:00
|
|
|
|
|
|
|
if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I))
|
|
|
|
switch (II->getIntrinsicID()) {
|
|
|
|
default: break;
|
|
|
|
|
|
|
|
// TODO: Check more intrinsics
|
|
|
|
|
|
|
|
case Intrinsic::memcpy: {
|
|
|
|
MemCpyInst *MCI = cast<MemCpyInst>(&I);
|
2010-05-28 21:43:57 +00:00
|
|
|
// TODO: If the size is known, use it.
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, MCI->getDest(), AliasAnalysis::UnknownSize,
|
|
|
|
MCI->getAlignment(), 0,
|
2010-05-28 17:44:00 +00:00
|
|
|
MemRef::Write);
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, MCI->getSource(), AliasAnalysis::UnknownSize,
|
|
|
|
MCI->getAlignment(), 0,
|
2010-04-30 19:05:00 +00:00
|
|
|
MemRef::Read);
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2010-04-09 01:39:53 +00:00
|
|
|
// Check that the memcpy arguments don't overlap. The AliasAnalysis API
|
|
|
|
// isn't expressive enough for what we really want to do. Known partial
|
|
|
|
// overlap is not distinguished from the case where nothing is known.
|
2010-10-19 22:54:46 +00:00
|
|
|
uint64_t Size = 0;
|
2010-04-08 18:47:09 +00:00
|
|
|
if (const ConstantInt *Len =
|
2010-05-28 16:21:24 +00:00
|
|
|
dyn_cast<ConstantInt>(findValue(MCI->getLength(),
|
|
|
|
/*OffsetOk=*/false)))
|
2010-04-08 18:47:09 +00:00
|
|
|
if (Len->getValue().isIntN(32))
|
|
|
|
Size = Len->getValue().getZExtValue();
|
|
|
|
Assert1(AA->alias(MCI->getSource(), Size, MCI->getDest(), Size) !=
|
|
|
|
AliasAnalysis::MustAlias,
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined behavior: memcpy source and destination overlap", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Intrinsic::memmove: {
|
|
|
|
MemMoveInst *MMI = cast<MemMoveInst>(&I);
|
2010-05-28 21:43:57 +00:00
|
|
|
// TODO: If the size is known, use it.
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, MMI->getDest(), AliasAnalysis::UnknownSize,
|
|
|
|
MMI->getAlignment(), 0,
|
2010-05-28 17:44:00 +00:00
|
|
|
MemRef::Write);
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, MMI->getSource(), AliasAnalysis::UnknownSize,
|
|
|
|
MMI->getAlignment(), 0,
|
2010-04-30 19:05:00 +00:00
|
|
|
MemRef::Read);
|
2010-04-08 18:47:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Intrinsic::memset: {
|
|
|
|
MemSetInst *MSI = cast<MemSetInst>(&I);
|
2010-05-28 21:43:57 +00:00
|
|
|
// TODO: If the size is known, use it.
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, MSI->getDest(), AliasAnalysis::UnknownSize,
|
|
|
|
MSI->getAlignment(), 0,
|
2010-04-30 19:05:00 +00:00
|
|
|
MemRef::Write);
|
2010-04-08 18:47:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Intrinsic::vastart:
|
2010-04-09 01:39:53 +00:00
|
|
|
Assert1(I.getParent()->getParent()->isVarArg(),
|
|
|
|
"Undefined behavior: va_start called in a non-varargs function",
|
|
|
|
&I);
|
|
|
|
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize,
|
|
|
|
0, 0, MemRef::Read | MemRef::Write);
|
2010-04-08 18:47:09 +00:00
|
|
|
break;
|
|
|
|
case Intrinsic::vacopy:
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize,
|
|
|
|
0, 0, MemRef::Write);
|
|
|
|
visitMemoryReference(I, CS.getArgument(1), AliasAnalysis::UnknownSize,
|
|
|
|
0, 0, MemRef::Read);
|
2010-04-08 18:47:09 +00:00
|
|
|
break;
|
|
|
|
case Intrinsic::vaend:
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize,
|
|
|
|
0, 0, MemRef::Read | MemRef::Write);
|
2010-04-08 18:47:09 +00:00
|
|
|
break;
|
2010-05-26 22:21:25 +00:00
|
|
|
|
|
|
|
case Intrinsic::stackrestore:
|
|
|
|
// Stackrestore doesn't read or write memory, but it sets the
|
|
|
|
// stack pointer, which the compiler may read from or write to
|
|
|
|
// at any time, so check it for both readability and writeability.
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize,
|
|
|
|
0, 0, MemRef::Read | MemRef::Write);
|
2010-05-26 22:21:25 +00:00
|
|
|
break;
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitCallInst(CallInst &I) {
|
|
|
|
return visitCallSite(&I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitInvokeInst(InvokeInst &I) {
|
|
|
|
return visitCallSite(&I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitReturnInst(ReturnInst &I) {
|
|
|
|
Function *F = I.getParent()->getParent();
|
|
|
|
Assert1(!F->doesNotReturn(),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Unusual: Return statement in function with noreturn attribute",
|
|
|
|
&I);
|
2010-05-28 04:33:42 +00:00
|
|
|
|
|
|
|
if (Value *V = I.getReturnValue()) {
|
2010-05-28 16:21:24 +00:00
|
|
|
Value *Obj = findValue(V, /*OffsetOk=*/true);
|
2010-05-28 16:34:49 +00:00
|
|
|
Assert1(!isa<AllocaInst>(Obj),
|
|
|
|
"Unusual: Returning alloca value", &I);
|
2010-05-28 04:33:42 +00:00
|
|
|
}
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
2010-05-28 21:43:57 +00:00
|
|
|
// TODO: Check that the reference is in bounds.
|
2010-07-06 15:23:00 +00:00
|
|
|
// TODO: Check readnone/readonly function attributes.
|
2010-04-08 18:47:09 +00:00
|
|
|
void Lint::visitMemoryReference(Instruction &I,
|
2010-10-19 22:54:46 +00:00
|
|
|
Value *Ptr, uint64_t Size, unsigned Align,
|
2011-07-18 04:54:35 +00:00
|
|
|
Type *Ty, unsigned Flags) {
|
2010-05-28 21:43:57 +00:00
|
|
|
// If no memory is being referenced, it doesn't matter if the pointer
|
|
|
|
// is valid.
|
|
|
|
if (Size == 0)
|
|
|
|
return;
|
|
|
|
|
2010-05-28 16:21:24 +00:00
|
|
|
Value *UnderlyingObject = findValue(Ptr, /*OffsetOk=*/true);
|
2010-04-09 01:39:53 +00:00
|
|
|
Assert1(!isa<ConstantPointerNull>(UnderlyingObject),
|
|
|
|
"Undefined behavior: Null pointer dereference", &I);
|
|
|
|
Assert1(!isa<UndefValue>(UnderlyingObject),
|
|
|
|
"Undefined behavior: Undef pointer dereference", &I);
|
2010-05-28 21:43:57 +00:00
|
|
|
Assert1(!isa<ConstantInt>(UnderlyingObject) ||
|
|
|
|
!cast<ConstantInt>(UnderlyingObject)->isAllOnesValue(),
|
|
|
|
"Unusual: All-ones pointer dereference", &I);
|
|
|
|
Assert1(!isa<ConstantInt>(UnderlyingObject) ||
|
|
|
|
!cast<ConstantInt>(UnderlyingObject)->isOne(),
|
|
|
|
"Unusual: Address one pointer dereference", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
|
2010-04-30 19:05:00 +00:00
|
|
|
if (Flags & MemRef::Write) {
|
|
|
|
if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(UnderlyingObject))
|
|
|
|
Assert1(!GV->isConstant(),
|
|
|
|
"Undefined behavior: Write to read-only memory", &I);
|
|
|
|
Assert1(!isa<Function>(UnderlyingObject) &&
|
|
|
|
!isa<BlockAddress>(UnderlyingObject),
|
|
|
|
"Undefined behavior: Write to text section", &I);
|
|
|
|
}
|
|
|
|
if (Flags & MemRef::Read) {
|
|
|
|
Assert1(!isa<Function>(UnderlyingObject),
|
|
|
|
"Unusual: Load from function body", &I);
|
|
|
|
Assert1(!isa<BlockAddress>(UnderlyingObject),
|
|
|
|
"Undefined behavior: Load from block address", &I);
|
|
|
|
}
|
|
|
|
if (Flags & MemRef::Callee) {
|
|
|
|
Assert1(!isa<BlockAddress>(UnderlyingObject),
|
|
|
|
"Undefined behavior: Call to block address", &I);
|
|
|
|
}
|
|
|
|
if (Flags & MemRef::Branchee) {
|
|
|
|
Assert1(!isa<Constant>(UnderlyingObject) ||
|
|
|
|
isa<BlockAddress>(UnderlyingObject),
|
|
|
|
"Undefined behavior: Branch to non-blockaddress", &I);
|
|
|
|
}
|
|
|
|
|
2012-09-26 07:45:36 +00:00
|
|
|
// Check for buffer overflows and misalignment.
|
2013-01-31 02:00:45 +00:00
|
|
|
// Only handles memory references that read/write something simple like an
|
|
|
|
// alloca instruction or a global variable.
|
|
|
|
int64_t Offset = 0;
|
2014-02-21 00:06:31 +00:00
|
|
|
if (Value *Base = GetPointerBaseWithConstantOffset(Ptr, Offset, DL)) {
|
2013-01-31 02:00:45 +00:00
|
|
|
// OK, so the access is to a constant offset from Ptr. Check that Ptr is
|
|
|
|
// something we can handle and if so extract the size of this base object
|
|
|
|
// along with its alignment.
|
|
|
|
uint64_t BaseSize = AliasAnalysis::UnknownSize;
|
|
|
|
unsigned BaseAlign = 0;
|
|
|
|
|
|
|
|
if (AllocaInst *AI = dyn_cast<AllocaInst>(Base)) {
|
|
|
|
Type *ATy = AI->getAllocatedType();
|
2014-02-21 00:06:31 +00:00
|
|
|
if (DL && !AI->isArrayAllocation() && ATy->isSized())
|
|
|
|
BaseSize = DL->getTypeAllocSize(ATy);
|
2013-01-31 02:00:45 +00:00
|
|
|
BaseAlign = AI->getAlignment();
|
2014-02-21 00:06:31 +00:00
|
|
|
if (DL && BaseAlign == 0 && ATy->isSized())
|
|
|
|
BaseAlign = DL->getABITypeAlignment(ATy);
|
2013-01-31 02:00:45 +00:00
|
|
|
} else if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Base)) {
|
|
|
|
// If the global may be defined differently in another compilation unit
|
|
|
|
// then don't warn about funky memory accesses.
|
|
|
|
if (GV->hasDefinitiveInitializer()) {
|
|
|
|
Type *GTy = GV->getType()->getElementType();
|
2014-02-21 00:06:31 +00:00
|
|
|
if (DL && GTy->isSized())
|
|
|
|
BaseSize = DL->getTypeAllocSize(GTy);
|
2013-01-31 02:00:45 +00:00
|
|
|
BaseAlign = GV->getAlignment();
|
2014-02-21 00:06:31 +00:00
|
|
|
if (DL && BaseAlign == 0 && GTy->isSized())
|
|
|
|
BaseAlign = DL->getABITypeAlignment(GTy);
|
2012-09-25 10:00:49 +00:00
|
|
|
}
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
2013-01-31 02:00:45 +00:00
|
|
|
|
|
|
|
// Accesses from before the start or after the end of the object are not
|
|
|
|
// defined.
|
|
|
|
Assert1(Size == AliasAnalysis::UnknownSize ||
|
|
|
|
BaseSize == AliasAnalysis::UnknownSize ||
|
|
|
|
(Offset >= 0 && Offset + Size <= BaseSize),
|
|
|
|
"Undefined behavior: Buffer overflow", &I);
|
|
|
|
|
|
|
|
// Accesses that say that the memory is more aligned than it is are not
|
|
|
|
// defined.
|
2014-02-21 00:06:31 +00:00
|
|
|
if (DL && Align == 0 && Ty && Ty->isSized())
|
|
|
|
Align = DL->getABITypeAlignment(Ty);
|
2013-01-31 02:00:45 +00:00
|
|
|
Assert1(!BaseAlign || Align <= MinAlign(BaseAlign, Offset),
|
|
|
|
"Undefined behavior: Memory reference address is misaligned", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitLoadInst(LoadInst &I) {
|
2010-05-28 21:43:57 +00:00
|
|
|
visitMemoryReference(I, I.getPointerOperand(),
|
|
|
|
AA->getTypeStoreSize(I.getType()), I.getAlignment(),
|
|
|
|
I.getType(), MemRef::Read);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitStoreInst(StoreInst &I) {
|
2010-05-28 21:43:57 +00:00
|
|
|
visitMemoryReference(I, I.getPointerOperand(),
|
|
|
|
AA->getTypeStoreSize(I.getOperand(0)->getType()),
|
|
|
|
I.getAlignment(),
|
|
|
|
I.getOperand(0)->getType(), MemRef::Write);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
2010-04-09 01:39:53 +00:00
|
|
|
void Lint::visitXor(BinaryOperator &I) {
|
|
|
|
Assert1(!isa<UndefValue>(I.getOperand(0)) ||
|
|
|
|
!isa<UndefValue>(I.getOperand(1)),
|
|
|
|
"Undefined result: xor(undef, undef)", &I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitSub(BinaryOperator &I) {
|
|
|
|
Assert1(!isa<UndefValue>(I.getOperand(0)) ||
|
|
|
|
!isa<UndefValue>(I.getOperand(1)),
|
|
|
|
"Undefined result: sub(undef, undef)", &I);
|
|
|
|
}
|
|
|
|
|
2010-04-08 23:05:57 +00:00
|
|
|
void Lint::visitLShr(BinaryOperator &I) {
|
|
|
|
if (ConstantInt *CI =
|
2010-05-28 16:21:24 +00:00
|
|
|
dyn_cast<ConstantInt>(findValue(I.getOperand(1), /*OffsetOk=*/false)))
|
2010-04-08 23:05:57 +00:00
|
|
|
Assert1(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined result: Shift count out of range", &I);
|
2010-04-08 23:05:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitAShr(BinaryOperator &I) {
|
|
|
|
if (ConstantInt *CI =
|
2010-05-28 16:21:24 +00:00
|
|
|
dyn_cast<ConstantInt>(findValue(I.getOperand(1), /*OffsetOk=*/false)))
|
2010-04-08 23:05:57 +00:00
|
|
|
Assert1(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined result: Shift count out of range", &I);
|
2010-04-08 23:05:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitShl(BinaryOperator &I) {
|
|
|
|
if (ConstantInt *CI =
|
2010-05-28 16:21:24 +00:00
|
|
|
dyn_cast<ConstantInt>(findValue(I.getOperand(1), /*OffsetOk=*/false)))
|
2010-04-08 23:05:57 +00:00
|
|
|
Assert1(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined result: Shift count out of range", &I);
|
2010-04-08 23:05:57 +00:00
|
|
|
}
|
|
|
|
|
2014-02-24 23:12:18 +00:00
|
|
|
static bool isZero(Value *V, const DataLayout *DL) {
|
2010-04-09 01:39:53 +00:00
|
|
|
// Assume undef could be zero.
|
2013-08-26 23:29:33 +00:00
|
|
|
if (isa<UndefValue>(V))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
VectorType *VecTy = dyn_cast<VectorType>(V->getType());
|
|
|
|
if (!VecTy) {
|
|
|
|
unsigned BitWidth = V->getType()->getIntegerBitWidth();
|
|
|
|
APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
|
|
|
|
ComputeMaskedBits(V, KnownZero, KnownOne, DL);
|
|
|
|
return KnownZero.isAllOnesValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Per-component check doesn't work with zeroinitializer
|
|
|
|
Constant *C = dyn_cast<Constant>(V);
|
|
|
|
if (!C)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (C->isZeroValue())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// For a vector, KnownZero will only be true if all values are zero, so check
|
|
|
|
// this per component
|
|
|
|
unsigned BitWidth = VecTy->getElementType()->getIntegerBitWidth();
|
|
|
|
for (unsigned I = 0, N = VecTy->getNumElements(); I != N; ++I) {
|
|
|
|
Constant *Elem = C->getAggregateElement(I);
|
|
|
|
if (isa<UndefValue>(Elem))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
|
|
|
|
ComputeMaskedBits(Elem, KnownZero, KnownOne, DL);
|
|
|
|
if (KnownZero.isAllOnesValue())
|
|
|
|
return true;
|
|
|
|
}
|
2010-04-09 01:39:53 +00:00
|
|
|
|
2013-08-26 23:29:33 +00:00
|
|
|
return false;
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitSDiv(BinaryOperator &I) {
|
2014-02-21 00:06:31 +00:00
|
|
|
Assert1(!isZero(I.getOperand(1), DL),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined behavior: Division by zero", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitUDiv(BinaryOperator &I) {
|
2014-02-21 00:06:31 +00:00
|
|
|
Assert1(!isZero(I.getOperand(1), DL),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined behavior: Division by zero", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitSRem(BinaryOperator &I) {
|
2014-02-21 00:06:31 +00:00
|
|
|
Assert1(!isZero(I.getOperand(1), DL),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined behavior: Division by zero", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitURem(BinaryOperator &I) {
|
2014-02-21 00:06:31 +00:00
|
|
|
Assert1(!isZero(I.getOperand(1), DL),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined behavior: Division by zero", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitAllocaInst(AllocaInst &I) {
|
|
|
|
if (isa<ConstantInt>(I.getArraySize()))
|
|
|
|
// This isn't undefined behavior, it's just an obvious pessimization.
|
|
|
|
Assert1(&I.getParent()->getParent()->getEntryBlock() == I.getParent(),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Pessimization: Static alloca outside of entry block", &I);
|
2010-07-06 15:23:00 +00:00
|
|
|
|
|
|
|
// TODO: Check for an unusual size (MSB set?)
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitVAArgInst(VAArgInst &I) {
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, I.getOperand(0), AliasAnalysis::UnknownSize, 0, 0,
|
2010-04-30 19:05:00 +00:00
|
|
|
MemRef::Read | MemRef::Write);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitIndirectBrInst(IndirectBrInst &I) {
|
2010-10-19 17:06:23 +00:00
|
|
|
visitMemoryReference(I, I.getAddress(), AliasAnalysis::UnknownSize, 0, 0,
|
|
|
|
MemRef::Branchee);
|
2010-08-02 23:06:43 +00:00
|
|
|
|
|
|
|
Assert1(I.getNumDestinations() != 0,
|
|
|
|
"Undefined behavior: indirectbr with no destinations", &I);
|
2010-04-08 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
2010-04-08 23:05:57 +00:00
|
|
|
void Lint::visitExtractElementInst(ExtractElementInst &I) {
|
|
|
|
if (ConstantInt *CI =
|
2010-05-28 16:21:24 +00:00
|
|
|
dyn_cast<ConstantInt>(findValue(I.getIndexOperand(),
|
|
|
|
/*OffsetOk=*/false)))
|
2010-04-08 23:05:57 +00:00
|
|
|
Assert1(CI->getValue().ult(I.getVectorOperandType()->getNumElements()),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined result: extractelement index out of range", &I);
|
2010-04-08 23:05:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitInsertElementInst(InsertElementInst &I) {
|
|
|
|
if (ConstantInt *CI =
|
2010-05-28 16:21:24 +00:00
|
|
|
dyn_cast<ConstantInt>(findValue(I.getOperand(2),
|
|
|
|
/*OffsetOk=*/false)))
|
2010-04-08 23:05:57 +00:00
|
|
|
Assert1(CI->getValue().ult(I.getType()->getNumElements()),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Undefined result: insertelement index out of range", &I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Lint::visitUnreachableInst(UnreachableInst &I) {
|
|
|
|
// This isn't undefined behavior, it's merely suspicious.
|
|
|
|
Assert1(&I == I.getParent()->begin() ||
|
2014-03-02 12:27:27 +00:00
|
|
|
std::prev(BasicBlock::iterator(&I))->mayHaveSideEffects(),
|
2010-04-09 01:39:53 +00:00
|
|
|
"Unusual: unreachable immediately preceded by instruction without "
|
|
|
|
"side effects", &I);
|
2010-04-08 23:05:57 +00:00
|
|
|
}
|
|
|
|
|
2010-05-28 16:21:24 +00:00
|
|
|
/// findValue - Look through bitcasts and simple memory reference patterns
|
|
|
|
/// to identify an equivalent, but more informative, value. If OffsetOk
|
|
|
|
/// is true, look through getelementptrs with non-zero offsets too.
|
|
|
|
///
|
|
|
|
/// Most analysis passes don't require this logic, because instcombine
|
|
|
|
/// will simplify most of these kinds of things away. But it's a goal of
|
|
|
|
/// this Lint pass to be useful even on non-optimized IR.
|
|
|
|
Value *Lint::findValue(Value *V, bool OffsetOk) const {
|
2010-05-28 16:45:33 +00:00
|
|
|
SmallPtrSet<Value *, 4> Visited;
|
|
|
|
return findValueImpl(V, OffsetOk, Visited);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// findValueImpl - Implementation helper for findValue.
|
|
|
|
Value *Lint::findValueImpl(Value *V, bool OffsetOk,
|
|
|
|
SmallPtrSet<Value *, 4> &Visited) const {
|
|
|
|
// Detect self-referential values.
|
|
|
|
if (!Visited.insert(V))
|
|
|
|
return UndefValue::get(V->getType());
|
|
|
|
|
2010-05-28 16:21:24 +00:00
|
|
|
// TODO: Look through sext or zext cast, when the result is known to
|
|
|
|
// be interpreted as signed or unsigned, respectively.
|
2010-05-28 21:43:57 +00:00
|
|
|
// TODO: Look through eliminable cast pairs.
|
2010-05-28 16:21:24 +00:00
|
|
|
// TODO: Look through calls with unique return values.
|
|
|
|
// TODO: Look through vector insert/extract/shuffle.
|
2014-02-21 00:06:31 +00:00
|
|
|
V = OffsetOk ? GetUnderlyingObject(V, DL) : V->stripPointerCasts();
|
2010-05-28 16:21:24 +00:00
|
|
|
if (LoadInst *L = dyn_cast<LoadInst>(V)) {
|
|
|
|
BasicBlock::iterator BBI = L;
|
|
|
|
BasicBlock *BB = L->getParent();
|
2010-05-28 17:44:00 +00:00
|
|
|
SmallPtrSet<BasicBlock *, 4> VisitedBlocks;
|
2010-05-28 16:21:24 +00:00
|
|
|
for (;;) {
|
2010-05-28 17:44:00 +00:00
|
|
|
if (!VisitedBlocks.insert(BB)) break;
|
2010-05-28 16:21:24 +00:00
|
|
|
if (Value *U = FindAvailableLoadedValue(L->getPointerOperand(),
|
|
|
|
BB, BBI, 6, AA))
|
2010-05-28 16:45:33 +00:00
|
|
|
return findValueImpl(U, OffsetOk, Visited);
|
2010-05-28 17:44:00 +00:00
|
|
|
if (BBI != BB->begin()) break;
|
|
|
|
BB = BB->getUniquePredecessor();
|
2010-05-28 16:21:24 +00:00
|
|
|
if (!BB) break;
|
|
|
|
BBI = BB->end();
|
|
|
|
}
|
2010-05-28 21:43:57 +00:00
|
|
|
} else if (PHINode *PN = dyn_cast<PHINode>(V)) {
|
2010-11-17 04:30:22 +00:00
|
|
|
if (Value *W = PN->hasConstantValue())
|
2010-11-17 10:23:23 +00:00
|
|
|
if (W != V)
|
|
|
|
return findValueImpl(W, OffsetOk, Visited);
|
2010-05-28 16:21:24 +00:00
|
|
|
} else if (CastInst *CI = dyn_cast<CastInst>(V)) {
|
2014-03-06 17:33:55 +00:00
|
|
|
if (CI->isNoopCast(DL))
|
2010-05-28 16:45:33 +00:00
|
|
|
return findValueImpl(CI->getOperand(0), OffsetOk, Visited);
|
2010-05-28 16:21:24 +00:00
|
|
|
} else if (ExtractValueInst *Ex = dyn_cast<ExtractValueInst>(V)) {
|
|
|
|
if (Value *W = FindInsertedValue(Ex->getAggregateOperand(),
|
2011-07-13 10:26:04 +00:00
|
|
|
Ex->getIndices()))
|
2010-05-28 16:21:24 +00:00
|
|
|
if (W != V)
|
2010-05-28 16:45:33 +00:00
|
|
|
return findValueImpl(W, OffsetOk, Visited);
|
2010-05-28 21:43:57 +00:00
|
|
|
} else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
|
|
|
|
// Same as above, but for ConstantExpr instead of Instruction.
|
|
|
|
if (Instruction::isCast(CE->getOpcode())) {
|
|
|
|
if (CastInst::isNoopCast(Instruction::CastOps(CE->getOpcode()),
|
|
|
|
CE->getOperand(0)->getType(),
|
|
|
|
CE->getType(),
|
2014-03-06 17:33:55 +00:00
|
|
|
DL ? DL->getIntPtrType(V->getType()) :
|
2010-05-28 21:43:57 +00:00
|
|
|
Type::getInt64Ty(V->getContext())))
|
|
|
|
return findValueImpl(CE->getOperand(0), OffsetOk, Visited);
|
|
|
|
} else if (CE->getOpcode() == Instruction::ExtractValue) {
|
2011-04-13 15:22:40 +00:00
|
|
|
ArrayRef<unsigned> Indices = CE->getIndices();
|
2011-07-13 10:26:04 +00:00
|
|
|
if (Value *W = FindInsertedValue(CE->getOperand(0), Indices))
|
2010-05-28 21:43:57 +00:00
|
|
|
if (W != V)
|
|
|
|
return findValueImpl(W, OffsetOk, Visited);
|
|
|
|
}
|
2010-05-28 16:21:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// As a last resort, try SimplifyInstruction or constant folding.
|
|
|
|
if (Instruction *Inst = dyn_cast<Instruction>(V)) {
|
2014-02-21 00:06:31 +00:00
|
|
|
if (Value *W = SimplifyInstruction(Inst, DL, TLI, DT))
|
2010-11-17 08:35:29 +00:00
|
|
|
return findValueImpl(W, OffsetOk, Visited);
|
2010-05-28 16:21:24 +00:00
|
|
|
} else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
|
2014-02-21 00:06:31 +00:00
|
|
|
if (Value *W = ConstantFoldConstantExpression(CE, DL, TLI))
|
2010-05-28 16:21:24 +00:00
|
|
|
if (W != V)
|
2010-05-28 16:45:33 +00:00
|
|
|
return findValueImpl(W, OffsetOk, Visited);
|
2010-05-28 16:21:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return V;
|
|
|
|
}
|
|
|
|
|
2010-04-08 18:47:09 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Implement the public interfaces to this file...
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
FunctionPass *llvm::createLintPass() {
|
|
|
|
return new Lint();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// lintFunction - Check a function for errors, printing messages on stderr.
|
|
|
|
///
|
|
|
|
void llvm::lintFunction(const Function &f) {
|
|
|
|
Function &F = const_cast<Function&>(f);
|
|
|
|
assert(!F.isDeclaration() && "Cannot lint external functions");
|
|
|
|
|
|
|
|
FunctionPassManager FPM(F.getParent());
|
|
|
|
Lint *V = new Lint();
|
|
|
|
FPM.add(V);
|
|
|
|
FPM.run(F);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// lintModule - Check a module for errors, printing messages on stderr.
|
|
|
|
///
|
2010-05-26 22:28:53 +00:00
|
|
|
void llvm::lintModule(const Module &M) {
|
2010-04-08 18:47:09 +00:00
|
|
|
PassManager PM;
|
|
|
|
Lint *V = new Lint();
|
|
|
|
PM.add(V);
|
|
|
|
PM.run(const_cast<Module&>(M));
|
|
|
|
}
|