blob: 3716ed9691096891bedfbcfff4cbba4a9cf41731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//== 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 files defines GRTransferFuncs, which provides a base-class that
// defines an interface for transfer functions used by GRExprEngine.
//
//===----------------------------------------------------------------------===//
#include "clang/Analysis/PathSensitive/GRTransferFuncs.h"
using namespace clang;
//===----------------------------------------------------------------------===//
// Transfer function for Casts.
//===----------------------------------------------------------------------===//
RValue GRTransferFuncs::EvalCast(ValueManager& ValMgr, RValue X,
Expr* CastExpr) {
switch (X.getBaseKind()) {
default:
assert(false && "Invalid RValue."); break;
case RValue::LValueKind:
return EvalCast(ValMgr, cast<LValue>(X), CastExpr);
case RValue::NonLValueKind:
return EvalCast(ValMgr, cast<NonLValue>(X), CastExpr);
case RValue::UninitializedKind:
case RValue::UnknownKind: break;
}
return X;
}
|