blob: ee6b0202406b3c5715d5381443dde82088c4b007 [file] [log] [blame]
Ted Kremenek77349cb2008-02-14 22:13:12 +00001//=-- GRExprEngine.cpp - Path-Sensitive Expression-Level Dataflow ---*- C++ -*-=
Ted Kremenek64924852008-01-31 02:35:41 +00002//
Ted Kremenek4af84312008-01-31 06:49:09 +00003// The LLVM Compiler Infrastructure
Ted Kremenekd27f8162008-01-15 23:55:06 +00004//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Ted Kremenek77349cb2008-02-14 22:13:12 +000010// This file defines a meta-engine for path-sensitive dataflow analysis that
11// is built on GREngine, but provides the boilerplate to execute transfer
12// functions and build the ExplodedGraph at the expression level.
Ted Kremenekd27f8162008-01-15 23:55:06 +000013//
14//===----------------------------------------------------------------------===//
15
Ted Kremenek77349cb2008-02-14 22:13:12 +000016#include "clang/Analysis/PathSensitive/GRExprEngine.h"
Ted Kremenek50a6d0c2008-04-09 21:41:14 +000017#include "clang/Analysis/PathSensitive/BugReporter.h"
Ted Kremeneke97ca062008-03-07 20:57:30 +000018#include "clang/Basic/SourceManager.h"
Ted Kremeneke01c9872008-02-14 22:36:46 +000019#include "llvm/Support/Streams.h"
Ted Kremenekbdb435d2008-07-11 18:37:32 +000020#include "llvm/ADT/ImmutableList.h"
21#include "llvm/Support/Compiler.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000022#include "llvm/Support/raw_ostream.h"
Ted Kremenek4323a572008-07-10 22:03:41 +000023
Ted Kremenek0f5f0592008-02-27 06:07:00 +000024#ifndef NDEBUG
25#include "llvm/Support/GraphWriter.h"
26#include <sstream>
27#endif
28
Ted Kremenekb387a3f2008-02-14 22:16:04 +000029using namespace clang;
30using llvm::dyn_cast;
31using llvm::cast;
32using llvm::APSInt;
Ted Kremenekab2b8c52008-01-23 19:59:44 +000033
Ted Kremeneke695e1c2008-04-15 23:06:53 +000034//===----------------------------------------------------------------------===//
35// Engine construction and deletion.
36//===----------------------------------------------------------------------===//
37
Ted Kremenekbdb435d2008-07-11 18:37:32 +000038namespace {
39
40class VISIBILITY_HIDDEN MappedBatchAuditor : public GRSimpleAPICheck {
41 typedef llvm::ImmutableList<GRSimpleAPICheck*> Checks;
42 typedef llvm::DenseMap<void*,Checks> MapTy;
43
44 MapTy M;
45 Checks::Factory F;
46
47public:
48 MappedBatchAuditor(llvm::BumpPtrAllocator& Alloc) : F(Alloc) {}
49
50 virtual ~MappedBatchAuditor() {
51 llvm::DenseSet<GRSimpleAPICheck*> AlreadyVisited;
52
53 for (MapTy::iterator MI = M.begin(), ME = M.end(); MI != ME; ++MI)
54 for (Checks::iterator I=MI->second.begin(), E=MI->second.end(); I!=E;++I){
55
56 GRSimpleAPICheck* check = *I;
57
58 if (AlreadyVisited.count(check))
59 continue;
60
61 AlreadyVisited.insert(check);
62 delete check;
63 }
64 }
65
66 void AddCheck(GRSimpleAPICheck* A, Stmt::StmtClass C) {
67 assert (A && "Check cannot be null.");
68 void* key = reinterpret_cast<void*>((uintptr_t) C);
69 MapTy::iterator I = M.find(key);
70 M[key] = F.Concat(A, I == M.end() ? F.GetEmptyList() : I->second);
71 }
72
73 virtual void EmitWarnings(BugReporter& BR) {
74 llvm::DenseSet<GRSimpleAPICheck*> AlreadyVisited;
75
76 for (MapTy::iterator MI = M.begin(), ME = M.end(); MI != ME; ++MI)
77 for (Checks::iterator I=MI->second.begin(), E=MI->second.end(); I!=E;++I){
78
79 GRSimpleAPICheck* check = *I;
80
81 if (AlreadyVisited.count(check))
82 continue;
83
84 check->EmitWarnings(BR);
85 }
86 }
87
Ted Kremenek4adc81e2008-08-13 04:27:00 +000088 virtual bool Audit(NodeTy* N, GRStateManager& VMgr) {
Ted Kremenekbdb435d2008-07-11 18:37:32 +000089 Stmt* S = cast<PostStmt>(N->getLocation()).getStmt();
90 void* key = reinterpret_cast<void*>((uintptr_t) S->getStmtClass());
91 MapTy::iterator MI = M.find(key);
92
93 if (MI == M.end())
94 return false;
95
96 bool isSink = false;
97
98 for (Checks::iterator I=MI->second.begin(), E=MI->second.end(); I!=E; ++I)
Ted Kremenek584def72008-07-22 00:46:16 +000099 isSink |= (*I)->Audit(N, VMgr);
Ted Kremenekbdb435d2008-07-11 18:37:32 +0000100
101 return isSink;
102 }
103};
104
105} // end anonymous namespace
106
107//===----------------------------------------------------------------------===//
108// Engine construction and deletion.
109//===----------------------------------------------------------------------===//
110
Ted Kremeneke448ab42008-05-01 18:33:28 +0000111static inline Selector GetNullarySelector(const char* name, ASTContext& Ctx) {
112 IdentifierInfo* II = &Ctx.Idents.get(name);
113 return Ctx.Selectors.getSelector(0, &II);
114}
115
Ted Kremenekdaa497e2008-03-09 18:05:48 +0000116
Ted Kremenek8b233612008-07-02 20:13:38 +0000117GRExprEngine::GRExprEngine(CFG& cfg, Decl& CD, ASTContext& Ctx,
Ted Kremenek95c7b002008-10-24 01:04:59 +0000118 LiveVariables& L,
Zhongxing Xu22438a82008-11-27 01:55:08 +0000119 StoreManagerCreator SMC,
120 ConstraintManagerCreator CMC)
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000121 : CoreEngine(cfg, CD, Ctx, *this),
122 G(CoreEngine.getGraph()),
Ted Kremenek8b233612008-07-02 20:13:38 +0000123 Liveness(L),
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000124 Builder(NULL),
Zhongxing Xu22438a82008-11-27 01:55:08 +0000125 StateMgr(G.getContext(), SMC, CMC, G.getAllocator(), cfg, CD, L),
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000126 SymMgr(StateMgr.getSymbolManager()),
Ted Kremeneke448ab42008-05-01 18:33:28 +0000127 CurrentStmt(NULL),
128 NSExceptionII(NULL), NSExceptionInstanceRaiseSelectors(NULL),
Ted Kremenek8b233612008-07-02 20:13:38 +0000129 RaiseSel(GetNullarySelector("raise", G.getContext())) {}
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000130
Ted Kremenek1a654b62008-06-20 21:45:25 +0000131GRExprEngine::~GRExprEngine() {
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000132 for (BugTypeSet::iterator I = BugTypes.begin(), E = BugTypes.end(); I!=E; ++I)
133 delete *I;
Ted Kremenekbdb435d2008-07-11 18:37:32 +0000134
Ted Kremeneke448ab42008-05-01 18:33:28 +0000135
136 delete [] NSExceptionInstanceRaiseSelectors;
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000137}
138
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000139//===----------------------------------------------------------------------===//
140// Utility methods.
141//===----------------------------------------------------------------------===//
142
143// SaveAndRestore - A utility class that uses RIIA to save and restore
144// the value of a variable.
145template<typename T>
146struct VISIBILITY_HIDDEN SaveAndRestore {
147 SaveAndRestore(T& x) : X(x), old_value(x) {}
148 ~SaveAndRestore() { X = old_value; }
149 T get() { return old_value; }
150
151 T& X;
152 T old_value;
153};
154
Ted Kremenek186350f2008-04-23 20:12:28 +0000155// SaveOr - Similar to SaveAndRestore. Operates only on bools; the old
156// value of a variable is saved, and during the dstor the old value is
157// or'ed with the new value.
158struct VISIBILITY_HIDDEN SaveOr {
159 SaveOr(bool& x) : X(x), old_value(x) { x = false; }
160 ~SaveOr() { X |= old_value; }
161
162 bool& X;
163 bool old_value;
164};
165
166
Ted Kremenekc0959972008-07-02 21:24:01 +0000167void GRExprEngine::EmitWarnings(BugReporterData& BRData) {
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000168 for (bug_type_iterator I = bug_types_begin(), E = bug_types_end(); I!=E; ++I){
Ted Kremenekc0959972008-07-02 21:24:01 +0000169 GRBugReporter BR(BRData, *this);
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000170 (*I)->EmitWarnings(BR);
171 }
172
Ted Kremenekbdb435d2008-07-11 18:37:32 +0000173 if (BatchAuditor) {
Ted Kremenekc0959972008-07-02 21:24:01 +0000174 GRBugReporter BR(BRData, *this);
Ted Kremenekbdb435d2008-07-11 18:37:32 +0000175 BatchAuditor->EmitWarnings(BR);
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000176 }
177}
178
179void GRExprEngine::setTransferFunctions(GRTransferFuncs* tf) {
Ted Kremenek729a9a22008-07-17 23:15:45 +0000180 StateMgr.TF = tf;
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000181 tf->RegisterChecks(*this);
182 tf->RegisterPrinters(getStateManager().Printers);
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000183}
184
Ted Kremenekbdb435d2008-07-11 18:37:32 +0000185void GRExprEngine::AddCheck(GRSimpleAPICheck* A, Stmt::StmtClass C) {
186 if (!BatchAuditor)
187 BatchAuditor.reset(new MappedBatchAuditor(getGraph().getAllocator()));
188
189 ((MappedBatchAuditor*) BatchAuditor.get())->AddCheck(A, C);
Ted Kremenek50a6d0c2008-04-09 21:41:14 +0000190}
191
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000192const GRState* GRExprEngine::getInitialState() {
Ted Kremenekcaa37242008-08-19 16:51:45 +0000193 return StateMgr.getInitialState();
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000194}
195
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000196//===----------------------------------------------------------------------===//
197// Top-level transfer function logic (Dispatcher).
198//===----------------------------------------------------------------------===//
199
200void GRExprEngine::ProcessStmt(Stmt* S, StmtNodeBuilder& builder) {
201
202 Builder = &builder;
Ted Kremenek846d4e92008-04-24 23:35:58 +0000203 EntryNode = builder.getLastNode();
Ted Kremenekdf7533b2008-07-17 21:27:31 +0000204
205 // FIXME: Consolidate.
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000206 CurrentStmt = S;
Ted Kremenekdf7533b2008-07-17 21:27:31 +0000207 StateMgr.CurrentStmt = S;
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000208
209 // Set up our simple checks.
Ted Kremenekbdb435d2008-07-11 18:37:32 +0000210 if (BatchAuditor)
211 Builder->setAuditor(BatchAuditor.get());
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000212
Ted Kremenekbdb435d2008-07-11 18:37:32 +0000213 // Create the cleaned state.
Ted Kremenek846d4e92008-04-24 23:35:58 +0000214 CleanedState = StateMgr.RemoveDeadBindings(EntryNode->getState(), CurrentStmt,
215 Liveness, DeadSymbols);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000216
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000217 // Process any special transfer function for dead symbols.
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000218 NodeSet Tmp;
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000219
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000220 if (DeadSymbols.empty())
Ted Kremenek846d4e92008-04-24 23:35:58 +0000221 Tmp.Add(EntryNode);
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000222 else {
223 SaveAndRestore<bool> OldSink(Builder->BuildSinks);
Ted Kremenek846d4e92008-04-24 23:35:58 +0000224 SaveOr OldHasGen(Builder->HasGeneratedNode);
225
Ted Kremenek331b0ac2008-06-18 05:34:07 +0000226 SaveAndRestore<bool> OldPurgeDeadSymbols(Builder->PurgingDeadSymbols);
227 Builder->PurgingDeadSymbols = true;
228
Ted Kremenek729a9a22008-07-17 23:15:45 +0000229 getTF().EvalDeadSymbols(Tmp, *this, *Builder, EntryNode, S,
Ted Kremenek910e9992008-04-25 01:25:15 +0000230 CleanedState, DeadSymbols);
Ted Kremenek846d4e92008-04-24 23:35:58 +0000231
232 if (!Builder->BuildSinks && !Builder->HasGeneratedNode)
233 Tmp.Add(EntryNode);
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000234 }
Ted Kremenek846d4e92008-04-24 23:35:58 +0000235
236 bool HasAutoGenerated = false;
237
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000238 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
Ted Kremenek846d4e92008-04-24 23:35:58 +0000239
240 NodeSet Dst;
241
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000242 // Set the cleaned state.
Ted Kremenek846d4e92008-04-24 23:35:58 +0000243 Builder->SetCleanedState(*I == EntryNode ? CleanedState : GetState(*I));
244
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000245 // Visit the statement.
Ted Kremenek846d4e92008-04-24 23:35:58 +0000246 Visit(S, *I, Dst);
247
248 // Do we need to auto-generate a node? We only need to do this to generate
249 // a node with a "cleaned" state; GRCoreEngine will actually handle
250 // auto-transitions for other cases.
251 if (Dst.size() == 1 && *Dst.begin() == EntryNode
252 && !Builder->HasGeneratedNode && !HasAutoGenerated) {
253 HasAutoGenerated = true;
254 builder.generateNode(S, GetState(EntryNode), *I);
255 }
Ted Kremenek77d7ef82008-04-24 18:31:42 +0000256 }
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000257
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000258 // NULL out these variables to cleanup.
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000259 CleanedState = NULL;
Ted Kremenek846d4e92008-04-24 23:35:58 +0000260 EntryNode = NULL;
Ted Kremenekdf7533b2008-07-17 21:27:31 +0000261
262 // FIXME: Consolidate.
263 StateMgr.CurrentStmt = 0;
264 CurrentStmt = 0;
265
Ted Kremenek846d4e92008-04-24 23:35:58 +0000266 Builder = NULL;
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000267}
268
269void GRExprEngine::Visit(Stmt* S, NodeTy* Pred, NodeSet& Dst) {
270
271 // FIXME: add metadata to the CFG so that we can disable
272 // this check when we KNOW that there is no block-level subexpression.
273 // The motivation is that this check requires a hashtable lookup.
274
275 if (S != CurrentStmt && getCFG().isBlkExpr(S)) {
276 Dst.Add(Pred);
277 return;
278 }
279
280 switch (S->getStmtClass()) {
281
282 default:
283 // Cases we intentionally have "default" handle:
284 // AddrLabelExpr, IntegerLiteral, CharacterLiteral
285
286 Dst.Add(Pred); // No-op. Simply propagate the current state unchanged.
287 break;
Ted Kremenek540cbe22008-04-22 04:56:29 +0000288
289 case Stmt::ArraySubscriptExprClass:
290 VisitArraySubscriptExpr(cast<ArraySubscriptExpr>(S), Pred, Dst, false);
291 break;
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000292
293 case Stmt::AsmStmtClass:
294 VisitAsmStmt(cast<AsmStmt>(S), Pred, Dst);
295 break;
296
297 case Stmt::BinaryOperatorClass: {
298 BinaryOperator* B = cast<BinaryOperator>(S);
299
300 if (B->isLogicalOp()) {
301 VisitLogicalExpr(B, Pred, Dst);
302 break;
303 }
304 else if (B->getOpcode() == BinaryOperator::Comma) {
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000305 const GRState* St = GetState(Pred);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000306 MakeNode(Dst, B, Pred, BindExpr(St, B, GetSVal(St, B->getRHS())));
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000307 break;
308 }
Ted Kremenek06fb99f2008-11-14 19:47:18 +0000309
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000310 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
311 break;
312 }
Ted Kremenek06fb99f2008-11-14 19:47:18 +0000313
Douglas Gregorb4609802008-11-14 16:09:21 +0000314 case Stmt::CallExprClass:
315 case Stmt::CXXOperatorCallExprClass: {
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000316 CallExpr* C = cast<CallExpr>(S);
317 VisitCall(C, Pred, C->arg_begin(), C->arg_end(), Dst);
Ted Kremenek06fb99f2008-11-14 19:47:18 +0000318 break;
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000319 }
Ted Kremenek06fb99f2008-11-14 19:47:18 +0000320
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000321 // FIXME: ChooseExpr is really a constant. We need to fix
322 // the CFG do not model them as explicit control-flow.
323
324 case Stmt::ChooseExprClass: { // __builtin_choose_expr
325 ChooseExpr* C = cast<ChooseExpr>(S);
326 VisitGuardedExpr(C, C->getLHS(), C->getRHS(), Pred, Dst);
327 break;
328 }
329
330 case Stmt::CompoundAssignOperatorClass:
331 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
332 break;
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000333
334 case Stmt::CompoundLiteralExprClass:
335 VisitCompoundLiteralExpr(cast<CompoundLiteralExpr>(S), Pred, Dst, false);
336 break;
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000337
338 case Stmt::ConditionalOperatorClass: { // '?' operator
339 ConditionalOperator* C = cast<ConditionalOperator>(S);
340 VisitGuardedExpr(C, C->getLHS(), C->getRHS(), Pred, Dst);
341 break;
342 }
343
344 case Stmt::DeclRefExprClass:
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000345 VisitDeclRefExpr(cast<DeclRefExpr>(S), Pred, Dst, false);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000346 break;
347
348 case Stmt::DeclStmtClass:
349 VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst);
350 break;
351
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +0000352 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000353 case Stmt::CStyleCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +0000354 CastExpr* C = cast<CastExpr>(S);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000355 VisitCast(C, C->getSubExpr(), Pred, Dst);
356 break;
357 }
Zhongxing Xuc4f87062008-10-30 05:02:23 +0000358
359 case Stmt::InitListExprClass:
360 VisitInitListExpr(cast<InitListExpr>(S), Pred, Dst);
361 break;
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000362
Ted Kremenek97ed4f62008-10-17 00:03:18 +0000363 case Stmt::MemberExprClass:
Ted Kremenek469ecbd2008-04-21 23:43:38 +0000364 VisitMemberExpr(cast<MemberExpr>(S), Pred, Dst, false);
365 break;
Ted Kremenek97ed4f62008-10-17 00:03:18 +0000366
367 case Stmt::ObjCIvarRefExprClass:
368 VisitObjCIvarRefExpr(cast<ObjCIvarRefExpr>(S), Pred, Dst, false);
369 break;
Ted Kremenekaf337412008-11-12 19:24:17 +0000370
371 case Stmt::ObjCForCollectionStmtClass:
372 VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S), Pred, Dst);
373 break;
Ted Kremenek469ecbd2008-04-21 23:43:38 +0000374
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000375 case Stmt::ObjCMessageExprClass: {
376 VisitObjCMessageExpr(cast<ObjCMessageExpr>(S), Pred, Dst);
377 break;
378 }
379
380 case Stmt::ParenExprClass:
Ted Kremenek540cbe22008-04-22 04:56:29 +0000381 Visit(cast<ParenExpr>(S)->getSubExpr()->IgnoreParens(), Pred, Dst);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000382 break;
383
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000384 case Stmt::ReturnStmtClass:
385 VisitReturnStmt(cast<ReturnStmt>(S), Pred, Dst);
386 break;
387
Sebastian Redl05189992008-11-11 17:56:53 +0000388 case Stmt::SizeOfAlignOfExprClass:
389 VisitSizeOfAlignOfExpr(cast<SizeOfAlignOfExpr>(S), Pred, Dst);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000390 break;
391
392 case Stmt::StmtExprClass: {
393 StmtExpr* SE = cast<StmtExpr>(S);
394
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000395 const GRState* St = GetState(Pred);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000396
397 // FIXME: Not certain if we can have empty StmtExprs. If so, we should
398 // probably just remove these from the CFG.
399 assert (!SE->getSubStmt()->body_empty());
400
401 if (Expr* LastExpr = dyn_cast<Expr>(*SE->getSubStmt()->body_rbegin()))
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000402 MakeNode(Dst, SE, Pred, BindExpr(St, SE, GetSVal(St, LastExpr)));
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000403 else
404 Dst.Add(Pred);
405
406 break;
407 }
408
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000409 case Stmt::UnaryOperatorClass:
410 VisitUnaryOperator(cast<UnaryOperator>(S), Pred, Dst, false);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000411 break;
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000412 }
413}
414
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000415void GRExprEngine::VisitLValue(Expr* Ex, NodeTy* Pred, NodeSet& Dst) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000416
417 Ex = Ex->IgnoreParens();
418
419 if (Ex != CurrentStmt && getCFG().isBlkExpr(Ex)) {
420 Dst.Add(Pred);
421 return;
422 }
423
424 switch (Ex->getStmtClass()) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000425
426 case Stmt::ArraySubscriptExprClass:
427 VisitArraySubscriptExpr(cast<ArraySubscriptExpr>(Ex), Pred, Dst, true);
428 return;
429
430 case Stmt::DeclRefExprClass:
431 VisitDeclRefExpr(cast<DeclRefExpr>(Ex), Pred, Dst, true);
432 return;
433
Ted Kremenek97ed4f62008-10-17 00:03:18 +0000434 case Stmt::ObjCIvarRefExprClass:
435 VisitObjCIvarRefExpr(cast<ObjCIvarRefExpr>(Ex), Pred, Dst, true);
436 return;
437
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000438 case Stmt::UnaryOperatorClass:
439 VisitUnaryOperator(cast<UnaryOperator>(Ex), Pred, Dst, true);
440 return;
441
442 case Stmt::MemberExprClass:
443 VisitMemberExpr(cast<MemberExpr>(Ex), Pred, Dst, true);
444 return;
Ted Kremenekb6b81d12008-10-17 17:24:14 +0000445
Ted Kremenek4f090272008-10-27 21:54:31 +0000446 case Stmt::CompoundLiteralExprClass:
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000447 VisitCompoundLiteralExpr(cast<CompoundLiteralExpr>(Ex), Pred, Dst, true);
Ted Kremenek4f090272008-10-27 21:54:31 +0000448 return;
449
Ted Kremenekb6b81d12008-10-17 17:24:14 +0000450 case Stmt::ObjCPropertyRefExprClass:
451 // FIXME: Property assignments are lvalues, but not really "locations".
452 // e.g.: self.x = something;
453 // Here the "self.x" really can translate to a method call (setter) when
454 // the assignment is made. Moreover, the entire assignment expression
455 // evaluate to whatever "something" is, not calling the "getter" for
456 // the property (which would make sense since it can have side effects).
457 // We'll probably treat this as a location, but not one that we can
458 // take the address of. Perhaps we need a new SVal class for cases
459 // like thsis?
460 // Note that we have a similar problem for bitfields, since they don't
461 // have "locations" in the sense that we can take their address.
462 Dst.Add(Pred);
Ted Kremenekc7df6d22008-10-18 04:08:49 +0000463 return;
Zhongxing Xu143bf822008-10-25 14:18:57 +0000464
465 case Stmt::StringLiteralClass: {
466 const GRState* St = GetState(Pred);
467 SVal V = StateMgr.GetLValue(St, cast<StringLiteral>(Ex));
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000468 MakeNode(Dst, Ex, Pred, BindExpr(St, Ex, V));
Zhongxing Xu143bf822008-10-25 14:18:57 +0000469 return;
470 }
Ted Kremenekc7df6d22008-10-18 04:08:49 +0000471
Ted Kremenekf8cd1b22008-10-18 04:15:35 +0000472 default:
473 // Arbitrary subexpressions can return aggregate temporaries that
474 // can be used in a lvalue context. We need to enhance our support
475 // of such temporaries in both the environment and the store, so right
476 // now we just do a regular visit.
Ted Kremenek5b2316a2008-10-25 20:09:21 +0000477 assert ((Ex->getType()->isAggregateType() ||
478 Ex->getType()->isUnionType()) &&
479 "Other kinds of expressions with non-aggregate/union types do"
480 " not have lvalues.");
Ted Kremenekc7df6d22008-10-18 04:08:49 +0000481
Ted Kremenekf8cd1b22008-10-18 04:15:35 +0000482 Visit(Ex, Pred, Dst);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000483 }
484}
485
486//===----------------------------------------------------------------------===//
487// Block entrance. (Update counters).
488//===----------------------------------------------------------------------===//
489
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000490bool GRExprEngine::ProcessBlockEntrance(CFGBlock* B, const GRState*,
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000491 GRBlockCounter BC) {
492
493 return BC.getNumVisited(B->getBlockID()) < 3;
494}
495
496//===----------------------------------------------------------------------===//
497// Branch processing.
498//===----------------------------------------------------------------------===//
499
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000500const GRState* GRExprEngine::MarkBranch(const GRState* St,
Ted Kremenek4323a572008-07-10 22:03:41 +0000501 Stmt* Terminator,
502 bool branchTaken) {
Ted Kremenek05a23782008-02-26 19:05:15 +0000503
504 switch (Terminator->getStmtClass()) {
505 default:
506 return St;
507
508 case Stmt::BinaryOperatorClass: { // '&&' and '||'
509
510 BinaryOperator* B = cast<BinaryOperator>(Terminator);
511 BinaryOperator::Opcode Op = B->getOpcode();
512
513 assert (Op == BinaryOperator::LAnd || Op == BinaryOperator::LOr);
514
515 // For &&, if we take the true branch, then the value of the whole
516 // expression is that of the RHS expression.
517 //
518 // For ||, if we take the false branch, then the value of the whole
519 // expression is that of the RHS expression.
520
521 Expr* Ex = (Op == BinaryOperator::LAnd && branchTaken) ||
522 (Op == BinaryOperator::LOr && !branchTaken)
523 ? B->getRHS() : B->getLHS();
524
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000525 return BindBlkExpr(St, B, UndefinedVal(Ex));
Ted Kremenek05a23782008-02-26 19:05:15 +0000526 }
527
528 case Stmt::ConditionalOperatorClass: { // ?:
529
530 ConditionalOperator* C = cast<ConditionalOperator>(Terminator);
531
532 // For ?, if branchTaken == true then the value is either the LHS or
533 // the condition itself. (GNU extension).
534
535 Expr* Ex;
536
537 if (branchTaken)
538 Ex = C->getLHS() ? C->getLHS() : C->getCond();
539 else
540 Ex = C->getRHS();
541
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000542 return BindBlkExpr(St, C, UndefinedVal(Ex));
Ted Kremenek05a23782008-02-26 19:05:15 +0000543 }
544
545 case Stmt::ChooseExprClass: { // ?:
546
547 ChooseExpr* C = cast<ChooseExpr>(Terminator);
548
549 Expr* Ex = branchTaken ? C->getLHS() : C->getRHS();
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000550 return BindBlkExpr(St, C, UndefinedVal(Ex));
Ted Kremenek05a23782008-02-26 19:05:15 +0000551 }
552 }
553}
554
Ted Kremenekaf337412008-11-12 19:24:17 +0000555void GRExprEngine::ProcessBranch(Stmt* Condition, Stmt* Term,
Ted Kremenekaa1c4e52008-02-21 18:02:17 +0000556 BranchNodeBuilder& builder) {
Ted Kremenekb38911f2008-01-30 23:03:39 +0000557
Ted Kremeneke7d22112008-02-11 19:21:59 +0000558 // Remove old bindings for subexpressions.
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000559 const GRState* PrevState =
Ted Kremenek4323a572008-07-10 22:03:41 +0000560 StateMgr.RemoveSubExprBindings(builder.getState());
Ted Kremenekf233d482008-02-05 00:26:40 +0000561
Ted Kremenekb2331832008-02-15 22:29:00 +0000562 // Check for NULL conditions; e.g. "for(;;)"
563 if (!Condition) {
564 builder.markInfeasible(false);
Ted Kremenekb2331832008-02-15 22:29:00 +0000565 return;
566 }
567
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000568 SVal V = GetSVal(PrevState, Condition);
Ted Kremenekb38911f2008-01-30 23:03:39 +0000569
570 switch (V.getBaseKind()) {
571 default:
572 break;
573
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000574 case SVal::UnknownKind:
Ted Kremenek58b33212008-02-26 19:40:44 +0000575 builder.generateNode(MarkBranch(PrevState, Term, true), true);
576 builder.generateNode(MarkBranch(PrevState, Term, false), false);
Ted Kremenekb38911f2008-01-30 23:03:39 +0000577 return;
578
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000579 case SVal::UndefinedKind: {
Ted Kremenekb38911f2008-01-30 23:03:39 +0000580 NodeTy* N = builder.generateNode(PrevState, true);
581
582 if (N) {
583 N->markAsSink();
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000584 UndefBranches.insert(N);
Ted Kremenekb38911f2008-01-30 23:03:39 +0000585 }
586
587 builder.markInfeasible(false);
588 return;
589 }
590 }
Ted Kremenek8e49dd62008-02-12 18:08:17 +0000591
Ted Kremenek6a6719a2008-02-29 20:27:50 +0000592 // Process the true branch.
Ted Kremenek8e49dd62008-02-12 18:08:17 +0000593
Ted Kremenek361fa8e2008-03-12 21:45:47 +0000594 bool isFeasible = false;
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000595 const GRState* St = Assume(PrevState, V, true, isFeasible);
Ted Kremenek6a6719a2008-02-29 20:27:50 +0000596
597 if (isFeasible)
598 builder.generateNode(MarkBranch(St, Term, true), true);
Ted Kremenek8e49dd62008-02-12 18:08:17 +0000599 else
600 builder.markInfeasible(true);
Ted Kremenek6a6719a2008-02-29 20:27:50 +0000601
602 // Process the false branch.
Ted Kremenekb38911f2008-01-30 23:03:39 +0000603
Ted Kremenek6a6719a2008-02-29 20:27:50 +0000604 isFeasible = false;
605 St = Assume(PrevState, V, false, isFeasible);
Ted Kremenekb38911f2008-01-30 23:03:39 +0000606
Ted Kremenek6a6719a2008-02-29 20:27:50 +0000607 if (isFeasible)
608 builder.generateNode(MarkBranch(St, Term, false), false);
Ted Kremenekf233d482008-02-05 00:26:40 +0000609 else
610 builder.markInfeasible(false);
Ted Kremenek71c29bd2008-01-29 23:32:35 +0000611}
612
Ted Kremenek4d4dd852008-02-13 17:41:41 +0000613/// ProcessIndirectGoto - Called by GRCoreEngine. Used to generate successor
Ted Kremenek754607e2008-02-13 00:24:44 +0000614/// nodes by processing the 'effects' of a computed goto jump.
Ted Kremenek4d4dd852008-02-13 17:41:41 +0000615void GRExprEngine::ProcessIndirectGoto(IndirectGotoNodeBuilder& builder) {
Ted Kremenek754607e2008-02-13 00:24:44 +0000616
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000617 const GRState* St = builder.getState();
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000618 SVal V = GetSVal(St, builder.getTarget());
Ted Kremenek754607e2008-02-13 00:24:44 +0000619
620 // Three possibilities:
621 //
622 // (1) We know the computed label.
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000623 // (2) The label is NULL (or some other constant), or Undefined.
Ted Kremenek754607e2008-02-13 00:24:44 +0000624 // (3) We have no clue about the label. Dispatch to all targets.
625 //
626
627 typedef IndirectGotoNodeBuilder::iterator iterator;
628
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000629 if (isa<loc::GotoLabel>(V)) {
630 LabelStmt* L = cast<loc::GotoLabel>(V).getLabel();
Ted Kremenek754607e2008-02-13 00:24:44 +0000631
632 for (iterator I=builder.begin(), E=builder.end(); I != E; ++I) {
Ted Kremenek24f1a962008-02-13 17:27:37 +0000633 if (I.getLabel() == L) {
634 builder.generateNode(I, St);
Ted Kremenek754607e2008-02-13 00:24:44 +0000635 return;
636 }
637 }
638
639 assert (false && "No block with label.");
640 return;
641 }
642
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000643 if (isa<loc::ConcreteInt>(V) || isa<UndefinedVal>(V)) {
Ted Kremenek754607e2008-02-13 00:24:44 +0000644 // Dispatch to the first target and mark it as a sink.
Ted Kremenek24f1a962008-02-13 17:27:37 +0000645 NodeTy* N = builder.generateNode(builder.begin(), St, true);
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000646 UndefBranches.insert(N);
Ted Kremenek754607e2008-02-13 00:24:44 +0000647 return;
648 }
649
650 // This is really a catch-all. We don't support symbolics yet.
651
Ted Kremenekaa1c4e52008-02-21 18:02:17 +0000652 assert (V.isUnknown());
Ted Kremenek754607e2008-02-13 00:24:44 +0000653
654 for (iterator I=builder.begin(), E=builder.end(); I != E; ++I)
Ted Kremenek24f1a962008-02-13 17:27:37 +0000655 builder.generateNode(I, St);
Ted Kremenek754607e2008-02-13 00:24:44 +0000656}
Ted Kremenekf233d482008-02-05 00:26:40 +0000657
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000658
659void GRExprEngine::VisitGuardedExpr(Expr* Ex, Expr* L, Expr* R,
660 NodeTy* Pred, NodeSet& Dst) {
661
662 assert (Ex == CurrentStmt && getCFG().isBlkExpr(Ex));
663
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000664 const GRState* St = GetState(Pred);
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000665 SVal X = GetBlkExprSVal(St, Ex);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000666
667 assert (X.isUndef());
668
669 Expr* SE = (Expr*) cast<UndefinedVal>(X).getData();
670
671 assert (SE);
672
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000673 X = GetBlkExprSVal(St, SE);
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000674
675 // Make sure that we invalidate the previous binding.
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000676 MakeNode(Dst, Ex, Pred, StateMgr.BindExpr(St, Ex, X, true, true));
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000677}
678
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000679/// ProcessSwitch - Called by GRCoreEngine. Used to generate successor
680/// nodes by processing the 'effects' of a switch statement.
681void GRExprEngine::ProcessSwitch(SwitchNodeBuilder& builder) {
682
683 typedef SwitchNodeBuilder::iterator iterator;
684
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000685 const GRState* St = builder.getState();
Ted Kremenek692416c2008-02-18 22:57:02 +0000686 Expr* CondE = builder.getCondition();
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000687 SVal CondV = GetSVal(St, CondE);
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000688
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000689 if (CondV.isUndef()) {
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000690 NodeTy* N = builder.generateDefaultCaseNode(St, true);
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000691 UndefBranches.insert(N);
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000692 return;
693 }
694
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000695 const GRState* DefaultSt = St;
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000696
697 // While most of this can be assumed (such as the signedness), having it
698 // just computed makes sure everything makes the same assumptions end-to-end.
Ted Kremenek692416c2008-02-18 22:57:02 +0000699
Chris Lattner98be4942008-03-05 18:54:05 +0000700 unsigned bits = getContext().getTypeSize(CondE->getType());
Ted Kremenek692416c2008-02-18 22:57:02 +0000701
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000702 APSInt V1(bits, false);
703 APSInt V2 = V1;
Ted Kremenek5014ab12008-04-23 05:03:18 +0000704 bool DefaultFeasible = false;
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000705
Ted Kremenekaa1c4e52008-02-21 18:02:17 +0000706 for (iterator I = builder.begin(), EI = builder.end(); I != EI; ++I) {
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000707
708 CaseStmt* Case = cast<CaseStmt>(I.getCase());
709
710 // Evaluate the case.
711 if (!Case->getLHS()->isIntegerConstantExpr(V1, getContext(), 0, true)) {
712 assert (false && "Case condition must evaluate to an integer constant.");
713 return;
714 }
715
716 // Get the RHS of the case, if it exists.
717
718 if (Expr* E = Case->getRHS()) {
719 if (!E->isIntegerConstantExpr(V2, getContext(), 0, true)) {
720 assert (false &&
721 "Case condition (RHS) must evaluate to an integer constant.");
722 return ;
723 }
724
725 assert (V1 <= V2);
726 }
Ted Kremenek14a11402008-03-17 22:17:56 +0000727 else
728 V2 = V1;
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000729
730 // FIXME: Eventually we should replace the logic below with a range
731 // comparison, rather than concretize the values within the range.
Ted Kremenekaa1c4e52008-02-21 18:02:17 +0000732 // This should be easy once we have "ranges" for NonLVals.
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000733
Ted Kremenek14a11402008-03-17 22:17:56 +0000734 do {
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000735 nonloc::ConcreteInt CaseVal(getBasicVals().getValue(V1));
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000736
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000737 SVal Res = EvalBinOp(BinaryOperator::EQ, CondV, CaseVal);
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000738
739 // Now "assume" that the case matches.
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000740
Ted Kremenek361fa8e2008-03-12 21:45:47 +0000741 bool isFeasible = false;
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000742 const GRState* StNew = Assume(St, Res, true, isFeasible);
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000743
744 if (isFeasible) {
745 builder.generateCaseStmtNode(I, StNew);
746
747 // If CondV evaluates to a constant, then we know that this
748 // is the *only* case that we can take, so stop evaluating the
749 // others.
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000750 if (isa<nonloc::ConcreteInt>(CondV))
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000751 return;
752 }
753
754 // Now "assume" that the case doesn't match. Add this state
755 // to the default state (if it is feasible).
756
Ted Kremenek361fa8e2008-03-12 21:45:47 +0000757 isFeasible = false;
Ted Kremenek6cb0b542008-02-14 19:37:24 +0000758 StNew = Assume(DefaultSt, Res, false, isFeasible);
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000759
Ted Kremenek5014ab12008-04-23 05:03:18 +0000760 if (isFeasible) {
761 DefaultFeasible = true;
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000762 DefaultSt = StNew;
Ted Kremenek5014ab12008-04-23 05:03:18 +0000763 }
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000764
Ted Kremenek14a11402008-03-17 22:17:56 +0000765 // Concretize the next value in the range.
766 if (V1 == V2)
767 break;
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000768
Ted Kremenek14a11402008-03-17 22:17:56 +0000769 ++V1;
Ted Kremenek58cda6f2008-03-17 22:18:22 +0000770 assert (V1 <= V2);
Ted Kremenek14a11402008-03-17 22:17:56 +0000771
772 } while (true);
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000773 }
774
775 // If we reach here, than we know that the default branch is
776 // possible.
Ted Kremenek5014ab12008-04-23 05:03:18 +0000777 if (DefaultFeasible) builder.generateDefaultCaseNode(DefaultSt);
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000778}
779
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000780//===----------------------------------------------------------------------===//
781// Transfer functions: logical operations ('&&', '||').
782//===----------------------------------------------------------------------===//
Ted Kremenekdaeb9a72008-02-13 23:08:21 +0000783
Ted Kremenek4d4dd852008-02-13 17:41:41 +0000784void GRExprEngine::VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred,
Ted Kremenekaa1c4e52008-02-21 18:02:17 +0000785 NodeSet& Dst) {
Ted Kremenek9dca0622008-02-19 00:22:37 +0000786
Ted Kremenek05a23782008-02-26 19:05:15 +0000787 assert (B->getOpcode() == BinaryOperator::LAnd ||
788 B->getOpcode() == BinaryOperator::LOr);
789
790 assert (B == CurrentStmt && getCFG().isBlkExpr(B));
791
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000792 const GRState* St = GetState(Pred);
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000793 SVal X = GetBlkExprSVal(St, B);
Ted Kremenek05a23782008-02-26 19:05:15 +0000794
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000795 assert (X.isUndef());
Ted Kremenek05a23782008-02-26 19:05:15 +0000796
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000797 Expr* Ex = (Expr*) cast<UndefinedVal>(X).getData();
Ted Kremenek05a23782008-02-26 19:05:15 +0000798
799 assert (Ex);
800
801 if (Ex == B->getRHS()) {
802
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000803 X = GetBlkExprSVal(St, Ex);
Ted Kremenek05a23782008-02-26 19:05:15 +0000804
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000805 // Handle undefined values.
Ted Kremenek58b33212008-02-26 19:40:44 +0000806
Ted Kremenek4a4e5242008-02-28 09:25:22 +0000807 if (X.isUndef()) {
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000808 MakeNode(Dst, B, Pred, BindBlkExpr(St, B, X));
Ted Kremenek58b33212008-02-26 19:40:44 +0000809 return;
810 }
811
Ted Kremenek05a23782008-02-26 19:05:15 +0000812 // We took the RHS. Because the value of the '&&' or '||' expression must
813 // evaluate to 0 or 1, we must assume the value of the RHS evaluates to 0
814 // or 1. Alternatively, we could take a lazy approach, and calculate this
815 // value later when necessary. We don't have the machinery in place for
816 // this right now, and since most logical expressions are used for branches,
817 // the payoff is not likely to be large. Instead, we do eager evaluation.
818
819 bool isFeasible = false;
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000820 const GRState* NewState = Assume(St, X, true, isFeasible);
Ted Kremenek05a23782008-02-26 19:05:15 +0000821
822 if (isFeasible)
Ted Kremenek0e561a32008-03-21 21:30:14 +0000823 MakeNode(Dst, B, Pred,
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000824 BindBlkExpr(NewState, B, MakeConstantVal(1U, B)));
Ted Kremenek05a23782008-02-26 19:05:15 +0000825
826 isFeasible = false;
827 NewState = Assume(St, X, false, isFeasible);
828
829 if (isFeasible)
Ted Kremenek0e561a32008-03-21 21:30:14 +0000830 MakeNode(Dst, B, Pred,
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000831 BindBlkExpr(NewState, B, MakeConstantVal(0U, B)));
Ted Kremenekf233d482008-02-05 00:26:40 +0000832 }
833 else {
Ted Kremenek05a23782008-02-26 19:05:15 +0000834 // We took the LHS expression. Depending on whether we are '&&' or
835 // '||' we know what the value of the expression is via properties of
836 // the short-circuiting.
837
838 X = MakeConstantVal( B->getOpcode() == BinaryOperator::LAnd ? 0U : 1U, B);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000839 MakeNode(Dst, B, Pred, BindBlkExpr(St, B, X));
Ted Kremenekf233d482008-02-05 00:26:40 +0000840 }
Ted Kremenekf233d482008-02-05 00:26:40 +0000841}
Ted Kremenek05a23782008-02-26 19:05:15 +0000842
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000843//===----------------------------------------------------------------------===//
Ted Kremenekec96a2d2008-04-16 18:39:06 +0000844// Transfer functions: Loads and stores.
Ted Kremeneke695e1c2008-04-15 23:06:53 +0000845//===----------------------------------------------------------------------===//
Ted Kremenekd27f8162008-01-15 23:55:06 +0000846
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000847void GRExprEngine::VisitDeclRefExpr(DeclRefExpr* Ex, NodeTy* Pred, NodeSet& Dst,
848 bool asLValue) {
Ted Kremenek3271f8d2008-02-07 04:16:04 +0000849
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000850 const GRState* St = GetState(Pred);
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000851
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000852 const NamedDecl* D = Ex->getDecl();
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000853
854 if (const VarDecl* VD = dyn_cast<VarDecl>(D)) {
855
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000856 SVal V = StateMgr.GetLValue(St, VD);
Zhongxing Xua7581732008-10-17 02:20:14 +0000857
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000858 if (asLValue)
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000859 MakeNode(Dst, Ex, Pred, BindExpr(St, Ex, V));
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000860 else
861 EvalLoad(Dst, Ex, Pred, St, V);
862 return;
863
864 } else if (const EnumConstantDecl* ED = dyn_cast<EnumConstantDecl>(D)) {
865 assert(!asLValue && "EnumConstantDecl does not have lvalue.");
866
867 BasicValueFactory& BasicVals = StateMgr.getBasicVals();
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000868 SVal V = nonloc::ConcreteInt(BasicVals.getValue(ED->getInitVal()));
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000869 MakeNode(Dst, Ex, Pred, BindExpr(St, Ex, V));
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000870 return;
871
872 } else if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(D)) {
Ted Kremenek5631a732008-11-15 02:35:08 +0000873 assert(asLValue);
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000874 SVal V = loc::FuncVal(FD);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000875 MakeNode(Dst, Ex, Pred, BindExpr(St, Ex, V));
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000876 return;
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000877 }
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000878
879 assert (false &&
880 "ValueDecl support for this ValueDecl not implemented.");
Ted Kremenek3271f8d2008-02-07 04:16:04 +0000881}
882
Ted Kremenek540cbe22008-04-22 04:56:29 +0000883/// VisitArraySubscriptExpr - Transfer function for array accesses
884void GRExprEngine::VisitArraySubscriptExpr(ArraySubscriptExpr* A, NodeTy* Pred,
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000885 NodeSet& Dst, bool asLValue) {
Ted Kremenek540cbe22008-04-22 04:56:29 +0000886
887 Expr* Base = A->getBase()->IgnoreParens();
Ted Kremenek4d0348b2008-04-29 23:24:44 +0000888 Expr* Idx = A->getIdx()->IgnoreParens();
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000889 NodeSet Tmp;
Ted Kremenekd9bc33e2008-10-17 00:51:01 +0000890 Visit(Base, Pred, Tmp); // Get Base's rvalue, which should be an LocVal.
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000891
Ted Kremenekd9bc33e2008-10-17 00:51:01 +0000892 for (NodeSet::iterator I1=Tmp.begin(), E1=Tmp.end(); I1!=E1; ++I1) {
Ted Kremenek4d0348b2008-04-29 23:24:44 +0000893 NodeSet Tmp2;
Ted Kremenekd9bc33e2008-10-17 00:51:01 +0000894 Visit(Idx, *I1, Tmp2); // Evaluate the index.
Ted Kremenek4d0348b2008-04-29 23:24:44 +0000895
896 for (NodeSet::iterator I2=Tmp2.begin(), E2=Tmp2.end(); I2!=E2; ++I2) {
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000897 const GRState* St = GetState(*I2);
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000898 SVal V = StateMgr.GetLValue(St, GetSVal(St, Base), GetSVal(St, Idx));
Ted Kremenek4d0348b2008-04-29 23:24:44 +0000899
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000900 if (asLValue)
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000901 MakeNode(Dst, A, *I2, BindExpr(St, A, V));
Ted Kremenek4d0348b2008-04-29 23:24:44 +0000902 else
903 EvalLoad(Dst, A, *I2, St, V);
904 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000905 }
Ted Kremenek540cbe22008-04-22 04:56:29 +0000906}
907
Ted Kremenek469ecbd2008-04-21 23:43:38 +0000908/// VisitMemberExpr - Transfer function for member expressions.
909void GRExprEngine::VisitMemberExpr(MemberExpr* M, NodeTy* Pred,
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000910 NodeSet& Dst, bool asLValue) {
Ted Kremenek469ecbd2008-04-21 23:43:38 +0000911
912 Expr* Base = M->getBase()->IgnoreParens();
Ted Kremenek469ecbd2008-04-21 23:43:38 +0000913 NodeSet Tmp;
Ted Kremenek5c456fe2008-10-18 03:28:48 +0000914
915 if (M->isArrow())
916 Visit(Base, Pred, Tmp); // p->f = ... or ... = p->f
917 else
918 VisitLValue(Base, Pred, Tmp); // x.f = ... or ... = x.f
919
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000920 for (NodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; ++I) {
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000921 const GRState* St = GetState(*I);
Ted Kremenekd9bc33e2008-10-17 00:51:01 +0000922 // FIXME: Should we insert some assumption logic in here to determine
923 // if "Base" is a valid piece of memory? Before we put this assumption
924 // later when using FieldOffset lvals (which we no longer have).
Zhongxing Xuc92e5fe2008-10-22 09:00:19 +0000925 SVal L = StateMgr.GetLValue(St, GetSVal(St, Base), M->getMemberDecl());
Ted Kremenekd9bc33e2008-10-17 00:51:01 +0000926
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000927 if (asLValue)
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000928 MakeNode(Dst, M, *I, BindExpr(St, M, L));
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +0000929 else
930 EvalLoad(Dst, M, *I, St, L);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000931 }
Ted Kremenek469ecbd2008-04-21 23:43:38 +0000932}
933
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000934void GRExprEngine::EvalStore(NodeSet& Dst, Expr* Ex, NodeTy* Pred,
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000935 const GRState* St, SVal location, SVal Val) {
Ted Kremenekec96a2d2008-04-16 18:39:06 +0000936
937 assert (Builder && "GRStmtNodeBuilder must be defined.");
938
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000939 // Evaluate the location (checks for bad dereferences).
940 St = EvalLocation(Ex, Pred, St, location);
941
942 if (!St)
943 return;
944
945 // Proceed with the store.
946
Ted Kremenekec96a2d2008-04-16 18:39:06 +0000947 unsigned size = Dst.size();
Ted Kremenekb0533962008-04-18 20:35:30 +0000948
Ted Kremenek186350f2008-04-23 20:12:28 +0000949 SaveAndRestore<bool> OldSink(Builder->BuildSinks);
Ted Kremenek82bae3f2008-09-20 01:50:34 +0000950 SaveAndRestore<ProgramPoint::Kind> OldSPointKind(Builder->PointKind);
Ted Kremenek186350f2008-04-23 20:12:28 +0000951 SaveOr OldHasGen(Builder->HasGeneratedNode);
Ted Kremenekb0533962008-04-18 20:35:30 +0000952
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000953 assert (!location.isUndef());
Ted Kremenek82bae3f2008-09-20 01:50:34 +0000954 Builder->PointKind = ProgramPoint::PostStoreKind;
Ted Kremenek13922612008-04-16 20:40:59 +0000955
Ted Kremenek729a9a22008-07-17 23:15:45 +0000956 getTF().EvalStore(Dst, *this, *Builder, Ex, Pred, St, location, Val);
Ted Kremenekec96a2d2008-04-16 18:39:06 +0000957
958 // Handle the case where no nodes where generated. Auto-generate that
959 // contains the updated state if we aren't generating sinks.
960
Ted Kremenekb0533962008-04-18 20:35:30 +0000961 if (!Builder->BuildSinks && Dst.size() == size && !Builder->HasGeneratedNode)
Ted Kremenek729a9a22008-07-17 23:15:45 +0000962 getTF().GRTransferFuncs::EvalStore(Dst, *this, *Builder, Ex, Pred, St,
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000963 location, Val);
964}
965
966void GRExprEngine::EvalLoad(NodeSet& Dst, Expr* Ex, NodeTy* Pred,
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000967 const GRState* St, SVal location,
Ted Kremenek4323a572008-07-10 22:03:41 +0000968 bool CheckOnly) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000969
970 // Evaluate the location (checks for bad dereferences).
971
972 St = EvalLocation(Ex, Pred, St, location, true);
973
974 if (!St)
975 return;
976
977 // Proceed with the load.
Ted Kremenek982e6742008-08-28 18:43:46 +0000978 ProgramPoint::Kind K = ProgramPoint::PostLoadKind;
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000979
980 // FIXME: Currently symbolic analysis "generates" new symbols
981 // for the contents of values. We need a better approach.
982
983 // FIXME: The "CheckOnly" option exists only because Array and Field
984 // loads aren't fully implemented. Eventually this option will go away.
Zhongxing Xud5b499d2008-11-28 08:34:30 +0000985 assert(!CheckOnly);
Ted Kremenek982e6742008-08-28 18:43:46 +0000986
Ted Kremenek436f2b92008-04-30 04:23:07 +0000987 if (CheckOnly)
Ted Kremenek982e6742008-08-28 18:43:46 +0000988 MakeNode(Dst, Ex, Pred, St, K);
Ted Kremenek436f2b92008-04-30 04:23:07 +0000989 else if (location.isUnknown()) {
990 // This is important. We must nuke the old binding.
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +0000991 MakeNode(Dst, Ex, Pred, BindExpr(St, Ex, UnknownVal()), K);
Ted Kremenek436f2b92008-04-30 04:23:07 +0000992 }
Zhongxing Xud5b499d2008-11-28 08:34:30 +0000993 else {
994 SVal V = GetSVal(St, cast<Loc>(location), Ex->getType());
995 MakeNode(Dst, Ex, Pred, BindExpr(St, Ex, V), K);
996 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +0000997}
998
Ted Kremenek82bae3f2008-09-20 01:50:34 +0000999void GRExprEngine::EvalStore(NodeSet& Dst, Expr* Ex, Expr* StoreE, NodeTy* Pred,
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001000 const GRState* St, SVal location, SVal Val) {
Ted Kremenek82bae3f2008-09-20 01:50:34 +00001001
1002 NodeSet TmpDst;
1003 EvalStore(TmpDst, StoreE, Pred, St, location, Val);
1004
1005 for (NodeSet::iterator I=TmpDst.begin(), E=TmpDst.end(); I!=E; ++I)
1006 MakeNode(Dst, Ex, *I, (*I)->getState());
1007}
1008
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001009const GRState* GRExprEngine::EvalLocation(Stmt* Ex, NodeTy* Pred,
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001010 const GRState* St,
1011 SVal location, bool isLoad) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001012
1013 // Check for loads/stores from/to undefined values.
1014 if (location.isUndef()) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001015 ProgramPoint::Kind K =
1016 isLoad ? ProgramPoint::PostLoadKind : ProgramPoint::PostStmtKind;
1017
1018 if (NodeTy* Succ = Builder->generateNode(Ex, St, Pred, K)) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001019 Succ->markAsSink();
1020 UndefDeref.insert(Succ);
1021 }
1022
1023 return NULL;
1024 }
1025
1026 // Check for loads/stores from/to unknown locations. Treat as No-Ops.
1027 if (location.isUnknown())
1028 return St;
1029
1030 // During a load, one of two possible situations arise:
1031 // (1) A crash, because the location (pointer) was NULL.
1032 // (2) The location (pointer) is not NULL, and the dereference works.
1033 //
1034 // We add these assumptions.
1035
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001036 Loc LV = cast<Loc>(location);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001037
1038 // "Assume" that the pointer is not NULL.
1039
1040 bool isFeasibleNotNull = false;
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001041 const GRState* StNotNull = Assume(St, LV, true, isFeasibleNotNull);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001042
1043 // "Assume" that the pointer is NULL.
1044
1045 bool isFeasibleNull = false;
Ted Kremenek7360fda2008-09-18 23:09:54 +00001046 GRStateRef StNull = GRStateRef(Assume(St, LV, false, isFeasibleNull),
1047 getStateManager());
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001048
1049 if (isFeasibleNull) {
1050
Ted Kremenek7360fda2008-09-18 23:09:54 +00001051 // Use the Generic Data Map to mark in the state what lval was null.
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001052 const SVal* PersistentLV = getBasicVals().getPersistentSVal(LV);
Ted Kremenek7360fda2008-09-18 23:09:54 +00001053 StNull = StNull.set<GRState::NullDerefTag>(PersistentLV);
1054
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001055 // We don't use "MakeNode" here because the node will be a sink
1056 // and we have no intention of processing it later.
1057
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001058 ProgramPoint::Kind K =
1059 isLoad ? ProgramPoint::PostLoadKind : ProgramPoint::PostStmtKind;
1060
1061 NodeTy* NullNode = Builder->generateNode(Ex, StNull, Pred, K);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001062
1063 if (NullNode) {
1064
1065 NullNode->markAsSink();
1066
1067 if (isFeasibleNotNull) ImplicitNullDeref.insert(NullNode);
1068 else ExplicitNullDeref.insert(NullNode);
1069 }
1070 }
Zhongxing Xu60156f02008-11-08 03:45:42 +00001071
1072 // Check for out-of-bound array access.
1073 if (isFeasibleNotNull && isa<loc::MemRegionVal>(LV)) {
1074 const MemRegion* R = cast<loc::MemRegionVal>(LV).getRegion();
1075 if (const ElementRegion* ER = dyn_cast<ElementRegion>(R)) {
1076 // Get the index of the accessed element.
1077 SVal Idx = ER->getIndex();
1078 // Get the extent of the array.
Zhongxing Xu1ed8d4b2008-11-24 07:02:06 +00001079 SVal NumElements = getStoreManager().getSizeInElements(StNotNull,
1080 ER->getSuperRegion());
Zhongxing Xu60156f02008-11-08 03:45:42 +00001081
1082 bool isFeasibleInBound = false;
1083 const GRState* StInBound = AssumeInBound(StNotNull, Idx, NumElements,
1084 true, isFeasibleInBound);
1085
1086 bool isFeasibleOutBound = false;
1087 const GRState* StOutBound = AssumeInBound(StNotNull, Idx, NumElements,
1088 false, isFeasibleOutBound);
1089
Zhongxing Xue8a964b2008-11-22 13:21:46 +00001090 if (isFeasibleOutBound) {
1091 // Report warning.
1092
Zhongxing Xu1c0c2332008-11-23 05:52:28 +00001093 // Make sink node manually.
1094 ProgramPoint::Kind K = isLoad ? ProgramPoint::PostLoadKind
1095 : ProgramPoint::PostStoreKind;
1096
1097 NodeTy* OOBNode = Builder->generateNode(Ex, StOutBound, Pred, K);
1098
1099 if (OOBNode) {
1100 OOBNode->markAsSink();
1101
1102 if (isFeasibleInBound)
1103 ImplicitOOBMemAccesses.insert(OOBNode);
1104 else
1105 ExplicitOOBMemAccesses.insert(OOBNode);
1106 }
Zhongxing Xue8a964b2008-11-22 13:21:46 +00001107 }
1108
1109 return isFeasibleInBound ? StInBound : NULL;
Zhongxing Xu60156f02008-11-08 03:45:42 +00001110 }
1111 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001112
1113 return isFeasibleNotNull ? StNotNull : NULL;
Ted Kremenekec96a2d2008-04-16 18:39:06 +00001114}
1115
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001116//===----------------------------------------------------------------------===//
1117// Transfer function: Function calls.
1118//===----------------------------------------------------------------------===//
Ted Kremenekde434242008-02-19 01:44:53 +00001119void GRExprEngine::VisitCall(CallExpr* CE, NodeTy* Pred,
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001120 CallExpr::arg_iterator AI,
1121 CallExpr::arg_iterator AE,
Douglas Gregor9d293df2008-10-28 00:22:11 +00001122 NodeSet& Dst)
1123{
1124 // Determine the type of function we're calling (if available).
1125 const FunctionTypeProto *Proto = NULL;
1126 QualType FnType = CE->getCallee()->IgnoreParens()->getType();
1127 if (const PointerType *FnTypePtr = FnType->getAsPointerType())
1128 Proto = FnTypePtr->getPointeeType()->getAsFunctionTypeProto();
1129
1130 VisitCallRec(CE, Pred, AI, AE, Dst, Proto, /*ParamIdx=*/0);
1131}
1132
1133void GRExprEngine::VisitCallRec(CallExpr* CE, NodeTy* Pred,
1134 CallExpr::arg_iterator AI,
1135 CallExpr::arg_iterator AE,
1136 NodeSet& Dst, const FunctionTypeProto *Proto,
1137 unsigned ParamIdx) {
Ted Kremenekde434242008-02-19 01:44:53 +00001138
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001139 // Process the arguments.
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001140 if (AI != AE) {
Douglas Gregor9d293df2008-10-28 00:22:11 +00001141 // If the call argument is being bound to a reference parameter,
1142 // visit it as an lvalue, not an rvalue.
1143 bool VisitAsLvalue = false;
1144 if (Proto && ParamIdx < Proto->getNumArgs())
1145 VisitAsLvalue = Proto->getArgType(ParamIdx)->isReferenceType();
1146
1147 NodeSet DstTmp;
1148 if (VisitAsLvalue)
1149 VisitLValue(*AI, Pred, DstTmp);
1150 else
1151 Visit(*AI, Pred, DstTmp);
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001152 ++AI;
1153
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001154 for (NodeSet::iterator DI=DstTmp.begin(), DE=DstTmp.end(); DI != DE; ++DI)
Douglas Gregor9d293df2008-10-28 00:22:11 +00001155 VisitCallRec(CE, *DI, AI, AE, Dst, Proto, ParamIdx + 1);
Ted Kremenekde434242008-02-19 01:44:53 +00001156
1157 return;
1158 }
1159
1160 // If we reach here we have processed all of the arguments. Evaluate
1161 // the callee expression.
Ted Kremeneka1354a52008-03-03 16:47:31 +00001162
Ted Kremenek994a09b2008-02-25 21:16:03 +00001163 NodeSet DstTmp;
Ted Kremenek186350f2008-04-23 20:12:28 +00001164 Expr* Callee = CE->getCallee()->IgnoreParens();
Ted Kremeneka1354a52008-03-03 16:47:31 +00001165
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00001166 Visit(Callee, Pred, DstTmp);
Ted Kremeneka1354a52008-03-03 16:47:31 +00001167
Ted Kremenekde434242008-02-19 01:44:53 +00001168 // Finally, evaluate the function call.
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001169 for (NodeSet::iterator DI = DstTmp.begin(), DE = DstTmp.end(); DI!=DE; ++DI) {
1170
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001171 const GRState* St = GetState(*DI);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001172 SVal L = GetSVal(St, Callee);
Ted Kremenekde434242008-02-19 01:44:53 +00001173
Ted Kremeneka1354a52008-03-03 16:47:31 +00001174 // FIXME: Add support for symbolic function calls (calls involving
1175 // function pointer values that are symbolic).
1176
1177 // Check for undefined control-flow or calls to NULL.
1178
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001179 if (L.isUndef() || isa<loc::ConcreteInt>(L)) {
Ted Kremenekde434242008-02-19 01:44:53 +00001180 NodeTy* N = Builder->generateNode(CE, St, *DI);
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001181
Ted Kremenek2ded35a2008-02-29 23:53:11 +00001182 if (N) {
1183 N->markAsSink();
1184 BadCalls.insert(N);
1185 }
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001186
Ted Kremenekde434242008-02-19 01:44:53 +00001187 continue;
Ted Kremenek4bf38da2008-03-05 21:15:02 +00001188 }
1189
1190 // Check for the "noreturn" attribute.
1191
1192 SaveAndRestore<bool> OldSink(Builder->BuildSinks);
1193
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001194 if (isa<loc::FuncVal>(L)) {
Ted Kremenek636e6ba2008-03-14 21:58:42 +00001195
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001196 FunctionDecl* FD = cast<loc::FuncVal>(L).getDecl();
Ted Kremenek636e6ba2008-03-14 21:58:42 +00001197
1198 if (FD->getAttr<NoReturnAttr>())
Ted Kremenek4bf38da2008-03-05 21:15:02 +00001199 Builder->BuildSinks = true;
Ted Kremenek636e6ba2008-03-14 21:58:42 +00001200 else {
1201 // HACK: Some functions are not marked noreturn, and don't return.
1202 // Here are a few hardwired ones. If this takes too long, we can
1203 // potentially cache these results.
1204 const char* s = FD->getIdentifier()->getName();
1205 unsigned n = strlen(s);
1206
1207 switch (n) {
1208 default:
1209 break;
Ted Kremenek76fdbde2008-03-14 23:25:49 +00001210
Ted Kremenek636e6ba2008-03-14 21:58:42 +00001211 case 4:
Ted Kremenek76fdbde2008-03-14 23:25:49 +00001212 if (!memcmp(s, "exit", 4)) Builder->BuildSinks = true;
1213 break;
1214
1215 case 5:
1216 if (!memcmp(s, "panic", 5)) Builder->BuildSinks = true;
Zhongxing Xubb316c52008-10-07 10:06:03 +00001217 else if (!memcmp(s, "error", 5)) {
Zhongxing Xua90d56e2008-10-09 03:19:06 +00001218 if (CE->getNumArgs() > 0) {
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001219 SVal X = GetSVal(St, *CE->arg_begin());
Zhongxing Xua90d56e2008-10-09 03:19:06 +00001220 // FIXME: use Assume to inspect the possible symbolic value of
1221 // X. Also check the specific signature of error().
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001222 nonloc::ConcreteInt* CI = dyn_cast<nonloc::ConcreteInt>(&X);
Zhongxing Xua90d56e2008-10-09 03:19:06 +00001223 if (CI && CI->getValue() != 0)
Zhongxing Xubb316c52008-10-07 10:06:03 +00001224 Builder->BuildSinks = true;
Zhongxing Xua90d56e2008-10-09 03:19:06 +00001225 }
Zhongxing Xubb316c52008-10-07 10:06:03 +00001226 }
Ted Kremenek76fdbde2008-03-14 23:25:49 +00001227 break;
Ted Kremenek9a094cb2008-04-22 05:37:33 +00001228
1229 case 6:
Ted Kremenek489ecd52008-05-17 00:42:01 +00001230 if (!memcmp(s, "Assert", 6)) {
1231 Builder->BuildSinks = true;
1232 break;
1233 }
Ted Kremenekc7122d52008-05-01 15:55:59 +00001234
1235 // FIXME: This is just a wrapper around throwing an exception.
1236 // Eventually inter-procedural analysis should handle this easily.
1237 if (!memcmp(s, "ziperr", 6)) Builder->BuildSinks = true;
1238
Ted Kremenek9a094cb2008-04-22 05:37:33 +00001239 break;
Ted Kremenek688738f2008-04-23 00:41:25 +00001240
1241 case 7:
1242 if (!memcmp(s, "assfail", 7)) Builder->BuildSinks = true;
1243 break;
Ted Kremenek9a108ae2008-04-22 06:09:33 +00001244
Ted Kremenekf47bb782008-04-30 17:54:04 +00001245 case 8:
1246 if (!memcmp(s ,"db_error", 8)) Builder->BuildSinks = true;
1247 break;
Ted Kremenek24cb8a22008-05-01 17:52:49 +00001248
1249 case 12:
1250 if (!memcmp(s, "__assert_rtn", 12)) Builder->BuildSinks = true;
1251 break;
Ted Kremenekf47bb782008-04-30 17:54:04 +00001252
Ted Kremenekf9683082008-09-19 02:30:47 +00001253 case 13:
1254 if (!memcmp(s, "__assert_fail", 13)) Builder->BuildSinks = true;
1255 break;
1256
Ted Kremenek9a108ae2008-04-22 06:09:33 +00001257 case 14:
Ted Kremenek2598b572008-10-30 00:00:57 +00001258 if (!memcmp(s, "dtrace_assfail", 14) ||
1259 !memcmp(s, "yy_fatal_error", 14))
1260 Builder->BuildSinks = true;
Ted Kremenek9a108ae2008-04-22 06:09:33 +00001261 break;
Ted Kremenekec8a1cb2008-05-17 00:33:23 +00001262
1263 case 26:
Ted Kremenek7386d772008-07-18 16:28:33 +00001264 if (!memcmp(s, "_XCAssertionFailureHandler", 26) ||
1265 !memcmp(s, "_DTAssertionFailureHandler", 26))
Ted Kremenek05a91122008-05-17 00:40:45 +00001266 Builder->BuildSinks = true;
Ted Kremenek7386d772008-07-18 16:28:33 +00001267
Ted Kremenekec8a1cb2008-05-17 00:33:23 +00001268 break;
Ted Kremenek636e6ba2008-03-14 21:58:42 +00001269 }
Ted Kremenek9a108ae2008-04-22 06:09:33 +00001270
Ted Kremenek636e6ba2008-03-14 21:58:42 +00001271 }
1272 }
Ted Kremenek4bf38da2008-03-05 21:15:02 +00001273
1274 // Evaluate the call.
Ted Kremenek186350f2008-04-23 20:12:28 +00001275
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001276 if (isa<loc::FuncVal>(L)) {
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001277
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001278 IdentifierInfo* Info = cast<loc::FuncVal>(L).getDecl()->getIdentifier();
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001279
Ted Kremenek186350f2008-04-23 20:12:28 +00001280 if (unsigned id = Info->getBuiltinID())
Ted Kremenek55aea312008-03-05 22:59:42 +00001281 switch (id) {
1282 case Builtin::BI__builtin_expect: {
1283 // For __builtin_expect, just return the value of the subexpression.
1284 assert (CE->arg_begin() != CE->arg_end());
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001285 SVal X = GetSVal(St, *(CE->arg_begin()));
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001286 MakeNode(Dst, CE, *DI, BindExpr(St, CE, X));
Ted Kremenek55aea312008-03-05 22:59:42 +00001287 continue;
1288 }
1289
Ted Kremenekb3021332008-11-02 00:35:01 +00001290 case Builtin::BI__builtin_alloca: {
Ted Kremenekb3021332008-11-02 00:35:01 +00001291 // FIXME: Refactor into StoreManager itself?
1292 MemRegionManager& RM = getStateManager().getRegionManager();
1293 const MemRegion* R =
Zhongxing Xu6d82f9d2008-11-13 07:58:20 +00001294 RM.getAllocaRegion(CE, Builder->getCurrentBlockCount());
Zhongxing Xubaf03a72008-11-24 09:44:56 +00001295
1296 // Set the extent of the region in bytes. This enables us to use the
1297 // SVal of the argument directly. If we save the extent in bits, we
1298 // cannot represent values like symbol*8.
1299 SVal Extent = GetSVal(St, *(CE->arg_begin()));
1300 St = getStoreManager().setExtent(St, R, Extent);
1301
Ted Kremenekb3021332008-11-02 00:35:01 +00001302 MakeNode(Dst, CE, *DI, BindExpr(St, CE, loc::MemRegionVal(R)));
1303 continue;
1304 }
1305
Ted Kremenek55aea312008-03-05 22:59:42 +00001306 default:
Ted Kremenek55aea312008-03-05 22:59:42 +00001307 break;
1308 }
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001309 }
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001310
Ted Kremenek186350f2008-04-23 20:12:28 +00001311 // Check any arguments passed-by-value against being undefined.
1312
1313 bool badArg = false;
1314
1315 for (CallExpr::arg_iterator I = CE->arg_begin(), E = CE->arg_end();
1316 I != E; ++I) {
1317
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001318 if (GetSVal(GetState(*DI), *I).isUndef()) {
Ted Kremenek186350f2008-04-23 20:12:28 +00001319 NodeTy* N = Builder->generateNode(CE, GetState(*DI), *DI);
Ted Kremenek4bf38da2008-03-05 21:15:02 +00001320
Ted Kremenek186350f2008-04-23 20:12:28 +00001321 if (N) {
1322 N->markAsSink();
1323 UndefArgs[N] = *I;
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001324 }
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001325
Ted Kremenek186350f2008-04-23 20:12:28 +00001326 badArg = true;
1327 break;
1328 }
Ted Kremenekd753f3c2008-03-04 22:01:56 +00001329 }
Ted Kremenek186350f2008-04-23 20:12:28 +00001330
1331 if (badArg)
1332 continue;
1333
1334 // Dispatch to the plug-in transfer function.
1335
1336 unsigned size = Dst.size();
1337 SaveOr OldHasGen(Builder->HasGeneratedNode);
1338 EvalCall(Dst, CE, L, *DI);
1339
1340 // Handle the case where no nodes where generated. Auto-generate that
1341 // contains the updated state if we aren't generating sinks.
1342
1343 if (!Builder->BuildSinks && Dst.size() == size &&
1344 !Builder->HasGeneratedNode)
1345 MakeNode(Dst, CE, *DI, St);
Ted Kremenekde434242008-02-19 01:44:53 +00001346 }
1347}
1348
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001349//===----------------------------------------------------------------------===//
Ted Kremenek97ed4f62008-10-17 00:03:18 +00001350// Transfer function: Objective-C ivar references.
1351//===----------------------------------------------------------------------===//
1352
1353void GRExprEngine::VisitObjCIvarRefExpr(ObjCIvarRefExpr* Ex,
1354 NodeTy* Pred, NodeSet& Dst,
1355 bool asLValue) {
1356
1357 Expr* Base = cast<Expr>(Ex->getBase());
1358 NodeSet Tmp;
1359 Visit(Base, Pred, Tmp);
1360
1361 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
1362 const GRState* St = GetState(*I);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001363 SVal BaseVal = GetSVal(St, Base);
1364 SVal location = StateMgr.GetLValue(St, Ex->getDecl(), BaseVal);
Ted Kremenek97ed4f62008-10-17 00:03:18 +00001365
1366 if (asLValue)
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001367 MakeNode(Dst, Ex, *I, BindExpr(St, Ex, location));
Ted Kremenek97ed4f62008-10-17 00:03:18 +00001368 else
1369 EvalLoad(Dst, Ex, *I, St, location);
1370 }
1371}
1372
1373//===----------------------------------------------------------------------===//
Ted Kremenekaf337412008-11-12 19:24:17 +00001374// Transfer function: Objective-C fast enumeration 'for' statements.
1375//===----------------------------------------------------------------------===//
1376
1377void GRExprEngine::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S,
1378 NodeTy* Pred, NodeSet& Dst) {
1379
1380 // ObjCForCollectionStmts are processed in two places. This method
1381 // handles the case where an ObjCForCollectionStmt* occurs as one of the
1382 // statements within a basic block. This transfer function does two things:
1383 //
1384 // (1) binds the next container value to 'element'. This creates a new
1385 // node in the ExplodedGraph.
1386 //
1387 // (2) binds the value 0/1 to the ObjCForCollectionStmt* itself, indicating
1388 // whether or not the container has any more elements. This value
1389 // will be tested in ProcessBranch. We need to explicitly bind
1390 // this value because a container can contain nil elements.
1391 //
1392 // FIXME: Eventually this logic should actually do dispatches to
1393 // 'countByEnumeratingWithState:objects:count:' (NSFastEnumeration).
1394 // This will require simulating a temporary NSFastEnumerationState, either
1395 // through an SVal or through the use of MemRegions. This value can
1396 // be affixed to the ObjCForCollectionStmt* instead of 0/1; when the loop
1397 // terminates we reclaim the temporary (it goes out of scope) and we
1398 // we can test if the SVal is 0 or if the MemRegion is null (depending
1399 // on what approach we take).
1400 //
1401 // For now: simulate (1) by assigning either a symbol or nil if the
1402 // container is empty. Thus this transfer function will by default
1403 // result in state splitting.
1404
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001405 Stmt* elem = S->getElement();
1406 SVal ElementV;
Ted Kremenekaf337412008-11-12 19:24:17 +00001407
1408 if (DeclStmt* DS = dyn_cast<DeclStmt>(elem)) {
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001409 VarDecl* ElemD = cast<VarDecl>(DS->getSolitaryDecl());
Ted Kremenekaf337412008-11-12 19:24:17 +00001410 assert (ElemD->getInit() == 0);
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001411 ElementV = getStateManager().GetLValue(GetState(Pred), ElemD);
1412 VisitObjCForCollectionStmtAux(S, Pred, Dst, ElementV);
1413 return;
Ted Kremenekaf337412008-11-12 19:24:17 +00001414 }
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001415
1416 NodeSet Tmp;
1417 VisitLValue(cast<Expr>(elem), Pred, Tmp);
Ted Kremenekaf337412008-11-12 19:24:17 +00001418
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001419 for (NodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I!=E; ++I) {
1420 const GRState* state = GetState(*I);
1421 VisitObjCForCollectionStmtAux(S, *I, Dst, GetSVal(state, elem));
1422 }
1423}
1424
1425void GRExprEngine::VisitObjCForCollectionStmtAux(ObjCForCollectionStmt* S,
1426 NodeTy* Pred, NodeSet& Dst,
1427 SVal ElementV) {
1428
1429
Ted Kremenekaf337412008-11-12 19:24:17 +00001430
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001431 // Get the current state. Use 'EvalLocation' to determine if it is a null
1432 // pointer, etc.
1433 Stmt* elem = S->getElement();
1434 GRStateRef state = GRStateRef(EvalLocation(elem, Pred, GetState(Pred),
1435 ElementV, false),
1436 getStateManager());
Ted Kremenekaf337412008-11-12 19:24:17 +00001437
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001438 if (!state)
1439 return;
1440
Ted Kremenekaf337412008-11-12 19:24:17 +00001441 // Handle the case where the container still has elements.
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001442 QualType IntTy = getContext().IntTy;
Ted Kremenekaf337412008-11-12 19:24:17 +00001443 SVal TrueV = NonLoc::MakeVal(getBasicVals(), 1, IntTy);
1444 GRStateRef hasElems = state.BindExpr(S, TrueV);
1445
Ted Kremenekaf337412008-11-12 19:24:17 +00001446 // Handle the case where the container has no elements.
Ted Kremenek116ed0a2008-11-12 21:12:46 +00001447 SVal FalseV = NonLoc::MakeVal(getBasicVals(), 0, IntTy);
1448 GRStateRef noElems = state.BindExpr(S, FalseV);
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001449
1450 if (loc::MemRegionVal* MV = dyn_cast<loc::MemRegionVal>(&ElementV))
1451 if (const TypedRegion* R = dyn_cast<TypedRegion>(MV->getRegion())) {
1452 // FIXME: The proper thing to do is to really iterate over the
1453 // container. We will do this with dispatch logic to the store.
1454 // For now, just 'conjure' up a symbolic value.
1455 QualType T = R->getType(getContext());
1456 assert (Loc::IsLocType(T));
1457 unsigned Count = Builder->getCurrentBlockCount();
1458 loc::SymbolVal SymV(SymMgr.getConjuredSymbol(elem, T, Count));
1459 hasElems = hasElems.BindLoc(ElementV, SymV);
Ted Kremenek116ed0a2008-11-12 21:12:46 +00001460
Ted Kremenek06fb99f2008-11-14 19:47:18 +00001461 // Bind the location to 'nil' on the false branch.
1462 SVal nilV = loc::ConcreteInt(getBasicVals().getValue(0, T));
1463 noElems = noElems.BindLoc(ElementV, nilV);
1464 }
1465
Ted Kremenek116ed0a2008-11-12 21:12:46 +00001466 // Create the new nodes.
1467 MakeNode(Dst, S, Pred, hasElems);
1468 MakeNode(Dst, S, Pred, noElems);
Ted Kremenekaf337412008-11-12 19:24:17 +00001469}
1470
1471//===----------------------------------------------------------------------===//
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001472// Transfer function: Objective-C message expressions.
1473//===----------------------------------------------------------------------===//
1474
1475void GRExprEngine::VisitObjCMessageExpr(ObjCMessageExpr* ME, NodeTy* Pred,
1476 NodeSet& Dst){
1477
1478 VisitObjCMessageExprArgHelper(ME, ME->arg_begin(), ME->arg_end(),
1479 Pred, Dst);
1480}
1481
1482void GRExprEngine::VisitObjCMessageExprArgHelper(ObjCMessageExpr* ME,
Zhongxing Xud3118bd2008-10-31 07:26:14 +00001483 ObjCMessageExpr::arg_iterator AI,
1484 ObjCMessageExpr::arg_iterator AE,
1485 NodeTy* Pred, NodeSet& Dst) {
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001486 if (AI == AE) {
1487
1488 // Process the receiver.
1489
1490 if (Expr* Receiver = ME->getReceiver()) {
1491 NodeSet Tmp;
1492 Visit(Receiver, Pred, Tmp);
1493
1494 for (NodeSet::iterator NI = Tmp.begin(), NE = Tmp.end(); NI != NE; ++NI)
1495 VisitObjCMessageExprDispatchHelper(ME, *NI, Dst);
1496
1497 return;
1498 }
1499
1500 VisitObjCMessageExprDispatchHelper(ME, Pred, Dst);
1501 return;
1502 }
1503
1504 NodeSet Tmp;
1505 Visit(*AI, Pred, Tmp);
1506
1507 ++AI;
1508
1509 for (NodeSet::iterator NI = Tmp.begin(), NE = Tmp.end(); NI != NE; ++NI)
1510 VisitObjCMessageExprArgHelper(ME, AI, AE, *NI, Dst);
1511}
1512
1513void GRExprEngine::VisitObjCMessageExprDispatchHelper(ObjCMessageExpr* ME,
1514 NodeTy* Pred,
1515 NodeSet& Dst) {
1516
1517 // FIXME: More logic for the processing the method call.
1518
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001519 const GRState* St = GetState(Pred);
Ted Kremeneke448ab42008-05-01 18:33:28 +00001520 bool RaisesException = false;
1521
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001522
1523 if (Expr* Receiver = ME->getReceiver()) {
1524
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001525 SVal L = GetSVal(St, Receiver);
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001526
1527 // Check for undefined control-flow or calls to NULL.
1528
1529 if (L.isUndef()) {
1530 NodeTy* N = Builder->generateNode(ME, St, Pred);
1531
1532 if (N) {
1533 N->markAsSink();
1534 UndefReceivers.insert(N);
1535 }
1536
1537 return;
1538 }
Ted Kremeneke448ab42008-05-01 18:33:28 +00001539
1540 // Check if the "raise" message was sent.
1541 if (ME->getSelector() == RaiseSel)
1542 RaisesException = true;
1543 }
1544 else {
1545
1546 IdentifierInfo* ClsName = ME->getClassName();
1547 Selector S = ME->getSelector();
1548
1549 // Check for special instance methods.
1550
1551 if (!NSExceptionII) {
1552 ASTContext& Ctx = getContext();
1553
1554 NSExceptionII = &Ctx.Idents.get("NSException");
1555 }
1556
1557 if (ClsName == NSExceptionII) {
1558
1559 enum { NUM_RAISE_SELECTORS = 2 };
1560
1561 // Lazily create a cache of the selectors.
1562
1563 if (!NSExceptionInstanceRaiseSelectors) {
1564
1565 ASTContext& Ctx = getContext();
1566
1567 NSExceptionInstanceRaiseSelectors = new Selector[NUM_RAISE_SELECTORS];
1568
1569 llvm::SmallVector<IdentifierInfo*, NUM_RAISE_SELECTORS> II;
1570 unsigned idx = 0;
1571
1572 // raise:format:
Ted Kremenek6ff6f8b2008-05-02 17:12:56 +00001573 II.push_back(&Ctx.Idents.get("raise"));
1574 II.push_back(&Ctx.Idents.get("format"));
Ted Kremeneke448ab42008-05-01 18:33:28 +00001575 NSExceptionInstanceRaiseSelectors[idx++] =
1576 Ctx.Selectors.getSelector(II.size(), &II[0]);
1577
1578 // raise:format::arguments:
Ted Kremenek6ff6f8b2008-05-02 17:12:56 +00001579 II.push_back(&Ctx.Idents.get("arguments"));
Ted Kremeneke448ab42008-05-01 18:33:28 +00001580 NSExceptionInstanceRaiseSelectors[idx++] =
1581 Ctx.Selectors.getSelector(II.size(), &II[0]);
1582 }
1583
1584 for (unsigned i = 0; i < NUM_RAISE_SELECTORS; ++i)
1585 if (S == NSExceptionInstanceRaiseSelectors[i]) {
1586 RaisesException = true; break;
1587 }
1588 }
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001589 }
1590
1591 // Check for any arguments that are uninitialized/undefined.
1592
1593 for (ObjCMessageExpr::arg_iterator I = ME->arg_begin(), E = ME->arg_end();
1594 I != E; ++I) {
1595
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001596 if (GetSVal(St, *I).isUndef()) {
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001597
1598 // Generate an error node for passing an uninitialized/undefined value
1599 // as an argument to a message expression. This node is a sink.
1600 NodeTy* N = Builder->generateNode(ME, St, Pred);
1601
1602 if (N) {
1603 N->markAsSink();
1604 MsgExprUndefArgs[N] = *I;
1605 }
1606
1607 return;
1608 }
Ted Kremeneke448ab42008-05-01 18:33:28 +00001609 }
1610
1611 // Check if we raise an exception. For now treat these as sinks. Eventually
1612 // we will want to handle exceptions properly.
1613
1614 SaveAndRestore<bool> OldSink(Builder->BuildSinks);
1615
1616 if (RaisesException)
1617 Builder->BuildSinks = true;
1618
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001619 // Dispatch to plug-in transfer function.
1620
1621 unsigned size = Dst.size();
Ted Kremenek186350f2008-04-23 20:12:28 +00001622 SaveOr OldHasGen(Builder->HasGeneratedNode);
Ted Kremenekb0533962008-04-18 20:35:30 +00001623
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001624 EvalObjCMessageExpr(Dst, ME, Pred);
1625
1626 // Handle the case where no nodes where generated. Auto-generate that
1627 // contains the updated state if we aren't generating sinks.
1628
Ted Kremenekb0533962008-04-18 20:35:30 +00001629 if (!Builder->BuildSinks && Dst.size() == size && !Builder->HasGeneratedNode)
Ted Kremeneke695e1c2008-04-15 23:06:53 +00001630 MakeNode(Dst, ME, Pred, St);
1631}
1632
1633//===----------------------------------------------------------------------===//
1634// Transfer functions: Miscellaneous statements.
1635//===----------------------------------------------------------------------===//
1636
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001637void GRExprEngine::VisitCast(Expr* CastE, Expr* Ex, NodeTy* Pred, NodeSet& Dst){
Ted Kremenek5d3003a2008-02-19 18:52:54 +00001638 NodeSet S1;
Ted Kremenek5d3003a2008-02-19 18:52:54 +00001639 QualType T = CastE->getType();
Zhongxing Xu933c3e12008-10-21 06:54:23 +00001640 QualType ExTy = Ex->getType();
Zhongxing Xued340f72008-10-22 08:02:16 +00001641
Zhongxing Xud3118bd2008-10-31 07:26:14 +00001642 if (const ExplicitCastExpr *ExCast=dyn_cast_or_null<ExplicitCastExpr>(CastE))
Douglas Gregor49badde2008-10-27 19:41:14 +00001643 T = ExCast->getTypeAsWritten();
1644
Zhongxing Xued340f72008-10-22 08:02:16 +00001645 if (ExTy->isArrayType() || ExTy->isFunctionType() || T->isReferenceType())
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00001646 VisitLValue(Ex, Pred, S1);
Ted Kremenek65cfb732008-03-04 22:16:08 +00001647 else
1648 Visit(Ex, Pred, S1);
1649
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001650 // Check for casting to "void".
1651 if (T->isVoidType()) {
Ted Kremenek5d3003a2008-02-19 18:52:54 +00001652
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001653 for (NodeSet::iterator I1 = S1.begin(), E1 = S1.end(); I1 != E1; ++I1)
Ted Kremenek5d3003a2008-02-19 18:52:54 +00001654 Dst.Add(*I1);
1655
Ted Kremenek874d63f2008-01-24 02:02:54 +00001656 return;
1657 }
1658
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001659 // FIXME: The rest of this should probably just go into EvalCall, and
1660 // let the transfer function object be responsible for constructing
1661 // nodes.
1662
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001663 for (NodeSet::iterator I1 = S1.begin(), E1 = S1.end(); I1 != E1; ++I1) {
Ted Kremenek874d63f2008-01-24 02:02:54 +00001664 NodeTy* N = *I1;
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001665 const GRState* St = GetState(N);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001666 SVal V = GetSVal(St, Ex);
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001667
1668 // Unknown?
1669
1670 if (V.isUnknown()) {
1671 Dst.Add(N);
1672 continue;
1673 }
1674
1675 // Undefined?
1676
1677 if (V.isUndef()) {
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001678 MakeNode(Dst, CastE, N, BindExpr(St, CastE, V));
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001679 continue;
1680 }
Ted Kremeneka8fe39f2008-09-19 20:51:22 +00001681
1682 // For const casts, just propagate the value.
1683 ASTContext& C = getContext();
1684
1685 if (C.getCanonicalType(T).getUnqualifiedType() ==
1686 C.getCanonicalType(ExTy).getUnqualifiedType()) {
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001687 MakeNode(Dst, CastE, N, BindExpr(St, CastE, V));
Ted Kremeneka8fe39f2008-09-19 20:51:22 +00001688 continue;
1689 }
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001690
1691 // Check for casts from pointers to integers.
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001692 if (T->isIntegerType() && Loc::IsLocType(ExTy)) {
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001693 unsigned bits = getContext().getTypeSize(ExTy);
1694
1695 // FIXME: Determine if the number of bits of the target type is
1696 // equal or exceeds the number of bits to store the pointer value.
1697 // If not, flag an error.
1698
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001699 V = nonloc::LocAsInteger::Make(getBasicVals(), cast<Loc>(V), bits);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001700 MakeNode(Dst, CastE, N, BindExpr(St, CastE, V));
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001701 continue;
1702 }
1703
1704 // Check for casts from integers to pointers.
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001705 if (Loc::IsLocType(T) && ExTy->isIntegerType())
1706 if (nonloc::LocAsInteger *LV = dyn_cast<nonloc::LocAsInteger>(&V)) {
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001707 // Just unpackage the lval and return it.
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001708 V = LV->getLoc();
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001709 MakeNode(Dst, CastE, N, BindExpr(St, CastE, V));
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001710 continue;
1711 }
Zhongxing Xue1911af2008-10-23 03:10:39 +00001712
Zhongxing Xu37d682a2008-11-14 09:23:38 +00001713 // Check for casts from array type to pointer type.
Zhongxing Xue1911af2008-10-23 03:10:39 +00001714 if (ExTy->isArrayType()) {
Ted Kremenek0fb7c612008-11-15 05:00:27 +00001715 assert(T->isPointerType());
Zhongxing Xue1911af2008-10-23 03:10:39 +00001716 V = StateMgr.ArrayToPointer(V);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001717 MakeNode(Dst, CastE, N, BindExpr(St, CastE, V));
Zhongxing Xue1911af2008-10-23 03:10:39 +00001718 continue;
1719 }
1720
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001721 // Check for casts from AllocaRegion pointer to typed pointer.
1722 if (isa<loc::MemRegionVal>(V)) {
1723 assert(Loc::IsLocType(T));
1724 assert(Loc::IsLocType(ExTy));
1725
1726 // Delegate to store manager.
Zhongxing Xucb529b52008-11-16 07:06:26 +00001727 std::pair<const GRState*, SVal> Res =
1728 getStoreManager().CastRegion(St, V, T, CastE);
1729
1730 const GRState* NewSt = Res.first;
1731 SVal NewPtr = Res.second;
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001732
1733 // If no new region is created, fall through to the default case.
1734 if (NewSt != St) {
Zhongxing Xucb529b52008-11-16 07:06:26 +00001735 MakeNode(Dst, CastE, N, BindExpr(NewSt, CastE, NewPtr));
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001736 continue;
1737 }
1738 }
1739
Ted Kremenek0fe33bc2008-04-22 21:10:18 +00001740 // All other cases.
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001741 MakeNode(Dst, CastE, N, BindExpr(St, CastE, EvalCast(V, CastE->getType())));
Ted Kremenek874d63f2008-01-24 02:02:54 +00001742 }
Ted Kremenek9de04c42008-01-24 20:55:43 +00001743}
1744
Ted Kremenek4f090272008-10-27 21:54:31 +00001745void GRExprEngine::VisitCompoundLiteralExpr(CompoundLiteralExpr* CL,
Zhongxing Xuf22679e2008-11-07 10:38:33 +00001746 NodeTy* Pred, NodeSet& Dst,
1747 bool asLValue) {
Ted Kremenek4f090272008-10-27 21:54:31 +00001748 InitListExpr* ILE = cast<InitListExpr>(CL->getInitializer()->IgnoreParens());
1749 NodeSet Tmp;
1750 Visit(ILE, Pred, Tmp);
1751
1752 for (NodeSet::iterator I = Tmp.begin(), EI = Tmp.end(); I!=EI; ++I) {
Zhongxing Xuf22679e2008-11-07 10:38:33 +00001753 const GRState* St = GetState(*I);
1754 SVal ILV = GetSVal(St, ILE);
1755 St = StateMgr.BindCompoundLiteral(St, CL, ILV);
Ted Kremenek4f090272008-10-27 21:54:31 +00001756
Zhongxing Xuf22679e2008-11-07 10:38:33 +00001757 if (asLValue)
1758 MakeNode(Dst, CL, *I, BindExpr(St, CL, StateMgr.GetLValue(St, CL)));
1759 else
1760 MakeNode(Dst, CL, *I, BindExpr(St, CL, ILV));
Ted Kremenek4f090272008-10-27 21:54:31 +00001761 }
1762}
1763
Ted Kremenek5b7dcce2008-04-22 22:25:27 +00001764void GRExprEngine::VisitDeclStmt(DeclStmt* DS, NodeTy* Pred, NodeSet& Dst) {
Ted Kremenek5b7dcce2008-04-22 22:25:27 +00001765
Ted Kremenek8369a8b2008-10-06 18:43:53 +00001766 // The CFG has one DeclStmt per Decl.
1767 ScopedDecl* D = *DS->decl_begin();
Ted Kremeneke6c62e32008-08-28 18:34:26 +00001768
1769 if (!D || !isa<VarDecl>(D))
Ted Kremenek5b7dcce2008-04-22 22:25:27 +00001770 return;
Ted Kremenek9de04c42008-01-24 20:55:43 +00001771
Ted Kremenek5b7dcce2008-04-22 22:25:27 +00001772 const VarDecl* VD = dyn_cast<VarDecl>(D);
1773
Ted Kremenekaf337412008-11-12 19:24:17 +00001774 Expr* InitEx = const_cast<Expr*>(VD->getInit());
Ted Kremenek5b7dcce2008-04-22 22:25:27 +00001775
1776 // FIXME: static variables may have an initializer, but the second
1777 // time a function is called those values may not be current.
1778 NodeSet Tmp;
1779
Ted Kremenekaf337412008-11-12 19:24:17 +00001780 if (InitEx)
1781 Visit(InitEx, Pred, Tmp);
Ted Kremeneke6c62e32008-08-28 18:34:26 +00001782
1783 if (Tmp.empty())
1784 Tmp.Add(Pred);
Ted Kremenek5b7dcce2008-04-22 22:25:27 +00001785
1786 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001787 const GRState* St = GetState(*I);
Ted Kremenekaf337412008-11-12 19:24:17 +00001788 unsigned Count = Builder->getCurrentBlockCount();
1789
1790 if (InitEx) {
1791 SVal InitVal = GetSVal(St, InitEx);
1792 QualType T = VD->getType();
1793
1794 // Recover some path-sensitivity if a scalar value evaluated to
1795 // UnknownVal.
1796 if (InitVal.isUnknown()) {
1797 if (Loc::IsLocType(T)) {
1798 SymbolID Sym = SymMgr.getConjuredSymbol(InitEx, Count);
1799 InitVal = loc::SymbolVal(Sym);
1800 }
Ted Kremenek062e2f92008-11-13 06:10:40 +00001801 else if (T->isIntegerType() && T->isScalarType()) {
Ted Kremenekaf337412008-11-12 19:24:17 +00001802 SymbolID Sym = SymMgr.getConjuredSymbol(InitEx, Count);
1803 InitVal = nonloc::SymbolVal(Sym);
1804 }
1805 }
1806
1807 St = StateMgr.BindDecl(St, VD, &InitVal, Count);
1808 }
1809 else
1810 St = StateMgr.BindDecl(St, VD, 0, Count);
1811
Ted Kremeneke6c62e32008-08-28 18:34:26 +00001812 MakeNode(Dst, DS, *I, St);
Ted Kremenek5b7dcce2008-04-22 22:25:27 +00001813 }
Ted Kremenek9de04c42008-01-24 20:55:43 +00001814}
Ted Kremenek874d63f2008-01-24 02:02:54 +00001815
Ted Kremenekf75b1862008-10-30 17:47:32 +00001816namespace {
1817 // This class is used by VisitInitListExpr as an item in a worklist
1818 // for processing the values contained in an InitListExpr.
1819class VISIBILITY_HIDDEN InitListWLItem {
1820public:
1821 llvm::ImmutableList<SVal> Vals;
1822 GRExprEngine::NodeTy* N;
1823 InitListExpr::reverse_iterator Itr;
1824
1825 InitListWLItem(GRExprEngine::NodeTy* n, llvm::ImmutableList<SVal> vals,
1826 InitListExpr::reverse_iterator itr)
1827 : Vals(vals), N(n), Itr(itr) {}
1828};
1829}
1830
1831
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001832void GRExprEngine::VisitInitListExpr(InitListExpr* E, NodeTy* Pred,
1833 NodeSet& Dst) {
Ted Kremeneka49e3672008-10-30 23:14:36 +00001834
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001835 const GRState* state = GetState(Pred);
Ted Kremenek76dba7b2008-11-13 05:05:34 +00001836 QualType T = getContext().getCanonicalType(E->getType());
Ted Kremenekf75b1862008-10-30 17:47:32 +00001837 unsigned NumInitElements = E->getNumInits();
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001838
Zhongxing Xu05d1c572008-10-30 05:35:59 +00001839 if (T->isArrayType() || T->isStructureType()) {
Ted Kremenekf75b1862008-10-30 17:47:32 +00001840
Ted Kremeneka49e3672008-10-30 23:14:36 +00001841 llvm::ImmutableList<SVal> StartVals = getBasicVals().getEmptySValList();
Ted Kremenekf75b1862008-10-30 17:47:32 +00001842
Ted Kremeneka49e3672008-10-30 23:14:36 +00001843 // Handle base case where the initializer has no elements.
1844 // e.g: static int* myArray[] = {};
1845 if (NumInitElements == 0) {
1846 SVal V = NonLoc::MakeCompoundVal(T, StartVals, getBasicVals());
1847 MakeNode(Dst, E, Pred, BindExpr(state, E, V));
1848 return;
1849 }
1850
1851 // Create a worklist to process the initializers.
1852 llvm::SmallVector<InitListWLItem, 10> WorkList;
1853 WorkList.reserve(NumInitElements);
1854 WorkList.push_back(InitListWLItem(Pred, StartVals, E->rbegin()));
Ted Kremenekf75b1862008-10-30 17:47:32 +00001855 InitListExpr::reverse_iterator ItrEnd = E->rend();
1856
Ted Kremeneka49e3672008-10-30 23:14:36 +00001857 // Process the worklist until it is empty.
Ted Kremenekf75b1862008-10-30 17:47:32 +00001858 while (!WorkList.empty()) {
1859 InitListWLItem X = WorkList.back();
1860 WorkList.pop_back();
1861
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001862 NodeSet Tmp;
Ted Kremenekf75b1862008-10-30 17:47:32 +00001863 Visit(*X.Itr, X.N, Tmp);
1864
1865 InitListExpr::reverse_iterator NewItr = X.Itr + 1;
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001866
Ted Kremenekf75b1862008-10-30 17:47:32 +00001867 for (NodeSet::iterator NI=Tmp.begin(), NE=Tmp.end(); NI!=NE; ++NI) {
1868 // Get the last initializer value.
1869 state = GetState(*NI);
1870 SVal InitV = GetSVal(state, cast<Expr>(*X.Itr));
1871
1872 // Construct the new list of values by prepending the new value to
1873 // the already constructed list.
1874 llvm::ImmutableList<SVal> NewVals =
1875 getBasicVals().consVals(InitV, X.Vals);
1876
1877 if (NewItr == ItrEnd) {
Zhongxing Xua189dca2008-10-31 03:01:26 +00001878 // Now we have a list holding all init values. Make CompoundValData.
Ted Kremenekf75b1862008-10-30 17:47:32 +00001879 SVal V = NonLoc::MakeCompoundVal(T, NewVals, getBasicVals());
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001880
Ted Kremenekf75b1862008-10-30 17:47:32 +00001881 // Make final state and node.
Ted Kremenek4456da52008-10-30 18:37:08 +00001882 MakeNode(Dst, E, *NI, BindExpr(state, E, V));
Ted Kremenekf75b1862008-10-30 17:47:32 +00001883 }
1884 else {
1885 // Still some initializer values to go. Push them onto the worklist.
1886 WorkList.push_back(InitListWLItem(*NI, NewVals, NewItr));
1887 }
1888 }
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001889 }
Ted Kremenek87903072008-10-30 18:34:31 +00001890
1891 return;
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001892 }
1893
Ted Kremenek062e2f92008-11-13 06:10:40 +00001894 if (T->isUnionType() || T->isVectorType()) {
1895 // FIXME: to be implemented.
1896 // Note: That vectors can return true for T->isIntegerType()
1897 MakeNode(Dst, E, Pred, state);
1898 return;
1899 }
1900
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001901 if (Loc::IsLocType(T) || T->isIntegerType()) {
1902 assert (E->getNumInits() == 1);
1903 NodeSet Tmp;
1904 Expr* Init = E->getInit(0);
1905 Visit(Init, Pred, Tmp);
1906 for (NodeSet::iterator I = Tmp.begin(), EI = Tmp.end(); I != EI; ++I) {
1907 state = GetState(*I);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001908 MakeNode(Dst, E, *I, BindExpr(state, E, GetSVal(state, Init)));
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001909 }
1910 return;
1911 }
1912
Zhongxing Xuc4f87062008-10-30 05:02:23 +00001913
1914 printf("InitListExpr type = %s\n", T.getAsString().c_str());
1915 assert(0 && "unprocessed InitListExpr type");
1916}
Ted Kremenekf233d482008-02-05 00:26:40 +00001917
Sebastian Redl05189992008-11-11 17:56:53 +00001918/// VisitSizeOfAlignOfExpr - Transfer function for sizeof(type).
1919void GRExprEngine::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr* Ex,
1920 NodeTy* Pred,
1921 NodeSet& Dst) {
1922 QualType T = Ex->getTypeOfArgument();
Ted Kremenek87e80342008-03-15 03:13:20 +00001923 uint64_t amt;
1924
1925 if (Ex->isSizeOf()) {
Ted Kremenek9ef1ec92008-02-21 18:43:30 +00001926
Ted Kremenek87e80342008-03-15 03:13:20 +00001927 // FIXME: Add support for VLAs.
1928 if (!T.getTypePtr()->isConstantSizeType())
1929 return;
1930
Ted Kremenekf342d182008-04-30 21:31:12 +00001931 // Some code tries to take the sizeof an ObjCInterfaceType, relying that
1932 // the compiler has laid out its representation. Just report Unknown
1933 // for these.
1934 if (T->isObjCInterfaceType())
1935 return;
1936
Ted Kremenek87e80342008-03-15 03:13:20 +00001937 amt = 1; // Handle sizeof(void)
1938
1939 if (T != getContext().VoidTy)
1940 amt = getContext().getTypeSize(T) / 8;
1941
1942 }
1943 else // Get alignment of the type.
Ted Kremenek897781a2008-03-15 03:13:55 +00001944 amt = getContext().getTypeAlign(T) / 8;
Ted Kremenekd9435bf2008-02-12 19:49:57 +00001945
Ted Kremenek0e561a32008-03-21 21:30:14 +00001946 MakeNode(Dst, Ex, Pred,
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001947 BindExpr(GetState(Pred), Ex,
1948 NonLoc::MakeVal(getBasicVals(), amt, Ex->getType())));
Ted Kremenekd9435bf2008-02-12 19:49:57 +00001949}
1950
Ted Kremenekd8e9f0d2008-02-20 04:02:35 +00001951
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001952void GRExprEngine::VisitUnaryOperator(UnaryOperator* U, NodeTy* Pred,
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00001953 NodeSet& Dst, bool asLValue) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001954
Ted Kremenekd8e9f0d2008-02-20 04:02:35 +00001955 switch (U->getOpcode()) {
Ted Kremenekd8e9f0d2008-02-20 04:02:35 +00001956
1957 default:
Ted Kremenekd8e9f0d2008-02-20 04:02:35 +00001958 break;
Ted Kremenekb8e26e62008-06-19 17:55:38 +00001959
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001960 case UnaryOperator::Deref: {
1961
1962 Expr* Ex = U->getSubExpr()->IgnoreParens();
1963 NodeSet Tmp;
1964 Visit(Ex, Pred, Tmp);
1965
1966 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001967
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001968 const GRState* St = GetState(*I);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001969 SVal location = GetSVal(St, Ex);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001970
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00001971 if (asLValue)
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001972 MakeNode(Dst, U, *I, BindExpr(St, U, location));
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001973 else
Ted Kremenek5c96c272008-05-21 15:48:33 +00001974 EvalLoad(Dst, U, *I, St, location);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00001975 }
1976
1977 return;
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00001978 }
Ted Kremeneka084bb62008-04-30 21:45:55 +00001979
Ted Kremenekb8e26e62008-06-19 17:55:38 +00001980 case UnaryOperator::Real: {
1981
1982 Expr* Ex = U->getSubExpr()->IgnoreParens();
1983 NodeSet Tmp;
1984 Visit(Ex, Pred, Tmp);
1985
1986 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
1987
Zhongxing Xu1c96b242008-10-17 05:57:07 +00001988 // FIXME: We don't have complex SValues yet.
Ted Kremenekb8e26e62008-06-19 17:55:38 +00001989 if (Ex->getType()->isAnyComplexType()) {
1990 // Just report "Unknown."
1991 Dst.Add(*I);
1992 continue;
1993 }
1994
1995 // For all other types, UnaryOperator::Real is an identity operation.
1996 assert (U->getType() == Ex->getType());
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001997 const GRState* St = GetState(*I);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00001998 MakeNode(Dst, U, *I, BindExpr(St, U, GetSVal(St, Ex)));
Ted Kremenekb8e26e62008-06-19 17:55:38 +00001999 }
2000
2001 return;
2002 }
2003
2004 case UnaryOperator::Imag: {
2005
2006 Expr* Ex = U->getSubExpr()->IgnoreParens();
2007 NodeSet Tmp;
2008 Visit(Ex, Pred, Tmp);
2009
2010 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002011 // FIXME: We don't have complex SValues yet.
Ted Kremenekb8e26e62008-06-19 17:55:38 +00002012 if (Ex->getType()->isAnyComplexType()) {
2013 // Just report "Unknown."
2014 Dst.Add(*I);
2015 continue;
2016 }
2017
2018 // For all other types, UnaryOperator::Float returns 0.
2019 assert (Ex->getType()->isIntegerType());
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002020 const GRState* St = GetState(*I);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002021 SVal X = NonLoc::MakeVal(getBasicVals(), 0, Ex->getType());
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002022 MakeNode(Dst, U, *I, BindExpr(St, U, X));
Ted Kremenekb8e26e62008-06-19 17:55:38 +00002023 }
2024
2025 return;
2026 }
2027
2028 // FIXME: Just report "Unknown" for OffsetOf.
Ted Kremeneka084bb62008-04-30 21:45:55 +00002029 case UnaryOperator::OffsetOf:
Ted Kremeneka084bb62008-04-30 21:45:55 +00002030 Dst.Add(Pred);
2031 return;
2032
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00002033 case UnaryOperator::Plus: assert (!asLValue); // FALL-THROUGH.
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002034 case UnaryOperator::Extension: {
2035
2036 // Unary "+" is a no-op, similar to a parentheses. We still have places
2037 // where it may be a block-level expression, so we need to
2038 // generate an extra node that just propagates the value of the
2039 // subexpression.
2040
2041 Expr* Ex = U->getSubExpr()->IgnoreParens();
2042 NodeSet Tmp;
2043 Visit(Ex, Pred, Tmp);
2044
2045 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002046 const GRState* St = GetState(*I);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002047 MakeNode(Dst, U, *I, BindExpr(St, U, GetSVal(St, Ex)));
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002048 }
2049
2050 return;
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002051 }
Ted Kremenek7b8009a2008-01-24 02:28:56 +00002052
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002053 case UnaryOperator::AddrOf: {
Ted Kremenekd8e9f0d2008-02-20 04:02:35 +00002054
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00002055 assert(!asLValue);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002056 Expr* Ex = U->getSubExpr()->IgnoreParens();
2057 NodeSet Tmp;
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00002058 VisitLValue(Ex, Pred, Tmp);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002059
2060 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002061 const GRState* St = GetState(*I);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002062 SVal V = GetSVal(St, Ex);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002063 St = BindExpr(St, U, V);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002064 MakeNode(Dst, U, *I, St);
Ted Kremenek89063af2008-02-21 19:15:37 +00002065 }
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002066
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002067 return;
2068 }
2069
2070 case UnaryOperator::LNot:
2071 case UnaryOperator::Minus:
2072 case UnaryOperator::Not: {
2073
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00002074 assert (!asLValue);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002075 Expr* Ex = U->getSubExpr()->IgnoreParens();
2076 NodeSet Tmp;
2077 Visit(Ex, Pred, Tmp);
2078
2079 for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002080 const GRState* St = GetState(*I);
Ted Kremenek855cd902008-09-30 05:32:44 +00002081
2082 // Get the value of the subexpression.
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002083 SVal V = GetSVal(St, Ex);
Ted Kremenek855cd902008-09-30 05:32:44 +00002084
Ted Kremeneke04a5cb2008-11-15 00:20:05 +00002085 if (V.isUnknownOrUndef()) {
2086 MakeNode(Dst, U, *I, BindExpr(St, U, V));
2087 continue;
2088 }
2089
Ted Kremenek60595da2008-11-15 04:01:56 +00002090// QualType DstT = getContext().getCanonicalType(U->getType());
2091// QualType SrcT = getContext().getCanonicalType(Ex->getType());
2092//
2093// if (DstT != SrcT) // Perform promotions.
2094// V = EvalCast(V, DstT);
2095//
2096// if (V.isUnknownOrUndef()) {
2097// MakeNode(Dst, U, *I, BindExpr(St, U, V));
2098// continue;
2099// }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002100
2101 switch (U->getOpcode()) {
2102 default:
2103 assert(false && "Invalid Opcode.");
2104 break;
2105
2106 case UnaryOperator::Not:
Ted Kremenek60a6e0c2008-10-01 00:21:14 +00002107 // FIXME: Do we need to handle promotions?
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002108 St = BindExpr(St, U, EvalComplement(cast<NonLoc>(V)));
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002109 break;
2110
2111 case UnaryOperator::Minus:
Ted Kremenek60a6e0c2008-10-01 00:21:14 +00002112 // FIXME: Do we need to handle promotions?
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002113 St = BindExpr(St, U, EvalMinus(U, cast<NonLoc>(V)));
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002114 break;
2115
2116 case UnaryOperator::LNot:
2117
2118 // C99 6.5.3.3: "The expression !E is equivalent to (0==E)."
2119 //
2120 // Note: technically we do "E == 0", but this is the same in the
2121 // transfer functions as "0 == E".
2122
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002123 if (isa<Loc>(V)) {
2124 loc::ConcreteInt X(getBasicVals().getZeroWithPtrWidth());
2125 SVal Result = EvalBinOp(BinaryOperator::EQ, cast<Loc>(V), X);
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002126 St = BindExpr(St, U, Result);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002127 }
2128 else {
Ted Kremenek60595da2008-11-15 04:01:56 +00002129 nonloc::ConcreteInt X(getBasicVals().getValue(0, Ex->getType()));
Ted Kremenekdf7533b2008-07-17 21:27:31 +00002130#if 0
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002131 SVal Result = EvalBinOp(BinaryOperator::EQ, cast<NonLoc>(V), X);
2132 St = SetSVal(St, U, Result);
Ted Kremenekdf7533b2008-07-17 21:27:31 +00002133#else
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002134 EvalBinOp(Dst, U, BinaryOperator::EQ, cast<NonLoc>(V), X, *I);
Ted Kremenekdf7533b2008-07-17 21:27:31 +00002135 continue;
2136#endif
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002137 }
2138
2139 break;
2140 }
2141
2142 MakeNode(Dst, U, *I, St);
2143 }
2144
2145 return;
2146 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002147 }
2148
2149 // Handle ++ and -- (both pre- and post-increment).
2150
2151 assert (U->isIncrementDecrementOp());
2152 NodeSet Tmp;
2153 Expr* Ex = U->getSubExpr()->IgnoreParens();
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00002154 VisitLValue(Ex, Pred, Tmp);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002155
2156 for (NodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I!=E; ++I) {
2157
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002158 const GRState* St = GetState(*I);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002159 SVal V1 = GetSVal(St, Ex);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002160
2161 // Perform a load.
2162 NodeSet Tmp2;
2163 EvalLoad(Tmp2, Ex, *I, St, V1);
2164
2165 for (NodeSet::iterator I2 = Tmp2.begin(), E2 = Tmp2.end(); I2!=E2; ++I2) {
2166
2167 St = GetState(*I2);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002168 SVal V2 = GetSVal(St, Ex);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002169
2170 // Propagate unknown and undefined values.
2171 if (V2.isUnknownOrUndef()) {
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002172 MakeNode(Dst, U, *I2, BindExpr(St, U, V2));
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002173 continue;
2174 }
2175
Ted Kremenek443003b2008-02-21 19:29:23 +00002176 // Handle all other values.
Ted Kremenek50d0ac22008-02-15 22:09:30 +00002177
2178 BinaryOperator::Opcode Op = U->isIncrementOp() ? BinaryOperator::Add
2179 : BinaryOperator::Sub;
2180
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002181 SVal Result = EvalBinOp(Op, V2, MakeConstantVal(1U, U));
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002182 St = BindExpr(St, U, U->isPostfix() ? V2 : Result);
Ted Kremenekcf78b6a2008-02-06 22:50:25 +00002183
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002184 // Perform the store.
Ted Kremenek436f2b92008-04-30 04:23:07 +00002185 EvalStore(Dst, U, *I2, St, V1, Result);
Ted Kremenek5b6dc2d2008-02-07 01:08:27 +00002186 }
Ted Kremenek469ecbd2008-04-21 23:43:38 +00002187 }
Ted Kremenek5b6dc2d2008-02-07 01:08:27 +00002188}
2189
Ted Kremenekef44bfb2008-03-17 21:11:24 +00002190void GRExprEngine::VisitAsmStmt(AsmStmt* A, NodeTy* Pred, NodeSet& Dst) {
2191 VisitAsmStmtHelperOutputs(A, A->begin_outputs(), A->end_outputs(), Pred, Dst);
2192}
2193
2194void GRExprEngine::VisitAsmStmtHelperOutputs(AsmStmt* A,
2195 AsmStmt::outputs_iterator I,
2196 AsmStmt::outputs_iterator E,
2197 NodeTy* Pred, NodeSet& Dst) {
2198 if (I == E) {
2199 VisitAsmStmtHelperInputs(A, A->begin_inputs(), A->end_inputs(), Pred, Dst);
2200 return;
2201 }
2202
2203 NodeSet Tmp;
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00002204 VisitLValue(*I, Pred, Tmp);
Ted Kremenekef44bfb2008-03-17 21:11:24 +00002205
2206 ++I;
2207
2208 for (NodeSet::iterator NI = Tmp.begin(), NE = Tmp.end(); NI != NE; ++NI)
2209 VisitAsmStmtHelperOutputs(A, I, E, *NI, Dst);
2210}
2211
2212void GRExprEngine::VisitAsmStmtHelperInputs(AsmStmt* A,
2213 AsmStmt::inputs_iterator I,
2214 AsmStmt::inputs_iterator E,
2215 NodeTy* Pred, NodeSet& Dst) {
2216 if (I == E) {
2217
2218 // We have processed both the inputs and the outputs. All of the outputs
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002219 // should evaluate to Locs. Nuke all of their values.
Ted Kremenekef44bfb2008-03-17 21:11:24 +00002220
2221 // FIXME: Some day in the future it would be nice to allow a "plug-in"
2222 // which interprets the inline asm and stores proper results in the
2223 // outputs.
2224
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002225 const GRState* St = GetState(Pred);
Ted Kremenekef44bfb2008-03-17 21:11:24 +00002226
2227 for (AsmStmt::outputs_iterator OI = A->begin_outputs(),
2228 OE = A->end_outputs(); OI != OE; ++OI) {
2229
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002230 SVal X = GetSVal(St, *OI);
2231 assert (!isa<NonLoc>(X)); // Should be an Lval, or unknown, undef.
Ted Kremenekef44bfb2008-03-17 21:11:24 +00002232
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002233 if (isa<Loc>(X))
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002234 St = BindLoc(St, cast<Loc>(X), UnknownVal());
Ted Kremenekef44bfb2008-03-17 21:11:24 +00002235 }
2236
Ted Kremenek0e561a32008-03-21 21:30:14 +00002237 MakeNode(Dst, A, Pred, St);
Ted Kremenekef44bfb2008-03-17 21:11:24 +00002238 return;
2239 }
2240
2241 NodeSet Tmp;
2242 Visit(*I, Pred, Tmp);
2243
2244 ++I;
2245
2246 for (NodeSet::iterator NI = Tmp.begin(), NE = Tmp.end(); NI != NE; ++NI)
2247 VisitAsmStmtHelperInputs(A, I, E, *NI, Dst);
2248}
2249
Ted Kremenek6b31e8e2008-04-16 23:05:51 +00002250void GRExprEngine::EvalReturn(NodeSet& Dst, ReturnStmt* S, NodeTy* Pred) {
2251 assert (Builder && "GRStmtNodeBuilder must be defined.");
2252
2253 unsigned size = Dst.size();
Ted Kremenekb0533962008-04-18 20:35:30 +00002254
Ted Kremenek186350f2008-04-23 20:12:28 +00002255 SaveAndRestore<bool> OldSink(Builder->BuildSinks);
2256 SaveOr OldHasGen(Builder->HasGeneratedNode);
Ted Kremenekb0533962008-04-18 20:35:30 +00002257
Ted Kremenek729a9a22008-07-17 23:15:45 +00002258 getTF().EvalReturn(Dst, *this, *Builder, S, Pred);
Ted Kremenek6b31e8e2008-04-16 23:05:51 +00002259
Ted Kremenekb0533962008-04-18 20:35:30 +00002260 // Handle the case where no nodes where generated.
Ted Kremenek6b31e8e2008-04-16 23:05:51 +00002261
Ted Kremenekb0533962008-04-18 20:35:30 +00002262 if (!Builder->BuildSinks && Dst.size() == size && !Builder->HasGeneratedNode)
Ted Kremenek6b31e8e2008-04-16 23:05:51 +00002263 MakeNode(Dst, S, Pred, GetState(Pred));
2264}
2265
Ted Kremenek02737ed2008-03-31 15:02:58 +00002266void GRExprEngine::VisitReturnStmt(ReturnStmt* S, NodeTy* Pred, NodeSet& Dst) {
2267
2268 Expr* R = S->getRetValue();
2269
2270 if (!R) {
Ted Kremenek6b31e8e2008-04-16 23:05:51 +00002271 EvalReturn(Dst, S, Pred);
Ted Kremenek02737ed2008-03-31 15:02:58 +00002272 return;
2273 }
Ted Kremenek6b31e8e2008-04-16 23:05:51 +00002274
Ted Kremenek5917d782008-11-21 00:27:44 +00002275 NodeSet Tmp;
2276 Visit(R, Pred, Tmp);
Ted Kremenek02737ed2008-03-31 15:02:58 +00002277
Ted Kremenek5917d782008-11-21 00:27:44 +00002278 for (NodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; ++I) {
2279 SVal X = GetSVal((*I)->getState(), R);
2280
2281 // Check if we return the address of a stack variable.
2282 if (isa<loc::MemRegionVal>(X)) {
2283 // Determine if the value is on the stack.
2284 const MemRegion* R = cast<loc::MemRegionVal>(&X)->getRegion();
Ted Kremenek02737ed2008-03-31 15:02:58 +00002285
Ted Kremenek5917d782008-11-21 00:27:44 +00002286 if (R && getStateManager().hasStackStorage(R)) {
2287 // Create a special node representing the error.
2288 if (NodeTy* N = Builder->generateNode(S, GetState(*I), *I)) {
2289 N->markAsSink();
2290 RetsStackAddr.insert(N);
2291 }
2292 continue;
2293 }
Ted Kremenek02737ed2008-03-31 15:02:58 +00002294 }
Ted Kremenek5917d782008-11-21 00:27:44 +00002295 // Check if we return an undefined value.
2296 else if (X.isUndef()) {
2297 if (NodeTy* N = Builder->generateNode(S, GetState(*I), *I)) {
2298 N->markAsSink();
2299 RetsUndef.insert(N);
2300 }
2301 continue;
2302 }
2303
Ted Kremenek6b31e8e2008-04-16 23:05:51 +00002304 EvalReturn(Dst, S, *I);
Ted Kremenek5917d782008-11-21 00:27:44 +00002305 }
Ted Kremenek02737ed2008-03-31 15:02:58 +00002306}
Ted Kremenek55deb972008-03-25 00:34:37 +00002307
Ted Kremeneke695e1c2008-04-15 23:06:53 +00002308//===----------------------------------------------------------------------===//
2309// Transfer functions: Binary operators.
2310//===----------------------------------------------------------------------===//
2311
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002312const GRState* GRExprEngine::CheckDivideZero(Expr* Ex, const GRState* St,
2313 NodeTy* Pred, SVal Denom) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002314
2315 // Divide by undefined? (potentially zero)
2316
2317 if (Denom.isUndef()) {
2318 NodeTy* DivUndef = Builder->generateNode(Ex, St, Pred);
2319
2320 if (DivUndef) {
2321 DivUndef->markAsSink();
2322 ExplicitBadDivides.insert(DivUndef);
2323 }
2324
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002325 return 0;
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002326 }
2327
2328 // Check for divide/remainder-by-zero.
2329 // First, "assume" that the denominator is 0 or undefined.
2330
2331 bool isFeasibleZero = false;
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002332 const GRState* ZeroSt = Assume(St, Denom, false, isFeasibleZero);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002333
2334 // Second, "assume" that the denominator cannot be 0.
2335
2336 bool isFeasibleNotZero = false;
2337 St = Assume(St, Denom, true, isFeasibleNotZero);
2338
2339 // Create the node for the divide-by-zero (if it occurred).
2340
2341 if (isFeasibleZero)
2342 if (NodeTy* DivZeroNode = Builder->generateNode(Ex, ZeroSt, Pred)) {
2343 DivZeroNode->markAsSink();
2344
2345 if (isFeasibleNotZero)
2346 ImplicitBadDivides.insert(DivZeroNode);
2347 else
2348 ExplicitBadDivides.insert(DivZeroNode);
2349
2350 }
2351
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002352 return isFeasibleNotZero ? St : 0;
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002353}
2354
Ted Kremenek4d4dd852008-02-13 17:41:41 +00002355void GRExprEngine::VisitBinaryOperator(BinaryOperator* B,
Ted Kremenekdaeb9a72008-02-13 23:08:21 +00002356 GRExprEngine::NodeTy* Pred,
2357 GRExprEngine::NodeSet& Dst) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002358
2359 NodeSet Tmp1;
2360 Expr* LHS = B->getLHS()->IgnoreParens();
2361 Expr* RHS = B->getRHS()->IgnoreParens();
Ted Kremenek5b6dc2d2008-02-07 01:08:27 +00002362
2363 if (B->isAssignmentOp())
Zhongxing Xu6d69b5d2008-10-16 06:09:51 +00002364 VisitLValue(LHS, Pred, Tmp1);
Ted Kremenek5b6dc2d2008-02-07 01:08:27 +00002365 else
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002366 Visit(LHS, Pred, Tmp1);
Ted Kremenekcb448ca2008-01-16 00:53:15 +00002367
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002368 for (NodeSet::iterator I1=Tmp1.begin(), E1=Tmp1.end(); I1 != E1; ++I1) {
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002369
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002370 SVal LeftV = GetSVal((*I1)->getState(), LHS);
Ted Kremeneke00fe3f2008-01-17 00:52:48 +00002371
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002372 // Process the RHS.
2373
2374 NodeSet Tmp2;
2375 Visit(RHS, *I1, Tmp2);
2376
2377 // With both the LHS and RHS evaluated, process the operation itself.
2378
2379 for (NodeSet::iterator I2=Tmp2.begin(), E2=Tmp2.end(); I2 != E2; ++I2) {
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002380
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002381 const GRState* St = GetState(*I2);
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002382 const GRState* OldSt = St;
2383
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002384 SVal RightV = GetSVal(St, RHS);
Ted Kremenekcf78b6a2008-02-06 22:50:25 +00002385 BinaryOperator::Opcode Op = B->getOpcode();
2386
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002387 switch (Op) {
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002388
Ted Kremenekab2b8c52008-01-23 19:59:44 +00002389 case BinaryOperator::Assign: {
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002390
Ted Kremenek361fa8e2008-03-12 21:45:47 +00002391 // EXPERIMENTAL: "Conjured" symbols.
Ted Kremenekfd301942008-10-17 22:23:12 +00002392 // FIXME: Handle structs.
2393 QualType T = RHS->getType();
Ted Kremenek361fa8e2008-03-12 21:45:47 +00002394
Ted Kremenek062e2f92008-11-13 06:10:40 +00002395 if (RightV.isUnknown() && (Loc::IsLocType(T) ||
2396 (T->isScalarType() && T->isIntegerType()))) {
Ted Kremenek361fa8e2008-03-12 21:45:47 +00002397 unsigned Count = Builder->getCurrentBlockCount();
2398 SymbolID Sym = SymMgr.getConjuredSymbol(B->getRHS(), Count);
2399
Ted Kremenek062e2f92008-11-13 06:10:40 +00002400 RightV = Loc::IsLocType(T)
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002401 ? cast<SVal>(loc::SymbolVal(Sym))
2402 : cast<SVal>(nonloc::SymbolVal(Sym));
Ted Kremenek361fa8e2008-03-12 21:45:47 +00002403 }
2404
Ted Kremenek361fa8e2008-03-12 21:45:47 +00002405 // Simulate the effects of a "store": bind the value of the RHS
2406 // to the L-Value represented by the LHS.
Ted Kremeneke38718e2008-04-16 18:21:25 +00002407
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002408 EvalStore(Dst, B, LHS, *I2, BindExpr(St, B, RightV), LeftV, RightV);
Ted Kremeneke38718e2008-04-16 18:21:25 +00002409 continue;
Ted Kremenekab2b8c52008-01-23 19:59:44 +00002410 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002411
2412 case BinaryOperator::Div:
2413 case BinaryOperator::Rem:
2414
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002415 // Special checking for integer denominators.
Ted Kremenek062e2f92008-11-13 06:10:40 +00002416 if (RHS->getType()->isIntegerType() &&
2417 RHS->getType()->isScalarType()) {
2418
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002419 St = CheckDivideZero(B, St, *I2, RightV);
2420 if (!St) continue;
2421 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002422
2423 // FALL-THROUGH.
Ted Kremenekab2b8c52008-01-23 19:59:44 +00002424
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002425 default: {
2426
2427 if (B->isAssignmentOp())
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002428 break;
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002429
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002430 // Process non-assignements except commas or short-circuited
2431 // logical expressions (LAnd and LOr).
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002432
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002433 SVal Result = EvalBinOp(Op, LeftV, RightV);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002434
2435 if (Result.isUnknown()) {
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002436 if (OldSt != St) {
2437 // Generate a new node if we have already created a new state.
2438 MakeNode(Dst, B, *I2, St);
2439 }
2440 else
2441 Dst.Add(*I2);
2442
Ted Kremenek89063af2008-02-21 19:15:37 +00002443 continue;
2444 }
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002445
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002446 if (Result.isUndef() && !LeftV.isUndef() && !RightV.isUndef()) {
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002447
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002448 // The operands were *not* undefined, but the result is undefined.
2449 // This is a special node that should be flagged as an error.
Ted Kremenek3c8d0c52008-02-25 18:42:54 +00002450
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002451 if (NodeTy* UndefNode = Builder->generateNode(B, St, *I2)) {
Ted Kremenek8cc13ea2008-02-28 20:32:03 +00002452 UndefNode->markAsSink();
2453 UndefResults.insert(UndefNode);
2454 }
2455
2456 continue;
2457 }
2458
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002459 // Otherwise, create a new node.
2460
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002461 MakeNode(Dst, B, *I2, BindExpr(St, B, Result));
Ted Kremeneke38718e2008-04-16 18:21:25 +00002462 continue;
Ted Kremenekcf78b6a2008-02-06 22:50:25 +00002463 }
Ted Kremenekab2b8c52008-01-23 19:59:44 +00002464 }
Ted Kremenekaa1c4e52008-02-21 18:02:17 +00002465
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002466 assert (B->isCompoundAssignmentOp());
2467
Ted Kremenek934e3e92008-10-27 23:02:39 +00002468 if (Op >= BinaryOperator::AndAssign) {
2469 Op = (BinaryOperator::Opcode) (Op - (BinaryOperator::AndAssign -
2470 BinaryOperator::And));
2471 }
2472 else {
2473 Op = (BinaryOperator::Opcode) (Op - BinaryOperator::MulAssign);
2474 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002475
2476 // Perform a load (the LHS). This performs the checks for
2477 // null dereferences, and so on.
2478 NodeSet Tmp3;
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002479 SVal location = GetSVal(St, LHS);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002480 EvalLoad(Tmp3, LHS, *I2, St, location);
2481
2482 for (NodeSet::iterator I3=Tmp3.begin(), E3=Tmp3.end(); I3!=E3; ++I3) {
2483
2484 St = GetState(*I3);
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002485 SVal V = GetSVal(St, LHS);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002486
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002487 // Check for divide-by-zero.
2488 if ((Op == BinaryOperator::Div || Op == BinaryOperator::Rem)
Ted Kremenek062e2f92008-11-13 06:10:40 +00002489 && RHS->getType()->isIntegerType()
2490 && RHS->getType()->isScalarType()) {
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002491
2492 // CheckDivideZero returns a new state where the denominator
2493 // is assumed to be non-zero.
2494 St = CheckDivideZero(B, St, *I3, RightV);
2495
2496 if (!St)
2497 continue;
2498 }
2499
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002500 // Propagate undefined values (left-side).
2501 if (V.isUndef()) {
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002502 EvalStore(Dst, B, LHS, *I3, BindExpr(St, B, V), location, V);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002503 continue;
2504 }
2505
2506 // Propagate unknown values (left and right-side).
2507 if (RightV.isUnknown() || V.isUnknown()) {
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002508 EvalStore(Dst, B, LHS, *I3, BindExpr(St, B, UnknownVal()), location,
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002509 UnknownVal());
2510 continue;
2511 }
2512
2513 // At this point:
2514 //
2515 // The LHS is not Undef/Unknown.
2516 // The RHS is not Unknown.
2517
2518 // Get the computation type.
2519 QualType CTy = cast<CompoundAssignOperator>(B)->getComputationType();
Ted Kremenek60595da2008-11-15 04:01:56 +00002520 CTy = getContext().getCanonicalType(CTy);
2521
2522 QualType LTy = getContext().getCanonicalType(LHS->getType());
2523 QualType RTy = getContext().getCanonicalType(RHS->getType());
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002524
2525 // Perform promotions.
Ted Kremenek60595da2008-11-15 04:01:56 +00002526 if (LTy != CTy) V = EvalCast(V, CTy);
2527 if (RTy != CTy) RightV = EvalCast(RightV, CTy);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002528
2529 // Evaluate operands and promote to result type.
Ted Kremenekc13b6e22008-10-20 23:40:25 +00002530 if (RightV.isUndef()) {
Ted Kremenek82bae3f2008-09-20 01:50:34 +00002531 // Propagate undefined values (right-side).
Zhongxing Xu8cd5aae2008-10-30 05:33:54 +00002532 EvalStore(Dst,B, LHS, *I3, BindExpr(St, B, RightV), location, RightV);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002533 continue;
2534 }
2535
Ted Kremenek60595da2008-11-15 04:01:56 +00002536 // Compute the result of the operation.
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002537 SVal Result = EvalCast(EvalBinOp(Op, V, RightV), B->getType());
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002538
2539 if (Result.isUndef()) {
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002540 // The operands were not undefined, but the result is undefined.
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002541 if (NodeTy* UndefNode = Builder->generateNode(B, St, *I3)) {
2542 UndefNode->markAsSink();
2543 UndefResults.insert(UndefNode);
2544 }
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002545 continue;
2546 }
Ted Kremenek9ff267d2008-10-20 23:13:25 +00002547
2548 // EXPERIMENTAL: "Conjured" symbols.
2549 // FIXME: Handle structs.
Ted Kremenek60595da2008-11-15 04:01:56 +00002550
2551 SVal LHSVal;
2552
Zhongxing Xu1c0c2332008-11-23 05:52:28 +00002553 if (Result.isUnknown() && (Loc::IsLocType(CTy)
2554 || (CTy->isScalarType() && CTy->isIntegerType()))) {
Ted Kremenek0944ccc2008-10-21 19:49:01 +00002555
Ted Kremenek9ff267d2008-10-20 23:13:25 +00002556 unsigned Count = Builder->getCurrentBlockCount();
Ted Kremenek9ff267d2008-10-20 23:13:25 +00002557
Ted Kremenek60595da2008-11-15 04:01:56 +00002558 // The symbolic value is actually for the type of the left-hand side
2559 // expression, not the computation type, as this is the value the
2560 // LValue on the LHS will bind to.
2561 SymbolID Sym = SymMgr.getConjuredSymbol(B->getRHS(), LTy, Count);
2562 LHSVal = Loc::IsLocType(LTy)
Ted Kremenek9ff267d2008-10-20 23:13:25 +00002563 ? cast<SVal>(loc::SymbolVal(Sym))
Ted Kremenek60595da2008-11-15 04:01:56 +00002564 : cast<SVal>(nonloc::SymbolVal(Sym));
2565
Zhongxing Xu1c0c2332008-11-23 05:52:28 +00002566 // However, we need to convert the symbol to the computation type.
Ted Kremenek60595da2008-11-15 04:01:56 +00002567 Result = (LTy == CTy) ? LHSVal : EvalCast(LHSVal,CTy);
Ted Kremenek9ff267d2008-10-20 23:13:25 +00002568 }
Ted Kremenek60595da2008-11-15 04:01:56 +00002569 else {
2570 // The left-hand side may bind to a different value then the
2571 // computation type.
2572 LHSVal = (LTy == CTy) ? Result : EvalCast(Result,LTy);
2573 }
2574
2575 EvalStore(Dst, B, LHS, *I3, BindExpr(St, B, Result), location, LHSVal);
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002576 }
Ted Kremenekcb448ca2008-01-16 00:53:15 +00002577 }
Ted Kremenekd27f8162008-01-15 23:55:06 +00002578 }
Ted Kremenekd27f8162008-01-15 23:55:06 +00002579}
Ted Kremenekee985462008-01-16 18:18:48 +00002580
2581//===----------------------------------------------------------------------===//
Ted Kremenekdf7533b2008-07-17 21:27:31 +00002582// Transfer-function Helpers.
2583//===----------------------------------------------------------------------===//
2584
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002585void GRExprEngine::EvalBinOp(ExplodedNodeSet<GRState>& Dst, Expr* Ex,
Ted Kremenekdf7533b2008-07-17 21:27:31 +00002586 BinaryOperator::Opcode Op,
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002587 NonLoc L, NonLoc R,
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002588 ExplodedNode<GRState>* Pred) {
Ted Kremenek6297a8e2008-07-18 05:53:58 +00002589
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002590 GRStateSet OStates;
Ted Kremenek6297a8e2008-07-18 05:53:58 +00002591 EvalBinOp(OStates, GetState(Pred), Ex, Op, L, R);
2592
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002593 for (GRStateSet::iterator I=OStates.begin(), E=OStates.end(); I!=E; ++I)
Ted Kremenek6297a8e2008-07-18 05:53:58 +00002594 MakeNode(Dst, Ex, Pred, *I);
2595}
2596
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002597void GRExprEngine::EvalBinOp(GRStateSet& OStates, const GRState* St,
Ted Kremenek6297a8e2008-07-18 05:53:58 +00002598 Expr* Ex, BinaryOperator::Opcode Op,
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002599 NonLoc L, NonLoc R) {
Ted Kremenekdf7533b2008-07-17 21:27:31 +00002600
Ted Kremenek4adc81e2008-08-13 04:27:00 +00002601 GRStateSet::AutoPopulate AP(OStates, St);
Ted Kremeneke04a5cb2008-11-15 00:20:05 +00002602 if (R.isValid()) getTF().EvalBinOpNN(OStates, *this, St, Ex, Op, L, R);
Ted Kremenekdf7533b2008-07-17 21:27:31 +00002603}
2604
2605//===----------------------------------------------------------------------===//
Ted Kremeneke01c9872008-02-14 22:36:46 +00002606// Visualization.
Ted Kremenekee985462008-01-16 18:18:48 +00002607//===----------------------------------------------------------------------===//
2608
Ted Kremenekaa66a322008-01-16 21:46:15 +00002609#ifndef NDEBUG
Ted Kremenek4d4dd852008-02-13 17:41:41 +00002610static GRExprEngine* GraphPrintCheckerState;
Ted Kremeneke97ca062008-03-07 20:57:30 +00002611static SourceManager* GraphPrintSourceManager;
Ted Kremenek3b4f6702008-01-30 23:24:39 +00002612
Ted Kremenekaa66a322008-01-16 21:46:15 +00002613namespace llvm {
2614template<>
Ted Kremenek4d4dd852008-02-13 17:41:41 +00002615struct VISIBILITY_HIDDEN DOTGraphTraits<GRExprEngine::NodeTy*> :
Ted Kremenekaa66a322008-01-16 21:46:15 +00002616 public DefaultDOTGraphTraits {
Ted Kremenek016f52f2008-02-08 21:10:02 +00002617
Ted Kremeneka3fadfc2008-02-14 22:54:53 +00002618 static std::string getNodeAttributes(const GRExprEngine::NodeTy* N, void*) {
2619
2620 if (GraphPrintCheckerState->isImplicitNullDeref(N) ||
Ted Kremenek9dca0622008-02-19 00:22:37 +00002621 GraphPrintCheckerState->isExplicitNullDeref(N) ||
Ted Kremenek4a4e5242008-02-28 09:25:22 +00002622 GraphPrintCheckerState->isUndefDeref(N) ||
2623 GraphPrintCheckerState->isUndefStore(N) ||
2624 GraphPrintCheckerState->isUndefControlFlow(N) ||
Ted Kremenek4d839b42008-03-07 19:04:53 +00002625 GraphPrintCheckerState->isExplicitBadDivide(N) ||
2626 GraphPrintCheckerState->isImplicitBadDivide(N) ||
Ted Kremenek5e03fcb2008-02-29 23:14:48 +00002627 GraphPrintCheckerState->isUndefResult(N) ||
Ted Kremenek2ded35a2008-02-29 23:53:11 +00002628 GraphPrintCheckerState->isBadCall(N) ||
2629 GraphPrintCheckerState->isUndefArg(N))
Ted Kremeneka3fadfc2008-02-14 22:54:53 +00002630 return "color=\"red\",style=\"filled\"";
2631
Ted Kremenek8cc13ea2008-02-28 20:32:03 +00002632 if (GraphPrintCheckerState->isNoReturnCall(N))
2633 return "color=\"blue\",style=\"filled\"";
2634
Ted Kremeneka3fadfc2008-02-14 22:54:53 +00002635 return "";
2636 }
Ted Kremeneked4de312008-02-06 03:56:15 +00002637
Ted Kremenek4d4dd852008-02-13 17:41:41 +00002638 static std::string getNodeLabel(const GRExprEngine::NodeTy* N, void*) {
Ted Kremenekaa66a322008-01-16 21:46:15 +00002639 std::ostringstream Out;
Ted Kremenek803c9ed2008-01-23 22:30:44 +00002640
2641 // Program Location.
Ted Kremenekaa66a322008-01-16 21:46:15 +00002642 ProgramPoint Loc = N->getLocation();
2643
2644 switch (Loc.getKind()) {
2645 case ProgramPoint::BlockEntranceKind:
2646 Out << "Block Entrance: B"
2647 << cast<BlockEntrance>(Loc).getBlock()->getBlockID();
2648 break;
2649
2650 case ProgramPoint::BlockExitKind:
2651 assert (false);
2652 break;
2653
Ted Kremenek1b8bd4d2008-04-29 21:04:26 +00002654 case ProgramPoint::PostLoadKind:
Ted Kremenek331b0ac2008-06-18 05:34:07 +00002655 case ProgramPoint::PostPurgeDeadSymbolsKind:
Ted Kremenekaa66a322008-01-16 21:46:15 +00002656 case ProgramPoint::PostStmtKind: {
Ted Kremeneke97ca062008-03-07 20:57:30 +00002657 const PostStmt& L = cast<PostStmt>(Loc);
2658 Stmt* S = L.getStmt();
2659 SourceLocation SLoc = S->getLocStart();
2660
2661 Out << S->getStmtClassName() << ' ' << (void*) S << ' ';
Ted Kremeneka95d3752008-09-13 05:16:45 +00002662 llvm::raw_os_ostream OutS(Out);
2663 S->printPretty(OutS);
2664 OutS.flush();
Ted Kremenek9ff731d2008-01-24 22:27:20 +00002665
Ted Kremenek9b5551d2008-03-09 03:30:59 +00002666 if (SLoc.isFileID()) {
2667 Out << "\\lline="
2668 << GraphPrintSourceManager->getLineNumber(SLoc) << " col="
Zhongxing Xu5b8b6f22008-10-24 04:33:15 +00002669 << GraphPrintSourceManager->getColumnNumber(SLoc) << "\\l";
Ted Kremenek9b5551d2008-03-09 03:30:59 +00002670 }
Ted Kremenekd131c4f2008-02-07 05:48:01 +00002671
Ted Kremenek5e03fcb2008-02-29 23:14:48 +00002672 if (GraphPrintCheckerState->isImplicitNullDeref(N))
Ted Kremenekd131c4f2008-02-07 05:48:01 +00002673 Out << "\\|Implicit-Null Dereference.\\l";
Ted Kremenek5e03fcb2008-02-29 23:14:48 +00002674 else if (GraphPrintCheckerState->isExplicitNullDeref(N))
Ted Kremenek63a4f692008-02-07 06:04:18 +00002675 Out << "\\|Explicit-Null Dereference.\\l";
Ted Kremenek5e03fcb2008-02-29 23:14:48 +00002676 else if (GraphPrintCheckerState->isUndefDeref(N))
Ted Kremenek4a4e5242008-02-28 09:25:22 +00002677 Out << "\\|Dereference of undefialied value.\\l";
Ted Kremenek5e03fcb2008-02-29 23:14:48 +00002678 else if (GraphPrintCheckerState->isUndefStore(N))
Zhongxing Xu1c96b242008-10-17 05:57:07 +00002679 Out << "\\|Store to Undefined Loc.";
Ted Kremenek4d839b42008-03-07 19:04:53 +00002680 else if (GraphPrintCheckerState->isExplicitBadDivide(N))
2681 Out << "\\|Explicit divide-by zero or undefined value.";
2682 else if (GraphPrintCheckerState->isImplicitBadDivide(N))
2683 Out << "\\|Implicit divide-by zero or undefined value.";
Ted Kremenek5e03fcb2008-02-29 23:14:48 +00002684 else if (GraphPrintCheckerState->isUndefResult(N))
Ted Kremenek8cc13ea2008-02-28 20:32:03 +00002685 Out << "\\|Result of operation is undefined.";
Ted Kremenek8cc13ea2008-02-28 20:32:03 +00002686 else if (GraphPrintCheckerState->isNoReturnCall(N))
2687 Out << "\\|Call to function marked \"noreturn\".";
Ted Kremenek5e03fcb2008-02-29 23:14:48 +00002688 else if (GraphPrintCheckerState->isBadCall(N))
2689 Out << "\\|Call to NULL/Undefined.";
Ted Kremenek2ded35a2008-02-29 23:53:11 +00002690 else if (GraphPrintCheckerState->isUndefArg(N))
2691 Out << "\\|Argument in call is undefined";
Ted Kremenekd131c4f2008-02-07 05:48:01 +00002692
Ted Kremenekaa66a322008-01-16 21:46:15 +00002693 break;
2694 }
2695
2696 default: {
2697 const BlockEdge& E = cast<BlockEdge>(Loc);
2698 Out << "Edge: (B" << E.getSrc()->getBlockID() << ", B"
2699 << E.getDst()->getBlockID() << ')';
Ted Kremenekb38911f2008-01-30 23:03:39 +00002700
2701 if (Stmt* T = E.getSrc()->getTerminator()) {
Ted Kremeneke97ca062008-03-07 20:57:30 +00002702
2703 SourceLocation SLoc = T->getLocStart();
2704
Ted Kremenekb38911f2008-01-30 23:03:39 +00002705 Out << "\\|Terminator: ";
Ted Kremeneke97ca062008-03-07 20:57:30 +00002706
Ted Kremeneka95d3752008-09-13 05:16:45 +00002707 llvm::raw_os_ostream OutS(Out);
2708 E.getSrc()->printTerminator(OutS);
2709 OutS.flush();
Ted Kremenekb38911f2008-01-30 23:03:39 +00002710
Ted Kremenek9b5551d2008-03-09 03:30:59 +00002711 if (SLoc.isFileID()) {
2712 Out << "\\lline="
2713 << GraphPrintSourceManager->getLineNumber(SLoc) << " col="
2714 << GraphPrintSourceManager->getColumnNumber(SLoc);
2715 }
Ted Kremeneke97ca062008-03-07 20:57:30 +00002716
Ted Kremenekdaeb9a72008-02-13 23:08:21 +00002717 if (isa<SwitchStmt>(T)) {
2718 Stmt* Label = E.getDst()->getLabel();
2719
2720 if (Label) {
2721 if (CaseStmt* C = dyn_cast<CaseStmt>(Label)) {
2722 Out << "\\lcase ";
Ted Kremeneka95d3752008-09-13 05:16:45 +00002723 llvm::raw_os_ostream OutS(Out);
2724 C->getLHS()->printPretty(OutS);
2725 OutS.flush();
2726
Ted Kremenekdaeb9a72008-02-13 23:08:21 +00002727 if (Stmt* RHS = C->getRHS()) {
2728 Out << " .. ";
Ted Kremeneka95d3752008-09-13 05:16:45 +00002729 RHS->printPretty(OutS);
2730 OutS.flush();
Ted Kremenekdaeb9a72008-02-13 23:08:21 +00002731 }
2732
2733 Out << ":";
2734 }
2735 else {
2736 assert (isa<DefaultStmt>(Label));
2737 Out << "\\ldefault:";
2738 }
2739 }
2740 else
2741 Out << "\\l(implicit) default:";
2742 }
2743 else if (isa<IndirectGotoStmt>(T)) {
Ted Kremenekb38911f2008-01-30 23:03:39 +00002744 // FIXME
2745 }
2746 else {
2747 Out << "\\lCondition: ";
2748 if (*E.getSrc()->succ_begin() == E.getDst())
2749 Out << "true";
2750 else
2751 Out << "false";
2752 }
2753
2754 Out << "\\l";
2755 }
Ted Kremenek3b4f6702008-01-30 23:24:39 +00002756
Ted Kremenek4a4e5242008-02-28 09:25:22 +00002757 if (GraphPrintCheckerState->isUndefControlFlow(N)) {
2758 Out << "\\|Control-flow based on\\lUndefined value.\\l";
Ted Kremenek3b4f6702008-01-30 23:24:39 +00002759 }
Ted Kremenekaa66a322008-01-16 21:46:15 +00002760 }
2761 }
2762
Ted Kremenekaed9b6a2008-02-28 10:21:43 +00002763 Out << "\\|StateID: " << (void*) N->getState() << "\\|";
Ted Kremenek016f52f2008-02-08 21:10:02 +00002764
Ted Kremenek1c72ef02008-08-16 00:49:49 +00002765 GRStateRef state(N->getState(), GraphPrintCheckerState->getStateManager());
2766 state.printDOT(Out);
Ted Kremenek803c9ed2008-01-23 22:30:44 +00002767
Ted Kremenek803c9ed2008-01-23 22:30:44 +00002768 Out << "\\l";
Ted Kremenekaa66a322008-01-16 21:46:15 +00002769 return Out.str();
2770 }
2771};
2772} // end llvm namespace
2773#endif
2774
Ted Kremenekffe0f432008-03-07 22:58:01 +00002775#ifndef NDEBUG
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002776
2777template <typename ITERATOR>
2778GRExprEngine::NodeTy* GetGraphNode(ITERATOR I) { return *I; }
2779
2780template <>
2781GRExprEngine::NodeTy*
2782GetGraphNode<llvm::DenseMap<GRExprEngine::NodeTy*, Expr*>::iterator>
2783 (llvm::DenseMap<GRExprEngine::NodeTy*, Expr*>::iterator I) {
2784 return I->first;
2785}
2786
Ted Kremenekffe0f432008-03-07 22:58:01 +00002787template <typename ITERATOR>
Ted Kremenekcb612922008-04-18 19:23:43 +00002788static void AddSources(std::vector<GRExprEngine::NodeTy*>& Sources,
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002789 ITERATOR I, ITERATOR E) {
Ted Kremenekffe0f432008-03-07 22:58:01 +00002790
Ted Kremenekd4527582008-09-16 18:44:52 +00002791 llvm::SmallSet<ProgramPoint,10> CachedSources;
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002792
2793 for ( ; I != E; ++I ) {
2794 GRExprEngine::NodeTy* N = GetGraphNode(I);
Ted Kremenekd4527582008-09-16 18:44:52 +00002795 ProgramPoint P = N->getLocation();
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002796
Ted Kremenekd4527582008-09-16 18:44:52 +00002797 if (CachedSources.count(P))
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002798 continue;
2799
Ted Kremenekd4527582008-09-16 18:44:52 +00002800 CachedSources.insert(P);
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002801 Sources.push_back(N);
2802 }
Ted Kremenekffe0f432008-03-07 22:58:01 +00002803}
2804#endif
2805
2806void GRExprEngine::ViewGraph(bool trim) {
Ted Kremenek493d7a22008-03-11 18:25:33 +00002807#ifndef NDEBUG
Ted Kremenekffe0f432008-03-07 22:58:01 +00002808 if (trim) {
Ted Kremenekcb612922008-04-18 19:23:43 +00002809 std::vector<NodeTy*> Src;
2810
2811 // Fixme: Migrate over to the new way of adding nodes.
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002812 AddSources(Src, null_derefs_begin(), null_derefs_end());
2813 AddSources(Src, undef_derefs_begin(), undef_derefs_end());
2814 AddSources(Src, explicit_bad_divides_begin(), explicit_bad_divides_end());
2815 AddSources(Src, undef_results_begin(), undef_results_end());
2816 AddSources(Src, bad_calls_begin(), bad_calls_end());
2817 AddSources(Src, undef_arg_begin(), undef_arg_end());
Ted Kremenek1b9df4c2008-03-14 18:14:50 +00002818 AddSources(Src, undef_branches_begin(), undef_branches_end());
Ted Kremenekffe0f432008-03-07 22:58:01 +00002819
Ted Kremenekcb612922008-04-18 19:23:43 +00002820 // The new way.
2821 for (BugTypeSet::iterator I=BugTypes.begin(), E=BugTypes.end(); I!=E; ++I)
2822 (*I)->GetErrorNodes(Src);
2823
2824
Ted Kremenek7ec07fd2008-03-12 17:18:20 +00002825 ViewGraph(&Src[0], &Src[0]+Src.size());
Ted Kremenekffe0f432008-03-07 22:58:01 +00002826 }
Ted Kremenek493d7a22008-03-11 18:25:33 +00002827 else {
2828 GraphPrintCheckerState = this;
2829 GraphPrintSourceManager = &getContext().getSourceManager();
Ted Kremenekae6814e2008-08-13 21:24:49 +00002830
Ted Kremenekffe0f432008-03-07 22:58:01 +00002831 llvm::ViewGraph(*G.roots_begin(), "GRExprEngine");
Ted Kremenek493d7a22008-03-11 18:25:33 +00002832
2833 GraphPrintCheckerState = NULL;
2834 GraphPrintSourceManager = NULL;
2835 }
2836#endif
2837}
2838
2839void GRExprEngine::ViewGraph(NodeTy** Beg, NodeTy** End) {
2840#ifndef NDEBUG
2841 GraphPrintCheckerState = this;
2842 GraphPrintSourceManager = &getContext().getSourceManager();
Ted Kremenek1c72ef02008-08-16 00:49:49 +00002843
Ted Kremenek493d7a22008-03-11 18:25:33 +00002844 GRExprEngine::GraphTy* TrimmedG = G.Trim(Beg, End);
2845
2846 if (!TrimmedG)
2847 llvm::cerr << "warning: Trimmed ExplodedGraph is empty.\n";
2848 else {
2849 llvm::ViewGraph(*TrimmedG->roots_begin(), "TrimmedGRExprEngine");
2850 delete TrimmedG;
2851 }
Ted Kremenekffe0f432008-03-07 22:58:01 +00002852
Ted Kremenek3b4f6702008-01-30 23:24:39 +00002853 GraphPrintCheckerState = NULL;
Ted Kremeneke97ca062008-03-07 20:57:30 +00002854 GraphPrintSourceManager = NULL;
Ted Kremeneke01c9872008-02-14 22:36:46 +00002855#endif
Ted Kremenekee985462008-01-16 18:18:48 +00002856}