Chris Lattner | 0949305 | 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" |
| 15 | #include "clang/AST/ASTContext.h" |
| 16 | #include "clang/AST/DeclObjC.h" |
Steve Naroff | 9ed3e77 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprObjC.h" |
Daniel Dunbar | 8d03cbe | 2008-08-11 03:27:53 +0000 | [diff] [blame] | 18 | #include "clang/Basic/Diagnostic.h" |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | |
| 21 | Sema::ExprResult Sema::ParseObjCStringLiteral(SourceLocation *AtLocs, |
| 22 | ExprTy **Strings, |
| 23 | unsigned NumStrings) { |
| 24 | SourceLocation AtLoc = AtLocs[0]; |
| 25 | StringLiteral* S = static_cast<StringLiteral *>(Strings[0]); |
| 26 | if (NumStrings > 1) { |
| 27 | // Concatenate objc strings. |
| 28 | StringLiteral* ES = static_cast<StringLiteral *>(Strings[NumStrings-1]); |
| 29 | SourceLocation EndLoc = ES->getSourceRange().getEnd(); |
| 30 | unsigned Length = 0; |
| 31 | for (unsigned i = 0; i < NumStrings; i++) |
| 32 | Length += static_cast<StringLiteral *>(Strings[i])->getByteLength(); |
| 33 | char *strBuf = new char [Length]; |
| 34 | char *p = strBuf; |
| 35 | bool isWide = false; |
| 36 | for (unsigned i = 0; i < NumStrings; i++) { |
| 37 | S = static_cast<StringLiteral *>(Strings[i]); |
| 38 | if (S->isWide()) |
| 39 | isWide = true; |
| 40 | memcpy(p, S->getStrData(), S->getByteLength()); |
| 41 | p += S->getByteLength(); |
| 42 | delete S; |
| 43 | } |
| 44 | S = new StringLiteral(strBuf, Length, |
| 45 | isWide, Context.getPointerType(Context.CharTy), |
| 46 | AtLoc, EndLoc); |
| 47 | } |
| 48 | |
| 49 | if (CheckBuiltinCFStringArgument(S)) |
| 50 | return true; |
| 51 | |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 52 | if (Context.getObjCConstantStringInterface().isNull()) { |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 53 | // Initialize the constant string interface lazily. This assumes |
| 54 | // the NSConstantString interface is seen in this translation unit. |
| 55 | IdentifierInfo *NSIdent = &Context.Idents.get("NSConstantString"); |
Steve Naroff | 6384a01 | 2008-04-02 14:35:35 +0000 | [diff] [blame] | 56 | Decl *IFace = LookupDecl(NSIdent, Decl::IDNS_Ordinary, TUScope); |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 57 | ObjCInterfaceDecl *strIFace = dyn_cast_or_null<ObjCInterfaceDecl>(IFace); |
Chris Lattner | bac1245 | 2008-06-21 21:44:18 +0000 | [diff] [blame] | 58 | if (strIFace) |
| 59 | Context.setObjCConstantStringInterface(strIFace); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 60 | } |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 61 | QualType t = Context.getObjCConstantStringInterface(); |
Chris Lattner | bac1245 | 2008-06-21 21:44:18 +0000 | [diff] [blame] | 62 | // If there is no NSConstantString interface defined then treat constant |
| 63 | // strings as untyped objects and let the runtime figure it out later. |
| 64 | if (t == QualType()) { |
| 65 | t = Context.getObjCIdType(); |
| 66 | } else { |
| 67 | t = Context.getPointerType(t); |
| 68 | } |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 69 | return new ObjCStringLiteral(S, t, AtLoc); |
| 70 | } |
| 71 | |
| 72 | Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc, |
| 73 | SourceLocation EncodeLoc, |
| 74 | SourceLocation LParenLoc, |
| 75 | TypeTy *Ty, |
| 76 | SourceLocation RParenLoc) { |
| 77 | QualType EncodedType = QualType::getFromOpaquePtr(Ty); |
| 78 | |
| 79 | QualType t = Context.getPointerType(Context.CharTy); |
| 80 | return new ObjCEncodeExpr(t, EncodedType, AtLoc, RParenLoc); |
| 81 | } |
| 82 | |
| 83 | Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel, |
| 84 | SourceLocation AtLoc, |
| 85 | SourceLocation SelLoc, |
| 86 | SourceLocation LParenLoc, |
| 87 | SourceLocation RParenLoc) { |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 88 | QualType t = Context.getObjCSelType(); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 89 | return new ObjCSelectorExpr(t, Sel, AtLoc, RParenLoc); |
| 90 | } |
| 91 | |
| 92 | Sema::ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId, |
| 93 | SourceLocation AtLoc, |
| 94 | SourceLocation ProtoLoc, |
| 95 | SourceLocation LParenLoc, |
| 96 | SourceLocation RParenLoc) { |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 97 | ObjCProtocolDecl* PDecl = ObjCProtocols[ProtocolId]; |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 98 | if (!PDecl) { |
| 99 | Diag(ProtoLoc, diag::err_undeclared_protocol, ProtocolId->getName()); |
| 100 | return true; |
| 101 | } |
| 102 | |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 103 | QualType t = Context.getObjCProtoType(); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 104 | if (t.isNull()) |
| 105 | return true; |
| 106 | t = Context.getPointerType(t); |
| 107 | return new ObjCProtocolExpr(t, PDecl, AtLoc, RParenLoc); |
| 108 | } |
| 109 | |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 110 | bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs, |
| 111 | Selector Sel, ObjCMethodDecl *Method, |
Daniel Dunbar | 842b5e2 | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 112 | const char *PrefixStr, |
| 113 | SourceLocation lbrac, SourceLocation rbrac, |
| 114 | QualType &ReturnType) { |
Daniel Dunbar | 842b5e2 | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 115 | if (!Method) { |
Daniel Dunbar | 753d110 | 2008-09-11 00:04:36 +0000 | [diff] [blame] | 116 | // Apply default argument promotion as for (C99 6.5.2.2p6). |
| 117 | for (unsigned i = 0; i != NumArgs; i++) |
| 118 | DefaultArgumentPromotion(Args[i]); |
| 119 | |
Daniel Dunbar | 842b5e2 | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 120 | Diag(lbrac, diag::warn_method_not_found, std::string(PrefixStr), |
| 121 | Sel.getName(), SourceRange(lbrac, rbrac)); |
| 122 | ReturnType = Context.getObjCIdType(); |
| 123 | return false; |
| 124 | } else { |
| 125 | ReturnType = Method->getResultType(); |
| 126 | } |
| 127 | |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 128 | unsigned NumNamedArgs = Sel.getNumArgs(); |
| 129 | assert(NumArgs >= NumNamedArgs && "Too few arguments for selector!"); |
| 130 | |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 131 | bool anyIncompatibleArgs = false; |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 132 | for (unsigned i = 0; i < NumNamedArgs; i++) { |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 133 | Expr *argExpr = Args[i]; |
| 134 | assert(argExpr && "CheckMessageArgumentTypes(): missing expression"); |
| 135 | |
| 136 | QualType lhsType = Method->getParamDecl(i)->getType(); |
| 137 | QualType rhsType = argExpr->getType(); |
| 138 | |
| 139 | // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8]. |
Chris Lattner | a2ef082 | 2008-04-02 17:17:33 +0000 | [diff] [blame] | 140 | if (lhsType->isArrayType()) |
| 141 | lhsType = Context.getArrayDecayedType(lhsType); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 142 | else if (lhsType->isFunctionType()) |
| 143 | lhsType = Context.getPointerType(lhsType); |
| 144 | |
Chris Lattner | a2ef082 | 2008-04-02 17:17:33 +0000 | [diff] [blame] | 145 | AssignConvertType Result = |
| 146 | CheckSingleAssignmentConstraints(lhsType, argExpr); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 147 | if (Args[i] != argExpr) // The expression was converted. |
| 148 | Args[i] = argExpr; // Make sure we store the converted expression. |
| 149 | |
| 150 | anyIncompatibleArgs |= |
| 151 | DiagnoseAssignmentResult(Result, argExpr->getLocStart(), lhsType, rhsType, |
| 152 | argExpr, "sending"); |
| 153 | } |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 154 | |
| 155 | // Promote additional arguments to variadic methods. |
| 156 | if (Method->isVariadic()) { |
| 157 | for (unsigned i = NumNamedArgs; i < NumArgs; ++i) |
| 158 | DefaultArgumentPromotion(Args[i]); |
| 159 | } else { |
| 160 | // Check for extra arguments to non-variadic methods. |
| 161 | if (NumArgs != NumNamedArgs) { |
| 162 | Diag(Args[NumNamedArgs]->getLocStart(), |
| 163 | diag::err_typecheck_call_too_many_args, |
| 164 | Method->getSourceRange(), |
| 165 | SourceRange(Args[NumNamedArgs]->getLocStart(), |
| 166 | Args[NumArgs-1]->getLocEnd())); |
| 167 | } |
| 168 | } |
| 169 | |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 170 | return anyIncompatibleArgs; |
| 171 | } |
| 172 | |
| 173 | // ActOnClassMessage - used for both unary and keyword messages. |
| 174 | // ArgExprs is optional - if it is present, the number of expressions |
| 175 | // is obtained from Sel.getNumArgs(). |
| 176 | Sema::ExprResult Sema::ActOnClassMessage( |
| 177 | Scope *S, |
| 178 | IdentifierInfo *receiverName, Selector Sel, |
| 179 | SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args, unsigned NumArgs) |
| 180 | { |
| 181 | assert(receiverName && "missing receiver class name"); |
| 182 | |
| 183 | Expr **ArgExprs = reinterpret_cast<Expr **>(Args); |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 184 | ObjCInterfaceDecl* ClassDecl = 0; |
Steve Naroff | 91a6920 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 185 | bool isSuper = false; |
| 186 | |
Daniel Dunbar | 4837ae7 | 2008-08-14 22:04:54 +0000 | [diff] [blame] | 187 | if (receiverName == SuperID && getCurMethodDecl()) { |
Steve Naroff | 91a6920 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 188 | isSuper = true; |
Argiris Kirtzidis | 95256e6 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 189 | ClassDecl = getCurMethodDecl()->getClassInterface()->getSuperClass(); |
Steve Naroff | 9fcf5b6 | 2008-03-28 21:37:05 +0000 | [diff] [blame] | 190 | if (!ClassDecl) |
| 191 | return Diag(lbrac, diag::error_no_super_class, |
Argiris Kirtzidis | 95256e6 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 192 | getCurMethodDecl()->getClassInterface()->getName()); |
| 193 | if (getCurMethodDecl()->isInstance()) { |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 194 | QualType superTy = Context.getObjCInterfaceType(ClassDecl); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 195 | superTy = Context.getPointerType(superTy); |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 196 | ExprResult ReceiverExpr = new PredefinedExpr(SourceLocation(), superTy, |
| 197 | PredefinedExpr::ObjCSuper); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 198 | // We are really in an instance method, redirect. |
| 199 | return ActOnInstanceMessage(ReceiverExpr.Val, Sel, lbrac, rbrac, |
| 200 | Args, NumArgs); |
| 201 | } |
| 202 | // We are sending a message to 'super' within a class method. Do nothing, |
| 203 | // the receiver will pass through as 'super' (how convenient:-). |
| 204 | } else |
| 205 | ClassDecl = getObjCInterfaceDecl(receiverName); |
| 206 | |
Steve Naroff | 2c7e0e5 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 207 | // The following code allows for the following GCC-ism: |
Steve Naroff | 51c6cff | 2008-06-04 23:08:38 +0000 | [diff] [blame] | 208 | // |
| 209 | // typedef XCElementDisplayRect XCElementGraphicsRect; |
| 210 | // |
| 211 | // @implementation XCRASlice |
| 212 | // - whatever { // Note that XCElementGraphicsRect is a typedef name. |
| 213 | // _sGraphicsDelegate =[[XCElementGraphicsRect alloc] init]; |
| 214 | // } |
| 215 | // |
Steve Naroff | 2c7e0e5 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 216 | // If necessary, the following lookup could move to getObjCInterfaceDecl(). |
| 217 | if (!ClassDecl) { |
| 218 | Decl *IDecl = LookupDecl(receiverName, Decl::IDNS_Ordinary, 0, false); |
| 219 | if (TypedefDecl *OCTD = dyn_cast_or_null<TypedefDecl>(IDecl)) { |
| 220 | const ObjCInterfaceType *OCIT; |
| 221 | OCIT = OCTD->getUnderlyingType()->getAsObjCInterfaceType(); |
| 222 | if (OCIT) |
| 223 | ClassDecl = OCIT->getDecl(); |
| 224 | } |
| 225 | } |
| 226 | assert(ClassDecl && "missing interface declaration"); |
Steve Naroff | 51c6cff | 2008-06-04 23:08:38 +0000 | [diff] [blame] | 227 | ObjCMethodDecl *Method = 0; |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 228 | QualType returnType; |
Steve Naroff | 2c7e0e5 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 229 | Method = ClassDecl->lookupClassMethod(Sel); |
| 230 | |
| 231 | // If we have an implementation in scope, check "private" methods. |
| 232 | if (!Method) { |
| 233 | if (ObjCImplementationDecl *ImpDecl = |
| 234 | ObjCImplementations[ClassDecl->getIdentifier()]) |
| 235 | Method = ImpDecl->getClassMethod(Sel); |
Steve Naroff | 4b9846d | 2008-09-28 14:55:53 +0000 | [diff] [blame^] | 236 | |
| 237 | // Look through local category implementations associated with the class. |
| 238 | if (!Method) { |
| 239 | for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Method; i++) { |
| 240 | if (ObjCCategoryImpls[i]->getClassInterface() == ClassDecl) |
| 241 | Method = ObjCCategoryImpls[i]->getClassMethod(Sel); |
| 242 | } |
| 243 | } |
Steve Naroff | 616c55c | 2008-06-04 14:43:54 +0000 | [diff] [blame] | 244 | } |
Steve Naroff | 2c7e0e5 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 245 | // Before we give up, check if the selector is an instance method. |
| 246 | if (!Method) |
| 247 | Method = ClassDecl->lookupInstanceMethod(Sel); |
| 248 | |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 249 | if (CheckMessageArgumentTypes(ArgExprs, NumArgs, Sel, Method, "+", |
Daniel Dunbar | 842b5e2 | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 250 | lbrac, rbrac, returnType)) |
| 251 | return true; |
Ted Kremenek | ee2c9fd | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 252 | |
| 253 | // If we have the ObjCInterfaceDecl* for the class that is receiving |
| 254 | // the message, use that to construct the ObjCMessageExpr. Otherwise |
| 255 | // pass on the IdentifierInfo* for the class. |
Steve Naroff | 91a6920 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 256 | // FIXME: need to do a better job handling 'super' usage within a class |
| 257 | // For now, we simply pass the "super" identifier through (which isn't |
| 258 | // consistent with instance methods. |
Steve Naroff | 2c7e0e5 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 259 | if (isSuper) |
Steve Naroff | 91a6920 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 260 | return new ObjCMessageExpr(receiverName, Sel, returnType, Method, |
Ted Kremenek | ee2c9fd | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 261 | lbrac, rbrac, ArgExprs, NumArgs); |
| 262 | else |
Steve Naroff | 91a6920 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 263 | return new ObjCMessageExpr(ClassDecl, Sel, returnType, Method, |
Ted Kremenek | ee2c9fd | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 264 | lbrac, rbrac, ArgExprs, NumArgs); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | // ActOnInstanceMessage - used for both unary and keyword messages. |
| 268 | // ArgExprs is optional - if it is present, the number of expressions |
| 269 | // is obtained from Sel.getNumArgs(). |
Chris Lattner | 4d01854 | 2008-07-21 06:31:05 +0000 | [diff] [blame] | 270 | Sema::ExprResult Sema::ActOnInstanceMessage(ExprTy *receiver, Selector Sel, |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 271 | SourceLocation lbrac, |
| 272 | SourceLocation rbrac, |
| 273 | ExprTy **Args, unsigned NumArgs) { |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 274 | assert(receiver && "missing receiver expression"); |
| 275 | |
| 276 | Expr **ArgExprs = reinterpret_cast<Expr **>(Args); |
| 277 | Expr *RExpr = static_cast<Expr *>(receiver); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 278 | QualType returnType; |
Steve Naroff | 7c7817e | 2008-05-31 02:19:15 +0000 | [diff] [blame] | 279 | |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 280 | QualType ReceiverCType = |
| 281 | Context.getCanonicalType(RExpr->getType()).getUnqualifiedType(); |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 282 | |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 283 | // Handle messages to id. |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 284 | if (ReceiverCType == Context.getCanonicalType(Context.getObjCIdType())) { |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 285 | ObjCMethodDecl *Method = InstanceMethodPool[Sel].Method; |
Chris Lattner | 05fd1cc | 2008-02-01 06:57:39 +0000 | [diff] [blame] | 286 | if (!Method) |
| 287 | Method = FactoryMethodPool[Sel].Method; |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 288 | if (CheckMessageArgumentTypes(ArgExprs, NumArgs, Sel, Method, "-", |
Daniel Dunbar | 842b5e2 | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 289 | lbrac, rbrac, returnType)) |
| 290 | return true; |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 291 | return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac, |
| 292 | ArgExprs, NumArgs); |
| 293 | } |
| 294 | |
| 295 | // Handle messages to Class. |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 296 | if (ReceiverCType == Context.getCanonicalType(Context.getObjCClassType())) { |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 297 | ObjCMethodDecl *Method = 0; |
Chris Lattner | 55a2433 | 2008-07-21 06:44:27 +0000 | [diff] [blame] | 298 | if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) { |
Steve Naroff | 1a5027c | 2008-06-05 14:49:39 +0000 | [diff] [blame] | 299 | // If we have an implementation in scope, check "private" methods. |
Chris Lattner | 55a2433 | 2008-07-21 06:44:27 +0000 | [diff] [blame] | 300 | if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) |
Steve Naroff | 1a5027c | 2008-06-05 14:49:39 +0000 | [diff] [blame] | 301 | if (ObjCImplementationDecl *ImpDecl = |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 302 | ObjCImplementations[ClassDecl->getIdentifier()]) |
Steve Naroff | 1a5027c | 2008-06-05 14:49:39 +0000 | [diff] [blame] | 303 | Method = ImpDecl->getClassMethod(Sel); |
| 304 | } |
| 305 | if (!Method) |
| 306 | Method = FactoryMethodPool[Sel].Method; |
| 307 | if (!Method) |
| 308 | Method = InstanceMethodPool[Sel].Method; |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 309 | if (CheckMessageArgumentTypes(ArgExprs, NumArgs, Sel, Method, "-", |
Daniel Dunbar | 842b5e2 | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 310 | lbrac, rbrac, returnType)) |
| 311 | return true; |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 312 | return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac, |
| 313 | ArgExprs, NumArgs); |
| 314 | } |
| 315 | |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 316 | ObjCMethodDecl *Method = 0; |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 317 | ObjCInterfaceDecl* ClassDecl = 0; |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 318 | |
| 319 | // We allow sending a message to a qualified ID ("id<foo>"), which is ok as |
| 320 | // long as one of the protocols implements the selector (if not, warn). |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 321 | if (ObjCQualifiedIdType *QIT = dyn_cast<ObjCQualifiedIdType>(ReceiverCType)) { |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 322 | // Search protocols |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 323 | for (unsigned i = 0; i < QIT->getNumProtocols(); i++) { |
| 324 | ObjCProtocolDecl *PDecl = QIT->getProtocols(i); |
| 325 | if (PDecl && (Method = PDecl->lookupInstanceMethod(Sel))) |
| 326 | break; |
| 327 | } |
| 328 | if (!Method) |
| 329 | Diag(lbrac, diag::warn_method_not_found_in_protocol, |
| 330 | std::string("-"), Sel.getName(), |
Chris Lattner | 3977eb7 | 2008-07-21 06:16:07 +0000 | [diff] [blame] | 331 | RExpr->getSourceRange()); |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 332 | } else if (const ObjCInterfaceType *OCIReceiver = |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 333 | ReceiverCType->getAsPointerToObjCInterfaceType()) { |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 334 | // We allow sending a message to a pointer to an interface (an object). |
Chris Lattner | e1b957d | 2008-02-01 06:43:02 +0000 | [diff] [blame] | 335 | |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 336 | ClassDecl = OCIReceiver->getDecl(); |
| 337 | // FIXME: consider using InstanceMethodPool, since it will be faster |
| 338 | // than the following method (which can do *many* linear searches). The |
| 339 | // idea is to add class info to InstanceMethodPool. |
| 340 | Method = ClassDecl->lookupInstanceMethod(Sel); |
| 341 | |
| 342 | if (!Method) { |
| 343 | // Search protocol qualifiers. |
| 344 | for (ObjCQualifiedIdType::qual_iterator QI = OCIReceiver->qual_begin(), |
| 345 | E = OCIReceiver->qual_end(); QI != E; ++QI) { |
| 346 | if ((Method = (*QI)->lookupInstanceMethod(Sel))) |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 347 | break; |
| 348 | } |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 349 | } |
Chris Lattner | 00cb97b | 2008-07-21 05:27:51 +0000 | [diff] [blame] | 350 | |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 351 | if (!Method && !OCIReceiver->qual_empty()) |
| 352 | Diag(lbrac, diag::warn_method_not_found_in_protocol, |
| 353 | std::string("-"), Sel.getName(), |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 354 | SourceRange(lbrac, rbrac)); |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 355 | } else { |
| 356 | Diag(lbrac, diag::error_bad_receiver_type, |
Chris Lattner | 3977eb7 | 2008-07-21 06:16:07 +0000 | [diff] [blame] | 357 | RExpr->getType().getAsString(), RExpr->getSourceRange()); |
Chris Lattner | f914765 | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 358 | return true; |
Chris Lattner | 4cff4b7 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | if (!Method) { |
| 362 | // If we have an implementation in scope, check "private" methods. |
| 363 | if (ClassDecl) |
| 364 | if (ObjCImplementationDecl *ImpDecl = |
| 365 | ObjCImplementations[ClassDecl->getIdentifier()]) |
| 366 | Method = ImpDecl->getInstanceMethod(Sel); |
| 367 | // If we still haven't found a method, look in the global pool. This |
| 368 | // behavior isn't very desirable, however we need it for GCC |
| 369 | // compatibility. |
| 370 | if (!Method) |
| 371 | Method = InstanceMethodPool[Sel].Method; |
| 372 | } |
Daniel Dunbar | 7776e10 | 2008-09-11 00:50:25 +0000 | [diff] [blame] | 373 | if (CheckMessageArgumentTypes(ArgExprs, NumArgs, Sel, Method, "-", |
Daniel Dunbar | 842b5e2 | 2008-09-11 00:01:56 +0000 | [diff] [blame] | 374 | lbrac, rbrac, returnType)) |
| 375 | return true; |
Chris Lattner | 0949305 | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 376 | return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac, |
| 377 | ArgExprs, NumArgs); |
| 378 | } |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 379 | |
| 380 | //===----------------------------------------------------------------------===// |
| 381 | // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's. |
| 382 | //===----------------------------------------------------------------------===// |
| 383 | |
| 384 | /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the |
| 385 | /// inheritance hierarchy of 'rProto'. |
| 386 | static bool ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto, |
| 387 | ObjCProtocolDecl *rProto) { |
| 388 | if (lProto == rProto) |
| 389 | return true; |
Chris Lattner | 0be0882 | 2008-07-21 21:32:27 +0000 | [diff] [blame] | 390 | for (ObjCProtocolDecl::protocol_iterator PI = rProto->protocol_begin(), |
| 391 | E = rProto->protocol_end(); PI != E; ++PI) |
| 392 | if (ProtocolCompatibleWithProtocol(lProto, *PI)) |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 393 | return true; |
| 394 | return false; |
| 395 | } |
| 396 | |
| 397 | /// ClassImplementsProtocol - Checks that 'lProto' protocol |
| 398 | /// has been implemented in IDecl class, its super class or categories (if |
| 399 | /// lookupCategory is true). |
| 400 | static bool ClassImplementsProtocol(ObjCProtocolDecl *lProto, |
| 401 | ObjCInterfaceDecl *IDecl, |
Fariborz Jahanian | e266564 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 402 | bool lookupCategory, |
| 403 | bool RHSIsQualifiedID = false) { |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 404 | |
| 405 | // 1st, look up the class. |
Chris Lattner | 8bcb525 | 2008-07-21 18:19:38 +0000 | [diff] [blame] | 406 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 407 | IDecl->getReferencedProtocols(); |
| 408 | |
| 409 | for (ObjCList<ObjCProtocolDecl>::iterator PI = Protocols.begin(), |
| 410 | E = Protocols.end(); PI != E; ++PI) { |
| 411 | if (ProtocolCompatibleWithProtocol(lProto, *PI)) |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 412 | return true; |
Fariborz Jahanian | e266564 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 413 | // This is dubious and is added to be compatible with gcc. |
| 414 | // In gcc, it is also allowed assigning a protocol-qualified 'id' |
| 415 | // type to a LHS object when protocol in qualified LHS is in list |
| 416 | // of protocols in the rhs 'id' object. This IMO, should be a bug. |
Ted Kremenek | 5a5cd83 | 2008-06-04 20:48:08 +0000 | [diff] [blame] | 417 | // FIXME: Treat this as an extension, and flag this as an error when |
| 418 | // GCC extensions are not enabled. |
Chris Lattner | 8bcb525 | 2008-07-21 18:19:38 +0000 | [diff] [blame] | 419 | if (RHSIsQualifiedID && ProtocolCompatibleWithProtocol(*PI, lProto)) |
Fariborz Jahanian | e266564 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 420 | return true; |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | // 2nd, look up the category. |
| 424 | if (lookupCategory) |
| 425 | for (ObjCCategoryDecl *CDecl = IDecl->getCategoryList(); CDecl; |
| 426 | CDecl = CDecl->getNextClassCategory()) { |
Chris Lattner | 0be0882 | 2008-07-21 21:32:27 +0000 | [diff] [blame] | 427 | for (ObjCCategoryDecl::protocol_iterator PI = CDecl->protocol_begin(), |
| 428 | E = CDecl->protocol_end(); PI != E; ++PI) |
| 429 | if (ProtocolCompatibleWithProtocol(lProto, *PI)) |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 430 | return true; |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 431 | } |
| 432 | |
| 433 | // 3rd, look up the super class(s) |
| 434 | if (IDecl->getSuperClass()) |
| 435 | return |
Fariborz Jahanian | e266564 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 436 | ClassImplementsProtocol(lProto, IDecl->getSuperClass(), lookupCategory, |
| 437 | RHSIsQualifiedID); |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 438 | |
| 439 | return false; |
| 440 | } |
| 441 | |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 442 | /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an |
| 443 | /// ObjCQualifiedIDType. |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 444 | bool Sema::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs, |
| 445 | bool compare) { |
| 446 | // Allow id<P..> and an 'id' or void* type in all cases. |
| 447 | if (const PointerType *PT = lhs->getAsPointerType()) { |
| 448 | QualType PointeeTy = PT->getPointeeType(); |
| 449 | if (Context.isObjCIdType(PointeeTy) || PointeeTy->isVoidType()) |
| 450 | return true; |
| 451 | } else if (const PointerType *PT = rhs->getAsPointerType()) { |
| 452 | QualType PointeeTy = PT->getPointeeType(); |
| 453 | if (Context.isObjCIdType(PointeeTy) || PointeeTy->isVoidType()) |
| 454 | return true; |
| 455 | } |
| 456 | |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 457 | if (const ObjCQualifiedIdType *lhsQID = lhs->getAsObjCQualifiedIdType()) { |
| 458 | const ObjCQualifiedIdType *rhsQID = rhs->getAsObjCQualifiedIdType(); |
| 459 | const ObjCQualifiedInterfaceType *rhsQI = 0; |
Steve Naroff | d6ba7fd | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 460 | QualType rtype; |
| 461 | |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 462 | if (!rhsQID) { |
| 463 | // Not comparing two ObjCQualifiedIdType's? |
| 464 | if (!rhs->isPointerType()) return false; |
Steve Naroff | d6ba7fd | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 465 | |
| 466 | rtype = rhs->getAsPointerType()->getPointeeType(); |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 467 | rhsQI = rtype->getAsObjCQualifiedInterfaceType(); |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 468 | if (rhsQI == 0) { |
Steve Naroff | d6ba7fd | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 469 | // If the RHS is a unqualified interface pointer "NSString*", |
| 470 | // make sure we check the class hierarchy. |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 471 | if (const ObjCInterfaceType *IT = rtype->getAsObjCInterfaceType()) { |
| 472 | ObjCInterfaceDecl *rhsID = IT->getDecl(); |
| 473 | for (unsigned i = 0; i != lhsQID->getNumProtocols(); ++i) { |
| 474 | // when comparing an id<P> on lhs with a static type on rhs, |
| 475 | // see if static class implements all of id's protocols, directly or |
| 476 | // through its super class and categories. |
| 477 | if (!ClassImplementsProtocol(lhsQID->getProtocols(i), rhsID, true)) |
| 478 | return false; |
| 479 | } |
| 480 | return true; |
| 481 | } |
| 482 | } |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 483 | } |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 484 | |
| 485 | ObjCQualifiedIdType::qual_iterator RHSProtoI, RHSProtoE; |
Steve Naroff | d6ba7fd | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 486 | if (rhsQI) { // We have a qualified interface (e.g. "NSObject<Proto> *"). |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 487 | RHSProtoI = rhsQI->qual_begin(); |
| 488 | RHSProtoE = rhsQI->qual_end(); |
Steve Naroff | d6ba7fd | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 489 | } else if (rhsQID) { // We have a qualified id (e.g. "id<Proto> *"). |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 490 | RHSProtoI = rhsQID->qual_begin(); |
| 491 | RHSProtoE = rhsQID->qual_end(); |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 492 | } else { |
| 493 | return false; |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | for (unsigned i =0; i < lhsQID->getNumProtocols(); i++) { |
| 497 | ObjCProtocolDecl *lhsProto = lhsQID->getProtocols(i); |
| 498 | bool match = false; |
| 499 | |
| 500 | // when comparing an id<P> on lhs with a static type on rhs, |
| 501 | // see if static class implements all of id's protocols, directly or |
| 502 | // through its super class and categories. |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 503 | for (; RHSProtoI != RHSProtoE; ++RHSProtoI) { |
| 504 | ObjCProtocolDecl *rhsProto = *RHSProtoI; |
| 505 | if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || |
| 506 | compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) { |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 507 | match = true; |
| 508 | break; |
| 509 | } |
| 510 | } |
Steve Naroff | d6ba7fd | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 511 | if (rhsQI) { |
| 512 | // If the RHS is a qualified interface pointer "NSString<P>*", |
| 513 | // make sure we check the class hierarchy. |
| 514 | if (const ObjCInterfaceType *IT = rtype->getAsObjCInterfaceType()) { |
| 515 | ObjCInterfaceDecl *rhsID = IT->getDecl(); |
| 516 | for (unsigned i = 0; i != lhsQID->getNumProtocols(); ++i) { |
| 517 | // when comparing an id<P> on lhs with a static type on rhs, |
| 518 | // see if static class implements all of id's protocols, directly or |
| 519 | // through its super class and categories. |
| 520 | if (ClassImplementsProtocol(lhsQID->getProtocols(i), rhsID, true)) { |
| 521 | match = true; |
| 522 | break; |
| 523 | } |
| 524 | } |
| 525 | } |
| 526 | } |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 527 | if (!match) |
| 528 | return false; |
| 529 | } |
| 530 | |
| 531 | return true; |
| 532 | } |
| 533 | |
| 534 | const ObjCQualifiedIdType *rhsQID = rhs->getAsObjCQualifiedIdType(); |
| 535 | assert(rhsQID && "One of the LHS/RHS should be id<x>"); |
| 536 | |
| 537 | if (!lhs->isPointerType()) |
| 538 | return false; |
| 539 | |
| 540 | QualType ltype = lhs->getAsPointerType()->getPointeeType(); |
| 541 | if (const ObjCQualifiedInterfaceType *lhsQI = |
| 542 | ltype->getAsObjCQualifiedInterfaceType()) { |
| 543 | ObjCQualifiedIdType::qual_iterator LHSProtoI = lhsQI->qual_begin(); |
| 544 | ObjCQualifiedIdType::qual_iterator LHSProtoE = lhsQI->qual_end(); |
| 545 | for (; LHSProtoI != LHSProtoE; ++LHSProtoI) { |
| 546 | bool match = false; |
| 547 | ObjCProtocolDecl *lhsProto = *LHSProtoI; |
| 548 | for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) { |
| 549 | ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j); |
| 550 | if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 551 | compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) { |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 552 | match = true; |
| 553 | break; |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 554 | } |
| 555 | } |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 556 | if (!match) |
| 557 | return false; |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 558 | } |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 559 | return true; |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 560 | } |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 561 | |
| 562 | if (const ObjCInterfaceType *IT = ltype->getAsObjCInterfaceType()) { |
| 563 | // for static type vs. qualified 'id' type, check that class implements |
| 564 | // all of 'id's protocols. |
| 565 | ObjCInterfaceDecl *lhsID = IT->getDecl(); |
| 566 | for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) { |
| 567 | ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j); |
Fariborz Jahanian | e266564 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 568 | if (!ClassImplementsProtocol(rhsProto, lhsID, compare, true)) |
Chris Lattner | b2a0e61 | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 569 | return false; |
| 570 | } |
| 571 | return true; |
| 572 | } |
| 573 | return false; |
Chris Lattner | fe1f403 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 574 | } |
| 575 | |