blob: bf0ffeba06b2ff189f57e86873206cf26d92ac2b [file] [log] [blame]
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001//===--- SemaExprObjC.cpp - Semantic Analysis for ObjC 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 for Objective-C expressions.
11//
12//===----------------------------------------------------------------------===//
13
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Chris Lattnera3fc41d2008-01-04 22:32:30 +000015#include "clang/AST/ASTContext.h"
16#include "clang/AST/DeclObjC.h"
Steve Naroff021ca182008-05-29 21:12:08 +000017#include "clang/AST/ExprObjC.h"
John McCall31168b02011-06-15 23:02:42 +000018#include "clang/AST/StmtVisitor.h"
Douglas Gregor0c78ad92010-04-21 19:57:20 +000019#include "clang/AST/TypeLoc.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/Analysis/DomainSpecific/CocoaConventions.h"
21#include "clang/Edit/Commit.h"
22#include "clang/Edit/Rewriters.h"
Steve Naroff9527bbf2009-03-09 21:12:44 +000023#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/Sema/Initialization.h"
25#include "clang/Sema/Lookup.h"
26#include "clang/Sema/Scope.h"
27#include "clang/Sema/ScopeInfo.h"
28#include "llvm/ADT/SmallString.h"
Steve Naroff9527bbf2009-03-09 21:12:44 +000029
Chris Lattnera3fc41d2008-01-04 22:32:30 +000030using namespace clang;
John McCall5f2d5562011-02-03 09:00:02 +000031using namespace sema;
Argyrios Kyrtzidis59ad1e32011-10-03 06:36:45 +000032using llvm::makeArrayRef;
Chris Lattnera3fc41d2008-01-04 22:32:30 +000033
John McCallfaf5fb42010-08-26 23:41:50 +000034ExprResult Sema::ParseObjCStringLiteral(SourceLocation *AtLocs,
Craig Topper883dd332015-12-24 23:58:11 +000035 ArrayRef<Expr *> Strings) {
Chris Lattnerd7670d92009-02-18 06:13:04 +000036 // Most ObjC strings are formed out of a single piece. However, we *can*
37 // have strings formed out of multiple @ strings with multiple pptokens in
38 // each one, e.g. @"foo" "bar" @"baz" "qux" which need to be turned into one
39 // StringLiteral for ObjCStringLiteral to hold onto.
Craig Topper883dd332015-12-24 23:58:11 +000040 StringLiteral *S = cast<StringLiteral>(Strings[0]);
Mike Stump11289f42009-09-09 15:08:12 +000041
Chris Lattnerd7670d92009-02-18 06:13:04 +000042 // If we have a multi-part string, merge it all together.
Craig Topper883dd332015-12-24 23:58:11 +000043 if (Strings.size() != 1) {
Chris Lattnera3fc41d2008-01-04 22:32:30 +000044 // Concatenate objc strings.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +000045 SmallString<128> StrBuf;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000046 SmallVector<SourceLocation, 8> StrLocs;
Mike Stump11289f42009-09-09 15:08:12 +000047
Craig Topper883dd332015-12-24 23:58:11 +000048 for (Expr *E : Strings) {
49 S = cast<StringLiteral>(E);
Mike Stump11289f42009-09-09 15:08:12 +000050
Douglas Gregorfb65e592011-07-27 05:40:30 +000051 // ObjC strings can't be wide or UTF.
52 if (!S->isAscii()) {
Chris Lattnerd7670d92009-02-18 06:13:04 +000053 Diag(S->getLocStart(), diag::err_cfstring_literal_not_string_constant)
54 << S->getSourceRange();
55 return true;
56 }
Mike Stump11289f42009-09-09 15:08:12 +000057
Benjamin Kramer35b077e2010-08-17 12:54:38 +000058 // Append the string.
59 StrBuf += S->getString();
Mike Stump11289f42009-09-09 15:08:12 +000060
Chris Lattner163ffd22009-02-18 06:48:40 +000061 // Get the locations of the string tokens.
62 StrLocs.append(S->tokloc_begin(), S->tokloc_end());
Chris Lattnera3fc41d2008-01-04 22:32:30 +000063 }
Mike Stump11289f42009-09-09 15:08:12 +000064
Chris Lattner163ffd22009-02-18 06:48:40 +000065 // Create the aggregate string with the appropriate content and location
66 // information.
Benjamin Kramercdac7612014-02-25 12:26:20 +000067 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType());
68 assert(CAT && "String literal not of constant array type!");
69 QualType StrTy = Context.getConstantArrayType(
70 CAT->getElementType(), llvm::APInt(32, StrBuf.size() + 1),
71 CAT->getSizeModifier(), CAT->getIndexTypeCVRQualifiers());
72 S = StringLiteral::Create(Context, StrBuf, StringLiteral::Ascii,
73 /*Pascal=*/false, StrTy, &StrLocs[0],
74 StrLocs.size());
Chris Lattnera3fc41d2008-01-04 22:32:30 +000075 }
Ted Kremeneke65b0862012-03-06 20:05:56 +000076
77 return BuildObjCStringLiteral(AtLocs[0], S);
78}
Mike Stump11289f42009-09-09 15:08:12 +000079
Ted Kremeneke65b0862012-03-06 20:05:56 +000080ExprResult Sema::BuildObjCStringLiteral(SourceLocation AtLoc, StringLiteral *S){
Chris Lattner6436fb62009-02-18 06:01:06 +000081 // Verify that this composite string is acceptable for ObjC strings.
82 if (CheckObjCString(S))
Chris Lattnera3fc41d2008-01-04 22:32:30 +000083 return true;
Chris Lattnerfffd6a72009-02-18 06:06:56 +000084
85 // Initialize the constant string interface lazily. This assumes
Steve Naroff54e59452009-04-07 14:18:33 +000086 // the NSString interface is seen in this translation unit. Note: We
87 // don't use NSConstantString, since the runtime team considers this
88 // interface private (even though it appears in the header files).
Chris Lattnerfffd6a72009-02-18 06:06:56 +000089 QualType Ty = Context.getObjCConstantStringInterface();
90 if (!Ty.isNull()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +000091 Ty = Context.getObjCObjectPointerType(Ty);
David Blaikiebbafb8a2012-03-11 07:00:24 +000092 } else if (getLangOpts().NoConstantCFStrings) {
Craig Topperc3ec1492014-05-26 06:22:03 +000093 IdentifierInfo *NSIdent=nullptr;
David Blaikiebbafb8a2012-03-11 07:00:24 +000094 std::string StringClass(getLangOpts().ObjCConstantStringClass);
Fariborz Jahanian50c925f2010-10-19 17:19:29 +000095
96 if (StringClass.empty())
97 NSIdent = &Context.Idents.get("NSConstantString");
98 else
99 NSIdent = &Context.Idents.get(StringClass);
100
Ted Kremeneke65b0862012-03-06 20:05:56 +0000101 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc,
Fariborz Jahanian07317632010-04-23 23:19:04 +0000102 LookupOrdinaryName);
103 if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) {
104 Context.setObjCConstantStringInterface(StrIF);
105 Ty = Context.getObjCConstantStringInterface();
106 Ty = Context.getObjCObjectPointerType(Ty);
107 } else {
108 // If there is no NSConstantString interface defined then treat this
109 // as error and recover from it.
110 Diag(S->getLocStart(), diag::err_no_nsconstant_string_class) << NSIdent
111 << S->getSourceRange();
112 Ty = Context.getObjCIdType();
113 }
Chris Lattner091f6982008-06-21 21:44:18 +0000114 } else {
Patrick Beard0caa3942012-04-19 00:25:12 +0000115 IdentifierInfo *NSIdent = NSAPIObj->getNSClassId(NSAPI::ClassId_NSString);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000116 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc,
Douglas Gregorb2ccf012010-04-15 22:33:43 +0000117 LookupOrdinaryName);
Chris Lattnerfffd6a72009-02-18 06:06:56 +0000118 if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) {
119 Context.setObjCConstantStringInterface(StrIF);
120 Ty = Context.getObjCConstantStringInterface();
Steve Naroff7cae42b2009-07-10 23:34:53 +0000121 Ty = Context.getObjCObjectPointerType(Ty);
Chris Lattnerfffd6a72009-02-18 06:06:56 +0000122 } else {
Fariborz Jahanian86f82662012-02-23 22:51:36 +0000123 // If there is no NSString interface defined, implicitly declare
124 // a @class NSString; and use that instead. This is to make sure
125 // type of an NSString literal is represented correctly, instead of
126 // being an 'id' type.
127 Ty = Context.getObjCNSStringType();
128 if (Ty.isNull()) {
129 ObjCInterfaceDecl *NSStringIDecl =
130 ObjCInterfaceDecl::Create (Context,
131 Context.getTranslationUnitDecl(),
132 SourceLocation(), NSIdent,
Douglas Gregor85f3f952015-07-07 03:57:15 +0000133 nullptr, nullptr, SourceLocation());
Fariborz Jahanian86f82662012-02-23 22:51:36 +0000134 Ty = Context.getObjCInterfaceType(NSStringIDecl);
135 Context.setObjCNSStringType(Ty);
136 }
137 Ty = Context.getObjCObjectPointerType(Ty);
Chris Lattnerfffd6a72009-02-18 06:06:56 +0000138 }
Chris Lattner091f6982008-06-21 21:44:18 +0000139 }
Mike Stump11289f42009-09-09 15:08:12 +0000140
Ted Kremeneke65b0862012-03-06 20:05:56 +0000141 return new (Context) ObjCStringLiteral(S, Ty, AtLoc);
142}
143
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000144/// Emits an error if the given method does not exist, or if the return
Jordy Rose08e500c2012-05-12 17:32:44 +0000145/// type is not an Objective-C object.
146static bool validateBoxingMethod(Sema &S, SourceLocation Loc,
147 const ObjCInterfaceDecl *Class,
148 Selector Sel, const ObjCMethodDecl *Method) {
149 if (!Method) {
150 // FIXME: Is there a better way to avoid quotes than using getName()?
151 S.Diag(Loc, diag::err_undeclared_boxing_method) << Sel << Class->getName();
152 return false;
153 }
154
155 // Make sure the return type is reasonable.
Alp Toker314cc812014-01-25 16:55:45 +0000156 QualType ReturnType = Method->getReturnType();
Jordy Rose08e500c2012-05-12 17:32:44 +0000157 if (!ReturnType->isObjCObjectPointerType()) {
158 S.Diag(Loc, diag::err_objc_literal_method_sig)
159 << Sel;
160 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return)
161 << ReturnType;
162 return false;
163 }
164
165 return true;
166}
167
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000168/// Maps ObjCLiteralKind to NSClassIdKindKind
Alex Denisovb7d85632015-07-24 05:09:40 +0000169static NSAPI::NSClassIdKindKind ClassKindFromLiteralKind(
170 Sema::ObjCLiteralKind LiteralKind) {
171 switch (LiteralKind) {
172 case Sema::LK_Array:
173 return NSAPI::ClassId_NSArray;
174 case Sema::LK_Dictionary:
175 return NSAPI::ClassId_NSDictionary;
176 case Sema::LK_Numeric:
177 return NSAPI::ClassId_NSNumber;
178 case Sema::LK_String:
179 return NSAPI::ClassId_NSString;
180 case Sema::LK_Boxed:
181 return NSAPI::ClassId_NSValue;
182
183 // there is no corresponding matching
184 // between LK_None/LK_Block and NSClassIdKindKind
185 case Sema::LK_Block:
186 case Sema::LK_None:
Aaron Ballman3e839de2015-07-24 12:47:27 +0000187 break;
Alex Denisovb7d85632015-07-24 05:09:40 +0000188 }
Aaron Ballman3e839de2015-07-24 12:47:27 +0000189 llvm_unreachable("LiteralKind can't be converted into a ClassKind");
Alex Denisovb7d85632015-07-24 05:09:40 +0000190}
191
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000192/// Validates ObjCInterfaceDecl availability.
Alex Denisovb7d85632015-07-24 05:09:40 +0000193/// ObjCInterfaceDecl, used to create ObjC literals, should be defined
194/// if clang not in a debugger mode.
195static bool ValidateObjCLiteralInterfaceDecl(Sema &S, ObjCInterfaceDecl *Decl,
196 SourceLocation Loc,
197 Sema::ObjCLiteralKind LiteralKind) {
198 if (!Decl) {
199 NSAPI::NSClassIdKindKind Kind = ClassKindFromLiteralKind(LiteralKind);
200 IdentifierInfo *II = S.NSAPIObj->getNSClassId(Kind);
201 S.Diag(Loc, diag::err_undeclared_objc_literal_class)
202 << II->getName() << LiteralKind;
203 return false;
204 } else if (!Decl->hasDefinition() && !S.getLangOpts().DebuggerObjCLiteral) {
205 S.Diag(Loc, diag::err_undeclared_objc_literal_class)
206 << Decl->getName() << LiteralKind;
207 S.Diag(Decl->getLocation(), diag::note_forward_class);
208 return false;
209 }
210
211 return true;
212}
213
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000214/// Looks up ObjCInterfaceDecl of a given NSClassIdKindKind.
Alex Denisovb7d85632015-07-24 05:09:40 +0000215/// Used to create ObjC literals, such as NSDictionary (@{}),
216/// NSArray (@[]) and Boxed Expressions (@())
217static ObjCInterfaceDecl *LookupObjCInterfaceDeclForLiteral(Sema &S,
218 SourceLocation Loc,
219 Sema::ObjCLiteralKind LiteralKind) {
220 NSAPI::NSClassIdKindKind ClassKind = ClassKindFromLiteralKind(LiteralKind);
221 IdentifierInfo *II = S.NSAPIObj->getNSClassId(ClassKind);
222 NamedDecl *IF = S.LookupSingleName(S.TUScope, II, Loc,
223 Sema::LookupOrdinaryName);
224 ObjCInterfaceDecl *ID = dyn_cast_or_null<ObjCInterfaceDecl>(IF);
225 if (!ID && S.getLangOpts().DebuggerObjCLiteral) {
226 ASTContext &Context = S.Context;
227 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
228 ID = ObjCInterfaceDecl::Create (Context, TU, SourceLocation(), II,
229 nullptr, nullptr, SourceLocation());
230 }
231
232 if (!ValidateObjCLiteralInterfaceDecl(S, ID, Loc, LiteralKind)) {
233 ID = nullptr;
234 }
235
236 return ID;
237}
238
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000239/// Retrieve the NSNumber factory method that should be used to create
Ted Kremeneke65b0862012-03-06 20:05:56 +0000240/// an Objective-C literal for the given type.
241static ObjCMethodDecl *getNSNumberFactoryMethod(Sema &S, SourceLocation Loc,
Patrick Beard0caa3942012-04-19 00:25:12 +0000242 QualType NumberType,
243 bool isLiteral = false,
244 SourceRange R = SourceRange()) {
David Blaikie05785d12013-02-20 22:23:23 +0000245 Optional<NSAPI::NSNumberLiteralMethodKind> Kind =
246 S.NSAPIObj->getNSNumberFactoryMethodKind(NumberType);
247
Ted Kremeneke65b0862012-03-06 20:05:56 +0000248 if (!Kind) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000249 if (isLiteral) {
250 S.Diag(Loc, diag::err_invalid_nsnumber_type)
251 << NumberType << R;
252 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000253 return nullptr;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000254 }
Patrick Beard0caa3942012-04-19 00:25:12 +0000255
Ted Kremeneke65b0862012-03-06 20:05:56 +0000256 // If we already looked up this method, we're done.
257 if (S.NSNumberLiteralMethods[*Kind])
258 return S.NSNumberLiteralMethods[*Kind];
259
260 Selector Sel = S.NSAPIObj->getNSNumberLiteralSelector(*Kind,
261 /*Instance=*/false);
262
Patrick Beard0caa3942012-04-19 00:25:12 +0000263 ASTContext &CX = S.Context;
264
265 // Look up the NSNumber class, if we haven't done so already. It's cached
266 // in the Sema instance.
267 if (!S.NSNumberDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000268 S.NSNumberDecl = LookupObjCInterfaceDeclForLiteral(S, Loc,
269 Sema::LK_Numeric);
Patrick Beard0caa3942012-04-19 00:25:12 +0000270 if (!S.NSNumberDecl) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000271 return nullptr;
Patrick Beard0caa3942012-04-19 00:25:12 +0000272 }
Alex Denisove36748a2015-02-16 16:17:05 +0000273 }
274
275 if (S.NSNumberPointer.isNull()) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000276 // generate the pointer to NSNumber type.
Jordy Roseaca01f92012-05-12 17:32:52 +0000277 QualType NSNumberObject = CX.getObjCInterfaceType(S.NSNumberDecl);
278 S.NSNumberPointer = CX.getObjCObjectPointerType(NSNumberObject);
Patrick Beard0caa3942012-04-19 00:25:12 +0000279 }
280
Ted Kremeneke65b0862012-03-06 20:05:56 +0000281 // Look for the appropriate method within NSNumber.
Jordy Roseaca01f92012-05-12 17:32:52 +0000282 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel);
David Blaikiebbafb8a2012-03-11 07:00:24 +0000283 if (!Method && S.getLangOpts().DebuggerObjCLiteral) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000284 // create a stub definition this NSNumber factory method.
Craig Topperc3ec1492014-05-26 06:22:03 +0000285 TypeSourceInfo *ReturnTInfo = nullptr;
Alp Toker314cc812014-01-25 16:55:45 +0000286 Method =
287 ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel,
288 S.NSNumberPointer, ReturnTInfo, S.NSNumberDecl,
289 /*isInstance=*/false, /*isVariadic=*/false,
290 /*isPropertyAccessor=*/false,
291 /*isImplicitlyDeclared=*/true,
292 /*isDefined=*/false, ObjCMethodDecl::Required,
293 /*HasRelatedResultType=*/false);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000294 ParmVarDecl *value = ParmVarDecl::Create(S.Context, Method,
295 SourceLocation(), SourceLocation(),
Patrick Beard0caa3942012-04-19 00:25:12 +0000296 &CX.Idents.get("value"),
Craig Topperc3ec1492014-05-26 06:22:03 +0000297 NumberType, /*TInfo=*/nullptr,
298 SC_None, nullptr);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000299 Method->setMethodParams(S.Context, value, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000300 }
301
Jordy Rose08e500c2012-05-12 17:32:44 +0000302 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method))
Craig Topperc3ec1492014-05-26 06:22:03 +0000303 return nullptr;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000304
305 // Note: if the parameter type is out-of-line, we'll catch it later in the
306 // implicit conversion.
307
308 S.NSNumberLiteralMethods[*Kind] = Method;
309 return Method;
310}
311
Patrick Beard0caa3942012-04-19 00:25:12 +0000312/// BuildObjCNumericLiteral - builds an ObjCBoxedExpr AST node for the
313/// numeric literal expression. Type of the expression will be "NSNumber *".
Ted Kremeneke65b0862012-03-06 20:05:56 +0000314ExprResult Sema::BuildObjCNumericLiteral(SourceLocation AtLoc, Expr *Number) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000315 // Determine the type of the literal.
316 QualType NumberType = Number->getType();
317 if (CharacterLiteral *Char = dyn_cast<CharacterLiteral>(Number)) {
318 // In C, character literals have type 'int'. That's not the type we want
319 // to use to determine the Objective-c literal kind.
320 switch (Char->getKind()) {
321 case CharacterLiteral::Ascii:
Aaron Ballman9a17c852016-01-07 20:59:26 +0000322 case CharacterLiteral::UTF8:
Ted Kremeneke65b0862012-03-06 20:05:56 +0000323 NumberType = Context.CharTy;
324 break;
325
326 case CharacterLiteral::Wide:
Hans Wennborg0d81e012013-05-10 10:08:40 +0000327 NumberType = Context.getWideCharType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000328 break;
329
330 case CharacterLiteral::UTF16:
331 NumberType = Context.Char16Ty;
332 break;
333
334 case CharacterLiteral::UTF32:
335 NumberType = Context.Char32Ty;
336 break;
337 }
338 }
339
Ted Kremeneke65b0862012-03-06 20:05:56 +0000340 // Look for the appropriate method within NSNumber.
341 // Construct the literal.
Patrick Beard2565c592012-05-01 21:47:19 +0000342 SourceRange NR(Number->getSourceRange());
Patrick Beard0caa3942012-04-19 00:25:12 +0000343 ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType,
Patrick Beard2565c592012-05-01 21:47:19 +0000344 true, NR);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000345 if (!Method)
346 return ExprError();
347
348 // Convert the number to the type that the parameter expects.
Alp Toker03376dc2014-07-07 09:02:20 +0000349 ParmVarDecl *ParamDecl = Method->parameters()[0];
Patrick Beard2565c592012-05-01 21:47:19 +0000350 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
351 ParamDecl);
352 ExprResult ConvertedNumber = PerformCopyInitialization(Entity,
353 SourceLocation(),
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000354 Number);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000355 if (ConvertedNumber.isInvalid())
356 return ExprError();
357 Number = ConvertedNumber.get();
358
Patrick Beard2565c592012-05-01 21:47:19 +0000359 // Use the effective source range of the literal, including the leading '@'.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000360 return MaybeBindToTemporary(
Patrick Beard2565c592012-05-01 21:47:19 +0000361 new (Context) ObjCBoxedExpr(Number, NSNumberPointer, Method,
362 SourceRange(AtLoc, NR.getEnd())));
Ted Kremeneke65b0862012-03-06 20:05:56 +0000363}
364
365ExprResult Sema::ActOnObjCBoolLiteral(SourceLocation AtLoc,
366 SourceLocation ValueLoc,
367 bool Value) {
368 ExprResult Inner;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000369 if (getLangOpts().CPlusPlus) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000370 Inner = ActOnCXXBoolLiteral(ValueLoc, Value? tok::kw_true : tok::kw_false);
371 } else {
372 // C doesn't actually have a way to represent literal values of type
373 // _Bool. So, we'll use 0/1 and implicit cast to _Bool.
374 Inner = ActOnIntegerConstant(ValueLoc, Value? 1 : 0);
375 Inner = ImpCastExprToType(Inner.get(), Context.BoolTy,
376 CK_IntegralToBoolean);
377 }
378
379 return BuildObjCNumericLiteral(AtLoc, Inner.get());
380}
381
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000382/// Check that the given expression is a valid element of an Objective-C
Ted Kremeneke65b0862012-03-06 20:05:56 +0000383/// collection literal.
384static ExprResult CheckObjCCollectionLiteralElement(Sema &S, Expr *Element,
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000385 QualType T,
386 bool ArrayLiteral = false) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000387 // If the expression is type-dependent, there's nothing for us to do.
388 if (Element->isTypeDependent())
389 return Element;
390
391 ExprResult Result = S.CheckPlaceholderExpr(Element);
392 if (Result.isInvalid())
393 return ExprError();
394 Element = Result.get();
395
396 // In C++, check for an implicit conversion to an Objective-C object pointer
397 // type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000398 if (S.getLangOpts().CPlusPlus && Element->getType()->isRecordType()) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000399 InitializedEntity Entity
Jordy Roseaca01f92012-05-12 17:32:52 +0000400 = InitializedEntity::InitializeParameter(S.Context, T,
401 /*Consumed=*/false);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000402 InitializationKind Kind
Jordy Roseaca01f92012-05-12 17:32:52 +0000403 = InitializationKind::CreateCopy(Element->getLocStart(),
404 SourceLocation());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +0000405 InitializationSequence Seq(S, Entity, Kind, Element);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000406 if (!Seq.Failed())
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000407 return Seq.Perform(S, Entity, Kind, Element);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000408 }
409
410 Expr *OrigElement = Element;
411
412 // Perform lvalue-to-rvalue conversion.
413 Result = S.DefaultLvalueConversion(Element);
414 if (Result.isInvalid())
415 return ExprError();
416 Element = Result.get();
417
418 // Make sure that we have an Objective-C pointer type or block.
419 if (!Element->getType()->isObjCObjectPointerType() &&
420 !Element->getType()->isBlockPointerType()) {
421 bool Recovered = false;
422
423 // If this is potentially an Objective-C numeric literal, add the '@'.
424 if (isa<IntegerLiteral>(OrigElement) ||
425 isa<CharacterLiteral>(OrigElement) ||
426 isa<FloatingLiteral>(OrigElement) ||
427 isa<ObjCBoolLiteralExpr>(OrigElement) ||
428 isa<CXXBoolLiteralExpr>(OrigElement)) {
429 if (S.NSAPIObj->getNSNumberFactoryMethodKind(OrigElement->getType())) {
430 int Which = isa<CharacterLiteral>(OrigElement) ? 1
431 : (isa<CXXBoolLiteralExpr>(OrigElement) ||
432 isa<ObjCBoolLiteralExpr>(OrigElement)) ? 2
433 : 3;
434
435 S.Diag(OrigElement->getLocStart(), diag::err_box_literal_collection)
436 << Which << OrigElement->getSourceRange()
437 << FixItHint::CreateInsertion(OrigElement->getLocStart(), "@");
438
439 Result = S.BuildObjCNumericLiteral(OrigElement->getLocStart(),
440 OrigElement);
441 if (Result.isInvalid())
442 return ExprError();
443
444 Element = Result.get();
445 Recovered = true;
446 }
447 }
448 // If this is potentially an Objective-C string literal, add the '@'.
449 else if (StringLiteral *String = dyn_cast<StringLiteral>(OrigElement)) {
450 if (String->isAscii()) {
451 S.Diag(OrigElement->getLocStart(), diag::err_box_literal_collection)
452 << 0 << OrigElement->getSourceRange()
453 << FixItHint::CreateInsertion(OrigElement->getLocStart(), "@");
454
455 Result = S.BuildObjCStringLiteral(OrigElement->getLocStart(), String);
456 if (Result.isInvalid())
457 return ExprError();
458
459 Element = Result.get();
460 Recovered = true;
461 }
462 }
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000463
Ted Kremeneke65b0862012-03-06 20:05:56 +0000464 if (!Recovered) {
465 S.Diag(Element->getLocStart(), diag::err_invalid_collection_element)
466 << Element->getType();
467 return ExprError();
468 }
469 }
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000470 if (ArrayLiteral)
Ted Kremenek197fee42013-10-09 22:34:33 +0000471 if (ObjCStringLiteral *getString =
472 dyn_cast<ObjCStringLiteral>(OrigElement)) {
473 if (StringLiteral *SL = getString->getString()) {
474 unsigned numConcat = SL->getNumConcatenated();
475 if (numConcat > 1) {
476 // Only warn if the concatenated string doesn't come from a macro.
477 bool hasMacro = false;
478 for (unsigned i = 0; i < numConcat ; ++i)
479 if (SL->getStrTokenLoc(i).isMacroID()) {
480 hasMacro = true;
481 break;
482 }
483 if (!hasMacro)
484 S.Diag(Element->getLocStart(),
485 diag::warn_concatenated_nsarray_literal)
486 << Element->getType();
487 }
488 }
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000489 }
490
Ted Kremeneke65b0862012-03-06 20:05:56 +0000491 // Make sure that the element has the type that the container factory
492 // function expects.
493 return S.PerformCopyInitialization(
494 InitializedEntity::InitializeParameter(S.Context, T,
495 /*Consumed=*/false),
496 Element->getLocStart(), Element);
497}
498
Patrick Beard0caa3942012-04-19 00:25:12 +0000499ExprResult Sema::BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) {
500 if (ValueExpr->isTypeDependent()) {
501 ObjCBoxedExpr *BoxedExpr =
Craig Topperc3ec1492014-05-26 06:22:03 +0000502 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000503 return BoxedExpr;
Patrick Beard0caa3942012-04-19 00:25:12 +0000504 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000505 ObjCMethodDecl *BoxingMethod = nullptr;
Patrick Beard0caa3942012-04-19 00:25:12 +0000506 QualType BoxedType;
507 // Convert the expression to an RValue, so we can check for pointer types...
508 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr);
509 if (RValue.isInvalid()) {
510 return ExprError();
511 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000512 SourceLocation Loc = SR.getBegin();
Patrick Beard0caa3942012-04-19 00:25:12 +0000513 ValueExpr = RValue.get();
Patrick Beard2565c592012-05-01 21:47:19 +0000514 QualType ValueType(ValueExpr->getType());
Patrick Beard0caa3942012-04-19 00:25:12 +0000515 if (const PointerType *PT = ValueType->getAs<PointerType>()) {
516 QualType PointeeType = PT->getPointeeType();
517 if (Context.hasSameUnqualifiedType(PointeeType, Context.CharTy)) {
518
519 if (!NSStringDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000520 NSStringDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
521 Sema::LK_String);
Patrick Beard0caa3942012-04-19 00:25:12 +0000522 if (!NSStringDecl) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000523 return ExprError();
524 }
Jordy Roseaca01f92012-05-12 17:32:52 +0000525 QualType NSStringObject = Context.getObjCInterfaceType(NSStringDecl);
526 NSStringPointer = Context.getObjCObjectPointerType(NSStringObject);
Patrick Beard0caa3942012-04-19 00:25:12 +0000527 }
528
529 if (!StringWithUTF8StringMethod) {
530 IdentifierInfo *II = &Context.Idents.get("stringWithUTF8String");
531 Selector stringWithUTF8String = Context.Selectors.getUnarySelector(II);
532
533 // Look for the appropriate method within NSString.
Jordy Rose08e500c2012-05-12 17:32:44 +0000534 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String);
535 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000536 // Debugger needs to work even if NSString hasn't been defined.
Craig Topperc3ec1492014-05-26 06:22:03 +0000537 TypeSourceInfo *ReturnTInfo = nullptr;
Alp Toker314cc812014-01-25 16:55:45 +0000538 ObjCMethodDecl *M = ObjCMethodDecl::Create(
539 Context, SourceLocation(), SourceLocation(), stringWithUTF8String,
540 NSStringPointer, ReturnTInfo, NSStringDecl,
541 /*isInstance=*/false, /*isVariadic=*/false,
542 /*isPropertyAccessor=*/false,
543 /*isImplicitlyDeclared=*/true,
544 /*isDefined=*/false, ObjCMethodDecl::Required,
545 /*HasRelatedResultType=*/false);
Jordy Roseaca01f92012-05-12 17:32:52 +0000546 QualType ConstCharType = Context.CharTy.withConst();
Patrick Beard0caa3942012-04-19 00:25:12 +0000547 ParmVarDecl *value =
548 ParmVarDecl::Create(Context, M,
549 SourceLocation(), SourceLocation(),
550 &Context.Idents.get("value"),
Jordy Roseaca01f92012-05-12 17:32:52 +0000551 Context.getPointerType(ConstCharType),
Craig Topperc3ec1492014-05-26 06:22:03 +0000552 /*TInfo=*/nullptr,
553 SC_None, nullptr);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000554 M->setMethodParams(Context, value, None);
Jordy Rose08e500c2012-05-12 17:32:44 +0000555 BoxingMethod = M;
Patrick Beard0caa3942012-04-19 00:25:12 +0000556 }
Jordy Rose890f4572012-05-12 15:53:41 +0000557
Alex Denisovb7d85632015-07-24 05:09:40 +0000558 if (!validateBoxingMethod(*this, Loc, NSStringDecl,
Jordy Rose08e500c2012-05-12 17:32:44 +0000559 stringWithUTF8String, BoxingMethod))
560 return ExprError();
561
562 StringWithUTF8StringMethod = BoxingMethod;
Patrick Beard0caa3942012-04-19 00:25:12 +0000563 }
564
565 BoxingMethod = StringWithUTF8StringMethod;
566 BoxedType = NSStringPointer;
Alex Lorenz49370ac2017-11-08 21:33:15 +0000567 // Transfer the nullability from method's return type.
568 Optional<NullabilityKind> Nullability =
569 BoxingMethod->getReturnType()->getNullability(Context);
570 if (Nullability)
571 BoxedType = Context.getAttributedType(
572 AttributedType::getNullabilityAttrKind(*Nullability), BoxedType,
573 BoxedType);
Patrick Beard0caa3942012-04-19 00:25:12 +0000574 }
Patrick Beard2565c592012-05-01 21:47:19 +0000575 } else if (ValueType->isBuiltinType()) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000576 // The other types we support are numeric, char and BOOL/bool. We could also
577 // provide limited support for structure types, such as NSRange, NSRect, and
578 // NSSize. See NSValue (NSValueGeometryExtensions) in <Foundation/NSGeometry.h>
579 // for more details.
580
581 // Check for a top-level character literal.
582 if (const CharacterLiteral *Char =
583 dyn_cast<CharacterLiteral>(ValueExpr->IgnoreParens())) {
584 // In C, character literals have type 'int'. That's not the type we want
585 // to use to determine the Objective-c literal kind.
586 switch (Char->getKind()) {
587 case CharacterLiteral::Ascii:
Aaron Ballman9a17c852016-01-07 20:59:26 +0000588 case CharacterLiteral::UTF8:
Patrick Beard0caa3942012-04-19 00:25:12 +0000589 ValueType = Context.CharTy;
590 break;
591
592 case CharacterLiteral::Wide:
Hans Wennborg0d81e012013-05-10 10:08:40 +0000593 ValueType = Context.getWideCharType();
Patrick Beard0caa3942012-04-19 00:25:12 +0000594 break;
595
596 case CharacterLiteral::UTF16:
597 ValueType = Context.Char16Ty;
598 break;
599
600 case CharacterLiteral::UTF32:
601 ValueType = Context.Char32Ty;
602 break;
603 }
604 }
Patrick Beard0caa3942012-04-19 00:25:12 +0000605 // FIXME: Do I need to do anything special with BoolTy expressions?
606
607 // Look for the appropriate method within NSNumber.
Alex Denisovb7d85632015-07-24 05:09:40 +0000608 BoxingMethod = getNSNumberFactoryMethod(*this, Loc, ValueType);
Patrick Beard0caa3942012-04-19 00:25:12 +0000609 BoxedType = NSNumberPointer;
Argyrios Kyrtzidis8e6951d2012-05-15 19:17:44 +0000610 } else if (const EnumType *ET = ValueType->getAs<EnumType>()) {
611 if (!ET->getDecl()->isComplete()) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000612 Diag(Loc, diag::err_objc_incomplete_boxed_expression_type)
Argyrios Kyrtzidis8e6951d2012-05-15 19:17:44 +0000613 << ValueType << ValueExpr->getSourceRange();
614 return ExprError();
615 }
616
Alex Denisovb7d85632015-07-24 05:09:40 +0000617 BoxingMethod = getNSNumberFactoryMethod(*this, Loc,
Argyrios Kyrtzidis8e6951d2012-05-15 19:17:44 +0000618 ET->getDecl()->getIntegerType());
619 BoxedType = NSNumberPointer;
Alex Denisovfde64952015-06-26 05:28:36 +0000620 } else if (ValueType->isObjCBoxableRecordType()) {
621 // Support for structure types, that marked as objc_boxable
622 // struct __attribute__((objc_boxable)) s { ... };
623
624 // Look up the NSValue class, if we haven't done so already. It's cached
625 // in the Sema instance.
626 if (!NSValueDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000627 NSValueDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
628 Sema::LK_Boxed);
Alex Denisovfde64952015-06-26 05:28:36 +0000629 if (!NSValueDecl) {
Alex Denisovfde64952015-06-26 05:28:36 +0000630 return ExprError();
631 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000632
Alex Denisovfde64952015-06-26 05:28:36 +0000633 // generate the pointer to NSValue type.
634 QualType NSValueObject = Context.getObjCInterfaceType(NSValueDecl);
635 NSValuePointer = Context.getObjCObjectPointerType(NSValueObject);
636 }
637
638 if (!ValueWithBytesObjCTypeMethod) {
639 IdentifierInfo *II[] = {
640 &Context.Idents.get("valueWithBytes"),
641 &Context.Idents.get("objCType")
642 };
643 Selector ValueWithBytesObjCType = Context.Selectors.getSelector(2, II);
644
645 // Look for the appropriate method within NSValue.
646 BoxingMethod = NSValueDecl->lookupClassMethod(ValueWithBytesObjCType);
647 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
648 // Debugger needs to work even if NSValue hasn't been defined.
649 TypeSourceInfo *ReturnTInfo = nullptr;
650 ObjCMethodDecl *M = ObjCMethodDecl::Create(
651 Context,
652 SourceLocation(),
653 SourceLocation(),
654 ValueWithBytesObjCType,
655 NSValuePointer,
656 ReturnTInfo,
657 NSValueDecl,
658 /*isInstance=*/false,
659 /*isVariadic=*/false,
660 /*isPropertyAccessor=*/false,
661 /*isImplicitlyDeclared=*/true,
662 /*isDefined=*/false,
663 ObjCMethodDecl::Required,
664 /*HasRelatedResultType=*/false);
665
666 SmallVector<ParmVarDecl *, 2> Params;
667
668 ParmVarDecl *bytes =
669 ParmVarDecl::Create(Context, M,
670 SourceLocation(), SourceLocation(),
671 &Context.Idents.get("bytes"),
672 Context.VoidPtrTy.withConst(),
673 /*TInfo=*/nullptr,
674 SC_None, nullptr);
675 Params.push_back(bytes);
676
677 QualType ConstCharType = Context.CharTy.withConst();
678 ParmVarDecl *type =
679 ParmVarDecl::Create(Context, M,
680 SourceLocation(), SourceLocation(),
681 &Context.Idents.get("type"),
682 Context.getPointerType(ConstCharType),
683 /*TInfo=*/nullptr,
684 SC_None, nullptr);
685 Params.push_back(type);
686
687 M->setMethodParams(Context, Params, None);
688 BoxingMethod = M;
689 }
690
Alex Denisovb7d85632015-07-24 05:09:40 +0000691 if (!validateBoxingMethod(*this, Loc, NSValueDecl,
Alex Denisovfde64952015-06-26 05:28:36 +0000692 ValueWithBytesObjCType, BoxingMethod))
693 return ExprError();
694
695 ValueWithBytesObjCTypeMethod = BoxingMethod;
696 }
697
698 if (!ValueType.isTriviallyCopyableType(Context)) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000699 Diag(Loc, diag::err_objc_non_trivially_copyable_boxed_expression_type)
Alex Denisovfde64952015-06-26 05:28:36 +0000700 << ValueType << ValueExpr->getSourceRange();
701 return ExprError();
702 }
703
704 BoxingMethod = ValueWithBytesObjCTypeMethod;
705 BoxedType = NSValuePointer;
Patrick Beard0caa3942012-04-19 00:25:12 +0000706 }
707
708 if (!BoxingMethod) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000709 Diag(Loc, diag::err_objc_illegal_boxed_expression_type)
Patrick Beard0caa3942012-04-19 00:25:12 +0000710 << ValueType << ValueExpr->getSourceRange();
711 return ExprError();
712 }
713
Alex Denisovb7d85632015-07-24 05:09:40 +0000714 DiagnoseUseOfDecl(BoxingMethod, Loc);
Alex Denisovfde64952015-06-26 05:28:36 +0000715
716 ExprResult ConvertedValueExpr;
717 if (ValueType->isObjCBoxableRecordType()) {
718 InitializedEntity IE = InitializedEntity::InitializeTemporary(ValueType);
719 ConvertedValueExpr = PerformCopyInitialization(IE, ValueExpr->getExprLoc(),
720 ValueExpr);
721 } else {
722 // Convert the expression to the type that the parameter requires.
723 ParmVarDecl *ParamDecl = BoxingMethod->parameters()[0];
724 InitializedEntity IE = InitializedEntity::InitializeParameter(Context,
725 ParamDecl);
726 ConvertedValueExpr = PerformCopyInitialization(IE, SourceLocation(),
727 ValueExpr);
728 }
729
Patrick Beard0caa3942012-04-19 00:25:12 +0000730 if (ConvertedValueExpr.isInvalid())
731 return ExprError();
732 ValueExpr = ConvertedValueExpr.get();
733
734 ObjCBoxedExpr *BoxedExpr =
735 new (Context) ObjCBoxedExpr(ValueExpr, BoxedType,
736 BoxingMethod, SR);
737 return MaybeBindToTemporary(BoxedExpr);
738}
739
John McCallf2538342012-07-31 05:14:30 +0000740/// Build an ObjC subscript pseudo-object expression, given that
741/// that's supported by the runtime.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000742ExprResult Sema::BuildObjCSubscriptExpression(SourceLocation RB, Expr *BaseExpr,
743 Expr *IndexExpr,
744 ObjCMethodDecl *getterMethod,
745 ObjCMethodDecl *setterMethod) {
Fariborz Jahaniane1e33f82013-11-01 21:58:17 +0000746 assert(!LangOpts.isSubscriptPointerArithmetic());
John McCall5fb5df92012-06-20 06:18:46 +0000747
John McCallf2538342012-07-31 05:14:30 +0000748 // We can't get dependent types here; our callers should have
749 // filtered them out.
750 assert((!BaseExpr->isTypeDependent() && !IndexExpr->isTypeDependent()) &&
751 "base or index cannot have dependent type here");
752
753 // Filter out placeholders in the index. In theory, overloads could
754 // be preserved here, although that might not actually work correctly.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000755 ExprResult Result = CheckPlaceholderExpr(IndexExpr);
756 if (Result.isInvalid())
757 return ExprError();
758 IndexExpr = Result.get();
759
John McCallf2538342012-07-31 05:14:30 +0000760 // Perform lvalue-to-rvalue conversion on the base.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000761 Result = DefaultLvalueConversion(BaseExpr);
762 if (Result.isInvalid())
763 return ExprError();
764 BaseExpr = Result.get();
John McCallf2538342012-07-31 05:14:30 +0000765
766 // Build the pseudo-object expression.
James Y Knight6c2f06b2015-12-31 04:43:19 +0000767 return new (Context) ObjCSubscriptRefExpr(
768 BaseExpr, IndexExpr, Context.PseudoObjectTy, VK_LValue, OK_ObjCSubscript,
769 getterMethod, setterMethod, RB);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000770}
771
772ExprResult Sema::BuildObjCArrayLiteral(SourceRange SR, MultiExprArg Elements) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000773 SourceLocation Loc = SR.getBegin();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000774
Alex Denisovb7d85632015-07-24 05:09:40 +0000775 if (!NSArrayDecl) {
776 NSArrayDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
777 Sema::LK_Array);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000778 if (!NSArrayDecl) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000779 return ExprError();
780 }
781 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000782
Fariborz Jahanian495bc3f2014-08-08 17:31:14 +0000783 // Find the arrayWithObjects:count: method, if we haven't done so already.
Fariborz Jahanianbf09db42014-08-08 18:29:52 +0000784 QualType IdT = Context.getObjCIdType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000785 if (!ArrayWithObjectsMethod) {
786 Selector
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000787 Sel = NSAPIObj->getNSArraySelector(NSAPI::NSArr_arrayWithObjectsCount);
788 ObjCMethodDecl *Method = NSArrayDecl->lookupClassMethod(Sel);
Jordy Rose08e500c2012-05-12 17:32:44 +0000789 if (!Method && getLangOpts().DebuggerObjCLiteral) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000790 TypeSourceInfo *ReturnTInfo = nullptr;
Alp Toker314cc812014-01-25 16:55:45 +0000791 Method = ObjCMethodDecl::Create(
792 Context, SourceLocation(), SourceLocation(), Sel, IdT, ReturnTInfo,
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000793 Context.getTranslationUnitDecl(), false /*Instance*/,
Alp Toker314cc812014-01-25 16:55:45 +0000794 false /*isVariadic*/,
795 /*isPropertyAccessor=*/false,
796 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
797 ObjCMethodDecl::Required, false);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000798 SmallVector<ParmVarDecl *, 2> Params;
Jordy Rose08e500c2012-05-12 17:32:44 +0000799 ParmVarDecl *objects = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000800 SourceLocation(),
801 SourceLocation(),
802 &Context.Idents.get("objects"),
803 Context.getPointerType(IdT),
Craig Topperc3ec1492014-05-26 06:22:03 +0000804 /*TInfo=*/nullptr,
805 SC_None, nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000806 Params.push_back(objects);
Jordy Rose08e500c2012-05-12 17:32:44 +0000807 ParmVarDecl *cnt = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000808 SourceLocation(),
809 SourceLocation(),
810 &Context.Idents.get("cnt"),
811 Context.UnsignedLongTy,
Craig Topperc3ec1492014-05-26 06:22:03 +0000812 /*TInfo=*/nullptr, SC_None,
813 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000814 Params.push_back(cnt);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000815 Method->setMethodParams(Context, Params, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000816 }
817
Alex Denisovb7d85632015-07-24 05:09:40 +0000818 if (!validateBoxingMethod(*this, Loc, NSArrayDecl, Sel, Method))
Ted Kremeneke65b0862012-03-06 20:05:56 +0000819 return ExprError();
Jordy Rose08e500c2012-05-12 17:32:44 +0000820
Jordy Rose4af44872012-05-12 17:32:56 +0000821 // Dig out the type that all elements should be converted to.
Alp Toker03376dc2014-07-07 09:02:20 +0000822 QualType T = Method->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000823 const PointerType *PtrT = T->getAs<PointerType>();
824 if (!PtrT ||
825 !Context.hasSameUnqualifiedType(PtrT->getPointeeType(), IdT)) {
826 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
827 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000828 Diag(Method->parameters()[0]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000829 diag::note_objc_literal_method_param)
830 << 0 << T
831 << Context.getPointerType(IdT.withConst());
832 return ExprError();
833 }
834
835 // Check that the 'count' parameter is integral.
Alp Toker03376dc2014-07-07 09:02:20 +0000836 if (!Method->parameters()[1]->getType()->isIntegerType()) {
Jordy Rose4af44872012-05-12 17:32:56 +0000837 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
838 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000839 Diag(Method->parameters()[1]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000840 diag::note_objc_literal_method_param)
841 << 1
Alp Toker03376dc2014-07-07 09:02:20 +0000842 << Method->parameters()[1]->getType()
Jordy Rose4af44872012-05-12 17:32:56 +0000843 << "integral";
844 return ExprError();
845 }
846
847 // We've found a good +arrayWithObjects:count: method. Save it!
Jordy Rose08e500c2012-05-12 17:32:44 +0000848 ArrayWithObjectsMethod = Method;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000849 }
850
Alp Toker03376dc2014-07-07 09:02:20 +0000851 QualType ObjectsType = ArrayWithObjectsMethod->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000852 QualType RequiredType = ObjectsType->castAs<PointerType>()->getPointeeType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000853
854 // Check that each of the elements provided is valid in a collection literal,
855 // performing conversions as necessary.
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000856 Expr **ElementsBuffer = Elements.data();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000857 for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
858 ExprResult Converted = CheckObjCCollectionLiteralElement(*this,
859 ElementsBuffer[I],
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000860 RequiredType, true);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000861 if (Converted.isInvalid())
862 return ExprError();
863
864 ElementsBuffer[I] = Converted.get();
865 }
866
867 QualType Ty
868 = Context.getObjCObjectPointerType(
869 Context.getObjCInterfaceType(NSArrayDecl));
870
871 return MaybeBindToTemporary(
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000872 ObjCArrayLiteral::Create(Context, Elements, Ty,
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000873 ArrayWithObjectsMethod, SR));
Ted Kremeneke65b0862012-03-06 20:05:56 +0000874}
875
Craig Topperd4336e02015-12-24 23:58:15 +0000876ExprResult Sema::BuildObjCDictionaryLiteral(SourceRange SR,
877 MutableArrayRef<ObjCDictionaryElement> Elements) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000878 SourceLocation Loc = SR.getBegin();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000879
Alex Denisovb7d85632015-07-24 05:09:40 +0000880 if (!NSDictionaryDecl) {
881 NSDictionaryDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
882 Sema::LK_Dictionary);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000883 if (!NSDictionaryDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000884 return ExprError();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000885 }
886 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000887
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000888 // Find the dictionaryWithObjects:forKeys:count: method, if we haven't done
889 // so already.
Fariborz Jahanianbf09db42014-08-08 18:29:52 +0000890 QualType IdT = Context.getObjCIdType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000891 if (!DictionaryWithObjectsMethod) {
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000892 Selector Sel = NSAPIObj->getNSDictionarySelector(
893 NSAPI::NSDict_dictionaryWithObjectsForKeysCount);
894 ObjCMethodDecl *Method = NSDictionaryDecl->lookupClassMethod(Sel);
Jordy Rose08e500c2012-05-12 17:32:44 +0000895 if (!Method && getLangOpts().DebuggerObjCLiteral) {
896 Method = ObjCMethodDecl::Create(Context,
Ted Kremeneke65b0862012-03-06 20:05:56 +0000897 SourceLocation(), SourceLocation(), Sel,
898 IdT,
Craig Topperc3ec1492014-05-26 06:22:03 +0000899 nullptr /*TypeSourceInfo */,
Ted Kremeneke65b0862012-03-06 20:05:56 +0000900 Context.getTranslationUnitDecl(),
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000901 false /*Instance*/, false/*isVariadic*/,
Jordan Rosed01e83a2012-10-10 16:42:25 +0000902 /*isPropertyAccessor=*/false,
Ted Kremeneke65b0862012-03-06 20:05:56 +0000903 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
904 ObjCMethodDecl::Required,
905 false);
906 SmallVector<ParmVarDecl *, 3> Params;
Jordy Rose08e500c2012-05-12 17:32:44 +0000907 ParmVarDecl *objects = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000908 SourceLocation(),
909 SourceLocation(),
910 &Context.Idents.get("objects"),
911 Context.getPointerType(IdT),
Craig Topperc3ec1492014-05-26 06:22:03 +0000912 /*TInfo=*/nullptr, SC_None,
913 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000914 Params.push_back(objects);
Jordy Rose08e500c2012-05-12 17:32:44 +0000915 ParmVarDecl *keys = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000916 SourceLocation(),
917 SourceLocation(),
918 &Context.Idents.get("keys"),
919 Context.getPointerType(IdT),
Craig Topperc3ec1492014-05-26 06:22:03 +0000920 /*TInfo=*/nullptr, SC_None,
921 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000922 Params.push_back(keys);
Jordy Rose08e500c2012-05-12 17:32:44 +0000923 ParmVarDecl *cnt = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000924 SourceLocation(),
925 SourceLocation(),
926 &Context.Idents.get("cnt"),
927 Context.UnsignedLongTy,
Craig Topperc3ec1492014-05-26 06:22:03 +0000928 /*TInfo=*/nullptr, SC_None,
929 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000930 Params.push_back(cnt);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000931 Method->setMethodParams(Context, Params, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000932 }
933
Jordy Rose08e500c2012-05-12 17:32:44 +0000934 if (!validateBoxingMethod(*this, SR.getBegin(), NSDictionaryDecl, Sel,
935 Method))
936 return ExprError();
937
Jordy Rose4af44872012-05-12 17:32:56 +0000938 // Dig out the type that all values should be converted to.
Alp Toker03376dc2014-07-07 09:02:20 +0000939 QualType ValueT = Method->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000940 const PointerType *PtrValue = ValueT->getAs<PointerType>();
941 if (!PtrValue ||
942 !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000943 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
Jordy Rose4af44872012-05-12 17:32:56 +0000944 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000945 Diag(Method->parameters()[0]->getLocation(),
Ted Kremeneke65b0862012-03-06 20:05:56 +0000946 diag::note_objc_literal_method_param)
Jordy Rose4af44872012-05-12 17:32:56 +0000947 << 0 << ValueT
Ted Kremeneke65b0862012-03-06 20:05:56 +0000948 << Context.getPointerType(IdT.withConst());
949 return ExprError();
950 }
Ted Kremeneke65b0862012-03-06 20:05:56 +0000951
Jordy Rose4af44872012-05-12 17:32:56 +0000952 // Dig out the type that all keys should be converted to.
Alp Toker03376dc2014-07-07 09:02:20 +0000953 QualType KeyT = Method->parameters()[1]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000954 const PointerType *PtrKey = KeyT->getAs<PointerType>();
955 if (!PtrKey ||
956 !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(),
957 IdT)) {
958 bool err = true;
959 if (PtrKey) {
960 if (QIDNSCopying.isNull()) {
961 // key argument of selector is id<NSCopying>?
962 if (ObjCProtocolDecl *NSCopyingPDecl =
963 LookupProtocol(&Context.Idents.get("NSCopying"), SR.getBegin())) {
964 ObjCProtocolDecl *PQ[] = {NSCopyingPDecl};
965 QIDNSCopying =
Douglas Gregore9d95f12015-07-07 03:57:35 +0000966 Context.getObjCObjectType(Context.ObjCBuiltinIdTy, { },
967 llvm::makeArrayRef(
968 (ObjCProtocolDecl**) PQ,
Douglas Gregorab209d82015-07-07 03:58:42 +0000969 1),
970 false);
Jordy Rose4af44872012-05-12 17:32:56 +0000971 QIDNSCopying = Context.getObjCObjectPointerType(QIDNSCopying);
972 }
973 }
974 if (!QIDNSCopying.isNull())
975 err = !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(),
976 QIDNSCopying);
977 }
978
979 if (err) {
980 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
981 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000982 Diag(Method->parameters()[1]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000983 diag::note_objc_literal_method_param)
984 << 1 << KeyT
985 << Context.getPointerType(IdT.withConst());
986 return ExprError();
987 }
988 }
989
990 // Check that the 'count' parameter is integral.
Alp Toker03376dc2014-07-07 09:02:20 +0000991 QualType CountType = Method->parameters()[2]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000992 if (!CountType->isIntegerType()) {
993 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
994 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000995 Diag(Method->parameters()[2]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000996 diag::note_objc_literal_method_param)
997 << 2 << CountType
998 << "integral";
999 return ExprError();
1000 }
1001
1002 // We've found a good +dictionaryWithObjects:keys:count: method; save it!
1003 DictionaryWithObjectsMethod = Method;
Ted Kremeneke65b0862012-03-06 20:05:56 +00001004 }
1005
Alp Toker03376dc2014-07-07 09:02:20 +00001006 QualType ValuesT = DictionaryWithObjectsMethod->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +00001007 QualType ValueT = ValuesT->castAs<PointerType>()->getPointeeType();
Alp Toker03376dc2014-07-07 09:02:20 +00001008 QualType KeysT = DictionaryWithObjectsMethod->parameters()[1]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +00001009 QualType KeyT = KeysT->castAs<PointerType>()->getPointeeType();
1010
Ted Kremeneke65b0862012-03-06 20:05:56 +00001011 // Check that each of the keys and values provided is valid in a collection
1012 // literal, performing conversions as necessary.
1013 bool HasPackExpansions = false;
Craig Topperd4336e02015-12-24 23:58:15 +00001014 for (ObjCDictionaryElement &Element : Elements) {
Ted Kremeneke65b0862012-03-06 20:05:56 +00001015 // Check the key.
Craig Topperd4336e02015-12-24 23:58:15 +00001016 ExprResult Key = CheckObjCCollectionLiteralElement(*this, Element.Key,
Ted Kremeneke65b0862012-03-06 20:05:56 +00001017 KeyT);
1018 if (Key.isInvalid())
1019 return ExprError();
1020
1021 // Check the value.
1022 ExprResult Value
Craig Topperd4336e02015-12-24 23:58:15 +00001023 = CheckObjCCollectionLiteralElement(*this, Element.Value, ValueT);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001024 if (Value.isInvalid())
1025 return ExprError();
1026
Craig Topperd4336e02015-12-24 23:58:15 +00001027 Element.Key = Key.get();
1028 Element.Value = Value.get();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001029
Craig Topperd4336e02015-12-24 23:58:15 +00001030 if (Element.EllipsisLoc.isInvalid())
Ted Kremeneke65b0862012-03-06 20:05:56 +00001031 continue;
1032
Craig Topperd4336e02015-12-24 23:58:15 +00001033 if (!Element.Key->containsUnexpandedParameterPack() &&
1034 !Element.Value->containsUnexpandedParameterPack()) {
1035 Diag(Element.EllipsisLoc,
Ted Kremeneke65b0862012-03-06 20:05:56 +00001036 diag::err_pack_expansion_without_parameter_packs)
Craig Topperd4336e02015-12-24 23:58:15 +00001037 << SourceRange(Element.Key->getLocStart(),
1038 Element.Value->getLocEnd());
Ted Kremeneke65b0862012-03-06 20:05:56 +00001039 return ExprError();
1040 }
1041
1042 HasPackExpansions = true;
1043 }
Ted Kremeneke65b0862012-03-06 20:05:56 +00001044
1045 QualType Ty
1046 = Context.getObjCObjectPointerType(
Robert Wilhelm88e02492013-08-19 07:57:02 +00001047 Context.getObjCInterfaceType(NSDictionaryDecl));
1048 return MaybeBindToTemporary(ObjCDictionaryLiteral::Create(
Craig Topperd4336e02015-12-24 23:58:15 +00001049 Context, Elements, HasPackExpansions, Ty,
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +00001050 DictionaryWithObjectsMethod, SR));
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001051}
1052
Argyrios Kyrtzidis7da04c62011-05-14 20:32:39 +00001053ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc,
Douglas Gregorabd9e962010-04-20 15:39:42 +00001054 TypeSourceInfo *EncodedTypeInfo,
Anders Carlsson315d2292009-06-07 18:45:35 +00001055 SourceLocation RParenLoc) {
Douglas Gregorabd9e962010-04-20 15:39:42 +00001056 QualType EncodedType = EncodedTypeInfo->getType();
Anders Carlsson315d2292009-06-07 18:45:35 +00001057 QualType StrTy;
Mike Stump11289f42009-09-09 15:08:12 +00001058 if (EncodedType->isDependentType())
Anders Carlsson315d2292009-06-07 18:45:35 +00001059 StrTy = Context.DependentTy;
1060 else {
Fariborz Jahaniand9bc6c32011-06-16 22:34:44 +00001061 if (!EncodedType->getAsArrayTypeUnsafe() && //// Incomplete array is handled.
1062 !EncodedType->isVoidType()) // void is handled too.
Argyrios Kyrtzidis7da04c62011-05-14 20:32:39 +00001063 if (RequireCompleteType(AtLoc, EncodedType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001064 diag::err_incomplete_type_objc_at_encode,
1065 EncodedTypeInfo->getTypeLoc()))
Argyrios Kyrtzidis7da04c62011-05-14 20:32:39 +00001066 return ExprError();
1067
Anders Carlsson315d2292009-06-07 18:45:35 +00001068 std::string Str;
Fariborz Jahanian4bf437e2014-08-22 23:17:52 +00001069 QualType NotEncodedT;
1070 Context.getObjCEncodingForType(EncodedType, Str, nullptr, &NotEncodedT);
1071 if (!NotEncodedT.isNull())
1072 Diag(AtLoc, diag::warn_incomplete_encoded_type)
1073 << EncodedType << NotEncodedT;
Anders Carlsson315d2292009-06-07 18:45:35 +00001074
1075 // The type of @encode is the same as the type of the corresponding string,
1076 // which is an array type.
1077 StrTy = Context.CharTy;
1078 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
David Blaikiebbafb8a2012-03-11 07:00:24 +00001079 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
Anders Carlsson315d2292009-06-07 18:45:35 +00001080 StrTy.addConst();
1081 StrTy = Context.getConstantArrayType(StrTy, llvm::APInt(32, Str.size()+1),
1082 ArrayType::Normal, 0);
1083 }
Mike Stump11289f42009-09-09 15:08:12 +00001084
Douglas Gregorabd9e962010-04-20 15:39:42 +00001085 return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc);
Anders Carlsson315d2292009-06-07 18:45:35 +00001086}
1087
John McCallfaf5fb42010-08-26 23:41:50 +00001088ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
1089 SourceLocation EncodeLoc,
1090 SourceLocation LParenLoc,
1091 ParsedType ty,
1092 SourceLocation RParenLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00001093 // FIXME: Preserve type source info ?
Douglas Gregorabd9e962010-04-20 15:39:42 +00001094 TypeSourceInfo *TInfo;
1095 QualType EncodedType = GetTypeFromParser(ty, &TInfo);
1096 if (!TInfo)
1097 TInfo = Context.getTrivialTypeSourceInfo(EncodedType,
Craig Topper07fa1762015-11-15 02:31:46 +00001098 getLocForEndOfToken(LParenLoc));
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001099
Douglas Gregorabd9e962010-04-20 15:39:42 +00001100 return BuildObjCEncodeExpression(AtLoc, TInfo, RParenLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001101}
1102
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001103static bool HelperToDiagnoseMismatchedMethodsInGlobalPool(Sema &S,
1104 SourceLocation AtLoc,
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001105 SourceLocation LParenLoc,
1106 SourceLocation RParenLoc,
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001107 ObjCMethodDecl *Method,
1108 ObjCMethodList &MethList) {
1109 ObjCMethodList *M = &MethList;
1110 bool Warned = false;
1111 for (M = M->getNext(); M; M=M->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00001112 ObjCMethodDecl *MatchingMethodDecl = M->getMethod();
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001113 if (MatchingMethodDecl == Method ||
1114 isa<ObjCImplDecl>(MatchingMethodDecl->getDeclContext()) ||
1115 MatchingMethodDecl->getSelector() != Method->getSelector())
1116 continue;
1117 if (!S.MatchTwoMethodDeclarations(Method,
1118 MatchingMethodDecl, Sema::MMS_loose)) {
1119 if (!Warned) {
1120 Warned = true;
Richard Smith01d96982016-12-02 23:00:28 +00001121 S.Diag(AtLoc, diag::warn_multiple_selectors)
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001122 << Method->getSelector() << FixItHint::CreateInsertion(LParenLoc, "(")
1123 << FixItHint::CreateInsertion(RParenLoc, ")");
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001124 S.Diag(Method->getLocation(), diag::note_method_declared_at)
1125 << Method->getDeclName();
1126 }
1127 S.Diag(MatchingMethodDecl->getLocation(), diag::note_method_declared_at)
1128 << MatchingMethodDecl->getDeclName();
1129 }
1130 }
1131 return Warned;
1132}
1133
1134static void DiagnoseMismatchedSelectors(Sema &S, SourceLocation AtLoc,
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001135 ObjCMethodDecl *Method,
1136 SourceLocation LParenLoc,
1137 SourceLocation RParenLoc,
1138 bool WarnMultipleSelectors) {
1139 if (!WarnMultipleSelectors ||
Richard Smith01d96982016-12-02 23:00:28 +00001140 S.Diags.isIgnored(diag::warn_multiple_selectors, SourceLocation()))
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001141 return;
1142 bool Warned = false;
1143 for (Sema::GlobalMethodPool::iterator b = S.MethodPool.begin(),
1144 e = S.MethodPool.end(); b != e; b++) {
1145 // first, instance methods
1146 ObjCMethodList &InstMethList = b->second.first;
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001147 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc,
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001148 Method, InstMethList))
1149 Warned = true;
1150
1151 // second, class methods
1152 ObjCMethodList &ClsMethList = b->second.second;
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001153 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc,
1154 Method, ClsMethList) || Warned)
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001155 return;
1156 }
1157}
1158
John McCallfaf5fb42010-08-26 23:41:50 +00001159ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
1160 SourceLocation AtLoc,
1161 SourceLocation SelLoc,
1162 SourceLocation LParenLoc,
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001163 SourceLocation RParenLoc,
1164 bool WarnMultipleSelectors) {
Fariborz Jahanian02447d82013-01-22 18:35:43 +00001165 ObjCMethodDecl *Method = LookupInstanceMethodInGlobalPool(Sel,
Fariborz Jahanian890803f2015-04-15 17:26:21 +00001166 SourceRange(LParenLoc, RParenLoc));
Fariborz Jahanian02447d82013-01-22 18:35:43 +00001167 if (!Method)
1168 Method = LookupFactoryMethodInGlobalPool(Sel,
Fariborz Jahanian0571d9b2009-06-16 16:25:00 +00001169 SourceRange(LParenLoc, RParenLoc));
Fariborz Jahanian0c0fc9e2013-06-05 18:46:14 +00001170 if (!Method) {
1171 if (const ObjCMethodDecl *OM = SelectorsForTypoCorrection(Sel)) {
1172 Selector MatchedSel = OM->getSelector();
1173 SourceRange SelectorRange(LParenLoc.getLocWithOffset(1),
1174 RParenLoc.getLocWithOffset(-1));
1175 Diag(SelLoc, diag::warn_undeclared_selector_with_typo)
1176 << Sel << MatchedSel
1177 << FixItHint::CreateReplacement(SelectorRange, MatchedSel.getAsString());
1178
1179 } else
1180 Diag(SelLoc, diag::warn_undeclared_selector) << Sel;
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001181 } else
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001182 DiagnoseMismatchedSelectors(*this, AtLoc, Method, LParenLoc, RParenLoc,
1183 WarnMultipleSelectors);
Chandler Carruth12c8f652015-03-27 00:55:05 +00001184
Fariborz Jahanian65a78b52014-05-09 19:51:39 +00001185 if (Method &&
1186 Method->getImplementationControl() != ObjCMethodDecl::Optional &&
Chandler Carruth12c8f652015-03-27 00:55:05 +00001187 !getSourceManager().isInSystemHeader(Method->getLocation()))
1188 ReferencedSelectors.insert(std::make_pair(Sel, AtLoc));
Fariborz Jahanian6e7e8cc2010-07-22 18:24:20 +00001189
Fariborz Jahanian02447d82013-01-22 18:35:43 +00001190 // In ARC, forbid the user from using @selector for
John McCall31168b02011-06-15 23:02:42 +00001191 // retain/release/autorelease/dealloc/retainCount.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001192 if (getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00001193 switch (Sel.getMethodFamily()) {
1194 case OMF_retain:
1195 case OMF_release:
1196 case OMF_autorelease:
1197 case OMF_retainCount:
1198 case OMF_dealloc:
1199 Diag(AtLoc, diag::err_arc_illegal_selector) <<
1200 Sel << SourceRange(LParenLoc, RParenLoc);
1201 break;
1202
1203 case OMF_None:
1204 case OMF_alloc:
1205 case OMF_copy:
Nico Weber1fb82662011-08-28 22:35:17 +00001206 case OMF_finalize:
John McCall31168b02011-06-15 23:02:42 +00001207 case OMF_init:
1208 case OMF_mutableCopy:
1209 case OMF_new:
1210 case OMF_self:
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00001211 case OMF_initialize:
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00001212 case OMF_performSelector:
John McCall31168b02011-06-15 23:02:42 +00001213 break;
1214 }
1215 }
Chris Lattnerfffd6a72009-02-18 06:06:56 +00001216 QualType Ty = Context.getObjCSelType();
Daniel Dunbar45858d22010-02-03 20:11:42 +00001217 return new (Context) ObjCSelectorExpr(Ty, Sel, AtLoc, RParenLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001218}
1219
John McCallfaf5fb42010-08-26 23:41:50 +00001220ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId,
1221 SourceLocation AtLoc,
1222 SourceLocation ProtoLoc,
1223 SourceLocation LParenLoc,
Argyrios Kyrtzidisb7e43672012-05-16 00:50:02 +00001224 SourceLocation ProtoIdLoc,
John McCallfaf5fb42010-08-26 23:41:50 +00001225 SourceLocation RParenLoc) {
Argyrios Kyrtzidisb7e43672012-05-16 00:50:02 +00001226 ObjCProtocolDecl* PDecl = LookupProtocol(ProtocolId, ProtoIdLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001227 if (!PDecl) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001228 Diag(ProtoLoc, diag::err_undeclared_protocol) << ProtocolId;
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001229 return true;
1230 }
Fariborz Jahaniana57d91c22014-07-25 19:45:01 +00001231 if (PDecl->hasDefinition())
1232 PDecl = PDecl->getDefinition();
Mike Stump11289f42009-09-09 15:08:12 +00001233
Chris Lattnerfffd6a72009-02-18 06:06:56 +00001234 QualType Ty = Context.getObjCProtoType();
1235 if (Ty.isNull())
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001236 return true;
Steve Naroff7cae42b2009-07-10 23:34:53 +00001237 Ty = Context.getObjCObjectPointerType(Ty);
Argyrios Kyrtzidisb7e43672012-05-16 00:50:02 +00001238 return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, ProtoIdLoc, RParenLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001239}
1240
John McCall5f2d5562011-02-03 09:00:02 +00001241/// Try to capture an implicit reference to 'self'.
Eli Friedman24af8502012-02-03 22:47:37 +00001242ObjCMethodDecl *Sema::tryCaptureObjCSelf(SourceLocation Loc) {
1243 DeclContext *DC = getFunctionLevelDeclContext();
John McCall5f2d5562011-02-03 09:00:02 +00001244
1245 // If we're not in an ObjC method, error out. Note that, unlike the
1246 // C++ case, we don't require an instance method --- class methods
1247 // still have a 'self', and we really do still need to capture it!
1248 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(DC);
1249 if (!method)
Craig Topperc3ec1492014-05-26 06:22:03 +00001250 return nullptr;
John McCall5f2d5562011-02-03 09:00:02 +00001251
Douglas Gregorfdf598e2012-02-18 09:37:24 +00001252 tryCaptureVariable(method->getSelfDecl(), Loc);
John McCall5f2d5562011-02-03 09:00:02 +00001253
1254 return method;
1255}
1256
Douglas Gregor64910ca2011-09-09 20:05:21 +00001257static QualType stripObjCInstanceType(ASTContext &Context, QualType T) {
Douglas Gregor813a0662015-06-19 18:14:38 +00001258 QualType origType = T;
1259 if (auto nullability = AttributedType::stripOuterNullability(T)) {
1260 if (T == Context.getObjCInstanceType()) {
1261 return Context.getAttributedType(
1262 AttributedType::getNullabilityAttrKind(*nullability),
1263 Context.getObjCIdType(),
1264 Context.getObjCIdType());
1265 }
1266
1267 return origType;
1268 }
1269
Douglas Gregor64910ca2011-09-09 20:05:21 +00001270 if (T == Context.getObjCInstanceType())
1271 return Context.getObjCIdType();
1272
Douglas Gregor813a0662015-06-19 18:14:38 +00001273 return origType;
Douglas Gregor64910ca2011-09-09 20:05:21 +00001274}
1275
Douglas Gregor813a0662015-06-19 18:14:38 +00001276/// Determine the result type of a message send based on the receiver type,
1277/// method, and the kind of message send.
1278///
1279/// This is the "base" result type, which will still need to be adjusted
1280/// to account for nullability.
1281static QualType getBaseMessageSendResultType(Sema &S,
1282 QualType ReceiverType,
1283 ObjCMethodDecl *Method,
1284 bool isClassMessage,
1285 bool isSuperMessage) {
Douglas Gregor33823722011-06-11 01:09:30 +00001286 assert(Method && "Must have a method");
1287 if (!Method->hasRelatedResultType())
Douglas Gregore83b9562015-07-07 03:57:53 +00001288 return Method->getSendResultType(ReceiverType);
Douglas Gregor813a0662015-06-19 18:14:38 +00001289
1290 ASTContext &Context = S.Context;
1291
1292 // Local function that transfers the nullability of the method's
1293 // result type to the returned result.
1294 auto transferNullability = [&](QualType type) -> QualType {
1295 // If the method's result type has nullability, extract it.
Douglas Gregore83b9562015-07-07 03:57:53 +00001296 if (auto nullability = Method->getSendResultType(ReceiverType)
1297 ->getNullability(Context)){
Douglas Gregor813a0662015-06-19 18:14:38 +00001298 // Strip off any outer nullability sugar from the provided type.
1299 (void)AttributedType::stripOuterNullability(type);
1300
1301 // Form a new attributed type using the method result type's nullability.
1302 return Context.getAttributedType(
1303 AttributedType::getNullabilityAttrKind(*nullability),
1304 type,
1305 type);
1306 }
1307
1308 return type;
1309 };
1310
Douglas Gregor33823722011-06-11 01:09:30 +00001311 // If a method has a related return type:
1312 // - if the method found is an instance method, but the message send
1313 // was a class message send, T is the declared return type of the method
1314 // found
1315 if (Method->isInstanceMethod() && isClassMessage)
Douglas Gregore83b9562015-07-07 03:57:53 +00001316 return stripObjCInstanceType(Context,
1317 Method->getSendResultType(ReceiverType));
Douglas Gregor813a0662015-06-19 18:14:38 +00001318
1319 // - if the receiver is super, T is a pointer to the class of the
Douglas Gregor33823722011-06-11 01:09:30 +00001320 // enclosing method definition
1321 if (isSuperMessage) {
Douglas Gregor813a0662015-06-19 18:14:38 +00001322 if (ObjCMethodDecl *CurMethod = S.getCurMethodDecl())
1323 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface()) {
1324 return transferNullability(
1325 Context.getObjCObjectPointerType(
1326 Context.getObjCInterfaceType(Class)));
1327 }
Douglas Gregor33823722011-06-11 01:09:30 +00001328 }
Douglas Gregor813a0662015-06-19 18:14:38 +00001329
Douglas Gregor33823722011-06-11 01:09:30 +00001330 // - if the receiver is the name of a class U, T is a pointer to U
Douglas Gregore83b9562015-07-07 03:57:53 +00001331 if (ReceiverType->getAsObjCInterfaceType())
Douglas Gregor813a0662015-06-19 18:14:38 +00001332 return transferNullability(Context.getObjCObjectPointerType(ReceiverType));
1333 // - if the receiver is of type Class or qualified Class type,
Douglas Gregor33823722011-06-11 01:09:30 +00001334 // T is the declared return type of the method.
1335 if (ReceiverType->isObjCClassType() ||
1336 ReceiverType->isObjCQualifiedClassType())
Douglas Gregore83b9562015-07-07 03:57:53 +00001337 return stripObjCInstanceType(Context,
1338 Method->getSendResultType(ReceiverType));
Douglas Gregor813a0662015-06-19 18:14:38 +00001339
Douglas Gregor33823722011-06-11 01:09:30 +00001340 // - if the receiver is id, qualified id, Class, or qualified Class, T
1341 // is the receiver type, otherwise
1342 // - T is the type of the receiver expression.
Douglas Gregor813a0662015-06-19 18:14:38 +00001343 return transferNullability(ReceiverType);
1344}
1345
1346QualType Sema::getMessageSendResultType(QualType ReceiverType,
1347 ObjCMethodDecl *Method,
1348 bool isClassMessage,
1349 bool isSuperMessage) {
1350 // Produce the result type.
1351 QualType resultType = getBaseMessageSendResultType(*this, ReceiverType,
1352 Method,
1353 isClassMessage,
1354 isSuperMessage);
1355
Douglas Gregor2a20bd12015-06-19 18:25:57 +00001356 // If this is a class message, ignore the nullability of the receiver.
1357 if (isClassMessage)
1358 return resultType;
1359
Akira Hatanaka66d405d2018-07-26 17:51:13 +00001360 // There is nothing left to do if the result type cannot have a nullability
1361 // specifier.
1362 if (!resultType->canHaveNullability())
1363 return resultType;
1364
Douglas Gregor813a0662015-06-19 18:14:38 +00001365 // Map the nullability of the result into a table index.
1366 unsigned receiverNullabilityIdx = 0;
1367 if (auto nullability = ReceiverType->getNullability(Context))
1368 receiverNullabilityIdx = 1 + static_cast<unsigned>(*nullability);
1369
1370 unsigned resultNullabilityIdx = 0;
1371 if (auto nullability = resultType->getNullability(Context))
1372 resultNullabilityIdx = 1 + static_cast<unsigned>(*nullability);
1373
1374 // The table of nullability mappings, indexed by the receiver's nullability
1375 // and then the result type's nullability.
1376 static const uint8_t None = 0;
1377 static const uint8_t NonNull = 1;
1378 static const uint8_t Nullable = 2;
1379 static const uint8_t Unspecified = 3;
1380 static const uint8_t nullabilityMap[4][4] = {
1381 // None NonNull Nullable Unspecified
1382 /* None */ { None, None, Nullable, None },
1383 /* NonNull */ { None, NonNull, Nullable, Unspecified },
1384 /* Nullable */ { Nullable, Nullable, Nullable, Nullable },
1385 /* Unspecified */ { None, Unspecified, Nullable, Unspecified }
1386 };
1387
1388 unsigned newResultNullabilityIdx
1389 = nullabilityMap[receiverNullabilityIdx][resultNullabilityIdx];
1390 if (newResultNullabilityIdx == resultNullabilityIdx)
1391 return resultType;
1392
1393 // Strip off the existing nullability. This removes as little type sugar as
1394 // possible.
1395 do {
1396 if (auto attributed = dyn_cast<AttributedType>(resultType.getTypePtr())) {
1397 resultType = attributed->getModifiedType();
1398 } else {
1399 resultType = resultType.getDesugaredType(Context);
1400 }
1401 } while (resultType->getNullability(Context));
1402
1403 // Add nullability back if needed.
1404 if (newResultNullabilityIdx > 0) {
1405 auto newNullability
1406 = static_cast<NullabilityKind>(newResultNullabilityIdx-1);
1407 return Context.getAttributedType(
1408 AttributedType::getNullabilityAttrKind(newNullability),
1409 resultType, resultType);
1410 }
1411
1412 return resultType;
Douglas Gregor33823722011-06-11 01:09:30 +00001413}
John McCall5f2d5562011-02-03 09:00:02 +00001414
John McCall5ec7e7d2013-03-19 07:04:25 +00001415/// Look for an ObjC method whose result type exactly matches the given type.
1416static const ObjCMethodDecl *
1417findExplicitInstancetypeDeclarer(const ObjCMethodDecl *MD,
1418 QualType instancetype) {
Alp Toker314cc812014-01-25 16:55:45 +00001419 if (MD->getReturnType() == instancetype)
1420 return MD;
John McCall5ec7e7d2013-03-19 07:04:25 +00001421
1422 // For these purposes, a method in an @implementation overrides a
1423 // declaration in the @interface.
1424 if (const ObjCImplDecl *impl =
1425 dyn_cast<ObjCImplDecl>(MD->getDeclContext())) {
1426 const ObjCContainerDecl *iface;
1427 if (const ObjCCategoryImplDecl *catImpl =
1428 dyn_cast<ObjCCategoryImplDecl>(impl)) {
1429 iface = catImpl->getCategoryDecl();
1430 } else {
1431 iface = impl->getClassInterface();
1432 }
1433
1434 const ObjCMethodDecl *ifaceMD =
1435 iface->getMethod(MD->getSelector(), MD->isInstanceMethod());
1436 if (ifaceMD) return findExplicitInstancetypeDeclarer(ifaceMD, instancetype);
1437 }
1438
1439 SmallVector<const ObjCMethodDecl *, 4> overrides;
1440 MD->getOverriddenMethods(overrides);
1441 for (unsigned i = 0, e = overrides.size(); i != e; ++i) {
1442 if (const ObjCMethodDecl *result =
1443 findExplicitInstancetypeDeclarer(overrides[i], instancetype))
1444 return result;
1445 }
1446
Craig Topperc3ec1492014-05-26 06:22:03 +00001447 return nullptr;
John McCall5ec7e7d2013-03-19 07:04:25 +00001448}
1449
1450void Sema::EmitRelatedResultTypeNoteForReturn(QualType destType) {
1451 // Only complain if we're in an ObjC method and the required return
1452 // type doesn't match the method's declared return type.
1453 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurContext);
1454 if (!MD || !MD->hasRelatedResultType() ||
Alp Toker314cc812014-01-25 16:55:45 +00001455 Context.hasSameUnqualifiedType(destType, MD->getReturnType()))
John McCall5ec7e7d2013-03-19 07:04:25 +00001456 return;
1457
1458 // Look for a method overridden by this method which explicitly uses
1459 // 'instancetype'.
1460 if (const ObjCMethodDecl *overridden =
1461 findExplicitInstancetypeDeclarer(MD, Context.getObjCInstanceType())) {
Aaron Ballman41b10ac2014-08-01 13:20:09 +00001462 SourceRange range = overridden->getReturnTypeSourceRange();
1463 SourceLocation loc = range.getBegin();
John McCall5ec7e7d2013-03-19 07:04:25 +00001464 if (loc.isInvalid())
1465 loc = overridden->getLocation();
1466 Diag(loc, diag::note_related_result_type_explicit)
1467 << /*current method*/ 1 << range;
1468 return;
1469 }
1470
1471 // Otherwise, if we have an interesting method family, note that.
1472 // This should always trigger if the above didn't.
1473 if (ObjCMethodFamily family = MD->getMethodFamily())
1474 Diag(MD->getLocation(), diag::note_related_result_type_family)
1475 << /*current method*/ 1
1476 << family;
1477}
1478
Douglas Gregor33823722011-06-11 01:09:30 +00001479void Sema::EmitRelatedResultTypeNote(const Expr *E) {
1480 E = E->IgnoreParenImpCasts();
1481 const ObjCMessageExpr *MsgSend = dyn_cast<ObjCMessageExpr>(E);
1482 if (!MsgSend)
1483 return;
1484
1485 const ObjCMethodDecl *Method = MsgSend->getMethodDecl();
1486 if (!Method)
1487 return;
1488
1489 if (!Method->hasRelatedResultType())
1490 return;
Alp Toker314cc812014-01-25 16:55:45 +00001491
1492 if (Context.hasSameUnqualifiedType(
1493 Method->getReturnType().getNonReferenceType(), MsgSend->getType()))
Douglas Gregor33823722011-06-11 01:09:30 +00001494 return;
Alp Toker314cc812014-01-25 16:55:45 +00001495
1496 if (!Context.hasSameUnqualifiedType(Method->getReturnType(),
Douglas Gregorbab8a962011-09-08 01:46:34 +00001497 Context.getObjCInstanceType()))
1498 return;
1499
Douglas Gregor33823722011-06-11 01:09:30 +00001500 Diag(Method->getLocation(), diag::note_related_result_type_inferred)
1501 << Method->isInstanceMethod() << Method->getSelector()
1502 << MsgSend->getType();
1503}
1504
1505bool Sema::CheckMessageArgumentTypes(QualType ReceiverType,
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001506 MultiExprArg Args,
1507 Selector Sel,
Fariborz Jahanian6ce25c02012-08-31 17:03:18 +00001508 ArrayRef<SourceLocation> SelectorLocs,
1509 ObjCMethodDecl *Method,
Douglas Gregor33823722011-06-11 01:09:30 +00001510 bool isClassMessage, bool isSuperMessage,
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001511 SourceLocation lbrac, SourceLocation rbrac,
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00001512 SourceRange RecRange,
John McCall7decc9e2010-11-18 06:31:45 +00001513 QualType &ReturnType, ExprValueKind &VK) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001514 SourceLocation SelLoc;
1515 if (!SelectorLocs.empty() && SelectorLocs.front().isValid())
1516 SelLoc = SelectorLocs.front();
1517 else
1518 SelLoc = lbrac;
1519
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001520 if (!Method) {
Daniel Dunbar83876b42008-09-11 00:04:36 +00001521 // Apply default argument promotion as for (C99 6.5.2.2p6).
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001522 for (unsigned i = 0, e = Args.size(); i != e; i++) {
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001523 if (Args[i]->isTypeDependent())
1524 continue;
1525
John McCallcc5788c2013-03-04 07:34:02 +00001526 ExprResult result;
1527 if (getLangOpts().DebuggerSupport) {
1528 QualType paramTy; // ignored
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001529 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy);
John McCallcc5788c2013-03-04 07:34:02 +00001530 } else {
1531 result = DefaultArgumentPromotion(Args[i]);
1532 }
1533 if (result.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00001534 return true;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001535 Args[i] = result.get();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001536 }
Daniel Dunbar83876b42008-09-11 00:04:36 +00001537
John McCall31168b02011-06-15 23:02:42 +00001538 unsigned DiagID;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001539 if (getLangOpts().ObjCAutoRefCount)
John McCall31168b02011-06-15 23:02:42 +00001540 DiagID = diag::err_arc_method_not_found;
1541 else
1542 DiagID = isClassMessage ? diag::warn_class_method_not_found
1543 : diag::warn_inst_method_not_found;
Fariborz Jahanian773df4a2013-05-14 23:24:17 +00001544 if (!getLangOpts().DebuggerSupport) {
Fariborz Jahanian4cc55522013-06-18 15:31:36 +00001545 const ObjCMethodDecl *OMD = SelectorsForTypoCorrection(Sel, ReceiverType);
Fariborz Jahanian06499232013-06-18 17:10:58 +00001546 if (OMD && !OMD->isInvalidDecl()) {
Fariborz Jahanian4cc55522013-06-18 15:31:36 +00001547 if (getLangOpts().ObjCAutoRefCount)
Richard Smithf8812672016-12-02 22:38:31 +00001548 DiagID = diag::err_method_not_found_with_typo;
Fariborz Jahanian4cc55522013-06-18 15:31:36 +00001549 else
1550 DiagID = isClassMessage ? diag::warn_class_method_not_found_with_typo
1551 : diag::warn_instance_method_not_found_with_typo;
Fariborz Jahanian75481672013-06-17 17:10:54 +00001552 Selector MatchedSel = OMD->getSelector();
1553 SourceRange SelectorRange(SelectorLocs.front(), SelectorLocs.back());
Fariborz Jahanian5ab87502014-08-12 22:16:41 +00001554 if (MatchedSel.isUnarySelector())
1555 Diag(SelLoc, DiagID)
1556 << Sel<< isClassMessage << MatchedSel
1557 << FixItHint::CreateReplacement(SelectorRange, MatchedSel.getAsString());
1558 else
1559 Diag(SelLoc, DiagID) << Sel<< isClassMessage << MatchedSel;
Fariborz Jahanian75481672013-06-17 17:10:54 +00001560 }
1561 else
1562 Diag(SelLoc, DiagID)
1563 << Sel << isClassMessage << SourceRange(SelectorLocs.front(),
Fariborz Jahanian6ce25c02012-08-31 17:03:18 +00001564 SelectorLocs.back());
Fariborz Jahanian773df4a2013-05-14 23:24:17 +00001565 // Find the class to which we are sending this message.
1566 if (ReceiverType->isObjCObjectPointerType()) {
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00001567 if (ObjCInterfaceDecl *ThisClass =
1568 ReceiverType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()) {
1569 Diag(ThisClass->getLocation(), diag::note_receiver_class_declared);
1570 if (!RecRange.isInvalid())
1571 if (ThisClass->lookupClassMethod(Sel))
1572 Diag(RecRange.getBegin(),diag::note_receiver_expr_here)
1573 << FixItHint::CreateReplacement(RecRange,
1574 ThisClass->getNameAsString());
1575 }
Fariborz Jahanian773df4a2013-05-14 23:24:17 +00001576 }
1577 }
John McCall3f4138c2011-07-13 17:56:40 +00001578
1579 // In debuggers, we want to use __unknown_anytype for these
1580 // results so that clients can cast them.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001581 if (getLangOpts().DebuggerSupport) {
John McCall3f4138c2011-07-13 17:56:40 +00001582 ReturnType = Context.UnknownAnyTy;
1583 } else {
1584 ReturnType = Context.getObjCIdType();
1585 }
John McCall7decc9e2010-11-18 06:31:45 +00001586 VK = VK_RValue;
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001587 return false;
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001588 }
Mike Stump11289f42009-09-09 15:08:12 +00001589
Douglas Gregor33823722011-06-11 01:09:30 +00001590 ReturnType = getMessageSendResultType(ReceiverType, Method, isClassMessage,
1591 isSuperMessage);
Alp Toker314cc812014-01-25 16:55:45 +00001592 VK = Expr::getValueKindForType(Method->getReturnType());
Mike Stump11289f42009-09-09 15:08:12 +00001593
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001594 unsigned NumNamedArgs = Sel.getNumArgs();
Fariborz Jahanian60462092010-04-08 00:30:06 +00001595 // Method might have more arguments than selector indicates. This is due
1596 // to addition of c-style arguments in method.
1597 if (Method->param_size() > Sel.getNumArgs())
1598 NumNamedArgs = Method->param_size();
1599 // FIXME. This need be cleaned up.
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001600 if (Args.size() < NumNamedArgs) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001601 Diag(SelLoc, diag::err_typecheck_call_too_few_args)
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001602 << 2 << NumNamedArgs << static_cast<unsigned>(Args.size());
Fariborz Jahanian60462092010-04-08 00:30:06 +00001603 return false;
1604 }
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001605
Douglas Gregore83b9562015-07-07 03:57:53 +00001606 // Compute the set of type arguments to be substituted into each parameter
1607 // type.
1608 Optional<ArrayRef<QualType>> typeArgs
1609 = ReceiverType->getObjCSubstitutions(Method->getDeclContext());
Chris Lattnera8a7d0f2009-04-12 08:11:20 +00001610 bool IsError = false;
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001611 for (unsigned i = 0; i < NumNamedArgs; i++) {
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001612 // We can't do any type-checking on a type-dependent argument.
1613 if (Args[i]->isTypeDependent())
1614 continue;
1615
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001616 Expr *argExpr = Args[i];
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001617
Alp Toker03376dc2014-07-07 09:02:20 +00001618 ParmVarDecl *param = Method->parameters()[i];
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001619 assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
Mike Stump11289f42009-09-09 15:08:12 +00001620
Akira Hatanaka627586b2018-03-02 01:53:15 +00001621 if (param->hasAttr<NoEscapeAttr>())
1622 if (auto *BE = dyn_cast<BlockExpr>(
1623 argExpr->IgnoreParenNoopCasts(Context)))
1624 BE->getBlockDecl()->setDoesNotEscape();
1625
John McCall4124c492011-10-17 18:40:02 +00001626 // Strip the unbridged-cast placeholder expression off unless it's
1627 // a consumed argument.
1628 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) &&
1629 !param->hasAttr<CFConsumedAttr>())
1630 argExpr = stripARCUnbridgedCast(argExpr);
1631
John McCallea0a39e2012-11-14 00:49:39 +00001632 // If the parameter is __unknown_anytype, infer its type
1633 // from the argument.
1634 if (param->getType() == Context.UnknownAnyTy) {
John McCallcc5788c2013-03-04 07:34:02 +00001635 QualType paramType;
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001636 ExprResult argE = checkUnknownAnyArg(SelLoc, argExpr, paramType);
John McCallcc5788c2013-03-04 07:34:02 +00001637 if (argE.isInvalid()) {
John McCallea0a39e2012-11-14 00:49:39 +00001638 IsError = true;
John McCallcc5788c2013-03-04 07:34:02 +00001639 } else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001640 Args[i] = argE.get();
John McCallea0a39e2012-11-14 00:49:39 +00001641
John McCallcc5788c2013-03-04 07:34:02 +00001642 // Update the parameter type in-place.
1643 param->setType(paramType);
1644 }
1645 continue;
John McCallea0a39e2012-11-14 00:49:39 +00001646 }
1647
Douglas Gregore83b9562015-07-07 03:57:53 +00001648 QualType origParamType = param->getType();
1649 QualType paramType = param->getType();
1650 if (typeArgs)
1651 paramType = paramType.substObjCTypeArgs(
1652 Context,
1653 *typeArgs,
1654 ObjCSubstitutionContext::Parameter);
1655
Douglas Gregor6b7f12c2010-04-21 23:24:10 +00001656 if (RequireCompleteType(argExpr->getSourceRange().getBegin(),
Douglas Gregore83b9562015-07-07 03:57:53 +00001657 paramType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001658 diag::err_call_incomplete_argument, argExpr))
Douglas Gregor6b7f12c2010-04-21 23:24:10 +00001659 return true;
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001660
Douglas Gregore83b9562015-07-07 03:57:53 +00001661 InitializedEntity Entity
1662 = InitializedEntity::InitializeParameter(Context, param, paramType);
Fariborz Jahaniana1db7df2014-07-31 17:39:50 +00001663 ExprResult ArgE = PerformCopyInitialization(Entity, SourceLocation(), argExpr);
Douglas Gregor6b7f12c2010-04-21 23:24:10 +00001664 if (ArgE.isInvalid())
1665 IsError = true;
Douglas Gregore83b9562015-07-07 03:57:53 +00001666 else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001667 Args[i] = ArgE.getAs<Expr>();
Douglas Gregore83b9562015-07-07 03:57:53 +00001668
1669 // If we are type-erasing a block to a block-compatible
1670 // Objective-C pointer type, we may need to extend the lifetime
1671 // of the block object.
1672 if (typeArgs && Args[i]->isRValue() && paramType->isBlockPointerType() &&
Bob Wilson7e9fd562015-10-02 01:05:29 +00001673 Args[i]->getType()->isBlockPointerType() &&
1674 origParamType->isObjCObjectPointerType()) {
Douglas Gregore83b9562015-07-07 03:57:53 +00001675 ExprResult arg = Args[i];
1676 maybeExtendBlockObject(arg);
1677 Args[i] = arg.get();
1678 }
1679 }
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001680 }
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001681
1682 // Promote additional arguments to variadic methods.
1683 if (Method->isVariadic()) {
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001684 for (unsigned i = NumNamedArgs, e = Args.size(); i < e; ++i) {
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001685 if (Args[i]->isTypeDependent())
1686 continue;
1687
Jordy Roseaca01f92012-05-12 17:32:52 +00001688 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], VariadicMethod,
Craig Topperc3ec1492014-05-26 06:22:03 +00001689 nullptr);
John Wiegley01296292011-04-08 18:41:53 +00001690 IsError |= Arg.isInvalid();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001691 Args[i] = Arg.get();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001692 }
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001693 } else {
1694 // Check for extra arguments to non-variadic methods.
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001695 if (Args.size() != NumNamedArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00001696 Diag(Args[NumNamedArgs]->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001697 diag::err_typecheck_call_too_many_args)
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001698 << 2 /*method*/ << NumNamedArgs << static_cast<unsigned>(Args.size())
Eric Christopher2a5aaff2010-04-16 04:56:46 +00001699 << Method->getSourceRange()
Chris Lattner3b054132008-11-19 05:08:23 +00001700 << SourceRange(Args[NumNamedArgs]->getLocStart(),
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001701 Args.back()->getLocEnd());
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001702 }
1703 }
1704
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001705 DiagnoseSentinelCalls(Method, SelLoc, Args);
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00001706
1707 // Do additional checkings on method.
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001708 IsError |= CheckObjCMethodCall(
Craig Topper8c2a2a02014-08-30 16:55:39 +00001709 Method, SelLoc, makeArrayRef(Args.data(), Args.size()));
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00001710
Chris Lattnera8a7d0f2009-04-12 08:11:20 +00001711 return IsError;
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001712}
1713
Argyrios Kyrtzidis2080d902014-01-03 18:32:18 +00001714bool Sema::isSelfExpr(Expr *RExpr) {
Fariborz Jahanianb3b1e172011-03-27 19:53:47 +00001715 // 'self' is objc 'self' in an objc method only.
Argyrios Kyrtzidis2080d902014-01-03 18:32:18 +00001716 ObjCMethodDecl *Method =
1717 dyn_cast_or_null<ObjCMethodDecl>(CurContext->getNonClosureAncestor());
1718 return isSelfExpr(RExpr, Method);
1719}
1720
1721bool Sema::isSelfExpr(Expr *receiver, const ObjCMethodDecl *method) {
John McCallfe96e0b2011-11-06 09:01:30 +00001722 if (!method) return false;
1723
John McCall31168b02011-06-15 23:02:42 +00001724 receiver = receiver->IgnoreParenLValueCasts();
1725 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(receiver))
John McCallfe96e0b2011-11-06 09:01:30 +00001726 if (DRE->getDecl() == method->getSelfDecl())
Douglas Gregor486b74e2011-09-27 16:10:05 +00001727 return true;
1728 return false;
Steve Naroff3f49fee2009-03-04 15:11:40 +00001729}
1730
John McCall526ab472011-10-25 17:37:35 +00001731/// LookupMethodInType - Look up a method in an ObjCObjectType.
1732ObjCMethodDecl *Sema::LookupMethodInObjectType(Selector sel, QualType type,
1733 bool isInstance) {
1734 const ObjCObjectType *objType = type->castAs<ObjCObjectType>();
1735 if (ObjCInterfaceDecl *iface = objType->getInterface()) {
1736 // Look it up in the main interface (and categories, etc.)
1737 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance))
1738 return method;
1739
1740 // Okay, look for "private" methods declared in any
1741 // @implementations we've seen.
Anna Zaksc77a3b12012-07-27 19:07:44 +00001742 if (ObjCMethodDecl *method = iface->lookupPrivateMethod(sel, isInstance))
1743 return method;
John McCall526ab472011-10-25 17:37:35 +00001744 }
1745
1746 // Check qualifiers.
Aaron Ballman1683f7b2014-03-17 15:55:30 +00001747 for (const auto *I : objType->quals())
1748 if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance))
John McCall526ab472011-10-25 17:37:35 +00001749 return method;
1750
Craig Topperc3ec1492014-05-26 06:22:03 +00001751 return nullptr;
John McCall526ab472011-10-25 17:37:35 +00001752}
1753
Fariborz Jahanian3dc11ad2011-03-09 20:18:06 +00001754/// LookupMethodInQualifiedType - Lookups up a method in protocol qualifier
1755/// list of a qualified objective pointer type.
1756ObjCMethodDecl *Sema::LookupMethodInQualifiedType(Selector Sel,
1757 const ObjCObjectPointerType *OPT,
1758 bool Instance)
1759{
Craig Topperc3ec1492014-05-26 06:22:03 +00001760 ObjCMethodDecl *MD = nullptr;
Aaron Ballman83731462014-03-17 16:14:00 +00001761 for (const auto *PROTO : OPT->quals()) {
Fariborz Jahanian3dc11ad2011-03-09 20:18:06 +00001762 if ((MD = PROTO->lookupMethod(Sel, Instance))) {
1763 return MD;
1764 }
1765 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001766 return nullptr;
Fariborz Jahanian3dc11ad2011-03-09 20:18:06 +00001767}
1768
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001769/// HandleExprPropertyRefExpr - Handle foo.bar where foo is a pointer to an
1770/// objective C interface. This is a property reference expression.
John McCalldadc5752010-08-24 06:29:42 +00001771ExprResult Sema::
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001772HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
Fariborz Jahanianc297cd82011-06-28 00:00:52 +00001773 Expr *BaseExpr, SourceLocation OpLoc,
1774 DeclarationName MemberName,
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001775 SourceLocation MemberLoc,
1776 SourceLocation SuperLoc, QualType SuperType,
1777 bool Super) {
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001778 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
1779 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
Benjamin Kramer1458c1c2012-05-19 16:03:58 +00001780
Benjamin Kramer365082d2012-05-19 16:34:46 +00001781 if (!MemberName.isIdentifier()) {
Douglas Gregord6459312011-04-20 18:19:55 +00001782 Diag(MemberLoc, diag::err_invalid_property_name)
1783 << MemberName << QualType(OPT, 0);
1784 return ExprError();
1785 }
Benjamin Kramer365082d2012-05-19 16:34:46 +00001786
1787 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Douglas Gregord6459312011-04-20 18:19:55 +00001788
Douglas Gregor4123a862011-11-14 22:10:01 +00001789 SourceRange BaseRange = Super? SourceRange(SuperLoc)
1790 : BaseExpr->getSourceRange();
1791 if (RequireCompleteType(MemberLoc, OPT->getPointeeType(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001792 diag::err_property_not_found_forward_class,
1793 MemberName, BaseRange))
Fariborz Jahanian7cabbe02010-12-16 00:56:28 +00001794 return ExprError();
Douglas Gregoracf4fd32015-11-03 01:15:46 +00001795
Manman Ren5b786402016-01-28 18:49:28 +00001796 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(
1797 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) {
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001798 // Check whether we can reference this property.
1799 if (DiagnoseUseOfDecl(PD, MemberLoc))
1800 return ExprError();
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001801 if (Super)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001802 return new (Context)
1803 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue,
1804 OK_ObjCProperty, MemberLoc, SuperLoc, SuperType);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001805 else
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001806 return new (Context)
1807 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue,
1808 OK_ObjCProperty, MemberLoc, BaseExpr);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001809 }
1810 // Check protocols on qualified interfaces.
Aaron Ballman83731462014-03-17 16:14:00 +00001811 for (const auto *I : OPT->quals())
Manman Ren5b786402016-01-28 18:49:28 +00001812 if (ObjCPropertyDecl *PD = I->FindPropertyDeclaration(
1813 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) {
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001814 // Check whether we can reference this property.
1815 if (DiagnoseUseOfDecl(PD, MemberLoc))
1816 return ExprError();
Fariborz Jahanianfce89c62012-04-19 21:44:57 +00001817
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001818 if (Super)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001819 return new (Context) ObjCPropertyRefExpr(
1820 PD, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty, MemberLoc,
1821 SuperLoc, SuperType);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001822 else
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001823 return new (Context)
1824 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue,
1825 OK_ObjCProperty, MemberLoc, BaseExpr);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001826 }
1827 // If that failed, look for an "implicit" property by seeing if the nullary
1828 // selector is implemented.
1829
1830 // FIXME: The logic for looking up nullary and unary selectors should be
1831 // shared with the code in ActOnInstanceMessage.
1832
1833 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
1834 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianb296e332011-03-09 22:17:12 +00001835
Manman Ren2b2b1a92016-06-28 23:01:49 +00001836 // May be found in property's qualified list.
Fariborz Jahanianb296e332011-03-09 22:17:12 +00001837 if (!Getter)
1838 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001839
1840 // If this reference is in an @implementation, check for 'private' methods.
1841 if (!Getter)
Fariborz Jahanianecbbb6e2010-12-03 23:37:08 +00001842 Getter = IFace->lookupPrivateMethod(Sel);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001843
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001844 if (Getter) {
1845 // Check if we can reference this property.
1846 if (DiagnoseUseOfDecl(Getter, MemberLoc))
1847 return ExprError();
1848 }
1849 // If we found a getter then this may be a valid dot-reference, we
1850 // will look for the matching setter, in case it is needed.
1851 Selector SetterSel =
Adrian Prantla4ce9062013-06-07 22:29:12 +00001852 SelectorTable::constructSetterSelector(PP.getIdentifierTable(),
1853 PP.getSelectorTable(), Member);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001854 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +00001855
Manman Ren2b2b1a92016-06-28 23:01:49 +00001856 // May be found in property's qualified list.
Fariborz Jahanianb296e332011-03-09 22:17:12 +00001857 if (!Setter)
1858 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true);
1859
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001860 if (!Setter) {
1861 // If this reference is in an @implementation, also check for 'private'
1862 // methods.
Fariborz Jahanianecbbb6e2010-12-03 23:37:08 +00001863 Setter = IFace->lookupPrivateMethod(SetterSel);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001864 }
Fariborz Jahanianb296e332011-03-09 22:17:12 +00001865
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001866 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
1867 return ExprError();
1868
Fariborz Jahanian0b1d2882014-08-08 22:33:24 +00001869 // Special warning if member name used in a property-dot for a setter accessor
1870 // does not use a property with same name; e.g. obj.X = ... for a property with
1871 // name 'x'.
Manman Ren5b786402016-01-28 18:49:28 +00001872 if (Setter && Setter->isImplicit() && Setter->isPropertyAccessor() &&
1873 !IFace->FindPropertyDeclaration(
1874 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) {
Fariborz Jahanian4eda2c02014-08-15 17:39:00 +00001875 if (const ObjCPropertyDecl *PDecl = Setter->findPropertyDecl()) {
1876 // Do not warn if user is using property-dot syntax to make call to
1877 // user named setter.
1878 if (!(PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter))
Fariborz Jahanian0b1d2882014-08-08 22:33:24 +00001879 Diag(MemberLoc,
1880 diag::warn_property_access_suggest)
1881 << MemberName << QualType(OPT, 0) << PDecl->getName()
1882 << FixItHint::CreateReplacement(MemberLoc, PDecl->getName());
Fariborz Jahanian4eda2c02014-08-15 17:39:00 +00001883 }
Fariborz Jahanian0b1d2882014-08-08 22:33:24 +00001884 }
1885
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00001886 if (Getter || Setter) {
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001887 if (Super)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001888 return new (Context)
1889 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1890 OK_ObjCProperty, MemberLoc, SuperLoc, SuperType);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001891 else
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001892 return new (Context)
1893 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1894 OK_ObjCProperty, MemberLoc, BaseExpr);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001895
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001896 }
1897
1898 // Attempt to correct for typos in property names.
Kaelyn Takata89c881b2014-10-27 18:07:29 +00001899 if (TypoCorrection Corrected =
1900 CorrectTypo(DeclarationNameInfo(MemberName, MemberLoc),
1901 LookupOrdinaryName, nullptr, nullptr,
1902 llvm::make_unique<DeclFilterCCC<ObjCPropertyDecl>>(),
1903 CTK_ErrorRecovery, IFace, false, OPT)) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00001904 DeclarationName TypoResult = Corrected.getCorrection();
Manman Ren2b2b1a92016-06-28 23:01:49 +00001905 if (TypoResult.isIdentifier() &&
1906 TypoResult.getAsIdentifierInfo() == Member) {
1907 // There is no need to try the correction if it is the same.
1908 NamedDecl *ChosenDecl =
1909 Corrected.isKeyword() ? nullptr : Corrected.getFoundDecl();
1910 if (ChosenDecl && isa<ObjCPropertyDecl>(ChosenDecl))
1911 if (cast<ObjCPropertyDecl>(ChosenDecl)->isClassProperty()) {
1912 // This is a class property, we should not use the instance to
1913 // access it.
1914 Diag(MemberLoc, diag::err_class_property_found) << MemberName
1915 << OPT->getInterfaceDecl()->getName()
1916 << FixItHint::CreateReplacement(BaseExpr->getSourceRange(),
1917 OPT->getInterfaceDecl()->getName());
1918 return ExprError();
1919 }
1920 } else {
1921 diagnoseTypo(Corrected, PDiag(diag::err_property_not_found_suggest)
1922 << MemberName << QualType(OPT, 0));
1923 return HandleExprPropertyRefExpr(OPT, BaseExpr, OpLoc,
1924 TypoResult, MemberLoc,
1925 SuperLoc, SuperType, Super);
1926 }
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001927 }
Fariborz Jahanian05d389f2011-02-17 01:26:14 +00001928 ObjCInterfaceDecl *ClassDeclared;
1929 if (ObjCIvarDecl *Ivar =
1930 IFace->lookupInstanceVariable(Member, ClassDeclared)) {
1931 QualType T = Ivar->getType();
1932 if (const ObjCObjectPointerType * OBJPT =
1933 T->getAsObjCInterfacePointerType()) {
Douglas Gregor4123a862011-11-14 22:10:01 +00001934 if (RequireCompleteType(MemberLoc, OBJPT->getPointeeType(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001935 diag::err_property_not_as_forward_class,
1936 MemberName, BaseExpr))
Douglas Gregor4123a862011-11-14 22:10:01 +00001937 return ExprError();
Fariborz Jahanian05d389f2011-02-17 01:26:14 +00001938 }
Fariborz Jahanianc297cd82011-06-28 00:00:52 +00001939 Diag(MemberLoc,
1940 diag::err_ivar_access_using_property_syntax_suggest)
1941 << MemberName << QualType(OPT, 0) << Ivar->getDeclName()
1942 << FixItHint::CreateReplacement(OpLoc, "->");
1943 return ExprError();
Fariborz Jahanian05d389f2011-02-17 01:26:14 +00001944 }
Chris Lattner90c58fa2010-04-11 07:51:10 +00001945
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001946 Diag(MemberLoc, diag::err_property_not_found)
1947 << MemberName << QualType(OPT, 0);
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00001948 if (Setter)
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001949 Diag(Setter->getLocation(), diag::note_getter_unavailable)
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00001950 << MemberName << BaseExpr->getSourceRange();
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001951 return ExprError();
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001952}
1953
John McCalldadc5752010-08-24 06:29:42 +00001954ExprResult Sema::
Chris Lattnera36ec422010-04-11 08:28:14 +00001955ActOnClassPropertyRefExpr(IdentifierInfo &receiverName,
1956 IdentifierInfo &propertyName,
1957 SourceLocation receiverNameLoc,
1958 SourceLocation propertyNameLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00001959
Douglas Gregor35b0bac2010-01-03 18:01:57 +00001960 IdentifierInfo *receiverNamePtr = &receiverName;
Douglas Gregorb2ccf012010-04-15 22:33:43 +00001961 ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr,
1962 receiverNameLoc);
Douglas Gregor33823722011-06-11 01:09:30 +00001963
Douglas Gregore83b9562015-07-07 03:57:53 +00001964 QualType SuperType;
Craig Topperc3ec1492014-05-26 06:22:03 +00001965 if (!IFace) {
Chris Lattnera36ec422010-04-11 08:28:14 +00001966 // If the "receiver" is 'super' in a method, handle it as an expression-like
1967 // property reference.
John McCall5f2d5562011-02-03 09:00:02 +00001968 if (receiverNamePtr->isStr("super")) {
Eli Friedman24af8502012-02-03 22:47:37 +00001969 if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) {
Douglas Gregore83b9562015-07-07 03:57:53 +00001970 if (auto classDecl = CurMethod->getClassInterface()) {
1971 SuperType = QualType(classDecl->getSuperClassType(), 0);
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001972 if (CurMethod->isInstanceMethod()) {
Douglas Gregore83b9562015-07-07 03:57:53 +00001973 if (SuperType.isNull()) {
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001974 // The current class does not have a superclass.
Richard Smithf8812672016-12-02 22:38:31 +00001975 Diag(receiverNameLoc, diag::err_root_class_cannot_use_super)
Douglas Gregore83b9562015-07-07 03:57:53 +00001976 << CurMethod->getClassInterface()->getIdentifier();
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001977 return ExprError();
1978 }
Douglas Gregore83b9562015-07-07 03:57:53 +00001979 QualType T = Context.getObjCObjectPointerType(SuperType);
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001980
Douglas Gregore83b9562015-07-07 03:57:53 +00001981 return HandleExprPropertyRefExpr(T->castAs<ObjCObjectPointerType>(),
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001982 /*BaseExpr*/nullptr,
1983 SourceLocation()/*OpLoc*/,
1984 &propertyName,
1985 propertyNameLoc,
1986 receiverNameLoc, T, true);
Fariborz Jahanian05e2aaa2013-03-11 22:26:33 +00001987 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001988
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001989 // Otherwise, if this is a class method, try dispatching to our
1990 // superclass.
Douglas Gregore83b9562015-07-07 03:57:53 +00001991 IFace = CurMethod->getClassInterface()->getSuperClass();
Chris Lattnera36ec422010-04-11 08:28:14 +00001992 }
Chris Lattnera36ec422010-04-11 08:28:14 +00001993 }
John McCall5f2d5562011-02-03 09:00:02 +00001994 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001995
1996 if (!IFace) {
Alp Tokerec543272013-12-24 09:48:30 +00001997 Diag(receiverNameLoc, diag::err_expected_either) << tok::identifier
1998 << tok::l_paren;
Chris Lattnera36ec422010-04-11 08:28:14 +00001999 return ExprError();
2000 }
2001 }
2002
Saleem Abdulrasoolb3a2d042017-02-20 23:45:49 +00002003 Selector GetterSel;
2004 Selector SetterSel;
2005 if (auto PD = IFace->FindPropertyDeclaration(
2006 &propertyName, ObjCPropertyQueryKind::OBJC_PR_query_class)) {
2007 GetterSel = PD->getGetterName();
2008 SetterSel = PD->getSetterName();
2009 } else {
2010 GetterSel = PP.getSelectorTable().getNullarySelector(&propertyName);
2011 SetterSel = SelectorTable::constructSetterSelector(
2012 PP.getIdentifierTable(), PP.getSelectorTable(), &propertyName);
2013 }
2014
Chris Lattnera36ec422010-04-11 08:28:14 +00002015 // Search for a declared property first.
Saleem Abdulrasoolb3a2d042017-02-20 23:45:49 +00002016 ObjCMethodDecl *Getter = IFace->lookupClassMethod(GetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002017
2018 // If this reference is in an @implementation, check for 'private' methods.
2019 if (!Getter)
Saleem Abdulrasoolb3a2d042017-02-20 23:45:49 +00002020 Getter = IFace->lookupPrivateClassMethod(GetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002021
2022 if (Getter) {
2023 // FIXME: refactor/share with ActOnMemberReference().
2024 // Check if we can reference this property.
2025 if (DiagnoseUseOfDecl(Getter, propertyNameLoc))
2026 return ExprError();
2027 }
Mike Stump11289f42009-09-09 15:08:12 +00002028
Steve Naroff9527bbf2009-03-09 21:12:44 +00002029 // Look for the matching setter, in case it is needed.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002030 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002031 if (!Setter) {
2032 // If this reference is in an @implementation, also check for 'private'
2033 // methods.
Fariborz Jahanian29cdbc62014-04-21 20:22:17 +00002034 Setter = IFace->lookupPrivateClassMethod(SetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002035 }
2036 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002037 if (!Setter)
2038 Setter = IFace->getCategoryClassMethod(SetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002039
2040 if (Setter && DiagnoseUseOfDecl(Setter, propertyNameLoc))
2041 return ExprError();
2042
2043 if (Getter || Setter) {
Douglas Gregore83b9562015-07-07 03:57:53 +00002044 if (!SuperType.isNull())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002045 return new (Context)
2046 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2047 OK_ObjCProperty, propertyNameLoc, receiverNameLoc,
Douglas Gregore83b9562015-07-07 03:57:53 +00002048 SuperType);
Douglas Gregor33823722011-06-11 01:09:30 +00002049
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002050 return new (Context) ObjCPropertyRefExpr(
2051 Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty,
2052 propertyNameLoc, receiverNameLoc, IFace);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002053 }
2054 return ExprError(Diag(propertyNameLoc, diag::err_property_not_found)
2055 << &propertyName << Context.getObjCInterfaceType(IFace));
2056}
2057
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002058namespace {
2059
2060class ObjCInterfaceOrSuperCCC : public CorrectionCandidateCallback {
2061 public:
2062 ObjCInterfaceOrSuperCCC(ObjCMethodDecl *Method) {
2063 // Determine whether "super" is acceptable in the current context.
2064 if (Method && Method->getClassInterface())
2065 WantObjCSuper = Method->getClassInterface()->getSuperClass();
2066 }
2067
Craig Toppere14c0f82014-03-12 04:55:44 +00002068 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002069 return candidate.getCorrectionDeclAs<ObjCInterfaceDecl>() ||
2070 candidate.isKeyword("super");
2071 }
2072};
2073
Eugene Zelenko1ced5092016-02-12 22:53:10 +00002074} // end anonymous namespace
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002075
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002076Sema::ObjCMessageKind Sema::getObjCMessageKind(Scope *S,
Douglas Gregore5798dc2010-04-21 20:38:13 +00002077 IdentifierInfo *Name,
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002078 SourceLocation NameLoc,
2079 bool IsSuper,
Douglas Gregore5798dc2010-04-21 20:38:13 +00002080 bool HasTrailingDot,
John McCallba7bf592010-08-24 05:47:05 +00002081 ParsedType &ReceiverType) {
David Blaikieefdccaa2016-01-15 23:43:34 +00002082 ReceiverType = nullptr;
Douglas Gregore5798dc2010-04-21 20:38:13 +00002083
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002084 // If the identifier is "super" and there is no trailing dot, we're
Douglas Gregor57756ea2010-10-14 22:11:03 +00002085 // messaging super. If the identifier is "super" and there is a
2086 // trailing dot, it's an instance message.
2087 if (IsSuper && S->isInObjcMethodScope())
2088 return HasTrailingDot? ObjCInstanceMessage : ObjCSuperMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002089
2090 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
2091 LookupName(Result, S);
2092
2093 switch (Result.getResultKind()) {
2094 case LookupResult::NotFound:
Douglas Gregorca7136b2010-04-19 20:09:36 +00002095 // Normal name lookup didn't find anything. If we're in an
2096 // Objective-C method, look for ivars. If we find one, we're done!
Douglas Gregor57756ea2010-10-14 22:11:03 +00002097 // FIXME: This is a hack. Ivar lookup should be part of normal
2098 // lookup.
Douglas Gregorca7136b2010-04-19 20:09:36 +00002099 if (ObjCMethodDecl *Method = getCurMethodDecl()) {
Argyrios Kyrtzidis3a8de5b2011-11-09 00:22:48 +00002100 if (!Method->getClassInterface()) {
2101 // Fall back: let the parser try to parse it as an instance message.
2102 return ObjCInstanceMessage;
2103 }
2104
Douglas Gregorca7136b2010-04-19 20:09:36 +00002105 ObjCInterfaceDecl *ClassDeclared;
2106 if (Method->getClassInterface()->lookupInstanceVariable(Name,
2107 ClassDeclared))
2108 return ObjCInstanceMessage;
2109 }
Douglas Gregor57756ea2010-10-14 22:11:03 +00002110
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002111 // Break out; we'll perform typo correction below.
2112 break;
2113
2114 case LookupResult::NotFoundInCurrentInstantiation:
2115 case LookupResult::FoundOverloaded:
2116 case LookupResult::FoundUnresolvedValue:
2117 case LookupResult::Ambiguous:
2118 Result.suppressDiagnostics();
2119 return ObjCInstanceMessage;
2120
2121 case LookupResult::Found: {
Fariborz Jahanian14889fc2011-02-08 00:23:07 +00002122 // If the identifier is a class or not, and there is a trailing dot,
2123 // it's an instance message.
2124 if (HasTrailingDot)
2125 return ObjCInstanceMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002126 // We found something. If it's a type, then we have a class
2127 // message. Otherwise, it's an instance message.
2128 NamedDecl *ND = Result.getFoundDecl();
Douglas Gregore5798dc2010-04-21 20:38:13 +00002129 QualType T;
2130 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(ND))
2131 T = Context.getObjCInterfaceType(Class);
Fariborz Jahanian83f1be12013-04-04 18:45:52 +00002132 else if (TypeDecl *Type = dyn_cast<TypeDecl>(ND)) {
Douglas Gregore5798dc2010-04-21 20:38:13 +00002133 T = Context.getTypeDeclType(Type);
Fariborz Jahanian83f1be12013-04-04 18:45:52 +00002134 DiagnoseUseOfDecl(Type, NameLoc);
2135 }
2136 else
Douglas Gregore5798dc2010-04-21 20:38:13 +00002137 return ObjCInstanceMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002138
Douglas Gregore5798dc2010-04-21 20:38:13 +00002139 // We have a class message, and T is the type we're
2140 // messaging. Build source-location information for it.
2141 TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc);
John McCallba7bf592010-08-24 05:47:05 +00002142 ReceiverType = CreateParsedType(T, TSInfo);
Douglas Gregore5798dc2010-04-21 20:38:13 +00002143 return ObjCClassMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002144 }
2145 }
2146
Kaelyn Takata89c881b2014-10-27 18:07:29 +00002147 if (TypoCorrection Corrected = CorrectTypo(
2148 Result.getLookupNameInfo(), Result.getLookupKind(), S, nullptr,
2149 llvm::make_unique<ObjCInterfaceOrSuperCCC>(getCurMethodDecl()),
2150 CTK_ErrorRecovery, nullptr, false, nullptr, false)) {
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002151 if (Corrected.isKeyword()) {
2152 // If we've found the keyword "super" (the only keyword that would be
2153 // returned by CorrectTypo), this is a send to super.
Richard Smithf9b15102013-08-17 00:46:16 +00002154 diagnoseTypo(Corrected,
2155 PDiag(diag::err_unknown_receiver_suggest) << Name);
Douglas Gregor280e1ee2010-04-14 20:04:41 +00002156 return ObjCSuperMessage;
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002157 } else if (ObjCInterfaceDecl *Class =
Richard Smithf9b15102013-08-17 00:46:16 +00002158 Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) {
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002159 // If we found a declaration, correct when it refers to an Objective-C
2160 // class.
Richard Smithf9b15102013-08-17 00:46:16 +00002161 diagnoseTypo(Corrected,
2162 PDiag(diag::err_unknown_receiver_suggest) << Name);
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002163 QualType T = Context.getObjCInterfaceType(Class);
2164 TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc);
2165 ReceiverType = CreateParsedType(T, TSInfo);
2166 return ObjCClassMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002167 }
2168 }
Richard Smithf9b15102013-08-17 00:46:16 +00002169
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002170 // Fall back: let the parser try to parse it as an instance message.
2171 return ObjCInstanceMessage;
2172}
Steve Naroff9527bbf2009-03-09 21:12:44 +00002173
John McCalldadc5752010-08-24 06:29:42 +00002174ExprResult Sema::ActOnSuperMessage(Scope *S,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002175 SourceLocation SuperLoc,
2176 Selector Sel,
2177 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002178 ArrayRef<SourceLocation> SelectorLocs,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002179 SourceLocation RBracLoc,
2180 MultiExprArg Args) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002181 // Determine whether we are inside a method or not.
Eli Friedman24af8502012-02-03 22:47:37 +00002182 ObjCMethodDecl *Method = tryCaptureObjCSelf(SuperLoc);
Douglas Gregor4fdba132010-04-21 20:01:04 +00002183 if (!Method) {
2184 Diag(SuperLoc, diag::err_invalid_receiver_to_message_super);
2185 return ExprError();
2186 }
Chris Lattnera3fc41d2008-01-04 22:32:30 +00002187
Douglas Gregor4fdba132010-04-21 20:01:04 +00002188 ObjCInterfaceDecl *Class = Method->getClassInterface();
2189 if (!Class) {
Richard Smithf8812672016-12-02 22:38:31 +00002190 Diag(SuperLoc, diag::err_no_super_class_message)
Douglas Gregor4fdba132010-04-21 20:01:04 +00002191 << Method->getDeclName();
2192 return ExprError();
2193 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002194
Douglas Gregore83b9562015-07-07 03:57:53 +00002195 QualType SuperTy(Class->getSuperClassType(), 0);
2196 if (SuperTy.isNull()) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002197 // The current class does not have a superclass.
Richard Smithf8812672016-12-02 22:38:31 +00002198 Diag(SuperLoc, diag::err_root_class_cannot_use_super)
Ted Kremenek499897b2011-01-23 17:21:34 +00002199 << Class->getIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002200 return ExprError();
Chris Lattnerc2ebb032010-04-12 05:38:43 +00002201 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002202
Douglas Gregor4fdba132010-04-21 20:01:04 +00002203 // We are in a method whose class has a superclass, so 'super'
2204 // is acting as a keyword.
Jordan Rose2afd6612012-10-19 16:05:26 +00002205 if (Method->getSelector() == Sel)
2206 getCurFunction()->ObjCShouldCallSuper = false;
Nico Weber715abaf2011-08-22 17:25:57 +00002207
Jordan Rose2afd6612012-10-19 16:05:26 +00002208 if (Method->isInstanceMethod()) {
Douglas Gregor4fdba132010-04-21 20:01:04 +00002209 // Since we are in an instance method, this is an instance
2210 // message to the superclass instance.
Douglas Gregor4fdba132010-04-21 20:01:04 +00002211 SuperTy = Context.getObjCObjectPointerType(SuperTy);
Craig Topperc3ec1492014-05-26 06:22:03 +00002212 return BuildInstanceMessage(nullptr, SuperTy, SuperLoc,
2213 Sel, /*Method=*/nullptr,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002214 LBracLoc, SelectorLocs, RBracLoc, Args);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002215 }
Douglas Gregor4fdba132010-04-21 20:01:04 +00002216
2217 // Since we are in a class method, this is a class message to
2218 // the superclass.
Craig Topperc3ec1492014-05-26 06:22:03 +00002219 return BuildClassMessage(/*ReceiverTypeInfo=*/nullptr,
Douglas Gregore83b9562015-07-07 03:57:53 +00002220 SuperTy,
Craig Topperc3ec1492014-05-26 06:22:03 +00002221 SuperLoc, Sel, /*Method=*/nullptr,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002222 LBracLoc, SelectorLocs, RBracLoc, Args);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002223}
2224
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002225ExprResult Sema::BuildClassMessageImplicit(QualType ReceiverType,
2226 bool isSuperReceiver,
2227 SourceLocation Loc,
2228 Selector Sel,
2229 ObjCMethodDecl *Method,
2230 MultiExprArg Args) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002231 TypeSourceInfo *receiverTypeInfo = nullptr;
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002232 if (!ReceiverType.isNull())
2233 receiverTypeInfo = Context.getTrivialTypeSourceInfo(ReceiverType);
2234
2235 return BuildClassMessage(receiverTypeInfo, ReceiverType,
2236 /*SuperLoc=*/isSuperReceiver ? Loc : SourceLocation(),
2237 Sel, Method, Loc, Loc, Loc, Args,
2238 /*isImplicit=*/true);
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002239}
2240
Ted Kremeneke65b0862012-03-06 20:05:56 +00002241static void applyCocoaAPICheck(Sema &S, const ObjCMessageExpr *Msg,
2242 unsigned DiagID,
2243 bool (*refactor)(const ObjCMessageExpr *,
2244 const NSAPI &, edit::Commit &)) {
2245 SourceLocation MsgLoc = Msg->getExprLoc();
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002246 if (S.Diags.isIgnored(DiagID, MsgLoc))
Ted Kremeneke65b0862012-03-06 20:05:56 +00002247 return;
2248
2249 SourceManager &SM = S.SourceMgr;
2250 edit::Commit ECommit(SM, S.LangOpts);
2251 if (refactor(Msg,*S.NSAPIObj, ECommit)) {
2252 DiagnosticBuilder Builder = S.Diag(MsgLoc, DiagID)
2253 << Msg->getSelector() << Msg->getSourceRange();
2254 // FIXME: Don't emit diagnostic at all if fixits are non-commitable.
2255 if (!ECommit.isCommitable())
2256 return;
2257 for (edit::Commit::edit_iterator
2258 I = ECommit.edit_begin(), E = ECommit.edit_end(); I != E; ++I) {
2259 const edit::Commit::Edit &Edit = *I;
2260 switch (Edit.Kind) {
2261 case edit::Commit::Act_Insert:
2262 Builder.AddFixItHint(FixItHint::CreateInsertion(Edit.OrigLoc,
2263 Edit.Text,
2264 Edit.BeforePrev));
2265 break;
2266 case edit::Commit::Act_InsertFromRange:
2267 Builder.AddFixItHint(
2268 FixItHint::CreateInsertionFromRange(Edit.OrigLoc,
2269 Edit.getInsertFromRange(SM),
2270 Edit.BeforePrev));
2271 break;
2272 case edit::Commit::Act_Remove:
2273 Builder.AddFixItHint(FixItHint::CreateRemoval(Edit.getFileRange(SM)));
2274 break;
2275 }
2276 }
2277 }
2278}
2279
2280static void checkCocoaAPI(Sema &S, const ObjCMessageExpr *Msg) {
2281 applyCocoaAPICheck(S, Msg, diag::warn_objc_redundant_literal_use,
2282 edit::rewriteObjCRedundantCallWithLiteral);
2283}
2284
Alex Lorenz0e23c612017-03-06 15:58:34 +00002285static void checkFoundationAPI(Sema &S, SourceLocation Loc,
2286 const ObjCMethodDecl *Method,
2287 ArrayRef<Expr *> Args, QualType ReceiverType,
2288 bool IsClassObjectCall) {
2289 // Check if this is a performSelector method that uses a selector that returns
2290 // a record or a vector type.
Alex Lorenz5ffe4e12017-03-23 10:46:05 +00002291 if (Method->getSelector().getMethodFamily() != OMF_performSelector ||
2292 Args.empty())
Alex Lorenz0e23c612017-03-06 15:58:34 +00002293 return;
2294 const auto *SE = dyn_cast<ObjCSelectorExpr>(Args[0]->IgnoreParens());
2295 if (!SE)
2296 return;
2297 ObjCMethodDecl *ImpliedMethod;
2298 if (!IsClassObjectCall) {
2299 const auto *OPT = ReceiverType->getAs<ObjCObjectPointerType>();
2300 if (!OPT || !OPT->getInterfaceDecl())
2301 return;
2302 ImpliedMethod =
2303 OPT->getInterfaceDecl()->lookupInstanceMethod(SE->getSelector());
2304 if (!ImpliedMethod)
2305 ImpliedMethod =
2306 OPT->getInterfaceDecl()->lookupPrivateMethod(SE->getSelector());
2307 } else {
2308 const auto *IT = ReceiverType->getAs<ObjCInterfaceType>();
2309 if (!IT)
2310 return;
2311 ImpliedMethod = IT->getDecl()->lookupClassMethod(SE->getSelector());
2312 if (!ImpliedMethod)
2313 ImpliedMethod =
2314 IT->getDecl()->lookupPrivateClassMethod(SE->getSelector());
2315 }
2316 if (!ImpliedMethod)
2317 return;
2318 QualType Ret = ImpliedMethod->getReturnType();
2319 if (Ret->isRecordType() || Ret->isVectorType() || Ret->isExtVectorType()) {
2320 QualType Ret = ImpliedMethod->getReturnType();
2321 S.Diag(Loc, diag::warn_objc_unsafe_perform_selector)
2322 << Method->getSelector()
2323 << (!Ret->isRecordType()
2324 ? /*Vector*/ 2
2325 : Ret->isUnionType() ? /*Union*/ 1 : /*Struct*/ 0);
2326 S.Diag(ImpliedMethod->getLocStart(),
2327 diag::note_objc_unsafe_perform_selector_method_declared_here)
2328 << ImpliedMethod->getSelector() << Ret;
2329 }
2330}
2331
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00002332/// Diagnose use of %s directive in an NSString which is being passed
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002333/// as formatting string to formatting method.
2334static void
2335DiagnoseCStringFormatDirectiveInObjCAPI(Sema &S,
2336 ObjCMethodDecl *Method,
2337 Selector Sel,
2338 Expr **Args, unsigned NumArgs) {
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00002339 unsigned Idx = 0;
2340 bool Format = false;
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002341 ObjCStringFormatFamily SFFamily = Sel.getStringFormatFamily();
2342 if (SFFamily == ObjCStringFormatFamily::SFF_NSString) {
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00002343 Idx = 0;
2344 Format = true;
2345 }
2346 else if (Method) {
2347 for (const auto *I : Method->specific_attrs<FormatAttr>()) {
2348 if (S.GetFormatNSStringIdx(I, Idx)) {
2349 Format = true;
2350 break;
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002351 }
2352 }
2353 }
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00002354 if (!Format || NumArgs <= Idx)
2355 return;
2356
2357 Expr *FormatExpr = Args[Idx];
2358 if (ObjCStringLiteral *OSL =
2359 dyn_cast<ObjCStringLiteral>(FormatExpr->IgnoreParenImpCasts())) {
2360 StringLiteral *FormatString = OSL->getString();
2361 if (S.FormatStringHasSArg(FormatString)) {
2362 S.Diag(FormatExpr->getExprLoc(), diag::warn_objc_cdirective_format_string)
2363 << "%s" << 0 << 0;
2364 if (Method)
2365 S.Diag(Method->getLocation(), diag::note_method_declared_at)
2366 << Method->getDeclName();
2367 }
2368 }
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002369}
2370
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00002371/// Build an Objective-C class message expression.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002372///
2373/// This routine takes care of both normal class messages and
2374/// class messages to the superclass.
2375///
2376/// \param ReceiverTypeInfo Type source information that describes the
2377/// receiver of this message. This may be NULL, in which case we are
2378/// sending to the superclass and \p SuperLoc must be a valid source
2379/// location.
2380
2381/// \param ReceiverType The type of the object receiving the
2382/// message. When \p ReceiverTypeInfo is non-NULL, this is the same
2383/// type as that refers to. For a superclass send, this is the type of
2384/// the superclass.
2385///
2386/// \param SuperLoc The location of the "super" keyword in a
2387/// superclass message.
2388///
2389/// \param Sel The selector to which the message is being sent.
2390///
Douglas Gregorb5186b12010-04-22 17:01:48 +00002391/// \param Method The method that this class message is invoking, if
2392/// already known.
2393///
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002394/// \param LBracLoc The location of the opening square bracket ']'.
2395///
James Dennettffad8b72012-06-22 08:10:18 +00002396/// \param RBracLoc The location of the closing square bracket ']'.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002397///
James Dennettffad8b72012-06-22 08:10:18 +00002398/// \param ArgsIn The message arguments.
John McCalldadc5752010-08-24 06:29:42 +00002399ExprResult Sema::BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002400 QualType ReceiverType,
2401 SourceLocation SuperLoc,
2402 Selector Sel,
2403 ObjCMethodDecl *Method,
2404 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002405 ArrayRef<SourceLocation> SelectorLocs,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002406 SourceLocation RBracLoc,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002407 MultiExprArg ArgsIn,
2408 bool isImplicit) {
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002409 SourceLocation Loc = SuperLoc.isValid()? SuperLoc
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00002410 : ReceiverTypeInfo->getTypeLoc().getSourceRange().getBegin();
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002411 if (LBracLoc.isInvalid()) {
2412 Diag(Loc, diag::err_missing_open_square_message_send)
2413 << FixItHint::CreateInsertion(Loc, "[");
2414 LBracLoc = Loc;
2415 }
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002416 ArrayRef<SourceLocation> SelectorSlotLocs;
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002417 if (!SelectorLocs.empty() && SelectorLocs.front().isValid())
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002418 SelectorSlotLocs = SelectorLocs;
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002419 else
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002420 SelectorSlotLocs = Loc;
2421 SourceLocation SelLoc = SelectorSlotLocs.front();
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002422
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002423 if (ReceiverType->isDependentType()) {
2424 // If the receiver type is dependent, we can't type-check anything
2425 // at this point. Build a dependent expression.
2426 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002427 Expr **Args = ArgsIn.data();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002428 assert(SuperLoc.isInvalid() && "Message to super with dependent type");
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002429 return ObjCMessageExpr::Create(
2430 Context, ReceiverType, VK_RValue, LBracLoc, ReceiverTypeInfo, Sel,
2431 SelectorLocs, /*Method=*/nullptr, makeArrayRef(Args, NumArgs), RBracLoc,
2432 isImplicit);
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002433 }
Chris Lattnerc2ebb032010-04-12 05:38:43 +00002434
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002435 // Find the class to which we are sending this message.
Craig Topperc3ec1492014-05-26 06:22:03 +00002436 ObjCInterfaceDecl *Class = nullptr;
John McCall8b07ec22010-05-15 11:32:37 +00002437 const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>();
2438 if (!ClassType || !(Class = ClassType->getInterface())) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002439 Diag(Loc, diag::err_invalid_receiver_class_message)
2440 << ReceiverType;
2441 return ExprError();
Steve Naroffe2177fb2008-07-25 19:39:00 +00002442 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002443 assert(Class && "We don't know which class we're messaging?");
Fariborz Jahanianc27cd1b2011-10-15 19:18:36 +00002444 // objc++ diagnoses during typename annotation.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002445 if (!getLangOpts().CPlusPlus)
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002446 (void)DiagnoseUseOfDecl(Class, SelectorSlotLocs);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002447 // Find the method we are messaging.
Douglas Gregorb5186b12010-04-22 17:01:48 +00002448 if (!Method) {
Douglas Gregor4123a862011-11-14 22:10:01 +00002449 SourceRange TypeRange
2450 = SuperLoc.isValid()? SourceRange(SuperLoc)
2451 : ReceiverTypeInfo->getTypeLoc().getSourceRange();
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002452 if (RequireCompleteType(Loc, Context.getObjCInterfaceType(Class),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002453 (getLangOpts().ObjCAutoRefCount
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002454 ? diag::err_arc_receiver_forward_class
2455 : diag::warn_receiver_forward_class),
2456 TypeRange)) {
Douglas Gregorb5186b12010-04-22 17:01:48 +00002457 // A forward class used in messaging is treated as a 'Class'
Douglas Gregorb5186b12010-04-22 17:01:48 +00002458 Method = LookupFactoryMethodInGlobalPool(Sel,
2459 SourceRange(LBracLoc, RBracLoc));
David Blaikiebbafb8a2012-03-11 07:00:24 +00002460 if (Method && !getLangOpts().ObjCAutoRefCount)
Douglas Gregorb5186b12010-04-22 17:01:48 +00002461 Diag(Method->getLocation(), diag::note_method_sent_forward_class)
2462 << Method->getDeclName();
2463 }
2464 if (!Method)
2465 Method = Class->lookupClassMethod(Sel);
2466
2467 // If we have an implementation in scope, check "private" methods.
2468 if (!Method)
Anna Zaksc77a3b12012-07-27 19:07:44 +00002469 Method = Class->lookupPrivateClassMethod(Sel);
Douglas Gregorb5186b12010-04-22 17:01:48 +00002470
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002471 if (Method && DiagnoseUseOfDecl(Method, SelectorSlotLocs))
Douglas Gregorb5186b12010-04-22 17:01:48 +00002472 return ExprError();
Fariborz Jahanian1bd844d2009-05-08 23:02:36 +00002473 }
Mike Stump11289f42009-09-09 15:08:12 +00002474
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002475 // Check the argument types and determine the result type.
2476 QualType ReturnType;
John McCall7decc9e2010-11-18 06:31:45 +00002477 ExprValueKind VK = VK_RValue;
2478
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002479 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002480 Expr **Args = ArgsIn.data();
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00002481 if (CheckMessageArgumentTypes(ReceiverType, MultiExprArg(Args, NumArgs),
2482 Sel, SelectorLocs,
Fariborz Jahanian6ce25c02012-08-31 17:03:18 +00002483 Method, true,
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00002484 SuperLoc.isValid(), LBracLoc, RBracLoc,
2485 SourceRange(),
Douglas Gregor33823722011-06-11 01:09:30 +00002486 ReturnType, VK))
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002487 return ExprError();
Ted Kremeneka3a37ae2008-06-24 15:50:53 +00002488
Alp Toker314cc812014-01-25 16:55:45 +00002489 if (Method && !Method->getReturnType()->isVoidType() &&
2490 RequireCompleteType(LBracLoc, Method->getReturnType(),
Douglas Gregoraec93c62011-01-11 03:23:19 +00002491 diag::err_illegal_message_expr_incomplete_type))
2492 return ExprError();
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00002493
Fariborz Jahaniane8b45502014-08-22 19:52:49 +00002494 // Warn about explicit call of +initialize on its own class. But not on 'super'.
Fariborz Jahanian42292282014-08-25 21:27:38 +00002495 if (Method && Method->getMethodFamily() == OMF_initialize) {
2496 if (!SuperLoc.isValid()) {
2497 const ObjCInterfaceDecl *ID =
2498 dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext());
2499 if (ID == Class) {
2500 Diag(Loc, diag::warn_direct_initialize_call);
2501 Diag(Method->getLocation(), diag::note_method_declared_at)
2502 << Method->getDeclName();
2503 }
2504 }
2505 else if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) {
2506 // [super initialize] is allowed only within an +initialize implementation
2507 if (CurMeth->getMethodFamily() != OMF_initialize) {
2508 Diag(Loc, diag::warn_direct_super_initialize_call);
2509 Diag(Method->getLocation(), diag::note_method_declared_at)
2510 << Method->getDeclName();
2511 Diag(CurMeth->getLocation(), diag::note_method_declared_at)
2512 << CurMeth->getDeclName();
2513 }
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00002514 }
2515 }
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002516
2517 DiagnoseCStringFormatDirectiveInObjCAPI(*this, Method, Sel, Args, NumArgs);
2518
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002519 // Construct the appropriate ObjCMessageExpr.
Ted Kremeneke65b0862012-03-06 20:05:56 +00002520 ObjCMessageExpr *Result;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002521 if (SuperLoc.isValid())
John McCall7decc9e2010-11-18 06:31:45 +00002522 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Douglas Gregoraae38d62010-05-22 05:17:18 +00002523 SuperLoc, /*IsInstanceSuper=*/false,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002524 ReceiverType, Sel, SelectorLocs,
Argyrios Kyrtzidis59ad1e32011-10-03 06:36:45 +00002525 Method, makeArrayRef(Args, NumArgs),
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002526 RBracLoc, isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002527 else {
John McCall7decc9e2010-11-18 06:31:45 +00002528 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002529 ReceiverTypeInfo, Sel, SelectorLocs,
Argyrios Kyrtzidis59ad1e32011-10-03 06:36:45 +00002530 Method, makeArrayRef(Args, NumArgs),
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002531 RBracLoc, isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002532 if (!isImplicit)
2533 checkCocoaAPI(*this, Result);
2534 }
Alex Lorenz0e23c612017-03-06 15:58:34 +00002535 if (Method)
2536 checkFoundationAPI(*this, SelLoc, Method, makeArrayRef(Args, NumArgs),
2537 ReceiverType, /*IsClassObjectCall=*/true);
Douglas Gregoraae38d62010-05-22 05:17:18 +00002538 return MaybeBindToTemporary(Result);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00002539}
2540
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002541// ActOnClassMessage - used for both unary and keyword messages.
Chris Lattnera3fc41d2008-01-04 22:32:30 +00002542// ArgExprs is optional - if it is present, the number of expressions
2543// is obtained from Sel.getNumArgs().
John McCalldadc5752010-08-24 06:29:42 +00002544ExprResult Sema::ActOnClassMessage(Scope *S,
Douglas Gregor3e972002010-09-15 23:19:31 +00002545 ParsedType Receiver,
2546 Selector Sel,
2547 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002548 ArrayRef<SourceLocation> SelectorLocs,
Douglas Gregor3e972002010-09-15 23:19:31 +00002549 SourceLocation RBracLoc,
2550 MultiExprArg Args) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002551 TypeSourceInfo *ReceiverTypeInfo;
2552 QualType ReceiverType = GetTypeFromParser(Receiver, &ReceiverTypeInfo);
2553 if (ReceiverType.isNull())
2554 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002555
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002556 if (!ReceiverTypeInfo)
2557 ReceiverTypeInfo = Context.getTrivialTypeSourceInfo(ReceiverType, LBracLoc);
2558
2559 return BuildClassMessage(ReceiverTypeInfo, ReceiverType,
Craig Topperc3ec1492014-05-26 06:22:03 +00002560 /*SuperLoc=*/SourceLocation(), Sel,
2561 /*Method=*/nullptr, LBracLoc, SelectorLocs, RBracLoc,
2562 Args);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002563}
2564
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002565ExprResult Sema::BuildInstanceMessageImplicit(Expr *Receiver,
2566 QualType ReceiverType,
2567 SourceLocation Loc,
2568 Selector Sel,
2569 ObjCMethodDecl *Method,
2570 MultiExprArg Args) {
2571 return BuildInstanceMessage(Receiver, ReceiverType,
2572 /*SuperLoc=*/!Receiver ? Loc : SourceLocation(),
2573 Sel, Method, Loc, Loc, Loc, Args,
2574 /*isImplicit=*/true);
2575}
2576
Alex Lorenz5e895cf2017-03-15 17:16:41 +00002577static bool isMethodDeclaredInRootProtocol(Sema &S, const ObjCMethodDecl *M) {
2578 if (!S.NSAPIObj)
2579 return false;
2580 const auto *Protocol = dyn_cast<ObjCProtocolDecl>(M->getDeclContext());
2581 if (!Protocol)
2582 return false;
2583 const IdentifierInfo *II = S.NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
2584 if (const auto *RootClass = dyn_cast_or_null<ObjCInterfaceDecl>(
2585 S.LookupSingleName(S.TUScope, II, Protocol->getLocStart(),
2586 Sema::LookupOrdinaryName))) {
2587 for (const ObjCProtocolDecl *P : RootClass->all_referenced_protocols()) {
2588 if (P->getCanonicalDecl() == Protocol->getCanonicalDecl())
2589 return true;
2590 }
2591 }
2592 return false;
2593}
2594
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00002595/// Build an Objective-C instance message expression.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002596///
2597/// This routine takes care of both normal instance messages and
2598/// instance messages to the superclass instance.
2599///
2600/// \param Receiver The expression that computes the object that will
2601/// receive this message. This may be empty, in which case we are
2602/// sending to the superclass instance and \p SuperLoc must be a valid
2603/// source location.
2604///
2605/// \param ReceiverType The (static) type of the object receiving the
2606/// message. When a \p Receiver expression is provided, this is the
2607/// same type as that expression. For a superclass instance send, this
2608/// is a pointer to the type of the superclass.
2609///
2610/// \param SuperLoc The location of the "super" keyword in a
2611/// superclass instance message.
2612///
2613/// \param Sel The selector to which the message is being sent.
2614///
Douglas Gregorb5186b12010-04-22 17:01:48 +00002615/// \param Method The method that this instance message is invoking, if
2616/// already known.
2617///
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002618/// \param LBracLoc The location of the opening square bracket ']'.
2619///
James Dennettffad8b72012-06-22 08:10:18 +00002620/// \param RBracLoc The location of the closing square bracket ']'.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002621///
James Dennettffad8b72012-06-22 08:10:18 +00002622/// \param ArgsIn The message arguments.
John McCalldadc5752010-08-24 06:29:42 +00002623ExprResult Sema::BuildInstanceMessage(Expr *Receiver,
Argyrios Kyrtzidisd0039e52010-12-10 20:08:27 +00002624 QualType ReceiverType,
2625 SourceLocation SuperLoc,
2626 Selector Sel,
2627 ObjCMethodDecl *Method,
2628 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002629 ArrayRef<SourceLocation> SelectorLocs,
Argyrios Kyrtzidisd0039e52010-12-10 20:08:27 +00002630 SourceLocation RBracLoc,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002631 MultiExprArg ArgsIn,
2632 bool isImplicit) {
Chandler Carruth3d402842016-11-04 06:11:54 +00002633 assert((Receiver || SuperLoc.isValid()) && "If the Receiver is null, the "
2634 "SuperLoc must be valid so we can "
2635 "use it instead.");
2636
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002637 // The location of the receiver.
2638 SourceLocation Loc = SuperLoc.isValid()? SuperLoc : Receiver->getLocStart();
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002639 SourceRange RecRange =
2640 SuperLoc.isValid()? SuperLoc : Receiver->getSourceRange();
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002641 ArrayRef<SourceLocation> SelectorSlotLocs;
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002642 if (!SelectorLocs.empty() && SelectorLocs.front().isValid())
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002643 SelectorSlotLocs = SelectorLocs;
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002644 else
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002645 SelectorSlotLocs = Loc;
2646 SourceLocation SelLoc = SelectorSlotLocs.front();
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002647
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002648 if (LBracLoc.isInvalid()) {
2649 Diag(Loc, diag::err_missing_open_square_message_send)
2650 << FixItHint::CreateInsertion(Loc, "[");
2651 LBracLoc = Loc;
2652 }
2653
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002654 // If we have a receiver expression, perform appropriate promotions
2655 // and determine receiver type.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002656 if (Receiver) {
John McCall4124c492011-10-17 18:40:02 +00002657 if (Receiver->hasPlaceholderType()) {
Douglas Gregord8fb1e32011-12-01 01:37:36 +00002658 ExprResult Result;
2659 if (Receiver->getType() == Context.UnknownAnyTy)
2660 Result = forceUnknownAnyToType(Receiver, Context.getObjCIdType());
2661 else
2662 Result = CheckPlaceholderExpr(Receiver);
2663 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002664 Receiver = Result.get();
John McCall4124c492011-10-17 18:40:02 +00002665 }
2666
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002667 if (Receiver->isTypeDependent()) {
2668 // If the receiver is type-dependent, we can't type-check anything
2669 // at this point. Build a dependent expression.
2670 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002671 Expr **Args = ArgsIn.data();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002672 assert(SuperLoc.isInvalid() && "Message to super with dependent type");
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002673 return ObjCMessageExpr::Create(
2674 Context, Context.DependentTy, VK_RValue, LBracLoc, Receiver, Sel,
2675 SelectorLocs, /*Method=*/nullptr, makeArrayRef(Args, NumArgs),
2676 RBracLoc, isImplicit);
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002677 }
2678
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002679 // If necessary, apply function/array conversion to the receiver.
2680 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00002681 ExprResult Result = DefaultFunctionArrayLvalueConversion(Receiver);
2682 if (Result.isInvalid())
2683 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002684 Receiver = Result.get();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002685 ReceiverType = Receiver->getType();
John McCall80c93a02013-03-01 09:20:14 +00002686
2687 // If the receiver is an ObjC pointer, a block pointer, or an
2688 // __attribute__((NSObject)) pointer, we don't need to do any
2689 // special conversion in order to look up a receiver.
2690 if (ReceiverType->isObjCRetainableType()) {
2691 // do nothing
2692 } else if (!getLangOpts().ObjCAutoRefCount &&
2693 !Context.getObjCIdType().isNull() &&
2694 (ReceiverType->isPointerType() ||
2695 ReceiverType->isIntegerType())) {
2696 // Implicitly convert integers and pointers to 'id' but emit a warning.
2697 // But not in ARC.
2698 Diag(Loc, diag::warn_bad_receiver_type)
2699 << ReceiverType
2700 << Receiver->getSourceRange();
2701 if (ReceiverType->isPointerType()) {
2702 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002703 CK_CPointerToObjCPointerCast).get();
John McCall80c93a02013-03-01 09:20:14 +00002704 } else {
2705 // TODO: specialized warning on null receivers?
2706 bool IsNull = Receiver->isNullPointerConstant(Context,
2707 Expr::NPC_ValueDependentIsNull);
2708 CastKind Kind = IsNull ? CK_NullToPointer : CK_IntegralToPointer;
2709 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002710 Kind).get();
John McCall80c93a02013-03-01 09:20:14 +00002711 }
2712 ReceiverType = Receiver->getType();
2713 } else if (getLangOpts().CPlusPlus) {
Douglas Gregor4b60a152013-11-07 22:34:54 +00002714 // The receiver must be a complete type.
2715 if (RequireCompleteType(Loc, Receiver->getType(),
2716 diag::err_incomplete_receiver_type))
2717 return ExprError();
2718
John McCall80c93a02013-03-01 09:20:14 +00002719 ExprResult result = PerformContextuallyConvertToObjCPointer(Receiver);
2720 if (result.isUsable()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002721 Receiver = result.get();
John McCall80c93a02013-03-01 09:20:14 +00002722 ReceiverType = Receiver->getType();
2723 }
2724 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002725 }
2726
Alex Lorenzd9f12842017-08-25 16:12:17 +00002727 if (ReceiverType->isObjCIdType() && !isImplicit)
2728 Diag(Receiver->getExprLoc(), diag::warn_messaging_unqualified_id);
2729
John McCall80c93a02013-03-01 09:20:14 +00002730 // There's a somewhat weird interaction here where we assume that we
2731 // won't actually have a method unless we also don't need to do some
2732 // of the more detailed type-checking on the receiver.
2733
Douglas Gregorb5186b12010-04-22 17:01:48 +00002734 if (!Method) {
Douglas Gregorab209d82015-07-07 03:58:42 +00002735 // Handle messages to id and __kindof types (where we use the
2736 // global method pool).
Douglas Gregorab209d82015-07-07 03:58:42 +00002737 const ObjCObjectType *typeBound = nullptr;
2738 bool receiverIsIdLike = ReceiverType->isObjCIdOrObjectKindOfType(Context,
2739 typeBound);
2740 if (receiverIsIdLike || ReceiverType->isBlockPointerType() ||
Douglas Gregorb5186b12010-04-22 17:01:48 +00002741 (Receiver && Context.isObjCNSObjectType(Receiver->getType()))) {
Manman Rend2a3cd72016-04-07 19:30:20 +00002742 SmallVector<ObjCMethodDecl*, 4> Methods;
Manman Ren7ed4f982016-04-07 19:32:24 +00002743 // If we have a type bound, further filter the methods.
Manman Rend2a3cd72016-04-07 19:30:20 +00002744 CollectMultipleMethodsInGlobalPool(Sel, Methods, true/*InstanceFirst*/,
Manman Ren7ed4f982016-04-07 19:32:24 +00002745 true/*CheckTheOther*/, typeBound);
Manman Rend2a3cd72016-04-07 19:30:20 +00002746 if (!Methods.empty()) {
George Burgess IV52d07de2016-09-01 01:26:58 +00002747 // We choose the first method as the initial candidate, then try to
Manman Rend2a3cd72016-04-07 19:30:20 +00002748 // select a better one.
2749 Method = Methods[0];
2750
Fariborz Jahanian0ded4242014-08-13 21:24:14 +00002751 if (ObjCMethodDecl *BestMethod =
Manman Rend2a3cd72016-04-07 19:30:20 +00002752 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), Methods))
Fariborz Jahanian0ded4242014-08-13 21:24:14 +00002753 Method = BestMethod;
Manman Rend2a3cd72016-04-07 19:30:20 +00002754
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002755 if (!AreMultipleMethodsInGlobalPool(Sel, Method,
2756 SourceRange(LBracLoc, RBracLoc),
Manman Rend2a3cd72016-04-07 19:30:20 +00002757 receiverIsIdLike, Methods))
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002758 DiagnoseUseOfDecl(Method, SelectorSlotLocs);
Fariborz Jahanian05e77f82014-11-07 23:51:15 +00002759 }
Douglas Gregorab209d82015-07-07 03:58:42 +00002760 } else if (ReceiverType->isObjCClassOrClassKindOfType() ||
Douglas Gregorb5186b12010-04-22 17:01:48 +00002761 ReceiverType->isObjCQualifiedClassType()) {
2762 // Handle messages to Class.
Nico Weber2e0c8f72014-12-27 03:58:08 +00002763 // We allow sending a message to a qualified Class ("Class<foo>"), which
2764 // is ok as long as one of the protocols implements the selector (if not,
2765 // warn).
Douglas Gregorab209d82015-07-07 03:58:42 +00002766 if (!ReceiverType->isObjCClassOrClassKindOfType()) {
2767 const ObjCObjectPointerType *QClassTy
2768 = ReceiverType->getAsObjCQualifiedClassType();
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002769 // Search protocols for class methods.
2770 Method = LookupMethodInQualifiedType(Sel, QClassTy, false);
2771 if (!Method) {
2772 Method = LookupMethodInQualifiedType(Sel, QClassTy, true);
2773 // warn if instance method found for a Class message.
Alex Lorenz5e895cf2017-03-15 17:16:41 +00002774 if (Method && !isMethodDeclaredInRootProtocol(*this, Method)) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002775 Diag(SelLoc, diag::warn_instance_method_on_class_found)
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002776 << Method->getSelector() << Sel;
Ted Kremenek59b10db2012-02-27 22:55:11 +00002777 Diag(Method->getLocation(), diag::note_method_declared_at)
2778 << Method->getDeclName();
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002779 }
Steve Naroff3f49fee2009-03-04 15:11:40 +00002780 }
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002781 } else {
2782 if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) {
2783 if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) {
2784 // First check the public methods in the class interface.
2785 Method = ClassDecl->lookupClassMethod(Sel);
2786
2787 if (!Method)
Anna Zaksc77a3b12012-07-27 19:07:44 +00002788 Method = ClassDecl->lookupPrivateClassMethod(Sel);
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002789 }
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002790 if (Method && DiagnoseUseOfDecl(Method, SelectorSlotLocs))
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002791 return ExprError();
2792 }
2793 if (!Method) {
2794 // If not messaging 'self', look for any factory method named 'Sel'.
Douglas Gregor486b74e2011-09-27 16:10:05 +00002795 if (!Receiver || !isSelfExpr(Receiver)) {
Manman Rend2a3cd72016-04-07 19:30:20 +00002796 // If no class (factory) method was found, check if an _instance_
2797 // method of the same name exists in the root class only.
2798 SmallVector<ObjCMethodDecl*, 4> Methods;
2799 CollectMultipleMethodsInGlobalPool(Sel, Methods,
2800 false/*InstanceFirst*/,
2801 true/*CheckTheOther*/);
2802 if (!Methods.empty()) {
George Burgess IV52d07de2016-09-01 01:26:58 +00002803 // We choose the first method as the initial candidate, then try
Manman Rend2a3cd72016-04-07 19:30:20 +00002804 // to select a better one.
2805 Method = Methods[0];
2806
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00002807 // If we find an instance method, emit warning.
Manman Rend2a3cd72016-04-07 19:30:20 +00002808 if (Method->isInstanceMethod()) {
2809 if (const ObjCInterfaceDecl *ID =
2810 dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext())) {
2811 if (ID->getSuperClass())
2812 Diag(SelLoc, diag::warn_root_inst_method_not_found)
2813 << Sel << SourceRange(LBracLoc, RBracLoc);
2814 }
2815 }
2816
2817 if (ObjCMethodDecl *BestMethod =
2818 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(),
2819 Methods))
2820 Method = BestMethod;
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002821 }
Douglas Gregor9a129192010-04-21 00:45:42 +00002822 }
2823 }
2824 }
Douglas Gregor9a129192010-04-21 00:45:42 +00002825 } else {
Craig Topperc3ec1492014-05-26 06:22:03 +00002826 ObjCInterfaceDecl *ClassDecl = nullptr;
Douglas Gregorb5186b12010-04-22 17:01:48 +00002827
2828 // We allow sending a message to a qualified ID ("id<foo>"), which is ok as
2829 // long as one of the protocols implements the selector (if not, warn).
Fariborz Jahaniana245f192012-06-23 18:39:57 +00002830 // And as long as message is not deprecated/unavailable (warn if it is).
Douglas Gregorb5186b12010-04-22 17:01:48 +00002831 if (const ObjCObjectPointerType *QIdTy
2832 = ReceiverType->getAsObjCQualifiedIdType()) {
2833 // Search protocols for instance methods.
Fariborz Jahanianb296e332011-03-09 22:17:12 +00002834 Method = LookupMethodInQualifiedType(Sel, QIdTy, true);
2835 if (!Method)
2836 Method = LookupMethodInQualifiedType(Sel, QIdTy, false);
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002837 if (Method && DiagnoseUseOfDecl(Method, SelectorSlotLocs))
Fariborz Jahaniana245f192012-06-23 18:39:57 +00002838 return ExprError();
Douglas Gregorb5186b12010-04-22 17:01:48 +00002839 } else if (const ObjCObjectPointerType *OCIType
2840 = ReceiverType->getAsObjCInterfacePointerType()) {
2841 // We allow sending a message to a pointer to an interface (an object).
2842 ClassDecl = OCIType->getInterfaceDecl();
John McCall31168b02011-06-15 23:02:42 +00002843
Douglas Gregor4123a862011-11-14 22:10:01 +00002844 // Try to complete the type. Under ARC, this is a hard error from which
2845 // we don't try to recover.
Richard Smithdb0ac552015-12-18 22:40:25 +00002846 // FIXME: In the non-ARC case, this will still be a hard error if the
2847 // definition is found in a module that's not visible.
Craig Topperc3ec1492014-05-26 06:22:03 +00002848 const ObjCInterfaceDecl *forwardClass = nullptr;
Douglas Gregor4123a862011-11-14 22:10:01 +00002849 if (RequireCompleteType(Loc, OCIType->getPointeeType(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002850 getLangOpts().ObjCAutoRefCount
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002851 ? diag::err_arc_receiver_forward_instance
2852 : diag::warn_receiver_forward_instance,
2853 Receiver? Receiver->getSourceRange()
2854 : SourceRange(SuperLoc))) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002855 if (getLangOpts().ObjCAutoRefCount)
Douglas Gregor4123a862011-11-14 22:10:01 +00002856 return ExprError();
2857
2858 forwardClass = OCIType->getInterfaceDecl();
Fariborz Jahanianc934de62012-02-03 01:02:44 +00002859 Diag(Receiver ? Receiver->getLocStart()
2860 : SuperLoc, diag::note_receiver_is_id);
Craig Topperc3ec1492014-05-26 06:22:03 +00002861 Method = nullptr;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00002862 } else {
2863 Method = ClassDecl->lookupInstanceMethod(Sel);
John McCall31168b02011-06-15 23:02:42 +00002864 }
Douglas Gregorb5186b12010-04-22 17:01:48 +00002865
Fariborz Jahanianb296e332011-03-09 22:17:12 +00002866 if (!Method)
Douglas Gregorb5186b12010-04-22 17:01:48 +00002867 // Search protocol qualifiers.
Fariborz Jahanianb296e332011-03-09 22:17:12 +00002868 Method = LookupMethodInQualifiedType(Sel, OCIType, true);
2869
Douglas Gregorb5186b12010-04-22 17:01:48 +00002870 if (!Method) {
2871 // If we have implementations in scope, check "private" methods.
Anna Zaksc77a3b12012-07-27 19:07:44 +00002872 Method = ClassDecl->lookupPrivateMethod(Sel);
Douglas Gregorb5186b12010-04-22 17:01:48 +00002873
David Blaikiebbafb8a2012-03-11 07:00:24 +00002874 if (!Method && getLangOpts().ObjCAutoRefCount) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002875 Diag(SelLoc, diag::err_arc_may_not_respond)
2876 << OCIType->getPointeeType() << Sel << RecRange
Fariborz Jahanian32c13502012-11-28 01:27:44 +00002877 << SourceRange(SelectorLocs.front(), SelectorLocs.back());
John McCall31168b02011-06-15 23:02:42 +00002878 return ExprError();
2879 }
2880
Douglas Gregor486b74e2011-09-27 16:10:05 +00002881 if (!Method && (!Receiver || !isSelfExpr(Receiver))) {
Douglas Gregorb5186b12010-04-22 17:01:48 +00002882 // If we still haven't found a method, look in the global pool. This
2883 // behavior isn't very desirable, however we need it for GCC
2884 // compatibility. FIXME: should we deviate??
2885 if (OCIType->qual_empty()) {
Manman Rend2a3cd72016-04-07 19:30:20 +00002886 SmallVector<ObjCMethodDecl*, 4> Methods;
2887 CollectMultipleMethodsInGlobalPool(Sel, Methods,
2888 true/*InstanceFirst*/,
2889 false/*CheckTheOther*/);
2890 if (!Methods.empty()) {
George Burgess IV52d07de2016-09-01 01:26:58 +00002891 // We choose the first method as the initial candidate, then try
Manman Rend2a3cd72016-04-07 19:30:20 +00002892 // to select a better one.
2893 Method = Methods[0];
2894
2895 if (ObjCMethodDecl *BestMethod =
2896 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(),
2897 Methods))
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002898 Method = BestMethod;
Manman Rend2a3cd72016-04-07 19:30:20 +00002899
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002900 AreMultipleMethodsInGlobalPool(Sel, Method,
2901 SourceRange(LBracLoc, RBracLoc),
Manman Rend2a3cd72016-04-07 19:30:20 +00002902 true/*receiverIdOrClass*/,
2903 Methods);
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002904 }
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00002905 if (Method && !forwardClass)
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002906 Diag(SelLoc, diag::warn_maynot_respond)
2907 << OCIType->getInterfaceDecl()->getIdentifier()
2908 << Sel << RecRange;
Douglas Gregorb5186b12010-04-22 17:01:48 +00002909 }
2910 }
2911 }
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00002912 if (Method && DiagnoseUseOfDecl(Method, SelectorSlotLocs, forwardClass))
Douglas Gregorb5186b12010-04-22 17:01:48 +00002913 return ExprError();
John McCallfec112d2011-09-09 06:11:02 +00002914 } else {
John McCall80c93a02013-03-01 09:20:14 +00002915 // Reject other random receiver types (e.g. structs).
2916 Diag(Loc, diag::err_bad_receiver_type)
2917 << ReceiverType << Receiver->getSourceRange();
2918 return ExprError();
Douglas Gregorb5186b12010-04-22 17:01:48 +00002919 }
Douglas Gregor9a129192010-04-21 00:45:42 +00002920 }
Chris Lattner6b946cc2008-07-21 05:57:44 +00002921 }
Mike Stump11289f42009-09-09 15:08:12 +00002922
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002923 FunctionScopeInfo *DIFunctionScopeInfo =
2924 (Method && Method->getMethodFamily() == OMF_init)
Craig Topperc3ec1492014-05-26 06:22:03 +00002925 ? getEnclosingFunction() : nullptr;
2926
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002927 if (DIFunctionScopeInfo &&
2928 DIFunctionScopeInfo->ObjCIsDesignatedInit &&
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002929 (SuperLoc.isValid() || isSelfExpr(Receiver))) {
2930 bool isDesignatedInitChain = false;
2931 if (SuperLoc.isValid()) {
2932 if (const ObjCObjectPointerType *
2933 OCIType = ReceiverType->getAsObjCInterfacePointerType()) {
2934 if (const ObjCInterfaceDecl *ID = OCIType->getInterfaceDecl()) {
Argyrios Kyrtzidisd664a342013-12-13 03:48:17 +00002935 // Either we know this is a designated initializer or we
2936 // conservatively assume it because we don't know for sure.
2937 if (!ID->declaresOrInheritsDesignatedInitializers() ||
2938 ID->isDesignatedInitializer(Sel)) {
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002939 isDesignatedInitChain = true;
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002940 DIFunctionScopeInfo->ObjCWarnForNoDesignatedInitChain = false;
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002941 }
2942 }
Argyrios Kyrtzidis22bfa2c2013-12-03 21:11:36 +00002943 }
2944 }
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002945 if (!isDesignatedInitChain) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002946 const ObjCMethodDecl *InitMethod = nullptr;
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002947 bool isDesignated =
2948 getCurMethodDecl()->isDesignatedInitializerForTheInterface(&InitMethod);
2949 assert(isDesignated && InitMethod);
2950 (void)isDesignated;
2951 Diag(SelLoc, SuperLoc.isValid() ?
2952 diag::warn_objc_designated_init_non_designated_init_call :
2953 diag::warn_objc_designated_init_non_super_designated_init_call);
2954 Diag(InitMethod->getLocation(),
2955 diag::note_objc_designated_init_marked_here);
2956 }
Argyrios Kyrtzidis22bfa2c2013-12-03 21:11:36 +00002957 }
2958
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002959 if (DIFunctionScopeInfo &&
2960 DIFunctionScopeInfo->ObjCIsSecondaryInit &&
Argyrios Kyrtzidisb66d3cf2013-12-03 21:11:49 +00002961 (SuperLoc.isValid() || isSelfExpr(Receiver))) {
2962 if (SuperLoc.isValid()) {
2963 Diag(SelLoc, diag::warn_objc_secondary_init_super_init_call);
2964 } else {
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002965 DIFunctionScopeInfo->ObjCWarnForNoInitDelegation = false;
Argyrios Kyrtzidisb66d3cf2013-12-03 21:11:49 +00002966 }
2967 }
2968
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002969 // Check the message arguments.
2970 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002971 Expr **Args = ArgsIn.data();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002972 QualType ReturnType;
John McCall7decc9e2010-11-18 06:31:45 +00002973 ExprValueKind VK = VK_RValue;
Fariborz Jahanian68500912010-12-01 01:07:24 +00002974 bool ClassMessage = (ReceiverType->isObjCClassType() ||
2975 ReceiverType->isObjCQualifiedClassType());
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00002976 if (CheckMessageArgumentTypes(ReceiverType, MultiExprArg(Args, NumArgs),
2977 Sel, SelectorLocs, Method,
Douglas Gregor33823722011-06-11 01:09:30 +00002978 ClassMessage, SuperLoc.isValid(),
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00002979 LBracLoc, RBracLoc, RecRange, ReturnType, VK))
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002980 return ExprError();
Alp Toker314cc812014-01-25 16:55:45 +00002981
2982 if (Method && !Method->getReturnType()->isVoidType() &&
2983 RequireCompleteType(LBracLoc, Method->getReturnType(),
Douglas Gregoraec93c62011-01-11 03:23:19 +00002984 diag::err_illegal_message_expr_incomplete_type))
2985 return ExprError();
Douglas Gregor9a129192010-04-21 00:45:42 +00002986
John McCall31168b02011-06-15 23:02:42 +00002987 // In ARC, forbid the user from sending messages to
2988 // retain/release/autorelease/dealloc/retainCount explicitly.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002989 if (getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00002990 ObjCMethodFamily family =
2991 (Method ? Method->getMethodFamily() : Sel.getMethodFamily());
2992 switch (family) {
2993 case OMF_init:
2994 if (Method)
2995 checkInitMethod(Method, ReceiverType);
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00002996 break;
John McCall31168b02011-06-15 23:02:42 +00002997
2998 case OMF_None:
2999 case OMF_alloc:
3000 case OMF_copy:
Nico Weber1fb82662011-08-28 22:35:17 +00003001 case OMF_finalize:
John McCall31168b02011-06-15 23:02:42 +00003002 case OMF_mutableCopy:
3003 case OMF_new:
3004 case OMF_self:
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00003005 case OMF_initialize:
John McCall31168b02011-06-15 23:02:42 +00003006 break;
3007
3008 case OMF_dealloc:
3009 case OMF_retain:
3010 case OMF_release:
3011 case OMF_autorelease:
3012 case OMF_retainCount:
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00003013 Diag(SelLoc, diag::err_arc_illegal_explicit_message)
3014 << Sel << RecRange;
John McCall31168b02011-06-15 23:02:42 +00003015 break;
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003016
3017 case OMF_performSelector:
3018 if (Method && NumArgs >= 1) {
Alex Lorenz51c01282017-02-20 17:55:15 +00003019 if (const auto *SelExp =
3020 dyn_cast<ObjCSelectorExpr>(Args[0]->IgnoreParens())) {
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003021 Selector ArgSel = SelExp->getSelector();
3022 ObjCMethodDecl *SelMethod =
3023 LookupInstanceMethodInGlobalPool(ArgSel,
3024 SelExp->getSourceRange());
3025 if (!SelMethod)
3026 SelMethod =
3027 LookupFactoryMethodInGlobalPool(ArgSel,
3028 SelExp->getSourceRange());
3029 if (SelMethod) {
3030 ObjCMethodFamily SelFamily = SelMethod->getMethodFamily();
3031 switch (SelFamily) {
3032 case OMF_alloc:
3033 case OMF_copy:
3034 case OMF_mutableCopy:
3035 case OMF_new:
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003036 case OMF_init:
3037 // Issue error, unless ns_returns_not_retained.
3038 if (!SelMethod->hasAttr<NSReturnsNotRetainedAttr>()) {
3039 // selector names a +1 method
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00003040 Diag(SelLoc,
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003041 diag::err_arc_perform_selector_retains);
Ted Kremenek59b10db2012-02-27 22:55:11 +00003042 Diag(SelMethod->getLocation(), diag::note_method_declared_at)
3043 << SelMethod->getDeclName();
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003044 }
3045 break;
3046 default:
3047 // +0 call. OK. unless ns_returns_retained.
3048 if (SelMethod->hasAttr<NSReturnsRetainedAttr>()) {
3049 // selector names a +1 method
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00003050 Diag(SelLoc,
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003051 diag::err_arc_perform_selector_retains);
Ted Kremenek59b10db2012-02-27 22:55:11 +00003052 Diag(SelMethod->getLocation(), diag::note_method_declared_at)
3053 << SelMethod->getDeclName();
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003054 }
3055 break;
3056 }
3057 }
3058 } else {
3059 // error (may leak).
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00003060 Diag(SelLoc, diag::warn_arc_perform_selector_leaks);
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00003061 Diag(Args[0]->getExprLoc(), diag::note_used_here);
3062 }
3063 }
3064 break;
John McCall31168b02011-06-15 23:02:42 +00003065 }
3066 }
3067
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00003068 DiagnoseCStringFormatDirectiveInObjCAPI(*this, Method, Sel, Args, NumArgs);
3069
Douglas Gregor0c78ad92010-04-21 19:57:20 +00003070 // Construct the appropriate ObjCMessageExpr instance.
John McCall31168b02011-06-15 23:02:42 +00003071 ObjCMessageExpr *Result;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00003072 if (SuperLoc.isValid())
John McCall7decc9e2010-11-18 06:31:45 +00003073 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Douglas Gregoraae38d62010-05-22 05:17:18 +00003074 SuperLoc, /*IsInstanceSuper=*/true,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00003075 ReceiverType, Sel, SelectorLocs, Method,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00003076 makeArrayRef(Args, NumArgs), RBracLoc,
3077 isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00003078 else {
John McCall7decc9e2010-11-18 06:31:45 +00003079 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00003080 Receiver, Sel, SelectorLocs, Method,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00003081 makeArrayRef(Args, NumArgs), RBracLoc,
3082 isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00003083 if (!isImplicit)
3084 checkCocoaAPI(*this, Result);
3085 }
Alex Lorenz0e23c612017-03-06 15:58:34 +00003086 if (Method) {
3087 bool IsClassObjectCall = ClassMessage;
3088 // 'self' message receivers in class methods should be treated as message
3089 // sends to the class object in order for the semantic checks to be
3090 // performed correctly. Messages to 'super' already count as class messages,
3091 // so they don't need to be handled here.
3092 if (Receiver && isSelfExpr(Receiver)) {
3093 if (const auto *OPT = ReceiverType->getAs<ObjCObjectPointerType>()) {
3094 if (OPT->getObjectType()->isObjCClass()) {
3095 if (const auto *CurMeth = getCurMethodDecl()) {
3096 IsClassObjectCall = true;
3097 ReceiverType =
3098 Context.getObjCInterfaceType(CurMeth->getClassInterface());
3099 }
3100 }
3101 }
3102 }
3103 checkFoundationAPI(*this, SelLoc, Method, makeArrayRef(Args, NumArgs),
3104 ReceiverType, IsClassObjectCall);
3105 }
John McCall31168b02011-06-15 23:02:42 +00003106
David Blaikiebbafb8a2012-03-11 07:00:24 +00003107 if (getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00003108 // In ARC, annotate delegate init calls.
3109 if (Result->getMethodFamily() == OMF_init &&
Douglas Gregor486b74e2011-09-27 16:10:05 +00003110 (SuperLoc.isValid() || isSelfExpr(Receiver))) {
John McCall31168b02011-06-15 23:02:42 +00003111 // Only consider init calls *directly* in init implementations,
3112 // not within blocks.
3113 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(CurContext);
3114 if (method && method->getMethodFamily() == OMF_init) {
3115 // The implicit assignment to self means we also don't want to
3116 // consume the result.
3117 Result->setDelegateInitCall(true);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003118 return Result;
John McCall31168b02011-06-15 23:02:42 +00003119 }
3120 }
3121
3122 // In ARC, check for message sends which are likely to introduce
3123 // retain cycles.
3124 checkRetainCycles(Result);
Brian Kelleycafd9122017-03-29 17:55:11 +00003125 }
Jordan Rose22487652012-10-11 16:06:21 +00003126
Brian Kelleycafd9122017-03-29 17:55:11 +00003127 if (getLangOpts().ObjCWeak) {
Jordan Rose22487652012-10-11 16:06:21 +00003128 if (!isImplicit && Method) {
3129 if (const ObjCPropertyDecl *Prop = Method->findPropertyDecl()) {
3130 bool IsWeak =
3131 Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak;
3132 if (!IsWeak && Sel.isUnarySelector())
3133 IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak;
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00003134 if (IsWeak &&
3135 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, LBracLoc))
3136 getCurFunction()->recordUseOfWeak(Result, Prop);
Jordan Rose22487652012-10-11 16:06:21 +00003137 }
3138 }
John McCall31168b02011-06-15 23:02:42 +00003139 }
Alex Denisove1d882c2015-03-04 17:55:52 +00003140
3141 CheckObjCCircularContainer(Result);
3142
Douglas Gregoraae38d62010-05-22 05:17:18 +00003143 return MaybeBindToTemporary(Result);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00003144}
3145
Fariborz Jahanian02447d82013-01-22 18:35:43 +00003146static void RemoveSelectorFromWarningCache(Sema &S, Expr* Arg) {
3147 if (ObjCSelectorExpr *OSE =
3148 dyn_cast<ObjCSelectorExpr>(Arg->IgnoreParenCasts())) {
3149 Selector Sel = OSE->getSelector();
3150 SourceLocation Loc = OSE->getAtLoc();
Chandler Carruth12c8f652015-03-27 00:55:05 +00003151 auto Pos = S.ReferencedSelectors.find(Sel);
Fariborz Jahanian02447d82013-01-22 18:35:43 +00003152 if (Pos != S.ReferencedSelectors.end() && Pos->second == Loc)
3153 S.ReferencedSelectors.erase(Pos);
3154 }
3155}
3156
Douglas Gregor0c78ad92010-04-21 19:57:20 +00003157// ActOnInstanceMessage - used for both unary and keyword messages.
3158// ArgExprs is optional - if it is present, the number of expressions
3159// is obtained from Sel.getNumArgs().
John McCalldadc5752010-08-24 06:29:42 +00003160ExprResult Sema::ActOnInstanceMessage(Scope *S,
3161 Expr *Receiver,
3162 Selector Sel,
3163 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00003164 ArrayRef<SourceLocation> SelectorLocs,
John McCalldadc5752010-08-24 06:29:42 +00003165 SourceLocation RBracLoc,
3166 MultiExprArg Args) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00003167 if (!Receiver)
3168 return ExprError();
Argyrios Kyrtzidis336cc8b2013-02-15 18:34:15 +00003169
3170 // A ParenListExpr can show up while doing error recovery with invalid code.
3171 if (isa<ParenListExpr>(Receiver)) {
3172 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Receiver);
3173 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003174 Receiver = Result.get();
Argyrios Kyrtzidis336cc8b2013-02-15 18:34:15 +00003175 }
Fariborz Jahanian17748062013-01-22 19:05:17 +00003176
3177 if (RespondsToSelectorSel.isNull()) {
3178 IdentifierInfo *SelectorId = &Context.Idents.get("respondsToSelector");
3179 RespondsToSelectorSel = Context.Selectors.getUnarySelector(SelectorId);
3180 }
3181 if (Sel == RespondsToSelectorSel)
Fariborz Jahanian02447d82013-01-22 18:35:43 +00003182 RemoveSelectorFromWarningCache(*this, Args[0]);
Craig Topperc3ec1492014-05-26 06:22:03 +00003183
John McCallb268a282010-08-23 23:25:46 +00003184 return BuildInstanceMessage(Receiver, Receiver->getType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00003185 /*SuperLoc=*/SourceLocation(), Sel,
3186 /*Method=*/nullptr, LBracLoc, SelectorLocs,
3187 RBracLoc, Args);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00003188}
Chris Lattner2a3569b2008-04-07 05:30:13 +00003189
John McCall31168b02011-06-15 23:02:42 +00003190enum ARCConversionTypeClass {
John McCalle4fe2452011-10-01 01:01:08 +00003191 /// int, void, struct A
John McCall31168b02011-06-15 23:02:42 +00003192 ACTC_none,
John McCalle4fe2452011-10-01 01:01:08 +00003193
3194 /// id, void (^)()
John McCall31168b02011-06-15 23:02:42 +00003195 ACTC_retainable,
John McCalle4fe2452011-10-01 01:01:08 +00003196
3197 /// id*, id***, void (^*)(),
3198 ACTC_indirectRetainable,
3199
3200 /// void* might be a normal C type, or it might a CF type.
3201 ACTC_voidPtr,
3202
3203 /// struct A*
3204 ACTC_coreFoundation
John McCall31168b02011-06-15 23:02:42 +00003205};
Eugene Zelenko1ced5092016-02-12 22:53:10 +00003206
John McCalle4fe2452011-10-01 01:01:08 +00003207static bool isAnyRetainable(ARCConversionTypeClass ACTC) {
3208 return (ACTC == ACTC_retainable ||
3209 ACTC == ACTC_coreFoundation ||
3210 ACTC == ACTC_voidPtr);
3211}
Eugene Zelenko1ced5092016-02-12 22:53:10 +00003212
John McCalle4fe2452011-10-01 01:01:08 +00003213static bool isAnyCLike(ARCConversionTypeClass ACTC) {
3214 return ACTC == ACTC_none ||
3215 ACTC == ACTC_voidPtr ||
3216 ACTC == ACTC_coreFoundation;
3217}
3218
John McCall31168b02011-06-15 23:02:42 +00003219static ARCConversionTypeClass classifyTypeForARCConversion(QualType type) {
John McCalle4fe2452011-10-01 01:01:08 +00003220 bool isIndirect = false;
John McCall31168b02011-06-15 23:02:42 +00003221
3222 // Ignore an outermost reference type.
John McCalle4fe2452011-10-01 01:01:08 +00003223 if (const ReferenceType *ref = type->getAs<ReferenceType>()) {
John McCall31168b02011-06-15 23:02:42 +00003224 type = ref->getPointeeType();
John McCalle4fe2452011-10-01 01:01:08 +00003225 isIndirect = true;
3226 }
John McCall31168b02011-06-15 23:02:42 +00003227
3228 // Drill through pointers and arrays recursively.
3229 while (true) {
3230 if (const PointerType *ptr = type->getAs<PointerType>()) {
3231 type = ptr->getPointeeType();
John McCalle4fe2452011-10-01 01:01:08 +00003232
3233 // The first level of pointer may be the innermost pointer on a CF type.
3234 if (!isIndirect) {
3235 if (type->isVoidType()) return ACTC_voidPtr;
3236 if (type->isRecordType()) return ACTC_coreFoundation;
3237 }
John McCall31168b02011-06-15 23:02:42 +00003238 } else if (const ArrayType *array = type->getAsArrayTypeUnsafe()) {
3239 type = QualType(array->getElementType()->getBaseElementTypeUnsafe(), 0);
3240 } else {
3241 break;
3242 }
John McCalle4fe2452011-10-01 01:01:08 +00003243 isIndirect = true;
John McCall31168b02011-06-15 23:02:42 +00003244 }
3245
John McCalle4fe2452011-10-01 01:01:08 +00003246 if (isIndirect) {
3247 if (type->isObjCARCBridgableType())
3248 return ACTC_indirectRetainable;
3249 return ACTC_none;
3250 }
3251
3252 if (type->isObjCARCBridgableType())
3253 return ACTC_retainable;
3254
3255 return ACTC_none;
John McCall31168b02011-06-15 23:02:42 +00003256}
3257
3258namespace {
John McCalle4fe2452011-10-01 01:01:08 +00003259 /// A result from the cast checker.
3260 enum ACCResult {
3261 /// Cannot be casted.
3262 ACC_invalid,
3263
3264 /// Can be safely retained or not retained.
3265 ACC_bottom,
3266
3267 /// Can be casted at +0.
3268 ACC_plusZero,
3269
3270 /// Can be casted at +1.
3271 ACC_plusOne
3272 };
3273 ACCResult merge(ACCResult left, ACCResult right) {
3274 if (left == right) return left;
3275 if (left == ACC_bottom) return right;
3276 if (right == ACC_bottom) return left;
3277 return ACC_invalid;
3278 }
3279
3280 /// A checker which white-lists certain expressions whose conversion
3281 /// to or from retainable type would otherwise be forbidden in ARC.
3282 class ARCCastChecker : public StmtVisitor<ARCCastChecker, ACCResult> {
3283 typedef StmtVisitor<ARCCastChecker, ACCResult> super;
3284
John McCall31168b02011-06-15 23:02:42 +00003285 ASTContext &Context;
John McCalle4fe2452011-10-01 01:01:08 +00003286 ARCConversionTypeClass SourceClass;
3287 ARCConversionTypeClass TargetClass;
Fariborz Jahanian36986c62012-07-27 22:37:07 +00003288 bool Diagnose;
John McCalle4fe2452011-10-01 01:01:08 +00003289
3290 static bool isCFType(QualType type) {
3291 // Someday this can use ns_bridged. For now, it has to do this.
3292 return type->isCARCBridgableType();
John McCall31168b02011-06-15 23:02:42 +00003293 }
John McCalle4fe2452011-10-01 01:01:08 +00003294
3295 public:
3296 ARCCastChecker(ASTContext &Context, ARCConversionTypeClass source,
Fariborz Jahanian36986c62012-07-27 22:37:07 +00003297 ARCConversionTypeClass target, bool diagnose)
3298 : Context(Context), SourceClass(source), TargetClass(target),
3299 Diagnose(diagnose) {}
John McCalle4fe2452011-10-01 01:01:08 +00003300
3301 using super::Visit;
3302 ACCResult Visit(Expr *e) {
3303 return super::Visit(e->IgnoreParens());
3304 }
3305
3306 ACCResult VisitStmt(Stmt *s) {
3307 return ACC_invalid;
3308 }
3309
3310 /// Null pointer constants can be casted however you please.
3311 ACCResult VisitExpr(Expr *e) {
3312 if (e->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull))
3313 return ACC_bottom;
3314 return ACC_invalid;
3315 }
3316
3317 /// Objective-C string literals can be safely casted.
3318 ACCResult VisitObjCStringLiteral(ObjCStringLiteral *e) {
3319 // If we're casting to any retainable type, go ahead. Global
3320 // strings are immune to retains, so this is bottom.
3321 if (isAnyRetainable(TargetClass)) return ACC_bottom;
3322
3323 return ACC_invalid;
John McCall31168b02011-06-15 23:02:42 +00003324 }
3325
John McCalle4fe2452011-10-01 01:01:08 +00003326 /// Look through certain implicit and explicit casts.
3327 ACCResult VisitCastExpr(CastExpr *e) {
John McCall31168b02011-06-15 23:02:42 +00003328 switch (e->getCastKind()) {
3329 case CK_NullToPointer:
John McCalle4fe2452011-10-01 01:01:08 +00003330 return ACC_bottom;
3331
John McCall31168b02011-06-15 23:02:42 +00003332 case CK_NoOp:
3333 case CK_LValueToRValue:
3334 case CK_BitCast:
John McCall9320b872011-09-09 05:25:32 +00003335 case CK_CPointerToObjCPointerCast:
3336 case CK_BlockPointerToObjCPointerCast:
John McCall31168b02011-06-15 23:02:42 +00003337 case CK_AnyPointerToBlockPointerCast:
3338 return Visit(e->getSubExpr());
John McCalle4fe2452011-10-01 01:01:08 +00003339
John McCall31168b02011-06-15 23:02:42 +00003340 default:
John McCalle4fe2452011-10-01 01:01:08 +00003341 return ACC_invalid;
John McCall31168b02011-06-15 23:02:42 +00003342 }
3343 }
John McCalle4fe2452011-10-01 01:01:08 +00003344
3345 /// Look through unary extension.
3346 ACCResult VisitUnaryExtension(UnaryOperator *e) {
John McCall31168b02011-06-15 23:02:42 +00003347 return Visit(e->getSubExpr());
3348 }
John McCalle4fe2452011-10-01 01:01:08 +00003349
3350 /// Ignore the LHS of a comma operator.
3351 ACCResult VisitBinComma(BinaryOperator *e) {
John McCall31168b02011-06-15 23:02:42 +00003352 return Visit(e->getRHS());
3353 }
John McCalle4fe2452011-10-01 01:01:08 +00003354
3355 /// Conditional operators are okay if both sides are okay.
3356 ACCResult VisitConditionalOperator(ConditionalOperator *e) {
3357 ACCResult left = Visit(e->getTrueExpr());
3358 if (left == ACC_invalid) return ACC_invalid;
3359 return merge(left, Visit(e->getFalseExpr()));
John McCall31168b02011-06-15 23:02:42 +00003360 }
John McCalle4fe2452011-10-01 01:01:08 +00003361
John McCallfe96e0b2011-11-06 09:01:30 +00003362 /// Look through pseudo-objects.
3363 ACCResult VisitPseudoObjectExpr(PseudoObjectExpr *e) {
3364 // If we're getting here, we should always have a result.
3365 return Visit(e->getResultExpr());
3366 }
3367
John McCalle4fe2452011-10-01 01:01:08 +00003368 /// Statement expressions are okay if their result expression is okay.
3369 ACCResult VisitStmtExpr(StmtExpr *e) {
John McCall31168b02011-06-15 23:02:42 +00003370 return Visit(e->getSubStmt()->body_back());
3371 }
John McCall31168b02011-06-15 23:02:42 +00003372
John McCalle4fe2452011-10-01 01:01:08 +00003373 /// Some declaration references are okay.
3374 ACCResult VisitDeclRefExpr(DeclRefExpr *e) {
John McCalle4fe2452011-10-01 01:01:08 +00003375 VarDecl *var = dyn_cast<VarDecl>(e->getDecl());
Ben Langmuir443aa4b2015-02-25 20:09:06 +00003376 // References to global constants are okay.
John McCalle4fe2452011-10-01 01:01:08 +00003377 if (isAnyRetainable(TargetClass) &&
3378 isAnyRetainable(SourceClass) &&
3379 var &&
Akira Hatanakaad515392017-04-11 22:01:33 +00003380 !var->hasDefinition(Context) &&
Ben Langmuir443aa4b2015-02-25 20:09:06 +00003381 var->getType().isConstQualified()) {
3382
3383 // In system headers, they can also be assumed to be immune to retains.
3384 // These are things like 'kCFStringTransformToLatin'.
3385 if (Context.getSourceManager().isInSystemHeader(var->getLocation()))
3386 return ACC_bottom;
3387
3388 return ACC_plusZero;
John McCalle4fe2452011-10-01 01:01:08 +00003389 }
3390
3391 // Nothing else.
3392 return ACC_invalid;
Fariborz Jahanian78876372011-06-21 17:38:29 +00003393 }
John McCalle4fe2452011-10-01 01:01:08 +00003394
3395 /// Some calls are okay.
3396 ACCResult VisitCallExpr(CallExpr *e) {
3397 if (FunctionDecl *fn = e->getDirectCallee())
3398 if (ACCResult result = checkCallToFunction(fn))
3399 return result;
3400
3401 return super::VisitCallExpr(e);
3402 }
3403
3404 ACCResult checkCallToFunction(FunctionDecl *fn) {
3405 // Require a CF*Ref return type.
Alp Toker314cc812014-01-25 16:55:45 +00003406 if (!isCFType(fn->getReturnType()))
John McCalle4fe2452011-10-01 01:01:08 +00003407 return ACC_invalid;
3408
3409 if (!isAnyRetainable(TargetClass))
3410 return ACC_invalid;
3411
3412 // Honor an explicit 'not retained' attribute.
3413 if (fn->hasAttr<CFReturnsNotRetainedAttr>())
3414 return ACC_plusZero;
3415
3416 // Honor an explicit 'retained' attribute, except that for
3417 // now we're not going to permit implicit handling of +1 results,
3418 // because it's a bit frightening.
3419 if (fn->hasAttr<CFReturnsRetainedAttr>())
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003420 return Diagnose ? ACC_plusOne
3421 : ACC_invalid; // ACC_plusOne if we start accepting this
John McCalle4fe2452011-10-01 01:01:08 +00003422
3423 // Recognize this specific builtin function, which is used by CFSTR.
3424 unsigned builtinID = fn->getBuiltinID();
3425 if (builtinID == Builtin::BI__builtin___CFStringMakeConstantString)
3426 return ACC_bottom;
3427
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003428 // Otherwise, don't do anything implicit with an unaudited function.
3429 if (!fn->hasAttr<CFAuditedTransferAttr>())
3430 return ACC_invalid;
3431
Fariborz Jahanian36986c62012-07-27 22:37:07 +00003432 // Otherwise, it's +0 unless it follows the create convention.
3433 if (ento::coreFoundation::followsCreateRule(fn))
3434 return Diagnose ? ACC_plusOne
3435 : ACC_invalid; // ACC_plusOne if we start accepting this
John McCalle4fe2452011-10-01 01:01:08 +00003436
John McCalle4fe2452011-10-01 01:01:08 +00003437 return ACC_plusZero;
3438 }
3439
3440 ACCResult VisitObjCMessageExpr(ObjCMessageExpr *e) {
3441 return checkCallToMethod(e->getMethodDecl());
3442 }
3443
3444 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) {
3445 ObjCMethodDecl *method;
3446 if (e->isExplicitProperty())
3447 method = e->getExplicitProperty()->getGetterMethodDecl();
3448 else
3449 method = e->getImplicitPropertyGetter();
3450 return checkCallToMethod(method);
3451 }
3452
3453 ACCResult checkCallToMethod(ObjCMethodDecl *method) {
3454 if (!method) return ACC_invalid;
3455
3456 // Check for message sends to functions returning CF types. We
3457 // just obey the Cocoa conventions with these, even though the
3458 // return type is CF.
Alp Toker314cc812014-01-25 16:55:45 +00003459 if (!isAnyRetainable(TargetClass) || !isCFType(method->getReturnType()))
John McCalle4fe2452011-10-01 01:01:08 +00003460 return ACC_invalid;
3461
3462 // If the method is explicitly marked not-retained, it's +0.
3463 if (method->hasAttr<CFReturnsNotRetainedAttr>())
3464 return ACC_plusZero;
3465
3466 // If the method is explicitly marked as returning retained, or its
3467 // selector follows a +1 Cocoa convention, treat it as +1.
3468 if (method->hasAttr<CFReturnsRetainedAttr>())
3469 return ACC_plusOne;
3470
3471 switch (method->getSelector().getMethodFamily()) {
3472 case OMF_alloc:
3473 case OMF_copy:
3474 case OMF_mutableCopy:
3475 case OMF_new:
3476 return ACC_plusOne;
3477
3478 default:
3479 // Otherwise, treat it as +0.
3480 return ACC_plusZero;
Fariborz Jahanian9b83be82011-06-21 19:42:38 +00003481 }
3482 }
John McCalle4fe2452011-10-01 01:01:08 +00003483 };
Eugene Zelenko1ced5092016-02-12 22:53:10 +00003484} // end anonymous namespace
Fariborz Jahanian4ad56862011-06-20 20:54:42 +00003485
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003486bool Sema::isKnownName(StringRef name) {
3487 if (name.empty())
3488 return false;
3489 LookupResult R(*this, &Context.Idents.get(name), SourceLocation(),
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00003490 Sema::LookupOrdinaryName);
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003491 return LookupName(R, TUScope, false);
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00003492}
3493
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003494static void addFixitForObjCARCConversion(Sema &S,
3495 DiagnosticBuilder &DiagB,
3496 Sema::CheckedConversionKind CCK,
3497 SourceLocation afterLParen,
3498 QualType castType,
3499 Expr *castExpr,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003500 Expr *realCast,
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003501 const char *bridgeKeyword,
3502 const char *CFBridgeName) {
3503 // We handle C-style and implicit casts here.
3504 switch (CCK) {
3505 case Sema::CCK_ImplicitConversion:
Richard Smith1ef75542018-06-27 20:30:34 +00003506 case Sema::CCK_ForBuiltinOverloadedOp:
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003507 case Sema::CCK_CStyleCast:
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003508 case Sema::CCK_OtherCast:
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003509 break;
3510 case Sema::CCK_FunctionalCast:
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003511 return;
3512 }
3513
3514 if (CFBridgeName) {
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003515 if (CCK == Sema::CCK_OtherCast) {
3516 if (const CXXNamedCastExpr *NCE = dyn_cast<CXXNamedCastExpr>(realCast)) {
3517 SourceRange range(NCE->getOperatorLoc(),
3518 NCE->getAngleBrackets().getEnd());
3519 SmallString<32> BridgeCall;
3520
3521 SourceManager &SM = S.getSourceManager();
3522 char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1));
3523 if (Lexer::isIdentifierBodyChar(PrevChar, S.getLangOpts()))
3524 BridgeCall += ' ';
3525
3526 BridgeCall += CFBridgeName;
3527 DiagB.AddFixItHint(FixItHint::CreateReplacement(range, BridgeCall));
3528 }
3529 return;
3530 }
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003531 Expr *castedE = castExpr;
3532 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE))
3533 castedE = CCE->getSubExpr();
3534 castedE = castedE->IgnoreImpCasts();
3535 SourceRange range = castedE->getSourceRange();
Jordan Rose288c4212012-06-07 01:10:31 +00003536
3537 SmallString<32> BridgeCall;
3538
3539 SourceManager &SM = S.getSourceManager();
3540 char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1));
3541 if (Lexer::isIdentifierBodyChar(PrevChar, S.getLangOpts()))
3542 BridgeCall += ' ';
3543
3544 BridgeCall += CFBridgeName;
3545
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003546 if (isa<ParenExpr>(castedE)) {
3547 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
Jordan Rose288c4212012-06-07 01:10:31 +00003548 BridgeCall));
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003549 } else {
Jordan Rose288c4212012-06-07 01:10:31 +00003550 BridgeCall += '(';
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003551 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
Jordan Rose288c4212012-06-07 01:10:31 +00003552 BridgeCall));
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003553 DiagB.AddFixItHint(FixItHint::CreateInsertion(
Craig Topper07fa1762015-11-15 02:31:46 +00003554 S.getLocForEndOfToken(range.getEnd()),
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003555 ")"));
3556 }
3557 return;
3558 }
3559
3560 if (CCK == Sema::CCK_CStyleCast) {
3561 DiagB.AddFixItHint(FixItHint::CreateInsertion(afterLParen, bridgeKeyword));
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003562 } else if (CCK == Sema::CCK_OtherCast) {
3563 if (const CXXNamedCastExpr *NCE = dyn_cast<CXXNamedCastExpr>(realCast)) {
3564 std::string castCode = "(";
3565 castCode += bridgeKeyword;
3566 castCode += castType.getAsString();
3567 castCode += ")";
3568 SourceRange Range(NCE->getOperatorLoc(),
3569 NCE->getAngleBrackets().getEnd());
3570 DiagB.AddFixItHint(FixItHint::CreateReplacement(Range, castCode));
3571 }
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003572 } else {
3573 std::string castCode = "(";
3574 castCode += bridgeKeyword;
3575 castCode += castType.getAsString();
3576 castCode += ")";
3577 Expr *castedE = castExpr->IgnoreImpCasts();
3578 SourceRange range = castedE->getSourceRange();
3579 if (isa<ParenExpr>(castedE)) {
3580 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
3581 castCode));
3582 } else {
3583 castCode += "(";
3584 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
3585 castCode));
3586 DiagB.AddFixItHint(FixItHint::CreateInsertion(
Craig Topper07fa1762015-11-15 02:31:46 +00003587 S.getLocForEndOfToken(range.getEnd()),
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003588 ")"));
3589 }
3590 }
3591}
3592
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003593template <typename T>
3594static inline T *getObjCBridgeAttr(const TypedefType *TD) {
3595 TypedefNameDecl *TDNDecl = TD->getDecl();
3596 QualType QT = TDNDecl->getUnderlyingType();
3597 if (QT->isPointerType()) {
3598 QT = QT->getPointeeType();
3599 if (const RecordType *RT = QT->getAs<RecordType>())
Fariborz Jahanian9af6a782014-06-11 19:10:46 +00003600 if (RecordDecl *RD = RT->getDecl()->getMostRecentDecl())
Aaron Ballman2084f8f2013-12-19 13:20:36 +00003601 return RD->getAttr<T>();
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003602 }
Craig Topperc3ec1492014-05-26 06:22:03 +00003603 return nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003604}
3605
3606static ObjCBridgeRelatedAttr *ObjCBridgeRelatedAttrFromType(QualType T,
3607 TypedefNameDecl *&TDNDecl) {
3608 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
3609 TDNDecl = TD->getDecl();
3610 if (ObjCBridgeRelatedAttr *ObjCBAttr =
3611 getObjCBridgeAttr<ObjCBridgeRelatedAttr>(TD))
3612 return ObjCBAttr;
3613 T = TDNDecl->getUnderlyingType();
3614 }
Craig Topperc3ec1492014-05-26 06:22:03 +00003615 return nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003616}
3617
John McCall4124c492011-10-17 18:40:02 +00003618static void
3619diagnoseObjCARCConversion(Sema &S, SourceRange castRange,
3620 QualType castType, ARCConversionTypeClass castACTC,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003621 Expr *castExpr, Expr *realCast,
3622 ARCConversionTypeClass exprACTC,
John McCall4124c492011-10-17 18:40:02 +00003623 Sema::CheckedConversionKind CCK) {
John McCall31168b02011-06-15 23:02:42 +00003624 SourceLocation loc =
John McCalle4fe2452011-10-01 01:01:08 +00003625 (castRange.isValid() ? castRange.getBegin() : castExpr->getExprLoc());
John McCall31168b02011-06-15 23:02:42 +00003626
John McCall4124c492011-10-17 18:40:02 +00003627 if (S.makeUnavailableInSystemHeader(loc,
John McCallc6af8c62015-10-28 05:03:19 +00003628 UnavailableAttr::IR_ARCForbiddenConversion))
John McCall31168b02011-06-15 23:02:42 +00003629 return;
John McCall4124c492011-10-17 18:40:02 +00003630
3631 QualType castExprType = castExpr->getType();
Bob Wilsonf5c53b82016-02-13 01:41:41 +00003632 // Defer emitting a diagnostic for bridge-related casts; that will be
3633 // handled by CheckObjCBridgeRelatedConversions.
Craig Topperc3ec1492014-05-26 06:22:03 +00003634 TypedefNameDecl *TDNDecl = nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003635 if ((castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable &&
3636 ObjCBridgeRelatedAttrFromType(castType, TDNDecl)) ||
3637 (exprACTC == ACTC_coreFoundation && castACTC == ACTC_retainable &&
Fariborz Jahanian1ad83a32014-06-18 23:22:38 +00003638 ObjCBridgeRelatedAttrFromType(castExprType, TDNDecl)))
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003639 return;
John McCall31168b02011-06-15 23:02:42 +00003640
John McCall640767f2011-06-17 06:50:50 +00003641 unsigned srcKind = 0;
John McCall31168b02011-06-15 23:02:42 +00003642 switch (exprACTC) {
John McCalle4fe2452011-10-01 01:01:08 +00003643 case ACTC_none:
3644 case ACTC_coreFoundation:
3645 case ACTC_voidPtr:
3646 srcKind = (castExprType->isPointerType() ? 1 : 0);
3647 break;
3648 case ACTC_retainable:
3649 srcKind = (castExprType->isBlockPointerType() ? 2 : 3);
3650 break;
3651 case ACTC_indirectRetainable:
3652 srcKind = 4;
3653 break;
John McCall31168b02011-06-15 23:02:42 +00003654 }
3655
John McCall4124c492011-10-17 18:40:02 +00003656 // Check whether this could be fixed with a bridge cast.
Craig Topper07fa1762015-11-15 02:31:46 +00003657 SourceLocation afterLParen = S.getLocForEndOfToken(castRange.getBegin());
John McCall4124c492011-10-17 18:40:02 +00003658 SourceLocation noteLoc = afterLParen.isValid() ? afterLParen : loc;
John McCall31168b02011-06-15 23:02:42 +00003659
Richard Smith1ef75542018-06-27 20:30:34 +00003660 unsigned convKindForDiag = Sema::isCast(CCK) ? 0 : 1;
3661
John McCall4124c492011-10-17 18:40:02 +00003662 // Bridge from an ARC type to a CF type.
3663 if (castACTC == ACTC_retainable && isAnyRetainable(exprACTC)) {
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00003664
John McCall4124c492011-10-17 18:40:02 +00003665 S.Diag(loc, diag::err_arc_cast_requires_bridge)
Richard Smith1ef75542018-06-27 20:30:34 +00003666 << convKindForDiag
John McCall4124c492011-10-17 18:40:02 +00003667 << 2 // of C pointer type
3668 << castExprType
3669 << unsigned(castType->isBlockPointerType()) // to ObjC|block type
3670 << castType
3671 << castRange
3672 << castExpr->getSourceRange();
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003673 bool br = S.isKnownName("CFBridgingRelease");
Jordan Rose4502b532012-07-31 01:07:43 +00003674 ACCResult CreateRule =
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003675 ARCCastChecker(S.Context, exprACTC, castACTC, true).Visit(castExpr);
Jordan Rose4502b532012-07-31 01:07:43 +00003676 assert(CreateRule != ACC_bottom && "This cast should already be accepted.");
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003677 if (CreateRule != ACC_plusOne)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003678 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003679 DiagnosticBuilder DiagB =
3680 (CCK != Sema::CCK_OtherCast) ? S.Diag(noteLoc, diag::note_arc_bridge)
3681 : S.Diag(noteLoc, diag::note_arc_cstyle_bridge);
Craig Topperc3ec1492014-05-26 06:22:03 +00003682
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003683 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Craig Topperc3ec1492014-05-26 06:22:03 +00003684 castType, castExpr, realCast, "__bridge ",
3685 nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003686 }
Fariborz Jahanianf7759e82012-07-28 18:59:49 +00003687 if (CreateRule != ACC_plusZero)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003688 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003689 DiagnosticBuilder DiagB =
3690 (CCK == Sema::CCK_OtherCast && !br) ?
3691 S.Diag(noteLoc, diag::note_arc_cstyle_bridge_transfer) << castExprType :
3692 S.Diag(br ? castExpr->getExprLoc() : noteLoc,
3693 diag::note_arc_bridge_transfer)
3694 << castExprType << br;
Craig Topperc3ec1492014-05-26 06:22:03 +00003695
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003696 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003697 castType, castExpr, realCast, "__bridge_transfer ",
Craig Topperc3ec1492014-05-26 06:22:03 +00003698 br ? "CFBridgingRelease" : nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003699 }
John McCall4124c492011-10-17 18:40:02 +00003700
3701 return;
3702 }
Fariborz Jahanianf1a22f42014-04-29 16:12:56 +00003703
John McCall4124c492011-10-17 18:40:02 +00003704 // Bridge from a CF type to an ARC type.
3705 if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC)) {
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003706 bool br = S.isKnownName("CFBridgingRetain");
John McCall4124c492011-10-17 18:40:02 +00003707 S.Diag(loc, diag::err_arc_cast_requires_bridge)
Richard Smith1ef75542018-06-27 20:30:34 +00003708 << convKindForDiag
John McCall4124c492011-10-17 18:40:02 +00003709 << unsigned(castExprType->isBlockPointerType()) // of ObjC|block type
3710 << castExprType
3711 << 2 // to C pointer type
3712 << castType
3713 << castRange
3714 << castExpr->getSourceRange();
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003715 ACCResult CreateRule =
3716 ARCCastChecker(S.Context, exprACTC, castACTC, true).Visit(castExpr);
Jordan Rose4502b532012-07-31 01:07:43 +00003717 assert(CreateRule != ACC_bottom && "This cast should already be accepted.");
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003718 if (CreateRule != ACC_plusOne)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003719 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003720 DiagnosticBuilder DiagB =
3721 (CCK != Sema::CCK_OtherCast) ? S.Diag(noteLoc, diag::note_arc_bridge)
3722 : S.Diag(noteLoc, diag::note_arc_cstyle_bridge);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003723 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Craig Topperc3ec1492014-05-26 06:22:03 +00003724 castType, castExpr, realCast, "__bridge ",
3725 nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003726 }
Fariborz Jahanianf7759e82012-07-28 18:59:49 +00003727 if (CreateRule != ACC_plusZero)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003728 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003729 DiagnosticBuilder DiagB =
3730 (CCK == Sema::CCK_OtherCast && !br) ?
3731 S.Diag(noteLoc, diag::note_arc_cstyle_bridge_retained) << castType :
3732 S.Diag(br ? castExpr->getExprLoc() : noteLoc,
3733 diag::note_arc_bridge_retained)
3734 << castType << br;
Craig Topperc3ec1492014-05-26 06:22:03 +00003735
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003736 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003737 castType, castExpr, realCast, "__bridge_retained ",
Craig Topperc3ec1492014-05-26 06:22:03 +00003738 br ? "CFBridgingRetain" : nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003739 }
John McCall4124c492011-10-17 18:40:02 +00003740
3741 return;
John McCall31168b02011-06-15 23:02:42 +00003742 }
3743
John McCall4124c492011-10-17 18:40:02 +00003744 S.Diag(loc, diag::err_arc_mismatched_cast)
Richard Smith1ef75542018-06-27 20:30:34 +00003745 << !convKindForDiag
John McCall4124c492011-10-17 18:40:02 +00003746 << srcKind << castExprType << castType
John McCall31168b02011-06-15 23:02:42 +00003747 << castRange << castExpr->getSourceRange();
3748}
3749
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003750template <typename TB>
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003751static bool CheckObjCBridgeNSCast(Sema &S, QualType castType, Expr *castExpr,
3752 bool &HadTheAttribute, bool warn) {
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003753 QualType T = castExpr->getType();
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003754 HadTheAttribute = false;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003755 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
3756 TypedefNameDecl *TDNDecl = TD->getDecl();
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003757 if (TB *ObjCBAttr = getObjCBridgeAttr<TB>(TD)) {
Fariborz Jahaniandb3d8552013-11-19 00:09:48 +00003758 if (IdentifierInfo *Parm = ObjCBAttr->getBridgedType()) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003759 HadTheAttribute = true;
Fariborz Jahanianc9e266b2014-12-11 22:56:26 +00003760 if (Parm->isStr("id"))
3761 return true;
3762
Craig Topperc3ec1492014-05-26 06:22:03 +00003763 NamedDecl *Target = nullptr;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003764 // Check for an existing type with this name.
3765 LookupResult R(S, DeclarationName(Parm), SourceLocation(),
3766 Sema::LookupOrdinaryName);
3767 if (S.LookupName(R, S.TUScope)) {
Fariborz Jahanianf07183c2013-11-16 01:45:25 +00003768 Target = R.getFoundDecl();
3769 if (Target && isa<ObjCInterfaceDecl>(Target)) {
3770 ObjCInterfaceDecl *ExprClass = cast<ObjCInterfaceDecl>(Target);
3771 if (const ObjCObjectPointerType *InterfacePointerType =
3772 castType->getAsObjCInterfacePointerType()) {
3773 ObjCInterfaceDecl *CastClass
3774 = InterfacePointerType->getObjectType()->getInterface();
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003775 if ((CastClass == ExprClass) ||
Fariborz Jahanian27aa9b42015-04-10 22:07:47 +00003776 (CastClass && CastClass->isSuperClassOf(ExprClass)))
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003777 return true;
3778 if (warn)
3779 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge)
3780 << T << Target->getName() << castType->getPointeeType();
3781 return false;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003782 } else if (castType->isObjCIdType() ||
3783 (S.Context.ObjCObjectAdoptsQTypeProtocols(
3784 castType, ExprClass)))
3785 // ok to cast to 'id'.
3786 // casting to id<p-list> is ok if bridge type adopts all of
3787 // p-list protocols.
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003788 return true;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003789 else {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003790 if (warn) {
3791 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge)
3792 << T << Target->getName() << castType;
3793 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3794 S.Diag(Target->getLocStart(), diag::note_declared_at);
3795 }
3796 return false;
Fariborz Jahanian2c312122013-11-16 23:22:37 +00003797 }
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003798 }
Fariborz Jahanian696c8872015-04-09 23:39:53 +00003799 } else if (!castType->isObjCIdType()) {
3800 S.Diag(castExpr->getLocStart(), diag::err_objc_cf_bridged_not_interface)
3801 << castExpr->getType() << Parm;
3802 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3803 if (Target)
3804 S.Diag(Target->getLocStart(), diag::note_declared_at);
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003805 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003806 return true;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003807 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003808 return false;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003809 }
3810 T = TDNDecl->getUnderlyingType();
3811 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003812 return true;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003813}
3814
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003815template <typename TB>
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003816static bool CheckObjCBridgeCFCast(Sema &S, QualType castType, Expr *castExpr,
3817 bool &HadTheAttribute, bool warn) {
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003818 QualType T = castType;
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003819 HadTheAttribute = false;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003820 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
3821 TypedefNameDecl *TDNDecl = TD->getDecl();
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003822 if (TB *ObjCBAttr = getObjCBridgeAttr<TB>(TD)) {
Fariborz Jahaniandb3d8552013-11-19 00:09:48 +00003823 if (IdentifierInfo *Parm = ObjCBAttr->getBridgedType()) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003824 HadTheAttribute = true;
John McCallaf6b3f82015-03-10 18:41:23 +00003825 if (Parm->isStr("id"))
3826 return true;
3827
Craig Topperc3ec1492014-05-26 06:22:03 +00003828 NamedDecl *Target = nullptr;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003829 // Check for an existing type with this name.
3830 LookupResult R(S, DeclarationName(Parm), SourceLocation(),
3831 Sema::LookupOrdinaryName);
3832 if (S.LookupName(R, S.TUScope)) {
3833 Target = R.getFoundDecl();
3834 if (Target && isa<ObjCInterfaceDecl>(Target)) {
3835 ObjCInterfaceDecl *CastClass = cast<ObjCInterfaceDecl>(Target);
3836 if (const ObjCObjectPointerType *InterfacePointerType =
3837 castExpr->getType()->getAsObjCInterfacePointerType()) {
3838 ObjCInterfaceDecl *ExprClass
3839 = InterfacePointerType->getObjectType()->getInterface();
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003840 if ((CastClass == ExprClass) ||
3841 (ExprClass && CastClass->isSuperClassOf(ExprClass)))
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003842 return true;
3843 if (warn) {
3844 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge_to_cf)
3845 << castExpr->getType()->getPointeeType() << T;
3846 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3847 }
3848 return false;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003849 } else if (castExpr->getType()->isObjCIdType() ||
3850 (S.Context.QIdProtocolsAdoptObjCObjectProtocols(
3851 castExpr->getType(), CastClass)))
3852 // ok to cast an 'id' expression to a CFtype.
3853 // ok to cast an 'id<plist>' expression to CFtype provided plist
3854 // adopts all of CFtype's ObjetiveC's class plist.
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003855 return true;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003856 else {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003857 if (warn) {
3858 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge_to_cf)
3859 << castExpr->getType() << castType;
3860 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3861 S.Diag(Target->getLocStart(), diag::note_declared_at);
3862 }
3863 return false;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003864 }
3865 }
3866 }
3867 S.Diag(castExpr->getLocStart(), diag::err_objc_ns_bridged_invalid_cfobject)
3868 << castExpr->getType() << castType;
3869 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3870 if (Target)
3871 S.Diag(Target->getLocStart(), diag::note_declared_at);
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003872 return true;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003873 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003874 return false;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003875 }
3876 T = TDNDecl->getUnderlyingType();
3877 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003878 return true;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003879}
3880
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00003881void Sema::CheckTollFreeBridgeCast(QualType castType, Expr *castExpr) {
Fariborz Jahanianf1a22f42014-04-29 16:12:56 +00003882 if (!getLangOpts().ObjC1)
3883 return;
Alp Tokerf6a24ce2013-12-05 16:25:25 +00003884 // warn in presence of __bridge casting to or from a toll free bridge cast.
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00003885 ARCConversionTypeClass exprACTC = classifyTypeForARCConversion(castExpr->getType());
3886 ARCConversionTypeClass castACTC = classifyTypeForARCConversion(castType);
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003887 if (castACTC == ACTC_retainable && exprACTC == ACTC_coreFoundation) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003888 bool HasObjCBridgeAttr;
3889 bool ObjCBridgeAttrWillNotWarn =
3890 CheckObjCBridgeNSCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3891 false);
3892 if (ObjCBridgeAttrWillNotWarn && HasObjCBridgeAttr)
3893 return;
3894 bool HasObjCBridgeMutableAttr;
3895 bool ObjCBridgeMutableAttrWillNotWarn =
3896 CheckObjCBridgeNSCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3897 HasObjCBridgeMutableAttr, false);
3898 if (ObjCBridgeMutableAttrWillNotWarn && HasObjCBridgeMutableAttr)
3899 return;
3900
3901 if (HasObjCBridgeAttr)
3902 CheckObjCBridgeNSCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3903 true);
3904 else if (HasObjCBridgeMutableAttr)
3905 CheckObjCBridgeNSCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3906 HasObjCBridgeMutableAttr, true);
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003907 }
3908 else if (castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003909 bool HasObjCBridgeAttr;
3910 bool ObjCBridgeAttrWillNotWarn =
3911 CheckObjCBridgeCFCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3912 false);
3913 if (ObjCBridgeAttrWillNotWarn && HasObjCBridgeAttr)
3914 return;
3915 bool HasObjCBridgeMutableAttr;
3916 bool ObjCBridgeMutableAttrWillNotWarn =
3917 CheckObjCBridgeCFCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3918 HasObjCBridgeMutableAttr, false);
3919 if (ObjCBridgeMutableAttrWillNotWarn && HasObjCBridgeMutableAttr)
3920 return;
3921
3922 if (HasObjCBridgeAttr)
3923 CheckObjCBridgeCFCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3924 true);
3925 else if (HasObjCBridgeMutableAttr)
3926 CheckObjCBridgeCFCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3927 HasObjCBridgeMutableAttr, true);
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003928 }
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00003929}
3930
Fariborz Jahanian53f867a2014-06-26 21:22:16 +00003931void Sema::CheckObjCBridgeRelatedCast(QualType castType, Expr *castExpr) {
3932 QualType SrcType = castExpr->getType();
3933 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) {
3934 if (PRE->isExplicitProperty()) {
3935 if (ObjCPropertyDecl *PDecl = PRE->getExplicitProperty())
3936 SrcType = PDecl->getType();
3937 }
3938 else if (PRE->isImplicitProperty()) {
3939 if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter())
3940 SrcType = Getter->getReturnType();
Fariborz Jahanian53f867a2014-06-26 21:22:16 +00003941 }
3942 }
3943
3944 ARCConversionTypeClass srcExprACTC = classifyTypeForARCConversion(SrcType);
3945 ARCConversionTypeClass castExprACTC = classifyTypeForARCConversion(castType);
3946 if (srcExprACTC != ACTC_retainable || castExprACTC != ACTC_coreFoundation)
3947 return;
3948 CheckObjCBridgeRelatedConversions(castExpr->getLocStart(),
3949 castType, SrcType, castExpr);
Fariborz Jahanian53f867a2014-06-26 21:22:16 +00003950}
3951
Fariborz Jahanianc70a5432014-05-10 17:40:11 +00003952bool Sema::CheckTollFreeBridgeStaticCast(QualType castType, Expr *castExpr,
3953 CastKind &Kind) {
3954 if (!getLangOpts().ObjC1)
3955 return false;
3956 ARCConversionTypeClass exprACTC =
3957 classifyTypeForARCConversion(castExpr->getType());
3958 ARCConversionTypeClass castACTC = classifyTypeForARCConversion(castType);
3959 if ((castACTC == ACTC_retainable && exprACTC == ACTC_coreFoundation) ||
3960 (castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable)) {
3961 CheckTollFreeBridgeCast(castType, castExpr);
3962 Kind = (castACTC == ACTC_coreFoundation) ? CK_BitCast
3963 : CK_CPointerToObjCPointerCast;
3964 return true;
3965 }
3966 return false;
3967}
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003968
3969bool Sema::checkObjCBridgeRelatedComponents(SourceLocation Loc,
3970 QualType DestType, QualType SrcType,
3971 ObjCInterfaceDecl *&RelatedClass,
3972 ObjCMethodDecl *&ClassMethod,
3973 ObjCMethodDecl *&InstanceMethod,
3974 TypedefNameDecl *&TDNDecl,
George Burgess IV60bc9722016-01-13 23:36:34 +00003975 bool CfToNs, bool Diagnose) {
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003976 QualType T = CfToNs ? SrcType : DestType;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003977 ObjCBridgeRelatedAttr *ObjCBAttr = ObjCBridgeRelatedAttrFromType(T, TDNDecl);
3978 if (!ObjCBAttr)
3979 return false;
3980
3981 IdentifierInfo *RCId = ObjCBAttr->getRelatedClass();
3982 IdentifierInfo *CMId = ObjCBAttr->getClassMethod();
3983 IdentifierInfo *IMId = ObjCBAttr->getInstanceMethod();
3984 if (!RCId)
3985 return false;
Craig Topperc3ec1492014-05-26 06:22:03 +00003986 NamedDecl *Target = nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003987 // Check for an existing type with this name.
3988 LookupResult R(*this, DeclarationName(RCId), SourceLocation(),
3989 Sema::LookupOrdinaryName);
3990 if (!LookupName(R, TUScope)) {
George Burgess IV60bc9722016-01-13 23:36:34 +00003991 if (Diagnose) {
3992 Diag(Loc, diag::err_objc_bridged_related_invalid_class) << RCId
3993 << SrcType << DestType;
3994 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3995 }
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003996 return false;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003997 }
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003998 Target = R.getFoundDecl();
3999 if (Target && isa<ObjCInterfaceDecl>(Target))
4000 RelatedClass = cast<ObjCInterfaceDecl>(Target);
4001 else {
George Burgess IV60bc9722016-01-13 23:36:34 +00004002 if (Diagnose) {
4003 Diag(Loc, diag::err_objc_bridged_related_invalid_class_name) << RCId
4004 << SrcType << DestType;
4005 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
4006 if (Target)
4007 Diag(Target->getLocStart(), diag::note_declared_at);
4008 }
Fariborz Jahanian67379e22013-12-09 22:04:26 +00004009 return false;
4010 }
4011
4012 // Check for an existing class method with the given selector name.
4013 if (CfToNs && CMId) {
4014 Selector Sel = Context.Selectors.getUnarySelector(CMId);
4015 ClassMethod = RelatedClass->lookupMethod(Sel, false);
4016 if (!ClassMethod) {
George Burgess IV60bc9722016-01-13 23:36:34 +00004017 if (Diagnose) {
4018 Diag(Loc, diag::err_objc_bridged_related_known_method)
4019 << SrcType << DestType << Sel << false;
4020 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
4021 }
Fariborz Jahanian67379e22013-12-09 22:04:26 +00004022 return false;
4023 }
4024 }
4025
4026 // Check for an existing instance method with the given selector name.
4027 if (!CfToNs && IMId) {
4028 Selector Sel = Context.Selectors.getNullarySelector(IMId);
4029 InstanceMethod = RelatedClass->lookupMethod(Sel, true);
4030 if (!InstanceMethod) {
George Burgess IV60bc9722016-01-13 23:36:34 +00004031 if (Diagnose) {
4032 Diag(Loc, diag::err_objc_bridged_related_known_method)
4033 << SrcType << DestType << Sel << true;
4034 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
4035 }
Fariborz Jahanian67379e22013-12-09 22:04:26 +00004036 return false;
4037 }
4038 }
4039 return true;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00004040}
4041
4042bool
4043Sema::CheckObjCBridgeRelatedConversions(SourceLocation Loc,
Fariborz Jahaniandb765772013-12-10 17:08:13 +00004044 QualType DestType, QualType SrcType,
George Burgess IV60bc9722016-01-13 23:36:34 +00004045 Expr *&SrcExpr, bool Diagnose) {
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00004046 ARCConversionTypeClass rhsExprACTC = classifyTypeForARCConversion(SrcType);
4047 ARCConversionTypeClass lhsExprACTC = classifyTypeForARCConversion(DestType);
4048 bool CfToNs = (rhsExprACTC == ACTC_coreFoundation && lhsExprACTC == ACTC_retainable);
4049 bool NsToCf = (rhsExprACTC == ACTC_retainable && lhsExprACTC == ACTC_coreFoundation);
4050 if (!CfToNs && !NsToCf)
4051 return false;
4052
4053 ObjCInterfaceDecl *RelatedClass;
Craig Topperc3ec1492014-05-26 06:22:03 +00004054 ObjCMethodDecl *ClassMethod = nullptr;
4055 ObjCMethodDecl *InstanceMethod = nullptr;
4056 TypedefNameDecl *TDNDecl = nullptr;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00004057 if (!checkObjCBridgeRelatedComponents(Loc, DestType, SrcType, RelatedClass,
George Burgess IV60bc9722016-01-13 23:36:34 +00004058 ClassMethod, InstanceMethod, TDNDecl,
4059 CfToNs, Diagnose))
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00004060 return false;
4061
4062 if (CfToNs) {
4063 // Implicit conversion from CF to ObjC object is needed.
Fariborz Jahaniandb765772013-12-10 17:08:13 +00004064 if (ClassMethod) {
George Burgess IV60bc9722016-01-13 23:36:34 +00004065 if (Diagnose) {
4066 std::string ExpressionString = "[";
4067 ExpressionString += RelatedClass->getNameAsString();
4068 ExpressionString += " ";
4069 ExpressionString += ClassMethod->getSelector().getAsString();
4070 SourceLocation SrcExprEndLoc = getLocForEndOfToken(SrcExpr->getLocEnd());
4071 // Provide a fixit: [RelatedClass ClassMethod SrcExpr]
4072 Diag(Loc, diag::err_objc_bridged_related_known_method)
4073 << SrcType << DestType << ClassMethod->getSelector() << false
4074 << FixItHint::CreateInsertion(SrcExpr->getLocStart(), ExpressionString)
4075 << FixItHint::CreateInsertion(SrcExprEndLoc, "]");
4076 Diag(RelatedClass->getLocStart(), diag::note_declared_at);
4077 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
Fariborz Jahanian381edf52013-12-16 22:54:37 +00004078
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004079 QualType receiverType = Context.getObjCInterfaceType(RelatedClass);
4080 // Argument.
4081 Expr *args[] = { SrcExpr };
4082 ExprResult msg = BuildClassMessageImplicit(receiverType, false,
Fariborz Jahanian381edf52013-12-16 22:54:37 +00004083 ClassMethod->getLocation(),
4084 ClassMethod->getSelector(), ClassMethod,
4085 MultiExprArg(args, 1));
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004086 SrcExpr = msg.get();
4087 }
Fariborz Jahanian381edf52013-12-16 22:54:37 +00004088 return true;
Fariborz Jahaniandb765772013-12-10 17:08:13 +00004089 }
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00004090 }
4091 else {
4092 // Implicit conversion from ObjC type to CF object is needed.
Fariborz Jahaniandb765772013-12-10 17:08:13 +00004093 if (InstanceMethod) {
George Burgess IV60bc9722016-01-13 23:36:34 +00004094 if (Diagnose) {
4095 std::string ExpressionString;
4096 SourceLocation SrcExprEndLoc =
4097 getLocForEndOfToken(SrcExpr->getLocEnd());
4098 if (InstanceMethod->isPropertyAccessor())
4099 if (const ObjCPropertyDecl *PDecl =
4100 InstanceMethod->findPropertyDecl()) {
4101 // fixit: ObjectExpr.propertyname when it is aproperty accessor.
4102 ExpressionString = ".";
4103 ExpressionString += PDecl->getNameAsString();
4104 Diag(Loc, diag::err_objc_bridged_related_known_method)
4105 << SrcType << DestType << InstanceMethod->getSelector() << true
4106 << FixItHint::CreateInsertion(SrcExprEndLoc, ExpressionString);
4107 }
4108 if (ExpressionString.empty()) {
4109 // Provide a fixit: [ObjectExpr InstanceMethod]
4110 ExpressionString = " ";
4111 ExpressionString += InstanceMethod->getSelector().getAsString();
4112 ExpressionString += "]";
4113
Fariborz Jahanian88b68982013-12-10 23:18:06 +00004114 Diag(Loc, diag::err_objc_bridged_related_known_method)
George Burgess IV60bc9722016-01-13 23:36:34 +00004115 << SrcType << DestType << InstanceMethod->getSelector() << true
4116 << FixItHint::CreateInsertion(SrcExpr->getLocStart(), "[")
4117 << FixItHint::CreateInsertion(SrcExprEndLoc, ExpressionString);
Fariborz Jahanian88b68982013-12-10 23:18:06 +00004118 }
George Burgess IV60bc9722016-01-13 23:36:34 +00004119 Diag(RelatedClass->getLocStart(), diag::note_declared_at);
4120 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
Fariborz Jahanian381edf52013-12-16 22:54:37 +00004121
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004122 ExprResult msg =
4123 BuildInstanceMessageImplicit(SrcExpr, SrcType,
4124 InstanceMethod->getLocation(),
4125 InstanceMethod->getSelector(),
4126 InstanceMethod, None);
4127 SrcExpr = msg.get();
4128 }
Fariborz Jahanian381edf52013-12-16 22:54:37 +00004129 return true;
Fariborz Jahaniandb765772013-12-10 17:08:13 +00004130 }
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00004131 }
Fariborz Jahanian381edf52013-12-16 22:54:37 +00004132 return false;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00004133}
4134
John McCall4124c492011-10-17 18:40:02 +00004135Sema::ARCConversionResult
Brian Kelley11352a82017-03-29 18:09:02 +00004136Sema::CheckObjCConversion(SourceRange castRange, QualType castType,
4137 Expr *&castExpr, CheckedConversionKind CCK,
4138 bool Diagnose, bool DiagnoseCFAudited,
4139 BinaryOperatorKind Opc) {
John McCall4124c492011-10-17 18:40:02 +00004140 QualType castExprType = castExpr->getType();
4141
4142 // For the purposes of the classification, we assume reference types
4143 // will bind to temporaries.
4144 QualType effCastType = castType;
4145 if (const ReferenceType *ref = castType->getAs<ReferenceType>())
4146 effCastType = ref->getPointeeType();
4147
4148 ARCConversionTypeClass exprACTC = classifyTypeForARCConversion(castExprType);
4149 ARCConversionTypeClass castACTC = classifyTypeForARCConversion(effCastType);
Fariborz Jahanian2fa646d2011-10-28 20:06:07 +00004150 if (exprACTC == castACTC) {
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004151 // Check for viability and report error if casting an rvalue to a
Fariborz Jahanian2fa646d2011-10-28 20:06:07 +00004152 // life-time qualifier.
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004153 if (castACTC == ACTC_retainable &&
Fariborz Jahanian2fa646d2011-10-28 20:06:07 +00004154 (CCK == CCK_CStyleCast || CCK == CCK_OtherCast) &&
George Burgess IV60bc9722016-01-13 23:36:34 +00004155 castType != castExprType) {
Fariborz Jahanian244b1872011-10-29 00:06:10 +00004156 const Type *DT = castType.getTypePtr();
4157 QualType QDT = castType;
4158 // We desugar some types but not others. We ignore those
4159 // that cannot happen in a cast; i.e. auto, and those which
4160 // should not be de-sugared; i.e typedef.
4161 if (const ParenType *PT = dyn_cast<ParenType>(DT))
4162 QDT = PT->desugar();
4163 else if (const TypeOfType *TP = dyn_cast<TypeOfType>(DT))
4164 QDT = TP->desugar();
4165 else if (const AttributedType *AT = dyn_cast<AttributedType>(DT))
4166 QDT = AT->desugar();
4167 if (QDT != castType &&
4168 QDT.getObjCLifetime() != Qualifiers::OCL_None) {
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004169 if (Diagnose) {
4170 SourceLocation loc = (castRange.isValid() ? castRange.getBegin()
4171 : castExpr->getExprLoc());
4172 Diag(loc, diag::err_arc_nolifetime_behavior);
4173 }
4174 return ACR_error;
Fariborz Jahanian244b1872011-10-29 00:06:10 +00004175 }
Fariborz Jahanian2fa646d2011-10-28 20:06:07 +00004176 }
4177 return ACR_okay;
4178 }
Brian Kelley11352a82017-03-29 18:09:02 +00004179
4180 // The life-time qualifier cast check above is all we need for ObjCWeak.
4181 // ObjCAutoRefCount has more restrictions on what is legal.
4182 if (!getLangOpts().ObjCAutoRefCount)
4183 return ACR_okay;
4184
John McCall4124c492011-10-17 18:40:02 +00004185 if (isAnyCLike(exprACTC) && isAnyCLike(castACTC)) return ACR_okay;
4186
4187 // Allow all of these types to be cast to integer types (but not
4188 // vice-versa).
4189 if (castACTC == ACTC_none && castType->isIntegralType(Context))
4190 return ACR_okay;
4191
4192 // Allow casts between pointers to lifetime types (e.g., __strong id*)
4193 // and pointers to void (e.g., cv void *). Casting from void* to lifetime*
4194 // must be explicit.
4195 if (exprACTC == ACTC_indirectRetainable && castACTC == ACTC_voidPtr)
4196 return ACR_okay;
4197 if (castACTC == ACTC_indirectRetainable && exprACTC == ACTC_voidPtr &&
Richard Smith1ef75542018-06-27 20:30:34 +00004198 isCast(CCK))
John McCall4124c492011-10-17 18:40:02 +00004199 return ACR_okay;
4200
Fariborz Jahanian36986c62012-07-27 22:37:07 +00004201 switch (ARCCastChecker(Context, exprACTC, castACTC, false).Visit(castExpr)) {
John McCall4124c492011-10-17 18:40:02 +00004202 // For invalid casts, fall through.
4203 case ACC_invalid:
4204 break;
4205
4206 // Do nothing for both bottom and +0.
4207 case ACC_bottom:
4208 case ACC_plusZero:
4209 return ACR_okay;
4210
4211 // If the result is +1, consume it here.
4212 case ACC_plusOne:
4213 castExpr = ImplicitCastExpr::Create(Context, castExpr->getType(),
4214 CK_ARCConsumeObject, castExpr,
Craig Topperc3ec1492014-05-26 06:22:03 +00004215 nullptr, VK_RValue);
Tim Shen4a05bb82016-06-21 20:29:17 +00004216 Cleanup.setExprNeedsCleanups(true);
John McCall4124c492011-10-17 18:40:02 +00004217 return ACR_okay;
4218 }
4219
4220 // If this is a non-implicit cast from id or block type to a
4221 // CoreFoundation type, delay complaining in case the cast is used
4222 // in an acceptable context.
Richard Smith1ef75542018-06-27 20:30:34 +00004223 if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC) && isCast(CCK))
John McCall4124c492011-10-17 18:40:02 +00004224 return ACR_unbridged;
4225
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004226 // Issue a diagnostic about a missing @-sign when implicit casting a cstring
4227 // to 'NSString *', instead of falling through to report a "bridge cast"
4228 // diagnostic.
Fariborz Jahanian283bf892013-12-18 21:04:43 +00004229 if (castACTC == ACTC_retainable && exprACTC == ACTC_none &&
George Burgess IV60bc9722016-01-13 23:36:34 +00004230 ConversionToObjCStringLiteralCheck(castType, castExpr, Diagnose))
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004231 return ACR_error;
Fariborz Jahanianbd714e92013-12-17 19:33:43 +00004232
Fariborz Jahanian25eef192013-07-31 21:40:51 +00004233 // Do not issue "bridge cast" diagnostic when implicit casting
4234 // a retainable object to a CF type parameter belonging to an audited
4235 // CF API function. Let caller issue a normal type mismatched diagnostic
4236 // instead.
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004237 if ((!DiagnoseCFAudited || exprACTC != ACTC_retainable ||
4238 castACTC != ACTC_coreFoundation) &&
4239 !(exprACTC == ACTC_voidPtr && castACTC == ACTC_retainable &&
4240 (Opc == BO_NE || Opc == BO_EQ))) {
4241 if (Diagnose)
George Burgess IV60bc9722016-01-13 23:36:34 +00004242 diagnoseObjCARCConversion(*this, castRange, castType, castACTC, castExpr,
4243 castExpr, exprACTC, CCK);
Bob Wilsonf5c53b82016-02-13 01:41:41 +00004244 return ACR_error;
4245 }
John McCall4124c492011-10-17 18:40:02 +00004246 return ACR_okay;
4247}
4248
4249/// Given that we saw an expression with the ARCUnbridgedCastTy
4250/// placeholder type, complain bitterly.
4251void Sema::diagnoseARCUnbridgedCast(Expr *e) {
4252 // We expect the spurious ImplicitCastExpr to already have been stripped.
4253 assert(!e->hasPlaceholderType(BuiltinType::ARCUnbridgedCast));
4254 CastExpr *realCast = cast<CastExpr>(e->IgnoreParens());
4255
4256 SourceRange castRange;
4257 QualType castType;
4258 CheckedConversionKind CCK;
4259
4260 if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) {
4261 castRange = SourceRange(cast->getLParenLoc(), cast->getRParenLoc());
4262 castType = cast->getTypeAsWritten();
4263 CCK = CCK_CStyleCast;
4264 } else if (ExplicitCastExpr *cast = dyn_cast<ExplicitCastExpr>(realCast)) {
4265 castRange = cast->getTypeInfoAsWritten()->getTypeLoc().getSourceRange();
4266 castType = cast->getTypeAsWritten();
4267 CCK = CCK_OtherCast;
4268 } else {
Akira Hatanaka2cd7e862017-05-09 01:54:51 +00004269 llvm_unreachable("Unexpected ImplicitCastExpr");
John McCall4124c492011-10-17 18:40:02 +00004270 }
4271
4272 ARCConversionTypeClass castACTC =
4273 classifyTypeForARCConversion(castType.getNonReferenceType());
4274
4275 Expr *castExpr = realCast->getSubExpr();
4276 assert(classifyTypeForARCConversion(castExpr->getType()) == ACTC_retainable);
4277
4278 diagnoseObjCARCConversion(*this, castRange, castType, castACTC,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00004279 castExpr, realCast, ACTC_retainable, CCK);
John McCall4124c492011-10-17 18:40:02 +00004280}
4281
4282/// stripARCUnbridgedCast - Given an expression of ARCUnbridgedCast
4283/// type, remove the placeholder cast.
4284Expr *Sema::stripARCUnbridgedCast(Expr *e) {
4285 assert(e->hasPlaceholderType(BuiltinType::ARCUnbridgedCast));
4286
4287 if (ParenExpr *pe = dyn_cast<ParenExpr>(e)) {
4288 Expr *sub = stripARCUnbridgedCast(pe->getSubExpr());
4289 return new (Context) ParenExpr(pe->getLParen(), pe->getRParen(), sub);
4290 } else if (UnaryOperator *uo = dyn_cast<UnaryOperator>(e)) {
4291 assert(uo->getOpcode() == UO_Extension);
4292 Expr *sub = stripARCUnbridgedCast(uo->getSubExpr());
Aaron Ballmana5038552018-01-09 13:07:03 +00004293 return new (Context)
4294 UnaryOperator(sub, UO_Extension, sub->getType(), sub->getValueKind(),
4295 sub->getObjectKind(), uo->getOperatorLoc(), false);
John McCall4124c492011-10-17 18:40:02 +00004296 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) {
4297 assert(!gse->isResultDependent());
4298
4299 unsigned n = gse->getNumAssocs();
4300 SmallVector<Expr*, 4> subExprs(n);
4301 SmallVector<TypeSourceInfo*, 4> subTypes(n);
4302 for (unsigned i = 0; i != n; ++i) {
4303 subTypes[i] = gse->getAssocTypeSourceInfo(i);
4304 Expr *sub = gse->getAssocExpr(i);
4305 if (i == gse->getResultIndex())
4306 sub = stripARCUnbridgedCast(sub);
4307 subExprs[i] = sub;
4308 }
4309
4310 return new (Context) GenericSelectionExpr(Context, gse->getGenericLoc(),
4311 gse->getControllingExpr(),
Benjamin Kramerc215e762012-08-24 11:54:20 +00004312 subTypes, subExprs,
4313 gse->getDefaultLoc(),
John McCall4124c492011-10-17 18:40:02 +00004314 gse->getRParenLoc(),
4315 gse->containsUnexpandedParameterPack(),
4316 gse->getResultIndex());
4317 } else {
4318 assert(isa<ImplicitCastExpr>(e) && "bad form of unbridged cast!");
4319 return cast<ImplicitCastExpr>(e)->getSubExpr();
4320 }
4321}
4322
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00004323bool Sema::CheckObjCARCUnavailableWeakConversion(QualType castType,
4324 QualType exprType) {
4325 QualType canCastType =
4326 Context.getCanonicalType(castType).getUnqualifiedType();
4327 QualType canExprType =
4328 Context.getCanonicalType(exprType).getUnqualifiedType();
4329 if (isa<ObjCObjectPointerType>(canCastType) &&
4330 castType.getObjCLifetime() == Qualifiers::OCL_Weak &&
4331 canExprType->isObjCObjectPointerType()) {
4332 if (const ObjCObjectPointerType *ObjT =
4333 canExprType->getAs<ObjCObjectPointerType>())
Richard Smith802c4b72012-08-23 06:16:52 +00004334 if (const ObjCInterfaceDecl *ObjI = ObjT->getInterfaceDecl())
4335 return !ObjI->isArcWeakrefUnavailable();
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00004336 }
4337 return true;
4338}
4339
John McCall4db5c3c2011-07-07 06:58:02 +00004340/// Look for an ObjCReclaimReturnedObject cast and destroy it.
4341static Expr *maybeUndoReclaimObject(Expr *e) {
Akira Hatanakacc7171a2017-10-10 01:24:33 +00004342 Expr *curExpr = e, *prevExpr = nullptr;
4343
4344 // Walk down the expression until we hit an implicit cast of kind
4345 // ARCReclaimReturnedObject or an Expr that is neither a Paren nor a Cast.
4346 while (true) {
4347 if (auto *pe = dyn_cast<ParenExpr>(curExpr)) {
4348 prevExpr = curExpr;
4349 curExpr = pe->getSubExpr();
4350 continue;
4351 }
4352
4353 if (auto *ce = dyn_cast<CastExpr>(curExpr)) {
4354 if (auto *ice = dyn_cast<ImplicitCastExpr>(ce))
4355 if (ice->getCastKind() == CK_ARCReclaimReturnedObject) {
4356 if (!prevExpr)
4357 return ice->getSubExpr();
4358 if (auto *pe = dyn_cast<ParenExpr>(prevExpr))
4359 pe->setSubExpr(ice->getSubExpr());
4360 else
4361 cast<CastExpr>(prevExpr)->setSubExpr(ice->getSubExpr());
4362 return e;
4363 }
4364
4365 prevExpr = curExpr;
4366 curExpr = ce->getSubExpr();
4367 continue;
4368 }
4369
4370 // Break out of the loop if curExpr is neither a Paren nor a Cast.
4371 break;
4372 }
John McCall4db5c3c2011-07-07 06:58:02 +00004373
4374 return e;
4375}
4376
John McCall31168b02011-06-15 23:02:42 +00004377ExprResult Sema::BuildObjCBridgedCast(SourceLocation LParenLoc,
4378 ObjCBridgeCastKind Kind,
4379 SourceLocation BridgeKeywordLoc,
4380 TypeSourceInfo *TSInfo,
4381 Expr *SubExpr) {
John McCalleb075542011-08-26 00:48:42 +00004382 ExprResult SubResult = UsualUnaryConversions(SubExpr);
4383 if (SubResult.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004384 SubExpr = SubResult.get();
John McCalleb075542011-08-26 00:48:42 +00004385
John McCall31168b02011-06-15 23:02:42 +00004386 QualType T = TSInfo->getType();
4387 QualType FromType = SubExpr->getType();
4388
John McCall9320b872011-09-09 05:25:32 +00004389 CastKind CK;
4390
John McCall31168b02011-06-15 23:02:42 +00004391 bool MustConsume = false;
4392 if (T->isDependentType() || SubExpr->isTypeDependent()) {
4393 // Okay: we'll build a dependent expression type.
John McCall9320b872011-09-09 05:25:32 +00004394 CK = CK_Dependent;
John McCall31168b02011-06-15 23:02:42 +00004395 } else if (T->isObjCARCBridgableType() && FromType->isCARCBridgableType()) {
4396 // Casting CF -> id
John McCall9320b872011-09-09 05:25:32 +00004397 CK = (T->isBlockPointerType() ? CK_AnyPointerToBlockPointerCast
4398 : CK_CPointerToObjCPointerCast);
John McCall31168b02011-06-15 23:02:42 +00004399 switch (Kind) {
4400 case OBC_Bridge:
4401 break;
4402
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004403 case OBC_BridgeRetained: {
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00004404 bool br = isKnownName("CFBridgingRelease");
John McCall31168b02011-06-15 23:02:42 +00004405 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
4406 << 2
4407 << FromType
4408 << (T->isBlockPointerType()? 1 : 0)
4409 << T
4410 << SubExpr->getSourceRange()
4411 << Kind;
4412 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
4413 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge");
4414 Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer)
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004415 << FromType << br
John McCall31168b02011-06-15 23:02:42 +00004416 << FixItHint::CreateReplacement(BridgeKeywordLoc,
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004417 br ? "CFBridgingRelease "
4418 : "__bridge_transfer ");
John McCall31168b02011-06-15 23:02:42 +00004419
4420 Kind = OBC_Bridge;
4421 break;
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004422 }
John McCall31168b02011-06-15 23:02:42 +00004423
4424 case OBC_BridgeTransfer:
4425 // We must consume the Objective-C object produced by the cast.
4426 MustConsume = true;
4427 break;
4428 }
4429 } else if (T->isCARCBridgableType() && FromType->isObjCARCBridgableType()) {
4430 // Okay: id -> CF
John McCall9320b872011-09-09 05:25:32 +00004431 CK = CK_BitCast;
John McCall31168b02011-06-15 23:02:42 +00004432 switch (Kind) {
Fariborz Jahanian214567c2014-10-28 17:26:21 +00004433 case OBC_Bridge:
4434 // Reclaiming a value that's going to be __bridge-casted to CF
4435 // is very dangerous, so we don't do it.
4436 SubExpr = maybeUndoReclaimObject(SubExpr);
4437 break;
John McCall31168b02011-06-15 23:02:42 +00004438
4439 case OBC_BridgeRetained:
4440 // Produce the object before casting it.
4441 SubExpr = ImplicitCastExpr::Create(Context, FromType,
John McCall2d637d22011-09-10 06:18:15 +00004442 CK_ARCProduceObject,
Craig Topperc3ec1492014-05-26 06:22:03 +00004443 SubExpr, nullptr, VK_RValue);
John McCall31168b02011-06-15 23:02:42 +00004444 break;
4445
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004446 case OBC_BridgeTransfer: {
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00004447 bool br = isKnownName("CFBridgingRetain");
John McCall31168b02011-06-15 23:02:42 +00004448 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
4449 << (FromType->isBlockPointerType()? 1 : 0)
4450 << FromType
4451 << 2
4452 << T
4453 << SubExpr->getSourceRange()
4454 << Kind;
4455
4456 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
4457 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge ");
4458 Diag(BridgeKeywordLoc, diag::note_arc_bridge_retained)
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004459 << T << br
4460 << FixItHint::CreateReplacement(BridgeKeywordLoc,
4461 br ? "CFBridgingRetain " : "__bridge_retained");
John McCall31168b02011-06-15 23:02:42 +00004462
4463 Kind = OBC_Bridge;
4464 break;
4465 }
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004466 }
John McCall31168b02011-06-15 23:02:42 +00004467 } else {
4468 Diag(LParenLoc, diag::err_arc_bridge_cast_incompatible)
4469 << FromType << T << Kind
4470 << SubExpr->getSourceRange()
4471 << TSInfo->getTypeLoc().getSourceRange();
4472 return ExprError();
4473 }
4474
John McCall9320b872011-09-09 05:25:32 +00004475 Expr *Result = new (Context) ObjCBridgedCastExpr(LParenLoc, Kind, CK,
John McCall31168b02011-06-15 23:02:42 +00004476 BridgeKeywordLoc,
4477 TSInfo, SubExpr);
4478
4479 if (MustConsume) {
Tim Shen4a05bb82016-06-21 20:29:17 +00004480 Cleanup.setExprNeedsCleanups(true);
John McCall2d637d22011-09-10 06:18:15 +00004481 Result = ImplicitCastExpr::Create(Context, T, CK_ARCConsumeObject, Result,
Craig Topperc3ec1492014-05-26 06:22:03 +00004482 nullptr, VK_RValue);
John McCall31168b02011-06-15 23:02:42 +00004483 }
4484
4485 return Result;
4486}
4487
4488ExprResult Sema::ActOnObjCBridgedCast(Scope *S,
4489 SourceLocation LParenLoc,
4490 ObjCBridgeCastKind Kind,
4491 SourceLocation BridgeKeywordLoc,
4492 ParsedType Type,
4493 SourceLocation RParenLoc,
4494 Expr *SubExpr) {
Craig Topperc3ec1492014-05-26 06:22:03 +00004495 TypeSourceInfo *TSInfo = nullptr;
John McCall31168b02011-06-15 23:02:42 +00004496 QualType T = GetTypeFromParser(Type, &TSInfo);
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00004497 if (Kind == OBC_Bridge)
4498 CheckTollFreeBridgeCast(T, SubExpr);
John McCall31168b02011-06-15 23:02:42 +00004499 if (!TSInfo)
4500 TSInfo = Context.getTrivialTypeSourceInfo(T, LParenLoc);
4501 return BuildObjCBridgedCast(LParenLoc, Kind, BridgeKeywordLoc, TSInfo,
4502 SubExpr);
4503}