blob: 63ef3b2355fbd495d02ff64c1eb2a18a3cc50aab [file] [log] [blame]
Jordan Rose62b37982012-09-28 22:21:39 +00001//===--- ScopeInfo.cpp - Information about a semantic context -------------===//
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// This file implements FunctionScopeInfo and its subclasses, which contain
11// information about a single function, block, lambda, or method body.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Sema/ScopeInfo.h"
16#include "clang/AST/Decl.h"
Alexey Bataev39c81e22014-08-28 04:28:19 +000017#include "clang/AST/DeclCXX.h"
Jordan Rose62b37982012-09-28 22:21:39 +000018#include "clang/AST/DeclObjC.h"
19#include "clang/AST/Expr.h"
20#include "clang/AST/ExprCXX.h"
21#include "clang/AST/ExprObjC.h"
22
23using namespace clang;
24using namespace sema;
25
26void FunctionScopeInfo::Clear() {
27 HasBranchProtectedScope = false;
28 HasBranchIntoScope = false;
29 HasIndirectGoto = false;
Argyrios Kyrtzidis22bfa2c2013-12-03 21:11:36 +000030 HasDroppedStmt = false;
31 ObjCShouldCallSuper = false;
32 ObjCIsDesignatedInit = false;
33 ObjCWarnForNoDesignatedInitChain = false;
Argyrios Kyrtzidisb66d3cf2013-12-03 21:11:49 +000034 ObjCIsSecondaryInit = false;
35 ObjCWarnForNoInitDelegation = false;
Jordan Rose62b37982012-09-28 22:21:39 +000036
37 SwitchStack.clear();
38 Returns.clear();
39 ErrorTrap.reset();
40 PossiblyUnreachableDiags.clear();
41 WeakObjectUses.clear();
Fariborz Jahanianef202d92014-11-18 21:57:54 +000042 ModifiedNonNullParams.clear();
Jordan Rose62b37982012-09-28 22:21:39 +000043}
44
45static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) {
46 if (PropE->isExplicitProperty())
47 return PropE->getExplicitProperty();
48
49 return PropE->getImplicitPropertyGetter();
50}
51
Jordan Rose62b37982012-09-28 22:21:39 +000052FunctionScopeInfo::WeakObjectProfileTy::BaseInfoTy
53FunctionScopeInfo::WeakObjectProfileTy::getBaseInfo(const Expr *E) {
54 E = E->IgnoreParenCasts();
55
Craig Topperc3ec1492014-05-26 06:22:03 +000056 const NamedDecl *D = nullptr;
Jordan Rose62b37982012-09-28 22:21:39 +000057 bool IsExact = false;
58
59 switch (E->getStmtClass()) {
60 case Stmt::DeclRefExprClass:
61 D = cast<DeclRefExpr>(E)->getDecl();
62 IsExact = isa<VarDecl>(D);
63 break;
64 case Stmt::MemberExprClass: {
65 const MemberExpr *ME = cast<MemberExpr>(E);
66 D = ME->getMemberDecl();
67 IsExact = isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts());
68 break;
69 }
70 case Stmt::ObjCIvarRefExprClass: {
71 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E);
72 D = IE->getDecl();
Anna Zaks97c7ce32012-10-01 20:34:04 +000073 IsExact = IE->getBase()->isObjCSelfExpr();
Jordan Rose62b37982012-09-28 22:21:39 +000074 break;
75 }
76 case Stmt::PseudoObjectExprClass: {
77 const PseudoObjectExpr *POE = cast<PseudoObjectExpr>(E);
78 const ObjCPropertyRefExpr *BaseProp =
79 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm());
80 if (BaseProp) {
81 D = getBestPropertyDecl(BaseProp);
82
83 const Expr *DoubleBase = BaseProp->getBase();
84 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(DoubleBase))
85 DoubleBase = OVE->getSourceExpr();
86
Anna Zaks97c7ce32012-10-01 20:34:04 +000087 IsExact = DoubleBase->isObjCSelfExpr();
Jordan Rose62b37982012-09-28 22:21:39 +000088 }
89 break;
90 }
91 default:
92 break;
93 }
94
95 return BaseInfoTy(D, IsExact);
96}
97
Alexey Bataev39c81e22014-08-28 04:28:19 +000098bool CapturingScopeInfo::isVLATypeCaptured(const VariableArrayType *VAT) const {
Alexey Bataev330de032014-10-29 12:21:55 +000099 RecordDecl *RD = nullptr;
Alexey Bataev39c81e22014-08-28 04:28:19 +0000100 if (auto *LSI = dyn_cast<LambdaScopeInfo>(this))
Alexey Bataev330de032014-10-29 12:21:55 +0000101 RD = LSI->Lambda;
102 else if (auto CRSI = dyn_cast<CapturedRegionScopeInfo>(this))
103 RD = CRSI->TheRecordDecl;
104
105 if (RD)
106 for (auto *FD : RD->fields()) {
Alexey Bataev39c81e22014-08-28 04:28:19 +0000107 if (FD->hasCapturedVLAType() && FD->getCapturedVLAType() == VAT)
108 return true;
109 }
110 return false;
111}
112
Jordan Rose62b37982012-09-28 22:21:39 +0000113FunctionScopeInfo::WeakObjectProfileTy::WeakObjectProfileTy(
114 const ObjCPropertyRefExpr *PropE)
Craig Topperc3ec1492014-05-26 06:22:03 +0000115 : Base(nullptr, true), Property(getBestPropertyDecl(PropE)) {
Jordan Rose62b37982012-09-28 22:21:39 +0000116
117 if (PropE->isObjectReceiver()) {
118 const OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(PropE->getBase());
119 const Expr *E = OVE->getSourceExpr();
120 Base = getBaseInfo(E);
121 } else if (PropE->isClassReceiver()) {
122 Base.setPointer(PropE->getClassReceiver());
123 } else {
124 assert(PropE->isSuperReceiver());
125 }
126}
127
Jordan Rose22487652012-10-11 16:06:21 +0000128FunctionScopeInfo::WeakObjectProfileTy::WeakObjectProfileTy(const Expr *BaseE,
129 const ObjCPropertyDecl *Prop)
Craig Topperc3ec1492014-05-26 06:22:03 +0000130 : Base(nullptr, true), Property(Prop) {
Jordan Rose22487652012-10-11 16:06:21 +0000131 if (BaseE)
132 Base = getBaseInfo(BaseE);
133 // else, this is a message accessing a property on super.
134}
135
Jordan Rose62b37982012-09-28 22:21:39 +0000136FunctionScopeInfo::WeakObjectProfileTy::WeakObjectProfileTy(
137 const DeclRefExpr *DRE)
Craig Topperc3ec1492014-05-26 06:22:03 +0000138 : Base(nullptr, true), Property(DRE->getDecl()) {
Jordan Rose62b37982012-09-28 22:21:39 +0000139 assert(isa<VarDecl>(Property));
140}
141
142FunctionScopeInfo::WeakObjectProfileTy::WeakObjectProfileTy(
143 const ObjCIvarRefExpr *IvarE)
144 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) {
145}
146
Jordan Rose22487652012-10-11 16:06:21 +0000147void FunctionScopeInfo::recordUseOfWeak(const ObjCMessageExpr *Msg,
148 const ObjCPropertyDecl *Prop) {
149 assert(Msg && Prop);
150 WeakUseVector &Uses =
151 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)];
152 Uses.push_back(WeakUseTy(Msg, Msg->getNumArgs() == 0));
153}
154
Jordan Rose62b37982012-09-28 22:21:39 +0000155void FunctionScopeInfo::markSafeWeakUse(const Expr *E) {
Jordan Rosee723a272012-10-10 16:43:06 +0000156 E = E->IgnoreParenCasts();
Jordan Rose62b37982012-09-28 22:21:39 +0000157
158 if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) {
159 markSafeWeakUse(POE->getSyntacticForm());
160 return;
161 }
162
163 if (const ConditionalOperator *Cond = dyn_cast<ConditionalOperator>(E)) {
164 markSafeWeakUse(Cond->getTrueExpr());
165 markSafeWeakUse(Cond->getFalseExpr());
166 return;
167 }
168
169 if (const BinaryConditionalOperator *Cond =
170 dyn_cast<BinaryConditionalOperator>(E)) {
171 markSafeWeakUse(Cond->getCommon());
172 markSafeWeakUse(Cond->getFalseExpr());
173 return;
174 }
175
176 // Has this weak object been seen before?
177 FunctionScopeInfo::WeakObjectUseMap::iterator Uses;
Fariborz Jahanian9277ff42014-06-17 23:35:13 +0000178 if (const ObjCPropertyRefExpr *RefExpr = dyn_cast<ObjCPropertyRefExpr>(E)) {
Fariborz Jahanianac1c5122014-11-21 21:12:11 +0000179 if (!RefExpr->isObjectReceiver())
180 return;
Fariborz Jahanian9277ff42014-06-17 23:35:13 +0000181 if (isa<OpaqueValueExpr>(RefExpr->getBase()))
182 Uses = WeakObjectUses.find(WeakObjectProfileTy(RefExpr));
183 else {
184 markSafeWeakUse(RefExpr->getBase());
185 return;
186 }
187 }
Jordan Rose62b37982012-09-28 22:21:39 +0000188 else if (const ObjCIvarRefExpr *IvarE = dyn_cast<ObjCIvarRefExpr>(E))
Jordan Rose22487652012-10-11 16:06:21 +0000189 Uses = WeakObjectUses.find(WeakObjectProfileTy(IvarE));
Jordan Rose62b37982012-09-28 22:21:39 +0000190 else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Jordan Rose22487652012-10-11 16:06:21 +0000191 Uses = WeakObjectUses.find(WeakObjectProfileTy(DRE));
Jordan Roseb1e3e5f2012-10-11 17:02:00 +0000192 else if (const ObjCMessageExpr *MsgE = dyn_cast<ObjCMessageExpr>(E)) {
Jordan Rose22487652012-10-11 16:06:21 +0000193 Uses = WeakObjectUses.end();
194 if (const ObjCMethodDecl *MD = MsgE->getMethodDecl()) {
195 if (const ObjCPropertyDecl *Prop = MD->findPropertyDecl()) {
196 Uses =
197 WeakObjectUses.find(WeakObjectProfileTy(MsgE->getInstanceReceiver(),
198 Prop));
199 }
200 }
201 }
Jordan Rose62b37982012-09-28 22:21:39 +0000202 else
203 return;
204
205 if (Uses == WeakObjectUses.end())
206 return;
207
208 // Has there been a read from the object using this Expr?
209 FunctionScopeInfo::WeakUseVector::reverse_iterator ThisUse =
210 std::find(Uses->second.rbegin(), Uses->second.rend(), WeakUseTy(E, true));
211 if (ThisUse == Uses->second.rend())
212 return;
213
214 ThisUse->markSafe();
215}
216
Faisal Valiab3d6462013-12-07 20:22:44 +0000217void LambdaScopeInfo::getPotentialVariableCapture(unsigned Idx, VarDecl *&VD,
218 Expr *&E) const {
Faisal Vali9366a482013-11-07 16:57:56 +0000219 assert(Idx < getNumPotentialVariableCaptures() &&
Faisal Valiab3d6462013-12-07 20:22:44 +0000220 "Index of potential capture must be within 0 to less than the "
221 "number of captures!");
Faisal Valia17d19f2013-11-07 05:17:06 +0000222 E = PotentiallyCapturingExprs[Idx];
223 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
224 VD = dyn_cast<VarDecl>(DRE->getFoundDecl());
225 else if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
226 VD = dyn_cast<VarDecl>(ME->getMemberDecl());
227 else
228 llvm_unreachable("Only DeclRefExprs or MemberExprs should be added for "
229 "potential captures");
230 assert(VD);
231}
232
Jordan Rose62b37982012-09-28 22:21:39 +0000233FunctionScopeInfo::~FunctionScopeInfo() { }
234BlockScopeInfo::~BlockScopeInfo() { }
235LambdaScopeInfo::~LambdaScopeInfo() { }
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +0000236CapturedRegionScopeInfo::~CapturedRegionScopeInfo() { }