blob: 08177e6769635aeaa12f2b2f1a7d5d88c411b73f [file] [log] [blame]
Chris Lattner85a932e2008-01-04 22:32:30 +00001//===--- SemaExprObjC.cpp - Semantic Analysis for ObjC Expressions --------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for Objective-C expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/DeclObjC.h"
Steve Narofff494b572008-05-29 21:12:08 +000017#include "clang/AST/ExprObjC.h"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000018#include "clang/Basic/Diagnostic.h"
Chris Lattner85a932e2008-01-04 22:32:30 +000019using namespace clang;
20
21Sema::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 Kremeneka526c5c2008-01-07 19:49:32 +000052 if (Context.getObjCConstantStringInterface().isNull()) {
Chris Lattner85a932e2008-01-04 22:32:30 +000053 // 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 Naroffb327ce02008-04-02 14:35:35 +000056 Decl *IFace = LookupDecl(NSIdent, Decl::IDNS_Ordinary, TUScope);
Ted Kremeneka526c5c2008-01-07 19:49:32 +000057 ObjCInterfaceDecl *strIFace = dyn_cast_or_null<ObjCInterfaceDecl>(IFace);
Chris Lattner13fd7e52008-06-21 21:44:18 +000058 if (strIFace)
59 Context.setObjCConstantStringInterface(strIFace);
Chris Lattner85a932e2008-01-04 22:32:30 +000060 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +000061 QualType t = Context.getObjCConstantStringInterface();
Chris Lattner13fd7e52008-06-21 21:44:18 +000062 // 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 Lattner85a932e2008-01-04 22:32:30 +000069 return new ObjCStringLiteral(S, t, AtLoc);
70}
71
72Sema::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
83Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
84 SourceLocation AtLoc,
85 SourceLocation SelLoc,
86 SourceLocation LParenLoc,
87 SourceLocation RParenLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +000088 QualType t = Context.getObjCSelType();
Chris Lattner85a932e2008-01-04 22:32:30 +000089 return new ObjCSelectorExpr(t, Sel, AtLoc, RParenLoc);
90}
91
92Sema::ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId,
93 SourceLocation AtLoc,
94 SourceLocation ProtoLoc,
95 SourceLocation LParenLoc,
96 SourceLocation RParenLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +000097 ObjCProtocolDecl* PDecl = ObjCProtocols[ProtocolId];
Chris Lattner85a932e2008-01-04 22:32:30 +000098 if (!PDecl) {
99 Diag(ProtoLoc, diag::err_undeclared_protocol, ProtocolId->getName());
100 return true;
101 }
102
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000103 QualType t = Context.getObjCProtoType();
Chris Lattner85a932e2008-01-04 22:32:30 +0000104 if (t.isNull())
105 return true;
106 t = Context.getPointerType(t);
107 return new ObjCProtocolExpr(t, PDecl, AtLoc, RParenLoc);
108}
109
Daniel Dunbar637cebb2008-09-11 00:01:56 +0000110bool Sema::CheckMessageArgumentTypes(Expr **Args, Selector Sel,
111 ObjCMethodDecl *Method,
112 const char *PrefixStr,
113 SourceLocation lbrac, SourceLocation rbrac,
114 QualType &ReturnType) {
115 unsigned NumArgs = Sel.getNumArgs();
116 if (!Method) {
Daniel Dunbar6660c8a2008-09-11 00:04:36 +0000117 // Apply default argument promotion as for (C99 6.5.2.2p6).
118 for (unsigned i = 0; i != NumArgs; i++)
119 DefaultArgumentPromotion(Args[i]);
120
Daniel Dunbar637cebb2008-09-11 00:01:56 +0000121 Diag(lbrac, diag::warn_method_not_found, std::string(PrefixStr),
122 Sel.getName(), SourceRange(lbrac, rbrac));
123 ReturnType = Context.getObjCIdType();
124 return false;
125 } else {
126 ReturnType = Method->getResultType();
127 }
128
Chris Lattner85a932e2008-01-04 22:32:30 +0000129 bool anyIncompatibleArgs = false;
Chris Lattner85a932e2008-01-04 22:32:30 +0000130 for (unsigned i = 0; i < NumArgs; i++) {
131 Expr *argExpr = Args[i];
132 assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
133
134 QualType lhsType = Method->getParamDecl(i)->getType();
135 QualType rhsType = argExpr->getType();
136
137 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
Chris Lattner987798a2008-04-02 17:17:33 +0000138 if (lhsType->isArrayType())
139 lhsType = Context.getArrayDecayedType(lhsType);
Chris Lattner85a932e2008-01-04 22:32:30 +0000140 else if (lhsType->isFunctionType())
141 lhsType = Context.getPointerType(lhsType);
142
Chris Lattner987798a2008-04-02 17:17:33 +0000143 AssignConvertType Result =
144 CheckSingleAssignmentConstraints(lhsType, argExpr);
Chris Lattner85a932e2008-01-04 22:32:30 +0000145 if (Args[i] != argExpr) // The expression was converted.
146 Args[i] = argExpr; // Make sure we store the converted expression.
147
148 anyIncompatibleArgs |=
149 DiagnoseAssignmentResult(Result, argExpr->getLocStart(), lhsType, rhsType,
150 argExpr, "sending");
151 }
152 return anyIncompatibleArgs;
153}
154
155// ActOnClassMessage - used for both unary and keyword messages.
156// ArgExprs is optional - if it is present, the number of expressions
157// is obtained from Sel.getNumArgs().
158Sema::ExprResult Sema::ActOnClassMessage(
159 Scope *S,
160 IdentifierInfo *receiverName, Selector Sel,
161 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args, unsigned NumArgs)
162{
163 assert(receiverName && "missing receiver class name");
164
165 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000166 ObjCInterfaceDecl* ClassDecl = 0;
Steve Narofffc93d522008-07-24 19:44:33 +0000167 bool isSuper = false;
168
Daniel Dunbar662e8b52008-08-14 22:04:54 +0000169 if (receiverName == SuperID && getCurMethodDecl()) {
Steve Narofffc93d522008-07-24 19:44:33 +0000170 isSuper = true;
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000171 ClassDecl = getCurMethodDecl()->getClassInterface()->getSuperClass();
Steve Naroff95110962008-03-28 21:37:05 +0000172 if (!ClassDecl)
173 return Diag(lbrac, diag::error_no_super_class,
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000174 getCurMethodDecl()->getClassInterface()->getName());
175 if (getCurMethodDecl()->isInstance()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000176 QualType superTy = Context.getObjCInterfaceType(ClassDecl);
Chris Lattner85a932e2008-01-04 22:32:30 +0000177 superTy = Context.getPointerType(superTy);
Chris Lattnerd9f69102008-08-10 01:53:14 +0000178 ExprResult ReceiverExpr = new PredefinedExpr(SourceLocation(), superTy,
179 PredefinedExpr::ObjCSuper);
Chris Lattner85a932e2008-01-04 22:32:30 +0000180 // We are really in an instance method, redirect.
181 return ActOnInstanceMessage(ReceiverExpr.Val, Sel, lbrac, rbrac,
182 Args, NumArgs);
183 }
184 // We are sending a message to 'super' within a class method. Do nothing,
185 // the receiver will pass through as 'super' (how convenient:-).
186 } else
187 ClassDecl = getObjCInterfaceDecl(receiverName);
188
Steve Naroff7c778f12008-07-25 19:39:00 +0000189 // The following code allows for the following GCC-ism:
Steve Naroffcb28be62008-06-04 23:08:38 +0000190 //
191 // typedef XCElementDisplayRect XCElementGraphicsRect;
192 //
193 // @implementation XCRASlice
194 // - whatever { // Note that XCElementGraphicsRect is a typedef name.
195 // _sGraphicsDelegate =[[XCElementGraphicsRect alloc] init];
196 // }
197 //
Steve Naroff7c778f12008-07-25 19:39:00 +0000198 // If necessary, the following lookup could move to getObjCInterfaceDecl().
199 if (!ClassDecl) {
200 Decl *IDecl = LookupDecl(receiverName, Decl::IDNS_Ordinary, 0, false);
201 if (TypedefDecl *OCTD = dyn_cast_or_null<TypedefDecl>(IDecl)) {
202 const ObjCInterfaceType *OCIT;
203 OCIT = OCTD->getUnderlyingType()->getAsObjCInterfaceType();
204 if (OCIT)
205 ClassDecl = OCIT->getDecl();
206 }
207 }
208 assert(ClassDecl && "missing interface declaration");
Steve Naroffcb28be62008-06-04 23:08:38 +0000209 ObjCMethodDecl *Method = 0;
Chris Lattner85a932e2008-01-04 22:32:30 +0000210 QualType returnType;
Steve Naroff7c778f12008-07-25 19:39:00 +0000211 Method = ClassDecl->lookupClassMethod(Sel);
212
213 // If we have an implementation in scope, check "private" methods.
214 if (!Method) {
215 if (ObjCImplementationDecl *ImpDecl =
216 ObjCImplementations[ClassDecl->getIdentifier()])
217 Method = ImpDecl->getClassMethod(Sel);
Steve Naroff9ad23d62008-06-04 14:43:54 +0000218 }
Steve Naroff7c778f12008-07-25 19:39:00 +0000219 // Before we give up, check if the selector is an instance method.
220 if (!Method)
221 Method = ClassDecl->lookupInstanceMethod(Sel);
222
Daniel Dunbar637cebb2008-09-11 00:01:56 +0000223 if (CheckMessageArgumentTypes(ArgExprs, Sel, Method, "+",
224 lbrac, rbrac, returnType))
225 return true;
Ted Kremenek4df728e2008-06-24 15:50:53 +0000226
227 // If we have the ObjCInterfaceDecl* for the class that is receiving
228 // the message, use that to construct the ObjCMessageExpr. Otherwise
229 // pass on the IdentifierInfo* for the class.
Steve Narofffc93d522008-07-24 19:44:33 +0000230 // FIXME: need to do a better job handling 'super' usage within a class
231 // For now, we simply pass the "super" identifier through (which isn't
232 // consistent with instance methods.
Steve Naroff7c778f12008-07-25 19:39:00 +0000233 if (isSuper)
Steve Narofffc93d522008-07-24 19:44:33 +0000234 return new ObjCMessageExpr(receiverName, Sel, returnType, Method,
Ted Kremenek4df728e2008-06-24 15:50:53 +0000235 lbrac, rbrac, ArgExprs, NumArgs);
236 else
Steve Narofffc93d522008-07-24 19:44:33 +0000237 return new ObjCMessageExpr(ClassDecl, Sel, returnType, Method,
Ted Kremenek4df728e2008-06-24 15:50:53 +0000238 lbrac, rbrac, ArgExprs, NumArgs);
Chris Lattner85a932e2008-01-04 22:32:30 +0000239}
240
241// ActOnInstanceMessage - used for both unary and keyword messages.
242// ArgExprs is optional - if it is present, the number of expressions
243// is obtained from Sel.getNumArgs().
Chris Lattner1565e032008-07-21 06:31:05 +0000244Sema::ExprResult Sema::ActOnInstanceMessage(ExprTy *receiver, Selector Sel,
Chris Lattnerb77792e2008-07-26 22:17:49 +0000245 SourceLocation lbrac,
246 SourceLocation rbrac,
247 ExprTy **Args, unsigned NumArgs) {
Chris Lattner85a932e2008-01-04 22:32:30 +0000248 assert(receiver && "missing receiver expression");
249
250 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
251 Expr *RExpr = static_cast<Expr *>(receiver);
Chris Lattner85a932e2008-01-04 22:32:30 +0000252 QualType returnType;
Steve Naroff94a82c92008-05-31 02:19:15 +0000253
Chris Lattnerb77792e2008-07-26 22:17:49 +0000254 QualType ReceiverCType =
255 Context.getCanonicalType(RExpr->getType()).getUnqualifiedType();
Chris Lattner85a932e2008-01-04 22:32:30 +0000256
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000257 // Handle messages to id.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000258 if (ReceiverCType == Context.getCanonicalType(Context.getObjCIdType())) {
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000259 ObjCMethodDecl *Method = InstanceMethodPool[Sel].Method;
Chris Lattner6e10a082008-02-01 06:57:39 +0000260 if (!Method)
261 Method = FactoryMethodPool[Sel].Method;
Daniel Dunbar637cebb2008-09-11 00:01:56 +0000262 if (CheckMessageArgumentTypes(ArgExprs, Sel, Method, "-",
263 lbrac, rbrac, returnType))
264 return true;
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000265 return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac,
266 ArgExprs, NumArgs);
267 }
268
269 // Handle messages to Class.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000270 if (ReceiverCType == Context.getCanonicalType(Context.getObjCClassType())) {
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000271 ObjCMethodDecl *Method = 0;
Chris Lattner6562fda2008-07-21 06:44:27 +0000272 if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) {
Steve Naroffe2af8b12008-06-05 14:49:39 +0000273 // If we have an implementation in scope, check "private" methods.
Chris Lattner6562fda2008-07-21 06:44:27 +0000274 if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface())
Steve Naroffe2af8b12008-06-05 14:49:39 +0000275 if (ObjCImplementationDecl *ImpDecl =
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000276 ObjCImplementations[ClassDecl->getIdentifier()])
Steve Naroffe2af8b12008-06-05 14:49:39 +0000277 Method = ImpDecl->getClassMethod(Sel);
278 }
279 if (!Method)
280 Method = FactoryMethodPool[Sel].Method;
281 if (!Method)
282 Method = InstanceMethodPool[Sel].Method;
Daniel Dunbar637cebb2008-09-11 00:01:56 +0000283 if (CheckMessageArgumentTypes(ArgExprs, Sel, Method, "-",
284 lbrac, rbrac, returnType))
285 return true;
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000286 return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac,
287 ArgExprs, NumArgs);
288 }
289
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000290 ObjCMethodDecl *Method = 0;
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000291 ObjCInterfaceDecl* ClassDecl = 0;
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000292
293 // We allow sending a message to a qualified ID ("id<foo>"), which is ok as
294 // long as one of the protocols implements the selector (if not, warn).
Chris Lattnerb77792e2008-07-26 22:17:49 +0000295 if (ObjCQualifiedIdType *QIT = dyn_cast<ObjCQualifiedIdType>(ReceiverCType)) {
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000296 // Search protocols
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000297 for (unsigned i = 0; i < QIT->getNumProtocols(); i++) {
298 ObjCProtocolDecl *PDecl = QIT->getProtocols(i);
299 if (PDecl && (Method = PDecl->lookupInstanceMethod(Sel)))
300 break;
301 }
302 if (!Method)
303 Diag(lbrac, diag::warn_method_not_found_in_protocol,
304 std::string("-"), Sel.getName(),
Chris Lattner0b2f7ea2008-07-21 06:16:07 +0000305 RExpr->getSourceRange());
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000306 } else if (const ObjCInterfaceType *OCIReceiver =
Chris Lattnerb77792e2008-07-26 22:17:49 +0000307 ReceiverCType->getAsPointerToObjCInterfaceType()) {
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000308 // We allow sending a message to a pointer to an interface (an object).
Chris Lattnerfb8cc1d2008-02-01 06:43:02 +0000309
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000310 ClassDecl = OCIReceiver->getDecl();
311 // FIXME: consider using InstanceMethodPool, since it will be faster
312 // than the following method (which can do *many* linear searches). The
313 // idea is to add class info to InstanceMethodPool.
314 Method = ClassDecl->lookupInstanceMethod(Sel);
315
316 if (!Method) {
317 // Search protocol qualifiers.
318 for (ObjCQualifiedIdType::qual_iterator QI = OCIReceiver->qual_begin(),
319 E = OCIReceiver->qual_end(); QI != E; ++QI) {
320 if ((Method = (*QI)->lookupInstanceMethod(Sel)))
Chris Lattner85a932e2008-01-04 22:32:30 +0000321 break;
322 }
Chris Lattner85a932e2008-01-04 22:32:30 +0000323 }
Chris Lattnerc188d302008-07-21 05:27:51 +0000324
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000325 if (!Method && !OCIReceiver->qual_empty())
326 Diag(lbrac, diag::warn_method_not_found_in_protocol,
327 std::string("-"), Sel.getName(),
Chris Lattner85a932e2008-01-04 22:32:30 +0000328 SourceRange(lbrac, rbrac));
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000329 } else {
330 Diag(lbrac, diag::error_bad_receiver_type,
Chris Lattner0b2f7ea2008-07-21 06:16:07 +0000331 RExpr->getType().getAsString(), RExpr->getSourceRange());
Chris Lattner2b1cc8b2008-07-21 06:12:56 +0000332 return true;
Chris Lattnerfe1a5532008-07-21 05:57:44 +0000333 }
334
335 if (!Method) {
336 // If we have an implementation in scope, check "private" methods.
337 if (ClassDecl)
338 if (ObjCImplementationDecl *ImpDecl =
339 ObjCImplementations[ClassDecl->getIdentifier()])
340 Method = ImpDecl->getInstanceMethod(Sel);
341 // If we still haven't found a method, look in the global pool. This
342 // behavior isn't very desirable, however we need it for GCC
343 // compatibility.
344 if (!Method)
345 Method = InstanceMethodPool[Sel].Method;
346 }
Daniel Dunbar637cebb2008-09-11 00:01:56 +0000347 if (CheckMessageArgumentTypes(ArgExprs, Sel, Method, "-",
348 lbrac, rbrac, returnType))
349 return true;
Chris Lattner85a932e2008-01-04 22:32:30 +0000350 return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac,
351 ArgExprs, NumArgs);
352}
Chris Lattnereca7be62008-04-07 05:30:13 +0000353
354//===----------------------------------------------------------------------===//
355// ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
356//===----------------------------------------------------------------------===//
357
358/// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
359/// inheritance hierarchy of 'rProto'.
360static bool ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
361 ObjCProtocolDecl *rProto) {
362 if (lProto == rProto)
363 return true;
Chris Lattner780f3292008-07-21 21:32:27 +0000364 for (ObjCProtocolDecl::protocol_iterator PI = rProto->protocol_begin(),
365 E = rProto->protocol_end(); PI != E; ++PI)
366 if (ProtocolCompatibleWithProtocol(lProto, *PI))
Chris Lattnereca7be62008-04-07 05:30:13 +0000367 return true;
368 return false;
369}
370
371/// ClassImplementsProtocol - Checks that 'lProto' protocol
372/// has been implemented in IDecl class, its super class or categories (if
373/// lookupCategory is true).
374static bool ClassImplementsProtocol(ObjCProtocolDecl *lProto,
375 ObjCInterfaceDecl *IDecl,
Fariborz Jahanian26631702008-06-04 19:00:03 +0000376 bool lookupCategory,
377 bool RHSIsQualifiedID = false) {
Chris Lattnereca7be62008-04-07 05:30:13 +0000378
379 // 1st, look up the class.
Chris Lattner3db6cae2008-07-21 18:19:38 +0000380 const ObjCList<ObjCProtocolDecl> &Protocols =
381 IDecl->getReferencedProtocols();
382
383 for (ObjCList<ObjCProtocolDecl>::iterator PI = Protocols.begin(),
384 E = Protocols.end(); PI != E; ++PI) {
385 if (ProtocolCompatibleWithProtocol(lProto, *PI))
Chris Lattnereca7be62008-04-07 05:30:13 +0000386 return true;
Fariborz Jahanian26631702008-06-04 19:00:03 +0000387 // This is dubious and is added to be compatible with gcc.
388 // In gcc, it is also allowed assigning a protocol-qualified 'id'
389 // type to a LHS object when protocol in qualified LHS is in list
390 // of protocols in the rhs 'id' object. This IMO, should be a bug.
Ted Kremenekfd5b2ce2008-06-04 20:48:08 +0000391 // FIXME: Treat this as an extension, and flag this as an error when
392 // GCC extensions are not enabled.
Chris Lattner3db6cae2008-07-21 18:19:38 +0000393 if (RHSIsQualifiedID && ProtocolCompatibleWithProtocol(*PI, lProto))
Fariborz Jahanian26631702008-06-04 19:00:03 +0000394 return true;
Chris Lattnereca7be62008-04-07 05:30:13 +0000395 }
396
397 // 2nd, look up the category.
398 if (lookupCategory)
399 for (ObjCCategoryDecl *CDecl = IDecl->getCategoryList(); CDecl;
400 CDecl = CDecl->getNextClassCategory()) {
Chris Lattner780f3292008-07-21 21:32:27 +0000401 for (ObjCCategoryDecl::protocol_iterator PI = CDecl->protocol_begin(),
402 E = CDecl->protocol_end(); PI != E; ++PI)
403 if (ProtocolCompatibleWithProtocol(lProto, *PI))
Chris Lattnereca7be62008-04-07 05:30:13 +0000404 return true;
Chris Lattnereca7be62008-04-07 05:30:13 +0000405 }
406
407 // 3rd, look up the super class(s)
408 if (IDecl->getSuperClass())
409 return
Fariborz Jahanian26631702008-06-04 19:00:03 +0000410 ClassImplementsProtocol(lProto, IDecl->getSuperClass(), lookupCategory,
411 RHSIsQualifiedID);
Chris Lattnereca7be62008-04-07 05:30:13 +0000412
413 return false;
414}
415
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000416/// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
417/// ObjCQualifiedIDType.
Chris Lattnereca7be62008-04-07 05:30:13 +0000418bool Sema::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs,
419 bool compare) {
420 // Allow id<P..> and an 'id' or void* type in all cases.
421 if (const PointerType *PT = lhs->getAsPointerType()) {
422 QualType PointeeTy = PT->getPointeeType();
423 if (Context.isObjCIdType(PointeeTy) || PointeeTy->isVoidType())
424 return true;
425 } else if (const PointerType *PT = rhs->getAsPointerType()) {
426 QualType PointeeTy = PT->getPointeeType();
427 if (Context.isObjCIdType(PointeeTy) || PointeeTy->isVoidType())
428 return true;
429 }
430
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000431 if (const ObjCQualifiedIdType *lhsQID = lhs->getAsObjCQualifiedIdType()) {
432 const ObjCQualifiedIdType *rhsQID = rhs->getAsObjCQualifiedIdType();
433 const ObjCQualifiedInterfaceType *rhsQI = 0;
Steve Naroff289d9f22008-06-01 02:43:50 +0000434 QualType rtype;
435
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000436 if (!rhsQID) {
437 // Not comparing two ObjCQualifiedIdType's?
438 if (!rhs->isPointerType()) return false;
Steve Naroff289d9f22008-06-01 02:43:50 +0000439
440 rtype = rhs->getAsPointerType()->getPointeeType();
Chris Lattnereca7be62008-04-07 05:30:13 +0000441 rhsQI = rtype->getAsObjCQualifiedInterfaceType();
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000442 if (rhsQI == 0) {
Steve Naroff289d9f22008-06-01 02:43:50 +0000443 // If the RHS is a unqualified interface pointer "NSString*",
444 // make sure we check the class hierarchy.
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000445 if (const ObjCInterfaceType *IT = rtype->getAsObjCInterfaceType()) {
446 ObjCInterfaceDecl *rhsID = IT->getDecl();
447 for (unsigned i = 0; i != lhsQID->getNumProtocols(); ++i) {
448 // when comparing an id<P> on lhs with a static type on rhs,
449 // see if static class implements all of id's protocols, directly or
450 // through its super class and categories.
451 if (!ClassImplementsProtocol(lhsQID->getProtocols(i), rhsID, true))
452 return false;
453 }
454 return true;
455 }
456 }
Chris Lattnereca7be62008-04-07 05:30:13 +0000457 }
Chris Lattnereca7be62008-04-07 05:30:13 +0000458
459 ObjCQualifiedIdType::qual_iterator RHSProtoI, RHSProtoE;
Steve Naroff289d9f22008-06-01 02:43:50 +0000460 if (rhsQI) { // We have a qualified interface (e.g. "NSObject<Proto> *").
Chris Lattnereca7be62008-04-07 05:30:13 +0000461 RHSProtoI = rhsQI->qual_begin();
462 RHSProtoE = rhsQI->qual_end();
Steve Naroff289d9f22008-06-01 02:43:50 +0000463 } else if (rhsQID) { // We have a qualified id (e.g. "id<Proto> *").
Chris Lattnereca7be62008-04-07 05:30:13 +0000464 RHSProtoI = rhsQID->qual_begin();
465 RHSProtoE = rhsQID->qual_end();
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000466 } else {
467 return false;
Chris Lattnereca7be62008-04-07 05:30:13 +0000468 }
469
470 for (unsigned i =0; i < lhsQID->getNumProtocols(); i++) {
471 ObjCProtocolDecl *lhsProto = lhsQID->getProtocols(i);
472 bool match = false;
473
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.
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000477 for (; RHSProtoI != RHSProtoE; ++RHSProtoI) {
478 ObjCProtocolDecl *rhsProto = *RHSProtoI;
479 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
480 compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) {
Chris Lattnereca7be62008-04-07 05:30:13 +0000481 match = true;
482 break;
483 }
484 }
Steve Naroff289d9f22008-06-01 02:43:50 +0000485 if (rhsQI) {
486 // If the RHS is a qualified interface pointer "NSString<P>*",
487 // make sure we check the class hierarchy.
488 if (const ObjCInterfaceType *IT = rtype->getAsObjCInterfaceType()) {
489 ObjCInterfaceDecl *rhsID = IT->getDecl();
490 for (unsigned i = 0; i != lhsQID->getNumProtocols(); ++i) {
491 // when comparing an id<P> on lhs with a static type on rhs,
492 // see if static class implements all of id's protocols, directly or
493 // through its super class and categories.
494 if (ClassImplementsProtocol(lhsQID->getProtocols(i), rhsID, true)) {
495 match = true;
496 break;
497 }
498 }
499 }
500 }
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000501 if (!match)
502 return false;
503 }
504
505 return true;
506 }
507
508 const ObjCQualifiedIdType *rhsQID = rhs->getAsObjCQualifiedIdType();
509 assert(rhsQID && "One of the LHS/RHS should be id<x>");
510
511 if (!lhs->isPointerType())
512 return false;
513
514 QualType ltype = lhs->getAsPointerType()->getPointeeType();
515 if (const ObjCQualifiedInterfaceType *lhsQI =
516 ltype->getAsObjCQualifiedInterfaceType()) {
517 ObjCQualifiedIdType::qual_iterator LHSProtoI = lhsQI->qual_begin();
518 ObjCQualifiedIdType::qual_iterator LHSProtoE = lhsQI->qual_end();
519 for (; LHSProtoI != LHSProtoE; ++LHSProtoI) {
520 bool match = false;
521 ObjCProtocolDecl *lhsProto = *LHSProtoI;
522 for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) {
523 ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j);
524 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
Chris Lattnereca7be62008-04-07 05:30:13 +0000525 compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) {
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000526 match = true;
527 break;
Chris Lattnereca7be62008-04-07 05:30:13 +0000528 }
529 }
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000530 if (!match)
531 return false;
Chris Lattnereca7be62008-04-07 05:30:13 +0000532 }
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000533 return true;
Chris Lattnereca7be62008-04-07 05:30:13 +0000534 }
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000535
536 if (const ObjCInterfaceType *IT = ltype->getAsObjCInterfaceType()) {
537 // for static type vs. qualified 'id' type, check that class implements
538 // all of 'id's protocols.
539 ObjCInterfaceDecl *lhsID = IT->getDecl();
540 for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) {
541 ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j);
Fariborz Jahanian26631702008-06-04 19:00:03 +0000542 if (!ClassImplementsProtocol(rhsProto, lhsID, compare, true))
Chris Lattnerb1698cf2008-04-20 02:09:31 +0000543 return false;
544 }
545 return true;
546 }
547 return false;
Chris Lattnereca7be62008-04-07 05:30:13 +0000548}
549