2008-01-05 01:32:30 +03:00
|
|
|
//===--- SemaExprObjC.cpp - Semantic Analysis for ObjC Expressions --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements semantic analysis for Objective-C expressions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Sema.h"
|
2010-04-11 11:45:24 +04:00
|
|
|
#include "Lookup.h"
|
2008-01-05 01:32:30 +03:00
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/AST/DeclObjC.h"
|
2008-05-30 01:12:08 +04:00
|
|
|
#include "clang/AST/ExprObjC.h"
|
2009-02-18 09:48:40 +03:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2009-03-10 00:12:44 +03:00
|
|
|
#include "clang/Lex/Preprocessor.h"
|
|
|
|
|
2008-01-05 01:32:30 +03:00
|
|
|
using namespace clang;
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
Sema::ExprResult Sema::ParseObjCStringLiteral(SourceLocation *AtLocs,
|
2009-02-18 09:48:40 +03:00
|
|
|
ExprTy **strings,
|
2008-01-05 01:32:30 +03:00
|
|
|
unsigned NumStrings) {
|
2009-02-18 09:48:40 +03:00
|
|
|
StringLiteral **Strings = reinterpret_cast<StringLiteral**>(strings);
|
|
|
|
|
2009-02-18 09:13:04 +03:00
|
|
|
// Most ObjC strings are formed out of a single piece. However, we *can*
|
|
|
|
// have strings formed out of multiple @ strings with multiple pptokens in
|
|
|
|
// each one, e.g. @"foo" "bar" @"baz" "qux" which need to be turned into one
|
|
|
|
// StringLiteral for ObjCStringLiteral to hold onto.
|
2009-02-18 09:48:40 +03:00
|
|
|
StringLiteral *S = Strings[0];
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:13:04 +03:00
|
|
|
// If we have a multi-part string, merge it all together.
|
|
|
|
if (NumStrings != 1) {
|
2008-01-05 01:32:30 +03:00
|
|
|
// Concatenate objc strings.
|
2009-02-18 09:48:40 +03:00
|
|
|
llvm::SmallString<128> StrBuf;
|
|
|
|
llvm::SmallVector<SourceLocation, 8> StrLocs;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 08:49:11 +03:00
|
|
|
for (unsigned i = 0; i != NumStrings; ++i) {
|
2009-02-18 09:48:40 +03:00
|
|
|
S = Strings[i];
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:48:40 +03:00
|
|
|
// ObjC strings can't be wide.
|
2009-02-18 09:13:04 +03:00
|
|
|
if (S->isWide()) {
|
|
|
|
Diag(S->getLocStart(), diag::err_cfstring_literal_not_string_constant)
|
|
|
|
<< S->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:48:40 +03:00
|
|
|
// Get the string data.
|
|
|
|
StrBuf.append(S->getStrData(), S->getStrData()+S->getByteLength());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:48:40 +03:00
|
|
|
// Get the locations of the string tokens.
|
|
|
|
StrLocs.append(S->tokloc_begin(), S->tokloc_end());
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:48:40 +03:00
|
|
|
// Free the temporary string.
|
2009-02-07 04:47:29 +03:00
|
|
|
S->Destroy(Context);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:48:40 +03:00
|
|
|
// Create the aggregate string with the appropriate content and location
|
|
|
|
// information.
|
|
|
|
S = StringLiteral::Create(Context, &StrBuf[0], StrBuf.size(), false,
|
2009-02-18 09:40:38 +03:00
|
|
|
Context.getPointerType(Context.CharTy),
|
2009-02-18 09:48:40 +03:00
|
|
|
&StrLocs[0], StrLocs.size());
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:01:06 +03:00
|
|
|
// Verify that this composite string is acceptable for ObjC strings.
|
|
|
|
if (CheckObjCString(S))
|
2008-01-05 01:32:30 +03:00
|
|
|
return true;
|
2009-02-18 09:06:56 +03:00
|
|
|
|
|
|
|
// Initialize the constant string interface lazily. This assumes
|
2009-04-07 18:18:33 +04:00
|
|
|
// the NSString interface is seen in this translation unit. Note: We
|
|
|
|
// don't use NSConstantString, since the runtime team considers this
|
|
|
|
// interface private (even though it appears in the header files).
|
2009-02-18 09:06:56 +03:00
|
|
|
QualType Ty = Context.getObjCConstantStringInterface();
|
|
|
|
if (!Ty.isNull()) {
|
2009-07-11 03:34:53 +04:00
|
|
|
Ty = Context.getObjCObjectPointerType(Ty);
|
2008-06-22 01:44:18 +04:00
|
|
|
} else {
|
2009-04-07 18:18:33 +04:00
|
|
|
IdentifierInfo *NSIdent = &Context.Idents.get("NSString");
|
2010-04-16 02:33:43 +04:00
|
|
|
NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLocs[0],
|
|
|
|
LookupOrdinaryName);
|
2009-02-18 09:06:56 +03:00
|
|
|
if (ObjCInterfaceDecl *StrIF = dyn_cast_or_null<ObjCInterfaceDecl>(IF)) {
|
|
|
|
Context.setObjCConstantStringInterface(StrIF);
|
|
|
|
Ty = Context.getObjCConstantStringInterface();
|
2009-07-11 03:34:53 +04:00
|
|
|
Ty = Context.getObjCObjectPointerType(Ty);
|
2009-02-18 09:06:56 +03:00
|
|
|
} else {
|
2009-04-07 18:18:33 +04:00
|
|
|
// If there is no NSString interface defined then treat constant
|
2009-02-18 09:06:56 +03:00
|
|
|
// strings as untyped objects and let the runtime figure it out later.
|
|
|
|
Ty = Context.getObjCIdType();
|
|
|
|
}
|
2008-06-22 01:44:18 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:13:04 +03:00
|
|
|
return new (Context) ObjCStringLiteral(S, Ty, AtLocs[0]);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
Expr *Sema::BuildObjCEncodeExpression(SourceLocation AtLoc,
|
2010-04-20 19:39:42 +04:00
|
|
|
TypeSourceInfo *EncodedTypeInfo,
|
2009-06-07 22:45:35 +04:00
|
|
|
SourceLocation RParenLoc) {
|
2010-04-20 19:39:42 +04:00
|
|
|
QualType EncodedType = EncodedTypeInfo->getType();
|
2009-06-07 22:45:35 +04:00
|
|
|
QualType StrTy;
|
2009-09-09 19:08:12 +04:00
|
|
|
if (EncodedType->isDependentType())
|
2009-06-07 22:45:35 +04:00
|
|
|
StrTy = Context.DependentTy;
|
|
|
|
else {
|
|
|
|
std::string Str;
|
|
|
|
Context.getObjCEncodingForType(EncodedType, Str);
|
|
|
|
|
|
|
|
// The type of @encode is the same as the type of the corresponding string,
|
|
|
|
// which is an array type.
|
|
|
|
StrTy = Context.CharTy;
|
|
|
|
// A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
|
2010-03-15 13:54:44 +03:00
|
|
|
if (getLangOptions().CPlusPlus || getLangOptions().ConstStrings)
|
2009-06-07 22:45:35 +04:00
|
|
|
StrTy.addConst();
|
|
|
|
StrTy = Context.getConstantArrayType(StrTy, llvm::APInt(32, Str.size()+1),
|
|
|
|
ArrayType::Normal, 0);
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-04-20 19:39:42 +04:00
|
|
|
return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc);
|
2009-06-07 22:45:35 +04:00
|
|
|
}
|
|
|
|
|
2008-01-05 01:32:30 +03:00
|
|
|
Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
|
|
|
|
SourceLocation EncodeLoc,
|
|
|
|
SourceLocation LParenLoc,
|
2009-02-18 09:06:56 +03:00
|
|
|
TypeTy *ty,
|
2008-01-05 01:32:30 +03:00
|
|
|
SourceLocation RParenLoc) {
|
2009-08-19 05:28:28 +04:00
|
|
|
// FIXME: Preserve type source info ?
|
2010-04-20 19:39:42 +04:00
|
|
|
TypeSourceInfo *TInfo;
|
|
|
|
QualType EncodedType = GetTypeFromParser(ty, &TInfo);
|
|
|
|
if (!TInfo)
|
|
|
|
TInfo = Context.getTrivialTypeSourceInfo(EncodedType,
|
|
|
|
PP.getLocForEndOfToken(LParenLoc));
|
2008-01-05 01:32:30 +03:00
|
|
|
|
2010-04-20 19:39:42 +04:00
|
|
|
return BuildObjCEncodeExpression(AtLoc, TInfo, RParenLoc);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
|
|
|
|
SourceLocation AtLoc,
|
|
|
|
SourceLocation SelLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation RParenLoc) {
|
2009-09-09 19:08:12 +04:00
|
|
|
ObjCMethodDecl *Method = LookupInstanceMethodInGlobalPool(Sel,
|
2009-08-23 01:13:55 +04:00
|
|
|
SourceRange(LParenLoc, RParenLoc), false);
|
2009-06-16 20:25:00 +04:00
|
|
|
if (!Method)
|
|
|
|
Method = LookupFactoryMethodInGlobalPool(Sel,
|
|
|
|
SourceRange(LParenLoc, RParenLoc));
|
|
|
|
if (!Method)
|
|
|
|
Diag(SelLoc, diag::warn_undeclared_selector) << Sel;
|
|
|
|
|
2009-02-18 09:06:56 +03:00
|
|
|
QualType Ty = Context.getObjCSelType();
|
2010-02-03 23:11:42 +03:00
|
|
|
return new (Context) ObjCSelectorExpr(Ty, Sel, AtLoc, RParenLoc);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Sema::ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId,
|
|
|
|
SourceLocation AtLoc,
|
|
|
|
SourceLocation ProtoLoc,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
SourceLocation RParenLoc) {
|
2010-04-16 02:33:43 +04:00
|
|
|
ObjCProtocolDecl* PDecl = LookupProtocol(ProtocolId, ProtoLoc);
|
2008-01-05 01:32:30 +03:00
|
|
|
if (!PDecl) {
|
2008-11-19 11:23:25 +03:00
|
|
|
Diag(ProtoLoc, diag::err_undeclared_protocol) << ProtocolId;
|
2008-01-05 01:32:30 +03:00
|
|
|
return true;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-18 09:06:56 +03:00
|
|
|
QualType Ty = Context.getObjCProtoType();
|
|
|
|
if (Ty.isNull())
|
2008-01-05 01:32:30 +03:00
|
|
|
return true;
|
2009-07-11 03:34:53 +04:00
|
|
|
Ty = Context.getObjCObjectPointerType(Ty);
|
2009-02-18 09:06:56 +03:00
|
|
|
return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, RParenLoc);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs,
|
|
|
|
Selector Sel, ObjCMethodDecl *Method,
|
2008-11-24 06:33:13 +03:00
|
|
|
bool isClassMessage,
|
2008-09-11 04:01:56 +04:00
|
|
|
SourceLocation lbrac, SourceLocation rbrac,
|
2009-09-09 19:08:12 +04:00
|
|
|
QualType &ReturnType) {
|
2008-09-11 04:01:56 +04:00
|
|
|
if (!Method) {
|
2008-09-11 04:04:36 +04:00
|
|
|
// Apply default argument promotion as for (C99 6.5.2.2p6).
|
|
|
|
for (unsigned i = 0; i != NumArgs; i++)
|
|
|
|
DefaultArgumentPromotion(Args[i]);
|
|
|
|
|
2008-11-24 06:33:13 +03:00
|
|
|
unsigned DiagID = isClassMessage ? diag::warn_class_method_not_found :
|
|
|
|
diag::warn_inst_method_not_found;
|
|
|
|
Diag(lbrac, DiagID)
|
|
|
|
<< Sel << isClassMessage << SourceRange(lbrac, rbrac);
|
2008-09-11 04:01:56 +04:00
|
|
|
ReturnType = Context.getObjCIdType();
|
|
|
|
return false;
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-11-24 06:33:13 +03:00
|
|
|
ReturnType = Method->getResultType();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-09-11 04:50:25 +04:00
|
|
|
unsigned NumNamedArgs = Sel.getNumArgs();
|
2010-04-08 04:30:06 +04:00
|
|
|
// Method might have more arguments than selector indicates. This is due
|
|
|
|
// to addition of c-style arguments in method.
|
|
|
|
if (Method->param_size() > Sel.getNumArgs())
|
|
|
|
NumNamedArgs = Method->param_size();
|
|
|
|
// FIXME. This need be cleaned up.
|
|
|
|
if (NumArgs < NumNamedArgs) {
|
2010-04-16 08:48:22 +04:00
|
|
|
Diag(lbrac, diag::err_typecheck_call_too_few_args) << 2
|
|
|
|
<< NumNamedArgs << NumArgs;
|
2010-04-08 04:30:06 +04:00
|
|
|
return false;
|
|
|
|
}
|
2008-09-11 04:50:25 +04:00
|
|
|
|
2009-04-12 12:11:20 +04:00
|
|
|
bool IsError = false;
|
2008-09-11 04:50:25 +04:00
|
|
|
for (unsigned i = 0; i < NumNamedArgs; i++) {
|
2008-01-05 01:32:30 +03:00
|
|
|
Expr *argExpr = Args[i];
|
|
|
|
assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-20 21:43:26 +03:00
|
|
|
QualType lhsType = Method->param_begin()[i]->getType();
|
2008-01-05 01:32:30 +03:00
|
|
|
QualType rhsType = argExpr->getType();
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
// If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
|
2008-04-02 21:17:33 +04:00
|
|
|
if (lhsType->isArrayType())
|
|
|
|
lhsType = Context.getArrayDecayedType(lhsType);
|
2008-01-05 01:32:30 +03:00
|
|
|
else if (lhsType->isFunctionType())
|
|
|
|
lhsType = Context.getPointerType(lhsType);
|
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
AssignConvertType Result =
|
2008-04-02 21:17:33 +04:00
|
|
|
CheckSingleAssignmentConstraints(lhsType, argExpr);
|
2010-04-21 00:28:15 +04:00
|
|
|
if (Result == Incompatible && !getLangOptions().CPlusPlus &&
|
|
|
|
CheckTransparentUnionArgumentConstraints(lhsType, argExpr)
|
|
|
|
== Sema::Compatible)
|
|
|
|
Result = Compatible;
|
|
|
|
|
2008-01-05 01:32:30 +03:00
|
|
|
if (Args[i] != argExpr) // The expression was converted.
|
|
|
|
Args[i] = argExpr; // Make sure we store the converted expression.
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
IsError |=
|
2008-01-05 01:32:30 +03:00
|
|
|
DiagnoseAssignmentResult(Result, argExpr->getLocStart(), lhsType, rhsType,
|
2009-12-16 06:45:30 +03:00
|
|
|
argExpr, AA_Sending);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
2008-09-11 04:50:25 +04:00
|
|
|
|
|
|
|
// Promote additional arguments to variadic methods.
|
|
|
|
if (Method->isVariadic()) {
|
2009-01-16 19:48:51 +03:00
|
|
|
for (unsigned i = NumNamedArgs; i < NumArgs; ++i)
|
2009-04-12 12:11:20 +04:00
|
|
|
IsError |= DefaultVariadicArgumentPromotion(Args[i], VariadicMethod);
|
2008-09-11 04:50:25 +04:00
|
|
|
} else {
|
|
|
|
// Check for extra arguments to non-variadic methods.
|
|
|
|
if (NumArgs != NumNamedArgs) {
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(Args[NumNamedArgs]->getLocStart(),
|
2008-11-19 08:08:23 +03:00
|
|
|
diag::err_typecheck_call_too_many_args)
|
2010-04-16 08:56:46 +04:00
|
|
|
<< 2 /*method*/ << NumNamedArgs << NumArgs
|
|
|
|
<< Method->getSourceRange()
|
2008-11-19 08:08:23 +03:00
|
|
|
<< SourceRange(Args[NumNamedArgs]->getLocStart(),
|
|
|
|
Args[NumArgs-1]->getLocEnd());
|
2008-09-11 04:50:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-12 12:11:20 +04:00
|
|
|
return IsError;
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
|
|
|
|
2009-03-04 18:11:40 +03:00
|
|
|
bool Sema::isSelfExpr(Expr *RExpr) {
|
|
|
|
if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(RExpr))
|
|
|
|
if (DRE->getDecl()->getIdentifier() == &Context.Idents.get("self"))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-26 18:55:06 +03:00
|
|
|
// Helper method for ActOnClassMethod/ActOnInstanceMethod.
|
|
|
|
// Will search "local" class/category implementations for a method decl.
|
2009-03-04 21:15:57 +03:00
|
|
|
// If failed, then we search in class's root for an instance method.
|
2009-02-26 18:55:06 +03:00
|
|
|
// Returns 0 if no method is found.
|
2009-03-08 21:56:13 +03:00
|
|
|
ObjCMethodDecl *Sema::LookupPrivateClassMethod(Selector Sel,
|
2009-02-26 18:55:06 +03:00
|
|
|
ObjCInterfaceDecl *ClassDecl) {
|
|
|
|
ObjCMethodDecl *Method = 0;
|
2009-03-08 21:56:13 +03:00
|
|
|
// lookup in class and all superclasses
|
|
|
|
while (ClassDecl && !Method) {
|
2009-07-21 04:06:04 +04:00
|
|
|
if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation())
|
2009-06-30 06:36:12 +04:00
|
|
|
Method = ImpDecl->getClassMethod(Sel);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-08 21:56:13 +03:00
|
|
|
// Look through local category implementations associated with the class.
|
2009-07-21 04:06:20 +04:00
|
|
|
if (!Method)
|
|
|
|
Method = ClassDecl->getCategoryClassMethod(Sel);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-08 21:56:13 +03:00
|
|
|
// Before we give up, check if the selector is an instance method.
|
|
|
|
// But only in the root. This matches gcc's behaviour and what the
|
|
|
|
// runtime expects.
|
|
|
|
if (!Method && !ClassDecl->getSuperClass()) {
|
2009-06-30 06:36:12 +04:00
|
|
|
Method = ClassDecl->lookupInstanceMethod(Sel);
|
2009-09-09 19:08:12 +04:00
|
|
|
// Look through local category implementations associated
|
2009-03-08 21:56:13 +03:00
|
|
|
// with the root class.
|
2009-09-09 19:08:12 +04:00
|
|
|
if (!Method)
|
2009-03-08 21:56:13 +03:00
|
|
|
Method = LookupPrivateInstanceMethod(Sel, ClassDecl);
|
2009-02-26 18:55:06 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-08 21:56:13 +03:00
|
|
|
ClassDecl = ClassDecl->getSuperClass();
|
2009-02-26 18:55:06 +03:00
|
|
|
}
|
2009-03-08 21:56:13 +03:00
|
|
|
return Method;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCMethodDecl *Sema::LookupPrivateInstanceMethod(Selector Sel,
|
|
|
|
ObjCInterfaceDecl *ClassDecl) {
|
|
|
|
ObjCMethodDecl *Method = 0;
|
|
|
|
while (ClassDecl && !Method) {
|
|
|
|
// If we have implementations in scope, check "private" methods.
|
2009-07-21 04:06:04 +04:00
|
|
|
if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation())
|
2009-06-30 06:36:12 +04:00
|
|
|
Method = ImpDecl->getInstanceMethod(Sel);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-08 21:56:13 +03:00
|
|
|
// Look through local category implementations associated with the class.
|
2009-07-21 04:06:20 +04:00
|
|
|
if (!Method)
|
|
|
|
Method = ClassDecl->getCategoryInstanceMethod(Sel);
|
2009-03-08 21:56:13 +03:00
|
|
|
ClassDecl = ClassDecl->getSuperClass();
|
2009-03-04 21:15:57 +03:00
|
|
|
}
|
2009-02-26 18:55:06 +03:00
|
|
|
return Method;
|
|
|
|
}
|
|
|
|
|
2010-04-11 11:45:24 +04:00
|
|
|
/// HandleExprPropertyRefExpr - Handle foo.bar where foo is a pointer to an
|
|
|
|
/// objective C interface. This is a property reference expression.
|
|
|
|
Action::OwningExprResult Sema::
|
|
|
|
HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
|
2010-04-11 11:51:10 +04:00
|
|
|
Expr *BaseExpr, DeclarationName MemberName,
|
|
|
|
SourceLocation MemberLoc) {
|
2010-04-11 11:45:24 +04:00
|
|
|
const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
|
|
|
|
ObjCInterfaceDecl *IFace = IFaceT->getDecl();
|
|
|
|
IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
|
|
|
|
|
|
|
|
// Search for a declared property first.
|
|
|
|
if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
|
|
|
|
// Check whether we can reference this property.
|
|
|
|
if (DiagnoseUseOfDecl(PD, MemberLoc))
|
|
|
|
return ExprError();
|
|
|
|
QualType ResTy = PD->getType();
|
|
|
|
Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
|
|
|
|
ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
|
|
|
|
if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
|
|
|
|
ResTy = Getter->getResultType();
|
|
|
|
return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
|
|
|
|
MemberLoc, BaseExpr));
|
|
|
|
}
|
|
|
|
// Check protocols on qualified interfaces.
|
|
|
|
for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
|
|
|
|
E = OPT->qual_end(); I != E; ++I)
|
|
|
|
if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
|
|
|
|
// Check whether we can reference this property.
|
|
|
|
if (DiagnoseUseOfDecl(PD, MemberLoc))
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
|
|
|
|
MemberLoc, BaseExpr));
|
|
|
|
}
|
|
|
|
// If that failed, look for an "implicit" property by seeing if the nullary
|
|
|
|
// selector is implemented.
|
|
|
|
|
|
|
|
// FIXME: The logic for looking up nullary and unary selectors should be
|
|
|
|
// shared with the code in ActOnInstanceMessage.
|
|
|
|
|
|
|
|
Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
|
|
|
|
ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
|
|
|
|
|
|
|
|
// If this reference is in an @implementation, check for 'private' methods.
|
|
|
|
if (!Getter)
|
|
|
|
Getter = IFace->lookupPrivateInstanceMethod(Sel);
|
|
|
|
|
|
|
|
// Look through local category implementations associated with the class.
|
|
|
|
if (!Getter)
|
|
|
|
Getter = IFace->getCategoryInstanceMethod(Sel);
|
|
|
|
if (Getter) {
|
|
|
|
// Check if we can reference this property.
|
|
|
|
if (DiagnoseUseOfDecl(Getter, MemberLoc))
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
// If we found a getter then this may be a valid dot-reference, we
|
|
|
|
// will look for the matching setter, in case it is needed.
|
|
|
|
Selector SetterSel =
|
|
|
|
SelectorTable::constructSetterName(PP.getIdentifierTable(),
|
|
|
|
PP.getSelectorTable(), Member);
|
|
|
|
ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
|
|
|
|
if (!Setter) {
|
|
|
|
// If this reference is in an @implementation, also check for 'private'
|
|
|
|
// methods.
|
|
|
|
Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
|
|
|
|
}
|
|
|
|
// Look through local category implementations associated with the class.
|
|
|
|
if (!Setter)
|
|
|
|
Setter = IFace->getCategoryInstanceMethod(SetterSel);
|
|
|
|
|
|
|
|
if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
if (Getter) {
|
|
|
|
QualType PType;
|
|
|
|
PType = Getter->getResultType();
|
|
|
|
return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType,
|
|
|
|
Setter, MemberLoc, BaseExpr));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to correct for typos in property names.
|
|
|
|
LookupResult Res(*this, MemberName, MemberLoc, LookupOrdinaryName);
|
2010-04-15 00:04:41 +04:00
|
|
|
if (CorrectTypo(Res, 0, 0, IFace, false, CTC_NoKeywords, OPT) &&
|
2010-04-11 11:45:24 +04:00
|
|
|
Res.getAsSingle<ObjCPropertyDecl>()) {
|
2010-04-11 11:51:10 +04:00
|
|
|
DeclarationName TypoResult = Res.getLookupName();
|
2010-04-11 11:45:24 +04:00
|
|
|
Diag(MemberLoc, diag::err_property_not_found_suggest)
|
2010-04-11 11:51:10 +04:00
|
|
|
<< MemberName << QualType(OPT, 0) << TypoResult
|
|
|
|
<< FixItHint::CreateReplacement(MemberLoc, TypoResult.getAsString());
|
2010-04-11 11:45:24 +04:00
|
|
|
ObjCPropertyDecl *Property = Res.getAsSingle<ObjCPropertyDecl>();
|
|
|
|
Diag(Property->getLocation(), diag::note_previous_decl)
|
|
|
|
<< Property->getDeclName();
|
2010-04-11 11:51:10 +04:00
|
|
|
return HandleExprPropertyRefExpr(OPT, BaseExpr, TypoResult, MemberLoc);
|
2010-04-11 11:45:24 +04:00
|
|
|
}
|
2010-04-11 11:51:10 +04:00
|
|
|
|
2010-04-11 11:45:24 +04:00
|
|
|
Diag(MemberLoc, diag::err_property_not_found)
|
|
|
|
<< MemberName << QualType(OPT, 0);
|
|
|
|
if (Setter && !Getter)
|
|
|
|
Diag(Setter->getLocation(), diag::note_getter_unavailable)
|
|
|
|
<< MemberName << BaseExpr->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-04-11 12:28:14 +04:00
|
|
|
Action::OwningExprResult Sema::
|
|
|
|
ActOnClassPropertyRefExpr(IdentifierInfo &receiverName,
|
|
|
|
IdentifierInfo &propertyName,
|
|
|
|
SourceLocation receiverNameLoc,
|
|
|
|
SourceLocation propertyNameLoc) {
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-01-03 21:01:57 +03:00
|
|
|
IdentifierInfo *receiverNamePtr = &receiverName;
|
2010-04-16 02:33:43 +04:00
|
|
|
ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(receiverNamePtr,
|
|
|
|
receiverNameLoc);
|
2010-04-11 12:28:14 +04:00
|
|
|
if (IFace == 0) {
|
|
|
|
// If the "receiver" is 'super' in a method, handle it as an expression-like
|
|
|
|
// property reference.
|
|
|
|
if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
|
|
|
|
if (receiverNamePtr->isStr("super")) {
|
|
|
|
if (CurMethod->isInstanceMethod()) {
|
|
|
|
QualType T =
|
|
|
|
Context.getObjCInterfaceType(CurMethod->getClassInterface());
|
|
|
|
T = Context.getObjCObjectPointerType(T);
|
|
|
|
Expr *SuperExpr = new (Context) ObjCSuperExpr(receiverNameLoc, T);
|
|
|
|
|
|
|
|
return HandleExprPropertyRefExpr(T->getAsObjCInterfacePointerType(),
|
|
|
|
SuperExpr, &propertyName,
|
|
|
|
propertyNameLoc);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, if this is a class method, try dispatching to our
|
|
|
|
// superclass.
|
|
|
|
IFace = CurMethod->getClassInterface()->getSuperClass();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IFace == 0) {
|
|
|
|
Diag(receiverNameLoc, diag::err_expected_ident_or_lparen);
|
|
|
|
return ExprError();
|
|
|
|
}
|
2010-03-23 00:02:34 +03:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-04-11 12:28:14 +04:00
|
|
|
// Search for a declared property first.
|
2009-03-10 00:12:44 +03:00
|
|
|
Selector Sel = PP.getSelectorTable().getNullarySelector(&propertyName);
|
2009-06-30 06:36:12 +04:00
|
|
|
ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel);
|
2009-03-10 00:12:44 +03:00
|
|
|
|
|
|
|
// If this reference is in an @implementation, check for 'private' methods.
|
|
|
|
if (!Getter)
|
|
|
|
if (ObjCMethodDecl *CurMeth = getCurMethodDecl())
|
|
|
|
if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface())
|
2009-07-21 04:06:04 +04:00
|
|
|
if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation())
|
2009-06-30 06:36:12 +04:00
|
|
|
Getter = ImpDecl->getClassMethod(Sel);
|
2009-03-10 00:12:44 +03:00
|
|
|
|
|
|
|
if (Getter) {
|
|
|
|
// FIXME: refactor/share with ActOnMemberReference().
|
|
|
|
// Check if we can reference this property.
|
|
|
|
if (DiagnoseUseOfDecl(Getter, propertyNameLoc))
|
|
|
|
return ExprError();
|
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-03-10 00:12:44 +03:00
|
|
|
// Look for the matching setter, in case it is needed.
|
2009-09-09 19:08:12 +04:00
|
|
|
Selector SetterSel =
|
|
|
|
SelectorTable::constructSetterName(PP.getIdentifierTable(),
|
2009-03-10 20:24:38 +03:00
|
|
|
PP.getSelectorTable(), &propertyName);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-06-30 06:36:12 +04:00
|
|
|
ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
|
2009-03-10 00:12:44 +03:00
|
|
|
if (!Setter) {
|
|
|
|
// If this reference is in an @implementation, also check for 'private'
|
|
|
|
// methods.
|
|
|
|
if (ObjCMethodDecl *CurMeth = getCurMethodDecl())
|
|
|
|
if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface())
|
2009-07-21 04:06:04 +04:00
|
|
|
if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation())
|
2009-06-30 06:36:12 +04:00
|
|
|
Setter = ImpDecl->getClassMethod(SetterSel);
|
2009-03-10 00:12:44 +03:00
|
|
|
}
|
|
|
|
// Look through local category implementations associated with the class.
|
2009-07-21 04:06:20 +04:00
|
|
|
if (!Setter)
|
|
|
|
Setter = IFace->getCategoryClassMethod(SetterSel);
|
2009-03-10 00:12:44 +03:00
|
|
|
|
|
|
|
if (Setter && DiagnoseUseOfDecl(Setter, propertyNameLoc))
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
if (Getter || Setter) {
|
|
|
|
QualType PType;
|
|
|
|
|
|
|
|
if (Getter)
|
|
|
|
PType = Getter->getResultType();
|
|
|
|
else {
|
|
|
|
for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
|
|
|
|
E = Setter->param_end(); PI != E; ++PI)
|
|
|
|
PType = (*PI)->getType();
|
|
|
|
}
|
2009-08-20 21:02:02 +04:00
|
|
|
return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(
|
2009-09-09 19:08:12 +04:00
|
|
|
Getter, PType, Setter,
|
2009-03-10 00:12:44 +03:00
|
|
|
propertyNameLoc, IFace, receiverNameLoc));
|
|
|
|
}
|
|
|
|
return ExprError(Diag(propertyNameLoc, diag::err_property_not_found)
|
|
|
|
<< &propertyName << Context.getObjCInterfaceType(IFace));
|
|
|
|
}
|
|
|
|
|
2010-04-14 06:46:37 +04:00
|
|
|
Sema::ObjCMessageKind Sema::getObjCMessageKind(Scope *S,
|
|
|
|
IdentifierInfo *&Name,
|
|
|
|
SourceLocation NameLoc,
|
|
|
|
bool IsSuper,
|
|
|
|
bool HasTrailingDot) {
|
|
|
|
// If the identifier is "super" and there is no trailing dot, we're
|
|
|
|
// messaging super.
|
|
|
|
if (IsSuper && !HasTrailingDot && S->isInObjcMethodScope())
|
|
|
|
return ObjCSuperMessage;
|
|
|
|
|
|
|
|
LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
|
|
|
|
LookupName(Result, S);
|
|
|
|
|
|
|
|
switch (Result.getResultKind()) {
|
|
|
|
case LookupResult::NotFound:
|
2010-04-20 00:09:36 +04:00
|
|
|
// Normal name lookup didn't find anything. If we're in an
|
|
|
|
// Objective-C method, look for ivars. If we find one, we're done!
|
|
|
|
// FIXME: This is a hack. Ivar lookup should be part of normal lookup.
|
|
|
|
if (ObjCMethodDecl *Method = getCurMethodDecl()) {
|
|
|
|
ObjCInterfaceDecl *ClassDeclared;
|
|
|
|
if (Method->getClassInterface()->lookupInstanceVariable(Name,
|
|
|
|
ClassDeclared))
|
|
|
|
return ObjCInstanceMessage;
|
|
|
|
}
|
|
|
|
|
2010-04-14 06:46:37 +04:00
|
|
|
// Break out; we'll perform typo correction below.
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LookupResult::NotFoundInCurrentInstantiation:
|
|
|
|
case LookupResult::FoundOverloaded:
|
|
|
|
case LookupResult::FoundUnresolvedValue:
|
|
|
|
case LookupResult::Ambiguous:
|
|
|
|
Result.suppressDiagnostics();
|
|
|
|
return ObjCInstanceMessage;
|
|
|
|
|
|
|
|
case LookupResult::Found: {
|
|
|
|
// We found something. If it's a type, then we have a class
|
|
|
|
// message. Otherwise, it's an instance message.
|
|
|
|
NamedDecl *ND = Result.getFoundDecl();
|
|
|
|
if (isa<ObjCInterfaceDecl>(ND) || isa<TypeDecl>(ND) ||
|
|
|
|
isa<UnresolvedUsingTypenameDecl>(ND))
|
|
|
|
return ObjCClassMessage;
|
|
|
|
|
|
|
|
return ObjCInstanceMessage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-15 00:04:41 +04:00
|
|
|
// Determine our typo-correction context.
|
|
|
|
CorrectTypoContext CTC = CTC_Expression;
|
|
|
|
if (ObjCMethodDecl *Method = getCurMethodDecl())
|
|
|
|
if (Method->getClassInterface() &&
|
|
|
|
Method->getClassInterface()->getSuperClass())
|
|
|
|
CTC = CTC_ObjCMessageReceiver;
|
|
|
|
|
|
|
|
if (DeclarationName Corrected = CorrectTypo(Result, S, 0, 0, false, CTC)) {
|
|
|
|
if (Result.isSingleResult()) {
|
|
|
|
// If we found a declaration, correct when it refers to an Objective-C
|
|
|
|
// class.
|
|
|
|
NamedDecl *ND = Result.getFoundDecl();
|
|
|
|
if (isa<ObjCInterfaceDecl>(ND)) {
|
|
|
|
Diag(NameLoc, diag::err_unknown_receiver_suggest)
|
|
|
|
<< Name << Result.getLookupName()
|
|
|
|
<< FixItHint::CreateReplacement(SourceRange(NameLoc),
|
|
|
|
ND->getNameAsString());
|
|
|
|
Diag(ND->getLocation(), diag::note_previous_decl)
|
|
|
|
<< Corrected;
|
|
|
|
|
|
|
|
Name = ND->getIdentifier();
|
|
|
|
return ObjCClassMessage;
|
|
|
|
}
|
|
|
|
} else if (Result.empty() && Corrected.getAsIdentifierInfo() &&
|
|
|
|
Corrected.getAsIdentifierInfo()->isStr("super")) {
|
|
|
|
// If we've found the keyword "super", this is a send to super.
|
2010-04-14 06:46:37 +04:00
|
|
|
Diag(NameLoc, diag::err_unknown_receiver_suggest)
|
2010-04-15 00:04:41 +04:00
|
|
|
<< Name << Corrected
|
|
|
|
<< FixItHint::CreateReplacement(SourceRange(NameLoc), "super");
|
|
|
|
Name = Corrected.getAsIdentifierInfo();
|
|
|
|
return ObjCSuperMessage;
|
2010-04-14 06:46:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fall back: let the parser try to parse it as an instance message.
|
|
|
|
return ObjCInstanceMessage;
|
|
|
|
}
|
2009-03-10 00:12:44 +03:00
|
|
|
|
2008-01-05 01:32:30 +03:00
|
|
|
// ActOnClassMessage - used for both unary and keyword messages.
|
|
|
|
// ArgExprs is optional - if it is present, the number of expressions
|
|
|
|
// is obtained from Sel.getNumArgs().
|
2010-04-11 12:28:14 +04:00
|
|
|
Sema::ExprResult Sema::
|
|
|
|
ActOnClassMessage(Scope *S, IdentifierInfo *receiverName, Selector Sel,
|
|
|
|
SourceLocation lbrac, SourceLocation receiverLoc,
|
|
|
|
SourceLocation selectorLoc, SourceLocation rbrac,
|
|
|
|
ExprTy **Args, unsigned NumArgs) {
|
2008-01-05 01:32:30 +03:00
|
|
|
assert(receiverName && "missing receiver class name");
|
|
|
|
|
|
|
|
Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
|
2010-04-12 09:38:43 +04:00
|
|
|
ObjCInterfaceDecl *ClassDecl = 0;
|
2010-04-12 21:25:51 +04:00
|
|
|
bool isSuper = false;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2010-04-12 09:38:43 +04:00
|
|
|
// Special case a message to super, which can be either a class message or an
|
|
|
|
// instance message, depending on what CurMethodDecl is.
|
2008-11-20 08:35:30 +03:00
|
|
|
if (receiverName->isStr("super")) {
|
2010-04-11 12:28:14 +04:00
|
|
|
if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
|
|
|
|
ObjCInterfaceDecl *OID = CurMethod->getClassInterface();
|
2009-01-08 00:01:41 +03:00
|
|
|
if (!OID)
|
2009-09-09 19:08:12 +04:00
|
|
|
return Diag(lbrac, diag::error_no_super_class_message)
|
2010-04-11 12:28:14 +04:00
|
|
|
<< CurMethod->getDeclName();
|
2009-01-08 00:01:41 +03:00
|
|
|
ClassDecl = OID->getSuperClass();
|
2010-04-12 09:38:43 +04:00
|
|
|
if (ClassDecl == 0)
|
2009-01-08 00:01:41 +03:00
|
|
|
return Diag(lbrac, diag::error_no_super_class) << OID->getDeclName();
|
2010-04-11 12:28:14 +04:00
|
|
|
if (CurMethod->isInstanceMethod()) {
|
2008-11-19 18:54:23 +03:00
|
|
|
QualType superTy = Context.getObjCInterfaceType(ClassDecl);
|
2009-07-11 03:34:53 +04:00
|
|
|
superTy = Context.getObjCObjectPointerType(superTy);
|
2009-02-07 04:47:29 +03:00
|
|
|
ExprResult ReceiverExpr = new (Context) ObjCSuperExpr(SourceLocation(),
|
|
|
|
superTy);
|
2008-11-19 18:54:23 +03:00
|
|
|
// We are really in an instance method, redirect.
|
2009-09-09 19:08:12 +04:00
|
|
|
return ActOnInstanceMessage(ReceiverExpr.get(), Sel, lbrac,
|
2009-02-14 21:21:46 +03:00
|
|
|
selectorLoc, rbrac, Args, NumArgs);
|
2008-11-19 18:54:23 +03:00
|
|
|
}
|
2010-04-11 12:28:14 +04:00
|
|
|
|
2010-04-12 09:38:43 +04:00
|
|
|
// Otherwise, if this is a class method, try dispatching to our
|
|
|
|
// superclass, which is in ClassDecl.
|
2010-04-12 21:25:51 +04:00
|
|
|
isSuper = true;
|
2009-09-09 19:08:12 +04:00
|
|
|
}
|
2010-04-12 09:38:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ClassDecl == 0)
|
2010-04-16 02:33:43 +04:00
|
|
|
ClassDecl = getObjCInterfaceDecl(receiverName, receiverLoc, true);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-07-25 23:39:00 +04:00
|
|
|
// The following code allows for the following GCC-ism:
|
2008-06-05 03:08:38 +04:00
|
|
|
//
|
|
|
|
// typedef XCElementDisplayRect XCElementGraphicsRect;
|
|
|
|
//
|
|
|
|
// @implementation XCRASlice
|
|
|
|
// - whatever { // Note that XCElementGraphicsRect is a typedef name.
|
|
|
|
// _sGraphicsDelegate =[[XCElementGraphicsRect alloc] init];
|
|
|
|
// }
|
|
|
|
//
|
2008-07-25 23:39:00 +04:00
|
|
|
// If necessary, the following lookup could move to getObjCInterfaceDecl().
|
|
|
|
if (!ClassDecl) {
|
2009-10-10 01:13:30 +04:00
|
|
|
NamedDecl *IDecl
|
2010-04-16 02:33:43 +04:00
|
|
|
= LookupSingleName(TUScope, receiverName, receiverLoc,
|
|
|
|
LookupOrdinaryName);
|
2010-02-19 18:18:45 +03:00
|
|
|
if (TypedefDecl *OCTD = dyn_cast_or_null<TypedefDecl>(IDecl))
|
|
|
|
if (const ObjCInterfaceType *OCIT
|
|
|
|
= OCTD->getUnderlyingType()->getAs<ObjCInterfaceType>())
|
|
|
|
ClassDecl = OCIT->getDecl();
|
|
|
|
|
|
|
|
if (!ClassDecl) {
|
2010-04-11 12:28:14 +04:00
|
|
|
// Give a better error message for invalid use of super.
|
|
|
|
if (receiverName->isStr("super"))
|
|
|
|
Diag(receiverLoc, diag::err_invalid_receiver_to_message_super);
|
|
|
|
else
|
|
|
|
Diag(receiverLoc, diag::err_invalid_receiver_to_message);
|
2010-02-19 18:18:45 +03:00
|
|
|
return true;
|
2008-07-25 23:39:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(ClassDecl && "missing interface declaration");
|
2008-06-05 03:08:38 +04:00
|
|
|
ObjCMethodDecl *Method = 0;
|
2008-01-05 01:32:30 +03:00
|
|
|
QualType returnType;
|
2009-05-09 03:02:36 +04:00
|
|
|
if (ClassDecl->isForwardDecl()) {
|
|
|
|
// A forward class used in messaging is tread as a 'Class'
|
2009-05-09 03:45:49 +04:00
|
|
|
Diag(lbrac, diag::warn_receiver_forward_class) << ClassDecl->getDeclName();
|
2009-05-09 03:02:36 +04:00
|
|
|
Method = LookupFactoryMethodInGlobalPool(Sel, SourceRange(lbrac,rbrac));
|
|
|
|
if (Method)
|
2009-09-09 19:08:12 +04:00
|
|
|
Diag(Method->getLocation(), diag::note_method_sent_forward_class)
|
2009-05-09 03:45:49 +04:00
|
|
|
<< Method->getDeclName();
|
2009-05-09 03:02:36 +04:00
|
|
|
}
|
|
|
|
if (!Method)
|
2009-06-30 06:36:12 +04:00
|
|
|
Method = ClassDecl->lookupClassMethod(Sel);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-07-25 23:39:00 +04:00
|
|
|
// If we have an implementation in scope, check "private" methods.
|
2009-02-26 18:55:06 +03:00
|
|
|
if (!Method)
|
2009-03-08 21:56:13 +03:00
|
|
|
Method = LookupPrivateClassMethod(Sel, ClassDecl);
|
2008-07-25 23:39:00 +04:00
|
|
|
|
2009-02-19 00:56:37 +03:00
|
|
|
if (Method && DiagnoseUseOfDecl(Method, receiverLoc))
|
|
|
|
return true;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
if (CheckMessageArgumentTypes(ArgExprs, NumArgs, Sel, Method, true,
|
2008-09-11 04:01:56 +04:00
|
|
|
lbrac, rbrac, returnType))
|
|
|
|
return true;
|
2008-06-24 19:50:53 +04:00
|
|
|
|
2009-05-26 19:22:25 +04:00
|
|
|
returnType = returnType.getNonReferenceType();
|
2009-09-09 19:08:12 +04:00
|
|
|
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
QualType ReceiverType = Context.getObjCInterfaceType(ClassDecl);
|
2010-04-12 21:25:51 +04:00
|
|
|
if (isSuper)
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
return ObjCMessageExpr::Create(Context, returnType, lbrac, receiverLoc,
|
|
|
|
/*IsInstanceSuper=*/false,ReceiverType,
|
|
|
|
Sel, Method, ArgExprs, NumArgs, rbrac);
|
2010-04-12 21:25:51 +04:00
|
|
|
|
2009-05-16 11:39:55 +04:00
|
|
|
// If we have the ObjCInterfaceDecl* for the class that is receiving the
|
|
|
|
// message, use that to construct the ObjCMessageExpr. Otherwise pass on the
|
|
|
|
// IdentifierInfo* for the class.
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(ReceiverType,
|
|
|
|
receiverLoc);
|
|
|
|
return ObjCMessageExpr::Create(Context, returnType, lbrac, TSInfo, Sel,
|
|
|
|
Method, ArgExprs, NumArgs, rbrac);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ActOnInstanceMessage - used for both unary and keyword messages.
|
|
|
|
// ArgExprs is optional - if it is present, the number of expressions
|
|
|
|
// is obtained from Sel.getNumArgs().
|
2008-07-21 10:31:05 +04:00
|
|
|
Sema::ExprResult Sema::ActOnInstanceMessage(ExprTy *receiver, Selector Sel,
|
2009-09-09 19:08:12 +04:00
|
|
|
SourceLocation lbrac,
|
2009-02-14 21:21:46 +03:00
|
|
|
SourceLocation receiverLoc,
|
2008-07-27 02:17:49 +04:00
|
|
|
SourceLocation rbrac,
|
|
|
|
ExprTy **Args, unsigned NumArgs) {
|
2008-01-05 01:32:30 +03:00
|
|
|
assert(receiver && "missing receiver expression");
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2008-01-05 01:32:30 +03:00
|
|
|
Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
|
|
|
|
Expr *RExpr = static_cast<Expr *>(receiver);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-04-29 09:48:32 +04:00
|
|
|
// If necessary, apply function/array conversion to the receiver.
|
|
|
|
// C99 6.7.5.3p[7,8].
|
2010-02-03 03:27:59 +03:00
|
|
|
DefaultFunctionArrayLvalueConversion(RExpr);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
ObjCMethodDecl *Method = 0;
|
2008-01-05 01:32:30 +03:00
|
|
|
QualType returnType;
|
2008-07-27 02:17:49 +04:00
|
|
|
QualType ReceiverCType =
|
|
|
|
Context.getCanonicalType(RExpr->getType()).getUnqualifiedType();
|
2008-11-18 01:29:32 +03:00
|
|
|
|
2009-09-09 19:08:12 +04:00
|
|
|
// Handle messages to id.
|
2009-07-22 20:07:01 +04:00
|
|
|
if (ReceiverCType->isObjCIdType() || ReceiverCType->isBlockPointerType() ||
|
2009-05-22 01:04:28 +04:00
|
|
|
Context.isObjCNSObjectType(RExpr->getType())) {
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
// FIXME: If our superclass is NSObject and we message 'super',
|
|
|
|
// we'll end up looking in the global method pool??
|
|
|
|
|
|
|
|
Method = LookupInstanceMethodInGlobalPool(Sel, SourceRange(lbrac,rbrac));
|
2008-02-01 09:57:39 +03:00
|
|
|
if (!Method)
|
2009-04-25 01:10:55 +04:00
|
|
|
Method = LookupFactoryMethodInGlobalPool(Sel, SourceRange(lbrac, rbrac));
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
} else if (ReceiverCType->isObjCClassType() ||
|
|
|
|
ReceiverCType->isObjCQualifiedClassType()) {
|
|
|
|
// Handle messages to Class.
|
2008-07-21 10:44:27 +04:00
|
|
|
if (ObjCMethodDecl *CurMeth = getCurMethodDecl()) {
|
2009-02-23 05:25:40 +03:00
|
|
|
if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface()) {
|
|
|
|
// First check the public methods in the class interface.
|
2009-06-30 06:36:12 +04:00
|
|
|
Method = ClassDecl->lookupClassMethod(Sel);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-02-26 18:55:06 +03:00
|
|
|
if (!Method)
|
2009-03-08 21:56:13 +03:00
|
|
|
Method = LookupPrivateClassMethod(Sel, ClassDecl);
|
2009-09-09 19:08:12 +04:00
|
|
|
|
|
|
|
// FIXME: if we still haven't found a method, we need to look in
|
2009-07-22 20:07:01 +04:00
|
|
|
// protocols (if we have qualifiers).
|
2009-02-23 05:25:40 +03:00
|
|
|
}
|
2009-02-19 00:56:37 +03:00
|
|
|
if (Method && DiagnoseUseOfDecl(Method, receiverLoc))
|
|
|
|
return true;
|
2009-02-23 05:25:40 +03:00
|
|
|
}
|
2009-03-04 18:11:40 +03:00
|
|
|
if (!Method) {
|
|
|
|
// If not messaging 'self', look for any factory method named 'Sel'.
|
|
|
|
if (!isSelfExpr(RExpr)) {
|
2009-04-25 01:10:55 +04:00
|
|
|
Method = LookupFactoryMethodInGlobalPool(Sel, SourceRange(lbrac,rbrac));
|
2009-03-04 20:50:39 +03:00
|
|
|
if (!Method) {
|
2009-05-05 22:34:37 +04:00
|
|
|
// If no class (factory) method was found, check if an _instance_
|
|
|
|
// method of the same name exists in the root class only.
|
2009-03-04 18:11:40 +03:00
|
|
|
Method = LookupInstanceMethodInGlobalPool(
|
|
|
|
Sel, SourceRange(lbrac,rbrac));
|
2009-05-05 22:34:37 +04:00
|
|
|
if (Method)
|
|
|
|
if (const ObjCInterfaceDecl *ID =
|
|
|
|
dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext())) {
|
|
|
|
if (ID->getSuperClass())
|
|
|
|
Diag(lbrac, diag::warn_root_inst_method_not_found)
|
|
|
|
<< Sel << SourceRange(lbrac, rbrac);
|
|
|
|
}
|
2009-03-04 20:50:39 +03:00
|
|
|
}
|
2009-03-04 18:11:40 +03:00
|
|
|
}
|
|
|
|
}
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
} else {
|
|
|
|
ObjCInterfaceDecl* ClassDecl = 0;
|
2009-09-09 19:08:12 +04:00
|
|
|
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
// We allow sending a message to a qualified ID ("id<foo>"), which is ok as
|
|
|
|
// long as one of the protocols implements the selector (if not, warn).
|
|
|
|
if (const ObjCObjectPointerType *QIdTy =
|
2009-06-18 02:40:22 +04:00
|
|
|
ReceiverCType->getAsObjCQualifiedIdType()) {
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
// Search protocols for instance methods.
|
|
|
|
for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
|
|
|
|
E = QIdTy->qual_end(); I != E; ++I) {
|
|
|
|
ObjCProtocolDecl *PDecl = *I;
|
|
|
|
if (PDecl && (Method = PDecl->lookupInstanceMethod(Sel)))
|
|
|
|
break;
|
|
|
|
// Since we aren't supporting "Class<foo>", look for a class method.
|
|
|
|
if (PDecl && (Method = PDecl->lookupClassMethod(Sel)))
|
2008-01-05 01:32:30 +03:00
|
|
|
break;
|
|
|
|
}
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
} else if (const ObjCObjectPointerType *OCIType =
|
|
|
|
ReceiverCType->getAsObjCInterfacePointerType()) {
|
|
|
|
// We allow sending a message to a pointer to an interface (an object).
|
|
|
|
|
|
|
|
ClassDecl = OCIType->getInterfaceDecl();
|
|
|
|
// FIXME: consider using LookupInstanceMethodInGlobalPool, since it will be
|
|
|
|
// faster than the following method (which can do *many* linear searches).
|
|
|
|
// The idea is to add class info to InstanceMethodPool.
|
|
|
|
Method = ClassDecl->lookupInstanceMethod(Sel);
|
|
|
|
|
|
|
|
if (!Method) {
|
|
|
|
// Search protocol qualifiers.
|
|
|
|
for (ObjCObjectPointerType::qual_iterator QI = OCIType->qual_begin(),
|
|
|
|
E = OCIType->qual_end(); QI != E; ++QI) {
|
|
|
|
if ((Method = (*QI)->lookupInstanceMethod(Sel)))
|
|
|
|
break;
|
2009-03-04 18:11:40 +03:00
|
|
|
}
|
2009-03-04 01:19:15 +03:00
|
|
|
}
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
if (!Method) {
|
|
|
|
// If we have implementations in scope, check "private" methods.
|
|
|
|
Method = LookupPrivateInstanceMethod(Sel, ClassDecl);
|
|
|
|
|
|
|
|
if (!Method && !isSelfExpr(RExpr)) {
|
|
|
|
// If we still haven't found a method, look in the global pool. This
|
|
|
|
// behavior isn't very desirable, however we need it for GCC
|
|
|
|
// compatibility. FIXME: should we deviate??
|
|
|
|
if (OCIType->qual_empty()) {
|
|
|
|
Method = LookupInstanceMethodInGlobalPool(
|
|
|
|
Sel, SourceRange(lbrac,rbrac));
|
|
|
|
if (Method && !OCIType->getInterfaceDecl()->isForwardDecl())
|
|
|
|
Diag(lbrac, diag::warn_maynot_respond)
|
|
|
|
<< OCIType->getInterfaceDecl()->getIdentifier() << Sel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Method && DiagnoseUseOfDecl(Method, receiverLoc))
|
|
|
|
return true;
|
|
|
|
} else if (!Context.getObjCIdType().isNull() &&
|
|
|
|
(ReceiverCType->isPointerType() ||
|
|
|
|
(ReceiverCType->isIntegerType() &&
|
|
|
|
ReceiverCType->isScalarType()))) {
|
|
|
|
// Implicitly convert integers and pointers to 'id' but emit a warning.
|
|
|
|
Diag(lbrac, diag::warn_bad_receiver_type)
|
|
|
|
<< RExpr->getType() << RExpr->getSourceRange();
|
|
|
|
if (ReceiverCType->isPointerType())
|
|
|
|
ImpCastExprToType(RExpr, Context.getObjCIdType(), CastExpr::CK_BitCast);
|
|
|
|
else
|
|
|
|
ImpCastExprToType(RExpr, Context.getObjCIdType(),
|
|
|
|
CastExpr::CK_IntegralToPointer);
|
|
|
|
} else {
|
|
|
|
// Reject other random receiver types (e.g. structs).
|
|
|
|
Diag(lbrac, diag::err_bad_receiver_type)
|
|
|
|
<< RExpr->getType() << RExpr->getSourceRange();
|
2009-02-19 00:56:37 +03:00
|
|
|
return true;
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
}
|
2008-07-21 09:57:44 +04:00
|
|
|
}
|
2009-09-09 19:08:12 +04:00
|
|
|
|
2009-05-13 22:09:35 +04:00
|
|
|
if (Method)
|
|
|
|
DiagnoseSentinelCalls(Method, receiverLoc, ArgExprs, NumArgs);
|
2008-11-24 06:33:13 +03:00
|
|
|
if (CheckMessageArgumentTypes(ArgExprs, NumArgs, Sel, Method, false,
|
2008-09-11 04:01:56 +04:00
|
|
|
lbrac, rbrac, returnType))
|
|
|
|
return true;
|
2009-05-26 19:22:25 +04:00
|
|
|
returnType = returnType.getNonReferenceType();
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101972 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 04:45:42 +04:00
|
|
|
|
|
|
|
if (isa<ObjCSuperExpr>(RExpr))
|
|
|
|
return ObjCMessageExpr::Create(Context, returnType, lbrac,
|
|
|
|
RExpr->getLocStart(),
|
|
|
|
/*IsInstanceSuper=*/true,
|
|
|
|
RExpr->getType(),
|
|
|
|
Sel, Method, ArgExprs, NumArgs, rbrac);
|
|
|
|
|
|
|
|
return ObjCMessageExpr::Create(Context, returnType, lbrac, RExpr, Sel,
|
|
|
|
Method, ArgExprs, NumArgs, rbrac);
|
2008-01-05 01:32:30 +03:00
|
|
|
}
|
2008-04-07 09:30:13 +04:00
|
|
|
|