Chris Lattner | 85a932e | 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 | |
| 14 | #include "Sema.h" |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 15 | #include "Lookup.h" |
Douglas Gregor | 688fc9b | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 16 | #include "SemaInit.h" |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
| 18 | #include "clang/AST/DeclObjC.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 19 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 20 | #include "clang/AST/TypeLoc.h" |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallString.h" |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 22 | #include "clang/Lex/Preprocessor.h" |
| 23 | |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 26 | Sema::ExprResult Sema::ParseObjCStringLiteral(SourceLocation *AtLocs, |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 27 | ExprTy **strings, |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 28 | unsigned NumStrings) { |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 29 | StringLiteral **Strings = reinterpret_cast<StringLiteral**>(strings); |
| 30 | |
Chris Lattner | f4b136f | 2009-02-18 06:13:04 +0000 | [diff] [blame] | 31 | // Most ObjC strings are formed out of a single piece. However, we *can* |
| 32 | // have strings formed out of multiple @ strings with multiple pptokens in |
| 33 | // each one, e.g. @"foo" "bar" @"baz" "qux" which need to be turned into one |
| 34 | // StringLiteral for ObjCStringLiteral to hold onto. |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 35 | StringLiteral *S = Strings[0]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 36 | |
Chris Lattner | f4b136f | 2009-02-18 06:13:04 +0000 | [diff] [blame] | 37 | // If we have a multi-part string, merge it all together. |
| 38 | if (NumStrings != 1) { |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 39 | // Concatenate objc strings. |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 40 | llvm::SmallString<128> StrBuf; |
| 41 | llvm::SmallVector<SourceLocation, 8> StrLocs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 42 | |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 43 | for (unsigned i = 0; i != NumStrings; ++i) { |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 44 | S = Strings[i]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 45 | |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 46 | // ObjC strings can't be wide. |
Chris Lattner | f4b136f | 2009-02-18 06:13:04 +0000 | [diff] [blame] | 47 | if (S->isWide()) { |
| 48 | Diag(S->getLocStart(), diag::err_cfstring_literal_not_string_constant) |
| 49 | << S->getSourceRange(); |
| 50 | return true; |
| 51 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 52 | |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 53 | // Get the string data. |
| 54 | StrBuf.append(S->getStrData(), S->getStrData()+S->getByteLength()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 56 | // Get the locations of the string tokens. |
| 57 | StrLocs.append(S->tokloc_begin(), S->tokloc_end()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 59 | // Free the temporary string. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 60 | S->Destroy(Context); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 61 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 62 | |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 63 | // Create the aggregate string with the appropriate content and location |
| 64 | // information. |
| 65 | S = StringLiteral::Create(Context, &StrBuf[0], StrBuf.size(), false, |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 66 | Context.getPointerType(Context.CharTy), |
Chris Lattner | 39c28bb | 2009-02-18 06:48:40 +0000 | [diff] [blame] | 67 | &StrLocs[0], StrLocs.size()); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 68 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 6903981 | 2009-02-18 06:01:06 +0000 | [diff] [blame] | 70 | // Verify that this composite string is acceptable for ObjC strings. |
| 71 | if (CheckObjCString(S)) |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 72 | return true; |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 73 | |
| 74 | // Initialize the constant string interface lazily. This assumes |
Steve Naroff | d9fd764 | 2009-04-07 14:18:33 +0000 | [diff] [blame] | 75 | // the NSString interface is seen in this translation unit. Note: We |
| 76 | // don't use NSConstantString, since the runtime team considers this |
| 77 | // interface private (even though it appears in the header files). |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 78 | QualType Ty = Context.getObjCConstantStringInterface(); |
| 79 | if (!Ty.isNull()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 80 | Ty = Context.getObjCObjectPointerType(Ty); |
Fariborz Jahanian | 8a43776 | 2010-04-23 23:19:04 +0000 | [diff] [blame] | 81 | } else if (getLangOptions().NoConstantCFStrings) { |
| 82 | IdentifierInfo *NSIdent = &Context.Idents.get("NSConstantString"); |
| 83 | NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLocs[0], |
| 84 | LookupOrdinaryName); |
| 85 | if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) { |
| 86 | Context.setObjCConstantStringInterface(StrIF); |
| 87 | Ty = Context.getObjCConstantStringInterface(); |
| 88 | Ty = Context.getObjCObjectPointerType(Ty); |
| 89 | } else { |
| 90 | // If there is no NSConstantString interface defined then treat this |
| 91 | // as error and recover from it. |
| 92 | Diag(S->getLocStart(), diag::err_no_nsconstant_string_class) << NSIdent |
| 93 | << S->getSourceRange(); |
| 94 | Ty = Context.getObjCIdType(); |
| 95 | } |
Chris Lattner | 13fd7e5 | 2008-06-21 21:44:18 +0000 | [diff] [blame] | 96 | } else { |
Steve Naroff | d9fd764 | 2009-04-07 14:18:33 +0000 | [diff] [blame] | 97 | IdentifierInfo *NSIdent = &Context.Idents.get("NSString"); |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 98 | NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLocs[0], |
| 99 | LookupOrdinaryName); |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 100 | if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) { |
| 101 | Context.setObjCConstantStringInterface(StrIF); |
| 102 | Ty = Context.getObjCConstantStringInterface(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 103 | Ty = Context.getObjCObjectPointerType(Ty); |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 104 | } else { |
Steve Naroff | d9fd764 | 2009-04-07 14:18:33 +0000 | [diff] [blame] | 105 | // If there is no NSString interface defined then treat constant |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 106 | // strings as untyped objects and let the runtime figure it out later. |
| 107 | Ty = Context.getObjCIdType(); |
| 108 | } |
Chris Lattner | 13fd7e5 | 2008-06-21 21:44:18 +0000 | [diff] [blame] | 109 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 110 | |
Chris Lattner | f4b136f | 2009-02-18 06:13:04 +0000 | [diff] [blame] | 111 | return new (Context) ObjCStringLiteral(S, Ty, AtLocs[0]); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 114 | Expr *Sema::BuildObjCEncodeExpression(SourceLocation AtLoc, |
Douglas Gregor | 81d3466 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 115 | TypeSourceInfo *EncodedTypeInfo, |
Anders Carlsson | fc0f021 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 116 | SourceLocation RParenLoc) { |
Douglas Gregor | 81d3466 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 117 | QualType EncodedType = EncodedTypeInfo->getType(); |
Anders Carlsson | fc0f021 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 118 | QualType StrTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 119 | if (EncodedType->isDependentType()) |
Anders Carlsson | fc0f021 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 120 | StrTy = Context.DependentTy; |
| 121 | else { |
| 122 | std::string Str; |
| 123 | Context.getObjCEncodingForType(EncodedType, Str); |
| 124 | |
| 125 | // The type of @encode is the same as the type of the corresponding string, |
| 126 | // which is an array type. |
| 127 | StrTy = Context.CharTy; |
| 128 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
John McCall | 4b7a834 | 2010-03-15 10:54:44 +0000 | [diff] [blame] | 129 | if (getLangOptions().CPlusPlus || getLangOptions().ConstStrings) |
Anders Carlsson | fc0f021 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 130 | StrTy.addConst(); |
| 131 | StrTy = Context.getConstantArrayType(StrTy, llvm::APInt(32, Str.size()+1), |
| 132 | ArrayType::Normal, 0); |
| 133 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 134 | |
Douglas Gregor | 81d3466 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 135 | return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc); |
Anders Carlsson | fc0f021 | 2009-06-07 18:45:35 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 138 | Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc, |
| 139 | SourceLocation EncodeLoc, |
| 140 | SourceLocation LParenLoc, |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 141 | TypeTy *ty, |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 142 | SourceLocation RParenLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 143 | // FIXME: Preserve type source info ? |
Douglas Gregor | 81d3466 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 144 | TypeSourceInfo *TInfo; |
| 145 | QualType EncodedType = GetTypeFromParser(ty, &TInfo); |
| 146 | if (!TInfo) |
| 147 | TInfo = Context.getTrivialTypeSourceInfo(EncodedType, |
| 148 | PP.getLocForEndOfToken(LParenLoc)); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 149 | |
Douglas Gregor | 81d3466 | 2010-04-20 15:39:42 +0000 | [diff] [blame] | 150 | return BuildObjCEncodeExpression(AtLoc, TInfo, RParenLoc); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel, |
| 154 | SourceLocation AtLoc, |
| 155 | SourceLocation SelLoc, |
| 156 | SourceLocation LParenLoc, |
| 157 | SourceLocation RParenLoc) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 158 | ObjCMethodDecl *Method = LookupInstanceMethodInGlobalPool(Sel, |
Fariborz Jahanian | 835ed7f | 2009-08-22 21:13:55 +0000 | [diff] [blame] | 159 | SourceRange(LParenLoc, RParenLoc), false); |
Fariborz Jahanian | 7ff22de | 2009-06-16 16:25:00 +0000 | [diff] [blame] | 160 | if (!Method) |
| 161 | Method = LookupFactoryMethodInGlobalPool(Sel, |
| 162 | SourceRange(LParenLoc, RParenLoc)); |
| 163 | if (!Method) |
| 164 | Diag(SelLoc, diag::warn_undeclared_selector) << Sel; |
| 165 | |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 166 | QualType Ty = Context.getObjCSelType(); |
Daniel Dunbar | 6d5a1c2 | 2010-02-03 20:11:42 +0000 | [diff] [blame] | 167 | return new (Context) ObjCSelectorExpr(Ty, Sel, AtLoc, RParenLoc); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | Sema::ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId, |
| 171 | SourceLocation AtLoc, |
| 172 | SourceLocation ProtoLoc, |
| 173 | SourceLocation LParenLoc, |
| 174 | SourceLocation RParenLoc) { |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 175 | ObjCProtocolDecl* PDecl = LookupProtocol(ProtocolId, ProtoLoc); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 176 | if (!PDecl) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 177 | Diag(ProtoLoc, diag::err_undeclared_protocol) << ProtocolId; |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 178 | return true; |
| 179 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 180 | |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 181 | QualType Ty = Context.getObjCProtoType(); |
| 182 | if (Ty.isNull()) |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 183 | return true; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 184 | Ty = Context.getObjCObjectPointerType(Ty); |
Chris Lattner | a0af1fe | 2009-02-18 06:06:56 +0000 | [diff] [blame] | 185 | return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, RParenLoc); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 188 | bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs, |
| 189 | Selector Sel, ObjCMethodDecl *Method, |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 190 | bool isClassMessage, |
Daniel Dunbar | 637cebb | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 191 | SourceLocation lbrac, SourceLocation rbrac, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 192 | QualType &ReturnType) { |
Daniel Dunbar | 637cebb | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 193 | if (!Method) { |
Daniel Dunbar | 6660c8a | 2008-09-11 00:04:36 +0000 | [diff] [blame] | 194 | // Apply default argument promotion as for (C99 6.5.2.2p6). |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 195 | for (unsigned i = 0; i != NumArgs; i++) { |
| 196 | if (Args[i]->isTypeDependent()) |
| 197 | continue; |
| 198 | |
Daniel Dunbar | 6660c8a | 2008-09-11 00:04:36 +0000 | [diff] [blame] | 199 | DefaultArgumentPromotion(Args[i]); |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 200 | } |
Daniel Dunbar | 6660c8a | 2008-09-11 00:04:36 +0000 | [diff] [blame] | 201 | |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 202 | unsigned DiagID = isClassMessage ? diag::warn_class_method_not_found : |
| 203 | diag::warn_inst_method_not_found; |
| 204 | Diag(lbrac, DiagID) |
| 205 | << Sel << isClassMessage << SourceRange(lbrac, rbrac); |
Daniel Dunbar | 637cebb | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 206 | ReturnType = Context.getObjCIdType(); |
| 207 | return false; |
Daniel Dunbar | 637cebb | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 208 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 209 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 210 | ReturnType = Method->getResultType().getNonReferenceType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 211 | |
Daniel Dunbar | 91e19b2 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 212 | unsigned NumNamedArgs = Sel.getNumArgs(); |
Fariborz Jahanian | 4f4fd92 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 213 | // Method might have more arguments than selector indicates. This is due |
| 214 | // to addition of c-style arguments in method. |
| 215 | if (Method->param_size() > Sel.getNumArgs()) |
| 216 | NumNamedArgs = Method->param_size(); |
| 217 | // FIXME. This need be cleaned up. |
| 218 | if (NumArgs < NumNamedArgs) { |
Eric Christopher | d77b9a2 | 2010-04-16 04:48:22 +0000 | [diff] [blame] | 219 | Diag(lbrac, diag::err_typecheck_call_too_few_args) << 2 |
| 220 | << NumNamedArgs << NumArgs; |
Fariborz Jahanian | 4f4fd92 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 221 | return false; |
| 222 | } |
Daniel Dunbar | 91e19b2 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 223 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 224 | bool IsError = false; |
Daniel Dunbar | 91e19b2 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 225 | for (unsigned i = 0; i < NumNamedArgs; i++) { |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 226 | // We can't do any type-checking on a type-dependent argument. |
| 227 | if (Args[i]->isTypeDependent()) |
| 228 | continue; |
| 229 | |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 230 | Expr *argExpr = Args[i]; |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 231 | |
Douglas Gregor | 688fc9b | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 232 | ParmVarDecl *Param = Method->param_begin()[i]; |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 233 | assert(argExpr && "CheckMessageArgumentTypes(): missing expression"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 234 | |
Douglas Gregor | 688fc9b | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 235 | if (RequireCompleteType(argExpr->getSourceRange().getBegin(), |
| 236 | Param->getType(), |
| 237 | PDiag(diag::err_call_incomplete_argument) |
| 238 | << argExpr->getSourceRange())) |
| 239 | return true; |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 240 | |
Douglas Gregor | 688fc9b | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 241 | InitializedEntity Entity = InitializedEntity::InitializeParameter(Param); |
| 242 | OwningExprResult ArgE = PerformCopyInitialization(Entity, |
| 243 | SourceLocation(), |
| 244 | Owned(argExpr->Retain())); |
| 245 | if (ArgE.isInvalid()) |
| 246 | IsError = true; |
| 247 | else |
| 248 | Args[i] = ArgE.takeAs<Expr>(); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 249 | } |
Daniel Dunbar | 91e19b2 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 250 | |
| 251 | // Promote additional arguments to variadic methods. |
| 252 | if (Method->isVariadic()) { |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 253 | for (unsigned i = NumNamedArgs; i < NumArgs; ++i) { |
| 254 | if (Args[i]->isTypeDependent()) |
| 255 | continue; |
| 256 | |
Chris Lattner | 4037833 | 2010-05-16 04:01:30 +0000 | [diff] [blame] | 257 | IsError |= DefaultVariadicArgumentPromotion(Args[i], VariadicMethod, 0); |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 258 | } |
Daniel Dunbar | 91e19b2 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 259 | } else { |
| 260 | // Check for extra arguments to non-variadic methods. |
| 261 | if (NumArgs != NumNamedArgs) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 262 | Diag(Args[NumNamedArgs]->getLocStart(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 263 | diag::err_typecheck_call_too_many_args) |
Eric Christopher | ccfa963 | 2010-04-16 04:56:46 +0000 | [diff] [blame] | 264 | << 2 /*method*/ << NumNamedArgs << NumArgs |
| 265 | << Method->getSourceRange() |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 266 | << SourceRange(Args[NumNamedArgs]->getLocStart(), |
| 267 | Args[NumArgs-1]->getLocEnd()); |
Daniel Dunbar | 91e19b2 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 268 | } |
| 269 | } |
| 270 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 271 | DiagnoseSentinelCalls(Method, lbrac, Args, NumArgs); |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 272 | return IsError; |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 275 | bool Sema::isSelfExpr(Expr *RExpr) { |
| 276 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(RExpr)) |
| 277 | if (DRE->getDecl()->getIdentifier() == &Context.Idents.get("self")) |
| 278 | return true; |
| 279 | return false; |
| 280 | } |
| 281 | |
Steve Naroff | f1afaf6 | 2009-02-26 15:55:06 +0000 | [diff] [blame] | 282 | // Helper method for ActOnClassMethod/ActOnInstanceMethod. |
| 283 | // Will search "local" class/category implementations for a method decl. |
Fariborz Jahanian | 175ba1e | 2009-03-04 18:15:57 +0000 | [diff] [blame] | 284 | // If failed, then we search in class's root for an instance method. |
Steve Naroff | f1afaf6 | 2009-02-26 15:55:06 +0000 | [diff] [blame] | 285 | // Returns 0 if no method is found. |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 286 | ObjCMethodDecl *Sema::LookupPrivateClassMethod(Selector Sel, |
Steve Naroff | f1afaf6 | 2009-02-26 15:55:06 +0000 | [diff] [blame] | 287 | ObjCInterfaceDecl *ClassDecl) { |
| 288 | ObjCMethodDecl *Method = 0; |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 289 | // lookup in class and all superclasses |
| 290 | while (ClassDecl && !Method) { |
Argyrios Kyrtzidis | 8701877 | 2009-07-21 00:06:04 +0000 | [diff] [blame] | 291 | if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 292 | Method = ImpDecl->getClassMethod(Sel); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 293 | |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 294 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 295 | if (!Method) |
| 296 | Method = ClassDecl->getCategoryClassMethod(Sel); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 297 | |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 298 | // Before we give up, check if the selector is an instance method. |
| 299 | // But only in the root. This matches gcc's behaviour and what the |
| 300 | // runtime expects. |
| 301 | if (!Method && !ClassDecl->getSuperClass()) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 302 | Method = ClassDecl->lookupInstanceMethod(Sel); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 303 | // Look through local category implementations associated |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 304 | // with the root class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 305 | if (!Method) |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 306 | Method = LookupPrivateInstanceMethod(Sel, ClassDecl); |
| 307 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 308 | |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 309 | ClassDecl = ClassDecl->getSuperClass(); |
Steve Naroff | f1afaf6 | 2009-02-26 15:55:06 +0000 | [diff] [blame] | 310 | } |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 311 | return Method; |
| 312 | } |
| 313 | |
| 314 | ObjCMethodDecl *Sema::LookupPrivateInstanceMethod(Selector Sel, |
| 315 | ObjCInterfaceDecl *ClassDecl) { |
| 316 | ObjCMethodDecl *Method = 0; |
| 317 | while (ClassDecl && !Method) { |
| 318 | // If we have implementations in scope, check "private" methods. |
Argyrios Kyrtzidis | 8701877 | 2009-07-21 00:06:04 +0000 | [diff] [blame] | 319 | if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 320 | Method = ImpDecl->getInstanceMethod(Sel); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 321 | |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 322 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 323 | if (!Method) |
| 324 | Method = ClassDecl->getCategoryInstanceMethod(Sel); |
Steve Naroff | 5609ec0 | 2009-03-08 18:56:13 +0000 | [diff] [blame] | 325 | ClassDecl = ClassDecl->getSuperClass(); |
Fariborz Jahanian | 175ba1e | 2009-03-04 18:15:57 +0000 | [diff] [blame] | 326 | } |
Steve Naroff | f1afaf6 | 2009-02-26 15:55:06 +0000 | [diff] [blame] | 327 | return Method; |
| 328 | } |
| 329 | |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 330 | /// HandleExprPropertyRefExpr - Handle foo.bar where foo is a pointer to an |
| 331 | /// objective C interface. This is a property reference expression. |
| 332 | Action::OwningExprResult Sema:: |
| 333 | HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, |
Chris Lattner | b9d4fc1 | 2010-04-11 07:51:10 +0000 | [diff] [blame] | 334 | Expr *BaseExpr, DeclarationName MemberName, |
| 335 | SourceLocation MemberLoc) { |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 336 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 337 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
| 338 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 339 | |
| 340 | // Search for a declared property first. |
| 341 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) { |
| 342 | // Check whether we can reference this property. |
| 343 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 344 | return ExprError(); |
| 345 | QualType ResTy = PD->getType(); |
| 346 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 347 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
| 348 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 349 | ResTy = Getter->getResultType(); |
| 350 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
| 351 | MemberLoc, BaseExpr)); |
| 352 | } |
| 353 | // Check protocols on qualified interfaces. |
| 354 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 355 | E = OPT->qual_end(); I != E; ++I) |
| 356 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
| 357 | // Check whether we can reference this property. |
| 358 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 359 | return ExprError(); |
| 360 | |
| 361 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 362 | MemberLoc, BaseExpr)); |
| 363 | } |
| 364 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 365 | // selector is implemented. |
| 366 | |
| 367 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 368 | // shared with the code in ActOnInstanceMessage. |
| 369 | |
| 370 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 371 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
| 372 | |
| 373 | // If this reference is in an @implementation, check for 'private' methods. |
| 374 | if (!Getter) |
| 375 | Getter = IFace->lookupPrivateInstanceMethod(Sel); |
| 376 | |
| 377 | // Look through local category implementations associated with the class. |
| 378 | if (!Getter) |
| 379 | Getter = IFace->getCategoryInstanceMethod(Sel); |
| 380 | if (Getter) { |
| 381 | // Check if we can reference this property. |
| 382 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 383 | return ExprError(); |
| 384 | } |
| 385 | // If we found a getter then this may be a valid dot-reference, we |
| 386 | // will look for the matching setter, in case it is needed. |
| 387 | Selector SetterSel = |
| 388 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 389 | PP.getSelectorTable(), Member); |
| 390 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
| 391 | if (!Setter) { |
| 392 | // If this reference is in an @implementation, also check for 'private' |
| 393 | // methods. |
| 394 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
| 395 | } |
| 396 | // Look through local category implementations associated with the class. |
| 397 | if (!Setter) |
| 398 | Setter = IFace->getCategoryInstanceMethod(SetterSel); |
| 399 | |
| 400 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 401 | return ExprError(); |
| 402 | |
| 403 | if (Getter) { |
| 404 | QualType PType; |
| 405 | PType = Getter->getResultType(); |
| 406 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType, |
| 407 | Setter, MemberLoc, BaseExpr)); |
| 408 | } |
| 409 | |
| 410 | // Attempt to correct for typos in property names. |
| 411 | LookupResult Res(*this, MemberName, MemberLoc, LookupOrdinaryName); |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 412 | if (CorrectTypo(Res, 0, 0, IFace, false, CTC_NoKeywords, OPT) && |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 413 | Res.getAsSingle<ObjCPropertyDecl>()) { |
Chris Lattner | b9d4fc1 | 2010-04-11 07:51:10 +0000 | [diff] [blame] | 414 | DeclarationName TypoResult = Res.getLookupName(); |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 415 | Diag(MemberLoc, diag::err_property_not_found_suggest) |
Chris Lattner | b9d4fc1 | 2010-04-11 07:51:10 +0000 | [diff] [blame] | 416 | << MemberName << QualType(OPT, 0) << TypoResult |
| 417 | << FixItHint::CreateReplacement(MemberLoc, TypoResult.getAsString()); |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 418 | ObjCPropertyDecl *Property = Res.getAsSingle<ObjCPropertyDecl>(); |
| 419 | Diag(Property->getLocation(), diag::note_previous_decl) |
| 420 | << Property->getDeclName(); |
Chris Lattner | b9d4fc1 | 2010-04-11 07:51:10 +0000 | [diff] [blame] | 421 | return HandleExprPropertyRefExpr(OPT, BaseExpr, TypoResult, MemberLoc); |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 422 | } |
Chris Lattner | b9d4fc1 | 2010-04-11 07:51:10 +0000 | [diff] [blame] | 423 | |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 424 | Diag(MemberLoc, diag::err_property_not_found) |
| 425 | << MemberName << QualType(OPT, 0); |
| 426 | if (Setter && !Getter) |
| 427 | Diag(Setter->getLocation(), diag::note_getter_unavailable) |
| 428 | << MemberName << BaseExpr->getSourceRange(); |
| 429 | return ExprError(); |
Chris Lattner | 7f81652 | 2010-04-11 07:45:24 +0000 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | |
| 433 | |
Chris Lattner | eb483eb | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 434 | Action::OwningExprResult Sema:: |
| 435 | ActOnClassPropertyRefExpr(IdentifierInfo &receiverName, |
| 436 | IdentifierInfo &propertyName, |
| 437 | SourceLocation receiverNameLoc, |
| 438 | SourceLocation propertyNameLoc) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 439 | |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 440 | IdentifierInfo *receiverNamePtr = &receiverName; |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 441 | ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr, |
| 442 | receiverNameLoc); |
Chris Lattner | eb483eb | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 443 | if (IFace == 0) { |
| 444 | // If the "receiver" is 'super' in a method, handle it as an expression-like |
| 445 | // property reference. |
| 446 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) |
| 447 | if (receiverNamePtr->isStr("super")) { |
| 448 | if (CurMethod->isInstanceMethod()) { |
| 449 | QualType T = |
| 450 | Context.getObjCInterfaceType(CurMethod->getClassInterface()); |
| 451 | T = Context.getObjCObjectPointerType(T); |
| 452 | Expr *SuperExpr = new (Context) ObjCSuperExpr(receiverNameLoc, T); |
| 453 | |
| 454 | return HandleExprPropertyRefExpr(T->getAsObjCInterfacePointerType(), |
| 455 | SuperExpr, &propertyName, |
| 456 | propertyNameLoc); |
| 457 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 458 | |
Chris Lattner | eb483eb | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 459 | // Otherwise, if this is a class method, try dispatching to our |
| 460 | // superclass. |
| 461 | IFace = CurMethod->getClassInterface()->getSuperClass(); |
| 462 | } |
| 463 | |
| 464 | if (IFace == 0) { |
| 465 | Diag(receiverNameLoc, diag::err_expected_ident_or_lparen); |
| 466 | return ExprError(); |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | // Search for a declared property first. |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 471 | Selector Sel = PP.getSelectorTable().getNullarySelector(&propertyName); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 472 | ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel); |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 473 | |
| 474 | // If this reference is in an @implementation, check for 'private' methods. |
| 475 | if (!Getter) |
| 476 | if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) |
| 477 | if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) |
Argyrios Kyrtzidis | 8701877 | 2009-07-21 00:06:04 +0000 | [diff] [blame] | 478 | if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 479 | Getter = ImpDecl->getClassMethod(Sel); |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 480 | |
| 481 | if (Getter) { |
| 482 | // FIXME: refactor/share with ActOnMemberReference(). |
| 483 | // Check if we can reference this property. |
| 484 | if (DiagnoseUseOfDecl(Getter, propertyNameLoc)) |
| 485 | return ExprError(); |
| 486 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 487 | |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 488 | // Look for the matching setter, in case it is needed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 489 | Selector SetterSel = |
| 490 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
Steve Naroff | fdc92b7 | 2009-03-10 17:24:38 +0000 | [diff] [blame] | 491 | PP.getSelectorTable(), &propertyName); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 492 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 493 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 494 | if (!Setter) { |
| 495 | // If this reference is in an @implementation, also check for 'private' |
| 496 | // methods. |
| 497 | if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) |
| 498 | if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) |
Argyrios Kyrtzidis | 8701877 | 2009-07-21 00:06:04 +0000 | [diff] [blame] | 499 | if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 500 | Setter = ImpDecl->getClassMethod(SetterSel); |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 501 | } |
| 502 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 503 | if (!Setter) |
| 504 | Setter = IFace->getCategoryClassMethod(SetterSel); |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 505 | |
| 506 | if (Setter && DiagnoseUseOfDecl(Setter, propertyNameLoc)) |
| 507 | return ExprError(); |
| 508 | |
| 509 | if (Getter || Setter) { |
| 510 | QualType PType; |
| 511 | |
| 512 | if (Getter) |
| 513 | PType = Getter->getResultType(); |
| 514 | else { |
| 515 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 516 | E = Setter->param_end(); PI != E; ++PI) |
| 517 | PType = (*PI)->getType(); |
| 518 | } |
Fariborz Jahanian | 09105f5 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 519 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 520 | Getter, PType, Setter, |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 521 | propertyNameLoc, IFace, receiverNameLoc)); |
| 522 | } |
| 523 | return ExprError(Diag(propertyNameLoc, diag::err_property_not_found) |
| 524 | << &propertyName << Context.getObjCInterfaceType(IFace)); |
| 525 | } |
| 526 | |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 527 | Sema::ObjCMessageKind Sema::getObjCMessageKind(Scope *S, |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 528 | IdentifierInfo *Name, |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 529 | SourceLocation NameLoc, |
| 530 | bool IsSuper, |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 531 | bool HasTrailingDot, |
| 532 | TypeTy *&ReceiverType) { |
| 533 | ReceiverType = 0; |
| 534 | |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 535 | // If the identifier is "super" and there is no trailing dot, we're |
| 536 | // messaging super. |
| 537 | if (IsSuper && !HasTrailingDot && S->isInObjcMethodScope()) |
| 538 | return ObjCSuperMessage; |
| 539 | |
| 540 | LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName); |
| 541 | LookupName(Result, S); |
| 542 | |
| 543 | switch (Result.getResultKind()) { |
| 544 | case LookupResult::NotFound: |
Douglas Gregor | ed46442 | 2010-04-19 20:09:36 +0000 | [diff] [blame] | 545 | // Normal name lookup didn't find anything. If we're in an |
| 546 | // Objective-C method, look for ivars. If we find one, we're done! |
| 547 | // FIXME: This is a hack. Ivar lookup should be part of normal lookup. |
| 548 | if (ObjCMethodDecl *Method = getCurMethodDecl()) { |
| 549 | ObjCInterfaceDecl *ClassDeclared; |
| 550 | if (Method->getClassInterface()->lookupInstanceVariable(Name, |
| 551 | ClassDeclared)) |
| 552 | return ObjCInstanceMessage; |
| 553 | } |
| 554 | |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 555 | // Break out; we'll perform typo correction below. |
| 556 | break; |
| 557 | |
| 558 | case LookupResult::NotFoundInCurrentInstantiation: |
| 559 | case LookupResult::FoundOverloaded: |
| 560 | case LookupResult::FoundUnresolvedValue: |
| 561 | case LookupResult::Ambiguous: |
| 562 | Result.suppressDiagnostics(); |
| 563 | return ObjCInstanceMessage; |
| 564 | |
| 565 | case LookupResult::Found: { |
| 566 | // We found something. If it's a type, then we have a class |
| 567 | // message. Otherwise, it's an instance message. |
| 568 | NamedDecl *ND = Result.getFoundDecl(); |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 569 | QualType T; |
| 570 | if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(ND)) |
| 571 | T = Context.getObjCInterfaceType(Class); |
| 572 | else if (TypeDecl *Type = dyn_cast<TypeDecl>(ND)) |
| 573 | T = Context.getTypeDeclType(Type); |
| 574 | else |
| 575 | return ObjCInstanceMessage; |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 576 | |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 577 | // We have a class message, and T is the type we're |
| 578 | // messaging. Build source-location information for it. |
| 579 | TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc); |
| 580 | ReceiverType = CreateLocInfoType(T, TSInfo).getAsOpaquePtr(); |
| 581 | return ObjCClassMessage; |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 582 | } |
| 583 | } |
| 584 | |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 585 | // Determine our typo-correction context. |
| 586 | CorrectTypoContext CTC = CTC_Expression; |
| 587 | if (ObjCMethodDecl *Method = getCurMethodDecl()) |
| 588 | if (Method->getClassInterface() && |
| 589 | Method->getClassInterface()->getSuperClass()) |
| 590 | CTC = CTC_ObjCMessageReceiver; |
| 591 | |
| 592 | if (DeclarationName Corrected = CorrectTypo(Result, S, 0, 0, false, CTC)) { |
| 593 | if (Result.isSingleResult()) { |
| 594 | // If we found a declaration, correct when it refers to an Objective-C |
| 595 | // class. |
| 596 | NamedDecl *ND = Result.getFoundDecl(); |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 597 | if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(ND)) { |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 598 | Diag(NameLoc, diag::err_unknown_receiver_suggest) |
| 599 | << Name << Result.getLookupName() |
| 600 | << FixItHint::CreateReplacement(SourceRange(NameLoc), |
| 601 | ND->getNameAsString()); |
| 602 | Diag(ND->getLocation(), diag::note_previous_decl) |
| 603 | << Corrected; |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 604 | |
Douglas Gregor | 1569f95 | 2010-04-21 20:38:13 +0000 | [diff] [blame] | 605 | QualType T = Context.getObjCInterfaceType(Class); |
| 606 | TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc); |
| 607 | ReceiverType = CreateLocInfoType(T, TSInfo).getAsOpaquePtr(); |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 608 | return ObjCClassMessage; |
| 609 | } |
| 610 | } else if (Result.empty() && Corrected.getAsIdentifierInfo() && |
| 611 | Corrected.getAsIdentifierInfo()->isStr("super")) { |
| 612 | // If we've found the keyword "super", this is a send to super. |
| 613 | Diag(NameLoc, diag::err_unknown_receiver_suggest) |
| 614 | << Name << Corrected |
| 615 | << FixItHint::CreateReplacement(SourceRange(NameLoc), "super"); |
| 616 | Name = Corrected.getAsIdentifierInfo(); |
| 617 | return ObjCSuperMessage; |
Douglas Gregor | 47bd543 | 2010-04-14 02:46:37 +0000 | [diff] [blame] | 618 | } |
| 619 | } |
| 620 | |
| 621 | // Fall back: let the parser try to parse it as an instance message. |
| 622 | return ObjCInstanceMessage; |
| 623 | } |
Steve Naroff | 61f72cb | 2009-03-09 21:12:44 +0000 | [diff] [blame] | 624 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 625 | Sema::OwningExprResult Sema::ActOnSuperMessage(Scope *S, |
| 626 | SourceLocation SuperLoc, |
| 627 | Selector Sel, |
| 628 | SourceLocation LBracLoc, |
| 629 | SourceLocation SelectorLoc, |
| 630 | SourceLocation RBracLoc, |
| 631 | MultiExprArg Args) { |
| 632 | // Determine whether we are inside a method or not. |
| 633 | ObjCMethodDecl *Method = getCurMethodDecl(); |
Douglas Gregor | f95861a | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 634 | if (!Method) { |
| 635 | Diag(SuperLoc, diag::err_invalid_receiver_to_message_super); |
| 636 | return ExprError(); |
| 637 | } |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 638 | |
Douglas Gregor | f95861a | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 639 | ObjCInterfaceDecl *Class = Method->getClassInterface(); |
| 640 | if (!Class) { |
| 641 | Diag(SuperLoc, diag::error_no_super_class_message) |
| 642 | << Method->getDeclName(); |
| 643 | return ExprError(); |
| 644 | } |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 645 | |
Douglas Gregor | f95861a | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 646 | ObjCInterfaceDecl *Super = Class->getSuperClass(); |
| 647 | if (!Super) { |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 648 | // The current class does not have a superclass. |
| 649 | Diag(SuperLoc, diag::error_no_super_class) << Class->getIdentifier(); |
| 650 | return ExprError(); |
Chris Lattner | 15faee1 | 2010-04-12 05:38:43 +0000 | [diff] [blame] | 651 | } |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 652 | |
Douglas Gregor | f95861a | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 653 | // We are in a method whose class has a superclass, so 'super' |
| 654 | // is acting as a keyword. |
| 655 | if (Method->isInstanceMethod()) { |
| 656 | // Since we are in an instance method, this is an instance |
| 657 | // message to the superclass instance. |
| 658 | QualType SuperTy = Context.getObjCInterfaceType(Super); |
| 659 | SuperTy = Context.getObjCObjectPointerType(SuperTy); |
| 660 | return BuildInstanceMessage(ExprArg(*this), SuperTy, SuperLoc, |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 661 | Sel, /*Method=*/0, LBracLoc, RBracLoc, |
| 662 | move(Args)); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 663 | } |
Douglas Gregor | f95861a | 2010-04-21 20:01:04 +0000 | [diff] [blame] | 664 | |
| 665 | // Since we are in a class method, this is a class message to |
| 666 | // the superclass. |
| 667 | return BuildClassMessage(/*ReceiverTypeInfo=*/0, |
| 668 | Context.getObjCInterfaceType(Super), |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 669 | SuperLoc, Sel, /*Method=*/0, LBracLoc, RBracLoc, |
| 670 | move(Args)); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | /// \brief Build an Objective-C class message expression. |
| 674 | /// |
| 675 | /// This routine takes care of both normal class messages and |
| 676 | /// class messages to the superclass. |
| 677 | /// |
| 678 | /// \param ReceiverTypeInfo Type source information that describes the |
| 679 | /// receiver of this message. This may be NULL, in which case we are |
| 680 | /// sending to the superclass and \p SuperLoc must be a valid source |
| 681 | /// location. |
| 682 | |
| 683 | /// \param ReceiverType The type of the object receiving the |
| 684 | /// message. When \p ReceiverTypeInfo is non-NULL, this is the same |
| 685 | /// type as that refers to. For a superclass send, this is the type of |
| 686 | /// the superclass. |
| 687 | /// |
| 688 | /// \param SuperLoc The location of the "super" keyword in a |
| 689 | /// superclass message. |
| 690 | /// |
| 691 | /// \param Sel The selector to which the message is being sent. |
| 692 | /// |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 693 | /// \param Method The method that this class message is invoking, if |
| 694 | /// already known. |
| 695 | /// |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 696 | /// \param LBracLoc The location of the opening square bracket ']'. |
| 697 | /// |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 698 | /// \param RBrac The location of the closing square bracket ']'. |
| 699 | /// |
| 700 | /// \param Args The message arguments. |
| 701 | Sema::OwningExprResult Sema::BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo, |
| 702 | QualType ReceiverType, |
| 703 | SourceLocation SuperLoc, |
| 704 | Selector Sel, |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 705 | ObjCMethodDecl *Method, |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 706 | SourceLocation LBracLoc, |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 707 | SourceLocation RBracLoc, |
| 708 | MultiExprArg ArgsIn) { |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 709 | if (ReceiverType->isDependentType()) { |
| 710 | // If the receiver type is dependent, we can't type-check anything |
| 711 | // at this point. Build a dependent expression. |
| 712 | unsigned NumArgs = ArgsIn.size(); |
| 713 | Expr **Args = reinterpret_cast<Expr **>(ArgsIn.release()); |
| 714 | assert(SuperLoc.isInvalid() && "Message to super with dependent type"); |
| 715 | return Owned(ObjCMessageExpr::Create(Context, ReceiverType, LBracLoc, |
| 716 | ReceiverTypeInfo, Sel, /*Method=*/0, |
| 717 | Args, NumArgs, RBracLoc)); |
| 718 | } |
Chris Lattner | 15faee1 | 2010-04-12 05:38:43 +0000 | [diff] [blame] | 719 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 720 | SourceLocation Loc = SuperLoc.isValid()? SuperLoc |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 721 | : ReceiverTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 722 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 723 | // Find the class to which we are sending this message. |
| 724 | ObjCInterfaceDecl *Class = 0; |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 725 | const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>(); |
| 726 | if (!ClassType || !(Class = ClassType->getInterface())) { |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 727 | Diag(Loc, diag::err_invalid_receiver_class_message) |
| 728 | << ReceiverType; |
| 729 | return ExprError(); |
Steve Naroff | 7c778f1 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 730 | } |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 731 | assert(Class && "We don't know which class we're messaging?"); |
| 732 | |
| 733 | // Find the method we are messaging. |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 734 | if (!Method) { |
| 735 | if (Class->isForwardDecl()) { |
| 736 | // A forward class used in messaging is treated as a 'Class' |
| 737 | Diag(Loc, diag::warn_receiver_forward_class) << Class->getDeclName(); |
| 738 | Method = LookupFactoryMethodInGlobalPool(Sel, |
| 739 | SourceRange(LBracLoc, RBracLoc)); |
| 740 | if (Method) |
| 741 | Diag(Method->getLocation(), diag::note_method_sent_forward_class) |
| 742 | << Method->getDeclName(); |
| 743 | } |
| 744 | if (!Method) |
| 745 | Method = Class->lookupClassMethod(Sel); |
| 746 | |
| 747 | // If we have an implementation in scope, check "private" methods. |
| 748 | if (!Method) |
| 749 | Method = LookupPrivateClassMethod(Sel, Class); |
| 750 | |
| 751 | if (Method && DiagnoseUseOfDecl(Method, Loc)) |
| 752 | return ExprError(); |
Fariborz Jahanian | 89bc314 | 2009-05-08 23:02:36 +0000 | [diff] [blame] | 753 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 754 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 755 | // Check the argument types and determine the result type. |
| 756 | QualType ReturnType; |
| 757 | unsigned NumArgs = ArgsIn.size(); |
| 758 | Expr **Args = reinterpret_cast<Expr **>(ArgsIn.release()); |
| 759 | if (CheckMessageArgumentTypes(Args, NumArgs, Sel, Method, true, |
| 760 | LBracLoc, RBracLoc, ReturnType)) { |
| 761 | for (unsigned I = 0; I != NumArgs; ++I) |
| 762 | Args[I]->Destroy(Context); |
| 763 | return ExprError(); |
| 764 | } |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 765 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 766 | // Construct the appropriate ObjCMessageExpr. |
Douglas Gregor | 2d6b0e9 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 767 | Expr *Result; |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 768 | if (SuperLoc.isValid()) |
Douglas Gregor | 2d6b0e9 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 769 | Result = ObjCMessageExpr::Create(Context, ReturnType, LBracLoc, |
| 770 | SuperLoc, /*IsInstanceSuper=*/false, |
| 771 | ReceiverType, Sel, Method, Args, |
| 772 | NumArgs, RBracLoc); |
| 773 | else |
| 774 | Result = ObjCMessageExpr::Create(Context, ReturnType, LBracLoc, |
| 775 | ReceiverTypeInfo, Sel, Method, Args, |
| 776 | NumArgs, RBracLoc); |
| 777 | return MaybeBindToTemporary(Result); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 778 | } |
| 779 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 780 | // ActOnClassMessage - used for both unary and keyword messages. |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 781 | // ArgExprs is optional - if it is present, the number of expressions |
| 782 | // is obtained from Sel.getNumArgs(). |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 783 | Sema::OwningExprResult Sema::ActOnClassMessage(Scope *S, |
| 784 | TypeTy *Receiver, |
| 785 | Selector Sel, |
| 786 | SourceLocation LBracLoc, |
| 787 | SourceLocation SelectorLoc, |
| 788 | SourceLocation RBracLoc, |
| 789 | MultiExprArg Args) { |
| 790 | TypeSourceInfo *ReceiverTypeInfo; |
| 791 | QualType ReceiverType = GetTypeFromParser(Receiver, &ReceiverTypeInfo); |
| 792 | if (ReceiverType.isNull()) |
| 793 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 794 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 795 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 796 | if (!ReceiverTypeInfo) |
| 797 | ReceiverTypeInfo = Context.getTrivialTypeSourceInfo(ReceiverType, LBracLoc); |
| 798 | |
| 799 | return BuildClassMessage(ReceiverTypeInfo, ReceiverType, |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 800 | /*SuperLoc=*/SourceLocation(), Sel, /*Method=*/0, |
Douglas Gregor | 39968ad | 2010-04-22 16:50:51 +0000 | [diff] [blame] | 801 | LBracLoc, RBracLoc, move(Args)); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | /// \brief Build an Objective-C instance message expression. |
| 805 | /// |
| 806 | /// This routine takes care of both normal instance messages and |
| 807 | /// instance messages to the superclass instance. |
| 808 | /// |
| 809 | /// \param Receiver The expression that computes the object that will |
| 810 | /// receive this message. This may be empty, in which case we are |
| 811 | /// sending to the superclass instance and \p SuperLoc must be a valid |
| 812 | /// source location. |
| 813 | /// |
| 814 | /// \param ReceiverType The (static) type of the object receiving the |
| 815 | /// message. When a \p Receiver expression is provided, this is the |
| 816 | /// same type as that expression. For a superclass instance send, this |
| 817 | /// is a pointer to the type of the superclass. |
| 818 | /// |
| 819 | /// \param SuperLoc The location of the "super" keyword in a |
| 820 | /// superclass instance message. |
| 821 | /// |
| 822 | /// \param Sel The selector to which the message is being sent. |
| 823 | /// |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 824 | /// \param Method The method that this instance message is invoking, if |
| 825 | /// already known. |
| 826 | /// |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 827 | /// \param LBracLoc The location of the opening square bracket ']'. |
| 828 | /// |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 829 | /// \param RBrac The location of the closing square bracket ']'. |
| 830 | /// |
| 831 | /// \param Args The message arguments. |
| 832 | Sema::OwningExprResult Sema::BuildInstanceMessage(ExprArg ReceiverE, |
| 833 | QualType ReceiverType, |
| 834 | SourceLocation SuperLoc, |
| 835 | Selector Sel, |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 836 | ObjCMethodDecl *Method, |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 837 | SourceLocation LBracLoc, |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 838 | SourceLocation RBracLoc, |
| 839 | MultiExprArg ArgsIn) { |
| 840 | // If we have a receiver expression, perform appropriate promotions |
| 841 | // and determine receiver type. |
| 842 | Expr *Receiver = ReceiverE.takeAs<Expr>(); |
| 843 | if (Receiver) { |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 844 | if (Receiver->isTypeDependent()) { |
| 845 | // If the receiver is type-dependent, we can't type-check anything |
| 846 | // at this point. Build a dependent expression. |
| 847 | unsigned NumArgs = ArgsIn.size(); |
| 848 | Expr **Args = reinterpret_cast<Expr **>(ArgsIn.release()); |
| 849 | assert(SuperLoc.isInvalid() && "Message to super with dependent type"); |
| 850 | return Owned(ObjCMessageExpr::Create(Context, Context.DependentTy, |
| 851 | LBracLoc, Receiver, Sel, |
| 852 | /*Method=*/0, Args, NumArgs, |
| 853 | RBracLoc)); |
| 854 | } |
| 855 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 856 | // If necessary, apply function/array conversion to the receiver. |
| 857 | // C99 6.7.5.3p[7,8]. |
| 858 | DefaultFunctionArrayLvalueConversion(Receiver); |
| 859 | ReceiverType = Receiver->getType(); |
| 860 | } |
| 861 | |
| 862 | // The location of the receiver. |
| 863 | SourceLocation Loc = SuperLoc.isValid()? SuperLoc : Receiver->getLocStart(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 864 | |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 865 | if (!Method) { |
| 866 | // Handle messages to id. |
| 867 | if (ReceiverType->isObjCIdType() || ReceiverType->isBlockPointerType() || |
| 868 | (Receiver && Context.isObjCNSObjectType(Receiver->getType()))) { |
| 869 | Method = LookupInstanceMethodInGlobalPool(Sel, |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 870 | SourceRange(LBracLoc, RBracLoc)); |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 871 | if (!Method) |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 872 | Method = LookupFactoryMethodInGlobalPool(Sel, |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 873 | SourceRange(LBracLoc, RBracLoc)); |
| 874 | } else if (ReceiverType->isObjCClassType() || |
| 875 | ReceiverType->isObjCQualifiedClassType()) { |
| 876 | // Handle messages to Class. |
| 877 | if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) { |
| 878 | if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) { |
| 879 | // First check the public methods in the class interface. |
| 880 | Method = ClassDecl->lookupClassMethod(Sel); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 881 | |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 882 | if (!Method) |
| 883 | Method = LookupPrivateClassMethod(Sel, ClassDecl); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 884 | |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 885 | // FIXME: if we still haven't found a method, we need to look in |
| 886 | // protocols (if we have qualifiers). |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 887 | } |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 888 | if (Method && DiagnoseUseOfDecl(Method, Loc)) |
| 889 | return ExprError(); |
Fariborz Jahanian | 268bc8c | 2009-03-03 22:19:15 +0000 | [diff] [blame] | 890 | } |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 891 | if (!Method) { |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 892 | // If not messaging 'self', look for any factory method named 'Sel'. |
| 893 | if (!Receiver || !isSelfExpr(Receiver)) { |
| 894 | Method = LookupFactoryMethodInGlobalPool(Sel, |
| 895 | SourceRange(LBracLoc, RBracLoc)); |
| 896 | if (!Method) { |
| 897 | // If no class (factory) method was found, check if an _instance_ |
| 898 | // method of the same name exists in the root class only. |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 899 | Method = LookupInstanceMethodInGlobalPool(Sel, |
| 900 | SourceRange(LBracLoc, RBracLoc)); |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 901 | if (Method) |
| 902 | if (const ObjCInterfaceDecl *ID = |
| 903 | dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext())) { |
| 904 | if (ID->getSuperClass()) |
| 905 | Diag(Loc, diag::warn_root_inst_method_not_found) |
| 906 | << Sel << SourceRange(LBracLoc, RBracLoc); |
| 907 | } |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 908 | } |
| 909 | } |
| 910 | } |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 911 | } else { |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 912 | ObjCInterfaceDecl* ClassDecl = 0; |
| 913 | |
| 914 | // We allow sending a message to a qualified ID ("id<foo>"), which is ok as |
| 915 | // long as one of the protocols implements the selector (if not, warn). |
| 916 | if (const ObjCObjectPointerType *QIdTy |
| 917 | = ReceiverType->getAsObjCQualifiedIdType()) { |
| 918 | // Search protocols for instance methods. |
| 919 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
| 920 | E = QIdTy->qual_end(); I != E; ++I) { |
| 921 | ObjCProtocolDecl *PDecl = *I; |
| 922 | if (PDecl && (Method = PDecl->lookupInstanceMethod(Sel))) |
| 923 | break; |
| 924 | // Since we aren't supporting "Class<foo>", look for a class method. |
| 925 | if (PDecl && (Method = PDecl->lookupClassMethod(Sel))) |
| 926 | break; |
| 927 | } |
| 928 | } else if (const ObjCObjectPointerType *OCIType |
| 929 | = ReceiverType->getAsObjCInterfacePointerType()) { |
| 930 | // We allow sending a message to a pointer to an interface (an object). |
| 931 | ClassDecl = OCIType->getInterfaceDecl(); |
| 932 | // FIXME: consider using LookupInstanceMethodInGlobalPool, since it will be |
| 933 | // faster than the following method (which can do *many* linear searches). |
| 934 | // The idea is to add class info to InstanceMethodPool. |
| 935 | Method = ClassDecl->lookupInstanceMethod(Sel); |
| 936 | |
| 937 | if (!Method) { |
| 938 | // Search protocol qualifiers. |
| 939 | for (ObjCObjectPointerType::qual_iterator QI = OCIType->qual_begin(), |
| 940 | E = OCIType->qual_end(); QI != E; ++QI) { |
| 941 | if ((Method = (*QI)->lookupInstanceMethod(Sel))) |
| 942 | break; |
| 943 | } |
| 944 | } |
| 945 | if (!Method) { |
| 946 | // If we have implementations in scope, check "private" methods. |
| 947 | Method = LookupPrivateInstanceMethod(Sel, ClassDecl); |
| 948 | |
| 949 | if (!Method && (!Receiver || !isSelfExpr(Receiver))) { |
| 950 | // If we still haven't found a method, look in the global pool. This |
| 951 | // behavior isn't very desirable, however we need it for GCC |
| 952 | // compatibility. FIXME: should we deviate?? |
| 953 | if (OCIType->qual_empty()) { |
| 954 | Method = LookupInstanceMethodInGlobalPool(Sel, |
| 955 | SourceRange(LBracLoc, RBracLoc)); |
| 956 | if (Method && !OCIType->getInterfaceDecl()->isForwardDecl()) |
| 957 | Diag(Loc, diag::warn_maynot_respond) |
| 958 | << OCIType->getInterfaceDecl()->getIdentifier() << Sel; |
| 959 | } |
| 960 | } |
| 961 | } |
| 962 | if (Method && DiagnoseUseOfDecl(Method, Loc)) |
| 963 | return ExprError(); |
| 964 | } else if (!Context.getObjCIdType().isNull() && |
| 965 | (ReceiverType->isPointerType() || |
| 966 | (ReceiverType->isIntegerType() && |
| 967 | ReceiverType->isScalarType()))) { |
| 968 | // Implicitly convert integers and pointers to 'id' but emit a warning. |
| 969 | Diag(Loc, diag::warn_bad_receiver_type) |
| 970 | << ReceiverType |
| 971 | << Receiver->getSourceRange(); |
| 972 | if (ReceiverType->isPointerType()) |
| 973 | ImpCastExprToType(Receiver, Context.getObjCIdType(), |
| 974 | CastExpr::CK_BitCast); |
| 975 | else |
| 976 | ImpCastExprToType(Receiver, Context.getObjCIdType(), |
| 977 | CastExpr::CK_IntegralToPointer); |
| 978 | ReceiverType = Receiver->getType(); |
Fariborz Jahanian | 79d3f04 | 2010-05-12 23:29:11 +0000 | [diff] [blame] | 979 | } |
Fariborz Jahanian | 3ba6061 | 2010-05-13 17:19:25 +0000 | [diff] [blame] | 980 | else if (getLangOptions().CPlusPlus && |
| 981 | !PerformContextuallyConvertToObjCId(Receiver)) { |
| 982 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Receiver)) { |
| 983 | Receiver = ICE->getSubExpr(); |
| 984 | ReceiverType = Receiver->getType(); |
| 985 | } |
Fariborz Jahanian | 79d3f04 | 2010-05-12 23:29:11 +0000 | [diff] [blame] | 986 | return BuildInstanceMessage(Owned(Receiver), |
| 987 | ReceiverType, |
| 988 | SuperLoc, |
| 989 | Sel, |
| 990 | Method, |
| 991 | LBracLoc, |
| 992 | RBracLoc, |
| 993 | move(ArgsIn)); |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 994 | } else { |
| 995 | // Reject other random receiver types (e.g. structs). |
| 996 | Diag(Loc, diag::err_bad_receiver_type) |
| 997 | << ReceiverType << Receiver->getSourceRange(); |
| 998 | return ExprError(); |
| 999 | } |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 1000 | } |
Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 1001 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1002 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 1003 | // Check the message arguments. |
| 1004 | unsigned NumArgs = ArgsIn.size(); |
| 1005 | Expr **Args = reinterpret_cast<Expr **>(ArgsIn.release()); |
| 1006 | QualType ReturnType; |
| 1007 | if (CheckMessageArgumentTypes(Args, NumArgs, Sel, Method, false, |
| 1008 | LBracLoc, RBracLoc, ReturnType)) |
| 1009 | return ExprError(); |
Fariborz Jahanian | da59e09 | 2010-06-16 19:56:08 +0000 | [diff] [blame^] | 1010 | |
| 1011 | if (!ReturnType->isVoidType()) { |
| 1012 | if (RequireCompleteType(LBracLoc, ReturnType, |
| 1013 | diag::err_illegal_message_expr_incomplete_type)) |
| 1014 | return ExprError(); |
| 1015 | } |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 1016 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 1017 | // Construct the appropriate ObjCMessageExpr instance. |
Douglas Gregor | 2d6b0e9 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 1018 | Expr *Result; |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 1019 | if (SuperLoc.isValid()) |
Douglas Gregor | 2d6b0e9 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 1020 | Result = ObjCMessageExpr::Create(Context, ReturnType, LBracLoc, |
| 1021 | SuperLoc, /*IsInstanceSuper=*/true, |
| 1022 | ReceiverType, Sel, Method, |
| 1023 | Args, NumArgs, RBracLoc); |
| 1024 | else |
| 1025 | Result = ObjCMessageExpr::Create(Context, ReturnType, LBracLoc, Receiver, |
| 1026 | Sel, Method, Args, NumArgs, RBracLoc); |
| 1027 | return MaybeBindToTemporary(Result); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 1028 | } |
| 1029 | |
| 1030 | // ActOnInstanceMessage - used for both unary and keyword messages. |
| 1031 | // ArgExprs is optional - if it is present, the number of expressions |
| 1032 | // is obtained from Sel.getNumArgs(). |
| 1033 | Sema::OwningExprResult Sema::ActOnInstanceMessage(Scope *S, |
| 1034 | ExprArg ReceiverE, |
| 1035 | Selector Sel, |
| 1036 | SourceLocation LBracLoc, |
| 1037 | SourceLocation SelectorLoc, |
| 1038 | SourceLocation RBracLoc, |
| 1039 | MultiExprArg Args) { |
| 1040 | Expr *Receiver = static_cast<Expr *>(ReceiverE.get()); |
| 1041 | if (!Receiver) |
| 1042 | return ExprError(); |
| 1043 | |
| 1044 | return BuildInstanceMessage(move(ReceiverE), Receiver->getType(), |
Douglas Gregor | f49bb08 | 2010-04-22 17:01:48 +0000 | [diff] [blame] | 1045 | /*SuperLoc=*/SourceLocation(), Sel, /*Method=*/0, |
| 1046 | LBracLoc, RBracLoc, move(Args)); |
Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 1047 | } |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 1048 | |