| 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" | 
|  | 15 | #include "clang/AST/ASTContext.h" | 
|  | 16 | #include "clang/AST/DeclObjC.h" | 
| Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprObjC.h" | 
| Daniel Dunbar | 12bc692 | 2008-08-11 03:27:53 +0000 | [diff] [blame] | 18 | #include "clang/Basic/Diagnostic.h" | 
| Chris Lattner | 85a932e | 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 | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 52 | if (Context.getObjCConstantStringInterface().isNull()) { | 
| Chris Lattner | 85a932e | 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 | b327ce0 | 2008-04-02 14:35:35 +0000 | [diff] [blame] | 56 | Decl *IFace = LookupDecl(NSIdent, Decl::IDNS_Ordinary, TUScope); | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 57 | ObjCInterfaceDecl *strIFace = dyn_cast_or_null<ObjCInterfaceDecl>(IFace); | 
| Chris Lattner | 13fd7e5 | 2008-06-21 21:44:18 +0000 | [diff] [blame] | 58 | if (strIFace) | 
|  | 59 | Context.setObjCConstantStringInterface(strIFace); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 60 | } | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 61 | QualType t = Context.getObjCConstantStringInterface(); | 
| Chris Lattner | 13fd7e5 | 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 | 85a932e | 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 | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 88 | QualType t = Context.getObjCSelType(); | 
| Chris Lattner | 85a932e | 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 | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 97 | ObjCProtocolDecl* PDecl = ObjCProtocols[ProtocolId]; | 
| Chris Lattner | 85a932e | 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 | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 103 | QualType t = Context.getObjCProtoType(); | 
| Chris Lattner | 85a932e | 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 |  | 
|  | 110 | bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs, | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 111 | ObjCMethodDecl *Method) { | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 112 | bool anyIncompatibleArgs = false; | 
|  | 113 |  | 
|  | 114 | for (unsigned i = 0; i < NumArgs; i++) { | 
|  | 115 | Expr *argExpr = Args[i]; | 
|  | 116 | assert(argExpr && "CheckMessageArgumentTypes(): missing expression"); | 
|  | 117 |  | 
|  | 118 | QualType lhsType = Method->getParamDecl(i)->getType(); | 
|  | 119 | QualType rhsType = argExpr->getType(); | 
|  | 120 |  | 
|  | 121 | // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8]. | 
| Chris Lattner | 987798a | 2008-04-02 17:17:33 +0000 | [diff] [blame] | 122 | if (lhsType->isArrayType()) | 
|  | 123 | lhsType = Context.getArrayDecayedType(lhsType); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 124 | else if (lhsType->isFunctionType()) | 
|  | 125 | lhsType = Context.getPointerType(lhsType); | 
|  | 126 |  | 
| Chris Lattner | 987798a | 2008-04-02 17:17:33 +0000 | [diff] [blame] | 127 | AssignConvertType Result = | 
|  | 128 | CheckSingleAssignmentConstraints(lhsType, argExpr); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 129 | if (Args[i] != argExpr) // The expression was converted. | 
|  | 130 | Args[i] = argExpr; // Make sure we store the converted expression. | 
|  | 131 |  | 
|  | 132 | anyIncompatibleArgs |= | 
|  | 133 | DiagnoseAssignmentResult(Result, argExpr->getLocStart(), lhsType, rhsType, | 
|  | 134 | argExpr, "sending"); | 
|  | 135 | } | 
|  | 136 | return anyIncompatibleArgs; | 
|  | 137 | } | 
|  | 138 |  | 
|  | 139 | // ActOnClassMessage - used for both unary and keyword messages. | 
|  | 140 | // ArgExprs is optional - if it is present, the number of expressions | 
|  | 141 | // is obtained from Sel.getNumArgs(). | 
|  | 142 | Sema::ExprResult Sema::ActOnClassMessage( | 
|  | 143 | Scope *S, | 
|  | 144 | IdentifierInfo *receiverName, Selector Sel, | 
|  | 145 | SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args, unsigned NumArgs) | 
|  | 146 | { | 
|  | 147 | assert(receiverName && "missing receiver class name"); | 
|  | 148 |  | 
|  | 149 | Expr **ArgExprs = reinterpret_cast<Expr **>(Args); | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 150 | ObjCInterfaceDecl* ClassDecl = 0; | 
| Steve Naroff | fc93d52 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 151 | bool isSuper = false; | 
|  | 152 |  | 
| Daniel Dunbar | 662e8b5 | 2008-08-14 22:04:54 +0000 | [diff] [blame^] | 153 | if (receiverName == SuperID && getCurMethodDecl()) { | 
| Steve Naroff | fc93d52 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 154 | isSuper = true; | 
| Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 155 | ClassDecl = getCurMethodDecl()->getClassInterface()->getSuperClass(); | 
| Steve Naroff | 9511096 | 2008-03-28 21:37:05 +0000 | [diff] [blame] | 156 | if (!ClassDecl) | 
|  | 157 | return Diag(lbrac, diag::error_no_super_class, | 
| Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 158 | getCurMethodDecl()->getClassInterface()->getName()); | 
|  | 159 | if (getCurMethodDecl()->isInstance()) { | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 160 | QualType superTy = Context.getObjCInterfaceType(ClassDecl); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 161 | superTy = Context.getPointerType(superTy); | 
| Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 162 | ExprResult ReceiverExpr = new PredefinedExpr(SourceLocation(), superTy, | 
|  | 163 | PredefinedExpr::ObjCSuper); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 164 | // We are really in an instance method, redirect. | 
|  | 165 | return ActOnInstanceMessage(ReceiverExpr.Val, Sel, lbrac, rbrac, | 
|  | 166 | Args, NumArgs); | 
|  | 167 | } | 
|  | 168 | // We are sending a message to 'super' within a class method. Do nothing, | 
|  | 169 | // the receiver will pass through as 'super' (how convenient:-). | 
|  | 170 | } else | 
|  | 171 | ClassDecl = getObjCInterfaceDecl(receiverName); | 
|  | 172 |  | 
| Steve Naroff | 7c778f1 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 173 | // The following code allows for the following GCC-ism: | 
| Steve Naroff | cb28be6 | 2008-06-04 23:08:38 +0000 | [diff] [blame] | 174 | // | 
|  | 175 | //  typedef XCElementDisplayRect XCElementGraphicsRect; | 
|  | 176 | // | 
|  | 177 | //  @implementation XCRASlice | 
|  | 178 | //  - whatever { // Note that XCElementGraphicsRect is a typedef name. | 
|  | 179 | //    _sGraphicsDelegate =[[XCElementGraphicsRect alloc] init]; | 
|  | 180 | //  } | 
|  | 181 | // | 
| Steve Naroff | 7c778f1 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 182 | // If necessary, the following lookup could move to getObjCInterfaceDecl(). | 
|  | 183 | if (!ClassDecl) { | 
|  | 184 | Decl *IDecl = LookupDecl(receiverName, Decl::IDNS_Ordinary, 0, false); | 
|  | 185 | if (TypedefDecl *OCTD = dyn_cast_or_null<TypedefDecl>(IDecl)) { | 
|  | 186 | const ObjCInterfaceType *OCIT; | 
|  | 187 | OCIT = OCTD->getUnderlyingType()->getAsObjCInterfaceType(); | 
|  | 188 | if (OCIT) | 
|  | 189 | ClassDecl = OCIT->getDecl(); | 
|  | 190 | } | 
|  | 191 | } | 
|  | 192 | assert(ClassDecl && "missing interface declaration"); | 
| Steve Naroff | cb28be6 | 2008-06-04 23:08:38 +0000 | [diff] [blame] | 193 | ObjCMethodDecl *Method = 0; | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 194 | QualType returnType; | 
| Steve Naroff | 7c778f1 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 195 | Method = ClassDecl->lookupClassMethod(Sel); | 
|  | 196 |  | 
|  | 197 | // If we have an implementation in scope, check "private" methods. | 
|  | 198 | if (!Method) { | 
|  | 199 | if (ObjCImplementationDecl *ImpDecl = | 
|  | 200 | ObjCImplementations[ClassDecl->getIdentifier()]) | 
|  | 201 | Method = ImpDecl->getClassMethod(Sel); | 
| Steve Naroff | 9ad23d6 | 2008-06-04 14:43:54 +0000 | [diff] [blame] | 202 | } | 
| Steve Naroff | 7c778f1 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 203 | // Before we give up, check if the selector is an instance method. | 
|  | 204 | if (!Method) | 
|  | 205 | Method = ClassDecl->lookupInstanceMethod(Sel); | 
|  | 206 |  | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 207 | if (!Method) { | 
|  | 208 | Diag(lbrac, diag::warn_method_not_found, std::string("+"), Sel.getName(), | 
|  | 209 | SourceRange(lbrac, rbrac)); | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 210 | returnType = Context.getObjCIdType(); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 211 | } else { | 
|  | 212 | returnType = Method->getResultType(); | 
|  | 213 | if (Sel.getNumArgs()) { | 
|  | 214 | if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method)) | 
|  | 215 | return true; | 
|  | 216 | } | 
|  | 217 | } | 
| Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 218 |  | 
|  | 219 | // If we have the ObjCInterfaceDecl* for the class that is receiving | 
|  | 220 | // the message, use that to construct the ObjCMessageExpr.  Otherwise | 
|  | 221 | // pass on the IdentifierInfo* for the class. | 
| Steve Naroff | fc93d52 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 222 | // FIXME: need to do a better job handling 'super' usage within a class | 
|  | 223 | // For now, we simply pass the "super" identifier through (which isn't | 
|  | 224 | // consistent with instance methods. | 
| Steve Naroff | 7c778f1 | 2008-07-25 19:39:00 +0000 | [diff] [blame] | 225 | if (isSuper) | 
| Steve Naroff | fc93d52 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 226 | return new ObjCMessageExpr(receiverName, Sel, returnType, Method, | 
| Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 227 | lbrac, rbrac, ArgExprs, NumArgs); | 
|  | 228 | else | 
| Steve Naroff | fc93d52 | 2008-07-24 19:44:33 +0000 | [diff] [blame] | 229 | return new ObjCMessageExpr(ClassDecl, Sel, returnType, Method, | 
| Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 230 | lbrac, rbrac, ArgExprs, NumArgs); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 231 | } | 
|  | 232 |  | 
|  | 233 | // ActOnInstanceMessage - used for both unary and keyword messages. | 
|  | 234 | // ArgExprs is optional - if it is present, the number of expressions | 
|  | 235 | // is obtained from Sel.getNumArgs(). | 
| Chris Lattner | 1565e03 | 2008-07-21 06:31:05 +0000 | [diff] [blame] | 236 | Sema::ExprResult Sema::ActOnInstanceMessage(ExprTy *receiver, Selector Sel, | 
| Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 237 | SourceLocation lbrac, | 
|  | 238 | SourceLocation rbrac, | 
|  | 239 | ExprTy **Args, unsigned NumArgs) { | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 240 | assert(receiver && "missing receiver expression"); | 
|  | 241 |  | 
|  | 242 | Expr **ArgExprs = reinterpret_cast<Expr **>(Args); | 
|  | 243 | Expr *RExpr = static_cast<Expr *>(receiver); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 244 | QualType returnType; | 
| Steve Naroff | 94a82c9 | 2008-05-31 02:19:15 +0000 | [diff] [blame] | 245 |  | 
| Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 246 | QualType ReceiverCType = | 
|  | 247 | Context.getCanonicalType(RExpr->getType()).getUnqualifiedType(); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 248 |  | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 249 | // Handle messages to id. | 
| Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 250 | if (ReceiverCType == Context.getCanonicalType(Context.getObjCIdType())) { | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 251 | ObjCMethodDecl *Method = InstanceMethodPool[Sel].Method; | 
| Chris Lattner | 6e10a08 | 2008-02-01 06:57:39 +0000 | [diff] [blame] | 252 | if (!Method) | 
|  | 253 | Method = FactoryMethodPool[Sel].Method; | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 254 | if (!Method) { | 
|  | 255 | Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(), | 
|  | 256 | SourceRange(lbrac, rbrac)); | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 257 | returnType = Context.getObjCIdType(); | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 258 | } else { | 
|  | 259 | returnType = Method->getResultType(); | 
|  | 260 | if (Sel.getNumArgs()) | 
|  | 261 | if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method)) | 
|  | 262 | return true; | 
|  | 263 | } | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 264 | return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac, | 
|  | 265 | ArgExprs, NumArgs); | 
|  | 266 | } | 
|  | 267 |  | 
|  | 268 | // Handle messages to Class. | 
| Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 269 | if (ReceiverCType == Context.getCanonicalType(Context.getObjCClassType())) { | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 270 | ObjCMethodDecl *Method = 0; | 
| Chris Lattner | 6562fda | 2008-07-21 06:44:27 +0000 | [diff] [blame] | 271 | if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) { | 
| Steve Naroff | e2af8b1 | 2008-06-05 14:49:39 +0000 | [diff] [blame] | 272 | // If we have an implementation in scope, check "private" methods. | 
| Chris Lattner | 6562fda | 2008-07-21 06:44:27 +0000 | [diff] [blame] | 273 | if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) | 
| Steve Naroff | e2af8b1 | 2008-06-05 14:49:39 +0000 | [diff] [blame] | 274 | if (ObjCImplementationDecl *ImpDecl = | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 275 | ObjCImplementations[ClassDecl->getIdentifier()]) | 
| Steve Naroff | e2af8b1 | 2008-06-05 14:49:39 +0000 | [diff] [blame] | 276 | Method = ImpDecl->getClassMethod(Sel); | 
|  | 277 | } | 
|  | 278 | if (!Method) | 
|  | 279 | Method = FactoryMethodPool[Sel].Method; | 
|  | 280 | if (!Method) | 
|  | 281 | Method = InstanceMethodPool[Sel].Method; | 
|  | 282 | if (!Method) { | 
|  | 283 | Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(), | 
| Chris Lattner | 0b2f7ea | 2008-07-21 06:16:07 +0000 | [diff] [blame] | 284 | RExpr->getSourceRange()); | 
| Steve Naroff | e2af8b1 | 2008-06-05 14:49:39 +0000 | [diff] [blame] | 285 | returnType = Context.getObjCIdType(); | 
|  | 286 | } else { | 
|  | 287 | returnType = Method->getResultType(); | 
|  | 288 | if (Sel.getNumArgs()) | 
|  | 289 | if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method)) | 
|  | 290 | return true; | 
|  | 291 | } | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 292 |  | 
|  | 293 | return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac, | 
|  | 294 | ArgExprs, NumArgs); | 
|  | 295 | } | 
|  | 296 |  | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 297 | ObjCMethodDecl *Method = 0; | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 298 | ObjCInterfaceDecl* ClassDecl = 0; | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 299 |  | 
|  | 300 | // We allow sending a message to a qualified ID ("id<foo>"), which is ok as | 
|  | 301 | // long as one of the protocols implements the selector (if not, warn). | 
| Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 302 | if (ObjCQualifiedIdType *QIT = dyn_cast<ObjCQualifiedIdType>(ReceiverCType)) { | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 303 | // Search protocols | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 304 | for (unsigned i = 0; i < QIT->getNumProtocols(); i++) { | 
|  | 305 | ObjCProtocolDecl *PDecl = QIT->getProtocols(i); | 
|  | 306 | if (PDecl && (Method = PDecl->lookupInstanceMethod(Sel))) | 
|  | 307 | break; | 
|  | 308 | } | 
|  | 309 | if (!Method) | 
|  | 310 | Diag(lbrac, diag::warn_method_not_found_in_protocol, | 
|  | 311 | std::string("-"), Sel.getName(), | 
| Chris Lattner | 0b2f7ea | 2008-07-21 06:16:07 +0000 | [diff] [blame] | 312 | RExpr->getSourceRange()); | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 313 | } else if (const ObjCInterfaceType *OCIReceiver = | 
| Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 314 | ReceiverCType->getAsPointerToObjCInterfaceType()) { | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 315 | // We allow sending a message to a pointer to an interface (an object). | 
| Chris Lattner | fb8cc1d | 2008-02-01 06:43:02 +0000 | [diff] [blame] | 316 |  | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 317 | ClassDecl = OCIReceiver->getDecl(); | 
|  | 318 | // FIXME: consider using InstanceMethodPool, since it will be faster | 
|  | 319 | // than the following method (which can do *many* linear searches). The | 
|  | 320 | // idea is to add class info to InstanceMethodPool. | 
|  | 321 | Method = ClassDecl->lookupInstanceMethod(Sel); | 
|  | 322 |  | 
|  | 323 | if (!Method) { | 
|  | 324 | // Search protocol qualifiers. | 
|  | 325 | for (ObjCQualifiedIdType::qual_iterator QI = OCIReceiver->qual_begin(), | 
|  | 326 | E = OCIReceiver->qual_end(); QI != E; ++QI) { | 
|  | 327 | if ((Method = (*QI)->lookupInstanceMethod(Sel))) | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 328 | break; | 
|  | 329 | } | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 330 | } | 
| Chris Lattner | c188d30 | 2008-07-21 05:27:51 +0000 | [diff] [blame] | 331 |  | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 332 | if (!Method && !OCIReceiver->qual_empty()) | 
|  | 333 | Diag(lbrac, diag::warn_method_not_found_in_protocol, | 
|  | 334 | std::string("-"), Sel.getName(), | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 335 | SourceRange(lbrac, rbrac)); | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 336 | } else { | 
|  | 337 | Diag(lbrac, diag::error_bad_receiver_type, | 
| Chris Lattner | 0b2f7ea | 2008-07-21 06:16:07 +0000 | [diff] [blame] | 338 | RExpr->getType().getAsString(), RExpr->getSourceRange()); | 
| Chris Lattner | 2b1cc8b | 2008-07-21 06:12:56 +0000 | [diff] [blame] | 339 | return true; | 
| Chris Lattner | fe1a553 | 2008-07-21 05:57:44 +0000 | [diff] [blame] | 340 | } | 
|  | 341 |  | 
|  | 342 | if (!Method) { | 
|  | 343 | // If we have an implementation in scope, check "private" methods. | 
|  | 344 | if (ClassDecl) | 
|  | 345 | if (ObjCImplementationDecl *ImpDecl = | 
|  | 346 | ObjCImplementations[ClassDecl->getIdentifier()]) | 
|  | 347 | Method = ImpDecl->getInstanceMethod(Sel); | 
|  | 348 | // If we still haven't found a method, look in the global pool. This | 
|  | 349 | // behavior isn't very desirable, however we need it for GCC | 
|  | 350 | // compatibility. | 
|  | 351 | if (!Method) | 
|  | 352 | Method = InstanceMethodPool[Sel].Method; | 
|  | 353 | } | 
|  | 354 | if (!Method) { | 
|  | 355 | Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(), | 
|  | 356 | SourceRange(lbrac, rbrac)); | 
|  | 357 | returnType = Context.getObjCIdType(); | 
|  | 358 | } else { | 
|  | 359 | returnType = Method->getResultType(); | 
|  | 360 | if (Sel.getNumArgs()) | 
|  | 361 | if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method)) | 
|  | 362 | return true; | 
| Chris Lattner | 85a932e | 2008-01-04 22:32:30 +0000 | [diff] [blame] | 363 | } | 
|  | 364 | return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac, | 
|  | 365 | ArgExprs, NumArgs); | 
|  | 366 | } | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 367 |  | 
|  | 368 | //===----------------------------------------------------------------------===// | 
|  | 369 | // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's. | 
|  | 370 | //===----------------------------------------------------------------------===// | 
|  | 371 |  | 
|  | 372 | /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the | 
|  | 373 | /// inheritance hierarchy of 'rProto'. | 
|  | 374 | static bool ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto, | 
|  | 375 | ObjCProtocolDecl *rProto) { | 
|  | 376 | if (lProto == rProto) | 
|  | 377 | return true; | 
| Chris Lattner | 780f329 | 2008-07-21 21:32:27 +0000 | [diff] [blame] | 378 | for (ObjCProtocolDecl::protocol_iterator PI = rProto->protocol_begin(), | 
|  | 379 | E = rProto->protocol_end(); PI != E; ++PI) | 
|  | 380 | if (ProtocolCompatibleWithProtocol(lProto, *PI)) | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 381 | return true; | 
|  | 382 | return false; | 
|  | 383 | } | 
|  | 384 |  | 
|  | 385 | /// ClassImplementsProtocol - Checks that 'lProto' protocol | 
|  | 386 | /// has been implemented in IDecl class, its super class or categories (if | 
|  | 387 | /// lookupCategory is true). | 
|  | 388 | static bool ClassImplementsProtocol(ObjCProtocolDecl *lProto, | 
|  | 389 | ObjCInterfaceDecl *IDecl, | 
| Fariborz Jahanian | 2663170 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 390 | bool lookupCategory, | 
|  | 391 | bool RHSIsQualifiedID = false) { | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 392 |  | 
|  | 393 | // 1st, look up the class. | 
| Chris Lattner | 3db6cae | 2008-07-21 18:19:38 +0000 | [diff] [blame] | 394 | const ObjCList<ObjCProtocolDecl> &Protocols = | 
|  | 395 | IDecl->getReferencedProtocols(); | 
|  | 396 |  | 
|  | 397 | for (ObjCList<ObjCProtocolDecl>::iterator PI = Protocols.begin(), | 
|  | 398 | E = Protocols.end(); PI != E; ++PI) { | 
|  | 399 | if (ProtocolCompatibleWithProtocol(lProto, *PI)) | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 400 | return true; | 
| Fariborz Jahanian | 2663170 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 401 | // This is dubious and is added to be compatible with gcc. | 
|  | 402 | // In gcc, it is also allowed assigning a protocol-qualified 'id' | 
|  | 403 | // type to a LHS object when protocol in qualified LHS is in list | 
|  | 404 | // of protocols in the rhs 'id' object. This IMO, should be a bug. | 
| Ted Kremenek | fd5b2ce | 2008-06-04 20:48:08 +0000 | [diff] [blame] | 405 | // FIXME: Treat this as an extension, and flag this as an error when | 
|  | 406 | //  GCC extensions are not enabled. | 
| Chris Lattner | 3db6cae | 2008-07-21 18:19:38 +0000 | [diff] [blame] | 407 | if (RHSIsQualifiedID && ProtocolCompatibleWithProtocol(*PI, lProto)) | 
| Fariborz Jahanian | 2663170 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 408 | return true; | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 409 | } | 
|  | 410 |  | 
|  | 411 | // 2nd, look up the category. | 
|  | 412 | if (lookupCategory) | 
|  | 413 | for (ObjCCategoryDecl *CDecl = IDecl->getCategoryList(); CDecl; | 
|  | 414 | CDecl = CDecl->getNextClassCategory()) { | 
| Chris Lattner | 780f329 | 2008-07-21 21:32:27 +0000 | [diff] [blame] | 415 | for (ObjCCategoryDecl::protocol_iterator PI = CDecl->protocol_begin(), | 
|  | 416 | E = CDecl->protocol_end(); PI != E; ++PI) | 
|  | 417 | if (ProtocolCompatibleWithProtocol(lProto, *PI)) | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 418 | return true; | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 419 | } | 
|  | 420 |  | 
|  | 421 | // 3rd, look up the super class(s) | 
|  | 422 | if (IDecl->getSuperClass()) | 
|  | 423 | return | 
| Fariborz Jahanian | 2663170 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 424 | ClassImplementsProtocol(lProto, IDecl->getSuperClass(), lookupCategory, | 
|  | 425 | RHSIsQualifiedID); | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 426 |  | 
|  | 427 | return false; | 
|  | 428 | } | 
|  | 429 |  | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 430 | /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an | 
|  | 431 | /// ObjCQualifiedIDType. | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 432 | bool Sema::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs, | 
|  | 433 | bool compare) { | 
|  | 434 | // Allow id<P..> and an 'id' or void* type in all cases. | 
|  | 435 | if (const PointerType *PT = lhs->getAsPointerType()) { | 
|  | 436 | QualType PointeeTy = PT->getPointeeType(); | 
|  | 437 | if (Context.isObjCIdType(PointeeTy) || PointeeTy->isVoidType()) | 
|  | 438 | return true; | 
|  | 439 | } else if (const PointerType *PT = rhs->getAsPointerType()) { | 
|  | 440 | QualType PointeeTy = PT->getPointeeType(); | 
|  | 441 | if (Context.isObjCIdType(PointeeTy) || PointeeTy->isVoidType()) | 
|  | 442 | return true; | 
|  | 443 | } | 
|  | 444 |  | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 445 | if (const ObjCQualifiedIdType *lhsQID = lhs->getAsObjCQualifiedIdType()) { | 
|  | 446 | const ObjCQualifiedIdType *rhsQID = rhs->getAsObjCQualifiedIdType(); | 
|  | 447 | const ObjCQualifiedInterfaceType *rhsQI = 0; | 
| Steve Naroff | 289d9f2 | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 448 | QualType rtype; | 
|  | 449 |  | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 450 | if (!rhsQID) { | 
|  | 451 | // Not comparing two ObjCQualifiedIdType's? | 
|  | 452 | if (!rhs->isPointerType()) return false; | 
| Steve Naroff | 289d9f2 | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 453 |  | 
|  | 454 | rtype = rhs->getAsPointerType()->getPointeeType(); | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 455 | rhsQI = rtype->getAsObjCQualifiedInterfaceType(); | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 456 | if (rhsQI == 0) { | 
| Steve Naroff | 289d9f2 | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 457 | // If the RHS is a unqualified interface pointer "NSString*", | 
|  | 458 | // make sure we check the class hierarchy. | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 459 | if (const ObjCInterfaceType *IT = rtype->getAsObjCInterfaceType()) { | 
|  | 460 | ObjCInterfaceDecl *rhsID = IT->getDecl(); | 
|  | 461 | for (unsigned i = 0; i != lhsQID->getNumProtocols(); ++i) { | 
|  | 462 | // when comparing an id<P> on lhs with a static type on rhs, | 
|  | 463 | // see if static class implements all of id's protocols, directly or | 
|  | 464 | // through its super class and categories. | 
|  | 465 | if (!ClassImplementsProtocol(lhsQID->getProtocols(i), rhsID, true)) | 
|  | 466 | return false; | 
|  | 467 | } | 
|  | 468 | return true; | 
|  | 469 | } | 
|  | 470 | } | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 471 | } | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 472 |  | 
|  | 473 | ObjCQualifiedIdType::qual_iterator RHSProtoI, RHSProtoE; | 
| Steve Naroff | 289d9f2 | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 474 | if (rhsQI) { // We have a qualified interface (e.g. "NSObject<Proto> *"). | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 475 | RHSProtoI = rhsQI->qual_begin(); | 
|  | 476 | RHSProtoE = rhsQI->qual_end(); | 
| Steve Naroff | 289d9f2 | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 477 | } else if (rhsQID) { // We have a qualified id (e.g. "id<Proto> *"). | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 478 | RHSProtoI = rhsQID->qual_begin(); | 
|  | 479 | RHSProtoE = rhsQID->qual_end(); | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 480 | } else { | 
|  | 481 | return false; | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 482 | } | 
|  | 483 |  | 
|  | 484 | for (unsigned i =0; i < lhsQID->getNumProtocols(); i++) { | 
|  | 485 | ObjCProtocolDecl *lhsProto = lhsQID->getProtocols(i); | 
|  | 486 | bool match = false; | 
|  | 487 |  | 
|  | 488 | // when comparing an id<P> on lhs with a static type on rhs, | 
|  | 489 | // see if static class implements all of id's protocols, directly or | 
|  | 490 | // through its super class and categories. | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 491 | for (; RHSProtoI != RHSProtoE; ++RHSProtoI) { | 
|  | 492 | ObjCProtocolDecl *rhsProto = *RHSProtoI; | 
|  | 493 | if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || | 
|  | 494 | compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) { | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 495 | match = true; | 
|  | 496 | break; | 
|  | 497 | } | 
|  | 498 | } | 
| Steve Naroff | 289d9f2 | 2008-06-01 02:43:50 +0000 | [diff] [blame] | 499 | if (rhsQI) { | 
|  | 500 | // If the RHS is a qualified interface pointer "NSString<P>*", | 
|  | 501 | // make sure we check the class hierarchy. | 
|  | 502 | if (const ObjCInterfaceType *IT = rtype->getAsObjCInterfaceType()) { | 
|  | 503 | ObjCInterfaceDecl *rhsID = IT->getDecl(); | 
|  | 504 | for (unsigned i = 0; i != lhsQID->getNumProtocols(); ++i) { | 
|  | 505 | // when comparing an id<P> on lhs with a static type on rhs, | 
|  | 506 | // see if static class implements all of id's protocols, directly or | 
|  | 507 | // through its super class and categories. | 
|  | 508 | if (ClassImplementsProtocol(lhsQID->getProtocols(i), rhsID, true)) { | 
|  | 509 | match = true; | 
|  | 510 | break; | 
|  | 511 | } | 
|  | 512 | } | 
|  | 513 | } | 
|  | 514 | } | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 515 | if (!match) | 
|  | 516 | return false; | 
|  | 517 | } | 
|  | 518 |  | 
|  | 519 | return true; | 
|  | 520 | } | 
|  | 521 |  | 
|  | 522 | const ObjCQualifiedIdType *rhsQID = rhs->getAsObjCQualifiedIdType(); | 
|  | 523 | assert(rhsQID && "One of the LHS/RHS should be id<x>"); | 
|  | 524 |  | 
|  | 525 | if (!lhs->isPointerType()) | 
|  | 526 | return false; | 
|  | 527 |  | 
|  | 528 | QualType ltype = lhs->getAsPointerType()->getPointeeType(); | 
|  | 529 | if (const ObjCQualifiedInterfaceType *lhsQI = | 
|  | 530 | ltype->getAsObjCQualifiedInterfaceType()) { | 
|  | 531 | ObjCQualifiedIdType::qual_iterator LHSProtoI = lhsQI->qual_begin(); | 
|  | 532 | ObjCQualifiedIdType::qual_iterator LHSProtoE = lhsQI->qual_end(); | 
|  | 533 | for (; LHSProtoI != LHSProtoE; ++LHSProtoI) { | 
|  | 534 | bool match = false; | 
|  | 535 | ObjCProtocolDecl *lhsProto = *LHSProtoI; | 
|  | 536 | for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) { | 
|  | 537 | ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j); | 
|  | 538 | if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 539 | compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) { | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 540 | match = true; | 
|  | 541 | break; | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 542 | } | 
|  | 543 | } | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 544 | if (!match) | 
|  | 545 | return false; | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 546 | } | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 547 | return true; | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 548 | } | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 549 |  | 
|  | 550 | if (const ObjCInterfaceType *IT = ltype->getAsObjCInterfaceType()) { | 
|  | 551 | // for static type vs. qualified 'id' type, check that class implements | 
|  | 552 | // all of 'id's protocols. | 
|  | 553 | ObjCInterfaceDecl *lhsID = IT->getDecl(); | 
|  | 554 | for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) { | 
|  | 555 | ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j); | 
| Fariborz Jahanian | 2663170 | 2008-06-04 19:00:03 +0000 | [diff] [blame] | 556 | if (!ClassImplementsProtocol(rhsProto, lhsID, compare, true)) | 
| Chris Lattner | b1698cf | 2008-04-20 02:09:31 +0000 | [diff] [blame] | 557 | return false; | 
|  | 558 | } | 
|  | 559 | return true; | 
|  | 560 | } | 
|  | 561 | return false; | 
| Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 562 | } | 
|  | 563 |  |