2006-11-05 10:08:13 +08:00
|
|
|
//===--- ParseObjc.cpp - Objective C Parsing ------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Steve Naroff and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Objective-C portions of the Parser interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Parse/Parser.h"
|
2007-08-23 02:35:33 +08:00
|
|
|
#include "clang/Parse/DeclSpec.h"
|
2006-11-05 10:08:13 +08:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
|
|
|
|
/// ParseExternalDeclaration:
|
|
|
|
/// external-declaration: [C99 6.9]
|
|
|
|
/// [OBJC] objc-class-definition
|
|
|
|
/// [OBJC] objc-class-declaration [TODO]
|
|
|
|
/// [OBJC] objc-alias-declaration [TODO]
|
|
|
|
/// [OBJC] objc-protocol-definition [TODO]
|
|
|
|
/// [OBJC] objc-method-definition [TODO]
|
|
|
|
/// [OBJC] '@' 'end' [TODO]
|
2007-08-21 05:31:48 +08:00
|
|
|
Parser::DeclTy *Parser::ParseObjCAtDirectives() {
|
2006-11-05 10:08:13 +08:00
|
|
|
SourceLocation AtLoc = ConsumeToken(); // the "@"
|
|
|
|
|
2007-08-24 02:16:40 +08:00
|
|
|
switch (Tok.getObjCKeywordID()) {
|
2006-11-05 10:08:13 +08:00
|
|
|
case tok::objc_class:
|
2006-11-08 14:10:32 +08:00
|
|
|
return ParseObjCAtClassDeclaration(AtLoc);
|
2006-11-05 10:08:13 +08:00
|
|
|
case tok::objc_interface:
|
2007-08-21 05:31:48 +08:00
|
|
|
return ParseObjCAtInterfaceDeclaration(AtLoc);
|
2006-11-05 10:08:13 +08:00
|
|
|
case tok::objc_protocol:
|
2007-08-23 06:17:26 +08:00
|
|
|
return ParseObjCAtProtocolDeclaration(AtLoc);
|
2006-11-05 10:08:13 +08:00
|
|
|
case tok::objc_implementation:
|
2006-11-08 14:10:32 +08:00
|
|
|
return ParseObjCAtImplementationDeclaration();
|
2006-11-05 10:08:13 +08:00
|
|
|
case tok::objc_end:
|
2006-11-08 14:10:32 +08:00
|
|
|
return ParseObjCAtEndDeclaration();
|
2006-11-05 10:08:13 +08:00
|
|
|
case tok::objc_compatibility_alias:
|
2006-11-08 14:10:32 +08:00
|
|
|
return ParseObjCAtAliasDeclaration();
|
2006-11-05 10:08:13 +08:00
|
|
|
default:
|
|
|
|
Diag(AtLoc, diag::err_unexpected_at);
|
|
|
|
SkipUntil(tok::semi);
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///
|
|
|
|
/// objc-class-declaration:
|
|
|
|
/// '@' 'class' identifier-list ';'
|
|
|
|
///
|
2007-08-21 05:31:48 +08:00
|
|
|
Parser::DeclTy *Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
|
2006-11-05 10:08:13 +08:00
|
|
|
ConsumeToken(); // the identifier "class"
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::SmallVector<IdentifierInfo *, 8> ClassNames;
|
2006-11-05 10:08:13 +08:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (Tok.getKind() != tok::identifier) {
|
2006-11-10 13:19:25 +08:00
|
|
|
Diag(Tok, diag::err_expected_ident);
|
2006-11-05 10:08:13 +08:00
|
|
|
SkipUntil(tok::semi);
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
|
|
|
ClassNames.push_back(Tok.getIdentifierInfo());
|
|
|
|
ConsumeToken();
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::comma)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ConsumeToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Consume the ';'.
|
|
|
|
if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@class"))
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
2006-11-05 10:08:13 +08:00
|
|
|
|
2007-08-21 05:31:48 +08:00
|
|
|
return Actions.ParsedObjcClassDeclaration(CurScope,
|
|
|
|
&ClassNames[0], ClassNames.size());
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
|
|
|
|
2007-08-21 05:31:48 +08:00
|
|
|
///
|
|
|
|
/// objc-interface:
|
|
|
|
/// objc-class-interface-attributes[opt] objc-class-interface
|
|
|
|
/// objc-category-interface
|
|
|
|
///
|
|
|
|
/// objc-class-interface:
|
|
|
|
/// '@' 'interface' identifier objc-superclass[opt]
|
|
|
|
/// objc-protocol-refs[opt]
|
|
|
|
/// objc-class-instance-variables[opt]
|
|
|
|
/// objc-interface-decl-list
|
|
|
|
/// @end
|
|
|
|
///
|
|
|
|
/// objc-category-interface:
|
|
|
|
/// '@' 'interface' identifier '(' identifier[opt] ')'
|
|
|
|
/// objc-protocol-refs[opt]
|
|
|
|
/// objc-interface-decl-list
|
|
|
|
/// @end
|
|
|
|
///
|
|
|
|
/// objc-superclass:
|
|
|
|
/// ':' identifier
|
|
|
|
///
|
|
|
|
/// objc-class-interface-attributes:
|
|
|
|
/// __attribute__((visibility("default")))
|
|
|
|
/// __attribute__((visibility("hidden")))
|
|
|
|
/// __attribute__((deprecated))
|
|
|
|
/// __attribute__((unavailable))
|
|
|
|
/// __attribute__((objc_exception)) - used by NSException on 64-bit
|
|
|
|
///
|
|
|
|
Parser::DeclTy *Parser::ParseObjCAtInterfaceDeclaration(
|
|
|
|
SourceLocation atLoc, AttributeList *attrList) {
|
2007-08-24 02:16:40 +08:00
|
|
|
assert(Tok.isObjCAtKeyword(tok::objc_interface) &&
|
2007-08-21 05:31:48 +08:00
|
|
|
"ParseObjCAtInterfaceDeclaration(): Expected @interface");
|
|
|
|
ConsumeToken(); // the "interface" identifier
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::identifier) {
|
|
|
|
Diag(Tok, diag::err_expected_ident); // missing class or category name.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// We have a class or category name - consume it.
|
2007-08-23 06:17:26 +08:00
|
|
|
IdentifierInfo *nameId = Tok.getIdentifierInfo();
|
2007-08-21 05:31:48 +08:00
|
|
|
SourceLocation nameLoc = ConsumeToken();
|
|
|
|
|
2007-08-24 03:56:30 +08:00
|
|
|
if (Tok.getKind() == tok::l_paren) { // we have a category.
|
2007-08-21 05:31:48 +08:00
|
|
|
SourceLocation lparenLoc = ConsumeParen();
|
|
|
|
SourceLocation categoryLoc, rparenLoc;
|
|
|
|
IdentifierInfo *categoryId = 0;
|
|
|
|
|
2007-08-24 03:56:30 +08:00
|
|
|
// For ObjC2, the category name is optional (not an error).
|
2007-08-21 05:31:48 +08:00
|
|
|
if (Tok.getKind() == tok::identifier) {
|
|
|
|
categoryId = Tok.getIdentifierInfo();
|
|
|
|
categoryLoc = ConsumeToken();
|
2007-08-24 03:56:30 +08:00
|
|
|
} else if (!getLang().ObjC2) {
|
|
|
|
Diag(Tok, diag::err_expected_ident); // missing category name.
|
|
|
|
return 0;
|
2007-08-21 05:31:48 +08:00
|
|
|
}
|
|
|
|
if (Tok.getKind() != tok::r_paren) {
|
|
|
|
Diag(Tok, diag::err_expected_rparen);
|
|
|
|
SkipUntil(tok::r_paren, false); // don't stop at ';'
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rparenLoc = ConsumeParen();
|
|
|
|
// Next, we need to check for any protocol references.
|
|
|
|
if (Tok.getKind() == tok::less) {
|
|
|
|
if (ParseObjCProtocolReferences())
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (attrList) // categories don't support attributes.
|
|
|
|
Diag(Tok, diag::err_objc_no_attributes_on_category);
|
|
|
|
|
2007-08-23 00:35:03 +08:00
|
|
|
ParseObjCInterfaceDeclList(0/*FIXME*/);
|
2007-08-21 05:31:48 +08:00
|
|
|
|
2007-08-23 00:35:03 +08:00
|
|
|
// The @ sign was already consumed by ParseObjCInterfaceDeclList().
|
2007-08-24 02:16:40 +08:00
|
|
|
if (Tok.isObjCAtKeyword(tok::objc_end)) {
|
2007-08-23 00:35:03 +08:00
|
|
|
ConsumeToken(); // the "end" identifier
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2007-08-23 00:35:03 +08:00
|
|
|
Diag(Tok, diag::err_objc_missing_end);
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Parse a class interface.
|
|
|
|
IdentifierInfo *superClassId = 0;
|
|
|
|
SourceLocation superClassLoc;
|
2007-08-23 06:17:26 +08:00
|
|
|
|
|
|
|
// FIXME: temporary hack to grok class names (until we have sema support).
|
|
|
|
llvm::SmallVector<IdentifierInfo *, 1> ClassName;
|
|
|
|
ClassName.push_back(nameId);
|
|
|
|
Actions.ParsedObjcClassDeclaration(CurScope, &ClassName[0], 1);
|
2007-08-21 05:31:48 +08:00
|
|
|
|
|
|
|
if (Tok.getKind() == tok::colon) { // a super class is specified.
|
|
|
|
ConsumeToken();
|
|
|
|
if (Tok.getKind() != tok::identifier) {
|
|
|
|
Diag(Tok, diag::err_expected_ident); // missing super class name.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
superClassId = Tok.getIdentifierInfo();
|
|
|
|
superClassLoc = ConsumeToken();
|
|
|
|
}
|
|
|
|
// Next, we need to check for any protocol references.
|
|
|
|
if (Tok.getKind() == tok::less) {
|
|
|
|
if (ParseObjCProtocolReferences())
|
|
|
|
return 0;
|
|
|
|
}
|
2007-08-22 05:17:12 +08:00
|
|
|
// FIXME: add Actions.StartObjCClassInterface(nameId, superClassId, ...)
|
2007-08-21 05:31:48 +08:00
|
|
|
if (Tok.getKind() == tok::l_brace)
|
2007-08-22 05:17:12 +08:00
|
|
|
ParseObjCClassInstanceVariables(0/*FIXME*/);
|
2007-08-21 05:31:48 +08:00
|
|
|
|
2007-08-23 00:35:03 +08:00
|
|
|
ParseObjCInterfaceDeclList(0/*FIXME*/);
|
|
|
|
|
|
|
|
// The @ sign was already consumed by ParseObjCInterfaceDeclList().
|
2007-08-24 02:16:40 +08:00
|
|
|
if (Tok.isObjCAtKeyword(tok::objc_end)) {
|
2007-08-23 00:35:03 +08:00
|
|
|
ConsumeToken(); // the "end" identifier
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2007-08-23 00:35:03 +08:00
|
|
|
Diag(Tok, diag::err_objc_missing_end);
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// objc-interface-decl-list:
|
|
|
|
/// empty
|
|
|
|
/// objc-interface-decl-list objc-property-decl [OBJC2]
|
2007-08-23 00:35:03 +08:00
|
|
|
/// objc-interface-decl-list objc-method-requirement [OBJC2]
|
|
|
|
/// objc-interface-decl-list objc-method-proto
|
2007-08-21 05:31:48 +08:00
|
|
|
/// objc-interface-decl-list declaration
|
|
|
|
/// objc-interface-decl-list ';'
|
|
|
|
///
|
2007-08-23 00:35:03 +08:00
|
|
|
/// objc-method-requirement: [OBJC2]
|
|
|
|
/// @required
|
|
|
|
/// @optional
|
|
|
|
///
|
|
|
|
void Parser::ParseObjCInterfaceDeclList(DeclTy *interfaceDecl) {
|
|
|
|
while (1) {
|
|
|
|
if (Tok.getKind() == tok::at) {
|
|
|
|
SourceLocation AtLoc = ConsumeToken(); // the "@"
|
2007-08-24 02:16:40 +08:00
|
|
|
tok::ObjCKeywordKind ocKind = Tok.getObjCKeywordID();
|
2007-08-23 00:35:03 +08:00
|
|
|
|
|
|
|
if (ocKind == tok::objc_end) { // terminate list
|
|
|
|
return;
|
|
|
|
} else if (ocKind == tok::objc_required) { // protocols only
|
|
|
|
ConsumeToken();
|
|
|
|
continue;
|
|
|
|
} else if (ocKind == tok::objc_optional) { // protocols only
|
|
|
|
ConsumeToken();
|
|
|
|
continue;
|
|
|
|
} else if (ocKind == tok::objc_property) {
|
2007-09-01 00:11:31 +08:00
|
|
|
ParseObjCPropertyDecl(0/*FIXME*/);
|
2007-08-23 00:35:03 +08:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
Diag(Tok, diag::err_objc_illegal_interface_qual);
|
|
|
|
ConsumeToken();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Tok.getKind() == tok::minus || Tok.getKind() == tok::plus) {
|
|
|
|
ParseObjCMethodPrototype();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (Tok.getKind() == tok::semi)
|
|
|
|
ConsumeToken();
|
|
|
|
else if (Tok.getKind() == tok::eof)
|
|
|
|
return;
|
2007-08-23 02:35:33 +08:00
|
|
|
else
|
|
|
|
// FIXME: as the name implies, this rule allows function definitions.
|
|
|
|
// We could pass a flag or check for functions during semantic analysis.
|
2007-08-23 00:35:03 +08:00
|
|
|
ParseDeclarationOrFunctionDefinition();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-01 00:11:31 +08:00
|
|
|
/// Parse property attribute declarations.
|
|
|
|
///
|
|
|
|
/// property-attr-decl: '(' property-attrlist ')'
|
|
|
|
/// property-attrlist:
|
|
|
|
/// property-attribute
|
|
|
|
/// property-attrlist ',' property-attribute
|
|
|
|
/// property-attribute:
|
|
|
|
/// getter '=' identifier
|
|
|
|
/// setter '=' identifier ':'
|
|
|
|
/// readonly
|
|
|
|
/// readwrite
|
|
|
|
/// assign
|
|
|
|
/// retain
|
|
|
|
/// copy
|
|
|
|
/// nonatomic
|
|
|
|
///
|
|
|
|
void Parser::ParseObjCPropertyAttribute (DeclTy *interfaceDecl) {
|
|
|
|
SourceLocation loc = ConsumeParen(); // consume '('
|
|
|
|
while (isObjCPropertyAttribute()) {
|
|
|
|
const IdentifierInfo *II = Tok.getIdentifierInfo();
|
|
|
|
// getter/setter require extra treatment.
|
|
|
|
if (II == ObjcPropertyAttrs[objc_getter] ||
|
|
|
|
II == ObjcPropertyAttrs[objc_setter]) {
|
|
|
|
// skip getter/setter part.
|
|
|
|
SourceLocation loc = ConsumeToken();
|
|
|
|
if (Tok.getKind() == tok::equal) {
|
|
|
|
loc = ConsumeToken();
|
|
|
|
if (Tok.getKind() == tok::identifier) {
|
|
|
|
if (II == ObjcPropertyAttrs[objc_setter]) {
|
|
|
|
loc = ConsumeToken(); // consume method name
|
|
|
|
if (Tok.getKind() != tok::colon) {
|
|
|
|
Diag(loc, diag::err_expected_colon);
|
|
|
|
SkipUntil(tok::r_paren,true,true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Diag(loc, diag::err_expected_ident);
|
|
|
|
SkipUntil(tok::r_paren,true,true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Diag(loc, diag::err_objc_expected_equal);
|
|
|
|
SkipUntil(tok::r_paren,true,true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ConsumeToken(); // consume last attribute token
|
|
|
|
if (Tok.getKind() == tok::comma) {
|
|
|
|
loc = ConsumeToken();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (Tok.getKind() == tok::r_paren)
|
|
|
|
break;
|
|
|
|
Diag(loc, diag::err_expected_rparen);
|
|
|
|
SkipUntil(tok::semi);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (Tok.getKind() == tok::r_paren)
|
|
|
|
ConsumeParen();
|
|
|
|
else {
|
|
|
|
Diag(loc, diag::err_objc_expected_property_attr);
|
|
|
|
SkipUntil(tok::r_paren); // recover from error inside attribute list
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Main routine to parse property declaration.
|
|
|
|
///
|
|
|
|
/// @property property-attr-decl[opt] property-component-decl ';'
|
|
|
|
///
|
|
|
|
void Parser::ParseObjCPropertyDecl(DeclTy *interfaceDecl) {
|
|
|
|
assert(Tok.isObjCAtKeyword(tok::objc_property) &&
|
|
|
|
"ParseObjCPropertyDecl(): Expected @property");
|
|
|
|
ConsumeToken(); // the "property" identifier
|
|
|
|
// Parse property attribute list, if any.
|
|
|
|
if (Tok.getKind() == tok::l_paren) {
|
|
|
|
// property has attribute list.
|
|
|
|
ParseObjCPropertyAttribute(0/*FIXME*/);
|
|
|
|
}
|
|
|
|
// Parse declaration portion of @property.
|
|
|
|
llvm::SmallVector<DeclTy*, 32> PropertyDecls;
|
|
|
|
ParseStructDeclaration(interfaceDecl, PropertyDecls);
|
|
|
|
if (Tok.getKind() == tok::semi)
|
|
|
|
ConsumeToken();
|
|
|
|
else {
|
|
|
|
Diag(Tok, diag::err_expected_semi_decl_list);
|
|
|
|
SkipUntil(tok::r_brace, true, true);
|
|
|
|
}
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
2007-08-21 05:31:48 +08:00
|
|
|
|
2007-08-23 00:35:03 +08:00
|
|
|
/// objc-methodproto:
|
2007-08-23 02:35:33 +08:00
|
|
|
/// objc-instance-method objc-method-decl objc-method-attributes[opt] ';'
|
|
|
|
/// objc-class-method objc-method-decl objc-method-attributes[opt] ';'
|
2007-08-23 00:35:03 +08:00
|
|
|
///
|
|
|
|
/// objc-instance-method: '-'
|
|
|
|
/// objc-class-method: '+'
|
|
|
|
///
|
2007-08-23 02:35:33 +08:00
|
|
|
/// objc-method-attributes: [OBJC2]
|
|
|
|
/// __attribute__((deprecated))
|
|
|
|
///
|
2007-08-23 00:35:03 +08:00
|
|
|
void Parser::ParseObjCMethodPrototype() {
|
|
|
|
assert((Tok.getKind() == tok::minus || Tok.getKind() == tok::plus) &&
|
|
|
|
"expected +/-");
|
|
|
|
|
|
|
|
tok::TokenKind methodType = Tok.getKind();
|
|
|
|
SourceLocation methodLoc = ConsumeToken();
|
|
|
|
|
|
|
|
// FIXME: deal with "context sensitive" protocol qualifiers in prototypes
|
|
|
|
ParseObjCMethodDecl(methodType, methodLoc);
|
|
|
|
|
2007-08-23 02:35:33 +08:00
|
|
|
// If attributes exist after the method, parse them.
|
2007-08-24 03:56:30 +08:00
|
|
|
if (getLang().ObjC2 && Tok.getKind() == tok::kw___attribute)
|
2007-08-23 02:35:33 +08:00
|
|
|
ParseAttributes();
|
|
|
|
|
2007-08-23 00:35:03 +08:00
|
|
|
// Consume the ';'.
|
|
|
|
ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "method proto");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// objc-selector:
|
|
|
|
/// identifier
|
|
|
|
/// one of
|
|
|
|
/// enum struct union if else while do for switch case default
|
|
|
|
/// break continue return goto asm sizeof typeof __alignof
|
|
|
|
/// unsigned long const short volatile signed restrict _Complex
|
|
|
|
/// in out inout bycopy byref oneway int char float double void _Bool
|
|
|
|
///
|
|
|
|
IdentifierInfo *Parser::ParseObjCSelector() {
|
|
|
|
tok::TokenKind tKind = Tok.getKind();
|
|
|
|
IdentifierInfo *II = 0;
|
|
|
|
|
|
|
|
if (tKind == tok::identifier ||
|
|
|
|
(tKind >= tok::kw_auto && tKind <= tok::kw__Complex)) {
|
|
|
|
// FIXME: make sure the list of keywords jives with gcc. For example,
|
|
|
|
// the above test does not include in/out/inout/bycopy/byref/oneway.
|
|
|
|
II = Tok.getIdentifierInfo();
|
|
|
|
ConsumeToken();
|
|
|
|
}
|
|
|
|
return II;
|
|
|
|
}
|
|
|
|
|
2007-08-23 07:18:22 +08:00
|
|
|
/// objc-type-qualifier: one of
|
|
|
|
/// in out inout bycopy byref oneway
|
|
|
|
///
|
|
|
|
bool Parser::isObjCTypeQualifier() {
|
|
|
|
if (Tok.getKind() == tok::identifier) {
|
2007-08-30 06:54:08 +08:00
|
|
|
const IdentifierInfo *II = Tok.getIdentifierInfo();
|
|
|
|
for (unsigned i = 0; i < objc_NumQuals; ++i)
|
|
|
|
if (II == ObjcTypeQuals[i]) return true;
|
2007-08-23 07:18:22 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-09-01 00:11:31 +08:00
|
|
|
/// property-attrlist: one of
|
|
|
|
/// readonly getter setter assign retain copy nonatomic
|
|
|
|
///
|
|
|
|
bool Parser::isObjCPropertyAttribute() {
|
|
|
|
if (Tok.getKind() == tok::identifier) {
|
|
|
|
const IdentifierInfo *II = Tok.getIdentifierInfo();
|
|
|
|
for (unsigned i = 0; i < objc_NumAttrs; ++i)
|
|
|
|
if (II == ObjcPropertyAttrs[i]) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-08-23 00:35:03 +08:00
|
|
|
/// objc-type-name:
|
|
|
|
/// '(' objc-type-qualifiers[opt] type-name ')'
|
|
|
|
/// '(' objc-type-qualifiers[opt] ')'
|
|
|
|
///
|
|
|
|
/// objc-type-qualifiers:
|
|
|
|
/// objc-type-qualifier
|
|
|
|
/// objc-type-qualifiers objc-type-qualifier
|
|
|
|
///
|
|
|
|
void Parser::ParseObjCTypeName() {
|
|
|
|
assert(Tok.getKind() == tok::l_paren && "expected (");
|
|
|
|
|
|
|
|
SourceLocation LParenLoc = ConsumeParen(), RParenLoc;
|
|
|
|
|
2007-08-23 07:18:22 +08:00
|
|
|
while (isObjCTypeQualifier())
|
|
|
|
ConsumeToken();
|
|
|
|
|
2007-08-23 00:35:03 +08:00
|
|
|
if (isTypeSpecifierQualifier()) {
|
2007-08-23 06:17:26 +08:00
|
|
|
//TypeTy *Ty = ParseTypeName();
|
|
|
|
//assert(Ty && "Parser::ParseObjCTypeName(): missing type");
|
|
|
|
ParseTypeName(); // FIXME: when sema support is added.
|
2007-08-23 00:35:03 +08:00
|
|
|
}
|
|
|
|
if (Tok.getKind() != tok::r_paren) {
|
|
|
|
MatchRHSPunctuation(tok::r_paren, LParenLoc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
RParenLoc = ConsumeParen();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// objc-method-decl:
|
|
|
|
/// objc-selector
|
2007-08-23 02:35:33 +08:00
|
|
|
/// objc-keyword-selector objc-parmlist[opt]
|
2007-08-23 00:35:03 +08:00
|
|
|
/// objc-type-name objc-selector
|
2007-08-23 02:35:33 +08:00
|
|
|
/// objc-type-name objc-keyword-selector objc-parmlist[opt]
|
2007-08-23 00:35:03 +08:00
|
|
|
///
|
|
|
|
/// objc-keyword-selector:
|
2007-08-23 06:17:26 +08:00
|
|
|
/// objc-keyword-decl
|
2007-08-23 00:35:03 +08:00
|
|
|
/// objc-keyword-selector objc-keyword-decl
|
|
|
|
///
|
|
|
|
/// objc-keyword-decl:
|
2007-08-23 06:17:26 +08:00
|
|
|
/// objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier
|
|
|
|
/// objc-selector ':' objc-keyword-attributes[opt] identifier
|
|
|
|
/// ':' objc-type-name objc-keyword-attributes[opt] identifier
|
|
|
|
/// ':' objc-keyword-attributes[opt] identifier
|
2007-08-23 00:35:03 +08:00
|
|
|
///
|
2007-08-23 02:35:33 +08:00
|
|
|
/// objc-parmlist:
|
|
|
|
/// objc-parms objc-ellipsis[opt]
|
2007-08-23 00:35:03 +08:00
|
|
|
///
|
2007-08-23 02:35:33 +08:00
|
|
|
/// objc-parms:
|
|
|
|
/// objc-parms , parameter-declaration
|
2007-08-23 00:35:03 +08:00
|
|
|
///
|
2007-08-23 02:35:33 +08:00
|
|
|
/// objc-ellipsis:
|
2007-08-23 00:35:03 +08:00
|
|
|
/// , ...
|
|
|
|
///
|
2007-08-23 06:17:26 +08:00
|
|
|
/// objc-keyword-attributes: [OBJC2]
|
|
|
|
/// __attribute__((unused))
|
|
|
|
///
|
2007-08-23 00:35:03 +08:00
|
|
|
void Parser::ParseObjCMethodDecl(tok::TokenKind mType, SourceLocation mLoc) {
|
2007-08-23 02:35:33 +08:00
|
|
|
|
|
|
|
// Parse the return type.
|
2007-08-23 00:35:03 +08:00
|
|
|
if (Tok.getKind() == tok::l_paren)
|
|
|
|
ParseObjCTypeName();
|
2007-08-23 02:35:33 +08:00
|
|
|
IdentifierInfo *selIdent = ParseObjCSelector();
|
|
|
|
|
|
|
|
if (Tok.getKind() == tok::colon) {
|
|
|
|
IdentifierInfo *keywordSelector = selIdent;
|
|
|
|
while (1) {
|
|
|
|
// Each iteration parses a single keyword argument.
|
|
|
|
if (Tok.getKind() != tok::colon) {
|
|
|
|
Diag(Tok, diag::err_expected_colon);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ConsumeToken(); // Eat the ':'.
|
|
|
|
if (Tok.getKind() == tok::l_paren) // Parse the argument type.
|
|
|
|
ParseObjCTypeName();
|
2007-08-23 06:17:26 +08:00
|
|
|
|
|
|
|
// If attributes exist before the argument name, parse them.
|
2007-08-24 03:56:30 +08:00
|
|
|
if (getLang().ObjC2 && Tok.getKind() == tok::kw___attribute)
|
2007-08-23 06:17:26 +08:00
|
|
|
ParseAttributes();
|
|
|
|
|
2007-08-23 02:35:33 +08:00
|
|
|
if (Tok.getKind() != tok::identifier) {
|
|
|
|
Diag(Tok, diag::err_expected_ident); // missing argument name.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ConsumeToken(); // Eat the identifier.
|
|
|
|
// FIXME: add Actions.BuildObjCKeyword()
|
|
|
|
|
|
|
|
keywordSelector = ParseObjCSelector();
|
|
|
|
if (!keywordSelector && Tok.getKind() != tok::colon)
|
|
|
|
break;
|
|
|
|
// We have a selector or a colon, continue parsing.
|
|
|
|
}
|
|
|
|
// Parse the (optional) parameter list.
|
|
|
|
while (Tok.getKind() == tok::comma) {
|
|
|
|
ConsumeToken();
|
|
|
|
if (Tok.getKind() == tok::ellipsis) {
|
|
|
|
ConsumeToken();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ParseDeclaration(Declarator::PrototypeContext);
|
|
|
|
}
|
|
|
|
} else if (!selIdent) {
|
|
|
|
Diag(Tok, diag::err_expected_ident); // missing selector name.
|
|
|
|
}
|
|
|
|
// FIXME: add Actions.BuildMethodSignature().
|
2007-08-23 00:35:03 +08:00
|
|
|
}
|
|
|
|
|
2007-08-21 05:31:48 +08:00
|
|
|
/// objc-protocol-refs:
|
|
|
|
/// '<' identifier-list '>'
|
|
|
|
///
|
|
|
|
bool Parser::ParseObjCProtocolReferences() {
|
|
|
|
assert(Tok.getKind() == tok::less && "expected <");
|
|
|
|
|
|
|
|
ConsumeToken(); // the "<"
|
|
|
|
llvm::SmallVector<IdentifierInfo *, 8> ProtocolRefs;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (Tok.getKind() != tok::identifier) {
|
|
|
|
Diag(Tok, diag::err_expected_ident);
|
|
|
|
SkipUntil(tok::greater);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
ProtocolRefs.push_back(Tok.getIdentifierInfo());
|
|
|
|
ConsumeToken();
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::comma)
|
|
|
|
break;
|
|
|
|
ConsumeToken();
|
|
|
|
}
|
|
|
|
// Consume the '>'.
|
|
|
|
return ExpectAndConsume(tok::greater, diag::err_expected_greater);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// objc-class-instance-variables:
|
|
|
|
/// '{' objc-instance-variable-decl-list[opt] '}'
|
|
|
|
///
|
|
|
|
/// objc-instance-variable-decl-list:
|
|
|
|
/// objc-visibility-spec
|
|
|
|
/// objc-instance-variable-decl ';'
|
|
|
|
/// ';'
|
|
|
|
/// objc-instance-variable-decl-list objc-visibility-spec
|
|
|
|
/// objc-instance-variable-decl-list objc-instance-variable-decl ';'
|
|
|
|
/// objc-instance-variable-decl-list ';'
|
|
|
|
///
|
|
|
|
/// objc-visibility-spec:
|
|
|
|
/// @private
|
|
|
|
/// @protected
|
|
|
|
/// @public
|
2007-08-22 05:17:12 +08:00
|
|
|
/// @package [OBJC2]
|
2007-08-21 05:31:48 +08:00
|
|
|
///
|
|
|
|
/// objc-instance-variable-decl:
|
|
|
|
/// struct-declaration
|
|
|
|
///
|
2007-08-22 05:17:12 +08:00
|
|
|
void Parser::ParseObjCClassInstanceVariables(DeclTy *interfaceDecl) {
|
|
|
|
assert(Tok.getKind() == tok::l_brace && "expected {");
|
|
|
|
|
|
|
|
SourceLocation LBraceLoc = ConsumeBrace(); // the "{"
|
|
|
|
llvm::SmallVector<DeclTy*, 32> IvarDecls;
|
|
|
|
|
|
|
|
// While we still have something to read, read the instance variables.
|
|
|
|
while (Tok.getKind() != tok::r_brace &&
|
|
|
|
Tok.getKind() != tok::eof) {
|
|
|
|
// Each iteration of this loop reads one objc-instance-variable-decl.
|
|
|
|
|
|
|
|
// Check for extraneous top-level semicolon.
|
|
|
|
if (Tok.getKind() == tok::semi) {
|
|
|
|
Diag(Tok, diag::ext_extra_struct_semi);
|
|
|
|
ConsumeToken();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Set the default visibility to private.
|
|
|
|
tok::ObjCKeywordKind visibility = tok::objc_private;
|
|
|
|
if (Tok.getKind() == tok::at) { // parse objc-visibility-spec
|
|
|
|
ConsumeToken(); // eat the @ sign
|
2007-08-24 02:16:40 +08:00
|
|
|
switch (Tok.getObjCKeywordID()) {
|
2007-08-22 05:17:12 +08:00
|
|
|
case tok::objc_private:
|
|
|
|
case tok::objc_public:
|
|
|
|
case tok::objc_protected:
|
|
|
|
case tok::objc_package:
|
2007-08-24 02:16:40 +08:00
|
|
|
visibility = Tok.getObjCKeywordID();
|
2007-08-22 05:17:12 +08:00
|
|
|
ConsumeToken();
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
Diag(Tok, diag::err_objc_illegal_visibility_spec);
|
|
|
|
ConsumeToken();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ParseStructDeclaration(interfaceDecl, IvarDecls);
|
|
|
|
|
|
|
|
if (Tok.getKind() == tok::semi) {
|
|
|
|
ConsumeToken();
|
|
|
|
} else if (Tok.getKind() == tok::r_brace) {
|
|
|
|
Diag(Tok.getLocation(), diag::ext_expected_semi_decl_list);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
Diag(Tok, diag::err_expected_semi_decl_list);
|
|
|
|
// Skip to end of block or statement
|
|
|
|
SkipUntil(tok::r_brace, true, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MatchRHSPunctuation(tok::r_brace, LBraceLoc);
|
|
|
|
return;
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
2007-08-21 05:31:48 +08:00
|
|
|
|
|
|
|
/// objc-protocol-declaration:
|
|
|
|
/// objc-protocol-definition
|
|
|
|
/// objc-protocol-forward-reference
|
|
|
|
///
|
|
|
|
/// objc-protocol-definition:
|
|
|
|
/// @protocol identifier
|
|
|
|
/// objc-protocol-refs[opt]
|
|
|
|
/// objc-methodprotolist
|
|
|
|
/// @end
|
|
|
|
///
|
|
|
|
/// objc-protocol-forward-reference:
|
|
|
|
/// @protocol identifier-list ';'
|
|
|
|
///
|
|
|
|
/// "@protocol identifier ;" should be resolved as "@protocol
|
|
|
|
/// identifier-list ;": objc-methodprotolist may not start with a
|
|
|
|
/// semicolon in the first alternative if objc-protocol-refs are omitted.
|
|
|
|
|
2007-08-23 06:17:26 +08:00
|
|
|
Parser::DeclTy *Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc) {
|
2007-08-24 02:16:40 +08:00
|
|
|
assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
|
2007-08-23 06:17:26 +08:00
|
|
|
"ParseObjCAtProtocolDeclaration(): Expected @protocol");
|
|
|
|
ConsumeToken(); // the "protocol" identifier
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::identifier) {
|
|
|
|
Diag(Tok, diag::err_expected_ident); // missing protocol name.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Save the protocol name, then consume it.
|
|
|
|
IdentifierInfo *protocolName = Tok.getIdentifierInfo();
|
|
|
|
SourceLocation nameLoc = ConsumeToken();
|
|
|
|
|
|
|
|
if (Tok.getKind() == tok::semi) { // forward declaration.
|
|
|
|
ConsumeToken();
|
|
|
|
return 0; // FIXME: add protocolName
|
|
|
|
}
|
|
|
|
if (Tok.getKind() == tok::comma) { // list of forward declarations.
|
|
|
|
// Parse the list of forward declarations.
|
|
|
|
llvm::SmallVector<IdentifierInfo *, 8> ProtocolRefs;
|
|
|
|
ProtocolRefs.push_back(protocolName);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ConsumeToken(); // the ','
|
|
|
|
if (Tok.getKind() != tok::identifier) {
|
|
|
|
Diag(Tok, diag::err_expected_ident);
|
|
|
|
SkipUntil(tok::semi);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ProtocolRefs.push_back(Tok.getIdentifierInfo());
|
|
|
|
ConsumeToken(); // the identifier
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::comma)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Consume the ';'.
|
|
|
|
if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
|
|
|
|
return 0;
|
|
|
|
return 0; // FIXME
|
|
|
|
}
|
|
|
|
// Last, and definitely not least, parse a protocol declaration.
|
|
|
|
if (Tok.getKind() == tok::less) {
|
|
|
|
if (ParseObjCProtocolReferences())
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ParseObjCInterfaceDeclList(0/*FIXME*/);
|
|
|
|
|
|
|
|
// The @ sign was already consumed by ParseObjCInterfaceDeclList().
|
2007-08-24 02:16:40 +08:00
|
|
|
if (Tok.isObjCAtKeyword(tok::objc_end)) {
|
2007-08-23 06:17:26 +08:00
|
|
|
ConsumeToken(); // the "end" identifier
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
Diag(Tok, diag::err_objc_missing_end);
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// objc-implementation:
|
|
|
|
/// objc-class-implementation-prologue
|
|
|
|
/// objc-category-implementation-prologue
|
|
|
|
///
|
|
|
|
/// objc-class-implementation-prologue:
|
|
|
|
/// @implementation identifier objc-superclass[opt]
|
|
|
|
/// objc-class-instance-variables[opt]
|
|
|
|
///
|
|
|
|
/// objc-category-implementation-prologue:
|
|
|
|
/// @implementation identifier ( identifier )
|
|
|
|
|
|
|
|
Parser::DeclTy *Parser::ParseObjCAtImplementationDeclaration() {
|
2006-11-05 10:08:13 +08:00
|
|
|
assert(0 && "Unimp");
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
2007-08-21 05:31:48 +08:00
|
|
|
Parser::DeclTy *Parser::ParseObjCAtEndDeclaration() {
|
2006-11-05 10:08:13 +08:00
|
|
|
assert(0 && "Unimp");
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
2007-08-21 05:31:48 +08:00
|
|
|
Parser::DeclTy *Parser::ParseObjCAtAliasDeclaration() {
|
2006-11-05 10:08:13 +08:00
|
|
|
assert(0 && "Unimp");
|
2007-08-21 05:31:48 +08:00
|
|
|
return 0;
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
|
|
|
|
2007-08-23 06:17:26 +08:00
|
|
|
void Parser::ParseObjCInstanceMethodDefinition() {
|
|
|
|
assert(0 && "Parser::ParseObjCInstanceMethodDefinition():: Unimp");
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
|
|
|
|
2007-08-23 06:17:26 +08:00
|
|
|
void Parser::ParseObjCClassMethodDefinition() {
|
|
|
|
assert(0 && "Parser::ParseObjCClassMethodDefinition():: Unimp");
|
2006-11-05 10:08:13 +08:00
|
|
|
}
|
2007-08-22 01:43:55 +08:00
|
|
|
|
|
|
|
Parser::ExprResult Parser::ParseObjCExpression() {
|
|
|
|
SourceLocation AtLoc = ConsumeToken(); // the "@"
|
|
|
|
|
|
|
|
switch (Tok.getKind()) {
|
|
|
|
case tok::string_literal: // primary-expression: string-literal
|
|
|
|
case tok::wide_string_literal:
|
|
|
|
return ParseObjCStringLiteral();
|
2007-08-23 23:25:28 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
|
2007-08-22 23:14:15 +08:00
|
|
|
case tok::objc_encode:
|
|
|
|
return ParseObjCEncodeExpression();
|
2007-08-23 23:25:28 +08:00
|
|
|
case tok::objc_protocol:
|
|
|
|
return ParseObjCProtocolExpression();
|
2007-08-22 01:43:55 +08:00
|
|
|
default:
|
|
|
|
Diag(AtLoc, diag::err_unexpected_at);
|
|
|
|
SkipUntil(tok::semi);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Parser::ExprResult Parser::ParseObjCStringLiteral() {
|
|
|
|
ExprResult Res = ParseStringLiteralExpression();
|
|
|
|
|
|
|
|
if (Res.isInvalid) return Res;
|
|
|
|
|
|
|
|
return Actions.ParseObjCStringLiteral(Res.Val);
|
|
|
|
}
|
2007-08-22 23:14:15 +08:00
|
|
|
|
|
|
|
/// objc-encode-expression:
|
|
|
|
/// @encode ( type-name )
|
|
|
|
Parser::ExprResult Parser::ParseObjCEncodeExpression() {
|
2007-08-24 02:16:40 +08:00
|
|
|
assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
|
2007-08-22 23:14:15 +08:00
|
|
|
|
|
|
|
SourceLocation EncLoc = ConsumeToken();
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::l_paren) {
|
|
|
|
Diag(Tok, diag::err_expected_lparen_after, "@encode");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation LParenLoc = ConsumeParen();
|
|
|
|
|
|
|
|
TypeTy *Ty = ParseTypeName();
|
|
|
|
|
2007-08-23 23:31:37 +08:00
|
|
|
SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
|
2007-08-22 23:14:15 +08:00
|
|
|
|
|
|
|
return Actions.ParseObjCEncodeExpression(EncLoc, LParenLoc, Ty,
|
2007-08-23 23:31:37 +08:00
|
|
|
RParenLoc);
|
2007-08-22 23:14:15 +08:00
|
|
|
}
|
2007-08-23 23:25:28 +08:00
|
|
|
|
|
|
|
/// objc-protocol-expression
|
|
|
|
/// @protocol ( protocol-name )
|
|
|
|
|
|
|
|
Parser::ExprResult Parser::ParseObjCProtocolExpression()
|
|
|
|
{
|
|
|
|
SourceLocation ProtoLoc = ConsumeToken();
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::l_paren) {
|
|
|
|
Diag(Tok, diag::err_expected_lparen_after, "@protocol");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation LParenLoc = ConsumeParen();
|
|
|
|
|
|
|
|
if (Tok.getKind() != tok::identifier) {
|
|
|
|
Diag(Tok, diag::err_expected_ident);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Do something with the protocol name
|
|
|
|
ConsumeToken();
|
|
|
|
|
2007-08-23 23:31:37 +08:00
|
|
|
SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
|
2007-08-23 23:25:28 +08:00
|
|
|
|
|
|
|
// FIXME
|
|
|
|
return 0;
|
|
|
|
}
|