Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1 | //===--- 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 McCall | 8302463 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 14 | #include "clang/Sema/SemaInternal.h" |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
| 16 | #include "clang/AST/DeclObjC.h" |
Steve Naroff | 021ca18 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprObjC.h" |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 18 | #include "clang/AST/StmtVisitor.h" |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 19 | #include "clang/AST/TypeLoc.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/Analysis/DomainSpecific/CocoaConventions.h" |
| 21 | #include "clang/Edit/Commit.h" |
| 22 | #include "clang/Edit/Rewriters.h" |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 23 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 24 | #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 Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 29 | |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 30 | using namespace clang; |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 31 | using namespace sema; |
Argyrios Kyrtzidis | 59ad1e3 | 2011-10-03 06:36:45 +0000 | [diff] [blame] | 32 | using llvm::makeArrayRef; |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 33 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 34 | ExprResult Sema::ParseObjCStringLiteral(SourceLocation *AtLocs, |
| 35 | Expr **strings, |
| 36 | unsigned NumStrings) { |
Chris Lattner | 163ffd2 | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 37 | StringLiteral **Strings = reinterpret_cast<StringLiteral**>(strings); |
| 38 | |
Chris Lattner | d7670d9 | 2009-02-18 06:13:04 +0000 | [diff] [blame] | 39 | // 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 Lattner | 163ffd2 | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 43 | StringLiteral *S = Strings[0]; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 44 | |
Chris Lattner | d7670d9 | 2009-02-18 06:13:04 +0000 | [diff] [blame] | 45 | // If we have a multi-part string, merge it all together. |
| 46 | if (NumStrings != 1) { |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 47 | // Concatenate objc strings. |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 48 | SmallString<128> StrBuf; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 49 | SmallVector<SourceLocation, 8> StrLocs; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 630970d | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 51 | for (unsigned i = 0; i != NumStrings; ++i) { |
Chris Lattner | 163ffd2 | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 52 | S = Strings[i]; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 53 | |
Douglas Gregor | fb65e59 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 54 | // ObjC strings can't be wide or UTF. |
| 55 | if (!S->isAscii()) { |
Chris Lattner | d7670d9 | 2009-02-18 06:13:04 +0000 | [diff] [blame] | 56 | Diag(S->getLocStart(), diag::err_cfstring_literal_not_string_constant) |
| 57 | << S->getSourceRange(); |
| 58 | return true; |
| 59 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 60 | |
Benjamin Kramer | 35b077e | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 61 | // Append the string. |
| 62 | StrBuf += S->getString(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 163ffd2 | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 64 | // Get the locations of the string tokens. |
| 65 | StrLocs.append(S->tokloc_begin(), S->tokloc_end()); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 66 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 67 | |
Chris Lattner | 163ffd2 | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 68 | // Create the aggregate string with the appropriate content and location |
| 69 | // information. |
Benjamin Kramer | cdac761 | 2014-02-25 12:26:20 +0000 | [diff] [blame] | 70 | 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 Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 78 | } |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 79 | |
| 80 | return BuildObjCStringLiteral(AtLocs[0], S); |
| 81 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 82 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 83 | ExprResult Sema::BuildObjCStringLiteral(SourceLocation AtLoc, StringLiteral *S){ |
Chris Lattner | 6436fb6 | 2009-02-18 06:01:06 +0000 | [diff] [blame] | 84 | // Verify that this composite string is acceptable for ObjC strings. |
| 85 | if (CheckObjCString(S)) |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 86 | return true; |
Chris Lattner | fffd6a7 | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 87 | |
| 88 | // Initialize the constant string interface lazily. This assumes |
Steve Naroff | 54e5945 | 2009-04-07 14:18:33 +0000 | [diff] [blame] | 89 | // 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 Lattner | fffd6a7 | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 92 | QualType Ty = Context.getObjCConstantStringInterface(); |
| 93 | if (!Ty.isNull()) { |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 94 | Ty = Context.getObjCObjectPointerType(Ty); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 95 | } else if (getLangOpts().NoConstantCFStrings) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 96 | IdentifierInfo *NSIdent=nullptr; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 97 | std::string StringClass(getLangOpts().ObjCConstantStringClass); |
Fariborz Jahanian | 50c925f | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 98 | |
| 99 | if (StringClass.empty()) |
| 100 | NSIdent = &Context.Idents.get("NSConstantString"); |
| 101 | else |
| 102 | NSIdent = &Context.Idents.get(StringClass); |
| 103 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 104 | NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc, |
Fariborz Jahanian | 0731763 | 2010-04-23 23:19:04 +0000 | [diff] [blame] | 105 | 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 Lattner | 091f698 | 2008-06-21 21:44:18 +0000 | [diff] [blame] | 117 | } else { |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 118 | IdentifierInfo *NSIdent = NSAPIObj->getNSClassId(NSAPI::ClassId_NSString); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 119 | NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc, |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 120 | LookupOrdinaryName); |
Chris Lattner | fffd6a7 | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 121 | if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) { |
| 122 | Context.setObjCConstantStringInterface(StrIF); |
| 123 | Ty = Context.getObjCConstantStringInterface(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 124 | Ty = Context.getObjCObjectPointerType(Ty); |
Chris Lattner | fffd6a7 | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 125 | } else { |
Fariborz Jahanian | 86f8266 | 2012-02-23 22:51:36 +0000 | [diff] [blame] | 126 | // 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, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 136 | nullptr, SourceLocation()); |
Fariborz Jahanian | 86f8266 | 2012-02-23 22:51:36 +0000 | [diff] [blame] | 137 | Ty = Context.getObjCInterfaceType(NSStringIDecl); |
| 138 | Context.setObjCNSStringType(Ty); |
| 139 | } |
| 140 | Ty = Context.getObjCObjectPointerType(Ty); |
Chris Lattner | fffd6a7 | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 141 | } |
Chris Lattner | 091f698 | 2008-06-21 21:44:18 +0000 | [diff] [blame] | 142 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 143 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 144 | return new (Context) ObjCStringLiteral(S, Ty, AtLoc); |
| 145 | } |
| 146 | |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 147 | /// \brief Emits an error if the given method does not exist, or if the return |
| 148 | /// type is not an Objective-C object. |
| 149 | static 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 Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 159 | QualType ReturnType = Method->getReturnType(); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 160 | 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 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 171 | /// \brief Retrieve the NSNumber factory method that should be used to create |
| 172 | /// an Objective-C literal for the given type. |
| 173 | static ObjCMethodDecl *getNSNumberFactoryMethod(Sema &S, SourceLocation Loc, |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 174 | QualType NumberType, |
| 175 | bool isLiteral = false, |
| 176 | SourceRange R = SourceRange()) { |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 177 | Optional<NSAPI::NSNumberLiteralMethodKind> Kind = |
| 178 | S.NSAPIObj->getNSNumberFactoryMethodKind(NumberType); |
| 179 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 180 | if (!Kind) { |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 181 | if (isLiteral) { |
| 182 | S.Diag(Loc, diag::err_invalid_nsnumber_type) |
| 183 | << NumberType << R; |
| 184 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 185 | return nullptr; |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 186 | } |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 187 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 188 | // If we already looked up this method, we're done. |
| 189 | if (S.NSNumberLiteralMethods[*Kind]) |
| 190 | return S.NSNumberLiteralMethods[*Kind]; |
| 191 | |
| 192 | Selector Sel = S.NSAPIObj->getNSNumberLiteralSelector(*Kind, |
| 193 | /*Instance=*/false); |
| 194 | |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 195 | ASTContext &CX = S.Context; |
| 196 | |
| 197 | // Look up the NSNumber class, if we haven't done so already. It's cached |
| 198 | // in the Sema instance. |
| 199 | if (!S.NSNumberDecl) { |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 200 | IdentifierInfo *NSNumberId = |
| 201 | S.NSAPIObj->getNSClassId(NSAPI::ClassId_NSNumber); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 202 | NamedDecl *IF = S.LookupSingleName(S.TUScope, NSNumberId, |
| 203 | Loc, Sema::LookupOrdinaryName); |
| 204 | S.NSNumberDecl = dyn_cast_or_null<ObjCInterfaceDecl>(IF); |
| 205 | if (!S.NSNumberDecl) { |
| 206 | if (S.getLangOpts().DebuggerObjCLiteral) { |
| 207 | // Create a stub definition of NSNumber. |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 208 | S.NSNumberDecl = ObjCInterfaceDecl::Create(CX, |
| 209 | CX.getTranslationUnitDecl(), |
| 210 | SourceLocation(), NSNumberId, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 211 | nullptr, SourceLocation()); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 212 | } else { |
| 213 | // Otherwise, require a declaration of NSNumber. |
| 214 | S.Diag(Loc, diag::err_undeclared_nsnumber); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 215 | return nullptr; |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 216 | } |
| 217 | } else if (!S.NSNumberDecl->hasDefinition()) { |
| 218 | S.Diag(Loc, diag::err_undeclared_nsnumber); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 219 | return nullptr; |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | // generate the pointer to NSNumber type. |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 223 | QualType NSNumberObject = CX.getObjCInterfaceType(S.NSNumberDecl); |
| 224 | S.NSNumberPointer = CX.getObjCObjectPointerType(NSNumberObject); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 227 | // Look for the appropriate method within NSNumber. |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 228 | ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 229 | if (!Method && S.getLangOpts().DebuggerObjCLiteral) { |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 230 | // create a stub definition this NSNumber factory method. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 231 | TypeSourceInfo *ReturnTInfo = nullptr; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 232 | Method = |
| 233 | ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel, |
| 234 | S.NSNumberPointer, ReturnTInfo, S.NSNumberDecl, |
| 235 | /*isInstance=*/false, /*isVariadic=*/false, |
| 236 | /*isPropertyAccessor=*/false, |
| 237 | /*isImplicitlyDeclared=*/true, |
| 238 | /*isDefined=*/false, ObjCMethodDecl::Required, |
| 239 | /*HasRelatedResultType=*/false); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 240 | ParmVarDecl *value = ParmVarDecl::Create(S.Context, Method, |
| 241 | SourceLocation(), SourceLocation(), |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 242 | &CX.Idents.get("value"), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 243 | NumberType, /*TInfo=*/nullptr, |
| 244 | SC_None, nullptr); |
Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 245 | Method->setMethodParams(S.Context, value, None); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 246 | } |
| 247 | |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 248 | if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method)) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 249 | return nullptr; |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 250 | |
| 251 | // Note: if the parameter type is out-of-line, we'll catch it later in the |
| 252 | // implicit conversion. |
| 253 | |
| 254 | S.NSNumberLiteralMethods[*Kind] = Method; |
| 255 | return Method; |
| 256 | } |
| 257 | |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 258 | /// BuildObjCNumericLiteral - builds an ObjCBoxedExpr AST node for the |
| 259 | /// numeric literal expression. Type of the expression will be "NSNumber *". |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 260 | ExprResult Sema::BuildObjCNumericLiteral(SourceLocation AtLoc, Expr *Number) { |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 261 | // Determine the type of the literal. |
| 262 | QualType NumberType = Number->getType(); |
| 263 | if (CharacterLiteral *Char = dyn_cast<CharacterLiteral>(Number)) { |
| 264 | // In C, character literals have type 'int'. That's not the type we want |
| 265 | // to use to determine the Objective-c literal kind. |
| 266 | switch (Char->getKind()) { |
| 267 | case CharacterLiteral::Ascii: |
| 268 | NumberType = Context.CharTy; |
| 269 | break; |
| 270 | |
| 271 | case CharacterLiteral::Wide: |
Hans Wennborg | 0d81e01 | 2013-05-10 10:08:40 +0000 | [diff] [blame] | 272 | NumberType = Context.getWideCharType(); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 273 | break; |
| 274 | |
| 275 | case CharacterLiteral::UTF16: |
| 276 | NumberType = Context.Char16Ty; |
| 277 | break; |
| 278 | |
| 279 | case CharacterLiteral::UTF32: |
| 280 | NumberType = Context.Char32Ty; |
| 281 | break; |
| 282 | } |
| 283 | } |
| 284 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 285 | // Look for the appropriate method within NSNumber. |
| 286 | // Construct the literal. |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 287 | SourceRange NR(Number->getSourceRange()); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 288 | ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType, |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 289 | true, NR); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 290 | if (!Method) |
| 291 | return ExprError(); |
| 292 | |
| 293 | // Convert the number to the type that the parameter expects. |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 294 | ParmVarDecl *ParamDecl = Method->parameters()[0]; |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 295 | InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, |
| 296 | ParamDecl); |
| 297 | ExprResult ConvertedNumber = PerformCopyInitialization(Entity, |
| 298 | SourceLocation(), |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 299 | Number); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 300 | if (ConvertedNumber.isInvalid()) |
| 301 | return ExprError(); |
| 302 | Number = ConvertedNumber.get(); |
| 303 | |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 304 | // Use the effective source range of the literal, including the leading '@'. |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 305 | return MaybeBindToTemporary( |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 306 | new (Context) ObjCBoxedExpr(Number, NSNumberPointer, Method, |
| 307 | SourceRange(AtLoc, NR.getEnd()))); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | ExprResult Sema::ActOnObjCBoolLiteral(SourceLocation AtLoc, |
| 311 | SourceLocation ValueLoc, |
| 312 | bool Value) { |
| 313 | ExprResult Inner; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 314 | if (getLangOpts().CPlusPlus) { |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 315 | Inner = ActOnCXXBoolLiteral(ValueLoc, Value? tok::kw_true : tok::kw_false); |
| 316 | } else { |
| 317 | // C doesn't actually have a way to represent literal values of type |
| 318 | // _Bool. So, we'll use 0/1 and implicit cast to _Bool. |
| 319 | Inner = ActOnIntegerConstant(ValueLoc, Value? 1 : 0); |
| 320 | Inner = ImpCastExprToType(Inner.get(), Context.BoolTy, |
| 321 | CK_IntegralToBoolean); |
| 322 | } |
| 323 | |
| 324 | return BuildObjCNumericLiteral(AtLoc, Inner.get()); |
| 325 | } |
| 326 | |
| 327 | /// \brief Check that the given expression is a valid element of an Objective-C |
| 328 | /// collection literal. |
| 329 | static ExprResult CheckObjCCollectionLiteralElement(Sema &S, Expr *Element, |
Fariborz Jahanian | a802c35 | 2013-08-13 23:44:55 +0000 | [diff] [blame] | 330 | QualType T, |
| 331 | bool ArrayLiteral = false) { |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 332 | // If the expression is type-dependent, there's nothing for us to do. |
| 333 | if (Element->isTypeDependent()) |
| 334 | return Element; |
| 335 | |
| 336 | ExprResult Result = S.CheckPlaceholderExpr(Element); |
| 337 | if (Result.isInvalid()) |
| 338 | return ExprError(); |
| 339 | Element = Result.get(); |
| 340 | |
| 341 | // In C++, check for an implicit conversion to an Objective-C object pointer |
| 342 | // type. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 343 | if (S.getLangOpts().CPlusPlus && Element->getType()->isRecordType()) { |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 344 | InitializedEntity Entity |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 345 | = InitializedEntity::InitializeParameter(S.Context, T, |
| 346 | /*Consumed=*/false); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 347 | InitializationKind Kind |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 348 | = InitializationKind::CreateCopy(Element->getLocStart(), |
| 349 | SourceLocation()); |
Dmitri Gribenko | 8f8930f | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 350 | InitializationSequence Seq(S, Entity, Kind, Element); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 351 | if (!Seq.Failed()) |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 352 | return Seq.Perform(S, Entity, Kind, Element); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | Expr *OrigElement = Element; |
| 356 | |
| 357 | // Perform lvalue-to-rvalue conversion. |
| 358 | Result = S.DefaultLvalueConversion(Element); |
| 359 | if (Result.isInvalid()) |
| 360 | return ExprError(); |
| 361 | Element = Result.get(); |
| 362 | |
| 363 | // Make sure that we have an Objective-C pointer type or block. |
| 364 | if (!Element->getType()->isObjCObjectPointerType() && |
| 365 | !Element->getType()->isBlockPointerType()) { |
| 366 | bool Recovered = false; |
| 367 | |
| 368 | // If this is potentially an Objective-C numeric literal, add the '@'. |
| 369 | if (isa<IntegerLiteral>(OrigElement) || |
| 370 | isa<CharacterLiteral>(OrigElement) || |
| 371 | isa<FloatingLiteral>(OrigElement) || |
| 372 | isa<ObjCBoolLiteralExpr>(OrigElement) || |
| 373 | isa<CXXBoolLiteralExpr>(OrigElement)) { |
| 374 | if (S.NSAPIObj->getNSNumberFactoryMethodKind(OrigElement->getType())) { |
| 375 | int Which = isa<CharacterLiteral>(OrigElement) ? 1 |
| 376 | : (isa<CXXBoolLiteralExpr>(OrigElement) || |
| 377 | isa<ObjCBoolLiteralExpr>(OrigElement)) ? 2 |
| 378 | : 3; |
| 379 | |
| 380 | S.Diag(OrigElement->getLocStart(), diag::err_box_literal_collection) |
| 381 | << Which << OrigElement->getSourceRange() |
| 382 | << FixItHint::CreateInsertion(OrigElement->getLocStart(), "@"); |
| 383 | |
| 384 | Result = S.BuildObjCNumericLiteral(OrigElement->getLocStart(), |
| 385 | OrigElement); |
| 386 | if (Result.isInvalid()) |
| 387 | return ExprError(); |
| 388 | |
| 389 | Element = Result.get(); |
| 390 | Recovered = true; |
| 391 | } |
| 392 | } |
| 393 | // If this is potentially an Objective-C string literal, add the '@'. |
| 394 | else if (StringLiteral *String = dyn_cast<StringLiteral>(OrigElement)) { |
| 395 | if (String->isAscii()) { |
| 396 | S.Diag(OrigElement->getLocStart(), diag::err_box_literal_collection) |
| 397 | << 0 << OrigElement->getSourceRange() |
| 398 | << FixItHint::CreateInsertion(OrigElement->getLocStart(), "@"); |
| 399 | |
| 400 | Result = S.BuildObjCStringLiteral(OrigElement->getLocStart(), String); |
| 401 | if (Result.isInvalid()) |
| 402 | return ExprError(); |
| 403 | |
| 404 | Element = Result.get(); |
| 405 | Recovered = true; |
| 406 | } |
| 407 | } |
Fariborz Jahanian | a802c35 | 2013-08-13 23:44:55 +0000 | [diff] [blame] | 408 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 409 | if (!Recovered) { |
| 410 | S.Diag(Element->getLocStart(), diag::err_invalid_collection_element) |
| 411 | << Element->getType(); |
| 412 | return ExprError(); |
| 413 | } |
| 414 | } |
Fariborz Jahanian | a802c35 | 2013-08-13 23:44:55 +0000 | [diff] [blame] | 415 | if (ArrayLiteral) |
Ted Kremenek | 197fee4 | 2013-10-09 22:34:33 +0000 | [diff] [blame] | 416 | if (ObjCStringLiteral *getString = |
| 417 | dyn_cast<ObjCStringLiteral>(OrigElement)) { |
| 418 | if (StringLiteral *SL = getString->getString()) { |
| 419 | unsigned numConcat = SL->getNumConcatenated(); |
| 420 | if (numConcat > 1) { |
| 421 | // Only warn if the concatenated string doesn't come from a macro. |
| 422 | bool hasMacro = false; |
| 423 | for (unsigned i = 0; i < numConcat ; ++i) |
| 424 | if (SL->getStrTokenLoc(i).isMacroID()) { |
| 425 | hasMacro = true; |
| 426 | break; |
| 427 | } |
| 428 | if (!hasMacro) |
| 429 | S.Diag(Element->getLocStart(), |
| 430 | diag::warn_concatenated_nsarray_literal) |
| 431 | << Element->getType(); |
| 432 | } |
| 433 | } |
Fariborz Jahanian | a802c35 | 2013-08-13 23:44:55 +0000 | [diff] [blame] | 434 | } |
| 435 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 436 | // Make sure that the element has the type that the container factory |
| 437 | // function expects. |
| 438 | return S.PerformCopyInitialization( |
| 439 | InitializedEntity::InitializeParameter(S.Context, T, |
| 440 | /*Consumed=*/false), |
| 441 | Element->getLocStart(), Element); |
| 442 | } |
| 443 | |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 444 | ExprResult Sema::BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) { |
| 445 | if (ValueExpr->isTypeDependent()) { |
| 446 | ObjCBoxedExpr *BoxedExpr = |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 447 | new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 448 | return BoxedExpr; |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 449 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 450 | ObjCMethodDecl *BoxingMethod = nullptr; |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 451 | QualType BoxedType; |
| 452 | // Convert the expression to an RValue, so we can check for pointer types... |
| 453 | ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr); |
| 454 | if (RValue.isInvalid()) { |
| 455 | return ExprError(); |
| 456 | } |
| 457 | ValueExpr = RValue.get(); |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 458 | QualType ValueType(ValueExpr->getType()); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 459 | if (const PointerType *PT = ValueType->getAs<PointerType>()) { |
| 460 | QualType PointeeType = PT->getPointeeType(); |
| 461 | if (Context.hasSameUnqualifiedType(PointeeType, Context.CharTy)) { |
| 462 | |
| 463 | if (!NSStringDecl) { |
| 464 | IdentifierInfo *NSStringId = |
| 465 | NSAPIObj->getNSClassId(NSAPI::ClassId_NSString); |
| 466 | NamedDecl *Decl = LookupSingleName(TUScope, NSStringId, |
| 467 | SR.getBegin(), LookupOrdinaryName); |
| 468 | NSStringDecl = dyn_cast_or_null<ObjCInterfaceDecl>(Decl); |
| 469 | if (!NSStringDecl) { |
| 470 | if (getLangOpts().DebuggerObjCLiteral) { |
| 471 | // Support boxed expressions in the debugger w/o NSString declaration. |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 472 | DeclContext *TU = Context.getTranslationUnitDecl(); |
| 473 | NSStringDecl = ObjCInterfaceDecl::Create(Context, TU, |
| 474 | SourceLocation(), |
| 475 | NSStringId, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 476 | nullptr, SourceLocation()); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 477 | } else { |
| 478 | Diag(SR.getBegin(), diag::err_undeclared_nsstring); |
| 479 | return ExprError(); |
| 480 | } |
| 481 | } else if (!NSStringDecl->hasDefinition()) { |
| 482 | Diag(SR.getBegin(), diag::err_undeclared_nsstring); |
| 483 | return ExprError(); |
| 484 | } |
| 485 | assert(NSStringDecl && "NSStringDecl should not be NULL"); |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 486 | QualType NSStringObject = Context.getObjCInterfaceType(NSStringDecl); |
| 487 | NSStringPointer = Context.getObjCObjectPointerType(NSStringObject); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | if (!StringWithUTF8StringMethod) { |
| 491 | IdentifierInfo *II = &Context.Idents.get("stringWithUTF8String"); |
| 492 | Selector stringWithUTF8String = Context.Selectors.getUnarySelector(II); |
| 493 | |
| 494 | // Look for the appropriate method within NSString. |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 495 | BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String); |
| 496 | if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) { |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 497 | // Debugger needs to work even if NSString hasn't been defined. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 498 | TypeSourceInfo *ReturnTInfo = nullptr; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 499 | ObjCMethodDecl *M = ObjCMethodDecl::Create( |
| 500 | Context, SourceLocation(), SourceLocation(), stringWithUTF8String, |
| 501 | NSStringPointer, ReturnTInfo, NSStringDecl, |
| 502 | /*isInstance=*/false, /*isVariadic=*/false, |
| 503 | /*isPropertyAccessor=*/false, |
| 504 | /*isImplicitlyDeclared=*/true, |
| 505 | /*isDefined=*/false, ObjCMethodDecl::Required, |
| 506 | /*HasRelatedResultType=*/false); |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 507 | QualType ConstCharType = Context.CharTy.withConst(); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 508 | ParmVarDecl *value = |
| 509 | ParmVarDecl::Create(Context, M, |
| 510 | SourceLocation(), SourceLocation(), |
| 511 | &Context.Idents.get("value"), |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 512 | Context.getPointerType(ConstCharType), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 513 | /*TInfo=*/nullptr, |
| 514 | SC_None, nullptr); |
Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 515 | M->setMethodParams(Context, value, None); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 516 | BoxingMethod = M; |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 517 | } |
Jordy Rose | 890f457 | 2012-05-12 15:53:41 +0000 | [diff] [blame] | 518 | |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 519 | if (!validateBoxingMethod(*this, SR.getBegin(), NSStringDecl, |
| 520 | stringWithUTF8String, BoxingMethod)) |
| 521 | return ExprError(); |
| 522 | |
| 523 | StringWithUTF8StringMethod = BoxingMethod; |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | BoxingMethod = StringWithUTF8StringMethod; |
| 527 | BoxedType = NSStringPointer; |
| 528 | } |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 529 | } else if (ValueType->isBuiltinType()) { |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 530 | // The other types we support are numeric, char and BOOL/bool. We could also |
| 531 | // provide limited support for structure types, such as NSRange, NSRect, and |
| 532 | // NSSize. See NSValue (NSValueGeometryExtensions) in <Foundation/NSGeometry.h> |
| 533 | // for more details. |
| 534 | |
| 535 | // Check for a top-level character literal. |
| 536 | if (const CharacterLiteral *Char = |
| 537 | dyn_cast<CharacterLiteral>(ValueExpr->IgnoreParens())) { |
| 538 | // In C, character literals have type 'int'. That's not the type we want |
| 539 | // to use to determine the Objective-c literal kind. |
| 540 | switch (Char->getKind()) { |
| 541 | case CharacterLiteral::Ascii: |
| 542 | ValueType = Context.CharTy; |
| 543 | break; |
| 544 | |
| 545 | case CharacterLiteral::Wide: |
Hans Wennborg | 0d81e01 | 2013-05-10 10:08:40 +0000 | [diff] [blame] | 546 | ValueType = Context.getWideCharType(); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 547 | break; |
| 548 | |
| 549 | case CharacterLiteral::UTF16: |
| 550 | ValueType = Context.Char16Ty; |
| 551 | break; |
| 552 | |
| 553 | case CharacterLiteral::UTF32: |
| 554 | ValueType = Context.Char32Ty; |
| 555 | break; |
| 556 | } |
| 557 | } |
Fariborz Jahanian | 5d64abb | 2014-06-18 20:49:02 +0000 | [diff] [blame] | 558 | CheckForIntOverflow(ValueExpr); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 559 | // FIXME: Do I need to do anything special with BoolTy expressions? |
| 560 | |
| 561 | // Look for the appropriate method within NSNumber. |
| 562 | BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(), ValueType); |
| 563 | BoxedType = NSNumberPointer; |
Argyrios Kyrtzidis | 8e6951d | 2012-05-15 19:17:44 +0000 | [diff] [blame] | 564 | |
| 565 | } else if (const EnumType *ET = ValueType->getAs<EnumType>()) { |
| 566 | if (!ET->getDecl()->isComplete()) { |
| 567 | Diag(SR.getBegin(), diag::err_objc_incomplete_boxed_expression_type) |
| 568 | << ValueType << ValueExpr->getSourceRange(); |
| 569 | return ExprError(); |
| 570 | } |
| 571 | |
| 572 | BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(), |
| 573 | ET->getDecl()->getIntegerType()); |
| 574 | BoxedType = NSNumberPointer; |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | if (!BoxingMethod) { |
| 578 | Diag(SR.getBegin(), diag::err_objc_illegal_boxed_expression_type) |
| 579 | << ValueType << ValueExpr->getSourceRange(); |
| 580 | return ExprError(); |
| 581 | } |
| 582 | |
| 583 | // Convert the expression to the type that the parameter requires. |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 584 | ParmVarDecl *ParamDecl = BoxingMethod->parameters()[0]; |
Patrick Beard | 2565c59 | 2012-05-01 21:47:19 +0000 | [diff] [blame] | 585 | InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, |
| 586 | ParamDecl); |
| 587 | ExprResult ConvertedValueExpr = PerformCopyInitialization(Entity, |
| 588 | SourceLocation(), |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 589 | ValueExpr); |
Patrick Beard | 0caa394 | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 590 | if (ConvertedValueExpr.isInvalid()) |
| 591 | return ExprError(); |
| 592 | ValueExpr = ConvertedValueExpr.get(); |
| 593 | |
| 594 | ObjCBoxedExpr *BoxedExpr = |
| 595 | new (Context) ObjCBoxedExpr(ValueExpr, BoxedType, |
| 596 | BoxingMethod, SR); |
| 597 | return MaybeBindToTemporary(BoxedExpr); |
| 598 | } |
| 599 | |
Fariborz Jahanian | bf09db4 | 2014-08-08 18:29:52 +0000 | [diff] [blame] | 600 | static ObjCMethodDecl *FindAllocMethod(Sema &S, ObjCInterfaceDecl *NSClass) { |
| 601 | ObjCMethodDecl *Method = nullptr; |
| 602 | ASTContext &Context = S.Context; |
| 603 | |
| 604 | // Find +[NSClass alloc] method. |
| 605 | IdentifierInfo *II = &Context.Idents.get("alloc"); |
| 606 | Selector AllocSel = Context.Selectors.getSelector(0, &II); |
| 607 | Method = NSClass->lookupClassMethod(AllocSel); |
| 608 | if (!Method && S.getLangOpts().DebuggerObjCLiteral) { |
| 609 | Method = ObjCMethodDecl::Create(Context, |
| 610 | SourceLocation(), SourceLocation(), AllocSel, |
| 611 | Context.getObjCIdType(), |
| 612 | nullptr /*TypeSourceInfo */, |
| 613 | Context.getTranslationUnitDecl(), |
| 614 | false /*Instance*/, false/*isVariadic*/, |
| 615 | /*isPropertyAccessor=*/false, |
| 616 | /*isImplicitlyDeclared=*/true, /*isDefined=*/false, |
| 617 | ObjCMethodDecl::Required, |
| 618 | false); |
| 619 | SmallVector<ParmVarDecl *, 1> Params; |
| 620 | Method->setMethodParams(Context, Params, None); |
| 621 | } |
| 622 | return Method; |
| 623 | } |
| 624 | |
John McCall | f253834 | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 625 | /// Build an ObjC subscript pseudo-object expression, given that |
| 626 | /// that's supported by the runtime. |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 627 | ExprResult Sema::BuildObjCSubscriptExpression(SourceLocation RB, Expr *BaseExpr, |
| 628 | Expr *IndexExpr, |
| 629 | ObjCMethodDecl *getterMethod, |
| 630 | ObjCMethodDecl *setterMethod) { |
Fariborz Jahanian | e1e33f8 | 2013-11-01 21:58:17 +0000 | [diff] [blame] | 631 | assert(!LangOpts.isSubscriptPointerArithmetic()); |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 632 | |
John McCall | f253834 | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 633 | // We can't get dependent types here; our callers should have |
| 634 | // filtered them out. |
| 635 | assert((!BaseExpr->isTypeDependent() && !IndexExpr->isTypeDependent()) && |
| 636 | "base or index cannot have dependent type here"); |
| 637 | |
| 638 | // Filter out placeholders in the index. In theory, overloads could |
| 639 | // be preserved here, although that might not actually work correctly. |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 640 | ExprResult Result = CheckPlaceholderExpr(IndexExpr); |
| 641 | if (Result.isInvalid()) |
| 642 | return ExprError(); |
| 643 | IndexExpr = Result.get(); |
| 644 | |
John McCall | f253834 | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 645 | // Perform lvalue-to-rvalue conversion on the base. |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 646 | Result = DefaultLvalueConversion(BaseExpr); |
| 647 | if (Result.isInvalid()) |
| 648 | return ExprError(); |
| 649 | BaseExpr = Result.get(); |
John McCall | f253834 | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 650 | |
| 651 | // Build the pseudo-object expression. |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 652 | return ObjCSubscriptRefExpr::Create(Context, BaseExpr, IndexExpr, |
| 653 | Context.PseudoObjectTy, getterMethod, |
| 654 | setterMethod, RB); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | ExprResult Sema::BuildObjCArrayLiteral(SourceRange SR, MultiExprArg Elements) { |
Fariborz Jahanian | 495bc3f | 2014-08-08 17:31:14 +0000 | [diff] [blame] | 658 | bool Arc = getLangOpts().ObjCAutoRefCount; |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 659 | // Look up the NSArray class, if we haven't done so already. |
| 660 | if (!NSArrayDecl) { |
| 661 | NamedDecl *IF = LookupSingleName(TUScope, |
| 662 | NSAPIObj->getNSClassId(NSAPI::ClassId_NSArray), |
| 663 | SR.getBegin(), |
| 664 | LookupOrdinaryName); |
| 665 | NSArrayDecl = dyn_cast_or_null<ObjCInterfaceDecl>(IF); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 666 | if (!NSArrayDecl && getLangOpts().DebuggerObjCLiteral) |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 667 | NSArrayDecl = ObjCInterfaceDecl::Create (Context, |
| 668 | Context.getTranslationUnitDecl(), |
| 669 | SourceLocation(), |
| 670 | NSAPIObj->getNSClassId(NSAPI::ClassId_NSArray), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 671 | nullptr, SourceLocation()); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 672 | |
| 673 | if (!NSArrayDecl) { |
| 674 | Diag(SR.getBegin(), diag::err_undeclared_nsarray); |
| 675 | return ExprError(); |
| 676 | } |
| 677 | } |
Fariborz Jahanian | 495bc3f | 2014-08-08 17:31:14 +0000 | [diff] [blame] | 678 | if (Arc && !ArrayAllocObjectsMethod) { |
| 679 | // Find +[NSArray alloc] method. |
Fariborz Jahanian | bf09db4 | 2014-08-08 18:29:52 +0000 | [diff] [blame] | 680 | ArrayAllocObjectsMethod = FindAllocMethod(*this, NSArrayDecl); |
Fariborz Jahanian | 495bc3f | 2014-08-08 17:31:14 +0000 | [diff] [blame] | 681 | if (!ArrayAllocObjectsMethod) { |
| 682 | Diag(SR.getBegin(), diag::err_undeclared_alloc); |
| 683 | return ExprError(); |
| 684 | } |
| 685 | } |
| 686 | // Find the arrayWithObjects:count: method, if we haven't done so already. |
Fariborz Jahanian | bf09db4 | 2014-08-08 18:29:52 +0000 | [diff] [blame] | 687 | QualType IdT = Context.getObjCIdType(); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 688 | if (!ArrayWithObjectsMethod) { |
| 689 | Selector |
Fariborz Jahanian | 495bc3f | 2014-08-08 17:31:14 +0000 | [diff] [blame] | 690 | Sel = NSAPIObj->getNSArraySelector( |
| 691 | Arc? NSAPI::NSArr_initWithObjectsCount : NSAPI::NSArr_arrayWithObjectsCount); |
| 692 | ObjCMethodDecl *Method = |
| 693 | Arc? NSArrayDecl->lookupInstanceMethod(Sel) |
| 694 | : NSArrayDecl->lookupClassMethod(Sel); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 695 | if (!Method && getLangOpts().DebuggerObjCLiteral) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 696 | TypeSourceInfo *ReturnTInfo = nullptr; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 697 | Method = ObjCMethodDecl::Create( |
| 698 | Context, SourceLocation(), SourceLocation(), Sel, IdT, ReturnTInfo, |
Fariborz Jahanian | 495bc3f | 2014-08-08 17:31:14 +0000 | [diff] [blame] | 699 | Context.getTranslationUnitDecl(), |
| 700 | Arc /*Instance for Arc, Class for MRR*/, |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 701 | false /*isVariadic*/, |
| 702 | /*isPropertyAccessor=*/false, |
| 703 | /*isImplicitlyDeclared=*/true, /*isDefined=*/false, |
| 704 | ObjCMethodDecl::Required, false); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 705 | SmallVector<ParmVarDecl *, 2> Params; |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 706 | ParmVarDecl *objects = ParmVarDecl::Create(Context, Method, |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 707 | SourceLocation(), |
| 708 | SourceLocation(), |
| 709 | &Context.Idents.get("objects"), |
| 710 | Context.getPointerType(IdT), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 711 | /*TInfo=*/nullptr, |
| 712 | SC_None, nullptr); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 713 | Params.push_back(objects); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 714 | ParmVarDecl *cnt = ParmVarDecl::Create(Context, Method, |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 715 | SourceLocation(), |
| 716 | SourceLocation(), |
| 717 | &Context.Idents.get("cnt"), |
| 718 | Context.UnsignedLongTy, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 719 | /*TInfo=*/nullptr, SC_None, |
| 720 | nullptr); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 721 | Params.push_back(cnt); |
Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 722 | Method->setMethodParams(Context, Params, None); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 723 | } |
| 724 | |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 725 | if (!validateBoxingMethod(*this, SR.getBegin(), NSArrayDecl, Sel, Method)) |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 726 | return ExprError(); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 727 | |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 728 | // Dig out the type that all elements should be converted to. |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 729 | QualType T = Method->parameters()[0]->getType(); |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 730 | const PointerType *PtrT = T->getAs<PointerType>(); |
| 731 | if (!PtrT || |
| 732 | !Context.hasSameUnqualifiedType(PtrT->getPointeeType(), IdT)) { |
| 733 | Diag(SR.getBegin(), diag::err_objc_literal_method_sig) |
| 734 | << Sel; |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 735 | Diag(Method->parameters()[0]->getLocation(), |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 736 | diag::note_objc_literal_method_param) |
| 737 | << 0 << T |
| 738 | << Context.getPointerType(IdT.withConst()); |
| 739 | return ExprError(); |
| 740 | } |
| 741 | |
| 742 | // Check that the 'count' parameter is integral. |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 743 | if (!Method->parameters()[1]->getType()->isIntegerType()) { |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 744 | Diag(SR.getBegin(), diag::err_objc_literal_method_sig) |
| 745 | << Sel; |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 746 | Diag(Method->parameters()[1]->getLocation(), |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 747 | diag::note_objc_literal_method_param) |
| 748 | << 1 |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 749 | << Method->parameters()[1]->getType() |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 750 | << "integral"; |
| 751 | return ExprError(); |
| 752 | } |
| 753 | |
| 754 | // We've found a good +arrayWithObjects:count: method. Save it! |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 755 | ArrayWithObjectsMethod = Method; |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 756 | } |
| 757 | |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 758 | QualType ObjectsType = ArrayWithObjectsMethod->parameters()[0]->getType(); |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 759 | QualType RequiredType = ObjectsType->castAs<PointerType>()->getPointeeType(); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 760 | |
| 761 | // Check that each of the elements provided is valid in a collection literal, |
| 762 | // performing conversions as necessary. |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 763 | Expr **ElementsBuffer = Elements.data(); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 764 | for (unsigned I = 0, N = Elements.size(); I != N; ++I) { |
| 765 | ExprResult Converted = CheckObjCCollectionLiteralElement(*this, |
| 766 | ElementsBuffer[I], |
Fariborz Jahanian | a802c35 | 2013-08-13 23:44:55 +0000 | [diff] [blame] | 767 | RequiredType, true); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 768 | if (Converted.isInvalid()) |
| 769 | return ExprError(); |
| 770 | |
| 771 | ElementsBuffer[I] = Converted.get(); |
| 772 | } |
| 773 | |
| 774 | QualType Ty |
| 775 | = Context.getObjCObjectPointerType( |
| 776 | Context.getObjCInterfaceType(NSArrayDecl)); |
| 777 | |
| 778 | return MaybeBindToTemporary( |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 779 | ObjCArrayLiteral::Create(Context, Elements, Ty, |
Fariborz Jahanian | 495bc3f | 2014-08-08 17:31:14 +0000 | [diff] [blame] | 780 | ArrayWithObjectsMethod, |
| 781 | ArrayAllocObjectsMethod, SR)); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | ExprResult Sema::BuildObjCDictionaryLiteral(SourceRange SR, |
| 785 | ObjCDictionaryElement *Elements, |
| 786 | unsigned NumElements) { |
Fariborz Jahanian | 2a25dba | 2014-08-06 23:40:31 +0000 | [diff] [blame] | 787 | bool Arc = getLangOpts().ObjCAutoRefCount; |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 788 | // Look up the NSDictionary class, if we haven't done so already. |
| 789 | if (!NSDictionaryDecl) { |
| 790 | NamedDecl *IF = LookupSingleName(TUScope, |
| 791 | NSAPIObj->getNSClassId(NSAPI::ClassId_NSDictionary), |
| 792 | SR.getBegin(), LookupOrdinaryName); |
| 793 | NSDictionaryDecl = dyn_cast_or_null<ObjCInterfaceDecl>(IF); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 794 | if (!NSDictionaryDecl && getLangOpts().DebuggerObjCLiteral) |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 795 | NSDictionaryDecl = ObjCInterfaceDecl::Create (Context, |
| 796 | Context.getTranslationUnitDecl(), |
| 797 | SourceLocation(), |
| 798 | NSAPIObj->getNSClassId(NSAPI::ClassId_NSDictionary), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 799 | nullptr, SourceLocation()); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 800 | |
| 801 | if (!NSDictionaryDecl) { |
| 802 | Diag(SR.getBegin(), diag::err_undeclared_nsdictionary); |
| 803 | return ExprError(); |
| 804 | } |
| 805 | } |
| 806 | |
Fariborz Jahanian | 2a25dba | 2014-08-06 23:40:31 +0000 | [diff] [blame] | 807 | if (Arc && !DictAllocObjectsMethod) { |
| 808 | // Find +[NSDictionary alloc] method. |
Fariborz Jahanian | bf09db4 | 2014-08-08 18:29:52 +0000 | [diff] [blame] | 809 | DictAllocObjectsMethod = FindAllocMethod(*this, NSDictionaryDecl); |
Fariborz Jahanian | 2a25dba | 2014-08-06 23:40:31 +0000 | [diff] [blame] | 810 | if (!DictAllocObjectsMethod) { |
| 811 | Diag(SR.getBegin(), diag::err_undeclared_alloc); |
| 812 | return ExprError(); |
| 813 | } |
| 814 | } |
| 815 | |
Fariborz Jahanian | d45e7ce | 2014-08-07 20:57:35 +0000 | [diff] [blame] | 816 | // Find the dictionaryWithObjects:forKeys:count: or initWithObjects:forKeys:count: |
| 817 | // (for arc) method, if we haven't done so already. |
Fariborz Jahanian | bf09db4 | 2014-08-08 18:29:52 +0000 | [diff] [blame] | 818 | QualType IdT = Context.getObjCIdType(); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 819 | if (!DictionaryWithObjectsMethod) { |
Fariborz Jahanian | d45e7ce | 2014-08-07 20:57:35 +0000 | [diff] [blame] | 820 | Selector Sel = |
| 821 | NSAPIObj->getNSDictionarySelector(Arc? NSAPI::NSDict_initWithObjectsForKeysCount |
| 822 | : NSAPI::NSDict_dictionaryWithObjectsForKeysCount); |
| 823 | ObjCMethodDecl *Method = |
| 824 | Arc ? NSDictionaryDecl->lookupInstanceMethod(Sel) |
| 825 | : NSDictionaryDecl->lookupClassMethod(Sel); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 826 | if (!Method && getLangOpts().DebuggerObjCLiteral) { |
| 827 | Method = ObjCMethodDecl::Create(Context, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 828 | SourceLocation(), SourceLocation(), Sel, |
| 829 | IdT, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 830 | nullptr /*TypeSourceInfo */, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 831 | Context.getTranslationUnitDecl(), |
Fariborz Jahanian | d45e7ce | 2014-08-07 20:57:35 +0000 | [diff] [blame] | 832 | Arc /*Instance for Arc, Class for MRR*/, false/*isVariadic*/, |
Jordan Rose | d01e83a | 2012-10-10 16:42:25 +0000 | [diff] [blame] | 833 | /*isPropertyAccessor=*/false, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 834 | /*isImplicitlyDeclared=*/true, /*isDefined=*/false, |
| 835 | ObjCMethodDecl::Required, |
| 836 | false); |
| 837 | SmallVector<ParmVarDecl *, 3> Params; |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 838 | ParmVarDecl *objects = ParmVarDecl::Create(Context, Method, |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 839 | SourceLocation(), |
| 840 | SourceLocation(), |
| 841 | &Context.Idents.get("objects"), |
| 842 | Context.getPointerType(IdT), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 843 | /*TInfo=*/nullptr, SC_None, |
| 844 | nullptr); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 845 | Params.push_back(objects); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 846 | ParmVarDecl *keys = ParmVarDecl::Create(Context, Method, |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 847 | SourceLocation(), |
| 848 | SourceLocation(), |
| 849 | &Context.Idents.get("keys"), |
| 850 | Context.getPointerType(IdT), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 851 | /*TInfo=*/nullptr, SC_None, |
| 852 | nullptr); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 853 | Params.push_back(keys); |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 854 | ParmVarDecl *cnt = ParmVarDecl::Create(Context, Method, |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 855 | SourceLocation(), |
| 856 | SourceLocation(), |
| 857 | &Context.Idents.get("cnt"), |
| 858 | Context.UnsignedLongTy, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 859 | /*TInfo=*/nullptr, SC_None, |
| 860 | nullptr); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 861 | Params.push_back(cnt); |
Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 862 | Method->setMethodParams(Context, Params, None); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 863 | } |
| 864 | |
Jordy Rose | 08e500c | 2012-05-12 17:32:44 +0000 | [diff] [blame] | 865 | if (!validateBoxingMethod(*this, SR.getBegin(), NSDictionaryDecl, Sel, |
| 866 | Method)) |
| 867 | return ExprError(); |
| 868 | |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 869 | // Dig out the type that all values should be converted to. |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 870 | QualType ValueT = Method->parameters()[0]->getType(); |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 871 | const PointerType *PtrValue = ValueT->getAs<PointerType>(); |
| 872 | if (!PtrValue || |
| 873 | !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) { |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 874 | Diag(SR.getBegin(), diag::err_objc_literal_method_sig) |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 875 | << Sel; |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 876 | Diag(Method->parameters()[0]->getLocation(), |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 877 | diag::note_objc_literal_method_param) |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 878 | << 0 << ValueT |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 879 | << Context.getPointerType(IdT.withConst()); |
| 880 | return ExprError(); |
| 881 | } |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 882 | |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 883 | // Dig out the type that all keys should be converted to. |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 884 | QualType KeyT = Method->parameters()[1]->getType(); |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 885 | const PointerType *PtrKey = KeyT->getAs<PointerType>(); |
| 886 | if (!PtrKey || |
| 887 | !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(), |
| 888 | IdT)) { |
| 889 | bool err = true; |
| 890 | if (PtrKey) { |
| 891 | if (QIDNSCopying.isNull()) { |
| 892 | // key argument of selector is id<NSCopying>? |
| 893 | if (ObjCProtocolDecl *NSCopyingPDecl = |
| 894 | LookupProtocol(&Context.Idents.get("NSCopying"), SR.getBegin())) { |
| 895 | ObjCProtocolDecl *PQ[] = {NSCopyingPDecl}; |
| 896 | QIDNSCopying = |
| 897 | Context.getObjCObjectType(Context.ObjCBuiltinIdTy, |
| 898 | (ObjCProtocolDecl**) PQ,1); |
| 899 | QIDNSCopying = Context.getObjCObjectPointerType(QIDNSCopying); |
| 900 | } |
| 901 | } |
| 902 | if (!QIDNSCopying.isNull()) |
| 903 | err = !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(), |
| 904 | QIDNSCopying); |
| 905 | } |
| 906 | |
| 907 | if (err) { |
| 908 | Diag(SR.getBegin(), diag::err_objc_literal_method_sig) |
| 909 | << Sel; |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 910 | Diag(Method->parameters()[1]->getLocation(), |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 911 | diag::note_objc_literal_method_param) |
| 912 | << 1 << KeyT |
| 913 | << Context.getPointerType(IdT.withConst()); |
| 914 | return ExprError(); |
| 915 | } |
| 916 | } |
| 917 | |
| 918 | // Check that the 'count' parameter is integral. |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 919 | QualType CountType = Method->parameters()[2]->getType(); |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 920 | if (!CountType->isIntegerType()) { |
| 921 | Diag(SR.getBegin(), diag::err_objc_literal_method_sig) |
| 922 | << Sel; |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 923 | Diag(Method->parameters()[2]->getLocation(), |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 924 | diag::note_objc_literal_method_param) |
| 925 | << 2 << CountType |
| 926 | << "integral"; |
| 927 | return ExprError(); |
| 928 | } |
| 929 | |
| 930 | // We've found a good +dictionaryWithObjects:keys:count: method; save it! |
| 931 | DictionaryWithObjectsMethod = Method; |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 932 | } |
| 933 | |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 934 | QualType ValuesT = DictionaryWithObjectsMethod->parameters()[0]->getType(); |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 935 | QualType ValueT = ValuesT->castAs<PointerType>()->getPointeeType(); |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 936 | QualType KeysT = DictionaryWithObjectsMethod->parameters()[1]->getType(); |
Jordy Rose | 4af4487 | 2012-05-12 17:32:56 +0000 | [diff] [blame] | 937 | QualType KeyT = KeysT->castAs<PointerType>()->getPointeeType(); |
| 938 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 939 | // Check that each of the keys and values provided is valid in a collection |
| 940 | // literal, performing conversions as necessary. |
| 941 | bool HasPackExpansions = false; |
| 942 | for (unsigned I = 0, N = NumElements; I != N; ++I) { |
| 943 | // Check the key. |
| 944 | ExprResult Key = CheckObjCCollectionLiteralElement(*this, Elements[I].Key, |
| 945 | KeyT); |
| 946 | if (Key.isInvalid()) |
| 947 | return ExprError(); |
| 948 | |
| 949 | // Check the value. |
| 950 | ExprResult Value |
| 951 | = CheckObjCCollectionLiteralElement(*this, Elements[I].Value, ValueT); |
| 952 | if (Value.isInvalid()) |
| 953 | return ExprError(); |
| 954 | |
| 955 | Elements[I].Key = Key.get(); |
| 956 | Elements[I].Value = Value.get(); |
| 957 | |
| 958 | if (Elements[I].EllipsisLoc.isInvalid()) |
| 959 | continue; |
| 960 | |
| 961 | if (!Elements[I].Key->containsUnexpandedParameterPack() && |
| 962 | !Elements[I].Value->containsUnexpandedParameterPack()) { |
| 963 | Diag(Elements[I].EllipsisLoc, |
| 964 | diag::err_pack_expansion_without_parameter_packs) |
| 965 | << SourceRange(Elements[I].Key->getLocStart(), |
| 966 | Elements[I].Value->getLocEnd()); |
| 967 | return ExprError(); |
| 968 | } |
| 969 | |
| 970 | HasPackExpansions = true; |
| 971 | } |
| 972 | |
| 973 | |
| 974 | QualType Ty |
| 975 | = Context.getObjCObjectPointerType( |
Robert Wilhelm | 88e0249 | 2013-08-19 07:57:02 +0000 | [diff] [blame] | 976 | Context.getObjCInterfaceType(NSDictionaryDecl)); |
| 977 | return MaybeBindToTemporary(ObjCDictionaryLiteral::Create( |
| 978 | Context, makeArrayRef(Elements, NumElements), HasPackExpansions, Ty, |
Fariborz Jahanian | 2a25dba | 2014-08-06 23:40:31 +0000 | [diff] [blame] | 979 | DictionaryWithObjectsMethod, DictAllocObjectsMethod, SR)); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 980 | } |
| 981 | |
Argyrios Kyrtzidis | 7da04c6 | 2011-05-14 20:32:39 +0000 | [diff] [blame] | 982 | ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc, |
Douglas Gregor | abd9e96 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 983 | TypeSourceInfo *EncodedTypeInfo, |
Anders Carlsson | 315d229 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 984 | SourceLocation RParenLoc) { |
Douglas Gregor | abd9e96 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 985 | QualType EncodedType = EncodedTypeInfo->getType(); |
Anders Carlsson | 315d229 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 986 | QualType StrTy; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 987 | if (EncodedType->isDependentType()) |
Anders Carlsson | 315d229 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 988 | StrTy = Context.DependentTy; |
| 989 | else { |
Fariborz Jahanian | d9bc6c3 | 2011-06-16 22:34:44 +0000 | [diff] [blame] | 990 | if (!EncodedType->getAsArrayTypeUnsafe() && //// Incomplete array is handled. |
| 991 | !EncodedType->isVoidType()) // void is handled too. |
Argyrios Kyrtzidis | 7da04c6 | 2011-05-14 20:32:39 +0000 | [diff] [blame] | 992 | if (RequireCompleteType(AtLoc, EncodedType, |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 993 | diag::err_incomplete_type_objc_at_encode, |
| 994 | EncodedTypeInfo->getTypeLoc())) |
Argyrios Kyrtzidis | 7da04c6 | 2011-05-14 20:32:39 +0000 | [diff] [blame] | 995 | return ExprError(); |
| 996 | |
Anders Carlsson | 315d229 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 997 | std::string Str; |
Fariborz Jahanian | 4bf437e | 2014-08-22 23:17:52 +0000 | [diff] [blame^] | 998 | QualType NotEncodedT; |
| 999 | Context.getObjCEncodingForType(EncodedType, Str, nullptr, &NotEncodedT); |
| 1000 | if (!NotEncodedT.isNull()) |
| 1001 | Diag(AtLoc, diag::warn_incomplete_encoded_type) |
| 1002 | << EncodedType << NotEncodedT; |
Anders Carlsson | 315d229 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 1003 | |
| 1004 | // The type of @encode is the same as the type of the corresponding string, |
| 1005 | // which is an array type. |
| 1006 | StrTy = Context.CharTy; |
| 1007 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1008 | if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings) |
Anders Carlsson | 315d229 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 1009 | StrTy.addConst(); |
| 1010 | StrTy = Context.getConstantArrayType(StrTy, llvm::APInt(32, Str.size()+1), |
| 1011 | ArrayType::Normal, 0); |
| 1012 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1013 | |
Douglas Gregor | abd9e96 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 1014 | return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc); |
Anders Carlsson | 315d229 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 1015 | } |
| 1016 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1017 | ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc, |
| 1018 | SourceLocation EncodeLoc, |
| 1019 | SourceLocation LParenLoc, |
| 1020 | ParsedType ty, |
| 1021 | SourceLocation RParenLoc) { |
Argyrios Kyrtzidis | c7148c9 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 1022 | // FIXME: Preserve type source info ? |
Douglas Gregor | abd9e96 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 1023 | TypeSourceInfo *TInfo; |
| 1024 | QualType EncodedType = GetTypeFromParser(ty, &TInfo); |
| 1025 | if (!TInfo) |
| 1026 | TInfo = Context.getTrivialTypeSourceInfo(EncodedType, |
| 1027 | PP.getLocForEndOfToken(LParenLoc)); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1028 | |
Douglas Gregor | abd9e96 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 1029 | return BuildObjCEncodeExpression(AtLoc, TInfo, RParenLoc); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1030 | } |
| 1031 | |
Fariborz Jahanian | 44be154 | 2014-03-12 18:34:01 +0000 | [diff] [blame] | 1032 | static bool HelperToDiagnoseMismatchedMethodsInGlobalPool(Sema &S, |
| 1033 | SourceLocation AtLoc, |
Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 1034 | SourceLocation LParenLoc, |
| 1035 | SourceLocation RParenLoc, |
Fariborz Jahanian | 44be154 | 2014-03-12 18:34:01 +0000 | [diff] [blame] | 1036 | ObjCMethodDecl *Method, |
| 1037 | ObjCMethodList &MethList) { |
| 1038 | ObjCMethodList *M = &MethList; |
| 1039 | bool Warned = false; |
| 1040 | for (M = M->getNext(); M; M=M->getNext()) { |
| 1041 | ObjCMethodDecl *MatchingMethodDecl = M->Method; |
| 1042 | if (MatchingMethodDecl == Method || |
| 1043 | isa<ObjCImplDecl>(MatchingMethodDecl->getDeclContext()) || |
| 1044 | MatchingMethodDecl->getSelector() != Method->getSelector()) |
| 1045 | continue; |
| 1046 | if (!S.MatchTwoMethodDeclarations(Method, |
| 1047 | MatchingMethodDecl, Sema::MMS_loose)) { |
| 1048 | if (!Warned) { |
| 1049 | Warned = true; |
| 1050 | S.Diag(AtLoc, diag::warning_multiple_selectors) |
Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 1051 | << Method->getSelector() << FixItHint::CreateInsertion(LParenLoc, "(") |
| 1052 | << FixItHint::CreateInsertion(RParenLoc, ")"); |
Fariborz Jahanian | 44be154 | 2014-03-12 18:34:01 +0000 | [diff] [blame] | 1053 | S.Diag(Method->getLocation(), diag::note_method_declared_at) |
| 1054 | << Method->getDeclName(); |
| 1055 | } |
| 1056 | S.Diag(MatchingMethodDecl->getLocation(), diag::note_method_declared_at) |
| 1057 | << MatchingMethodDecl->getDeclName(); |
| 1058 | } |
| 1059 | } |
| 1060 | return Warned; |
| 1061 | } |
| 1062 | |
| 1063 | static void DiagnoseMismatchedSelectors(Sema &S, SourceLocation AtLoc, |
Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 1064 | ObjCMethodDecl *Method, |
| 1065 | SourceLocation LParenLoc, |
| 1066 | SourceLocation RParenLoc, |
| 1067 | bool WarnMultipleSelectors) { |
| 1068 | if (!WarnMultipleSelectors || |
| 1069 | S.Diags.isIgnored(diag::warning_multiple_selectors, SourceLocation())) |
Fariborz Jahanian | 44be154 | 2014-03-12 18:34:01 +0000 | [diff] [blame] | 1070 | return; |
| 1071 | bool Warned = false; |
| 1072 | for (Sema::GlobalMethodPool::iterator b = S.MethodPool.begin(), |
| 1073 | e = S.MethodPool.end(); b != e; b++) { |
| 1074 | // first, instance methods |
| 1075 | ObjCMethodList &InstMethList = b->second.first; |
Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 1076 | if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc, |
Fariborz Jahanian | 44be154 | 2014-03-12 18:34:01 +0000 | [diff] [blame] | 1077 | Method, InstMethList)) |
| 1078 | Warned = true; |
| 1079 | |
| 1080 | // second, class methods |
| 1081 | ObjCMethodList &ClsMethList = b->second.second; |
Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 1082 | if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc, |
| 1083 | Method, ClsMethList) || Warned) |
Fariborz Jahanian | 44be154 | 2014-03-12 18:34:01 +0000 | [diff] [blame] | 1084 | return; |
| 1085 | } |
| 1086 | } |
| 1087 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1088 | ExprResult Sema::ParseObjCSelectorExpression(Selector Sel, |
| 1089 | SourceLocation AtLoc, |
| 1090 | SourceLocation SelLoc, |
| 1091 | SourceLocation LParenLoc, |
Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 1092 | SourceLocation RParenLoc, |
| 1093 | bool WarnMultipleSelectors) { |
Fariborz Jahanian | 02447d8 | 2013-01-22 18:35:43 +0000 | [diff] [blame] | 1094 | ObjCMethodDecl *Method = LookupInstanceMethodInGlobalPool(Sel, |
| 1095 | SourceRange(LParenLoc, RParenLoc), false, false); |
| 1096 | if (!Method) |
| 1097 | Method = LookupFactoryMethodInGlobalPool(Sel, |
Fariborz Jahanian | 0571d9b | 2009-06-16 16:25:00 +0000 | [diff] [blame] | 1098 | SourceRange(LParenLoc, RParenLoc)); |
Fariborz Jahanian | 0c0fc9e | 2013-06-05 18:46:14 +0000 | [diff] [blame] | 1099 | if (!Method) { |
| 1100 | if (const ObjCMethodDecl *OM = SelectorsForTypoCorrection(Sel)) { |
| 1101 | Selector MatchedSel = OM->getSelector(); |
| 1102 | SourceRange SelectorRange(LParenLoc.getLocWithOffset(1), |
| 1103 | RParenLoc.getLocWithOffset(-1)); |
| 1104 | Diag(SelLoc, diag::warn_undeclared_selector_with_typo) |
| 1105 | << Sel << MatchedSel |
| 1106 | << FixItHint::CreateReplacement(SelectorRange, MatchedSel.getAsString()); |
| 1107 | |
| 1108 | } else |
| 1109 | Diag(SelLoc, diag::warn_undeclared_selector) << Sel; |
Fariborz Jahanian | 44be154 | 2014-03-12 18:34:01 +0000 | [diff] [blame] | 1110 | } else |
Fariborz Jahanian | dacffc0 | 2014-06-24 17:02:19 +0000 | [diff] [blame] | 1111 | DiagnoseMismatchedSelectors(*this, AtLoc, Method, LParenLoc, RParenLoc, |
| 1112 | WarnMultipleSelectors); |
Fariborz Jahanian | 9a88101 | 2011-07-13 19:05:43 +0000 | [diff] [blame] | 1113 | |
Fariborz Jahanian | 65a78b5 | 2014-05-09 19:51:39 +0000 | [diff] [blame] | 1114 | if (Method && |
| 1115 | Method->getImplementationControl() != ObjCMethodDecl::Optional && |
| 1116 | !getSourceManager().isInSystemHeader(Method->getLocation())) { |
Fariborz Jahanian | 02447d8 | 2013-01-22 18:35:43 +0000 | [diff] [blame] | 1117 | llvm::DenseMap<Selector, SourceLocation>::iterator Pos |
| 1118 | = ReferencedSelectors.find(Sel); |
| 1119 | if (Pos == ReferencedSelectors.end()) |
| 1120 | ReferencedSelectors.insert(std::make_pair(Sel, AtLoc)); |
Fariborz Jahanian | 9a88101 | 2011-07-13 19:05:43 +0000 | [diff] [blame] | 1121 | } |
Fariborz Jahanian | 6e7e8cc | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 1122 | |
Fariborz Jahanian | 02447d8 | 2013-01-22 18:35:43 +0000 | [diff] [blame] | 1123 | // In ARC, forbid the user from using @selector for |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1124 | // retain/release/autorelease/dealloc/retainCount. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1125 | if (getLangOpts().ObjCAutoRefCount) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1126 | switch (Sel.getMethodFamily()) { |
| 1127 | case OMF_retain: |
| 1128 | case OMF_release: |
| 1129 | case OMF_autorelease: |
| 1130 | case OMF_retainCount: |
| 1131 | case OMF_dealloc: |
| 1132 | Diag(AtLoc, diag::err_arc_illegal_selector) << |
| 1133 | Sel << SourceRange(LParenLoc, RParenLoc); |
| 1134 | break; |
| 1135 | |
| 1136 | case OMF_None: |
| 1137 | case OMF_alloc: |
| 1138 | case OMF_copy: |
Nico Weber | 1fb8266 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 1139 | case OMF_finalize: |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1140 | case OMF_init: |
| 1141 | case OMF_mutableCopy: |
| 1142 | case OMF_new: |
| 1143 | case OMF_self: |
Fariborz Jahanian | 78e9deb | 2014-08-22 16:57:26 +0000 | [diff] [blame] | 1144 | case OMF_initialize: |
Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 1145 | case OMF_performSelector: |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1146 | break; |
| 1147 | } |
| 1148 | } |
Chris Lattner | fffd6a7 | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 1149 | QualType Ty = Context.getObjCSelType(); |
Daniel Dunbar | 45858d2 | 2010-02-03 20:11:42 +0000 | [diff] [blame] | 1150 | return new (Context) ObjCSelectorExpr(Ty, Sel, AtLoc, RParenLoc); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1151 | } |
| 1152 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1153 | ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId, |
| 1154 | SourceLocation AtLoc, |
| 1155 | SourceLocation ProtoLoc, |
| 1156 | SourceLocation LParenLoc, |
Argyrios Kyrtzidis | b7e4367 | 2012-05-16 00:50:02 +0000 | [diff] [blame] | 1157 | SourceLocation ProtoIdLoc, |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1158 | SourceLocation RParenLoc) { |
Argyrios Kyrtzidis | b7e4367 | 2012-05-16 00:50:02 +0000 | [diff] [blame] | 1159 | ObjCProtocolDecl* PDecl = LookupProtocol(ProtocolId, ProtoIdLoc); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1160 | if (!PDecl) { |
Chris Lattner | 4bd8dd8 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1161 | Diag(ProtoLoc, diag::err_undeclared_protocol) << ProtocolId; |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1162 | return true; |
| 1163 | } |
Fariborz Jahanian | a57d91c2 | 2014-07-25 19:45:01 +0000 | [diff] [blame] | 1164 | if (PDecl->hasDefinition()) |
| 1165 | PDecl = PDecl->getDefinition(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1166 | |
Chris Lattner | fffd6a7 | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 1167 | QualType Ty = Context.getObjCProtoType(); |
| 1168 | if (Ty.isNull()) |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1169 | return true; |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1170 | Ty = Context.getObjCObjectPointerType(Ty); |
Argyrios Kyrtzidis | b7e4367 | 2012-05-16 00:50:02 +0000 | [diff] [blame] | 1171 | return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, ProtoIdLoc, RParenLoc); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1172 | } |
| 1173 | |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 1174 | /// Try to capture an implicit reference to 'self'. |
Eli Friedman | 24af850 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 1175 | ObjCMethodDecl *Sema::tryCaptureObjCSelf(SourceLocation Loc) { |
| 1176 | DeclContext *DC = getFunctionLevelDeclContext(); |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 1177 | |
| 1178 | // If we're not in an ObjC method, error out. Note that, unlike the |
| 1179 | // C++ case, we don't require an instance method --- class methods |
| 1180 | // still have a 'self', and we really do still need to capture it! |
| 1181 | ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(DC); |
| 1182 | if (!method) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1183 | return nullptr; |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 1184 | |
Douglas Gregor | fdf598e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 1185 | tryCaptureVariable(method->getSelfDecl(), Loc); |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 1186 | |
| 1187 | return method; |
| 1188 | } |
| 1189 | |
Douglas Gregor | 64910ca | 2011-09-09 20:05:21 +0000 | [diff] [blame] | 1190 | static QualType stripObjCInstanceType(ASTContext &Context, QualType T) { |
| 1191 | if (T == Context.getObjCInstanceType()) |
| 1192 | return Context.getObjCIdType(); |
| 1193 | |
| 1194 | return T; |
| 1195 | } |
| 1196 | |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1197 | QualType Sema::getMessageSendResultType(QualType ReceiverType, |
| 1198 | ObjCMethodDecl *Method, |
| 1199 | bool isClassMessage, bool isSuperMessage) { |
| 1200 | assert(Method && "Must have a method"); |
| 1201 | if (!Method->hasRelatedResultType()) |
| 1202 | return Method->getSendResultType(); |
| 1203 | |
| 1204 | // If a method has a related return type: |
| 1205 | // - if the method found is an instance method, but the message send |
| 1206 | // was a class message send, T is the declared return type of the method |
| 1207 | // found |
| 1208 | if (Method->isInstanceMethod() && isClassMessage) |
Douglas Gregor | 64910ca | 2011-09-09 20:05:21 +0000 | [diff] [blame] | 1209 | return stripObjCInstanceType(Context, Method->getSendResultType()); |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1210 | |
| 1211 | // - if the receiver is super, T is a pointer to the class of the |
| 1212 | // enclosing method definition |
| 1213 | if (isSuperMessage) { |
| 1214 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) |
| 1215 | if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface()) |
| 1216 | return Context.getObjCObjectPointerType( |
| 1217 | Context.getObjCInterfaceType(Class)); |
| 1218 | } |
| 1219 | |
| 1220 | // - if the receiver is the name of a class U, T is a pointer to U |
| 1221 | if (ReceiverType->getAs<ObjCInterfaceType>() || |
| 1222 | ReceiverType->isObjCQualifiedInterfaceType()) |
| 1223 | return Context.getObjCObjectPointerType(ReceiverType); |
| 1224 | // - if the receiver is of type Class or qualified Class type, |
| 1225 | // T is the declared return type of the method. |
| 1226 | if (ReceiverType->isObjCClassType() || |
| 1227 | ReceiverType->isObjCQualifiedClassType()) |
Douglas Gregor | 64910ca | 2011-09-09 20:05:21 +0000 | [diff] [blame] | 1228 | return stripObjCInstanceType(Context, Method->getSendResultType()); |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1229 | |
| 1230 | // - if the receiver is id, qualified id, Class, or qualified Class, T |
| 1231 | // is the receiver type, otherwise |
| 1232 | // - T is the type of the receiver expression. |
| 1233 | return ReceiverType; |
| 1234 | } |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 1235 | |
John McCall | 5ec7e7d | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 1236 | /// Look for an ObjC method whose result type exactly matches the given type. |
| 1237 | static const ObjCMethodDecl * |
| 1238 | findExplicitInstancetypeDeclarer(const ObjCMethodDecl *MD, |
| 1239 | QualType instancetype) { |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1240 | if (MD->getReturnType() == instancetype) |
| 1241 | return MD; |
John McCall | 5ec7e7d | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 1242 | |
| 1243 | // For these purposes, a method in an @implementation overrides a |
| 1244 | // declaration in the @interface. |
| 1245 | if (const ObjCImplDecl *impl = |
| 1246 | dyn_cast<ObjCImplDecl>(MD->getDeclContext())) { |
| 1247 | const ObjCContainerDecl *iface; |
| 1248 | if (const ObjCCategoryImplDecl *catImpl = |
| 1249 | dyn_cast<ObjCCategoryImplDecl>(impl)) { |
| 1250 | iface = catImpl->getCategoryDecl(); |
| 1251 | } else { |
| 1252 | iface = impl->getClassInterface(); |
| 1253 | } |
| 1254 | |
| 1255 | const ObjCMethodDecl *ifaceMD = |
| 1256 | iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); |
| 1257 | if (ifaceMD) return findExplicitInstancetypeDeclarer(ifaceMD, instancetype); |
| 1258 | } |
| 1259 | |
| 1260 | SmallVector<const ObjCMethodDecl *, 4> overrides; |
| 1261 | MD->getOverriddenMethods(overrides); |
| 1262 | for (unsigned i = 0, e = overrides.size(); i != e; ++i) { |
| 1263 | if (const ObjCMethodDecl *result = |
| 1264 | findExplicitInstancetypeDeclarer(overrides[i], instancetype)) |
| 1265 | return result; |
| 1266 | } |
| 1267 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1268 | return nullptr; |
John McCall | 5ec7e7d | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 1269 | } |
| 1270 | |
| 1271 | void Sema::EmitRelatedResultTypeNoteForReturn(QualType destType) { |
| 1272 | // Only complain if we're in an ObjC method and the required return |
| 1273 | // type doesn't match the method's declared return type. |
| 1274 | ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurContext); |
| 1275 | if (!MD || !MD->hasRelatedResultType() || |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1276 | Context.hasSameUnqualifiedType(destType, MD->getReturnType())) |
John McCall | 5ec7e7d | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 1277 | return; |
| 1278 | |
| 1279 | // Look for a method overridden by this method which explicitly uses |
| 1280 | // 'instancetype'. |
| 1281 | if (const ObjCMethodDecl *overridden = |
| 1282 | findExplicitInstancetypeDeclarer(MD, Context.getObjCInstanceType())) { |
Aaron Ballman | 41b10ac | 2014-08-01 13:20:09 +0000 | [diff] [blame] | 1283 | SourceRange range = overridden->getReturnTypeSourceRange(); |
| 1284 | SourceLocation loc = range.getBegin(); |
John McCall | 5ec7e7d | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 1285 | if (loc.isInvalid()) |
| 1286 | loc = overridden->getLocation(); |
| 1287 | Diag(loc, diag::note_related_result_type_explicit) |
| 1288 | << /*current method*/ 1 << range; |
| 1289 | return; |
| 1290 | } |
| 1291 | |
| 1292 | // Otherwise, if we have an interesting method family, note that. |
| 1293 | // This should always trigger if the above didn't. |
| 1294 | if (ObjCMethodFamily family = MD->getMethodFamily()) |
| 1295 | Diag(MD->getLocation(), diag::note_related_result_type_family) |
| 1296 | << /*current method*/ 1 |
| 1297 | << family; |
| 1298 | } |
| 1299 | |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1300 | void Sema::EmitRelatedResultTypeNote(const Expr *E) { |
| 1301 | E = E->IgnoreParenImpCasts(); |
| 1302 | const ObjCMessageExpr *MsgSend = dyn_cast<ObjCMessageExpr>(E); |
| 1303 | if (!MsgSend) |
| 1304 | return; |
| 1305 | |
| 1306 | const ObjCMethodDecl *Method = MsgSend->getMethodDecl(); |
| 1307 | if (!Method) |
| 1308 | return; |
| 1309 | |
| 1310 | if (!Method->hasRelatedResultType()) |
| 1311 | return; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1312 | |
| 1313 | if (Context.hasSameUnqualifiedType( |
| 1314 | Method->getReturnType().getNonReferenceType(), MsgSend->getType())) |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1315 | return; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1316 | |
| 1317 | if (!Context.hasSameUnqualifiedType(Method->getReturnType(), |
Douglas Gregor | bab8a96 | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 1318 | Context.getObjCInstanceType())) |
| 1319 | return; |
| 1320 | |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1321 | Diag(Method->getLocation(), diag::note_related_result_type_inferred) |
| 1322 | << Method->isInstanceMethod() << Method->getSelector() |
| 1323 | << MsgSend->getType(); |
| 1324 | } |
| 1325 | |
| 1326 | bool Sema::CheckMessageArgumentTypes(QualType ReceiverType, |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1327 | MultiExprArg Args, |
| 1328 | Selector Sel, |
Fariborz Jahanian | 6ce25c0 | 2012-08-31 17:03:18 +0000 | [diff] [blame] | 1329 | ArrayRef<SourceLocation> SelectorLocs, |
| 1330 | ObjCMethodDecl *Method, |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1331 | bool isClassMessage, bool isSuperMessage, |
Daniel Dunbar | aa9326c | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 1332 | SourceLocation lbrac, SourceLocation rbrac, |
Fariborz Jahanian | 19c2e2f | 2014-08-19 23:39:17 +0000 | [diff] [blame] | 1333 | SourceRange RecRange, |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1334 | QualType &ReturnType, ExprValueKind &VK) { |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 1335 | SourceLocation SelLoc; |
| 1336 | if (!SelectorLocs.empty() && SelectorLocs.front().isValid()) |
| 1337 | SelLoc = SelectorLocs.front(); |
| 1338 | else |
| 1339 | SelLoc = lbrac; |
| 1340 | |
Daniel Dunbar | aa9326c | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 1341 | if (!Method) { |
Daniel Dunbar | 83876b4 | 2008-09-11 00:04:36 +0000 | [diff] [blame] | 1342 | // Apply default argument promotion as for (C99 6.5.2.2p6). |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1343 | for (unsigned i = 0, e = Args.size(); i != e; i++) { |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 1344 | if (Args[i]->isTypeDependent()) |
| 1345 | continue; |
| 1346 | |
John McCall | cc5788c | 2013-03-04 07:34:02 +0000 | [diff] [blame] | 1347 | ExprResult result; |
| 1348 | if (getLangOpts().DebuggerSupport) { |
| 1349 | QualType paramTy; // ignored |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 1350 | result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); |
John McCall | cc5788c | 2013-03-04 07:34:02 +0000 | [diff] [blame] | 1351 | } else { |
| 1352 | result = DefaultArgumentPromotion(Args[i]); |
| 1353 | } |
| 1354 | if (result.isInvalid()) |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1355 | return true; |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1356 | Args[i] = result.get(); |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 1357 | } |
Daniel Dunbar | 83876b4 | 2008-09-11 00:04:36 +0000 | [diff] [blame] | 1358 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1359 | unsigned DiagID; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1360 | if (getLangOpts().ObjCAutoRefCount) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1361 | DiagID = diag::err_arc_method_not_found; |
| 1362 | else |
| 1363 | DiagID = isClassMessage ? diag::warn_class_method_not_found |
| 1364 | : diag::warn_inst_method_not_found; |
Fariborz Jahanian | 773df4a | 2013-05-14 23:24:17 +0000 | [diff] [blame] | 1365 | if (!getLangOpts().DebuggerSupport) { |
Fariborz Jahanian | 4cc5552 | 2013-06-18 15:31:36 +0000 | [diff] [blame] | 1366 | const ObjCMethodDecl *OMD = SelectorsForTypoCorrection(Sel, ReceiverType); |
Fariborz Jahanian | 0649923 | 2013-06-18 17:10:58 +0000 | [diff] [blame] | 1367 | if (OMD && !OMD->isInvalidDecl()) { |
Fariborz Jahanian | 4cc5552 | 2013-06-18 15:31:36 +0000 | [diff] [blame] | 1368 | if (getLangOpts().ObjCAutoRefCount) |
| 1369 | DiagID = diag::error_method_not_found_with_typo; |
| 1370 | else |
| 1371 | DiagID = isClassMessage ? diag::warn_class_method_not_found_with_typo |
| 1372 | : diag::warn_instance_method_not_found_with_typo; |
Fariborz Jahanian | 7548167 | 2013-06-17 17:10:54 +0000 | [diff] [blame] | 1373 | Selector MatchedSel = OMD->getSelector(); |
| 1374 | SourceRange SelectorRange(SelectorLocs.front(), SelectorLocs.back()); |
Fariborz Jahanian | 5ab8750 | 2014-08-12 22:16:41 +0000 | [diff] [blame] | 1375 | if (MatchedSel.isUnarySelector()) |
| 1376 | Diag(SelLoc, DiagID) |
| 1377 | << Sel<< isClassMessage << MatchedSel |
| 1378 | << FixItHint::CreateReplacement(SelectorRange, MatchedSel.getAsString()); |
| 1379 | else |
| 1380 | Diag(SelLoc, DiagID) << Sel<< isClassMessage << MatchedSel; |
Fariborz Jahanian | 7548167 | 2013-06-17 17:10:54 +0000 | [diff] [blame] | 1381 | } |
| 1382 | else |
| 1383 | Diag(SelLoc, DiagID) |
| 1384 | << Sel << isClassMessage << SourceRange(SelectorLocs.front(), |
Fariborz Jahanian | 6ce25c0 | 2012-08-31 17:03:18 +0000 | [diff] [blame] | 1385 | SelectorLocs.back()); |
Fariborz Jahanian | 773df4a | 2013-05-14 23:24:17 +0000 | [diff] [blame] | 1386 | // Find the class to which we are sending this message. |
| 1387 | if (ReceiverType->isObjCObjectPointerType()) { |
Fariborz Jahanian | 19c2e2f | 2014-08-19 23:39:17 +0000 | [diff] [blame] | 1388 | if (ObjCInterfaceDecl *ThisClass = |
| 1389 | ReceiverType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()) { |
| 1390 | Diag(ThisClass->getLocation(), diag::note_receiver_class_declared); |
| 1391 | if (!RecRange.isInvalid()) |
| 1392 | if (ThisClass->lookupClassMethod(Sel)) |
| 1393 | Diag(RecRange.getBegin(),diag::note_receiver_expr_here) |
| 1394 | << FixItHint::CreateReplacement(RecRange, |
| 1395 | ThisClass->getNameAsString()); |
| 1396 | } |
Fariborz Jahanian | 773df4a | 2013-05-14 23:24:17 +0000 | [diff] [blame] | 1397 | } |
| 1398 | } |
John McCall | 3f4138c | 2011-07-13 17:56:40 +0000 | [diff] [blame] | 1399 | |
| 1400 | // In debuggers, we want to use __unknown_anytype for these |
| 1401 | // results so that clients can cast them. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1402 | if (getLangOpts().DebuggerSupport) { |
John McCall | 3f4138c | 2011-07-13 17:56:40 +0000 | [diff] [blame] | 1403 | ReturnType = Context.UnknownAnyTy; |
| 1404 | } else { |
| 1405 | ReturnType = Context.getObjCIdType(); |
| 1406 | } |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1407 | VK = VK_RValue; |
Daniel Dunbar | aa9326c | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 1408 | return false; |
Daniel Dunbar | aa9326c | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 1409 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1410 | |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1411 | ReturnType = getMessageSendResultType(ReceiverType, Method, isClassMessage, |
| 1412 | isSuperMessage); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1413 | VK = Expr::getValueKindForType(Method->getReturnType()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1414 | |
Daniel Dunbar | ce05c8e | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 1415 | unsigned NumNamedArgs = Sel.getNumArgs(); |
Fariborz Jahanian | 6046209 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 1416 | // Method might have more arguments than selector indicates. This is due |
| 1417 | // to addition of c-style arguments in method. |
| 1418 | if (Method->param_size() > Sel.getNumArgs()) |
| 1419 | NumNamedArgs = Method->param_size(); |
| 1420 | // FIXME. This need be cleaned up. |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1421 | if (Args.size() < NumNamedArgs) { |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 1422 | Diag(SelLoc, diag::err_typecheck_call_too_few_args) |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1423 | << 2 << NumNamedArgs << static_cast<unsigned>(Args.size()); |
Fariborz Jahanian | 6046209 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 1424 | return false; |
| 1425 | } |
Daniel Dunbar | ce05c8e | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 1426 | |
Chris Lattner | a8a7d0f | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 1427 | bool IsError = false; |
Daniel Dunbar | ce05c8e | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 1428 | for (unsigned i = 0; i < NumNamedArgs; i++) { |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 1429 | // We can't do any type-checking on a type-dependent argument. |
| 1430 | if (Args[i]->isTypeDependent()) |
| 1431 | continue; |
| 1432 | |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1433 | Expr *argExpr = Args[i]; |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 1434 | |
Alp Toker | 03376dc | 2014-07-07 09:02:20 +0000 | [diff] [blame] | 1435 | ParmVarDecl *param = Method->parameters()[i]; |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1436 | assert(argExpr && "CheckMessageArgumentTypes(): missing expression"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1437 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 1438 | // Strip the unbridged-cast placeholder expression off unless it's |
| 1439 | // a consumed argument. |
| 1440 | if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) && |
| 1441 | !param->hasAttr<CFConsumedAttr>()) |
| 1442 | argExpr = stripARCUnbridgedCast(argExpr); |
| 1443 | |
John McCall | ea0a39e | 2012-11-14 00:49:39 +0000 | [diff] [blame] | 1444 | // If the parameter is __unknown_anytype, infer its type |
| 1445 | // from the argument. |
| 1446 | if (param->getType() == Context.UnknownAnyTy) { |
John McCall | cc5788c | 2013-03-04 07:34:02 +0000 | [diff] [blame] | 1447 | QualType paramType; |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 1448 | ExprResult argE = checkUnknownAnyArg(SelLoc, argExpr, paramType); |
John McCall | cc5788c | 2013-03-04 07:34:02 +0000 | [diff] [blame] | 1449 | if (argE.isInvalid()) { |
John McCall | ea0a39e | 2012-11-14 00:49:39 +0000 | [diff] [blame] | 1450 | IsError = true; |
John McCall | cc5788c | 2013-03-04 07:34:02 +0000 | [diff] [blame] | 1451 | } else { |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1452 | Args[i] = argE.get(); |
John McCall | ea0a39e | 2012-11-14 00:49:39 +0000 | [diff] [blame] | 1453 | |
John McCall | cc5788c | 2013-03-04 07:34:02 +0000 | [diff] [blame] | 1454 | // Update the parameter type in-place. |
| 1455 | param->setType(paramType); |
| 1456 | } |
| 1457 | continue; |
John McCall | ea0a39e | 2012-11-14 00:49:39 +0000 | [diff] [blame] | 1458 | } |
| 1459 | |
Douglas Gregor | 6b7f12c | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 1460 | if (RequireCompleteType(argExpr->getSourceRange().getBegin(), |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 1461 | param->getType(), |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 1462 | diag::err_call_incomplete_argument, argExpr)) |
Douglas Gregor | 6b7f12c | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 1463 | return true; |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1464 | |
Fariborz Jahanian | 8fb87ae | 2010-09-24 17:30:16 +0000 | [diff] [blame] | 1465 | InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 1466 | param); |
Fariborz Jahanian | a1db7df | 2014-07-31 17:39:50 +0000 | [diff] [blame] | 1467 | ExprResult ArgE = PerformCopyInitialization(Entity, SourceLocation(), argExpr); |
Douglas Gregor | 6b7f12c | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 1468 | if (ArgE.isInvalid()) |
| 1469 | IsError = true; |
| 1470 | else |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1471 | Args[i] = ArgE.getAs<Expr>(); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1472 | } |
Daniel Dunbar | ce05c8e | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 1473 | |
| 1474 | // Promote additional arguments to variadic methods. |
| 1475 | if (Method->isVariadic()) { |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1476 | for (unsigned i = NumNamedArgs, e = Args.size(); i < e; ++i) { |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 1477 | if (Args[i]->isTypeDependent()) |
| 1478 | continue; |
| 1479 | |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 1480 | ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], VariadicMethod, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1481 | nullptr); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1482 | IsError |= Arg.isInvalid(); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1483 | Args[i] = Arg.get(); |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 1484 | } |
Daniel Dunbar | ce05c8e | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 1485 | } else { |
| 1486 | // Check for extra arguments to non-variadic methods. |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1487 | if (Args.size() != NumNamedArgs) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1488 | Diag(Args[NumNamedArgs]->getLocStart(), |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1489 | diag::err_typecheck_call_too_many_args) |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1490 | << 2 /*method*/ << NumNamedArgs << static_cast<unsigned>(Args.size()) |
Eric Christopher | 2a5aaff | 2010-04-16 04:56:46 +0000 | [diff] [blame] | 1491 | << Method->getSourceRange() |
Chris Lattner | 3b05413 | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1492 | << SourceRange(Args[NumNamedArgs]->getLocStart(), |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1493 | Args.back()->getLocEnd()); |
Daniel Dunbar | ce05c8e | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 1494 | } |
| 1495 | } |
| 1496 | |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1497 | DiagnoseSentinelCalls(Method, SelLoc, Args); |
Jean-Daniel Dupas | 0ae6e67 | 2012-01-17 20:03:31 +0000 | [diff] [blame] | 1498 | |
| 1499 | // Do additional checkings on method. |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 1500 | IsError |= CheckObjCMethodCall( |
Robert Wilhelm | 88e0249 | 2013-08-19 07:57:02 +0000 | [diff] [blame] | 1501 | Method, SelLoc, makeArrayRef<const Expr *>(Args.data(), Args.size())); |
Jean-Daniel Dupas | 0ae6e67 | 2012-01-17 20:03:31 +0000 | [diff] [blame] | 1502 | |
Chris Lattner | a8a7d0f | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 1503 | return IsError; |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1504 | } |
| 1505 | |
Argyrios Kyrtzidis | 2080d90 | 2014-01-03 18:32:18 +0000 | [diff] [blame] | 1506 | bool Sema::isSelfExpr(Expr *RExpr) { |
Fariborz Jahanian | b3b1e17 | 2011-03-27 19:53:47 +0000 | [diff] [blame] | 1507 | // 'self' is objc 'self' in an objc method only. |
Argyrios Kyrtzidis | 2080d90 | 2014-01-03 18:32:18 +0000 | [diff] [blame] | 1508 | ObjCMethodDecl *Method = |
| 1509 | dyn_cast_or_null<ObjCMethodDecl>(CurContext->getNonClosureAncestor()); |
| 1510 | return isSelfExpr(RExpr, Method); |
| 1511 | } |
| 1512 | |
| 1513 | bool Sema::isSelfExpr(Expr *receiver, const ObjCMethodDecl *method) { |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1514 | if (!method) return false; |
| 1515 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1516 | receiver = receiver->IgnoreParenLValueCasts(); |
| 1517 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(receiver)) |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1518 | if (DRE->getDecl() == method->getSelfDecl()) |
Douglas Gregor | 486b74e | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 1519 | return true; |
| 1520 | return false; |
Steve Naroff | 3f49fee | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 1521 | } |
| 1522 | |
John McCall | 526ab47 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 1523 | /// LookupMethodInType - Look up a method in an ObjCObjectType. |
| 1524 | ObjCMethodDecl *Sema::LookupMethodInObjectType(Selector sel, QualType type, |
| 1525 | bool isInstance) { |
| 1526 | const ObjCObjectType *objType = type->castAs<ObjCObjectType>(); |
| 1527 | if (ObjCInterfaceDecl *iface = objType->getInterface()) { |
| 1528 | // Look it up in the main interface (and categories, etc.) |
| 1529 | if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance)) |
| 1530 | return method; |
| 1531 | |
| 1532 | // Okay, look for "private" methods declared in any |
| 1533 | // @implementations we've seen. |
Anna Zaks | c77a3b1 | 2012-07-27 19:07:44 +0000 | [diff] [blame] | 1534 | if (ObjCMethodDecl *method = iface->lookupPrivateMethod(sel, isInstance)) |
| 1535 | return method; |
John McCall | 526ab47 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | // Check qualifiers. |
Aaron Ballman | 1683f7b | 2014-03-17 15:55:30 +0000 | [diff] [blame] | 1539 | for (const auto *I : objType->quals()) |
| 1540 | if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance)) |
John McCall | 526ab47 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 1541 | return method; |
| 1542 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1543 | return nullptr; |
John McCall | 526ab47 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 1544 | } |
| 1545 | |
Fariborz Jahanian | 3dc11ad | 2011-03-09 20:18:06 +0000 | [diff] [blame] | 1546 | /// LookupMethodInQualifiedType - Lookups up a method in protocol qualifier |
| 1547 | /// list of a qualified objective pointer type. |
| 1548 | ObjCMethodDecl *Sema::LookupMethodInQualifiedType(Selector Sel, |
| 1549 | const ObjCObjectPointerType *OPT, |
| 1550 | bool Instance) |
| 1551 | { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1552 | ObjCMethodDecl *MD = nullptr; |
Aaron Ballman | 8373146 | 2014-03-17 16:14:00 +0000 | [diff] [blame] | 1553 | for (const auto *PROTO : OPT->quals()) { |
Fariborz Jahanian | 3dc11ad | 2011-03-09 20:18:06 +0000 | [diff] [blame] | 1554 | if ((MD = PROTO->lookupMethod(Sel, Instance))) { |
| 1555 | return MD; |
| 1556 | } |
| 1557 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1558 | return nullptr; |
Fariborz Jahanian | 3dc11ad | 2011-03-09 20:18:06 +0000 | [diff] [blame] | 1559 | } |
| 1560 | |
Fariborz Jahanian | d155c78 | 2012-04-19 23:49:39 +0000 | [diff] [blame] | 1561 | static void DiagnoseARCUseOfWeakReceiver(Sema &S, Expr *Receiver) { |
| 1562 | if (!Receiver) |
Fariborz Jahanian | fce89c6 | 2012-04-19 21:44:57 +0000 | [diff] [blame] | 1563 | return; |
| 1564 | |
Fariborz Jahanian | 22535de | 2012-06-04 19:16:34 +0000 | [diff] [blame] | 1565 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Receiver)) |
| 1566 | Receiver = OVE->getSourceExpr(); |
| 1567 | |
Fariborz Jahanian | d155c78 | 2012-04-19 23:49:39 +0000 | [diff] [blame] | 1568 | Expr *RExpr = Receiver->IgnoreParenImpCasts(); |
| 1569 | SourceLocation Loc = RExpr->getLocStart(); |
| 1570 | QualType T = RExpr->getType(); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1571 | const ObjCPropertyDecl *PDecl = nullptr; |
| 1572 | const ObjCMethodDecl *GDecl = nullptr; |
Fariborz Jahanian | d155c78 | 2012-04-19 23:49:39 +0000 | [diff] [blame] | 1573 | if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(RExpr)) { |
| 1574 | RExpr = POE->getSyntacticForm(); |
| 1575 | if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(RExpr)) { |
| 1576 | if (PRE->isImplicitProperty()) { |
| 1577 | GDecl = PRE->getImplicitPropertyGetter(); |
| 1578 | if (GDecl) { |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1579 | T = GDecl->getReturnType(); |
Fariborz Jahanian | d155c78 | 2012-04-19 23:49:39 +0000 | [diff] [blame] | 1580 | } |
| 1581 | } |
| 1582 | else { |
| 1583 | PDecl = PRE->getExplicitProperty(); |
| 1584 | if (PDecl) { |
| 1585 | T = PDecl->getType(); |
| 1586 | } |
| 1587 | } |
Fariborz Jahanian | fce89c6 | 2012-04-19 21:44:57 +0000 | [diff] [blame] | 1588 | } |
Fariborz Jahanian | d155c78 | 2012-04-19 23:49:39 +0000 | [diff] [blame] | 1589 | } |
Fariborz Jahanian | 22535de | 2012-06-04 19:16:34 +0000 | [diff] [blame] | 1590 | else if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(RExpr)) { |
| 1591 | // See if receiver is a method which envokes a synthesized getter |
| 1592 | // backing a 'weak' property. |
| 1593 | ObjCMethodDecl *Method = ME->getMethodDecl(); |
Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1594 | if (Method && Method->getSelector().getNumArgs() == 0) { |
| 1595 | PDecl = Method->findPropertyDecl(); |
Fariborz Jahanian | 22535de | 2012-06-04 19:16:34 +0000 | [diff] [blame] | 1596 | if (PDecl) |
| 1597 | T = PDecl->getType(); |
| 1598 | } |
| 1599 | } |
Fariborz Jahanian | d155c78 | 2012-04-19 23:49:39 +0000 | [diff] [blame] | 1600 | |
Jordan Rose | 13d6b71 | 2012-09-28 22:21:42 +0000 | [diff] [blame] | 1601 | if (T.getObjCLifetime() != Qualifiers::OCL_Weak) { |
| 1602 | if (!PDecl) |
| 1603 | return; |
| 1604 | if (!(PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)) |
| 1605 | return; |
Fariborz Jahanian | fce89c6 | 2012-04-19 21:44:57 +0000 | [diff] [blame] | 1606 | } |
Jordan Rose | 13d6b71 | 2012-09-28 22:21:42 +0000 | [diff] [blame] | 1607 | |
| 1608 | S.Diag(Loc, diag::warn_receiver_is_weak) |
| 1609 | << ((!PDecl && !GDecl) ? 0 : (PDecl ? 1 : 2)); |
| 1610 | |
| 1611 | if (PDecl) |
Fariborz Jahanian | d155c78 | 2012-04-19 23:49:39 +0000 | [diff] [blame] | 1612 | S.Diag(PDecl->getLocation(), diag::note_property_declare); |
Jordan Rose | 13d6b71 | 2012-09-28 22:21:42 +0000 | [diff] [blame] | 1613 | else if (GDecl) |
| 1614 | S.Diag(GDecl->getLocation(), diag::note_method_declared_at) << GDecl; |
| 1615 | |
| 1616 | S.Diag(Loc, diag::note_arc_assign_to_strong); |
Fariborz Jahanian | fce89c6 | 2012-04-19 21:44:57 +0000 | [diff] [blame] | 1617 | } |
| 1618 | |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1619 | /// HandleExprPropertyRefExpr - Handle foo.bar where foo is a pointer to an |
| 1620 | /// objective C interface. This is a property reference expression. |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1621 | ExprResult Sema:: |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1622 | HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, |
Fariborz Jahanian | c297cd8 | 2011-06-28 00:00:52 +0000 | [diff] [blame] | 1623 | Expr *BaseExpr, SourceLocation OpLoc, |
| 1624 | DeclarationName MemberName, |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1625 | SourceLocation MemberLoc, |
| 1626 | SourceLocation SuperLoc, QualType SuperType, |
| 1627 | bool Super) { |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1628 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 1629 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
Benjamin Kramer | 1458c1c | 2012-05-19 16:03:58 +0000 | [diff] [blame] | 1630 | |
Benjamin Kramer | 365082d | 2012-05-19 16:34:46 +0000 | [diff] [blame] | 1631 | if (!MemberName.isIdentifier()) { |
Douglas Gregor | d645931 | 2011-04-20 18:19:55 +0000 | [diff] [blame] | 1632 | Diag(MemberLoc, diag::err_invalid_property_name) |
| 1633 | << MemberName << QualType(OPT, 0); |
| 1634 | return ExprError(); |
| 1635 | } |
Benjamin Kramer | 365082d | 2012-05-19 16:34:46 +0000 | [diff] [blame] | 1636 | |
| 1637 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Douglas Gregor | d645931 | 2011-04-20 18:19:55 +0000 | [diff] [blame] | 1638 | |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 1639 | SourceRange BaseRange = Super? SourceRange(SuperLoc) |
| 1640 | : BaseExpr->getSourceRange(); |
| 1641 | if (RequireCompleteType(MemberLoc, OPT->getPointeeType(), |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 1642 | diag::err_property_not_found_forward_class, |
| 1643 | MemberName, BaseRange)) |
Fariborz Jahanian | 7cabbe0 | 2010-12-16 00:56:28 +0000 | [diff] [blame] | 1644 | return ExprError(); |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 1645 | |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1646 | // Search for a declared property first. |
Fariborz Jahanian | 3f88afa | 2012-05-24 22:48:38 +0000 | [diff] [blame] | 1647 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) { |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1648 | // Check whether we can reference this property. |
| 1649 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 1650 | return ExprError(); |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1651 | if (Super) |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1652 | return new (Context) |
| 1653 | ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, |
| 1654 | OK_ObjCProperty, MemberLoc, SuperLoc, SuperType); |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1655 | else |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1656 | return new (Context) |
| 1657 | ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, |
| 1658 | OK_ObjCProperty, MemberLoc, BaseExpr); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1659 | } |
| 1660 | // Check protocols on qualified interfaces. |
Aaron Ballman | 8373146 | 2014-03-17 16:14:00 +0000 | [diff] [blame] | 1661 | for (const auto *I : OPT->quals()) |
| 1662 | if (ObjCPropertyDecl *PD = I->FindPropertyDeclaration(Member)) { |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1663 | // Check whether we can reference this property. |
| 1664 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 1665 | return ExprError(); |
Fariborz Jahanian | fce89c6 | 2012-04-19 21:44:57 +0000 | [diff] [blame] | 1666 | |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1667 | if (Super) |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1668 | return new (Context) ObjCPropertyRefExpr( |
| 1669 | PD, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty, MemberLoc, |
| 1670 | SuperLoc, SuperType); |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1671 | else |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1672 | return new (Context) |
| 1673 | ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, |
| 1674 | OK_ObjCProperty, MemberLoc, BaseExpr); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1675 | } |
| 1676 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 1677 | // selector is implemented. |
| 1678 | |
| 1679 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 1680 | // shared with the code in ActOnInstanceMessage. |
| 1681 | |
| 1682 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 1683 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | b296e33 | 2011-03-09 22:17:12 +0000 | [diff] [blame] | 1684 | |
| 1685 | // May be founf in property's qualified list. |
| 1686 | if (!Getter) |
| 1687 | Getter = LookupMethodInQualifiedType(Sel, OPT, true); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1688 | |
| 1689 | // If this reference is in an @implementation, check for 'private' methods. |
| 1690 | if (!Getter) |
Fariborz Jahanian | ecbbb6e | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 1691 | Getter = IFace->lookupPrivateMethod(Sel); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1692 | |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1693 | if (Getter) { |
| 1694 | // Check if we can reference this property. |
| 1695 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 1696 | return ExprError(); |
| 1697 | } |
| 1698 | // If we found a getter then this may be a valid dot-reference, we |
| 1699 | // will look for the matching setter, in case it is needed. |
| 1700 | Selector SetterSel = |
Adrian Prantl | a4ce906 | 2013-06-07 22:29:12 +0000 | [diff] [blame] | 1701 | SelectorTable::constructSetterSelector(PP.getIdentifierTable(), |
| 1702 | PP.getSelectorTable(), Member); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1703 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Fariborz Jahanian | 3f88afa | 2012-05-24 22:48:38 +0000 | [diff] [blame] | 1704 | |
Fariborz Jahanian | b296e33 | 2011-03-09 22:17:12 +0000 | [diff] [blame] | 1705 | // May be founf in property's qualified list. |
| 1706 | if (!Setter) |
| 1707 | Setter = LookupMethodInQualifiedType(SetterSel, OPT, true); |
| 1708 | |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1709 | if (!Setter) { |
| 1710 | // If this reference is in an @implementation, also check for 'private' |
| 1711 | // methods. |
Fariborz Jahanian | ecbbb6e | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 1712 | Setter = IFace->lookupPrivateMethod(SetterSel); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1713 | } |
Fariborz Jahanian | b296e33 | 2011-03-09 22:17:12 +0000 | [diff] [blame] | 1714 | |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1715 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 1716 | return ExprError(); |
| 1717 | |
Fariborz Jahanian | 0b1d288 | 2014-08-08 22:33:24 +0000 | [diff] [blame] | 1718 | // Special warning if member name used in a property-dot for a setter accessor |
| 1719 | // does not use a property with same name; e.g. obj.X = ... for a property with |
| 1720 | // name 'x'. |
| 1721 | if (Setter && Setter->isImplicit() && Setter->isPropertyAccessor() |
| 1722 | && !IFace->FindPropertyDeclaration(Member)) { |
Fariborz Jahanian | 4eda2c0 | 2014-08-15 17:39:00 +0000 | [diff] [blame] | 1723 | if (const ObjCPropertyDecl *PDecl = Setter->findPropertyDecl()) { |
| 1724 | // Do not warn if user is using property-dot syntax to make call to |
| 1725 | // user named setter. |
| 1726 | if (!(PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter)) |
Fariborz Jahanian | 0b1d288 | 2014-08-08 22:33:24 +0000 | [diff] [blame] | 1727 | Diag(MemberLoc, |
| 1728 | diag::warn_property_access_suggest) |
| 1729 | << MemberName << QualType(OPT, 0) << PDecl->getName() |
| 1730 | << FixItHint::CreateReplacement(MemberLoc, PDecl->getName()); |
Fariborz Jahanian | 4eda2c0 | 2014-08-15 17:39:00 +0000 | [diff] [blame] | 1731 | } |
Fariborz Jahanian | 0b1d288 | 2014-08-08 22:33:24 +0000 | [diff] [blame] | 1732 | } |
| 1733 | |
Fariborz Jahanian | 0f0b302 | 2010-12-22 19:46:35 +0000 | [diff] [blame] | 1734 | if (Getter || Setter) { |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1735 | if (Super) |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1736 | return new (Context) |
| 1737 | ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, |
| 1738 | OK_ObjCProperty, MemberLoc, SuperLoc, SuperType); |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1739 | else |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1740 | return new (Context) |
| 1741 | ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, |
| 1742 | OK_ObjCProperty, MemberLoc, BaseExpr); |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1743 | |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1744 | } |
| 1745 | |
| 1746 | // Attempt to correct for typos in property names. |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1747 | DeclFilterCCC<ObjCPropertyDecl> Validator; |
| 1748 | if (TypoCorrection Corrected = CorrectTypo( |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1749 | DeclarationNameInfo(MemberName, MemberLoc), LookupOrdinaryName, |
| 1750 | nullptr, nullptr, Validator, CTK_ErrorRecovery, IFace, false, OPT)) { |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 1751 | diagnoseTypo(Corrected, PDiag(diag::err_property_not_found_suggest) |
| 1752 | << MemberName << QualType(OPT, 0)); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1753 | DeclarationName TypoResult = Corrected.getCorrection(); |
Fariborz Jahanian | c297cd8 | 2011-06-28 00:00:52 +0000 | [diff] [blame] | 1754 | return HandleExprPropertyRefExpr(OPT, BaseExpr, OpLoc, |
| 1755 | TypoResult, MemberLoc, |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1756 | SuperLoc, SuperType, Super); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1757 | } |
Fariborz Jahanian | 05d389f | 2011-02-17 01:26:14 +0000 | [diff] [blame] | 1758 | ObjCInterfaceDecl *ClassDeclared; |
| 1759 | if (ObjCIvarDecl *Ivar = |
| 1760 | IFace->lookupInstanceVariable(Member, ClassDeclared)) { |
| 1761 | QualType T = Ivar->getType(); |
| 1762 | if (const ObjCObjectPointerType * OBJPT = |
| 1763 | T->getAsObjCInterfacePointerType()) { |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 1764 | if (RequireCompleteType(MemberLoc, OBJPT->getPointeeType(), |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 1765 | diag::err_property_not_as_forward_class, |
| 1766 | MemberName, BaseExpr)) |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 1767 | return ExprError(); |
Fariborz Jahanian | 05d389f | 2011-02-17 01:26:14 +0000 | [diff] [blame] | 1768 | } |
Fariborz Jahanian | c297cd8 | 2011-06-28 00:00:52 +0000 | [diff] [blame] | 1769 | Diag(MemberLoc, |
| 1770 | diag::err_ivar_access_using_property_syntax_suggest) |
| 1771 | << MemberName << QualType(OPT, 0) << Ivar->getDeclName() |
| 1772 | << FixItHint::CreateReplacement(OpLoc, "->"); |
| 1773 | return ExprError(); |
Fariborz Jahanian | 05d389f | 2011-02-17 01:26:14 +0000 | [diff] [blame] | 1774 | } |
Chris Lattner | 90c58fa | 2010-04-11 07:51:10 +0000 | [diff] [blame] | 1775 | |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1776 | Diag(MemberLoc, diag::err_property_not_found) |
| 1777 | << MemberName << QualType(OPT, 0); |
Fariborz Jahanian | 0f0b302 | 2010-12-22 19:46:35 +0000 | [diff] [blame] | 1778 | if (Setter) |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1779 | Diag(Setter->getLocation(), diag::note_getter_unavailable) |
Fariborz Jahanian | 0f0b302 | 2010-12-22 19:46:35 +0000 | [diff] [blame] | 1780 | << MemberName << BaseExpr->getSourceRange(); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1781 | return ExprError(); |
Chris Lattner | 2b1ca5f | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 1782 | } |
| 1783 | |
| 1784 | |
| 1785 | |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1786 | ExprResult Sema:: |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1787 | ActOnClassPropertyRefExpr(IdentifierInfo &receiverName, |
| 1788 | IdentifierInfo &propertyName, |
| 1789 | SourceLocation receiverNameLoc, |
| 1790 | SourceLocation propertyNameLoc) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1791 | |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 1792 | IdentifierInfo *receiverNamePtr = &receiverName; |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 1793 | ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr, |
| 1794 | receiverNameLoc); |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1795 | |
| 1796 | bool IsSuper = false; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1797 | if (!IFace) { |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1798 | // If the "receiver" is 'super' in a method, handle it as an expression-like |
| 1799 | // property reference. |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 1800 | if (receiverNamePtr->isStr("super")) { |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1801 | IsSuper = true; |
| 1802 | |
Eli Friedman | 24af850 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 1803 | if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) { |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1804 | if (CurMethod->isInstanceMethod()) { |
Fariborz Jahanian | 05e2aaa | 2013-03-11 22:26:33 +0000 | [diff] [blame] | 1805 | ObjCInterfaceDecl *Super = |
| 1806 | CurMethod->getClassInterface()->getSuperClass(); |
| 1807 | if (!Super) { |
| 1808 | // The current class does not have a superclass. |
| 1809 | Diag(receiverNameLoc, diag::error_root_class_cannot_use_super) |
| 1810 | << CurMethod->getClassInterface()->getIdentifier(); |
| 1811 | return ExprError(); |
| 1812 | } |
| 1813 | QualType T = Context.getObjCInterfaceType(Super); |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1814 | T = Context.getObjCObjectPointerType(T); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1815 | |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1816 | return HandleExprPropertyRefExpr(T->getAsObjCInterfacePointerType(), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1817 | /*BaseExpr*/nullptr, |
Fariborz Jahanian | c297cd8 | 2011-06-28 00:00:52 +0000 | [diff] [blame] | 1818 | SourceLocation()/*OpLoc*/, |
| 1819 | &propertyName, |
Fariborz Jahanian | 681c075 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 1820 | propertyNameLoc, |
| 1821 | receiverNameLoc, T, true); |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1822 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1823 | |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1824 | // Otherwise, if this is a class method, try dispatching to our |
| 1825 | // superclass. |
| 1826 | IFace = CurMethod->getClassInterface()->getSuperClass(); |
| 1827 | } |
John McCall | 5f2d556 | 2011-02-03 09:00:02 +0000 | [diff] [blame] | 1828 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1829 | |
| 1830 | if (!IFace) { |
Alp Toker | ec54327 | 2013-12-24 09:48:30 +0000 | [diff] [blame] | 1831 | Diag(receiverNameLoc, diag::err_expected_either) << tok::identifier |
| 1832 | << tok::l_paren; |
Chris Lattner | a36ec42 | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1833 | return ExprError(); |
| 1834 | } |
| 1835 | } |
| 1836 | |
| 1837 | // Search for a declared property first. |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1838 | Selector Sel = PP.getSelectorTable().getNullarySelector(&propertyName); |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1839 | ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel); |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1840 | |
| 1841 | // If this reference is in an @implementation, check for 'private' methods. |
| 1842 | if (!Getter) |
Fariborz Jahanian | 29cdbc6 | 2014-04-21 20:22:17 +0000 | [diff] [blame] | 1843 | Getter = IFace->lookupPrivateClassMethod(Sel); |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1844 | |
| 1845 | if (Getter) { |
| 1846 | // FIXME: refactor/share with ActOnMemberReference(). |
| 1847 | // Check if we can reference this property. |
| 1848 | if (DiagnoseUseOfDecl(Getter, propertyNameLoc)) |
| 1849 | return ExprError(); |
| 1850 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1851 | |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1852 | // Look for the matching setter, in case it is needed. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1853 | Selector SetterSel = |
Adrian Prantl | a4ce906 | 2013-06-07 22:29:12 +0000 | [diff] [blame] | 1854 | SelectorTable::constructSetterSelector(PP.getIdentifierTable(), |
| 1855 | PP.getSelectorTable(), |
| 1856 | &propertyName); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1857 | |
Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1858 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1859 | if (!Setter) { |
| 1860 | // If this reference is in an @implementation, also check for 'private' |
| 1861 | // methods. |
Fariborz Jahanian | 29cdbc6 | 2014-04-21 20:22:17 +0000 | [diff] [blame] | 1862 | Setter = IFace->lookupPrivateClassMethod(SetterSel); |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1863 | } |
| 1864 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 1865 | if (!Setter) |
| 1866 | Setter = IFace->getCategoryClassMethod(SetterSel); |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1867 | |
| 1868 | if (Setter && DiagnoseUseOfDecl(Setter, propertyNameLoc)) |
| 1869 | return ExprError(); |
| 1870 | |
| 1871 | if (Getter || Setter) { |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1872 | if (IsSuper) |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1873 | return new (Context) |
| 1874 | ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, |
| 1875 | OK_ObjCProperty, propertyNameLoc, receiverNameLoc, |
| 1876 | Context.getObjCInterfaceType(IFace)); |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1877 | |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1878 | return new (Context) ObjCPropertyRefExpr( |
| 1879 | Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty, |
| 1880 | propertyNameLoc, receiverNameLoc, IFace); |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 1881 | } |
| 1882 | return ExprError(Diag(propertyNameLoc, diag::err_property_not_found) |
| 1883 | << &propertyName << Context.getObjCInterfaceType(IFace)); |
| 1884 | } |
| 1885 | |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1886 | namespace { |
| 1887 | |
| 1888 | class ObjCInterfaceOrSuperCCC : public CorrectionCandidateCallback { |
| 1889 | public: |
| 1890 | ObjCInterfaceOrSuperCCC(ObjCMethodDecl *Method) { |
| 1891 | // Determine whether "super" is acceptable in the current context. |
| 1892 | if (Method && Method->getClassInterface()) |
| 1893 | WantObjCSuper = Method->getClassInterface()->getSuperClass(); |
| 1894 | } |
| 1895 | |
Craig Topper | e14c0f8 | 2014-03-12 04:55:44 +0000 | [diff] [blame] | 1896 | bool ValidateCandidate(const TypoCorrection &candidate) override { |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1897 | return candidate.getCorrectionDeclAs<ObjCInterfaceDecl>() || |
| 1898 | candidate.isKeyword("super"); |
| 1899 | } |
| 1900 | }; |
| 1901 | |
| 1902 | } |
| 1903 | |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1904 | Sema::ObjCMessageKind Sema::getObjCMessageKind(Scope *S, |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1905 | IdentifierInfo *Name, |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1906 | SourceLocation NameLoc, |
| 1907 | bool IsSuper, |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1908 | bool HasTrailingDot, |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1909 | ParsedType &ReceiverType) { |
| 1910 | ReceiverType = ParsedType(); |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1911 | |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1912 | // If the identifier is "super" and there is no trailing dot, we're |
Douglas Gregor | 57756ea | 2010-10-14 22:11:03 +0000 | [diff] [blame] | 1913 | // messaging super. If the identifier is "super" and there is a |
| 1914 | // trailing dot, it's an instance message. |
| 1915 | if (IsSuper && S->isInObjcMethodScope()) |
| 1916 | return HasTrailingDot? ObjCInstanceMessage : ObjCSuperMessage; |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1917 | |
| 1918 | LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName); |
| 1919 | LookupName(Result, S); |
| 1920 | |
| 1921 | switch (Result.getResultKind()) { |
| 1922 | case LookupResult::NotFound: |
Douglas Gregor | ca7136b | 2010-04-19 20:09:36 +0000 | [diff] [blame] | 1923 | // Normal name lookup didn't find anything. If we're in an |
| 1924 | // Objective-C method, look for ivars. If we find one, we're done! |
Douglas Gregor | 57756ea | 2010-10-14 22:11:03 +0000 | [diff] [blame] | 1925 | // FIXME: This is a hack. Ivar lookup should be part of normal |
| 1926 | // lookup. |
Douglas Gregor | ca7136b | 2010-04-19 20:09:36 +0000 | [diff] [blame] | 1927 | if (ObjCMethodDecl *Method = getCurMethodDecl()) { |
Argyrios Kyrtzidis | 3a8de5b | 2011-11-09 00:22:48 +0000 | [diff] [blame] | 1928 | if (!Method->getClassInterface()) { |
| 1929 | // Fall back: let the parser try to parse it as an instance message. |
| 1930 | return ObjCInstanceMessage; |
| 1931 | } |
| 1932 | |
Douglas Gregor | ca7136b | 2010-04-19 20:09:36 +0000 | [diff] [blame] | 1933 | ObjCInterfaceDecl *ClassDeclared; |
| 1934 | if (Method->getClassInterface()->lookupInstanceVariable(Name, |
| 1935 | ClassDeclared)) |
| 1936 | return ObjCInstanceMessage; |
| 1937 | } |
Douglas Gregor | 57756ea | 2010-10-14 22:11:03 +0000 | [diff] [blame] | 1938 | |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1939 | // Break out; we'll perform typo correction below. |
| 1940 | break; |
| 1941 | |
| 1942 | case LookupResult::NotFoundInCurrentInstantiation: |
| 1943 | case LookupResult::FoundOverloaded: |
| 1944 | case LookupResult::FoundUnresolvedValue: |
| 1945 | case LookupResult::Ambiguous: |
| 1946 | Result.suppressDiagnostics(); |
| 1947 | return ObjCInstanceMessage; |
| 1948 | |
| 1949 | case LookupResult::Found: { |
Fariborz Jahanian | 14889fc | 2011-02-08 00:23:07 +0000 | [diff] [blame] | 1950 | // If the identifier is a class or not, and there is a trailing dot, |
| 1951 | // it's an instance message. |
| 1952 | if (HasTrailingDot) |
| 1953 | return ObjCInstanceMessage; |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1954 | // We found something. If it's a type, then we have a class |
| 1955 | // message. Otherwise, it's an instance message. |
| 1956 | NamedDecl *ND = Result.getFoundDecl(); |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1957 | QualType T; |
| 1958 | if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(ND)) |
| 1959 | T = Context.getObjCInterfaceType(Class); |
Fariborz Jahanian | 83f1be1 | 2013-04-04 18:45:52 +0000 | [diff] [blame] | 1960 | else if (TypeDecl *Type = dyn_cast<TypeDecl>(ND)) { |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1961 | T = Context.getTypeDeclType(Type); |
Fariborz Jahanian | 83f1be1 | 2013-04-04 18:45:52 +0000 | [diff] [blame] | 1962 | DiagnoseUseOfDecl(Type, NameLoc); |
| 1963 | } |
| 1964 | else |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1965 | return ObjCInstanceMessage; |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1966 | |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1967 | // We have a class message, and T is the type we're |
| 1968 | // messaging. Build source-location information for it. |
| 1969 | TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc); |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1970 | ReceiverType = CreateParsedType(T, TSInfo); |
Douglas Gregor | e5798dc | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 1971 | return ObjCClassMessage; |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1972 | } |
| 1973 | } |
| 1974 | |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1975 | ObjCInterfaceOrSuperCCC Validator(getCurMethodDecl()); |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 1976 | if (TypoCorrection Corrected = |
| 1977 | CorrectTypo(Result.getLookupNameInfo(), Result.getLookupKind(), S, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1978 | nullptr, Validator, CTK_ErrorRecovery, nullptr, false, |
| 1979 | nullptr, false)) { |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1980 | if (Corrected.isKeyword()) { |
| 1981 | // If we've found the keyword "super" (the only keyword that would be |
| 1982 | // returned by CorrectTypo), this is a send to super. |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 1983 | diagnoseTypo(Corrected, |
| 1984 | PDiag(diag::err_unknown_receiver_suggest) << Name); |
Douglas Gregor | 280e1ee | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1985 | return ObjCSuperMessage; |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1986 | } else if (ObjCInterfaceDecl *Class = |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 1987 | Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) { |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1988 | // If we found a declaration, correct when it refers to an Objective-C |
| 1989 | // class. |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 1990 | diagnoseTypo(Corrected, |
| 1991 | PDiag(diag::err_unknown_receiver_suggest) << Name); |
Kaelyn Uhrain | e31b888 | 2012-01-13 01:32:50 +0000 | [diff] [blame] | 1992 | QualType T = Context.getObjCInterfaceType(Class); |
| 1993 | TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc); |
| 1994 | ReceiverType = CreateParsedType(T, TSInfo); |
| 1995 | return ObjCClassMessage; |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1996 | } |
| 1997 | } |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 1998 | |
Douglas Gregor | 8aa4ebf | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 1999 | // Fall back: let the parser try to parse it as an instance message. |
| 2000 | return ObjCInstanceMessage; |
| 2001 | } |
Steve Naroff | 9527bbf | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 2002 | |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2003 | ExprResult Sema::ActOnSuperMessage(Scope *S, |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2004 | SourceLocation SuperLoc, |
| 2005 | Selector Sel, |
| 2006 | SourceLocation LBracLoc, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2007 | ArrayRef<SourceLocation> SelectorLocs, |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2008 | SourceLocation RBracLoc, |
| 2009 | MultiExprArg Args) { |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2010 | // Determine whether we are inside a method or not. |
Eli Friedman | 24af850 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 2011 | ObjCMethodDecl *Method = tryCaptureObjCSelf(SuperLoc); |
Douglas Gregor | 4fdba13 | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 2012 | if (!Method) { |
| 2013 | Diag(SuperLoc, diag::err_invalid_receiver_to_message_super); |
| 2014 | return ExprError(); |
| 2015 | } |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 2016 | |
Douglas Gregor | 4fdba13 | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 2017 | ObjCInterfaceDecl *Class = Method->getClassInterface(); |
| 2018 | if (!Class) { |
| 2019 | Diag(SuperLoc, diag::error_no_super_class_message) |
| 2020 | << Method->getDeclName(); |
| 2021 | return ExprError(); |
| 2022 | } |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2023 | |
Douglas Gregor | 4fdba13 | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 2024 | ObjCInterfaceDecl *Super = Class->getSuperClass(); |
| 2025 | if (!Super) { |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2026 | // The current class does not have a superclass. |
Ted Kremenek | 499897b | 2011-01-23 17:21:34 +0000 | [diff] [blame] | 2027 | Diag(SuperLoc, diag::error_root_class_cannot_use_super) |
| 2028 | << Class->getIdentifier(); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2029 | return ExprError(); |
Chris Lattner | c2ebb03 | 2010-04-12 05:38:43 +0000 | [diff] [blame] | 2030 | } |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2031 | |
Douglas Gregor | 4fdba13 | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 2032 | // We are in a method whose class has a superclass, so 'super' |
| 2033 | // is acting as a keyword. |
Jordan Rose | 2afd661 | 2012-10-19 16:05:26 +0000 | [diff] [blame] | 2034 | if (Method->getSelector() == Sel) |
| 2035 | getCurFunction()->ObjCShouldCallSuper = false; |
Nico Weber | 715abaf | 2011-08-22 17:25:57 +0000 | [diff] [blame] | 2036 | |
Jordan Rose | 2afd661 | 2012-10-19 16:05:26 +0000 | [diff] [blame] | 2037 | if (Method->isInstanceMethod()) { |
Douglas Gregor | 4fdba13 | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 2038 | // Since we are in an instance method, this is an instance |
| 2039 | // message to the superclass instance. |
| 2040 | QualType SuperTy = Context.getObjCInterfaceType(Super); |
| 2041 | SuperTy = Context.getObjCObjectPointerType(SuperTy); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2042 | return BuildInstanceMessage(nullptr, SuperTy, SuperLoc, |
| 2043 | Sel, /*Method=*/nullptr, |
Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2044 | LBracLoc, SelectorLocs, RBracLoc, Args); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2045 | } |
Douglas Gregor | 4fdba13 | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 2046 | |
| 2047 | // Since we are in a class method, this is a class message to |
| 2048 | // the superclass. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2049 | return BuildClassMessage(/*ReceiverTypeInfo=*/nullptr, |
Douglas Gregor | 4fdba13 | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 2050 | Context.getObjCInterfaceType(Super), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2051 | SuperLoc, Sel, /*Method=*/nullptr, |
Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2052 | LBracLoc, SelectorLocs, RBracLoc, Args); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2053 | } |
| 2054 | |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2055 | |
| 2056 | ExprResult Sema::BuildClassMessageImplicit(QualType ReceiverType, |
| 2057 | bool isSuperReceiver, |
| 2058 | SourceLocation Loc, |
| 2059 | Selector Sel, |
| 2060 | ObjCMethodDecl *Method, |
| 2061 | MultiExprArg Args) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2062 | TypeSourceInfo *receiverTypeInfo = nullptr; |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2063 | if (!ReceiverType.isNull()) |
| 2064 | receiverTypeInfo = Context.getTrivialTypeSourceInfo(ReceiverType); |
| 2065 | |
| 2066 | return BuildClassMessage(receiverTypeInfo, ReceiverType, |
| 2067 | /*SuperLoc=*/isSuperReceiver ? Loc : SourceLocation(), |
| 2068 | Sel, Method, Loc, Loc, Loc, Args, |
| 2069 | /*isImplicit=*/true); |
| 2070 | |
| 2071 | } |
| 2072 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2073 | static void applyCocoaAPICheck(Sema &S, const ObjCMessageExpr *Msg, |
| 2074 | unsigned DiagID, |
| 2075 | bool (*refactor)(const ObjCMessageExpr *, |
| 2076 | const NSAPI &, edit::Commit &)) { |
| 2077 | SourceLocation MsgLoc = Msg->getExprLoc(); |
Alp Toker | d4a3f0e | 2014-06-15 23:30:39 +0000 | [diff] [blame] | 2078 | if (S.Diags.isIgnored(DiagID, MsgLoc)) |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2079 | return; |
| 2080 | |
| 2081 | SourceManager &SM = S.SourceMgr; |
| 2082 | edit::Commit ECommit(SM, S.LangOpts); |
| 2083 | if (refactor(Msg,*S.NSAPIObj, ECommit)) { |
| 2084 | DiagnosticBuilder Builder = S.Diag(MsgLoc, DiagID) |
| 2085 | << Msg->getSelector() << Msg->getSourceRange(); |
| 2086 | // FIXME: Don't emit diagnostic at all if fixits are non-commitable. |
| 2087 | if (!ECommit.isCommitable()) |
| 2088 | return; |
| 2089 | for (edit::Commit::edit_iterator |
| 2090 | I = ECommit.edit_begin(), E = ECommit.edit_end(); I != E; ++I) { |
| 2091 | const edit::Commit::Edit &Edit = *I; |
| 2092 | switch (Edit.Kind) { |
| 2093 | case edit::Commit::Act_Insert: |
| 2094 | Builder.AddFixItHint(FixItHint::CreateInsertion(Edit.OrigLoc, |
| 2095 | Edit.Text, |
| 2096 | Edit.BeforePrev)); |
| 2097 | break; |
| 2098 | case edit::Commit::Act_InsertFromRange: |
| 2099 | Builder.AddFixItHint( |
| 2100 | FixItHint::CreateInsertionFromRange(Edit.OrigLoc, |
| 2101 | Edit.getInsertFromRange(SM), |
| 2102 | Edit.BeforePrev)); |
| 2103 | break; |
| 2104 | case edit::Commit::Act_Remove: |
| 2105 | Builder.AddFixItHint(FixItHint::CreateRemoval(Edit.getFileRange(SM))); |
| 2106 | break; |
| 2107 | } |
| 2108 | } |
| 2109 | } |
| 2110 | } |
| 2111 | |
| 2112 | static void checkCocoaAPI(Sema &S, const ObjCMessageExpr *Msg) { |
| 2113 | applyCocoaAPICheck(S, Msg, diag::warn_objc_redundant_literal_use, |
| 2114 | edit::rewriteObjCRedundantCallWithLiteral); |
| 2115 | } |
| 2116 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2117 | /// \brief Build an Objective-C class message expression. |
| 2118 | /// |
| 2119 | /// This routine takes care of both normal class messages and |
| 2120 | /// class messages to the superclass. |
| 2121 | /// |
| 2122 | /// \param ReceiverTypeInfo Type source information that describes the |
| 2123 | /// receiver of this message. This may be NULL, in which case we are |
| 2124 | /// sending to the superclass and \p SuperLoc must be a valid source |
| 2125 | /// location. |
| 2126 | |
| 2127 | /// \param ReceiverType The type of the object receiving the |
| 2128 | /// message. When \p ReceiverTypeInfo is non-NULL, this is the same |
| 2129 | /// type as that refers to. For a superclass send, this is the type of |
| 2130 | /// the superclass. |
| 2131 | /// |
| 2132 | /// \param SuperLoc The location of the "super" keyword in a |
| 2133 | /// superclass message. |
| 2134 | /// |
| 2135 | /// \param Sel The selector to which the message is being sent. |
| 2136 | /// |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2137 | /// \param Method The method that this class message is invoking, if |
| 2138 | /// already known. |
| 2139 | /// |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2140 | /// \param LBracLoc The location of the opening square bracket ']'. |
| 2141 | /// |
James Dennett | ffad8b7 | 2012-06-22 08:10:18 +0000 | [diff] [blame] | 2142 | /// \param RBracLoc The location of the closing square bracket ']'. |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2143 | /// |
James Dennett | ffad8b7 | 2012-06-22 08:10:18 +0000 | [diff] [blame] | 2144 | /// \param ArgsIn The message arguments. |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2145 | ExprResult Sema::BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo, |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2146 | QualType ReceiverType, |
| 2147 | SourceLocation SuperLoc, |
| 2148 | Selector Sel, |
| 2149 | ObjCMethodDecl *Method, |
| 2150 | SourceLocation LBracLoc, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2151 | ArrayRef<SourceLocation> SelectorLocs, |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2152 | SourceLocation RBracLoc, |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2153 | MultiExprArg ArgsIn, |
| 2154 | bool isImplicit) { |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2155 | SourceLocation Loc = SuperLoc.isValid()? SuperLoc |
Douglas Gregor | abf4a3e | 2010-09-16 01:51:54 +0000 | [diff] [blame] | 2156 | : ReceiverTypeInfo->getTypeLoc().getSourceRange().getBegin(); |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2157 | if (LBracLoc.isInvalid()) { |
| 2158 | Diag(Loc, diag::err_missing_open_square_message_send) |
| 2159 | << FixItHint::CreateInsertion(Loc, "["); |
| 2160 | LBracLoc = Loc; |
| 2161 | } |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2162 | SourceLocation SelLoc; |
| 2163 | if (!SelectorLocs.empty() && SelectorLocs.front().isValid()) |
| 2164 | SelLoc = SelectorLocs.front(); |
| 2165 | else |
| 2166 | SelLoc = Loc; |
| 2167 | |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 2168 | if (ReceiverType->isDependentType()) { |
| 2169 | // If the receiver type is dependent, we can't type-check anything |
| 2170 | // at this point. Build a dependent expression. |
| 2171 | unsigned NumArgs = ArgsIn.size(); |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 2172 | Expr **Args = ArgsIn.data(); |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 2173 | assert(SuperLoc.isInvalid() && "Message to super with dependent type"); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 2174 | return ObjCMessageExpr::Create( |
| 2175 | Context, ReceiverType, VK_RValue, LBracLoc, ReceiverTypeInfo, Sel, |
| 2176 | SelectorLocs, /*Method=*/nullptr, makeArrayRef(Args, NumArgs), RBracLoc, |
| 2177 | isImplicit); |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 2178 | } |
Chris Lattner | c2ebb03 | 2010-04-12 05:38:43 +0000 | [diff] [blame] | 2179 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2180 | // Find the class to which we are sending this message. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2181 | ObjCInterfaceDecl *Class = nullptr; |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2182 | const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>(); |
| 2183 | if (!ClassType || !(Class = ClassType->getInterface())) { |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2184 | Diag(Loc, diag::err_invalid_receiver_class_message) |
| 2185 | << ReceiverType; |
| 2186 | return ExprError(); |
Steve Naroff | e2177fb | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 2187 | } |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2188 | assert(Class && "We don't know which class we're messaging?"); |
Fariborz Jahanian | c27cd1b | 2011-10-15 19:18:36 +0000 | [diff] [blame] | 2189 | // objc++ diagnoses during typename annotation. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2190 | if (!getLangOpts().CPlusPlus) |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2191 | (void)DiagnoseUseOfDecl(Class, SelLoc); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2192 | // Find the method we are messaging. |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2193 | if (!Method) { |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 2194 | SourceRange TypeRange |
| 2195 | = SuperLoc.isValid()? SourceRange(SuperLoc) |
| 2196 | : ReceiverTypeInfo->getTypeLoc().getSourceRange(); |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 2197 | if (RequireCompleteType(Loc, Context.getObjCInterfaceType(Class), |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2198 | (getLangOpts().ObjCAutoRefCount |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 2199 | ? diag::err_arc_receiver_forward_class |
| 2200 | : diag::warn_receiver_forward_class), |
| 2201 | TypeRange)) { |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2202 | // A forward class used in messaging is treated as a 'Class' |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2203 | Method = LookupFactoryMethodInGlobalPool(Sel, |
| 2204 | SourceRange(LBracLoc, RBracLoc)); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2205 | if (Method && !getLangOpts().ObjCAutoRefCount) |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2206 | Diag(Method->getLocation(), diag::note_method_sent_forward_class) |
| 2207 | << Method->getDeclName(); |
| 2208 | } |
| 2209 | if (!Method) |
| 2210 | Method = Class->lookupClassMethod(Sel); |
| 2211 | |
| 2212 | // If we have an implementation in scope, check "private" methods. |
| 2213 | if (!Method) |
Anna Zaks | c77a3b1 | 2012-07-27 19:07:44 +0000 | [diff] [blame] | 2214 | Method = Class->lookupPrivateClassMethod(Sel); |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2215 | |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2216 | if (Method && DiagnoseUseOfDecl(Method, SelLoc)) |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2217 | return ExprError(); |
Fariborz Jahanian | 1bd844d | 2009-05-08 23:02:36 +0000 | [diff] [blame] | 2218 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2219 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2220 | // Check the argument types and determine the result type. |
| 2221 | QualType ReturnType; |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2222 | ExprValueKind VK = VK_RValue; |
| 2223 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2224 | unsigned NumArgs = ArgsIn.size(); |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 2225 | Expr **Args = ArgsIn.data(); |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 2226 | if (CheckMessageArgumentTypes(ReceiverType, MultiExprArg(Args, NumArgs), |
| 2227 | Sel, SelectorLocs, |
Fariborz Jahanian | 6ce25c0 | 2012-08-31 17:03:18 +0000 | [diff] [blame] | 2228 | Method, true, |
Fariborz Jahanian | 19c2e2f | 2014-08-19 23:39:17 +0000 | [diff] [blame] | 2229 | SuperLoc.isValid(), LBracLoc, RBracLoc, |
| 2230 | SourceRange(), |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2231 | ReturnType, VK)) |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2232 | return ExprError(); |
Ted Kremenek | a3a37ae | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 2233 | |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2234 | if (Method && !Method->getReturnType()->isVoidType() && |
| 2235 | RequireCompleteType(LBracLoc, Method->getReturnType(), |
Douglas Gregor | aec93c6 | 2011-01-11 03:23:19 +0000 | [diff] [blame] | 2236 | diag::err_illegal_message_expr_incomplete_type)) |
| 2237 | return ExprError(); |
Fariborz Jahanian | 78e9deb | 2014-08-22 16:57:26 +0000 | [diff] [blame] | 2238 | |
Fariborz Jahanian | e8b4550 | 2014-08-22 19:52:49 +0000 | [diff] [blame] | 2239 | // Warn about explicit call of +initialize on its own class. But not on 'super'. |
| 2240 | if (Method && Method->getMethodFamily() == OMF_initialize && |
| 2241 | !SuperLoc.isValid()) { |
Fariborz Jahanian | 78e9deb | 2014-08-22 16:57:26 +0000 | [diff] [blame] | 2242 | const ObjCInterfaceDecl *ID = |
| 2243 | dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()); |
| 2244 | if (ID == Class) { |
| 2245 | Diag(Loc, diag::warn_direct_initialize_call); |
| 2246 | Diag(Method->getLocation(), diag::note_method_declared_at) |
| 2247 | << Method->getDeclName(); |
| 2248 | } |
| 2249 | } |
Douglas Gregor | aec93c6 | 2011-01-11 03:23:19 +0000 | [diff] [blame] | 2250 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2251 | // Construct the appropriate ObjCMessageExpr. |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2252 | ObjCMessageExpr *Result; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2253 | if (SuperLoc.isValid()) |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2254 | Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc, |
Douglas Gregor | aae38d6 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 2255 | SuperLoc, /*IsInstanceSuper=*/false, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2256 | ReceiverType, Sel, SelectorLocs, |
Argyrios Kyrtzidis | 59ad1e3 | 2011-10-03 06:36:45 +0000 | [diff] [blame] | 2257 | Method, makeArrayRef(Args, NumArgs), |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2258 | RBracLoc, isImplicit); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2259 | else { |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2260 | Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2261 | ReceiverTypeInfo, Sel, SelectorLocs, |
Argyrios Kyrtzidis | 59ad1e3 | 2011-10-03 06:36:45 +0000 | [diff] [blame] | 2262 | Method, makeArrayRef(Args, NumArgs), |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2263 | RBracLoc, isImplicit); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2264 | if (!isImplicit) |
| 2265 | checkCocoaAPI(*this, Result); |
| 2266 | } |
Douglas Gregor | aae38d6 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 2267 | return MaybeBindToTemporary(Result); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 2268 | } |
| 2269 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2270 | // ActOnClassMessage - used for both unary and keyword messages. |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 2271 | // ArgExprs is optional - if it is present, the number of expressions |
| 2272 | // is obtained from Sel.getNumArgs(). |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2273 | ExprResult Sema::ActOnClassMessage(Scope *S, |
Douglas Gregor | 3e97200 | 2010-09-15 23:19:31 +0000 | [diff] [blame] | 2274 | ParsedType Receiver, |
| 2275 | Selector Sel, |
| 2276 | SourceLocation LBracLoc, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2277 | ArrayRef<SourceLocation> SelectorLocs, |
Douglas Gregor | 3e97200 | 2010-09-15 23:19:31 +0000 | [diff] [blame] | 2278 | SourceLocation RBracLoc, |
| 2279 | MultiExprArg Args) { |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2280 | TypeSourceInfo *ReceiverTypeInfo; |
| 2281 | QualType ReceiverType = GetTypeFromParser(Receiver, &ReceiverTypeInfo); |
| 2282 | if (ReceiverType.isNull()) |
| 2283 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2284 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2285 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2286 | if (!ReceiverTypeInfo) |
| 2287 | ReceiverTypeInfo = Context.getTrivialTypeSourceInfo(ReceiverType, LBracLoc); |
| 2288 | |
| 2289 | return BuildClassMessage(ReceiverTypeInfo, ReceiverType, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2290 | /*SuperLoc=*/SourceLocation(), Sel, |
| 2291 | /*Method=*/nullptr, LBracLoc, SelectorLocs, RBracLoc, |
| 2292 | Args); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2295 | ExprResult Sema::BuildInstanceMessageImplicit(Expr *Receiver, |
| 2296 | QualType ReceiverType, |
| 2297 | SourceLocation Loc, |
| 2298 | Selector Sel, |
| 2299 | ObjCMethodDecl *Method, |
| 2300 | MultiExprArg Args) { |
| 2301 | return BuildInstanceMessage(Receiver, ReceiverType, |
| 2302 | /*SuperLoc=*/!Receiver ? Loc : SourceLocation(), |
| 2303 | Sel, Method, Loc, Loc, Loc, Args, |
| 2304 | /*isImplicit=*/true); |
| 2305 | } |
| 2306 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2307 | /// \brief Build an Objective-C instance message expression. |
| 2308 | /// |
| 2309 | /// This routine takes care of both normal instance messages and |
| 2310 | /// instance messages to the superclass instance. |
| 2311 | /// |
| 2312 | /// \param Receiver The expression that computes the object that will |
| 2313 | /// receive this message. This may be empty, in which case we are |
| 2314 | /// sending to the superclass instance and \p SuperLoc must be a valid |
| 2315 | /// source location. |
| 2316 | /// |
| 2317 | /// \param ReceiverType The (static) type of the object receiving the |
| 2318 | /// message. When a \p Receiver expression is provided, this is the |
| 2319 | /// same type as that expression. For a superclass instance send, this |
| 2320 | /// is a pointer to the type of the superclass. |
| 2321 | /// |
| 2322 | /// \param SuperLoc The location of the "super" keyword in a |
| 2323 | /// superclass instance message. |
| 2324 | /// |
| 2325 | /// \param Sel The selector to which the message is being sent. |
| 2326 | /// |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2327 | /// \param Method The method that this instance message is invoking, if |
| 2328 | /// already known. |
| 2329 | /// |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2330 | /// \param LBracLoc The location of the opening square bracket ']'. |
| 2331 | /// |
James Dennett | ffad8b7 | 2012-06-22 08:10:18 +0000 | [diff] [blame] | 2332 | /// \param RBracLoc The location of the closing square bracket ']'. |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2333 | /// |
James Dennett | ffad8b7 | 2012-06-22 08:10:18 +0000 | [diff] [blame] | 2334 | /// \param ArgsIn The message arguments. |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2335 | ExprResult Sema::BuildInstanceMessage(Expr *Receiver, |
Argyrios Kyrtzidis | d0039e5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2336 | QualType ReceiverType, |
| 2337 | SourceLocation SuperLoc, |
| 2338 | Selector Sel, |
| 2339 | ObjCMethodDecl *Method, |
| 2340 | SourceLocation LBracLoc, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2341 | ArrayRef<SourceLocation> SelectorLocs, |
Argyrios Kyrtzidis | d0039e5 | 2010-12-10 20:08:27 +0000 | [diff] [blame] | 2342 | SourceLocation RBracLoc, |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2343 | MultiExprArg ArgsIn, |
| 2344 | bool isImplicit) { |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2345 | // The location of the receiver. |
| 2346 | SourceLocation Loc = SuperLoc.isValid()? SuperLoc : Receiver->getLocStart(); |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2347 | SourceRange RecRange = |
| 2348 | SuperLoc.isValid()? SuperLoc : Receiver->getSourceRange(); |
| 2349 | SourceLocation SelLoc; |
| 2350 | if (!SelectorLocs.empty() && SelectorLocs.front().isValid()) |
| 2351 | SelLoc = SelectorLocs.front(); |
| 2352 | else |
| 2353 | SelLoc = Loc; |
| 2354 | |
Douglas Gregor | e9bba4f | 2010-09-15 14:51:05 +0000 | [diff] [blame] | 2355 | if (LBracLoc.isInvalid()) { |
| 2356 | Diag(Loc, diag::err_missing_open_square_message_send) |
| 2357 | << FixItHint::CreateInsertion(Loc, "["); |
| 2358 | LBracLoc = Loc; |
| 2359 | } |
| 2360 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2361 | // If we have a receiver expression, perform appropriate promotions |
| 2362 | // and determine receiver type. |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2363 | if (Receiver) { |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 2364 | if (Receiver->hasPlaceholderType()) { |
Douglas Gregor | d8fb1e3 | 2011-12-01 01:37:36 +0000 | [diff] [blame] | 2365 | ExprResult Result; |
| 2366 | if (Receiver->getType() == Context.UnknownAnyTy) |
| 2367 | Result = forceUnknownAnyToType(Receiver, Context.getObjCIdType()); |
| 2368 | else |
| 2369 | Result = CheckPlaceholderExpr(Receiver); |
| 2370 | if (Result.isInvalid()) return ExprError(); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2371 | Receiver = Result.get(); |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 2372 | } |
| 2373 | |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 2374 | if (Receiver->isTypeDependent()) { |
| 2375 | // If the receiver is type-dependent, we can't type-check anything |
| 2376 | // at this point. Build a dependent expression. |
| 2377 | unsigned NumArgs = ArgsIn.size(); |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 2378 | Expr **Args = ArgsIn.data(); |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 2379 | assert(SuperLoc.isInvalid() && "Message to super with dependent type"); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 2380 | return ObjCMessageExpr::Create( |
| 2381 | Context, Context.DependentTy, VK_RValue, LBracLoc, Receiver, Sel, |
| 2382 | SelectorLocs, /*Method=*/nullptr, makeArrayRef(Args, NumArgs), |
| 2383 | RBracLoc, isImplicit); |
Douglas Gregor | c298ffc | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 2384 | } |
| 2385 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2386 | // If necessary, apply function/array conversion to the receiver. |
| 2387 | // C99 6.7.5.3p[7,8]. |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2388 | ExprResult Result = DefaultFunctionArrayLvalueConversion(Receiver); |
| 2389 | if (Result.isInvalid()) |
| 2390 | return ExprError(); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2391 | Receiver = Result.get(); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2392 | ReceiverType = Receiver->getType(); |
John McCall | 80c93a0 | 2013-03-01 09:20:14 +0000 | [diff] [blame] | 2393 | |
| 2394 | // If the receiver is an ObjC pointer, a block pointer, or an |
| 2395 | // __attribute__((NSObject)) pointer, we don't need to do any |
| 2396 | // special conversion in order to look up a receiver. |
| 2397 | if (ReceiverType->isObjCRetainableType()) { |
| 2398 | // do nothing |
| 2399 | } else if (!getLangOpts().ObjCAutoRefCount && |
| 2400 | !Context.getObjCIdType().isNull() && |
| 2401 | (ReceiverType->isPointerType() || |
| 2402 | ReceiverType->isIntegerType())) { |
| 2403 | // Implicitly convert integers and pointers to 'id' but emit a warning. |
| 2404 | // But not in ARC. |
| 2405 | Diag(Loc, diag::warn_bad_receiver_type) |
| 2406 | << ReceiverType |
| 2407 | << Receiver->getSourceRange(); |
| 2408 | if (ReceiverType->isPointerType()) { |
| 2409 | Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(), |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2410 | CK_CPointerToObjCPointerCast).get(); |
John McCall | 80c93a0 | 2013-03-01 09:20:14 +0000 | [diff] [blame] | 2411 | } else { |
| 2412 | // TODO: specialized warning on null receivers? |
| 2413 | bool IsNull = Receiver->isNullPointerConstant(Context, |
| 2414 | Expr::NPC_ValueDependentIsNull); |
| 2415 | CastKind Kind = IsNull ? CK_NullToPointer : CK_IntegralToPointer; |
| 2416 | Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(), |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2417 | Kind).get(); |
John McCall | 80c93a0 | 2013-03-01 09:20:14 +0000 | [diff] [blame] | 2418 | } |
| 2419 | ReceiverType = Receiver->getType(); |
| 2420 | } else if (getLangOpts().CPlusPlus) { |
Douglas Gregor | 4b60a15 | 2013-11-07 22:34:54 +0000 | [diff] [blame] | 2421 | // The receiver must be a complete type. |
| 2422 | if (RequireCompleteType(Loc, Receiver->getType(), |
| 2423 | diag::err_incomplete_receiver_type)) |
| 2424 | return ExprError(); |
| 2425 | |
John McCall | 80c93a0 | 2013-03-01 09:20:14 +0000 | [diff] [blame] | 2426 | ExprResult result = PerformContextuallyConvertToObjCPointer(Receiver); |
| 2427 | if (result.isUsable()) { |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2428 | Receiver = result.get(); |
John McCall | 80c93a0 | 2013-03-01 09:20:14 +0000 | [diff] [blame] | 2429 | ReceiverType = Receiver->getType(); |
| 2430 | } |
| 2431 | } |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2432 | } |
| 2433 | |
John McCall | 80c93a0 | 2013-03-01 09:20:14 +0000 | [diff] [blame] | 2434 | // There's a somewhat weird interaction here where we assume that we |
| 2435 | // won't actually have a method unless we also don't need to do some |
| 2436 | // of the more detailed type-checking on the receiver. |
| 2437 | |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2438 | if (!Method) { |
| 2439 | // Handle messages to id. |
Fariborz Jahanian | 32e59ba | 2010-08-10 18:10:50 +0000 | [diff] [blame] | 2440 | bool receiverIsId = ReceiverType->isObjCIdType(); |
Fariborz Jahanian | 3337b2e | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 2441 | if (receiverIsId || ReceiverType->isBlockPointerType() || |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2442 | (Receiver && Context.isObjCNSObjectType(Receiver->getType()))) { |
| 2443 | Method = LookupInstanceMethodInGlobalPool(Sel, |
Fariborz Jahanian | 3337b2e | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 2444 | SourceRange(LBracLoc, RBracLoc), |
| 2445 | receiverIsId); |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2446 | if (!Method) |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2447 | Method = LookupFactoryMethodInGlobalPool(Sel, |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 2448 | SourceRange(LBracLoc,RBracLoc), |
Fariborz Jahanian | 3337b2e | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 2449 | receiverIsId); |
Fariborz Jahanian | 0ded424 | 2014-08-13 21:24:14 +0000 | [diff] [blame] | 2450 | if (Method) |
| 2451 | if (ObjCMethodDecl *BestMethod = |
Fariborz Jahanian | d288fad | 2014-08-13 23:38:04 +0000 | [diff] [blame] | 2452 | SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod())) |
Fariborz Jahanian | 0ded424 | 2014-08-13 21:24:14 +0000 | [diff] [blame] | 2453 | Method = BestMethod; |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2454 | } else if (ReceiverType->isObjCClassType() || |
| 2455 | ReceiverType->isObjCQualifiedClassType()) { |
| 2456 | // Handle messages to Class. |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2457 | // We allow sending a message to a qualified Class ("Class<foo>"), which |
| 2458 | // is ok as long as one of the protocols implements the selector (if not, warn). |
| 2459 | if (const ObjCObjectPointerType *QClassTy |
| 2460 | = ReceiverType->getAsObjCQualifiedClassType()) { |
| 2461 | // Search protocols for class methods. |
| 2462 | Method = LookupMethodInQualifiedType(Sel, QClassTy, false); |
| 2463 | if (!Method) { |
| 2464 | Method = LookupMethodInQualifiedType(Sel, QClassTy, true); |
| 2465 | // warn if instance method found for a Class message. |
| 2466 | if (Method) { |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2467 | Diag(SelLoc, diag::warn_instance_method_on_class_found) |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2468 | << Method->getSelector() << Sel; |
Ted Kremenek | 59b10db | 2012-02-27 22:55:11 +0000 | [diff] [blame] | 2469 | Diag(Method->getLocation(), diag::note_method_declared_at) |
| 2470 | << Method->getDeclName(); |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2471 | } |
Steve Naroff | 3f49fee | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 2472 | } |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2473 | } else { |
| 2474 | if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) { |
| 2475 | if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) { |
| 2476 | // First check the public methods in the class interface. |
| 2477 | Method = ClassDecl->lookupClassMethod(Sel); |
| 2478 | |
| 2479 | if (!Method) |
Anna Zaks | c77a3b1 | 2012-07-27 19:07:44 +0000 | [diff] [blame] | 2480 | Method = ClassDecl->lookupPrivateClassMethod(Sel); |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2481 | } |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2482 | if (Method && DiagnoseUseOfDecl(Method, SelLoc)) |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2483 | return ExprError(); |
| 2484 | } |
| 2485 | if (!Method) { |
| 2486 | // If not messaging 'self', look for any factory method named 'Sel'. |
Douglas Gregor | 486b74e | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 2487 | if (!Receiver || !isSelfExpr(Receiver)) { |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2488 | Method = LookupFactoryMethodInGlobalPool(Sel, |
| 2489 | SourceRange(LBracLoc, RBracLoc), |
| 2490 | true); |
| 2491 | if (!Method) { |
| 2492 | // If no class (factory) method was found, check if an _instance_ |
| 2493 | // method of the same name exists in the root class only. |
| 2494 | Method = LookupInstanceMethodInGlobalPool(Sel, |
Fariborz Jahanian | 3337b2e | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 2495 | SourceRange(LBracLoc, RBracLoc), |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2496 | true); |
| 2497 | if (Method) |
| 2498 | if (const ObjCInterfaceDecl *ID = |
| 2499 | dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext())) { |
| 2500 | if (ID->getSuperClass()) |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2501 | Diag(SelLoc, diag::warn_root_inst_method_not_found) |
Fariborz Jahanian | 3b9819b | 2011-04-06 18:40:08 +0000 | [diff] [blame] | 2502 | << Sel << SourceRange(LBracLoc, RBracLoc); |
| 2503 | } |
| 2504 | } |
Fariborz Jahanian | d288fad | 2014-08-13 23:38:04 +0000 | [diff] [blame] | 2505 | if (Method) |
| 2506 | if (ObjCMethodDecl *BestMethod = |
| 2507 | SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod())) |
| 2508 | Method = BestMethod; |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2509 | } |
| 2510 | } |
| 2511 | } |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2512 | } else { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2513 | ObjCInterfaceDecl *ClassDecl = nullptr; |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2514 | |
| 2515 | // We allow sending a message to a qualified ID ("id<foo>"), which is ok as |
| 2516 | // long as one of the protocols implements the selector (if not, warn). |
Fariborz Jahanian | a245f19 | 2012-06-23 18:39:57 +0000 | [diff] [blame] | 2517 | // And as long as message is not deprecated/unavailable (warn if it is). |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2518 | if (const ObjCObjectPointerType *QIdTy |
| 2519 | = ReceiverType->getAsObjCQualifiedIdType()) { |
| 2520 | // Search protocols for instance methods. |
Fariborz Jahanian | b296e33 | 2011-03-09 22:17:12 +0000 | [diff] [blame] | 2521 | Method = LookupMethodInQualifiedType(Sel, QIdTy, true); |
| 2522 | if (!Method) |
| 2523 | Method = LookupMethodInQualifiedType(Sel, QIdTy, false); |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2524 | if (Method && DiagnoseUseOfDecl(Method, SelLoc)) |
Fariborz Jahanian | a245f19 | 2012-06-23 18:39:57 +0000 | [diff] [blame] | 2525 | return ExprError(); |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2526 | } else if (const ObjCObjectPointerType *OCIType |
| 2527 | = ReceiverType->getAsObjCInterfacePointerType()) { |
| 2528 | // We allow sending a message to a pointer to an interface (an object). |
| 2529 | ClassDecl = OCIType->getInterfaceDecl(); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2530 | |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 2531 | // Try to complete the type. Under ARC, this is a hard error from which |
| 2532 | // we don't try to recover. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2533 | const ObjCInterfaceDecl *forwardClass = nullptr; |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 2534 | if (RequireCompleteType(Loc, OCIType->getPointeeType(), |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2535 | getLangOpts().ObjCAutoRefCount |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 2536 | ? diag::err_arc_receiver_forward_instance |
| 2537 | : diag::warn_receiver_forward_instance, |
| 2538 | Receiver? Receiver->getSourceRange() |
| 2539 | : SourceRange(SuperLoc))) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2540 | if (getLangOpts().ObjCAutoRefCount) |
Douglas Gregor | 4123a86 | 2011-11-14 22:10:01 +0000 | [diff] [blame] | 2541 | return ExprError(); |
| 2542 | |
| 2543 | forwardClass = OCIType->getInterfaceDecl(); |
Fariborz Jahanian | c934de6 | 2012-02-03 01:02:44 +0000 | [diff] [blame] | 2544 | Diag(Receiver ? Receiver->getLocStart() |
| 2545 | : SuperLoc, diag::note_receiver_is_id); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2546 | Method = nullptr; |
Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 2547 | } else { |
| 2548 | Method = ClassDecl->lookupInstanceMethod(Sel); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2549 | } |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2550 | |
Fariborz Jahanian | b296e33 | 2011-03-09 22:17:12 +0000 | [diff] [blame] | 2551 | if (!Method) |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2552 | // Search protocol qualifiers. |
Fariborz Jahanian | b296e33 | 2011-03-09 22:17:12 +0000 | [diff] [blame] | 2553 | Method = LookupMethodInQualifiedType(Sel, OCIType, true); |
| 2554 | |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2555 | if (!Method) { |
| 2556 | // If we have implementations in scope, check "private" methods. |
Anna Zaks | c77a3b1 | 2012-07-27 19:07:44 +0000 | [diff] [blame] | 2557 | Method = ClassDecl->lookupPrivateMethod(Sel); |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2558 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2559 | if (!Method && getLangOpts().ObjCAutoRefCount) { |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2560 | Diag(SelLoc, diag::err_arc_may_not_respond) |
| 2561 | << OCIType->getPointeeType() << Sel << RecRange |
Fariborz Jahanian | 32c1350 | 2012-11-28 01:27:44 +0000 | [diff] [blame] | 2562 | << SourceRange(SelectorLocs.front(), SelectorLocs.back()); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2563 | return ExprError(); |
| 2564 | } |
| 2565 | |
Douglas Gregor | 486b74e | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 2566 | if (!Method && (!Receiver || !isSelfExpr(Receiver))) { |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2567 | // If we still haven't found a method, look in the global pool. This |
| 2568 | // behavior isn't very desirable, however we need it for GCC |
| 2569 | // compatibility. FIXME: should we deviate?? |
| 2570 | if (OCIType->qual_empty()) { |
| 2571 | Method = LookupInstanceMethodInGlobalPool(Sel, |
Jordy Rose | aca01f9 | 2012-05-12 17:32:52 +0000 | [diff] [blame] | 2572 | SourceRange(LBracLoc, RBracLoc)); |
Fariborz Jahanian | 7d6e11a | 2010-12-21 00:44:01 +0000 | [diff] [blame] | 2573 | if (Method && !forwardClass) |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2574 | Diag(SelLoc, diag::warn_maynot_respond) |
| 2575 | << OCIType->getInterfaceDecl()->getIdentifier() |
| 2576 | << Sel << RecRange; |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2577 | } |
| 2578 | } |
| 2579 | } |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2580 | if (Method && DiagnoseUseOfDecl(Method, SelLoc, forwardClass)) |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2581 | return ExprError(); |
John McCall | fec112d | 2011-09-09 06:11:02 +0000 | [diff] [blame] | 2582 | } else { |
John McCall | 80c93a0 | 2013-03-01 09:20:14 +0000 | [diff] [blame] | 2583 | // Reject other random receiver types (e.g. structs). |
| 2584 | Diag(Loc, diag::err_bad_receiver_type) |
| 2585 | << ReceiverType << Receiver->getSourceRange(); |
| 2586 | return ExprError(); |
Douglas Gregor | b5186b1 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 2587 | } |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2588 | } |
Chris Lattner | 6b946cc | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 2589 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2590 | |
Fariborz Jahanian | ba419ce | 2014-03-17 21:41:40 +0000 | [diff] [blame] | 2591 | FunctionScopeInfo *DIFunctionScopeInfo = |
| 2592 | (Method && Method->getMethodFamily() == OMF_init) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2593 | ? getEnclosingFunction() : nullptr; |
| 2594 | |
Fariborz Jahanian | ba419ce | 2014-03-17 21:41:40 +0000 | [diff] [blame] | 2595 | if (DIFunctionScopeInfo && |
| 2596 | DIFunctionScopeInfo->ObjCIsDesignatedInit && |
Argyrios Kyrtzidis | fcded9b | 2013-12-03 21:11:43 +0000 | [diff] [blame] | 2597 | (SuperLoc.isValid() || isSelfExpr(Receiver))) { |
| 2598 | bool isDesignatedInitChain = false; |
| 2599 | if (SuperLoc.isValid()) { |
| 2600 | if (const ObjCObjectPointerType * |
| 2601 | OCIType = ReceiverType->getAsObjCInterfacePointerType()) { |
| 2602 | if (const ObjCInterfaceDecl *ID = OCIType->getInterfaceDecl()) { |
Argyrios Kyrtzidis | d664a34 | 2013-12-13 03:48:17 +0000 | [diff] [blame] | 2603 | // Either we know this is a designated initializer or we |
| 2604 | // conservatively assume it because we don't know for sure. |
| 2605 | if (!ID->declaresOrInheritsDesignatedInitializers() || |
| 2606 | ID->isDesignatedInitializer(Sel)) { |
Argyrios Kyrtzidis | fcded9b | 2013-12-03 21:11:43 +0000 | [diff] [blame] | 2607 | isDesignatedInitChain = true; |
Fariborz Jahanian | ba419ce | 2014-03-17 21:41:40 +0000 | [diff] [blame] | 2608 | DIFunctionScopeInfo->ObjCWarnForNoDesignatedInitChain = false; |
Argyrios Kyrtzidis | fcded9b | 2013-12-03 21:11:43 +0000 | [diff] [blame] | 2609 | } |
| 2610 | } |
Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 2611 | } |
| 2612 | } |
Argyrios Kyrtzidis | fcded9b | 2013-12-03 21:11:43 +0000 | [diff] [blame] | 2613 | if (!isDesignatedInitChain) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2614 | const ObjCMethodDecl *InitMethod = nullptr; |
Argyrios Kyrtzidis | fcded9b | 2013-12-03 21:11:43 +0000 | [diff] [blame] | 2615 | bool isDesignated = |
| 2616 | getCurMethodDecl()->isDesignatedInitializerForTheInterface(&InitMethod); |
| 2617 | assert(isDesignated && InitMethod); |
| 2618 | (void)isDesignated; |
| 2619 | Diag(SelLoc, SuperLoc.isValid() ? |
| 2620 | diag::warn_objc_designated_init_non_designated_init_call : |
| 2621 | diag::warn_objc_designated_init_non_super_designated_init_call); |
| 2622 | Diag(InitMethod->getLocation(), |
| 2623 | diag::note_objc_designated_init_marked_here); |
| 2624 | } |
Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 2625 | } |
| 2626 | |
Fariborz Jahanian | ba419ce | 2014-03-17 21:41:40 +0000 | [diff] [blame] | 2627 | if (DIFunctionScopeInfo && |
| 2628 | DIFunctionScopeInfo->ObjCIsSecondaryInit && |
Argyrios Kyrtzidis | b66d3cf | 2013-12-03 21:11:49 +0000 | [diff] [blame] | 2629 | (SuperLoc.isValid() || isSelfExpr(Receiver))) { |
| 2630 | if (SuperLoc.isValid()) { |
| 2631 | Diag(SelLoc, diag::warn_objc_secondary_init_super_init_call); |
| 2632 | } else { |
Fariborz Jahanian | ba419ce | 2014-03-17 21:41:40 +0000 | [diff] [blame] | 2633 | DIFunctionScopeInfo->ObjCWarnForNoInitDelegation = false; |
Argyrios Kyrtzidis | b66d3cf | 2013-12-03 21:11:49 +0000 | [diff] [blame] | 2634 | } |
| 2635 | } |
| 2636 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2637 | // Check the message arguments. |
| 2638 | unsigned NumArgs = ArgsIn.size(); |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 2639 | Expr **Args = ArgsIn.data(); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2640 | QualType ReturnType; |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2641 | ExprValueKind VK = VK_RValue; |
Fariborz Jahanian | 6850091 | 2010-12-01 01:07:24 +0000 | [diff] [blame] | 2642 | bool ClassMessage = (ReceiverType->isObjCClassType() || |
| 2643 | ReceiverType->isObjCQualifiedClassType()); |
Dmitri Gribenko | 2a40f08 | 2013-05-10 00:27:15 +0000 | [diff] [blame] | 2644 | if (CheckMessageArgumentTypes(ReceiverType, MultiExprArg(Args, NumArgs), |
| 2645 | Sel, SelectorLocs, Method, |
Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2646 | ClassMessage, SuperLoc.isValid(), |
Fariborz Jahanian | 19c2e2f | 2014-08-19 23:39:17 +0000 | [diff] [blame] | 2647 | LBracLoc, RBracLoc, RecRange, ReturnType, VK)) |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2648 | return ExprError(); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2649 | |
| 2650 | if (Method && !Method->getReturnType()->isVoidType() && |
| 2651 | RequireCompleteType(LBracLoc, Method->getReturnType(), |
Douglas Gregor | aec93c6 | 2011-01-11 03:23:19 +0000 | [diff] [blame] | 2652 | diag::err_illegal_message_expr_incomplete_type)) |
| 2653 | return ExprError(); |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2654 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2655 | // In ARC, forbid the user from sending messages to |
| 2656 | // retain/release/autorelease/dealloc/retainCount explicitly. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2657 | if (getLangOpts().ObjCAutoRefCount) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2658 | ObjCMethodFamily family = |
| 2659 | (Method ? Method->getMethodFamily() : Sel.getMethodFamily()); |
| 2660 | switch (family) { |
| 2661 | case OMF_init: |
| 2662 | if (Method) |
| 2663 | checkInitMethod(Method, ReceiverType); |
| 2664 | |
| 2665 | case OMF_None: |
| 2666 | case OMF_alloc: |
| 2667 | case OMF_copy: |
Nico Weber | 1fb8266 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 2668 | case OMF_finalize: |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2669 | case OMF_mutableCopy: |
| 2670 | case OMF_new: |
| 2671 | case OMF_self: |
Fariborz Jahanian | 78e9deb | 2014-08-22 16:57:26 +0000 | [diff] [blame] | 2672 | case OMF_initialize: |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2673 | break; |
| 2674 | |
| 2675 | case OMF_dealloc: |
| 2676 | case OMF_retain: |
| 2677 | case OMF_release: |
| 2678 | case OMF_autorelease: |
| 2679 | case OMF_retainCount: |
Argyrios Kyrtzidis | bcf2bdc | 2013-05-01 00:24:09 +0000 | [diff] [blame] | 2680 | Diag(SelLoc, diag::err_arc_illegal_explicit_message) |
| 2681 | << Sel << RecRange; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2682 | break; |
Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 2683 | |
| 2684 | case OMF_performSelector: |
| 2685 | if (Method && NumArgs >= 1) { |
| 2686 | if (ObjCSelectorExpr *SelExp = dyn_cast<ObjCSelectorExpr>(Args[0])) { |
| 2687 | Selector ArgSel = SelExp->getSelector(); |
| 2688 | ObjCMethodDecl *SelMethod = |
| 2689 | LookupInstanceMethodInGlobalPool(ArgSel, |
| 2690 | SelExp->getSourceRange()); |
| 2691 | if (!SelMethod) |
| 2692 | SelMethod = |
| 2693 | LookupFactoryMethodInGlobalPool(ArgSel, |
| 2694 | SelExp->getSourceRange()); |
| 2695 | if (SelMethod) { |
| 2696 | ObjCMethodFamily SelFamily = SelMethod->getMethodFamily(); |
| 2697 | switch (SelFamily) { |
| 2698 | case OMF_alloc: |
| 2699 | case OMF_copy: |
| 2700 | case OMF_mutableCopy: |
| 2701 | case OMF_new: |
| 2702 | case OMF_self: |
| 2703 | case OMF_init: |
| 2704 | // Issue error, unless ns_returns_not_retained. |
| 2705 | if (!SelMethod->hasAttr<NSReturnsNotRetainedAttr>()) { |
| 2706 | // selector names a +1 method |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2707 | Diag(SelLoc, |
Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 2708 | diag::err_arc_perform_selector_retains); |
Ted Kremenek | 59b10db | 2012-02-27 22:55:11 +0000 | [diff] [blame] | 2709 | Diag(SelMethod->getLocation(), diag::note_method_declared_at) |
| 2710 | << SelMethod->getDeclName(); |
Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 2711 | } |
| 2712 | break; |
| 2713 | default: |
| 2714 | // +0 call. OK. unless ns_returns_retained. |
| 2715 | if (SelMethod->hasAttr<NSReturnsRetainedAttr>()) { |
| 2716 | // selector names a +1 method |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2717 | Diag(SelLoc, |
Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 2718 | diag::err_arc_perform_selector_retains); |
Ted Kremenek | 59b10db | 2012-02-27 22:55:11 +0000 | [diff] [blame] | 2719 | Diag(SelMethod->getLocation(), diag::note_method_declared_at) |
| 2720 | << SelMethod->getDeclName(); |
Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 2721 | } |
| 2722 | break; |
| 2723 | } |
| 2724 | } |
| 2725 | } else { |
| 2726 | // error (may leak). |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2727 | Diag(SelLoc, diag::warn_arc_perform_selector_leaks); |
Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 2728 | Diag(Args[0]->getExprLoc(), diag::note_used_here); |
| 2729 | } |
| 2730 | } |
| 2731 | break; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2732 | } |
| 2733 | } |
| 2734 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2735 | // Construct the appropriate ObjCMessageExpr instance. |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2736 | ObjCMessageExpr *Result; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2737 | if (SuperLoc.isValid()) |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2738 | Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc, |
Douglas Gregor | aae38d6 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 2739 | SuperLoc, /*IsInstanceSuper=*/true, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2740 | ReceiverType, Sel, SelectorLocs, Method, |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2741 | makeArrayRef(Args, NumArgs), RBracLoc, |
| 2742 | isImplicit); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2743 | else { |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2744 | Result = ObjCMessageExpr::Create(Context, ReturnType, VK, LBracLoc, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2745 | Receiver, Sel, SelectorLocs, Method, |
Argyrios Kyrtzidis | a80f1bf | 2012-01-12 02:34:39 +0000 | [diff] [blame] | 2746 | makeArrayRef(Args, NumArgs), RBracLoc, |
| 2747 | isImplicit); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2748 | if (!isImplicit) |
| 2749 | checkCocoaAPI(*this, Result); |
| 2750 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2751 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2752 | if (getLangOpts().ObjCAutoRefCount) { |
Fariborz Jahanian | 9277ff4 | 2014-06-17 23:35:13 +0000 | [diff] [blame] | 2753 | // Do not warn about IBOutlet weak property receivers being set to null |
| 2754 | // as this cannot asynchronously happen. |
| 2755 | bool WarnWeakReceiver = true; |
| 2756 | if (isImplicit && Method) |
| 2757 | if (const ObjCPropertyDecl *PropertyDecl = Method->findPropertyDecl()) |
| 2758 | WarnWeakReceiver = !PropertyDecl->hasAttr<IBOutletAttr>(); |
| 2759 | if (WarnWeakReceiver) |
| 2760 | DiagnoseARCUseOfWeakReceiver(*this, Receiver); |
Fariborz Jahanian | 6bd2226 | 2012-04-04 20:05:25 +0000 | [diff] [blame] | 2761 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2762 | // In ARC, annotate delegate init calls. |
| 2763 | if (Result->getMethodFamily() == OMF_init && |
Douglas Gregor | 486b74e | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 2764 | (SuperLoc.isValid() || isSelfExpr(Receiver))) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2765 | // Only consider init calls *directly* in init implementations, |
| 2766 | // not within blocks. |
| 2767 | ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(CurContext); |
| 2768 | if (method && method->getMethodFamily() == OMF_init) { |
| 2769 | // The implicit assignment to self means we also don't want to |
| 2770 | // consume the result. |
| 2771 | Result->setDelegateInitCall(true); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 2772 | return Result; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2773 | } |
| 2774 | } |
| 2775 | |
| 2776 | // In ARC, check for message sends which are likely to introduce |
| 2777 | // retain cycles. |
| 2778 | checkRetainCycles(Result); |
Jordan Rose | 2248765 | 2012-10-11 16:06:21 +0000 | [diff] [blame] | 2779 | |
| 2780 | if (!isImplicit && Method) { |
| 2781 | if (const ObjCPropertyDecl *Prop = Method->findPropertyDecl()) { |
| 2782 | bool IsWeak = |
| 2783 | Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak; |
| 2784 | if (!IsWeak && Sel.isUnarySelector()) |
| 2785 | IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak; |
Alp Toker | d4a3f0e | 2014-06-15 23:30:39 +0000 | [diff] [blame] | 2786 | if (IsWeak && |
| 2787 | !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, LBracLoc)) |
| 2788 | getCurFunction()->recordUseOfWeak(Result, Prop); |
Jordan Rose | 2248765 | 2012-10-11 16:06:21 +0000 | [diff] [blame] | 2789 | } |
| 2790 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2791 | } |
Fariborz Jahanian | 5b3105d | 2014-01-02 22:42:09 +0000 | [diff] [blame] | 2792 | |
Douglas Gregor | aae38d6 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 2793 | return MaybeBindToTemporary(Result); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2794 | } |
| 2795 | |
Fariborz Jahanian | 02447d8 | 2013-01-22 18:35:43 +0000 | [diff] [blame] | 2796 | static void RemoveSelectorFromWarningCache(Sema &S, Expr* Arg) { |
| 2797 | if (ObjCSelectorExpr *OSE = |
| 2798 | dyn_cast<ObjCSelectorExpr>(Arg->IgnoreParenCasts())) { |
| 2799 | Selector Sel = OSE->getSelector(); |
| 2800 | SourceLocation Loc = OSE->getAtLoc(); |
| 2801 | llvm::DenseMap<Selector, SourceLocation>::iterator Pos |
| 2802 | = S.ReferencedSelectors.find(Sel); |
| 2803 | if (Pos != S.ReferencedSelectors.end() && Pos->second == Loc) |
| 2804 | S.ReferencedSelectors.erase(Pos); |
| 2805 | } |
| 2806 | } |
| 2807 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2808 | // ActOnInstanceMessage - used for both unary and keyword messages. |
| 2809 | // ArgExprs is optional - if it is present, the number of expressions |
| 2810 | // is obtained from Sel.getNumArgs(). |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2811 | ExprResult Sema::ActOnInstanceMessage(Scope *S, |
| 2812 | Expr *Receiver, |
| 2813 | Selector Sel, |
| 2814 | SourceLocation LBracLoc, |
Argyrios Kyrtzidis | f934ec8 | 2011-10-03 06:36:17 +0000 | [diff] [blame] | 2815 | ArrayRef<SourceLocation> SelectorLocs, |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2816 | SourceLocation RBracLoc, |
| 2817 | MultiExprArg Args) { |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 2818 | if (!Receiver) |
| 2819 | return ExprError(); |
Argyrios Kyrtzidis | 336cc8b | 2013-02-15 18:34:15 +0000 | [diff] [blame] | 2820 | |
| 2821 | // A ParenListExpr can show up while doing error recovery with invalid code. |
| 2822 | if (isa<ParenListExpr>(Receiver)) { |
| 2823 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Receiver); |
| 2824 | if (Result.isInvalid()) return ExprError(); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 2825 | Receiver = Result.get(); |
Argyrios Kyrtzidis | 336cc8b | 2013-02-15 18:34:15 +0000 | [diff] [blame] | 2826 | } |
Fariborz Jahanian | 1774806 | 2013-01-22 19:05:17 +0000 | [diff] [blame] | 2827 | |
| 2828 | if (RespondsToSelectorSel.isNull()) { |
| 2829 | IdentifierInfo *SelectorId = &Context.Idents.get("respondsToSelector"); |
| 2830 | RespondsToSelectorSel = Context.Selectors.getUnarySelector(SelectorId); |
| 2831 | } |
| 2832 | if (Sel == RespondsToSelectorSel) |
Fariborz Jahanian | 02447d8 | 2013-01-22 18:35:43 +0000 | [diff] [blame] | 2833 | RemoveSelectorFromWarningCache(*this, Args[0]); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2834 | |
John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 2835 | return BuildInstanceMessage(Receiver, Receiver->getType(), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2836 | /*SuperLoc=*/SourceLocation(), Sel, |
| 2837 | /*Method=*/nullptr, LBracLoc, SelectorLocs, |
| 2838 | RBracLoc, Args); |
Chris Lattner | a3fc41d | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 2839 | } |
Chris Lattner | 2a3569b | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 2840 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2841 | enum ARCConversionTypeClass { |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2842 | /// int, void, struct A |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2843 | ACTC_none, |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2844 | |
| 2845 | /// id, void (^)() |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2846 | ACTC_retainable, |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2847 | |
| 2848 | /// id*, id***, void (^*)(), |
| 2849 | ACTC_indirectRetainable, |
| 2850 | |
| 2851 | /// void* might be a normal C type, or it might a CF type. |
| 2852 | ACTC_voidPtr, |
| 2853 | |
| 2854 | /// struct A* |
| 2855 | ACTC_coreFoundation |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2856 | }; |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2857 | static bool isAnyRetainable(ARCConversionTypeClass ACTC) { |
| 2858 | return (ACTC == ACTC_retainable || |
| 2859 | ACTC == ACTC_coreFoundation || |
| 2860 | ACTC == ACTC_voidPtr); |
| 2861 | } |
| 2862 | static bool isAnyCLike(ARCConversionTypeClass ACTC) { |
| 2863 | return ACTC == ACTC_none || |
| 2864 | ACTC == ACTC_voidPtr || |
| 2865 | ACTC == ACTC_coreFoundation; |
| 2866 | } |
| 2867 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2868 | static ARCConversionTypeClass classifyTypeForARCConversion(QualType type) { |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2869 | bool isIndirect = false; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2870 | |
| 2871 | // Ignore an outermost reference type. |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2872 | if (const ReferenceType *ref = type->getAs<ReferenceType>()) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2873 | type = ref->getPointeeType(); |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2874 | isIndirect = true; |
| 2875 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2876 | |
| 2877 | // Drill through pointers and arrays recursively. |
| 2878 | while (true) { |
| 2879 | if (const PointerType *ptr = type->getAs<PointerType>()) { |
| 2880 | type = ptr->getPointeeType(); |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2881 | |
| 2882 | // The first level of pointer may be the innermost pointer on a CF type. |
| 2883 | if (!isIndirect) { |
| 2884 | if (type->isVoidType()) return ACTC_voidPtr; |
| 2885 | if (type->isRecordType()) return ACTC_coreFoundation; |
| 2886 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2887 | } else if (const ArrayType *array = type->getAsArrayTypeUnsafe()) { |
| 2888 | type = QualType(array->getElementType()->getBaseElementTypeUnsafe(), 0); |
| 2889 | } else { |
| 2890 | break; |
| 2891 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2892 | isIndirect = true; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2893 | } |
| 2894 | |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2895 | if (isIndirect) { |
| 2896 | if (type->isObjCARCBridgableType()) |
| 2897 | return ACTC_indirectRetainable; |
| 2898 | return ACTC_none; |
| 2899 | } |
| 2900 | |
| 2901 | if (type->isObjCARCBridgableType()) |
| 2902 | return ACTC_retainable; |
| 2903 | |
| 2904 | return ACTC_none; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2905 | } |
| 2906 | |
| 2907 | namespace { |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2908 | /// A result from the cast checker. |
| 2909 | enum ACCResult { |
| 2910 | /// Cannot be casted. |
| 2911 | ACC_invalid, |
| 2912 | |
| 2913 | /// Can be safely retained or not retained. |
| 2914 | ACC_bottom, |
| 2915 | |
| 2916 | /// Can be casted at +0. |
| 2917 | ACC_plusZero, |
| 2918 | |
| 2919 | /// Can be casted at +1. |
| 2920 | ACC_plusOne |
| 2921 | }; |
| 2922 | ACCResult merge(ACCResult left, ACCResult right) { |
| 2923 | if (left == right) return left; |
| 2924 | if (left == ACC_bottom) return right; |
| 2925 | if (right == ACC_bottom) return left; |
| 2926 | return ACC_invalid; |
| 2927 | } |
| 2928 | |
| 2929 | /// A checker which white-lists certain expressions whose conversion |
| 2930 | /// to or from retainable type would otherwise be forbidden in ARC. |
| 2931 | class ARCCastChecker : public StmtVisitor<ARCCastChecker, ACCResult> { |
| 2932 | typedef StmtVisitor<ARCCastChecker, ACCResult> super; |
| 2933 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2934 | ASTContext &Context; |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2935 | ARCConversionTypeClass SourceClass; |
| 2936 | ARCConversionTypeClass TargetClass; |
Fariborz Jahanian | 36986c6 | 2012-07-27 22:37:07 +0000 | [diff] [blame] | 2937 | bool Diagnose; |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2938 | |
| 2939 | static bool isCFType(QualType type) { |
| 2940 | // Someday this can use ns_bridged. For now, it has to do this. |
| 2941 | return type->isCARCBridgableType(); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2942 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2943 | |
| 2944 | public: |
| 2945 | ARCCastChecker(ASTContext &Context, ARCConversionTypeClass source, |
Fariborz Jahanian | 36986c6 | 2012-07-27 22:37:07 +0000 | [diff] [blame] | 2946 | ARCConversionTypeClass target, bool diagnose) |
| 2947 | : Context(Context), SourceClass(source), TargetClass(target), |
| 2948 | Diagnose(diagnose) {} |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2949 | |
| 2950 | using super::Visit; |
| 2951 | ACCResult Visit(Expr *e) { |
| 2952 | return super::Visit(e->IgnoreParens()); |
| 2953 | } |
| 2954 | |
| 2955 | ACCResult VisitStmt(Stmt *s) { |
| 2956 | return ACC_invalid; |
| 2957 | } |
| 2958 | |
| 2959 | /// Null pointer constants can be casted however you please. |
| 2960 | ACCResult VisitExpr(Expr *e) { |
| 2961 | if (e->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull)) |
| 2962 | return ACC_bottom; |
| 2963 | return ACC_invalid; |
| 2964 | } |
| 2965 | |
| 2966 | /// Objective-C string literals can be safely casted. |
| 2967 | ACCResult VisitObjCStringLiteral(ObjCStringLiteral *e) { |
| 2968 | // If we're casting to any retainable type, go ahead. Global |
| 2969 | // strings are immune to retains, so this is bottom. |
| 2970 | if (isAnyRetainable(TargetClass)) return ACC_bottom; |
| 2971 | |
| 2972 | return ACC_invalid; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2973 | } |
| 2974 | |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2975 | /// Look through certain implicit and explicit casts. |
| 2976 | ACCResult VisitCastExpr(CastExpr *e) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2977 | switch (e->getCastKind()) { |
| 2978 | case CK_NullToPointer: |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2979 | return ACC_bottom; |
| 2980 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2981 | case CK_NoOp: |
| 2982 | case CK_LValueToRValue: |
| 2983 | case CK_BitCast: |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 2984 | case CK_CPointerToObjCPointerCast: |
| 2985 | case CK_BlockPointerToObjCPointerCast: |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2986 | case CK_AnyPointerToBlockPointerCast: |
| 2987 | return Visit(e->getSubExpr()); |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2988 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2989 | default: |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2990 | return ACC_invalid; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2991 | } |
| 2992 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2993 | |
| 2994 | /// Look through unary extension. |
| 2995 | ACCResult VisitUnaryExtension(UnaryOperator *e) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2996 | return Visit(e->getSubExpr()); |
| 2997 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 2998 | |
| 2999 | /// Ignore the LHS of a comma operator. |
| 3000 | ACCResult VisitBinComma(BinaryOperator *e) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3001 | return Visit(e->getRHS()); |
| 3002 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3003 | |
| 3004 | /// Conditional operators are okay if both sides are okay. |
| 3005 | ACCResult VisitConditionalOperator(ConditionalOperator *e) { |
| 3006 | ACCResult left = Visit(e->getTrueExpr()); |
| 3007 | if (left == ACC_invalid) return ACC_invalid; |
| 3008 | return merge(left, Visit(e->getFalseExpr())); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3009 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3010 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3011 | /// Look through pseudo-objects. |
| 3012 | ACCResult VisitPseudoObjectExpr(PseudoObjectExpr *e) { |
| 3013 | // If we're getting here, we should always have a result. |
| 3014 | return Visit(e->getResultExpr()); |
| 3015 | } |
| 3016 | |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3017 | /// Statement expressions are okay if their result expression is okay. |
| 3018 | ACCResult VisitStmtExpr(StmtExpr *e) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3019 | return Visit(e->getSubStmt()->body_back()); |
| 3020 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3021 | |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3022 | /// Some declaration references are okay. |
| 3023 | ACCResult VisitDeclRefExpr(DeclRefExpr *e) { |
| 3024 | // References to global constants from system headers are okay. |
| 3025 | // These are things like 'kCFStringTransformToLatin'. They are |
| 3026 | // can also be assumed to be immune to retains. |
| 3027 | VarDecl *var = dyn_cast<VarDecl>(e->getDecl()); |
| 3028 | if (isAnyRetainable(TargetClass) && |
| 3029 | isAnyRetainable(SourceClass) && |
| 3030 | var && |
| 3031 | var->getStorageClass() == SC_Extern && |
| 3032 | var->getType().isConstQualified() && |
| 3033 | Context.getSourceManager().isInSystemHeader(var->getLocation())) { |
| 3034 | return ACC_bottom; |
| 3035 | } |
| 3036 | |
| 3037 | // Nothing else. |
| 3038 | return ACC_invalid; |
Fariborz Jahanian | 7887637 | 2011-06-21 17:38:29 +0000 | [diff] [blame] | 3039 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3040 | |
| 3041 | /// Some calls are okay. |
| 3042 | ACCResult VisitCallExpr(CallExpr *e) { |
| 3043 | if (FunctionDecl *fn = e->getDirectCallee()) |
| 3044 | if (ACCResult result = checkCallToFunction(fn)) |
| 3045 | return result; |
| 3046 | |
| 3047 | return super::VisitCallExpr(e); |
| 3048 | } |
| 3049 | |
| 3050 | ACCResult checkCallToFunction(FunctionDecl *fn) { |
| 3051 | // Require a CF*Ref return type. |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 3052 | if (!isCFType(fn->getReturnType())) |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3053 | return ACC_invalid; |
| 3054 | |
| 3055 | if (!isAnyRetainable(TargetClass)) |
| 3056 | return ACC_invalid; |
| 3057 | |
| 3058 | // Honor an explicit 'not retained' attribute. |
| 3059 | if (fn->hasAttr<CFReturnsNotRetainedAttr>()) |
| 3060 | return ACC_plusZero; |
| 3061 | |
| 3062 | // Honor an explicit 'retained' attribute, except that for |
| 3063 | // now we're not going to permit implicit handling of +1 results, |
| 3064 | // because it's a bit frightening. |
| 3065 | if (fn->hasAttr<CFReturnsRetainedAttr>()) |
Fariborz Jahanian | ae5bbfc | 2012-07-27 23:55:46 +0000 | [diff] [blame] | 3066 | return Diagnose ? ACC_plusOne |
| 3067 | : ACC_invalid; // ACC_plusOne if we start accepting this |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3068 | |
| 3069 | // Recognize this specific builtin function, which is used by CFSTR. |
| 3070 | unsigned builtinID = fn->getBuiltinID(); |
| 3071 | if (builtinID == Builtin::BI__builtin___CFStringMakeConstantString) |
| 3072 | return ACC_bottom; |
| 3073 | |
Fariborz Jahanian | ae5bbfc | 2012-07-27 23:55:46 +0000 | [diff] [blame] | 3074 | // Otherwise, don't do anything implicit with an unaudited function. |
| 3075 | if (!fn->hasAttr<CFAuditedTransferAttr>()) |
| 3076 | return ACC_invalid; |
| 3077 | |
Fariborz Jahanian | 36986c6 | 2012-07-27 22:37:07 +0000 | [diff] [blame] | 3078 | // Otherwise, it's +0 unless it follows the create convention. |
| 3079 | if (ento::coreFoundation::followsCreateRule(fn)) |
| 3080 | return Diagnose ? ACC_plusOne |
| 3081 | : ACC_invalid; // ACC_plusOne if we start accepting this |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3082 | |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3083 | return ACC_plusZero; |
| 3084 | } |
| 3085 | |
| 3086 | ACCResult VisitObjCMessageExpr(ObjCMessageExpr *e) { |
| 3087 | return checkCallToMethod(e->getMethodDecl()); |
| 3088 | } |
| 3089 | |
| 3090 | ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { |
| 3091 | ObjCMethodDecl *method; |
| 3092 | if (e->isExplicitProperty()) |
| 3093 | method = e->getExplicitProperty()->getGetterMethodDecl(); |
| 3094 | else |
| 3095 | method = e->getImplicitPropertyGetter(); |
| 3096 | return checkCallToMethod(method); |
| 3097 | } |
| 3098 | |
| 3099 | ACCResult checkCallToMethod(ObjCMethodDecl *method) { |
| 3100 | if (!method) return ACC_invalid; |
| 3101 | |
| 3102 | // Check for message sends to functions returning CF types. We |
| 3103 | // just obey the Cocoa conventions with these, even though the |
| 3104 | // return type is CF. |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 3105 | if (!isAnyRetainable(TargetClass) || !isCFType(method->getReturnType())) |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3106 | return ACC_invalid; |
| 3107 | |
| 3108 | // If the method is explicitly marked not-retained, it's +0. |
| 3109 | if (method->hasAttr<CFReturnsNotRetainedAttr>()) |
| 3110 | return ACC_plusZero; |
| 3111 | |
| 3112 | // If the method is explicitly marked as returning retained, or its |
| 3113 | // selector follows a +1 Cocoa convention, treat it as +1. |
| 3114 | if (method->hasAttr<CFReturnsRetainedAttr>()) |
| 3115 | return ACC_plusOne; |
| 3116 | |
| 3117 | switch (method->getSelector().getMethodFamily()) { |
| 3118 | case OMF_alloc: |
| 3119 | case OMF_copy: |
| 3120 | case OMF_mutableCopy: |
| 3121 | case OMF_new: |
| 3122 | return ACC_plusOne; |
| 3123 | |
| 3124 | default: |
| 3125 | // Otherwise, treat it as +0. |
| 3126 | return ACC_plusZero; |
Fariborz Jahanian | 9b83be8 | 2011-06-21 19:42:38 +0000 | [diff] [blame] | 3127 | } |
| 3128 | } |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3129 | }; |
Fariborz Jahanian | 4ad5686 | 2011-06-20 20:54:42 +0000 | [diff] [blame] | 3130 | } |
| 3131 | |
Argyrios Kyrtzidis | 273c7c4 | 2012-06-01 00:10:47 +0000 | [diff] [blame] | 3132 | bool Sema::isKnownName(StringRef name) { |
| 3133 | if (name.empty()) |
| 3134 | return false; |
| 3135 | LookupResult R(*this, &Context.Idents.get(name), SourceLocation(), |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 3136 | Sema::LookupOrdinaryName); |
Argyrios Kyrtzidis | 273c7c4 | 2012-06-01 00:10:47 +0000 | [diff] [blame] | 3137 | return LookupName(R, TUScope, false); |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 3138 | } |
| 3139 | |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3140 | static void addFixitForObjCARCConversion(Sema &S, |
| 3141 | DiagnosticBuilder &DiagB, |
| 3142 | Sema::CheckedConversionKind CCK, |
| 3143 | SourceLocation afterLParen, |
| 3144 | QualType castType, |
| 3145 | Expr *castExpr, |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3146 | Expr *realCast, |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3147 | const char *bridgeKeyword, |
| 3148 | const char *CFBridgeName) { |
| 3149 | // We handle C-style and implicit casts here. |
| 3150 | switch (CCK) { |
| 3151 | case Sema::CCK_ImplicitConversion: |
| 3152 | case Sema::CCK_CStyleCast: |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3153 | case Sema::CCK_OtherCast: |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3154 | break; |
| 3155 | case Sema::CCK_FunctionalCast: |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3156 | return; |
| 3157 | } |
| 3158 | |
| 3159 | if (CFBridgeName) { |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3160 | if (CCK == Sema::CCK_OtherCast) { |
| 3161 | if (const CXXNamedCastExpr *NCE = dyn_cast<CXXNamedCastExpr>(realCast)) { |
| 3162 | SourceRange range(NCE->getOperatorLoc(), |
| 3163 | NCE->getAngleBrackets().getEnd()); |
| 3164 | SmallString<32> BridgeCall; |
| 3165 | |
| 3166 | SourceManager &SM = S.getSourceManager(); |
| 3167 | char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1)); |
| 3168 | if (Lexer::isIdentifierBodyChar(PrevChar, S.getLangOpts())) |
| 3169 | BridgeCall += ' '; |
| 3170 | |
| 3171 | BridgeCall += CFBridgeName; |
| 3172 | DiagB.AddFixItHint(FixItHint::CreateReplacement(range, BridgeCall)); |
| 3173 | } |
| 3174 | return; |
| 3175 | } |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3176 | Expr *castedE = castExpr; |
| 3177 | if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE)) |
| 3178 | castedE = CCE->getSubExpr(); |
| 3179 | castedE = castedE->IgnoreImpCasts(); |
| 3180 | SourceRange range = castedE->getSourceRange(); |
Jordan Rose | 288c421 | 2012-06-07 01:10:31 +0000 | [diff] [blame] | 3181 | |
| 3182 | SmallString<32> BridgeCall; |
| 3183 | |
| 3184 | SourceManager &SM = S.getSourceManager(); |
| 3185 | char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1)); |
| 3186 | if (Lexer::isIdentifierBodyChar(PrevChar, S.getLangOpts())) |
| 3187 | BridgeCall += ' '; |
| 3188 | |
| 3189 | BridgeCall += CFBridgeName; |
| 3190 | |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3191 | if (isa<ParenExpr>(castedE)) { |
| 3192 | DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(), |
Jordan Rose | 288c421 | 2012-06-07 01:10:31 +0000 | [diff] [blame] | 3193 | BridgeCall)); |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3194 | } else { |
Jordan Rose | 288c421 | 2012-06-07 01:10:31 +0000 | [diff] [blame] | 3195 | BridgeCall += '('; |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3196 | DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(), |
Jordan Rose | 288c421 | 2012-06-07 01:10:31 +0000 | [diff] [blame] | 3197 | BridgeCall)); |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3198 | DiagB.AddFixItHint(FixItHint::CreateInsertion( |
| 3199 | S.PP.getLocForEndOfToken(range.getEnd()), |
| 3200 | ")")); |
| 3201 | } |
| 3202 | return; |
| 3203 | } |
| 3204 | |
| 3205 | if (CCK == Sema::CCK_CStyleCast) { |
| 3206 | DiagB.AddFixItHint(FixItHint::CreateInsertion(afterLParen, bridgeKeyword)); |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3207 | } else if (CCK == Sema::CCK_OtherCast) { |
| 3208 | if (const CXXNamedCastExpr *NCE = dyn_cast<CXXNamedCastExpr>(realCast)) { |
| 3209 | std::string castCode = "("; |
| 3210 | castCode += bridgeKeyword; |
| 3211 | castCode += castType.getAsString(); |
| 3212 | castCode += ")"; |
| 3213 | SourceRange Range(NCE->getOperatorLoc(), |
| 3214 | NCE->getAngleBrackets().getEnd()); |
| 3215 | DiagB.AddFixItHint(FixItHint::CreateReplacement(Range, castCode)); |
| 3216 | } |
Argyrios Kyrtzidis | 6aa70e2 | 2012-02-16 17:31:07 +0000 | [diff] [blame] | 3217 | } else { |
| 3218 | std::string castCode = "("; |
| 3219 | castCode += bridgeKeyword; |
| 3220 | castCode += castType.getAsString(); |
| 3221 | castCode += ")"; |
| 3222 | Expr *castedE = castExpr->IgnoreImpCasts(); |
| 3223 | SourceRange range = castedE->getSourceRange(); |
| 3224 | if (isa<ParenExpr>(castedE)) { |
| 3225 | DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(), |
| 3226 | castCode)); |
| 3227 | } else { |
| 3228 | castCode += "("; |
| 3229 | DiagB.AddFixItHint(FixItHint::CreateInsertion(range.getBegin(), |
| 3230 | castCode)); |
| 3231 | DiagB.AddFixItHint(FixItHint::CreateInsertion( |
| 3232 | S.PP.getLocForEndOfToken(range.getEnd()), |
| 3233 | ")")); |
| 3234 | } |
| 3235 | } |
| 3236 | } |
| 3237 | |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3238 | template <typename T> |
| 3239 | static inline T *getObjCBridgeAttr(const TypedefType *TD) { |
| 3240 | TypedefNameDecl *TDNDecl = TD->getDecl(); |
| 3241 | QualType QT = TDNDecl->getUnderlyingType(); |
| 3242 | if (QT->isPointerType()) { |
| 3243 | QT = QT->getPointeeType(); |
| 3244 | if (const RecordType *RT = QT->getAs<RecordType>()) |
Fariborz Jahanian | 9af6a78 | 2014-06-11 19:10:46 +0000 | [diff] [blame] | 3245 | if (RecordDecl *RD = RT->getDecl()->getMostRecentDecl()) |
Aaron Ballman | 2084f8f | 2013-12-19 13:20:36 +0000 | [diff] [blame] | 3246 | return RD->getAttr<T>(); |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3247 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3248 | return nullptr; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3249 | } |
| 3250 | |
| 3251 | static ObjCBridgeRelatedAttr *ObjCBridgeRelatedAttrFromType(QualType T, |
| 3252 | TypedefNameDecl *&TDNDecl) { |
| 3253 | while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) { |
| 3254 | TDNDecl = TD->getDecl(); |
| 3255 | if (ObjCBridgeRelatedAttr *ObjCBAttr = |
| 3256 | getObjCBridgeAttr<ObjCBridgeRelatedAttr>(TD)) |
| 3257 | return ObjCBAttr; |
| 3258 | T = TDNDecl->getUnderlyingType(); |
| 3259 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3260 | return nullptr; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3261 | } |
| 3262 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3263 | static void |
| 3264 | diagnoseObjCARCConversion(Sema &S, SourceRange castRange, |
| 3265 | QualType castType, ARCConversionTypeClass castACTC, |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3266 | Expr *castExpr, Expr *realCast, |
| 3267 | ARCConversionTypeClass exprACTC, |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3268 | Sema::CheckedConversionKind CCK) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3269 | SourceLocation loc = |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3270 | (castRange.isValid() ? castRange.getBegin() : castExpr->getExprLoc()); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3271 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3272 | if (S.makeUnavailableInSystemHeader(loc, |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3273 | "converts between Objective-C and C pointers in -fobjc-arc")) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3274 | return; |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3275 | |
| 3276 | QualType castExprType = castExpr->getType(); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3277 | TypedefNameDecl *TDNDecl = nullptr; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3278 | if ((castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable && |
| 3279 | ObjCBridgeRelatedAttrFromType(castType, TDNDecl)) || |
| 3280 | (exprACTC == ACTC_coreFoundation && castACTC == ACTC_retainable && |
Fariborz Jahanian | 1ad83a3 | 2014-06-18 23:22:38 +0000 | [diff] [blame] | 3281 | ObjCBridgeRelatedAttrFromType(castExprType, TDNDecl))) |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3282 | return; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3283 | |
John McCall | 640767f | 2011-06-17 06:50:50 +0000 | [diff] [blame] | 3284 | unsigned srcKind = 0; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3285 | switch (exprACTC) { |
John McCall | e4fe245 | 2011-10-01 01:01:08 +0000 | [diff] [blame] | 3286 | case ACTC_none: |
| 3287 | case ACTC_coreFoundation: |
| 3288 | case ACTC_voidPtr: |
| 3289 | srcKind = (castExprType->isPointerType() ? 1 : 0); |
| 3290 | break; |
| 3291 | case ACTC_retainable: |
| 3292 | srcKind = (castExprType->isBlockPointerType() ? 2 : 3); |
| 3293 | break; |
| 3294 | case ACTC_indirectRetainable: |
| 3295 | srcKind = 4; |
| 3296 | break; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3297 | } |
| 3298 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3299 | // Check whether this could be fixed with a bridge cast. |
| 3300 | SourceLocation afterLParen = S.PP.getLocForEndOfToken(castRange.getBegin()); |
| 3301 | SourceLocation noteLoc = afterLParen.isValid() ? afterLParen : loc; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3302 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3303 | // Bridge from an ARC type to a CF type. |
| 3304 | if (castACTC == ACTC_retainable && isAnyRetainable(exprACTC)) { |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 3305 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3306 | S.Diag(loc, diag::err_arc_cast_requires_bridge) |
| 3307 | << unsigned(CCK == Sema::CCK_ImplicitConversion) // cast|implicit |
| 3308 | << 2 // of C pointer type |
| 3309 | << castExprType |
| 3310 | << unsigned(castType->isBlockPointerType()) // to ObjC|block type |
| 3311 | << castType |
| 3312 | << castRange |
| 3313 | << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 273c7c4 | 2012-06-01 00:10:47 +0000 | [diff] [blame] | 3314 | bool br = S.isKnownName("CFBridgingRelease"); |
Jordan Rose | 4502b53 | 2012-07-31 01:07:43 +0000 | [diff] [blame] | 3315 | ACCResult CreateRule = |
Fariborz Jahanian | ae5bbfc | 2012-07-27 23:55:46 +0000 | [diff] [blame] | 3316 | ARCCastChecker(S.Context, exprACTC, castACTC, true).Visit(castExpr); |
Jordan Rose | 4502b53 | 2012-07-31 01:07:43 +0000 | [diff] [blame] | 3317 | assert(CreateRule != ACC_bottom && "This cast should already be accepted."); |
Fariborz Jahanian | ae5bbfc | 2012-07-27 23:55:46 +0000 | [diff] [blame] | 3318 | if (CreateRule != ACC_plusOne) |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3319 | { |
Fariborz Jahanian | ac2d082 | 2013-02-22 01:22:48 +0000 | [diff] [blame] | 3320 | DiagnosticBuilder DiagB = |
| 3321 | (CCK != Sema::CCK_OtherCast) ? S.Diag(noteLoc, diag::note_arc_bridge) |
| 3322 | : S.Diag(noteLoc, diag::note_arc_cstyle_bridge); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3323 | |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3324 | addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3325 | castType, castExpr, realCast, "__bridge ", |
| 3326 | nullptr); |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3327 | } |
Fariborz Jahanian | f7759e8 | 2012-07-28 18:59:49 +0000 | [diff] [blame] | 3328 | if (CreateRule != ACC_plusZero) |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3329 | { |
Fariborz Jahanian | ac2d082 | 2013-02-22 01:22:48 +0000 | [diff] [blame] | 3330 | DiagnosticBuilder DiagB = |
| 3331 | (CCK == Sema::CCK_OtherCast && !br) ? |
| 3332 | S.Diag(noteLoc, diag::note_arc_cstyle_bridge_transfer) << castExprType : |
| 3333 | S.Diag(br ? castExpr->getExprLoc() : noteLoc, |
| 3334 | diag::note_arc_bridge_transfer) |
| 3335 | << castExprType << br; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3336 | |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3337 | addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen, |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3338 | castType, castExpr, realCast, "__bridge_transfer ", |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3339 | br ? "CFBridgingRelease" : nullptr); |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3340 | } |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3341 | |
| 3342 | return; |
| 3343 | } |
Fariborz Jahanian | f1a22f4 | 2014-04-29 16:12:56 +0000 | [diff] [blame] | 3344 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3345 | // Bridge from a CF type to an ARC type. |
| 3346 | if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC)) { |
Argyrios Kyrtzidis | 273c7c4 | 2012-06-01 00:10:47 +0000 | [diff] [blame] | 3347 | bool br = S.isKnownName("CFBridgingRetain"); |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3348 | S.Diag(loc, diag::err_arc_cast_requires_bridge) |
| 3349 | << unsigned(CCK == Sema::CCK_ImplicitConversion) // cast|implicit |
| 3350 | << unsigned(castExprType->isBlockPointerType()) // of ObjC|block type |
| 3351 | << castExprType |
| 3352 | << 2 // to C pointer type |
| 3353 | << castType |
| 3354 | << castRange |
| 3355 | << castExpr->getSourceRange(); |
Fariborz Jahanian | ae5bbfc | 2012-07-27 23:55:46 +0000 | [diff] [blame] | 3356 | ACCResult CreateRule = |
| 3357 | ARCCastChecker(S.Context, exprACTC, castACTC, true).Visit(castExpr); |
Jordan Rose | 4502b53 | 2012-07-31 01:07:43 +0000 | [diff] [blame] | 3358 | assert(CreateRule != ACC_bottom && "This cast should already be accepted."); |
Fariborz Jahanian | ae5bbfc | 2012-07-27 23:55:46 +0000 | [diff] [blame] | 3359 | if (CreateRule != ACC_plusOne) |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3360 | { |
Fariborz Jahanian | ac2d082 | 2013-02-22 01:22:48 +0000 | [diff] [blame] | 3361 | DiagnosticBuilder DiagB = |
| 3362 | (CCK != Sema::CCK_OtherCast) ? S.Diag(noteLoc, diag::note_arc_bridge) |
| 3363 | : S.Diag(noteLoc, diag::note_arc_cstyle_bridge); |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3364 | addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3365 | castType, castExpr, realCast, "__bridge ", |
| 3366 | nullptr); |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3367 | } |
Fariborz Jahanian | f7759e8 | 2012-07-28 18:59:49 +0000 | [diff] [blame] | 3368 | if (CreateRule != ACC_plusZero) |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3369 | { |
Fariborz Jahanian | ac2d082 | 2013-02-22 01:22:48 +0000 | [diff] [blame] | 3370 | DiagnosticBuilder DiagB = |
| 3371 | (CCK == Sema::CCK_OtherCast && !br) ? |
| 3372 | S.Diag(noteLoc, diag::note_arc_cstyle_bridge_retained) << castType : |
| 3373 | S.Diag(br ? castExpr->getExprLoc() : noteLoc, |
| 3374 | diag::note_arc_bridge_retained) |
| 3375 | << castType << br; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3376 | |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3377 | addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen, |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3378 | castType, castExpr, realCast, "__bridge_retained ", |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3379 | br ? "CFBridgingRetain" : nullptr); |
Fariborz Jahanian | 84c97ca | 2012-07-27 21:34:23 +0000 | [diff] [blame] | 3380 | } |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3381 | |
| 3382 | return; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3383 | } |
| 3384 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3385 | S.Diag(loc, diag::err_arc_mismatched_cast) |
| 3386 | << (CCK != Sema::CCK_ImplicitConversion) |
| 3387 | << srcKind << castExprType << castType |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3388 | << castRange << castExpr->getSourceRange(); |
| 3389 | } |
| 3390 | |
Fariborz Jahanian | 87c7791 | 2013-11-21 20:50:32 +0000 | [diff] [blame] | 3391 | template <typename TB> |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3392 | static bool CheckObjCBridgeNSCast(Sema &S, QualType castType, Expr *castExpr, |
| 3393 | bool &HadTheAttribute, bool warn) { |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3394 | QualType T = castExpr->getType(); |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3395 | HadTheAttribute = false; |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3396 | while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) { |
| 3397 | TypedefNameDecl *TDNDecl = TD->getDecl(); |
Fariborz Jahanian | 87c7791 | 2013-11-21 20:50:32 +0000 | [diff] [blame] | 3398 | if (TB *ObjCBAttr = getObjCBridgeAttr<TB>(TD)) { |
Fariborz Jahanian | db3d855 | 2013-11-19 00:09:48 +0000 | [diff] [blame] | 3399 | if (IdentifierInfo *Parm = ObjCBAttr->getBridgedType()) { |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3400 | HadTheAttribute = true; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3401 | NamedDecl *Target = nullptr; |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3402 | // Check for an existing type with this name. |
| 3403 | LookupResult R(S, DeclarationName(Parm), SourceLocation(), |
| 3404 | Sema::LookupOrdinaryName); |
| 3405 | if (S.LookupName(R, S.TUScope)) { |
Fariborz Jahanian | f07183c | 2013-11-16 01:45:25 +0000 | [diff] [blame] | 3406 | Target = R.getFoundDecl(); |
| 3407 | if (Target && isa<ObjCInterfaceDecl>(Target)) { |
| 3408 | ObjCInterfaceDecl *ExprClass = cast<ObjCInterfaceDecl>(Target); |
| 3409 | if (const ObjCObjectPointerType *InterfacePointerType = |
| 3410 | castType->getAsObjCInterfacePointerType()) { |
| 3411 | ObjCInterfaceDecl *CastClass |
| 3412 | = InterfacePointerType->getObjectType()->getInterface(); |
Fariborz Jahanian | 92ab298 | 2013-11-20 00:32:12 +0000 | [diff] [blame] | 3413 | if ((CastClass == ExprClass) || |
Fariborz Jahanian | f1a22f4 | 2014-04-29 16:12:56 +0000 | [diff] [blame] | 3414 | (CastClass && ExprClass->isSuperClassOf(CastClass))) |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3415 | return true; |
| 3416 | if (warn) |
| 3417 | S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge) |
| 3418 | << T << Target->getName() << castType->getPointeeType(); |
| 3419 | return false; |
Fariborz Jahanian | 92ab298 | 2013-11-20 00:32:12 +0000 | [diff] [blame] | 3420 | } else if (castType->isObjCIdType() || |
| 3421 | (S.Context.ObjCObjectAdoptsQTypeProtocols( |
| 3422 | castType, ExprClass))) |
| 3423 | // ok to cast to 'id'. |
| 3424 | // casting to id<p-list> is ok if bridge type adopts all of |
| 3425 | // p-list protocols. |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3426 | return true; |
Fariborz Jahanian | 92ab298 | 2013-11-20 00:32:12 +0000 | [diff] [blame] | 3427 | else { |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3428 | if (warn) { |
| 3429 | S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge) |
| 3430 | << T << Target->getName() << castType; |
| 3431 | S.Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3432 | S.Diag(Target->getLocStart(), diag::note_declared_at); |
| 3433 | } |
| 3434 | return false; |
Fariborz Jahanian | 2c31212 | 2013-11-16 23:22:37 +0000 | [diff] [blame] | 3435 | } |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3436 | } |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3437 | } |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3438 | S.Diag(castExpr->getLocStart(), diag::err_objc_cf_bridged_not_interface) |
Aaron Ballman | c055074 | 2014-01-03 02:07:43 +0000 | [diff] [blame] | 3439 | << castExpr->getType() << Parm; |
Fariborz Jahanian | f07183c | 2013-11-16 01:45:25 +0000 | [diff] [blame] | 3440 | S.Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3441 | if (Target) |
| 3442 | S.Diag(Target->getLocStart(), diag::note_declared_at); |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3443 | return true; |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3444 | } |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3445 | return false; |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3446 | } |
| 3447 | T = TDNDecl->getUnderlyingType(); |
| 3448 | } |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3449 | return true; |
Fariborz Jahanian | a649c82 | 2013-11-15 22:18:17 +0000 | [diff] [blame] | 3450 | } |
| 3451 | |
Fariborz Jahanian | 87c7791 | 2013-11-21 20:50:32 +0000 | [diff] [blame] | 3452 | template <typename TB> |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3453 | static bool CheckObjCBridgeCFCast(Sema &S, QualType castType, Expr *castExpr, |
| 3454 | bool &HadTheAttribute, bool warn) { |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3455 | QualType T = castType; |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3456 | HadTheAttribute = false; |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3457 | while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) { |
| 3458 | TypedefNameDecl *TDNDecl = TD->getDecl(); |
Fariborz Jahanian | 87c7791 | 2013-11-21 20:50:32 +0000 | [diff] [blame] | 3459 | if (TB *ObjCBAttr = getObjCBridgeAttr<TB>(TD)) { |
Fariborz Jahanian | db3d855 | 2013-11-19 00:09:48 +0000 | [diff] [blame] | 3460 | if (IdentifierInfo *Parm = ObjCBAttr->getBridgedType()) { |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3461 | HadTheAttribute = true; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3462 | NamedDecl *Target = nullptr; |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3463 | // Check for an existing type with this name. |
| 3464 | LookupResult R(S, DeclarationName(Parm), SourceLocation(), |
| 3465 | Sema::LookupOrdinaryName); |
| 3466 | if (S.LookupName(R, S.TUScope)) { |
| 3467 | Target = R.getFoundDecl(); |
| 3468 | if (Target && isa<ObjCInterfaceDecl>(Target)) { |
| 3469 | ObjCInterfaceDecl *CastClass = cast<ObjCInterfaceDecl>(Target); |
| 3470 | if (const ObjCObjectPointerType *InterfacePointerType = |
| 3471 | castExpr->getType()->getAsObjCInterfacePointerType()) { |
| 3472 | ObjCInterfaceDecl *ExprClass |
| 3473 | = InterfacePointerType->getObjectType()->getInterface(); |
Fariborz Jahanian | 92ab298 | 2013-11-20 00:32:12 +0000 | [diff] [blame] | 3474 | if ((CastClass == ExprClass) || |
| 3475 | (ExprClass && CastClass->isSuperClassOf(ExprClass))) |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3476 | return true; |
| 3477 | if (warn) { |
| 3478 | S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge_to_cf) |
| 3479 | << castExpr->getType()->getPointeeType() << T; |
| 3480 | S.Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3481 | } |
| 3482 | return false; |
Fariborz Jahanian | 92ab298 | 2013-11-20 00:32:12 +0000 | [diff] [blame] | 3483 | } else if (castExpr->getType()->isObjCIdType() || |
| 3484 | (S.Context.QIdProtocolsAdoptObjCObjectProtocols( |
| 3485 | castExpr->getType(), CastClass))) |
| 3486 | // ok to cast an 'id' expression to a CFtype. |
| 3487 | // ok to cast an 'id<plist>' expression to CFtype provided plist |
| 3488 | // adopts all of CFtype's ObjetiveC's class plist. |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3489 | return true; |
Fariborz Jahanian | 92ab298 | 2013-11-20 00:32:12 +0000 | [diff] [blame] | 3490 | else { |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3491 | if (warn) { |
| 3492 | S.Diag(castExpr->getLocStart(), diag::warn_objc_invalid_bridge_to_cf) |
| 3493 | << castExpr->getType() << castType; |
| 3494 | S.Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3495 | S.Diag(Target->getLocStart(), diag::note_declared_at); |
| 3496 | } |
| 3497 | return false; |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3498 | } |
| 3499 | } |
| 3500 | } |
| 3501 | S.Diag(castExpr->getLocStart(), diag::err_objc_ns_bridged_invalid_cfobject) |
| 3502 | << castExpr->getType() << castType; |
| 3503 | S.Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3504 | if (Target) |
| 3505 | S.Diag(Target->getLocStart(), diag::note_declared_at); |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3506 | return true; |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3507 | } |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3508 | return false; |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3509 | } |
| 3510 | T = TDNDecl->getUnderlyingType(); |
| 3511 | } |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3512 | return true; |
Fariborz Jahanian | 8a0210e | 2013-11-16 19:16:32 +0000 | [diff] [blame] | 3513 | } |
| 3514 | |
Fariborz Jahanian | 8c5b4be | 2013-11-21 00:39:36 +0000 | [diff] [blame] | 3515 | void Sema::CheckTollFreeBridgeCast(QualType castType, Expr *castExpr) { |
Fariborz Jahanian | f1a22f4 | 2014-04-29 16:12:56 +0000 | [diff] [blame] | 3516 | if (!getLangOpts().ObjC1) |
| 3517 | return; |
Alp Toker | f6a24ce | 2013-12-05 16:25:25 +0000 | [diff] [blame] | 3518 | // warn in presence of __bridge casting to or from a toll free bridge cast. |
Fariborz Jahanian | 8c5b4be | 2013-11-21 00:39:36 +0000 | [diff] [blame] | 3519 | ARCConversionTypeClass exprACTC = classifyTypeForARCConversion(castExpr->getType()); |
| 3520 | ARCConversionTypeClass castACTC = classifyTypeForARCConversion(castType); |
Fariborz Jahanian | 87c7791 | 2013-11-21 20:50:32 +0000 | [diff] [blame] | 3521 | if (castACTC == ACTC_retainable && exprACTC == ACTC_coreFoundation) { |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3522 | bool HasObjCBridgeAttr; |
| 3523 | bool ObjCBridgeAttrWillNotWarn = |
| 3524 | CheckObjCBridgeNSCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr, |
| 3525 | false); |
| 3526 | if (ObjCBridgeAttrWillNotWarn && HasObjCBridgeAttr) |
| 3527 | return; |
| 3528 | bool HasObjCBridgeMutableAttr; |
| 3529 | bool ObjCBridgeMutableAttrWillNotWarn = |
| 3530 | CheckObjCBridgeNSCast<ObjCBridgeMutableAttr>(*this, castType, castExpr, |
| 3531 | HasObjCBridgeMutableAttr, false); |
| 3532 | if (ObjCBridgeMutableAttrWillNotWarn && HasObjCBridgeMutableAttr) |
| 3533 | return; |
| 3534 | |
| 3535 | if (HasObjCBridgeAttr) |
| 3536 | CheckObjCBridgeNSCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr, |
| 3537 | true); |
| 3538 | else if (HasObjCBridgeMutableAttr) |
| 3539 | CheckObjCBridgeNSCast<ObjCBridgeMutableAttr>(*this, castType, castExpr, |
| 3540 | HasObjCBridgeMutableAttr, true); |
Fariborz Jahanian | 87c7791 | 2013-11-21 20:50:32 +0000 | [diff] [blame] | 3541 | } |
| 3542 | else if (castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable) { |
Fariborz Jahanian | 5cbbb1be | 2014-06-11 16:52:44 +0000 | [diff] [blame] | 3543 | bool HasObjCBridgeAttr; |
| 3544 | bool ObjCBridgeAttrWillNotWarn = |
| 3545 | CheckObjCBridgeCFCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr, |
| 3546 | false); |
| 3547 | if (ObjCBridgeAttrWillNotWarn && HasObjCBridgeAttr) |
| 3548 | return; |
| 3549 | bool HasObjCBridgeMutableAttr; |
| 3550 | bool ObjCBridgeMutableAttrWillNotWarn = |
| 3551 | CheckObjCBridgeCFCast<ObjCBridgeMutableAttr>(*this, castType, castExpr, |
| 3552 | HasObjCBridgeMutableAttr, false); |
| 3553 | if (ObjCBridgeMutableAttrWillNotWarn && HasObjCBridgeMutableAttr) |
| 3554 | return; |
| 3555 | |
| 3556 | if (HasObjCBridgeAttr) |
| 3557 | CheckObjCBridgeCFCast<ObjCBridgeAttr>(*this, castType, castExpr, HasObjCBridgeAttr, |
| 3558 | true); |
| 3559 | else if (HasObjCBridgeMutableAttr) |
| 3560 | CheckObjCBridgeCFCast<ObjCBridgeMutableAttr>(*this, castType, castExpr, |
| 3561 | HasObjCBridgeMutableAttr, true); |
Fariborz Jahanian | 87c7791 | 2013-11-21 20:50:32 +0000 | [diff] [blame] | 3562 | } |
Fariborz Jahanian | 8c5b4be | 2013-11-21 00:39:36 +0000 | [diff] [blame] | 3563 | } |
| 3564 | |
Fariborz Jahanian | 53f867a | 2014-06-26 21:22:16 +0000 | [diff] [blame] | 3565 | void Sema::CheckObjCBridgeRelatedCast(QualType castType, Expr *castExpr) { |
| 3566 | QualType SrcType = castExpr->getType(); |
| 3567 | if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) { |
| 3568 | if (PRE->isExplicitProperty()) { |
| 3569 | if (ObjCPropertyDecl *PDecl = PRE->getExplicitProperty()) |
| 3570 | SrcType = PDecl->getType(); |
| 3571 | } |
| 3572 | else if (PRE->isImplicitProperty()) { |
| 3573 | if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) |
| 3574 | SrcType = Getter->getReturnType(); |
| 3575 | |
| 3576 | } |
| 3577 | } |
| 3578 | |
| 3579 | ARCConversionTypeClass srcExprACTC = classifyTypeForARCConversion(SrcType); |
| 3580 | ARCConversionTypeClass castExprACTC = classifyTypeForARCConversion(castType); |
| 3581 | if (srcExprACTC != ACTC_retainable || castExprACTC != ACTC_coreFoundation) |
| 3582 | return; |
| 3583 | CheckObjCBridgeRelatedConversions(castExpr->getLocStart(), |
| 3584 | castType, SrcType, castExpr); |
| 3585 | return; |
| 3586 | } |
| 3587 | |
Fariborz Jahanian | c70a543 | 2014-05-10 17:40:11 +0000 | [diff] [blame] | 3588 | bool Sema::CheckTollFreeBridgeStaticCast(QualType castType, Expr *castExpr, |
| 3589 | CastKind &Kind) { |
| 3590 | if (!getLangOpts().ObjC1) |
| 3591 | return false; |
| 3592 | ARCConversionTypeClass exprACTC = |
| 3593 | classifyTypeForARCConversion(castExpr->getType()); |
| 3594 | ARCConversionTypeClass castACTC = classifyTypeForARCConversion(castType); |
| 3595 | if ((castACTC == ACTC_retainable && exprACTC == ACTC_coreFoundation) || |
| 3596 | (castACTC == ACTC_coreFoundation && exprACTC == ACTC_retainable)) { |
| 3597 | CheckTollFreeBridgeCast(castType, castExpr); |
| 3598 | Kind = (castACTC == ACTC_coreFoundation) ? CK_BitCast |
| 3599 | : CK_CPointerToObjCPointerCast; |
| 3600 | return true; |
| 3601 | } |
| 3602 | return false; |
| 3603 | } |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3604 | |
| 3605 | bool Sema::checkObjCBridgeRelatedComponents(SourceLocation Loc, |
| 3606 | QualType DestType, QualType SrcType, |
| 3607 | ObjCInterfaceDecl *&RelatedClass, |
| 3608 | ObjCMethodDecl *&ClassMethod, |
| 3609 | ObjCMethodDecl *&InstanceMethod, |
| 3610 | TypedefNameDecl *&TDNDecl, |
| 3611 | bool CfToNs) { |
| 3612 | QualType T = CfToNs ? SrcType : DestType; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3613 | ObjCBridgeRelatedAttr *ObjCBAttr = ObjCBridgeRelatedAttrFromType(T, TDNDecl); |
| 3614 | if (!ObjCBAttr) |
| 3615 | return false; |
| 3616 | |
| 3617 | IdentifierInfo *RCId = ObjCBAttr->getRelatedClass(); |
| 3618 | IdentifierInfo *CMId = ObjCBAttr->getClassMethod(); |
| 3619 | IdentifierInfo *IMId = ObjCBAttr->getInstanceMethod(); |
| 3620 | if (!RCId) |
| 3621 | return false; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3622 | NamedDecl *Target = nullptr; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3623 | // Check for an existing type with this name. |
| 3624 | LookupResult R(*this, DeclarationName(RCId), SourceLocation(), |
| 3625 | Sema::LookupOrdinaryName); |
| 3626 | if (!LookupName(R, TUScope)) { |
| 3627 | Diag(Loc, diag::err_objc_bridged_related_invalid_class) << RCId |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3628 | << SrcType << DestType; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3629 | Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3630 | return false; |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3631 | } |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3632 | Target = R.getFoundDecl(); |
| 3633 | if (Target && isa<ObjCInterfaceDecl>(Target)) |
| 3634 | RelatedClass = cast<ObjCInterfaceDecl>(Target); |
| 3635 | else { |
| 3636 | Diag(Loc, diag::err_objc_bridged_related_invalid_class_name) << RCId |
| 3637 | << SrcType << DestType; |
| 3638 | Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3639 | if (Target) |
| 3640 | Diag(Target->getLocStart(), diag::note_declared_at); |
| 3641 | return false; |
| 3642 | } |
| 3643 | |
| 3644 | // Check for an existing class method with the given selector name. |
| 3645 | if (CfToNs && CMId) { |
| 3646 | Selector Sel = Context.Selectors.getUnarySelector(CMId); |
| 3647 | ClassMethod = RelatedClass->lookupMethod(Sel, false); |
| 3648 | if (!ClassMethod) { |
| 3649 | Diag(Loc, diag::err_objc_bridged_related_known_method) |
Fariborz Jahanian | 7c04a55 | 2013-12-10 19:22:41 +0000 | [diff] [blame] | 3650 | << SrcType << DestType << Sel << false; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3651 | Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3652 | return false; |
| 3653 | } |
| 3654 | } |
| 3655 | |
| 3656 | // Check for an existing instance method with the given selector name. |
| 3657 | if (!CfToNs && IMId) { |
| 3658 | Selector Sel = Context.Selectors.getNullarySelector(IMId); |
| 3659 | InstanceMethod = RelatedClass->lookupMethod(Sel, true); |
| 3660 | if (!InstanceMethod) { |
| 3661 | Diag(Loc, diag::err_objc_bridged_related_known_method) |
Fariborz Jahanian | 7c04a55 | 2013-12-10 19:22:41 +0000 | [diff] [blame] | 3662 | << SrcType << DestType << Sel << true; |
Fariborz Jahanian | 67379e2 | 2013-12-09 22:04:26 +0000 | [diff] [blame] | 3663 | Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3664 | return false; |
| 3665 | } |
| 3666 | } |
| 3667 | return true; |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3668 | } |
| 3669 | |
| 3670 | bool |
| 3671 | Sema::CheckObjCBridgeRelatedConversions(SourceLocation Loc, |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3672 | QualType DestType, QualType SrcType, |
Fariborz Jahanian | 381edf5 | 2013-12-16 22:54:37 +0000 | [diff] [blame] | 3673 | Expr *&SrcExpr) { |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3674 | ARCConversionTypeClass rhsExprACTC = classifyTypeForARCConversion(SrcType); |
| 3675 | ARCConversionTypeClass lhsExprACTC = classifyTypeForARCConversion(DestType); |
| 3676 | bool CfToNs = (rhsExprACTC == ACTC_coreFoundation && lhsExprACTC == ACTC_retainable); |
| 3677 | bool NsToCf = (rhsExprACTC == ACTC_retainable && lhsExprACTC == ACTC_coreFoundation); |
| 3678 | if (!CfToNs && !NsToCf) |
| 3679 | return false; |
| 3680 | |
| 3681 | ObjCInterfaceDecl *RelatedClass; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3682 | ObjCMethodDecl *ClassMethod = nullptr; |
| 3683 | ObjCMethodDecl *InstanceMethod = nullptr; |
| 3684 | TypedefNameDecl *TDNDecl = nullptr; |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3685 | if (!checkObjCBridgeRelatedComponents(Loc, DestType, SrcType, RelatedClass, |
| 3686 | ClassMethod, InstanceMethod, TDNDecl, CfToNs)) |
| 3687 | return false; |
| 3688 | |
| 3689 | if (CfToNs) { |
| 3690 | // Implicit conversion from CF to ObjC object is needed. |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3691 | if (ClassMethod) { |
| 3692 | std::string ExpressionString = "["; |
| 3693 | ExpressionString += RelatedClass->getNameAsString(); |
| 3694 | ExpressionString += " "; |
| 3695 | ExpressionString += ClassMethod->getSelector().getAsString(); |
| 3696 | SourceLocation SrcExprEndLoc = PP.getLocForEndOfToken(SrcExpr->getLocEnd()); |
| 3697 | // Provide a fixit: [RelatedClass ClassMethod SrcExpr] |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3698 | Diag(Loc, diag::err_objc_bridged_related_known_method) |
Fariborz Jahanian | 7c04a55 | 2013-12-10 19:22:41 +0000 | [diff] [blame] | 3699 | << SrcType << DestType << ClassMethod->getSelector() << false |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3700 | << FixItHint::CreateInsertion(SrcExpr->getLocStart(), ExpressionString) |
| 3701 | << FixItHint::CreateInsertion(SrcExprEndLoc, "]"); |
Fariborz Jahanian | 381edf5 | 2013-12-16 22:54:37 +0000 | [diff] [blame] | 3702 | Diag(RelatedClass->getLocStart(), diag::note_declared_at); |
| 3703 | Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3704 | |
| 3705 | QualType receiverType = |
| 3706 | Context.getObjCInterfaceType(RelatedClass); |
| 3707 | // Argument. |
| 3708 | Expr *args[] = { SrcExpr }; |
| 3709 | ExprResult msg = BuildClassMessageImplicit(receiverType, false, |
| 3710 | ClassMethod->getLocation(), |
| 3711 | ClassMethod->getSelector(), ClassMethod, |
| 3712 | MultiExprArg(args, 1)); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3713 | SrcExpr = msg.get(); |
Fariborz Jahanian | 381edf5 | 2013-12-16 22:54:37 +0000 | [diff] [blame] | 3714 | return true; |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3715 | } |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3716 | } |
| 3717 | else { |
| 3718 | // Implicit conversion from ObjC type to CF object is needed. |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3719 | if (InstanceMethod) { |
Fariborz Jahanian | 88b6898 | 2013-12-10 23:18:06 +0000 | [diff] [blame] | 3720 | std::string ExpressionString; |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3721 | SourceLocation SrcExprEndLoc = PP.getLocForEndOfToken(SrcExpr->getLocEnd()); |
Fariborz Jahanian | 88b6898 | 2013-12-10 23:18:06 +0000 | [diff] [blame] | 3722 | if (InstanceMethod->isPropertyAccessor()) |
| 3723 | if (const ObjCPropertyDecl *PDecl = InstanceMethod->findPropertyDecl()) { |
| 3724 | // fixit: ObjectExpr.propertyname when it is aproperty accessor. |
| 3725 | ExpressionString = "."; |
| 3726 | ExpressionString += PDecl->getNameAsString(); |
| 3727 | Diag(Loc, diag::err_objc_bridged_related_known_method) |
| 3728 | << SrcType << DestType << InstanceMethod->getSelector() << true |
| 3729 | << FixItHint::CreateInsertion(SrcExprEndLoc, ExpressionString); |
| 3730 | } |
| 3731 | if (ExpressionString.empty()) { |
| 3732 | // Provide a fixit: [ObjectExpr InstanceMethod] |
| 3733 | ExpressionString = " "; |
| 3734 | ExpressionString += InstanceMethod->getSelector().getAsString(); |
| 3735 | ExpressionString += "]"; |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3736 | |
Fariborz Jahanian | 88b6898 | 2013-12-10 23:18:06 +0000 | [diff] [blame] | 3737 | Diag(Loc, diag::err_objc_bridged_related_known_method) |
| 3738 | << SrcType << DestType << InstanceMethod->getSelector() << true |
| 3739 | << FixItHint::CreateInsertion(SrcExpr->getLocStart(), "[") |
| 3740 | << FixItHint::CreateInsertion(SrcExprEndLoc, ExpressionString); |
| 3741 | } |
Fariborz Jahanian | 381edf5 | 2013-12-16 22:54:37 +0000 | [diff] [blame] | 3742 | Diag(RelatedClass->getLocStart(), diag::note_declared_at); |
| 3743 | Diag(TDNDecl->getLocStart(), diag::note_declared_at); |
| 3744 | |
| 3745 | ExprResult msg = |
| 3746 | BuildInstanceMessageImplicit(SrcExpr, SrcType, |
| 3747 | InstanceMethod->getLocation(), |
| 3748 | InstanceMethod->getSelector(), |
| 3749 | InstanceMethod, None); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3750 | SrcExpr = msg.get(); |
Fariborz Jahanian | 381edf5 | 2013-12-16 22:54:37 +0000 | [diff] [blame] | 3751 | return true; |
Fariborz Jahanian | db76577 | 2013-12-10 17:08:13 +0000 | [diff] [blame] | 3752 | } |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3753 | } |
Fariborz Jahanian | 381edf5 | 2013-12-16 22:54:37 +0000 | [diff] [blame] | 3754 | return false; |
Fariborz Jahanian | 1f0b3bf | 2013-12-07 00:34:23 +0000 | [diff] [blame] | 3755 | } |
| 3756 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3757 | Sema::ARCConversionResult |
| 3758 | Sema::CheckObjCARCConversion(SourceRange castRange, QualType castType, |
Fariborz Jahanian | 25eef19 | 2013-07-31 21:40:51 +0000 | [diff] [blame] | 3759 | Expr *&castExpr, CheckedConversionKind CCK, |
Fariborz Jahanian | c03ef57 | 2014-06-18 23:52:49 +0000 | [diff] [blame] | 3760 | bool DiagnoseCFAudited, |
| 3761 | BinaryOperatorKind Opc) { |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3762 | QualType castExprType = castExpr->getType(); |
| 3763 | |
| 3764 | // For the purposes of the classification, we assume reference types |
| 3765 | // will bind to temporaries. |
| 3766 | QualType effCastType = castType; |
| 3767 | if (const ReferenceType *ref = castType->getAs<ReferenceType>()) |
| 3768 | effCastType = ref->getPointeeType(); |
| 3769 | |
| 3770 | ARCConversionTypeClass exprACTC = classifyTypeForARCConversion(castExprType); |
| 3771 | ARCConversionTypeClass castACTC = classifyTypeForARCConversion(effCastType); |
Fariborz Jahanian | 2fa646d | 2011-10-28 20:06:07 +0000 | [diff] [blame] | 3772 | if (exprACTC == castACTC) { |
| 3773 | // check for viablity and report error if casting an rvalue to a |
| 3774 | // life-time qualifier. |
Fariborz Jahanian | 244b187 | 2011-10-29 00:06:10 +0000 | [diff] [blame] | 3775 | if ((castACTC == ACTC_retainable) && |
Fariborz Jahanian | 2fa646d | 2011-10-28 20:06:07 +0000 | [diff] [blame] | 3776 | (CCK == CCK_CStyleCast || CCK == CCK_OtherCast) && |
Fariborz Jahanian | 244b187 | 2011-10-29 00:06:10 +0000 | [diff] [blame] | 3777 | (castType != castExprType)) { |
| 3778 | const Type *DT = castType.getTypePtr(); |
| 3779 | QualType QDT = castType; |
| 3780 | // We desugar some types but not others. We ignore those |
| 3781 | // that cannot happen in a cast; i.e. auto, and those which |
| 3782 | // should not be de-sugared; i.e typedef. |
| 3783 | if (const ParenType *PT = dyn_cast<ParenType>(DT)) |
| 3784 | QDT = PT->desugar(); |
| 3785 | else if (const TypeOfType *TP = dyn_cast<TypeOfType>(DT)) |
| 3786 | QDT = TP->desugar(); |
| 3787 | else if (const AttributedType *AT = dyn_cast<AttributedType>(DT)) |
| 3788 | QDT = AT->desugar(); |
| 3789 | if (QDT != castType && |
| 3790 | QDT.getObjCLifetime() != Qualifiers::OCL_None) { |
| 3791 | SourceLocation loc = |
| 3792 | (castRange.isValid() ? castRange.getBegin() |
| 3793 | : castExpr->getExprLoc()); |
| 3794 | Diag(loc, diag::err_arc_nolifetime_behavior); |
| 3795 | } |
Fariborz Jahanian | 2fa646d | 2011-10-28 20:06:07 +0000 | [diff] [blame] | 3796 | } |
| 3797 | return ACR_okay; |
| 3798 | } |
| 3799 | |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3800 | if (isAnyCLike(exprACTC) && isAnyCLike(castACTC)) return ACR_okay; |
| 3801 | |
| 3802 | // Allow all of these types to be cast to integer types (but not |
| 3803 | // vice-versa). |
| 3804 | if (castACTC == ACTC_none && castType->isIntegralType(Context)) |
| 3805 | return ACR_okay; |
| 3806 | |
| 3807 | // Allow casts between pointers to lifetime types (e.g., __strong id*) |
| 3808 | // and pointers to void (e.g., cv void *). Casting from void* to lifetime* |
| 3809 | // must be explicit. |
| 3810 | if (exprACTC == ACTC_indirectRetainable && castACTC == ACTC_voidPtr) |
| 3811 | return ACR_okay; |
| 3812 | if (castACTC == ACTC_indirectRetainable && exprACTC == ACTC_voidPtr && |
| 3813 | CCK != CCK_ImplicitConversion) |
| 3814 | return ACR_okay; |
| 3815 | |
Fariborz Jahanian | 36986c6 | 2012-07-27 22:37:07 +0000 | [diff] [blame] | 3816 | switch (ARCCastChecker(Context, exprACTC, castACTC, false).Visit(castExpr)) { |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3817 | // For invalid casts, fall through. |
| 3818 | case ACC_invalid: |
| 3819 | break; |
| 3820 | |
| 3821 | // Do nothing for both bottom and +0. |
| 3822 | case ACC_bottom: |
| 3823 | case ACC_plusZero: |
| 3824 | return ACR_okay; |
| 3825 | |
| 3826 | // If the result is +1, consume it here. |
| 3827 | case ACC_plusOne: |
| 3828 | castExpr = ImplicitCastExpr::Create(Context, castExpr->getType(), |
| 3829 | CK_ARCConsumeObject, castExpr, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3830 | nullptr, VK_RValue); |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3831 | ExprNeedsCleanups = true; |
| 3832 | return ACR_okay; |
| 3833 | } |
| 3834 | |
| 3835 | // If this is a non-implicit cast from id or block type to a |
| 3836 | // CoreFoundation type, delay complaining in case the cast is used |
| 3837 | // in an acceptable context. |
| 3838 | if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC) && |
| 3839 | CCK != CCK_ImplicitConversion) |
| 3840 | return ACR_unbridged; |
| 3841 | |
Fariborz Jahanian | bd714e9 | 2013-12-17 19:33:43 +0000 | [diff] [blame] | 3842 | // Do not issue bridge cast" diagnostic when implicit casting a cstring |
| 3843 | // to 'NSString *'. Let caller issue a normal mismatched diagnostic with |
| 3844 | // suitable fix-it. |
Fariborz Jahanian | 283bf89 | 2013-12-18 21:04:43 +0000 | [diff] [blame] | 3845 | if (castACTC == ACTC_retainable && exprACTC == ACTC_none && |
| 3846 | ConversionToObjCStringLiteralCheck(castType, castExpr)) |
| 3847 | return ACR_okay; |
Fariborz Jahanian | bd714e9 | 2013-12-17 19:33:43 +0000 | [diff] [blame] | 3848 | |
Fariborz Jahanian | 25eef19 | 2013-07-31 21:40:51 +0000 | [diff] [blame] | 3849 | // Do not issue "bridge cast" diagnostic when implicit casting |
| 3850 | // a retainable object to a CF type parameter belonging to an audited |
| 3851 | // CF API function. Let caller issue a normal type mismatched diagnostic |
| 3852 | // instead. |
| 3853 | if (!DiagnoseCFAudited || exprACTC != ACTC_retainable || |
| 3854 | castACTC != ACTC_coreFoundation) |
Fariborz Jahanian | c03ef57 | 2014-06-18 23:52:49 +0000 | [diff] [blame] | 3855 | if (!(exprACTC == ACTC_voidPtr && castACTC == ACTC_retainable && |
| 3856 | (Opc == BO_NE || Opc == BO_EQ))) |
| 3857 | diagnoseObjCARCConversion(*this, castRange, castType, castACTC, |
| 3858 | castExpr, castExpr, exprACTC, CCK); |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3859 | return ACR_okay; |
| 3860 | } |
| 3861 | |
| 3862 | /// Given that we saw an expression with the ARCUnbridgedCastTy |
| 3863 | /// placeholder type, complain bitterly. |
| 3864 | void Sema::diagnoseARCUnbridgedCast(Expr *e) { |
| 3865 | // We expect the spurious ImplicitCastExpr to already have been stripped. |
| 3866 | assert(!e->hasPlaceholderType(BuiltinType::ARCUnbridgedCast)); |
| 3867 | CastExpr *realCast = cast<CastExpr>(e->IgnoreParens()); |
| 3868 | |
| 3869 | SourceRange castRange; |
| 3870 | QualType castType; |
| 3871 | CheckedConversionKind CCK; |
| 3872 | |
| 3873 | if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) { |
| 3874 | castRange = SourceRange(cast->getLParenLoc(), cast->getRParenLoc()); |
| 3875 | castType = cast->getTypeAsWritten(); |
| 3876 | CCK = CCK_CStyleCast; |
| 3877 | } else if (ExplicitCastExpr *cast = dyn_cast<ExplicitCastExpr>(realCast)) { |
| 3878 | castRange = cast->getTypeInfoAsWritten()->getTypeLoc().getSourceRange(); |
| 3879 | castType = cast->getTypeAsWritten(); |
| 3880 | CCK = CCK_OtherCast; |
| 3881 | } else { |
| 3882 | castType = cast->getType(); |
| 3883 | CCK = CCK_ImplicitConversion; |
| 3884 | } |
| 3885 | |
| 3886 | ARCConversionTypeClass castACTC = |
| 3887 | classifyTypeForARCConversion(castType.getNonReferenceType()); |
| 3888 | |
| 3889 | Expr *castExpr = realCast->getSubExpr(); |
| 3890 | assert(classifyTypeForARCConversion(castExpr->getType()) == ACTC_retainable); |
| 3891 | |
| 3892 | diagnoseObjCARCConversion(*this, castRange, castType, castACTC, |
Fariborz Jahanian | f073871 | 2013-02-22 22:02:53 +0000 | [diff] [blame] | 3893 | castExpr, realCast, ACTC_retainable, CCK); |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3894 | } |
| 3895 | |
| 3896 | /// stripARCUnbridgedCast - Given an expression of ARCUnbridgedCast |
| 3897 | /// type, remove the placeholder cast. |
| 3898 | Expr *Sema::stripARCUnbridgedCast(Expr *e) { |
| 3899 | assert(e->hasPlaceholderType(BuiltinType::ARCUnbridgedCast)); |
| 3900 | |
| 3901 | if (ParenExpr *pe = dyn_cast<ParenExpr>(e)) { |
| 3902 | Expr *sub = stripARCUnbridgedCast(pe->getSubExpr()); |
| 3903 | return new (Context) ParenExpr(pe->getLParen(), pe->getRParen(), sub); |
| 3904 | } else if (UnaryOperator *uo = dyn_cast<UnaryOperator>(e)) { |
| 3905 | assert(uo->getOpcode() == UO_Extension); |
| 3906 | Expr *sub = stripARCUnbridgedCast(uo->getSubExpr()); |
| 3907 | return new (Context) UnaryOperator(sub, UO_Extension, sub->getType(), |
| 3908 | sub->getValueKind(), sub->getObjectKind(), |
| 3909 | uo->getOperatorLoc()); |
| 3910 | } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { |
| 3911 | assert(!gse->isResultDependent()); |
| 3912 | |
| 3913 | unsigned n = gse->getNumAssocs(); |
| 3914 | SmallVector<Expr*, 4> subExprs(n); |
| 3915 | SmallVector<TypeSourceInfo*, 4> subTypes(n); |
| 3916 | for (unsigned i = 0; i != n; ++i) { |
| 3917 | subTypes[i] = gse->getAssocTypeSourceInfo(i); |
| 3918 | Expr *sub = gse->getAssocExpr(i); |
| 3919 | if (i == gse->getResultIndex()) |
| 3920 | sub = stripARCUnbridgedCast(sub); |
| 3921 | subExprs[i] = sub; |
| 3922 | } |
| 3923 | |
| 3924 | return new (Context) GenericSelectionExpr(Context, gse->getGenericLoc(), |
| 3925 | gse->getControllingExpr(), |
Benjamin Kramer | c215e76 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3926 | subTypes, subExprs, |
| 3927 | gse->getDefaultLoc(), |
John McCall | 4124c49 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3928 | gse->getRParenLoc(), |
| 3929 | gse->containsUnexpandedParameterPack(), |
| 3930 | gse->getResultIndex()); |
| 3931 | } else { |
| 3932 | assert(isa<ImplicitCastExpr>(e) && "bad form of unbridged cast!"); |
| 3933 | return cast<ImplicitCastExpr>(e)->getSubExpr(); |
| 3934 | } |
| 3935 | } |
| 3936 | |
Fariborz Jahanian | 7fcce68 | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 3937 | bool Sema::CheckObjCARCUnavailableWeakConversion(QualType castType, |
| 3938 | QualType exprType) { |
| 3939 | QualType canCastType = |
| 3940 | Context.getCanonicalType(castType).getUnqualifiedType(); |
| 3941 | QualType canExprType = |
| 3942 | Context.getCanonicalType(exprType).getUnqualifiedType(); |
| 3943 | if (isa<ObjCObjectPointerType>(canCastType) && |
| 3944 | castType.getObjCLifetime() == Qualifiers::OCL_Weak && |
| 3945 | canExprType->isObjCObjectPointerType()) { |
| 3946 | if (const ObjCObjectPointerType *ObjT = |
| 3947 | canExprType->getAs<ObjCObjectPointerType>()) |
Richard Smith | 802c4b7 | 2012-08-23 06:16:52 +0000 | [diff] [blame] | 3948 | if (const ObjCInterfaceDecl *ObjI = ObjT->getInterfaceDecl()) |
| 3949 | return !ObjI->isArcWeakrefUnavailable(); |
Fariborz Jahanian | 7fcce68 | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 3950 | } |
| 3951 | return true; |
| 3952 | } |
| 3953 | |
John McCall | 4db5c3c | 2011-07-07 06:58:02 +0000 | [diff] [blame] | 3954 | /// Look for an ObjCReclaimReturnedObject cast and destroy it. |
| 3955 | static Expr *maybeUndoReclaimObject(Expr *e) { |
| 3956 | // For now, we just undo operands that are *immediately* reclaim |
| 3957 | // expressions, which prevents the vast majority of potential |
| 3958 | // problems here. To catch them all, we'd need to rebuild arbitrary |
| 3959 | // value-propagating subexpressions --- we can't reliably rebuild |
| 3960 | // in-place because of expression sharing. |
| 3961 | if (ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e)) |
John McCall | 2d637d2 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 3962 | if (ice->getCastKind() == CK_ARCReclaimReturnedObject) |
John McCall | 4db5c3c | 2011-07-07 06:58:02 +0000 | [diff] [blame] | 3963 | return ice->getSubExpr(); |
| 3964 | |
| 3965 | return e; |
| 3966 | } |
| 3967 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3968 | ExprResult Sema::BuildObjCBridgedCast(SourceLocation LParenLoc, |
| 3969 | ObjCBridgeCastKind Kind, |
| 3970 | SourceLocation BridgeKeywordLoc, |
| 3971 | TypeSourceInfo *TSInfo, |
| 3972 | Expr *SubExpr) { |
John McCall | eb07554 | 2011-08-26 00:48:42 +0000 | [diff] [blame] | 3973 | ExprResult SubResult = UsualUnaryConversions(SubExpr); |
| 3974 | if (SubResult.isInvalid()) return ExprError(); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 3975 | SubExpr = SubResult.get(); |
John McCall | eb07554 | 2011-08-26 00:48:42 +0000 | [diff] [blame] | 3976 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3977 | QualType T = TSInfo->getType(); |
| 3978 | QualType FromType = SubExpr->getType(); |
| 3979 | |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 3980 | CastKind CK; |
| 3981 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3982 | bool MustConsume = false; |
| 3983 | if (T->isDependentType() || SubExpr->isTypeDependent()) { |
| 3984 | // Okay: we'll build a dependent expression type. |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 3985 | CK = CK_Dependent; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3986 | } else if (T->isObjCARCBridgableType() && FromType->isCARCBridgableType()) { |
| 3987 | // Casting CF -> id |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 3988 | CK = (T->isBlockPointerType() ? CK_AnyPointerToBlockPointerCast |
| 3989 | : CK_CPointerToObjCPointerCast); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3990 | switch (Kind) { |
| 3991 | case OBC_Bridge: |
| 3992 | break; |
| 3993 | |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 3994 | case OBC_BridgeRetained: { |
Argyrios Kyrtzidis | 273c7c4 | 2012-06-01 00:10:47 +0000 | [diff] [blame] | 3995 | bool br = isKnownName("CFBridgingRelease"); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3996 | Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) |
| 3997 | << 2 |
| 3998 | << FromType |
| 3999 | << (T->isBlockPointerType()? 1 : 0) |
| 4000 | << T |
| 4001 | << SubExpr->getSourceRange() |
| 4002 | << Kind; |
| 4003 | Diag(BridgeKeywordLoc, diag::note_arc_bridge) |
| 4004 | << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge"); |
| 4005 | Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer) |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 4006 | << FromType << br |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4007 | << FixItHint::CreateReplacement(BridgeKeywordLoc, |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 4008 | br ? "CFBridgingRelease " |
| 4009 | : "__bridge_transfer "); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4010 | |
| 4011 | Kind = OBC_Bridge; |
| 4012 | break; |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 4013 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4014 | |
| 4015 | case OBC_BridgeTransfer: |
| 4016 | // We must consume the Objective-C object produced by the cast. |
| 4017 | MustConsume = true; |
| 4018 | break; |
| 4019 | } |
| 4020 | } else if (T->isCARCBridgableType() && FromType->isObjCARCBridgableType()) { |
| 4021 | // Okay: id -> CF |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4022 | CK = CK_BitCast; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4023 | switch (Kind) { |
| 4024 | case OBC_Bridge: |
John McCall | 4db5c3c | 2011-07-07 06:58:02 +0000 | [diff] [blame] | 4025 | // Reclaiming a value that's going to be __bridge-casted to CF |
| 4026 | // is very dangerous, so we don't do it. |
| 4027 | SubExpr = maybeUndoReclaimObject(SubExpr); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4028 | break; |
| 4029 | |
| 4030 | case OBC_BridgeRetained: |
| 4031 | // Produce the object before casting it. |
| 4032 | SubExpr = ImplicitCastExpr::Create(Context, FromType, |
John McCall | 2d637d2 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 4033 | CK_ARCProduceObject, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4034 | SubExpr, nullptr, VK_RValue); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4035 | break; |
| 4036 | |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 4037 | case OBC_BridgeTransfer: { |
Argyrios Kyrtzidis | 273c7c4 | 2012-06-01 00:10:47 +0000 | [diff] [blame] | 4038 | bool br = isKnownName("CFBridgingRetain"); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4039 | Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) |
| 4040 | << (FromType->isBlockPointerType()? 1 : 0) |
| 4041 | << FromType |
| 4042 | << 2 |
| 4043 | << T |
| 4044 | << SubExpr->getSourceRange() |
| 4045 | << Kind; |
| 4046 | |
| 4047 | Diag(BridgeKeywordLoc, diag::note_arc_bridge) |
| 4048 | << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge "); |
| 4049 | Diag(BridgeKeywordLoc, diag::note_arc_bridge_retained) |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 4050 | << T << br |
| 4051 | << FixItHint::CreateReplacement(BridgeKeywordLoc, |
| 4052 | br ? "CFBridgingRetain " : "__bridge_retained"); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4053 | |
| 4054 | Kind = OBC_Bridge; |
| 4055 | break; |
| 4056 | } |
Fariborz Jahanian | 30febeb | 2012-02-01 22:56:20 +0000 | [diff] [blame] | 4057 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4058 | } else { |
| 4059 | Diag(LParenLoc, diag::err_arc_bridge_cast_incompatible) |
| 4060 | << FromType << T << Kind |
| 4061 | << SubExpr->getSourceRange() |
| 4062 | << TSInfo->getTypeLoc().getSourceRange(); |
| 4063 | return ExprError(); |
| 4064 | } |
| 4065 | |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4066 | Expr *Result = new (Context) ObjCBridgedCastExpr(LParenLoc, Kind, CK, |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4067 | BridgeKeywordLoc, |
| 4068 | TSInfo, SubExpr); |
| 4069 | |
| 4070 | if (MustConsume) { |
| 4071 | ExprNeedsCleanups = true; |
John McCall | 2d637d2 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 4072 | Result = ImplicitCastExpr::Create(Context, T, CK_ARCConsumeObject, Result, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4073 | nullptr, VK_RValue); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4074 | } |
| 4075 | |
| 4076 | return Result; |
| 4077 | } |
| 4078 | |
| 4079 | ExprResult Sema::ActOnObjCBridgedCast(Scope *S, |
| 4080 | SourceLocation LParenLoc, |
| 4081 | ObjCBridgeCastKind Kind, |
| 4082 | SourceLocation BridgeKeywordLoc, |
| 4083 | ParsedType Type, |
| 4084 | SourceLocation RParenLoc, |
| 4085 | Expr *SubExpr) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4086 | TypeSourceInfo *TSInfo = nullptr; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4087 | QualType T = GetTypeFromParser(Type, &TSInfo); |
Fariborz Jahanian | 8c5b4be | 2013-11-21 00:39:36 +0000 | [diff] [blame] | 4088 | if (Kind == OBC_Bridge) |
| 4089 | CheckTollFreeBridgeCast(T, SubExpr); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4090 | if (!TSInfo) |
| 4091 | TSInfo = Context.getTrivialTypeSourceInfo(T, LParenLoc); |
| 4092 | return BuildObjCBridgedCast(LParenLoc, Kind, BridgeKeywordLoc, TSInfo, |
| 4093 | SubExpr); |
| 4094 | } |