2008-11-13 03:21:30 +08:00
|
|
|
//== Environment.cpp - Map from Stmt* to Locations/Values -------*- C++ -*--==//
|
2008-07-09 05:46:56 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defined the Environment and EnvironmentManager classes.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2010-03-28 05:19:47 +08:00
|
|
|
|
|
|
|
#include "clang/Analysis/AnalysisContext.h"
|
|
|
|
#include "clang/Analysis/CFG.h"
|
2011-02-10 09:03:03 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/GRState.h"
|
2008-07-09 05:46:56 +08:00
|
|
|
|
|
|
|
using namespace clang;
|
2010-12-23 15:20:52 +08:00
|
|
|
using namespace ento;
|
2008-07-09 05:46:56 +08:00
|
|
|
|
2010-12-06 07:36:15 +08:00
|
|
|
SVal Environment::lookupExpr(const Stmt* E) const {
|
|
|
|
const SVal* X = ExprBindings.lookup(E);
|
|
|
|
if (X) {
|
|
|
|
SVal V = *X;
|
|
|
|
return V;
|
|
|
|
}
|
|
|
|
return UnknownVal();
|
|
|
|
}
|
|
|
|
|
2011-04-27 13:34:09 +08:00
|
|
|
SVal Environment::getSVal(const Stmt *E, SValBuilder& svalBuilder,
|
|
|
|
bool useOnlyDirectBindings) const {
|
|
|
|
|
|
|
|
if (useOnlyDirectBindings) {
|
|
|
|
// This branch is rarely taken, but can be exercised by
|
|
|
|
// checkers that explicitly bind values to arbitrary
|
|
|
|
// expressions. It is crucial that we do not ignore any
|
|
|
|
// expression here, and do a direct lookup.
|
|
|
|
return lookupExpr(E);
|
|
|
|
}
|
|
|
|
|
2008-07-11 01:19:18 +08:00
|
|
|
for (;;) {
|
|
|
|
switch (E->getStmtClass()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
case Stmt::AddrLabelExprClass:
|
2010-12-02 15:49:45 +08:00
|
|
|
return svalBuilder.makeLoc(cast<AddrLabelExpr>(E));
|
2011-02-24 11:09:15 +08:00
|
|
|
case Stmt::OpaqueValueExprClass: {
|
|
|
|
const OpaqueValueExpr *ope = cast<OpaqueValueExpr>(E);
|
|
|
|
E = ope->getSourceExpr();
|
|
|
|
continue;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
case Stmt::ParenExprClass:
|
2010-12-02 15:49:45 +08:00
|
|
|
// ParenExprs are no-ops.
|
2008-07-11 01:19:18 +08:00
|
|
|
E = cast<ParenExpr>(E)->getSubExpr();
|
|
|
|
continue;
|
2011-04-15 08:35:48 +08:00
|
|
|
case Stmt::GenericSelectionExprClass:
|
|
|
|
// GenericSelectionExprs are no-ops.
|
|
|
|
E = cast<GenericSelectionExpr>(E)->getResultExpr();
|
|
|
|
continue;
|
2008-07-11 01:19:18 +08:00
|
|
|
case Stmt::CharacterLiteralClass: {
|
2009-06-19 07:58:37 +08:00
|
|
|
const CharacterLiteral* C = cast<CharacterLiteral>(E);
|
2010-12-02 15:49:45 +08:00
|
|
|
return svalBuilder.makeIntVal(C->getValue(), C->getType());
|
2008-07-11 01:19:18 +08:00
|
|
|
}
|
2010-04-14 14:29:29 +08:00
|
|
|
case Stmt::CXXBoolLiteralExprClass: {
|
|
|
|
const SVal *X = ExprBindings.lookup(E);
|
|
|
|
if (X)
|
|
|
|
return *X;
|
|
|
|
else
|
2011-02-19 09:59:41 +08:00
|
|
|
return svalBuilder.makeBoolVal(cast<CXXBoolLiteralExpr>(E));
|
2010-04-14 14:29:29 +08:00
|
|
|
}
|
2008-07-11 01:19:18 +08:00
|
|
|
case Stmt::IntegerLiteralClass: {
|
2010-01-09 17:16:47 +08:00
|
|
|
// In C++, this expression may have been bound to a temporary object.
|
|
|
|
SVal const *X = ExprBindings.lookup(E);
|
|
|
|
if (X)
|
|
|
|
return *X;
|
|
|
|
else
|
2010-12-02 15:49:45 +08:00
|
|
|
return svalBuilder.makeIntVal(cast<IntegerLiteral>(E));
|
2008-07-11 01:19:18 +08:00
|
|
|
}
|
2011-04-23 02:01:30 +08:00
|
|
|
// For special C0xx nullptr case, make a null pointer SVal.
|
|
|
|
case Stmt::CXXNullPtrLiteralExprClass:
|
|
|
|
return svalBuilder.makeNull();
|
2008-08-19 07:01:59 +08:00
|
|
|
case Stmt::ImplicitCastExprClass:
|
2011-02-19 09:08:41 +08:00
|
|
|
case Stmt::CXXFunctionalCastExprClass:
|
2008-10-28 23:36:24 +08:00
|
|
|
case Stmt::CStyleCastExprClass: {
|
2010-12-02 15:49:45 +08:00
|
|
|
// We blast through no-op casts to get the descendant
|
|
|
|
// subexpression that has a value.
|
2009-06-19 07:58:37 +08:00
|
|
|
const CastExpr* C = cast<CastExpr>(E);
|
2008-07-11 01:19:18 +08:00
|
|
|
QualType CT = C->getType();
|
|
|
|
if (CT->isVoidType())
|
|
|
|
return UnknownVal();
|
2010-12-16 15:46:53 +08:00
|
|
|
if (C->getCastKind() == CK_NoOp) {
|
2010-12-22 15:40:30 +08:00
|
|
|
E = C->getSubExpr();
|
2010-11-24 21:08:51 +08:00
|
|
|
continue;
|
|
|
|
}
|
2008-07-11 01:19:18 +08:00
|
|
|
break;
|
|
|
|
}
|
2010-12-06 16:20:24 +08:00
|
|
|
case Stmt::ExprWithCleanupsClass:
|
|
|
|
E = cast<ExprWithCleanups>(E)->getSubExpr();
|
2010-11-24 21:08:51 +08:00
|
|
|
continue;
|
|
|
|
case Stmt::CXXBindTemporaryExprClass:
|
|
|
|
E = cast<CXXBindTemporaryExpr>(E)->getSubExpr();
|
|
|
|
continue;
|
|
|
|
// Handle all other Stmt* using a lookup.
|
2008-07-11 01:19:18 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
}
|
2010-12-06 07:36:15 +08:00
|
|
|
return lookupExpr(E);
|
2008-07-11 01:19:18 +08:00
|
|
|
}
|
2008-07-09 05:46:56 +08:00
|
|
|
|
2010-09-03 09:07:02 +08:00
|
|
|
Environment EnvironmentManager::bindExpr(Environment Env, const Stmt *S,
|
2009-09-09 23:08:12 +08:00
|
|
|
SVal V, bool Invalidate) {
|
2009-08-27 09:39:13 +08:00
|
|
|
assert(S);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
if (V.isUnknown()) {
|
2008-07-11 01:19:18 +08:00
|
|
|
if (Invalidate)
|
2010-11-24 08:54:37 +08:00
|
|
|
return Environment(F.remove(Env.ExprBindings, S));
|
2008-07-11 01:19:18 +08:00
|
|
|
else
|
|
|
|
return Env;
|
|
|
|
}
|
2008-07-09 05:46:56 +08:00
|
|
|
|
2010-11-24 08:54:37 +08:00
|
|
|
return Environment(F.add(Env.ExprBindings, S, V));
|
2008-07-11 01:19:18 +08:00
|
|
|
}
|
2008-08-21 01:08:29 +08:00
|
|
|
|
2010-09-03 09:07:02 +08:00
|
|
|
static inline const Stmt *MakeLocation(const Stmt *S) {
|
|
|
|
return (const Stmt*) (((uintptr_t) S) | 0x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Environment EnvironmentManager::bindExprAndLocation(Environment Env,
|
|
|
|
const Stmt *S,
|
|
|
|
SVal location, SVal V) {
|
2010-11-24 08:54:37 +08:00
|
|
|
return Environment(F.add(F.add(Env.ExprBindings, MakeLocation(S), location),
|
2010-11-20 15:52:48 +08:00
|
|
|
S, V));
|
2010-09-03 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2009-02-14 11:16:10 +08:00
|
|
|
namespace {
|
2009-11-28 14:07:30 +08:00
|
|
|
class MarkLiveCallback : public SymbolVisitor {
|
2009-02-14 11:16:10 +08:00
|
|
|
SymbolReaper &SymReaper;
|
|
|
|
public:
|
2009-09-09 23:08:12 +08:00
|
|
|
MarkLiveCallback(SymbolReaper &symreaper) : SymReaper(symreaper) {}
|
2009-02-14 11:16:10 +08:00
|
|
|
bool VisitSymbol(SymbolRef sym) { SymReaper.markLive(sym); return true; }
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2010-04-05 21:16:29 +08:00
|
|
|
static bool isBlockExprInCallers(const Stmt *E, const LocationContext *LC) {
|
|
|
|
const LocationContext *ParentLC = LC->getParent();
|
|
|
|
while (ParentLC) {
|
|
|
|
CFG &C = *ParentLC->getCFG();
|
|
|
|
if (C.isBlkExpr(E))
|
|
|
|
return true;
|
|
|
|
ParentLC = ParentLC->getParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-03 09:07:02 +08:00
|
|
|
// In addition to mapping from Stmt * - > SVals in the Environment, we also
|
|
|
|
// maintain a mapping from Stmt * -> SVals (locations) that were used during
|
|
|
|
// a load and store.
|
|
|
|
static inline bool IsLocation(const Stmt *S) {
|
|
|
|
return (bool) (((uintptr_t) S) & 0x1);
|
|
|
|
}
|
2010-04-05 21:16:29 +08:00
|
|
|
|
2011-01-15 04:34:15 +08:00
|
|
|
// removeDeadBindings:
|
2009-03-12 15:54:17 +08:00
|
|
|
// - Remove subexpression bindings.
|
|
|
|
// - Remove dead block expression bindings.
|
|
|
|
// - Keep live block expression bindings:
|
2009-09-09 23:08:12 +08:00
|
|
|
// - Mark their reachable symbols live in SymbolReaper,
|
2009-03-12 15:54:17 +08:00
|
|
|
// see ScanReachableSymbols.
|
|
|
|
// - Mark the region in DRoots if the binding is a loc::MemRegionVal.
|
2009-09-09 23:08:12 +08:00
|
|
|
Environment
|
2011-01-15 04:34:15 +08:00
|
|
|
EnvironmentManager::removeDeadBindings(Environment Env,
|
2009-08-27 09:39:13 +08:00
|
|
|
SymbolReaper &SymReaper,
|
|
|
|
const GRState *ST,
|
|
|
|
llvm::SmallVectorImpl<const MemRegion*> &DRoots) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-03-05 12:45:36 +08:00
|
|
|
CFG &C = *SymReaper.getLocationContext()->getCFG();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-27 09:39:13 +08:00
|
|
|
// We construct a new Environment object entirely, as this is cheaper than
|
|
|
|
// individually removing all the subexpression bindings (which will greatly
|
|
|
|
// outnumber block-level expression bindings).
|
2010-03-05 12:45:36 +08:00
|
|
|
Environment NewEnv = getInitialEnvironment();
|
2010-09-03 09:07:02 +08:00
|
|
|
|
|
|
|
llvm::SmallVector<std::pair<const Stmt*, SVal>, 10> deferredLocations;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-08-21 01:08:29 +08:00
|
|
|
// Iterate over the block-expr bindings.
|
2009-09-09 23:08:12 +08:00
|
|
|
for (Environment::iterator I = Env.begin(), E = Env.end();
|
2008-08-21 01:08:29 +08:00
|
|
|
I != E; ++I) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-19 07:58:37 +08:00
|
|
|
const Stmt *BlkExpr = I.getKey();
|
2010-09-03 09:07:02 +08:00
|
|
|
|
|
|
|
// For recorded locations (used when evaluating loads and stores), we
|
|
|
|
// consider them live only when their associated normal expression is
|
|
|
|
// also live.
|
|
|
|
// NOTE: This assumes that loads/stores that evaluated to UnknownVal
|
|
|
|
// still have an entry in the map.
|
|
|
|
if (IsLocation(BlkExpr)) {
|
|
|
|
deferredLocations.push_back(std::make_pair(BlkExpr, I.getData()));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-04-05 21:16:29 +08:00
|
|
|
const SVal &X = I.getData();
|
|
|
|
|
|
|
|
// Block-level expressions in callers are assumed always live.
|
|
|
|
if (isBlockExprInCallers(BlkExpr, SymReaper.getLocationContext())) {
|
2010-11-24 08:54:37 +08:00
|
|
|
NewEnv.ExprBindings = F.add(NewEnv.ExprBindings, BlkExpr, X);
|
2010-04-05 21:16:29 +08:00
|
|
|
|
|
|
|
if (isa<loc::MemRegionVal>(X)) {
|
|
|
|
const MemRegion* R = cast<loc::MemRegionVal>(X).getRegion();
|
|
|
|
DRoots.push_back(R);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark all symbols in the block expr's value live.
|
|
|
|
MarkLiveCallback cb(SymReaper);
|
|
|
|
ST->scanReachableSymbols(X, cb);
|
|
|
|
continue;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-27 09:39:13 +08:00
|
|
|
// Not a block-level expression?
|
|
|
|
if (!C.isBlkExpr(BlkExpr))
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-07-02 04:09:55 +08:00
|
|
|
if (SymReaper.isLive(BlkExpr)) {
|
2009-08-27 09:39:13 +08:00
|
|
|
// Copy the binding to the new map.
|
2010-11-24 08:54:37 +08:00
|
|
|
NewEnv.ExprBindings = F.add(NewEnv.ExprBindings, BlkExpr, X);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-04 13:50:14 +08:00
|
|
|
// If the block expr's value is a memory region, then mark that region.
|
2009-06-30 21:00:53 +08:00
|
|
|
if (isa<loc::MemRegionVal>(X)) {
|
|
|
|
const MemRegion* R = cast<loc::MemRegionVal>(X).getRegion();
|
|
|
|
DRoots.push_back(R);
|
|
|
|
}
|
2008-10-04 13:50:14 +08:00
|
|
|
|
2009-02-14 11:16:10 +08:00
|
|
|
// Mark all symbols in the block expr's value live.
|
|
|
|
MarkLiveCallback cb(SymReaper);
|
2009-08-27 09:39:13 +08:00
|
|
|
ST->scanReachableSymbols(X, cb);
|
|
|
|
continue;
|
2008-08-21 01:08:29 +08:00
|
|
|
}
|
2009-08-27 09:39:13 +08:00
|
|
|
|
|
|
|
// Otherwise the expression is dead with a couple exceptions.
|
|
|
|
// Do not misclean LogicalExpr or ConditionalOperator. It is dead at the
|
|
|
|
// beginning of itself, but we need its UndefinedVal to determine its
|
|
|
|
// SVal.
|
|
|
|
if (X.isUndef() && cast<UndefinedVal>(X).getData())
|
2010-11-24 08:54:37 +08:00
|
|
|
NewEnv.ExprBindings = F.add(NewEnv.ExprBindings, BlkExpr, X);
|
2008-08-21 01:08:29 +08:00
|
|
|
}
|
2010-09-03 09:07:02 +08:00
|
|
|
|
|
|
|
// Go through he deferred locations and add them to the new environment if
|
|
|
|
// the correspond Stmt* is in the map as well.
|
|
|
|
for (llvm::SmallVectorImpl<std::pair<const Stmt*, SVal> >::iterator
|
|
|
|
I = deferredLocations.begin(), E = deferredLocations.end(); I != E; ++I) {
|
|
|
|
const Stmt *S = (Stmt*) (((uintptr_t) I->first) & (uintptr_t) ~0x1);
|
|
|
|
if (NewEnv.ExprBindings.lookup(S))
|
2010-11-24 08:54:37 +08:00
|
|
|
NewEnv.ExprBindings = F.add(NewEnv.ExprBindings, I->first, I->second);
|
2010-09-03 09:07:02 +08:00
|
|
|
}
|
2008-08-21 01:08:29 +08:00
|
|
|
|
2009-08-27 09:39:13 +08:00
|
|
|
return NewEnv;
|
2008-08-21 01:08:29 +08:00
|
|
|
}
|