forked from OSchip/llvm-project
49 lines
1.9 KiB
C++
49 lines
1.9 KiB
C++
//== GRTransferFuncs.cpp - Path-Sens. Transfer Functions Interface -*- C++ -*--=
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines GRTransferFuncs, which provides a base-class that
|
|
// defines an interface for transfer functions used by GRExprEngine.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Analysis/PathSensitive/GRTransferFuncs.h"
|
|
#include "clang/Analysis/PathSensitive/GRExprEngine.h"
|
|
|
|
using namespace clang;
|
|
|
|
void GRTransferFuncs::RegisterChecks(GRExprEngine& Eng) {}
|
|
|
|
void GRTransferFuncs::EvalStore(ExplodedNodeSet<GRState>& Dst,
|
|
GRExprEngine& Eng,
|
|
GRStmtNodeBuilder<GRState>& Builder,
|
|
Expr* E, ExplodedNode<GRState>* Pred,
|
|
const GRState* St, RVal TargetLV, RVal Val) {
|
|
|
|
// This code basically matches the "safety-net" logic of GRExprEngine:
|
|
// bind Val to TargetLV, and create a new node. We replicate it here
|
|
// because subclasses of GRTransferFuncs may wish to call it.
|
|
|
|
assert (!TargetLV.isUndef());
|
|
|
|
if (TargetLV.isUnknown())
|
|
Builder.MakeNode(Dst, E, Pred, St);
|
|
else
|
|
Builder.MakeNode(Dst, E, Pred,
|
|
Eng.getStateManager().SetRVal(St, cast<LVal>(TargetLV), Val));
|
|
}
|
|
|
|
void GRTransferFuncs::EvalBinOpNN(GRStateSet& OStates,
|
|
GRStateManager& StateMgr,
|
|
const GRState *St, Expr* Ex,
|
|
BinaryOperator::Opcode Op,
|
|
NonLVal L, NonLVal R) {
|
|
|
|
OStates.Add(StateMgr.SetRVal(St, Ex, DetermEvalBinOpNN(StateMgr, Op, L, R)));
|
|
}
|