1 //== SymbolManager.h - Management of Symbolic Values ------------*- C++ -*--==//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines SymbolManager, a class that manages symbolic values
11 // created for use by ExprEngine and related classes.
13 //===----------------------------------------------------------------------===//
15 #include "clang/StaticAnalyzer/PathSensitive/SymbolManager.h"
16 #include "clang/Analysis/Analyses/LiveVariables.h"
17 #include "clang/StaticAnalyzer/PathSensitive/MemRegion.h"
18 #include "llvm/Support/raw_ostream.h"
20 using namespace clang
;
23 void SymExpr::dump() const {
24 dumpToStream(llvm::errs());
27 static void print(llvm::raw_ostream
& os
, BinaryOperator::Opcode Op
) {
30 assert(false && "operator printing not implemented");
32 case BO_Mul
: os
<< '*' ; break;
33 case BO_Div
: os
<< '/' ; break;
34 case BO_Rem
: os
<< '%' ; break;
35 case BO_Add
: os
<< '+' ; break;
36 case BO_Sub
: os
<< '-' ; break;
37 case BO_Shl
: os
<< "<<" ; break;
38 case BO_Shr
: os
<< ">>" ; break;
39 case BO_LT
: os
<< "<" ; break;
40 case BO_GT
: os
<< '>' ; break;
41 case BO_LE
: os
<< "<=" ; break;
42 case BO_GE
: os
<< ">=" ; break;
43 case BO_EQ
: os
<< "==" ; break;
44 case BO_NE
: os
<< "!=" ; break;
45 case BO_And
: os
<< '&' ; break;
46 case BO_Xor
: os
<< '^' ; break;
47 case BO_Or
: os
<< '|' ; break;
51 void SymIntExpr::dumpToStream(llvm::raw_ostream
& os
) const {
53 getLHS()->dumpToStream(os
);
55 print(os
, getOpcode());
56 os
<< ' ' << getRHS().getZExtValue();
57 if (getRHS().isUnsigned()) os
<< 'U';
60 void SymSymExpr::dumpToStream(llvm::raw_ostream
& os
) const {
62 getLHS()->dumpToStream(os
);
65 getRHS()->dumpToStream(os
);
69 void SymbolConjured::dumpToStream(llvm::raw_ostream
& os
) const {
70 os
<< "conj_$" << getSymbolID() << '{' << T
.getAsString() << '}';
73 void SymbolDerived::dumpToStream(llvm::raw_ostream
& os
) const {
74 os
<< "derived_$" << getSymbolID() << '{'
75 << getParentSymbol() << ',' << getRegion() << '}';
78 void SymbolExtent::dumpToStream(llvm::raw_ostream
& os
) const {
79 os
<< "extent_$" << getSymbolID() << '{' << getRegion() << '}';
82 void SymbolMetadata::dumpToStream(llvm::raw_ostream
& os
) const {
83 os
<< "meta_$" << getSymbolID() << '{'
84 << getRegion() << ',' << T
.getAsString() << '}';
87 void SymbolRegionValue::dumpToStream(llvm::raw_ostream
& os
) const {
88 os
<< "reg_$" << getSymbolID() << "<" << R
<< ">";
91 const SymbolRegionValue
*
92 SymbolManager::getRegionValueSymbol(const TypedRegion
* R
) {
93 llvm::FoldingSetNodeID profile
;
94 SymbolRegionValue::Profile(profile
, R
);
96 SymExpr
*SD
= DataSet
.FindNodeOrInsertPos(profile
, InsertPos
);
98 SD
= (SymExpr
*) BPAlloc
.Allocate
<SymbolRegionValue
>();
99 new (SD
) SymbolRegionValue(SymbolCounter
, R
);
100 DataSet
.InsertNode(SD
, InsertPos
);
104 return cast
<SymbolRegionValue
>(SD
);
107 const SymbolConjured
*
108 SymbolManager::getConjuredSymbol(const Stmt
* E
, QualType T
, unsigned Count
,
109 const void* SymbolTag
) {
111 llvm::FoldingSetNodeID profile
;
112 SymbolConjured::Profile(profile
, E
, T
, Count
, SymbolTag
);
114 SymExpr
*SD
= DataSet
.FindNodeOrInsertPos(profile
, InsertPos
);
116 SD
= (SymExpr
*) BPAlloc
.Allocate
<SymbolConjured
>();
117 new (SD
) SymbolConjured(SymbolCounter
, E
, T
, Count
, SymbolTag
);
118 DataSet
.InsertNode(SD
, InsertPos
);
122 return cast
<SymbolConjured
>(SD
);
126 SymbolManager::getDerivedSymbol(SymbolRef parentSymbol
,
127 const TypedRegion
*R
) {
129 llvm::FoldingSetNodeID profile
;
130 SymbolDerived::Profile(profile
, parentSymbol
, R
);
132 SymExpr
*SD
= DataSet
.FindNodeOrInsertPos(profile
, InsertPos
);
134 SD
= (SymExpr
*) BPAlloc
.Allocate
<SymbolDerived
>();
135 new (SD
) SymbolDerived(SymbolCounter
, parentSymbol
, R
);
136 DataSet
.InsertNode(SD
, InsertPos
);
140 return cast
<SymbolDerived
>(SD
);
144 SymbolManager::getExtentSymbol(const SubRegion
*R
) {
145 llvm::FoldingSetNodeID profile
;
146 SymbolExtent::Profile(profile
, R
);
148 SymExpr
*SD
= DataSet
.FindNodeOrInsertPos(profile
, InsertPos
);
150 SD
= (SymExpr
*) BPAlloc
.Allocate
<SymbolExtent
>();
151 new (SD
) SymbolExtent(SymbolCounter
, R
);
152 DataSet
.InsertNode(SD
, InsertPos
);
156 return cast
<SymbolExtent
>(SD
);
159 const SymbolMetadata
*
160 SymbolManager::getMetadataSymbol(const MemRegion
* R
, const Stmt
* S
, QualType T
,
161 unsigned Count
, const void* SymbolTag
) {
163 llvm::FoldingSetNodeID profile
;
164 SymbolMetadata::Profile(profile
, R
, S
, T
, Count
, SymbolTag
);
166 SymExpr
*SD
= DataSet
.FindNodeOrInsertPos(profile
, InsertPos
);
168 SD
= (SymExpr
*) BPAlloc
.Allocate
<SymbolMetadata
>();
169 new (SD
) SymbolMetadata(SymbolCounter
, R
, S
, T
, Count
, SymbolTag
);
170 DataSet
.InsertNode(SD
, InsertPos
);
174 return cast
<SymbolMetadata
>(SD
);
177 const SymIntExpr
*SymbolManager::getSymIntExpr(const SymExpr
*lhs
,
178 BinaryOperator::Opcode op
,
179 const llvm::APSInt
& v
,
181 llvm::FoldingSetNodeID ID
;
182 SymIntExpr::Profile(ID
, lhs
, op
, v
, t
);
184 SymExpr
*data
= DataSet
.FindNodeOrInsertPos(ID
, InsertPos
);
187 data
= (SymIntExpr
*) BPAlloc
.Allocate
<SymIntExpr
>();
188 new (data
) SymIntExpr(lhs
, op
, v
, t
);
189 DataSet
.InsertNode(data
, InsertPos
);
192 return cast
<SymIntExpr
>(data
);
195 const SymSymExpr
*SymbolManager::getSymSymExpr(const SymExpr
*lhs
,
196 BinaryOperator::Opcode op
,
199 llvm::FoldingSetNodeID ID
;
200 SymSymExpr::Profile(ID
, lhs
, op
, rhs
, t
);
202 SymExpr
*data
= DataSet
.FindNodeOrInsertPos(ID
, InsertPos
);
205 data
= (SymSymExpr
*) BPAlloc
.Allocate
<SymSymExpr
>();
206 new (data
) SymSymExpr(lhs
, op
, rhs
, t
);
207 DataSet
.InsertNode(data
, InsertPos
);
210 return cast
<SymSymExpr
>(data
);
213 QualType
SymbolConjured::getType(ASTContext
&) const {
217 QualType
SymbolDerived::getType(ASTContext
& Ctx
) const {
218 return R
->getValueType();
221 QualType
SymbolExtent::getType(ASTContext
& Ctx
) const {
222 return Ctx
.getSizeType();
225 QualType
SymbolMetadata::getType(ASTContext
&) const {
229 QualType
SymbolRegionValue::getType(ASTContext
& C
) const {
230 return R
->getValueType();
233 SymbolManager::~SymbolManager() {}
235 bool SymbolManager::canSymbolicate(QualType T
) {
236 if (Loc::IsLocType(T
))
239 if (T
->isIntegerType())
240 return T
->isScalarType();
242 if (T
->isRecordType())
248 void SymbolReaper::markLive(SymbolRef sym
) {
249 TheLiving
.insert(sym
);
253 void SymbolReaper::markInUse(SymbolRef sym
) {
254 if (isa
<SymbolMetadata
>(sym
))
255 MetadataInUse
.insert(sym
);
258 bool SymbolReaper::maybeDead(SymbolRef sym
) {
266 static bool IsLiveRegion(SymbolReaper
&Reaper
, const MemRegion
*MR
) {
267 MR
= MR
->getBaseRegion();
269 if (const SymbolicRegion
*SR
= dyn_cast
<SymbolicRegion
>(MR
))
270 return Reaper
.isLive(SR
->getSymbol());
272 if (const VarRegion
*VR
= dyn_cast
<VarRegion
>(MR
))
273 return Reaper
.isLive(VR
);
275 // FIXME: This is a gross over-approximation. What we really need is a way to
276 // tell if anything still refers to this region. Unlike SymbolicRegions,
277 // AllocaRegions don't have associated symbols, though, so we don't actually
278 // have a way to track their liveness.
279 if (isa
<AllocaRegion
>(MR
))
282 if (isa
<CXXThisRegion
>(MR
))
285 if (isa
<MemSpaceRegion
>(MR
))
291 bool SymbolReaper::isLive(SymbolRef sym
) {
292 if (TheLiving
.count(sym
))
295 if (const SymbolDerived
*derived
= dyn_cast
<SymbolDerived
>(sym
)) {
296 if (isLive(derived
->getParentSymbol())) {
303 if (const SymbolExtent
*extent
= dyn_cast
<SymbolExtent
>(sym
)) {
304 if (IsLiveRegion(*this, extent
->getRegion())) {
311 if (const SymbolMetadata
*metadata
= dyn_cast
<SymbolMetadata
>(sym
)) {
312 if (MetadataInUse
.count(sym
)) {
313 if (IsLiveRegion(*this, metadata
->getRegion())) {
315 MetadataInUse
.erase(sym
);
322 // Interogate the symbol. It may derive from an input value to
323 // the analyzed function/method.
324 return isa
<SymbolRegionValue
>(sym
);
327 bool SymbolReaper::isLive(const Stmt
* ExprVal
) const {
328 return LCtx
->getAnalysisContext()->getRelaxedLiveVariables()->
329 isLive(Loc
, ExprVal
);
332 bool SymbolReaper::isLive(const VarRegion
*VR
) const {
333 const StackFrameContext
*VarContext
= VR
->getStackFrame();
334 const StackFrameContext
*CurrentContext
= LCtx
->getCurrentStackFrame();
336 if (VarContext
== CurrentContext
)
337 return LCtx
->getAnalysisContext()->getRelaxedLiveVariables()->
338 isLive(Loc
, VR
->getDecl());
340 return VarContext
->isParentOf(CurrentContext
);
343 SymbolVisitor::~SymbolVisitor() {}