2008-02-14 22:13:12 +00:00
|
|
|
//=-- GRExprEngine.cpp - Path-Sensitive Expression-Level Dataflow ---*- C++ -*-=
|
2008-01-31 02:35:41 +00:00
|
|
|
//
|
2008-01-31 06:49:09 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
2008-01-15 23:55:06 +00:00
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-02-14 22:13:12 +00:00
|
|
|
// This file defines a meta-engine for path-sensitive dataflow analysis that
|
|
|
|
// is built on GREngine, but provides the boilerplate to execute transfer
|
|
|
|
// functions and build the ExplodedGraph at the expression level.
|
2008-01-15 23:55:06 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-02-14 22:13:12 +00:00
|
|
|
#include "clang/Analysis/PathSensitive/GRExprEngine.h"
|
2008-02-14 22:36:46 +00:00
|
|
|
#include "clang/Analysis/PathSensitive/GRTransferFuncs.h"
|
|
|
|
|
|
|
|
#include "llvm/Support/Streams.h"
|
2008-02-14 22:16:04 +00:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
using llvm::dyn_cast;
|
|
|
|
using llvm::cast;
|
|
|
|
using llvm::APSInt;
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::StateTy
|
|
|
|
GRExprEngine::SetValue(StateTy St, Expr* S, const RValue& V) {
|
2008-02-07 04:16:04 +00:00
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
if (!StateCleaned) {
|
|
|
|
St = RemoveDeadBindings(CurrentStmt, St);
|
|
|
|
StateCleaned = true;
|
|
|
|
}
|
2008-02-07 04:16:04 +00:00
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
bool isBlkExpr = false;
|
2008-02-07 04:16:04 +00:00
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
if (S == CurrentStmt) {
|
|
|
|
isBlkExpr = getCFG().isBlkExpr(S);
|
|
|
|
|
|
|
|
if (!isBlkExpr)
|
|
|
|
return St;
|
|
|
|
}
|
2008-02-07 04:16:04 +00:00
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
return StateMgr.SetValue(St, S, isBlkExpr, V);
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
const GRExprEngine::StateTy::BufferTy&
|
|
|
|
GRExprEngine::SetValue(StateTy St, Expr* S, const RValue::BufferTy& RB,
|
2008-02-05 19:35:18 +00:00
|
|
|
StateTy::BufferTy& RetBuf) {
|
|
|
|
|
|
|
|
assert (RetBuf.empty());
|
|
|
|
|
|
|
|
for (RValue::BufferTy::const_iterator I=RB.begin(), E=RB.end(); I!=E; ++I)
|
|
|
|
RetBuf.push_back(SetValue(St, S, *I));
|
|
|
|
|
|
|
|
return RetBuf;
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::StateTy
|
|
|
|
GRExprEngine::SetValue(StateTy St, const LValue& LV, const RValue& V) {
|
2008-02-04 21:59:01 +00:00
|
|
|
|
2008-02-08 03:02:48 +00:00
|
|
|
if (LV.isUnknown())
|
2008-02-04 21:59:01 +00:00
|
|
|
return St;
|
|
|
|
|
|
|
|
if (!StateCleaned) {
|
|
|
|
St = RemoveDeadBindings(CurrentStmt, St);
|
|
|
|
StateCleaned = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return StateMgr.SetValue(St, LV, V);
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::ProcessBranch(Expr* Condition, Stmt* Term,
|
2008-01-29 23:32:35 +00:00
|
|
|
BranchNodeBuilder& builder) {
|
2008-01-30 23:03:39 +00:00
|
|
|
|
2008-02-11 19:21:59 +00:00
|
|
|
// Remove old bindings for subexpressions.
|
|
|
|
StateTy PrevState = StateMgr.RemoveSubExprBindings(builder.getState());
|
2008-02-05 00:26:40 +00:00
|
|
|
|
2008-01-30 23:03:39 +00:00
|
|
|
RValue V = GetValue(PrevState, Condition);
|
|
|
|
|
|
|
|
switch (V.getBaseKind()) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
2008-02-08 03:02:48 +00:00
|
|
|
case RValue::UnknownKind:
|
2008-01-30 23:03:39 +00:00
|
|
|
builder.generateNode(PrevState, true);
|
|
|
|
builder.generateNode(PrevState, false);
|
|
|
|
return;
|
|
|
|
|
|
|
|
case RValue::UninitializedKind: {
|
|
|
|
NodeTy* N = builder.generateNode(PrevState, true);
|
|
|
|
|
|
|
|
if (N) {
|
|
|
|
N->markAsSink();
|
|
|
|
UninitBranches.insert(N);
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.markInfeasible(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-12 18:08:17 +00:00
|
|
|
// Get the current block counter.
|
|
|
|
GRBlockCounter BC = builder.getBlockCounter();
|
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
unsigned BlockID = builder.getTargetBlock(true)->getBlockID();
|
|
|
|
unsigned NumVisited = BC.getNumVisited(BlockID);
|
2008-02-05 00:26:40 +00:00
|
|
|
|
2008-02-12 18:08:17 +00:00
|
|
|
if (isa<nonlval::ConcreteInt>(V) ||
|
|
|
|
BC.getNumVisited(builder.getTargetBlock(true)->getBlockID()) < 1) {
|
|
|
|
|
|
|
|
// Process the true branch.
|
2008-01-30 23:03:39 +00:00
|
|
|
|
2008-02-12 18:08:17 +00:00
|
|
|
bool isFeasible = true;
|
|
|
|
|
|
|
|
StateTy St = Assume(PrevState, V, true, isFeasible);
|
|
|
|
|
|
|
|
if (isFeasible)
|
|
|
|
builder.generateNode(St, true);
|
|
|
|
else
|
|
|
|
builder.markInfeasible(true);
|
2008-01-30 23:03:39 +00:00
|
|
|
}
|
2008-02-12 18:08:17 +00:00
|
|
|
else
|
|
|
|
builder.markInfeasible(true);
|
2008-01-29 23:32:35 +00:00
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
BlockID = builder.getTargetBlock(false)->getBlockID();
|
|
|
|
NumVisited = BC.getNumVisited(BlockID);
|
2008-01-29 23:32:35 +00:00
|
|
|
|
2008-02-12 18:08:17 +00:00
|
|
|
if (isa<nonlval::ConcreteInt>(V) ||
|
|
|
|
BC.getNumVisited(builder.getTargetBlock(false)->getBlockID()) < 1) {
|
|
|
|
|
|
|
|
// Process the false branch.
|
|
|
|
|
|
|
|
bool isFeasible = false;
|
|
|
|
|
|
|
|
StateTy St = Assume(PrevState, V, false, isFeasible);
|
|
|
|
|
|
|
|
if (isFeasible)
|
|
|
|
builder.generateNode(St, false);
|
|
|
|
else
|
|
|
|
builder.markInfeasible(false);
|
|
|
|
}
|
2008-02-05 00:26:40 +00:00
|
|
|
else
|
|
|
|
builder.markInfeasible(false);
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
/// ProcessIndirectGoto - Called by GRCoreEngine. Used to generate successor
|
2008-02-13 00:24:44 +00:00
|
|
|
/// nodes by processing the 'effects' of a computed goto jump.
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::ProcessIndirectGoto(IndirectGotoNodeBuilder& builder) {
|
2008-02-13 00:24:44 +00:00
|
|
|
|
|
|
|
StateTy St = builder.getState();
|
|
|
|
LValue V = cast<LValue>(GetValue(St, builder.getTarget()));
|
|
|
|
|
|
|
|
// Three possibilities:
|
|
|
|
//
|
|
|
|
// (1) We know the computed label.
|
|
|
|
// (2) The label is NULL (or some other constant), or Uninitialized.
|
|
|
|
// (3) We have no clue about the label. Dispatch to all targets.
|
|
|
|
//
|
|
|
|
|
|
|
|
typedef IndirectGotoNodeBuilder::iterator iterator;
|
|
|
|
|
|
|
|
if (isa<lval::GotoLabel>(V)) {
|
|
|
|
LabelStmt* L = cast<lval::GotoLabel>(V).getLabel();
|
|
|
|
|
|
|
|
for (iterator I=builder.begin(), E=builder.end(); I != E; ++I) {
|
2008-02-13 17:27:37 +00:00
|
|
|
if (I.getLabel() == L) {
|
|
|
|
builder.generateNode(I, St);
|
2008-02-13 00:24:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert (false && "No block with label.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isa<lval::ConcreteInt>(V) || isa<UninitializedVal>(V)) {
|
|
|
|
// Dispatch to the first target and mark it as a sink.
|
2008-02-13 17:27:37 +00:00
|
|
|
NodeTy* N = builder.generateNode(builder.begin(), St, true);
|
2008-02-13 00:24:44 +00:00
|
|
|
UninitBranches.insert(N);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is really a catch-all. We don't support symbolics yet.
|
|
|
|
|
|
|
|
assert (isa<UnknownVal>(V));
|
|
|
|
|
|
|
|
for (iterator I=builder.begin(), E=builder.end(); I != E; ++I)
|
2008-02-13 17:27:37 +00:00
|
|
|
builder.generateNode(I, St);
|
2008-02-13 00:24:44 +00:00
|
|
|
}
|
2008-02-05 00:26:40 +00:00
|
|
|
|
2008-02-13 23:08:21 +00:00
|
|
|
/// ProcessSwitch - Called by GRCoreEngine. Used to generate successor
|
|
|
|
/// nodes by processing the 'effects' of a switch statement.
|
|
|
|
void GRExprEngine::ProcessSwitch(SwitchNodeBuilder& builder) {
|
|
|
|
|
|
|
|
typedef SwitchNodeBuilder::iterator iterator;
|
|
|
|
|
|
|
|
StateTy St = builder.getState();
|
|
|
|
NonLValue CondV = cast<NonLValue>(GetValue(St, builder.getCondition()));
|
|
|
|
|
|
|
|
if (isa<UninitializedVal>(CondV)) {
|
|
|
|
NodeTy* N = builder.generateDefaultCaseNode(St, true);
|
|
|
|
UninitBranches.insert(N);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
StateTy DefaultSt = St;
|
|
|
|
|
|
|
|
// While most of this can be assumed (such as the signedness), having it
|
|
|
|
// just computed makes sure everything makes the same assumptions end-to-end.
|
|
|
|
unsigned bits = getContext().getTypeSize(getContext().IntTy,SourceLocation());
|
|
|
|
APSInt V1(bits, false);
|
|
|
|
APSInt V2 = V1;
|
|
|
|
|
|
|
|
for (iterator I=builder.begin(), E=builder.end(); I!=E; ++I) {
|
|
|
|
|
|
|
|
CaseStmt* Case = cast<CaseStmt>(I.getCase());
|
|
|
|
|
|
|
|
// Evaluate the case.
|
|
|
|
if (!Case->getLHS()->isIntegerConstantExpr(V1, getContext(), 0, true)) {
|
|
|
|
assert (false && "Case condition must evaluate to an integer constant.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the RHS of the case, if it exists.
|
|
|
|
|
|
|
|
if (Expr* E = Case->getRHS()) {
|
|
|
|
if (!E->isIntegerConstantExpr(V2, getContext(), 0, true)) {
|
|
|
|
assert (false &&
|
|
|
|
"Case condition (RHS) must evaluate to an integer constant.");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert (V1 <= V2);
|
|
|
|
}
|
|
|
|
else V2 = V1;
|
|
|
|
|
|
|
|
// FIXME: Eventually we should replace the logic below with a range
|
|
|
|
// comparison, rather than concretize the values within the range.
|
|
|
|
// This should be easy once we have "ranges" for NonLValues.
|
|
|
|
|
|
|
|
do {
|
|
|
|
nonlval::ConcreteInt CaseVal(ValMgr.getValue(V1));
|
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
NonLValue Res = EvalBinaryOp(ValMgr, BinaryOperator::EQ, CondV, CaseVal);
|
2008-02-13 23:08:21 +00:00
|
|
|
|
|
|
|
// Now "assume" that the case matches.
|
|
|
|
bool isFeasible;
|
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
StateTy StNew = Assume(St, Res, true, isFeasible);
|
2008-02-13 23:08:21 +00:00
|
|
|
|
|
|
|
if (isFeasible) {
|
|
|
|
builder.generateCaseStmtNode(I, StNew);
|
|
|
|
|
|
|
|
// If CondV evaluates to a constant, then we know that this
|
|
|
|
// is the *only* case that we can take, so stop evaluating the
|
|
|
|
// others.
|
|
|
|
if (isa<nonlval::ConcreteInt>(CondV))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now "assume" that the case doesn't match. Add this state
|
|
|
|
// to the default state (if it is feasible).
|
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
StNew = Assume(DefaultSt, Res, false, isFeasible);
|
2008-02-13 23:08:21 +00:00
|
|
|
|
|
|
|
if (isFeasible)
|
|
|
|
DefaultSt = StNew;
|
|
|
|
|
|
|
|
// Concretize the next value in the range.
|
|
|
|
++V1;
|
|
|
|
|
|
|
|
} while (V1 < V2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we reach here, than we know that the default branch is
|
|
|
|
// possible.
|
|
|
|
builder.generateDefaultCaseNode(DefaultSt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred,
|
2008-02-05 00:26:40 +00:00
|
|
|
NodeSet& Dst) {
|
|
|
|
|
|
|
|
bool hasR2;
|
|
|
|
StateTy PrevState = Pred->getState();
|
|
|
|
|
|
|
|
RValue R1 = GetValue(PrevState, B->getLHS());
|
|
|
|
RValue R2 = GetValue(PrevState, B->getRHS(), hasR2);
|
|
|
|
|
2008-02-08 02:57:34 +00:00
|
|
|
if (isa<UnknownVal>(R1) &&
|
|
|
|
(isa<UnknownVal>(R2) ||
|
|
|
|
isa<UninitializedVal>(R2))) {
|
2008-02-05 00:26:40 +00:00
|
|
|
|
|
|
|
Nodify(Dst, B, Pred, SetValue(PrevState, B, R2));
|
|
|
|
return;
|
|
|
|
}
|
2008-02-08 02:57:34 +00:00
|
|
|
else if (isa<UninitializedVal>(R1)) {
|
2008-02-05 00:26:40 +00:00
|
|
|
Nodify(Dst, B, Pred, SetValue(PrevState, B, R1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// R1 is an expression that can evaluate to either 'true' or 'false'.
|
|
|
|
if (B->getOpcode() == BinaryOperator::LAnd) {
|
|
|
|
// hasR2 == 'false' means that LHS evaluated to 'false' and that
|
|
|
|
// we short-circuited, leading to a value of '0' for the '&&' expression.
|
|
|
|
if (hasR2 == false) {
|
|
|
|
Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(0U, B)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert (B->getOpcode() == BinaryOperator::LOr);
|
|
|
|
// hasR2 == 'false' means that the LHS evaluate to 'true' and that
|
|
|
|
// we short-circuited, leading to a value of '1' for the '||' expression.
|
|
|
|
if (hasR2 == false) {
|
|
|
|
Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(1U, B)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we reach here we did not short-circuit. Assume R2 == true and
|
|
|
|
// R2 == false.
|
|
|
|
|
|
|
|
bool isFeasible;
|
|
|
|
StateTy St = Assume(PrevState, R2, true, isFeasible);
|
|
|
|
|
|
|
|
if (isFeasible)
|
|
|
|
Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(1U, B)));
|
2008-01-30 23:03:39 +00:00
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
St = Assume(PrevState, R2, false, isFeasible);
|
|
|
|
|
|
|
|
if (isFeasible)
|
|
|
|
Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(0U, B)));
|
2008-01-29 23:32:35 +00:00
|
|
|
}
|
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::ProcessStmt(Stmt* S, StmtNodeBuilder& builder) {
|
2008-01-15 23:55:06 +00:00
|
|
|
Builder = &builder;
|
2008-01-23 19:59:44 +00:00
|
|
|
|
|
|
|
StmtEntryNode = builder.getLastNode();
|
|
|
|
CurrentStmt = S;
|
|
|
|
NodeSet Dst;
|
|
|
|
StateCleaned = false;
|
|
|
|
|
|
|
|
Visit(S, StmtEntryNode, Dst);
|
|
|
|
|
|
|
|
// If no nodes were generated, generate a new node that has all the
|
|
|
|
// dead mappings removed.
|
|
|
|
if (Dst.size() == 1 && *Dst.begin() == StmtEntryNode) {
|
|
|
|
StateTy St = RemoveDeadBindings(S, StmtEntryNode->getState());
|
|
|
|
builder.generateNode(S, St, StmtEntryNode);
|
|
|
|
}
|
2008-01-18 00:41:32 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
CurrentStmt = NULL;
|
|
|
|
StmtEntryNode = NULL;
|
|
|
|
Builder = NULL;
|
2008-01-15 23:55:06 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::NodeTy*
|
|
|
|
GRExprEngine::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, StateTy St) {
|
2008-01-23 19:59:44 +00:00
|
|
|
|
|
|
|
// If the state hasn't changed, don't generate a new node.
|
2008-02-07 15:20:13 +00:00
|
|
|
if (St == Pred->getState())
|
2008-02-07 05:48:01 +00:00
|
|
|
return NULL;
|
2008-01-16 00:53:15 +00:00
|
|
|
|
2008-02-07 05:48:01 +00:00
|
|
|
NodeTy* N = Builder->generateNode(S, St, Pred);
|
|
|
|
Dst.Add(N);
|
|
|
|
return N;
|
2008-01-16 00:53:15 +00:00
|
|
|
}
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred,
|
2008-02-05 19:35:18 +00:00
|
|
|
const StateTy::BufferTy& SB) {
|
|
|
|
|
|
|
|
for (StateTy::BufferTy::const_iterator I=SB.begin(), E=SB.end(); I!=E; ++I)
|
|
|
|
Nodify(Dst, S, Pred, *I);
|
|
|
|
}
|
|
|
|
|
2008-02-13 18:06:44 +00:00
|
|
|
void GRExprEngine::VisitDeclRefExpr(DeclRefExpr* D, NodeTy* Pred, NodeSet& Dst){
|
2008-02-07 04:16:04 +00:00
|
|
|
if (D != CurrentStmt) {
|
|
|
|
Dst.Add(Pred); // No-op. Simply propagate the current state unchanged.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are here, we are loading the value of the decl and binding
|
|
|
|
// it to the block-level expression.
|
|
|
|
|
|
|
|
StateTy St = Pred->getState();
|
|
|
|
|
|
|
|
Nodify(Dst, D, Pred,
|
|
|
|
SetValue(St, D, GetValue(St, lval::DeclVal(D->getDecl()))));
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitCast(Expr* CastE, Expr* E, NodeTy* Pred, NodeSet& Dst) {
|
2008-01-24 02:02:54 +00:00
|
|
|
|
|
|
|
QualType T = CastE->getType();
|
|
|
|
|
|
|
|
// Check for redundant casts.
|
|
|
|
if (E->getType() == T) {
|
|
|
|
Dst.Add(Pred);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NodeSet S1;
|
|
|
|
Visit(E, Pred, S1);
|
|
|
|
|
|
|
|
for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) {
|
|
|
|
NodeTy* N = *I1;
|
|
|
|
StateTy St = N->getState();
|
2008-01-28 22:09:13 +00:00
|
|
|
const RValue& V = GetValue(St, E);
|
2008-02-14 18:28:23 +00:00
|
|
|
Nodify(Dst, CastE, N, SetValue(St, CastE, EvalCast(ValMgr, V, CastE)));
|
2008-01-24 02:02:54 +00:00
|
|
|
}
|
2008-01-24 20:55:43 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitDeclStmt(DeclStmt* DS, GRExprEngine::NodeTy* Pred,
|
|
|
|
GRExprEngine::NodeSet& Dst) {
|
2008-01-24 20:55:43 +00:00
|
|
|
|
|
|
|
StateTy St = Pred->getState();
|
|
|
|
|
|
|
|
for (const ScopedDecl* D = DS->getDecl(); D; D = D->getNextDeclarator())
|
2008-01-28 22:51:57 +00:00
|
|
|
if (const VarDecl* VD = dyn_cast<VarDecl>(D)) {
|
|
|
|
const Expr* E = VD->getInit();
|
2008-02-05 21:52:21 +00:00
|
|
|
St = SetValue(St, lval::DeclVal(VD),
|
2008-02-08 02:57:34 +00:00
|
|
|
E ? GetValue(St, E) : UninitializedVal());
|
2008-01-28 22:51:57 +00:00
|
|
|
}
|
2008-01-24 20:55:43 +00:00
|
|
|
|
|
|
|
Nodify(Dst, DS, Pred, St);
|
|
|
|
|
|
|
|
if (Dst.empty())
|
|
|
|
Dst.Add(Pred);
|
|
|
|
}
|
2008-01-24 02:02:54 +00:00
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitGuardedExpr(Expr* S, Expr* LHS, Expr* RHS,
|
2008-02-05 00:26:40 +00:00
|
|
|
NodeTy* Pred, NodeSet& Dst) {
|
|
|
|
|
|
|
|
StateTy St = Pred->getState();
|
|
|
|
|
|
|
|
RValue R = GetValue(St, LHS);
|
2008-02-08 02:57:34 +00:00
|
|
|
if (isa<UnknownVal>(R)) R = GetValue(St, RHS);
|
2008-02-05 00:26:40 +00:00
|
|
|
|
|
|
|
Nodify(Dst, S, Pred, SetValue(St, S, R));
|
|
|
|
}
|
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
/// VisitSizeOfAlignOfTypeExpr - Transfer function for sizeof(type).
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitSizeOfAlignOfTypeExpr(SizeOfAlignOfTypeExpr* S,
|
2008-02-12 19:49:57 +00:00
|
|
|
NodeTy* Pred,
|
|
|
|
NodeSet& Dst) {
|
|
|
|
|
|
|
|
// 6.5.3.4 sizeof: "The result type is an integer."
|
|
|
|
|
|
|
|
QualType T = S->getArgumentType();
|
|
|
|
|
|
|
|
// FIXME: Add support for VLAs.
|
|
|
|
if (isa<VariableArrayType>(T.getTypePtr()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
SourceLocation L = S->getExprLoc();
|
|
|
|
uint64_t size = getContext().getTypeSize(T, L) / 8;
|
|
|
|
|
|
|
|
Nodify(Dst, S, Pred,
|
|
|
|
SetValue(Pred->getState(), S,
|
|
|
|
NonLValue::GetValue(ValMgr, size, getContext().IntTy, L)));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitUnaryOperator(UnaryOperator* U,
|
|
|
|
GRExprEngine::NodeTy* Pred,
|
|
|
|
GRExprEngine::NodeSet& Dst) {
|
2008-02-07 04:16:04 +00:00
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
NodeSet S1;
|
2008-02-07 04:16:04 +00:00
|
|
|
UnaryOperator::Opcode Op = U->getOpcode();
|
|
|
|
|
|
|
|
// FIXME: This is a hack so that for '*' and '&' we don't recurse
|
|
|
|
// on visiting the subexpression if it is a DeclRefExpr. We should
|
|
|
|
// probably just handle AddrOf and Deref in their own methods to make
|
|
|
|
// this cleaner.
|
|
|
|
if ((Op == UnaryOperator::Deref || Op == UnaryOperator::AddrOf) &&
|
|
|
|
isa<DeclRefExpr>(U->getSubExpr()))
|
|
|
|
S1.Add(Pred);
|
|
|
|
else
|
|
|
|
Visit(U->getSubExpr(), Pred, S1);
|
2008-01-24 02:28:56 +00:00
|
|
|
|
|
|
|
for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) {
|
|
|
|
NodeTy* N1 = *I1;
|
|
|
|
StateTy St = N1->getState();
|
|
|
|
|
|
|
|
switch (U->getOpcode()) {
|
|
|
|
case UnaryOperator::PostInc: {
|
|
|
|
const LValue& L1 = GetLValue(St, U->getSubExpr());
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
NonLValue Result = EvalBinaryOp(ValMgr, BinaryOperator::Add,
|
|
|
|
R1, GetRValueConstant(1U, U));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
Nodify(Dst, U, N1, SetValue(SetValue(St, U, R1), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case UnaryOperator::PostDec: {
|
|
|
|
const LValue& L1 = GetLValue(St, U->getSubExpr());
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
NonLValue Result = EvalBinaryOp(ValMgr, BinaryOperator::Sub,
|
|
|
|
R1, GetRValueConstant(1U, U));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
Nodify(Dst, U, N1, SetValue(SetValue(St, U, R1), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case UnaryOperator::PreInc: {
|
|
|
|
const LValue& L1 = GetLValue(St, U->getSubExpr());
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
NonLValue Result = EvalBinaryOp(ValMgr, BinaryOperator::Add,
|
|
|
|
R1, GetRValueConstant(1U, U));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
Nodify(Dst, U, N1, SetValue(SetValue(St, U, Result), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case UnaryOperator::PreDec: {
|
|
|
|
const LValue& L1 = GetLValue(St, U->getSubExpr());
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
NonLValue Result = EvalBinaryOp(ValMgr, BinaryOperator::Sub,
|
|
|
|
R1, GetRValueConstant(1U, U));
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
Nodify(Dst, U, N1, SetValue(SetValue(St, U, Result), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-24 08:20:02 +00:00
|
|
|
case UnaryOperator::Minus: {
|
2008-01-28 22:09:13 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(GetValue(St, U->getSubExpr()));
|
2008-02-14 18:40:24 +00:00
|
|
|
Nodify(Dst, U, N1, SetValue(St, U, EvalMinus(ValMgr, U, R1)));
|
2008-01-24 08:20:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-02-04 16:58:30 +00:00
|
|
|
case UnaryOperator::Not: {
|
|
|
|
const NonLValue& R1 = cast<NonLValue>(GetValue(St, U->getSubExpr()));
|
2008-02-14 18:40:24 +00:00
|
|
|
Nodify(Dst, U, N1, SetValue(St, U, EvalComplement(ValMgr, R1)));
|
2008-02-04 16:58:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-02-06 17:56:00 +00:00
|
|
|
case UnaryOperator::LNot: {
|
|
|
|
// C99 6.5.3.3: "The expression !E is equivalent to (0==E)."
|
|
|
|
//
|
|
|
|
// Note: technically we do "E == 0", but this is the same in the
|
|
|
|
// transfer functions as "0 == E".
|
|
|
|
|
|
|
|
RValue V1 = GetValue(St, U->getSubExpr());
|
|
|
|
|
|
|
|
if (isa<LValue>(V1)) {
|
2008-02-06 22:50:25 +00:00
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
|
|
|
lval::ConcreteInt V2(ValMgr.getZeroWithPtrWidth());
|
|
|
|
Nodify(Dst, U, N1,
|
2008-02-14 19:37:24 +00:00
|
|
|
SetValue(St, U, EvalBinaryOp(ValMgr, BinaryOperator::EQ,
|
|
|
|
L1, V2)));
|
2008-02-06 17:56:00 +00:00
|
|
|
}
|
|
|
|
else {
|
2008-02-06 22:50:25 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
2008-02-06 17:56:00 +00:00
|
|
|
nonlval::ConcreteInt V2(ValMgr.getZeroWithPtrWidth());
|
2008-02-06 22:50:25 +00:00
|
|
|
Nodify(Dst, U, N1,
|
2008-02-14 19:37:24 +00:00
|
|
|
SetValue(St, U, EvalBinaryOp(ValMgr, BinaryOperator::EQ,
|
|
|
|
R1, V2)));
|
2008-02-06 17:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2008-02-12 19:49:57 +00:00
|
|
|
|
|
|
|
case UnaryOperator::SizeOf: {
|
|
|
|
// 6.5.3.4 sizeof: "The result type is an integer."
|
|
|
|
|
|
|
|
QualType T = U->getSubExpr()->getType();
|
|
|
|
|
|
|
|
// FIXME: Add support for VLAs.
|
|
|
|
if (isa<VariableArrayType>(T.getTypePtr()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
SourceLocation L = U->getExprLoc();
|
|
|
|
uint64_t size = getContext().getTypeSize(T, L) / 8;
|
|
|
|
|
|
|
|
Nodify(Dst, U, N1,
|
|
|
|
SetValue(St, U, NonLValue::GetValue(ValMgr, size,
|
|
|
|
getContext().IntTy, L)));
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2008-02-06 17:56:00 +00:00
|
|
|
|
2008-01-31 02:35:41 +00:00
|
|
|
case UnaryOperator::AddrOf: {
|
|
|
|
const LValue& L1 = GetLValue(St, U->getSubExpr());
|
|
|
|
Nodify(Dst, U, N1, SetValue(St, U, L1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case UnaryOperator::Deref: {
|
2008-02-07 04:16:04 +00:00
|
|
|
// FIXME: Stop when dereferencing an uninitialized value.
|
|
|
|
// FIXME: Bifurcate when dereferencing a symbolic with no constraints?
|
|
|
|
|
|
|
|
const RValue& V = GetValue(St, U->getSubExpr());
|
|
|
|
const LValue& L1 = cast<LValue>(V);
|
|
|
|
|
2008-02-07 05:48:01 +00:00
|
|
|
// After a dereference, one of two possible situations arise:
|
|
|
|
// (1) A crash, because the pointer was NULL.
|
|
|
|
// (2) The pointer is not NULL, and the dereference works.
|
|
|
|
//
|
|
|
|
// We add these assumptions.
|
|
|
|
|
2008-02-07 06:04:18 +00:00
|
|
|
bool isFeasibleNotNull;
|
|
|
|
|
|
|
|
// "Assume" that the pointer is Not-NULL.
|
|
|
|
StateTy StNotNull = Assume(St, L1, true, isFeasibleNotNull);
|
|
|
|
|
|
|
|
if (isFeasibleNotNull) {
|
|
|
|
QualType T = U->getType();
|
|
|
|
Nodify(Dst, U, N1, SetValue(StNotNull, U,
|
|
|
|
GetValue(StNotNull, L1, &T)));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isFeasibleNull;
|
2008-02-07 05:48:01 +00:00
|
|
|
|
|
|
|
// "Assume" that the pointer is NULL.
|
2008-02-07 06:04:18 +00:00
|
|
|
StateTy StNull = Assume(St, L1, false, isFeasibleNull);
|
2008-02-07 05:48:01 +00:00
|
|
|
|
2008-02-07 06:04:18 +00:00
|
|
|
if (isFeasibleNull) {
|
2008-02-07 15:20:13 +00:00
|
|
|
// We don't use "Nodify" here because the node will be a sink
|
|
|
|
// and we have no intention of processing it later.
|
|
|
|
NodeTy* NullNode = Builder->generateNode(U, StNull, N1);
|
|
|
|
|
2008-02-07 05:48:01 +00:00
|
|
|
if (NullNode) {
|
|
|
|
NullNode->markAsSink();
|
2008-02-07 06:04:18 +00:00
|
|
|
|
|
|
|
if (isFeasibleNotNull)
|
|
|
|
ImplicitNullDeref.insert(NullNode);
|
|
|
|
else
|
|
|
|
ExplicitNullDeref.insert(NullNode);
|
2008-02-07 05:48:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-31 02:35:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
default: ;
|
|
|
|
assert (false && "Not implemented.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitAssignmentLHS(Expr* E, GRExprEngine::NodeTy* Pred,
|
|
|
|
GRExprEngine::NodeSet& Dst) {
|
2008-02-07 01:08:27 +00:00
|
|
|
|
2008-02-07 04:16:04 +00:00
|
|
|
if (isa<DeclRefExpr>(E)) {
|
|
|
|
Dst.Add(Pred);
|
2008-02-07 01:08:27 +00:00
|
|
|
return;
|
2008-02-07 04:16:04 +00:00
|
|
|
}
|
2008-02-07 01:08:27 +00:00
|
|
|
|
|
|
|
if (UnaryOperator* U = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
if (U->getOpcode() == UnaryOperator::Deref) {
|
|
|
|
Visit(U->getSubExpr(), Pred, Dst);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Visit(E, Pred, Dst);
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::VisitBinaryOperator(BinaryOperator* B,
|
2008-02-13 23:08:21 +00:00
|
|
|
GRExprEngine::NodeTy* Pred,
|
|
|
|
GRExprEngine::NodeSet& Dst) {
|
2008-01-23 19:59:44 +00:00
|
|
|
NodeSet S1;
|
2008-02-07 01:08:27 +00:00
|
|
|
|
|
|
|
if (B->isAssignmentOp())
|
|
|
|
VisitAssignmentLHS(B->getLHS(), Pred, S1);
|
|
|
|
else
|
|
|
|
Visit(B->getLHS(), Pred, S1);
|
2008-01-16 00:53:15 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) {
|
|
|
|
NodeTy* N1 = *I1;
|
2008-01-16 00:53:15 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
// When getting the value for the LHS, check if we are in an assignment.
|
|
|
|
// In such cases, we want to (initially) treat the LHS as an LValue,
|
|
|
|
// so we use GetLValue instead of GetValue so that DeclRefExpr's are
|
2008-01-28 22:09:13 +00:00
|
|
|
// evaluated to LValueDecl's instead of to an NonLValue.
|
|
|
|
const RValue& V1 =
|
2008-01-23 19:59:44 +00:00
|
|
|
B->isAssignmentOp() ? GetLValue(N1->getState(), B->getLHS())
|
|
|
|
: GetValue(N1->getState(), B->getLHS());
|
2008-01-16 00:53:15 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
NodeSet S2;
|
|
|
|
Visit(B->getRHS(), N1, S2);
|
|
|
|
|
|
|
|
for (NodeSet::iterator I2=S2.begin(), E2=S2.end(); I2 != E2; ++I2) {
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
NodeTy* N2 = *I2;
|
|
|
|
StateTy St = N2->getState();
|
2008-01-28 22:09:13 +00:00
|
|
|
const RValue& V2 = GetValue(St, B->getRHS());
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-02-06 22:50:25 +00:00
|
|
|
BinaryOperator::Opcode Op = B->getOpcode();
|
|
|
|
|
|
|
|
if (Op <= BinaryOperator::Or) {
|
|
|
|
|
2008-02-08 02:57:34 +00:00
|
|
|
if (isa<UnknownVal>(V1) || isa<UninitializedVal>(V1)) {
|
2008-02-07 01:08:27 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, V1));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-02-06 22:50:25 +00:00
|
|
|
if (isa<LValue>(V1)) {
|
|
|
|
// FIXME: Add support for RHS being a non-lvalue.
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
|
|
|
const LValue& L2 = cast<LValue>(V2);
|
2008-01-23 23:42:27 +00:00
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, EvalBinaryOp(ValMgr, Op, L1, L2)));
|
2008-01-25 22:55:56 +00:00
|
|
|
}
|
2008-02-06 22:50:25 +00:00
|
|
|
else {
|
2008-01-28 22:26:15 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
2008-02-06 22:50:25 +00:00
|
|
|
|
2008-02-14 19:37:24 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, EvalBinaryOp(ValMgr, Op, R1, R2)));
|
2008-01-28 22:26:15 +00:00
|
|
|
}
|
2008-02-06 22:50:25 +00:00
|
|
|
|
|
|
|
continue;
|
2008-02-07 04:16:04 +00:00
|
|
|
|
2008-02-06 22:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (Op) {
|
2008-01-23 19:59:44 +00:00
|
|
|
case BinaryOperator::Assign: {
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
2008-02-06 04:41:14 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(SetValue(St, B, V2), L1, V2));
|
2008-01-23 19:59:44 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-02-06 22:50:25 +00:00
|
|
|
|
|
|
|
default: { // Compound assignment operators.
|
2008-01-23 23:38:00 +00:00
|
|
|
|
2008-02-06 22:50:25 +00:00
|
|
|
assert (B->isCompoundAssignmentOp());
|
|
|
|
|
2008-01-28 22:28:54 +00:00
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
2008-02-08 02:57:34 +00:00
|
|
|
RValue Result = cast<NonLValue>(UnknownVal());
|
2008-01-29 19:43:15 +00:00
|
|
|
|
2008-02-08 07:05:39 +00:00
|
|
|
if (Op >= BinaryOperator::AndAssign)
|
|
|
|
((int&) Op) -= (BinaryOperator::AndAssign - BinaryOperator::And);
|
|
|
|
else
|
|
|
|
((int&) Op) -= BinaryOperator::MulAssign;
|
2008-01-29 19:43:15 +00:00
|
|
|
|
2008-02-06 22:50:25 +00:00
|
|
|
if (isa<LValue>(V2)) {
|
|
|
|
// FIXME: Add support for Non-LValues on RHS.
|
2008-01-29 19:43:15 +00:00
|
|
|
const LValue& L2 = cast<LValue>(V2);
|
2008-02-14 19:37:24 +00:00
|
|
|
Result = EvalBinaryOp(ValMgr, Op, L1, L2);
|
2008-01-29 19:43:15 +00:00
|
|
|
}
|
|
|
|
else {
|
2008-02-06 22:50:25 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
|
2008-01-29 19:43:15 +00:00
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
2008-02-14 19:37:24 +00:00
|
|
|
Result = EvalBinaryOp(ValMgr, Op, R1, R2);
|
2008-01-29 19:43:15 +00:00
|
|
|
}
|
|
|
|
|
2008-02-06 22:50:25 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
|
2008-01-23 19:59:44 +00:00
|
|
|
break;
|
2008-02-06 22:50:25 +00:00
|
|
|
}
|
2008-01-23 19:59:44 +00:00
|
|
|
}
|
2008-01-16 00:53:15 +00:00
|
|
|
}
|
2008-01-15 23:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
void GRExprEngine::Visit(Stmt* S, GRExprEngine::NodeTy* Pred,
|
|
|
|
GRExprEngine::NodeSet& Dst) {
|
2008-01-16 18:18:48 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
// FIXME: add metadata to the CFG so that we can disable
|
|
|
|
// this check when we KNOW that there is no block-level subexpression.
|
|
|
|
// The motivation is that this check requires a hashtable lookup.
|
2008-01-16 19:42:59 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
if (S != CurrentStmt && getCFG().isBlkExpr(S)) {
|
|
|
|
Dst.Add(Pred);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (S->getStmtClass()) {
|
2008-02-12 21:37:25 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
// Cases we intentionally have "default" handle:
|
|
|
|
// AddrLabelExpr, CharacterLiteral, IntegerLiteral
|
|
|
|
|
|
|
|
Dst.Add(Pred); // No-op. Simply propagate the current state unchanged.
|
|
|
|
break;
|
|
|
|
|
2008-02-08 20:29:23 +00:00
|
|
|
case Stmt::BinaryOperatorClass: {
|
|
|
|
BinaryOperator* B = cast<BinaryOperator>(S);
|
2008-02-05 00:26:40 +00:00
|
|
|
|
2008-02-08 20:29:23 +00:00
|
|
|
if (B->isLogicalOp()) {
|
|
|
|
VisitLogicalExpr(B, Pred, Dst);
|
2008-02-05 00:26:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-02-08 20:29:23 +00:00
|
|
|
else if (B->getOpcode() == BinaryOperator::Comma) {
|
2008-02-08 07:05:39 +00:00
|
|
|
StateTy St = Pred->getState();
|
2008-02-08 20:29:23 +00:00
|
|
|
Nodify(Dst, B, Pred, SetValue(St, B, GetValue(St, B->getRHS())));
|
2008-02-08 07:05:39 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-02-05 00:26:40 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
|
|
|
|
break;
|
2008-02-12 19:49:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case Stmt::CastExprClass: {
|
|
|
|
CastExpr* C = cast<CastExpr>(S);
|
|
|
|
VisitCast(C, C->getSubExpr(), Pred, Dst);
|
|
|
|
break;
|
|
|
|
}
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
case Stmt::ChooseExprClass: { // __builtin_choose_expr
|
|
|
|
ChooseExpr* C = cast<ChooseExpr>(S);
|
|
|
|
VisitGuardedExpr(C, C->getLHS(), C->getRHS(), Pred, Dst);
|
|
|
|
break;
|
2008-02-08 07:05:39 +00:00
|
|
|
}
|
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
case Stmt::CompoundAssignOperatorClass:
|
|
|
|
VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
|
2008-01-24 02:28:56 +00:00
|
|
|
break;
|
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
case Stmt::ConditionalOperatorClass: { // '?' operator
|
|
|
|
ConditionalOperator* C = cast<ConditionalOperator>(S);
|
|
|
|
VisitGuardedExpr(C, C->getLHS(), C->getRHS(), Pred, Dst);
|
2008-01-23 19:59:44 +00:00
|
|
|
break;
|
2008-02-12 19:49:57 +00:00
|
|
|
}
|
|
|
|
|
2008-02-07 04:16:04 +00:00
|
|
|
case Stmt::DeclRefExprClass:
|
|
|
|
VisitDeclRefExpr(cast<DeclRefExpr>(S), Pred, Dst);
|
|
|
|
break;
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
case Stmt::DeclStmtClass:
|
|
|
|
VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst);
|
|
|
|
break;
|
|
|
|
|
2008-01-24 02:02:54 +00:00
|
|
|
case Stmt::ImplicitCastExprClass: {
|
|
|
|
ImplicitCastExpr* C = cast<ImplicitCastExpr>(S);
|
|
|
|
VisitCast(C, C->getSubExpr(), Pred, Dst);
|
|
|
|
break;
|
|
|
|
}
|
2008-02-12 19:49:57 +00:00
|
|
|
|
|
|
|
case Stmt::ParenExprClass:
|
|
|
|
Visit(cast<ParenExpr>(S)->getSubExpr(), Pred, Dst);
|
2008-01-24 02:02:54 +00:00
|
|
|
break;
|
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
case Stmt::SizeOfAlignOfTypeExprClass:
|
|
|
|
VisitSizeOfAlignOfTypeExpr(cast<SizeOfAlignOfTypeExpr>(S), Pred, Dst);
|
2008-02-05 00:26:40 +00:00
|
|
|
break;
|
2008-02-12 19:49:57 +00:00
|
|
|
|
|
|
|
case Stmt::StmtExprClass: {
|
|
|
|
StmtExpr* SE = cast<StmtExpr>(S);
|
|
|
|
|
|
|
|
StateTy St = Pred->getState();
|
|
|
|
Expr* LastExpr = cast<Expr>(*SE->getSubStmt()->body_rbegin());
|
|
|
|
Nodify(Dst, SE, Pred, SetValue(St, SE, GetValue(St, LastExpr)));
|
|
|
|
break;
|
2008-02-05 00:26:40 +00:00
|
|
|
}
|
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
case Stmt::ReturnStmtClass: {
|
2008-02-07 01:08:27 +00:00
|
|
|
if (Expr* R = cast<ReturnStmt>(S)->getRetValue())
|
|
|
|
Visit(R, Pred, Dst);
|
|
|
|
else
|
|
|
|
Dst.Add(Pred);
|
|
|
|
|
|
|
|
break;
|
2008-02-12 19:49:57 +00:00
|
|
|
}
|
2008-02-07 01:08:27 +00:00
|
|
|
|
2008-02-12 19:49:57 +00:00
|
|
|
case Stmt::UnaryOperatorClass:
|
|
|
|
VisitUnaryOperator(cast<UnaryOperator>(S), Pred, Dst);
|
2008-01-24 20:55:43 +00:00
|
|
|
break;
|
2008-01-17 18:25:22 +00:00
|
|
|
}
|
2008-01-16 19:42:59 +00:00
|
|
|
}
|
|
|
|
|
2008-01-30 23:03:39 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// "Assume" logic.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::StateTy GRExprEngine::Assume(StateTy St, LValue Cond,
|
2008-02-06 00:54:14 +00:00
|
|
|
bool Assumption,
|
2008-01-31 19:34:24 +00:00
|
|
|
bool& isFeasible) {
|
2008-02-01 06:36:40 +00:00
|
|
|
|
|
|
|
switch (Cond.getSubKind()) {
|
|
|
|
default:
|
2008-02-06 00:54:14 +00:00
|
|
|
assert (false && "'Assume' not implemented for this LValue.");
|
2008-02-01 06:36:40 +00:00
|
|
|
return St;
|
|
|
|
|
2008-02-06 00:54:14 +00:00
|
|
|
case lval::SymbolValKind:
|
|
|
|
if (Assumption)
|
|
|
|
return AssumeSymNE(St, cast<lval::SymbolVal>(Cond).getSymbol(),
|
|
|
|
ValMgr.getZeroWithPtrWidth(), isFeasible);
|
|
|
|
else
|
|
|
|
return AssumeSymEQ(St, cast<lval::SymbolVal>(Cond).getSymbol(),
|
|
|
|
ValMgr.getZeroWithPtrWidth(), isFeasible);
|
|
|
|
|
2008-02-06 04:31:33 +00:00
|
|
|
|
2008-02-05 21:52:21 +00:00
|
|
|
case lval::DeclValKind:
|
2008-02-01 06:36:40 +00:00
|
|
|
isFeasible = Assumption;
|
|
|
|
return St;
|
2008-02-06 00:54:14 +00:00
|
|
|
|
2008-02-05 21:52:21 +00:00
|
|
|
case lval::ConcreteIntKind: {
|
|
|
|
bool b = cast<lval::ConcreteInt>(Cond).getValue() != 0;
|
2008-02-01 06:36:40 +00:00
|
|
|
isFeasible = b ? Assumption : !Assumption;
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
}
|
2008-01-30 23:03:39 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::StateTy GRExprEngine::Assume(StateTy St, NonLValue Cond,
|
2008-02-06 00:54:14 +00:00
|
|
|
bool Assumption,
|
2008-01-31 19:34:24 +00:00
|
|
|
bool& isFeasible) {
|
2008-01-30 23:03:39 +00:00
|
|
|
|
|
|
|
switch (Cond.getSubKind()) {
|
|
|
|
default:
|
|
|
|
assert (false && "'Assume' not implemented for this NonLValue.");
|
|
|
|
return St;
|
|
|
|
|
2008-02-06 17:32:17 +00:00
|
|
|
|
|
|
|
case nonlval::SymbolValKind: {
|
2008-02-12 21:37:25 +00:00
|
|
|
nonlval::SymbolVal& SV = cast<nonlval::SymbolVal>(Cond);
|
2008-02-06 17:32:17 +00:00
|
|
|
SymbolID sym = SV.getSymbol();
|
|
|
|
|
|
|
|
if (Assumption)
|
|
|
|
return AssumeSymNE(St, sym, ValMgr.getValue(0, SymMgr.getType(sym)),
|
|
|
|
isFeasible);
|
|
|
|
else
|
|
|
|
return AssumeSymEQ(St, sym, ValMgr.getValue(0, SymMgr.getType(sym)),
|
|
|
|
isFeasible);
|
|
|
|
}
|
|
|
|
|
2008-02-06 04:31:33 +00:00
|
|
|
case nonlval::SymIntConstraintValKind:
|
|
|
|
return
|
|
|
|
AssumeSymInt(St, Assumption,
|
|
|
|
cast<nonlval::SymIntConstraintVal>(Cond).getConstraint(),
|
|
|
|
isFeasible);
|
|
|
|
|
2008-02-05 21:52:21 +00:00
|
|
|
case nonlval::ConcreteIntKind: {
|
|
|
|
bool b = cast<nonlval::ConcreteInt>(Cond).getValue() != 0;
|
2008-01-30 23:03:39 +00:00
|
|
|
isFeasible = b ? Assumption : !Assumption;
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::StateTy
|
|
|
|
GRExprEngine::AssumeSymNE(StateTy St, SymbolID sym,
|
2008-02-06 00:54:14 +00:00
|
|
|
const llvm::APSInt& V, bool& isFeasible) {
|
|
|
|
|
|
|
|
// First, determine if sym == X, where X != V.
|
|
|
|
if (const llvm::APSInt* X = St.getSymVal(sym)) {
|
|
|
|
isFeasible = *X != V;
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Second, determine if sym != V.
|
|
|
|
if (St.isNotEqual(sym, V)) {
|
|
|
|
isFeasible = true;
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we reach here, sym is not a constant and we don't know if it is != V.
|
|
|
|
// Make that assumption.
|
|
|
|
|
|
|
|
isFeasible = true;
|
|
|
|
return StateMgr.AddNE(St, sym, V);
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::StateTy
|
|
|
|
GRExprEngine::AssumeSymEQ(StateTy St, SymbolID sym,
|
2008-02-06 00:54:14 +00:00
|
|
|
const llvm::APSInt& V, bool& isFeasible) {
|
|
|
|
|
|
|
|
// First, determine if sym == X, where X != V.
|
|
|
|
if (const llvm::APSInt* X = St.getSymVal(sym)) {
|
|
|
|
isFeasible = *X == V;
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Second, determine if sym != V.
|
|
|
|
if (St.isNotEqual(sym, V)) {
|
|
|
|
isFeasible = false;
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we reach here, sym is not a constant and we don't know if it is == V.
|
|
|
|
// Make that assumption.
|
|
|
|
|
|
|
|
isFeasible = true;
|
|
|
|
return StateMgr.AddEQ(St, sym, V);
|
|
|
|
}
|
2008-01-30 23:03:39 +00:00
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
GRExprEngine::StateTy
|
|
|
|
GRExprEngine::AssumeSymInt(StateTy St, bool Assumption,
|
2008-02-06 04:31:33 +00:00
|
|
|
const SymIntConstraint& C, bool& isFeasible) {
|
|
|
|
|
|
|
|
switch (C.getOpcode()) {
|
|
|
|
default:
|
|
|
|
// No logic yet for other operators.
|
|
|
|
return St;
|
|
|
|
|
|
|
|
case BinaryOperator::EQ:
|
|
|
|
if (Assumption)
|
|
|
|
return AssumeSymEQ(St, C.getSymbol(), C.getInt(), isFeasible);
|
|
|
|
else
|
|
|
|
return AssumeSymNE(St, C.getSymbol(), C.getInt(), isFeasible);
|
|
|
|
|
|
|
|
case BinaryOperator::NE:
|
|
|
|
if (Assumption)
|
|
|
|
return AssumeSymNE(St, C.getSymbol(), C.getInt(), isFeasible);
|
|
|
|
else
|
|
|
|
return AssumeSymEQ(St, C.getSymbol(), C.getInt(), isFeasible);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-16 18:18:48 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-02-14 22:36:46 +00:00
|
|
|
// Visualization.
|
2008-01-16 18:18:48 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-01-16 21:46:15 +00:00
|
|
|
#ifndef NDEBUG
|
2008-02-13 17:41:41 +00:00
|
|
|
static GRExprEngine* GraphPrintCheckerState;
|
2008-01-30 23:24:39 +00:00
|
|
|
|
2008-01-16 21:46:15 +00:00
|
|
|
namespace llvm {
|
|
|
|
template<>
|
2008-02-13 17:41:41 +00:00
|
|
|
struct VISIBILITY_HIDDEN DOTGraphTraits<GRExprEngine::NodeTy*> :
|
2008-01-16 21:46:15 +00:00
|
|
|
public DefaultDOTGraphTraits {
|
2008-02-08 21:10:02 +00:00
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
static void PrintVarBindings(std::ostream& Out, GRExprEngine::StateTy St) {
|
2008-02-08 21:10:02 +00:00
|
|
|
|
|
|
|
Out << "Variables:\\l";
|
|
|
|
|
2008-01-24 22:27:20 +00:00
|
|
|
bool isFirst = true;
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
for (GRExprEngine::StateTy::vb_iterator I=St.vb_begin(),
|
2008-02-08 21:10:02 +00:00
|
|
|
E=St.vb_end(); I!=E;++I) {
|
|
|
|
|
|
|
|
if (isFirst)
|
|
|
|
isFirst = false;
|
|
|
|
else
|
|
|
|
Out << "\\l";
|
|
|
|
|
|
|
|
Out << ' ' << I.getKey()->getName() << " : ";
|
|
|
|
I.getData().print(Out);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-02-11 19:21:59 +00:00
|
|
|
|
2008-02-13 18:06:44 +00:00
|
|
|
static void PrintSubExprBindings(std::ostream& Out, GRExprEngine::StateTy St){
|
2008-02-11 19:21:59 +00:00
|
|
|
|
2008-02-08 21:10:02 +00:00
|
|
|
bool isFirst = true;
|
2008-02-11 19:21:59 +00:00
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
for (GRExprEngine::StateTy::seb_iterator I=St.seb_begin(), E=St.seb_end();
|
2008-02-11 19:21:59 +00:00
|
|
|
I != E;++I) {
|
2008-02-08 21:10:02 +00:00
|
|
|
|
2008-02-11 19:21:59 +00:00
|
|
|
if (isFirst) {
|
|
|
|
Out << "\\l\\lSub-Expressions:\\l";
|
|
|
|
isFirst = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Out << "\\l";
|
|
|
|
|
|
|
|
Out << " (" << (void*) I.getKey() << ") ";
|
|
|
|
I.getKey()->printPretty(Out);
|
|
|
|
Out << " : ";
|
|
|
|
I.getData().print(Out);
|
|
|
|
}
|
|
|
|
}
|
2008-01-24 22:27:20 +00:00
|
|
|
|
2008-02-13 18:06:44 +00:00
|
|
|
static void PrintBlkExprBindings(std::ostream& Out, GRExprEngine::StateTy St){
|
2008-02-11 19:21:59 +00:00
|
|
|
|
|
|
|
bool isFirst = true;
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
for (GRExprEngine::StateTy::beb_iterator I=St.beb_begin(), E=St.beb_end();
|
2008-02-11 19:21:59 +00:00
|
|
|
I != E; ++I) {
|
2008-01-24 22:27:20 +00:00
|
|
|
if (isFirst) {
|
2008-02-11 19:21:59 +00:00
|
|
|
Out << "\\l\\lBlock-level Expressions:\\l";
|
2008-01-24 22:27:20 +00:00
|
|
|
isFirst = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Out << "\\l";
|
2008-02-08 21:10:02 +00:00
|
|
|
|
2008-02-11 19:21:59 +00:00
|
|
|
Out << " (" << (void*) I.getKey() << ") ";
|
|
|
|
I.getKey()->printPretty(Out);
|
2008-01-24 22:27:20 +00:00
|
|
|
Out << " : ";
|
|
|
|
I.getData().print(Out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
static void PrintEQ(std::ostream& Out, GRExprEngine::StateTy St) {
|
2008-02-06 03:56:15 +00:00
|
|
|
ValueState::ConstantEqTy CE = St.getImpl()->ConstantEq;
|
|
|
|
|
|
|
|
if (CE.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Out << "\\l\\|'==' constraints:";
|
|
|
|
|
|
|
|
for (ValueState::ConstantEqTy::iterator I=CE.begin(), E=CE.end(); I!=E;++I)
|
|
|
|
Out << "\\l $" << I.getKey() << " : " << I.getData()->toString();
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
static void PrintNE(std::ostream& Out, GRExprEngine::StateTy St) {
|
2008-02-06 03:56:15 +00:00
|
|
|
ValueState::ConstantNotEqTy NE = St.getImpl()->ConstantNotEq;
|
|
|
|
|
|
|
|
if (NE.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Out << "\\l\\|'!=' constraints:";
|
|
|
|
|
|
|
|
for (ValueState::ConstantNotEqTy::iterator I=NE.begin(), EI=NE.end();
|
|
|
|
I != EI; ++I){
|
|
|
|
|
|
|
|
Out << "\\l $" << I.getKey() << " : ";
|
|
|
|
bool isFirst = true;
|
|
|
|
|
|
|
|
ValueState::IntSetTy::iterator J=I.getData().begin(),
|
|
|
|
EJ=I.getData().end();
|
|
|
|
for ( ; J != EJ; ++J) {
|
|
|
|
if (isFirst) isFirst = false;
|
|
|
|
else Out << ", ";
|
|
|
|
|
|
|
|
Out << (*J)->toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-13 17:41:41 +00:00
|
|
|
static std::string getNodeLabel(const GRExprEngine::NodeTy* N, void*) {
|
2008-01-16 21:46:15 +00:00
|
|
|
std::ostringstream Out;
|
2008-01-23 22:30:44 +00:00
|
|
|
|
|
|
|
// Program Location.
|
2008-01-16 21:46:15 +00:00
|
|
|
ProgramPoint Loc = N->getLocation();
|
|
|
|
|
|
|
|
switch (Loc.getKind()) {
|
|
|
|
case ProgramPoint::BlockEntranceKind:
|
|
|
|
Out << "Block Entrance: B"
|
|
|
|
<< cast<BlockEntrance>(Loc).getBlock()->getBlockID();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ProgramPoint::BlockExitKind:
|
|
|
|
assert (false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ProgramPoint::PostStmtKind: {
|
|
|
|
const PostStmt& L = cast<PostStmt>(Loc);
|
2008-01-24 22:27:20 +00:00
|
|
|
Out << L.getStmt()->getStmtClassName() << ':'
|
|
|
|
<< (void*) L.getStmt() << ' ';
|
|
|
|
|
2008-01-16 21:46:15 +00:00
|
|
|
L.getStmt()->printPretty(Out);
|
2008-02-07 05:48:01 +00:00
|
|
|
|
|
|
|
if (GraphPrintCheckerState->isImplicitNullDeref(N)) {
|
|
|
|
Out << "\\|Implicit-Null Dereference.\\l";
|
|
|
|
}
|
2008-02-07 06:04:18 +00:00
|
|
|
else if (GraphPrintCheckerState->isExplicitNullDeref(N)) {
|
|
|
|
Out << "\\|Explicit-Null Dereference.\\l";
|
|
|
|
}
|
2008-02-07 05:48:01 +00:00
|
|
|
|
2008-01-16 21:46:15 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: {
|
|
|
|
const BlockEdge& E = cast<BlockEdge>(Loc);
|
|
|
|
Out << "Edge: (B" << E.getSrc()->getBlockID() << ", B"
|
|
|
|
<< E.getDst()->getBlockID() << ')';
|
2008-01-30 23:03:39 +00:00
|
|
|
|
|
|
|
if (Stmt* T = E.getSrc()->getTerminator()) {
|
|
|
|
Out << "\\|Terminator: ";
|
|
|
|
E.getSrc()->printTerminator(Out);
|
|
|
|
|
2008-02-13 23:08:21 +00:00
|
|
|
if (isa<SwitchStmt>(T)) {
|
|
|
|
Stmt* Label = E.getDst()->getLabel();
|
|
|
|
|
|
|
|
if (Label) {
|
|
|
|
if (CaseStmt* C = dyn_cast<CaseStmt>(Label)) {
|
|
|
|
Out << "\\lcase ";
|
|
|
|
C->getLHS()->printPretty(Out);
|
|
|
|
|
|
|
|
if (Stmt* RHS = C->getRHS()) {
|
|
|
|
Out << " .. ";
|
|
|
|
RHS->printPretty(Out);
|
|
|
|
}
|
|
|
|
|
|
|
|
Out << ":";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert (isa<DefaultStmt>(Label));
|
|
|
|
Out << "\\ldefault:";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Out << "\\l(implicit) default:";
|
|
|
|
}
|
|
|
|
else if (isa<IndirectGotoStmt>(T)) {
|
2008-01-30 23:03:39 +00:00
|
|
|
// FIXME
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Out << "\\lCondition: ";
|
|
|
|
if (*E.getSrc()->succ_begin() == E.getDst())
|
|
|
|
Out << "true";
|
|
|
|
else
|
|
|
|
Out << "false";
|
|
|
|
}
|
|
|
|
|
|
|
|
Out << "\\l";
|
|
|
|
}
|
2008-01-30 23:24:39 +00:00
|
|
|
|
|
|
|
if (GraphPrintCheckerState->isUninitControlFlow(N)) {
|
|
|
|
Out << "\\|Control-flow based on\\lUninitialized value.\\l";
|
|
|
|
}
|
2008-01-16 21:46:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-05 07:17:49 +00:00
|
|
|
Out << "\\|StateID: " << (void*) N->getState().getImpl() << "\\|";
|
2008-02-08 21:10:02 +00:00
|
|
|
|
2008-02-11 19:21:59 +00:00
|
|
|
N->getState().printDOT(Out);
|
2008-01-16 21:46:15 +00:00
|
|
|
|
2008-01-23 22:30:44 +00:00
|
|
|
Out << "\\l";
|
2008-01-16 21:46:15 +00:00
|
|
|
return Out.str();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end llvm namespace
|
|
|
|
#endif
|
|
|
|
|
2008-02-14 22:36:46 +00:00
|
|
|
void GRExprEngine::ViewGraph() {
|
2008-01-16 21:46:15 +00:00
|
|
|
#ifndef NDEBUG
|
2008-02-14 22:36:46 +00:00
|
|
|
GraphPrintCheckerState = this;
|
|
|
|
llvm::ViewGraph(*G.roots_begin(), "GRExprEngine");
|
2008-01-30 23:24:39 +00:00
|
|
|
GraphPrintCheckerState = NULL;
|
2008-02-14 22:36:46 +00:00
|
|
|
#endif
|
2008-01-16 18:18:48 +00:00
|
|
|
}
|