blob: 8d7d67ed8d4f0f96b2815022d272f39f95a3107c [file] [log] [blame]
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001//===--- ParseObjC.cpp - Objective C Parsing ------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Objective-C portions of the Parser interface.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner500d3292009-01-29 05:15:15 +000014#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000015#include "clang/Parse/Parser.h"
16#include "clang/Sema/DeclSpec.h"
John McCallf312b1e2010-08-26 23:41:50 +000017#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall19510852010-08-20 18:27:03 +000018#include "clang/Sema/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "llvm/ADT/SmallVector.h"
20using namespace clang;
21
22
Chris Lattner891dca62008-12-08 21:53:24 +000023/// ParseObjCAtDirectives - Handle parts of the external-declaration production:
Reid Spencer5f016e22007-07-11 17:01:13 +000024/// external-declaration: [C99 6.9]
25/// [OBJC] objc-class-definition
Steve Naroff91fa0b72007-10-29 21:39:29 +000026/// [OBJC] objc-class-declaration
27/// [OBJC] objc-alias-declaration
28/// [OBJC] objc-protocol-definition
29/// [OBJC] objc-method-definition
30/// [OBJC] '@' 'end'
John McCalld226f652010-08-21 09:40:31 +000031Decl *Parser::ParseObjCAtDirectives() {
Reid Spencer5f016e22007-07-11 17:01:13 +000032 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +000033
Douglas Gregorc464ae82009-12-07 09:27:33 +000034 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +000035 Actions.CodeCompleteObjCAtDirective(getCurScope(), ObjCImpDecl, false);
Douglas Gregordc845342010-05-25 05:58:43 +000036 ConsumeCodeCompletionToken();
Douglas Gregorc464ae82009-12-07 09:27:33 +000037 }
38
Steve Naroff861cf3e2007-08-23 18:16:40 +000039 switch (Tok.getObjCKeywordID()) {
Chris Lattner5ffb14b2008-08-23 02:02:23 +000040 case tok::objc_class:
41 return ParseObjCAtClassDeclaration(AtLoc);
42 case tok::objc_interface:
43 return ParseObjCAtInterfaceDeclaration(AtLoc);
44 case tok::objc_protocol:
45 return ParseObjCAtProtocolDeclaration(AtLoc);
46 case tok::objc_implementation:
47 return ParseObjCAtImplementationDeclaration(AtLoc);
48 case tok::objc_end:
49 return ParseObjCAtEndDeclaration(AtLoc);
50 case tok::objc_compatibility_alias:
51 return ParseObjCAtAliasDeclaration(AtLoc);
52 case tok::objc_synthesize:
53 return ParseObjCPropertySynthesize(AtLoc);
54 case tok::objc_dynamic:
55 return ParseObjCPropertyDynamic(AtLoc);
56 default:
57 Diag(AtLoc, diag::err_unexpected_at);
58 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +000059 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000060 }
61}
62
63///
Mike Stump1eb44332009-09-09 15:08:12 +000064/// objc-class-declaration:
Reid Spencer5f016e22007-07-11 17:01:13 +000065/// '@' 'class' identifier-list ';'
Mike Stump1eb44332009-09-09 15:08:12 +000066///
John McCalld226f652010-08-21 09:40:31 +000067Decl *Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
Reid Spencer5f016e22007-07-11 17:01:13 +000068 ConsumeToken(); // the identifier "class"
69 llvm::SmallVector<IdentifierInfo *, 8> ClassNames;
Ted Kremenekc09cba62009-11-17 23:12:20 +000070 llvm::SmallVector<SourceLocation, 8> ClassLocs;
71
Mike Stump1eb44332009-09-09 15:08:12 +000072
Reid Spencer5f016e22007-07-11 17:01:13 +000073 while (1) {
Chris Lattnerdf195262007-10-09 17:51:17 +000074 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000075 Diag(Tok, diag::err_expected_ident);
76 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +000077 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000078 }
Reid Spencer5f016e22007-07-11 17:01:13 +000079 ClassNames.push_back(Tok.getIdentifierInfo());
Ted Kremenekc09cba62009-11-17 23:12:20 +000080 ClassLocs.push_back(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +000081 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +000082
Chris Lattnerdf195262007-10-09 17:51:17 +000083 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +000084 break;
Mike Stump1eb44332009-09-09 15:08:12 +000085
Reid Spencer5f016e22007-07-11 17:01:13 +000086 ConsumeToken();
87 }
Mike Stump1eb44332009-09-09 15:08:12 +000088
Reid Spencer5f016e22007-07-11 17:01:13 +000089 // Consume the ';'.
90 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@class"))
John McCalld226f652010-08-21 09:40:31 +000091 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +000092
Ted Kremenekc09cba62009-11-17 23:12:20 +000093 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(),
94 ClassLocs.data(),
95 ClassNames.size());
Reid Spencer5f016e22007-07-11 17:01:13 +000096}
97
Steve Naroffdac269b2007-08-20 21:31:48 +000098///
99/// objc-interface:
100/// objc-class-interface-attributes[opt] objc-class-interface
101/// objc-category-interface
102///
103/// objc-class-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000104/// '@' 'interface' identifier objc-superclass[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000105/// objc-protocol-refs[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000106/// objc-class-instance-variables[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000107/// objc-interface-decl-list
108/// @end
109///
110/// objc-category-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000111/// '@' 'interface' identifier '(' identifier[opt] ')'
Steve Naroffdac269b2007-08-20 21:31:48 +0000112/// objc-protocol-refs[opt]
113/// objc-interface-decl-list
114/// @end
115///
116/// objc-superclass:
117/// ':' identifier
118///
119/// objc-class-interface-attributes:
120/// __attribute__((visibility("default")))
121/// __attribute__((visibility("hidden")))
122/// __attribute__((deprecated))
123/// __attribute__((unavailable))
124/// __attribute__((objc_exception)) - used by NSException on 64-bit
125///
John McCalld226f652010-08-21 09:40:31 +0000126Decl *Parser::ParseObjCAtInterfaceDeclaration(
Steve Naroffdac269b2007-08-20 21:31:48 +0000127 SourceLocation atLoc, AttributeList *attrList) {
Steve Naroff861cf3e2007-08-23 18:16:40 +0000128 assert(Tok.isObjCAtKeyword(tok::objc_interface) &&
Steve Naroffdac269b2007-08-20 21:31:48 +0000129 "ParseObjCAtInterfaceDeclaration(): Expected @interface");
130 ConsumeToken(); // the "interface" identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000132 // Code completion after '@interface'.
133 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000134 Actions.CodeCompleteObjCInterfaceDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +0000135 ConsumeCodeCompletionToken();
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000136 }
137
Chris Lattnerdf195262007-10-09 17:51:17 +0000138 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000139 Diag(Tok, diag::err_expected_ident); // missing class or category name.
John McCalld226f652010-08-21 09:40:31 +0000140 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000141 }
Fariborz Jahanian63e963c2009-11-16 18:57:01 +0000142
Steve Naroffdac269b2007-08-20 21:31:48 +0000143 // We have a class or category name - consume it.
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000144 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Steve Naroffdac269b2007-08-20 21:31:48 +0000145 SourceLocation nameLoc = ConsumeToken();
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000146 if (Tok.is(tok::l_paren) &&
147 !isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { // we have a category.
Steve Naroffdac269b2007-08-20 21:31:48 +0000148 SourceLocation lparenLoc = ConsumeParen();
149 SourceLocation categoryLoc, rparenLoc;
150 IdentifierInfo *categoryId = 0;
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000151 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000152 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
Douglas Gregordc845342010-05-25 05:58:43 +0000153 ConsumeCodeCompletionToken();
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000154 }
155
Steve Naroff527fe232007-08-23 19:56:30 +0000156 // For ObjC2, the category name is optional (not an error).
Chris Lattnerdf195262007-10-09 17:51:17 +0000157 if (Tok.is(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000158 categoryId = Tok.getIdentifierInfo();
159 categoryLoc = ConsumeToken();
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000160 }
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000161 else if (!getLang().ObjC2) {
Steve Naroff527fe232007-08-23 19:56:30 +0000162 Diag(Tok, diag::err_expected_ident); // missing category name.
John McCalld226f652010-08-21 09:40:31 +0000163 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000164 }
Chris Lattnerdf195262007-10-09 17:51:17 +0000165 if (Tok.isNot(tok::r_paren)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000166 Diag(Tok, diag::err_expected_rparen);
167 SkipUntil(tok::r_paren, false); // don't stop at ';'
John McCalld226f652010-08-21 09:40:31 +0000168 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000169 }
170 rparenLoc = ConsumeParen();
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000171 // Next, we need to check for any protocol references.
172 SourceLocation LAngleLoc, EndProtoLoc;
John McCalld226f652010-08-21 09:40:31 +0000173 llvm::SmallVector<Decl *, 8> ProtocolRefs;
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000174 llvm::SmallVector<SourceLocation, 8> ProtocolLocs;
175 if (Tok.is(tok::less) &&
176 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000177 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000178 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000180 if (attrList) // categories don't support attributes.
181 Diag(Tok, diag::err_objc_no_attributes_on_category);
Mike Stump1eb44332009-09-09 15:08:12 +0000182
John McCalld226f652010-08-21 09:40:31 +0000183 Decl *CategoryType =
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000184 Actions.ActOnStartCategoryInterface(atLoc,
185 nameId, nameLoc,
186 categoryId, categoryLoc,
187 ProtocolRefs.data(),
188 ProtocolRefs.size(),
189 ProtocolLocs.data(),
190 EndProtoLoc);
191 if (Tok.is(tok::l_brace))
Fariborz Jahanian83c481a2010-02-22 23:04:20 +0000192 ParseObjCClassInstanceVariables(CategoryType, tok::objc_private,
193 atLoc);
194
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000195 ParseObjCInterfaceDeclList(CategoryType, tok::objc_not_keyword);
196 return CategoryType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000197 }
198 // Parse a class interface.
199 IdentifierInfo *superClassId = 0;
200 SourceLocation superClassLoc;
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000201
Chris Lattnerdf195262007-10-09 17:51:17 +0000202 if (Tok.is(tok::colon)) { // a super class is specified.
Steve Naroffdac269b2007-08-20 21:31:48 +0000203 ConsumeToken();
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000204
205 // Code completion of superclass names.
206 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000207 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
Douglas Gregordc845342010-05-25 05:58:43 +0000208 ConsumeCodeCompletionToken();
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000209 }
210
Chris Lattnerdf195262007-10-09 17:51:17 +0000211 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000212 Diag(Tok, diag::err_expected_ident); // missing super class name.
John McCalld226f652010-08-21 09:40:31 +0000213 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000214 }
215 superClassId = Tok.getIdentifierInfo();
216 superClassLoc = ConsumeToken();
217 }
218 // Next, we need to check for any protocol references.
John McCalld226f652010-08-21 09:40:31 +0000219 llvm::SmallVector<Decl *, 8> ProtocolRefs;
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000220 llvm::SmallVector<SourceLocation, 8> ProtocolLocs;
221 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner06036d32008-07-26 04:13:19 +0000222 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000223 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
224 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000225 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000226
John McCalld226f652010-08-21 09:40:31 +0000227 Decl *ClsType =
Mike Stump1eb44332009-09-09 15:08:12 +0000228 Actions.ActOnStartClassInterface(atLoc, nameId, nameLoc,
Chris Lattner06036d32008-07-26 04:13:19 +0000229 superClassId, superClassLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +0000230 ProtocolRefs.data(), ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +0000231 ProtocolLocs.data(),
Chris Lattner06036d32008-07-26 04:13:19 +0000232 EndProtoLoc, attrList);
Mike Stump1eb44332009-09-09 15:08:12 +0000233
Chris Lattnerdf195262007-10-09 17:51:17 +0000234 if (Tok.is(tok::l_brace))
Fariborz Jahanian83c481a2010-02-22 23:04:20 +0000235 ParseObjCClassInstanceVariables(ClsType, tok::objc_protected, atLoc);
Steve Naroffdac269b2007-08-20 21:31:48 +0000236
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000237 ParseObjCInterfaceDeclList(ClsType, tok::objc_interface);
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000238 return ClsType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000239}
240
John McCalld0014542009-12-03 22:31:13 +0000241/// The Objective-C property callback. This should be defined where
242/// it's used, but instead it's been lifted to here to support VS2005.
243struct Parser::ObjCPropertyCallback : FieldCallback {
244 Parser &P;
John McCalld226f652010-08-21 09:40:31 +0000245 Decl *IDecl;
246 llvm::SmallVectorImpl<Decl *> &Props;
John McCalld0014542009-12-03 22:31:13 +0000247 ObjCDeclSpec &OCDS;
248 SourceLocation AtLoc;
249 tok::ObjCKeywordKind MethodImplKind;
250
John McCalld226f652010-08-21 09:40:31 +0000251 ObjCPropertyCallback(Parser &P, Decl *IDecl,
252 llvm::SmallVectorImpl<Decl *> &Props,
John McCalld0014542009-12-03 22:31:13 +0000253 ObjCDeclSpec &OCDS, SourceLocation AtLoc,
254 tok::ObjCKeywordKind MethodImplKind) :
255 P(P), IDecl(IDecl), Props(Props), OCDS(OCDS), AtLoc(AtLoc),
256 MethodImplKind(MethodImplKind) {
257 }
258
John McCalld226f652010-08-21 09:40:31 +0000259 Decl *invoke(FieldDeclarator &FD) {
John McCalld0014542009-12-03 22:31:13 +0000260 if (FD.D.getIdentifier() == 0) {
261 P.Diag(AtLoc, diag::err_objc_property_requires_field_name)
262 << FD.D.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +0000263 return 0;
John McCalld0014542009-12-03 22:31:13 +0000264 }
265 if (FD.BitfieldSize) {
266 P.Diag(AtLoc, diag::err_objc_property_bitfield)
267 << FD.D.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +0000268 return 0;
John McCalld0014542009-12-03 22:31:13 +0000269 }
270
271 // Install the property declarator into interfaceDecl.
272 IdentifierInfo *SelName =
273 OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier();
274
275 Selector GetterSel =
276 P.PP.getSelectorTable().getNullarySelector(SelName);
277 IdentifierInfo *SetterName = OCDS.getSetterName();
278 Selector SetterSel;
279 if (SetterName)
280 SetterSel = P.PP.getSelectorTable().getSelector(1, &SetterName);
281 else
282 SetterSel = SelectorTable::constructSetterName(P.PP.getIdentifierTable(),
283 P.PP.getSelectorTable(),
284 FD.D.getIdentifier());
285 bool isOverridingProperty = false;
John McCalld226f652010-08-21 09:40:31 +0000286 Decl *Property =
Douglas Gregor23c94db2010-07-02 17:43:08 +0000287 P.Actions.ActOnProperty(P.getCurScope(), AtLoc, FD, OCDS,
John McCalld0014542009-12-03 22:31:13 +0000288 GetterSel, SetterSel, IDecl,
289 &isOverridingProperty,
290 MethodImplKind);
291 if (!isOverridingProperty)
292 Props.push_back(Property);
293
294 return Property;
295 }
296};
297
Steve Naroffdac269b2007-08-20 21:31:48 +0000298/// objc-interface-decl-list:
299/// empty
Steve Naroffdac269b2007-08-20 21:31:48 +0000300/// objc-interface-decl-list objc-property-decl [OBJC2]
Steve Naroff294494e2007-08-22 16:35:03 +0000301/// objc-interface-decl-list objc-method-requirement [OBJC2]
Steve Naroff3536b442007-09-06 21:24:23 +0000302/// objc-interface-decl-list objc-method-proto ';'
Steve Naroffdac269b2007-08-20 21:31:48 +0000303/// objc-interface-decl-list declaration
304/// objc-interface-decl-list ';'
305///
Steve Naroff294494e2007-08-22 16:35:03 +0000306/// objc-method-requirement: [OBJC2]
307/// @required
308/// @optional
309///
John McCalld226f652010-08-21 09:40:31 +0000310void Parser::ParseObjCInterfaceDeclList(Decl *interfaceDecl,
Chris Lattnercb53b362007-12-27 19:57:00 +0000311 tok::ObjCKeywordKind contextKey) {
John McCalld226f652010-08-21 09:40:31 +0000312 llvm::SmallVector<Decl *, 32> allMethods;
313 llvm::SmallVector<Decl *, 16> allProperties;
Chris Lattner682bf922009-03-29 16:50:03 +0000314 llvm::SmallVector<DeclGroupPtrTy, 8> allTUVariables;
Fariborz Jahanian00933592007-09-18 00:25:23 +0000315 tok::ObjCKeywordKind MethodImplKind = tok::objc_not_keyword;
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Ted Kremenek782f2f52010-01-07 01:20:12 +0000317 SourceRange AtEnd;
Chris Lattnerbc662af2008-10-20 06:10:06 +0000318
Steve Naroff294494e2007-08-22 16:35:03 +0000319 while (1) {
Chris Lattnere82a10f2008-10-20 05:46:22 +0000320 // If this is a method prototype, parse it.
Chris Lattnerdf195262007-10-09 17:51:17 +0000321 if (Tok.is(tok::minus) || Tok.is(tok::plus)) {
John McCalld226f652010-08-21 09:40:31 +0000322 Decl *methodPrototype =
Chris Lattnerdf195262007-10-09 17:51:17 +0000323 ParseObjCMethodPrototype(interfaceDecl, MethodImplKind);
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000324 allMethods.push_back(methodPrototype);
Steve Naroff3536b442007-09-06 21:24:23 +0000325 // Consume the ';' here, since ParseObjCMethodPrototype() is re-used for
326 // method definitions.
Chris Lattnerb6d74a12009-02-15 22:24:30 +0000327 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_method_proto,
328 "", tok::semi);
Steve Naroff294494e2007-08-22 16:35:03 +0000329 continue;
330 }
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000331 if (Tok.is(tok::l_paren)) {
332 Diag(Tok, diag::err_expected_minus_or_plus);
John McCalld226f652010-08-21 09:40:31 +0000333 ParseObjCMethodDecl(Tok.getLocation(),
334 tok::minus,
335 interfaceDecl,
336 MethodImplKind);
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000337 continue;
338 }
Chris Lattnere82a10f2008-10-20 05:46:22 +0000339 // Ignore excess semicolons.
340 if (Tok.is(tok::semi)) {
Steve Naroff294494e2007-08-22 16:35:03 +0000341 ConsumeToken();
Chris Lattnere82a10f2008-10-20 05:46:22 +0000342 continue;
343 }
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Chris Lattnerbc662af2008-10-20 06:10:06 +0000345 // If we got to the end of the file, exit the loop.
Chris Lattnere82a10f2008-10-20 05:46:22 +0000346 if (Tok.is(tok::eof))
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000347 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000349 // Code completion within an Objective-C interface.
350 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000351 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +0000352 ObjCImpDecl? Sema::PCC_ObjCImplementation
353 : Sema::PCC_ObjCInterface);
Douglas Gregordc845342010-05-25 05:58:43 +0000354 ConsumeCodeCompletionToken();
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000355 }
356
Chris Lattnere82a10f2008-10-20 05:46:22 +0000357 // If we don't have an @ directive, parse it as a function definition.
358 if (Tok.isNot(tok::at)) {
Chris Lattner1fd80112009-01-09 04:34:13 +0000359 // The code below does not consume '}'s because it is afraid of eating the
360 // end of a namespace. Because of the way this code is structured, an
361 // erroneous r_brace would cause an infinite loop if not handled here.
362 if (Tok.is(tok::r_brace))
363 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000364
Steve Naroff4985ace2007-08-22 18:35:33 +0000365 // FIXME: as the name implies, this rule allows function definitions.
366 // We could pass a flag or check for functions during semantic analysis.
Sean Huntbbd37c62009-11-21 08:43:09 +0000367 allTUVariables.push_back(ParseDeclarationOrFunctionDefinition(0));
Chris Lattnere82a10f2008-10-20 05:46:22 +0000368 continue;
369 }
Mike Stump1eb44332009-09-09 15:08:12 +0000370
Chris Lattnere82a10f2008-10-20 05:46:22 +0000371 // Otherwise, we have an @ directive, eat the @.
372 SourceLocation AtLoc = ConsumeToken(); // the "@"
Douglas Gregorc464ae82009-12-07 09:27:33 +0000373 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000374 Actions.CodeCompleteObjCAtDirective(getCurScope(), ObjCImpDecl, true);
Douglas Gregordc845342010-05-25 05:58:43 +0000375 ConsumeCodeCompletionToken();
Douglas Gregorc464ae82009-12-07 09:27:33 +0000376 break;
377 }
378
Chris Lattnera2449b22008-10-20 05:57:40 +0000379 tok::ObjCKeywordKind DirectiveKind = Tok.getObjCKeywordID();
Mike Stump1eb44332009-09-09 15:08:12 +0000380
Chris Lattnera2449b22008-10-20 05:57:40 +0000381 if (DirectiveKind == tok::objc_end) { // @end -> terminate list
Ted Kremenek782f2f52010-01-07 01:20:12 +0000382 AtEnd.setBegin(AtLoc);
383 AtEnd.setEnd(Tok.getLocation());
Chris Lattnere82a10f2008-10-20 05:46:22 +0000384 break;
Douglas Gregorc3d43b72010-03-16 06:04:47 +0000385 } else if (DirectiveKind == tok::objc_not_keyword) {
386 Diag(Tok, diag::err_objc_unknown_at);
387 SkipUntil(tok::semi);
388 continue;
Chris Lattnerbc662af2008-10-20 06:10:06 +0000389 }
Mike Stump1eb44332009-09-09 15:08:12 +0000390
Chris Lattnerbc662af2008-10-20 06:10:06 +0000391 // Eat the identifier.
392 ConsumeToken();
393
Chris Lattnera2449b22008-10-20 05:57:40 +0000394 switch (DirectiveKind) {
395 default:
Chris Lattnerbc662af2008-10-20 06:10:06 +0000396 // FIXME: If someone forgets an @end on a protocol, this loop will
397 // continue to eat up tons of stuff and spew lots of nonsense errors. It
398 // would probably be better to bail out if we saw an @class or @interface
399 // or something like that.
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000400 Diag(AtLoc, diag::err_objc_illegal_interface_qual);
Chris Lattnerbc662af2008-10-20 06:10:06 +0000401 // Skip until we see an '@' or '}' or ';'.
Chris Lattnera2449b22008-10-20 05:57:40 +0000402 SkipUntil(tok::r_brace, tok::at);
403 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Chris Lattnera2449b22008-10-20 05:57:40 +0000405 case tok::objc_required:
Chris Lattnera2449b22008-10-20 05:57:40 +0000406 case tok::objc_optional:
Chris Lattnera2449b22008-10-20 05:57:40 +0000407 // This is only valid on protocols.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000408 // FIXME: Should this check for ObjC2 being enabled?
Chris Lattnere82a10f2008-10-20 05:46:22 +0000409 if (contextKey != tok::objc_protocol)
Chris Lattnerbc662af2008-10-20 06:10:06 +0000410 Diag(AtLoc, diag::err_objc_directive_only_in_protocol);
Chris Lattnera2449b22008-10-20 05:57:40 +0000411 else
Chris Lattnerbc662af2008-10-20 06:10:06 +0000412 MethodImplKind = DirectiveKind;
Chris Lattnera2449b22008-10-20 05:57:40 +0000413 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000414
Chris Lattnera2449b22008-10-20 05:57:40 +0000415 case tok::objc_property:
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000416 if (!getLang().ObjC2)
417 Diag(AtLoc, diag::err_objc_propertoes_require_objc2);
418
Chris Lattnere82a10f2008-10-20 05:46:22 +0000419 ObjCDeclSpec OCDS;
Mike Stump1eb44332009-09-09 15:08:12 +0000420 // Parse property attribute list, if any.
Chris Lattner8ca329c2008-10-20 07:24:39 +0000421 if (Tok.is(tok::l_paren))
Douglas Gregor4ad96852009-11-19 07:41:15 +0000422 ParseObjCPropertyAttribute(OCDS, interfaceDecl,
423 allMethods.data(), allMethods.size());
Mike Stump1eb44332009-09-09 15:08:12 +0000424
John McCalld0014542009-12-03 22:31:13 +0000425 ObjCPropertyCallback Callback(*this, interfaceDecl, allProperties,
426 OCDS, AtLoc, MethodImplKind);
John McCallbdd563e2009-11-03 02:38:08 +0000427
Chris Lattnere82a10f2008-10-20 05:46:22 +0000428 // Parse all the comma separated declarators.
429 DeclSpec DS;
John McCallbdd563e2009-11-03 02:38:08 +0000430 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Chris Lattnera1fed7e2008-10-20 06:15:13 +0000432 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list, "",
433 tok::at);
Chris Lattnera2449b22008-10-20 05:57:40 +0000434 break;
Steve Narofff28b2642007-09-05 23:30:30 +0000435 }
Steve Naroff294494e2007-08-22 16:35:03 +0000436 }
Chris Lattnerbc662af2008-10-20 06:10:06 +0000437
438 // We break out of the big loop in two cases: when we see @end or when we see
439 // EOF. In the former case, eat the @end. In the later case, emit an error.
Douglas Gregorc464ae82009-12-07 09:27:33 +0000440 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000441 Actions.CodeCompleteObjCAtDirective(getCurScope(), ObjCImpDecl, true);
Douglas Gregordc845342010-05-25 05:58:43 +0000442 ConsumeCodeCompletionToken();
Douglas Gregorc464ae82009-12-07 09:27:33 +0000443 } else if (Tok.isObjCAtKeyword(tok::objc_end))
Chris Lattnerbc662af2008-10-20 06:10:06 +0000444 ConsumeToken(); // the "end" identifier
445 else
446 Diag(Tok, diag::err_objc_missing_end);
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Chris Lattnera2449b22008-10-20 05:57:40 +0000448 // Insert collected methods declarations into the @interface object.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000449 // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000450 Actions.ActOnAtEnd(getCurScope(), AtEnd, interfaceDecl,
Mike Stump1eb44332009-09-09 15:08:12 +0000451 allMethods.data(), allMethods.size(),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000452 allProperties.data(), allProperties.size(),
453 allTUVariables.data(), allTUVariables.size());
Steve Naroff294494e2007-08-22 16:35:03 +0000454}
455
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000456/// Parse property attribute declarations.
457///
458/// property-attr-decl: '(' property-attrlist ')'
459/// property-attrlist:
460/// property-attribute
461/// property-attrlist ',' property-attribute
462/// property-attribute:
463/// getter '=' identifier
464/// setter '=' identifier ':'
465/// readonly
466/// readwrite
467/// assign
468/// retain
469/// copy
470/// nonatomic
471///
John McCalld226f652010-08-21 09:40:31 +0000472void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS, Decl *ClassDecl,
473 Decl **Methods,
Douglas Gregor4ad96852009-11-19 07:41:15 +0000474 unsigned NumMethods) {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000475 assert(Tok.getKind() == tok::l_paren);
Chris Lattnerdd5b5f22008-10-20 07:00:43 +0000476 SourceLocation LHSLoc = ConsumeParen(); // consume '('
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000478 while (1) {
Steve Naroffece8e712009-10-08 21:55:05 +0000479 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000480 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS);
Douglas Gregordc845342010-05-25 05:58:43 +0000481 ConsumeCodeCompletionToken();
Steve Naroffece8e712009-10-08 21:55:05 +0000482 }
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000483 const IdentifierInfo *II = Tok.getIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000484
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000485 // If this is not an identifier at all, bail out early.
486 if (II == 0) {
487 MatchRHSPunctuation(tok::r_paren, LHSLoc);
488 return;
489 }
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Chris Lattner156b0612008-10-20 07:37:22 +0000491 SourceLocation AttrName = ConsumeToken(); // consume last attribute name
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Chris Lattner92e62b02008-11-20 04:42:34 +0000493 if (II->isStr("readonly"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000494 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
Chris Lattner92e62b02008-11-20 04:42:34 +0000495 else if (II->isStr("assign"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000496 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
Chris Lattner92e62b02008-11-20 04:42:34 +0000497 else if (II->isStr("readwrite"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000498 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
Chris Lattner92e62b02008-11-20 04:42:34 +0000499 else if (II->isStr("retain"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000500 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
Chris Lattner92e62b02008-11-20 04:42:34 +0000501 else if (II->isStr("copy"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000502 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_copy);
Chris Lattner92e62b02008-11-20 04:42:34 +0000503 else if (II->isStr("nonatomic"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000504 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nonatomic);
Chris Lattner92e62b02008-11-20 04:42:34 +0000505 else if (II->isStr("getter") || II->isStr("setter")) {
Chris Lattnere00da7c2008-10-20 07:39:53 +0000506 // getter/setter require extra treatment.
Chris Lattner156b0612008-10-20 07:37:22 +0000507 if (ExpectAndConsume(tok::equal, diag::err_objc_expected_equal, "",
508 tok::r_paren))
Chris Lattnerdd5b5f22008-10-20 07:00:43 +0000509 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000510
Douglas Gregor4ad96852009-11-19 07:41:15 +0000511 if (Tok.is(tok::code_completion)) {
512 if (II->getNameStart()[0] == 's')
Douglas Gregor23c94db2010-07-02 17:43:08 +0000513 Actions.CodeCompleteObjCPropertySetter(getCurScope(), ClassDecl,
Douglas Gregor4ad96852009-11-19 07:41:15 +0000514 Methods, NumMethods);
515 else
Douglas Gregor23c94db2010-07-02 17:43:08 +0000516 Actions.CodeCompleteObjCPropertyGetter(getCurScope(), ClassDecl,
Douglas Gregor4ad96852009-11-19 07:41:15 +0000517 Methods, NumMethods);
Douglas Gregordc845342010-05-25 05:58:43 +0000518 ConsumeCodeCompletionToken();
Douglas Gregor4ad96852009-11-19 07:41:15 +0000519 }
520
Chris Lattner8ca329c2008-10-20 07:24:39 +0000521 if (Tok.isNot(tok::identifier)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000522 Diag(Tok, diag::err_expected_ident);
Chris Lattner8ca329c2008-10-20 07:24:39 +0000523 SkipUntil(tok::r_paren);
524 return;
525 }
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Daniel Dunbare013d682009-10-18 20:26:12 +0000527 if (II->getNameStart()[0] == 's') {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000528 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_setter);
529 DS.setSetterName(Tok.getIdentifierInfo());
Chris Lattner156b0612008-10-20 07:37:22 +0000530 ConsumeToken(); // consume method name
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Fariborz Jahaniane0097db2010-02-15 22:20:11 +0000532 if (ExpectAndConsume(tok::colon,
533 diag::err_expected_colon_after_setter_name, "",
Chris Lattner156b0612008-10-20 07:37:22 +0000534 tok::r_paren))
Chris Lattner8ca329c2008-10-20 07:24:39 +0000535 return;
Chris Lattner8ca329c2008-10-20 07:24:39 +0000536 } else {
537 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_getter);
538 DS.setGetterName(Tok.getIdentifierInfo());
Chris Lattner156b0612008-10-20 07:37:22 +0000539 ConsumeToken(); // consume method name
Chris Lattner8ca329c2008-10-20 07:24:39 +0000540 }
Chris Lattnere00da7c2008-10-20 07:39:53 +0000541 } else {
Chris Lattnera9500f02008-11-19 07:49:38 +0000542 Diag(AttrName, diag::err_objc_expected_property_attr) << II;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000543 SkipUntil(tok::r_paren);
544 return;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000545 }
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Chris Lattner156b0612008-10-20 07:37:22 +0000547 if (Tok.isNot(tok::comma))
548 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Chris Lattner156b0612008-10-20 07:37:22 +0000550 ConsumeToken();
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000551 }
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Chris Lattner156b0612008-10-20 07:37:22 +0000553 MatchRHSPunctuation(tok::r_paren, LHSLoc);
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000554}
555
Fariborz Jahanianbe747402010-09-03 01:26:16 +0000556static void ConvertCPlusPlusOperatorToken(Preprocessor &PP, Token &Tok) {
557 if (!Tok.isCPlusPlusOpKeyword())
558 return;
559
560 switch (Tok.getKind()) {
561 case tok::ampamp:
562 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("and"));
563 Tok.setKind(tok::identifier);
564 return;
565 case tok::ampequal:
566 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("and_eq"));
567 Tok.setKind(tok::identifier);
568 return;
569 case tok::amp:
570 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("bitand"));
571 Tok.setKind(tok::identifier);
572 return;
573 case tok::pipe:
574 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("pipe"));
575 Tok.setKind(tok::identifier);
576 return;
577 case tok::tilde:
578 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("compl"));
579 Tok.setKind(tok::identifier);
580 return;
581 case tok::exclaim:
582 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("not"));
583 Tok.setKind(tok::identifier);
584 return;
585 case tok::exclaimequal:
586 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("not_eq"));
587 Tok.setKind(tok::identifier);
588 return;
589 case tok::pipepipe:
590 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("or"));
591 Tok.setKind(tok::identifier);
592 return;
593 case tok::pipeequal:
594 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("or_eq"));
595 Tok.setKind(tok::identifier);
596 return;
597 case tok::caret:
598 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("xor"));
599 Tok.setKind(tok::identifier);
600 return;
601 case tok::caretequal:
602 Tok.setIdentifierInfo(&PP.getIdentifierTable().get("xor_eq"));
603 Tok.setKind(tok::identifier);
604 return;
605 default:
606 return;
607 }
608}
609
Steve Naroff3536b442007-09-06 21:24:23 +0000610/// objc-method-proto:
Mike Stump1eb44332009-09-09 15:08:12 +0000611/// objc-instance-method objc-method-decl objc-method-attributes[opt]
Steve Naroff3536b442007-09-06 21:24:23 +0000612/// objc-class-method objc-method-decl objc-method-attributes[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000613///
614/// objc-instance-method: '-'
615/// objc-class-method: '+'
616///
Steve Naroff4985ace2007-08-22 18:35:33 +0000617/// objc-method-attributes: [OBJC2]
618/// __attribute__((deprecated))
619///
John McCalld226f652010-08-21 09:40:31 +0000620Decl *Parser::ParseObjCMethodPrototype(Decl *IDecl,
621 tok::ObjCKeywordKind MethodImplKind) {
Chris Lattnerdf195262007-10-09 17:51:17 +0000622 assert((Tok.is(tok::minus) || Tok.is(tok::plus)) && "expected +/-");
Steve Naroff294494e2007-08-22 16:35:03 +0000623
Mike Stump1eb44332009-09-09 15:08:12 +0000624 tok::TokenKind methodType = Tok.getKind();
Steve Naroffbef11852007-10-26 20:53:56 +0000625 SourceLocation mLoc = ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +0000626 Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, IDecl,MethodImplKind);
Steve Naroff3536b442007-09-06 21:24:23 +0000627 // Since this rule is used for both method declarations and definitions,
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000628 // the caller is (optionally) responsible for consuming the ';'.
Steve Narofff28b2642007-09-05 23:30:30 +0000629 return MDecl;
Steve Naroff294494e2007-08-22 16:35:03 +0000630}
631
632/// objc-selector:
633/// identifier
634/// one of
635/// enum struct union if else while do for switch case default
636/// break continue return goto asm sizeof typeof __alignof
637/// unsigned long const short volatile signed restrict _Complex
638/// in out inout bycopy byref oneway int char float double void _Bool
639///
Chris Lattner2fc5c242009-04-11 18:13:45 +0000640IdentifierInfo *Parser::ParseObjCSelectorPiece(SourceLocation &SelectorLoc) {
Fariborz Jahanianbe747402010-09-03 01:26:16 +0000641 ConvertCPlusPlusOperatorToken(PP, Tok);
642
Chris Lattnerff384912007-10-07 02:00:24 +0000643 switch (Tok.getKind()) {
644 default:
645 return 0;
646 case tok::identifier:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000647 case tok::kw_asm:
Chris Lattnerff384912007-10-07 02:00:24 +0000648 case tok::kw_auto:
Chris Lattner9298d962007-11-15 05:25:19 +0000649 case tok::kw_bool:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000650 case tok::kw_break:
651 case tok::kw_case:
652 case tok::kw_catch:
653 case tok::kw_char:
654 case tok::kw_class:
655 case tok::kw_const:
656 case tok::kw_const_cast:
657 case tok::kw_continue:
658 case tok::kw_default:
659 case tok::kw_delete:
660 case tok::kw_do:
661 case tok::kw_double:
662 case tok::kw_dynamic_cast:
663 case tok::kw_else:
664 case tok::kw_enum:
665 case tok::kw_explicit:
666 case tok::kw_export:
667 case tok::kw_extern:
668 case tok::kw_false:
669 case tok::kw_float:
670 case tok::kw_for:
671 case tok::kw_friend:
672 case tok::kw_goto:
673 case tok::kw_if:
674 case tok::kw_inline:
675 case tok::kw_int:
676 case tok::kw_long:
677 case tok::kw_mutable:
678 case tok::kw_namespace:
679 case tok::kw_new:
680 case tok::kw_operator:
681 case tok::kw_private:
682 case tok::kw_protected:
683 case tok::kw_public:
684 case tok::kw_register:
685 case tok::kw_reinterpret_cast:
686 case tok::kw_restrict:
687 case tok::kw_return:
688 case tok::kw_short:
689 case tok::kw_signed:
690 case tok::kw_sizeof:
691 case tok::kw_static:
692 case tok::kw_static_cast:
693 case tok::kw_struct:
694 case tok::kw_switch:
695 case tok::kw_template:
696 case tok::kw_this:
697 case tok::kw_throw:
698 case tok::kw_true:
699 case tok::kw_try:
700 case tok::kw_typedef:
701 case tok::kw_typeid:
702 case tok::kw_typename:
703 case tok::kw_typeof:
704 case tok::kw_union:
705 case tok::kw_unsigned:
706 case tok::kw_using:
707 case tok::kw_virtual:
708 case tok::kw_void:
709 case tok::kw_volatile:
710 case tok::kw_wchar_t:
711 case tok::kw_while:
Chris Lattnerff384912007-10-07 02:00:24 +0000712 case tok::kw__Bool:
713 case tok::kw__Complex:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000714 case tok::kw___alignof:
Chris Lattnerff384912007-10-07 02:00:24 +0000715 IdentifierInfo *II = Tok.getIdentifierInfo();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000716 SelectorLoc = ConsumeToken();
Chris Lattnerff384912007-10-07 02:00:24 +0000717 return II;
Fariborz Jahaniand0649512007-09-27 19:52:15 +0000718 }
Steve Naroff294494e2007-08-22 16:35:03 +0000719}
720
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000721/// objc-for-collection-in: 'in'
722///
Fariborz Jahanian335a2d42008-01-04 23:04:08 +0000723bool Parser::isTokIdentifier_in() const {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000724 // FIXME: May have to do additional look-ahead to only allow for
725 // valid tokens following an 'in'; such as an identifier, unary operators,
726 // '[' etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000727 return (getLang().ObjC2 && Tok.is(tok::identifier) &&
Chris Lattner5ffb14b2008-08-23 02:02:23 +0000728 Tok.getIdentifierInfo() == ObjCTypeQuals[objc_in]);
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000729}
730
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000731/// ParseObjCTypeQualifierList - This routine parses the objective-c's type
Chris Lattnere8b724d2007-12-12 06:56:32 +0000732/// qualifier list and builds their bitmask representation in the input
733/// argument.
Steve Naroff294494e2007-08-22 16:35:03 +0000734///
735/// objc-type-qualifiers:
736/// objc-type-qualifier
737/// objc-type-qualifiers objc-type-qualifier
738///
Douglas Gregord32b0222010-08-24 01:06:58 +0000739void Parser::ParseObjCTypeQualifierList(ObjCDeclSpec &DS, bool IsParameter) {
Chris Lattnere8b724d2007-12-12 06:56:32 +0000740 while (1) {
Douglas Gregord32b0222010-08-24 01:06:58 +0000741 if (Tok.is(tok::code_completion)) {
742 Actions.CodeCompleteObjCPassingType(getCurScope(), DS);
743 ConsumeCodeCompletionToken();
744 }
745
Chris Lattnercb53b362007-12-27 19:57:00 +0000746 if (Tok.isNot(tok::identifier))
Chris Lattnere8b724d2007-12-12 06:56:32 +0000747 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000748
Chris Lattnere8b724d2007-12-12 06:56:32 +0000749 const IdentifierInfo *II = Tok.getIdentifierInfo();
750 for (unsigned i = 0; i != objc_NumQuals; ++i) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000751 if (II != ObjCTypeQuals[i])
Chris Lattnere8b724d2007-12-12 06:56:32 +0000752 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000753
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000754 ObjCDeclSpec::ObjCDeclQualifier Qual;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000755 switch (i) {
756 default: assert(0 && "Unknown decl qualifier");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000757 case objc_in: Qual = ObjCDeclSpec::DQ_In; break;
758 case objc_out: Qual = ObjCDeclSpec::DQ_Out; break;
759 case objc_inout: Qual = ObjCDeclSpec::DQ_Inout; break;
760 case objc_oneway: Qual = ObjCDeclSpec::DQ_Oneway; break;
761 case objc_bycopy: Qual = ObjCDeclSpec::DQ_Bycopy; break;
762 case objc_byref: Qual = ObjCDeclSpec::DQ_Byref; break;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000763 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000764 DS.setObjCDeclQualifier(Qual);
Chris Lattnere8b724d2007-12-12 06:56:32 +0000765 ConsumeToken();
766 II = 0;
767 break;
768 }
Mike Stump1eb44332009-09-09 15:08:12 +0000769
Chris Lattnere8b724d2007-12-12 06:56:32 +0000770 // If this wasn't a recognized qualifier, bail out.
771 if (II) return;
772 }
773}
774
775/// objc-type-name:
776/// '(' objc-type-qualifiers[opt] type-name ')'
777/// '(' objc-type-qualifiers[opt] ')'
778///
John McCallb3d87482010-08-24 05:47:05 +0000779ParsedType Parser::ParseObjCTypeName(ObjCDeclSpec &DS, bool IsParameter) {
Chris Lattnerdf195262007-10-09 17:51:17 +0000780 assert(Tok.is(tok::l_paren) && "expected (");
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Chris Lattner4a76b292008-10-22 03:52:06 +0000782 SourceLocation LParenLoc = ConsumeParen();
Chris Lattnere8904e92008-08-23 01:48:03 +0000783 SourceLocation TypeStartLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000784
Fariborz Jahanian19d74e12007-10-31 21:59:43 +0000785 // Parse type qualifiers, in, inout, etc.
Douglas Gregord32b0222010-08-24 01:06:58 +0000786 ParseObjCTypeQualifierList(DS, IsParameter);
Steve Naroff4fa7afd2007-08-22 23:18:22 +0000787
John McCallb3d87482010-08-24 05:47:05 +0000788 ParsedType Ty;
Douglas Gregor809070a2009-02-18 17:45:20 +0000789 if (isTypeSpecifierQualifier()) {
790 TypeResult TypeSpec = ParseTypeName();
791 if (!TypeSpec.isInvalid())
792 Ty = TypeSpec.get();
793 }
Mike Stump1eb44332009-09-09 15:08:12 +0000794
Steve Naroffd7333c22008-10-21 14:15:04 +0000795 if (Tok.is(tok::r_paren))
Chris Lattner4a76b292008-10-22 03:52:06 +0000796 ConsumeParen();
797 else if (Tok.getLocation() == TypeStartLoc) {
798 // If we didn't eat any tokens, then this isn't a type.
Chris Lattner1ab3b962008-11-18 07:48:38 +0000799 Diag(Tok, diag::err_expected_type);
Chris Lattner4a76b292008-10-22 03:52:06 +0000800 SkipUntil(tok::r_paren);
801 } else {
802 // Otherwise, we found *something*, but didn't get a ')' in the right
803 // place. Emit an error then return what we have as the type.
804 MatchRHSPunctuation(tok::r_paren, LParenLoc);
805 }
Steve Narofff28b2642007-09-05 23:30:30 +0000806 return Ty;
Steve Naroff294494e2007-08-22 16:35:03 +0000807}
808
809/// objc-method-decl:
810/// objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000811/// objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000812/// objc-type-name objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000813/// objc-type-name objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000814///
815/// objc-keyword-selector:
Mike Stump1eb44332009-09-09 15:08:12 +0000816/// objc-keyword-decl
Steve Naroff294494e2007-08-22 16:35:03 +0000817/// objc-keyword-selector objc-keyword-decl
818///
819/// objc-keyword-decl:
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000820/// objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier
821/// objc-selector ':' objc-keyword-attributes[opt] identifier
822/// ':' objc-type-name objc-keyword-attributes[opt] identifier
823/// ':' objc-keyword-attributes[opt] identifier
Steve Naroff294494e2007-08-22 16:35:03 +0000824///
Steve Naroff4985ace2007-08-22 18:35:33 +0000825/// objc-parmlist:
826/// objc-parms objc-ellipsis[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000827///
Steve Naroff4985ace2007-08-22 18:35:33 +0000828/// objc-parms:
829/// objc-parms , parameter-declaration
Steve Naroff294494e2007-08-22 16:35:03 +0000830///
Steve Naroff4985ace2007-08-22 18:35:33 +0000831/// objc-ellipsis:
Steve Naroff294494e2007-08-22 16:35:03 +0000832/// , ...
833///
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000834/// objc-keyword-attributes: [OBJC2]
835/// __attribute__((unused))
836///
John McCalld226f652010-08-21 09:40:31 +0000837Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000838 tok::TokenKind mType,
839 Decl *IDecl,
840 tok::ObjCKeywordKind MethodImplKind) {
John McCall54abf7d2009-11-04 02:18:39 +0000841 ParsingDeclRAIIObject PD(*this);
842
Douglas Gregore8f5a172010-04-07 00:21:17 +0000843 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000844 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
John McCallb3d87482010-08-24 05:47:05 +0000845 /*ReturnType=*/ ParsedType(), IDecl);
Douglas Gregordc845342010-05-25 05:58:43 +0000846 ConsumeCodeCompletionToken();
Douglas Gregore8f5a172010-04-07 00:21:17 +0000847 }
848
Chris Lattnere8904e92008-08-23 01:48:03 +0000849 // Parse the return type if present.
John McCallb3d87482010-08-24 05:47:05 +0000850 ParsedType ReturnType;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000851 ObjCDeclSpec DSRet;
Chris Lattnerdf195262007-10-09 17:51:17 +0000852 if (Tok.is(tok::l_paren))
Douglas Gregord32b0222010-08-24 01:06:58 +0000853 ReturnType = ParseObjCTypeName(DSRet, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000854
Ted Kremenek9e049352010-02-18 23:05:16 +0000855 // If attributes exist before the method, parse them.
856 llvm::OwningPtr<AttributeList> MethodAttrs;
857 if (getLang().ObjC2 && Tok.is(tok::kw___attribute))
858 MethodAttrs.reset(ParseGNUAttributes());
859
Douglas Gregore8f5a172010-04-07 00:21:17 +0000860 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000861 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
Douglas Gregore8f5a172010-04-07 00:21:17 +0000862 ReturnType, IDecl);
Douglas Gregordc845342010-05-25 05:58:43 +0000863 ConsumeCodeCompletionToken();
Douglas Gregore8f5a172010-04-07 00:21:17 +0000864 }
865
Ted Kremenek9e049352010-02-18 23:05:16 +0000866 // Now parse the selector.
Steve Naroffbef11852007-10-26 20:53:56 +0000867 SourceLocation selLoc;
Chris Lattner2fc5c242009-04-11 18:13:45 +0000868 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc);
Chris Lattnere8904e92008-08-23 01:48:03 +0000869
Steve Naroff84c43102009-02-11 20:43:13 +0000870 // An unnamed colon is valid.
871 if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
Chris Lattner1ab3b962008-11-18 07:48:38 +0000872 Diag(Tok, diag::err_expected_selector_for_method)
873 << SourceRange(mLoc, Tok.getLocation());
Chris Lattnere8904e92008-08-23 01:48:03 +0000874 // Skip until we get a ; or {}.
875 SkipUntil(tok::r_brace);
John McCalld226f652010-08-21 09:40:31 +0000876 return 0;
Chris Lattnere8904e92008-08-23 01:48:03 +0000877 }
Mike Stump1eb44332009-09-09 15:08:12 +0000878
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +0000879 llvm::SmallVector<DeclaratorChunk::ParamInfo, 8> CParamInfo;
Chris Lattnerdf195262007-10-09 17:51:17 +0000880 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +0000881 // If attributes exist after the method, parse them.
Mike Stump1eb44332009-09-09 15:08:12 +0000882 if (getLang().ObjC2 && Tok.is(tok::kw___attribute))
Ted Kremenek9e049352010-02-18 23:05:16 +0000883 MethodAttrs.reset(addAttributeLists(MethodAttrs.take(),
884 ParseGNUAttributes()));
Mike Stump1eb44332009-09-09 15:08:12 +0000885
Chris Lattnerff384912007-10-07 02:00:24 +0000886 Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent);
John McCalld226f652010-08-21 09:40:31 +0000887 Decl *Result
John McCall54abf7d2009-11-04 02:18:39 +0000888 = Actions.ActOnMethodDeclaration(mLoc, Tok.getLocation(),
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +0000889 mType, IDecl, DSRet, ReturnType, Sel,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +0000890 0,
891 CParamInfo.data(), CParamInfo.size(),
892 MethodAttrs.get(),
Ted Kremenek1c6a3cc2009-05-04 17:04:30 +0000893 MethodImplKind);
John McCall54abf7d2009-11-04 02:18:39 +0000894 PD.complete(Result);
895 return Result;
Chris Lattnerff384912007-10-07 02:00:24 +0000896 }
Steve Narofff28b2642007-09-05 23:30:30 +0000897
Steve Naroff68d331a2007-09-27 14:38:14 +0000898 llvm::SmallVector<IdentifierInfo *, 12> KeyIdents;
John McCallf312b1e2010-08-26 23:41:50 +0000899 llvm::SmallVector<Sema::ObjCArgInfo, 12> ArgInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000900
Chris Lattnerff384912007-10-07 02:00:24 +0000901 while (1) {
John McCallf312b1e2010-08-26 23:41:50 +0000902 Sema::ObjCArgInfo ArgInfo;
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Chris Lattnerff384912007-10-07 02:00:24 +0000904 // Each iteration parses a single keyword argument.
Chris Lattnerdf195262007-10-09 17:51:17 +0000905 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +0000906 Diag(Tok, diag::err_expected_colon);
907 break;
908 }
909 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +0000910
John McCallb3d87482010-08-24 05:47:05 +0000911 ArgInfo.Type = ParsedType();
Chris Lattnere294d3f2009-04-11 18:57:04 +0000912 if (Tok.is(tok::l_paren)) // Parse the argument type if present.
Douglas Gregord32b0222010-08-24 01:06:58 +0000913 ArgInfo.Type = ParseObjCTypeName(ArgInfo.DeclSpec, true);
Chris Lattnere294d3f2009-04-11 18:57:04 +0000914
Chris Lattnerff384912007-10-07 02:00:24 +0000915 // If attributes exist before the argument name, parse them.
Chris Lattnere294d3f2009-04-11 18:57:04 +0000916 ArgInfo.ArgAttrs = 0;
Chris Lattnerdf195262007-10-09 17:51:17 +0000917 if (getLang().ObjC2 && Tok.is(tok::kw___attribute))
Sean Huntbbd37c62009-11-21 08:43:09 +0000918 ArgInfo.ArgAttrs = ParseGNUAttributes();
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000919
Douglas Gregor40ed9a12010-07-08 23:37:41 +0000920 // Code completion for the next piece of the selector.
921 if (Tok.is(tok::code_completion)) {
922 ConsumeCodeCompletionToken();
923 KeyIdents.push_back(SelIdent);
924 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
925 mType == tok::minus,
926 /*AtParameterName=*/true,
927 ReturnType,
928 KeyIdents.data(),
929 KeyIdents.size());
930 KeyIdents.pop_back();
931 break;
932 }
933
Chris Lattnerdf195262007-10-09 17:51:17 +0000934 if (Tok.isNot(tok::identifier)) {
Chris Lattnerff384912007-10-07 02:00:24 +0000935 Diag(Tok, diag::err_expected_ident); // missing argument name.
936 break;
Steve Naroff4985ace2007-08-22 18:35:33 +0000937 }
Mike Stump1eb44332009-09-09 15:08:12 +0000938
Chris Lattnere294d3f2009-04-11 18:57:04 +0000939 ArgInfo.Name = Tok.getIdentifierInfo();
940 ArgInfo.NameLoc = Tok.getLocation();
Chris Lattnerff384912007-10-07 02:00:24 +0000941 ConsumeToken(); // Eat the identifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000942
Chris Lattnere294d3f2009-04-11 18:57:04 +0000943 ArgInfos.push_back(ArgInfo);
944 KeyIdents.push_back(SelIdent);
945
Douglas Gregor1f5537a2010-07-08 23:20:03 +0000946 // Code completion for the next piece of the selector.
947 if (Tok.is(tok::code_completion)) {
948 ConsumeCodeCompletionToken();
949 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
950 mType == tok::minus,
Douglas Gregor40ed9a12010-07-08 23:37:41 +0000951 /*AtParameterName=*/false,
Douglas Gregor1f5537a2010-07-08 23:20:03 +0000952 ReturnType,
953 KeyIdents.data(),
954 KeyIdents.size());
955 break;
956 }
957
Chris Lattnerff384912007-10-07 02:00:24 +0000958 // Check for another keyword selector.
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000959 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +0000960 SelIdent = ParseObjCSelectorPiece(Loc);
Chris Lattnerdf195262007-10-09 17:51:17 +0000961 if (!SelIdent && Tok.isNot(tok::colon))
Chris Lattnerff384912007-10-07 02:00:24 +0000962 break;
963 // We have a selector or a colon, continue parsing.
Steve Naroff4985ace2007-08-22 18:35:33 +0000964 }
Mike Stump1eb44332009-09-09 15:08:12 +0000965
Steve Naroff335eafa2007-11-15 12:35:21 +0000966 bool isVariadic = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000967
Chris Lattnerff384912007-10-07 02:00:24 +0000968 // Parse the (optional) parameter list.
Chris Lattnerdf195262007-10-09 17:51:17 +0000969 while (Tok.is(tok::comma)) {
Chris Lattnerff384912007-10-07 02:00:24 +0000970 ConsumeToken();
Chris Lattnerdf195262007-10-09 17:51:17 +0000971 if (Tok.is(tok::ellipsis)) {
Steve Naroff335eafa2007-11-15 12:35:21 +0000972 isVariadic = true;
Chris Lattnerff384912007-10-07 02:00:24 +0000973 ConsumeToken();
974 break;
975 }
Chris Lattnerff384912007-10-07 02:00:24 +0000976 DeclSpec DS;
977 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +0000978 // Parse the declarator.
Chris Lattnerff384912007-10-07 02:00:24 +0000979 Declarator ParmDecl(DS, Declarator::PrototypeContext);
980 ParseDeclarator(ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +0000981 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
John McCalld226f652010-08-21 09:40:31 +0000982 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +0000983 CParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
984 ParmDecl.getIdentifierLoc(),
985 Param,
986 0));
987
Chris Lattnerff384912007-10-07 02:00:24 +0000988 }
Mike Stump1eb44332009-09-09 15:08:12 +0000989
Chris Lattnerff384912007-10-07 02:00:24 +0000990 // FIXME: Add support for optional parmameter list...
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000991 // If attributes exist after the method, parse them.
Mike Stump1eb44332009-09-09 15:08:12 +0000992 if (getLang().ObjC2 && Tok.is(tok::kw___attribute))
Ted Kremenek9e049352010-02-18 23:05:16 +0000993 MethodAttrs.reset(addAttributeLists(MethodAttrs.take(),
994 ParseGNUAttributes()));
Mike Stump1eb44332009-09-09 15:08:12 +0000995
Fariborz Jahanian3688fc62009-06-24 17:00:18 +0000996 if (KeyIdents.size() == 0)
John McCalld226f652010-08-21 09:40:31 +0000997 return 0;
Chris Lattnerff384912007-10-07 02:00:24 +0000998 Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(),
999 &KeyIdents[0]);
John McCalld226f652010-08-21 09:40:31 +00001000 Decl *Result
John McCall54abf7d2009-11-04 02:18:39 +00001001 = Actions.ActOnMethodDeclaration(mLoc, Tok.getLocation(),
Fariborz Jahanian3688fc62009-06-24 17:00:18 +00001002 mType, IDecl, DSRet, ReturnType, Sel,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001003 &ArgInfos[0],
1004 CParamInfo.data(), CParamInfo.size(),
Ted Kremenek1e377652010-02-11 02:19:13 +00001005 MethodAttrs.get(),
Steve Naroff335eafa2007-11-15 12:35:21 +00001006 MethodImplKind, isVariadic);
John McCall54abf7d2009-11-04 02:18:39 +00001007 PD.complete(Result);
Ted Kremenek1e377652010-02-11 02:19:13 +00001008
1009 // Delete referenced AttributeList objects.
John McCallf312b1e2010-08-26 23:41:50 +00001010 for (llvm::SmallVectorImpl<Sema::ObjCArgInfo>::iterator
Ted Kremenek1e377652010-02-11 02:19:13 +00001011 I = ArgInfos.begin(), E = ArgInfos.end(); I != E; ++I)
1012 delete I->ArgAttrs;
1013
John McCall54abf7d2009-11-04 02:18:39 +00001014 return Result;
Steve Naroff294494e2007-08-22 16:35:03 +00001015}
1016
Steve Naroffdac269b2007-08-20 21:31:48 +00001017/// objc-protocol-refs:
1018/// '<' identifier-list '>'
1019///
Chris Lattner7caeabd2008-07-21 22:17:28 +00001020bool Parser::
John McCalld226f652010-08-21 09:40:31 +00001021ParseObjCProtocolReferences(llvm::SmallVectorImpl<Decl *> &Protocols,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001022 llvm::SmallVectorImpl<SourceLocation> &ProtocolLocs,
1023 bool WarnOnDeclarations,
1024 SourceLocation &LAngleLoc, SourceLocation &EndLoc) {
Chris Lattnere13b9592008-07-26 04:03:38 +00001025 assert(Tok.is(tok::less) && "expected <");
Mike Stump1eb44332009-09-09 15:08:12 +00001026
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001027 LAngleLoc = ConsumeToken(); // the "<"
Mike Stump1eb44332009-09-09 15:08:12 +00001028
Chris Lattnere13b9592008-07-26 04:03:38 +00001029 llvm::SmallVector<IdentifierLocPair, 8> ProtocolIdents;
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Chris Lattnere13b9592008-07-26 04:03:38 +00001031 while (1) {
Douglas Gregor55385fe2009-11-18 04:19:12 +00001032 if (Tok.is(tok::code_completion)) {
1033 Actions.CodeCompleteObjCProtocolReferences(ProtocolIdents.data(),
1034 ProtocolIdents.size());
Douglas Gregordc845342010-05-25 05:58:43 +00001035 ConsumeCodeCompletionToken();
Douglas Gregor55385fe2009-11-18 04:19:12 +00001036 }
1037
Chris Lattnere13b9592008-07-26 04:03:38 +00001038 if (Tok.isNot(tok::identifier)) {
1039 Diag(Tok, diag::err_expected_ident);
1040 SkipUntil(tok::greater);
1041 return true;
1042 }
1043 ProtocolIdents.push_back(std::make_pair(Tok.getIdentifierInfo(),
1044 Tok.getLocation()));
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001045 ProtocolLocs.push_back(Tok.getLocation());
Chris Lattnere13b9592008-07-26 04:03:38 +00001046 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001047
Chris Lattnere13b9592008-07-26 04:03:38 +00001048 if (Tok.isNot(tok::comma))
1049 break;
1050 ConsumeToken();
1051 }
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Chris Lattnere13b9592008-07-26 04:03:38 +00001053 // Consume the '>'.
1054 if (Tok.isNot(tok::greater)) {
1055 Diag(Tok, diag::err_expected_greater);
1056 return true;
1057 }
Mike Stump1eb44332009-09-09 15:08:12 +00001058
Chris Lattnere13b9592008-07-26 04:03:38 +00001059 EndLoc = ConsumeAnyToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001060
Chris Lattnere13b9592008-07-26 04:03:38 +00001061 // Convert the list of protocols identifiers into a list of protocol decls.
1062 Actions.FindProtocolDeclaration(WarnOnDeclarations,
1063 &ProtocolIdents[0], ProtocolIdents.size(),
1064 Protocols);
1065 return false;
1066}
1067
Steve Naroffdac269b2007-08-20 21:31:48 +00001068/// objc-class-instance-variables:
1069/// '{' objc-instance-variable-decl-list[opt] '}'
1070///
1071/// objc-instance-variable-decl-list:
1072/// objc-visibility-spec
1073/// objc-instance-variable-decl ';'
1074/// ';'
1075/// objc-instance-variable-decl-list objc-visibility-spec
1076/// objc-instance-variable-decl-list objc-instance-variable-decl ';'
1077/// objc-instance-variable-decl-list ';'
1078///
1079/// objc-visibility-spec:
1080/// @private
1081/// @protected
1082/// @public
Steve Naroffddbff782007-08-21 21:17:12 +00001083/// @package [OBJC2]
Steve Naroffdac269b2007-08-20 21:31:48 +00001084///
1085/// objc-instance-variable-decl:
Mike Stump1eb44332009-09-09 15:08:12 +00001086/// struct-declaration
Steve Naroffdac269b2007-08-20 21:31:48 +00001087///
John McCalld226f652010-08-21 09:40:31 +00001088void Parser::ParseObjCClassInstanceVariables(Decl *interfaceDecl,
Fariborz Jahanian83c481a2010-02-22 23:04:20 +00001089 tok::ObjCKeywordKind visibility,
Steve Naroff60fccee2007-10-29 21:38:07 +00001090 SourceLocation atLoc) {
Chris Lattnerdf195262007-10-09 17:51:17 +00001091 assert(Tok.is(tok::l_brace) && "expected {");
John McCalld226f652010-08-21 09:40:31 +00001092 llvm::SmallVector<Decl *, 32> AllIvarDecls;
Chris Lattnere1359422008-04-10 06:46:29 +00001093
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001094 ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope);
Douglas Gregor72de6672009-01-08 20:45:30 +00001095
Steve Naroffddbff782007-08-21 21:17:12 +00001096 SourceLocation LBraceLoc = ConsumeBrace(); // the "{"
Mike Stump1eb44332009-09-09 15:08:12 +00001097
Steve Naroffddbff782007-08-21 21:17:12 +00001098 // While we still have something to read, read the instance variables.
Chris Lattnerdf195262007-10-09 17:51:17 +00001099 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001100 // Each iteration of this loop reads one objc-instance-variable-decl.
Mike Stump1eb44332009-09-09 15:08:12 +00001101
Steve Naroffddbff782007-08-21 21:17:12 +00001102 // Check for extraneous top-level semicolon.
Chris Lattnerdf195262007-10-09 17:51:17 +00001103 if (Tok.is(tok::semi)) {
Douglas Gregorf13ca062010-06-16 23:08:59 +00001104 Diag(Tok, diag::ext_extra_ivar_semi)
Douglas Gregor849b2432010-03-31 17:46:05 +00001105 << FixItHint::CreateRemoval(Tok.getLocation());
Steve Naroffddbff782007-08-21 21:17:12 +00001106 ConsumeToken();
1107 continue;
1108 }
Mike Stump1eb44332009-09-09 15:08:12 +00001109
Steve Naroffddbff782007-08-21 21:17:12 +00001110 // Set the default visibility to private.
Chris Lattnerdf195262007-10-09 17:51:17 +00001111 if (Tok.is(tok::at)) { // parse objc-visibility-spec
Steve Naroffddbff782007-08-21 21:17:12 +00001112 ConsumeToken(); // eat the @ sign
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001113
1114 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001115 Actions.CodeCompleteObjCAtVisibility(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +00001116 ConsumeCodeCompletionToken();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001117 }
1118
Steve Naroff861cf3e2007-08-23 18:16:40 +00001119 switch (Tok.getObjCKeywordID()) {
Steve Naroffddbff782007-08-21 21:17:12 +00001120 case tok::objc_private:
1121 case tok::objc_public:
1122 case tok::objc_protected:
1123 case tok::objc_package:
Steve Naroff861cf3e2007-08-23 18:16:40 +00001124 visibility = Tok.getObjCKeywordID();
Steve Naroffddbff782007-08-21 21:17:12 +00001125 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001126 continue;
Steve Naroffddbff782007-08-21 21:17:12 +00001127 default:
1128 Diag(Tok, diag::err_objc_illegal_visibility_spec);
Steve Naroffddbff782007-08-21 21:17:12 +00001129 continue;
1130 }
1131 }
Mike Stump1eb44332009-09-09 15:08:12 +00001132
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001133 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001134 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001135 Sema::PCC_ObjCInstanceVariableList);
Douglas Gregordc845342010-05-25 05:58:43 +00001136 ConsumeCodeCompletionToken();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001137 }
1138
John McCallbdd563e2009-11-03 02:38:08 +00001139 struct ObjCIvarCallback : FieldCallback {
1140 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00001141 Decl *IDecl;
John McCallbdd563e2009-11-03 02:38:08 +00001142 tok::ObjCKeywordKind visibility;
John McCalld226f652010-08-21 09:40:31 +00001143 llvm::SmallVectorImpl<Decl *> &AllIvarDecls;
John McCallbdd563e2009-11-03 02:38:08 +00001144
John McCalld226f652010-08-21 09:40:31 +00001145 ObjCIvarCallback(Parser &P, Decl *IDecl, tok::ObjCKeywordKind V,
1146 llvm::SmallVectorImpl<Decl *> &AllIvarDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00001147 P(P), IDecl(IDecl), visibility(V), AllIvarDecls(AllIvarDecls) {
1148 }
1149
John McCalld226f652010-08-21 09:40:31 +00001150 Decl *invoke(FieldDeclarator &FD) {
John McCallbdd563e2009-11-03 02:38:08 +00001151 // Install the declarator into the interface decl.
John McCalld226f652010-08-21 09:40:31 +00001152 Decl *Field
Douglas Gregor23c94db2010-07-02 17:43:08 +00001153 = P.Actions.ActOnIvar(P.getCurScope(),
John McCallbdd563e2009-11-03 02:38:08 +00001154 FD.D.getDeclSpec().getSourceRange().getBegin(),
1155 IDecl, FD.D, FD.BitfieldSize, visibility);
Fariborz Jahanian0bd04592010-04-06 22:43:48 +00001156 if (Field)
1157 AllIvarDecls.push_back(Field);
John McCallbdd563e2009-11-03 02:38:08 +00001158 return Field;
1159 }
1160 } Callback(*this, interfaceDecl, visibility, AllIvarDecls);
Fariborz Jahaniand097be82010-08-23 22:46:52 +00001161
Chris Lattnere1359422008-04-10 06:46:29 +00001162 // Parse all the comma separated declarators.
1163 DeclSpec DS;
John McCallbdd563e2009-11-03 02:38:08 +00001164 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +00001165
Chris Lattnerdf195262007-10-09 17:51:17 +00001166 if (Tok.is(tok::semi)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001167 ConsumeToken();
Steve Naroffddbff782007-08-21 21:17:12 +00001168 } else {
1169 Diag(Tok, diag::err_expected_semi_decl_list);
1170 // Skip to end of block or statement
1171 SkipUntil(tok::r_brace, true, true);
1172 }
1173 }
Steve Naroff60fccee2007-10-29 21:38:07 +00001174 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
Fariborz Jahaniand097be82010-08-23 22:46:52 +00001175 Actions.ActOnLastBitfield(RBraceLoc, interfaceDecl, AllIvarDecls);
Steve Naroff8749be52007-10-31 22:11:35 +00001176 // Call ActOnFields() even if we don't have any decls. This is useful
1177 // for code rewriting tools that need to be aware of the empty list.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001178 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001179 AllIvarDecls.data(), AllIvarDecls.size(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001180 LBraceLoc, RBraceLoc, 0);
Steve Naroffddbff782007-08-21 21:17:12 +00001181 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001182}
Steve Naroffdac269b2007-08-20 21:31:48 +00001183
1184/// objc-protocol-declaration:
1185/// objc-protocol-definition
1186/// objc-protocol-forward-reference
1187///
1188/// objc-protocol-definition:
Mike Stump1eb44332009-09-09 15:08:12 +00001189/// @protocol identifier
1190/// objc-protocol-refs[opt]
1191/// objc-interface-decl-list
Steve Naroffdac269b2007-08-20 21:31:48 +00001192/// @end
1193///
1194/// objc-protocol-forward-reference:
1195/// @protocol identifier-list ';'
1196///
1197/// "@protocol identifier ;" should be resolved as "@protocol
Steve Naroff3536b442007-09-06 21:24:23 +00001198/// identifier-list ;": objc-interface-decl-list may not start with a
Steve Naroffdac269b2007-08-20 21:31:48 +00001199/// semicolon in the first alternative if objc-protocol-refs are omitted.
John McCalld226f652010-08-21 09:40:31 +00001200Decl *Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001201 AttributeList *attrList) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00001202 assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001203 "ParseObjCAtProtocolDeclaration(): Expected @protocol");
1204 ConsumeToken(); // the "protocol" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001205
Douglas Gregor083128f2009-11-18 04:49:41 +00001206 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001207 Actions.CodeCompleteObjCProtocolDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +00001208 ConsumeCodeCompletionToken();
Douglas Gregor083128f2009-11-18 04:49:41 +00001209 }
1210
Chris Lattnerdf195262007-10-09 17:51:17 +00001211 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001212 Diag(Tok, diag::err_expected_ident); // missing protocol name.
John McCalld226f652010-08-21 09:40:31 +00001213 return 0;
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001214 }
1215 // Save the protocol name, then consume it.
1216 IdentifierInfo *protocolName = Tok.getIdentifierInfo();
1217 SourceLocation nameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001218
Chris Lattnerdf195262007-10-09 17:51:17 +00001219 if (Tok.is(tok::semi)) { // forward declaration of one protocol.
Chris Lattner7caeabd2008-07-21 22:17:28 +00001220 IdentifierLocPair ProtoInfo(protocolName, nameLoc);
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001221 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001222 return Actions.ActOnForwardProtocolDeclaration(AtLoc, &ProtoInfo, 1,
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001223 attrList);
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001224 }
Mike Stump1eb44332009-09-09 15:08:12 +00001225
Chris Lattnerdf195262007-10-09 17:51:17 +00001226 if (Tok.is(tok::comma)) { // list of forward declarations.
Chris Lattner7caeabd2008-07-21 22:17:28 +00001227 llvm::SmallVector<IdentifierLocPair, 8> ProtocolRefs;
1228 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc));
1229
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001230 // Parse the list of forward declarations.
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001231 while (1) {
1232 ConsumeToken(); // the ','
Chris Lattnerdf195262007-10-09 17:51:17 +00001233 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001234 Diag(Tok, diag::err_expected_ident);
1235 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001236 return 0;
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001237 }
Chris Lattner7caeabd2008-07-21 22:17:28 +00001238 ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(),
1239 Tok.getLocation()));
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001240 ConsumeToken(); // the identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001241
Chris Lattnerdf195262007-10-09 17:51:17 +00001242 if (Tok.isNot(tok::comma))
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001243 break;
1244 }
1245 // Consume the ';'.
1246 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
John McCalld226f652010-08-21 09:40:31 +00001247 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001248
Steve Naroffe440eb82007-10-10 17:32:04 +00001249 return Actions.ActOnForwardProtocolDeclaration(AtLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001250 &ProtocolRefs[0],
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001251 ProtocolRefs.size(),
1252 attrList);
Chris Lattner7caeabd2008-07-21 22:17:28 +00001253 }
Mike Stump1eb44332009-09-09 15:08:12 +00001254
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001255 // Last, and definitely not least, parse a protocol declaration.
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001256 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001257
John McCalld226f652010-08-21 09:40:31 +00001258 llvm::SmallVector<Decl *, 8> ProtocolRefs;
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001259 llvm::SmallVector<SourceLocation, 8> ProtocolLocs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001260 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001261 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, false,
1262 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +00001263 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001264
John McCalld226f652010-08-21 09:40:31 +00001265 Decl *ProtoType =
Chris Lattnere13b9592008-07-26 04:03:38 +00001266 Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001267 ProtocolRefs.data(),
1268 ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +00001269 ProtocolLocs.data(),
Daniel Dunbar246e70f2008-09-26 04:48:09 +00001270 EndProtoLoc, attrList);
Fariborz Jahanian25e077d2007-09-17 21:07:36 +00001271 ParseObjCInterfaceDeclList(ProtoType, tok::objc_protocol);
Chris Lattnerbc662af2008-10-20 06:10:06 +00001272 return ProtoType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001273}
Steve Naroffdac269b2007-08-20 21:31:48 +00001274
1275/// objc-implementation:
1276/// objc-class-implementation-prologue
1277/// objc-category-implementation-prologue
1278///
1279/// objc-class-implementation-prologue:
1280/// @implementation identifier objc-superclass[opt]
1281/// objc-class-instance-variables[opt]
1282///
1283/// objc-category-implementation-prologue:
1284/// @implementation identifier ( identifier )
John McCalld226f652010-08-21 09:40:31 +00001285Decl *Parser::ParseObjCAtImplementationDeclaration(
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001286 SourceLocation atLoc) {
1287 assert(Tok.isObjCAtKeyword(tok::objc_implementation) &&
1288 "ParseObjCAtImplementationDeclaration(): Expected @implementation");
1289 ConsumeToken(); // the "implementation" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001291 // Code completion after '@implementation'.
1292 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001293 Actions.CodeCompleteObjCImplementationDecl(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +00001294 ConsumeCodeCompletionToken();
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001295 }
1296
Chris Lattnerdf195262007-10-09 17:51:17 +00001297 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001298 Diag(Tok, diag::err_expected_ident); // missing class or category name.
John McCalld226f652010-08-21 09:40:31 +00001299 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001300 }
1301 // We have a class or category name - consume it.
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001302 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001303 SourceLocation nameLoc = ConsumeToken(); // consume class or category name
Mike Stump1eb44332009-09-09 15:08:12 +00001304
1305 if (Tok.is(tok::l_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001306 // we have a category implementation.
1307 SourceLocation lparenLoc = ConsumeParen();
1308 SourceLocation categoryLoc, rparenLoc;
1309 IdentifierInfo *categoryId = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001310
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001311 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001312 Actions.CodeCompleteObjCImplementationCategory(getCurScope(), nameId, nameLoc);
Douglas Gregordc845342010-05-25 05:58:43 +00001313 ConsumeCodeCompletionToken();
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001314 }
1315
Chris Lattnerdf195262007-10-09 17:51:17 +00001316 if (Tok.is(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001317 categoryId = Tok.getIdentifierInfo();
1318 categoryLoc = ConsumeToken();
1319 } else {
1320 Diag(Tok, diag::err_expected_ident); // missing category name.
John McCalld226f652010-08-21 09:40:31 +00001321 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001322 }
Chris Lattnerdf195262007-10-09 17:51:17 +00001323 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001324 Diag(Tok, diag::err_expected_rparen);
1325 SkipUntil(tok::r_paren, false); // don't stop at ';'
John McCalld226f652010-08-21 09:40:31 +00001326 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001327 }
1328 rparenLoc = ConsumeParen();
John McCalld226f652010-08-21 09:40:31 +00001329 Decl *ImplCatType = Actions.ActOnStartCategoryImplementation(
Mike Stump1eb44332009-09-09 15:08:12 +00001330 atLoc, nameId, nameLoc, categoryId,
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001331 categoryLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001332 ObjCImpDecl = ImplCatType;
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001333 PendingObjCImpDecl.push_back(ObjCImpDecl);
John McCalld226f652010-08-21 09:40:31 +00001334 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001335 }
1336 // We have a class implementation
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001337 SourceLocation superClassLoc;
1338 IdentifierInfo *superClassId = 0;
Chris Lattnerdf195262007-10-09 17:51:17 +00001339 if (Tok.is(tok::colon)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001340 // We have a super class
1341 ConsumeToken();
Chris Lattnerdf195262007-10-09 17:51:17 +00001342 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001343 Diag(Tok, diag::err_expected_ident); // missing super class name.
John McCalld226f652010-08-21 09:40:31 +00001344 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001345 }
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001346 superClassId = Tok.getIdentifierInfo();
1347 superClassLoc = ConsumeToken(); // Consume super class name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001348 }
John McCalld226f652010-08-21 09:40:31 +00001349 Decl *ImplClsType = Actions.ActOnStartClassImplementation(
Chris Lattnercb53b362007-12-27 19:57:00 +00001350 atLoc, nameId, nameLoc,
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001351 superClassId, superClassLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001352
Steve Naroff60fccee2007-10-29 21:38:07 +00001353 if (Tok.is(tok::l_brace)) // we have ivars
Fariborz Jahanian83c481a2010-02-22 23:04:20 +00001354 ParseObjCClassInstanceVariables(ImplClsType/*FIXME*/,
Fariborz Jahanian01f1bfc2010-03-22 19:04:14 +00001355 tok::objc_private, atLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001356 ObjCImpDecl = ImplClsType;
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001357 PendingObjCImpDecl.push_back(ObjCImpDecl);
1358
John McCalld226f652010-08-21 09:40:31 +00001359 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001360}
Steve Naroff60fccee2007-10-29 21:38:07 +00001361
John McCalld226f652010-08-21 09:40:31 +00001362Decl *Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001363 assert(Tok.isObjCAtKeyword(tok::objc_end) &&
1364 "ParseObjCAtEndDeclaration(): Expected @end");
John McCalld226f652010-08-21 09:40:31 +00001365 Decl *Result = ObjCImpDecl;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001366 ConsumeToken(); // the "end" identifier
Fariborz Jahaniana6e3ac52009-03-04 22:30:12 +00001367 if (ObjCImpDecl) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001368 Actions.ActOnAtEnd(getCurScope(), atEnd, ObjCImpDecl);
John McCalld226f652010-08-21 09:40:31 +00001369 ObjCImpDecl = 0;
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001370 PendingObjCImpDecl.pop_back();
Fariborz Jahaniana6e3ac52009-03-04 22:30:12 +00001371 }
Ted Kremenek782f2f52010-01-07 01:20:12 +00001372 else {
1373 // missing @implementation
1374 Diag(atEnd.getBegin(), diag::warn_expected_implementation);
1375 }
Fariborz Jahaniana6e3ac52009-03-04 22:30:12 +00001376 return Result;
Steve Naroffdac269b2007-08-20 21:31:48 +00001377}
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001378
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00001379Parser::DeclGroupPtrTy Parser::FinishPendingObjCActions() {
1380 Actions.DiagnoseUseOfUnimplementedSelectors();
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001381 if (PendingObjCImpDecl.empty())
John McCalld226f652010-08-21 09:40:31 +00001382 return Actions.ConvertDeclToDeclGroup(0);
1383 Decl *ImpDecl = PendingObjCImpDecl.pop_back_val();
Douglas Gregor23c94db2010-07-02 17:43:08 +00001384 Actions.ActOnAtEnd(getCurScope(), SourceRange(), ImpDecl);
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001385 return Actions.ConvertDeclToDeclGroup(ImpDecl);
1386}
1387
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001388/// compatibility-alias-decl:
1389/// @compatibility_alias alias-name class-name ';'
1390///
John McCalld226f652010-08-21 09:40:31 +00001391Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001392 assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) &&
1393 "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias");
1394 ConsumeToken(); // consume compatibility_alias
Chris Lattnerdf195262007-10-09 17:51:17 +00001395 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001396 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001397 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001398 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001399 IdentifierInfo *aliasId = Tok.getIdentifierInfo();
1400 SourceLocation aliasLoc = ConsumeToken(); // consume alias-name
Chris Lattnerdf195262007-10-09 17:51:17 +00001401 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001402 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001403 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001404 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001405 IdentifierInfo *classId = Tok.getIdentifierInfo();
1406 SourceLocation classLoc = ConsumeToken(); // consume class-name;
1407 if (Tok.isNot(tok::semi)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001408 Diag(Tok, diag::err_expected_semi_after) << "@compatibility_alias";
John McCalld226f652010-08-21 09:40:31 +00001409 return 0;
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001410 }
Chris Lattnerb28317a2009-03-28 19:18:32 +00001411 return Actions.ActOnCompatiblityAlias(atLoc, aliasId, aliasLoc,
1412 classId, classLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001413}
1414
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001415/// property-synthesis:
1416/// @synthesize property-ivar-list ';'
1417///
1418/// property-ivar-list:
1419/// property-ivar
1420/// property-ivar-list ',' property-ivar
1421///
1422/// property-ivar:
1423/// identifier
1424/// identifier '=' identifier
1425///
John McCalld226f652010-08-21 09:40:31 +00001426Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001427 assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
1428 "ParseObjCPropertyDynamic(): Expected '@synthesize'");
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001429 SourceLocation loc = ConsumeToken(); // consume synthesize
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Douglas Gregorb328c422009-11-18 19:45:45 +00001431 while (true) {
Douglas Gregor322328b2009-11-18 22:32:06 +00001432 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001433 Actions.CodeCompleteObjCPropertyDefinition(getCurScope(), ObjCImpDecl);
Douglas Gregordc845342010-05-25 05:58:43 +00001434 ConsumeCodeCompletionToken();
Douglas Gregor322328b2009-11-18 22:32:06 +00001435 }
1436
Douglas Gregorb328c422009-11-18 19:45:45 +00001437 if (Tok.isNot(tok::identifier)) {
1438 Diag(Tok, diag::err_synthesized_property_name);
1439 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001440 return 0;
Douglas Gregorb328c422009-11-18 19:45:45 +00001441 }
1442
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001443 IdentifierInfo *propertyIvar = 0;
1444 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1445 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Chris Lattnerdf195262007-10-09 17:51:17 +00001446 if (Tok.is(tok::equal)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001447 // property '=' ivar-name
1448 ConsumeToken(); // consume '='
Douglas Gregor322328b2009-11-18 22:32:06 +00001449
1450 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001451 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId,
Douglas Gregor322328b2009-11-18 22:32:06 +00001452 ObjCImpDecl);
Douglas Gregordc845342010-05-25 05:58:43 +00001453 ConsumeCodeCompletionToken();
Douglas Gregor322328b2009-11-18 22:32:06 +00001454 }
1455
Chris Lattnerdf195262007-10-09 17:51:17 +00001456 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001457 Diag(Tok, diag::err_expected_ident);
1458 break;
1459 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001460 propertyIvar = Tok.getIdentifierInfo();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001461 ConsumeToken(); // consume ivar-name
1462 }
Douglas Gregor23c94db2010-07-02 17:43:08 +00001463 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, true, ObjCImpDecl,
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001464 propertyId, propertyIvar);
Chris Lattnerdf195262007-10-09 17:51:17 +00001465 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001466 break;
1467 ConsumeToken(); // consume ','
1468 }
Douglas Gregorb328c422009-11-18 19:45:45 +00001469 if (Tok.isNot(tok::semi)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001470 Diag(Tok, diag::err_expected_semi_after) << "@synthesize";
Douglas Gregorb328c422009-11-18 19:45:45 +00001471 SkipUntil(tok::semi);
1472 }
Fariborz Jahaniand3fdcb52009-11-06 21:48:47 +00001473 else
1474 ConsumeToken(); // consume ';'
John McCalld226f652010-08-21 09:40:31 +00001475 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001476}
1477
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001478/// property-dynamic:
1479/// @dynamic property-list
1480///
1481/// property-list:
1482/// identifier
1483/// property-list ',' identifier
1484///
John McCalld226f652010-08-21 09:40:31 +00001485Decl *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001486 assert(Tok.isObjCAtKeyword(tok::objc_dynamic) &&
1487 "ParseObjCPropertyDynamic(): Expected '@dynamic'");
1488 SourceLocation loc = ConsumeToken(); // consume dynamic
Douglas Gregor424b2a52009-11-18 22:56:13 +00001489 while (true) {
1490 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001491 Actions.CodeCompleteObjCPropertyDefinition(getCurScope(), ObjCImpDecl);
Douglas Gregordc845342010-05-25 05:58:43 +00001492 ConsumeCodeCompletionToken();
Douglas Gregor424b2a52009-11-18 22:56:13 +00001493 }
1494
1495 if (Tok.isNot(tok::identifier)) {
1496 Diag(Tok, diag::err_expected_ident);
1497 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001498 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001499 }
1500
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001501 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1502 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Douglas Gregor23c94db2010-07-02 17:43:08 +00001503 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, false, ObjCImpDecl,
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001504 propertyId, 0);
1505
Chris Lattnerdf195262007-10-09 17:51:17 +00001506 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001507 break;
1508 ConsumeToken(); // consume ','
1509 }
Fariborz Jahanian94b24db2010-04-14 20:52:42 +00001510 if (Tok.isNot(tok::semi)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001511 Diag(Tok, diag::err_expected_semi_after) << "@dynamic";
Fariborz Jahanian94b24db2010-04-14 20:52:42 +00001512 SkipUntil(tok::semi);
1513 }
1514 else
1515 ConsumeToken(); // consume ';'
John McCalld226f652010-08-21 09:40:31 +00001516 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001517}
Mike Stump1eb44332009-09-09 15:08:12 +00001518
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001519/// objc-throw-statement:
1520/// throw expression[opt];
1521///
John McCall60d7b3a2010-08-24 06:29:42 +00001522StmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) {
1523 ExprResult Res;
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001524 ConsumeToken(); // consume throw
Chris Lattnerdf195262007-10-09 17:51:17 +00001525 if (Tok.isNot(tok::semi)) {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001526 Res = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001527 if (Res.isInvalid()) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001528 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001529 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001530 }
1531 }
Ted Kremenek02418c72010-04-20 21:21:51 +00001532 // consume ';'
1533 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@throw");
John McCall9ae2f072010-08-23 23:25:46 +00001534 return Actions.ActOnObjCAtThrowStmt(atLoc, Res.take(), getCurScope());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001535}
1536
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001537/// objc-synchronized-statement:
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001538/// @synchronized '(' expression ')' compound-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001539///
John McCall60d7b3a2010-08-24 06:29:42 +00001540StmtResult
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001541Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) {
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001542 ConsumeToken(); // consume synchronized
1543 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001544 Diag(Tok, diag::err_expected_lparen_after) << "@synchronized";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001545 return StmtError();
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001546 }
1547 ConsumeParen(); // '('
John McCall60d7b3a2010-08-24 06:29:42 +00001548 ExprResult Res(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001549 if (Res.isInvalid()) {
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001550 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001551 return StmtError();
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001552 }
1553 if (Tok.isNot(tok::r_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001554 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001555 return StmtError();
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001556 }
1557 ConsumeParen(); // ')'
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001558 if (Tok.isNot(tok::l_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001559 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001560 return StmtError();
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001561 }
Steve Naroff3ac438c2008-06-04 20:36:13 +00001562 // Enter a scope to hold everything within the compound stmt. Compound
1563 // statements can always hold declarations.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001564 ParseScope BodyScope(this, Scope::DeclScope);
Steve Naroff3ac438c2008-06-04 20:36:13 +00001565
John McCall60d7b3a2010-08-24 06:29:42 +00001566 StmtResult SynchBody(ParseCompoundStatementBody());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001567
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001568 BodyScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001569 if (SynchBody.isInvalid())
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001570 SynchBody = Actions.ActOnNullStmt(Tok.getLocation());
John McCall9ae2f072010-08-23 23:25:46 +00001571 return Actions.ActOnObjCAtSynchronizedStmt(atLoc, Res.take(), SynchBody.take());
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001572}
1573
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001574/// objc-try-catch-statement:
1575/// @try compound-statement objc-catch-list[opt]
1576/// @try compound-statement objc-catch-list[opt] @finally compound-statement
1577///
1578/// objc-catch-list:
1579/// @catch ( parameter-declaration ) compound-statement
1580/// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1581/// catch-parameter-declaration:
1582/// parameter-declaration
1583/// '...' [OBJC2]
1584///
John McCall60d7b3a2010-08-24 06:29:42 +00001585StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001586 bool catch_or_finally_seen = false;
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001587
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001588 ConsumeToken(); // consume try
Chris Lattnerdf195262007-10-09 17:51:17 +00001589 if (Tok.isNot(tok::l_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001590 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001591 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001592 }
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001593 StmtVector CatchStmts(Actions);
John McCall60d7b3a2010-08-24 06:29:42 +00001594 StmtResult FinallyStmt;
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001595 ParseScope TryScope(this, Scope::DeclScope);
John McCall60d7b3a2010-08-24 06:29:42 +00001596 StmtResult TryBody(ParseCompoundStatementBody());
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001597 TryScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001598 if (TryBody.isInvalid())
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001599 TryBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redla55e52c2008-11-25 22:21:31 +00001600
Chris Lattnerdf195262007-10-09 17:51:17 +00001601 while (Tok.is(tok::at)) {
Chris Lattner6b884502008-03-10 06:06:04 +00001602 // At this point, we need to lookahead to determine if this @ is the start
1603 // of an @catch or @finally. We don't want to consume the @ token if this
1604 // is an @try or @encode or something else.
1605 Token AfterAt = GetLookAheadToken(1);
1606 if (!AfterAt.isObjCAtKeyword(tok::objc_catch) &&
1607 !AfterAt.isObjCAtKeyword(tok::objc_finally))
1608 break;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001609
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001610 SourceLocation AtCatchFinallyLoc = ConsumeToken();
Chris Lattnercb53b362007-12-27 19:57:00 +00001611 if (Tok.isObjCAtKeyword(tok::objc_catch)) {
John McCalld226f652010-08-21 09:40:31 +00001612 Decl *FirstPart = 0;
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001613 ConsumeToken(); // consume catch
Chris Lattnerdf195262007-10-09 17:51:17 +00001614 if (Tok.is(tok::l_paren)) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001615 ConsumeParen();
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001616 ParseScope CatchScope(this, Scope::DeclScope|Scope::AtCatchScope);
Chris Lattnerdf195262007-10-09 17:51:17 +00001617 if (Tok.isNot(tok::ellipsis)) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001618 DeclSpec DS;
1619 ParseDeclarationSpecifiers(DS);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001620 // For some odd reason, the name of the exception variable is
Mike Stump1eb44332009-09-09 15:08:12 +00001621 // optional. As a result, we need to use "PrototypeContext", because
Steve Naroff7ba138a2009-03-03 19:52:17 +00001622 // we must accept either 'declarator' or 'abstract-declarator' here.
1623 Declarator ParmDecl(DS, Declarator::PrototypeContext);
1624 ParseDeclarator(ParmDecl);
1625
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00001626 // Inform the actions module about the declarator, so it
Steve Naroff7ba138a2009-03-03 19:52:17 +00001627 // gets added to the current scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001628 FirstPart = Actions.ActOnObjCExceptionDecl(getCurScope(), ParmDecl);
Steve Naroff64515f32008-02-05 21:27:35 +00001629 } else
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001630 ConsumeToken(); // consume '...'
Mike Stump1eb44332009-09-09 15:08:12 +00001631
Steve Naroff93a25952009-04-07 22:56:58 +00001632 SourceLocation RParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +00001633
Steve Naroff93a25952009-04-07 22:56:58 +00001634 if (Tok.is(tok::r_paren))
1635 RParenLoc = ConsumeParen();
1636 else // Skip over garbage, until we get to ')'. Eat the ')'.
1637 SkipUntil(tok::r_paren, true, false);
1638
John McCall60d7b3a2010-08-24 06:29:42 +00001639 StmtResult CatchBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001640 if (Tok.is(tok::l_brace))
1641 CatchBody = ParseCompoundStatementBody();
1642 else
1643 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001644 if (CatchBody.isInvalid())
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001645 CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001646
John McCall60d7b3a2010-08-24 06:29:42 +00001647 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001648 RParenLoc,
1649 FirstPart,
John McCall9ae2f072010-08-23 23:25:46 +00001650 CatchBody.take());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001651 if (!Catch.isInvalid())
1652 CatchStmts.push_back(Catch.release());
1653
Steve Naroff64515f32008-02-05 21:27:35 +00001654 } else {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001655 Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after)
1656 << "@catch clause";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001657 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001658 }
1659 catch_or_finally_seen = true;
Chris Lattner6b884502008-03-10 06:06:04 +00001660 } else {
1661 assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?");
Steve Naroff64515f32008-02-05 21:27:35 +00001662 ConsumeToken(); // consume finally
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001663 ParseScope FinallyScope(this, Scope::DeclScope);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001664
John McCall60d7b3a2010-08-24 06:29:42 +00001665 StmtResult FinallyBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001666 if (Tok.is(tok::l_brace))
1667 FinallyBody = ParseCompoundStatementBody();
1668 else
1669 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001670 if (FinallyBody.isInvalid())
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001671 FinallyBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001672 FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001673 FinallyBody.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001674 catch_or_finally_seen = true;
1675 break;
1676 }
1677 }
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001678 if (!catch_or_finally_seen) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001679 Diag(atLoc, diag::err_missing_catch_finally);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001680 return StmtError();
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001681 }
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001682
John McCall9ae2f072010-08-23 23:25:46 +00001683 return Actions.ActOnObjCAtTryStmt(atLoc, TryBody.take(),
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001684 move_arg(CatchStmts),
John McCall9ae2f072010-08-23 23:25:46 +00001685 FinallyStmt.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001686}
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001687
Steve Naroff3536b442007-09-06 21:24:23 +00001688/// objc-method-def: objc-method-proto ';'[opt] '{' body '}'
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001689///
John McCalld226f652010-08-21 09:40:31 +00001690Decl *Parser::ParseObjCMethodDefinition() {
1691 Decl *MDecl = ParseObjCMethodPrototype(ObjCImpDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001692
John McCallf312b1e2010-08-26 23:41:50 +00001693 PrettyDeclStackTraceEntry CrashInfo(Actions, MDecl, Tok.getLocation(),
1694 "parsing Objective-C method");
Mike Stump1eb44332009-09-09 15:08:12 +00001695
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001696 // parse optional ';'
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001697 if (Tok.is(tok::semi)) {
Ted Kremenek496e45e2009-11-10 22:55:49 +00001698 if (ObjCImpDecl) {
1699 Diag(Tok, diag::warn_semicolon_before_method_body)
Douglas Gregor849b2432010-03-31 17:46:05 +00001700 << FixItHint::CreateRemoval(Tok.getLocation());
Ted Kremenek496e45e2009-11-10 22:55:49 +00001701 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001702 ConsumeToken();
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001703 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001704
Steve Naroff409be832007-11-11 19:54:21 +00001705 // We should have an opening brace now.
Chris Lattnerdf195262007-10-09 17:51:17 +00001706 if (Tok.isNot(tok::l_brace)) {
Steve Naroffda323ad2008-02-29 21:48:07 +00001707 Diag(Tok, diag::err_expected_method_body);
Mike Stump1eb44332009-09-09 15:08:12 +00001708
Steve Naroff409be832007-11-11 19:54:21 +00001709 // Skip over garbage, until we get to '{'. Don't eat the '{'.
1710 SkipUntil(tok::l_brace, true, true);
Mike Stump1eb44332009-09-09 15:08:12 +00001711
Steve Naroff409be832007-11-11 19:54:21 +00001712 // If we didn't find the '{', bail out.
1713 if (Tok.isNot(tok::l_brace))
John McCalld226f652010-08-21 09:40:31 +00001714 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001715 }
Steve Naroff409be832007-11-11 19:54:21 +00001716 SourceLocation BraceLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001717
Steve Naroff409be832007-11-11 19:54:21 +00001718 // Enter a scope for the method body.
Chris Lattner15faee12010-04-12 05:38:43 +00001719 ParseScope BodyScope(this,
1720 Scope::ObjCMethodScope|Scope::FnScope|Scope::DeclScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001721
Steve Naroff409be832007-11-11 19:54:21 +00001722 // Tell the actions module that we have entered a method definition with the
Steve Naroff394f3f42008-07-25 17:57:26 +00001723 // specified Declarator for the method.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001724 Actions.ActOnStartOfObjCMethodDef(getCurScope(), MDecl);
Sebastian Redl61364dd2008-12-11 19:30:53 +00001725
John McCall60d7b3a2010-08-24 06:29:42 +00001726 StmtResult FnBody(ParseCompoundStatementBody());
Sebastian Redl61364dd2008-12-11 19:30:53 +00001727
Steve Naroff409be832007-11-11 19:54:21 +00001728 // If the function body could not be parsed, make a bogus compoundstmt.
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001729 if (FnBody.isInvalid())
Sebastian Redla60528c2008-12-21 12:04:03 +00001730 FnBody = Actions.ActOnCompoundStmt(BraceLoc, BraceLoc,
1731 MultiStmtArg(Actions), false);
Sebastian Redl798d1192008-12-13 16:23:55 +00001732
Steve Naroff32ce8372009-03-02 22:00:56 +00001733 // TODO: Pass argument information.
John McCall9ae2f072010-08-23 23:25:46 +00001734 Actions.ActOnFinishFunctionBody(MDecl, FnBody.take());
Mike Stump1eb44332009-09-09 15:08:12 +00001735
Steve Naroff409be832007-11-11 19:54:21 +00001736 // Leave the function body scope.
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001737 BodyScope.Exit();
Sebastian Redl798d1192008-12-13 16:23:55 +00001738
Steve Naroff71c0a952007-11-13 23:01:27 +00001739 return MDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00001740}
Anders Carlsson55085182007-08-21 17:43:55 +00001741
John McCall60d7b3a2010-08-24 06:29:42 +00001742StmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00001743 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001744 Actions.CodeCompleteObjCAtStatement(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +00001745 ConsumeCodeCompletionToken();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00001746 return StmtError();
Chris Lattner5d803162009-12-07 16:33:19 +00001747 }
1748
1749 if (Tok.isObjCAtKeyword(tok::objc_try))
Chris Lattner6b884502008-03-10 06:06:04 +00001750 return ParseObjCTryStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00001751
1752 if (Tok.isObjCAtKeyword(tok::objc_throw))
Steve Naroff64515f32008-02-05 21:27:35 +00001753 return ParseObjCThrowStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00001754
1755 if (Tok.isObjCAtKeyword(tok::objc_synchronized))
Steve Naroff64515f32008-02-05 21:27:35 +00001756 return ParseObjCSynchronizedStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00001757
John McCall60d7b3a2010-08-24 06:29:42 +00001758 ExprResult Res(ParseExpressionWithLeadingAt(AtLoc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001759 if (Res.isInvalid()) {
Steve Naroff64515f32008-02-05 21:27:35 +00001760 // If the expression is invalid, skip ahead to the next semicolon. Not
1761 // doing this opens us up to the possibility of infinite loops if
1762 // ParseExpression does not consume any tokens.
1763 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001764 return StmtError();
Steve Naroff64515f32008-02-05 21:27:35 +00001765 }
Chris Lattner5d803162009-12-07 16:33:19 +00001766
Steve Naroff64515f32008-02-05 21:27:35 +00001767 // Otherwise, eat the semicolon.
1768 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
John McCall9ae2f072010-08-23 23:25:46 +00001769 return Actions.ActOnExprStmt(Actions.MakeFullExpr(Res.take()));
Steve Naroff64515f32008-02-05 21:27:35 +00001770}
1771
John McCall60d7b3a2010-08-24 06:29:42 +00001772ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
Anders Carlsson55085182007-08-21 17:43:55 +00001773 switch (Tok.getKind()) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00001774 case tok::code_completion:
Douglas Gregor23c94db2010-07-02 17:43:08 +00001775 Actions.CodeCompleteObjCAtExpression(getCurScope());
Douglas Gregordc845342010-05-25 05:58:43 +00001776 ConsumeCodeCompletionToken();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00001777 return ExprError();
1778
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00001779 case tok::string_literal: // primary-expression: string-literal
1780 case tok::wide_string_literal:
Sebastian Redl1d922962008-12-13 15:32:12 +00001781 return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc));
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00001782 default:
Chris Lattner4fef81d2008-08-05 06:19:09 +00001783 if (Tok.getIdentifierInfo() == 0)
Sebastian Redl1d922962008-12-13 15:32:12 +00001784 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
Sebastian Redl2f7ece72008-12-11 21:36:32 +00001785
Chris Lattner4fef81d2008-08-05 06:19:09 +00001786 switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
1787 case tok::objc_encode:
Sebastian Redl1d922962008-12-13 15:32:12 +00001788 return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00001789 case tok::objc_protocol:
Sebastian Redl1d922962008-12-13 15:32:12 +00001790 return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00001791 case tok::objc_selector:
Sebastian Redl1d922962008-12-13 15:32:12 +00001792 return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00001793 default:
Sebastian Redl1d922962008-12-13 15:32:12 +00001794 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
Chris Lattner4fef81d2008-08-05 06:19:09 +00001795 }
Anders Carlsson55085182007-08-21 17:43:55 +00001796 }
Anders Carlsson55085182007-08-21 17:43:55 +00001797}
1798
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001799/// \brirg Parse the receiver of an Objective-C++ message send.
1800///
1801/// This routine parses the receiver of a message send in
1802/// Objective-C++ either as a type or as an expression. Note that this
1803/// routine must not be called to parse a send to 'super', since it
1804/// has no way to return such a result.
1805///
1806/// \param IsExpr Whether the receiver was parsed as an expression.
1807///
1808/// \param TypeOrExpr If the receiver was parsed as an expression (\c
1809/// IsExpr is true), the parsed expression. If the receiver was parsed
1810/// as a type (\c IsExpr is false), the parsed type.
1811///
1812/// \returns True if an error occurred during parsing or semantic
1813/// analysis, in which case the arguments do not have valid
1814/// values. Otherwise, returns false for a successful parse.
1815///
1816/// objc-receiver: [C++]
1817/// 'super' [not parsed here]
1818/// expression
1819/// simple-type-specifier
1820/// typename-specifier
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001821bool Parser::ParseObjCXXMessageReceiver(bool &IsExpr, void *&TypeOrExpr) {
1822 if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1823 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope))
1824 TryAnnotateTypeOrScopeToken();
1825
1826 if (!isCXXSimpleTypeSpecifier()) {
1827 // objc-receiver:
1828 // expression
John McCall60d7b3a2010-08-24 06:29:42 +00001829 ExprResult Receiver = ParseExpression();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001830 if (Receiver.isInvalid())
1831 return true;
1832
1833 IsExpr = true;
1834 TypeOrExpr = Receiver.take();
1835 return false;
1836 }
1837
1838 // objc-receiver:
1839 // typename-specifier
1840 // simple-type-specifier
1841 // expression (that starts with one of the above)
1842 DeclSpec DS;
1843 ParseCXXSimpleTypeSpecifier(DS);
1844
1845 if (Tok.is(tok::l_paren)) {
1846 // If we see an opening parentheses at this point, we are
1847 // actually parsing an expression that starts with a
1848 // function-style cast, e.g.,
1849 //
1850 // postfix-expression:
1851 // simple-type-specifier ( expression-list [opt] )
1852 // typename-specifier ( expression-list [opt] )
1853 //
1854 // Parse the remainder of this case, then the (optional)
1855 // postfix-expression suffix, followed by the (optional)
1856 // right-hand side of the binary expression. We have an
1857 // instance method.
John McCall60d7b3a2010-08-24 06:29:42 +00001858 ExprResult Receiver = ParseCXXTypeConstructExpression(DS);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001859 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00001860 Receiver = ParsePostfixExpressionSuffix(Receiver.take());
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001861 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00001862 Receiver = ParseRHSOfBinaryExpression(Receiver.take(), prec::Comma);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001863 if (Receiver.isInvalid())
1864 return true;
1865
1866 IsExpr = true;
1867 TypeOrExpr = Receiver.take();
1868 return false;
1869 }
1870
1871 // We have a class message. Turn the simple-type-specifier or
1872 // typename-specifier we parsed into a type and parse the
1873 // remainder of the class message.
1874 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001875 TypeResult Type = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001876 if (Type.isInvalid())
1877 return true;
1878
1879 IsExpr = false;
John McCallb3d87482010-08-24 05:47:05 +00001880 TypeOrExpr = Type.get().getAsOpaquePtr();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001881 return false;
1882}
1883
Douglas Gregor1b730e82010-05-31 14:40:22 +00001884/// \brief Determine whether the parser is currently referring to a an
1885/// Objective-C message send, using a simplified heuristic to avoid overhead.
1886///
1887/// This routine will only return true for a subset of valid message-send
1888/// expressions.
1889bool Parser::isSimpleObjCMessageExpression() {
Chris Lattnerc59cb382010-05-31 18:18:22 +00001890 assert(Tok.is(tok::l_square) && getLang().ObjC1 &&
Douglas Gregor1b730e82010-05-31 14:40:22 +00001891 "Incorrect start for isSimpleObjCMessageExpression");
Douglas Gregor1b730e82010-05-31 14:40:22 +00001892 return GetLookAheadToken(1).is(tok::identifier) &&
1893 GetLookAheadToken(2).is(tok::identifier);
1894}
1895
Mike Stump1eb44332009-09-09 15:08:12 +00001896/// objc-message-expr:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00001897/// '[' objc-receiver objc-message-args ']'
1898///
Douglas Gregor2725ca82010-04-21 19:57:20 +00001899/// objc-receiver: [C]
Chris Lattnereb483eb2010-04-11 08:28:14 +00001900/// 'super'
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00001901/// expression
1902/// class-name
1903/// type-name
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001904///
John McCall60d7b3a2010-08-24 06:29:42 +00001905ExprResult Parser::ParseObjCMessageExpression() {
Chris Lattner699b6612008-01-25 18:59:06 +00001906 assert(Tok.is(tok::l_square) && "'[' expected");
1907 SourceLocation LBracLoc = ConsumeBracket(); // consume '['
1908
Douglas Gregor8e254cf2010-05-27 23:06:34 +00001909 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001910 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
Douglas Gregor8e254cf2010-05-27 23:06:34 +00001911 ConsumeCodeCompletionToken();
1912 SkipUntil(tok::r_square);
1913 return ExprError();
1914 }
1915
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001916 if (getLang().CPlusPlus) {
1917 // We completely separate the C and C++ cases because C++ requires
1918 // more complicated (read: slower) parsing.
1919
1920 // Handle send to super.
1921 // FIXME: This doesn't benefit from the same typo-correction we
1922 // get in Objective-C.
1923 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00001924 NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
John McCallb3d87482010-08-24 05:47:05 +00001925 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
1926 ParsedType(), 0);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001927
1928 // Parse the receiver, which is either a type or an expression.
1929 bool IsExpr;
1930 void *TypeOrExpr;
1931 if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
1932 SkipUntil(tok::r_square);
1933 return ExprError();
1934 }
1935
1936 if (IsExpr)
John McCallb3d87482010-08-24 05:47:05 +00001937 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
1938 ParsedType(),
John McCall9ae2f072010-08-23 23:25:46 +00001939 static_cast<Expr*>(TypeOrExpr));
Douglas Gregor6aa14d82010-04-21 22:36:40 +00001940
1941 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +00001942 ParsedType::getFromOpaquePtr(TypeOrExpr),
1943 0);
Chris Lattnerc59cb382010-05-31 18:18:22 +00001944 }
1945
1946 if (Tok.is(tok::identifier)) {
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00001947 IdentifierInfo *Name = Tok.getIdentifierInfo();
1948 SourceLocation NameLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00001949 ParsedType ReceiverType;
Douglas Gregor23c94db2010-07-02 17:43:08 +00001950 switch (Actions.getObjCMessageKind(getCurScope(), Name, NameLoc,
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00001951 Name == Ident_super,
Douglas Gregor1569f952010-04-21 20:38:13 +00001952 NextToken().is(tok::period),
1953 ReceiverType)) {
John McCallf312b1e2010-08-26 23:41:50 +00001954 case Sema::ObjCSuperMessage:
John McCallb3d87482010-08-24 05:47:05 +00001955 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
1956 ParsedType(), 0);
Douglas Gregor2725ca82010-04-21 19:57:20 +00001957
John McCallf312b1e2010-08-26 23:41:50 +00001958 case Sema::ObjCClassMessage:
Douglas Gregor1569f952010-04-21 20:38:13 +00001959 if (!ReceiverType) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00001960 SkipUntil(tok::r_square);
1961 return ExprError();
1962 }
1963
Douglas Gregor1569f952010-04-21 20:38:13 +00001964 ConsumeToken(); // the type name
1965
1966 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCall9ae2f072010-08-23 23:25:46 +00001967 ReceiverType, 0);
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00001968
John McCallf312b1e2010-08-26 23:41:50 +00001969 case Sema::ObjCInstanceMessage:
Douglas Gregor2725ca82010-04-21 19:57:20 +00001970 // Fall through to parse an expression.
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00001971 break;
Fariborz Jahaniand2869922009-04-08 19:50:10 +00001972 }
Chris Lattner699b6612008-01-25 18:59:06 +00001973 }
Chris Lattnereb483eb2010-04-11 08:28:14 +00001974
1975 // Otherwise, an arbitrary expression can be the receiver of a send.
John McCall60d7b3a2010-08-24 06:29:42 +00001976 ExprResult Res(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001977 if (Res.isInvalid()) {
Chris Lattner5c749422008-01-25 19:43:26 +00001978 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00001979 return move(Res);
Chris Lattner699b6612008-01-25 18:59:06 +00001980 }
Sebastian Redl1d922962008-12-13 15:32:12 +00001981
John McCallb3d87482010-08-24 05:47:05 +00001982 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
1983 ParsedType(), Res.take());
Chris Lattner699b6612008-01-25 18:59:06 +00001984}
Sebastian Redl1d922962008-12-13 15:32:12 +00001985
Douglas Gregor2725ca82010-04-21 19:57:20 +00001986/// \brief Parse the remainder of an Objective-C message following the
1987/// '[' objc-receiver.
1988///
1989/// This routine handles sends to super, class messages (sent to a
1990/// class name), and instance messages (sent to an object), and the
1991/// target is represented by \p SuperLoc, \p ReceiverType, or \p
1992/// ReceiverExpr, respectively. Only one of these parameters may have
1993/// a valid value.
1994///
1995/// \param LBracLoc The location of the opening '['.
1996///
1997/// \param SuperLoc If this is a send to 'super', the location of the
1998/// 'super' keyword that indicates a send to the superclass.
1999///
2000/// \param ReceiverType If this is a class message, the type of the
2001/// class we are sending a message to.
2002///
2003/// \param ReceiverExpr If this is an instance message, the expression
2004/// used to compute the receiver object.
Mike Stump1eb44332009-09-09 15:08:12 +00002005///
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002006/// objc-message-args:
2007/// objc-selector
2008/// objc-keywordarg-list
2009///
2010/// objc-keywordarg-list:
2011/// objc-keywordarg
2012/// objc-keywordarg-list objc-keywordarg
2013///
Mike Stump1eb44332009-09-09 15:08:12 +00002014/// objc-keywordarg:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002015/// selector-name[opt] ':' objc-keywordexpr
2016///
2017/// objc-keywordexpr:
2018/// nonempty-expr-list
2019///
2020/// nonempty-expr-list:
2021/// assignment-expression
2022/// nonempty-expr-list , assignment-expression
Sebastian Redl1d922962008-12-13 15:32:12 +00002023///
John McCall60d7b3a2010-08-24 06:29:42 +00002024ExprResult
Chris Lattner699b6612008-01-25 18:59:06 +00002025Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002026 SourceLocation SuperLoc,
John McCallb3d87482010-08-24 05:47:05 +00002027 ParsedType ReceiverType,
Sebastian Redl1d922962008-12-13 15:32:12 +00002028 ExprArg ReceiverExpr) {
Steve Naroffc4df6d22009-11-07 02:08:14 +00002029 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002030 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002031 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, 0, 0);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002032 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002033 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, 0, 0);
Steve Naroffc4df6d22009-11-07 02:08:14 +00002034 else
John McCall9ae2f072010-08-23 23:25:46 +00002035 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregord3c68542009-11-19 01:08:35 +00002036 0, 0);
Douglas Gregordc845342010-05-25 05:58:43 +00002037 ConsumeCodeCompletionToken();
Steve Naroffc4df6d22009-11-07 02:08:14 +00002038 }
Douglas Gregord3c68542009-11-19 01:08:35 +00002039
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002040 // Parse objc-selector
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00002041 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002042 IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
Steve Naroff68d331a2007-09-27 14:38:14 +00002043
Anders Carlssonff975cf2009-02-14 18:21:46 +00002044 SourceLocation SelectorLoc = Loc;
Mike Stump1eb44332009-09-09 15:08:12 +00002045
Steve Naroff68d331a2007-09-27 14:38:14 +00002046 llvm::SmallVector<IdentifierInfo *, 12> KeyIdents;
Sebastian Redla55e52c2008-11-25 22:21:31 +00002047 ExprVector KeyExprs(Actions);
Steve Naroff68d331a2007-09-27 14:38:14 +00002048
Chris Lattnerdf195262007-10-09 17:51:17 +00002049 if (Tok.is(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002050 while (1) {
2051 // Each iteration parses a single keyword argument.
Steve Naroff68d331a2007-09-27 14:38:14 +00002052 KeyIdents.push_back(selIdent);
Steve Naroff37387c92007-09-17 20:25:27 +00002053
Chris Lattnerdf195262007-10-09 17:51:17 +00002054 if (Tok.isNot(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002055 Diag(Tok, diag::err_expected_colon);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002056 // We must manually skip to a ']', otherwise the expression skipper will
2057 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2058 // the enclosing expression.
2059 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002060 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002061 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002062
Steve Naroff68d331a2007-09-27 14:38:14 +00002063 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00002064 /// Parse the expression after ':'
John McCall60d7b3a2010-08-24 06:29:42 +00002065 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002066 if (Res.isInvalid()) {
Chris Lattner4fef81d2008-08-05 06:19:09 +00002067 // We must manually skip to a ']', otherwise the expression skipper will
2068 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2069 // the enclosing expression.
2070 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002071 return move(Res);
Steve Naroff37387c92007-09-17 20:25:27 +00002072 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002073
Steve Naroff37387c92007-09-17 20:25:27 +00002074 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002075 KeyExprs.push_back(Res.release());
Sebastian Redl1d922962008-12-13 15:32:12 +00002076
Douglas Gregord3c68542009-11-19 01:08:35 +00002077 // Code completion after each argument.
2078 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002079 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002080 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002081 KeyIdents.data(),
2082 KeyIdents.size());
2083 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002084 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
Douglas Gregord3c68542009-11-19 01:08:35 +00002085 KeyIdents.data(),
2086 KeyIdents.size());
2087 else
John McCall9ae2f072010-08-23 23:25:46 +00002088 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregord3c68542009-11-19 01:08:35 +00002089 KeyIdents.data(),
2090 KeyIdents.size());
Douglas Gregordc845342010-05-25 05:58:43 +00002091 ConsumeCodeCompletionToken();
Douglas Gregord3c68542009-11-19 01:08:35 +00002092 }
2093
Steve Naroff37387c92007-09-17 20:25:27 +00002094 // Check for another keyword selector.
Chris Lattner2fc5c242009-04-11 18:13:45 +00002095 selIdent = ParseObjCSelectorPiece(Loc);
Chris Lattnerdf195262007-10-09 17:51:17 +00002096 if (!selIdent && Tok.isNot(tok::colon))
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002097 break;
2098 // We have a selector or a colon, continue parsing.
2099 }
2100 // Parse the, optional, argument list, comma separated.
Chris Lattnerdf195262007-10-09 17:51:17 +00002101 while (Tok.is(tok::comma)) {
Steve Naroff49f109c2007-11-15 13:05:42 +00002102 ConsumeToken(); // Eat the ','.
Mike Stump1eb44332009-09-09 15:08:12 +00002103 /// Parse the expression after ','
John McCall60d7b3a2010-08-24 06:29:42 +00002104 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002105 if (Res.isInvalid()) {
Chris Lattner4fef81d2008-08-05 06:19:09 +00002106 // We must manually skip to a ']', otherwise the expression skipper will
2107 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2108 // the enclosing expression.
2109 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002110 return move(Res);
Steve Naroff49f109c2007-11-15 13:05:42 +00002111 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002112
Steve Naroff49f109c2007-11-15 13:05:42 +00002113 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002114 KeyExprs.push_back(Res.release());
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002115 }
2116 } else if (!selIdent) {
2117 Diag(Tok, diag::err_expected_ident); // missing selector name.
Sebastian Redl1d922962008-12-13 15:32:12 +00002118
Chris Lattner4fef81d2008-08-05 06:19:09 +00002119 // We must manually skip to a ']', otherwise the expression skipper will
2120 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2121 // the enclosing expression.
2122 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002123 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002124 }
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002125
Chris Lattnerdf195262007-10-09 17:51:17 +00002126 if (Tok.isNot(tok::r_square)) {
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002127 if (Tok.is(tok::identifier))
2128 Diag(Tok, diag::err_expected_colon);
2129 else
2130 Diag(Tok, diag::err_expected_rsquare);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002131 // We must manually skip to a ']', otherwise the expression skipper will
2132 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2133 // the enclosing expression.
2134 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002135 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002136 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002137
Chris Lattner699b6612008-01-25 18:59:06 +00002138 SourceLocation RBracLoc = ConsumeBracket(); // consume ']'
Sebastian Redl1d922962008-12-13 15:32:12 +00002139
Steve Naroff29238a02007-10-05 18:42:47 +00002140 unsigned nKeys = KeyIdents.size();
Chris Lattnerff384912007-10-07 02:00:24 +00002141 if (nKeys == 0)
2142 KeyIdents.push_back(selIdent);
2143 Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002144
Douglas Gregor2725ca82010-04-21 19:57:20 +00002145 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002146 return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002147 LBracLoc, SelectorLoc, RBracLoc,
John McCallf312b1e2010-08-26 23:41:50 +00002148 MultiExprArg(Actions,
2149 KeyExprs.take(),
2150 KeyExprs.size()));
Douglas Gregor2725ca82010-04-21 19:57:20 +00002151 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002152 return Actions.ActOnClassMessage(getCurScope(), ReceiverType, Sel,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002153 LBracLoc, SelectorLoc, RBracLoc,
John McCallf312b1e2010-08-26 23:41:50 +00002154 MultiExprArg(Actions,
2155 KeyExprs.take(),
2156 KeyExprs.size()));
John McCall9ae2f072010-08-23 23:25:46 +00002157 return Actions.ActOnInstanceMessage(getCurScope(), ReceiverExpr, Sel,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002158 LBracLoc, SelectorLoc, RBracLoc,
John McCallf312b1e2010-08-26 23:41:50 +00002159 MultiExprArg(Actions,
2160 KeyExprs.take(),
2161 KeyExprs.size()));
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002162}
2163
John McCall60d7b3a2010-08-24 06:29:42 +00002164ExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) {
2165 ExprResult Res(ParseStringLiteralExpression());
Sebastian Redl1d922962008-12-13 15:32:12 +00002166 if (Res.isInvalid()) return move(Res);
2167
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002168 // @"foo" @"bar" is a valid concatenated string. Eat any subsequent string
2169 // expressions. At this point, we know that the only valid thing that starts
2170 // with '@' is an @"".
2171 llvm::SmallVector<SourceLocation, 4> AtLocs;
Sebastian Redla55e52c2008-11-25 22:21:31 +00002172 ExprVector AtStrings(Actions);
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002173 AtLocs.push_back(AtLoc);
Sebastian Redleffa8d12008-12-10 00:02:53 +00002174 AtStrings.push_back(Res.release());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002175
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002176 while (Tok.is(tok::at)) {
2177 AtLocs.push_back(ConsumeToken()); // eat the @.
Anders Carlsson55085182007-08-21 17:43:55 +00002178
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002179 // Invalid unless there is a string literal.
Chris Lattner97cf6eb2009-02-18 05:56:09 +00002180 if (!isTokenStringLiteral())
2181 return ExprError(Diag(Tok, diag::err_objc_concat_string));
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002182
John McCall60d7b3a2010-08-24 06:29:42 +00002183 ExprResult Lit(ParseStringLiteralExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002184 if (Lit.isInvalid())
Sebastian Redl1d922962008-12-13 15:32:12 +00002185 return move(Lit);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002186
Sebastian Redleffa8d12008-12-10 00:02:53 +00002187 AtStrings.push_back(Lit.release());
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002188 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002189
2190 return Owned(Actions.ParseObjCStringLiteral(&AtLocs[0], AtStrings.take(),
2191 AtStrings.size()));
Anders Carlsson55085182007-08-21 17:43:55 +00002192}
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002193
2194/// objc-encode-expression:
2195/// @encode ( type-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002196ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002197Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00002198 assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
Sebastian Redl1d922962008-12-13 15:32:12 +00002199
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002200 SourceLocation EncLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002201
Chris Lattner4fef81d2008-08-05 06:19:09 +00002202 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002203 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode");
2204
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002205 SourceLocation LParenLoc = ConsumeParen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002206
Douglas Gregor809070a2009-02-18 17:45:20 +00002207 TypeResult Ty = ParseTypeName();
Sebastian Redl1d922962008-12-13 15:32:12 +00002208
Anders Carlsson4988ae32007-08-23 15:31:37 +00002209 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Sebastian Redl1d922962008-12-13 15:32:12 +00002210
Douglas Gregor809070a2009-02-18 17:45:20 +00002211 if (Ty.isInvalid())
2212 return ExprError();
2213
Mike Stump1eb44332009-09-09 15:08:12 +00002214 return Owned(Actions.ParseObjCEncodeExpression(AtLoc, EncLoc, LParenLoc,
Douglas Gregor809070a2009-02-18 17:45:20 +00002215 Ty.get(), RParenLoc));
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002216}
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002217
2218/// objc-protocol-expression
2219/// @protocol ( protocol-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002220ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002221Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) {
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002222 SourceLocation ProtoLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002223
Chris Lattner4fef81d2008-08-05 06:19:09 +00002224 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002225 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol");
2226
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002227 SourceLocation LParenLoc = ConsumeParen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002228
Chris Lattner4fef81d2008-08-05 06:19:09 +00002229 if (Tok.isNot(tok::identifier))
Sebastian Redl1d922962008-12-13 15:32:12 +00002230 return ExprError(Diag(Tok, diag::err_expected_ident));
2231
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002232 IdentifierInfo *protocolId = Tok.getIdentifierInfo();
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002233 ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002234
Anders Carlsson4988ae32007-08-23 15:31:37 +00002235 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002236
Sebastian Redl1d922962008-12-13 15:32:12 +00002237 return Owned(Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc,
2238 LParenLoc, RParenLoc));
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002239}
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002240
2241/// objc-selector-expression
2242/// @selector '(' objc-keyword-selector ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002243ExprResult Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002244 SourceLocation SelectorLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002245
Chris Lattner4fef81d2008-08-05 06:19:09 +00002246 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002247 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector");
2248
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002249 llvm::SmallVector<IdentifierInfo *, 12> KeyIdents;
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002250 SourceLocation LParenLoc = ConsumeParen();
2251 SourceLocation sLoc;
Douglas Gregor458433d2010-08-26 15:07:07 +00002252
2253 if (Tok.is(tok::code_completion)) {
2254 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2255 KeyIdents.size());
2256 ConsumeCodeCompletionToken();
2257 MatchRHSPunctuation(tok::r_paren, LParenLoc);
2258 return ExprError();
2259 }
2260
Chris Lattner2fc5c242009-04-11 18:13:45 +00002261 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
Chris Lattner5add7542010-08-27 22:32:41 +00002262 if (!SelIdent && // missing selector name.
2263 Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002264 return ExprError(Diag(Tok, diag::err_expected_ident));
2265
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002266 KeyIdents.push_back(SelIdent);
Steve Naroff887407e2007-12-05 22:21:29 +00002267 unsigned nColons = 0;
2268 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002269 while (1) {
Chris Lattner5add7542010-08-27 22:32:41 +00002270 if (Tok.is(tok::coloncolon)) { // Handle :: in C++.
2271 ++nColons;
2272 KeyIdents.push_back(0);
2273 } else if (Tok.isNot(tok::colon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002274 return ExprError(Diag(Tok, diag::err_expected_colon));
2275
Chris Lattner5add7542010-08-27 22:32:41 +00002276 ++nColons;
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002277 ConsumeToken(); // Eat the ':'.
2278 if (Tok.is(tok::r_paren))
2279 break;
Douglas Gregor458433d2010-08-26 15:07:07 +00002280
2281 if (Tok.is(tok::code_completion)) {
2282 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2283 KeyIdents.size());
2284 ConsumeCodeCompletionToken();
2285 MatchRHSPunctuation(tok::r_paren, LParenLoc);
2286 return ExprError();
2287 }
2288
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002289 // Check for another keyword selector.
2290 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002291 SelIdent = ParseObjCSelectorPiece(Loc);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002292 KeyIdents.push_back(SelIdent);
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002293 if (!SelIdent && Tok.isNot(tok::colon))
2294 break;
2295 }
Steve Naroff887407e2007-12-05 22:21:29 +00002296 }
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002297 SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
Steve Naroff887407e2007-12-05 22:21:29 +00002298 Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002299 return Owned(Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc,
2300 LParenLoc, RParenLoc));
Gabor Greif58065b22007-10-19 15:38:32 +00002301 }