1 //===- CallEvent.cpp - Wrapper for all function and method calls ----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 /// \file This file defines CallEvent and its subclasses, which represent path-
11 /// sensitive instances of different kinds of function and method calls
12 /// (C, C++, and Objective-C).
13 //
14 //===----------------------------------------------------------------------===//
15 
16 #include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/Decl.h"
19 #include "clang/AST/DeclBase.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclObjC.h"
22 #include "clang/AST/Expr.h"
23 #include "clang/AST/ExprCXX.h"
24 #include "clang/AST/ExprObjC.h"
25 #include "clang/AST/ParentMap.h"
26 #include "clang/AST/Stmt.h"
27 #include "clang/AST/Type.h"
28 #include "clang/Analysis/AnalysisDeclContext.h"
29 #include "clang/Analysis/CFG.h"
30 #include "clang/Analysis/CFGStmtMap.h"
31 #include "clang/Analysis/ProgramPoint.h"
32 #include "clang/CrossTU/CrossTranslationUnit.h"
33 #include "clang/Basic/IdentifierTable.h"
34 #include "clang/Basic/LLVM.h"
35 #include "clang/Basic/SourceLocation.h"
36 #include "clang/Basic/SourceManager.h"
37 #include "clang/Basic/Specifiers.h"
38 #include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
39 #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
40 #include "clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h"
41 #include "clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h"
42 #include "clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h"
43 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
44 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h"
45 #include "clang/StaticAnalyzer/Core/PathSensitive/SVals.h"
46 #include "clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h"
47 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h"
48 #include "llvm/ADT/ArrayRef.h"
49 #include "llvm/ADT/DenseMap.h"
50 #include "llvm/ADT/None.h"
51 #include "llvm/ADT/Optional.h"
52 #include "llvm/ADT/PointerIntPair.h"
53 #include "llvm/ADT/SmallSet.h"
54 #include "llvm/ADT/SmallVector.h"
55 #include "llvm/ADT/StringExtras.h"
56 #include "llvm/ADT/StringRef.h"
57 #include "llvm/Support/Casting.h"
58 #include "llvm/Support/Compiler.h"
59 #include "llvm/Support/Debug.h"
60 #include "llvm/Support/ErrorHandling.h"
61 #include "llvm/Support/raw_ostream.h"
62 #include <cassert>
63 #include <utility>
64 
65 #define DEBUG_TYPE "static-analyzer-call-event"
66 
67 using namespace clang;
68 using namespace ento;
69 
70 QualType CallEvent::getResultType() const {
71   ASTContext &Ctx = getState()->getStateManager().getContext();
72   const Expr *E = getOriginExpr();
73   if (!E)
74     return Ctx.VoidTy;
75   assert(E);
76 
77   QualType ResultTy = E->getType();
78 
79   // A function that returns a reference to 'int' will have a result type
80   // of simply 'int'. Check the origin expr's value kind to recover the
81   // proper type.
82   switch (E->getValueKind()) {
83   case VK_LValue:
84     ResultTy = Ctx.getLValueReferenceType(ResultTy);
85     break;
86   case VK_XValue:
87     ResultTy = Ctx.getRValueReferenceType(ResultTy);
88     break;
89   case VK_RValue:
90     // No adjustment is necessary.
91     break;
92   }
93 
94   return ResultTy;
95 }
96 
97 static bool isCallback(QualType T) {
98   // If a parameter is a block or a callback, assume it can modify pointer.
99   if (T->isBlockPointerType() ||
100       T->isFunctionPointerType() ||
101       T->isObjCSelType())
102     return true;
103 
104   // Check if a callback is passed inside a struct (for both, struct passed by
105   // reference and by value). Dig just one level into the struct for now.
106 
107   if (T->isAnyPointerType() || T->isReferenceType())
108     T = T->getPointeeType();
109 
110   if (const RecordType *RT = T->getAsStructureType()) {
111     const RecordDecl *RD = RT->getDecl();
112     for (const auto *I : RD->fields()) {
113       QualType FieldT = I->getType();
114       if (FieldT->isBlockPointerType() || FieldT->isFunctionPointerType())
115         return true;
116     }
117   }
118   return false;
119 }
120 
121 static bool isVoidPointerToNonConst(QualType T) {
122   if (const auto *PT = T->getAs<PointerType>()) {
123     QualType PointeeTy = PT->getPointeeType();
124     if (PointeeTy.isConstQualified())
125       return false;
126     return PointeeTy->isVoidType();
127   } else
128     return false;
129 }
130 
131 bool CallEvent::hasNonNullArgumentsWithType(bool (*Condition)(QualType)) const {
132   unsigned NumOfArgs = getNumArgs();
133 
134   // If calling using a function pointer, assume the function does not
135   // satisfy the callback.
136   // TODO: We could check the types of the arguments here.
137   if (!getDecl())
138     return false;
139 
140   unsigned Idx = 0;
141   for (CallEvent::param_type_iterator I = param_type_begin(),
142                                       E = param_type_end();
143        I != E && Idx < NumOfArgs; ++I, ++Idx) {
144     // If the parameter is 0, it's harmless.
145     if (getArgSVal(Idx).isZeroConstant())
146       continue;
147 
148     if (Condition(*I))
149       return true;
150   }
151   return false;
152 }
153 
154 bool CallEvent::hasNonZeroCallbackArg() const {
155   return hasNonNullArgumentsWithType(isCallback);
156 }
157 
158 bool CallEvent::hasVoidPointerToNonConstArg() const {
159   return hasNonNullArgumentsWithType(isVoidPointerToNonConst);
160 }
161 
162 bool CallEvent::isGlobalCFunction(StringRef FunctionName) const {
163   const auto *FD = dyn_cast_or_null<FunctionDecl>(getDecl());
164   if (!FD)
165     return false;
166 
167   return CheckerContext::isCLibraryFunction(FD, FunctionName);
168 }
169 
170 AnalysisDeclContext *CallEvent::getCalleeAnalysisDeclContext() const {
171   const Decl *D = getDecl();
172   if (!D)
173     return nullptr;
174 
175   // TODO: For now we skip functions without definitions, even if we have
176   // our own getDecl(), because it's hard to find out which re-declaration
177   // is going to be used, and usually clients don't really care about this
178   // situation because there's a loss of precision anyway because we cannot
179   // inline the call.
180   RuntimeDefinition RD = getRuntimeDefinition();
181   if (!RD.getDecl())
182     return nullptr;
183 
184   AnalysisDeclContext *ADC =
185       LCtx->getAnalysisDeclContext()->getManager()->getContext(D);
186 
187   // TODO: For now we skip virtual functions, because this also rises
188   // the problem of which decl to use, but now it's across different classes.
189   if (RD.mayHaveOtherDefinitions() || RD.getDecl() != ADC->getDecl())
190     return nullptr;
191 
192   return ADC;
193 }
194 
195 const StackFrameContext *CallEvent::getCalleeStackFrame() const {
196   AnalysisDeclContext *ADC = getCalleeAnalysisDeclContext();
197   if (!ADC)
198     return nullptr;
199 
200   const Expr *E = getOriginExpr();
201   if (!E)
202     return nullptr;
203 
204   // Recover CFG block via reverse lookup.
205   // TODO: If we were to keep CFG element information as part of the CallEvent
206   // instead of doing this reverse lookup, we would be able to build the stack
207   // frame for non-expression-based calls, and also we wouldn't need the reverse
208   // lookup.
209   CFGStmtMap *Map = LCtx->getAnalysisDeclContext()->getCFGStmtMap();
210   const CFGBlock *B = Map->getBlock(E);
211   assert(B);
212 
213   // Also recover CFG index by scanning the CFG block.
214   unsigned Idx = 0, Sz = B->size();
215   for (; Idx < Sz; ++Idx)
216     if (auto StmtElem = (*B)[Idx].getAs<CFGStmt>())
217       if (StmtElem->getStmt() == E)
218         break;
219   assert(Idx < Sz);
220 
221   return ADC->getManager()->getStackFrame(ADC, LCtx, E, B, Idx);
222 }
223 
224 const VarRegion *CallEvent::getParameterLocation(unsigned Index) const {
225   const StackFrameContext *SFC = getCalleeStackFrame();
226   // We cannot construct a VarRegion without a stack frame.
227   if (!SFC)
228     return nullptr;
229 
230   // Retrieve parameters of the definition, which are different from
231   // CallEvent's parameters() because getDecl() isn't necessarily
232   // the definition. SFC contains the definition that would be used
233   // during analysis.
234   const Decl *D = SFC->getDecl();
235 
236   // TODO: Refactor into a virtual method of CallEvent, like parameters().
237   const ParmVarDecl *PVD = nullptr;
238   if (const auto *FD = dyn_cast<FunctionDecl>(D))
239     PVD = FD->parameters()[Index];
240   else if (const auto *BD = dyn_cast<BlockDecl>(D))
241     PVD = BD->parameters()[Index];
242   else if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
243     PVD = MD->parameters()[Index];
244   else if (const auto *CD = dyn_cast<CXXConstructorDecl>(D))
245     PVD = CD->parameters()[Index];
246   assert(PVD && "Unexpected Decl kind!");
247 
248   const VarRegion *VR =
249       State->getStateManager().getRegionManager().getVarRegion(PVD, SFC);
250 
251   // This sanity check would fail if our parameter declaration doesn't
252   // correspond to the stack frame's function declaration.
253   assert(VR->getStackFrame() == SFC);
254 
255   return VR;
256 }
257 
258 /// Returns true if a type is a pointer-to-const or reference-to-const
259 /// with no further indirection.
260 static bool isPointerToConst(QualType Ty) {
261   QualType PointeeTy = Ty->getPointeeType();
262   if (PointeeTy == QualType())
263     return false;
264   if (!PointeeTy.isConstQualified())
265     return false;
266   if (PointeeTy->isAnyPointerType())
267     return false;
268   return true;
269 }
270 
271 // Try to retrieve the function declaration and find the function parameter
272 // types which are pointers/references to a non-pointer const.
273 // We will not invalidate the corresponding argument regions.
274 static void findPtrToConstParams(llvm::SmallSet<unsigned, 4> &PreserveArgs,
275                                  const CallEvent &Call) {
276   unsigned Idx = 0;
277   for (CallEvent::param_type_iterator I = Call.param_type_begin(),
278                                       E = Call.param_type_end();
279        I != E; ++I, ++Idx) {
280     if (isPointerToConst(*I))
281       PreserveArgs.insert(Idx);
282   }
283 }
284 
285 ProgramStateRef CallEvent::invalidateRegions(unsigned BlockCount,
286                                              ProgramStateRef Orig) const {
287   ProgramStateRef Result = (Orig ? Orig : getState());
288 
289   // Don't invalidate anything if the callee is marked pure/const.
290   if (const Decl *callee = getDecl())
291     if (callee->hasAttr<PureAttr>() || callee->hasAttr<ConstAttr>())
292       return Result;
293 
294   SmallVector<SVal, 8> ValuesToInvalidate;
295   RegionAndSymbolInvalidationTraits ETraits;
296 
297   getExtraInvalidatedValues(ValuesToInvalidate, &ETraits);
298 
299   // Indexes of arguments whose values will be preserved by the call.
300   llvm::SmallSet<unsigned, 4> PreserveArgs;
301   if (!argumentsMayEscape())
302     findPtrToConstParams(PreserveArgs, *this);
303 
304   for (unsigned Idx = 0, Count = getNumArgs(); Idx != Count; ++Idx) {
305     // Mark this region for invalidation.  We batch invalidate regions
306     // below for efficiency.
307     if (PreserveArgs.count(Idx))
308       if (const MemRegion *MR = getArgSVal(Idx).getAsRegion())
309         ETraits.setTrait(MR->getBaseRegion(),
310                         RegionAndSymbolInvalidationTraits::TK_PreserveContents);
311         // TODO: Factor this out + handle the lower level const pointers.
312 
313     ValuesToInvalidate.push_back(getArgSVal(Idx));
314 
315     // If a function accepts an object by argument (which would of course be a
316     // temporary that isn't lifetime-extended), invalidate the object itself,
317     // not only other objects reachable from it. This is necessary because the
318     // destructor has access to the temporary object after the call.
319     // TODO: Support placement arguments once we start
320     // constructing them directly.
321     // TODO: This is unnecessary when there's no destructor, but that's
322     // currently hard to figure out.
323     if (getKind() != CE_CXXAllocator)
324       if (isArgumentConstructedDirectly(Idx))
325         if (auto AdjIdx = getAdjustedParameterIndex(Idx))
326           if (const VarRegion *VR = getParameterLocation(*AdjIdx))
327             ValuesToInvalidate.push_back(loc::MemRegionVal(VR));
328   }
329 
330   // Invalidate designated regions using the batch invalidation API.
331   // NOTE: Even if RegionsToInvalidate is empty, we may still invalidate
332   //  global variables.
333   return Result->invalidateRegions(ValuesToInvalidate, getOriginExpr(),
334                                    BlockCount, getLocationContext(),
335                                    /*CausedByPointerEscape*/ true,
336                                    /*Symbols=*/nullptr, this, &ETraits);
337 }
338 
339 ProgramPoint CallEvent::getProgramPoint(bool IsPreVisit,
340                                         const ProgramPointTag *Tag) const {
341   if (const Expr *E = getOriginExpr()) {
342     if (IsPreVisit)
343       return PreStmt(E, getLocationContext(), Tag);
344     return PostStmt(E, getLocationContext(), Tag);
345   }
346 
347   const Decl *D = getDecl();
348   assert(D && "Cannot get a program point without a statement or decl");
349 
350   SourceLocation Loc = getSourceRange().getBegin();
351   if (IsPreVisit)
352     return PreImplicitCall(D, Loc, getLocationContext(), Tag);
353   return PostImplicitCall(D, Loc, getLocationContext(), Tag);
354 }
355 
356 bool CallEvent::isCalled(const CallDescription &CD) const {
357   // FIXME: Add ObjC Message support.
358   if (getKind() == CE_ObjCMessage)
359     return false;
360   if (!CD.IsLookupDone) {
361     CD.IsLookupDone = true;
362     CD.II = &getState()->getStateManager().getContext().Idents.get(
363         CD.getFunctionName());
364   }
365   const IdentifierInfo *II = getCalleeIdentifier();
366   if (!II || II != CD.II)
367     return false;
368 
369   const Decl *D = getDecl();
370   // If CallDescription provides prefix names, use them to improve matching
371   // accuracy.
372   if (CD.QualifiedName.size() > 1 && D) {
373     const DeclContext *Ctx = D->getDeclContext();
374     // See if we'll be able to match them all.
375     size_t NumUnmatched = CD.QualifiedName.size() - 1;
376     for (; Ctx && isa<NamedDecl>(Ctx); Ctx = Ctx->getParent()) {
377       if (NumUnmatched == 0)
378         break;
379 
380       if (const auto *ND = dyn_cast<NamespaceDecl>(Ctx)) {
381         if (ND->getName() == CD.QualifiedName[NumUnmatched - 1])
382           --NumUnmatched;
383         continue;
384       }
385 
386       if (const auto *RD = dyn_cast<RecordDecl>(Ctx)) {
387         if (RD->getName() == CD.QualifiedName[NumUnmatched - 1])
388           --NumUnmatched;
389         continue;
390       }
391     }
392 
393     if (NumUnmatched > 0)
394       return false;
395   }
396 
397   return (CD.RequiredArgs == CallDescription::NoArgRequirement ||
398           CD.RequiredArgs == getNumArgs());
399 }
400 
401 SVal CallEvent::getArgSVal(unsigned Index) const {
402   const Expr *ArgE = getArgExpr(Index);
403   if (!ArgE)
404     return UnknownVal();
405   return getSVal(ArgE);
406 }
407 
408 SourceRange CallEvent::getArgSourceRange(unsigned Index) const {
409   const Expr *ArgE = getArgExpr(Index);
410   if (!ArgE)
411     return {};
412   return ArgE->getSourceRange();
413 }
414 
415 SVal CallEvent::getReturnValue() const {
416   const Expr *E = getOriginExpr();
417   if (!E)
418     return UndefinedVal();
419   return getSVal(E);
420 }
421 
422 LLVM_DUMP_METHOD void CallEvent::dump() const { dump(llvm::errs()); }
423 
424 void CallEvent::dump(raw_ostream &Out) const {
425   ASTContext &Ctx = getState()->getStateManager().getContext();
426   if (const Expr *E = getOriginExpr()) {
427     E->printPretty(Out, nullptr, Ctx.getPrintingPolicy());
428     Out << "\n";
429     return;
430   }
431 
432   if (const Decl *D = getDecl()) {
433     Out << "Call to ";
434     D->print(Out, Ctx.getPrintingPolicy());
435     return;
436   }
437 
438   // FIXME: a string representation of the kind would be nice.
439   Out << "Unknown call (type " << getKind() << ")";
440 }
441 
442 bool CallEvent::isCallStmt(const Stmt *S) {
443   return isa<CallExpr>(S) || isa<ObjCMessageExpr>(S)
444                           || isa<CXXConstructExpr>(S)
445                           || isa<CXXNewExpr>(S);
446 }
447 
448 QualType CallEvent::getDeclaredResultType(const Decl *D) {
449   assert(D);
450   if (const auto *FD = dyn_cast<FunctionDecl>(D))
451     return FD->getReturnType();
452   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
453     return MD->getReturnType();
454   if (const auto *BD = dyn_cast<BlockDecl>(D)) {
455     // Blocks are difficult because the return type may not be stored in the
456     // BlockDecl itself. The AST should probably be enhanced, but for now we
457     // just do what we can.
458     // If the block is declared without an explicit argument list, the
459     // signature-as-written just includes the return type, not the entire
460     // function type.
461     // FIXME: All blocks should have signatures-as-written, even if the return
462     // type is inferred. (That's signified with a dependent result type.)
463     if (const TypeSourceInfo *TSI = BD->getSignatureAsWritten()) {
464       QualType Ty = TSI->getType();
465       if (const FunctionType *FT = Ty->getAs<FunctionType>())
466         Ty = FT->getReturnType();
467       if (!Ty->isDependentType())
468         return Ty;
469     }
470 
471     return {};
472   }
473 
474   llvm_unreachable("unknown callable kind");
475 }
476 
477 bool CallEvent::isVariadic(const Decl *D) {
478   assert(D);
479 
480   if (const auto *FD = dyn_cast<FunctionDecl>(D))
481     return FD->isVariadic();
482   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
483     return MD->isVariadic();
484   if (const auto *BD = dyn_cast<BlockDecl>(D))
485     return BD->isVariadic();
486 
487   llvm_unreachable("unknown callable kind");
488 }
489 
490 static void addParameterValuesToBindings(const StackFrameContext *CalleeCtx,
491                                          CallEvent::BindingsTy &Bindings,
492                                          SValBuilder &SVB,
493                                          const CallEvent &Call,
494                                          ArrayRef<ParmVarDecl*> parameters) {
495   MemRegionManager &MRMgr = SVB.getRegionManager();
496 
497   // If the function has fewer parameters than the call has arguments, we simply
498   // do not bind any values to them.
499   unsigned NumArgs = Call.getNumArgs();
500   unsigned Idx = 0;
501   ArrayRef<ParmVarDecl*>::iterator I = parameters.begin(), E = parameters.end();
502   for (; I != E && Idx < NumArgs; ++I, ++Idx) {
503     const ParmVarDecl *ParamDecl = *I;
504     assert(ParamDecl && "Formal parameter has no decl?");
505 
506     if (Call.getKind() != CE_CXXAllocator)
507       if (Call.isArgumentConstructedDirectly(Idx))
508         continue;
509 
510     SVal ArgVal = Call.getArgSVal(Idx);
511     if (!ArgVal.isUnknown()) {
512       Loc ParamLoc = SVB.makeLoc(MRMgr.getVarRegion(ParamDecl, CalleeCtx));
513       Bindings.push_back(std::make_pair(ParamLoc, ArgVal));
514     }
515   }
516 
517   // FIXME: Variadic arguments are not handled at all right now.
518 }
519 
520 ArrayRef<ParmVarDecl*> AnyFunctionCall::parameters() const {
521   const FunctionDecl *D = getDecl();
522   if (!D)
523     return None;
524   return D->parameters();
525 }
526 
527 RuntimeDefinition AnyFunctionCall::getRuntimeDefinition() const {
528   const FunctionDecl *FD = getDecl();
529   if (!FD)
530     return {};
531 
532   // Note that the AnalysisDeclContext will have the FunctionDecl with
533   // the definition (if one exists).
534   AnalysisDeclContext *AD =
535     getLocationContext()->getAnalysisDeclContext()->
536     getManager()->getContext(FD);
537   bool IsAutosynthesized;
538   Stmt* Body = AD->getBody(IsAutosynthesized);
539   LLVM_DEBUG({
540     if (IsAutosynthesized)
541       llvm::dbgs() << "Using autosynthesized body for " << FD->getName()
542                    << "\n";
543   });
544   if (Body) {
545     const Decl* Decl = AD->getDecl();
546     return RuntimeDefinition(Decl);
547   }
548 
549   SubEngine *Engine = getState()->getStateManager().getOwningEngine();
550   AnalyzerOptions &Opts = Engine->getAnalysisManager().options;
551 
552   // Try to get CTU definition only if CTUDir is provided.
553   if (!Opts.naiveCTUEnabled())
554     return {};
555 
556   cross_tu::CrossTranslationUnitContext &CTUCtx =
557       *Engine->getCrossTranslationUnitContext();
558   llvm::Expected<const FunctionDecl *> CTUDeclOrError =
559       CTUCtx.getCrossTUDefinition(FD, Opts.getCTUDir(), Opts.getCTUIndexName());
560 
561   if (!CTUDeclOrError) {
562     handleAllErrors(CTUDeclOrError.takeError(),
563                     [&](const cross_tu::IndexError &IE) {
564                       CTUCtx.emitCrossTUDiagnostics(IE);
565                     });
566     return {};
567   }
568 
569   return RuntimeDefinition(*CTUDeclOrError);
570 }
571 
572 void AnyFunctionCall::getInitialStackFrameContents(
573                                         const StackFrameContext *CalleeCtx,
574                                         BindingsTy &Bindings) const {
575   const auto *D = cast<FunctionDecl>(CalleeCtx->getDecl());
576   SValBuilder &SVB = getState()->getStateManager().getSValBuilder();
577   addParameterValuesToBindings(CalleeCtx, Bindings, SVB, *this,
578                                D->parameters());
579 }
580 
581 bool AnyFunctionCall::argumentsMayEscape() const {
582   if (CallEvent::argumentsMayEscape() || hasVoidPointerToNonConstArg())
583     return true;
584 
585   const FunctionDecl *D = getDecl();
586   if (!D)
587     return true;
588 
589   const IdentifierInfo *II = D->getIdentifier();
590   if (!II)
591     return false;
592 
593   // This set of "escaping" APIs is
594 
595   // - 'int pthread_setspecific(ptheread_key k, const void *)' stores a
596   //   value into thread local storage. The value can later be retrieved with
597   //   'void *ptheread_getspecific(pthread_key)'. So even thought the
598   //   parameter is 'const void *', the region escapes through the call.
599   if (II->isStr("pthread_setspecific"))
600     return true;
601 
602   // - xpc_connection_set_context stores a value which can be retrieved later
603   //   with xpc_connection_get_context.
604   if (II->isStr("xpc_connection_set_context"))
605     return true;
606 
607   // - funopen - sets a buffer for future IO calls.
608   if (II->isStr("funopen"))
609     return true;
610 
611   // - __cxa_demangle - can reallocate memory and can return the pointer to
612   // the input buffer.
613   if (II->isStr("__cxa_demangle"))
614     return true;
615 
616   StringRef FName = II->getName();
617 
618   // - CoreFoundation functions that end with "NoCopy" can free a passed-in
619   //   buffer even if it is const.
620   if (FName.endswith("NoCopy"))
621     return true;
622 
623   // - NSXXInsertXX, for example NSMapInsertIfAbsent, since they can
624   //   be deallocated by NSMapRemove.
625   if (FName.startswith("NS") && (FName.find("Insert") != StringRef::npos))
626     return true;
627 
628   // - Many CF containers allow objects to escape through custom
629   //   allocators/deallocators upon container construction. (PR12101)
630   if (FName.startswith("CF") || FName.startswith("CG")) {
631     return StrInStrNoCase(FName, "InsertValue")  != StringRef::npos ||
632            StrInStrNoCase(FName, "AddValue")     != StringRef::npos ||
633            StrInStrNoCase(FName, "SetValue")     != StringRef::npos ||
634            StrInStrNoCase(FName, "WithData")     != StringRef::npos ||
635            StrInStrNoCase(FName, "AppendValue")  != StringRef::npos ||
636            StrInStrNoCase(FName, "SetAttribute") != StringRef::npos;
637   }
638 
639   return false;
640 }
641 
642 const FunctionDecl *SimpleFunctionCall::getDecl() const {
643   const FunctionDecl *D = getOriginExpr()->getDirectCallee();
644   if (D)
645     return D;
646 
647   return getSVal(getOriginExpr()->getCallee()).getAsFunctionDecl();
648 }
649 
650 const FunctionDecl *CXXInstanceCall::getDecl() const {
651   const auto *CE = cast_or_null<CallExpr>(getOriginExpr());
652   if (!CE)
653     return AnyFunctionCall::getDecl();
654 
655   const FunctionDecl *D = CE->getDirectCallee();
656   if (D)
657     return D;
658 
659   return getSVal(CE->getCallee()).getAsFunctionDecl();
660 }
661 
662 void CXXInstanceCall::getExtraInvalidatedValues(
663     ValueList &Values, RegionAndSymbolInvalidationTraits *ETraits) const {
664   SVal ThisVal = getCXXThisVal();
665   Values.push_back(ThisVal);
666 
667   // Don't invalidate if the method is const and there are no mutable fields.
668   if (const auto *D = cast_or_null<CXXMethodDecl>(getDecl())) {
669     if (!D->isConst())
670       return;
671     // Get the record decl for the class of 'This'. D->getParent() may return a
672     // base class decl, rather than the class of the instance which needs to be
673     // checked for mutable fields.
674     // TODO: We might as well look at the dynamic type of the object.
675     const Expr *Ex = getCXXThisExpr()->ignoreParenBaseCasts();
676     QualType T = Ex->getType();
677     if (T->isPointerType()) // Arrow or implicit-this syntax?
678       T = T->getPointeeType();
679     const CXXRecordDecl *ParentRecord = T->getAsCXXRecordDecl();
680     assert(ParentRecord);
681     if (ParentRecord->hasMutableFields())
682       return;
683     // Preserve CXXThis.
684     const MemRegion *ThisRegion = ThisVal.getAsRegion();
685     if (!ThisRegion)
686       return;
687 
688     ETraits->setTrait(ThisRegion->getBaseRegion(),
689                       RegionAndSymbolInvalidationTraits::TK_PreserveContents);
690   }
691 }
692 
693 SVal CXXInstanceCall::getCXXThisVal() const {
694   const Expr *Base = getCXXThisExpr();
695   // FIXME: This doesn't handle an overloaded ->* operator.
696   if (!Base)
697     return UnknownVal();
698 
699   SVal ThisVal = getSVal(Base);
700   assert(ThisVal.isUnknownOrUndef() || ThisVal.getAs<Loc>());
701   return ThisVal;
702 }
703 
704 RuntimeDefinition CXXInstanceCall::getRuntimeDefinition() const {
705   // Do we have a decl at all?
706   const Decl *D = getDecl();
707   if (!D)
708     return {};
709 
710   // If the method is non-virtual, we know we can inline it.
711   const auto *MD = cast<CXXMethodDecl>(D);
712   if (!MD->isVirtual())
713     return AnyFunctionCall::getRuntimeDefinition();
714 
715   // Do we know the implicit 'this' object being called?
716   const MemRegion *R = getCXXThisVal().getAsRegion();
717   if (!R)
718     return {};
719 
720   // Do we know anything about the type of 'this'?
721   DynamicTypeInfo DynType = getDynamicTypeInfo(getState(), R);
722   if (!DynType.isValid())
723     return {};
724 
725   // Is the type a C++ class? (This is mostly a defensive check.)
726   QualType RegionType = DynType.getType()->getPointeeType();
727   assert(!RegionType.isNull() && "DynamicTypeInfo should always be a pointer.");
728 
729   const CXXRecordDecl *RD = RegionType->getAsCXXRecordDecl();
730   if (!RD || !RD->hasDefinition())
731     return {};
732 
733   // Find the decl for this method in that class.
734   const CXXMethodDecl *Result = MD->getCorrespondingMethodInClass(RD, true);
735   if (!Result) {
736     // We might not even get the original statically-resolved method due to
737     // some particularly nasty casting (e.g. casts to sister classes).
738     // However, we should at least be able to search up and down our own class
739     // hierarchy, and some real bugs have been caught by checking this.
740     assert(!RD->isDerivedFrom(MD->getParent()) && "Couldn't find known method");
741 
742     // FIXME: This is checking that our DynamicTypeInfo is at least as good as
743     // the static type. However, because we currently don't update
744     // DynamicTypeInfo when an object is cast, we can't actually be sure the
745     // DynamicTypeInfo is up to date. This assert should be re-enabled once
746     // this is fixed. <rdar://problem/12287087>
747     //assert(!MD->getParent()->isDerivedFrom(RD) && "Bad DynamicTypeInfo");
748 
749     return {};
750   }
751 
752   // Does the decl that we found have an implementation?
753   const FunctionDecl *Definition;
754   if (!Result->hasBody(Definition))
755     return {};
756 
757   // We found a definition. If we're not sure that this devirtualization is
758   // actually what will happen at runtime, make sure to provide the region so
759   // that ExprEngine can decide what to do with it.
760   if (DynType.canBeASubClass())
761     return RuntimeDefinition(Definition, R->StripCasts());
762   return RuntimeDefinition(Definition, /*DispatchRegion=*/nullptr);
763 }
764 
765 void CXXInstanceCall::getInitialStackFrameContents(
766                                             const StackFrameContext *CalleeCtx,
767                                             BindingsTy &Bindings) const {
768   AnyFunctionCall::getInitialStackFrameContents(CalleeCtx, Bindings);
769 
770   // Handle the binding of 'this' in the new stack frame.
771   SVal ThisVal = getCXXThisVal();
772   if (!ThisVal.isUnknown()) {
773     ProgramStateManager &StateMgr = getState()->getStateManager();
774     SValBuilder &SVB = StateMgr.getSValBuilder();
775 
776     const auto *MD = cast<CXXMethodDecl>(CalleeCtx->getDecl());
777     Loc ThisLoc = SVB.getCXXThis(MD, CalleeCtx);
778 
779     // If we devirtualized to a different member function, we need to make sure
780     // we have the proper layering of CXXBaseObjectRegions.
781     if (MD->getCanonicalDecl() != getDecl()->getCanonicalDecl()) {
782       ASTContext &Ctx = SVB.getContext();
783       const CXXRecordDecl *Class = MD->getParent();
784       QualType Ty = Ctx.getPointerType(Ctx.getRecordType(Class));
785 
786       // FIXME: CallEvent maybe shouldn't be directly accessing StoreManager.
787       bool Failed;
788       ThisVal = StateMgr.getStoreManager().attemptDownCast(ThisVal, Ty, Failed);
789       if (Failed) {
790         // We might have suffered some sort of placement new earlier, so
791         // we're constructing in a completely unexpected storage.
792         // Fall back to a generic pointer cast for this-value.
793         const CXXMethodDecl *StaticMD = cast<CXXMethodDecl>(getDecl());
794         const CXXRecordDecl *StaticClass = StaticMD->getParent();
795         QualType StaticTy = Ctx.getPointerType(Ctx.getRecordType(StaticClass));
796         ThisVal = SVB.evalCast(ThisVal, Ty, StaticTy);
797       }
798     }
799 
800     if (!ThisVal.isUnknown())
801       Bindings.push_back(std::make_pair(ThisLoc, ThisVal));
802   }
803 }
804 
805 const Expr *CXXMemberCall::getCXXThisExpr() const {
806   return getOriginExpr()->getImplicitObjectArgument();
807 }
808 
809 RuntimeDefinition CXXMemberCall::getRuntimeDefinition() const {
810   // C++11 [expr.call]p1: ...If the selected function is non-virtual, or if the
811   // id-expression in the class member access expression is a qualified-id,
812   // that function is called. Otherwise, its final overrider in the dynamic type
813   // of the object expression is called.
814   if (const auto *ME = dyn_cast<MemberExpr>(getOriginExpr()->getCallee()))
815     if (ME->hasQualifier())
816       return AnyFunctionCall::getRuntimeDefinition();
817 
818   return CXXInstanceCall::getRuntimeDefinition();
819 }
820 
821 const Expr *CXXMemberOperatorCall::getCXXThisExpr() const {
822   return getOriginExpr()->getArg(0);
823 }
824 
825 const BlockDataRegion *BlockCall::getBlockRegion() const {
826   const Expr *Callee = getOriginExpr()->getCallee();
827   const MemRegion *DataReg = getSVal(Callee).getAsRegion();
828 
829   return dyn_cast_or_null<BlockDataRegion>(DataReg);
830 }
831 
832 ArrayRef<ParmVarDecl*> BlockCall::parameters() const {
833   const BlockDecl *D = getDecl();
834   if (!D)
835     return nullptr;
836   return D->parameters();
837 }
838 
839 void BlockCall::getExtraInvalidatedValues(ValueList &Values,
840                   RegionAndSymbolInvalidationTraits *ETraits) const {
841   // FIXME: This also needs to invalidate captured globals.
842   if (const MemRegion *R = getBlockRegion())
843     Values.push_back(loc::MemRegionVal(R));
844 }
845 
846 void BlockCall::getInitialStackFrameContents(const StackFrameContext *CalleeCtx,
847                                              BindingsTy &Bindings) const {
848   SValBuilder &SVB = getState()->getStateManager().getSValBuilder();
849   ArrayRef<ParmVarDecl*> Params;
850   if (isConversionFromLambda()) {
851     auto *LambdaOperatorDecl = cast<CXXMethodDecl>(CalleeCtx->getDecl());
852     Params = LambdaOperatorDecl->parameters();
853 
854     // For blocks converted from a C++ lambda, the callee declaration is the
855     // operator() method on the lambda so we bind "this" to
856     // the lambda captured by the block.
857     const VarRegion *CapturedLambdaRegion = getRegionStoringCapturedLambda();
858     SVal ThisVal = loc::MemRegionVal(CapturedLambdaRegion);
859     Loc ThisLoc = SVB.getCXXThis(LambdaOperatorDecl, CalleeCtx);
860     Bindings.push_back(std::make_pair(ThisLoc, ThisVal));
861   } else {
862     Params = cast<BlockDecl>(CalleeCtx->getDecl())->parameters();
863   }
864 
865   addParameterValuesToBindings(CalleeCtx, Bindings, SVB, *this,
866                                Params);
867 }
868 
869 SVal CXXConstructorCall::getCXXThisVal() const {
870   if (Data)
871     return loc::MemRegionVal(static_cast<const MemRegion *>(Data));
872   return UnknownVal();
873 }
874 
875 void CXXConstructorCall::getExtraInvalidatedValues(ValueList &Values,
876                            RegionAndSymbolInvalidationTraits *ETraits) const {
877   if (Data) {
878     loc::MemRegionVal MV(static_cast<const MemRegion *>(Data));
879     if (SymbolRef Sym = MV.getAsSymbol(true))
880       ETraits->setTrait(Sym,
881                         RegionAndSymbolInvalidationTraits::TK_SuppressEscape);
882     Values.push_back(MV);
883   }
884 }
885 
886 void CXXConstructorCall::getInitialStackFrameContents(
887                                              const StackFrameContext *CalleeCtx,
888                                              BindingsTy &Bindings) const {
889   AnyFunctionCall::getInitialStackFrameContents(CalleeCtx, Bindings);
890 
891   SVal ThisVal = getCXXThisVal();
892   if (!ThisVal.isUnknown()) {
893     SValBuilder &SVB = getState()->getStateManager().getSValBuilder();
894     const auto *MD = cast<CXXMethodDecl>(CalleeCtx->getDecl());
895     Loc ThisLoc = SVB.getCXXThis(MD, CalleeCtx);
896     Bindings.push_back(std::make_pair(ThisLoc, ThisVal));
897   }
898 }
899 
900 SVal CXXDestructorCall::getCXXThisVal() const {
901   if (Data)
902     return loc::MemRegionVal(DtorDataTy::getFromOpaqueValue(Data).getPointer());
903   return UnknownVal();
904 }
905 
906 RuntimeDefinition CXXDestructorCall::getRuntimeDefinition() const {
907   // Base destructors are always called non-virtually.
908   // Skip CXXInstanceCall's devirtualization logic in this case.
909   if (isBaseDestructor())
910     return AnyFunctionCall::getRuntimeDefinition();
911 
912   return CXXInstanceCall::getRuntimeDefinition();
913 }
914 
915 ArrayRef<ParmVarDecl*> ObjCMethodCall::parameters() const {
916   const ObjCMethodDecl *D = getDecl();
917   if (!D)
918     return None;
919   return D->parameters();
920 }
921 
922 void ObjCMethodCall::getExtraInvalidatedValues(
923     ValueList &Values, RegionAndSymbolInvalidationTraits *ETraits) const {
924 
925   // If the method call is a setter for property known to be backed by
926   // an instance variable, don't invalidate the entire receiver, just
927   // the storage for that instance variable.
928   if (const ObjCPropertyDecl *PropDecl = getAccessedProperty()) {
929     if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) {
930       SVal IvarLVal = getState()->getLValue(PropIvar, getReceiverSVal());
931       if (const MemRegion *IvarRegion = IvarLVal.getAsRegion()) {
932         ETraits->setTrait(
933           IvarRegion,
934           RegionAndSymbolInvalidationTraits::TK_DoNotInvalidateSuperRegion);
935         ETraits->setTrait(
936           IvarRegion,
937           RegionAndSymbolInvalidationTraits::TK_SuppressEscape);
938         Values.push_back(IvarLVal);
939       }
940       return;
941     }
942   }
943 
944   Values.push_back(getReceiverSVal());
945 }
946 
947 SVal ObjCMethodCall::getSelfSVal() const {
948   const LocationContext *LCtx = getLocationContext();
949   const ImplicitParamDecl *SelfDecl = LCtx->getSelfDecl();
950   if (!SelfDecl)
951     return SVal();
952   return getState()->getSVal(getState()->getRegion(SelfDecl, LCtx));
953 }
954 
955 SVal ObjCMethodCall::getReceiverSVal() const {
956   // FIXME: Is this the best way to handle class receivers?
957   if (!isInstanceMessage())
958     return UnknownVal();
959 
960   if (const Expr *RecE = getOriginExpr()->getInstanceReceiver())
961     return getSVal(RecE);
962 
963   // An instance message with no expression means we are sending to super.
964   // In this case the object reference is the same as 'self'.
965   assert(getOriginExpr()->getReceiverKind() == ObjCMessageExpr::SuperInstance);
966   SVal SelfVal = getSelfSVal();
967   assert(SelfVal.isValid() && "Calling super but not in ObjC method");
968   return SelfVal;
969 }
970 
971 bool ObjCMethodCall::isReceiverSelfOrSuper() const {
972   if (getOriginExpr()->getReceiverKind() == ObjCMessageExpr::SuperInstance ||
973       getOriginExpr()->getReceiverKind() == ObjCMessageExpr::SuperClass)
974       return true;
975 
976   if (!isInstanceMessage())
977     return false;
978 
979   SVal RecVal = getSVal(getOriginExpr()->getInstanceReceiver());
980 
981   return (RecVal == getSelfSVal());
982 }
983 
984 SourceRange ObjCMethodCall::getSourceRange() const {
985   switch (getMessageKind()) {
986   case OCM_Message:
987     return getOriginExpr()->getSourceRange();
988   case OCM_PropertyAccess:
989   case OCM_Subscript:
990     return getContainingPseudoObjectExpr()->getSourceRange();
991   }
992   llvm_unreachable("unknown message kind");
993 }
994 
995 using ObjCMessageDataTy = llvm::PointerIntPair<const PseudoObjectExpr *, 2>;
996 
997 const PseudoObjectExpr *ObjCMethodCall::getContainingPseudoObjectExpr() const {
998   assert(Data && "Lazy lookup not yet performed.");
999   assert(getMessageKind() != OCM_Message && "Explicit message send.");
1000   return ObjCMessageDataTy::getFromOpaqueValue(Data).getPointer();
1001 }
1002 
1003 static const Expr *
1004 getSyntacticFromForPseudoObjectExpr(const PseudoObjectExpr *POE) {
1005   const Expr *Syntactic = POE->getSyntacticForm();
1006 
1007   // This handles the funny case of assigning to the result of a getter.
1008   // This can happen if the getter returns a non-const reference.
1009   if (const auto *BO = dyn_cast<BinaryOperator>(Syntactic))
1010     Syntactic = BO->getLHS();
1011 
1012   return Syntactic;
1013 }
1014 
1015 ObjCMessageKind ObjCMethodCall::getMessageKind() const {
1016   if (!Data) {
1017     // Find the parent, ignoring implicit casts.
1018     ParentMap &PM = getLocationContext()->getParentMap();
1019     const Stmt *S = PM.getParentIgnoreParenCasts(getOriginExpr());
1020 
1021     // Check if parent is a PseudoObjectExpr.
1022     if (const auto *POE = dyn_cast_or_null<PseudoObjectExpr>(S)) {
1023       const Expr *Syntactic = getSyntacticFromForPseudoObjectExpr(POE);
1024 
1025       ObjCMessageKind K;
1026       switch (Syntactic->getStmtClass()) {
1027       case Stmt::ObjCPropertyRefExprClass:
1028         K = OCM_PropertyAccess;
1029         break;
1030       case Stmt::ObjCSubscriptRefExprClass:
1031         K = OCM_Subscript;
1032         break;
1033       default:
1034         // FIXME: Can this ever happen?
1035         K = OCM_Message;
1036         break;
1037       }
1038 
1039       if (K != OCM_Message) {
1040         const_cast<ObjCMethodCall *>(this)->Data
1041           = ObjCMessageDataTy(POE, K).getOpaqueValue();
1042         assert(getMessageKind() == K);
1043         return K;
1044       }
1045     }
1046 
1047     const_cast<ObjCMethodCall *>(this)->Data
1048       = ObjCMessageDataTy(nullptr, 1).getOpaqueValue();
1049     assert(getMessageKind() == OCM_Message);
1050     return OCM_Message;
1051   }
1052 
1053   ObjCMessageDataTy Info = ObjCMessageDataTy::getFromOpaqueValue(Data);
1054   if (!Info.getPointer())
1055     return OCM_Message;
1056   return static_cast<ObjCMessageKind>(Info.getInt());
1057 }
1058 
1059 const ObjCPropertyDecl *ObjCMethodCall::getAccessedProperty() const {
1060   // Look for properties accessed with property syntax (foo.bar = ...)
1061   if ( getMessageKind() == OCM_PropertyAccess) {
1062     const PseudoObjectExpr *POE = getContainingPseudoObjectExpr();
1063     assert(POE && "Property access without PseudoObjectExpr?");
1064 
1065     const Expr *Syntactic = getSyntacticFromForPseudoObjectExpr(POE);
1066     auto *RefExpr = cast<ObjCPropertyRefExpr>(Syntactic);
1067 
1068     if (RefExpr->isExplicitProperty())
1069       return RefExpr->getExplicitProperty();
1070   }
1071 
1072   // Look for properties accessed with method syntax ([foo setBar:...]).
1073   const ObjCMethodDecl *MD = getDecl();
1074   if (!MD || !MD->isPropertyAccessor())
1075     return nullptr;
1076 
1077   // Note: This is potentially quite slow.
1078   return MD->findPropertyDecl();
1079 }
1080 
1081 bool ObjCMethodCall::canBeOverridenInSubclass(ObjCInterfaceDecl *IDecl,
1082                                              Selector Sel) const {
1083   assert(IDecl);
1084   AnalysisManager &AMgr =
1085       getState()->getStateManager().getOwningEngine()->getAnalysisManager();
1086   // If the class interface is declared inside the main file, assume it is not
1087   // subcassed.
1088   // TODO: It could actually be subclassed if the subclass is private as well.
1089   // This is probably very rare.
1090   SourceLocation InterfLoc = IDecl->getEndOfDefinitionLoc();
1091   if (InterfLoc.isValid() && AMgr.isInCodeFile(InterfLoc))
1092     return false;
1093 
1094   // Assume that property accessors are not overridden.
1095   if (getMessageKind() == OCM_PropertyAccess)
1096     return false;
1097 
1098   // We assume that if the method is public (declared outside of main file) or
1099   // has a parent which publicly declares the method, the method could be
1100   // overridden in a subclass.
1101 
1102   // Find the first declaration in the class hierarchy that declares
1103   // the selector.
1104   ObjCMethodDecl *D = nullptr;
1105   while (true) {
1106     D = IDecl->lookupMethod(Sel, true);
1107 
1108     // Cannot find a public definition.
1109     if (!D)
1110       return false;
1111 
1112     // If outside the main file,
1113     if (D->getLocation().isValid() && !AMgr.isInCodeFile(D->getLocation()))
1114       return true;
1115 
1116     if (D->isOverriding()) {
1117       // Search in the superclass on the next iteration.
1118       IDecl = D->getClassInterface();
1119       if (!IDecl)
1120         return false;
1121 
1122       IDecl = IDecl->getSuperClass();
1123       if (!IDecl)
1124         return false;
1125 
1126       continue;
1127     }
1128 
1129     return false;
1130   };
1131 
1132   llvm_unreachable("The while loop should always terminate.");
1133 }
1134 
1135 static const ObjCMethodDecl *findDefiningRedecl(const ObjCMethodDecl *MD) {
1136   if (!MD)
1137     return MD;
1138 
1139   // Find the redeclaration that defines the method.
1140   if (!MD->hasBody()) {
1141     for (auto I : MD->redecls())
1142       if (I->hasBody())
1143         MD = cast<ObjCMethodDecl>(I);
1144   }
1145   return MD;
1146 }
1147 
1148 static bool isCallToSelfClass(const ObjCMessageExpr *ME) {
1149   const Expr* InstRec = ME->getInstanceReceiver();
1150   if (!InstRec)
1151     return false;
1152   const auto *InstRecIg = dyn_cast<DeclRefExpr>(InstRec->IgnoreParenImpCasts());
1153 
1154   // Check that receiver is called 'self'.
1155   if (!InstRecIg || !InstRecIg->getFoundDecl() ||
1156       !InstRecIg->getFoundDecl()->getName().equals("self"))
1157     return false;
1158 
1159   // Check that the method name is 'class'.
1160   if (ME->getSelector().getNumArgs() != 0 ||
1161       !ME->getSelector().getNameForSlot(0).equals("class"))
1162     return false;
1163 
1164   return true;
1165 }
1166 
1167 RuntimeDefinition ObjCMethodCall::getRuntimeDefinition() const {
1168   const ObjCMessageExpr *E = getOriginExpr();
1169   assert(E);
1170   Selector Sel = E->getSelector();
1171 
1172   if (E->isInstanceMessage()) {
1173     // Find the receiver type.
1174     const ObjCObjectPointerType *ReceiverT = nullptr;
1175     bool CanBeSubClassed = false;
1176     QualType SupersType = E->getSuperType();
1177     const MemRegion *Receiver = nullptr;
1178 
1179     if (!SupersType.isNull()) {
1180       // The receiver is guaranteed to be 'super' in this case.
1181       // Super always means the type of immediate predecessor to the method
1182       // where the call occurs.
1183       ReceiverT = cast<ObjCObjectPointerType>(SupersType);
1184     } else {
1185       Receiver = getReceiverSVal().getAsRegion();
1186       if (!Receiver)
1187         return {};
1188 
1189       DynamicTypeInfo DTI = getDynamicTypeInfo(getState(), Receiver);
1190       if (!DTI.isValid()) {
1191         assert(isa<AllocaRegion>(Receiver) &&
1192                "Unhandled untyped region class!");
1193         return {};
1194       }
1195 
1196       QualType DynType = DTI.getType();
1197       CanBeSubClassed = DTI.canBeASubClass();
1198       ReceiverT = dyn_cast<ObjCObjectPointerType>(DynType.getCanonicalType());
1199 
1200       if (ReceiverT && CanBeSubClassed)
1201         if (ObjCInterfaceDecl *IDecl = ReceiverT->getInterfaceDecl())
1202           if (!canBeOverridenInSubclass(IDecl, Sel))
1203             CanBeSubClassed = false;
1204     }
1205 
1206     // Handle special cases of '[self classMethod]' and
1207     // '[[self class] classMethod]', which are treated by the compiler as
1208     // instance (not class) messages. We will statically dispatch to those.
1209     if (auto *PT = dyn_cast_or_null<ObjCObjectPointerType>(ReceiverT)) {
1210       // For [self classMethod], return the compiler visible declaration.
1211       if (PT->getObjectType()->isObjCClass() &&
1212           Receiver == getSelfSVal().getAsRegion())
1213         return RuntimeDefinition(findDefiningRedecl(E->getMethodDecl()));
1214 
1215       // Similarly, handle [[self class] classMethod].
1216       // TODO: We are currently doing a syntactic match for this pattern with is
1217       // limiting as the test cases in Analysis/inlining/InlineObjCClassMethod.m
1218       // shows. A better way would be to associate the meta type with the symbol
1219       // using the dynamic type info tracking and use it here. We can add a new
1220       // SVal for ObjC 'Class' values that know what interface declaration they
1221       // come from. Then 'self' in a class method would be filled in with
1222       // something meaningful in ObjCMethodCall::getReceiverSVal() and we could
1223       // do proper dynamic dispatch for class methods just like we do for
1224       // instance methods now.
1225       if (E->getInstanceReceiver())
1226         if (const auto *M = dyn_cast<ObjCMessageExpr>(E->getInstanceReceiver()))
1227           if (isCallToSelfClass(M))
1228             return RuntimeDefinition(findDefiningRedecl(E->getMethodDecl()));
1229     }
1230 
1231     // Lookup the instance method implementation.
1232     if (ReceiverT)
1233       if (ObjCInterfaceDecl *IDecl = ReceiverT->getInterfaceDecl()) {
1234         // Repeatedly calling lookupPrivateMethod() is expensive, especially
1235         // when in many cases it returns null.  We cache the results so
1236         // that repeated queries on the same ObjCIntefaceDecl and Selector
1237         // don't incur the same cost.  On some test cases, we can see the
1238         // same query being issued thousands of times.
1239         //
1240         // NOTE: This cache is essentially a "global" variable, but it
1241         // only gets lazily created when we get here.  The value of the
1242         // cache probably comes from it being global across ExprEngines,
1243         // where the same queries may get issued.  If we are worried about
1244         // concurrency, or possibly loading/unloading ASTs, etc., we may
1245         // need to revisit this someday.  In terms of memory, this table
1246         // stays around until clang quits, which also may be bad if we
1247         // need to release memory.
1248         using PrivateMethodKey = std::pair<const ObjCInterfaceDecl *, Selector>;
1249         using PrivateMethodCache =
1250             llvm::DenseMap<PrivateMethodKey, Optional<const ObjCMethodDecl *>>;
1251 
1252         static PrivateMethodCache PMC;
1253         Optional<const ObjCMethodDecl *> &Val = PMC[std::make_pair(IDecl, Sel)];
1254 
1255         // Query lookupPrivateMethod() if the cache does not hit.
1256         if (!Val.hasValue()) {
1257           Val = IDecl->lookupPrivateMethod(Sel);
1258 
1259           // If the method is a property accessor, we should try to "inline" it
1260           // even if we don't actually have an implementation.
1261           if (!*Val)
1262             if (const ObjCMethodDecl *CompileTimeMD = E->getMethodDecl())
1263               if (CompileTimeMD->isPropertyAccessor()) {
1264                 if (!CompileTimeMD->getSelfDecl() &&
1265                     isa<ObjCCategoryDecl>(CompileTimeMD->getDeclContext())) {
1266                   // If the method is an accessor in a category, and it doesn't
1267                   // have a self declaration, first
1268                   // try to find the method in a class extension. This
1269                   // works around a bug in Sema where multiple accessors
1270                   // are synthesized for properties in class
1271                   // extensions that are redeclared in a category and the
1272                   // the implicit parameters are not filled in for
1273                   // the method on the category.
1274                   // This ensures we find the accessor in the extension, which
1275                   // has the implicit parameters filled in.
1276                   auto *ID = CompileTimeMD->getClassInterface();
1277                   for (auto *CatDecl : ID->visible_extensions()) {
1278                     Val = CatDecl->getMethod(Sel,
1279                                              CompileTimeMD->isInstanceMethod());
1280                     if (*Val)
1281                       break;
1282                   }
1283                 }
1284                 if (!*Val)
1285                   Val = IDecl->lookupInstanceMethod(Sel);
1286               }
1287         }
1288 
1289         const ObjCMethodDecl *MD = Val.getValue();
1290         if (CanBeSubClassed)
1291           return RuntimeDefinition(MD, Receiver);
1292         else
1293           return RuntimeDefinition(MD, nullptr);
1294       }
1295   } else {
1296     // This is a class method.
1297     // If we have type info for the receiver class, we are calling via
1298     // class name.
1299     if (ObjCInterfaceDecl *IDecl = E->getReceiverInterface()) {
1300       // Find/Return the method implementation.
1301       return RuntimeDefinition(IDecl->lookupPrivateClassMethod(Sel));
1302     }
1303   }
1304 
1305   return {};
1306 }
1307 
1308 bool ObjCMethodCall::argumentsMayEscape() const {
1309   if (isInSystemHeader() && !isInstanceMessage()) {
1310     Selector Sel = getSelector();
1311     if (Sel.getNumArgs() == 1 &&
1312         Sel.getIdentifierInfoForSlot(0)->isStr("valueWithPointer"))
1313       return true;
1314   }
1315 
1316   return CallEvent::argumentsMayEscape();
1317 }
1318 
1319 void ObjCMethodCall::getInitialStackFrameContents(
1320                                              const StackFrameContext *CalleeCtx,
1321                                              BindingsTy &Bindings) const {
1322   const auto *D = cast<ObjCMethodDecl>(CalleeCtx->getDecl());
1323   SValBuilder &SVB = getState()->getStateManager().getSValBuilder();
1324   addParameterValuesToBindings(CalleeCtx, Bindings, SVB, *this,
1325                                D->parameters());
1326 
1327   SVal SelfVal = getReceiverSVal();
1328   if (!SelfVal.isUnknown()) {
1329     const VarDecl *SelfD = CalleeCtx->getAnalysisDeclContext()->getSelfDecl();
1330     MemRegionManager &MRMgr = SVB.getRegionManager();
1331     Loc SelfLoc = SVB.makeLoc(MRMgr.getVarRegion(SelfD, CalleeCtx));
1332     Bindings.push_back(std::make_pair(SelfLoc, SelfVal));
1333   }
1334 }
1335 
1336 CallEventRef<>
1337 CallEventManager::getSimpleCall(const CallExpr *CE, ProgramStateRef State,
1338                                 const LocationContext *LCtx) {
1339   if (const auto *MCE = dyn_cast<CXXMemberCallExpr>(CE))
1340     return create<CXXMemberCall>(MCE, State, LCtx);
1341 
1342   if (const auto *OpCE = dyn_cast<CXXOperatorCallExpr>(CE)) {
1343     const FunctionDecl *DirectCallee = OpCE->getDirectCallee();
1344     if (const auto *MD = dyn_cast<CXXMethodDecl>(DirectCallee))
1345       if (MD->isInstance())
1346         return create<CXXMemberOperatorCall>(OpCE, State, LCtx);
1347 
1348   } else if (CE->getCallee()->getType()->isBlockPointerType()) {
1349     return create<BlockCall>(CE, State, LCtx);
1350   }
1351 
1352   // Otherwise, it's a normal function call, static member function call, or
1353   // something we can't reason about.
1354   return create<SimpleFunctionCall>(CE, State, LCtx);
1355 }
1356 
1357 CallEventRef<>
1358 CallEventManager::getCaller(const StackFrameContext *CalleeCtx,
1359                             ProgramStateRef State) {
1360   const LocationContext *ParentCtx = CalleeCtx->getParent();
1361   const LocationContext *CallerCtx = ParentCtx->getStackFrame();
1362   assert(CallerCtx && "This should not be used for top-level stack frames");
1363 
1364   const Stmt *CallSite = CalleeCtx->getCallSite();
1365 
1366   if (CallSite) {
1367     if (const CallExpr *CE = dyn_cast<CallExpr>(CallSite))
1368       return getSimpleCall(CE, State, CallerCtx);
1369 
1370     switch (CallSite->getStmtClass()) {
1371     case Stmt::CXXConstructExprClass:
1372     case Stmt::CXXTemporaryObjectExprClass: {
1373       SValBuilder &SVB = State->getStateManager().getSValBuilder();
1374       const auto *Ctor = cast<CXXMethodDecl>(CalleeCtx->getDecl());
1375       Loc ThisPtr = SVB.getCXXThis(Ctor, CalleeCtx);
1376       SVal ThisVal = State->getSVal(ThisPtr);
1377 
1378       return getCXXConstructorCall(cast<CXXConstructExpr>(CallSite),
1379                                    ThisVal.getAsRegion(), State, CallerCtx);
1380     }
1381     case Stmt::CXXNewExprClass:
1382       return getCXXAllocatorCall(cast<CXXNewExpr>(CallSite), State, CallerCtx);
1383     case Stmt::ObjCMessageExprClass:
1384       return getObjCMethodCall(cast<ObjCMessageExpr>(CallSite),
1385                                State, CallerCtx);
1386     default:
1387       llvm_unreachable("This is not an inlineable statement.");
1388     }
1389   }
1390 
1391   // Fall back to the CFG. The only thing we haven't handled yet is
1392   // destructors, though this could change in the future.
1393   const CFGBlock *B = CalleeCtx->getCallSiteBlock();
1394   CFGElement E = (*B)[CalleeCtx->getIndex()];
1395   assert((E.getAs<CFGImplicitDtor>() || E.getAs<CFGTemporaryDtor>()) &&
1396          "All other CFG elements should have exprs");
1397 
1398   SValBuilder &SVB = State->getStateManager().getSValBuilder();
1399   const auto *Dtor = cast<CXXDestructorDecl>(CalleeCtx->getDecl());
1400   Loc ThisPtr = SVB.getCXXThis(Dtor, CalleeCtx);
1401   SVal ThisVal = State->getSVal(ThisPtr);
1402 
1403   const Stmt *Trigger;
1404   if (Optional<CFGAutomaticObjDtor> AutoDtor = E.getAs<CFGAutomaticObjDtor>())
1405     Trigger = AutoDtor->getTriggerStmt();
1406   else if (Optional<CFGDeleteDtor> DeleteDtor = E.getAs<CFGDeleteDtor>())
1407     Trigger = DeleteDtor->getDeleteExpr();
1408   else
1409     Trigger = Dtor->getBody();
1410 
1411   return getCXXDestructorCall(Dtor, Trigger, ThisVal.getAsRegion(),
1412                               E.getAs<CFGBaseDtor>().hasValue(), State,
1413                               CallerCtx);
1414 }
1415