blob: b663566ff7017360b969bd317dab1adbd8f024bf [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,
35 Expr **strings,
36 unsigned NumStrings) {
Chris Lattner163ffd22009-02-18 06:48:40 +000037 StringLiteral **Strings = reinterpret_cast<StringLiteral**>(strings);
38
Chris Lattnerd7670d92009-02-18 06:13:04 +000039 // Most ObjC strings are formed out of a single piece. However, we *can*
40 // have strings formed out of multiple @ strings with multiple pptokens in
41 // each one, e.g. @"foo" "bar" @"baz" "qux" which need to be turned into one
42 // StringLiteral for ObjCStringLiteral to hold onto.
Chris Lattner163ffd22009-02-18 06:48:40 +000043 StringLiteral *S = Strings[0];
Mike Stump11289f42009-09-09 15:08:12 +000044
Chris Lattnerd7670d92009-02-18 06:13:04 +000045 // If we have a multi-part string, merge it all together.
46 if (NumStrings != 1) {
Chris Lattnera3fc41d2008-01-04 22:32:30 +000047 // Concatenate objc strings.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +000048 SmallString<128> StrBuf;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000049 SmallVector<SourceLocation, 8> StrLocs;
Mike Stump11289f42009-09-09 15:08:12 +000050
Chris Lattner630970d2009-02-18 05:49:11 +000051 for (unsigned i = 0; i != NumStrings; ++i) {
Chris Lattner163ffd22009-02-18 06:48:40 +000052 S = Strings[i];
Mike Stump11289f42009-09-09 15:08:12 +000053
Douglas Gregorfb65e592011-07-27 05:40:30 +000054 // ObjC strings can't be wide or UTF.
55 if (!S->isAscii()) {
Chris Lattnerd7670d92009-02-18 06:13:04 +000056 Diag(S->getLocStart(), diag::err_cfstring_literal_not_string_constant)
57 << S->getSourceRange();
58 return true;
59 }
Mike Stump11289f42009-09-09 15:08:12 +000060
Benjamin Kramer35b077e2010-08-17 12:54:38 +000061 // Append the string.
62 StrBuf += S->getString();
Mike Stump11289f42009-09-09 15:08:12 +000063
Chris Lattner163ffd22009-02-18 06:48:40 +000064 // Get the locations of the string tokens.
65 StrLocs.append(S->tokloc_begin(), S->tokloc_end());
Chris Lattnera3fc41d2008-01-04 22:32:30 +000066 }
Mike Stump11289f42009-09-09 15:08:12 +000067
Chris Lattner163ffd22009-02-18 06:48:40 +000068 // Create the aggregate string with the appropriate content and location
69 // information.
Benjamin Kramercdac7612014-02-25 12:26:20 +000070 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType());
71 assert(CAT && "String literal not of constant array type!");
72 QualType StrTy = Context.getConstantArrayType(
73 CAT->getElementType(), llvm::APInt(32, StrBuf.size() + 1),
74 CAT->getSizeModifier(), CAT->getIndexTypeCVRQualifiers());
75 S = StringLiteral::Create(Context, StrBuf, StringLiteral::Ascii,
76 /*Pascal=*/false, StrTy, &StrLocs[0],
77 StrLocs.size());
Chris Lattnera3fc41d2008-01-04 22:32:30 +000078 }
Ted Kremeneke65b0862012-03-06 20:05:56 +000079
80 return BuildObjCStringLiteral(AtLocs[0], S);
81}
Mike Stump11289f42009-09-09 15:08:12 +000082
Ted Kremeneke65b0862012-03-06 20:05:56 +000083ExprResult Sema::BuildObjCStringLiteral(SourceLocation AtLoc, StringLiteral *S){
Chris Lattner6436fb62009-02-18 06:01:06 +000084 // Verify that this composite string is acceptable for ObjC strings.
85 if (CheckObjCString(S))
Chris Lattnera3fc41d2008-01-04 22:32:30 +000086 return true;
Chris Lattnerfffd6a72009-02-18 06:06:56 +000087
88 // Initialize the constant string interface lazily. This assumes
Steve Naroff54e59452009-04-07 14:18:33 +000089 // the NSString interface is seen in this translation unit. Note: We
90 // don't use NSConstantString, since the runtime team considers this
91 // interface private (even though it appears in the header files).
Chris Lattnerfffd6a72009-02-18 06:06:56 +000092 QualType Ty = Context.getObjCConstantStringInterface();
93 if (!Ty.isNull()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +000094 Ty = Context.getObjCObjectPointerType(Ty);
David Blaikiebbafb8a2012-03-11 07:00:24 +000095 } else if (getLangOpts().NoConstantCFStrings) {
Craig Topperc3ec1492014-05-26 06:22:03 +000096 IdentifierInfo *NSIdent=nullptr;
David Blaikiebbafb8a2012-03-11 07:00:24 +000097 std::string StringClass(getLangOpts().ObjCConstantStringClass);
Fariborz Jahanian50c925f2010-10-19 17:19:29 +000098
99 if (StringClass.empty())
100 NSIdent = &Context.Idents.get("NSConstantString");
101 else
102 NSIdent = &Context.Idents.get(StringClass);
103
Ted Kremeneke65b0862012-03-06 20:05:56 +0000104 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc,
Fariborz Jahanian07317632010-04-23 23:19:04 +0000105 LookupOrdinaryName);
106 if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) {
107 Context.setObjCConstantStringInterface(StrIF);
108 Ty = Context.getObjCConstantStringInterface();
109 Ty = Context.getObjCObjectPointerType(Ty);
110 } else {
111 // If there is no NSConstantString interface defined then treat this
112 // as error and recover from it.
113 Diag(S->getLocStart(), diag::err_no_nsconstant_string_class) << NSIdent
114 << S->getSourceRange();
115 Ty = Context.getObjCIdType();
116 }
Chris Lattner091f6982008-06-21 21:44:18 +0000117 } else {
Patrick Beard0caa3942012-04-19 00:25:12 +0000118 IdentifierInfo *NSIdent = NSAPIObj->getNSClassId(NSAPI::ClassId_NSString);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000119 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc,
Douglas Gregorb2ccf012010-04-15 22:33:43 +0000120 LookupOrdinaryName);
Chris Lattnerfffd6a72009-02-18 06:06:56 +0000121 if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) {
122 Context.setObjCConstantStringInterface(StrIF);
123 Ty = Context.getObjCConstantStringInterface();
Steve Naroff7cae42b2009-07-10 23:34:53 +0000124 Ty = Context.getObjCObjectPointerType(Ty);
Chris Lattnerfffd6a72009-02-18 06:06:56 +0000125 } else {
Fariborz Jahanian86f82662012-02-23 22:51:36 +0000126 // If there is no NSString interface defined, implicitly declare
127 // a @class NSString; and use that instead. This is to make sure
128 // type of an NSString literal is represented correctly, instead of
129 // being an 'id' type.
130 Ty = Context.getObjCNSStringType();
131 if (Ty.isNull()) {
132 ObjCInterfaceDecl *NSStringIDecl =
133 ObjCInterfaceDecl::Create (Context,
134 Context.getTranslationUnitDecl(),
135 SourceLocation(), NSIdent,
Douglas Gregor85f3f952015-07-07 03:57:15 +0000136 nullptr, nullptr, SourceLocation());
Fariborz Jahanian86f82662012-02-23 22:51:36 +0000137 Ty = Context.getObjCInterfaceType(NSStringIDecl);
138 Context.setObjCNSStringType(Ty);
139 }
140 Ty = Context.getObjCObjectPointerType(Ty);
Chris Lattnerfffd6a72009-02-18 06:06:56 +0000141 }
Chris Lattner091f6982008-06-21 21:44:18 +0000142 }
Mike Stump11289f42009-09-09 15:08:12 +0000143
Ted Kremeneke65b0862012-03-06 20:05:56 +0000144 return new (Context) ObjCStringLiteral(S, Ty, AtLoc);
145}
146
Jordy Rose08e500c2012-05-12 17:32:44 +0000147/// \brief Emits an error if the given method does not exist, or if the return
148/// type is not an Objective-C object.
149static bool validateBoxingMethod(Sema &S, SourceLocation Loc,
150 const ObjCInterfaceDecl *Class,
151 Selector Sel, const ObjCMethodDecl *Method) {
152 if (!Method) {
153 // FIXME: Is there a better way to avoid quotes than using getName()?
154 S.Diag(Loc, diag::err_undeclared_boxing_method) << Sel << Class->getName();
155 return false;
156 }
157
158 // Make sure the return type is reasonable.
Alp Toker314cc812014-01-25 16:55:45 +0000159 QualType ReturnType = Method->getReturnType();
Jordy Rose08e500c2012-05-12 17:32:44 +0000160 if (!ReturnType->isObjCObjectPointerType()) {
161 S.Diag(Loc, diag::err_objc_literal_method_sig)
162 << Sel;
163 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return)
164 << ReturnType;
165 return false;
166 }
167
168 return true;
169}
170
Alex Denisovb7d85632015-07-24 05:09:40 +0000171/// \brief Maps ObjCLiteralKind to NSClassIdKindKind
172static NSAPI::NSClassIdKindKind ClassKindFromLiteralKind(
173 Sema::ObjCLiteralKind LiteralKind) {
174 switch (LiteralKind) {
175 case Sema::LK_Array:
176 return NSAPI::ClassId_NSArray;
177 case Sema::LK_Dictionary:
178 return NSAPI::ClassId_NSDictionary;
179 case Sema::LK_Numeric:
180 return NSAPI::ClassId_NSNumber;
181 case Sema::LK_String:
182 return NSAPI::ClassId_NSString;
183 case Sema::LK_Boxed:
184 return NSAPI::ClassId_NSValue;
185
186 // there is no corresponding matching
187 // between LK_None/LK_Block and NSClassIdKindKind
188 case Sema::LK_Block:
189 case Sema::LK_None:
Aaron Ballman3e839de2015-07-24 12:47:27 +0000190 break;
Alex Denisovb7d85632015-07-24 05:09:40 +0000191 }
Aaron Ballman3e839de2015-07-24 12:47:27 +0000192 llvm_unreachable("LiteralKind can't be converted into a ClassKind");
Alex Denisovb7d85632015-07-24 05:09:40 +0000193}
194
195/// \brief Validates ObjCInterfaceDecl availability.
196/// ObjCInterfaceDecl, used to create ObjC literals, should be defined
197/// if clang not in a debugger mode.
198static bool ValidateObjCLiteralInterfaceDecl(Sema &S, ObjCInterfaceDecl *Decl,
199 SourceLocation Loc,
200 Sema::ObjCLiteralKind LiteralKind) {
201 if (!Decl) {
202 NSAPI::NSClassIdKindKind Kind = ClassKindFromLiteralKind(LiteralKind);
203 IdentifierInfo *II = S.NSAPIObj->getNSClassId(Kind);
204 S.Diag(Loc, diag::err_undeclared_objc_literal_class)
205 << II->getName() << LiteralKind;
206 return false;
207 } else if (!Decl->hasDefinition() && !S.getLangOpts().DebuggerObjCLiteral) {
208 S.Diag(Loc, diag::err_undeclared_objc_literal_class)
209 << Decl->getName() << LiteralKind;
210 S.Diag(Decl->getLocation(), diag::note_forward_class);
211 return false;
212 }
213
214 return true;
215}
216
217/// \brief Looks up ObjCInterfaceDecl of a given NSClassIdKindKind.
218/// Used to create ObjC literals, such as NSDictionary (@{}),
219/// NSArray (@[]) and Boxed Expressions (@())
220static ObjCInterfaceDecl *LookupObjCInterfaceDeclForLiteral(Sema &S,
221 SourceLocation Loc,
222 Sema::ObjCLiteralKind LiteralKind) {
223 NSAPI::NSClassIdKindKind ClassKind = ClassKindFromLiteralKind(LiteralKind);
224 IdentifierInfo *II = S.NSAPIObj->getNSClassId(ClassKind);
225 NamedDecl *IF = S.LookupSingleName(S.TUScope, II, Loc,
226 Sema::LookupOrdinaryName);
227 ObjCInterfaceDecl *ID = dyn_cast_or_null<ObjCInterfaceDecl>(IF);
228 if (!ID && S.getLangOpts().DebuggerObjCLiteral) {
229 ASTContext &Context = S.Context;
230 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
231 ID = ObjCInterfaceDecl::Create (Context, TU, SourceLocation(), II,
232 nullptr, nullptr, SourceLocation());
233 }
234
235 if (!ValidateObjCLiteralInterfaceDecl(S, ID, Loc, LiteralKind)) {
236 ID = nullptr;
237 }
238
239 return ID;
240}
241
Ted Kremeneke65b0862012-03-06 20:05:56 +0000242/// \brief Retrieve the NSNumber factory method that should be used to create
243/// an Objective-C literal for the given type.
244static ObjCMethodDecl *getNSNumberFactoryMethod(Sema &S, SourceLocation Loc,
Patrick Beard0caa3942012-04-19 00:25:12 +0000245 QualType NumberType,
246 bool isLiteral = false,
247 SourceRange R = SourceRange()) {
David Blaikie05785d12013-02-20 22:23:23 +0000248 Optional<NSAPI::NSNumberLiteralMethodKind> Kind =
249 S.NSAPIObj->getNSNumberFactoryMethodKind(NumberType);
250
Ted Kremeneke65b0862012-03-06 20:05:56 +0000251 if (!Kind) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000252 if (isLiteral) {
253 S.Diag(Loc, diag::err_invalid_nsnumber_type)
254 << NumberType << R;
255 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000256 return nullptr;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000257 }
Patrick Beard0caa3942012-04-19 00:25:12 +0000258
Ted Kremeneke65b0862012-03-06 20:05:56 +0000259 // If we already looked up this method, we're done.
260 if (S.NSNumberLiteralMethods[*Kind])
261 return S.NSNumberLiteralMethods[*Kind];
262
263 Selector Sel = S.NSAPIObj->getNSNumberLiteralSelector(*Kind,
264 /*Instance=*/false);
265
Patrick Beard0caa3942012-04-19 00:25:12 +0000266 ASTContext &CX = S.Context;
267
268 // Look up the NSNumber class, if we haven't done so already. It's cached
269 // in the Sema instance.
270 if (!S.NSNumberDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000271 S.NSNumberDecl = LookupObjCInterfaceDeclForLiteral(S, Loc,
272 Sema::LK_Numeric);
Patrick Beard0caa3942012-04-19 00:25:12 +0000273 if (!S.NSNumberDecl) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000274 return nullptr;
Patrick Beard0caa3942012-04-19 00:25:12 +0000275 }
Alex Denisove36748a2015-02-16 16:17:05 +0000276 }
277
278 if (S.NSNumberPointer.isNull()) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000279 // generate the pointer to NSNumber type.
Jordy Roseaca01f92012-05-12 17:32:52 +0000280 QualType NSNumberObject = CX.getObjCInterfaceType(S.NSNumberDecl);
281 S.NSNumberPointer = CX.getObjCObjectPointerType(NSNumberObject);
Patrick Beard0caa3942012-04-19 00:25:12 +0000282 }
283
Ted Kremeneke65b0862012-03-06 20:05:56 +0000284 // Look for the appropriate method within NSNumber.
Jordy Roseaca01f92012-05-12 17:32:52 +0000285 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel);
David Blaikiebbafb8a2012-03-11 07:00:24 +0000286 if (!Method && S.getLangOpts().DebuggerObjCLiteral) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000287 // create a stub definition this NSNumber factory method.
Craig Topperc3ec1492014-05-26 06:22:03 +0000288 TypeSourceInfo *ReturnTInfo = nullptr;
Alp Toker314cc812014-01-25 16:55:45 +0000289 Method =
290 ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel,
291 S.NSNumberPointer, ReturnTInfo, S.NSNumberDecl,
292 /*isInstance=*/false, /*isVariadic=*/false,
293 /*isPropertyAccessor=*/false,
294 /*isImplicitlyDeclared=*/true,
295 /*isDefined=*/false, ObjCMethodDecl::Required,
296 /*HasRelatedResultType=*/false);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000297 ParmVarDecl *value = ParmVarDecl::Create(S.Context, Method,
298 SourceLocation(), SourceLocation(),
Patrick Beard0caa3942012-04-19 00:25:12 +0000299 &CX.Idents.get("value"),
Craig Topperc3ec1492014-05-26 06:22:03 +0000300 NumberType, /*TInfo=*/nullptr,
301 SC_None, nullptr);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000302 Method->setMethodParams(S.Context, value, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000303 }
304
Jordy Rose08e500c2012-05-12 17:32:44 +0000305 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method))
Craig Topperc3ec1492014-05-26 06:22:03 +0000306 return nullptr;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000307
308 // Note: if the parameter type is out-of-line, we'll catch it later in the
309 // implicit conversion.
310
311 S.NSNumberLiteralMethods[*Kind] = Method;
312 return Method;
313}
314
Patrick Beard0caa3942012-04-19 00:25:12 +0000315/// BuildObjCNumericLiteral - builds an ObjCBoxedExpr AST node for the
316/// numeric literal expression. Type of the expression will be "NSNumber *".
Ted Kremeneke65b0862012-03-06 20:05:56 +0000317ExprResult Sema::BuildObjCNumericLiteral(SourceLocation AtLoc, Expr *Number) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000318 // Determine the type of the literal.
319 QualType NumberType = Number->getType();
320 if (CharacterLiteral *Char = dyn_cast<CharacterLiteral>(Number)) {
321 // In C, character literals have type 'int'. That's not the type we want
322 // to use to determine the Objective-c literal kind.
323 switch (Char->getKind()) {
324 case CharacterLiteral::Ascii:
325 NumberType = Context.CharTy;
326 break;
327
328 case CharacterLiteral::Wide:
Hans Wennborg0d81e012013-05-10 10:08:40 +0000329 NumberType = Context.getWideCharType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000330 break;
331
332 case CharacterLiteral::UTF16:
333 NumberType = Context.Char16Ty;
334 break;
335
336 case CharacterLiteral::UTF32:
337 NumberType = Context.Char32Ty;
338 break;
339 }
340 }
341
Ted Kremeneke65b0862012-03-06 20:05:56 +0000342 // Look for the appropriate method within NSNumber.
343 // Construct the literal.
Patrick Beard2565c592012-05-01 21:47:19 +0000344 SourceRange NR(Number->getSourceRange());
Patrick Beard0caa3942012-04-19 00:25:12 +0000345 ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType,
Patrick Beard2565c592012-05-01 21:47:19 +0000346 true, NR);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000347 if (!Method)
348 return ExprError();
349
350 // Convert the number to the type that the parameter expects.
Alp Toker03376dc2014-07-07 09:02:20 +0000351 ParmVarDecl *ParamDecl = Method->parameters()[0];
Patrick Beard2565c592012-05-01 21:47:19 +0000352 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
353 ParamDecl);
354 ExprResult ConvertedNumber = PerformCopyInitialization(Entity,
355 SourceLocation(),
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000356 Number);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000357 if (ConvertedNumber.isInvalid())
358 return ExprError();
359 Number = ConvertedNumber.get();
360
Patrick Beard2565c592012-05-01 21:47:19 +0000361 // Use the effective source range of the literal, including the leading '@'.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000362 return MaybeBindToTemporary(
Patrick Beard2565c592012-05-01 21:47:19 +0000363 new (Context) ObjCBoxedExpr(Number, NSNumberPointer, Method,
364 SourceRange(AtLoc, NR.getEnd())));
Ted Kremeneke65b0862012-03-06 20:05:56 +0000365}
366
367ExprResult Sema::ActOnObjCBoolLiteral(SourceLocation AtLoc,
368 SourceLocation ValueLoc,
369 bool Value) {
370 ExprResult Inner;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000371 if (getLangOpts().CPlusPlus) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000372 Inner = ActOnCXXBoolLiteral(ValueLoc, Value? tok::kw_true : tok::kw_false);
373 } else {
374 // C doesn't actually have a way to represent literal values of type
375 // _Bool. So, we'll use 0/1 and implicit cast to _Bool.
376 Inner = ActOnIntegerConstant(ValueLoc, Value? 1 : 0);
377 Inner = ImpCastExprToType(Inner.get(), Context.BoolTy,
378 CK_IntegralToBoolean);
379 }
380
381 return BuildObjCNumericLiteral(AtLoc, Inner.get());
382}
383
384/// \brief Check that the given expression is a valid element of an Objective-C
385/// collection literal.
386static ExprResult CheckObjCCollectionLiteralElement(Sema &S, Expr *Element,
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000387 QualType T,
388 bool ArrayLiteral = false) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000389 // If the expression is type-dependent, there's nothing for us to do.
390 if (Element->isTypeDependent())
391 return Element;
392
393 ExprResult Result = S.CheckPlaceholderExpr(Element);
394 if (Result.isInvalid())
395 return ExprError();
396 Element = Result.get();
397
398 // In C++, check for an implicit conversion to an Objective-C object pointer
399 // type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000400 if (S.getLangOpts().CPlusPlus && Element->getType()->isRecordType()) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000401 InitializedEntity Entity
Jordy Roseaca01f92012-05-12 17:32:52 +0000402 = InitializedEntity::InitializeParameter(S.Context, T,
403 /*Consumed=*/false);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000404 InitializationKind Kind
Jordy Roseaca01f92012-05-12 17:32:52 +0000405 = InitializationKind::CreateCopy(Element->getLocStart(),
406 SourceLocation());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +0000407 InitializationSequence Seq(S, Entity, Kind, Element);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000408 if (!Seq.Failed())
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000409 return Seq.Perform(S, Entity, Kind, Element);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000410 }
411
412 Expr *OrigElement = Element;
413
414 // Perform lvalue-to-rvalue conversion.
415 Result = S.DefaultLvalueConversion(Element);
416 if (Result.isInvalid())
417 return ExprError();
418 Element = Result.get();
419
420 // Make sure that we have an Objective-C pointer type or block.
421 if (!Element->getType()->isObjCObjectPointerType() &&
422 !Element->getType()->isBlockPointerType()) {
423 bool Recovered = false;
424
425 // If this is potentially an Objective-C numeric literal, add the '@'.
426 if (isa<IntegerLiteral>(OrigElement) ||
427 isa<CharacterLiteral>(OrigElement) ||
428 isa<FloatingLiteral>(OrigElement) ||
429 isa<ObjCBoolLiteralExpr>(OrigElement) ||
430 isa<CXXBoolLiteralExpr>(OrigElement)) {
431 if (S.NSAPIObj->getNSNumberFactoryMethodKind(OrigElement->getType())) {
432 int Which = isa<CharacterLiteral>(OrigElement) ? 1
433 : (isa<CXXBoolLiteralExpr>(OrigElement) ||
434 isa<ObjCBoolLiteralExpr>(OrigElement)) ? 2
435 : 3;
436
437 S.Diag(OrigElement->getLocStart(), diag::err_box_literal_collection)
438 << Which << OrigElement->getSourceRange()
439 << FixItHint::CreateInsertion(OrigElement->getLocStart(), "@");
440
441 Result = S.BuildObjCNumericLiteral(OrigElement->getLocStart(),
442 OrigElement);
443 if (Result.isInvalid())
444 return ExprError();
445
446 Element = Result.get();
447 Recovered = true;
448 }
449 }
450 // If this is potentially an Objective-C string literal, add the '@'.
451 else if (StringLiteral *String = dyn_cast<StringLiteral>(OrigElement)) {
452 if (String->isAscii()) {
453 S.Diag(OrigElement->getLocStart(), diag::err_box_literal_collection)
454 << 0 << OrigElement->getSourceRange()
455 << FixItHint::CreateInsertion(OrigElement->getLocStart(), "@");
456
457 Result = S.BuildObjCStringLiteral(OrigElement->getLocStart(), String);
458 if (Result.isInvalid())
459 return ExprError();
460
461 Element = Result.get();
462 Recovered = true;
463 }
464 }
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000465
Ted Kremeneke65b0862012-03-06 20:05:56 +0000466 if (!Recovered) {
467 S.Diag(Element->getLocStart(), diag::err_invalid_collection_element)
468 << Element->getType();
469 return ExprError();
470 }
471 }
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000472 if (ArrayLiteral)
Ted Kremenek197fee42013-10-09 22:34:33 +0000473 if (ObjCStringLiteral *getString =
474 dyn_cast<ObjCStringLiteral>(OrigElement)) {
475 if (StringLiteral *SL = getString->getString()) {
476 unsigned numConcat = SL->getNumConcatenated();
477 if (numConcat > 1) {
478 // Only warn if the concatenated string doesn't come from a macro.
479 bool hasMacro = false;
480 for (unsigned i = 0; i < numConcat ; ++i)
481 if (SL->getStrTokenLoc(i).isMacroID()) {
482 hasMacro = true;
483 break;
484 }
485 if (!hasMacro)
486 S.Diag(Element->getLocStart(),
487 diag::warn_concatenated_nsarray_literal)
488 << Element->getType();
489 }
490 }
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000491 }
492
Ted Kremeneke65b0862012-03-06 20:05:56 +0000493 // Make sure that the element has the type that the container factory
494 // function expects.
495 return S.PerformCopyInitialization(
496 InitializedEntity::InitializeParameter(S.Context, T,
497 /*Consumed=*/false),
498 Element->getLocStart(), Element);
499}
500
Patrick Beard0caa3942012-04-19 00:25:12 +0000501ExprResult Sema::BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) {
502 if (ValueExpr->isTypeDependent()) {
503 ObjCBoxedExpr *BoxedExpr =
Craig Topperc3ec1492014-05-26 06:22:03 +0000504 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000505 return BoxedExpr;
Patrick Beard0caa3942012-04-19 00:25:12 +0000506 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000507 ObjCMethodDecl *BoxingMethod = nullptr;
Patrick Beard0caa3942012-04-19 00:25:12 +0000508 QualType BoxedType;
509 // Convert the expression to an RValue, so we can check for pointer types...
510 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr);
511 if (RValue.isInvalid()) {
512 return ExprError();
513 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000514 SourceLocation Loc = SR.getBegin();
Patrick Beard0caa3942012-04-19 00:25:12 +0000515 ValueExpr = RValue.get();
Patrick Beard2565c592012-05-01 21:47:19 +0000516 QualType ValueType(ValueExpr->getType());
Patrick Beard0caa3942012-04-19 00:25:12 +0000517 if (const PointerType *PT = ValueType->getAs<PointerType>()) {
518 QualType PointeeType = PT->getPointeeType();
519 if (Context.hasSameUnqualifiedType(PointeeType, Context.CharTy)) {
520
521 if (!NSStringDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000522 NSStringDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
523 Sema::LK_String);
Patrick Beard0caa3942012-04-19 00:25:12 +0000524 if (!NSStringDecl) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000525 return ExprError();
526 }
Jordy Roseaca01f92012-05-12 17:32:52 +0000527 QualType NSStringObject = Context.getObjCInterfaceType(NSStringDecl);
528 NSStringPointer = Context.getObjCObjectPointerType(NSStringObject);
Patrick Beard0caa3942012-04-19 00:25:12 +0000529 }
530
531 if (!StringWithUTF8StringMethod) {
532 IdentifierInfo *II = &Context.Idents.get("stringWithUTF8String");
533 Selector stringWithUTF8String = Context.Selectors.getUnarySelector(II);
534
535 // Look for the appropriate method within NSString.
Jordy Rose08e500c2012-05-12 17:32:44 +0000536 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String);
537 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000538 // Debugger needs to work even if NSString hasn't been defined.
Craig Topperc3ec1492014-05-26 06:22:03 +0000539 TypeSourceInfo *ReturnTInfo = nullptr;
Alp Toker314cc812014-01-25 16:55:45 +0000540 ObjCMethodDecl *M = ObjCMethodDecl::Create(
541 Context, SourceLocation(), SourceLocation(), stringWithUTF8String,
542 NSStringPointer, ReturnTInfo, NSStringDecl,
543 /*isInstance=*/false, /*isVariadic=*/false,
544 /*isPropertyAccessor=*/false,
545 /*isImplicitlyDeclared=*/true,
546 /*isDefined=*/false, ObjCMethodDecl::Required,
547 /*HasRelatedResultType=*/false);
Jordy Roseaca01f92012-05-12 17:32:52 +0000548 QualType ConstCharType = Context.CharTy.withConst();
Patrick Beard0caa3942012-04-19 00:25:12 +0000549 ParmVarDecl *value =
550 ParmVarDecl::Create(Context, M,
551 SourceLocation(), SourceLocation(),
552 &Context.Idents.get("value"),
Jordy Roseaca01f92012-05-12 17:32:52 +0000553 Context.getPointerType(ConstCharType),
Craig Topperc3ec1492014-05-26 06:22:03 +0000554 /*TInfo=*/nullptr,
555 SC_None, nullptr);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000556 M->setMethodParams(Context, value, None);
Jordy Rose08e500c2012-05-12 17:32:44 +0000557 BoxingMethod = M;
Patrick Beard0caa3942012-04-19 00:25:12 +0000558 }
Jordy Rose890f4572012-05-12 15:53:41 +0000559
Alex Denisovb7d85632015-07-24 05:09:40 +0000560 if (!validateBoxingMethod(*this, Loc, NSStringDecl,
Jordy Rose08e500c2012-05-12 17:32:44 +0000561 stringWithUTF8String, BoxingMethod))
562 return ExprError();
563
564 StringWithUTF8StringMethod = BoxingMethod;
Patrick Beard0caa3942012-04-19 00:25:12 +0000565 }
566
567 BoxingMethod = StringWithUTF8StringMethod;
568 BoxedType = NSStringPointer;
569 }
Patrick Beard2565c592012-05-01 21:47:19 +0000570 } else if (ValueType->isBuiltinType()) {
Patrick Beard0caa3942012-04-19 00:25:12 +0000571 // The other types we support are numeric, char and BOOL/bool. We could also
572 // provide limited support for structure types, such as NSRange, NSRect, and
573 // NSSize. See NSValue (NSValueGeometryExtensions) in <Foundation/NSGeometry.h>
574 // for more details.
575
576 // Check for a top-level character literal.
577 if (const CharacterLiteral *Char =
578 dyn_cast<CharacterLiteral>(ValueExpr->IgnoreParens())) {
579 // In C, character literals have type 'int'. That's not the type we want
580 // to use to determine the Objective-c literal kind.
581 switch (Char->getKind()) {
582 case CharacterLiteral::Ascii:
583 ValueType = Context.CharTy;
584 break;
585
586 case CharacterLiteral::Wide:
Hans Wennborg0d81e012013-05-10 10:08:40 +0000587 ValueType = Context.getWideCharType();
Patrick Beard0caa3942012-04-19 00:25:12 +0000588 break;
589
590 case CharacterLiteral::UTF16:
591 ValueType = Context.Char16Ty;
592 break;
593
594 case CharacterLiteral::UTF32:
595 ValueType = Context.Char32Ty;
596 break;
597 }
598 }
Fariborz Jahanian5d64abb2014-06-18 20:49:02 +0000599 CheckForIntOverflow(ValueExpr);
Patrick Beard0caa3942012-04-19 00:25:12 +0000600 // FIXME: Do I need to do anything special with BoolTy expressions?
601
602 // Look for the appropriate method within NSNumber.
Alex Denisovb7d85632015-07-24 05:09:40 +0000603 BoxingMethod = getNSNumberFactoryMethod(*this, Loc, ValueType);
Patrick Beard0caa3942012-04-19 00:25:12 +0000604 BoxedType = NSNumberPointer;
Argyrios Kyrtzidis8e6951d2012-05-15 19:17:44 +0000605 } else if (const EnumType *ET = ValueType->getAs<EnumType>()) {
606 if (!ET->getDecl()->isComplete()) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000607 Diag(Loc, diag::err_objc_incomplete_boxed_expression_type)
Argyrios Kyrtzidis8e6951d2012-05-15 19:17:44 +0000608 << ValueType << ValueExpr->getSourceRange();
609 return ExprError();
610 }
611
Alex Denisovb7d85632015-07-24 05:09:40 +0000612 BoxingMethod = getNSNumberFactoryMethod(*this, Loc,
Argyrios Kyrtzidis8e6951d2012-05-15 19:17:44 +0000613 ET->getDecl()->getIntegerType());
614 BoxedType = NSNumberPointer;
Alex Denisovfde64952015-06-26 05:28:36 +0000615 } else if (ValueType->isObjCBoxableRecordType()) {
616 // Support for structure types, that marked as objc_boxable
617 // struct __attribute__((objc_boxable)) s { ... };
618
619 // Look up the NSValue class, if we haven't done so already. It's cached
620 // in the Sema instance.
621 if (!NSValueDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000622 NSValueDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
623 Sema::LK_Boxed);
Alex Denisovfde64952015-06-26 05:28:36 +0000624 if (!NSValueDecl) {
Alex Denisovfde64952015-06-26 05:28:36 +0000625 return ExprError();
626 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000627
Alex Denisovfde64952015-06-26 05:28:36 +0000628 // generate the pointer to NSValue type.
629 QualType NSValueObject = Context.getObjCInterfaceType(NSValueDecl);
630 NSValuePointer = Context.getObjCObjectPointerType(NSValueObject);
631 }
632
633 if (!ValueWithBytesObjCTypeMethod) {
634 IdentifierInfo *II[] = {
635 &Context.Idents.get("valueWithBytes"),
636 &Context.Idents.get("objCType")
637 };
638 Selector ValueWithBytesObjCType = Context.Selectors.getSelector(2, II);
639
640 // Look for the appropriate method within NSValue.
641 BoxingMethod = NSValueDecl->lookupClassMethod(ValueWithBytesObjCType);
642 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
643 // Debugger needs to work even if NSValue hasn't been defined.
644 TypeSourceInfo *ReturnTInfo = nullptr;
645 ObjCMethodDecl *M = ObjCMethodDecl::Create(
646 Context,
647 SourceLocation(),
648 SourceLocation(),
649 ValueWithBytesObjCType,
650 NSValuePointer,
651 ReturnTInfo,
652 NSValueDecl,
653 /*isInstance=*/false,
654 /*isVariadic=*/false,
655 /*isPropertyAccessor=*/false,
656 /*isImplicitlyDeclared=*/true,
657 /*isDefined=*/false,
658 ObjCMethodDecl::Required,
659 /*HasRelatedResultType=*/false);
660
661 SmallVector<ParmVarDecl *, 2> Params;
662
663 ParmVarDecl *bytes =
664 ParmVarDecl::Create(Context, M,
665 SourceLocation(), SourceLocation(),
666 &Context.Idents.get("bytes"),
667 Context.VoidPtrTy.withConst(),
668 /*TInfo=*/nullptr,
669 SC_None, nullptr);
670 Params.push_back(bytes);
671
672 QualType ConstCharType = Context.CharTy.withConst();
673 ParmVarDecl *type =
674 ParmVarDecl::Create(Context, M,
675 SourceLocation(), SourceLocation(),
676 &Context.Idents.get("type"),
677 Context.getPointerType(ConstCharType),
678 /*TInfo=*/nullptr,
679 SC_None, nullptr);
680 Params.push_back(type);
681
682 M->setMethodParams(Context, Params, None);
683 BoxingMethod = M;
684 }
685
Alex Denisovb7d85632015-07-24 05:09:40 +0000686 if (!validateBoxingMethod(*this, Loc, NSValueDecl,
Alex Denisovfde64952015-06-26 05:28:36 +0000687 ValueWithBytesObjCType, BoxingMethod))
688 return ExprError();
689
690 ValueWithBytesObjCTypeMethod = BoxingMethod;
691 }
692
693 if (!ValueType.isTriviallyCopyableType(Context)) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000694 Diag(Loc, diag::err_objc_non_trivially_copyable_boxed_expression_type)
Alex Denisovfde64952015-06-26 05:28:36 +0000695 << ValueType << ValueExpr->getSourceRange();
696 return ExprError();
697 }
698
699 BoxingMethod = ValueWithBytesObjCTypeMethod;
700 BoxedType = NSValuePointer;
Patrick Beard0caa3942012-04-19 00:25:12 +0000701 }
702
703 if (!BoxingMethod) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000704 Diag(Loc, diag::err_objc_illegal_boxed_expression_type)
Patrick Beard0caa3942012-04-19 00:25:12 +0000705 << ValueType << ValueExpr->getSourceRange();
706 return ExprError();
707 }
708
Alex Denisovb7d85632015-07-24 05:09:40 +0000709 DiagnoseUseOfDecl(BoxingMethod, Loc);
Alex Denisovfde64952015-06-26 05:28:36 +0000710
711 ExprResult ConvertedValueExpr;
712 if (ValueType->isObjCBoxableRecordType()) {
713 InitializedEntity IE = InitializedEntity::InitializeTemporary(ValueType);
714 ConvertedValueExpr = PerformCopyInitialization(IE, ValueExpr->getExprLoc(),
715 ValueExpr);
716 } else {
717 // Convert the expression to the type that the parameter requires.
718 ParmVarDecl *ParamDecl = BoxingMethod->parameters()[0];
719 InitializedEntity IE = InitializedEntity::InitializeParameter(Context,
720 ParamDecl);
721 ConvertedValueExpr = PerformCopyInitialization(IE, SourceLocation(),
722 ValueExpr);
723 }
724
Patrick Beard0caa3942012-04-19 00:25:12 +0000725 if (ConvertedValueExpr.isInvalid())
726 return ExprError();
727 ValueExpr = ConvertedValueExpr.get();
728
729 ObjCBoxedExpr *BoxedExpr =
730 new (Context) ObjCBoxedExpr(ValueExpr, BoxedType,
731 BoxingMethod, SR);
732 return MaybeBindToTemporary(BoxedExpr);
733}
734
John McCallf2538342012-07-31 05:14:30 +0000735/// Build an ObjC subscript pseudo-object expression, given that
736/// that's supported by the runtime.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000737ExprResult Sema::BuildObjCSubscriptExpression(SourceLocation RB, Expr *BaseExpr,
738 Expr *IndexExpr,
739 ObjCMethodDecl *getterMethod,
740 ObjCMethodDecl *setterMethod) {
Fariborz Jahaniane1e33f82013-11-01 21:58:17 +0000741 assert(!LangOpts.isSubscriptPointerArithmetic());
John McCall5fb5df92012-06-20 06:18:46 +0000742
John McCallf2538342012-07-31 05:14:30 +0000743 // We can't get dependent types here; our callers should have
744 // filtered them out.
745 assert((!BaseExpr->isTypeDependent() && !IndexExpr->isTypeDependent()) &&
746 "base or index cannot have dependent type here");
747
748 // Filter out placeholders in the index. In theory, overloads could
749 // be preserved here, although that might not actually work correctly.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000750 ExprResult Result = CheckPlaceholderExpr(IndexExpr);
751 if (Result.isInvalid())
752 return ExprError();
753 IndexExpr = Result.get();
754
John McCallf2538342012-07-31 05:14:30 +0000755 // Perform lvalue-to-rvalue conversion on the base.
Ted Kremeneke65b0862012-03-06 20:05:56 +0000756 Result = DefaultLvalueConversion(BaseExpr);
757 if (Result.isInvalid())
758 return ExprError();
759 BaseExpr = Result.get();
John McCallf2538342012-07-31 05:14:30 +0000760
761 // Build the pseudo-object expression.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000762 return ObjCSubscriptRefExpr::Create(Context, BaseExpr, IndexExpr,
763 Context.PseudoObjectTy, getterMethod,
764 setterMethod, RB);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000765}
766
767ExprResult Sema::BuildObjCArrayLiteral(SourceRange SR, MultiExprArg Elements) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000768 SourceLocation Loc = SR.getBegin();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000769
Alex Denisovb7d85632015-07-24 05:09:40 +0000770 if (!NSArrayDecl) {
771 NSArrayDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
772 Sema::LK_Array);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000773 if (!NSArrayDecl) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000774 return ExprError();
775 }
776 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000777
Fariborz Jahanian495bc3f2014-08-08 17:31:14 +0000778 // Find the arrayWithObjects:count: method, if we haven't done so already.
Fariborz Jahanianbf09db42014-08-08 18:29:52 +0000779 QualType IdT = Context.getObjCIdType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000780 if (!ArrayWithObjectsMethod) {
781 Selector
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000782 Sel = NSAPIObj->getNSArraySelector(NSAPI::NSArr_arrayWithObjectsCount);
783 ObjCMethodDecl *Method = NSArrayDecl->lookupClassMethod(Sel);
Jordy Rose08e500c2012-05-12 17:32:44 +0000784 if (!Method && getLangOpts().DebuggerObjCLiteral) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000785 TypeSourceInfo *ReturnTInfo = nullptr;
Alp Toker314cc812014-01-25 16:55:45 +0000786 Method = ObjCMethodDecl::Create(
787 Context, SourceLocation(), SourceLocation(), Sel, IdT, ReturnTInfo,
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000788 Context.getTranslationUnitDecl(), false /*Instance*/,
Alp Toker314cc812014-01-25 16:55:45 +0000789 false /*isVariadic*/,
790 /*isPropertyAccessor=*/false,
791 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
792 ObjCMethodDecl::Required, false);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000793 SmallVector<ParmVarDecl *, 2> Params;
Jordy Rose08e500c2012-05-12 17:32:44 +0000794 ParmVarDecl *objects = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000795 SourceLocation(),
796 SourceLocation(),
797 &Context.Idents.get("objects"),
798 Context.getPointerType(IdT),
Craig Topperc3ec1492014-05-26 06:22:03 +0000799 /*TInfo=*/nullptr,
800 SC_None, nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000801 Params.push_back(objects);
Jordy Rose08e500c2012-05-12 17:32:44 +0000802 ParmVarDecl *cnt = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000803 SourceLocation(),
804 SourceLocation(),
805 &Context.Idents.get("cnt"),
806 Context.UnsignedLongTy,
Craig Topperc3ec1492014-05-26 06:22:03 +0000807 /*TInfo=*/nullptr, SC_None,
808 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000809 Params.push_back(cnt);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000810 Method->setMethodParams(Context, Params, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000811 }
812
Alex Denisovb7d85632015-07-24 05:09:40 +0000813 if (!validateBoxingMethod(*this, Loc, NSArrayDecl, Sel, Method))
Ted Kremeneke65b0862012-03-06 20:05:56 +0000814 return ExprError();
Jordy Rose08e500c2012-05-12 17:32:44 +0000815
Jordy Rose4af44872012-05-12 17:32:56 +0000816 // Dig out the type that all elements should be converted to.
Alp Toker03376dc2014-07-07 09:02:20 +0000817 QualType T = Method->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000818 const PointerType *PtrT = T->getAs<PointerType>();
819 if (!PtrT ||
820 !Context.hasSameUnqualifiedType(PtrT->getPointeeType(), IdT)) {
821 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
822 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000823 Diag(Method->parameters()[0]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000824 diag::note_objc_literal_method_param)
825 << 0 << T
826 << Context.getPointerType(IdT.withConst());
827 return ExprError();
828 }
829
830 // Check that the 'count' parameter is integral.
Alp Toker03376dc2014-07-07 09:02:20 +0000831 if (!Method->parameters()[1]->getType()->isIntegerType()) {
Jordy Rose4af44872012-05-12 17:32:56 +0000832 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
833 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000834 Diag(Method->parameters()[1]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000835 diag::note_objc_literal_method_param)
836 << 1
Alp Toker03376dc2014-07-07 09:02:20 +0000837 << Method->parameters()[1]->getType()
Jordy Rose4af44872012-05-12 17:32:56 +0000838 << "integral";
839 return ExprError();
840 }
841
842 // We've found a good +arrayWithObjects:count: method. Save it!
Jordy Rose08e500c2012-05-12 17:32:44 +0000843 ArrayWithObjectsMethod = Method;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000844 }
845
Alp Toker03376dc2014-07-07 09:02:20 +0000846 QualType ObjectsType = ArrayWithObjectsMethod->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000847 QualType RequiredType = ObjectsType->castAs<PointerType>()->getPointeeType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000848
849 // Check that each of the elements provided is valid in a collection literal,
850 // performing conversions as necessary.
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000851 Expr **ElementsBuffer = Elements.data();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000852 for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
853 ExprResult Converted = CheckObjCCollectionLiteralElement(*this,
854 ElementsBuffer[I],
Fariborz Jahaniana802c352013-08-13 23:44:55 +0000855 RequiredType, true);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000856 if (Converted.isInvalid())
857 return ExprError();
858
859 ElementsBuffer[I] = Converted.get();
860 }
861
862 QualType Ty
863 = Context.getObjCObjectPointerType(
864 Context.getObjCInterfaceType(NSArrayDecl));
865
866 return MaybeBindToTemporary(
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000867 ObjCArrayLiteral::Create(Context, Elements, Ty,
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000868 ArrayWithObjectsMethod, SR));
Ted Kremeneke65b0862012-03-06 20:05:56 +0000869}
870
871ExprResult Sema::BuildObjCDictionaryLiteral(SourceRange SR,
872 ObjCDictionaryElement *Elements,
873 unsigned NumElements) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000874 SourceLocation Loc = SR.getBegin();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000875
Alex Denisovb7d85632015-07-24 05:09:40 +0000876 if (!NSDictionaryDecl) {
877 NSDictionaryDecl = LookupObjCInterfaceDeclForLiteral(*this, Loc,
878 Sema::LK_Dictionary);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000879 if (!NSDictionaryDecl) {
Alex Denisovb7d85632015-07-24 05:09:40 +0000880 return ExprError();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000881 }
882 }
Alex Denisovb7d85632015-07-24 05:09:40 +0000883
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000884 // Find the dictionaryWithObjects:forKeys:count: method, if we haven't done
885 // so already.
Fariborz Jahanianbf09db42014-08-08 18:29:52 +0000886 QualType IdT = Context.getObjCIdType();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000887 if (!DictionaryWithObjectsMethod) {
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000888 Selector Sel = NSAPIObj->getNSDictionarySelector(
889 NSAPI::NSDict_dictionaryWithObjectsForKeysCount);
890 ObjCMethodDecl *Method = NSDictionaryDecl->lookupClassMethod(Sel);
Jordy Rose08e500c2012-05-12 17:32:44 +0000891 if (!Method && getLangOpts().DebuggerObjCLiteral) {
892 Method = ObjCMethodDecl::Create(Context,
Ted Kremeneke65b0862012-03-06 20:05:56 +0000893 SourceLocation(), SourceLocation(), Sel,
894 IdT,
Craig Topperc3ec1492014-05-26 06:22:03 +0000895 nullptr /*TypeSourceInfo */,
Ted Kremeneke65b0862012-03-06 20:05:56 +0000896 Context.getTranslationUnitDecl(),
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +0000897 false /*Instance*/, false/*isVariadic*/,
Jordan Rosed01e83a2012-10-10 16:42:25 +0000898 /*isPropertyAccessor=*/false,
Ted Kremeneke65b0862012-03-06 20:05:56 +0000899 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
900 ObjCMethodDecl::Required,
901 false);
902 SmallVector<ParmVarDecl *, 3> Params;
Jordy Rose08e500c2012-05-12 17:32:44 +0000903 ParmVarDecl *objects = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000904 SourceLocation(),
905 SourceLocation(),
906 &Context.Idents.get("objects"),
907 Context.getPointerType(IdT),
Craig Topperc3ec1492014-05-26 06:22:03 +0000908 /*TInfo=*/nullptr, SC_None,
909 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000910 Params.push_back(objects);
Jordy Rose08e500c2012-05-12 17:32:44 +0000911 ParmVarDecl *keys = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000912 SourceLocation(),
913 SourceLocation(),
914 &Context.Idents.get("keys"),
915 Context.getPointerType(IdT),
Craig Topperc3ec1492014-05-26 06:22:03 +0000916 /*TInfo=*/nullptr, SC_None,
917 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000918 Params.push_back(keys);
Jordy Rose08e500c2012-05-12 17:32:44 +0000919 ParmVarDecl *cnt = ParmVarDecl::Create(Context, Method,
Jordy Roseaca01f92012-05-12 17:32:52 +0000920 SourceLocation(),
921 SourceLocation(),
922 &Context.Idents.get("cnt"),
923 Context.UnsignedLongTy,
Craig Topperc3ec1492014-05-26 06:22:03 +0000924 /*TInfo=*/nullptr, SC_None,
925 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000926 Params.push_back(cnt);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000927 Method->setMethodParams(Context, Params, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +0000928 }
929
Jordy Rose08e500c2012-05-12 17:32:44 +0000930 if (!validateBoxingMethod(*this, SR.getBegin(), NSDictionaryDecl, Sel,
931 Method))
932 return ExprError();
933
Jordy Rose4af44872012-05-12 17:32:56 +0000934 // Dig out the type that all values should be converted to.
Alp Toker03376dc2014-07-07 09:02:20 +0000935 QualType ValueT = Method->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000936 const PointerType *PtrValue = ValueT->getAs<PointerType>();
937 if (!PtrValue ||
938 !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) {
Ted Kremeneke65b0862012-03-06 20:05:56 +0000939 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
Jordy Rose4af44872012-05-12 17:32:56 +0000940 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000941 Diag(Method->parameters()[0]->getLocation(),
Ted Kremeneke65b0862012-03-06 20:05:56 +0000942 diag::note_objc_literal_method_param)
Jordy Rose4af44872012-05-12 17:32:56 +0000943 << 0 << ValueT
Ted Kremeneke65b0862012-03-06 20:05:56 +0000944 << Context.getPointerType(IdT.withConst());
945 return ExprError();
946 }
Ted Kremeneke65b0862012-03-06 20:05:56 +0000947
Jordy Rose4af44872012-05-12 17:32:56 +0000948 // Dig out the type that all keys should be converted to.
Alp Toker03376dc2014-07-07 09:02:20 +0000949 QualType KeyT = Method->parameters()[1]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000950 const PointerType *PtrKey = KeyT->getAs<PointerType>();
951 if (!PtrKey ||
952 !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(),
953 IdT)) {
954 bool err = true;
955 if (PtrKey) {
956 if (QIDNSCopying.isNull()) {
957 // key argument of selector is id<NSCopying>?
958 if (ObjCProtocolDecl *NSCopyingPDecl =
959 LookupProtocol(&Context.Idents.get("NSCopying"), SR.getBegin())) {
960 ObjCProtocolDecl *PQ[] = {NSCopyingPDecl};
961 QIDNSCopying =
Douglas Gregore9d95f12015-07-07 03:57:35 +0000962 Context.getObjCObjectType(Context.ObjCBuiltinIdTy, { },
963 llvm::makeArrayRef(
964 (ObjCProtocolDecl**) PQ,
Douglas Gregorab209d82015-07-07 03:58:42 +0000965 1),
966 false);
Jordy Rose4af44872012-05-12 17:32:56 +0000967 QIDNSCopying = Context.getObjCObjectPointerType(QIDNSCopying);
968 }
969 }
970 if (!QIDNSCopying.isNull())
971 err = !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(),
972 QIDNSCopying);
973 }
974
975 if (err) {
976 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
977 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000978 Diag(Method->parameters()[1]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000979 diag::note_objc_literal_method_param)
980 << 1 << KeyT
981 << Context.getPointerType(IdT.withConst());
982 return ExprError();
983 }
984 }
985
986 // Check that the 'count' parameter is integral.
Alp Toker03376dc2014-07-07 09:02:20 +0000987 QualType CountType = Method->parameters()[2]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +0000988 if (!CountType->isIntegerType()) {
989 Diag(SR.getBegin(), diag::err_objc_literal_method_sig)
990 << Sel;
Alp Toker03376dc2014-07-07 09:02:20 +0000991 Diag(Method->parameters()[2]->getLocation(),
Jordy Rose4af44872012-05-12 17:32:56 +0000992 diag::note_objc_literal_method_param)
993 << 2 << CountType
994 << "integral";
995 return ExprError();
996 }
997
998 // We've found a good +dictionaryWithObjects:keys:count: method; save it!
999 DictionaryWithObjectsMethod = Method;
Ted Kremeneke65b0862012-03-06 20:05:56 +00001000 }
1001
Alp Toker03376dc2014-07-07 09:02:20 +00001002 QualType ValuesT = DictionaryWithObjectsMethod->parameters()[0]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +00001003 QualType ValueT = ValuesT->castAs<PointerType>()->getPointeeType();
Alp Toker03376dc2014-07-07 09:02:20 +00001004 QualType KeysT = DictionaryWithObjectsMethod->parameters()[1]->getType();
Jordy Rose4af44872012-05-12 17:32:56 +00001005 QualType KeyT = KeysT->castAs<PointerType>()->getPointeeType();
1006
Ted Kremeneke65b0862012-03-06 20:05:56 +00001007 // Check that each of the keys and values provided is valid in a collection
1008 // literal, performing conversions as necessary.
1009 bool HasPackExpansions = false;
1010 for (unsigned I = 0, N = NumElements; I != N; ++I) {
1011 // Check the key.
1012 ExprResult Key = CheckObjCCollectionLiteralElement(*this, Elements[I].Key,
1013 KeyT);
1014 if (Key.isInvalid())
1015 return ExprError();
1016
1017 // Check the value.
1018 ExprResult Value
1019 = CheckObjCCollectionLiteralElement(*this, Elements[I].Value, ValueT);
1020 if (Value.isInvalid())
1021 return ExprError();
1022
1023 Elements[I].Key = Key.get();
1024 Elements[I].Value = Value.get();
1025
1026 if (Elements[I].EllipsisLoc.isInvalid())
1027 continue;
1028
1029 if (!Elements[I].Key->containsUnexpandedParameterPack() &&
1030 !Elements[I].Value->containsUnexpandedParameterPack()) {
1031 Diag(Elements[I].EllipsisLoc,
1032 diag::err_pack_expansion_without_parameter_packs)
1033 << SourceRange(Elements[I].Key->getLocStart(),
1034 Elements[I].Value->getLocEnd());
1035 return ExprError();
1036 }
1037
1038 HasPackExpansions = true;
1039 }
1040
1041
1042 QualType Ty
1043 = Context.getObjCObjectPointerType(
Robert Wilhelm88e02492013-08-19 07:57:02 +00001044 Context.getObjCInterfaceType(NSDictionaryDecl));
1045 return MaybeBindToTemporary(ObjCDictionaryLiteral::Create(
1046 Context, makeArrayRef(Elements, NumElements), HasPackExpansions, Ty,
Fariborz Jahanian9ad94aa2014-10-28 18:28:16 +00001047 DictionaryWithObjectsMethod, SR));
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001048}
1049
Argyrios Kyrtzidis7da04c62011-05-14 20:32:39 +00001050ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc,
Douglas Gregorabd9e962010-04-20 15:39:42 +00001051 TypeSourceInfo *EncodedTypeInfo,
Anders Carlsson315d2292009-06-07 18:45:35 +00001052 SourceLocation RParenLoc) {
Douglas Gregorabd9e962010-04-20 15:39:42 +00001053 QualType EncodedType = EncodedTypeInfo->getType();
Anders Carlsson315d2292009-06-07 18:45:35 +00001054 QualType StrTy;
Mike Stump11289f42009-09-09 15:08:12 +00001055 if (EncodedType->isDependentType())
Anders Carlsson315d2292009-06-07 18:45:35 +00001056 StrTy = Context.DependentTy;
1057 else {
Fariborz Jahaniand9bc6c32011-06-16 22:34:44 +00001058 if (!EncodedType->getAsArrayTypeUnsafe() && //// Incomplete array is handled.
1059 !EncodedType->isVoidType()) // void is handled too.
Argyrios Kyrtzidis7da04c62011-05-14 20:32:39 +00001060 if (RequireCompleteType(AtLoc, EncodedType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001061 diag::err_incomplete_type_objc_at_encode,
1062 EncodedTypeInfo->getTypeLoc()))
Argyrios Kyrtzidis7da04c62011-05-14 20:32:39 +00001063 return ExprError();
1064
Anders Carlsson315d2292009-06-07 18:45:35 +00001065 std::string Str;
Fariborz Jahanian4bf437e2014-08-22 23:17:52 +00001066 QualType NotEncodedT;
1067 Context.getObjCEncodingForType(EncodedType, Str, nullptr, &NotEncodedT);
1068 if (!NotEncodedT.isNull())
1069 Diag(AtLoc, diag::warn_incomplete_encoded_type)
1070 << EncodedType << NotEncodedT;
Anders Carlsson315d2292009-06-07 18:45:35 +00001071
1072 // The type of @encode is the same as the type of the corresponding string,
1073 // which is an array type.
1074 StrTy = Context.CharTy;
1075 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
David Blaikiebbafb8a2012-03-11 07:00:24 +00001076 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
Anders Carlsson315d2292009-06-07 18:45:35 +00001077 StrTy.addConst();
1078 StrTy = Context.getConstantArrayType(StrTy, llvm::APInt(32, Str.size()+1),
1079 ArrayType::Normal, 0);
1080 }
Mike Stump11289f42009-09-09 15:08:12 +00001081
Douglas Gregorabd9e962010-04-20 15:39:42 +00001082 return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc);
Anders Carlsson315d2292009-06-07 18:45:35 +00001083}
1084
John McCallfaf5fb42010-08-26 23:41:50 +00001085ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
1086 SourceLocation EncodeLoc,
1087 SourceLocation LParenLoc,
1088 ParsedType ty,
1089 SourceLocation RParenLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00001090 // FIXME: Preserve type source info ?
Douglas Gregorabd9e962010-04-20 15:39:42 +00001091 TypeSourceInfo *TInfo;
1092 QualType EncodedType = GetTypeFromParser(ty, &TInfo);
1093 if (!TInfo)
1094 TInfo = Context.getTrivialTypeSourceInfo(EncodedType,
1095 PP.getLocForEndOfToken(LParenLoc));
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001096
Douglas Gregorabd9e962010-04-20 15:39:42 +00001097 return BuildObjCEncodeExpression(AtLoc, TInfo, RParenLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001098}
1099
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001100static bool HelperToDiagnoseMismatchedMethodsInGlobalPool(Sema &S,
1101 SourceLocation AtLoc,
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001102 SourceLocation LParenLoc,
1103 SourceLocation RParenLoc,
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001104 ObjCMethodDecl *Method,
1105 ObjCMethodList &MethList) {
1106 ObjCMethodList *M = &MethList;
1107 bool Warned = false;
1108 for (M = M->getNext(); M; M=M->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00001109 ObjCMethodDecl *MatchingMethodDecl = M->getMethod();
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001110 if (MatchingMethodDecl == Method ||
1111 isa<ObjCImplDecl>(MatchingMethodDecl->getDeclContext()) ||
1112 MatchingMethodDecl->getSelector() != Method->getSelector())
1113 continue;
1114 if (!S.MatchTwoMethodDeclarations(Method,
1115 MatchingMethodDecl, Sema::MMS_loose)) {
1116 if (!Warned) {
1117 Warned = true;
1118 S.Diag(AtLoc, diag::warning_multiple_selectors)
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001119 << Method->getSelector() << FixItHint::CreateInsertion(LParenLoc, "(")
1120 << FixItHint::CreateInsertion(RParenLoc, ")");
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001121 S.Diag(Method->getLocation(), diag::note_method_declared_at)
1122 << Method->getDeclName();
1123 }
1124 S.Diag(MatchingMethodDecl->getLocation(), diag::note_method_declared_at)
1125 << MatchingMethodDecl->getDeclName();
1126 }
1127 }
1128 return Warned;
1129}
1130
1131static void DiagnoseMismatchedSelectors(Sema &S, SourceLocation AtLoc,
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001132 ObjCMethodDecl *Method,
1133 SourceLocation LParenLoc,
1134 SourceLocation RParenLoc,
1135 bool WarnMultipleSelectors) {
1136 if (!WarnMultipleSelectors ||
1137 S.Diags.isIgnored(diag::warning_multiple_selectors, SourceLocation()))
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001138 return;
1139 bool Warned = false;
1140 for (Sema::GlobalMethodPool::iterator b = S.MethodPool.begin(),
1141 e = S.MethodPool.end(); b != e; b++) {
1142 // first, instance methods
1143 ObjCMethodList &InstMethList = b->second.first;
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001144 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc,
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001145 Method, InstMethList))
1146 Warned = true;
1147
1148 // second, class methods
1149 ObjCMethodList &ClsMethList = b->second.second;
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001150 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc,
1151 Method, ClsMethList) || Warned)
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001152 return;
1153 }
1154}
1155
John McCallfaf5fb42010-08-26 23:41:50 +00001156ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
1157 SourceLocation AtLoc,
1158 SourceLocation SelLoc,
1159 SourceLocation LParenLoc,
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001160 SourceLocation RParenLoc,
1161 bool WarnMultipleSelectors) {
Fariborz Jahanian02447d82013-01-22 18:35:43 +00001162 ObjCMethodDecl *Method = LookupInstanceMethodInGlobalPool(Sel,
Fariborz Jahanian890803f2015-04-15 17:26:21 +00001163 SourceRange(LParenLoc, RParenLoc));
Fariborz Jahanian02447d82013-01-22 18:35:43 +00001164 if (!Method)
1165 Method = LookupFactoryMethodInGlobalPool(Sel,
Fariborz Jahanian0571d9b2009-06-16 16:25:00 +00001166 SourceRange(LParenLoc, RParenLoc));
Fariborz Jahanian0c0fc9e2013-06-05 18:46:14 +00001167 if (!Method) {
1168 if (const ObjCMethodDecl *OM = SelectorsForTypoCorrection(Sel)) {
1169 Selector MatchedSel = OM->getSelector();
1170 SourceRange SelectorRange(LParenLoc.getLocWithOffset(1),
1171 RParenLoc.getLocWithOffset(-1));
1172 Diag(SelLoc, diag::warn_undeclared_selector_with_typo)
1173 << Sel << MatchedSel
1174 << FixItHint::CreateReplacement(SelectorRange, MatchedSel.getAsString());
1175
1176 } else
1177 Diag(SelLoc, diag::warn_undeclared_selector) << Sel;
Fariborz Jahanian44be1542014-03-12 18:34:01 +00001178 } else
Fariborz Jahaniandacffc02014-06-24 17:02:19 +00001179 DiagnoseMismatchedSelectors(*this, AtLoc, Method, LParenLoc, RParenLoc,
1180 WarnMultipleSelectors);
Chandler Carruth12c8f652015-03-27 00:55:05 +00001181
Fariborz Jahanian65a78b52014-05-09 19:51:39 +00001182 if (Method &&
1183 Method->getImplementationControl() != ObjCMethodDecl::Optional &&
Chandler Carruth12c8f652015-03-27 00:55:05 +00001184 !getSourceManager().isInSystemHeader(Method->getLocation()))
1185 ReferencedSelectors.insert(std::make_pair(Sel, AtLoc));
Fariborz Jahanian6e7e8cc2010-07-22 18:24:20 +00001186
Fariborz Jahanian02447d82013-01-22 18:35:43 +00001187 // In ARC, forbid the user from using @selector for
John McCall31168b02011-06-15 23:02:42 +00001188 // retain/release/autorelease/dealloc/retainCount.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001189 if (getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00001190 switch (Sel.getMethodFamily()) {
1191 case OMF_retain:
1192 case OMF_release:
1193 case OMF_autorelease:
1194 case OMF_retainCount:
1195 case OMF_dealloc:
1196 Diag(AtLoc, diag::err_arc_illegal_selector) <<
1197 Sel << SourceRange(LParenLoc, RParenLoc);
1198 break;
1199
1200 case OMF_None:
1201 case OMF_alloc:
1202 case OMF_copy:
Nico Weber1fb82662011-08-28 22:35:17 +00001203 case OMF_finalize:
John McCall31168b02011-06-15 23:02:42 +00001204 case OMF_init:
1205 case OMF_mutableCopy:
1206 case OMF_new:
1207 case OMF_self:
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00001208 case OMF_initialize:
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00001209 case OMF_performSelector:
John McCall31168b02011-06-15 23:02:42 +00001210 break;
1211 }
1212 }
Chris Lattnerfffd6a72009-02-18 06:06:56 +00001213 QualType Ty = Context.getObjCSelType();
Daniel Dunbar45858d22010-02-03 20:11:42 +00001214 return new (Context) ObjCSelectorExpr(Ty, Sel, AtLoc, RParenLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001215}
1216
John McCallfaf5fb42010-08-26 23:41:50 +00001217ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId,
1218 SourceLocation AtLoc,
1219 SourceLocation ProtoLoc,
1220 SourceLocation LParenLoc,
Argyrios Kyrtzidisb7e43672012-05-16 00:50:02 +00001221 SourceLocation ProtoIdLoc,
John McCallfaf5fb42010-08-26 23:41:50 +00001222 SourceLocation RParenLoc) {
Argyrios Kyrtzidisb7e43672012-05-16 00:50:02 +00001223 ObjCProtocolDecl* PDecl = LookupProtocol(ProtocolId, ProtoIdLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001224 if (!PDecl) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001225 Diag(ProtoLoc, diag::err_undeclared_protocol) << ProtocolId;
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001226 return true;
1227 }
Fariborz Jahaniana57d91c22014-07-25 19:45:01 +00001228 if (PDecl->hasDefinition())
1229 PDecl = PDecl->getDefinition();
Mike Stump11289f42009-09-09 15:08:12 +00001230
Chris Lattnerfffd6a72009-02-18 06:06:56 +00001231 QualType Ty = Context.getObjCProtoType();
1232 if (Ty.isNull())
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001233 return true;
Steve Naroff7cae42b2009-07-10 23:34:53 +00001234 Ty = Context.getObjCObjectPointerType(Ty);
Argyrios Kyrtzidisb7e43672012-05-16 00:50:02 +00001235 return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, ProtoIdLoc, RParenLoc);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001236}
1237
John McCall5f2d5562011-02-03 09:00:02 +00001238/// Try to capture an implicit reference to 'self'.
Eli Friedman24af8502012-02-03 22:47:37 +00001239ObjCMethodDecl *Sema::tryCaptureObjCSelf(SourceLocation Loc) {
1240 DeclContext *DC = getFunctionLevelDeclContext();
John McCall5f2d5562011-02-03 09:00:02 +00001241
1242 // If we're not in an ObjC method, error out. Note that, unlike the
1243 // C++ case, we don't require an instance method --- class methods
1244 // still have a 'self', and we really do still need to capture it!
1245 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(DC);
1246 if (!method)
Craig Topperc3ec1492014-05-26 06:22:03 +00001247 return nullptr;
John McCall5f2d5562011-02-03 09:00:02 +00001248
Douglas Gregorfdf598e2012-02-18 09:37:24 +00001249 tryCaptureVariable(method->getSelfDecl(), Loc);
John McCall5f2d5562011-02-03 09:00:02 +00001250
1251 return method;
1252}
1253
Douglas Gregor64910ca2011-09-09 20:05:21 +00001254static QualType stripObjCInstanceType(ASTContext &Context, QualType T) {
Douglas Gregor813a0662015-06-19 18:14:38 +00001255 QualType origType = T;
1256 if (auto nullability = AttributedType::stripOuterNullability(T)) {
1257 if (T == Context.getObjCInstanceType()) {
1258 return Context.getAttributedType(
1259 AttributedType::getNullabilityAttrKind(*nullability),
1260 Context.getObjCIdType(),
1261 Context.getObjCIdType());
1262 }
1263
1264 return origType;
1265 }
1266
Douglas Gregor64910ca2011-09-09 20:05:21 +00001267 if (T == Context.getObjCInstanceType())
1268 return Context.getObjCIdType();
1269
Douglas Gregor813a0662015-06-19 18:14:38 +00001270 return origType;
Douglas Gregor64910ca2011-09-09 20:05:21 +00001271}
1272
Douglas Gregor813a0662015-06-19 18:14:38 +00001273/// Determine the result type of a message send based on the receiver type,
1274/// method, and the kind of message send.
1275///
1276/// This is the "base" result type, which will still need to be adjusted
1277/// to account for nullability.
1278static QualType getBaseMessageSendResultType(Sema &S,
1279 QualType ReceiverType,
1280 ObjCMethodDecl *Method,
1281 bool isClassMessage,
1282 bool isSuperMessage) {
Douglas Gregor33823722011-06-11 01:09:30 +00001283 assert(Method && "Must have a method");
1284 if (!Method->hasRelatedResultType())
Douglas Gregore83b9562015-07-07 03:57:53 +00001285 return Method->getSendResultType(ReceiverType);
Douglas Gregor813a0662015-06-19 18:14:38 +00001286
1287 ASTContext &Context = S.Context;
1288
1289 // Local function that transfers the nullability of the method's
1290 // result type to the returned result.
1291 auto transferNullability = [&](QualType type) -> QualType {
1292 // If the method's result type has nullability, extract it.
Douglas Gregore83b9562015-07-07 03:57:53 +00001293 if (auto nullability = Method->getSendResultType(ReceiverType)
1294 ->getNullability(Context)){
Douglas Gregor813a0662015-06-19 18:14:38 +00001295 // Strip off any outer nullability sugar from the provided type.
1296 (void)AttributedType::stripOuterNullability(type);
1297
1298 // Form a new attributed type using the method result type's nullability.
1299 return Context.getAttributedType(
1300 AttributedType::getNullabilityAttrKind(*nullability),
1301 type,
1302 type);
1303 }
1304
1305 return type;
1306 };
1307
Douglas Gregor33823722011-06-11 01:09:30 +00001308 // If a method has a related return type:
1309 // - if the method found is an instance method, but the message send
1310 // was a class message send, T is the declared return type of the method
1311 // found
1312 if (Method->isInstanceMethod() && isClassMessage)
Douglas Gregore83b9562015-07-07 03:57:53 +00001313 return stripObjCInstanceType(Context,
1314 Method->getSendResultType(ReceiverType));
Douglas Gregor813a0662015-06-19 18:14:38 +00001315
1316 // - if the receiver is super, T is a pointer to the class of the
Douglas Gregor33823722011-06-11 01:09:30 +00001317 // enclosing method definition
1318 if (isSuperMessage) {
Douglas Gregor813a0662015-06-19 18:14:38 +00001319 if (ObjCMethodDecl *CurMethod = S.getCurMethodDecl())
1320 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface()) {
1321 return transferNullability(
1322 Context.getObjCObjectPointerType(
1323 Context.getObjCInterfaceType(Class)));
1324 }
Douglas Gregor33823722011-06-11 01:09:30 +00001325 }
Douglas Gregor813a0662015-06-19 18:14:38 +00001326
Douglas Gregor33823722011-06-11 01:09:30 +00001327 // - if the receiver is the name of a class U, T is a pointer to U
Douglas Gregore83b9562015-07-07 03:57:53 +00001328 if (ReceiverType->getAsObjCInterfaceType())
Douglas Gregor813a0662015-06-19 18:14:38 +00001329 return transferNullability(Context.getObjCObjectPointerType(ReceiverType));
1330 // - if the receiver is of type Class or qualified Class type,
Douglas Gregor33823722011-06-11 01:09:30 +00001331 // T is the declared return type of the method.
1332 if (ReceiverType->isObjCClassType() ||
1333 ReceiverType->isObjCQualifiedClassType())
Douglas Gregore83b9562015-07-07 03:57:53 +00001334 return stripObjCInstanceType(Context,
1335 Method->getSendResultType(ReceiverType));
Douglas Gregor813a0662015-06-19 18:14:38 +00001336
Douglas Gregor33823722011-06-11 01:09:30 +00001337 // - if the receiver is id, qualified id, Class, or qualified Class, T
1338 // is the receiver type, otherwise
1339 // - T is the type of the receiver expression.
Douglas Gregor813a0662015-06-19 18:14:38 +00001340 return transferNullability(ReceiverType);
1341}
1342
1343QualType Sema::getMessageSendResultType(QualType ReceiverType,
1344 ObjCMethodDecl *Method,
1345 bool isClassMessage,
1346 bool isSuperMessage) {
1347 // Produce the result type.
1348 QualType resultType = getBaseMessageSendResultType(*this, ReceiverType,
1349 Method,
1350 isClassMessage,
1351 isSuperMessage);
1352
Douglas Gregor2a20bd12015-06-19 18:25:57 +00001353 // If this is a class message, ignore the nullability of the receiver.
1354 if (isClassMessage)
1355 return resultType;
1356
Douglas Gregor813a0662015-06-19 18:14:38 +00001357 // Map the nullability of the result into a table index.
1358 unsigned receiverNullabilityIdx = 0;
1359 if (auto nullability = ReceiverType->getNullability(Context))
1360 receiverNullabilityIdx = 1 + static_cast<unsigned>(*nullability);
1361
1362 unsigned resultNullabilityIdx = 0;
1363 if (auto nullability = resultType->getNullability(Context))
1364 resultNullabilityIdx = 1 + static_cast<unsigned>(*nullability);
1365
1366 // The table of nullability mappings, indexed by the receiver's nullability
1367 // and then the result type's nullability.
1368 static const uint8_t None = 0;
1369 static const uint8_t NonNull = 1;
1370 static const uint8_t Nullable = 2;
1371 static const uint8_t Unspecified = 3;
1372 static const uint8_t nullabilityMap[4][4] = {
1373 // None NonNull Nullable Unspecified
1374 /* None */ { None, None, Nullable, None },
1375 /* NonNull */ { None, NonNull, Nullable, Unspecified },
1376 /* Nullable */ { Nullable, Nullable, Nullable, Nullable },
1377 /* Unspecified */ { None, Unspecified, Nullable, Unspecified }
1378 };
1379
1380 unsigned newResultNullabilityIdx
1381 = nullabilityMap[receiverNullabilityIdx][resultNullabilityIdx];
1382 if (newResultNullabilityIdx == resultNullabilityIdx)
1383 return resultType;
1384
1385 // Strip off the existing nullability. This removes as little type sugar as
1386 // possible.
1387 do {
1388 if (auto attributed = dyn_cast<AttributedType>(resultType.getTypePtr())) {
1389 resultType = attributed->getModifiedType();
1390 } else {
1391 resultType = resultType.getDesugaredType(Context);
1392 }
1393 } while (resultType->getNullability(Context));
1394
1395 // Add nullability back if needed.
1396 if (newResultNullabilityIdx > 0) {
1397 auto newNullability
1398 = static_cast<NullabilityKind>(newResultNullabilityIdx-1);
1399 return Context.getAttributedType(
1400 AttributedType::getNullabilityAttrKind(newNullability),
1401 resultType, resultType);
1402 }
1403
1404 return resultType;
Douglas Gregor33823722011-06-11 01:09:30 +00001405}
John McCall5f2d5562011-02-03 09:00:02 +00001406
John McCall5ec7e7d2013-03-19 07:04:25 +00001407/// Look for an ObjC method whose result type exactly matches the given type.
1408static const ObjCMethodDecl *
1409findExplicitInstancetypeDeclarer(const ObjCMethodDecl *MD,
1410 QualType instancetype) {
Alp Toker314cc812014-01-25 16:55:45 +00001411 if (MD->getReturnType() == instancetype)
1412 return MD;
John McCall5ec7e7d2013-03-19 07:04:25 +00001413
1414 // For these purposes, a method in an @implementation overrides a
1415 // declaration in the @interface.
1416 if (const ObjCImplDecl *impl =
1417 dyn_cast<ObjCImplDecl>(MD->getDeclContext())) {
1418 const ObjCContainerDecl *iface;
1419 if (const ObjCCategoryImplDecl *catImpl =
1420 dyn_cast<ObjCCategoryImplDecl>(impl)) {
1421 iface = catImpl->getCategoryDecl();
1422 } else {
1423 iface = impl->getClassInterface();
1424 }
1425
1426 const ObjCMethodDecl *ifaceMD =
1427 iface->getMethod(MD->getSelector(), MD->isInstanceMethod());
1428 if (ifaceMD) return findExplicitInstancetypeDeclarer(ifaceMD, instancetype);
1429 }
1430
1431 SmallVector<const ObjCMethodDecl *, 4> overrides;
1432 MD->getOverriddenMethods(overrides);
1433 for (unsigned i = 0, e = overrides.size(); i != e; ++i) {
1434 if (const ObjCMethodDecl *result =
1435 findExplicitInstancetypeDeclarer(overrides[i], instancetype))
1436 return result;
1437 }
1438
Craig Topperc3ec1492014-05-26 06:22:03 +00001439 return nullptr;
John McCall5ec7e7d2013-03-19 07:04:25 +00001440}
1441
1442void Sema::EmitRelatedResultTypeNoteForReturn(QualType destType) {
1443 // Only complain if we're in an ObjC method and the required return
1444 // type doesn't match the method's declared return type.
1445 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurContext);
1446 if (!MD || !MD->hasRelatedResultType() ||
Alp Toker314cc812014-01-25 16:55:45 +00001447 Context.hasSameUnqualifiedType(destType, MD->getReturnType()))
John McCall5ec7e7d2013-03-19 07:04:25 +00001448 return;
1449
1450 // Look for a method overridden by this method which explicitly uses
1451 // 'instancetype'.
1452 if (const ObjCMethodDecl *overridden =
1453 findExplicitInstancetypeDeclarer(MD, Context.getObjCInstanceType())) {
Aaron Ballman41b10ac2014-08-01 13:20:09 +00001454 SourceRange range = overridden->getReturnTypeSourceRange();
1455 SourceLocation loc = range.getBegin();
John McCall5ec7e7d2013-03-19 07:04:25 +00001456 if (loc.isInvalid())
1457 loc = overridden->getLocation();
1458 Diag(loc, diag::note_related_result_type_explicit)
1459 << /*current method*/ 1 << range;
1460 return;
1461 }
1462
1463 // Otherwise, if we have an interesting method family, note that.
1464 // This should always trigger if the above didn't.
1465 if (ObjCMethodFamily family = MD->getMethodFamily())
1466 Diag(MD->getLocation(), diag::note_related_result_type_family)
1467 << /*current method*/ 1
1468 << family;
1469}
1470
Douglas Gregor33823722011-06-11 01:09:30 +00001471void Sema::EmitRelatedResultTypeNote(const Expr *E) {
1472 E = E->IgnoreParenImpCasts();
1473 const ObjCMessageExpr *MsgSend = dyn_cast<ObjCMessageExpr>(E);
1474 if (!MsgSend)
1475 return;
1476
1477 const ObjCMethodDecl *Method = MsgSend->getMethodDecl();
1478 if (!Method)
1479 return;
1480
1481 if (!Method->hasRelatedResultType())
1482 return;
Alp Toker314cc812014-01-25 16:55:45 +00001483
1484 if (Context.hasSameUnqualifiedType(
1485 Method->getReturnType().getNonReferenceType(), MsgSend->getType()))
Douglas Gregor33823722011-06-11 01:09:30 +00001486 return;
Alp Toker314cc812014-01-25 16:55:45 +00001487
1488 if (!Context.hasSameUnqualifiedType(Method->getReturnType(),
Douglas Gregorbab8a962011-09-08 01:46:34 +00001489 Context.getObjCInstanceType()))
1490 return;
1491
Douglas Gregor33823722011-06-11 01:09:30 +00001492 Diag(Method->getLocation(), diag::note_related_result_type_inferred)
1493 << Method->isInstanceMethod() << Method->getSelector()
1494 << MsgSend->getType();
1495}
1496
1497bool Sema::CheckMessageArgumentTypes(QualType ReceiverType,
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001498 MultiExprArg Args,
1499 Selector Sel,
Fariborz Jahanian6ce25c02012-08-31 17:03:18 +00001500 ArrayRef<SourceLocation> SelectorLocs,
1501 ObjCMethodDecl *Method,
Douglas Gregor33823722011-06-11 01:09:30 +00001502 bool isClassMessage, bool isSuperMessage,
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001503 SourceLocation lbrac, SourceLocation rbrac,
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00001504 SourceRange RecRange,
John McCall7decc9e2010-11-18 06:31:45 +00001505 QualType &ReturnType, ExprValueKind &VK) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001506 SourceLocation SelLoc;
1507 if (!SelectorLocs.empty() && SelectorLocs.front().isValid())
1508 SelLoc = SelectorLocs.front();
1509 else
1510 SelLoc = lbrac;
1511
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001512 if (!Method) {
Daniel Dunbar83876b42008-09-11 00:04:36 +00001513 // Apply default argument promotion as for (C99 6.5.2.2p6).
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001514 for (unsigned i = 0, e = Args.size(); i != e; i++) {
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001515 if (Args[i]->isTypeDependent())
1516 continue;
1517
John McCallcc5788c2013-03-04 07:34:02 +00001518 ExprResult result;
1519 if (getLangOpts().DebuggerSupport) {
1520 QualType paramTy; // ignored
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001521 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy);
John McCallcc5788c2013-03-04 07:34:02 +00001522 } else {
1523 result = DefaultArgumentPromotion(Args[i]);
1524 }
1525 if (result.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00001526 return true;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001527 Args[i] = result.get();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001528 }
Daniel Dunbar83876b42008-09-11 00:04:36 +00001529
John McCall31168b02011-06-15 23:02:42 +00001530 unsigned DiagID;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001531 if (getLangOpts().ObjCAutoRefCount)
John McCall31168b02011-06-15 23:02:42 +00001532 DiagID = diag::err_arc_method_not_found;
1533 else
1534 DiagID = isClassMessage ? diag::warn_class_method_not_found
1535 : diag::warn_inst_method_not_found;
Fariborz Jahanian773df4a2013-05-14 23:24:17 +00001536 if (!getLangOpts().DebuggerSupport) {
Fariborz Jahanian4cc55522013-06-18 15:31:36 +00001537 const ObjCMethodDecl *OMD = SelectorsForTypoCorrection(Sel, ReceiverType);
Fariborz Jahanian06499232013-06-18 17:10:58 +00001538 if (OMD && !OMD->isInvalidDecl()) {
Fariborz Jahanian4cc55522013-06-18 15:31:36 +00001539 if (getLangOpts().ObjCAutoRefCount)
1540 DiagID = diag::error_method_not_found_with_typo;
1541 else
1542 DiagID = isClassMessage ? diag::warn_class_method_not_found_with_typo
1543 : diag::warn_instance_method_not_found_with_typo;
Fariborz Jahanian75481672013-06-17 17:10:54 +00001544 Selector MatchedSel = OMD->getSelector();
1545 SourceRange SelectorRange(SelectorLocs.front(), SelectorLocs.back());
Fariborz Jahanian5ab87502014-08-12 22:16:41 +00001546 if (MatchedSel.isUnarySelector())
1547 Diag(SelLoc, DiagID)
1548 << Sel<< isClassMessage << MatchedSel
1549 << FixItHint::CreateReplacement(SelectorRange, MatchedSel.getAsString());
1550 else
1551 Diag(SelLoc, DiagID) << Sel<< isClassMessage << MatchedSel;
Fariborz Jahanian75481672013-06-17 17:10:54 +00001552 }
1553 else
1554 Diag(SelLoc, DiagID)
1555 << Sel << isClassMessage << SourceRange(SelectorLocs.front(),
Fariborz Jahanian6ce25c02012-08-31 17:03:18 +00001556 SelectorLocs.back());
Fariborz Jahanian773df4a2013-05-14 23:24:17 +00001557 // Find the class to which we are sending this message.
1558 if (ReceiverType->isObjCObjectPointerType()) {
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00001559 if (ObjCInterfaceDecl *ThisClass =
1560 ReceiverType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()) {
1561 Diag(ThisClass->getLocation(), diag::note_receiver_class_declared);
1562 if (!RecRange.isInvalid())
1563 if (ThisClass->lookupClassMethod(Sel))
1564 Diag(RecRange.getBegin(),diag::note_receiver_expr_here)
1565 << FixItHint::CreateReplacement(RecRange,
1566 ThisClass->getNameAsString());
1567 }
Fariborz Jahanian773df4a2013-05-14 23:24:17 +00001568 }
1569 }
John McCall3f4138c2011-07-13 17:56:40 +00001570
1571 // In debuggers, we want to use __unknown_anytype for these
1572 // results so that clients can cast them.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001573 if (getLangOpts().DebuggerSupport) {
John McCall3f4138c2011-07-13 17:56:40 +00001574 ReturnType = Context.UnknownAnyTy;
1575 } else {
1576 ReturnType = Context.getObjCIdType();
1577 }
John McCall7decc9e2010-11-18 06:31:45 +00001578 VK = VK_RValue;
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001579 return false;
Daniel Dunbaraa9326c2008-09-11 00:01:56 +00001580 }
Mike Stump11289f42009-09-09 15:08:12 +00001581
Douglas Gregor33823722011-06-11 01:09:30 +00001582 ReturnType = getMessageSendResultType(ReceiverType, Method, isClassMessage,
1583 isSuperMessage);
Alp Toker314cc812014-01-25 16:55:45 +00001584 VK = Expr::getValueKindForType(Method->getReturnType());
Mike Stump11289f42009-09-09 15:08:12 +00001585
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001586 unsigned NumNamedArgs = Sel.getNumArgs();
Fariborz Jahanian60462092010-04-08 00:30:06 +00001587 // Method might have more arguments than selector indicates. This is due
1588 // to addition of c-style arguments in method.
1589 if (Method->param_size() > Sel.getNumArgs())
1590 NumNamedArgs = Method->param_size();
1591 // FIXME. This need be cleaned up.
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001592 if (Args.size() < NumNamedArgs) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001593 Diag(SelLoc, diag::err_typecheck_call_too_few_args)
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001594 << 2 << NumNamedArgs << static_cast<unsigned>(Args.size());
Fariborz Jahanian60462092010-04-08 00:30:06 +00001595 return false;
1596 }
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001597
Douglas Gregore83b9562015-07-07 03:57:53 +00001598 // Compute the set of type arguments to be substituted into each parameter
1599 // type.
1600 Optional<ArrayRef<QualType>> typeArgs
1601 = ReceiverType->getObjCSubstitutions(Method->getDeclContext());
Chris Lattnera8a7d0f2009-04-12 08:11:20 +00001602 bool IsError = false;
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001603 for (unsigned i = 0; i < NumNamedArgs; i++) {
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001604 // We can't do any type-checking on a type-dependent argument.
1605 if (Args[i]->isTypeDependent())
1606 continue;
1607
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001608 Expr *argExpr = Args[i];
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001609
Alp Toker03376dc2014-07-07 09:02:20 +00001610 ParmVarDecl *param = Method->parameters()[i];
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001611 assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
Mike Stump11289f42009-09-09 15:08:12 +00001612
John McCall4124c492011-10-17 18:40:02 +00001613 // Strip the unbridged-cast placeholder expression off unless it's
1614 // a consumed argument.
1615 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) &&
1616 !param->hasAttr<CFConsumedAttr>())
1617 argExpr = stripARCUnbridgedCast(argExpr);
1618
John McCallea0a39e2012-11-14 00:49:39 +00001619 // If the parameter is __unknown_anytype, infer its type
1620 // from the argument.
1621 if (param->getType() == Context.UnknownAnyTy) {
John McCallcc5788c2013-03-04 07:34:02 +00001622 QualType paramType;
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00001623 ExprResult argE = checkUnknownAnyArg(SelLoc, argExpr, paramType);
John McCallcc5788c2013-03-04 07:34:02 +00001624 if (argE.isInvalid()) {
John McCallea0a39e2012-11-14 00:49:39 +00001625 IsError = true;
John McCallcc5788c2013-03-04 07:34:02 +00001626 } else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001627 Args[i] = argE.get();
John McCallea0a39e2012-11-14 00:49:39 +00001628
John McCallcc5788c2013-03-04 07:34:02 +00001629 // Update the parameter type in-place.
1630 param->setType(paramType);
1631 }
1632 continue;
John McCallea0a39e2012-11-14 00:49:39 +00001633 }
1634
Douglas Gregore83b9562015-07-07 03:57:53 +00001635 QualType origParamType = param->getType();
1636 QualType paramType = param->getType();
1637 if (typeArgs)
1638 paramType = paramType.substObjCTypeArgs(
1639 Context,
1640 *typeArgs,
1641 ObjCSubstitutionContext::Parameter);
1642
Douglas Gregor6b7f12c2010-04-21 23:24:10 +00001643 if (RequireCompleteType(argExpr->getSourceRange().getBegin(),
Douglas Gregore83b9562015-07-07 03:57:53 +00001644 paramType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001645 diag::err_call_incomplete_argument, argExpr))
Douglas Gregor6b7f12c2010-04-21 23:24:10 +00001646 return true;
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001647
Douglas Gregore83b9562015-07-07 03:57:53 +00001648 InitializedEntity Entity
1649 = InitializedEntity::InitializeParameter(Context, param, paramType);
Fariborz Jahaniana1db7df2014-07-31 17:39:50 +00001650 ExprResult ArgE = PerformCopyInitialization(Entity, SourceLocation(), argExpr);
Douglas Gregor6b7f12c2010-04-21 23:24:10 +00001651 if (ArgE.isInvalid())
1652 IsError = true;
Douglas Gregore83b9562015-07-07 03:57:53 +00001653 else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001654 Args[i] = ArgE.getAs<Expr>();
Douglas Gregore83b9562015-07-07 03:57:53 +00001655
1656 // If we are type-erasing a block to a block-compatible
1657 // Objective-C pointer type, we may need to extend the lifetime
1658 // of the block object.
1659 if (typeArgs && Args[i]->isRValue() && paramType->isBlockPointerType() &&
Bob Wilson7e9fd562015-10-02 01:05:29 +00001660 Args[i]->getType()->isBlockPointerType() &&
1661 origParamType->isObjCObjectPointerType()) {
Douglas Gregore83b9562015-07-07 03:57:53 +00001662 ExprResult arg = Args[i];
1663 maybeExtendBlockObject(arg);
1664 Args[i] = arg.get();
1665 }
1666 }
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001667 }
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001668
1669 // Promote additional arguments to variadic methods.
1670 if (Method->isVariadic()) {
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001671 for (unsigned i = NumNamedArgs, e = Args.size(); i < e; ++i) {
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001672 if (Args[i]->isTypeDependent())
1673 continue;
1674
Jordy Roseaca01f92012-05-12 17:32:52 +00001675 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], VariadicMethod,
Craig Topperc3ec1492014-05-26 06:22:03 +00001676 nullptr);
John Wiegley01296292011-04-08 18:41:53 +00001677 IsError |= Arg.isInvalid();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001678 Args[i] = Arg.get();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001679 }
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001680 } else {
1681 // Check for extra arguments to non-variadic methods.
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001682 if (Args.size() != NumNamedArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00001683 Diag(Args[NumNamedArgs]->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001684 diag::err_typecheck_call_too_many_args)
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001685 << 2 /*method*/ << NumNamedArgs << static_cast<unsigned>(Args.size())
Eric Christopher2a5aaff2010-04-16 04:56:46 +00001686 << Method->getSourceRange()
Chris Lattner3b054132008-11-19 05:08:23 +00001687 << SourceRange(Args[NumNamedArgs]->getLocStart(),
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001688 Args.back()->getLocEnd());
Daniel Dunbarce05c8e2008-09-11 00:50:25 +00001689 }
1690 }
1691
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001692 DiagnoseSentinelCalls(Method, SelLoc, Args);
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00001693
1694 // Do additional checkings on method.
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00001695 IsError |= CheckObjCMethodCall(
Craig Topper8c2a2a02014-08-30 16:55:39 +00001696 Method, SelLoc, makeArrayRef(Args.data(), Args.size()));
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00001697
Chris Lattnera8a7d0f2009-04-12 08:11:20 +00001698 return IsError;
Chris Lattnera3fc41d2008-01-04 22:32:30 +00001699}
1700
Argyrios Kyrtzidis2080d902014-01-03 18:32:18 +00001701bool Sema::isSelfExpr(Expr *RExpr) {
Fariborz Jahanianb3b1e172011-03-27 19:53:47 +00001702 // 'self' is objc 'self' in an objc method only.
Argyrios Kyrtzidis2080d902014-01-03 18:32:18 +00001703 ObjCMethodDecl *Method =
1704 dyn_cast_or_null<ObjCMethodDecl>(CurContext->getNonClosureAncestor());
1705 return isSelfExpr(RExpr, Method);
1706}
1707
1708bool Sema::isSelfExpr(Expr *receiver, const ObjCMethodDecl *method) {
John McCallfe96e0b2011-11-06 09:01:30 +00001709 if (!method) return false;
1710
John McCall31168b02011-06-15 23:02:42 +00001711 receiver = receiver->IgnoreParenLValueCasts();
1712 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(receiver))
John McCallfe96e0b2011-11-06 09:01:30 +00001713 if (DRE->getDecl() == method->getSelfDecl())
Douglas Gregor486b74e2011-09-27 16:10:05 +00001714 return true;
1715 return false;
Steve Naroff3f49fee2009-03-04 15:11:40 +00001716}
1717
John McCall526ab472011-10-25 17:37:35 +00001718/// LookupMethodInType - Look up a method in an ObjCObjectType.
1719ObjCMethodDecl *Sema::LookupMethodInObjectType(Selector sel, QualType type,
1720 bool isInstance) {
1721 const ObjCObjectType *objType = type->castAs<ObjCObjectType>();
1722 if (ObjCInterfaceDecl *iface = objType->getInterface()) {
1723 // Look it up in the main interface (and categories, etc.)
1724 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance))
1725 return method;
1726
1727 // Okay, look for "private" methods declared in any
1728 // @implementations we've seen.
Anna Zaksc77a3b12012-07-27 19:07:44 +00001729 if (ObjCMethodDecl *method = iface->lookupPrivateMethod(sel, isInstance))
1730 return method;
John McCall526ab472011-10-25 17:37:35 +00001731 }
1732
1733 // Check qualifiers.
Aaron Ballman1683f7b2014-03-17 15:55:30 +00001734 for (const auto *I : objType->quals())
1735 if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance))
John McCall526ab472011-10-25 17:37:35 +00001736 return method;
1737
Craig Topperc3ec1492014-05-26 06:22:03 +00001738 return nullptr;
John McCall526ab472011-10-25 17:37:35 +00001739}
1740
Fariborz Jahanian3dc11ad2011-03-09 20:18:06 +00001741/// LookupMethodInQualifiedType - Lookups up a method in protocol qualifier
1742/// list of a qualified objective pointer type.
1743ObjCMethodDecl *Sema::LookupMethodInQualifiedType(Selector Sel,
1744 const ObjCObjectPointerType *OPT,
1745 bool Instance)
1746{
Craig Topperc3ec1492014-05-26 06:22:03 +00001747 ObjCMethodDecl *MD = nullptr;
Aaron Ballman83731462014-03-17 16:14:00 +00001748 for (const auto *PROTO : OPT->quals()) {
Fariborz Jahanian3dc11ad2011-03-09 20:18:06 +00001749 if ((MD = PROTO->lookupMethod(Sel, Instance))) {
1750 return MD;
1751 }
1752 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001753 return nullptr;
Fariborz Jahanian3dc11ad2011-03-09 20:18:06 +00001754}
1755
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001756/// HandleExprPropertyRefExpr - Handle foo.bar where foo is a pointer to an
1757/// objective C interface. This is a property reference expression.
John McCalldadc5752010-08-24 06:29:42 +00001758ExprResult Sema::
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001759HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
Fariborz Jahanianc297cd82011-06-28 00:00:52 +00001760 Expr *BaseExpr, SourceLocation OpLoc,
1761 DeclarationName MemberName,
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001762 SourceLocation MemberLoc,
1763 SourceLocation SuperLoc, QualType SuperType,
1764 bool Super) {
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001765 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
1766 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
Benjamin Kramer1458c1c2012-05-19 16:03:58 +00001767
Benjamin Kramer365082d2012-05-19 16:34:46 +00001768 if (!MemberName.isIdentifier()) {
Douglas Gregord6459312011-04-20 18:19:55 +00001769 Diag(MemberLoc, diag::err_invalid_property_name)
1770 << MemberName << QualType(OPT, 0);
1771 return ExprError();
1772 }
Benjamin Kramer365082d2012-05-19 16:34:46 +00001773
1774 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Douglas Gregord6459312011-04-20 18:19:55 +00001775
Douglas Gregor4123a862011-11-14 22:10:01 +00001776 SourceRange BaseRange = Super? SourceRange(SuperLoc)
1777 : BaseExpr->getSourceRange();
1778 if (RequireCompleteType(MemberLoc, OPT->getPointeeType(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001779 diag::err_property_not_found_forward_class,
1780 MemberName, BaseRange))
Fariborz Jahanian7cabbe02010-12-16 00:56:28 +00001781 return ExprError();
Douglas Gregor4123a862011-11-14 22:10:01 +00001782
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001783 // Search for a declared property first.
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +00001784 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001785 // Check whether we can reference this property.
1786 if (DiagnoseUseOfDecl(PD, MemberLoc))
1787 return ExprError();
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001788 if (Super)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001789 return new (Context)
1790 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue,
1791 OK_ObjCProperty, MemberLoc, SuperLoc, SuperType);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001792 else
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001793 return new (Context)
1794 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue,
1795 OK_ObjCProperty, MemberLoc, BaseExpr);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001796 }
1797 // Check protocols on qualified interfaces.
Aaron Ballman83731462014-03-17 16:14:00 +00001798 for (const auto *I : OPT->quals())
1799 if (ObjCPropertyDecl *PD = I->FindPropertyDeclaration(Member)) {
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001800 // Check whether we can reference this property.
1801 if (DiagnoseUseOfDecl(PD, MemberLoc))
1802 return ExprError();
Fariborz Jahanianfce89c62012-04-19 21:44:57 +00001803
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001804 if (Super)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001805 return new (Context) ObjCPropertyRefExpr(
1806 PD, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty, MemberLoc,
1807 SuperLoc, SuperType);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001808 else
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001809 return new (Context)
1810 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue,
1811 OK_ObjCProperty, MemberLoc, BaseExpr);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001812 }
1813 // If that failed, look for an "implicit" property by seeing if the nullary
1814 // selector is implemented.
1815
1816 // FIXME: The logic for looking up nullary and unary selectors should be
1817 // shared with the code in ActOnInstanceMessage.
1818
1819 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
1820 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianb296e332011-03-09 22:17:12 +00001821
1822 // May be founf in property's qualified list.
1823 if (!Getter)
1824 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001825
1826 // If this reference is in an @implementation, check for 'private' methods.
1827 if (!Getter)
Fariborz Jahanianecbbb6e2010-12-03 23:37:08 +00001828 Getter = IFace->lookupPrivateMethod(Sel);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001829
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001830 if (Getter) {
1831 // Check if we can reference this property.
1832 if (DiagnoseUseOfDecl(Getter, MemberLoc))
1833 return ExprError();
1834 }
1835 // If we found a getter then this may be a valid dot-reference, we
1836 // will look for the matching setter, in case it is needed.
1837 Selector SetterSel =
Adrian Prantla4ce9062013-06-07 22:29:12 +00001838 SelectorTable::constructSetterSelector(PP.getIdentifierTable(),
1839 PP.getSelectorTable(), Member);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001840 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +00001841
Fariborz Jahanianb296e332011-03-09 22:17:12 +00001842 // May be founf in property's qualified list.
1843 if (!Setter)
1844 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true);
1845
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001846 if (!Setter) {
1847 // If this reference is in an @implementation, also check for 'private'
1848 // methods.
Fariborz Jahanianecbbb6e2010-12-03 23:37:08 +00001849 Setter = IFace->lookupPrivateMethod(SetterSel);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001850 }
Fariborz Jahanianb296e332011-03-09 22:17:12 +00001851
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001852 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
1853 return ExprError();
1854
Fariborz Jahanian0b1d2882014-08-08 22:33:24 +00001855 // Special warning if member name used in a property-dot for a setter accessor
1856 // does not use a property with same name; e.g. obj.X = ... for a property with
1857 // name 'x'.
1858 if (Setter && Setter->isImplicit() && Setter->isPropertyAccessor()
1859 && !IFace->FindPropertyDeclaration(Member)) {
Fariborz Jahanian4eda2c02014-08-15 17:39:00 +00001860 if (const ObjCPropertyDecl *PDecl = Setter->findPropertyDecl()) {
1861 // Do not warn if user is using property-dot syntax to make call to
1862 // user named setter.
1863 if (!(PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter))
Fariborz Jahanian0b1d2882014-08-08 22:33:24 +00001864 Diag(MemberLoc,
1865 diag::warn_property_access_suggest)
1866 << MemberName << QualType(OPT, 0) << PDecl->getName()
1867 << FixItHint::CreateReplacement(MemberLoc, PDecl->getName());
Fariborz Jahanian4eda2c02014-08-15 17:39:00 +00001868 }
Fariborz Jahanian0b1d2882014-08-08 22:33:24 +00001869 }
1870
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00001871 if (Getter || Setter) {
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001872 if (Super)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001873 return new (Context)
1874 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1875 OK_ObjCProperty, MemberLoc, SuperLoc, SuperType);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001876 else
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001877 return new (Context)
1878 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1879 OK_ObjCProperty, MemberLoc, BaseExpr);
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001880
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001881 }
1882
1883 // Attempt to correct for typos in property names.
Kaelyn Takata89c881b2014-10-27 18:07:29 +00001884 if (TypoCorrection Corrected =
1885 CorrectTypo(DeclarationNameInfo(MemberName, MemberLoc),
1886 LookupOrdinaryName, nullptr, nullptr,
1887 llvm::make_unique<DeclFilterCCC<ObjCPropertyDecl>>(),
1888 CTK_ErrorRecovery, IFace, false, OPT)) {
Richard Smithf9b15102013-08-17 00:46:16 +00001889 diagnoseTypo(Corrected, PDiag(diag::err_property_not_found_suggest)
1890 << MemberName << QualType(OPT, 0));
Douglas Gregorc2fa1692011-06-28 16:20:02 +00001891 DeclarationName TypoResult = Corrected.getCorrection();
Fariborz Jahanianc297cd82011-06-28 00:00:52 +00001892 return HandleExprPropertyRefExpr(OPT, BaseExpr, OpLoc,
1893 TypoResult, MemberLoc,
Fariborz Jahanian681c0752010-10-14 16:04:05 +00001894 SuperLoc, SuperType, Super);
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001895 }
Fariborz Jahanian05d389f2011-02-17 01:26:14 +00001896 ObjCInterfaceDecl *ClassDeclared;
1897 if (ObjCIvarDecl *Ivar =
1898 IFace->lookupInstanceVariable(Member, ClassDeclared)) {
1899 QualType T = Ivar->getType();
1900 if (const ObjCObjectPointerType * OBJPT =
1901 T->getAsObjCInterfacePointerType()) {
Douglas Gregor4123a862011-11-14 22:10:01 +00001902 if (RequireCompleteType(MemberLoc, OBJPT->getPointeeType(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001903 diag::err_property_not_as_forward_class,
1904 MemberName, BaseExpr))
Douglas Gregor4123a862011-11-14 22:10:01 +00001905 return ExprError();
Fariborz Jahanian05d389f2011-02-17 01:26:14 +00001906 }
Fariborz Jahanianc297cd82011-06-28 00:00:52 +00001907 Diag(MemberLoc,
1908 diag::err_ivar_access_using_property_syntax_suggest)
1909 << MemberName << QualType(OPT, 0) << Ivar->getDeclName()
1910 << FixItHint::CreateReplacement(OpLoc, "->");
1911 return ExprError();
Fariborz Jahanian05d389f2011-02-17 01:26:14 +00001912 }
Chris Lattner90c58fa2010-04-11 07:51:10 +00001913
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001914 Diag(MemberLoc, diag::err_property_not_found)
1915 << MemberName << QualType(OPT, 0);
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00001916 if (Setter)
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001917 Diag(Setter->getLocation(), diag::note_getter_unavailable)
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00001918 << MemberName << BaseExpr->getSourceRange();
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001919 return ExprError();
Chris Lattner2b1ca5f2010-04-11 07:45:24 +00001920}
1921
1922
1923
John McCalldadc5752010-08-24 06:29:42 +00001924ExprResult Sema::
Chris Lattnera36ec422010-04-11 08:28:14 +00001925ActOnClassPropertyRefExpr(IdentifierInfo &receiverName,
1926 IdentifierInfo &propertyName,
1927 SourceLocation receiverNameLoc,
1928 SourceLocation propertyNameLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00001929
Douglas Gregor35b0bac2010-01-03 18:01:57 +00001930 IdentifierInfo *receiverNamePtr = &receiverName;
Douglas Gregorb2ccf012010-04-15 22:33:43 +00001931 ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr,
1932 receiverNameLoc);
Douglas Gregor33823722011-06-11 01:09:30 +00001933
Douglas Gregore83b9562015-07-07 03:57:53 +00001934 QualType SuperType;
Craig Topperc3ec1492014-05-26 06:22:03 +00001935 if (!IFace) {
Chris Lattnera36ec422010-04-11 08:28:14 +00001936 // If the "receiver" is 'super' in a method, handle it as an expression-like
1937 // property reference.
John McCall5f2d5562011-02-03 09:00:02 +00001938 if (receiverNamePtr->isStr("super")) {
Eli Friedman24af8502012-02-03 22:47:37 +00001939 if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) {
Douglas Gregore83b9562015-07-07 03:57:53 +00001940 if (auto classDecl = CurMethod->getClassInterface()) {
1941 SuperType = QualType(classDecl->getSuperClassType(), 0);
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001942 if (CurMethod->isInstanceMethod()) {
Douglas Gregore83b9562015-07-07 03:57:53 +00001943 if (SuperType.isNull()) {
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001944 // The current class does not have a superclass.
1945 Diag(receiverNameLoc, diag::error_root_class_cannot_use_super)
Douglas Gregore83b9562015-07-07 03:57:53 +00001946 << CurMethod->getClassInterface()->getIdentifier();
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001947 return ExprError();
1948 }
Douglas Gregore83b9562015-07-07 03:57:53 +00001949 QualType T = Context.getObjCObjectPointerType(SuperType);
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001950
Douglas Gregore83b9562015-07-07 03:57:53 +00001951 return HandleExprPropertyRefExpr(T->castAs<ObjCObjectPointerType>(),
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001952 /*BaseExpr*/nullptr,
1953 SourceLocation()/*OpLoc*/,
1954 &propertyName,
1955 propertyNameLoc,
1956 receiverNameLoc, T, true);
Fariborz Jahanian05e2aaa2013-03-11 22:26:33 +00001957 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001958
Fariborz Jahanian86dd4562015-01-20 16:53:34 +00001959 // Otherwise, if this is a class method, try dispatching to our
1960 // superclass.
Douglas Gregore83b9562015-07-07 03:57:53 +00001961 IFace = CurMethod->getClassInterface()->getSuperClass();
Chris Lattnera36ec422010-04-11 08:28:14 +00001962 }
Chris Lattnera36ec422010-04-11 08:28:14 +00001963 }
John McCall5f2d5562011-02-03 09:00:02 +00001964 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001965
1966 if (!IFace) {
Alp Tokerec543272013-12-24 09:48:30 +00001967 Diag(receiverNameLoc, diag::err_expected_either) << tok::identifier
1968 << tok::l_paren;
Chris Lattnera36ec422010-04-11 08:28:14 +00001969 return ExprError();
1970 }
1971 }
1972
1973 // Search for a declared property first.
Steve Naroff9527bbf2009-03-09 21:12:44 +00001974 Selector Sel = PP.getSelectorTable().getNullarySelector(&propertyName);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001975 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00001976
1977 // If this reference is in an @implementation, check for 'private' methods.
1978 if (!Getter)
Fariborz Jahanian29cdbc62014-04-21 20:22:17 +00001979 Getter = IFace->lookupPrivateClassMethod(Sel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00001980
1981 if (Getter) {
1982 // FIXME: refactor/share with ActOnMemberReference().
1983 // Check if we can reference this property.
1984 if (DiagnoseUseOfDecl(Getter, propertyNameLoc))
1985 return ExprError();
1986 }
Mike Stump11289f42009-09-09 15:08:12 +00001987
Steve Naroff9527bbf2009-03-09 21:12:44 +00001988 // Look for the matching setter, in case it is needed.
Mike Stump11289f42009-09-09 15:08:12 +00001989 Selector SetterSel =
Adrian Prantla4ce9062013-06-07 22:29:12 +00001990 SelectorTable::constructSetterSelector(PP.getIdentifierTable(),
Douglas Gregore83b9562015-07-07 03:57:53 +00001991 PP.getSelectorTable(),
Adrian Prantla4ce9062013-06-07 22:29:12 +00001992 &propertyName);
Mike Stump11289f42009-09-09 15:08:12 +00001993
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001994 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00001995 if (!Setter) {
1996 // If this reference is in an @implementation, also check for 'private'
1997 // methods.
Fariborz Jahanian29cdbc62014-04-21 20:22:17 +00001998 Setter = IFace->lookupPrivateClassMethod(SetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00001999 }
2000 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002001 if (!Setter)
2002 Setter = IFace->getCategoryClassMethod(SetterSel);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002003
2004 if (Setter && DiagnoseUseOfDecl(Setter, propertyNameLoc))
2005 return ExprError();
2006
2007 if (Getter || Setter) {
Douglas Gregore83b9562015-07-07 03:57:53 +00002008 if (!SuperType.isNull())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002009 return new (Context)
2010 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2011 OK_ObjCProperty, propertyNameLoc, receiverNameLoc,
Douglas Gregore83b9562015-07-07 03:57:53 +00002012 SuperType);
Douglas Gregor33823722011-06-11 01:09:30 +00002013
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002014 return new (Context) ObjCPropertyRefExpr(
2015 Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty,
2016 propertyNameLoc, receiverNameLoc, IFace);
Steve Naroff9527bbf2009-03-09 21:12:44 +00002017 }
2018 return ExprError(Diag(propertyNameLoc, diag::err_property_not_found)
2019 << &propertyName << Context.getObjCInterfaceType(IFace));
2020}
2021
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002022namespace {
2023
2024class ObjCInterfaceOrSuperCCC : public CorrectionCandidateCallback {
2025 public:
2026 ObjCInterfaceOrSuperCCC(ObjCMethodDecl *Method) {
2027 // Determine whether "super" is acceptable in the current context.
2028 if (Method && Method->getClassInterface())
2029 WantObjCSuper = Method->getClassInterface()->getSuperClass();
2030 }
2031
Craig Toppere14c0f82014-03-12 04:55:44 +00002032 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002033 return candidate.getCorrectionDeclAs<ObjCInterfaceDecl>() ||
2034 candidate.isKeyword("super");
2035 }
2036};
2037
Alexander Kornienkoab9db512015-06-22 23:07:51 +00002038}
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002039
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002040Sema::ObjCMessageKind Sema::getObjCMessageKind(Scope *S,
Douglas Gregore5798dc2010-04-21 20:38:13 +00002041 IdentifierInfo *Name,
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002042 SourceLocation NameLoc,
2043 bool IsSuper,
Douglas Gregore5798dc2010-04-21 20:38:13 +00002044 bool HasTrailingDot,
John McCallba7bf592010-08-24 05:47:05 +00002045 ParsedType &ReceiverType) {
2046 ReceiverType = ParsedType();
Douglas Gregore5798dc2010-04-21 20:38:13 +00002047
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002048 // If the identifier is "super" and there is no trailing dot, we're
Douglas Gregor57756ea2010-10-14 22:11:03 +00002049 // messaging super. If the identifier is "super" and there is a
2050 // trailing dot, it's an instance message.
2051 if (IsSuper && S->isInObjcMethodScope())
2052 return HasTrailingDot? ObjCInstanceMessage : ObjCSuperMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002053
2054 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
2055 LookupName(Result, S);
2056
2057 switch (Result.getResultKind()) {
2058 case LookupResult::NotFound:
Douglas Gregorca7136b2010-04-19 20:09:36 +00002059 // Normal name lookup didn't find anything. If we're in an
2060 // Objective-C method, look for ivars. If we find one, we're done!
Douglas Gregor57756ea2010-10-14 22:11:03 +00002061 // FIXME: This is a hack. Ivar lookup should be part of normal
2062 // lookup.
Douglas Gregorca7136b2010-04-19 20:09:36 +00002063 if (ObjCMethodDecl *Method = getCurMethodDecl()) {
Argyrios Kyrtzidis3a8de5b2011-11-09 00:22:48 +00002064 if (!Method->getClassInterface()) {
2065 // Fall back: let the parser try to parse it as an instance message.
2066 return ObjCInstanceMessage;
2067 }
2068
Douglas Gregorca7136b2010-04-19 20:09:36 +00002069 ObjCInterfaceDecl *ClassDeclared;
2070 if (Method->getClassInterface()->lookupInstanceVariable(Name,
2071 ClassDeclared))
2072 return ObjCInstanceMessage;
2073 }
Douglas Gregor57756ea2010-10-14 22:11:03 +00002074
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002075 // Break out; we'll perform typo correction below.
2076 break;
2077
2078 case LookupResult::NotFoundInCurrentInstantiation:
2079 case LookupResult::FoundOverloaded:
2080 case LookupResult::FoundUnresolvedValue:
2081 case LookupResult::Ambiguous:
2082 Result.suppressDiagnostics();
2083 return ObjCInstanceMessage;
2084
2085 case LookupResult::Found: {
Fariborz Jahanian14889fc2011-02-08 00:23:07 +00002086 // If the identifier is a class or not, and there is a trailing dot,
2087 // it's an instance message.
2088 if (HasTrailingDot)
2089 return ObjCInstanceMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002090 // We found something. If it's a type, then we have a class
2091 // message. Otherwise, it's an instance message.
2092 NamedDecl *ND = Result.getFoundDecl();
Douglas Gregore5798dc2010-04-21 20:38:13 +00002093 QualType T;
2094 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(ND))
2095 T = Context.getObjCInterfaceType(Class);
Fariborz Jahanian83f1be12013-04-04 18:45:52 +00002096 else if (TypeDecl *Type = dyn_cast<TypeDecl>(ND)) {
Douglas Gregore5798dc2010-04-21 20:38:13 +00002097 T = Context.getTypeDeclType(Type);
Fariborz Jahanian83f1be12013-04-04 18:45:52 +00002098 DiagnoseUseOfDecl(Type, NameLoc);
2099 }
2100 else
Douglas Gregore5798dc2010-04-21 20:38:13 +00002101 return ObjCInstanceMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002102
Douglas Gregore5798dc2010-04-21 20:38:13 +00002103 // We have a class message, and T is the type we're
2104 // messaging. Build source-location information for it.
2105 TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc);
John McCallba7bf592010-08-24 05:47:05 +00002106 ReceiverType = CreateParsedType(T, TSInfo);
Douglas Gregore5798dc2010-04-21 20:38:13 +00002107 return ObjCClassMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002108 }
2109 }
2110
Kaelyn Takata89c881b2014-10-27 18:07:29 +00002111 if (TypoCorrection Corrected = CorrectTypo(
2112 Result.getLookupNameInfo(), Result.getLookupKind(), S, nullptr,
2113 llvm::make_unique<ObjCInterfaceOrSuperCCC>(getCurMethodDecl()),
2114 CTK_ErrorRecovery, nullptr, false, nullptr, false)) {
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002115 if (Corrected.isKeyword()) {
2116 // If we've found the keyword "super" (the only keyword that would be
2117 // returned by CorrectTypo), this is a send to super.
Richard Smithf9b15102013-08-17 00:46:16 +00002118 diagnoseTypo(Corrected,
2119 PDiag(diag::err_unknown_receiver_suggest) << Name);
Douglas Gregor280e1ee2010-04-14 20:04:41 +00002120 return ObjCSuperMessage;
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002121 } else if (ObjCInterfaceDecl *Class =
Richard Smithf9b15102013-08-17 00:46:16 +00002122 Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) {
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002123 // If we found a declaration, correct when it refers to an Objective-C
2124 // class.
Richard Smithf9b15102013-08-17 00:46:16 +00002125 diagnoseTypo(Corrected,
2126 PDiag(diag::err_unknown_receiver_suggest) << Name);
Kaelyn Uhraine31b8882012-01-13 01:32:50 +00002127 QualType T = Context.getObjCInterfaceType(Class);
2128 TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc);
2129 ReceiverType = CreateParsedType(T, TSInfo);
2130 return ObjCClassMessage;
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002131 }
2132 }
Richard Smithf9b15102013-08-17 00:46:16 +00002133
Douglas Gregor8aa4ebf2010-04-14 02:46:37 +00002134 // Fall back: let the parser try to parse it as an instance message.
2135 return ObjCInstanceMessage;
2136}
Steve Naroff9527bbf2009-03-09 21:12:44 +00002137
John McCalldadc5752010-08-24 06:29:42 +00002138ExprResult Sema::ActOnSuperMessage(Scope *S,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002139 SourceLocation SuperLoc,
2140 Selector Sel,
2141 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002142 ArrayRef<SourceLocation> SelectorLocs,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002143 SourceLocation RBracLoc,
2144 MultiExprArg Args) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002145 // Determine whether we are inside a method or not.
Eli Friedman24af8502012-02-03 22:47:37 +00002146 ObjCMethodDecl *Method = tryCaptureObjCSelf(SuperLoc);
Douglas Gregor4fdba132010-04-21 20:01:04 +00002147 if (!Method) {
2148 Diag(SuperLoc, diag::err_invalid_receiver_to_message_super);
2149 return ExprError();
2150 }
Chris Lattnera3fc41d2008-01-04 22:32:30 +00002151
Douglas Gregor4fdba132010-04-21 20:01:04 +00002152 ObjCInterfaceDecl *Class = Method->getClassInterface();
2153 if (!Class) {
2154 Diag(SuperLoc, diag::error_no_super_class_message)
2155 << Method->getDeclName();
2156 return ExprError();
2157 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002158
Douglas Gregore83b9562015-07-07 03:57:53 +00002159 QualType SuperTy(Class->getSuperClassType(), 0);
2160 if (SuperTy.isNull()) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002161 // The current class does not have a superclass.
Ted Kremenek499897b2011-01-23 17:21:34 +00002162 Diag(SuperLoc, diag::error_root_class_cannot_use_super)
2163 << Class->getIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002164 return ExprError();
Chris Lattnerc2ebb032010-04-12 05:38:43 +00002165 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002166
Douglas Gregor4fdba132010-04-21 20:01:04 +00002167 // We are in a method whose class has a superclass, so 'super'
2168 // is acting as a keyword.
Jordan Rose2afd6612012-10-19 16:05:26 +00002169 if (Method->getSelector() == Sel)
2170 getCurFunction()->ObjCShouldCallSuper = false;
Nico Weber715abaf2011-08-22 17:25:57 +00002171
Jordan Rose2afd6612012-10-19 16:05:26 +00002172 if (Method->isInstanceMethod()) {
Douglas Gregor4fdba132010-04-21 20:01:04 +00002173 // Since we are in an instance method, this is an instance
2174 // message to the superclass instance.
Douglas Gregor4fdba132010-04-21 20:01:04 +00002175 SuperTy = Context.getObjCObjectPointerType(SuperTy);
Craig Topperc3ec1492014-05-26 06:22:03 +00002176 return BuildInstanceMessage(nullptr, SuperTy, SuperLoc,
2177 Sel, /*Method=*/nullptr,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002178 LBracLoc, SelectorLocs, RBracLoc, Args);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002179 }
Douglas Gregor4fdba132010-04-21 20:01:04 +00002180
2181 // Since we are in a class method, this is a class message to
2182 // the superclass.
Craig Topperc3ec1492014-05-26 06:22:03 +00002183 return BuildClassMessage(/*ReceiverTypeInfo=*/nullptr,
Douglas Gregore83b9562015-07-07 03:57:53 +00002184 SuperTy,
Craig Topperc3ec1492014-05-26 06:22:03 +00002185 SuperLoc, Sel, /*Method=*/nullptr,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002186 LBracLoc, SelectorLocs, RBracLoc, Args);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002187}
2188
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002189
2190ExprResult Sema::BuildClassMessageImplicit(QualType ReceiverType,
2191 bool isSuperReceiver,
2192 SourceLocation Loc,
2193 Selector Sel,
2194 ObjCMethodDecl *Method,
2195 MultiExprArg Args) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002196 TypeSourceInfo *receiverTypeInfo = nullptr;
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002197 if (!ReceiverType.isNull())
2198 receiverTypeInfo = Context.getTrivialTypeSourceInfo(ReceiverType);
2199
2200 return BuildClassMessage(receiverTypeInfo, ReceiverType,
2201 /*SuperLoc=*/isSuperReceiver ? Loc : SourceLocation(),
2202 Sel, Method, Loc, Loc, Loc, Args,
2203 /*isImplicit=*/true);
2204
2205}
2206
Ted Kremeneke65b0862012-03-06 20:05:56 +00002207static void applyCocoaAPICheck(Sema &S, const ObjCMessageExpr *Msg,
2208 unsigned DiagID,
2209 bool (*refactor)(const ObjCMessageExpr *,
2210 const NSAPI &, edit::Commit &)) {
2211 SourceLocation MsgLoc = Msg->getExprLoc();
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002212 if (S.Diags.isIgnored(DiagID, MsgLoc))
Ted Kremeneke65b0862012-03-06 20:05:56 +00002213 return;
2214
2215 SourceManager &SM = S.SourceMgr;
2216 edit::Commit ECommit(SM, S.LangOpts);
2217 if (refactor(Msg,*S.NSAPIObj, ECommit)) {
2218 DiagnosticBuilder Builder = S.Diag(MsgLoc, DiagID)
2219 << Msg->getSelector() << Msg->getSourceRange();
2220 // FIXME: Don't emit diagnostic at all if fixits are non-commitable.
2221 if (!ECommit.isCommitable())
2222 return;
2223 for (edit::Commit::edit_iterator
2224 I = ECommit.edit_begin(), E = ECommit.edit_end(); I != E; ++I) {
2225 const edit::Commit::Edit &Edit = *I;
2226 switch (Edit.Kind) {
2227 case edit::Commit::Act_Insert:
2228 Builder.AddFixItHint(FixItHint::CreateInsertion(Edit.OrigLoc,
2229 Edit.Text,
2230 Edit.BeforePrev));
2231 break;
2232 case edit::Commit::Act_InsertFromRange:
2233 Builder.AddFixItHint(
2234 FixItHint::CreateInsertionFromRange(Edit.OrigLoc,
2235 Edit.getInsertFromRange(SM),
2236 Edit.BeforePrev));
2237 break;
2238 case edit::Commit::Act_Remove:
2239 Builder.AddFixItHint(FixItHint::CreateRemoval(Edit.getFileRange(SM)));
2240 break;
2241 }
2242 }
2243 }
2244}
2245
2246static void checkCocoaAPI(Sema &S, const ObjCMessageExpr *Msg) {
2247 applyCocoaAPICheck(S, Msg, diag::warn_objc_redundant_literal_use,
2248 edit::rewriteObjCRedundantCallWithLiteral);
2249}
2250
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002251/// \brief Diagnose use of %s directive in an NSString which is being passed
2252/// as formatting string to formatting method.
2253static void
2254DiagnoseCStringFormatDirectiveInObjCAPI(Sema &S,
2255 ObjCMethodDecl *Method,
2256 Selector Sel,
2257 Expr **Args, unsigned NumArgs) {
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00002258 unsigned Idx = 0;
2259 bool Format = false;
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002260 ObjCStringFormatFamily SFFamily = Sel.getStringFormatFamily();
2261 if (SFFamily == ObjCStringFormatFamily::SFF_NSString) {
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00002262 Idx = 0;
2263 Format = true;
2264 }
2265 else if (Method) {
2266 for (const auto *I : Method->specific_attrs<FormatAttr>()) {
2267 if (S.GetFormatNSStringIdx(I, Idx)) {
2268 Format = true;
2269 break;
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002270 }
2271 }
2272 }
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00002273 if (!Format || NumArgs <= Idx)
2274 return;
2275
2276 Expr *FormatExpr = Args[Idx];
2277 if (ObjCStringLiteral *OSL =
2278 dyn_cast<ObjCStringLiteral>(FormatExpr->IgnoreParenImpCasts())) {
2279 StringLiteral *FormatString = OSL->getString();
2280 if (S.FormatStringHasSArg(FormatString)) {
2281 S.Diag(FormatExpr->getExprLoc(), diag::warn_objc_cdirective_format_string)
2282 << "%s" << 0 << 0;
2283 if (Method)
2284 S.Diag(Method->getLocation(), diag::note_method_declared_at)
2285 << Method->getDeclName();
2286 }
2287 }
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002288}
2289
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002290/// \brief Build an Objective-C class message expression.
2291///
2292/// This routine takes care of both normal class messages and
2293/// class messages to the superclass.
2294///
2295/// \param ReceiverTypeInfo Type source information that describes the
2296/// receiver of this message. This may be NULL, in which case we are
2297/// sending to the superclass and \p SuperLoc must be a valid source
2298/// location.
2299
2300/// \param ReceiverType The type of the object receiving the
2301/// message. When \p ReceiverTypeInfo is non-NULL, this is the same
2302/// type as that refers to. For a superclass send, this is the type of
2303/// the superclass.
2304///
2305/// \param SuperLoc The location of the "super" keyword in a
2306/// superclass message.
2307///
2308/// \param Sel The selector to which the message is being sent.
2309///
Douglas Gregorb5186b12010-04-22 17:01:48 +00002310/// \param Method The method that this class message is invoking, if
2311/// already known.
2312///
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002313/// \param LBracLoc The location of the opening square bracket ']'.
2314///
James Dennettffad8b72012-06-22 08:10:18 +00002315/// \param RBracLoc The location of the closing square bracket ']'.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002316///
James Dennettffad8b72012-06-22 08:10:18 +00002317/// \param ArgsIn The message arguments.
John McCalldadc5752010-08-24 06:29:42 +00002318ExprResult Sema::BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002319 QualType ReceiverType,
2320 SourceLocation SuperLoc,
2321 Selector Sel,
2322 ObjCMethodDecl *Method,
2323 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002324 ArrayRef<SourceLocation> SelectorLocs,
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002325 SourceLocation RBracLoc,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002326 MultiExprArg ArgsIn,
2327 bool isImplicit) {
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002328 SourceLocation Loc = SuperLoc.isValid()? SuperLoc
Douglas Gregorabf4a3e2010-09-16 01:51:54 +00002329 : ReceiverTypeInfo->getTypeLoc().getSourceRange().getBegin();
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002330 if (LBracLoc.isInvalid()) {
2331 Diag(Loc, diag::err_missing_open_square_message_send)
2332 << FixItHint::CreateInsertion(Loc, "[");
2333 LBracLoc = Loc;
2334 }
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002335 SourceLocation SelLoc;
2336 if (!SelectorLocs.empty() && SelectorLocs.front().isValid())
2337 SelLoc = SelectorLocs.front();
2338 else
2339 SelLoc = Loc;
2340
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002341 if (ReceiverType->isDependentType()) {
2342 // If the receiver type is dependent, we can't type-check anything
2343 // at this point. Build a dependent expression.
2344 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002345 Expr **Args = ArgsIn.data();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002346 assert(SuperLoc.isInvalid() && "Message to super with dependent type");
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002347 return ObjCMessageExpr::Create(
2348 Context, ReceiverType, VK_RValue, LBracLoc, ReceiverTypeInfo, Sel,
2349 SelectorLocs, /*Method=*/nullptr, makeArrayRef(Args, NumArgs), RBracLoc,
2350 isImplicit);
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002351 }
Chris Lattnerc2ebb032010-04-12 05:38:43 +00002352
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002353 // Find the class to which we are sending this message.
Craig Topperc3ec1492014-05-26 06:22:03 +00002354 ObjCInterfaceDecl *Class = nullptr;
John McCall8b07ec22010-05-15 11:32:37 +00002355 const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>();
2356 if (!ClassType || !(Class = ClassType->getInterface())) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002357 Diag(Loc, diag::err_invalid_receiver_class_message)
2358 << ReceiverType;
2359 return ExprError();
Steve Naroffe2177fb2008-07-25 19:39:00 +00002360 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002361 assert(Class && "We don't know which class we're messaging?");
Fariborz Jahanianc27cd1b2011-10-15 19:18:36 +00002362 // objc++ diagnoses during typename annotation.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002363 if (!getLangOpts().CPlusPlus)
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002364 (void)DiagnoseUseOfDecl(Class, SelLoc);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002365 // Find the method we are messaging.
Douglas Gregorb5186b12010-04-22 17:01:48 +00002366 if (!Method) {
Douglas Gregor4123a862011-11-14 22:10:01 +00002367 SourceRange TypeRange
2368 = SuperLoc.isValid()? SourceRange(SuperLoc)
2369 : ReceiverTypeInfo->getTypeLoc().getSourceRange();
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002370 if (RequireCompleteType(Loc, Context.getObjCInterfaceType(Class),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002371 (getLangOpts().ObjCAutoRefCount
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002372 ? diag::err_arc_receiver_forward_class
2373 : diag::warn_receiver_forward_class),
2374 TypeRange)) {
Douglas Gregorb5186b12010-04-22 17:01:48 +00002375 // A forward class used in messaging is treated as a 'Class'
Douglas Gregorb5186b12010-04-22 17:01:48 +00002376 Method = LookupFactoryMethodInGlobalPool(Sel,
2377 SourceRange(LBracLoc, RBracLoc));
David Blaikiebbafb8a2012-03-11 07:00:24 +00002378 if (Method && !getLangOpts().ObjCAutoRefCount)
Douglas Gregorb5186b12010-04-22 17:01:48 +00002379 Diag(Method->getLocation(), diag::note_method_sent_forward_class)
2380 << Method->getDeclName();
2381 }
2382 if (!Method)
2383 Method = Class->lookupClassMethod(Sel);
2384
2385 // If we have an implementation in scope, check "private" methods.
2386 if (!Method)
Anna Zaksc77a3b12012-07-27 19:07:44 +00002387 Method = Class->lookupPrivateClassMethod(Sel);
Douglas Gregorb5186b12010-04-22 17:01:48 +00002388
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002389 if (Method && DiagnoseUseOfDecl(Method, SelLoc))
Douglas Gregorb5186b12010-04-22 17:01:48 +00002390 return ExprError();
Fariborz Jahanian1bd844d2009-05-08 23:02:36 +00002391 }
Mike Stump11289f42009-09-09 15:08:12 +00002392
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002393 // Check the argument types and determine the result type.
2394 QualType ReturnType;
John McCall7decc9e2010-11-18 06:31:45 +00002395 ExprValueKind VK = VK_RValue;
2396
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002397 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002398 Expr **Args = ArgsIn.data();
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00002399 if (CheckMessageArgumentTypes(ReceiverType, MultiExprArg(Args, NumArgs),
2400 Sel, SelectorLocs,
Fariborz Jahanian6ce25c02012-08-31 17:03:18 +00002401 Method, true,
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00002402 SuperLoc.isValid(), LBracLoc, RBracLoc,
2403 SourceRange(),
Douglas Gregor33823722011-06-11 01:09:30 +00002404 ReturnType, VK))
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002405 return ExprError();
Ted Kremeneka3a37ae2008-06-24 15:50:53 +00002406
Alp Toker314cc812014-01-25 16:55:45 +00002407 if (Method && !Method->getReturnType()->isVoidType() &&
2408 RequireCompleteType(LBracLoc, Method->getReturnType(),
Douglas Gregoraec93c62011-01-11 03:23:19 +00002409 diag::err_illegal_message_expr_incomplete_type))
2410 return ExprError();
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00002411
Fariborz Jahaniane8b45502014-08-22 19:52:49 +00002412 // Warn about explicit call of +initialize on its own class. But not on 'super'.
Fariborz Jahanian42292282014-08-25 21:27:38 +00002413 if (Method && Method->getMethodFamily() == OMF_initialize) {
2414 if (!SuperLoc.isValid()) {
2415 const ObjCInterfaceDecl *ID =
2416 dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext());
2417 if (ID == Class) {
2418 Diag(Loc, diag::warn_direct_initialize_call);
2419 Diag(Method->getLocation(), diag::note_method_declared_at)
2420 << Method->getDeclName();
2421 }
2422 }
2423 else if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) {
2424 // [super initialize] is allowed only within an +initialize implementation
2425 if (CurMeth->getMethodFamily() != OMF_initialize) {
2426 Diag(Loc, diag::warn_direct_super_initialize_call);
2427 Diag(Method->getLocation(), diag::note_method_declared_at)
2428 << Method->getDeclName();
2429 Diag(CurMeth->getLocation(), diag::note_method_declared_at)
2430 << CurMeth->getDeclName();
2431 }
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00002432 }
2433 }
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002434
2435 DiagnoseCStringFormatDirectiveInObjCAPI(*this, Method, Sel, Args, NumArgs);
2436
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002437 // Construct the appropriate ObjCMessageExpr.
Ted Kremeneke65b0862012-03-06 20:05:56 +00002438 ObjCMessageExpr *Result;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002439 if (SuperLoc.isValid())
John McCall7decc9e2010-11-18 06:31:45 +00002440 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Douglas Gregoraae38d62010-05-22 05:17:18 +00002441 SuperLoc, /*IsInstanceSuper=*/false,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002442 ReceiverType, Sel, SelectorLocs,
Argyrios Kyrtzidis59ad1e32011-10-03 06:36:45 +00002443 Method, makeArrayRef(Args, NumArgs),
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002444 RBracLoc, isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002445 else {
John McCall7decc9e2010-11-18 06:31:45 +00002446 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002447 ReceiverTypeInfo, Sel, SelectorLocs,
Argyrios Kyrtzidis59ad1e32011-10-03 06:36:45 +00002448 Method, makeArrayRef(Args, NumArgs),
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002449 RBracLoc, isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002450 if (!isImplicit)
2451 checkCocoaAPI(*this, Result);
2452 }
Douglas Gregoraae38d62010-05-22 05:17:18 +00002453 return MaybeBindToTemporary(Result);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00002454}
2455
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002456// ActOnClassMessage - used for both unary and keyword messages.
Chris Lattnera3fc41d2008-01-04 22:32:30 +00002457// ArgExprs is optional - if it is present, the number of expressions
2458// is obtained from Sel.getNumArgs().
John McCalldadc5752010-08-24 06:29:42 +00002459ExprResult Sema::ActOnClassMessage(Scope *S,
Douglas Gregor3e972002010-09-15 23:19:31 +00002460 ParsedType Receiver,
2461 Selector Sel,
2462 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002463 ArrayRef<SourceLocation> SelectorLocs,
Douglas Gregor3e972002010-09-15 23:19:31 +00002464 SourceLocation RBracLoc,
2465 MultiExprArg Args) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002466 TypeSourceInfo *ReceiverTypeInfo;
2467 QualType ReceiverType = GetTypeFromParser(Receiver, &ReceiverTypeInfo);
2468 if (ReceiverType.isNull())
2469 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002470
Mike Stump11289f42009-09-09 15:08:12 +00002471
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002472 if (!ReceiverTypeInfo)
2473 ReceiverTypeInfo = Context.getTrivialTypeSourceInfo(ReceiverType, LBracLoc);
2474
2475 return BuildClassMessage(ReceiverTypeInfo, ReceiverType,
Craig Topperc3ec1492014-05-26 06:22:03 +00002476 /*SuperLoc=*/SourceLocation(), Sel,
2477 /*Method=*/nullptr, LBracLoc, SelectorLocs, RBracLoc,
2478 Args);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002479}
2480
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002481ExprResult Sema::BuildInstanceMessageImplicit(Expr *Receiver,
2482 QualType ReceiverType,
2483 SourceLocation Loc,
2484 Selector Sel,
2485 ObjCMethodDecl *Method,
2486 MultiExprArg Args) {
2487 return BuildInstanceMessage(Receiver, ReceiverType,
2488 /*SuperLoc=*/!Receiver ? Loc : SourceLocation(),
2489 Sel, Method, Loc, Loc, Loc, Args,
2490 /*isImplicit=*/true);
2491}
2492
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002493/// \brief Build an Objective-C instance message expression.
2494///
2495/// This routine takes care of both normal instance messages and
2496/// instance messages to the superclass instance.
2497///
2498/// \param Receiver The expression that computes the object that will
2499/// receive this message. This may be empty, in which case we are
2500/// sending to the superclass instance and \p SuperLoc must be a valid
2501/// source location.
2502///
2503/// \param ReceiverType The (static) type of the object receiving the
2504/// message. When a \p Receiver expression is provided, this is the
2505/// same type as that expression. For a superclass instance send, this
2506/// is a pointer to the type of the superclass.
2507///
2508/// \param SuperLoc The location of the "super" keyword in a
2509/// superclass instance message.
2510///
2511/// \param Sel The selector to which the message is being sent.
2512///
Douglas Gregorb5186b12010-04-22 17:01:48 +00002513/// \param Method The method that this instance message is invoking, if
2514/// already known.
2515///
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002516/// \param LBracLoc The location of the opening square bracket ']'.
2517///
James Dennettffad8b72012-06-22 08:10:18 +00002518/// \param RBracLoc The location of the closing square bracket ']'.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002519///
James Dennettffad8b72012-06-22 08:10:18 +00002520/// \param ArgsIn The message arguments.
John McCalldadc5752010-08-24 06:29:42 +00002521ExprResult Sema::BuildInstanceMessage(Expr *Receiver,
Argyrios Kyrtzidisd0039e52010-12-10 20:08:27 +00002522 QualType ReceiverType,
2523 SourceLocation SuperLoc,
2524 Selector Sel,
2525 ObjCMethodDecl *Method,
2526 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002527 ArrayRef<SourceLocation> SelectorLocs,
Argyrios Kyrtzidisd0039e52010-12-10 20:08:27 +00002528 SourceLocation RBracLoc,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002529 MultiExprArg ArgsIn,
2530 bool isImplicit) {
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002531 // The location of the receiver.
2532 SourceLocation Loc = SuperLoc.isValid()? SuperLoc : Receiver->getLocStart();
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002533 SourceRange RecRange =
2534 SuperLoc.isValid()? SuperLoc : Receiver->getSourceRange();
2535 SourceLocation SelLoc;
2536 if (!SelectorLocs.empty() && SelectorLocs.front().isValid())
2537 SelLoc = SelectorLocs.front();
2538 else
2539 SelLoc = Loc;
2540
Douglas Gregore9bba4f2010-09-15 14:51:05 +00002541 if (LBracLoc.isInvalid()) {
2542 Diag(Loc, diag::err_missing_open_square_message_send)
2543 << FixItHint::CreateInsertion(Loc, "[");
2544 LBracLoc = Loc;
2545 }
2546
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002547 // If we have a receiver expression, perform appropriate promotions
2548 // and determine receiver type.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002549 if (Receiver) {
John McCall4124c492011-10-17 18:40:02 +00002550 if (Receiver->hasPlaceholderType()) {
Douglas Gregord8fb1e32011-12-01 01:37:36 +00002551 ExprResult Result;
2552 if (Receiver->getType() == Context.UnknownAnyTy)
2553 Result = forceUnknownAnyToType(Receiver, Context.getObjCIdType());
2554 else
2555 Result = CheckPlaceholderExpr(Receiver);
2556 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002557 Receiver = Result.get();
John McCall4124c492011-10-17 18:40:02 +00002558 }
2559
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002560 if (Receiver->isTypeDependent()) {
2561 // If the receiver is type-dependent, we can't type-check anything
2562 // at this point. Build a dependent expression.
2563 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002564 Expr **Args = ArgsIn.data();
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002565 assert(SuperLoc.isInvalid() && "Message to super with dependent type");
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002566 return ObjCMessageExpr::Create(
2567 Context, Context.DependentTy, VK_RValue, LBracLoc, Receiver, Sel,
2568 SelectorLocs, /*Method=*/nullptr, makeArrayRef(Args, NumArgs),
2569 RBracLoc, isImplicit);
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002570 }
2571
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002572 // If necessary, apply function/array conversion to the receiver.
2573 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00002574 ExprResult Result = DefaultFunctionArrayLvalueConversion(Receiver);
2575 if (Result.isInvalid())
2576 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002577 Receiver = Result.get();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002578 ReceiverType = Receiver->getType();
John McCall80c93a02013-03-01 09:20:14 +00002579
2580 // If the receiver is an ObjC pointer, a block pointer, or an
2581 // __attribute__((NSObject)) pointer, we don't need to do any
2582 // special conversion in order to look up a receiver.
2583 if (ReceiverType->isObjCRetainableType()) {
2584 // do nothing
2585 } else if (!getLangOpts().ObjCAutoRefCount &&
2586 !Context.getObjCIdType().isNull() &&
2587 (ReceiverType->isPointerType() ||
2588 ReceiverType->isIntegerType())) {
2589 // Implicitly convert integers and pointers to 'id' but emit a warning.
2590 // But not in ARC.
2591 Diag(Loc, diag::warn_bad_receiver_type)
2592 << ReceiverType
2593 << Receiver->getSourceRange();
2594 if (ReceiverType->isPointerType()) {
2595 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002596 CK_CPointerToObjCPointerCast).get();
John McCall80c93a02013-03-01 09:20:14 +00002597 } else {
2598 // TODO: specialized warning on null receivers?
2599 bool IsNull = Receiver->isNullPointerConstant(Context,
2600 Expr::NPC_ValueDependentIsNull);
2601 CastKind Kind = IsNull ? CK_NullToPointer : CK_IntegralToPointer;
2602 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002603 Kind).get();
John McCall80c93a02013-03-01 09:20:14 +00002604 }
2605 ReceiverType = Receiver->getType();
2606 } else if (getLangOpts().CPlusPlus) {
Douglas Gregor4b60a152013-11-07 22:34:54 +00002607 // The receiver must be a complete type.
2608 if (RequireCompleteType(Loc, Receiver->getType(),
2609 diag::err_incomplete_receiver_type))
2610 return ExprError();
2611
John McCall80c93a02013-03-01 09:20:14 +00002612 ExprResult result = PerformContextuallyConvertToObjCPointer(Receiver);
2613 if (result.isUsable()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002614 Receiver = result.get();
John McCall80c93a02013-03-01 09:20:14 +00002615 ReceiverType = Receiver->getType();
2616 }
2617 }
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002618 }
2619
John McCall80c93a02013-03-01 09:20:14 +00002620 // There's a somewhat weird interaction here where we assume that we
2621 // won't actually have a method unless we also don't need to do some
2622 // of the more detailed type-checking on the receiver.
2623
Douglas Gregorb5186b12010-04-22 17:01:48 +00002624 if (!Method) {
Douglas Gregorab209d82015-07-07 03:58:42 +00002625 // Handle messages to id and __kindof types (where we use the
2626 // global method pool).
2627 // FIXME: The type bound is currently ignored by lookup in the
2628 // global pool.
2629 const ObjCObjectType *typeBound = nullptr;
2630 bool receiverIsIdLike = ReceiverType->isObjCIdOrObjectKindOfType(Context,
2631 typeBound);
2632 if (receiverIsIdLike || ReceiverType->isBlockPointerType() ||
Douglas Gregorb5186b12010-04-22 17:01:48 +00002633 (Receiver && Context.isObjCNSObjectType(Receiver->getType()))) {
2634 Method = LookupInstanceMethodInGlobalPool(Sel,
Fariborz Jahanian3337b2e2010-08-09 23:27:58 +00002635 SourceRange(LBracLoc, RBracLoc),
Douglas Gregorab209d82015-07-07 03:58:42 +00002636 receiverIsIdLike);
Douglas Gregorb5186b12010-04-22 17:01:48 +00002637 if (!Method)
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002638 Method = LookupFactoryMethodInGlobalPool(Sel,
Jordy Roseaca01f92012-05-12 17:32:52 +00002639 SourceRange(LBracLoc,RBracLoc),
Douglas Gregorab209d82015-07-07 03:58:42 +00002640 receiverIsIdLike);
Fariborz Jahanian05e77f82014-11-07 23:51:15 +00002641 if (Method) {
Fariborz Jahanian0ded4242014-08-13 21:24:14 +00002642 if (ObjCMethodDecl *BestMethod =
Fariborz Jahaniand288fad2014-08-13 23:38:04 +00002643 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod()))
Fariborz Jahanian0ded4242014-08-13 21:24:14 +00002644 Method = BestMethod;
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002645 if (!AreMultipleMethodsInGlobalPool(Sel, Method,
2646 SourceRange(LBracLoc, RBracLoc),
Douglas Gregorab209d82015-07-07 03:58:42 +00002647 receiverIsIdLike)) {
Sylvestre Ledru30f17082014-11-17 18:26:39 +00002648 DiagnoseUseOfDecl(Method, SelLoc);
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002649 }
Fariborz Jahanian05e77f82014-11-07 23:51:15 +00002650 }
Douglas Gregorab209d82015-07-07 03:58:42 +00002651 } else if (ReceiverType->isObjCClassOrClassKindOfType() ||
Douglas Gregorb5186b12010-04-22 17:01:48 +00002652 ReceiverType->isObjCQualifiedClassType()) {
2653 // Handle messages to Class.
Nico Weber2e0c8f72014-12-27 03:58:08 +00002654 // We allow sending a message to a qualified Class ("Class<foo>"), which
2655 // is ok as long as one of the protocols implements the selector (if not,
2656 // warn).
Douglas Gregorab209d82015-07-07 03:58:42 +00002657 if (!ReceiverType->isObjCClassOrClassKindOfType()) {
2658 const ObjCObjectPointerType *QClassTy
2659 = ReceiverType->getAsObjCQualifiedClassType();
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002660 // Search protocols for class methods.
2661 Method = LookupMethodInQualifiedType(Sel, QClassTy, false);
2662 if (!Method) {
2663 Method = LookupMethodInQualifiedType(Sel, QClassTy, true);
2664 // warn if instance method found for a Class message.
2665 if (Method) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002666 Diag(SelLoc, diag::warn_instance_method_on_class_found)
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002667 << Method->getSelector() << Sel;
Ted Kremenek59b10db2012-02-27 22:55:11 +00002668 Diag(Method->getLocation(), diag::note_method_declared_at)
2669 << Method->getDeclName();
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002670 }
Steve Naroff3f49fee2009-03-04 15:11:40 +00002671 }
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002672 } else {
2673 if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) {
2674 if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) {
2675 // First check the public methods in the class interface.
2676 Method = ClassDecl->lookupClassMethod(Sel);
2677
2678 if (!Method)
Anna Zaksc77a3b12012-07-27 19:07:44 +00002679 Method = ClassDecl->lookupPrivateClassMethod(Sel);
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002680 }
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002681 if (Method && DiagnoseUseOfDecl(Method, SelLoc))
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002682 return ExprError();
2683 }
2684 if (!Method) {
2685 // If not messaging 'self', look for any factory method named 'Sel'.
Douglas Gregor486b74e2011-09-27 16:10:05 +00002686 if (!Receiver || !isSelfExpr(Receiver)) {
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002687 Method = LookupFactoryMethodInGlobalPool(Sel,
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002688 SourceRange(LBracLoc, RBracLoc));
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002689 if (!Method) {
2690 // If no class (factory) method was found, check if an _instance_
2691 // method of the same name exists in the root class only.
2692 Method = LookupInstanceMethodInGlobalPool(Sel,
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002693 SourceRange(LBracLoc, RBracLoc));
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002694 if (Method)
2695 if (const ObjCInterfaceDecl *ID =
2696 dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext())) {
2697 if (ID->getSuperClass())
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002698 Diag(SelLoc, diag::warn_root_inst_method_not_found)
Fariborz Jahanian3b9819b2011-04-06 18:40:08 +00002699 << Sel << SourceRange(LBracLoc, RBracLoc);
2700 }
2701 }
Fariborz Jahaniand288fad2014-08-13 23:38:04 +00002702 if (Method)
2703 if (ObjCMethodDecl *BestMethod =
2704 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod()))
2705 Method = BestMethod;
Douglas Gregor9a129192010-04-21 00:45:42 +00002706 }
2707 }
2708 }
Douglas Gregor9a129192010-04-21 00:45:42 +00002709 } else {
Craig Topperc3ec1492014-05-26 06:22:03 +00002710 ObjCInterfaceDecl *ClassDecl = nullptr;
Douglas Gregorb5186b12010-04-22 17:01:48 +00002711
2712 // We allow sending a message to a qualified ID ("id<foo>"), which is ok as
2713 // long as one of the protocols implements the selector (if not, warn).
Fariborz Jahaniana245f192012-06-23 18:39:57 +00002714 // And as long as message is not deprecated/unavailable (warn if it is).
Douglas Gregorb5186b12010-04-22 17:01:48 +00002715 if (const ObjCObjectPointerType *QIdTy
2716 = ReceiverType->getAsObjCQualifiedIdType()) {
2717 // Search protocols for instance methods.
Fariborz Jahanianb296e332011-03-09 22:17:12 +00002718 Method = LookupMethodInQualifiedType(Sel, QIdTy, true);
2719 if (!Method)
2720 Method = LookupMethodInQualifiedType(Sel, QIdTy, false);
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002721 if (Method && DiagnoseUseOfDecl(Method, SelLoc))
Fariborz Jahaniana245f192012-06-23 18:39:57 +00002722 return ExprError();
Douglas Gregorb5186b12010-04-22 17:01:48 +00002723 } else if (const ObjCObjectPointerType *OCIType
2724 = ReceiverType->getAsObjCInterfacePointerType()) {
2725 // We allow sending a message to a pointer to an interface (an object).
2726 ClassDecl = OCIType->getInterfaceDecl();
John McCall31168b02011-06-15 23:02:42 +00002727
Douglas Gregor4123a862011-11-14 22:10:01 +00002728 // Try to complete the type. Under ARC, this is a hard error from which
2729 // we don't try to recover.
Craig Topperc3ec1492014-05-26 06:22:03 +00002730 const ObjCInterfaceDecl *forwardClass = nullptr;
Douglas Gregor4123a862011-11-14 22:10:01 +00002731 if (RequireCompleteType(Loc, OCIType->getPointeeType(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002732 getLangOpts().ObjCAutoRefCount
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002733 ? diag::err_arc_receiver_forward_instance
2734 : diag::warn_receiver_forward_instance,
2735 Receiver? Receiver->getSourceRange()
2736 : SourceRange(SuperLoc))) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002737 if (getLangOpts().ObjCAutoRefCount)
Douglas Gregor4123a862011-11-14 22:10:01 +00002738 return ExprError();
2739
2740 forwardClass = OCIType->getInterfaceDecl();
Fariborz Jahanianc934de62012-02-03 01:02:44 +00002741 Diag(Receiver ? Receiver->getLocStart()
2742 : SuperLoc, diag::note_receiver_is_id);
Craig Topperc3ec1492014-05-26 06:22:03 +00002743 Method = nullptr;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00002744 } else {
2745 Method = ClassDecl->lookupInstanceMethod(Sel);
John McCall31168b02011-06-15 23:02:42 +00002746 }
Douglas Gregorb5186b12010-04-22 17:01:48 +00002747
Fariborz Jahanianb296e332011-03-09 22:17:12 +00002748 if (!Method)
Douglas Gregorb5186b12010-04-22 17:01:48 +00002749 // Search protocol qualifiers.
Fariborz Jahanianb296e332011-03-09 22:17:12 +00002750 Method = LookupMethodInQualifiedType(Sel, OCIType, true);
2751
Douglas Gregorb5186b12010-04-22 17:01:48 +00002752 if (!Method) {
2753 // If we have implementations in scope, check "private" methods.
Anna Zaksc77a3b12012-07-27 19:07:44 +00002754 Method = ClassDecl->lookupPrivateMethod(Sel);
Douglas Gregorb5186b12010-04-22 17:01:48 +00002755
David Blaikiebbafb8a2012-03-11 07:00:24 +00002756 if (!Method && getLangOpts().ObjCAutoRefCount) {
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002757 Diag(SelLoc, diag::err_arc_may_not_respond)
2758 << OCIType->getPointeeType() << Sel << RecRange
Fariborz Jahanian32c13502012-11-28 01:27:44 +00002759 << SourceRange(SelectorLocs.front(), SelectorLocs.back());
John McCall31168b02011-06-15 23:02:42 +00002760 return ExprError();
2761 }
2762
Douglas Gregor486b74e2011-09-27 16:10:05 +00002763 if (!Method && (!Receiver || !isSelfExpr(Receiver))) {
Douglas Gregorb5186b12010-04-22 17:01:48 +00002764 // If we still haven't found a method, look in the global pool. This
2765 // behavior isn't very desirable, however we need it for GCC
2766 // compatibility. FIXME: should we deviate??
2767 if (OCIType->qual_empty()) {
2768 Method = LookupInstanceMethodInGlobalPool(Sel,
Jordy Roseaca01f92012-05-12 17:32:52 +00002769 SourceRange(LBracLoc, RBracLoc));
Fariborz Jahanian890803f2015-04-15 17:26:21 +00002770 if (Method) {
2771 if (auto BestMethod =
2772 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod()))
2773 Method = BestMethod;
2774 AreMultipleMethodsInGlobalPool(Sel, Method,
2775 SourceRange(LBracLoc, RBracLoc),
2776 true);
2777 }
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00002778 if (Method && !forwardClass)
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002779 Diag(SelLoc, diag::warn_maynot_respond)
2780 << OCIType->getInterfaceDecl()->getIdentifier()
2781 << Sel << RecRange;
Douglas Gregorb5186b12010-04-22 17:01:48 +00002782 }
2783 }
2784 }
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002785 if (Method && DiagnoseUseOfDecl(Method, SelLoc, forwardClass))
Douglas Gregorb5186b12010-04-22 17:01:48 +00002786 return ExprError();
John McCallfec112d2011-09-09 06:11:02 +00002787 } else {
John McCall80c93a02013-03-01 09:20:14 +00002788 // Reject other random receiver types (e.g. structs).
2789 Diag(Loc, diag::err_bad_receiver_type)
2790 << ReceiverType << Receiver->getSourceRange();
2791 return ExprError();
Douglas Gregorb5186b12010-04-22 17:01:48 +00002792 }
Douglas Gregor9a129192010-04-21 00:45:42 +00002793 }
Chris Lattner6b946cc2008-07-21 05:57:44 +00002794 }
Mike Stump11289f42009-09-09 15:08:12 +00002795
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002796 FunctionScopeInfo *DIFunctionScopeInfo =
2797 (Method && Method->getMethodFamily() == OMF_init)
Craig Topperc3ec1492014-05-26 06:22:03 +00002798 ? getEnclosingFunction() : nullptr;
2799
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002800 if (DIFunctionScopeInfo &&
2801 DIFunctionScopeInfo->ObjCIsDesignatedInit &&
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002802 (SuperLoc.isValid() || isSelfExpr(Receiver))) {
2803 bool isDesignatedInitChain = false;
2804 if (SuperLoc.isValid()) {
2805 if (const ObjCObjectPointerType *
2806 OCIType = ReceiverType->getAsObjCInterfacePointerType()) {
2807 if (const ObjCInterfaceDecl *ID = OCIType->getInterfaceDecl()) {
Argyrios Kyrtzidisd664a342013-12-13 03:48:17 +00002808 // Either we know this is a designated initializer or we
2809 // conservatively assume it because we don't know for sure.
2810 if (!ID->declaresOrInheritsDesignatedInitializers() ||
2811 ID->isDesignatedInitializer(Sel)) {
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002812 isDesignatedInitChain = true;
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002813 DIFunctionScopeInfo->ObjCWarnForNoDesignatedInitChain = false;
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002814 }
2815 }
Argyrios Kyrtzidis22bfa2c2013-12-03 21:11:36 +00002816 }
2817 }
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002818 if (!isDesignatedInitChain) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002819 const ObjCMethodDecl *InitMethod = nullptr;
Argyrios Kyrtzidisfcded9b2013-12-03 21:11:43 +00002820 bool isDesignated =
2821 getCurMethodDecl()->isDesignatedInitializerForTheInterface(&InitMethod);
2822 assert(isDesignated && InitMethod);
2823 (void)isDesignated;
2824 Diag(SelLoc, SuperLoc.isValid() ?
2825 diag::warn_objc_designated_init_non_designated_init_call :
2826 diag::warn_objc_designated_init_non_super_designated_init_call);
2827 Diag(InitMethod->getLocation(),
2828 diag::note_objc_designated_init_marked_here);
2829 }
Argyrios Kyrtzidis22bfa2c2013-12-03 21:11:36 +00002830 }
2831
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002832 if (DIFunctionScopeInfo &&
2833 DIFunctionScopeInfo->ObjCIsSecondaryInit &&
Argyrios Kyrtzidisb66d3cf2013-12-03 21:11:49 +00002834 (SuperLoc.isValid() || isSelfExpr(Receiver))) {
2835 if (SuperLoc.isValid()) {
2836 Diag(SelLoc, diag::warn_objc_secondary_init_super_init_call);
2837 } else {
Fariborz Jahanianba419ce2014-03-17 21:41:40 +00002838 DIFunctionScopeInfo->ObjCWarnForNoInitDelegation = false;
Argyrios Kyrtzidisb66d3cf2013-12-03 21:11:49 +00002839 }
2840 }
2841
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002842 // Check the message arguments.
2843 unsigned NumArgs = ArgsIn.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00002844 Expr **Args = ArgsIn.data();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002845 QualType ReturnType;
John McCall7decc9e2010-11-18 06:31:45 +00002846 ExprValueKind VK = VK_RValue;
Fariborz Jahanian68500912010-12-01 01:07:24 +00002847 bool ClassMessage = (ReceiverType->isObjCClassType() ||
2848 ReceiverType->isObjCQualifiedClassType());
Dmitri Gribenko2a40f082013-05-10 00:27:15 +00002849 if (CheckMessageArgumentTypes(ReceiverType, MultiExprArg(Args, NumArgs),
2850 Sel, SelectorLocs, Method,
Douglas Gregor33823722011-06-11 01:09:30 +00002851 ClassMessage, SuperLoc.isValid(),
Fariborz Jahanian19c2e2f2014-08-19 23:39:17 +00002852 LBracLoc, RBracLoc, RecRange, ReturnType, VK))
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002853 return ExprError();
Alp Toker314cc812014-01-25 16:55:45 +00002854
2855 if (Method && !Method->getReturnType()->isVoidType() &&
2856 RequireCompleteType(LBracLoc, Method->getReturnType(),
Douglas Gregoraec93c62011-01-11 03:23:19 +00002857 diag::err_illegal_message_expr_incomplete_type))
2858 return ExprError();
Douglas Gregor9a129192010-04-21 00:45:42 +00002859
John McCall31168b02011-06-15 23:02:42 +00002860 // In ARC, forbid the user from sending messages to
2861 // retain/release/autorelease/dealloc/retainCount explicitly.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002862 if (getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00002863 ObjCMethodFamily family =
2864 (Method ? Method->getMethodFamily() : Sel.getMethodFamily());
2865 switch (family) {
2866 case OMF_init:
2867 if (Method)
2868 checkInitMethod(Method, ReceiverType);
2869
2870 case OMF_None:
2871 case OMF_alloc:
2872 case OMF_copy:
Nico Weber1fb82662011-08-28 22:35:17 +00002873 case OMF_finalize:
John McCall31168b02011-06-15 23:02:42 +00002874 case OMF_mutableCopy:
2875 case OMF_new:
2876 case OMF_self:
Fariborz Jahanian78e9deb2014-08-22 16:57:26 +00002877 case OMF_initialize:
John McCall31168b02011-06-15 23:02:42 +00002878 break;
2879
2880 case OMF_dealloc:
2881 case OMF_retain:
2882 case OMF_release:
2883 case OMF_autorelease:
2884 case OMF_retainCount:
Argyrios Kyrtzidisbcf2bdc2013-05-01 00:24:09 +00002885 Diag(SelLoc, diag::err_arc_illegal_explicit_message)
2886 << Sel << RecRange;
John McCall31168b02011-06-15 23:02:42 +00002887 break;
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00002888
2889 case OMF_performSelector:
2890 if (Method && NumArgs >= 1) {
2891 if (ObjCSelectorExpr *SelExp = dyn_cast<ObjCSelectorExpr>(Args[0])) {
2892 Selector ArgSel = SelExp->getSelector();
2893 ObjCMethodDecl *SelMethod =
2894 LookupInstanceMethodInGlobalPool(ArgSel,
2895 SelExp->getSourceRange());
2896 if (!SelMethod)
2897 SelMethod =
2898 LookupFactoryMethodInGlobalPool(ArgSel,
2899 SelExp->getSourceRange());
2900 if (SelMethod) {
2901 ObjCMethodFamily SelFamily = SelMethod->getMethodFamily();
2902 switch (SelFamily) {
2903 case OMF_alloc:
2904 case OMF_copy:
2905 case OMF_mutableCopy:
2906 case OMF_new:
2907 case OMF_self:
2908 case OMF_init:
2909 // Issue error, unless ns_returns_not_retained.
2910 if (!SelMethod->hasAttr<NSReturnsNotRetainedAttr>()) {
2911 // selector names a +1 method
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002912 Diag(SelLoc,
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00002913 diag::err_arc_perform_selector_retains);
Ted Kremenek59b10db2012-02-27 22:55:11 +00002914 Diag(SelMethod->getLocation(), diag::note_method_declared_at)
2915 << SelMethod->getDeclName();
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00002916 }
2917 break;
2918 default:
2919 // +0 call. OK. unless ns_returns_retained.
2920 if (SelMethod->hasAttr<NSReturnsRetainedAttr>()) {
2921 // selector names a +1 method
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002922 Diag(SelLoc,
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00002923 diag::err_arc_perform_selector_retains);
Ted Kremenek59b10db2012-02-27 22:55:11 +00002924 Diag(SelMethod->getLocation(), diag::note_method_declared_at)
2925 << SelMethod->getDeclName();
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00002926 }
2927 break;
2928 }
2929 }
2930 } else {
2931 // error (may leak).
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002932 Diag(SelLoc, diag::warn_arc_perform_selector_leaks);
Fariborz Jahanianb7a77362011-07-05 22:38:59 +00002933 Diag(Args[0]->getExprLoc(), diag::note_used_here);
2934 }
2935 }
2936 break;
John McCall31168b02011-06-15 23:02:42 +00002937 }
2938 }
2939
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00002940 DiagnoseCStringFormatDirectiveInObjCAPI(*this, Method, Sel, Args, NumArgs);
2941
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002942 // Construct the appropriate ObjCMessageExpr instance.
John McCall31168b02011-06-15 23:02:42 +00002943 ObjCMessageExpr *Result;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002944 if (SuperLoc.isValid())
John McCall7decc9e2010-11-18 06:31:45 +00002945 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Douglas Gregoraae38d62010-05-22 05:17:18 +00002946 SuperLoc, /*IsInstanceSuper=*/true,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002947 ReceiverType, Sel, SelectorLocs, Method,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002948 makeArrayRef(Args, NumArgs), RBracLoc,
2949 isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002950 else {
John McCall7decc9e2010-11-18 06:31:45 +00002951 Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00002952 Receiver, Sel, SelectorLocs, Method,
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +00002953 makeArrayRef(Args, NumArgs), RBracLoc,
2954 isImplicit);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002955 if (!isImplicit)
2956 checkCocoaAPI(*this, Result);
2957 }
John McCall31168b02011-06-15 23:02:42 +00002958
David Blaikiebbafb8a2012-03-11 07:00:24 +00002959 if (getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00002960 // In ARC, annotate delegate init calls.
2961 if (Result->getMethodFamily() == OMF_init &&
Douglas Gregor486b74e2011-09-27 16:10:05 +00002962 (SuperLoc.isValid() || isSelfExpr(Receiver))) {
John McCall31168b02011-06-15 23:02:42 +00002963 // Only consider init calls *directly* in init implementations,
2964 // not within blocks.
2965 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(CurContext);
2966 if (method && method->getMethodFamily() == OMF_init) {
2967 // The implicit assignment to self means we also don't want to
2968 // consume the result.
2969 Result->setDelegateInitCall(true);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002970 return Result;
John McCall31168b02011-06-15 23:02:42 +00002971 }
2972 }
2973
2974 // In ARC, check for message sends which are likely to introduce
2975 // retain cycles.
2976 checkRetainCycles(Result);
Jordan Rose22487652012-10-11 16:06:21 +00002977
2978 if (!isImplicit && Method) {
2979 if (const ObjCPropertyDecl *Prop = Method->findPropertyDecl()) {
2980 bool IsWeak =
2981 Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak;
2982 if (!IsWeak && Sel.isUnarySelector())
2983 IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak;
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002984 if (IsWeak &&
2985 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, LBracLoc))
2986 getCurFunction()->recordUseOfWeak(Result, Prop);
Jordan Rose22487652012-10-11 16:06:21 +00002987 }
2988 }
John McCall31168b02011-06-15 23:02:42 +00002989 }
Alex Denisove1d882c2015-03-04 17:55:52 +00002990
2991 CheckObjCCircularContainer(Result);
2992
Douglas Gregoraae38d62010-05-22 05:17:18 +00002993 return MaybeBindToTemporary(Result);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00002994}
2995
Fariborz Jahanian02447d82013-01-22 18:35:43 +00002996static void RemoveSelectorFromWarningCache(Sema &S, Expr* Arg) {
2997 if (ObjCSelectorExpr *OSE =
2998 dyn_cast<ObjCSelectorExpr>(Arg->IgnoreParenCasts())) {
2999 Selector Sel = OSE->getSelector();
3000 SourceLocation Loc = OSE->getAtLoc();
Chandler Carruth12c8f652015-03-27 00:55:05 +00003001 auto Pos = S.ReferencedSelectors.find(Sel);
Fariborz Jahanian02447d82013-01-22 18:35:43 +00003002 if (Pos != S.ReferencedSelectors.end() && Pos->second == Loc)
3003 S.ReferencedSelectors.erase(Pos);
3004 }
3005}
3006
Douglas Gregor0c78ad92010-04-21 19:57:20 +00003007// ActOnInstanceMessage - used for both unary and keyword messages.
3008// ArgExprs is optional - if it is present, the number of expressions
3009// is obtained from Sel.getNumArgs().
John McCalldadc5752010-08-24 06:29:42 +00003010ExprResult Sema::ActOnInstanceMessage(Scope *S,
3011 Expr *Receiver,
3012 Selector Sel,
3013 SourceLocation LBracLoc,
Argyrios Kyrtzidisf934ec82011-10-03 06:36:17 +00003014 ArrayRef<SourceLocation> SelectorLocs,
John McCalldadc5752010-08-24 06:29:42 +00003015 SourceLocation RBracLoc,
3016 MultiExprArg Args) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00003017 if (!Receiver)
3018 return ExprError();
Argyrios Kyrtzidis336cc8b2013-02-15 18:34:15 +00003019
3020 // A ParenListExpr can show up while doing error recovery with invalid code.
3021 if (isa<ParenListExpr>(Receiver)) {
3022 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Receiver);
3023 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003024 Receiver = Result.get();
Argyrios Kyrtzidis336cc8b2013-02-15 18:34:15 +00003025 }
Fariborz Jahanian17748062013-01-22 19:05:17 +00003026
3027 if (RespondsToSelectorSel.isNull()) {
3028 IdentifierInfo *SelectorId = &Context.Idents.get("respondsToSelector");
3029 RespondsToSelectorSel = Context.Selectors.getUnarySelector(SelectorId);
3030 }
3031 if (Sel == RespondsToSelectorSel)
Fariborz Jahanian02447d82013-01-22 18:35:43 +00003032 RemoveSelectorFromWarningCache(*this, Args[0]);
Craig Topperc3ec1492014-05-26 06:22:03 +00003033
John McCallb268a282010-08-23 23:25:46 +00003034 return BuildInstanceMessage(Receiver, Receiver->getType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00003035 /*SuperLoc=*/SourceLocation(), Sel,
3036 /*Method=*/nullptr, LBracLoc, SelectorLocs,
3037 RBracLoc, Args);
Chris Lattnera3fc41d2008-01-04 22:32:30 +00003038}
Chris Lattner2a3569b2008-04-07 05:30:13 +00003039
John McCall31168b02011-06-15 23:02:42 +00003040enum ARCConversionTypeClass {
John McCalle4fe2452011-10-01 01:01:08 +00003041 /// int, void, struct A
John McCall31168b02011-06-15 23:02:42 +00003042 ACTC_none,
John McCalle4fe2452011-10-01 01:01:08 +00003043
3044 /// id, void (^)()
John McCall31168b02011-06-15 23:02:42 +00003045 ACTC_retainable,
John McCalle4fe2452011-10-01 01:01:08 +00003046
3047 /// id*, id***, void (^*)(),
3048 ACTC_indirectRetainable,
3049
3050 /// void* might be a normal C type, or it might a CF type.
3051 ACTC_voidPtr,
3052
3053 /// struct A*
3054 ACTC_coreFoundation
John McCall31168b02011-06-15 23:02:42 +00003055};
John McCalle4fe2452011-10-01 01:01:08 +00003056static bool isAnyRetainable(ARCConversionTypeClass ACTC) {
3057 return (ACTC == ACTC_retainable ||
3058 ACTC == ACTC_coreFoundation ||
3059 ACTC == ACTC_voidPtr);
3060}
3061static bool isAnyCLike(ARCConversionTypeClass ACTC) {
3062 return ACTC == ACTC_none ||
3063 ACTC == ACTC_voidPtr ||
3064 ACTC == ACTC_coreFoundation;
3065}
3066
John McCall31168b02011-06-15 23:02:42 +00003067static ARCConversionTypeClass classifyTypeForARCConversion(QualType type) {
John McCalle4fe2452011-10-01 01:01:08 +00003068 bool isIndirect = false;
John McCall31168b02011-06-15 23:02:42 +00003069
3070 // Ignore an outermost reference type.
John McCalle4fe2452011-10-01 01:01:08 +00003071 if (const ReferenceType *ref = type->getAs<ReferenceType>()) {
John McCall31168b02011-06-15 23:02:42 +00003072 type = ref->getPointeeType();
John McCalle4fe2452011-10-01 01:01:08 +00003073 isIndirect = true;
3074 }
John McCall31168b02011-06-15 23:02:42 +00003075
3076 // Drill through pointers and arrays recursively.
3077 while (true) {
3078 if (const PointerType *ptr = type->getAs<PointerType>()) {
3079 type = ptr->getPointeeType();
John McCalle4fe2452011-10-01 01:01:08 +00003080
3081 // The first level of pointer may be the innermost pointer on a CF type.
3082 if (!isIndirect) {
3083 if (type->isVoidType()) return ACTC_voidPtr;
3084 if (type->isRecordType()) return ACTC_coreFoundation;
3085 }
John McCall31168b02011-06-15 23:02:42 +00003086 } else if (const ArrayType *array = type->getAsArrayTypeUnsafe()) {
3087 type = QualType(array->getElementType()->getBaseElementTypeUnsafe(), 0);
3088 } else {
3089 break;
3090 }
John McCalle4fe2452011-10-01 01:01:08 +00003091 isIndirect = true;
John McCall31168b02011-06-15 23:02:42 +00003092 }
3093
John McCalle4fe2452011-10-01 01:01:08 +00003094 if (isIndirect) {
3095 if (type->isObjCARCBridgableType())
3096 return ACTC_indirectRetainable;
3097 return ACTC_none;
3098 }
3099
3100 if (type->isObjCARCBridgableType())
3101 return ACTC_retainable;
3102
3103 return ACTC_none;
John McCall31168b02011-06-15 23:02:42 +00003104}
3105
3106namespace {
John McCalle4fe2452011-10-01 01:01:08 +00003107 /// A result from the cast checker.
3108 enum ACCResult {
3109 /// Cannot be casted.
3110 ACC_invalid,
3111
3112 /// Can be safely retained or not retained.
3113 ACC_bottom,
3114
3115 /// Can be casted at +0.
3116 ACC_plusZero,
3117
3118 /// Can be casted at +1.
3119 ACC_plusOne
3120 };
3121 ACCResult merge(ACCResult left, ACCResult right) {
3122 if (left == right) return left;
3123 if (left == ACC_bottom) return right;
3124 if (right == ACC_bottom) return left;
3125 return ACC_invalid;
3126 }
3127
3128 /// A checker which white-lists certain expressions whose conversion
3129 /// to or from retainable type would otherwise be forbidden in ARC.
3130 class ARCCastChecker : public StmtVisitor<ARCCastChecker, ACCResult> {
3131 typedef StmtVisitor<ARCCastChecker, ACCResult> super;
3132
John McCall31168b02011-06-15 23:02:42 +00003133 ASTContext &Context;
John McCalle4fe2452011-10-01 01:01:08 +00003134 ARCConversionTypeClass SourceClass;
3135 ARCConversionTypeClass TargetClass;
Fariborz Jahanian36986c62012-07-27 22:37:07 +00003136 bool Diagnose;
John McCalle4fe2452011-10-01 01:01:08 +00003137
3138 static bool isCFType(QualType type) {
3139 // Someday this can use ns_bridged. For now, it has to do this.
3140 return type->isCARCBridgableType();
John McCall31168b02011-06-15 23:02:42 +00003141 }
John McCalle4fe2452011-10-01 01:01:08 +00003142
3143 public:
3144 ARCCastChecker(ASTContext &Context, ARCConversionTypeClass source,
Fariborz Jahanian36986c62012-07-27 22:37:07 +00003145 ARCConversionTypeClass target, bool diagnose)
3146 : Context(Context), SourceClass(source), TargetClass(target),
3147 Diagnose(diagnose) {}
John McCalle4fe2452011-10-01 01:01:08 +00003148
3149 using super::Visit;
3150 ACCResult Visit(Expr *e) {
3151 return super::Visit(e->IgnoreParens());
3152 }
3153
3154 ACCResult VisitStmt(Stmt *s) {
3155 return ACC_invalid;
3156 }
3157
3158 /// Null pointer constants can be casted however you please.
3159 ACCResult VisitExpr(Expr *e) {
3160 if (e->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull))
3161 return ACC_bottom;
3162 return ACC_invalid;
3163 }
3164
3165 /// Objective-C string literals can be safely casted.
3166 ACCResult VisitObjCStringLiteral(ObjCStringLiteral *e) {
3167 // If we're casting to any retainable type, go ahead. Global
3168 // strings are immune to retains, so this is bottom.
3169 if (isAnyRetainable(TargetClass)) return ACC_bottom;
3170
3171 return ACC_invalid;
John McCall31168b02011-06-15 23:02:42 +00003172 }
3173
John McCalle4fe2452011-10-01 01:01:08 +00003174 /// Look through certain implicit and explicit casts.
3175 ACCResult VisitCastExpr(CastExpr *e) {
John McCall31168b02011-06-15 23:02:42 +00003176 switch (e->getCastKind()) {
3177 case CK_NullToPointer:
John McCalle4fe2452011-10-01 01:01:08 +00003178 return ACC_bottom;
3179
John McCall31168b02011-06-15 23:02:42 +00003180 case CK_NoOp:
3181 case CK_LValueToRValue:
3182 case CK_BitCast:
John McCall9320b872011-09-09 05:25:32 +00003183 case CK_CPointerToObjCPointerCast:
3184 case CK_BlockPointerToObjCPointerCast:
John McCall31168b02011-06-15 23:02:42 +00003185 case CK_AnyPointerToBlockPointerCast:
3186 return Visit(e->getSubExpr());
John McCalle4fe2452011-10-01 01:01:08 +00003187
John McCall31168b02011-06-15 23:02:42 +00003188 default:
John McCalle4fe2452011-10-01 01:01:08 +00003189 return ACC_invalid;
John McCall31168b02011-06-15 23:02:42 +00003190 }
3191 }
John McCalle4fe2452011-10-01 01:01:08 +00003192
3193 /// Look through unary extension.
3194 ACCResult VisitUnaryExtension(UnaryOperator *e) {
John McCall31168b02011-06-15 23:02:42 +00003195 return Visit(e->getSubExpr());
3196 }
John McCalle4fe2452011-10-01 01:01:08 +00003197
3198 /// Ignore the LHS of a comma operator.
3199 ACCResult VisitBinComma(BinaryOperator *e) {
John McCall31168b02011-06-15 23:02:42 +00003200 return Visit(e->getRHS());
3201 }
John McCalle4fe2452011-10-01 01:01:08 +00003202
3203 /// Conditional operators are okay if both sides are okay.
3204 ACCResult VisitConditionalOperator(ConditionalOperator *e) {
3205 ACCResult left = Visit(e->getTrueExpr());
3206 if (left == ACC_invalid) return ACC_invalid;
3207 return merge(left, Visit(e->getFalseExpr()));
John McCall31168b02011-06-15 23:02:42 +00003208 }
John McCalle4fe2452011-10-01 01:01:08 +00003209
John McCallfe96e0b2011-11-06 09:01:30 +00003210 /// Look through pseudo-objects.
3211 ACCResult VisitPseudoObjectExpr(PseudoObjectExpr *e) {
3212 // If we're getting here, we should always have a result.
3213 return Visit(e->getResultExpr());
3214 }
3215
John McCalle4fe2452011-10-01 01:01:08 +00003216 /// Statement expressions are okay if their result expression is okay.
3217 ACCResult VisitStmtExpr(StmtExpr *e) {
John McCall31168b02011-06-15 23:02:42 +00003218 return Visit(e->getSubStmt()->body_back());
3219 }
John McCall31168b02011-06-15 23:02:42 +00003220
John McCalle4fe2452011-10-01 01:01:08 +00003221 /// Some declaration references are okay.
3222 ACCResult VisitDeclRefExpr(DeclRefExpr *e) {
John McCalle4fe2452011-10-01 01:01:08 +00003223 VarDecl *var = dyn_cast<VarDecl>(e->getDecl());
Ben Langmuir443aa4b2015-02-25 20:09:06 +00003224 // References to global constants are okay.
John McCalle4fe2452011-10-01 01:01:08 +00003225 if (isAnyRetainable(TargetClass) &&
3226 isAnyRetainable(SourceClass) &&
3227 var &&
3228 var->getStorageClass() == SC_Extern &&
Ben Langmuir443aa4b2015-02-25 20:09:06 +00003229 var->getType().isConstQualified()) {
3230
3231 // In system headers, they can also be assumed to be immune to retains.
3232 // These are things like 'kCFStringTransformToLatin'.
3233 if (Context.getSourceManager().isInSystemHeader(var->getLocation()))
3234 return ACC_bottom;
3235
3236 return ACC_plusZero;
John McCalle4fe2452011-10-01 01:01:08 +00003237 }
3238
3239 // Nothing else.
3240 return ACC_invalid;
Fariborz Jahanian78876372011-06-21 17:38:29 +00003241 }
John McCalle4fe2452011-10-01 01:01:08 +00003242
3243 /// Some calls are okay.
3244 ACCResult VisitCallExpr(CallExpr *e) {
3245 if (FunctionDecl *fn = e->getDirectCallee())
3246 if (ACCResult result = checkCallToFunction(fn))
3247 return result;
3248
3249 return super::VisitCallExpr(e);
3250 }
3251
3252 ACCResult checkCallToFunction(FunctionDecl *fn) {
3253 // Require a CF*Ref return type.
Alp Toker314cc812014-01-25 16:55:45 +00003254 if (!isCFType(fn->getReturnType()))
John McCalle4fe2452011-10-01 01:01:08 +00003255 return ACC_invalid;
3256
3257 if (!isAnyRetainable(TargetClass))
3258 return ACC_invalid;
3259
3260 // Honor an explicit 'not retained' attribute.
3261 if (fn->hasAttr<CFReturnsNotRetainedAttr>())
3262 return ACC_plusZero;
3263
3264 // Honor an explicit 'retained' attribute, except that for
3265 // now we're not going to permit implicit handling of +1 results,
3266 // because it's a bit frightening.
3267 if (fn->hasAttr<CFReturnsRetainedAttr>())
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003268 return Diagnose ? ACC_plusOne
3269 : ACC_invalid; // ACC_plusOne if we start accepting this
John McCalle4fe2452011-10-01 01:01:08 +00003270
3271 // Recognize this specific builtin function, which is used by CFSTR.
3272 unsigned builtinID = fn->getBuiltinID();
3273 if (builtinID == Builtin::BI__builtin___CFStringMakeConstantString)
3274 return ACC_bottom;
3275
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003276 // Otherwise, don't do anything implicit with an unaudited function.
3277 if (!fn->hasAttr<CFAuditedTransferAttr>())
3278 return ACC_invalid;
3279
Fariborz Jahanian36986c62012-07-27 22:37:07 +00003280 // Otherwise, it's +0 unless it follows the create convention.
3281 if (ento::coreFoundation::followsCreateRule(fn))
3282 return Diagnose ? ACC_plusOne
3283 : ACC_invalid; // ACC_plusOne if we start accepting this
John McCalle4fe2452011-10-01 01:01:08 +00003284
John McCalle4fe2452011-10-01 01:01:08 +00003285 return ACC_plusZero;
3286 }
3287
3288 ACCResult VisitObjCMessageExpr(ObjCMessageExpr *e) {
3289 return checkCallToMethod(e->getMethodDecl());
3290 }
3291
3292 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) {
3293 ObjCMethodDecl *method;
3294 if (e->isExplicitProperty())
3295 method = e->getExplicitProperty()->getGetterMethodDecl();
3296 else
3297 method = e->getImplicitPropertyGetter();
3298 return checkCallToMethod(method);
3299 }
3300
3301 ACCResult checkCallToMethod(ObjCMethodDecl *method) {
3302 if (!method) return ACC_invalid;
3303
3304 // Check for message sends to functions returning CF types. We
3305 // just obey the Cocoa conventions with these, even though the
3306 // return type is CF.
Alp Toker314cc812014-01-25 16:55:45 +00003307 if (!isAnyRetainable(TargetClass) || !isCFType(method->getReturnType()))
John McCalle4fe2452011-10-01 01:01:08 +00003308 return ACC_invalid;
3309
3310 // If the method is explicitly marked not-retained, it's +0.
3311 if (method->hasAttr<CFReturnsNotRetainedAttr>())
3312 return ACC_plusZero;
3313
3314 // If the method is explicitly marked as returning retained, or its
3315 // selector follows a +1 Cocoa convention, treat it as +1.
3316 if (method->hasAttr<CFReturnsRetainedAttr>())
3317 return ACC_plusOne;
3318
3319 switch (method->getSelector().getMethodFamily()) {
3320 case OMF_alloc:
3321 case OMF_copy:
3322 case OMF_mutableCopy:
3323 case OMF_new:
3324 return ACC_plusOne;
3325
3326 default:
3327 // Otherwise, treat it as +0.
3328 return ACC_plusZero;
Fariborz Jahanian9b83be82011-06-21 19:42:38 +00003329 }
3330 }
John McCalle4fe2452011-10-01 01:01:08 +00003331 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00003332}
Fariborz Jahanian4ad56862011-06-20 20:54:42 +00003333
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003334bool Sema::isKnownName(StringRef name) {
3335 if (name.empty())
3336 return false;
3337 LookupResult R(*this, &Context.Idents.get(name), SourceLocation(),
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00003338 Sema::LookupOrdinaryName);
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003339 return LookupName(R, TUScope, false);
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00003340}
3341
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003342static void addFixitForObjCARCConversion(Sema &S,
3343 DiagnosticBuilder &DiagB,
3344 Sema::CheckedConversionKind CCK,
3345 SourceLocation afterLParen,
3346 QualType castType,
3347 Expr *castExpr,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003348 Expr *realCast,
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003349 const char *bridgeKeyword,
3350 const char *CFBridgeName) {
3351 // We handle C-style and implicit casts here.
3352 switch (CCK) {
3353 case Sema::CCK_ImplicitConversion:
3354 case Sema::CCK_CStyleCast:
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003355 case Sema::CCK_OtherCast:
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003356 break;
3357 case Sema::CCK_FunctionalCast:
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003358 return;
3359 }
3360
3361 if (CFBridgeName) {
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003362 if (CCK == Sema::CCK_OtherCast) {
3363 if (const CXXNamedCastExpr *NCE = dyn_cast<CXXNamedCastExpr>(realCast)) {
3364 SourceRange range(NCE->getOperatorLoc(),
3365 NCE->getAngleBrackets().getEnd());
3366 SmallString<32> BridgeCall;
3367
3368 SourceManager &SM = S.getSourceManager();
3369 char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1));
3370 if (Lexer::isIdentifierBodyChar(PrevChar, S.getLangOpts()))
3371 BridgeCall += ' ';
3372
3373 BridgeCall += CFBridgeName;
3374 DiagB.AddFixItHint(FixItHint::CreateReplacement(range, BridgeCall));
3375 }
3376 return;
3377 }
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003378 Expr *castedE = castExpr;
3379 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE))
3380 castedE = CCE->getSubExpr();
3381 castedE = castedE->IgnoreImpCasts();
3382 SourceRange range = castedE->getSourceRange();
Jordan Rose288c4212012-06-07 01:10:31 +00003383
3384 SmallString<32> BridgeCall;
3385
3386 SourceManager &SM = S.getSourceManager();
3387 char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1));
3388 if (Lexer::isIdentifierBodyChar(PrevChar, S.getLangOpts()))
3389 BridgeCall += ' ';
3390
3391 BridgeCall += CFBridgeName;
3392
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003393 if (isa<ParenExpr>(castedE)) {
3394 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
Jordan Rose288c4212012-06-07 01:10:31 +00003395 BridgeCall));
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003396 } else {
Jordan Rose288c4212012-06-07 01:10:31 +00003397 BridgeCall += '(';
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003398 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
Jordan Rose288c4212012-06-07 01:10:31 +00003399 BridgeCall));
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003400 DiagB.AddFixItHint(FixItHint::CreateInsertion(
3401 S.PP.getLocForEndOfToken(range.getEnd()),
3402 ")"));
3403 }
3404 return;
3405 }
3406
3407 if (CCK == Sema::CCK_CStyleCast) {
3408 DiagB.AddFixItHint(FixItHint::CreateInsertion(afterLParen, bridgeKeyword));
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003409 } else if (CCK == Sema::CCK_OtherCast) {
3410 if (const CXXNamedCastExpr *NCE = dyn_cast<CXXNamedCastExpr>(realCast)) {
3411 std::string castCode = "(";
3412 castCode += bridgeKeyword;
3413 castCode += castType.getAsString();
3414 castCode += ")";
3415 SourceRange Range(NCE->getOperatorLoc(),
3416 NCE->getAngleBrackets().getEnd());
3417 DiagB.AddFixItHint(FixItHint::CreateReplacement(Range, castCode));
3418 }
Argyrios Kyrtzidis6aa70e22012-02-16 17:31:07 +00003419 } else {
3420 std::string castCode = "(";
3421 castCode += bridgeKeyword;
3422 castCode += castType.getAsString();
3423 castCode += ")";
3424 Expr *castedE = castExpr->IgnoreImpCasts();
3425 SourceRange range = castedE->getSourceRange();
3426 if (isa<ParenExpr>(castedE)) {
3427 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
3428 castCode));
3429 } else {
3430 castCode += "(";
3431 DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(),
3432 castCode));
3433 DiagB.AddFixItHint(FixItHint::CreateInsertion(
3434 S.PP.getLocForEndOfToken(range.getEnd()),
3435 ")"));
3436 }
3437 }
3438}
3439
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003440template <typename T>
3441static inline T *getObjCBridgeAttr(const TypedefType *TD) {
3442 TypedefNameDecl *TDNDecl = TD->getDecl();
3443 QualType QT = TDNDecl->getUnderlyingType();
3444 if (QT->isPointerType()) {
3445 QT = QT->getPointeeType();
3446 if (const RecordType *RT = QT->getAs<RecordType>())
Fariborz Jahanian9af6a782014-06-11 19:10:46 +00003447 if (RecordDecl *RD = RT->getDecl()->getMostRecentDecl())
Aaron Ballman2084f8f2013-12-19 13:20:36 +00003448 return RD->getAttr<T>();
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003449 }
Craig Topperc3ec1492014-05-26 06:22:03 +00003450 return nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003451}
3452
3453static ObjCBridgeRelatedAttr *ObjCBridgeRelatedAttrFromType(QualType T,
3454 TypedefNameDecl *&TDNDecl) {
3455 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
3456 TDNDecl = TD->getDecl();
3457 if (ObjCBridgeRelatedAttr *ObjCBAttr =
3458 getObjCBridgeAttr<ObjCBridgeRelatedAttr>(TD))
3459 return ObjCBAttr;
3460 T = TDNDecl->getUnderlyingType();
3461 }
Craig Topperc3ec1492014-05-26 06:22:03 +00003462 return nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003463}
3464
John McCall4124c492011-10-17 18:40:02 +00003465static void
3466diagnoseObjCARCConversion(Sema &S, SourceRange castRange,
3467 QualType castType, ARCConversionTypeClass castACTC,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003468 Expr *castExpr, Expr *realCast,
3469 ARCConversionTypeClass exprACTC,
John McCall4124c492011-10-17 18:40:02 +00003470 Sema::CheckedConversionKind CCK) {
John McCall31168b02011-06-15 23:02:42 +00003471 SourceLocation loc =
John McCalle4fe2452011-10-01 01:01:08 +00003472 (castRange.isValid() ? castRange.getBegin() : castExpr->getExprLoc());
John McCall31168b02011-06-15 23:02:42 +00003473
John McCall4124c492011-10-17 18:40:02 +00003474 if (S.makeUnavailableInSystemHeader(loc,
John McCalle4fe2452011-10-01 01:01:08 +00003475 "converts between Objective-C and C pointers in -fobjc-arc"))
John McCall31168b02011-06-15 23:02:42 +00003476 return;
John McCall4124c492011-10-17 18:40:02 +00003477
3478 QualType castExprType = castExpr->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003479 TypedefNameDecl *TDNDecl = nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003480 if ((castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable &&
3481 ObjCBridgeRelatedAttrFromType(castType, TDNDecl)) ||
3482 (exprACTC == ACTC_coreFoundation && castACTC == ACTC_retainable &&
Fariborz Jahanian1ad83a32014-06-18 23:22:38 +00003483 ObjCBridgeRelatedAttrFromType(castExprType, TDNDecl)))
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003484 return;
John McCall31168b02011-06-15 23:02:42 +00003485
John McCall640767f2011-06-17 06:50:50 +00003486 unsigned srcKind = 0;
John McCall31168b02011-06-15 23:02:42 +00003487 switch (exprACTC) {
John McCalle4fe2452011-10-01 01:01:08 +00003488 case ACTC_none:
3489 case ACTC_coreFoundation:
3490 case ACTC_voidPtr:
3491 srcKind = (castExprType->isPointerType() ? 1 : 0);
3492 break;
3493 case ACTC_retainable:
3494 srcKind = (castExprType->isBlockPointerType() ? 2 : 3);
3495 break;
3496 case ACTC_indirectRetainable:
3497 srcKind = 4;
3498 break;
John McCall31168b02011-06-15 23:02:42 +00003499 }
3500
John McCall4124c492011-10-17 18:40:02 +00003501 // Check whether this could be fixed with a bridge cast.
3502 SourceLocation afterLParen = S.PP.getLocForEndOfToken(castRange.getBegin());
3503 SourceLocation noteLoc = afterLParen.isValid() ? afterLParen : loc;
John McCall31168b02011-06-15 23:02:42 +00003504
John McCall4124c492011-10-17 18:40:02 +00003505 // Bridge from an ARC type to a CF type.
3506 if (castACTC == ACTC_retainable && isAnyRetainable(exprACTC)) {
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00003507
John McCall4124c492011-10-17 18:40:02 +00003508 S.Diag(loc, diag::err_arc_cast_requires_bridge)
3509 << unsigned(CCK == Sema::CCK_ImplicitConversion) // cast|implicit
3510 << 2 // of C pointer type
3511 << castExprType
3512 << unsigned(castType->isBlockPointerType()) // to ObjC|block type
3513 << castType
3514 << castRange
3515 << castExpr->getSourceRange();
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003516 bool br = S.isKnownName("CFBridgingRelease");
Jordan Rose4502b532012-07-31 01:07:43 +00003517 ACCResult CreateRule =
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003518 ARCCastChecker(S.Context, exprACTC, castACTC, true).Visit(castExpr);
Jordan Rose4502b532012-07-31 01:07:43 +00003519 assert(CreateRule != ACC_bottom && "This cast should already be accepted.");
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003520 if (CreateRule != ACC_plusOne)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003521 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003522 DiagnosticBuilder DiagB =
3523 (CCK != Sema::CCK_OtherCast) ? S.Diag(noteLoc, diag::note_arc_bridge)
3524 : S.Diag(noteLoc, diag::note_arc_cstyle_bridge);
Craig Topperc3ec1492014-05-26 06:22:03 +00003525
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003526 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Craig Topperc3ec1492014-05-26 06:22:03 +00003527 castType, castExpr, realCast, "__bridge ",
3528 nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003529 }
Fariborz Jahanianf7759e82012-07-28 18:59:49 +00003530 if (CreateRule != ACC_plusZero)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003531 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003532 DiagnosticBuilder DiagB =
3533 (CCK == Sema::CCK_OtherCast && !br) ?
3534 S.Diag(noteLoc, diag::note_arc_cstyle_bridge_transfer) << castExprType :
3535 S.Diag(br ? castExpr->getExprLoc() : noteLoc,
3536 diag::note_arc_bridge_transfer)
3537 << castExprType << br;
Craig Topperc3ec1492014-05-26 06:22:03 +00003538
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003539 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003540 castType, castExpr, realCast, "__bridge_transfer ",
Craig Topperc3ec1492014-05-26 06:22:03 +00003541 br ? "CFBridgingRelease" : nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003542 }
John McCall4124c492011-10-17 18:40:02 +00003543
3544 return;
3545 }
Fariborz Jahanianf1a22f42014-04-29 16:12:56 +00003546
John McCall4124c492011-10-17 18:40:02 +00003547 // Bridge from a CF type to an ARC type.
3548 if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC)) {
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00003549 bool br = S.isKnownName("CFBridgingRetain");
John McCall4124c492011-10-17 18:40:02 +00003550 S.Diag(loc, diag::err_arc_cast_requires_bridge)
3551 << unsigned(CCK == Sema::CCK_ImplicitConversion) // cast|implicit
3552 << unsigned(castExprType->isBlockPointerType()) // of ObjC|block type
3553 << castExprType
3554 << 2 // to C pointer type
3555 << castType
3556 << castRange
3557 << castExpr->getSourceRange();
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003558 ACCResult CreateRule =
3559 ARCCastChecker(S.Context, exprACTC, castACTC, true).Visit(castExpr);
Jordan Rose4502b532012-07-31 01:07:43 +00003560 assert(CreateRule != ACC_bottom && "This cast should already be accepted.");
Fariborz Jahanianae5bbfc2012-07-27 23:55:46 +00003561 if (CreateRule != ACC_plusOne)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003562 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003563 DiagnosticBuilder DiagB =
3564 (CCK != Sema::CCK_OtherCast) ? S.Diag(noteLoc, diag::note_arc_bridge)
3565 : S.Diag(noteLoc, diag::note_arc_cstyle_bridge);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003566 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Craig Topperc3ec1492014-05-26 06:22:03 +00003567 castType, castExpr, realCast, "__bridge ",
3568 nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003569 }
Fariborz Jahanianf7759e82012-07-28 18:59:49 +00003570 if (CreateRule != ACC_plusZero)
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003571 {
Fariborz Jahanianac2d0822013-02-22 01:22:48 +00003572 DiagnosticBuilder DiagB =
3573 (CCK == Sema::CCK_OtherCast && !br) ?
3574 S.Diag(noteLoc, diag::note_arc_cstyle_bridge_retained) << castType :
3575 S.Diag(br ? castExpr->getExprLoc() : noteLoc,
3576 diag::note_arc_bridge_retained)
3577 << castType << br;
Craig Topperc3ec1492014-05-26 06:22:03 +00003578
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003579 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00003580 castType, castExpr, realCast, "__bridge_retained ",
Craig Topperc3ec1492014-05-26 06:22:03 +00003581 br ? "CFBridgingRetain" : nullptr);
Fariborz Jahanian84c97ca2012-07-27 21:34:23 +00003582 }
John McCall4124c492011-10-17 18:40:02 +00003583
3584 return;
John McCall31168b02011-06-15 23:02:42 +00003585 }
3586
John McCall4124c492011-10-17 18:40:02 +00003587 S.Diag(loc, diag::err_arc_mismatched_cast)
3588 << (CCK != Sema::CCK_ImplicitConversion)
3589 << srcKind << castExprType << castType
John McCall31168b02011-06-15 23:02:42 +00003590 << castRange << castExpr->getSourceRange();
3591}
3592
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003593template <typename TB>
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003594static bool CheckObjCBridgeNSCast(Sema &S, QualType castType, Expr *castExpr,
3595 bool &HadTheAttribute, bool warn) {
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003596 QualType T = castExpr->getType();
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003597 HadTheAttribute = false;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003598 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
3599 TypedefNameDecl *TDNDecl = TD->getDecl();
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003600 if (TB *ObjCBAttr = getObjCBridgeAttr<TB>(TD)) {
Fariborz Jahaniandb3d8552013-11-19 00:09:48 +00003601 if (IdentifierInfo *Parm = ObjCBAttr->getBridgedType()) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003602 HadTheAttribute = true;
Fariborz Jahanianc9e266b2014-12-11 22:56:26 +00003603 if (Parm->isStr("id"))
3604 return true;
3605
Craig Topperc3ec1492014-05-26 06:22:03 +00003606 NamedDecl *Target = nullptr;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003607 // Check for an existing type with this name.
3608 LookupResult R(S, DeclarationName(Parm), SourceLocation(),
3609 Sema::LookupOrdinaryName);
3610 if (S.LookupName(R, S.TUScope)) {
Fariborz Jahanianf07183c2013-11-16 01:45:25 +00003611 Target = R.getFoundDecl();
3612 if (Target && isa<ObjCInterfaceDecl>(Target)) {
3613 ObjCInterfaceDecl *ExprClass = cast<ObjCInterfaceDecl>(Target);
3614 if (const ObjCObjectPointerType *InterfacePointerType =
3615 castType->getAsObjCInterfacePointerType()) {
3616 ObjCInterfaceDecl *CastClass
3617 = InterfacePointerType->getObjectType()->getInterface();
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003618 if ((CastClass == ExprClass) ||
Fariborz Jahanian27aa9b42015-04-10 22:07:47 +00003619 (CastClass && CastClass->isSuperClassOf(ExprClass)))
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003620 return true;
3621 if (warn)
3622 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge)
3623 << T << Target->getName() << castType->getPointeeType();
3624 return false;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003625 } else if (castType->isObjCIdType() ||
3626 (S.Context.ObjCObjectAdoptsQTypeProtocols(
3627 castType, ExprClass)))
3628 // ok to cast to 'id'.
3629 // casting to id<p-list> is ok if bridge type adopts all of
3630 // p-list protocols.
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003631 return true;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003632 else {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003633 if (warn) {
3634 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge)
3635 << T << Target->getName() << castType;
3636 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3637 S.Diag(Target->getLocStart(), diag::note_declared_at);
3638 }
3639 return false;
Fariborz Jahanian2c312122013-11-16 23:22:37 +00003640 }
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003641 }
Fariborz Jahanian696c8872015-04-09 23:39:53 +00003642 } else if (!castType->isObjCIdType()) {
3643 S.Diag(castExpr->getLocStart(), diag::err_objc_cf_bridged_not_interface)
3644 << castExpr->getType() << Parm;
3645 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3646 if (Target)
3647 S.Diag(Target->getLocStart(), diag::note_declared_at);
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003648 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003649 return true;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003650 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003651 return false;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003652 }
3653 T = TDNDecl->getUnderlyingType();
3654 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003655 return true;
Fariborz Jahaniana649c822013-11-15 22:18:17 +00003656}
3657
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003658template <typename TB>
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003659static bool CheckObjCBridgeCFCast(Sema &S, QualType castType, Expr *castExpr,
3660 bool &HadTheAttribute, bool warn) {
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003661 QualType T = castType;
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003662 HadTheAttribute = false;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003663 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
3664 TypedefNameDecl *TDNDecl = TD->getDecl();
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003665 if (TB *ObjCBAttr = getObjCBridgeAttr<TB>(TD)) {
Fariborz Jahaniandb3d8552013-11-19 00:09:48 +00003666 if (IdentifierInfo *Parm = ObjCBAttr->getBridgedType()) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003667 HadTheAttribute = true;
John McCallaf6b3f82015-03-10 18:41:23 +00003668 if (Parm->isStr("id"))
3669 return true;
3670
Craig Topperc3ec1492014-05-26 06:22:03 +00003671 NamedDecl *Target = nullptr;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003672 // Check for an existing type with this name.
3673 LookupResult R(S, DeclarationName(Parm), SourceLocation(),
3674 Sema::LookupOrdinaryName);
3675 if (S.LookupName(R, S.TUScope)) {
3676 Target = R.getFoundDecl();
3677 if (Target && isa<ObjCInterfaceDecl>(Target)) {
3678 ObjCInterfaceDecl *CastClass = cast<ObjCInterfaceDecl>(Target);
3679 if (const ObjCObjectPointerType *InterfacePointerType =
3680 castExpr->getType()->getAsObjCInterfacePointerType()) {
3681 ObjCInterfaceDecl *ExprClass
3682 = InterfacePointerType->getObjectType()->getInterface();
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003683 if ((CastClass == ExprClass) ||
3684 (ExprClass && CastClass->isSuperClassOf(ExprClass)))
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003685 return true;
3686 if (warn) {
3687 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge_to_cf)
3688 << castExpr->getType()->getPointeeType() << T;
3689 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3690 }
3691 return false;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003692 } else if (castExpr->getType()->isObjCIdType() ||
3693 (S.Context.QIdProtocolsAdoptObjCObjectProtocols(
3694 castExpr->getType(), CastClass)))
3695 // ok to cast an 'id' expression to a CFtype.
3696 // ok to cast an 'id<plist>' expression to CFtype provided plist
3697 // adopts all of CFtype's ObjetiveC's class plist.
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003698 return true;
Fariborz Jahanian92ab2982013-11-20 00:32:12 +00003699 else {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003700 if (warn) {
3701 S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge_to_cf)
3702 << castExpr->getType() << castType;
3703 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3704 S.Diag(Target->getLocStart(), diag::note_declared_at);
3705 }
3706 return false;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003707 }
3708 }
3709 }
3710 S.Diag(castExpr->getLocStart(), diag::err_objc_ns_bridged_invalid_cfobject)
3711 << castExpr->getType() << castType;
3712 S.Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3713 if (Target)
3714 S.Diag(Target->getLocStart(), diag::note_declared_at);
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003715 return true;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003716 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003717 return false;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003718 }
3719 T = TDNDecl->getUnderlyingType();
3720 }
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003721 return true;
Fariborz Jahanian8a0210e2013-11-16 19:16:32 +00003722}
3723
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00003724void Sema::CheckTollFreeBridgeCast(QualType castType, Expr *castExpr) {
Fariborz Jahanianf1a22f42014-04-29 16:12:56 +00003725 if (!getLangOpts().ObjC1)
3726 return;
Alp Tokerf6a24ce2013-12-05 16:25:25 +00003727 // warn in presence of __bridge casting to or from a toll free bridge cast.
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00003728 ARCConversionTypeClass exprACTC = classifyTypeForARCConversion(castExpr->getType());
3729 ARCConversionTypeClass castACTC = classifyTypeForARCConversion(castType);
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003730 if (castACTC == ACTC_retainable && exprACTC == ACTC_coreFoundation) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003731 bool HasObjCBridgeAttr;
3732 bool ObjCBridgeAttrWillNotWarn =
3733 CheckObjCBridgeNSCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3734 false);
3735 if (ObjCBridgeAttrWillNotWarn && HasObjCBridgeAttr)
3736 return;
3737 bool HasObjCBridgeMutableAttr;
3738 bool ObjCBridgeMutableAttrWillNotWarn =
3739 CheckObjCBridgeNSCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3740 HasObjCBridgeMutableAttr, false);
3741 if (ObjCBridgeMutableAttrWillNotWarn && HasObjCBridgeMutableAttr)
3742 return;
3743
3744 if (HasObjCBridgeAttr)
3745 CheckObjCBridgeNSCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3746 true);
3747 else if (HasObjCBridgeMutableAttr)
3748 CheckObjCBridgeNSCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3749 HasObjCBridgeMutableAttr, true);
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003750 }
3751 else if (castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable) {
Fariborz Jahanian5cbbb1be2014-06-11 16:52:44 +00003752 bool HasObjCBridgeAttr;
3753 bool ObjCBridgeAttrWillNotWarn =
3754 CheckObjCBridgeCFCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3755 false);
3756 if (ObjCBridgeAttrWillNotWarn && HasObjCBridgeAttr)
3757 return;
3758 bool HasObjCBridgeMutableAttr;
3759 bool ObjCBridgeMutableAttrWillNotWarn =
3760 CheckObjCBridgeCFCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3761 HasObjCBridgeMutableAttr, false);
3762 if (ObjCBridgeMutableAttrWillNotWarn && HasObjCBridgeMutableAttr)
3763 return;
3764
3765 if (HasObjCBridgeAttr)
3766 CheckObjCBridgeCFCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr,
3767 true);
3768 else if (HasObjCBridgeMutableAttr)
3769 CheckObjCBridgeCFCast<ObjCBridgeMutableAttr>(*this, castType, castExpr,
3770 HasObjCBridgeMutableAttr, true);
Fariborz Jahanian87c77912013-11-21 20:50:32 +00003771 }
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00003772}
3773
Fariborz Jahanian53f867a2014-06-26 21:22:16 +00003774void Sema::CheckObjCBridgeRelatedCast(QualType castType, Expr *castExpr) {
3775 QualType SrcType = castExpr->getType();
3776 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) {
3777 if (PRE->isExplicitProperty()) {
3778 if (ObjCPropertyDecl *PDecl = PRE->getExplicitProperty())
3779 SrcType = PDecl->getType();
3780 }
3781 else if (PRE->isImplicitProperty()) {
3782 if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter())
3783 SrcType = Getter->getReturnType();
3784
3785 }
3786 }
3787
3788 ARCConversionTypeClass srcExprACTC = classifyTypeForARCConversion(SrcType);
3789 ARCConversionTypeClass castExprACTC = classifyTypeForARCConversion(castType);
3790 if (srcExprACTC != ACTC_retainable || castExprACTC != ACTC_coreFoundation)
3791 return;
3792 CheckObjCBridgeRelatedConversions(castExpr->getLocStart(),
3793 castType, SrcType, castExpr);
3794 return;
3795}
3796
Fariborz Jahanianc70a5432014-05-10 17:40:11 +00003797bool Sema::CheckTollFreeBridgeStaticCast(QualType castType, Expr *castExpr,
3798 CastKind &Kind) {
3799 if (!getLangOpts().ObjC1)
3800 return false;
3801 ARCConversionTypeClass exprACTC =
3802 classifyTypeForARCConversion(castExpr->getType());
3803 ARCConversionTypeClass castACTC = classifyTypeForARCConversion(castType);
3804 if ((castACTC == ACTC_retainable && exprACTC == ACTC_coreFoundation) ||
3805 (castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable)) {
3806 CheckTollFreeBridgeCast(castType, castExpr);
3807 Kind = (castACTC == ACTC_coreFoundation) ? CK_BitCast
3808 : CK_CPointerToObjCPointerCast;
3809 return true;
3810 }
3811 return false;
3812}
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003813
3814bool Sema::checkObjCBridgeRelatedComponents(SourceLocation Loc,
3815 QualType DestType, QualType SrcType,
3816 ObjCInterfaceDecl *&RelatedClass,
3817 ObjCMethodDecl *&ClassMethod,
3818 ObjCMethodDecl *&InstanceMethod,
3819 TypedefNameDecl *&TDNDecl,
3820 bool CfToNs) {
3821 QualType T = CfToNs ? SrcType : DestType;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003822 ObjCBridgeRelatedAttr *ObjCBAttr = ObjCBridgeRelatedAttrFromType(T, TDNDecl);
3823 if (!ObjCBAttr)
3824 return false;
3825
3826 IdentifierInfo *RCId = ObjCBAttr->getRelatedClass();
3827 IdentifierInfo *CMId = ObjCBAttr->getClassMethod();
3828 IdentifierInfo *IMId = ObjCBAttr->getInstanceMethod();
3829 if (!RCId)
3830 return false;
Craig Topperc3ec1492014-05-26 06:22:03 +00003831 NamedDecl *Target = nullptr;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003832 // Check for an existing type with this name.
3833 LookupResult R(*this, DeclarationName(RCId), SourceLocation(),
3834 Sema::LookupOrdinaryName);
3835 if (!LookupName(R, TUScope)) {
3836 Diag(Loc, diag::err_objc_bridged_related_invalid_class) << RCId
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003837 << SrcType << DestType;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003838 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3839 return false;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003840 }
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003841 Target = R.getFoundDecl();
3842 if (Target && isa<ObjCInterfaceDecl>(Target))
3843 RelatedClass = cast<ObjCInterfaceDecl>(Target);
3844 else {
3845 Diag(Loc, diag::err_objc_bridged_related_invalid_class_name) << RCId
3846 << SrcType << DestType;
3847 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3848 if (Target)
3849 Diag(Target->getLocStart(), diag::note_declared_at);
3850 return false;
3851 }
3852
3853 // Check for an existing class method with the given selector name.
3854 if (CfToNs && CMId) {
3855 Selector Sel = Context.Selectors.getUnarySelector(CMId);
3856 ClassMethod = RelatedClass->lookupMethod(Sel, false);
3857 if (!ClassMethod) {
3858 Diag(Loc, diag::err_objc_bridged_related_known_method)
Fariborz Jahanian7c04a552013-12-10 19:22:41 +00003859 << SrcType << DestType << Sel << false;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003860 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3861 return false;
3862 }
3863 }
3864
3865 // Check for an existing instance method with the given selector name.
3866 if (!CfToNs && IMId) {
3867 Selector Sel = Context.Selectors.getNullarySelector(IMId);
3868 InstanceMethod = RelatedClass->lookupMethod(Sel, true);
3869 if (!InstanceMethod) {
3870 Diag(Loc, diag::err_objc_bridged_related_known_method)
Fariborz Jahanian7c04a552013-12-10 19:22:41 +00003871 << SrcType << DestType << Sel << true;
Fariborz Jahanian67379e22013-12-09 22:04:26 +00003872 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3873 return false;
3874 }
3875 }
3876 return true;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003877}
3878
3879bool
3880Sema::CheckObjCBridgeRelatedConversions(SourceLocation Loc,
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003881 QualType DestType, QualType SrcType,
Fariborz Jahanian381edf52013-12-16 22:54:37 +00003882 Expr *&SrcExpr) {
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003883 ARCConversionTypeClass rhsExprACTC = classifyTypeForARCConversion(SrcType);
3884 ARCConversionTypeClass lhsExprACTC = classifyTypeForARCConversion(DestType);
3885 bool CfToNs = (rhsExprACTC == ACTC_coreFoundation && lhsExprACTC == ACTC_retainable);
3886 bool NsToCf = (rhsExprACTC == ACTC_retainable && lhsExprACTC == ACTC_coreFoundation);
3887 if (!CfToNs && !NsToCf)
3888 return false;
3889
3890 ObjCInterfaceDecl *RelatedClass;
Craig Topperc3ec1492014-05-26 06:22:03 +00003891 ObjCMethodDecl *ClassMethod = nullptr;
3892 ObjCMethodDecl *InstanceMethod = nullptr;
3893 TypedefNameDecl *TDNDecl = nullptr;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003894 if (!checkObjCBridgeRelatedComponents(Loc, DestType, SrcType, RelatedClass,
3895 ClassMethod, InstanceMethod, TDNDecl, CfToNs))
3896 return false;
3897
3898 if (CfToNs) {
3899 // Implicit conversion from CF to ObjC object is needed.
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003900 if (ClassMethod) {
3901 std::string ExpressionString = "[";
3902 ExpressionString += RelatedClass->getNameAsString();
3903 ExpressionString += " ";
3904 ExpressionString += ClassMethod->getSelector().getAsString();
3905 SourceLocation SrcExprEndLoc = PP.getLocForEndOfToken(SrcExpr->getLocEnd());
3906 // Provide a fixit: [RelatedClass ClassMethod SrcExpr]
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003907 Diag(Loc, diag::err_objc_bridged_related_known_method)
Fariborz Jahanian7c04a552013-12-10 19:22:41 +00003908 << SrcType << DestType << ClassMethod->getSelector() << false
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003909 << FixItHint::CreateInsertion(SrcExpr->getLocStart(), ExpressionString)
3910 << FixItHint::CreateInsertion(SrcExprEndLoc, "]");
Fariborz Jahanian381edf52013-12-16 22:54:37 +00003911 Diag(RelatedClass->getLocStart(), diag::note_declared_at);
3912 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3913
3914 QualType receiverType =
3915 Context.getObjCInterfaceType(RelatedClass);
3916 // Argument.
3917 Expr *args[] = { SrcExpr };
3918 ExprResult msg = BuildClassMessageImplicit(receiverType, false,
3919 ClassMethod->getLocation(),
3920 ClassMethod->getSelector(), ClassMethod,
3921 MultiExprArg(args, 1));
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003922 SrcExpr = msg.get();
Fariborz Jahanian381edf52013-12-16 22:54:37 +00003923 return true;
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003924 }
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003925 }
3926 else {
3927 // Implicit conversion from ObjC type to CF object is needed.
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003928 if (InstanceMethod) {
Fariborz Jahanian88b68982013-12-10 23:18:06 +00003929 std::string ExpressionString;
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003930 SourceLocation SrcExprEndLoc = PP.getLocForEndOfToken(SrcExpr->getLocEnd());
Fariborz Jahanian88b68982013-12-10 23:18:06 +00003931 if (InstanceMethod->isPropertyAccessor())
3932 if (const ObjCPropertyDecl *PDecl = InstanceMethod->findPropertyDecl()) {
3933 // fixit: ObjectExpr.propertyname when it is aproperty accessor.
3934 ExpressionString = ".";
3935 ExpressionString += PDecl->getNameAsString();
3936 Diag(Loc, diag::err_objc_bridged_related_known_method)
3937 << SrcType << DestType << InstanceMethod->getSelector() << true
3938 << FixItHint::CreateInsertion(SrcExprEndLoc, ExpressionString);
3939 }
3940 if (ExpressionString.empty()) {
3941 // Provide a fixit: [ObjectExpr InstanceMethod]
3942 ExpressionString = " ";
3943 ExpressionString += InstanceMethod->getSelector().getAsString();
3944 ExpressionString += "]";
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003945
Fariborz Jahanian88b68982013-12-10 23:18:06 +00003946 Diag(Loc, diag::err_objc_bridged_related_known_method)
3947 << SrcType << DestType << InstanceMethod->getSelector() << true
3948 << FixItHint::CreateInsertion(SrcExpr->getLocStart(), "[")
3949 << FixItHint::CreateInsertion(SrcExprEndLoc, ExpressionString);
3950 }
Fariborz Jahanian381edf52013-12-16 22:54:37 +00003951 Diag(RelatedClass->getLocStart(), diag::note_declared_at);
3952 Diag(TDNDecl->getLocStart(), diag::note_declared_at);
3953
3954 ExprResult msg =
3955 BuildInstanceMessageImplicit(SrcExpr, SrcType,
3956 InstanceMethod->getLocation(),
3957 InstanceMethod->getSelector(),
3958 InstanceMethod, None);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003959 SrcExpr = msg.get();
Fariborz Jahanian381edf52013-12-16 22:54:37 +00003960 return true;
Fariborz Jahaniandb765772013-12-10 17:08:13 +00003961 }
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003962 }
Fariborz Jahanian381edf52013-12-16 22:54:37 +00003963 return false;
Fariborz Jahanian1f0b3bf2013-12-07 00:34:23 +00003964}
3965
John McCall4124c492011-10-17 18:40:02 +00003966Sema::ARCConversionResult
3967Sema::CheckObjCARCConversion(SourceRange castRange, QualType castType,
Fariborz Jahanian25eef192013-07-31 21:40:51 +00003968 Expr *&castExpr, CheckedConversionKind CCK,
Fariborz Jahanianc03ef572014-06-18 23:52:49 +00003969 bool DiagnoseCFAudited,
3970 BinaryOperatorKind Opc) {
John McCall4124c492011-10-17 18:40:02 +00003971 QualType castExprType = castExpr->getType();
3972
3973 // For the purposes of the classification, we assume reference types
3974 // will bind to temporaries.
3975 QualType effCastType = castType;
3976 if (const ReferenceType *ref = castType->getAs<ReferenceType>())
3977 effCastType = ref->getPointeeType();
3978
3979 ARCConversionTypeClass exprACTC = classifyTypeForARCConversion(castExprType);
3980 ARCConversionTypeClass castACTC = classifyTypeForARCConversion(effCastType);
Fariborz Jahanian2fa646d2011-10-28 20:06:07 +00003981 if (exprACTC == castACTC) {
3982 // check for viablity and report error if casting an rvalue to a
3983 // life-time qualifier.
Fariborz Jahanian244b1872011-10-29 00:06:10 +00003984 if ((castACTC == ACTC_retainable) &&
Fariborz Jahanian2fa646d2011-10-28 20:06:07 +00003985 (CCK == CCK_CStyleCast || CCK == CCK_OtherCast) &&
Fariborz Jahanian244b1872011-10-29 00:06:10 +00003986 (castType != castExprType)) {
3987 const Type *DT = castType.getTypePtr();
3988 QualType QDT = castType;
3989 // We desugar some types but not others. We ignore those
3990 // that cannot happen in a cast; i.e. auto, and those which
3991 // should not be de-sugared; i.e typedef.
3992 if (const ParenType *PT = dyn_cast<ParenType>(DT))
3993 QDT = PT->desugar();
3994 else if (const TypeOfType *TP = dyn_cast<TypeOfType>(DT))
3995 QDT = TP->desugar();
3996 else if (const AttributedType *AT = dyn_cast<AttributedType>(DT))
3997 QDT = AT->desugar();
3998 if (QDT != castType &&
3999 QDT.getObjCLifetime() != Qualifiers::OCL_None) {
4000 SourceLocation loc =
4001 (castRange.isValid() ? castRange.getBegin()
4002 : castExpr->getExprLoc());
4003 Diag(loc, diag::err_arc_nolifetime_behavior);
4004 }
Fariborz Jahanian2fa646d2011-10-28 20:06:07 +00004005 }
4006 return ACR_okay;
4007 }
4008
John McCall4124c492011-10-17 18:40:02 +00004009 if (isAnyCLike(exprACTC) && isAnyCLike(castACTC)) return ACR_okay;
4010
4011 // Allow all of these types to be cast to integer types (but not
4012 // vice-versa).
4013 if (castACTC == ACTC_none && castType->isIntegralType(Context))
4014 return ACR_okay;
4015
4016 // Allow casts between pointers to lifetime types (e.g., __strong id*)
4017 // and pointers to void (e.g., cv void *). Casting from void* to lifetime*
4018 // must be explicit.
4019 if (exprACTC == ACTC_indirectRetainable && castACTC == ACTC_voidPtr)
4020 return ACR_okay;
4021 if (castACTC == ACTC_indirectRetainable && exprACTC == ACTC_voidPtr &&
4022 CCK != CCK_ImplicitConversion)
4023 return ACR_okay;
4024
Fariborz Jahanian36986c62012-07-27 22:37:07 +00004025 switch (ARCCastChecker(Context, exprACTC, castACTC, false).Visit(castExpr)) {
John McCall4124c492011-10-17 18:40:02 +00004026 // For invalid casts, fall through.
4027 case ACC_invalid:
4028 break;
4029
4030 // Do nothing for both bottom and +0.
4031 case ACC_bottom:
4032 case ACC_plusZero:
4033 return ACR_okay;
4034
4035 // If the result is +1, consume it here.
4036 case ACC_plusOne:
4037 castExpr = ImplicitCastExpr::Create(Context, castExpr->getType(),
4038 CK_ARCConsumeObject, castExpr,
Craig Topperc3ec1492014-05-26 06:22:03 +00004039 nullptr, VK_RValue);
John McCall4124c492011-10-17 18:40:02 +00004040 ExprNeedsCleanups = true;
4041 return ACR_okay;
4042 }
4043
4044 // If this is a non-implicit cast from id or block type to a
4045 // CoreFoundation type, delay complaining in case the cast is used
4046 // in an acceptable context.
4047 if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC) &&
4048 CCK != CCK_ImplicitConversion)
4049 return ACR_unbridged;
4050
Fariborz Jahanianbd714e92013-12-17 19:33:43 +00004051 // Do not issue bridge cast" diagnostic when implicit casting a cstring
4052 // to 'NSString *'. Let caller issue a normal mismatched diagnostic with
4053 // suitable fix-it.
Fariborz Jahanian283bf892013-12-18 21:04:43 +00004054 if (castACTC == ACTC_retainable && exprACTC == ACTC_none &&
4055 ConversionToObjCStringLiteralCheck(castType, castExpr))
4056 return ACR_okay;
Fariborz Jahanianbd714e92013-12-17 19:33:43 +00004057
Fariborz Jahanian25eef192013-07-31 21:40:51 +00004058 // Do not issue "bridge cast" diagnostic when implicit casting
4059 // a retainable object to a CF type parameter belonging to an audited
4060 // CF API function. Let caller issue a normal type mismatched diagnostic
4061 // instead.
4062 if (!DiagnoseCFAudited || exprACTC != ACTC_retainable ||
4063 castACTC != ACTC_coreFoundation)
Fariborz Jahanianc03ef572014-06-18 23:52:49 +00004064 if (!(exprACTC == ACTC_voidPtr && castACTC == ACTC_retainable &&
4065 (Opc == BO_NE || Opc == BO_EQ)))
4066 diagnoseObjCARCConversion(*this, castRange, castType, castACTC,
4067 castExpr, castExpr, exprACTC, CCK);
John McCall4124c492011-10-17 18:40:02 +00004068 return ACR_okay;
4069}
4070
4071/// Given that we saw an expression with the ARCUnbridgedCastTy
4072/// placeholder type, complain bitterly.
4073void Sema::diagnoseARCUnbridgedCast(Expr *e) {
4074 // We expect the spurious ImplicitCastExpr to already have been stripped.
4075 assert(!e->hasPlaceholderType(BuiltinType::ARCUnbridgedCast));
4076 CastExpr *realCast = cast<CastExpr>(e->IgnoreParens());
4077
4078 SourceRange castRange;
4079 QualType castType;
4080 CheckedConversionKind CCK;
4081
4082 if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) {
4083 castRange = SourceRange(cast->getLParenLoc(), cast->getRParenLoc());
4084 castType = cast->getTypeAsWritten();
4085 CCK = CCK_CStyleCast;
4086 } else if (ExplicitCastExpr *cast = dyn_cast<ExplicitCastExpr>(realCast)) {
4087 castRange = cast->getTypeInfoAsWritten()->getTypeLoc().getSourceRange();
4088 castType = cast->getTypeAsWritten();
4089 CCK = CCK_OtherCast;
4090 } else {
4091 castType = cast->getType();
4092 CCK = CCK_ImplicitConversion;
4093 }
4094
4095 ARCConversionTypeClass castACTC =
4096 classifyTypeForARCConversion(castType.getNonReferenceType());
4097
4098 Expr *castExpr = realCast->getSubExpr();
4099 assert(classifyTypeForARCConversion(castExpr->getType()) == ACTC_retainable);
4100
4101 diagnoseObjCARCConversion(*this, castRange, castType, castACTC,
Fariborz Jahanianf0738712013-02-22 22:02:53 +00004102 castExpr, realCast, ACTC_retainable, CCK);
John McCall4124c492011-10-17 18:40:02 +00004103}
4104
4105/// stripARCUnbridgedCast - Given an expression of ARCUnbridgedCast
4106/// type, remove the placeholder cast.
4107Expr *Sema::stripARCUnbridgedCast(Expr *e) {
4108 assert(e->hasPlaceholderType(BuiltinType::ARCUnbridgedCast));
4109
4110 if (ParenExpr *pe = dyn_cast<ParenExpr>(e)) {
4111 Expr *sub = stripARCUnbridgedCast(pe->getSubExpr());
4112 return new (Context) ParenExpr(pe->getLParen(), pe->getRParen(), sub);
4113 } else if (UnaryOperator *uo = dyn_cast<UnaryOperator>(e)) {
4114 assert(uo->getOpcode() == UO_Extension);
4115 Expr *sub = stripARCUnbridgedCast(uo->getSubExpr());
4116 return new (Context) UnaryOperator(sub, UO_Extension, sub->getType(),
4117 sub->getValueKind(), sub->getObjectKind(),
4118 uo->getOperatorLoc());
4119 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) {
4120 assert(!gse->isResultDependent());
4121
4122 unsigned n = gse->getNumAssocs();
4123 SmallVector<Expr*, 4> subExprs(n);
4124 SmallVector<TypeSourceInfo*, 4> subTypes(n);
4125 for (unsigned i = 0; i != n; ++i) {
4126 subTypes[i] = gse->getAssocTypeSourceInfo(i);
4127 Expr *sub = gse->getAssocExpr(i);
4128 if (i == gse->getResultIndex())
4129 sub = stripARCUnbridgedCast(sub);
4130 subExprs[i] = sub;
4131 }
4132
4133 return new (Context) GenericSelectionExpr(Context, gse->getGenericLoc(),
4134 gse->getControllingExpr(),
Benjamin Kramerc215e762012-08-24 11:54:20 +00004135 subTypes, subExprs,
4136 gse->getDefaultLoc(),
John McCall4124c492011-10-17 18:40:02 +00004137 gse->getRParenLoc(),
4138 gse->containsUnexpandedParameterPack(),
4139 gse->getResultIndex());
4140 } else {
4141 assert(isa<ImplicitCastExpr>(e) && "bad form of unbridged cast!");
4142 return cast<ImplicitCastExpr>(e)->getSubExpr();
4143 }
4144}
4145
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00004146bool Sema::CheckObjCARCUnavailableWeakConversion(QualType castType,
4147 QualType exprType) {
4148 QualType canCastType =
4149 Context.getCanonicalType(castType).getUnqualifiedType();
4150 QualType canExprType =
4151 Context.getCanonicalType(exprType).getUnqualifiedType();
4152 if (isa<ObjCObjectPointerType>(canCastType) &&
4153 castType.getObjCLifetime() == Qualifiers::OCL_Weak &&
4154 canExprType->isObjCObjectPointerType()) {
4155 if (const ObjCObjectPointerType *ObjT =
4156 canExprType->getAs<ObjCObjectPointerType>())
Richard Smith802c4b72012-08-23 06:16:52 +00004157 if (const ObjCInterfaceDecl *ObjI = ObjT->getInterfaceDecl())
4158 return !ObjI->isArcWeakrefUnavailable();
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00004159 }
4160 return true;
4161}
4162
John McCall4db5c3c2011-07-07 06:58:02 +00004163/// Look for an ObjCReclaimReturnedObject cast and destroy it.
4164static Expr *maybeUndoReclaimObject(Expr *e) {
4165 // For now, we just undo operands that are *immediately* reclaim
4166 // expressions, which prevents the vast majority of potential
4167 // problems here. To catch them all, we'd need to rebuild arbitrary
4168 // value-propagating subexpressions --- we can't reliably rebuild
4169 // in-place because of expression sharing.
4170 if (ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
John McCall2d637d22011-09-10 06:18:15 +00004171 if (ice->getCastKind() == CK_ARCReclaimReturnedObject)
John McCall4db5c3c2011-07-07 06:58:02 +00004172 return ice->getSubExpr();
4173
4174 return e;
4175}
4176
John McCall31168b02011-06-15 23:02:42 +00004177ExprResult Sema::BuildObjCBridgedCast(SourceLocation LParenLoc,
4178 ObjCBridgeCastKind Kind,
4179 SourceLocation BridgeKeywordLoc,
4180 TypeSourceInfo *TSInfo,
4181 Expr *SubExpr) {
John McCalleb075542011-08-26 00:48:42 +00004182 ExprResult SubResult = UsualUnaryConversions(SubExpr);
4183 if (SubResult.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004184 SubExpr = SubResult.get();
John McCalleb075542011-08-26 00:48:42 +00004185
John McCall31168b02011-06-15 23:02:42 +00004186 QualType T = TSInfo->getType();
4187 QualType FromType = SubExpr->getType();
4188
John McCall9320b872011-09-09 05:25:32 +00004189 CastKind CK;
4190
John McCall31168b02011-06-15 23:02:42 +00004191 bool MustConsume = false;
4192 if (T->isDependentType() || SubExpr->isTypeDependent()) {
4193 // Okay: we'll build a dependent expression type.
John McCall9320b872011-09-09 05:25:32 +00004194 CK = CK_Dependent;
John McCall31168b02011-06-15 23:02:42 +00004195 } else if (T->isObjCARCBridgableType() && FromType->isCARCBridgableType()) {
4196 // Casting CF -> id
John McCall9320b872011-09-09 05:25:32 +00004197 CK = (T->isBlockPointerType() ? CK_AnyPointerToBlockPointerCast
4198 : CK_CPointerToObjCPointerCast);
John McCall31168b02011-06-15 23:02:42 +00004199 switch (Kind) {
4200 case OBC_Bridge:
4201 break;
4202
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004203 case OBC_BridgeRetained: {
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00004204 bool br = isKnownName("CFBridgingRelease");
John McCall31168b02011-06-15 23:02:42 +00004205 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
4206 << 2
4207 << FromType
4208 << (T->isBlockPointerType()? 1 : 0)
4209 << T
4210 << SubExpr->getSourceRange()
4211 << Kind;
4212 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
4213 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge");
4214 Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer)
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004215 << FromType << br
John McCall31168b02011-06-15 23:02:42 +00004216 << FixItHint::CreateReplacement(BridgeKeywordLoc,
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004217 br ? "CFBridgingRelease "
4218 : "__bridge_transfer ");
John McCall31168b02011-06-15 23:02:42 +00004219
4220 Kind = OBC_Bridge;
4221 break;
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004222 }
John McCall31168b02011-06-15 23:02:42 +00004223
4224 case OBC_BridgeTransfer:
4225 // We must consume the Objective-C object produced by the cast.
4226 MustConsume = true;
4227 break;
4228 }
4229 } else if (T->isCARCBridgableType() && FromType->isObjCARCBridgableType()) {
4230 // Okay: id -> CF
John McCall9320b872011-09-09 05:25:32 +00004231 CK = CK_BitCast;
John McCall31168b02011-06-15 23:02:42 +00004232 switch (Kind) {
Fariborz Jahanian214567c2014-10-28 17:26:21 +00004233 case OBC_Bridge:
4234 // Reclaiming a value that's going to be __bridge-casted to CF
4235 // is very dangerous, so we don't do it.
4236 SubExpr = maybeUndoReclaimObject(SubExpr);
4237 break;
John McCall31168b02011-06-15 23:02:42 +00004238
4239 case OBC_BridgeRetained:
4240 // Produce the object before casting it.
4241 SubExpr = ImplicitCastExpr::Create(Context, FromType,
John McCall2d637d22011-09-10 06:18:15 +00004242 CK_ARCProduceObject,
Craig Topperc3ec1492014-05-26 06:22:03 +00004243 SubExpr, nullptr, VK_RValue);
John McCall31168b02011-06-15 23:02:42 +00004244 break;
4245
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004246 case OBC_BridgeTransfer: {
Argyrios Kyrtzidis273c7c42012-06-01 00:10:47 +00004247 bool br = isKnownName("CFBridgingRetain");
John McCall31168b02011-06-15 23:02:42 +00004248 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
4249 << (FromType->isBlockPointerType()? 1 : 0)
4250 << FromType
4251 << 2
4252 << T
4253 << SubExpr->getSourceRange()
4254 << Kind;
4255
4256 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
4257 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge ");
4258 Diag(BridgeKeywordLoc, diag::note_arc_bridge_retained)
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004259 << T << br
4260 << FixItHint::CreateReplacement(BridgeKeywordLoc,
4261 br ? "CFBridgingRetain " : "__bridge_retained");
John McCall31168b02011-06-15 23:02:42 +00004262
4263 Kind = OBC_Bridge;
4264 break;
4265 }
Fariborz Jahanian30febeb2012-02-01 22:56:20 +00004266 }
John McCall31168b02011-06-15 23:02:42 +00004267 } else {
4268 Diag(LParenLoc, diag::err_arc_bridge_cast_incompatible)
4269 << FromType << T << Kind
4270 << SubExpr->getSourceRange()
4271 << TSInfo->getTypeLoc().getSourceRange();
4272 return ExprError();
4273 }
4274
John McCall9320b872011-09-09 05:25:32 +00004275 Expr *Result = new (Context) ObjCBridgedCastExpr(LParenLoc, Kind, CK,
John McCall31168b02011-06-15 23:02:42 +00004276 BridgeKeywordLoc,
4277 TSInfo, SubExpr);
4278
4279 if (MustConsume) {
4280 ExprNeedsCleanups = true;
John McCall2d637d22011-09-10 06:18:15 +00004281 Result = ImplicitCastExpr::Create(Context, T, CK_ARCConsumeObject, Result,
Craig Topperc3ec1492014-05-26 06:22:03 +00004282 nullptr, VK_RValue);
John McCall31168b02011-06-15 23:02:42 +00004283 }
4284
4285 return Result;
4286}
4287
4288ExprResult Sema::ActOnObjCBridgedCast(Scope *S,
4289 SourceLocation LParenLoc,
4290 ObjCBridgeCastKind Kind,
4291 SourceLocation BridgeKeywordLoc,
4292 ParsedType Type,
4293 SourceLocation RParenLoc,
4294 Expr *SubExpr) {
Craig Topperc3ec1492014-05-26 06:22:03 +00004295 TypeSourceInfo *TSInfo = nullptr;
John McCall31168b02011-06-15 23:02:42 +00004296 QualType T = GetTypeFromParser(Type, &TSInfo);
Fariborz Jahanian8c5b4be2013-11-21 00:39:36 +00004297 if (Kind == OBC_Bridge)
4298 CheckTollFreeBridgeCast(T, SubExpr);
John McCall31168b02011-06-15 23:02:42 +00004299 if (!TSInfo)
4300 TSInfo = Context.getTrivialTypeSourceInfo(T, LParenLoc);
4301 return BuildObjCBridgedCast(LParenLoc, Kind, BridgeKeywordLoc, TSInfo,
4302 SubExpr);
4303}