blob: 52dfceccb94eff8fd8233b679c100e60478823c8 [file] [log] [blame]
Douglas Gregor5476205b2011-06-23 00:49:38 +00001//===--- SemaExprMember.cpp - Semantic Analysis for Expressions -----------===//
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 semantic analysis member access expressions.
11//
12//===----------------------------------------------------------------------===//
Kaelyn Takatafe408a72014-10-27 18:07:46 +000013#include "clang/Sema/Overload.h"
Faisal Valia17d19f2013-11-07 05:17:06 +000014#include "clang/AST/ASTLambda.h"
Douglas Gregor5476205b2011-06-23 00:49:38 +000015#include "clang/AST/DeclCXX.h"
16#include "clang/AST/DeclObjC.h"
17#include "clang/AST/DeclTemplate.h"
18#include "clang/AST/ExprCXX.h"
19#include "clang/AST/ExprObjC.h"
20#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/Sema/Lookup.h"
22#include "clang/Sema/Scope.h"
23#include "clang/Sema/ScopeInfo.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000024#include "clang/Sema/SemaInternal.h"
Douglas Gregor5476205b2011-06-23 00:49:38 +000025
26using namespace clang;
27using namespace sema;
28
Richard Smithd80b2d52012-11-22 00:24:47 +000029typedef llvm::SmallPtrSet<const CXXRecordDecl*, 4> BaseSet;
Richard Smithd80b2d52012-11-22 00:24:47 +000030
Douglas Gregor5476205b2011-06-23 00:49:38 +000031/// Determines if the given class is provably not derived from all of
32/// the prospective base classes.
Richard Smithd80b2d52012-11-22 00:24:47 +000033static bool isProvablyNotDerivedFrom(Sema &SemaRef, CXXRecordDecl *Record,
34 const BaseSet &Bases) {
Benjamin Kramer6e4f6e12015-07-25 15:07:25 +000035 auto BaseIsNotInSet = [&Bases](const CXXRecordDecl *Base) {
36 return !Bases.count(Base->getCanonicalDecl());
37 };
38 return BaseIsNotInSet(Record) && Record->forallBases(BaseIsNotInSet);
Douglas Gregor5476205b2011-06-23 00:49:38 +000039}
40
41enum IMAKind {
42 /// The reference is definitely not an instance member access.
43 IMA_Static,
44
45 /// The reference may be an implicit instance member access.
46 IMA_Mixed,
47
Eli Friedman7bda7f72012-01-18 03:53:45 +000048 /// The reference may be to an instance member, but it might be invalid if
Douglas Gregor5476205b2011-06-23 00:49:38 +000049 /// so, because the context is not an instance method.
50 IMA_Mixed_StaticContext,
51
52 /// The reference may be to an instance member, but it is invalid if
53 /// so, because the context is from an unrelated class.
54 IMA_Mixed_Unrelated,
55
56 /// The reference is definitely an implicit instance member access.
57 IMA_Instance,
58
59 /// The reference may be to an unresolved using declaration.
60 IMA_Unresolved,
61
John McCallf413f5e2013-05-03 00:10:13 +000062 /// The reference is a contextually-permitted abstract member reference.
63 IMA_Abstract,
64
Douglas Gregor5476205b2011-06-23 00:49:38 +000065 /// The reference may be to an unresolved using declaration and the
66 /// context is not an instance method.
67 IMA_Unresolved_StaticContext,
68
Eli Friedman456f0182012-01-20 01:26:23 +000069 // The reference refers to a field which is not a member of the containing
70 // class, which is allowed because we're in C++11 mode and the context is
71 // unevaluated.
72 IMA_Field_Uneval_Context,
Eli Friedman7bda7f72012-01-18 03:53:45 +000073
Douglas Gregor5476205b2011-06-23 00:49:38 +000074 /// All possible referrents are instance members and the current
75 /// context is not an instance method.
76 IMA_Error_StaticContext,
77
78 /// All possible referrents are instance members of an unrelated
79 /// class.
80 IMA_Error_Unrelated
81};
82
83/// The given lookup names class member(s) and is not being used for
84/// an address-of-member expression. Classify the type of access
85/// according to whether it's possible that this reference names an
Eli Friedman7bda7f72012-01-18 03:53:45 +000086/// instance member. This is best-effort in dependent contexts; it is okay to
Douglas Gregor5476205b2011-06-23 00:49:38 +000087/// conservatively answer "yes", in which case some errors will simply
88/// not be caught until template-instantiation.
89static IMAKind ClassifyImplicitMemberAccess(Sema &SemaRef,
Douglas Gregor5476205b2011-06-23 00:49:38 +000090 const LookupResult &R) {
91 assert(!R.empty() && (*R.begin())->isCXXClassMember());
92
93 DeclContext *DC = SemaRef.getFunctionLevelDeclContext();
94
Douglas Gregor3024f072012-04-16 07:05:22 +000095 bool isStaticContext = SemaRef.CXXThisTypeOverride.isNull() &&
96 (!isa<CXXMethodDecl>(DC) || cast<CXXMethodDecl>(DC)->isStatic());
Douglas Gregor5476205b2011-06-23 00:49:38 +000097
98 if (R.isUnresolvableResult())
99 return isStaticContext ? IMA_Unresolved_StaticContext : IMA_Unresolved;
100
101 // Collect all the declaring classes of instance members we find.
102 bool hasNonInstance = false;
Eli Friedman7bda7f72012-01-18 03:53:45 +0000103 bool isField = false;
Richard Smithd80b2d52012-11-22 00:24:47 +0000104 BaseSet Classes;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000105 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
106 NamedDecl *D = *I;
107
108 if (D->isCXXInstanceMember()) {
Benjamin Kramera008d3a2015-04-10 11:37:55 +0000109 isField |= isa<FieldDecl>(D) || isa<MSPropertyDecl>(D) ||
110 isa<IndirectFieldDecl>(D);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000111
112 CXXRecordDecl *R = cast<CXXRecordDecl>(D->getDeclContext());
113 Classes.insert(R->getCanonicalDecl());
114 }
115 else
116 hasNonInstance = true;
117 }
118
119 // If we didn't find any instance members, it can't be an implicit
120 // member reference.
121 if (Classes.empty())
122 return IMA_Static;
John McCallf413f5e2013-05-03 00:10:13 +0000123
124 // C++11 [expr.prim.general]p12:
125 // An id-expression that denotes a non-static data member or non-static
126 // member function of a class can only be used:
127 // (...)
128 // - if that id-expression denotes a non-static data member and it
129 // appears in an unevaluated operand.
130 //
131 // This rule is specific to C++11. However, we also permit this form
132 // in unevaluated inline assembly operands, like the operand to a SIZE.
133 IMAKind AbstractInstanceResult = IMA_Static; // happens to be 'false'
134 assert(!AbstractInstanceResult);
135 switch (SemaRef.ExprEvalContexts.back().Context) {
136 case Sema::Unevaluated:
137 if (isField && SemaRef.getLangOpts().CPlusPlus11)
138 AbstractInstanceResult = IMA_Field_Uneval_Context;
139 break;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000140
John McCallf413f5e2013-05-03 00:10:13 +0000141 case Sema::UnevaluatedAbstract:
142 AbstractInstanceResult = IMA_Abstract;
143 break;
144
145 case Sema::ConstantEvaluated:
146 case Sema::PotentiallyEvaluated:
147 case Sema::PotentiallyEvaluatedIfUsed:
148 break;
Richard Smitheae99682012-02-25 10:04:07 +0000149 }
150
Douglas Gregor5476205b2011-06-23 00:49:38 +0000151 // If the current context is not an instance method, it can't be
152 // an implicit member reference.
153 if (isStaticContext) {
154 if (hasNonInstance)
Richard Smitheae99682012-02-25 10:04:07 +0000155 return IMA_Mixed_StaticContext;
156
John McCallf413f5e2013-05-03 00:10:13 +0000157 return AbstractInstanceResult ? AbstractInstanceResult
158 : IMA_Error_StaticContext;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000159 }
160
161 CXXRecordDecl *contextClass;
162 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC))
163 contextClass = MD->getParent()->getCanonicalDecl();
164 else
165 contextClass = cast<CXXRecordDecl>(DC);
166
167 // [class.mfct.non-static]p3:
168 // ...is used in the body of a non-static member function of class X,
169 // if name lookup (3.4.1) resolves the name in the id-expression to a
170 // non-static non-type member of some class C [...]
171 // ...if C is not X or a base class of X, the class member access expression
172 // is ill-formed.
173 if (R.getNamingClass() &&
DeLesley Hutchins5b330db2012-02-25 00:11:55 +0000174 contextClass->getCanonicalDecl() !=
Richard Smithd80b2d52012-11-22 00:24:47 +0000175 R.getNamingClass()->getCanonicalDecl()) {
176 // If the naming class is not the current context, this was a qualified
177 // member name lookup, and it's sufficient to check that we have the naming
178 // class as a base class.
179 Classes.clear();
Richard Smithb2c5f962012-11-22 00:40:54 +0000180 Classes.insert(R.getNamingClass()->getCanonicalDecl());
Richard Smithd80b2d52012-11-22 00:24:47 +0000181 }
Douglas Gregor5476205b2011-06-23 00:49:38 +0000182
183 // If we can prove that the current context is unrelated to all the
184 // declaring classes, it can't be an implicit member reference (in
185 // which case it's an error if any of those members are selected).
Richard Smithd80b2d52012-11-22 00:24:47 +0000186 if (isProvablyNotDerivedFrom(SemaRef, contextClass, Classes))
Richard Smith2a986112012-02-25 10:20:59 +0000187 return hasNonInstance ? IMA_Mixed_Unrelated :
John McCallf413f5e2013-05-03 00:10:13 +0000188 AbstractInstanceResult ? AbstractInstanceResult :
189 IMA_Error_Unrelated;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000190
191 return (hasNonInstance ? IMA_Mixed : IMA_Instance);
192}
193
194/// Diagnose a reference to a field with no object available.
Richard Smithfa0a1f52012-04-05 01:13:04 +0000195static void diagnoseInstanceReference(Sema &SemaRef,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000196 const CXXScopeSpec &SS,
Richard Smithfa0a1f52012-04-05 01:13:04 +0000197 NamedDecl *Rep,
Eli Friedman456f0182012-01-20 01:26:23 +0000198 const DeclarationNameInfo &nameInfo) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000199 SourceLocation Loc = nameInfo.getLoc();
200 SourceRange Range(Loc);
201 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
Eli Friedman7bda7f72012-01-18 03:53:45 +0000202
Reid Klecknerae628962014-12-18 00:42:51 +0000203 // Look through using shadow decls and aliases.
204 Rep = Rep->getUnderlyingDecl();
205
Richard Smithfa0a1f52012-04-05 01:13:04 +0000206 DeclContext *FunctionLevelDC = SemaRef.getFunctionLevelDeclContext();
207 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FunctionLevelDC);
Craig Topperc3ec1492014-05-26 06:22:03 +0000208 CXXRecordDecl *ContextClass = Method ? Method->getParent() : nullptr;
Richard Smithfa0a1f52012-04-05 01:13:04 +0000209 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext());
210
211 bool InStaticMethod = Method && Method->isStatic();
212 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep);
213
214 if (IsField && InStaticMethod)
215 // "invalid use of member 'x' in static member function"
216 SemaRef.Diag(Loc, diag::err_invalid_member_use_in_static_method)
217 << Range << nameInfo.getName();
218 else if (ContextClass && RepClass && SS.isEmpty() && !InStaticMethod &&
219 !RepClass->Equals(ContextClass) && RepClass->Encloses(ContextClass))
220 // Unqualified lookup in a non-static member function found a member of an
221 // enclosing class.
222 SemaRef.Diag(Loc, diag::err_nested_non_static_member_use)
223 << IsField << RepClass << nameInfo.getName() << ContextClass << Range;
224 else if (IsField)
Eli Friedman456f0182012-01-20 01:26:23 +0000225 SemaRef.Diag(Loc, diag::err_invalid_non_static_member_use)
Richard Smithfa0a1f52012-04-05 01:13:04 +0000226 << nameInfo.getName() << Range;
227 else
228 SemaRef.Diag(Loc, diag::err_member_call_without_object)
229 << Range;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000230}
231
232/// Builds an expression which might be an implicit member expression.
233ExprResult
234Sema::BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000235 SourceLocation TemplateKWLoc,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000236 LookupResult &R,
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000237 const TemplateArgumentListInfo *TemplateArgs,
238 const Scope *S) {
Reid Klecknerae628962014-12-18 00:42:51 +0000239 switch (ClassifyImplicitMemberAccess(*this, R)) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000240 case IMA_Instance:
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000241 return BuildImplicitMemberExpr(SS, TemplateKWLoc, R, TemplateArgs, true, S);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000242
243 case IMA_Mixed:
244 case IMA_Mixed_Unrelated:
245 case IMA_Unresolved:
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000246 return BuildImplicitMemberExpr(SS, TemplateKWLoc, R, TemplateArgs, false,
247 S);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000248
Richard Smith2a986112012-02-25 10:20:59 +0000249 case IMA_Field_Uneval_Context:
250 Diag(R.getNameLoc(), diag::warn_cxx98_compat_non_static_member_use)
251 << R.getLookupNameInfo().getName();
252 // Fall through.
Douglas Gregor5476205b2011-06-23 00:49:38 +0000253 case IMA_Static:
John McCallf413f5e2013-05-03 00:10:13 +0000254 case IMA_Abstract:
Douglas Gregor5476205b2011-06-23 00:49:38 +0000255 case IMA_Mixed_StaticContext:
256 case IMA_Unresolved_StaticContext:
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +0000257 if (TemplateArgs || TemplateKWLoc.isValid())
258 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, false, TemplateArgs);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000259 return BuildDeclarationNameExpr(SS, R, false);
260
261 case IMA_Error_StaticContext:
262 case IMA_Error_Unrelated:
Richard Smithfa0a1f52012-04-05 01:13:04 +0000263 diagnoseInstanceReference(*this, SS, R.getRepresentativeDecl(),
Douglas Gregor5476205b2011-06-23 00:49:38 +0000264 R.getLookupNameInfo());
265 return ExprError();
266 }
267
268 llvm_unreachable("unexpected instance member access kind");
Douglas Gregor5476205b2011-06-23 00:49:38 +0000269}
270
271/// Check an ext-vector component access expression.
272///
273/// VK should be set in advance to the value kind of the base
274/// expression.
275static QualType
276CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
277 SourceLocation OpLoc, const IdentifierInfo *CompName,
278 SourceLocation CompLoc) {
279 // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements,
280 // see FIXME there.
281 //
282 // FIXME: This logic can be greatly simplified by splitting it along
283 // halving/not halving and reworking the component checking.
284 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
285
286 // The vector accessor can't exceed the number of elements.
287 const char *compStr = CompName->getNameStart();
288
289 // This flag determines whether or not the component is one of the four
290 // special names that indicate a subset of exactly half the elements are
291 // to be selected.
292 bool HalvingSwizzle = false;
293
294 // This flag determines whether or not CompName has an 's' char prefix,
295 // indicating that it is a string of hex values to be used as vector indices.
Fariborz Jahanian275542a2014-04-03 19:43:01 +0000296 bool HexSwizzle = (*compStr == 's' || *compStr == 'S') && compStr[1];
Douglas Gregor5476205b2011-06-23 00:49:38 +0000297
298 bool HasRepeated = false;
299 bool HasIndex[16] = {};
300
301 int Idx;
302
303 // Check that we've found one of the special components, or that the component
304 // names must come from the same set.
305 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
306 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
307 HalvingSwizzle = true;
308 } else if (!HexSwizzle &&
309 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
310 do {
311 if (HasIndex[Idx]) HasRepeated = true;
312 HasIndex[Idx] = true;
313 compStr++;
314 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1);
315 } else {
316 if (HexSwizzle) compStr++;
317 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) {
318 if (HasIndex[Idx]) HasRepeated = true;
319 HasIndex[Idx] = true;
320 compStr++;
321 }
322 }
323
324 if (!HalvingSwizzle && *compStr) {
325 // We didn't get to the end of the string. This means the component names
326 // didn't come from the same set *or* we encountered an illegal name.
327 S.Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000328 << StringRef(compStr, 1) << SourceRange(CompLoc);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000329 return QualType();
330 }
331
332 // Ensure no component accessor exceeds the width of the vector type it
333 // operates on.
334 if (!HalvingSwizzle) {
335 compStr = CompName->getNameStart();
336
337 if (HexSwizzle)
338 compStr++;
339
340 while (*compStr) {
341 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
342 S.Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
343 << baseType << SourceRange(CompLoc);
344 return QualType();
345 }
346 }
347 }
348
349 // The component accessor looks fine - now we need to compute the actual type.
350 // The vector type is implied by the component accessor. For example,
351 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
352 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
353 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
354 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
355 : CompName->getLength();
356 if (HexSwizzle)
357 CompSize--;
358
359 if (CompSize == 1)
360 return vecType->getElementType();
361
362 if (HasRepeated) VK = VK_RValue;
363
364 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize);
365 // Now look up the TypeDefDecl from the vector type. Without this,
366 // diagostics look bad. We want extended vector types to appear built-in.
Douglas Gregorb7098a32011-07-28 00:39:29 +0000367 for (Sema::ExtVectorDeclsType::iterator
Axel Naumanndd433f02012-10-18 19:05:02 +0000368 I = S.ExtVectorDecls.begin(S.getExternalSource()),
Douglas Gregorb7098a32011-07-28 00:39:29 +0000369 E = S.ExtVectorDecls.end();
370 I != E; ++I) {
371 if ((*I)->getUnderlyingType() == VT)
372 return S.Context.getTypedefType(*I);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000373 }
Douglas Gregorb7098a32011-07-28 00:39:29 +0000374
Douglas Gregor5476205b2011-06-23 00:49:38 +0000375 return VT; // should never get here (a typedef type should always be found).
376}
377
378static Decl *FindGetterSetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
379 IdentifierInfo *Member,
380 const Selector &Sel,
381 ASTContext &Context) {
382 if (Member)
383 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
384 return PD;
385 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
386 return OMD;
387
Aaron Ballman0f6e64d2014-03-13 22:58:06 +0000388 for (const auto *I : PDecl->protocols()) {
389 if (Decl *D = FindGetterSetterNameDeclFromProtocolList(I, Member, Sel,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000390 Context))
391 return D;
392 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000393 return nullptr;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000394}
395
396static Decl *FindGetterSetterNameDecl(const ObjCObjectPointerType *QIdTy,
397 IdentifierInfo *Member,
398 const Selector &Sel,
399 ASTContext &Context) {
400 // Check protocols on qualified interfaces.
Craig Topperc3ec1492014-05-26 06:22:03 +0000401 Decl *GDecl = nullptr;
Aaron Ballman83731462014-03-17 16:14:00 +0000402 for (const auto *I : QIdTy->quals()) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000403 if (Member)
Aaron Ballman83731462014-03-17 16:14:00 +0000404 if (ObjCPropertyDecl *PD = I->FindPropertyDeclaration(Member)) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000405 GDecl = PD;
406 break;
407 }
408 // Also must look for a getter or setter name which uses property syntax.
Aaron Ballman83731462014-03-17 16:14:00 +0000409 if (ObjCMethodDecl *OMD = I->getInstanceMethod(Sel)) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000410 GDecl = OMD;
411 break;
412 }
413 }
414 if (!GDecl) {
Aaron Ballman83731462014-03-17 16:14:00 +0000415 for (const auto *I : QIdTy->quals()) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000416 // Search in the protocol-qualifier list of current protocol.
Aaron Ballman83731462014-03-17 16:14:00 +0000417 GDecl = FindGetterSetterNameDeclFromProtocolList(I, Member, Sel, Context);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000418 if (GDecl)
419 return GDecl;
420 }
421 }
422 return GDecl;
423}
424
425ExprResult
426Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
427 bool IsArrow, SourceLocation OpLoc,
428 const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000429 SourceLocation TemplateKWLoc,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000430 NamedDecl *FirstQualifierInScope,
431 const DeclarationNameInfo &NameInfo,
432 const TemplateArgumentListInfo *TemplateArgs) {
433 // Even in dependent contexts, try to diagnose base expressions with
434 // obviously wrong types, e.g.:
435 //
436 // T* t;
437 // t.f;
438 //
439 // In Obj-C++, however, the above expression is valid, since it could be
440 // accessing the 'f' property if T is an Obj-C interface. The extra check
441 // allows this, while still reporting an error if T is a struct pointer.
442 if (!IsArrow) {
443 const PointerType *PT = BaseType->getAs<PointerType>();
David Blaikiebbafb8a2012-03-11 07:00:24 +0000444 if (PT && (!getLangOpts().ObjC1 ||
Douglas Gregor5476205b2011-06-23 00:49:38 +0000445 PT->getPointeeType()->isRecordType())) {
446 assert(BaseExpr && "cannot happen with implicit member accesses");
Matt Beaumont-Gayd9f244af2012-04-21 01:12:48 +0000447 Diag(OpLoc, diag::err_typecheck_member_reference_struct_union)
Matt Beaumont-Gay025321b2012-04-21 02:13:04 +0000448 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000449 return ExprError();
450 }
451 }
452
453 assert(BaseType->isDependentType() ||
454 NameInfo.getName().isDependentName() ||
455 isDependentScopeSpecifier(SS));
456
457 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
458 // must have pointer type, and the accessed type is the pointee.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000459 return CXXDependentScopeMemberExpr::Create(
460 Context, BaseExpr, BaseType, IsArrow, OpLoc,
461 SS.getWithLocInContext(Context), TemplateKWLoc, FirstQualifierInScope,
462 NameInfo, TemplateArgs);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000463}
464
465/// We know that the given qualified member reference points only to
466/// declarations which do not belong to the static type of the base
467/// expression. Diagnose the problem.
468static void DiagnoseQualifiedMemberReference(Sema &SemaRef,
469 Expr *BaseExpr,
470 QualType BaseType,
471 const CXXScopeSpec &SS,
472 NamedDecl *rep,
473 const DeclarationNameInfo &nameInfo) {
474 // If this is an implicit member access, use a different set of
475 // diagnostics.
476 if (!BaseExpr)
Richard Smithfa0a1f52012-04-05 01:13:04 +0000477 return diagnoseInstanceReference(SemaRef, SS, rep, nameInfo);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000478
479 SemaRef.Diag(nameInfo.getLoc(), diag::err_qualified_member_of_unrelated)
480 << SS.getRange() << rep << BaseType;
481}
482
483// Check whether the declarations we found through a nested-name
484// specifier in a member expression are actually members of the base
485// type. The restriction here is:
486//
487// C++ [expr.ref]p2:
488// ... In these cases, the id-expression shall name a
489// member of the class or of one of its base classes.
490//
491// So it's perfectly legitimate for the nested-name specifier to name
492// an unrelated class, and for us to find an overload set including
493// decls from classes which are not superclasses, as long as the decl
494// we actually pick through overload resolution is from a superclass.
495bool Sema::CheckQualifiedMemberReference(Expr *BaseExpr,
496 QualType BaseType,
497 const CXXScopeSpec &SS,
498 const LookupResult &R) {
Richard Smithd80b2d52012-11-22 00:24:47 +0000499 CXXRecordDecl *BaseRecord =
500 cast_or_null<CXXRecordDecl>(computeDeclContext(BaseType));
501 if (!BaseRecord) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000502 // We can't check this yet because the base type is still
503 // dependent.
504 assert(BaseType->isDependentType());
505 return false;
506 }
Douglas Gregor5476205b2011-06-23 00:49:38 +0000507
508 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
509 // If this is an implicit member reference and we find a
510 // non-instance member, it's not an error.
511 if (!BaseExpr && !(*I)->isCXXInstanceMember())
512 return false;
513
514 // Note that we use the DC of the decl, not the underlying decl.
515 DeclContext *DC = (*I)->getDeclContext();
516 while (DC->isTransparentContext())
517 DC = DC->getParent();
518
519 if (!DC->isRecord())
520 continue;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000521
Richard Smithd80b2d52012-11-22 00:24:47 +0000522 CXXRecordDecl *MemberRecord = cast<CXXRecordDecl>(DC)->getCanonicalDecl();
523 if (BaseRecord->getCanonicalDecl() == MemberRecord ||
524 !BaseRecord->isProvablyNotDerivedFrom(MemberRecord))
Douglas Gregor5476205b2011-06-23 00:49:38 +0000525 return false;
526 }
527
528 DiagnoseQualifiedMemberReference(*this, BaseExpr, BaseType, SS,
529 R.getRepresentativeDecl(),
530 R.getLookupNameInfo());
531 return true;
532}
533
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +0000534namespace {
535
536// Callback to only accept typo corrections that are either a ValueDecl or a
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +0000537// FunctionTemplateDecl and are declared in the current record or, for a C++
538// classes, one of its base classes.
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +0000539class RecordMemberExprValidatorCCC : public CorrectionCandidateCallback {
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000540public:
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +0000541 explicit RecordMemberExprValidatorCCC(const RecordType *RTy)
Kaelyn Takatae9e4ecf2014-11-11 23:00:40 +0000542 : Record(RTy->getDecl()) {
543 // Don't add bare keywords to the consumer since they will always fail
544 // validation by virtue of not being associated with any decls.
545 WantTypeSpecifiers = false;
546 WantExpressionKeywords = false;
547 WantCXXNamedCasts = false;
548 WantFunctionLikeCasts = false;
549 WantRemainingKeywords = false;
550 }
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +0000551
Craig Toppere14c0f82014-03-12 04:55:44 +0000552 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +0000553 NamedDecl *ND = candidate.getCorrectionDecl();
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +0000554 // Don't accept candidates that cannot be member functions, constants,
555 // variables, or templates.
556 if (!ND || !(isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)))
557 return false;
558
559 // Accept candidates that occur in the current record.
560 if (Record->containsDecl(ND))
561 return true;
562
563 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record)) {
564 // Accept candidates that occur in any of the current class' base classes.
Aaron Ballman574705e2014-03-13 15:41:46 +0000565 for (const auto &BS : RD->bases()) {
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000566 if (const RecordType *BSTy =
567 dyn_cast_or_null<RecordType>(BS.getType().getTypePtrOrNull())) {
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +0000568 if (BSTy->getDecl()->containsDecl(ND))
569 return true;
570 }
571 }
572 }
573
574 return false;
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +0000575 }
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +0000576
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000577private:
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +0000578 const RecordDecl *const Record;
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +0000579};
580
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000581}
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +0000582
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000583static bool LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R,
Kaelyn Takata5c3dc4b2014-11-11 23:26:54 +0000584 Expr *BaseExpr,
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000585 const RecordType *RTy,
Kaelyn Takata5c3dc4b2014-11-11 23:26:54 +0000586 SourceLocation OpLoc, bool IsArrow,
587 CXXScopeSpec &SS, bool HasTemplateArgs,
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000588 TypoExpr *&TE) {
Kaelyn Takata5c3dc4b2014-11-11 23:26:54 +0000589 SourceRange BaseRange = BaseExpr ? BaseExpr->getSourceRange() : SourceRange();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000590 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregor3024f072012-04-16 07:05:22 +0000591 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
592 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000593 diag::err_typecheck_incomplete_tag,
594 BaseRange))
Douglas Gregor5476205b2011-06-23 00:49:38 +0000595 return true;
596
597 if (HasTemplateArgs) {
598 // LookupTemplateName doesn't expect these both to exist simultaneously.
599 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
600
601 bool MOUS;
Craig Topperc3ec1492014-05-26 06:22:03 +0000602 SemaRef.LookupTemplateName(R, nullptr, SS, ObjectType, false, MOUS);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000603 return false;
604 }
605
606 DeclContext *DC = RDecl;
607 if (SS.isSet()) {
608 // If the member name was a qualified-id, look into the
609 // nested-name-specifier.
610 DC = SemaRef.computeDeclContext(SS, false);
611
612 if (SemaRef.RequireCompleteDeclContext(SS, DC)) {
613 SemaRef.Diag(SS.getRange().getEnd(), diag::err_typecheck_incomplete_tag)
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000614 << SS.getRange() << DC;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000615 return true;
616 }
617
618 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
619
620 if (!isa<TypeDecl>(DC)) {
621 SemaRef.Diag(R.getNameLoc(), diag::err_qualified_member_nonclass)
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000622 << DC << SS.getRange();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000623 return true;
624 }
625 }
626
627 // The record definition is complete, now look up the member.
Nikola Smiljanicfce370e2014-12-01 23:15:01 +0000628 SemaRef.LookupQualifiedName(R, DC, SS);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000629
630 if (!R.empty())
631 return false;
632
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000633 DeclarationName Typo = R.getLookupName();
634 SourceLocation TypoLoc = R.getNameLoc();
David Blaikiea8173ba2015-09-28 23:48:55 +0000635
636 struct QueryState {
637 Sema &SemaRef;
638 DeclarationNameInfo NameInfo;
639 Sema::LookupNameKind LookupKind;
640 Sema::RedeclarationKind Redecl;
641 };
642 QueryState Q = {R.getSema(), R.getLookupNameInfo(), R.getLookupKind(),
643 R.isForRedeclaration() ? Sema::ForRedeclaration
644 : Sema::NotForRedeclaration};
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000645 TE = SemaRef.CorrectTypoDelayed(
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000646 R.getLookupNameInfo(), R.getLookupKind(), nullptr, &SS,
647 llvm::make_unique<RecordMemberExprValidatorCCC>(RTy),
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000648 [=, &SemaRef](const TypoCorrection &TC) {
649 if (TC) {
650 assert(!TC.isKeyword() &&
651 "Got a keyword as a correction for a member!");
652 bool DroppedSpecifier =
653 TC.WillReplaceSpecifier() &&
654 Typo.getAsString() == TC.getAsString(SemaRef.getLangOpts());
655 SemaRef.diagnoseTypo(TC, SemaRef.PDiag(diag::err_no_member_suggest)
656 << Typo << DC << DroppedSpecifier
657 << SS.getRange());
658 } else {
659 SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << DC << BaseRange;
660 }
661 },
662 [=](Sema &SemaRef, TypoExpr *TE, TypoCorrection TC) mutable {
David Blaikiea8173ba2015-09-28 23:48:55 +0000663 LookupResult R(Q.SemaRef, Q.NameInfo, Q.LookupKind, Q.Redecl);
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000664 R.clear(); // Ensure there's no decls lingering in the shared state.
665 R.suppressDiagnostics();
666 R.setLookupName(TC.getCorrection());
667 for (NamedDecl *ND : TC)
668 R.addDecl(ND);
669 R.resolveKind();
670 return SemaRef.BuildMemberReferenceExpr(
671 BaseExpr, BaseExpr->getType(), OpLoc, IsArrow, SS, SourceLocation(),
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000672 nullptr, R, nullptr, nullptr);
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000673 },
Kaelyn Takatadb99de22014-11-11 23:00:38 +0000674 Sema::CTK_ErrorRecovery, DC);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000675
676 return false;
677}
678
Richard Smitha0edd302014-05-31 00:18:32 +0000679static ExprResult LookupMemberExpr(Sema &S, LookupResult &R,
680 ExprResult &BaseExpr, bool &IsArrow,
681 SourceLocation OpLoc, CXXScopeSpec &SS,
682 Decl *ObjCImpDecl, bool HasTemplateArgs);
683
Douglas Gregor5476205b2011-06-23 00:49:38 +0000684ExprResult
685Sema::BuildMemberReferenceExpr(Expr *Base, QualType BaseType,
686 SourceLocation OpLoc, bool IsArrow,
687 CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000688 SourceLocation TemplateKWLoc,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000689 NamedDecl *FirstQualifierInScope,
690 const DeclarationNameInfo &NameInfo,
Richard Smitha0edd302014-05-31 00:18:32 +0000691 const TemplateArgumentListInfo *TemplateArgs,
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000692 const Scope *S,
Richard Smitha0edd302014-05-31 00:18:32 +0000693 ActOnMemberAccessExtraArgs *ExtraArgs) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000694 if (BaseType->isDependentType() ||
695 (SS.isSet() && isDependentScopeSpecifier(SS)))
696 return ActOnDependentMemberExpr(Base, BaseType,
697 IsArrow, OpLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000698 SS, TemplateKWLoc, FirstQualifierInScope,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000699 NameInfo, TemplateArgs);
700
701 LookupResult R(*this, NameInfo, LookupMemberName);
702
703 // Implicit member accesses.
704 if (!Base) {
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000705 TypoExpr *TE = nullptr;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000706 QualType RecordTy = BaseType;
707 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
Kaelyn Takata5c3dc4b2014-11-11 23:26:54 +0000708 if (LookupMemberExprInRecord(*this, R, nullptr,
709 RecordTy->getAs<RecordType>(), OpLoc, IsArrow,
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000710 SS, TemplateArgs != nullptr, TE))
Douglas Gregor5476205b2011-06-23 00:49:38 +0000711 return ExprError();
Kaelyn Takata2e764b82014-11-11 23:26:58 +0000712 if (TE)
713 return TE;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000714
715 // Explicit member accesses.
716 } else {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000717 ExprResult BaseResult = Base;
Richard Smitha0edd302014-05-31 00:18:32 +0000718 ExprResult Result = LookupMemberExpr(
719 *this, R, BaseResult, IsArrow, OpLoc, SS,
720 ExtraArgs ? ExtraArgs->ObjCImpDecl : nullptr,
721 TemplateArgs != nullptr);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000722
723 if (BaseResult.isInvalid())
724 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000725 Base = BaseResult.get();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000726
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000727 if (Result.isInvalid())
Douglas Gregor5476205b2011-06-23 00:49:38 +0000728 return ExprError();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000729
730 if (Result.get())
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000731 return Result;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000732
733 // LookupMemberExpr can modify Base, and thus change BaseType
734 BaseType = Base->getType();
735 }
736
737 return BuildMemberReferenceExpr(Base, BaseType,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000738 OpLoc, IsArrow, SS, TemplateKWLoc,
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000739 FirstQualifierInScope, R, TemplateArgs, S,
Richard Smitha0edd302014-05-31 00:18:32 +0000740 false, ExtraArgs);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000741}
742
743static ExprResult
744BuildFieldReferenceExpr(Sema &S, Expr *BaseExpr, bool IsArrow,
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +0000745 SourceLocation OpLoc, const CXXScopeSpec &SS,
746 FieldDecl *Field, DeclAccessPair FoundDecl,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000747 const DeclarationNameInfo &MemberNameInfo);
748
749ExprResult
750Sema::BuildAnonymousStructUnionMemberReference(const CXXScopeSpec &SS,
751 SourceLocation loc,
752 IndirectFieldDecl *indirectField,
Eli Friedmancccd0642013-07-16 00:01:31 +0000753 DeclAccessPair foundDecl,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000754 Expr *baseObjectExpr,
755 SourceLocation opLoc) {
756 // First, build the expression that refers to the base object.
757
758 bool baseObjectIsPointer = false;
759 Qualifiers baseQuals;
760
761 // Case 1: the base of the indirect field is not a field.
762 VarDecl *baseVariable = indirectField->getVarDecl();
763 CXXScopeSpec EmptySS;
764 if (baseVariable) {
765 assert(baseVariable->getType()->isRecordType());
766
767 // In principle we could have a member access expression that
768 // accesses an anonymous struct/union that's a static member of
769 // the base object's class. However, under the current standard,
770 // static data members cannot be anonymous structs or unions.
771 // Supporting this is as easy as building a MemberExpr here.
772 assert(!baseObjectExpr && "anonymous struct/union is static data member?");
773
774 DeclarationNameInfo baseNameInfo(DeclarationName(), loc);
775
776 ExprResult result
777 = BuildDeclarationNameExpr(EmptySS, baseNameInfo, baseVariable);
778 if (result.isInvalid()) return ExprError();
779
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000780 baseObjectExpr = result.get();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000781 baseObjectIsPointer = false;
782 baseQuals = baseObjectExpr->getType().getQualifiers();
783
784 // Case 2: the base of the indirect field is a field and the user
785 // wrote a member expression.
786 } else if (baseObjectExpr) {
787 // The caller provided the base object expression. Determine
788 // whether its a pointer and whether it adds any qualifiers to the
789 // anonymous struct/union fields we're looking into.
790 QualType objectType = baseObjectExpr->getType();
791
792 if (const PointerType *ptr = objectType->getAs<PointerType>()) {
793 baseObjectIsPointer = true;
794 objectType = ptr->getPointeeType();
795 } else {
796 baseObjectIsPointer = false;
797 }
798 baseQuals = objectType.getQualifiers();
799
800 // Case 3: the base of the indirect field is a field and we should
801 // build an implicit member access.
802 } else {
803 // We've found a member of an anonymous struct/union that is
804 // inside a non-anonymous struct/union, so in a well-formed
805 // program our base object expression is "this".
Douglas Gregor09deffa2011-10-18 16:47:30 +0000806 QualType ThisTy = getCurrentThisType();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000807 if (ThisTy.isNull()) {
808 Diag(loc, diag::err_invalid_member_use_in_static_method)
809 << indirectField->getDeclName();
810 return ExprError();
811 }
812
813 // Our base object expression is "this".
Eli Friedman73a04092012-01-07 04:59:52 +0000814 CheckCXXThisCapture(loc);
Douglas Gregor5476205b2011-06-23 00:49:38 +0000815 baseObjectExpr
816 = new (Context) CXXThisExpr(loc, ThisTy, /*isImplicit=*/ true);
817 baseObjectIsPointer = true;
818 baseQuals = ThisTy->castAs<PointerType>()->getPointeeType().getQualifiers();
819 }
820
821 // Build the implicit member references to the field of the
822 // anonymous struct/union.
823 Expr *result = baseObjectExpr;
824 IndirectFieldDecl::chain_iterator
825 FI = indirectField->chain_begin(), FEnd = indirectField->chain_end();
826
827 // Build the first member access in the chain with full information.
828 if (!baseVariable) {
829 FieldDecl *field = cast<FieldDecl>(*FI);
830
Douglas Gregor5476205b2011-06-23 00:49:38 +0000831 // Make a nameInfo that properly uses the anonymous name.
832 DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +0000833
Douglas Gregor5476205b2011-06-23 00:49:38 +0000834 result = BuildFieldReferenceExpr(*this, result, baseObjectIsPointer,
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +0000835 SourceLocation(), EmptySS, field,
836 foundDecl, memberNameInfo).get();
Eli Friedmancccd0642013-07-16 00:01:31 +0000837 if (!result)
838 return ExprError();
839
Douglas Gregor5476205b2011-06-23 00:49:38 +0000840 // FIXME: check qualified member access
841 }
842
843 // In all cases, we should now skip the first declaration in the chain.
844 ++FI;
845
846 while (FI != FEnd) {
847 FieldDecl *field = cast<FieldDecl>(*FI++);
Eli Friedmancccd0642013-07-16 00:01:31 +0000848
Douglas Gregor5476205b2011-06-23 00:49:38 +0000849 // FIXME: these are somewhat meaningless
850 DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
Eli Friedmancccd0642013-07-16 00:01:31 +0000851 DeclAccessPair fakeFoundDecl =
852 DeclAccessPair::make(field, field->getAccess());
853
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +0000854 result =
855 BuildFieldReferenceExpr(*this, result, /*isarrow*/ false,
856 SourceLocation(), (FI == FEnd ? SS : EmptySS),
857 field, fakeFoundDecl, memberNameInfo).get();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000858 }
859
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000860 return result;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000861}
862
John McCall5e77d762013-04-16 07:28:30 +0000863static ExprResult
864BuildMSPropertyRefExpr(Sema &S, Expr *BaseExpr, bool IsArrow,
865 const CXXScopeSpec &SS,
866 MSPropertyDecl *PD,
867 const DeclarationNameInfo &NameInfo) {
868 // Property names are always simple identifiers and therefore never
869 // require any interesting additional storage.
870 return new (S.Context) MSPropertyRefExpr(BaseExpr, PD, IsArrow,
871 S.Context.PseudoObjectTy, VK_LValue,
872 SS.getWithLocInContext(S.Context),
873 NameInfo.getLoc());
874}
875
Douglas Gregor5476205b2011-06-23 00:49:38 +0000876/// \brief Build a MemberExpr AST node.
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +0000877static MemberExpr *BuildMemberExpr(
878 Sema &SemaRef, ASTContext &C, Expr *Base, bool isArrow,
879 SourceLocation OpLoc, const CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
880 ValueDecl *Member, DeclAccessPair FoundDecl,
881 const DeclarationNameInfo &MemberNameInfo, QualType Ty, ExprValueKind VK,
882 ExprObjectKind OK, const TemplateArgumentListInfo *TemplateArgs = nullptr) {
Richard Smith08b12f12011-10-27 22:11:44 +0000883 assert((!isArrow || Base->isRValue()) && "-> base must be a pointer rvalue");
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +0000884 MemberExpr *E = MemberExpr::Create(
885 C, Base, isArrow, OpLoc, SS.getWithLocInContext(C), TemplateKWLoc, Member,
886 FoundDecl, MemberNameInfo, TemplateArgs, Ty, VK, OK);
Eli Friedmanfa0df832012-02-02 03:46:19 +0000887 SemaRef.MarkMemberReferenced(E);
888 return E;
Douglas Gregor5476205b2011-06-23 00:49:38 +0000889}
890
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000891/// \brief Determine if the given scope is within a function-try-block handler.
892static bool IsInFnTryBlockHandler(const Scope *S) {
893 // Walk the scope stack until finding a FnTryCatchScope, or leave the
894 // function scope. If a FnTryCatchScope is found, check whether the TryScope
895 // flag is set. If it is not, it's a function-try-block handler.
896 for (; S != S->getFnParent(); S = S->getParent()) {
897 if (S->getFlags() & Scope::FnTryCatchScope)
898 return (S->getFlags() & Scope::TryScope) != Scope::TryScope;
899 }
900 return false;
901}
902
Douglas Gregor5476205b2011-06-23 00:49:38 +0000903ExprResult
904Sema::BuildMemberReferenceExpr(Expr *BaseExpr, QualType BaseExprType,
905 SourceLocation OpLoc, bool IsArrow,
906 const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000907 SourceLocation TemplateKWLoc,
Douglas Gregor5476205b2011-06-23 00:49:38 +0000908 NamedDecl *FirstQualifierInScope,
909 LookupResult &R,
Kaelyn Uhrain76e07342012-04-25 19:49:54 +0000910 const TemplateArgumentListInfo *TemplateArgs,
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000911 const Scope *S,
Kaelyn Uhrain76e07342012-04-25 19:49:54 +0000912 bool SuppressQualifierCheck,
913 ActOnMemberAccessExtraArgs *ExtraArgs) {
Douglas Gregor5476205b2011-06-23 00:49:38 +0000914 QualType BaseType = BaseExprType;
915 if (IsArrow) {
916 assert(BaseType->isPointerType());
John McCall526ab472011-10-25 17:37:35 +0000917 BaseType = BaseType->castAs<PointerType>()->getPointeeType();
Douglas Gregor5476205b2011-06-23 00:49:38 +0000918 }
919 R.setBaseObjectType(BaseType);
Faisal Valia17d19f2013-11-07 05:17:06 +0000920
921 LambdaScopeInfo *const CurLSI = getCurLambda();
922 // If this is an implicit member reference and the overloaded
923 // name refers to both static and non-static member functions
924 // (i.e. BaseExpr is null) and if we are currently processing a lambda,
925 // check if we should/can capture 'this'...
926 // Keep this example in mind:
927 // struct X {
928 // void f(int) { }
929 // static void f(double) { }
930 //
931 // int g() {
932 // auto L = [=](auto a) {
933 // return [](int i) {
934 // return [=](auto b) {
935 // f(b);
936 // //f(decltype(a){});
937 // };
938 // };
939 // };
940 // auto M = L(0.0);
941 // auto N = M(3);
942 // N(5.32); // OK, must not error.
943 // return 0;
944 // }
945 // };
946 //
947 if (!BaseExpr && CurLSI) {
948 SourceLocation Loc = R.getNameLoc();
949 if (SS.getRange().isValid())
950 Loc = SS.getRange().getBegin();
951 DeclContext *EnclosingFunctionCtx = CurContext->getParent()->getParent();
952 // If the enclosing function is not dependent, then this lambda is
953 // capture ready, so if we can capture this, do so.
954 if (!EnclosingFunctionCtx->isDependentContext()) {
955 // If the current lambda and all enclosing lambdas can capture 'this' -
956 // then go ahead and capture 'this' (since our unresolved overload set
957 // contains both static and non-static member functions).
958 if (!CheckCXXThisCapture(Loc, /*Explcit*/false, /*Diagnose*/false))
959 CheckCXXThisCapture(Loc);
960 } else if (CurContext->isDependentContext()) {
961 // ... since this is an implicit member reference, that might potentially
962 // involve a 'this' capture, mark 'this' for potential capture in
963 // enclosing lambdas.
964 if (CurLSI->ImpCaptureStyle != CurLSI->ImpCap_None)
965 CurLSI->addPotentialThisCapture(Loc);
966 }
967 }
Douglas Gregor5476205b2011-06-23 00:49:38 +0000968 const DeclarationNameInfo &MemberNameInfo = R.getLookupNameInfo();
969 DeclarationName MemberName = MemberNameInfo.getName();
970 SourceLocation MemberLoc = MemberNameInfo.getLoc();
971
972 if (R.isAmbiguous())
973 return ExprError();
974
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000975 // [except.handle]p10: Referring to any non-static member or base class of an
976 // object in the handler for a function-try-block of a constructor or
977 // destructor for that object results in undefined behavior.
978 const auto *FD = getCurFunctionDecl();
979 if (S && BaseExpr && FD &&
980 (isa<CXXDestructorDecl>(FD) || isa<CXXConstructorDecl>(FD)) &&
981 isa<CXXThisExpr>(BaseExpr->IgnoreImpCasts()) &&
982 IsInFnTryBlockHandler(S))
983 Diag(MemberLoc, diag::warn_cdtor_function_try_handler_mem_expr)
984 << isa<CXXDestructorDecl>(FD);
985
Douglas Gregor5476205b2011-06-23 00:49:38 +0000986 if (R.empty()) {
987 // Rederive where we looked up.
988 DeclContext *DC = (SS.isSet()
989 ? computeDeclContext(SS, false)
990 : BaseType->getAs<RecordType>()->getDecl());
991
Kaelyn Uhrain76e07342012-04-25 19:49:54 +0000992 if (ExtraArgs) {
993 ExprResult RetryExpr;
994 if (!IsArrow && BaseExpr) {
Kaelyn Uhraind4ea98a2012-05-01 01:17:53 +0000995 SFINAETrap Trap(*this, true);
Kaelyn Uhrain76e07342012-04-25 19:49:54 +0000996 ParsedType ObjectType;
997 bool MayBePseudoDestructor = false;
998 RetryExpr = ActOnStartCXXMemberReference(getCurScope(), BaseExpr,
999 OpLoc, tok::arrow, ObjectType,
1000 MayBePseudoDestructor);
1001 if (RetryExpr.isUsable() && !Trap.hasErrorOccurred()) {
1002 CXXScopeSpec TempSS(SS);
1003 RetryExpr = ActOnMemberAccessExpr(
1004 ExtraArgs->S, RetryExpr.get(), OpLoc, tok::arrow, TempSS,
David Majnemerced8bdf2015-02-25 17:36:15 +00001005 TemplateKWLoc, ExtraArgs->Id, ExtraArgs->ObjCImpDecl);
Kaelyn Uhrain76e07342012-04-25 19:49:54 +00001006 }
1007 if (Trap.hasErrorOccurred())
1008 RetryExpr = ExprError();
1009 }
1010 if (RetryExpr.isUsable()) {
1011 Diag(OpLoc, diag::err_no_member_overloaded_arrow)
1012 << MemberName << DC << FixItHint::CreateReplacement(OpLoc, "->");
1013 return RetryExpr;
1014 }
1015 }
1016
Douglas Gregor5476205b2011-06-23 00:49:38 +00001017 Diag(R.getNameLoc(), diag::err_no_member)
1018 << MemberName << DC
1019 << (BaseExpr ? BaseExpr->getSourceRange() : SourceRange());
1020 return ExprError();
1021 }
1022
1023 // Diagnose lookups that find only declarations from a non-base
1024 // type. This is possible for either qualified lookups (which may
1025 // have been qualified with an unrelated type) or implicit member
1026 // expressions (which were found with unqualified lookup and thus
1027 // may have come from an enclosing scope). Note that it's okay for
1028 // lookup to find declarations from a non-base type as long as those
1029 // aren't the ones picked by overload resolution.
1030 if ((SS.isSet() || !BaseExpr ||
1031 (isa<CXXThisExpr>(BaseExpr) &&
1032 cast<CXXThisExpr>(BaseExpr)->isImplicit())) &&
1033 !SuppressQualifierCheck &&
1034 CheckQualifiedMemberReference(BaseExpr, BaseType, SS, R))
1035 return ExprError();
Fariborz Jahanian502d2ee2011-10-17 21:00:22 +00001036
Douglas Gregor5476205b2011-06-23 00:49:38 +00001037 // Construct an unresolved result if we in fact got an unresolved
1038 // result.
1039 if (R.isOverloadedResult() || R.isUnresolvableResult()) {
1040 // Suppress any lookup-related diagnostics; we'll do these when we
1041 // pick a member.
1042 R.suppressDiagnostics();
1043
1044 UnresolvedMemberExpr *MemExpr
1045 = UnresolvedMemberExpr::Create(Context, R.isUnresolvableResult(),
1046 BaseExpr, BaseExprType,
1047 IsArrow, OpLoc,
1048 SS.getWithLocInContext(Context),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001049 TemplateKWLoc, MemberNameInfo,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001050 TemplateArgs, R.begin(), R.end());
1051
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001052 return MemExpr;
Douglas Gregor5476205b2011-06-23 00:49:38 +00001053 }
1054
1055 assert(R.isSingleResult());
1056 DeclAccessPair FoundDecl = R.begin().getPair();
1057 NamedDecl *MemberDecl = R.getFoundDecl();
1058
1059 // FIXME: diagnose the presence of template arguments now.
1060
1061 // If the decl being referenced had an error, return an error for this
1062 // sub-expr without emitting another error, in order to avoid cascading
1063 // error cases.
1064 if (MemberDecl->isInvalidDecl())
1065 return ExprError();
1066
1067 // Handle the implicit-member-access case.
1068 if (!BaseExpr) {
1069 // If this is not an instance member, convert to a non-member access.
1070 if (!MemberDecl->isCXXInstanceMember())
1071 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), MemberDecl);
1072
1073 SourceLocation Loc = R.getNameLoc();
1074 if (SS.getRange().isValid())
1075 Loc = SS.getRange().getBegin();
Eli Friedman73a04092012-01-07 04:59:52 +00001076 CheckCXXThisCapture(Loc);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001077 BaseExpr = new (Context) CXXThisExpr(Loc, BaseExprType,/*isImplicit=*/true);
1078 }
1079
Douglas Gregor5476205b2011-06-23 00:49:38 +00001080 // Check the use of this member.
Davide Italianof179e362015-07-22 00:30:58 +00001081 if (DiagnoseUseOfDecl(MemberDecl, MemberLoc))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001082 return ExprError();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001083
Douglas Gregor5476205b2011-06-23 00:49:38 +00001084 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl))
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +00001085 return BuildFieldReferenceExpr(*this, BaseExpr, IsArrow, OpLoc, SS, FD,
1086 FoundDecl, MemberNameInfo);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001087
John McCall5e77d762013-04-16 07:28:30 +00001088 if (MSPropertyDecl *PD = dyn_cast<MSPropertyDecl>(MemberDecl))
1089 return BuildMSPropertyRefExpr(*this, BaseExpr, IsArrow, SS, PD,
1090 MemberNameInfo);
1091
Douglas Gregor5476205b2011-06-23 00:49:38 +00001092 if (IndirectFieldDecl *FD = dyn_cast<IndirectFieldDecl>(MemberDecl))
1093 // We may have found a field within an anonymous union or struct
1094 // (C++ [class.union]).
1095 return BuildAnonymousStructUnionMemberReference(SS, MemberLoc, FD,
Eli Friedmancccd0642013-07-16 00:01:31 +00001096 FoundDecl, BaseExpr,
1097 OpLoc);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001098
1099 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +00001100 return BuildMemberExpr(*this, Context, BaseExpr, IsArrow, OpLoc, SS,
1101 TemplateKWLoc, Var, FoundDecl, MemberNameInfo,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001102 Var->getType().getNonReferenceType(), VK_LValue,
1103 OK_Ordinary);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001104 }
1105
1106 if (CXXMethodDecl *MemberFn = dyn_cast<CXXMethodDecl>(MemberDecl)) {
1107 ExprValueKind valueKind;
1108 QualType type;
1109 if (MemberFn->isInstance()) {
1110 valueKind = VK_RValue;
1111 type = Context.BoundMemberTy;
1112 } else {
1113 valueKind = VK_LValue;
1114 type = MemberFn->getType();
1115 }
1116
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +00001117 return BuildMemberExpr(*this, Context, BaseExpr, IsArrow, OpLoc, SS,
1118 TemplateKWLoc, MemberFn, FoundDecl, MemberNameInfo,
1119 type, valueKind, OK_Ordinary);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001120 }
1121 assert(!isa<FunctionDecl>(MemberDecl) && "member function not C++ method?");
1122
1123 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +00001124 return BuildMemberExpr(*this, Context, BaseExpr, IsArrow, OpLoc, SS,
1125 TemplateKWLoc, Enum, FoundDecl, MemberNameInfo,
1126 Enum->getType(), VK_RValue, OK_Ordinary);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001127 }
1128
Douglas Gregor5476205b2011-06-23 00:49:38 +00001129 // We found something that we didn't expect. Complain.
1130 if (isa<TypeDecl>(MemberDecl))
1131 Diag(MemberLoc, diag::err_typecheck_member_reference_type)
1132 << MemberName << BaseType << int(IsArrow);
1133 else
1134 Diag(MemberLoc, diag::err_typecheck_member_reference_unknown)
1135 << MemberName << BaseType << int(IsArrow);
1136
1137 Diag(MemberDecl->getLocation(), diag::note_member_declared_here)
1138 << MemberName;
1139 R.suppressDiagnostics();
1140 return ExprError();
1141}
1142
1143/// Given that normal member access failed on the given expression,
1144/// and given that the expression's type involves builtin-id or
1145/// builtin-Class, decide whether substituting in the redefinition
1146/// types would be profitable. The redefinition type is whatever
1147/// this translation unit tried to typedef to id/Class; we store
1148/// it to the side and then re-use it in places like this.
1149static bool ShouldTryAgainWithRedefinitionType(Sema &S, ExprResult &base) {
1150 const ObjCObjectPointerType *opty
1151 = base.get()->getType()->getAs<ObjCObjectPointerType>();
1152 if (!opty) return false;
1153
1154 const ObjCObjectType *ty = opty->getObjectType();
1155
1156 QualType redef;
1157 if (ty->isObjCId()) {
Douglas Gregor97673472011-08-11 20:58:55 +00001158 redef = S.Context.getObjCIdRedefinitionType();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001159 } else if (ty->isObjCClass()) {
Douglas Gregor97673472011-08-11 20:58:55 +00001160 redef = S.Context.getObjCClassRedefinitionType();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001161 } else {
1162 return false;
1163 }
1164
1165 // Do the substitution as long as the redefinition type isn't just a
1166 // possibly-qualified pointer to builtin-id or builtin-Class again.
1167 opty = redef->getAs<ObjCObjectPointerType>();
Richard Trieuf20d9052012-10-12 17:48:40 +00001168 if (opty && !opty->getObjectType()->getInterface())
Douglas Gregor5476205b2011-06-23 00:49:38 +00001169 return false;
1170
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001171 base = S.ImpCastExprToType(base.get(), redef, CK_BitCast);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001172 return true;
1173}
1174
John McCall50a2c2c2011-10-11 23:14:30 +00001175static bool isRecordType(QualType T) {
1176 return T->isRecordType();
1177}
1178static bool isPointerToRecordType(QualType T) {
1179 if (const PointerType *PT = T->getAs<PointerType>())
1180 return PT->getPointeeType()->isRecordType();
1181 return false;
1182}
1183
Richard Smithcab9a7d2011-10-26 19:06:56 +00001184/// Perform conversions on the LHS of a member access expression.
1185ExprResult
1186Sema::PerformMemberExprBaseConversion(Expr *Base, bool IsArrow) {
Eli Friedman9a766c42012-01-13 02:20:01 +00001187 if (IsArrow && !Base->getType()->isFunctionType())
1188 return DefaultFunctionArrayLvalueConversion(Base);
Richard Smithcab9a7d2011-10-26 19:06:56 +00001189
Eli Friedman9a766c42012-01-13 02:20:01 +00001190 return CheckPlaceholderExpr(Base);
Richard Smithcab9a7d2011-10-26 19:06:56 +00001191}
1192
Douglas Gregor5476205b2011-06-23 00:49:38 +00001193/// Look up the given member of the given non-type-dependent
1194/// expression. This can return in one of two ways:
1195/// * If it returns a sentinel null-but-valid result, the caller will
1196/// assume that lookup was performed and the results written into
1197/// the provided structure. It will take over from there.
1198/// * Otherwise, the returned expression will be produced in place of
1199/// an ordinary member expression.
1200///
1201/// The ObjCImpDecl bit is a gross hack that will need to be properly
1202/// fixed for ObjC++.
Richard Smitha0edd302014-05-31 00:18:32 +00001203static ExprResult LookupMemberExpr(Sema &S, LookupResult &R,
1204 ExprResult &BaseExpr, bool &IsArrow,
1205 SourceLocation OpLoc, CXXScopeSpec &SS,
1206 Decl *ObjCImpDecl, bool HasTemplateArgs) {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001207 assert(BaseExpr.get() && "no base expression");
1208
1209 // Perform default conversions.
Richard Smitha0edd302014-05-31 00:18:32 +00001210 BaseExpr = S.PerformMemberExprBaseConversion(BaseExpr.get(), IsArrow);
John McCall50a2c2c2011-10-11 23:14:30 +00001211 if (BaseExpr.isInvalid())
1212 return ExprError();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001213
Douglas Gregor5476205b2011-06-23 00:49:38 +00001214 QualType BaseType = BaseExpr.get()->getType();
1215 assert(!BaseType->isDependentType());
1216
1217 DeclarationName MemberName = R.getLookupName();
1218 SourceLocation MemberLoc = R.getNameLoc();
1219
1220 // For later type-checking purposes, turn arrow accesses into dot
1221 // accesses. The only access type we support that doesn't follow
1222 // the C equivalence "a->b === (*a).b" is ObjC property accesses,
1223 // and those never use arrows, so this is unaffected.
1224 if (IsArrow) {
1225 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
1226 BaseType = Ptr->getPointeeType();
1227 else if (const ObjCObjectPointerType *Ptr
1228 = BaseType->getAs<ObjCObjectPointerType>())
1229 BaseType = Ptr->getPointeeType();
1230 else if (BaseType->isRecordType()) {
1231 // Recover from arrow accesses to records, e.g.:
1232 // struct MyRecord foo;
1233 // foo->bar
1234 // This is actually well-formed in C++ if MyRecord has an
1235 // overloaded operator->, but that should have been dealt with
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00001236 // by now--or a diagnostic message already issued if a problem
1237 // was encountered while looking for the overloaded operator->.
Richard Smitha0edd302014-05-31 00:18:32 +00001238 if (!S.getLangOpts().CPlusPlus) {
1239 S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
Kaelyn Uhrainbd6ddaa2013-10-31 20:32:56 +00001240 << BaseType << int(IsArrow) << BaseExpr.get()->getSourceRange()
1241 << FixItHint::CreateReplacement(OpLoc, ".");
1242 }
Douglas Gregor5476205b2011-06-23 00:49:38 +00001243 IsArrow = false;
Eli Friedman9a766c42012-01-13 02:20:01 +00001244 } else if (BaseType->isFunctionType()) {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001245 goto fail;
1246 } else {
Richard Smitha0edd302014-05-31 00:18:32 +00001247 S.Diag(MemberLoc, diag::err_typecheck_member_reference_arrow)
Douglas Gregor5476205b2011-06-23 00:49:38 +00001248 << BaseType << BaseExpr.get()->getSourceRange();
1249 return ExprError();
1250 }
1251 }
1252
1253 // Handle field access to simple records.
1254 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
Kaelyn Takatafe408a72014-10-27 18:07:46 +00001255 TypoExpr *TE = nullptr;
Kaelyn Takata5c3dc4b2014-11-11 23:26:54 +00001256 if (LookupMemberExprInRecord(S, R, BaseExpr.get(), RTy,
Kaelyn Takata2e764b82014-11-11 23:26:58 +00001257 OpLoc, IsArrow, SS, HasTemplateArgs, TE))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001258 return ExprError();
1259
1260 // Returning valid-but-null is how we indicate to the caller that
Kaelyn Takatafe408a72014-10-27 18:07:46 +00001261 // the lookup result was filled in. If typo correction was attempted and
1262 // failed, the lookup result will have been cleared--that combined with the
1263 // valid-but-null ExprResult will trigger the appropriate diagnostics.
1264 return ExprResult(TE);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001265 }
1266
1267 // Handle ivar access to Objective-C objects.
1268 if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>()) {
Douglas Gregorbcc95392011-10-10 16:09:49 +00001269 if (!SS.isEmpty() && !SS.isInvalid()) {
Richard Smitha0edd302014-05-31 00:18:32 +00001270 S.Diag(SS.getRange().getBegin(), diag::err_qualified_objc_access)
Douglas Gregor12340e52011-10-09 23:22:49 +00001271 << 1 << SS.getScopeRep()
1272 << FixItHint::CreateRemoval(SS.getRange());
1273 SS.clear();
1274 }
Richard Smitha0edd302014-05-31 00:18:32 +00001275
Douglas Gregor5476205b2011-06-23 00:49:38 +00001276 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
1277
1278 // There are three cases for the base type:
1279 // - builtin id (qualified or unqualified)
1280 // - builtin Class (qualified or unqualified)
1281 // - an interface
1282 ObjCInterfaceDecl *IDecl = OTy->getInterface();
1283 if (!IDecl) {
Richard Smitha0edd302014-05-31 00:18:32 +00001284 if (S.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor5476205b2011-06-23 00:49:38 +00001285 (OTy->isObjCId() || OTy->isObjCClass()))
1286 goto fail;
1287 // There's an implicit 'isa' ivar on all objects.
1288 // But we only actually find it this way on objects of type 'id',
Eric Christopherae6b9d22012-08-16 23:50:37 +00001289 // apparently.
Fariborz Jahanian84510742013-03-27 21:19:25 +00001290 if (OTy->isObjCId() && Member->isStr("isa"))
Richard Smitha0edd302014-05-31 00:18:32 +00001291 return new (S.Context) ObjCIsaExpr(BaseExpr.get(), IsArrow, MemberLoc,
1292 OpLoc, S.Context.getObjCClassType());
1293 if (ShouldTryAgainWithRedefinitionType(S, BaseExpr))
1294 return LookupMemberExpr(S, R, BaseExpr, IsArrow, OpLoc, SS,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001295 ObjCImpDecl, HasTemplateArgs);
1296 goto fail;
1297 }
Richard Smitha0edd302014-05-31 00:18:32 +00001298
1299 if (S.RequireCompleteType(OpLoc, BaseType,
1300 diag::err_typecheck_incomplete_tag,
1301 BaseExpr.get()))
Douglas Gregor5dbf4eb2012-01-02 17:18:37 +00001302 return ExprError();
Craig Topperc3ec1492014-05-26 06:22:03 +00001303
1304 ObjCInterfaceDecl *ClassDeclared = nullptr;
Douglas Gregor5476205b2011-06-23 00:49:38 +00001305 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
1306
1307 if (!IV) {
1308 // Attempt to correct for typos in ivar names.
Kaelyn Takata89c881b2014-10-27 18:07:29 +00001309 auto Validator = llvm::make_unique<DeclFilterCCC<ObjCIvarDecl>>();
1310 Validator->IsObjCIvarLookup = IsArrow;
Richard Smitha0edd302014-05-31 00:18:32 +00001311 if (TypoCorrection Corrected = S.CorrectTypo(
1312 R.getLookupNameInfo(), Sema::LookupMemberName, nullptr, nullptr,
Kaelyn Takata89c881b2014-10-27 18:07:29 +00001313 std::move(Validator), Sema::CTK_ErrorRecovery, IDecl)) {
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +00001314 IV = Corrected.getCorrectionDeclAs<ObjCIvarDecl>();
Richard Smitha0edd302014-05-31 00:18:32 +00001315 S.diagnoseTypo(
1316 Corrected,
1317 S.PDiag(diag::err_typecheck_member_reference_ivar_suggest)
1318 << IDecl->getDeclName() << MemberName);
Richard Smithf9b15102013-08-17 00:46:16 +00001319
Ted Kremenek679b4782012-03-17 00:53:39 +00001320 // Figure out the class that declares the ivar.
1321 assert(!ClassDeclared);
1322 Decl *D = cast<Decl>(IV->getDeclContext());
1323 if (ObjCCategoryDecl *CAT = dyn_cast<ObjCCategoryDecl>(D))
1324 D = CAT->getClassInterface();
1325 ClassDeclared = cast<ObjCInterfaceDecl>(D);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001326 } else {
Fariborz Jahanianc297cd82011-06-28 00:00:52 +00001327 if (IsArrow && IDecl->FindPropertyDeclaration(Member)) {
Richard Smitha0edd302014-05-31 00:18:32 +00001328 S.Diag(MemberLoc, diag::err_property_found_suggest)
1329 << Member << BaseExpr.get()->getType()
1330 << FixItHint::CreateReplacement(OpLoc, ".");
Fariborz Jahanianc297cd82011-06-28 00:00:52 +00001331 return ExprError();
1332 }
Douglas Gregor5476205b2011-06-23 00:49:38 +00001333
Richard Smitha0edd302014-05-31 00:18:32 +00001334 S.Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
1335 << IDecl->getDeclName() << MemberName
1336 << BaseExpr.get()->getSourceRange();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001337 return ExprError();
1338 }
1339 }
Richard Smitha0edd302014-05-31 00:18:32 +00001340
Ted Kremenek679b4782012-03-17 00:53:39 +00001341 assert(ClassDeclared);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001342
1343 // If the decl being referenced had an error, return an error for this
1344 // sub-expr without emitting another error, in order to avoid cascading
1345 // error cases.
1346 if (IV->isInvalidDecl())
1347 return ExprError();
1348
1349 // Check whether we can reference this field.
Richard Smitha0edd302014-05-31 00:18:32 +00001350 if (S.DiagnoseUseOfDecl(IV, MemberLoc))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001351 return ExprError();
1352 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
1353 IV->getAccessControl() != ObjCIvarDecl::Package) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001354 ObjCInterfaceDecl *ClassOfMethodDecl = nullptr;
Richard Smitha0edd302014-05-31 00:18:32 +00001355 if (ObjCMethodDecl *MD = S.getCurMethodDecl())
Douglas Gregor5476205b2011-06-23 00:49:38 +00001356 ClassOfMethodDecl = MD->getClassInterface();
Richard Smitha0edd302014-05-31 00:18:32 +00001357 else if (ObjCImpDecl && S.getCurFunctionDecl()) {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001358 // Case of a c-function declared inside an objc implementation.
1359 // FIXME: For a c-style function nested inside an objc implementation
1360 // class, there is no implementation context available, so we pass
1361 // down the context as argument to this routine. Ideally, this context
1362 // need be passed down in the AST node and somehow calculated from the
1363 // AST for a function decl.
1364 if (ObjCImplementationDecl *IMPD =
1365 dyn_cast<ObjCImplementationDecl>(ObjCImpDecl))
1366 ClassOfMethodDecl = IMPD->getClassInterface();
1367 else if (ObjCCategoryImplDecl* CatImplClass =
1368 dyn_cast<ObjCCategoryImplDecl>(ObjCImpDecl))
1369 ClassOfMethodDecl = CatImplClass->getClassInterface();
1370 }
Richard Smitha0edd302014-05-31 00:18:32 +00001371 if (!S.getLangOpts().DebuggerSupport) {
Fariborz Jahaniand6cb4a82012-03-07 00:58:41 +00001372 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
1373 if (!declaresSameEntity(ClassDeclared, IDecl) ||
1374 !declaresSameEntity(ClassOfMethodDecl, ClassDeclared))
Richard Smitha0edd302014-05-31 00:18:32 +00001375 S.Diag(MemberLoc, diag::error_private_ivar_access)
Fariborz Jahaniand6cb4a82012-03-07 00:58:41 +00001376 << IV->getDeclName();
1377 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
1378 // @protected
Richard Smitha0edd302014-05-31 00:18:32 +00001379 S.Diag(MemberLoc, diag::error_protected_ivar_access)
1380 << IV->getDeclName();
Fariborz Jahaniand6cb4a82012-03-07 00:58:41 +00001381 }
Douglas Gregor5476205b2011-06-23 00:49:38 +00001382 }
Fariborz Jahanian285a7cc2012-08-07 23:48:10 +00001383 bool warn = true;
Richard Smitha0edd302014-05-31 00:18:32 +00001384 if (S.getLangOpts().ObjCAutoRefCount) {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001385 Expr *BaseExp = BaseExpr.get()->IgnoreParenImpCasts();
1386 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(BaseExp))
1387 if (UO->getOpcode() == UO_Deref)
1388 BaseExp = UO->getSubExpr()->IgnoreParenCasts();
1389
1390 if (DeclRefExpr *DE = dyn_cast<DeclRefExpr>(BaseExp))
Fariborz Jahanian285a7cc2012-08-07 23:48:10 +00001391 if (DE->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {
Richard Smitha0edd302014-05-31 00:18:32 +00001392 S.Diag(DE->getLocation(), diag::error_arc_weak_ivar_access);
Fariborz Jahanian285a7cc2012-08-07 23:48:10 +00001393 warn = false;
1394 }
Douglas Gregor5476205b2011-06-23 00:49:38 +00001395 }
Fariborz Jahaniana5063a62012-08-08 16:41:04 +00001396 if (warn) {
Richard Smitha0edd302014-05-31 00:18:32 +00001397 if (ObjCMethodDecl *MD = S.getCurMethodDecl()) {
Fariborz Jahaniana7c9f882012-08-07 16:38:44 +00001398 ObjCMethodFamily MF = MD->getMethodFamily();
1399 warn = (MF != OMF_init && MF != OMF_dealloc &&
Fariborz Jahaniana934a022013-02-14 19:07:19 +00001400 MF != OMF_finalize &&
Richard Smitha0edd302014-05-31 00:18:32 +00001401 !S.IvarBacksCurrentMethodAccessor(IDecl, MD, IV));
Fariborz Jahaniana7c9f882012-08-07 16:38:44 +00001402 }
1403 if (warn)
Richard Smitha0edd302014-05-31 00:18:32 +00001404 S.Diag(MemberLoc, diag::warn_direct_ivar_access) << IV->getDeclName();
Fariborz Jahaniana7c9f882012-08-07 16:38:44 +00001405 }
Jordan Rose657b5f42012-09-28 22:21:35 +00001406
Richard Smitha0edd302014-05-31 00:18:32 +00001407 ObjCIvarRefExpr *Result = new (S.Context) ObjCIvarRefExpr(
Douglas Gregore83b9562015-07-07 03:57:53 +00001408 IV, IV->getUsageType(BaseType), MemberLoc, OpLoc, BaseExpr.get(),
1409 IsArrow);
Jordan Rose657b5f42012-09-28 22:21:35 +00001410
Richard Smitha0edd302014-05-31 00:18:32 +00001411 if (S.getLangOpts().ObjCAutoRefCount) {
Jordan Rose657b5f42012-09-28 22:21:35 +00001412 if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001413 if (!S.Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, MemberLoc))
Richard Smitha0edd302014-05-31 00:18:32 +00001414 S.recordUseOfEvaluatedWeak(Result);
Jordan Rose657b5f42012-09-28 22:21:35 +00001415 }
1416 }
1417
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001418 return Result;
Douglas Gregor5476205b2011-06-23 00:49:38 +00001419 }
1420
1421 // Objective-C property access.
1422 const ObjCObjectPointerType *OPT;
1423 if (!IsArrow && (OPT = BaseType->getAs<ObjCObjectPointerType>())) {
Douglas Gregorbcc95392011-10-10 16:09:49 +00001424 if (!SS.isEmpty() && !SS.isInvalid()) {
Richard Smitha0edd302014-05-31 00:18:32 +00001425 S.Diag(SS.getRange().getBegin(), diag::err_qualified_objc_access)
1426 << 0 << SS.getScopeRep() << FixItHint::CreateRemoval(SS.getRange());
Douglas Gregor12340e52011-10-09 23:22:49 +00001427 SS.clear();
1428 }
1429
Douglas Gregor5476205b2011-06-23 00:49:38 +00001430 // This actually uses the base as an r-value.
Richard Smitha0edd302014-05-31 00:18:32 +00001431 BaseExpr = S.DefaultLvalueConversion(BaseExpr.get());
Douglas Gregor5476205b2011-06-23 00:49:38 +00001432 if (BaseExpr.isInvalid())
1433 return ExprError();
1434
Richard Smitha0edd302014-05-31 00:18:32 +00001435 assert(S.Context.hasSameUnqualifiedType(BaseType,
1436 BaseExpr.get()->getType()));
Douglas Gregor5476205b2011-06-23 00:49:38 +00001437
1438 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
1439
1440 const ObjCObjectType *OT = OPT->getObjectType();
1441
1442 // id, with and without qualifiers.
1443 if (OT->isObjCId()) {
1444 // Check protocols on qualified interfaces.
Richard Smitha0edd302014-05-31 00:18:32 +00001445 Selector Sel = S.PP.getSelectorTable().getNullarySelector(Member);
1446 if (Decl *PMDecl =
1447 FindGetterSetterNameDecl(OPT, Member, Sel, S.Context)) {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001448 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
1449 // Check the use of this declaration
Richard Smitha0edd302014-05-31 00:18:32 +00001450 if (S.DiagnoseUseOfDecl(PD, MemberLoc))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001451 return ExprError();
1452
Richard Smitha0edd302014-05-31 00:18:32 +00001453 return new (S.Context)
1454 ObjCPropertyRefExpr(PD, S.Context.PseudoObjectTy, VK_LValue,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001455 OK_ObjCProperty, MemberLoc, BaseExpr.get());
Douglas Gregor5476205b2011-06-23 00:49:38 +00001456 }
1457
1458 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
1459 // Check the use of this method.
Richard Smitha0edd302014-05-31 00:18:32 +00001460 if (S.DiagnoseUseOfDecl(OMD, MemberLoc))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001461 return ExprError();
1462 Selector SetterSel =
Richard Smitha0edd302014-05-31 00:18:32 +00001463 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(),
1464 S.PP.getSelectorTable(),
Adrian Prantla4ce9062013-06-07 22:29:12 +00001465 Member);
Craig Topperc3ec1492014-05-26 06:22:03 +00001466 ObjCMethodDecl *SMD = nullptr;
1467 if (Decl *SDecl = FindGetterSetterNameDecl(OPT,
Richard Smitha0edd302014-05-31 00:18:32 +00001468 /*Property id*/ nullptr,
1469 SetterSel, S.Context))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001470 SMD = dyn_cast<ObjCMethodDecl>(SDecl);
Richard Smitha0edd302014-05-31 00:18:32 +00001471
1472 return new (S.Context)
1473 ObjCPropertyRefExpr(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001474 OK_ObjCProperty, MemberLoc, BaseExpr.get());
Douglas Gregor5476205b2011-06-23 00:49:38 +00001475 }
1476 }
1477 // Use of id.member can only be for a property reference. Do not
1478 // use the 'id' redefinition in this case.
Richard Smitha0edd302014-05-31 00:18:32 +00001479 if (IsArrow && ShouldTryAgainWithRedefinitionType(S, BaseExpr))
1480 return LookupMemberExpr(S, R, BaseExpr, IsArrow, OpLoc, SS,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001481 ObjCImpDecl, HasTemplateArgs);
1482
Richard Smitha0edd302014-05-31 00:18:32 +00001483 return ExprError(S.Diag(MemberLoc, diag::err_property_not_found)
Douglas Gregor5476205b2011-06-23 00:49:38 +00001484 << MemberName << BaseType);
1485 }
1486
1487 // 'Class', unqualified only.
1488 if (OT->isObjCClass()) {
1489 // Only works in a method declaration (??!).
Richard Smitha0edd302014-05-31 00:18:32 +00001490 ObjCMethodDecl *MD = S.getCurMethodDecl();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001491 if (!MD) {
Richard Smitha0edd302014-05-31 00:18:32 +00001492 if (ShouldTryAgainWithRedefinitionType(S, BaseExpr))
1493 return LookupMemberExpr(S, R, BaseExpr, IsArrow, OpLoc, SS,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001494 ObjCImpDecl, HasTemplateArgs);
1495
1496 goto fail;
1497 }
1498
1499 // Also must look for a getter name which uses property syntax.
Richard Smitha0edd302014-05-31 00:18:32 +00001500 Selector Sel = S.PP.getSelectorTable().getNullarySelector(Member);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001501 ObjCInterfaceDecl *IFace = MD->getClassInterface();
1502 ObjCMethodDecl *Getter;
1503 if ((Getter = IFace->lookupClassMethod(Sel))) {
1504 // Check the use of this method.
Richard Smitha0edd302014-05-31 00:18:32 +00001505 if (S.DiagnoseUseOfDecl(Getter, MemberLoc))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001506 return ExprError();
1507 } else
1508 Getter = IFace->lookupPrivateMethod(Sel, false);
1509 // If we found a getter then this may be a valid dot-reference, we
1510 // will look for the matching setter, in case it is needed.
1511 Selector SetterSel =
Richard Smitha0edd302014-05-31 00:18:32 +00001512 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(),
1513 S.PP.getSelectorTable(),
Adrian Prantla4ce9062013-06-07 22:29:12 +00001514 Member);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001515 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
1516 if (!Setter) {
1517 // If this reference is in an @implementation, also check for 'private'
1518 // methods.
1519 Setter = IFace->lookupPrivateMethod(SetterSel, false);
1520 }
Douglas Gregor5476205b2011-06-23 00:49:38 +00001521
Richard Smitha0edd302014-05-31 00:18:32 +00001522 if (Setter && S.DiagnoseUseOfDecl(Setter, MemberLoc))
Douglas Gregor5476205b2011-06-23 00:49:38 +00001523 return ExprError();
1524
1525 if (Getter || Setter) {
Richard Smitha0edd302014-05-31 00:18:32 +00001526 return new (S.Context) ObjCPropertyRefExpr(
1527 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue,
1528 OK_ObjCProperty, MemberLoc, BaseExpr.get());
Douglas Gregor5476205b2011-06-23 00:49:38 +00001529 }
1530
Richard Smitha0edd302014-05-31 00:18:32 +00001531 if (ShouldTryAgainWithRedefinitionType(S, BaseExpr))
1532 return LookupMemberExpr(S, R, BaseExpr, IsArrow, OpLoc, SS,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001533 ObjCImpDecl, HasTemplateArgs);
1534
Richard Smitha0edd302014-05-31 00:18:32 +00001535 return ExprError(S.Diag(MemberLoc, diag::err_property_not_found)
Douglas Gregor5476205b2011-06-23 00:49:38 +00001536 << MemberName << BaseType);
1537 }
1538
1539 // Normal property access.
Richard Smitha0edd302014-05-31 00:18:32 +00001540 return S.HandleExprPropertyRefExpr(OPT, BaseExpr.get(), OpLoc, MemberName,
1541 MemberLoc, SourceLocation(), QualType(),
1542 false);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001543 }
1544
1545 // Handle 'field access' to vectors, such as 'V.xx'.
1546 if (BaseType->isExtVectorType()) {
1547 // FIXME: this expr should store IsArrow.
1548 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Fariborz Jahanian220d08d2015-04-06 16:56:39 +00001549 ExprValueKind VK;
1550 if (IsArrow)
1551 VK = VK_LValue;
1552 else {
1553 if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(BaseExpr.get()))
1554 VK = POE->getSyntacticForm()->getValueKind();
1555 else
1556 VK = BaseExpr.get()->getValueKind();
1557 }
Richard Smitha0edd302014-05-31 00:18:32 +00001558 QualType ret = CheckExtVectorComponent(S, BaseType, VK, OpLoc,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001559 Member, MemberLoc);
1560 if (ret.isNull())
1561 return ExprError();
1562
Richard Smitha0edd302014-05-31 00:18:32 +00001563 return new (S.Context)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001564 ExtVectorElementExpr(ret, VK, BaseExpr.get(), *Member, MemberLoc);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001565 }
1566
1567 // Adjust builtin-sel to the appropriate redefinition type if that's
1568 // not just a pointer to builtin-sel again.
Richard Smitha0edd302014-05-31 00:18:32 +00001569 if (IsArrow && BaseType->isSpecificBuiltinType(BuiltinType::ObjCSel) &&
1570 !S.Context.getObjCSelRedefinitionType()->isObjCSelType()) {
1571 BaseExpr = S.ImpCastExprToType(
1572 BaseExpr.get(), S.Context.getObjCSelRedefinitionType(), CK_BitCast);
1573 return LookupMemberExpr(S, R, BaseExpr, IsArrow, OpLoc, SS,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001574 ObjCImpDecl, HasTemplateArgs);
1575 }
1576
1577 // Failure cases.
1578 fail:
1579
1580 // Recover from dot accesses to pointers, e.g.:
1581 // type *foo;
1582 // foo.bar
1583 // This is actually well-formed in two cases:
1584 // - 'type' is an Objective C type
1585 // - 'bar' is a pseudo-destructor name which happens to refer to
1586 // the appropriate pointer type
1587 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
1588 if (!IsArrow && Ptr->getPointeeType()->isRecordType() &&
1589 MemberName.getNameKind() != DeclarationName::CXXDestructorName) {
Richard Smitha0edd302014-05-31 00:18:32 +00001590 S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
1591 << BaseType << int(IsArrow) << BaseExpr.get()->getSourceRange()
Douglas Gregor5476205b2011-06-23 00:49:38 +00001592 << FixItHint::CreateReplacement(OpLoc, "->");
1593
1594 // Recurse as an -> access.
1595 IsArrow = true;
Richard Smitha0edd302014-05-31 00:18:32 +00001596 return LookupMemberExpr(S, R, BaseExpr, IsArrow, OpLoc, SS,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001597 ObjCImpDecl, HasTemplateArgs);
1598 }
1599 }
1600
1601 // If the user is trying to apply -> or . to a function name, it's probably
1602 // because they forgot parentheses to call that function.
Richard Smitha0edd302014-05-31 00:18:32 +00001603 if (S.tryToRecoverWithCall(
1604 BaseExpr, S.PDiag(diag::err_member_reference_needs_call),
1605 /*complain*/ false,
1606 IsArrow ? &isPointerToRecordType : &isRecordType)) {
John McCall50a2c2c2011-10-11 23:14:30 +00001607 if (BaseExpr.isInvalid())
Douglas Gregor5476205b2011-06-23 00:49:38 +00001608 return ExprError();
Richard Smitha0edd302014-05-31 00:18:32 +00001609 BaseExpr = S.DefaultFunctionArrayConversion(BaseExpr.get());
1610 return LookupMemberExpr(S, R, BaseExpr, IsArrow, OpLoc, SS,
John McCall50a2c2c2011-10-11 23:14:30 +00001611 ObjCImpDecl, HasTemplateArgs);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001612 }
1613
Richard Smitha0edd302014-05-31 00:18:32 +00001614 S.Diag(OpLoc, diag::err_typecheck_member_reference_struct_union)
Matt Beaumont-Gay025321b2012-04-21 02:13:04 +00001615 << BaseType << BaseExpr.get()->getSourceRange() << MemberLoc;
Douglas Gregor5476205b2011-06-23 00:49:38 +00001616
1617 return ExprError();
1618}
1619
1620/// The main callback when the parser finds something like
1621/// expression . [nested-name-specifier] identifier
1622/// expression -> [nested-name-specifier] identifier
1623/// where 'identifier' encompasses a fairly broad spectrum of
1624/// possibilities, including destructor and operator references.
1625///
1626/// \param OpKind either tok::arrow or tok::period
James Dennett2a4d13c2012-06-15 07:13:21 +00001627/// \param ObjCImpDecl the current Objective-C \@implementation
1628/// decl; this is an ugly hack around the fact that Objective-C
1629/// \@implementations aren't properly put in the context chain
Douglas Gregor5476205b2011-06-23 00:49:38 +00001630ExprResult Sema::ActOnMemberAccessExpr(Scope *S, Expr *Base,
1631 SourceLocation OpLoc,
1632 tok::TokenKind OpKind,
1633 CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001634 SourceLocation TemplateKWLoc,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001635 UnqualifiedId &Id,
David Majnemerced8bdf2015-02-25 17:36:15 +00001636 Decl *ObjCImpDecl) {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001637 if (SS.isSet() && SS.isInvalid())
1638 return ExprError();
1639
1640 // Warn about the explicit constructor calls Microsoft extension.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001641 if (getLangOpts().MicrosoftExt &&
Douglas Gregor5476205b2011-06-23 00:49:38 +00001642 Id.getKind() == UnqualifiedId::IK_ConstructorName)
1643 Diag(Id.getSourceRange().getBegin(),
1644 diag::ext_ms_explicit_constructor_call);
1645
1646 TemplateArgumentListInfo TemplateArgsBuffer;
1647
1648 // Decompose the name into its component parts.
1649 DeclarationNameInfo NameInfo;
1650 const TemplateArgumentListInfo *TemplateArgs;
1651 DecomposeUnqualifiedId(Id, TemplateArgsBuffer,
1652 NameInfo, TemplateArgs);
1653
1654 DeclarationName Name = NameInfo.getName();
1655 bool IsArrow = (OpKind == tok::arrow);
1656
1657 NamedDecl *FirstQualifierInScope
Craig Topperc3ec1492014-05-26 06:22:03 +00001658 = (!SS.isSet() ? nullptr : FindFirstQualifierInScope(S, SS.getScopeRep()));
Douglas Gregor5476205b2011-06-23 00:49:38 +00001659
1660 // This is a postfix expression, so get rid of ParenListExprs.
1661 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
1662 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001663 Base = Result.get();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001664
1665 if (Base->getType()->isDependentType() || Name.isDependentName() ||
1666 isDependentScopeSpecifier(SS)) {
Richard Smitha0edd302014-05-31 00:18:32 +00001667 return ActOnDependentMemberExpr(Base, Base->getType(), IsArrow, OpLoc, SS,
1668 TemplateKWLoc, FirstQualifierInScope,
1669 NameInfo, TemplateArgs);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001670 }
1671
David Majnemerced8bdf2015-02-25 17:36:15 +00001672 ActOnMemberAccessExtraArgs ExtraArgs = {S, Id, ObjCImpDecl};
Richard Smitha0edd302014-05-31 00:18:32 +00001673 return BuildMemberReferenceExpr(Base, Base->getType(), OpLoc, IsArrow, SS,
1674 TemplateKWLoc, FirstQualifierInScope,
Aaron Ballman6924dcd2015-09-01 14:49:24 +00001675 NameInfo, TemplateArgs, S, &ExtraArgs);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001676}
1677
1678static ExprResult
1679BuildFieldReferenceExpr(Sema &S, Expr *BaseExpr, bool IsArrow,
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +00001680 SourceLocation OpLoc, const CXXScopeSpec &SS,
1681 FieldDecl *Field, DeclAccessPair FoundDecl,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001682 const DeclarationNameInfo &MemberNameInfo) {
1683 // x.a is an l-value if 'a' has a reference type. Otherwise:
1684 // x.a is an l-value/x-value/pr-value if the base is (and note
1685 // that *x is always an l-value), except that if the base isn't
1686 // an ordinary object then we must have an rvalue.
1687 ExprValueKind VK = VK_LValue;
1688 ExprObjectKind OK = OK_Ordinary;
1689 if (!IsArrow) {
1690 if (BaseExpr->getObjectKind() == OK_Ordinary)
1691 VK = BaseExpr->getValueKind();
1692 else
1693 VK = VK_RValue;
1694 }
1695 if (VK != VK_RValue && Field->isBitField())
1696 OK = OK_BitField;
1697
1698 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
1699 QualType MemberType = Field->getType();
1700 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) {
1701 MemberType = Ref->getPointeeType();
1702 VK = VK_LValue;
1703 } else {
1704 QualType BaseType = BaseExpr->getType();
1705 if (IsArrow) BaseType = BaseType->getAs<PointerType>()->getPointeeType();
Matt Arsenault376f7202013-02-26 21:16:00 +00001706
Douglas Gregor5476205b2011-06-23 00:49:38 +00001707 Qualifiers BaseQuals = BaseType.getQualifiers();
Matt Arsenault376f7202013-02-26 21:16:00 +00001708
Douglas Gregor5476205b2011-06-23 00:49:38 +00001709 // GC attributes are never picked up by members.
1710 BaseQuals.removeObjCGCAttr();
Matt Arsenault376f7202013-02-26 21:16:00 +00001711
Douglas Gregor5476205b2011-06-23 00:49:38 +00001712 // CVR attributes from the base are picked up by members,
1713 // except that 'mutable' members don't pick up 'const'.
1714 if (Field->isMutable()) BaseQuals.removeConst();
Matt Arsenault376f7202013-02-26 21:16:00 +00001715
Douglas Gregor5476205b2011-06-23 00:49:38 +00001716 Qualifiers MemberQuals
1717 = S.Context.getCanonicalType(MemberType).getQualifiers();
Matt Arsenault376f7202013-02-26 21:16:00 +00001718
Douglas Gregor5476205b2011-06-23 00:49:38 +00001719 assert(!MemberQuals.hasAddressSpace());
Matt Arsenault376f7202013-02-26 21:16:00 +00001720
1721
Douglas Gregor5476205b2011-06-23 00:49:38 +00001722 Qualifiers Combined = BaseQuals + MemberQuals;
1723 if (Combined != MemberQuals)
1724 MemberType = S.Context.getQualifiedType(MemberType, Combined);
1725 }
Matt Arsenault376f7202013-02-26 21:16:00 +00001726
Daniel Jasper0baec5492012-06-06 08:32:04 +00001727 S.UnusedPrivateFields.remove(Field);
1728
Douglas Gregor5476205b2011-06-23 00:49:38 +00001729 ExprResult Base =
1730 S.PerformObjectMemberConversion(BaseExpr, SS.getScopeRep(),
1731 FoundDecl, Field);
1732 if (Base.isInvalid())
1733 return ExprError();
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +00001734 return BuildMemberExpr(S, S.Context, Base.get(), IsArrow, OpLoc, SS,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001735 /*TemplateKWLoc=*/SourceLocation(), Field, FoundDecl,
1736 MemberNameInfo, MemberType, VK, OK);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001737}
1738
1739/// Builds an implicit member access expression. The current context
1740/// is known to be an instance method, and the given unqualified lookup
1741/// set is known to contain only instance members, at least one of which
1742/// is from an appropriate type.
1743ExprResult
1744Sema::BuildImplicitMemberExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001745 SourceLocation TemplateKWLoc,
Douglas Gregor5476205b2011-06-23 00:49:38 +00001746 LookupResult &R,
1747 const TemplateArgumentListInfo *TemplateArgs,
Aaron Ballman6924dcd2015-09-01 14:49:24 +00001748 bool IsKnownInstance, const Scope *S) {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001749 assert(!R.empty() && !R.isAmbiguous());
1750
1751 SourceLocation loc = R.getNameLoc();
Richard Smith59d26d22014-01-17 22:29:43 +00001752
Douglas Gregor5476205b2011-06-23 00:49:38 +00001753 // If this is known to be an instance access, go ahead and build an
1754 // implicit 'this' expression now.
1755 // 'this' expression now.
Douglas Gregor09deffa2011-10-18 16:47:30 +00001756 QualType ThisTy = getCurrentThisType();
Douglas Gregor5476205b2011-06-23 00:49:38 +00001757 assert(!ThisTy.isNull() && "didn't correctly pre-flight capture of 'this'");
Craig Topperc3ec1492014-05-26 06:22:03 +00001758
1759 Expr *baseExpr = nullptr; // null signifies implicit access
Douglas Gregor5476205b2011-06-23 00:49:38 +00001760 if (IsKnownInstance) {
1761 SourceLocation Loc = R.getNameLoc();
1762 if (SS.getRange().isValid())
1763 Loc = SS.getRange().getBegin();
Eli Friedman73a04092012-01-07 04:59:52 +00001764 CheckCXXThisCapture(Loc);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001765 baseExpr = new (Context) CXXThisExpr(loc, ThisTy, /*isImplicit=*/true);
1766 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001767
Douglas Gregor5476205b2011-06-23 00:49:38 +00001768 return BuildMemberReferenceExpr(baseExpr, ThisTy,
1769 /*OpLoc*/ SourceLocation(),
1770 /*IsArrow*/ true,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001771 SS, TemplateKWLoc,
Craig Topperc3ec1492014-05-26 06:22:03 +00001772 /*FirstQualifierInScope*/ nullptr,
Aaron Ballman6924dcd2015-09-01 14:49:24 +00001773 R, TemplateArgs, S);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001774}