2008-03-16 03:19:01 +03:00
|
|
|
//===--- DeclObjC.cpp - ObjC Declaration AST Node Implementation ----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Objective-C related Decl classes.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/DeclObjC.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2008-08-11 08:54:23 +04:00
|
|
|
#include "clang/AST/Stmt.h"
|
2009-02-22 22:35:57 +03:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2008-03-16 03:19:01 +03:00
|
|
|
using namespace clang;
|
|
|
|
|
2009-02-21 00:16:26 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCListBase
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
void ObjCListBase::Destroy(ASTContext &Ctx) {
|
2009-02-21 00:44:01 +03:00
|
|
|
Ctx.Deallocate(List);
|
2009-02-21 00:16:26 +03:00
|
|
|
NumElts = 0;
|
|
|
|
List = 0;
|
|
|
|
}
|
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) {
|
2009-02-21 00:16:26 +03:00
|
|
|
assert(List == 0 && "Elements already set!");
|
|
|
|
if (Elts == 0) return; // Setting to an empty list is a noop.
|
|
|
|
|
2009-02-21 00:44:01 +03:00
|
|
|
|
|
|
|
List = new (Ctx) void*[Elts];
|
2009-02-21 00:16:26 +03:00
|
|
|
NumElts = Elts;
|
|
|
|
memcpy(List, InList, sizeof(void*)*Elts);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-16 03:49:28 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-02-20 23:59:54 +03:00
|
|
|
// ObjCInterfaceDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Get the local instance method declared in this interface.
|
|
|
|
ObjCMethodDecl *ObjCContainerDecl::getInstanceMethod(Selector Sel) const {
|
2009-02-22 22:35:57 +03:00
|
|
|
// Since instance & class methods can have the same name, the loop below
|
|
|
|
// ensures we get the correct method.
|
|
|
|
//
|
|
|
|
// @interface Whatever
|
|
|
|
// - (int) class_method;
|
|
|
|
// + (float) class_method;
|
|
|
|
// @end
|
|
|
|
//
|
|
|
|
lookup_const_iterator Meth, MethEnd;
|
|
|
|
for (llvm::tie(Meth, MethEnd) = lookup(Sel);
|
|
|
|
Meth != MethEnd; ++Meth) {
|
|
|
|
ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
|
|
|
|
if (MD && MD->isInstanceMethod())
|
|
|
|
return MD;
|
|
|
|
}
|
2009-02-20 23:59:54 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the local class method declared in this interface.
|
|
|
|
ObjCMethodDecl *ObjCContainerDecl::getClassMethod(Selector Sel) const {
|
2009-02-22 22:35:57 +03:00
|
|
|
// Since instance & class methods can have the same name, the loop below
|
|
|
|
// ensures we get the correct method.
|
|
|
|
//
|
|
|
|
// @interface Whatever
|
|
|
|
// - (int) class_method;
|
|
|
|
// + (float) class_method;
|
|
|
|
// @end
|
|
|
|
//
|
|
|
|
lookup_const_iterator Meth, MethEnd;
|
|
|
|
for (llvm::tie(Meth, MethEnd) = lookup(Sel);
|
|
|
|
Meth != MethEnd; ++Meth) {
|
|
|
|
ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
|
|
|
|
if (MD && MD->isClassMethod())
|
|
|
|
return MD;
|
|
|
|
}
|
2009-02-20 23:59:54 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FindPropertyDeclaration - Finds declaration of the property given its name
|
|
|
|
/// in 'PropertyId' and returns it. It returns 0, if not found.
|
|
|
|
/// FIXME: Convert to DeclContext lookup...
|
|
|
|
///
|
|
|
|
ObjCPropertyDecl *
|
|
|
|
ObjCContainerDecl::FindPropertyDeclaration(IdentifierInfo *PropertyId) const {
|
|
|
|
for (prop_iterator I = prop_begin(), E = prop_end(); I != E; ++I)
|
|
|
|
if ((*I)->getIdentifier() == PropertyId)
|
|
|
|
return *I;
|
|
|
|
|
|
|
|
const ObjCProtocolDecl *PID = dyn_cast<ObjCProtocolDecl>(this);
|
|
|
|
if (PID) {
|
|
|
|
for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
|
|
|
|
E = PID->protocol_end(); I != E; ++I)
|
|
|
|
if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
|
|
|
|
return P;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(this)) {
|
|
|
|
// Look through categories.
|
|
|
|
for (ObjCCategoryDecl *Category = OID->getCategoryList();
|
|
|
|
Category; Category = Category->getNextClassCategory()) {
|
|
|
|
if (ObjCPropertyDecl *P = Category->FindPropertyDeclaration(PropertyId))
|
|
|
|
return P;
|
|
|
|
}
|
|
|
|
// Look through protocols.
|
|
|
|
for (ObjCInterfaceDecl::protocol_iterator I = OID->protocol_begin(),
|
|
|
|
E = OID->protocol_end(); I != E; ++I) {
|
|
|
|
if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
|
|
|
|
return P;
|
|
|
|
}
|
|
|
|
if (OID->getSuperClass())
|
|
|
|
return OID->getSuperClass()->FindPropertyDeclaration(PropertyId);
|
|
|
|
} else if (const ObjCCategoryDecl *OCD = dyn_cast<ObjCCategoryDecl>(this)) {
|
|
|
|
// Look through protocols.
|
|
|
|
for (ObjCInterfaceDecl::protocol_iterator I = OCD->protocol_begin(),
|
|
|
|
E = OCD->protocol_end(); I != E; ++I) {
|
|
|
|
if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
|
|
|
|
return P;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCIvarDecl *ObjCInterfaceDecl::lookupInstanceVariable(
|
|
|
|
IdentifierInfo *ID, ObjCInterfaceDecl *&clsDeclared) {
|
|
|
|
ObjCInterfaceDecl* ClassDecl = this;
|
|
|
|
while (ClassDecl != NULL) {
|
|
|
|
for (ivar_iterator I = ClassDecl->ivar_begin(), E = ClassDecl->ivar_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if ((*I)->getIdentifier() == ID) {
|
|
|
|
clsDeclared = ClassDecl;
|
|
|
|
return *I;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ClassDecl = ClassDecl->getSuperClass();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// lookupInstanceMethod - This method returns an instance method by looking in
|
|
|
|
/// the class, its categories, and its super classes (using a linear search).
|
|
|
|
ObjCMethodDecl *ObjCInterfaceDecl::lookupInstanceMethod(Selector Sel) {
|
|
|
|
ObjCInterfaceDecl* ClassDecl = this;
|
|
|
|
ObjCMethodDecl *MethodDecl = 0;
|
|
|
|
|
|
|
|
while (ClassDecl != NULL) {
|
|
|
|
if ((MethodDecl = ClassDecl->getInstanceMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
|
|
|
|
// Didn't find one yet - look through protocols.
|
|
|
|
const ObjCList<ObjCProtocolDecl> &Protocols =
|
|
|
|
ClassDecl->getReferencedProtocols();
|
|
|
|
for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
|
|
|
|
E = Protocols.end(); I != E; ++I)
|
|
|
|
if ((MethodDecl = (*I)->getInstanceMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
|
|
|
|
// Didn't find one yet - now look through categories.
|
|
|
|
ObjCCategoryDecl *CatDecl = ClassDecl->getCategoryList();
|
|
|
|
while (CatDecl) {
|
|
|
|
if ((MethodDecl = CatDecl->getInstanceMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
|
|
|
|
// Didn't find one yet - look through protocols.
|
|
|
|
const ObjCList<ObjCProtocolDecl> &Protocols =
|
|
|
|
CatDecl->getReferencedProtocols();
|
|
|
|
for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
|
|
|
|
E = Protocols.end(); I != E; ++I)
|
|
|
|
if ((MethodDecl = (*I)->getInstanceMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
CatDecl = CatDecl->getNextClassCategory();
|
|
|
|
}
|
|
|
|
ClassDecl = ClassDecl->getSuperClass();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// lookupClassMethod - This method returns a class method by looking in the
|
|
|
|
// class, its categories, and its super classes (using a linear search).
|
|
|
|
ObjCMethodDecl *ObjCInterfaceDecl::lookupClassMethod(Selector Sel) {
|
|
|
|
ObjCInterfaceDecl* ClassDecl = this;
|
|
|
|
ObjCMethodDecl *MethodDecl = 0;
|
|
|
|
|
|
|
|
while (ClassDecl != NULL) {
|
|
|
|
if ((MethodDecl = ClassDecl->getClassMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
|
|
|
|
// Didn't find one yet - look through protocols.
|
|
|
|
for (ObjCInterfaceDecl::protocol_iterator I = ClassDecl->protocol_begin(),
|
|
|
|
E = ClassDecl->protocol_end(); I != E; ++I)
|
|
|
|
if ((MethodDecl = (*I)->getClassMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
|
|
|
|
// Didn't find one yet - now look through categories.
|
|
|
|
ObjCCategoryDecl *CatDecl = ClassDecl->getCategoryList();
|
|
|
|
while (CatDecl) {
|
|
|
|
if ((MethodDecl = CatDecl->getClassMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
CatDecl = CatDecl->getNextClassCategory();
|
|
|
|
}
|
|
|
|
ClassDecl = ClassDecl->getSuperClass();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCMethodDecl
|
2008-03-16 03:49:28 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-04-04 10:12:32 +04:00
|
|
|
ObjCMethodDecl *ObjCMethodDecl::Create(ASTContext &C,
|
|
|
|
SourceLocation beginLoc,
|
2008-03-16 03:49:28 +03:00
|
|
|
SourceLocation endLoc,
|
|
|
|
Selector SelInfo, QualType T,
|
2009-01-08 20:28:14 +03:00
|
|
|
DeclContext *contextDecl,
|
2008-08-20 22:02:42 +04:00
|
|
|
bool isInstance,
|
2008-03-16 03:49:28 +03:00
|
|
|
bool isVariadic,
|
2008-05-08 00:53:44 +04:00
|
|
|
bool isSynthesized,
|
2008-03-16 03:58:16 +03:00
|
|
|
ImplementationControl impControl) {
|
2009-01-28 00:25:57 +03:00
|
|
|
return new (C) ObjCMethodDecl(beginLoc, endLoc,
|
2008-04-04 10:12:32 +04:00
|
|
|
SelInfo, T, contextDecl,
|
2008-08-20 22:02:42 +04:00
|
|
|
isInstance,
|
2008-05-08 00:53:44 +04:00
|
|
|
isVariadic, isSynthesized, impControl);
|
2008-03-16 04:15:50 +03:00
|
|
|
}
|
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
void ObjCMethodDecl::Destroy(ASTContext &C) {
|
2008-06-06 20:45:15 +04:00
|
|
|
if (Body) Body->Destroy(C);
|
|
|
|
if (SelfDecl) SelfDecl->Destroy(C);
|
|
|
|
|
|
|
|
for (param_iterator I=param_begin(), E=param_end(); I!=E; ++I)
|
|
|
|
if (*I) (*I)->Destroy(C);
|
2009-02-20 08:54:35 +03:00
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
ParamInfo.Destroy(C);
|
2009-02-20 08:54:35 +03:00
|
|
|
|
2008-06-06 20:45:15 +04:00
|
|
|
Decl::Destroy(C);
|
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
void ObjCMethodDecl::createImplicitParams(ASTContext &Context,
|
|
|
|
const ObjCInterfaceDecl *OID) {
|
|
|
|
QualType selfTy;
|
|
|
|
if (isInstanceMethod()) {
|
|
|
|
// There may be no interface context due to error in declaration
|
|
|
|
// of the interface (which has been reported). Recover gracefully.
|
|
|
|
if (OID) {
|
|
|
|
selfTy =Context.getObjCInterfaceType(const_cast<ObjCInterfaceDecl*>(OID));
|
|
|
|
selfTy = Context.getPointerType(selfTy);
|
|
|
|
} else {
|
|
|
|
selfTy = Context.getObjCIdType();
|
|
|
|
}
|
|
|
|
} else // we have a factory method.
|
|
|
|
selfTy = Context.getObjCClassType();
|
|
|
|
|
|
|
|
SelfDecl = ImplicitParamDecl::Create(Context, this, SourceLocation(),
|
|
|
|
&Context.Idents.get("self"), selfTy);
|
|
|
|
|
|
|
|
CmdDecl = ImplicitParamDecl::Create(Context, this, SourceLocation(),
|
|
|
|
&Context.Idents.get("_cmd"),
|
|
|
|
Context.getObjCSelType());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// getSynthesizedMethodSize - Compute size of synthesized method name
|
|
|
|
/// as done be the rewrite.
|
|
|
|
///
|
|
|
|
unsigned ObjCMethodDecl::getSynthesizedMethodSize() const {
|
|
|
|
// syntesized method name is a concatenation of -/+[class-name selector]
|
|
|
|
// Get length of this name.
|
|
|
|
unsigned length = 3; // _I_ or _C_
|
|
|
|
length += getClassInterface()->getNameAsString().size()+1; // extra for _
|
|
|
|
if (const ObjCCategoryImplDecl *CID =
|
|
|
|
dyn_cast<ObjCCategoryImplDecl>(getDeclContext()))
|
|
|
|
length += CID->getNameAsString().size()+1;
|
|
|
|
length += getSelector().getAsString().size(); // selector name
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() {
|
|
|
|
if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(getDeclContext()))
|
|
|
|
return ID;
|
|
|
|
if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(getDeclContext()))
|
|
|
|
return CD->getClassInterface();
|
|
|
|
if (ObjCImplementationDecl *IMD =
|
|
|
|
dyn_cast<ObjCImplementationDecl>(getDeclContext()))
|
|
|
|
return IMD->getClassInterface();
|
|
|
|
if (ObjCCategoryImplDecl *CID =
|
|
|
|
dyn_cast<ObjCCategoryImplDecl>(getDeclContext()))
|
|
|
|
return CID->getClassInterface();
|
|
|
|
assert(false && "unknown method context");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCInterfaceDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-02-20 09:03:09 +03:00
|
|
|
|
2008-04-04 10:12:32 +04:00
|
|
|
ObjCInterfaceDecl *ObjCInterfaceDecl::Create(ASTContext &C,
|
2009-01-09 03:49:46 +03:00
|
|
|
DeclContext *DC,
|
2008-04-04 10:12:32 +04:00
|
|
|
SourceLocation atLoc,
|
2008-04-11 23:35:35 +04:00
|
|
|
IdentifierInfo *Id,
|
|
|
|
SourceLocation ClassLoc,
|
2008-03-16 04:15:50 +03:00
|
|
|
bool ForwardDecl, bool isInternal){
|
2009-01-28 00:25:57 +03:00
|
|
|
return new (C) ObjCInterfaceDecl(DC, atLoc, Id, ClassLoc, ForwardDecl,
|
2008-03-16 04:15:50 +03:00
|
|
|
isInternal);
|
|
|
|
}
|
2008-03-16 03:49:28 +03:00
|
|
|
|
2009-02-20 09:03:09 +03:00
|
|
|
ObjCInterfaceDecl::
|
|
|
|
ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id,
|
|
|
|
SourceLocation CLoc, bool FD, bool isInternal)
|
|
|
|
: ObjCContainerDecl(ObjCInterface, DC, atLoc, Id),
|
2009-02-20 09:10:45 +03:00
|
|
|
TypeForDecl(0), SuperClass(0),
|
2009-02-20 09:03:09 +03:00
|
|
|
CategoryList(0), ForwardDecl(FD), InternalInterface(isInternal),
|
|
|
|
ClassLoc(CLoc) {
|
2009-01-07 20:57:40 +03:00
|
|
|
}
|
|
|
|
|
2009-02-20 09:03:09 +03:00
|
|
|
void ObjCInterfaceDecl::Destroy(ASTContext &C) {
|
2008-06-06 20:45:15 +04:00
|
|
|
for (ivar_iterator I=ivar_begin(), E=ivar_end(); I!=E; ++I)
|
|
|
|
if (*I) (*I)->Destroy(C);
|
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
IVars.Destroy(C);
|
2009-02-20 09:03:09 +03:00
|
|
|
// FIXME: CategoryList?
|
|
|
|
|
2008-06-06 21:21:42 +04:00
|
|
|
// FIXME: Because there is no clear ownership
|
|
|
|
// role between ObjCInterfaceDecls and the ObjCPropertyDecls that they
|
|
|
|
// reference, we destroy ObjCPropertyDecls in ~TranslationUnit.
|
2008-06-06 20:45:15 +04:00
|
|
|
Decl::Destroy(C);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
/// FindCategoryDeclaration - Finds category declaration in the list of
|
|
|
|
/// categories for this class and returns it. Name of the category is passed
|
|
|
|
/// in 'CategoryId'. If category not found, return 0;
|
|
|
|
///
|
|
|
|
ObjCCategoryDecl *
|
|
|
|
ObjCInterfaceDecl::FindCategoryDeclaration(IdentifierInfo *CategoryId) const {
|
|
|
|
for (ObjCCategoryDecl *Category = getCategoryList();
|
|
|
|
Category; Category = Category->getNextClassCategory())
|
|
|
|
if (Category->getIdentifier() == CategoryId)
|
|
|
|
return Category;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// lookupFieldDeclForIvar - looks up a field decl' in the laid out
|
|
|
|
/// storage which matches this 'ivar'.
|
|
|
|
///
|
|
|
|
FieldDecl *ObjCInterfaceDecl::lookupFieldDeclForIvar(ASTContext &Context,
|
|
|
|
const ObjCIvarDecl *IVar) {
|
|
|
|
const RecordDecl *RecordForDecl = Context.addRecordToClass(this);
|
|
|
|
assert(RecordForDecl && "lookupFieldDeclForIvar no storage for class");
|
|
|
|
DeclarationName Member = IVar->getDeclName();
|
|
|
|
DeclContext::lookup_result Lookup =
|
|
|
|
(const_cast< RecordDecl *>(RecordForDecl))->lookup(Member);
|
|
|
|
assert((Lookup.first != Lookup.second) && "field decl not found");
|
|
|
|
FieldDecl *MemberDecl = dyn_cast<FieldDecl>(*Lookup.first);
|
|
|
|
assert(MemberDecl && "field decl not found");
|
|
|
|
return MemberDecl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCIvarDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-02-17 23:20:37 +03:00
|
|
|
ObjCIvarDecl *ObjCIvarDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation L, IdentifierInfo *Id,
|
|
|
|
QualType T, AccessControl ac, Expr *BW) {
|
|
|
|
return new (C) ObjCIvarDecl(DC, L, Id, T, ac, BW);
|
2008-03-16 03:49:28 +03:00
|
|
|
}
|
|
|
|
|
2008-08-20 07:26:33 +04:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCAtDefsFieldDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-08-20 07:26:33 +04:00
|
|
|
ObjCAtDefsFieldDecl
|
2008-12-11 19:49:14 +03:00
|
|
|
*ObjCAtDefsFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
|
2008-08-20 07:26:33 +04:00
|
|
|
IdentifierInfo *Id, QualType T, Expr *BW) {
|
2009-01-28 00:25:57 +03:00
|
|
|
return new (C) ObjCAtDefsFieldDecl(DC, L, Id, T, BW);
|
2008-08-20 07:26:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ObjCAtDefsFieldDecl::Destroy(ASTContext& C) {
|
|
|
|
this->~ObjCAtDefsFieldDecl();
|
2009-01-28 00:25:57 +03:00
|
|
|
C.Deallocate((void *)this);
|
2008-08-20 07:26:33 +04:00
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCProtocolDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-01-09 03:49:46 +03:00
|
|
|
ObjCProtocolDecl *ObjCProtocolDecl::Create(ASTContext &C, DeclContext *DC,
|
2008-04-04 10:12:32 +04:00
|
|
|
SourceLocation L,
|
2008-03-16 23:19:15 +03:00
|
|
|
IdentifierInfo *Id) {
|
2009-01-28 00:25:57 +03:00
|
|
|
return new (C) ObjCProtocolDecl(DC, L, Id);
|
2008-03-16 04:23:04 +03:00
|
|
|
}
|
|
|
|
|
2009-02-20 08:54:35 +03:00
|
|
|
void ObjCProtocolDecl::Destroy(ASTContext &C) {
|
2009-02-21 00:35:13 +03:00
|
|
|
ReferencedProtocols.Destroy(C);
|
2009-02-20 08:54:35 +03:00
|
|
|
ObjCContainerDecl::Destroy(C);
|
2008-06-06 23:48:57 +04:00
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
// lookupInstanceMethod - Lookup a instance method in the protocol and protocols
|
|
|
|
// it inherited.
|
|
|
|
ObjCMethodDecl *ObjCProtocolDecl::lookupInstanceMethod(Selector Sel) {
|
|
|
|
ObjCMethodDecl *MethodDecl = NULL;
|
|
|
|
|
|
|
|
if ((MethodDecl = getInstanceMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
|
|
|
|
for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I)
|
|
|
|
if ((MethodDecl = (*I)->lookupInstanceMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-06-06 23:48:57 +04:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
// lookupInstanceMethod - Lookup a class method in the protocol and protocols
|
|
|
|
// it inherited.
|
|
|
|
ObjCMethodDecl *ObjCProtocolDecl::lookupClassMethod(Selector Sel) {
|
|
|
|
ObjCMethodDecl *MethodDecl = NULL;
|
|
|
|
|
|
|
|
if ((MethodDecl = getClassMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
|
|
|
|
for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I)
|
|
|
|
if ((MethodDecl = (*I)->lookupClassMethod(Sel)))
|
|
|
|
return MethodDecl;
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-02-20 08:54:35 +03:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCClassDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-02-20 08:54:35 +03:00
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
ObjCClassDecl::ObjCClassDecl(DeclContext *DC, SourceLocation L,
|
|
|
|
ObjCInterfaceDecl *const *Elts, unsigned nElts,
|
|
|
|
ASTContext &C)
|
|
|
|
: Decl(ObjCClass, DC, L) {
|
|
|
|
ForwardDecls.set(Elts, nElts, C);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-09 03:49:46 +03:00
|
|
|
ObjCClassDecl *ObjCClassDecl::Create(ASTContext &C, DeclContext *DC,
|
2008-04-04 10:12:32 +04:00
|
|
|
SourceLocation L,
|
2009-02-20 21:04:31 +03:00
|
|
|
ObjCInterfaceDecl *const *Elts,
|
|
|
|
unsigned nElts) {
|
2009-02-21 00:35:13 +03:00
|
|
|
return new (C) ObjCClassDecl(DC, L, Elts, nElts, C);
|
2008-03-16 23:34:23 +03:00
|
|
|
}
|
|
|
|
|
2009-02-20 09:03:09 +03:00
|
|
|
void ObjCClassDecl::Destroy(ASTContext &C) {
|
2008-06-07 00:11:53 +04:00
|
|
|
|
|
|
|
// FIXME: There is no clear ownership policy now for referenced
|
|
|
|
// ObjCInterfaceDecls. Some of them can be forward declarations that
|
|
|
|
// are never later defined (in which case the ObjCClassDecl owns them)
|
|
|
|
// or the ObjCInterfaceDecl later becomes a real definition later. Ideally
|
|
|
|
// we should have separate objects for forward declarations and definitions,
|
|
|
|
// obviating this problem. Because of this situation, referenced
|
|
|
|
// ObjCInterfaceDecls are destroyed in ~TranslationUnit.
|
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
ForwardDecls.Destroy(C);
|
2008-06-07 00:11:53 +04:00
|
|
|
Decl::Destroy(C);
|
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCForwardProtocolDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-02-21 00:35:13 +03:00
|
|
|
ObjCForwardProtocolDecl::
|
|
|
|
ObjCForwardProtocolDecl(DeclContext *DC, SourceLocation L,
|
|
|
|
ObjCProtocolDecl *const *Elts, unsigned nElts,
|
|
|
|
ASTContext &C)
|
|
|
|
: Decl(ObjCForwardProtocol, DC, L) {
|
|
|
|
ReferencedProtocols.set(Elts, nElts, C);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-16 23:34:23 +03:00
|
|
|
ObjCForwardProtocolDecl *
|
2009-01-09 03:49:46 +03:00
|
|
|
ObjCForwardProtocolDecl::Create(ASTContext &C, DeclContext *DC,
|
2008-04-04 10:12:32 +04:00
|
|
|
SourceLocation L,
|
2009-02-20 21:10:37 +03:00
|
|
|
ObjCProtocolDecl *const *Elts,
|
|
|
|
unsigned NumElts) {
|
2009-02-21 00:35:13 +03:00
|
|
|
return new (C) ObjCForwardProtocolDecl(DC, L, Elts, NumElts, C);
|
2009-02-20 09:03:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ObjCForwardProtocolDecl::Destroy(ASTContext &C) {
|
2009-02-21 00:35:13 +03:00
|
|
|
ReferencedProtocols.Destroy(C);
|
2009-02-20 21:10:37 +03:00
|
|
|
Decl::Destroy(C);
|
2008-06-07 01:05:33 +04:00
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCCategoryDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-01-09 03:49:46 +03:00
|
|
|
ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, DeclContext *DC,
|
2008-04-04 10:12:32 +04:00
|
|
|
SourceLocation L,
|
2008-03-16 23:34:23 +03:00
|
|
|
IdentifierInfo *Id) {
|
2009-01-28 00:25:57 +03:00
|
|
|
return new (C) ObjCCategoryDecl(DC, L, Id);
|
2008-03-16 23:34:23 +03:00
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCCategoryImplDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-03-16 23:53:07 +03:00
|
|
|
ObjCCategoryImplDecl *
|
2009-01-09 03:49:46 +03:00
|
|
|
ObjCCategoryImplDecl::Create(ASTContext &C, DeclContext *DC,
|
2008-04-04 10:12:32 +04:00
|
|
|
SourceLocation L,IdentifierInfo *Id,
|
2008-03-16 23:53:07 +03:00
|
|
|
ObjCInterfaceDecl *ClassInterface) {
|
2009-01-28 00:25:57 +03:00
|
|
|
return new (C) ObjCCategoryImplDecl(DC, L, Id, ClassInterface);
|
2008-03-16 23:53:07 +03:00
|
|
|
}
|
|
|
|
|
2008-03-17 00:17:37 +03:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
/// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
|
|
|
|
/// properties implemented in this category @implementation block and returns
|
|
|
|
/// the implemented property that uses it.
|
2008-12-14 01:20:28 +03:00
|
|
|
///
|
2009-02-20 23:59:54 +03:00
|
|
|
ObjCPropertyImplDecl *ObjCCategoryImplDecl::
|
|
|
|
FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
|
|
|
|
for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
|
|
|
|
ObjCPropertyImplDecl *PID = *i;
|
|
|
|
if (PID->getPropertyIvarDecl() &&
|
|
|
|
PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
|
|
|
|
return PID;
|
|
|
|
}
|
2009-01-08 20:28:14 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
/// FindPropertyImplDecl - This method looks up a previous ObjCPropertyImplDecl
|
|
|
|
/// added to the list of those properties @synthesized/@dynamic in this
|
|
|
|
/// category @implementation block.
|
2008-04-21 23:04:53 +04:00
|
|
|
///
|
2009-02-20 23:59:54 +03:00
|
|
|
ObjCPropertyImplDecl *ObjCCategoryImplDecl::
|
|
|
|
FindPropertyImplDecl(IdentifierInfo *Id) const {
|
|
|
|
for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
|
|
|
|
ObjCPropertyImplDecl *PID = *i;
|
|
|
|
if (PID->getPropertyDecl()->getIdentifier() == Id)
|
|
|
|
return PID;
|
2009-01-19 21:16:19 +03:00
|
|
|
}
|
2008-04-21 23:04:53 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
// lookupInstanceMethod - This method returns an instance method by looking in
|
|
|
|
// the class implementation. Unlike interfaces, we don't look outside the
|
|
|
|
// implementation.
|
|
|
|
ObjCMethodDecl *ObjCCategoryImplDecl::getInstanceMethod(Selector Sel) const {
|
|
|
|
for (instmeth_iterator I = instmeth_begin(), E = instmeth_end(); I != E; ++I)
|
|
|
|
if ((*I)->getSelector() == Sel)
|
|
|
|
return *I;
|
2008-03-16 03:19:01 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
// lookupClassMethod - This method returns an instance method by looking in
|
|
|
|
// the class implementation. Unlike interfaces, we don't look outside the
|
|
|
|
// implementation.
|
|
|
|
ObjCMethodDecl *ObjCCategoryImplDecl::getClassMethod(Selector Sel) const {
|
|
|
|
for (classmeth_iterator I = classmeth_begin(), E = classmeth_end();
|
|
|
|
I != E; ++I)
|
|
|
|
if ((*I)->getSelector() == Sel)
|
|
|
|
return *I;
|
2008-03-16 03:19:01 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCImplementationDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-16 03:19:01 +03:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
ObjCImplementationDecl *
|
|
|
|
ObjCImplementationDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation L,
|
|
|
|
ObjCInterfaceDecl *ClassInterface,
|
|
|
|
ObjCInterfaceDecl *SuperDecl) {
|
|
|
|
return new (C) ObjCImplementationDecl(DC, L, ClassInterface, SuperDecl);
|
|
|
|
}
|
2008-03-16 03:19:01 +03:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
/// Destroy - Call destructors and release memory.
|
2009-02-21 00:35:13 +03:00
|
|
|
void ObjCImplementationDecl::Destroy(ASTContext &C) {
|
|
|
|
IVars.Destroy(C);
|
2009-02-20 23:59:54 +03:00
|
|
|
Decl::Destroy(C);
|
2008-03-16 03:19:01 +03:00
|
|
|
}
|
|
|
|
|
2008-08-26 10:53:45 +04:00
|
|
|
/// getInstanceMethod - This method returns an instance method by
|
|
|
|
/// looking in the class implementation. Unlike interfaces, we don't
|
|
|
|
/// look outside the implementation.
|
|
|
|
ObjCMethodDecl *ObjCImplementationDecl::getInstanceMethod(Selector Sel) const {
|
2008-03-16 03:19:01 +03:00
|
|
|
for (instmeth_iterator I = instmeth_begin(), E = instmeth_end(); I != E; ++I)
|
|
|
|
if ((*I)->getSelector() == Sel)
|
|
|
|
return *I;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-26 10:53:45 +04:00
|
|
|
/// getClassMethod - This method returns a class method by looking in
|
|
|
|
/// the class implementation. Unlike interfaces, we don't look outside
|
|
|
|
/// the implementation.
|
|
|
|
ObjCMethodDecl *ObjCImplementationDecl::getClassMethod(Selector Sel) const {
|
2008-03-16 03:19:01 +03:00
|
|
|
for (classmeth_iterator I = classmeth_begin(), E = classmeth_end();
|
|
|
|
I != E; ++I)
|
|
|
|
if ((*I)->getSelector() == Sel)
|
|
|
|
return *I;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-06 01:32:48 +03:00
|
|
|
/// FindPropertyImplDecl - This method looks up a previous ObjCPropertyImplDecl
|
|
|
|
/// added to the list of those properties @synthesized/@dynamic in this
|
|
|
|
/// @implementation block.
|
|
|
|
///
|
2009-02-20 23:59:54 +03:00
|
|
|
ObjCPropertyImplDecl *ObjCImplementationDecl::
|
|
|
|
FindPropertyImplDecl(IdentifierInfo *Id) const {
|
|
|
|
for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
|
2008-12-06 01:32:48 +03:00
|
|
|
ObjCPropertyImplDecl *PID = *i;
|
|
|
|
if (PID->getPropertyDecl()->getIdentifier() == Id)
|
|
|
|
return PID;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
|
2008-12-06 01:36:19 +03:00
|
|
|
/// properties implemented in this @implementation block and returns the
|
|
|
|
/// implemented property that uses it.
|
2008-12-06 01:32:48 +03:00
|
|
|
///
|
2009-02-20 23:59:54 +03:00
|
|
|
ObjCPropertyImplDecl *ObjCImplementationDecl::
|
2009-02-16 22:24:31 +03:00
|
|
|
FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
|
|
|
|
for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
|
2008-12-06 01:32:48 +03:00
|
|
|
ObjCPropertyImplDecl *PID = *i;
|
|
|
|
if (PID->getPropertyIvarDecl() &&
|
|
|
|
PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
|
|
|
|
return PID;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCCompatibleAliasDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-16 03:19:01 +03:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
ObjCCompatibleAliasDecl *
|
|
|
|
ObjCCompatibleAliasDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation L,
|
|
|
|
IdentifierInfo *Id,
|
|
|
|
ObjCInterfaceDecl* AliasedClass) {
|
|
|
|
return new (C) ObjCCompatibleAliasDecl(DC, L, Id, AliasedClass);
|
2008-03-16 03:19:01 +03:00
|
|
|
}
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCPropertyDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-16 03:19:01 +03:00
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC,
|
|
|
|
SourceLocation L,
|
|
|
|
IdentifierInfo *Id,
|
|
|
|
QualType T,
|
|
|
|
PropertyControl propControl) {
|
|
|
|
return new (C) ObjCPropertyDecl(DC, L, Id, T);
|
2008-03-16 03:19:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-20 23:59:54 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ObjCPropertyImplDecl
|
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-17 04:19:02 +03:00
|
|
|
|
2008-04-23 04:06:01 +04:00
|
|
|
ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C,
|
2009-01-09 03:49:46 +03:00
|
|
|
DeclContext *DC,
|
2008-04-23 04:06:01 +04:00
|
|
|
SourceLocation atLoc,
|
|
|
|
SourceLocation L,
|
|
|
|
ObjCPropertyDecl *property,
|
2008-08-26 08:47:31 +04:00
|
|
|
Kind PK,
|
2008-04-23 04:06:01 +04:00
|
|
|
ObjCIvarDecl *ivar) {
|
2009-01-28 00:25:57 +03:00
|
|
|
return new (C) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar);
|
2008-04-23 04:06:01 +04:00
|
|
|
}
|
2008-03-17 04:19:02 +03:00
|
|
|
|
2008-04-04 10:12:32 +04:00
|
|
|
|