2008-01-15 23:55:06 +00:00
|
|
|
//===-- GRConstants.cpp - Simple, Path-Sens. Constant Prop. ------*- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Constant Propagation via Graph Reachability
|
|
|
|
//
|
|
|
|
// This files defines a simple analysis that performs path-sensitive
|
|
|
|
// constant propagation within a function. An example use of this analysis
|
|
|
|
// is to perform simple checks for NULL dereferences.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-01-31 19:34:24 +00:00
|
|
|
#include "RValues.h"
|
|
|
|
#include "ValueState.h"
|
|
|
|
|
2008-01-15 23:55:06 +00:00
|
|
|
#include "clang/Analysis/PathSensitive/GREngine.h"
|
|
|
|
#include "clang/AST/Expr.h"
|
2008-01-24 02:02:54 +00:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2008-01-15 23:55:06 +00:00
|
|
|
#include "clang/Analysis/Analyses/LiveVariables.h"
|
|
|
|
|
|
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
#include "llvm/Support/DataTypes.h"
|
|
|
|
#include "llvm/ADT/APSInt.h"
|
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
|
|
|
#include "llvm/ADT/ImmutableMap.h"
|
2008-01-16 17:56:25 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2008-01-30 23:03:39 +00:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2008-01-23 19:59:44 +00:00
|
|
|
#include "llvm/Support/Allocator.h"
|
2008-01-15 23:55:06 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2008-01-23 19:59:44 +00:00
|
|
|
#include "llvm/Support/Streams.h"
|
|
|
|
|
2008-01-25 22:55:56 +00:00
|
|
|
#include <functional>
|
|
|
|
|
2008-01-16 21:46:15 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
#include "llvm/Support/GraphWriter.h"
|
|
|
|
#include <sstream>
|
|
|
|
#endif
|
|
|
|
|
2008-01-15 23:55:06 +00:00
|
|
|
using namespace clang;
|
|
|
|
using llvm::dyn_cast;
|
|
|
|
using llvm::cast;
|
2008-01-25 22:55:56 +00:00
|
|
|
using llvm::APSInt;
|
2008-01-15 23:55:06 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2008-01-28 22:09:13 +00:00
|
|
|
// The Checker.
|
2008-01-30 23:03:39 +00:00
|
|
|
//
|
|
|
|
// FIXME: This checker logic should be eventually broken into two components.
|
|
|
|
// The first is the "meta"-level checking logic; the code that
|
|
|
|
// does the Stmt visitation, fetching values from the map, etc.
|
|
|
|
// The second part does the actual state manipulation. This way we
|
|
|
|
// get more of a separate of concerns of these two pieces, with the
|
|
|
|
// latter potentially being refactored back into the main checking
|
|
|
|
// logic.
|
2008-01-15 23:55:06 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2008-01-23 19:59:44 +00:00
|
|
|
|
|
|
|
class VISIBILITY_HIDDEN GRConstants {
|
2008-01-15 23:55:06 +00:00
|
|
|
|
|
|
|
public:
|
2008-02-04 21:59:01 +00:00
|
|
|
typedef ValueStateManager::StateTy StateTy;
|
2008-01-29 22:56:11 +00:00
|
|
|
typedef GRStmtNodeBuilder<GRConstants> StmtNodeBuilder;
|
|
|
|
typedef GRBranchNodeBuilder<GRConstants> BranchNodeBuilder;
|
2008-01-29 00:33:40 +00:00
|
|
|
typedef ExplodedGraph<GRConstants> GraphTy;
|
|
|
|
typedef GraphTy::NodeTy NodeTy;
|
2008-01-23 19:59:44 +00:00
|
|
|
|
|
|
|
class NodeSet {
|
|
|
|
typedef llvm::SmallVector<NodeTy*,3> ImplTy;
|
|
|
|
ImplTy Impl;
|
|
|
|
public:
|
|
|
|
|
|
|
|
NodeSet() {}
|
2008-01-30 23:03:39 +00:00
|
|
|
NodeSet(NodeTy* N) { assert (N && !N->isSink()); Impl.push_back(N); }
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-01-30 23:03:39 +00:00
|
|
|
void Add(NodeTy* N) { if (N && !N->isSink()) Impl.push_back(N); }
|
2008-01-23 19:59:44 +00:00
|
|
|
|
|
|
|
typedef ImplTy::iterator iterator;
|
|
|
|
typedef ImplTy::const_iterator const_iterator;
|
|
|
|
|
|
|
|
unsigned size() const { return Impl.size(); }
|
2008-01-24 20:55:43 +00:00
|
|
|
bool empty() const { return Impl.empty(); }
|
2008-01-23 19:59:44 +00:00
|
|
|
|
|
|
|
iterator begin() { return Impl.begin(); }
|
|
|
|
iterator end() { return Impl.end(); }
|
|
|
|
|
|
|
|
const_iterator begin() const { return Impl.begin(); }
|
|
|
|
const_iterator end() const { return Impl.end(); }
|
|
|
|
};
|
2008-02-05 19:35:18 +00:00
|
|
|
|
2008-01-15 23:55:06 +00:00
|
|
|
protected:
|
2008-01-29 00:33:40 +00:00
|
|
|
/// G - the simulation graph.
|
|
|
|
GraphTy& G;
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
/// Liveness - live-variables information the ValueDecl* and block-level
|
|
|
|
/// Expr* in the CFG. Used to prune out dead state.
|
2008-01-29 05:13:23 +00:00
|
|
|
LiveVariables Liveness;
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-01-29 22:11:49 +00:00
|
|
|
/// Builder - The current GRStmtNodeBuilder which is used when building the nodes
|
2008-01-23 19:59:44 +00:00
|
|
|
/// for a given statement.
|
2008-01-29 22:56:11 +00:00
|
|
|
StmtNodeBuilder* Builder;
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
/// StateMgr - Object that manages the data for all created states.
|
2008-02-04 21:59:01 +00:00
|
|
|
ValueStateManager StateMgr;
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-01-28 22:09:13 +00:00
|
|
|
/// ValueMgr - Object that manages the data for all created RValues.
|
2008-02-04 21:59:01 +00:00
|
|
|
ValueManager& ValMgr;
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-01-29 17:27:31 +00:00
|
|
|
/// SymMgr - Object that manages the symbol information.
|
2008-02-04 21:59:01 +00:00
|
|
|
SymbolManager& SymMgr;
|
2008-01-29 17:27:31 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
/// StmtEntryNode - The immediate predecessor node.
|
|
|
|
NodeTy* StmtEntryNode;
|
|
|
|
|
|
|
|
/// CurrentStmt - The current block-level statement.
|
|
|
|
Stmt* CurrentStmt;
|
|
|
|
|
2008-01-30 23:03:39 +00:00
|
|
|
/// UninitBranches - Nodes in the ExplodedGraph that result from
|
|
|
|
/// taking a branch based on an uninitialized value.
|
|
|
|
typedef llvm::SmallPtrSet<NodeTy*,5> UninitBranchesTy;
|
|
|
|
UninitBranchesTy UninitBranches;
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
bool StateCleaned;
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-01-29 00:33:40 +00:00
|
|
|
ASTContext& getContext() const { return G.getContext(); }
|
2008-01-24 02:28:56 +00:00
|
|
|
|
2008-01-15 23:55:06 +00:00
|
|
|
public:
|
2008-01-29 05:13:23 +00:00
|
|
|
GRConstants(GraphTy& g) : G(g), Liveness(G.getCFG(), G.getFunctionDecl()),
|
2008-02-04 21:59:01 +00:00
|
|
|
Builder(NULL),
|
2008-02-05 05:15:51 +00:00
|
|
|
StateMgr(G.getContext(), G.getAllocator()),
|
2008-02-04 21:59:01 +00:00
|
|
|
ValMgr(StateMgr.getValueManager()),
|
|
|
|
SymMgr(StateMgr.getSymbolManager()),
|
|
|
|
StmtEntryNode(NULL), CurrentStmt(NULL) {
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-01-29 00:33:40 +00:00
|
|
|
// Compute liveness information.
|
2008-01-29 05:13:23 +00:00
|
|
|
Liveness.runOnCFG(G.getCFG());
|
|
|
|
Liveness.runOnAllBlocks(G.getCFG(), NULL, true);
|
2008-01-15 23:55:06 +00:00
|
|
|
}
|
2008-01-29 00:33:40 +00:00
|
|
|
|
|
|
|
/// getCFG - Returns the CFG associated with this analysis.
|
|
|
|
CFG& getCFG() { return G.getCFG(); }
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
/// getInitialState - Return the initial state used for the root vertex
|
|
|
|
/// in the ExplodedGraph.
|
2008-01-15 23:55:06 +00:00
|
|
|
StateTy getInitialState() {
|
2008-02-04 21:59:01 +00:00
|
|
|
StateTy St = StateMgr.getInitialState();
|
2008-01-29 00:43:03 +00:00
|
|
|
|
|
|
|
// Iterate the parameters.
|
|
|
|
FunctionDecl& F = G.getFunctionDecl();
|
|
|
|
|
|
|
|
for (FunctionDecl::param_iterator I=F.param_begin(), E=F.param_end();
|
2008-01-31 00:09:56 +00:00
|
|
|
I!=E; ++I)
|
2008-02-05 21:52:21 +00:00
|
|
|
St = SetValue(St, lval::DeclVal(*I), RValue::GetSymbolValue(SymMgr, *I));
|
2008-01-29 00:43:03 +00:00
|
|
|
|
2008-01-29 00:33:40 +00:00
|
|
|
return St;
|
2008-01-15 23:55:06 +00:00
|
|
|
}
|
2008-01-30 23:24:39 +00:00
|
|
|
|
|
|
|
bool isUninitControlFlow(const NodeTy* N) const {
|
|
|
|
return N->isSink() && UninitBranches.count(const_cast<NodeTy*>(N)) != 0;
|
|
|
|
}
|
2008-01-23 19:59:44 +00:00
|
|
|
|
|
|
|
/// ProcessStmt - Called by GREngine. Used to generate new successor
|
|
|
|
/// nodes by processing the 'effects' of a block-level statement.
|
2008-01-29 22:56:11 +00:00
|
|
|
void ProcessStmt(Stmt* S, StmtNodeBuilder& builder);
|
|
|
|
|
|
|
|
/// ProcessBranch - Called by GREngine. Used to generate successor
|
|
|
|
/// nodes by processing the 'effects' of a branch condition.
|
2008-02-05 00:26:40 +00:00
|
|
|
void ProcessBranch(Expr* Condition, Stmt* Term, BranchNodeBuilder& builder);
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
/// RemoveDeadBindings - Return a new state that is the same as 'M' except
|
|
|
|
/// that all subexpression mappings are removed and that any
|
|
|
|
/// block-level expressions that are not live at 'S' also have their
|
|
|
|
/// mappings removed.
|
|
|
|
StateTy RemoveDeadBindings(Stmt* S, StateTy M);
|
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
StateTy SetValue(StateTy St, Stmt* S, const RValue& V);
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-01-28 22:09:13 +00:00
|
|
|
StateTy SetValue(StateTy St, const Stmt* S, const RValue& V) {
|
2008-01-24 20:55:43 +00:00
|
|
|
return SetValue(St, const_cast<Stmt*>(S), V);
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:35:18 +00:00
|
|
|
/// SetValue - This version of SetValue is used to batch process a set
|
|
|
|
/// of different possible RValues and return a set of different states.
|
|
|
|
const StateTy::BufferTy& SetValue(StateTy St, Stmt* S,
|
|
|
|
const RValue::BufferTy& V,
|
|
|
|
StateTy::BufferTy& RetBuf);
|
|
|
|
|
2008-01-28 22:09:13 +00:00
|
|
|
StateTy SetValue(StateTy St, const LValue& LV, const RValue& V);
|
2008-01-16 19:42:59 +00:00
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
inline RValue GetValue(const StateTy& St, Stmt* S) {
|
|
|
|
return StateMgr.GetValue(St, S);
|
|
|
|
}
|
2008-02-05 00:26:40 +00:00
|
|
|
|
|
|
|
inline RValue GetValue(const StateTy& St, Stmt* S, bool& hasVal) {
|
|
|
|
return StateMgr.GetValue(St, S, &hasVal);
|
|
|
|
}
|
|
|
|
|
2008-01-28 22:09:13 +00:00
|
|
|
inline RValue GetValue(const StateTy& St, const Stmt* S) {
|
2008-01-24 20:55:43 +00:00
|
|
|
return GetValue(St, const_cast<Stmt*>(S));
|
|
|
|
}
|
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
inline RValue GetValue(const StateTy& St, const LValue& LV) {
|
|
|
|
return StateMgr.GetValue(St, LV);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline LValue GetLValue(const StateTy& St, Stmt* S) {
|
|
|
|
return StateMgr.GetLValue(St, S);
|
|
|
|
}
|
2008-02-05 00:26:40 +00:00
|
|
|
|
|
|
|
inline NonLValue GetRValueConstant(uint64_t X, Expr* E) {
|
|
|
|
return NonLValue::GetValue(ValMgr, X, E->getType(), E->getLocStart());
|
|
|
|
}
|
2008-01-30 23:03:39 +00:00
|
|
|
|
|
|
|
/// Assume - Create new state by assuming that a given expression
|
|
|
|
/// is true or false.
|
|
|
|
inline StateTy Assume(StateTy St, RValue Cond, bool Assumption,
|
|
|
|
bool& isFeasible) {
|
|
|
|
if (isa<LValue>(Cond))
|
|
|
|
return Assume(St, cast<LValue>(Cond), Assumption, isFeasible);
|
|
|
|
else
|
|
|
|
return Assume(St, cast<NonLValue>(Cond), Assumption, isFeasible);
|
|
|
|
}
|
|
|
|
|
|
|
|
StateTy Assume(StateTy St, LValue Cond, bool Assumption, bool& isFeasible);
|
|
|
|
StateTy Assume(StateTy St, NonLValue Cond, bool Assumption, bool& isFeasible);
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-02-06 00:54:14 +00:00
|
|
|
StateTy AssumeSymNE(StateTy St, SymbolID sym, const llvm::APSInt& V,
|
|
|
|
bool& isFeasible);
|
|
|
|
|
|
|
|
StateTy AssumeSymEQ(StateTy St, SymbolID sym, const llvm::APSInt& V,
|
|
|
|
bool& isFeasible);
|
|
|
|
|
2008-02-06 04:31:33 +00:00
|
|
|
StateTy AssumeSymInt(StateTy St, bool Assumption, const SymIntConstraint& C,
|
|
|
|
bool& isFeasible);
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
void Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, StateTy St);
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-02-05 19:35:18 +00:00
|
|
|
/// Nodify - This version of Nodify is used to batch process a set of states.
|
|
|
|
/// The states are not guaranteed to be unique.
|
|
|
|
void Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, const StateTy::BufferTy& SB);
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
/// Visit - Transfer function logic for all statements. Dispatches to
|
|
|
|
/// other functions that handle specific kinds of statements.
|
|
|
|
void Visit(Stmt* S, NodeTy* Pred, NodeSet& Dst);
|
2008-01-24 02:02:54 +00:00
|
|
|
|
|
|
|
/// VisitCast - Transfer function logic for all casts (implicit and explicit).
|
|
|
|
void VisitCast(Expr* CastE, Expr* E, NodeTy* Pred, NodeSet& Dst);
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
/// VisitUnaryOperator - Transfer function logic for unary operators.
|
|
|
|
void VisitUnaryOperator(UnaryOperator* B, NodeTy* Pred, NodeSet& Dst);
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
/// VisitBinaryOperator - Transfer function logic for binary operators.
|
2008-01-24 20:55:43 +00:00
|
|
|
void VisitBinaryOperator(BinaryOperator* B, NodeTy* Pred, NodeSet& Dst);
|
|
|
|
|
|
|
|
/// VisitDeclStmt - Transfer function logic for DeclStmts.
|
2008-02-05 00:26:40 +00:00
|
|
|
void VisitDeclStmt(DeclStmt* DS, NodeTy* Pred, NodeSet& Dst);
|
|
|
|
|
|
|
|
/// VisitGuardedExpr - Transfer function logic for ?, __builtin_choose
|
|
|
|
void VisitGuardedExpr(Stmt* S, Stmt* LHS, Stmt* RHS,
|
|
|
|
NodeTy* Pred, NodeSet& Dst);
|
|
|
|
|
|
|
|
/// VisitLogicalExpr - Transfer function logic for '&&', '||'
|
|
|
|
void VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred, NodeSet& Dst);
|
2008-01-15 23:55:06 +00:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-02-04 21:59:01 +00:00
|
|
|
GRConstants::StateTy
|
|
|
|
GRConstants::SetValue(StateTy St, Stmt* S, const RValue& V) {
|
|
|
|
|
|
|
|
if (!StateCleaned) {
|
|
|
|
St = RemoveDeadBindings(CurrentStmt, St);
|
|
|
|
StateCleaned = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isBlkExpr = false;
|
|
|
|
|
|
|
|
if (S == CurrentStmt) {
|
|
|
|
isBlkExpr = getCFG().isBlkExpr(S);
|
|
|
|
|
|
|
|
if (!isBlkExpr)
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
|
|
|
|
return StateMgr.SetValue(St, S, isBlkExpr, V);
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:35:18 +00:00
|
|
|
const GRConstants::StateTy::BufferTy&
|
|
|
|
GRConstants::SetValue(StateTy St, Stmt* S, const RValue::BufferTy& RB,
|
|
|
|
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-04 21:59:01 +00:00
|
|
|
GRConstants::StateTy
|
|
|
|
GRConstants::SetValue(StateTy St, const LValue& LV, const RValue& V) {
|
|
|
|
|
|
|
|
if (!LV.isValid())
|
|
|
|
return St;
|
|
|
|
|
|
|
|
if (!StateCleaned) {
|
|
|
|
St = RemoveDeadBindings(CurrentStmt, St);
|
|
|
|
StateCleaned = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return StateMgr.SetValue(St, LV, V);
|
|
|
|
}
|
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
void GRConstants::ProcessBranch(Expr* Condition, Stmt* Term,
|
2008-01-29 23:32:35 +00:00
|
|
|
BranchNodeBuilder& builder) {
|
2008-01-30 23:03:39 +00:00
|
|
|
|
|
|
|
StateTy PrevState = builder.getState();
|
|
|
|
|
|
|
|
// Remove old bindings for subexpressions.
|
2008-02-05 18:19:15 +00:00
|
|
|
for (StateTy::vb_iterator I=PrevState.begin(), E=PrevState.end(); I!=E; ++I)
|
2008-01-30 23:03:39 +00:00
|
|
|
if (I.getKey().isSubExpr())
|
|
|
|
PrevState = StateMgr.Remove(PrevState, I.getKey());
|
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
// Remove terminator-specific bindings.
|
|
|
|
switch (Term->getStmtClass()) {
|
|
|
|
default: break;
|
|
|
|
|
|
|
|
case Stmt::BinaryOperatorClass: { // '&&', '||'
|
|
|
|
BinaryOperator* B = cast<BinaryOperator>(Term);
|
|
|
|
// FIXME: Liveness analysis should probably remove these automatically.
|
|
|
|
// Verify later when we converge to an 'optimization' stage.
|
|
|
|
PrevState = StateMgr.Remove(PrevState, B->getRHS());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Stmt::ConditionalOperatorClass: { // '?' operator
|
|
|
|
ConditionalOperator* C = cast<ConditionalOperator>(Term);
|
|
|
|
// FIXME: Liveness analysis should probably remove these automatically.
|
|
|
|
// Verify later when we converge to an 'optimization' stage.
|
|
|
|
if (Expr* L = C->getLHS()) PrevState = StateMgr.Remove(PrevState, L);
|
|
|
|
PrevState = StateMgr.Remove(PrevState, C->getRHS());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Stmt::ChooseExprClass: { // __builtin_choose_expr
|
|
|
|
ChooseExpr* C = cast<ChooseExpr>(Term);
|
|
|
|
// FIXME: Liveness analysis should probably remove these automatically.
|
|
|
|
// Verify later when we converge to an 'optimization' stage.
|
|
|
|
PrevState = StateMgr.Remove(PrevState, C->getRHS());
|
|
|
|
PrevState = StateMgr.Remove(PrevState, C->getRHS());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-30 23:03:39 +00:00
|
|
|
RValue V = GetValue(PrevState, Condition);
|
|
|
|
|
|
|
|
switch (V.getBaseKind()) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RValue::InvalidKind:
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the true branch.
|
|
|
|
bool isFeasible = true;
|
2008-02-05 00:26:40 +00:00
|
|
|
|
2008-01-30 23:03:39 +00:00
|
|
|
StateTy St = Assume(PrevState, V, true, isFeasible);
|
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
if (isFeasible)
|
|
|
|
builder.generateNode(St, true);
|
2008-01-30 23:03:39 +00:00
|
|
|
else {
|
|
|
|
builder.markInfeasible(true);
|
|
|
|
isFeasible = true;
|
|
|
|
}
|
2008-01-29 23:32:35 +00:00
|
|
|
|
2008-01-30 23:03:39 +00:00
|
|
|
// Process the false branch.
|
|
|
|
St = Assume(PrevState, V, false, isFeasible);
|
2008-01-29 23:32:35 +00:00
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
if (isFeasible)
|
|
|
|
builder.generateNode(St, false);
|
|
|
|
else
|
|
|
|
builder.markInfeasible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GRConstants::VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred,
|
|
|
|
NodeSet& Dst) {
|
|
|
|
|
|
|
|
bool hasR2;
|
|
|
|
StateTy PrevState = Pred->getState();
|
|
|
|
|
|
|
|
RValue R1 = GetValue(PrevState, B->getLHS());
|
|
|
|
RValue R2 = GetValue(PrevState, B->getRHS(), hasR2);
|
|
|
|
|
|
|
|
if (isa<InvalidValue>(R1) &&
|
|
|
|
(isa<InvalidValue>(R2) ||
|
|
|
|
isa<UninitializedValue>(R2))) {
|
|
|
|
|
|
|
|
Nodify(Dst, B, Pred, SetValue(PrevState, B, R2));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (isa<UninitializedValue>(R1)) {
|
|
|
|
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-01-29 22:56:11 +00:00
|
|
|
void GRConstants::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-01-23 19:59:44 +00:00
|
|
|
GRConstants::StateTy GRConstants::RemoveDeadBindings(Stmt* Loc, StateTy M) {
|
2008-01-18 00:41:32 +00:00
|
|
|
// Note: in the code below, we can assign a new map to M since the
|
|
|
|
// iterators are iterating over the tree of the *original* map.
|
2008-02-05 18:19:15 +00:00
|
|
|
StateTy::vb_iterator I = M.begin(), E = M.end();
|
2008-01-18 00:41:32 +00:00
|
|
|
|
2008-01-29 05:25:31 +00:00
|
|
|
|
|
|
|
for (; I!=E && !I.getKey().isSymbol(); ++I) {
|
|
|
|
// Remove old bindings for subexpressions and "dead"
|
|
|
|
// block-level expressions.
|
|
|
|
if (I.getKey().isSubExpr() ||
|
|
|
|
I.getKey().isBlkExpr() && !Liveness.isLive(Loc,cast<Stmt>(I.getKey()))){
|
2008-01-24 19:43:37 +00:00
|
|
|
M = StateMgr.Remove(M, I.getKey());
|
2008-01-29 05:25:31 +00:00
|
|
|
}
|
|
|
|
else if (I.getKey().isDecl()) { // Remove bindings for "dead" decls.
|
|
|
|
if (VarDecl* V = dyn_cast<VarDecl>(cast<ValueDecl>(I.getKey())))
|
|
|
|
if (!Liveness.isLive(Loc, V))
|
|
|
|
M = StateMgr.Remove(M, I.getKey());
|
|
|
|
}
|
2008-01-24 19:43:37 +00:00
|
|
|
}
|
2008-01-18 00:41:32 +00:00
|
|
|
|
2008-01-17 00:52:48 +00:00
|
|
|
return M;
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:35:18 +00:00
|
|
|
void GRConstants::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.
|
|
|
|
if (St == Pred->getState())
|
|
|
|
return;
|
2008-01-16 00:53:15 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
Dst.Add(Builder->generateNode(S, St, Pred));
|
2008-01-16 00:53:15 +00:00
|
|
|
}
|
2008-01-15 23:55:06 +00:00
|
|
|
|
2008-02-05 19:35:18 +00:00
|
|
|
void GRConstants::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred,
|
|
|
|
const StateTy::BufferTy& SB) {
|
|
|
|
|
|
|
|
for (StateTy::BufferTy::const_iterator I=SB.begin(), E=SB.end(); I!=E; ++I)
|
|
|
|
Nodify(Dst, S, Pred, *I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRConstants::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);
|
|
|
|
Nodify(Dst, CastE, N, SetValue(St, CastE, V.Cast(ValMgr, CastE)));
|
2008-01-24 02:02:54 +00:00
|
|
|
}
|
2008-01-24 20:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GRConstants::VisitDeclStmt(DeclStmt* DS, GRConstants::NodeTy* Pred,
|
|
|
|
GRConstants::NodeSet& Dst) {
|
|
|
|
|
|
|
|
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-01-28 22:51:57 +00:00
|
|
|
E ? GetValue(St, E) : UninitializedValue());
|
|
|
|
}
|
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
|
|
|
|
|
|
|
void GRConstants::VisitGuardedExpr(Stmt* S, Stmt* LHS, Stmt* RHS,
|
|
|
|
NodeTy* Pred, NodeSet& Dst) {
|
|
|
|
|
|
|
|
StateTy St = Pred->getState();
|
|
|
|
|
|
|
|
RValue R = GetValue(St, LHS);
|
|
|
|
if (isa<InvalidValue>(R)) R = GetValue(St, RHS);
|
|
|
|
|
|
|
|
Nodify(Dst, S, Pred, SetValue(St, S, R));
|
|
|
|
}
|
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
void GRConstants::VisitUnaryOperator(UnaryOperator* U,
|
|
|
|
GRConstants::NodeTy* Pred,
|
|
|
|
GRConstants::NodeSet& Dst) {
|
|
|
|
NodeSet S1;
|
|
|
|
Visit(U->getSubExpr(), Pred, S1);
|
|
|
|
|
|
|
|
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-05 00:43:43 +00:00
|
|
|
NonLValue Result = R1.Add(ValMgr, GetRValueConstant(1U, U));
|
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-05 00:43:43 +00:00
|
|
|
NonLValue Result = R1.Sub(ValMgr, GetRValueConstant(1U, U));
|
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-05 00:43:43 +00:00
|
|
|
NonLValue Result = R1.Add(ValMgr, GetRValueConstant(1U, U));
|
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-05 00:43:43 +00:00
|
|
|
NonLValue Result = R1.Sub(ValMgr, GetRValueConstant(1U, U));
|
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()));
|
|
|
|
Nodify(Dst, U, N1, SetValue(St, U, R1.UnaryMinus(ValMgr, U)));
|
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()));
|
|
|
|
Nodify(Dst, U, N1, SetValue(St, U, R1.BitwiseComplement(ValMgr)));
|
|
|
|
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)) {
|
|
|
|
lval::ConcreteInt V2(ValMgr.getValue(0, U->getSubExpr()->getType()));
|
|
|
|
Nodify(Dst, U, N1, SetValue(St, U,
|
|
|
|
cast<LValue>(V1).EQ(ValMgr, V2)));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nonlval::ConcreteInt V2(ValMgr.getZeroWithPtrWidth());
|
|
|
|
Nodify(Dst, U, N1, SetValue(St, U,
|
|
|
|
cast<NonLValue>(V1).EQ(ValMgr, V2)));
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
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: {
|
|
|
|
const LValue& L1 = GetLValue(St, U->getSubExpr());
|
|
|
|
Nodify(Dst, U, N1, SetValue(St, U, GetValue(St, L1)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
default: ;
|
|
|
|
assert (false && "Not implemented.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
void GRConstants::VisitBinaryOperator(BinaryOperator* B,
|
|
|
|
GRConstants::NodeTy* Pred,
|
|
|
|
GRConstants::NodeSet& Dst) {
|
|
|
|
NodeSet S1;
|
|
|
|
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) {
|
|
|
|
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
|
|
|
|
|
|
|
switch (B->getOpcode()) {
|
2008-01-29 19:43:15 +00:00
|
|
|
default:
|
|
|
|
Dst.Add(N2);
|
|
|
|
break;
|
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
// Arithmetic operators.
|
2008-01-29 19:43:15 +00:00
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
case BinaryOperator::Add: {
|
2008-01-28 22:09:13 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
2008-01-23 19:59:44 +00:00
|
|
|
|
2008-01-28 22:09:13 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, R1.Add(ValMgr, R2)));
|
2008-01-23 19:59:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case BinaryOperator::Sub: {
|
2008-01-28 22:09:13 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, R1.Sub(ValMgr, R2)));
|
2008-01-23 19:59:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-23 23:42:27 +00:00
|
|
|
case BinaryOperator::Mul: {
|
2008-01-28 22:09:13 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, R1.Mul(ValMgr, R2)));
|
2008-01-23 23:42:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-25 22:55:56 +00:00
|
|
|
case BinaryOperator::Div: {
|
2008-01-28 22:09:13 +00:00
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, R1.Div(ValMgr, R2)));
|
2008-01-25 22:55:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-28 22:26:15 +00:00
|
|
|
case BinaryOperator::Rem: {
|
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, R1.Rem(ValMgr, R2)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-29 19:43:15 +00:00
|
|
|
// Assignment operators.
|
|
|
|
|
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-01-23 23:38:00 +00:00
|
|
|
|
|
|
|
case BinaryOperator::AddAssign: {
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
|
|
|
|
NonLValue Result = R1.Add(ValMgr, cast<NonLValue>(V2));
|
2008-01-23 23:38:00 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case BinaryOperator::SubAssign: {
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
|
|
|
|
NonLValue Result = R1.Sub(ValMgr, cast<NonLValue>(V2));
|
2008-01-23 23:38:00 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
2008-01-23 23:42:27 +00:00
|
|
|
|
|
|
|
case BinaryOperator::MulAssign: {
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
|
|
|
|
NonLValue Result = R1.Mul(ValMgr, cast<NonLValue>(V2));
|
2008-01-23 23:42:27 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
2008-01-25 23:45:34 +00:00
|
|
|
|
|
|
|
case BinaryOperator::DivAssign: {
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
2008-01-28 22:09:13 +00:00
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
|
|
|
|
NonLValue Result = R1.Div(ValMgr, cast<NonLValue>(V2));
|
2008-01-25 23:45:34 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
2008-01-28 22:28:54 +00:00
|
|
|
|
|
|
|
case BinaryOperator::RemAssign: {
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
|
|
|
NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
|
|
|
|
NonLValue Result = R1.Rem(ValMgr, cast<NonLValue>(V2));
|
|
|
|
Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
|
|
|
|
break;
|
|
|
|
}
|
2008-01-29 19:43:15 +00:00
|
|
|
|
|
|
|
// Equality operators.
|
|
|
|
|
|
|
|
case BinaryOperator::EQ:
|
|
|
|
// FIXME: should we allow XX.EQ() to return a set of values,
|
|
|
|
// allowing state bifurcation? In such cases, they will also
|
|
|
|
// modify the state (meaning that a new state will be returned
|
|
|
|
// as well).
|
|
|
|
assert (B->getType() == getContext().IntTy);
|
|
|
|
|
|
|
|
if (isa<LValue>(V1)) {
|
|
|
|
const LValue& L1 = cast<LValue>(V1);
|
|
|
|
const LValue& L2 = cast<LValue>(V2);
|
2008-02-05 19:35:18 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, L1.EQ(ValMgr, L2)));
|
2008-01-29 19:43:15 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
const NonLValue& R1 = cast<NonLValue>(V1);
|
|
|
|
const NonLValue& R2 = cast<NonLValue>(V2);
|
2008-02-05 19:35:18 +00:00
|
|
|
Nodify(Dst, B, N2, SetValue(St, B, R1.EQ(ValMgr, R2)));
|
2008-01-29 19:43:15 +00:00
|
|
|
}
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-01-16 00:53:15 +00:00
|
|
|
}
|
2008-01-15 23:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
void GRConstants::Visit(Stmt* S, GRConstants::NodeTy* Pred,
|
|
|
|
GRConstants::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()) {
|
|
|
|
case Stmt::BinaryOperatorClass:
|
2008-02-05 00:26:40 +00:00
|
|
|
|
|
|
|
if (cast<BinaryOperator>(S)->isLogicalOp()) {
|
|
|
|
VisitLogicalExpr(cast<BinaryOperator>(S), Pred, Dst);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fall-through.
|
|
|
|
|
2008-01-23 23:38:00 +00:00
|
|
|
case Stmt::CompoundAssignOperatorClass:
|
2008-01-23 19:59:44 +00:00
|
|
|
VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
|
|
|
|
break;
|
|
|
|
|
2008-01-24 02:28:56 +00:00
|
|
|
case Stmt::UnaryOperatorClass:
|
|
|
|
VisitUnaryOperator(cast<UnaryOperator>(S), Pred, Dst);
|
|
|
|
break;
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
case Stmt::ParenExprClass:
|
|
|
|
Visit(cast<ParenExpr>(S)->getSubExpr(), 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Stmt::CastExprClass: {
|
|
|
|
CastExpr* C = cast<CastExpr>(S);
|
|
|
|
VisitCast(C, C->getSubExpr(), Pred, Dst);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
case Stmt::ConditionalOperatorClass: { // '?' operator
|
|
|
|
ConditionalOperator* C = cast<ConditionalOperator>(S);
|
|
|
|
VisitGuardedExpr(S, C->getLHS(), C->getRHS(), Pred, Dst);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Stmt::ChooseExprClass: { // __builtin_choose_expr
|
|
|
|
ChooseExpr* C = cast<ChooseExpr>(S);
|
|
|
|
VisitGuardedExpr(S, C->getLHS(), C->getRHS(), Pred, Dst);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-24 20:55:43 +00:00
|
|
|
case Stmt::DeclStmtClass:
|
|
|
|
VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst);
|
|
|
|
break;
|
|
|
|
|
2008-01-23 19:59:44 +00:00
|
|
|
default:
|
|
|
|
Dst.Add(Pred); // No-op. Simply propagate the current state unchanged.
|
|
|
|
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-06 00:54:14 +00:00
|
|
|
GRConstants::StateTy GRConstants::Assume(StateTy St, LValue Cond,
|
|
|
|
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-06 00:54:14 +00:00
|
|
|
GRConstants::StateTy GRConstants::Assume(StateTy St, NonLValue Cond,
|
|
|
|
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: {
|
|
|
|
lval::SymbolVal& SV = cast<lval::SymbolVal>(Cond);
|
|
|
|
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-06 00:54:14 +00:00
|
|
|
GRConstants::StateTy
|
|
|
|
GRConstants::AssumeSymNE(StateTy St, SymbolID sym,
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
GRConstants::StateTy
|
|
|
|
GRConstants::AssumeSymEQ(StateTy St, SymbolID sym,
|
|
|
|
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-06 04:31:33 +00:00
|
|
|
GRConstants::StateTy
|
|
|
|
GRConstants::AssumeSymInt(StateTy St, bool Assumption,
|
|
|
|
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
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Driver.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-01-16 21:46:15 +00:00
|
|
|
#ifndef NDEBUG
|
2008-01-30 23:24:39 +00:00
|
|
|
static GRConstants* GraphPrintCheckerState;
|
|
|
|
|
2008-01-16 21:46:15 +00:00
|
|
|
namespace llvm {
|
|
|
|
template<>
|
|
|
|
struct VISIBILITY_HIDDEN DOTGraphTraits<GRConstants::NodeTy*> :
|
|
|
|
public DefaultDOTGraphTraits {
|
2008-01-24 22:27:20 +00:00
|
|
|
|
2008-02-05 07:17:49 +00:00
|
|
|
static void PrintKindLabel(std::ostream& Out, VarBindKey::Kind kind) {
|
2008-01-23 22:30:44 +00:00
|
|
|
switch (kind) {
|
2008-02-05 07:17:49 +00:00
|
|
|
case VarBindKey::IsSubExpr: Out << "Sub-Expressions:\\l"; break;
|
|
|
|
case VarBindKey::IsDecl: Out << "Variables:\\l"; break;
|
|
|
|
case VarBindKey::IsBlkExpr: Out << "Block-level Expressions:\\l"; break;
|
|
|
|
default: assert (false && "Unknown VarBindKey type.");
|
2008-01-23 22:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-24 22:27:20 +00:00
|
|
|
static void PrintKind(std::ostream& Out, GRConstants::StateTy M,
|
2008-02-05 07:17:49 +00:00
|
|
|
VarBindKey::Kind kind, bool isFirstGroup = false) {
|
2008-01-24 22:27:20 +00:00
|
|
|
bool isFirst = true;
|
|
|
|
|
2008-02-05 18:19:15 +00:00
|
|
|
for (GRConstants::StateTy::vb_iterator I=M.begin(), E=M.end();I!=E;++I) {
|
2008-01-24 22:27:20 +00:00
|
|
|
if (I.getKey().getKind() != kind)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (isFirst) {
|
|
|
|
if (!isFirstGroup) Out << "\\l\\l";
|
|
|
|
PrintKindLabel(Out, kind);
|
|
|
|
isFirst = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Out << "\\l";
|
|
|
|
|
|
|
|
Out << ' ';
|
|
|
|
|
|
|
|
if (ValueDecl* V = dyn_cast<ValueDecl>(I.getKey()))
|
|
|
|
Out << V->getName();
|
|
|
|
else {
|
|
|
|
Stmt* E = cast<Stmt>(I.getKey());
|
|
|
|
Out << " (" << (void*) E << ") ";
|
|
|
|
E->printPretty(Out);
|
|
|
|
}
|
|
|
|
|
|
|
|
Out << " : ";
|
|
|
|
I.getData().print(Out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-06 03:56:15 +00:00
|
|
|
static void PrintEQ(std::ostream& Out, GRConstants::StateTy St) {
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void PrintNE(std::ostream& Out, GRConstants::StateTy St) {
|
|
|
|
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-01-16 21:46:15 +00:00
|
|
|
static std::string getNodeLabel(const GRConstants::NodeTy* N, void*) {
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
|
|
|
|
if (isa<SwitchStmt>(T)) {
|
|
|
|
// 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-01-16 21:46:15 +00:00
|
|
|
|
2008-02-05 07:17:49 +00:00
|
|
|
PrintKind(Out, N->getState(), VarBindKey::IsDecl, true);
|
|
|
|
PrintKind(Out, N->getState(), VarBindKey::IsBlkExpr);
|
|
|
|
PrintKind(Out, N->getState(), VarBindKey::IsSubExpr);
|
2008-02-06 03:56:15 +00:00
|
|
|
|
|
|
|
PrintEQ(Out, N->getState());
|
|
|
|
PrintNE(Out, N->getState());
|
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-01-16 18:18:48 +00:00
|
|
|
namespace clang {
|
2008-01-29 00:33:40 +00:00
|
|
|
void RunGRConstants(CFG& cfg, FunctionDecl& FD, ASTContext& Ctx) {
|
|
|
|
GREngine<GRConstants> Engine(cfg, FD, Ctx);
|
2008-01-16 18:18:48 +00:00
|
|
|
Engine.ExecuteWorkList();
|
2008-01-16 21:46:15 +00:00
|
|
|
#ifndef NDEBUG
|
2008-01-30 23:24:39 +00:00
|
|
|
GraphPrintCheckerState = &Engine.getCheckerState();
|
2008-01-16 21:46:15 +00:00
|
|
|
llvm::ViewGraph(*Engine.getGraph().roots_begin(),"GRConstants");
|
2008-01-30 23:24:39 +00:00
|
|
|
GraphPrintCheckerState = NULL;
|
2008-01-16 21:46:15 +00:00
|
|
|
#endif
|
2008-01-16 18:18:48 +00:00
|
|
|
}
|
2008-01-23 19:59:44 +00:00
|
|
|
} // end clang namespace
|