blob: ddb6a707f561a0bc606e0077087d05b1e3fd62e9 [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
John McCall19510852010-08-20 18:27:03 +000014#include "clang/Parse/Parser.h"
Douglas Gregor0fbda682010-09-15 14:51:05 +000015#include "RAIIObjectsForParser.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000016#include "clang/Basic/CharInfo.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000017#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000018#include "clang/Sema/DeclSpec.h"
John McCallf312b1e2010-08-26 23:41:50 +000019#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall19510852010-08-20 18:27:03 +000020#include "clang/Sema/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "llvm/ADT/SmallVector.h"
Fariborz Jahanian08602352012-09-17 19:15:26 +000022#include "llvm/ADT/StringExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
25
Chris Lattner891dca62008-12-08 21:53:24 +000026/// ParseObjCAtDirectives - Handle parts of the external-declaration production:
Reid Spencer5f016e22007-07-11 17:01:13 +000027/// external-declaration: [C99 6.9]
28/// [OBJC] objc-class-definition
Steve Naroff91fa0b72007-10-29 21:39:29 +000029/// [OBJC] objc-class-declaration
30/// [OBJC] objc-alias-declaration
31/// [OBJC] objc-protocol-definition
32/// [OBJC] objc-method-definition
33/// [OBJC] '@' 'end'
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000034Parser::DeclGroupPtrTy Parser::ParseObjCAtDirectives() {
Reid Spencer5f016e22007-07-11 17:01:13 +000035 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +000036
Douglas Gregorc464ae82009-12-07 09:27:33 +000037 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000038 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +000039 cutOffParsing();
40 return DeclGroupPtrTy();
Douglas Gregorc464ae82009-12-07 09:27:33 +000041 }
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000042
43 Decl *SingleDecl = 0;
Steve Naroff861cf3e2007-08-23 18:16:40 +000044 switch (Tok.getObjCKeywordID()) {
Chris Lattner5ffb14b2008-08-23 02:02:23 +000045 case tok::objc_class:
46 return ParseObjCAtClassDeclaration(AtLoc);
John McCall7f040a92010-12-24 02:08:15 +000047 case tok::objc_interface: {
John McCall0b7e6782011-03-24 11:26:52 +000048 ParsedAttributes attrs(AttrFactory);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000049 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs);
50 break;
John McCall7f040a92010-12-24 02:08:15 +000051 }
52 case tok::objc_protocol: {
John McCall0b7e6782011-03-24 11:26:52 +000053 ParsedAttributes attrs(AttrFactory);
Douglas Gregorbd9482d2012-01-01 21:23:57 +000054 return ParseObjCAtProtocolDeclaration(AtLoc, attrs);
John McCall7f040a92010-12-24 02:08:15 +000055 }
Chris Lattner5ffb14b2008-08-23 02:02:23 +000056 case tok::objc_implementation:
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +000057 return ParseObjCAtImplementationDeclaration(AtLoc);
Chris Lattner5ffb14b2008-08-23 02:02:23 +000058 case tok::objc_end:
Fariborz Jahanian140ab232011-08-31 17:37:55 +000059 return ParseObjCAtEndDeclaration(AtLoc);
Chris Lattner5ffb14b2008-08-23 02:02:23 +000060 case tok::objc_compatibility_alias:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000061 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
62 break;
Chris Lattner5ffb14b2008-08-23 02:02:23 +000063 case tok::objc_synthesize:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000064 SingleDecl = ParseObjCPropertySynthesize(AtLoc);
65 break;
Chris Lattner5ffb14b2008-08-23 02:02:23 +000066 case tok::objc_dynamic:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000067 SingleDecl = ParseObjCPropertyDynamic(AtLoc);
68 break;
Douglas Gregor1b257af2012-12-11 22:11:52 +000069 case tok::objc_import:
David Blaikie4e4d0842012-03-11 07:00:24 +000070 if (getLangOpts().Modules)
Douglas Gregor94ad28b2012-01-03 18:24:14 +000071 return ParseModuleImport(AtLoc);
72
73 // Fall through
74
Chris Lattner5ffb14b2008-08-23 02:02:23 +000075 default:
76 Diag(AtLoc, diag::err_unexpected_at);
77 SkipUntil(tok::semi);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000078 SingleDecl = 0;
79 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000080 }
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000081 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +000082}
83
84///
Mike Stump1eb44332009-09-09 15:08:12 +000085/// objc-class-declaration:
Reid Spencer5f016e22007-07-11 17:01:13 +000086/// '@' 'class' identifier-list ';'
Mike Stump1eb44332009-09-09 15:08:12 +000087///
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000088Parser::DeclGroupPtrTy
89Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
Reid Spencer5f016e22007-07-11 17:01:13 +000090 ConsumeToken(); // the identifier "class"
Chris Lattner5f9e2722011-07-23 10:55:15 +000091 SmallVector<IdentifierInfo *, 8> ClassNames;
92 SmallVector<SourceLocation, 8> ClassLocs;
Ted Kremenekc09cba62009-11-17 23:12:20 +000093
Mike Stump1eb44332009-09-09 15:08:12 +000094
Reid Spencer5f016e22007-07-11 17:01:13 +000095 while (1) {
Chris Lattnerdf195262007-10-09 17:51:17 +000096 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000097 Diag(Tok, diag::err_expected_ident);
98 SkipUntil(tok::semi);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000099 return Actions.ConvertDeclToDeclGroup(0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000100 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000101 ClassNames.push_back(Tok.getIdentifierInfo());
Ted Kremenekc09cba62009-11-17 23:12:20 +0000102 ClassLocs.push_back(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000103 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Chris Lattnerdf195262007-10-09 17:51:17 +0000105 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000107
Reid Spencer5f016e22007-07-11 17:01:13 +0000108 ConsumeToken();
109 }
Mike Stump1eb44332009-09-09 15:08:12 +0000110
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 // Consume the ';'.
112 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@class"))
Fariborz Jahanian95ed7782011-08-27 20:50:59 +0000113 return Actions.ConvertDeclToDeclGroup(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000114
Ted Kremenekc09cba62009-11-17 23:12:20 +0000115 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(),
116 ClassLocs.data(),
117 ClassNames.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000118}
119
Erik Verbruggend64251f2011-12-06 09:25:23 +0000120void Parser::CheckNestedObjCContexts(SourceLocation AtLoc)
121{
122 Sema::ObjCContainerKind ock = Actions.getObjCContainerKind();
123 if (ock == Sema::OCK_None)
124 return;
125
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +0000126 Decl *Decl = Actions.getObjCDeclContext();
127 if (CurParsedObjCImpl) {
128 CurParsedObjCImpl->finish(AtLoc);
129 } else {
130 Actions.ActOnAtEnd(getCurScope(), AtLoc);
131 }
Erik Verbruggend64251f2011-12-06 09:25:23 +0000132 Diag(AtLoc, diag::err_objc_missing_end)
133 << FixItHint::CreateInsertion(AtLoc, "@end\n");
134 if (Decl)
135 Diag(Decl->getLocStart(), diag::note_objc_container_start)
136 << (int) ock;
Erik Verbruggend64251f2011-12-06 09:25:23 +0000137}
138
Steve Naroffdac269b2007-08-20 21:31:48 +0000139///
140/// objc-interface:
141/// objc-class-interface-attributes[opt] objc-class-interface
142/// objc-category-interface
143///
144/// objc-class-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000145/// '@' 'interface' identifier objc-superclass[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000146/// objc-protocol-refs[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000147/// objc-class-instance-variables[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000148/// objc-interface-decl-list
149/// @end
150///
151/// objc-category-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000152/// '@' 'interface' identifier '(' identifier[opt] ')'
Steve Naroffdac269b2007-08-20 21:31:48 +0000153/// objc-protocol-refs[opt]
154/// objc-interface-decl-list
155/// @end
156///
157/// objc-superclass:
158/// ':' identifier
159///
160/// objc-class-interface-attributes:
161/// __attribute__((visibility("default")))
162/// __attribute__((visibility("hidden")))
163/// __attribute__((deprecated))
164/// __attribute__((unavailable))
165/// __attribute__((objc_exception)) - used by NSException on 64-bit
Patrick Beardb2f68202012-04-06 18:12:22 +0000166/// __attribute__((objc_root_class))
Steve Naroffdac269b2007-08-20 21:31:48 +0000167///
Erik Verbruggend64251f2011-12-06 09:25:23 +0000168Decl *Parser::ParseObjCAtInterfaceDeclaration(SourceLocation AtLoc,
John McCall7f040a92010-12-24 02:08:15 +0000169 ParsedAttributes &attrs) {
Steve Naroff861cf3e2007-08-23 18:16:40 +0000170 assert(Tok.isObjCAtKeyword(tok::objc_interface) &&
Steve Naroffdac269b2007-08-20 21:31:48 +0000171 "ParseObjCAtInterfaceDeclaration(): Expected @interface");
Erik Verbruggend64251f2011-12-06 09:25:23 +0000172 CheckNestedObjCContexts(AtLoc);
Steve Naroffdac269b2007-08-20 21:31:48 +0000173 ConsumeToken(); // the "interface" identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000175 // Code completion after '@interface'.
176 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000177 Actions.CodeCompleteObjCInterfaceDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000178 cutOffParsing();
179 return 0;
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000180 }
181
Chris Lattnerdf195262007-10-09 17:51:17 +0000182 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000183 Diag(Tok, diag::err_expected_ident); // missing class or category name.
John McCalld226f652010-08-21 09:40:31 +0000184 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000185 }
Fariborz Jahanian63e963c2009-11-16 18:57:01 +0000186
Steve Naroffdac269b2007-08-20 21:31:48 +0000187 // We have a class or category name - consume it.
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000188 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Steve Naroffdac269b2007-08-20 21:31:48 +0000189 SourceLocation nameLoc = ConsumeToken();
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000190 if (Tok.is(tok::l_paren) &&
191 !isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { // we have a category.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000192
193 BalancedDelimiterTracker T(*this, tok::l_paren);
194 T.consumeOpen();
195
196 SourceLocation categoryLoc;
Steve Naroffdac269b2007-08-20 21:31:48 +0000197 IdentifierInfo *categoryId = 0;
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000198 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000199 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000200 cutOffParsing();
201 return 0;
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000202 }
203
Steve Naroff527fe232007-08-23 19:56:30 +0000204 // For ObjC2, the category name is optional (not an error).
Chris Lattnerdf195262007-10-09 17:51:17 +0000205 if (Tok.is(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000206 categoryId = Tok.getIdentifierInfo();
207 categoryLoc = ConsumeToken();
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000208 }
David Blaikie4e4d0842012-03-11 07:00:24 +0000209 else if (!getLangOpts().ObjC2) {
Steve Naroff527fe232007-08-23 19:56:30 +0000210 Diag(Tok, diag::err_expected_ident); // missing category name.
John McCalld226f652010-08-21 09:40:31 +0000211 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000212 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000213
214 T.consumeClose();
215 if (T.getCloseLocation().isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000216 return 0;
Douglas Gregor13d05ac2011-09-23 19:19:41 +0000217
218 if (!attrs.empty()) { // categories don't support attributes.
219 Diag(nameLoc, diag::err_objc_no_attributes_on_category);
220 attrs.clear();
Steve Naroffdac269b2007-08-20 21:31:48 +0000221 }
Douglas Gregor13d05ac2011-09-23 19:19:41 +0000222
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000223 // Next, we need to check for any protocol references.
224 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000225 SmallVector<Decl *, 8> ProtocolRefs;
226 SmallVector<SourceLocation, 8> ProtocolLocs;
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000227 if (Tok.is(tok::less) &&
228 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000229 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000230 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000231
John McCalld226f652010-08-21 09:40:31 +0000232 Decl *CategoryType =
Erik Verbruggend64251f2011-12-06 09:25:23 +0000233 Actions.ActOnStartCategoryInterface(AtLoc,
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000234 nameId, nameLoc,
235 categoryId, categoryLoc,
236 ProtocolRefs.data(),
237 ProtocolRefs.size(),
238 ProtocolLocs.data(),
239 EndProtoLoc);
Fariborz Jahaniane6f07f52011-08-19 18:02:47 +0000240
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000241 if (Tok.is(tok::l_brace))
Erik Verbruggend64251f2011-12-06 09:25:23 +0000242 ParseObjCClassInstanceVariables(CategoryType, tok::objc_private, AtLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000243
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000244 ParseObjCInterfaceDeclList(tok::objc_not_keyword, CategoryType);
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000245 return CategoryType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000246 }
247 // Parse a class interface.
248 IdentifierInfo *superClassId = 0;
249 SourceLocation superClassLoc;
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000250
Chris Lattnerdf195262007-10-09 17:51:17 +0000251 if (Tok.is(tok::colon)) { // a super class is specified.
Steve Naroffdac269b2007-08-20 21:31:48 +0000252 ConsumeToken();
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000253
254 // Code completion of superclass names.
255 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000256 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000257 cutOffParsing();
258 return 0;
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000259 }
260
Chris Lattnerdf195262007-10-09 17:51:17 +0000261 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000262 Diag(Tok, diag::err_expected_ident); // missing super class name.
John McCalld226f652010-08-21 09:40:31 +0000263 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000264 }
265 superClassId = Tok.getIdentifierInfo();
266 superClassLoc = ConsumeToken();
267 }
268 // Next, we need to check for any protocol references.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000269 SmallVector<Decl *, 8> ProtocolRefs;
270 SmallVector<SourceLocation, 8> ProtocolLocs;
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000271 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner06036d32008-07-26 04:13:19 +0000272 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000273 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
274 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000275 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000276
John McCalld226f652010-08-21 09:40:31 +0000277 Decl *ClsType =
Erik Verbruggend64251f2011-12-06 09:25:23 +0000278 Actions.ActOnStartClassInterface(AtLoc, nameId, nameLoc,
Chris Lattner06036d32008-07-26 04:13:19 +0000279 superClassId, superClassLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +0000280 ProtocolRefs.data(), ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +0000281 ProtocolLocs.data(),
John McCall7f040a92010-12-24 02:08:15 +0000282 EndProtoLoc, attrs.getList());
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Chris Lattnerdf195262007-10-09 17:51:17 +0000284 if (Tok.is(tok::l_brace))
Erik Verbruggend64251f2011-12-06 09:25:23 +0000285 ParseObjCClassInstanceVariables(ClsType, tok::objc_protected, AtLoc);
Steve Naroffdac269b2007-08-20 21:31:48 +0000286
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000287 ParseObjCInterfaceDeclList(tok::objc_interface, ClsType);
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000288 return ClsType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000289}
290
John McCalld0014542009-12-03 22:31:13 +0000291/// The Objective-C property callback. This should be defined where
292/// it's used, but instead it's been lifted to here to support VS2005.
293struct Parser::ObjCPropertyCallback : FieldCallback {
David Blaikie99ba9e32011-12-20 02:48:34 +0000294private:
295 virtual void anchor();
296public:
John McCalld0014542009-12-03 22:31:13 +0000297 Parser &P;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000298 SmallVectorImpl<Decl *> &Props;
John McCalld0014542009-12-03 22:31:13 +0000299 ObjCDeclSpec &OCDS;
300 SourceLocation AtLoc;
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000301 SourceLocation LParenLoc;
John McCalld0014542009-12-03 22:31:13 +0000302 tok::ObjCKeywordKind MethodImplKind;
303
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000304 ObjCPropertyCallback(Parser &P,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000305 SmallVectorImpl<Decl *> &Props,
John McCalld0014542009-12-03 22:31:13 +0000306 ObjCDeclSpec &OCDS, SourceLocation AtLoc,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000307 SourceLocation LParenLoc,
John McCalld0014542009-12-03 22:31:13 +0000308 tok::ObjCKeywordKind MethodImplKind) :
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000309 P(P), Props(Props), OCDS(OCDS), AtLoc(AtLoc), LParenLoc(LParenLoc),
John McCalld0014542009-12-03 22:31:13 +0000310 MethodImplKind(MethodImplKind) {
311 }
312
Eli Friedmandcdff462012-08-08 23:53:27 +0000313 void invoke(ParsingFieldDeclarator &FD) {
John McCalld0014542009-12-03 22:31:13 +0000314 if (FD.D.getIdentifier() == 0) {
315 P.Diag(AtLoc, diag::err_objc_property_requires_field_name)
316 << FD.D.getSourceRange();
Eli Friedmandcdff462012-08-08 23:53:27 +0000317 return;
John McCalld0014542009-12-03 22:31:13 +0000318 }
319 if (FD.BitfieldSize) {
320 P.Diag(AtLoc, diag::err_objc_property_bitfield)
321 << FD.D.getSourceRange();
Eli Friedmandcdff462012-08-08 23:53:27 +0000322 return;
John McCalld0014542009-12-03 22:31:13 +0000323 }
324
325 // Install the property declarator into interfaceDecl.
326 IdentifierInfo *SelName =
327 OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier();
328
329 Selector GetterSel =
330 P.PP.getSelectorTable().getNullarySelector(SelName);
331 IdentifierInfo *SetterName = OCDS.getSetterName();
332 Selector SetterSel;
333 if (SetterName)
334 SetterSel = P.PP.getSelectorTable().getSelector(1, &SetterName);
335 else
336 SetterSel = SelectorTable::constructSetterName(P.PP.getIdentifierTable(),
337 P.PP.getSelectorTable(),
338 FD.D.getIdentifier());
339 bool isOverridingProperty = false;
John McCalld226f652010-08-21 09:40:31 +0000340 Decl *Property =
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000341 P.Actions.ActOnProperty(P.getCurScope(), AtLoc, LParenLoc,
342 FD, OCDS,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000343 GetterSel, SetterSel,
John McCalld0014542009-12-03 22:31:13 +0000344 &isOverridingProperty,
345 MethodImplKind);
346 if (!isOverridingProperty)
347 Props.push_back(Property);
348
Eli Friedmanf66a0dd2012-08-08 23:04:35 +0000349 FD.complete(Property);
John McCalld0014542009-12-03 22:31:13 +0000350 }
351};
352
David Blaikie99ba9e32011-12-20 02:48:34 +0000353void Parser::ObjCPropertyCallback::anchor() {
354}
355
Steve Naroffdac269b2007-08-20 21:31:48 +0000356/// objc-interface-decl-list:
357/// empty
Steve Naroffdac269b2007-08-20 21:31:48 +0000358/// objc-interface-decl-list objc-property-decl [OBJC2]
Steve Naroff294494e2007-08-22 16:35:03 +0000359/// objc-interface-decl-list objc-method-requirement [OBJC2]
Steve Naroff3536b442007-09-06 21:24:23 +0000360/// objc-interface-decl-list objc-method-proto ';'
Steve Naroffdac269b2007-08-20 21:31:48 +0000361/// objc-interface-decl-list declaration
362/// objc-interface-decl-list ';'
363///
Steve Naroff294494e2007-08-22 16:35:03 +0000364/// objc-method-requirement: [OBJC2]
365/// @required
366/// @optional
367///
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000368void Parser::ParseObjCInterfaceDeclList(tok::ObjCKeywordKind contextKey,
369 Decl *CDecl) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000370 SmallVector<Decl *, 32> allMethods;
371 SmallVector<Decl *, 16> allProperties;
372 SmallVector<DeclGroupPtrTy, 8> allTUVariables;
Fariborz Jahanian00933592007-09-18 00:25:23 +0000373 tok::ObjCKeywordKind MethodImplKind = tok::objc_not_keyword;
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Ted Kremenek782f2f52010-01-07 01:20:12 +0000375 SourceRange AtEnd;
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000376
Steve Naroff294494e2007-08-22 16:35:03 +0000377 while (1) {
Chris Lattnere82a10f2008-10-20 05:46:22 +0000378 // If this is a method prototype, parse it.
Chris Lattnerdf195262007-10-09 17:51:17 +0000379 if (Tok.is(tok::minus) || Tok.is(tok::plus)) {
Fariborz Jahaniand30ec702012-07-26 17:32:28 +0000380 if (Decl *methodPrototype =
381 ParseObjCMethodPrototype(MethodImplKind, false))
382 allMethods.push_back(methodPrototype);
Steve Naroff3536b442007-09-06 21:24:23 +0000383 // Consume the ';' here, since ParseObjCMethodPrototype() is re-used for
384 // method definitions.
Argyrios Kyrtzidis0db9f4d2011-12-17 04:13:22 +0000385 if (ExpectAndConsumeSemi(diag::err_expected_semi_after_method_proto)) {
386 // We didn't find a semi and we error'ed out. Skip until a ';' or '@'.
387 SkipUntil(tok::at, /*StopAtSemi=*/true, /*DontConsume=*/true);
388 if (Tok.is(tok::semi))
389 ConsumeToken();
390 }
Steve Naroff294494e2007-08-22 16:35:03 +0000391 continue;
392 }
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000393 if (Tok.is(tok::l_paren)) {
394 Diag(Tok, diag::err_expected_minus_or_plus);
John McCalld226f652010-08-21 09:40:31 +0000395 ParseObjCMethodDecl(Tok.getLocation(),
396 tok::minus,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000397 MethodImplKind, false);
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000398 continue;
399 }
Chris Lattnere82a10f2008-10-20 05:46:22 +0000400 // Ignore excess semicolons.
401 if (Tok.is(tok::semi)) {
Steve Naroff294494e2007-08-22 16:35:03 +0000402 ConsumeToken();
Chris Lattnere82a10f2008-10-20 05:46:22 +0000403 continue;
404 }
Mike Stump1eb44332009-09-09 15:08:12 +0000405
Chris Lattnerbc662af2008-10-20 06:10:06 +0000406 // If we got to the end of the file, exit the loop.
Chris Lattnere82a10f2008-10-20 05:46:22 +0000407 if (Tok.is(tok::eof))
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000408 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000410 // Code completion within an Objective-C interface.
411 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000412 Actions.CodeCompleteOrdinaryName(getCurScope(),
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +0000413 CurParsedObjCImpl? Sema::PCC_ObjCImplementation
John McCallf312b1e2010-08-26 23:41:50 +0000414 : Sema::PCC_ObjCInterface);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000415 return cutOffParsing();
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000416 }
417
Chris Lattnere82a10f2008-10-20 05:46:22 +0000418 // If we don't have an @ directive, parse it as a function definition.
419 if (Tok.isNot(tok::at)) {
Chris Lattner1fd80112009-01-09 04:34:13 +0000420 // The code below does not consume '}'s because it is afraid of eating the
421 // end of a namespace. Because of the way this code is structured, an
422 // erroneous r_brace would cause an infinite loop if not handled here.
423 if (Tok.is(tok::r_brace))
424 break;
Sean Hunt2edf0a22012-06-23 05:07:58 +0000425 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000426 allTUVariables.push_back(ParseDeclarationOrFunctionDefinition(attrs));
Chris Lattnere82a10f2008-10-20 05:46:22 +0000427 continue;
428 }
Mike Stump1eb44332009-09-09 15:08:12 +0000429
Chris Lattnere82a10f2008-10-20 05:46:22 +0000430 // Otherwise, we have an @ directive, eat the @.
431 SourceLocation AtLoc = ConsumeToken(); // the "@"
Douglas Gregorc464ae82009-12-07 09:27:33 +0000432 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000433 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000434 return cutOffParsing();
Douglas Gregorc464ae82009-12-07 09:27:33 +0000435 }
436
Chris Lattnera2449b22008-10-20 05:57:40 +0000437 tok::ObjCKeywordKind DirectiveKind = Tok.getObjCKeywordID();
Mike Stump1eb44332009-09-09 15:08:12 +0000438
Chris Lattnera2449b22008-10-20 05:57:40 +0000439 if (DirectiveKind == tok::objc_end) { // @end -> terminate list
Ted Kremenek782f2f52010-01-07 01:20:12 +0000440 AtEnd.setBegin(AtLoc);
441 AtEnd.setEnd(Tok.getLocation());
Chris Lattnere82a10f2008-10-20 05:46:22 +0000442 break;
Douglas Gregorc3d43b72010-03-16 06:04:47 +0000443 } else if (DirectiveKind == tok::objc_not_keyword) {
444 Diag(Tok, diag::err_objc_unknown_at);
445 SkipUntil(tok::semi);
446 continue;
Chris Lattnerbc662af2008-10-20 06:10:06 +0000447 }
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Chris Lattnerbc662af2008-10-20 06:10:06 +0000449 // Eat the identifier.
450 ConsumeToken();
451
Chris Lattnera2449b22008-10-20 05:57:40 +0000452 switch (DirectiveKind) {
453 default:
Chris Lattnerbc662af2008-10-20 06:10:06 +0000454 // FIXME: If someone forgets an @end on a protocol, this loop will
455 // continue to eat up tons of stuff and spew lots of nonsense errors. It
456 // would probably be better to bail out if we saw an @class or @interface
457 // or something like that.
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000458 Diag(AtLoc, diag::err_objc_illegal_interface_qual);
Chris Lattnerbc662af2008-10-20 06:10:06 +0000459 // Skip until we see an '@' or '}' or ';'.
Chris Lattnera2449b22008-10-20 05:57:40 +0000460 SkipUntil(tok::r_brace, tok::at);
461 break;
Fariborz Jahanian46d545e2010-11-02 00:44:43 +0000462
463 case tok::objc_implementation:
Fariborz Jahaniandf81c2c2010-11-09 20:38:00 +0000464 case tok::objc_interface:
Erik Verbruggend64251f2011-12-06 09:25:23 +0000465 Diag(AtLoc, diag::err_objc_missing_end)
466 << FixItHint::CreateInsertion(AtLoc, "@end\n");
467 Diag(CDecl->getLocStart(), diag::note_objc_container_start)
468 << (int) Actions.getObjCContainerKind();
Fariborz Jahanian46d545e2010-11-02 00:44:43 +0000469 ConsumeToken();
470 break;
471
Chris Lattnera2449b22008-10-20 05:57:40 +0000472 case tok::objc_required:
Chris Lattnera2449b22008-10-20 05:57:40 +0000473 case tok::objc_optional:
Chris Lattnera2449b22008-10-20 05:57:40 +0000474 // This is only valid on protocols.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000475 // FIXME: Should this check for ObjC2 being enabled?
Chris Lattnere82a10f2008-10-20 05:46:22 +0000476 if (contextKey != tok::objc_protocol)
Chris Lattnerbc662af2008-10-20 06:10:06 +0000477 Diag(AtLoc, diag::err_objc_directive_only_in_protocol);
Chris Lattnera2449b22008-10-20 05:57:40 +0000478 else
Chris Lattnerbc662af2008-10-20 06:10:06 +0000479 MethodImplKind = DirectiveKind;
Chris Lattnera2449b22008-10-20 05:57:40 +0000480 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000481
Chris Lattnera2449b22008-10-20 05:57:40 +0000482 case tok::objc_property:
David Blaikie4e4d0842012-03-11 07:00:24 +0000483 if (!getLangOpts().ObjC2)
Chris Lattnerb321c0c2010-12-17 05:40:22 +0000484 Diag(AtLoc, diag::err_objc_properties_require_objc2);
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000485
Chris Lattnere82a10f2008-10-20 05:46:22 +0000486 ObjCDeclSpec OCDS;
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000487 SourceLocation LParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +0000488 // Parse property attribute list, if any.
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000489 if (Tok.is(tok::l_paren)) {
490 LParenLoc = Tok.getLocation();
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000491 ParseObjCPropertyAttribute(OCDS);
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000492 }
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000494 ObjCPropertyCallback Callback(*this, allProperties,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000495 OCDS, AtLoc, LParenLoc, MethodImplKind);
John McCallbdd563e2009-11-03 02:38:08 +0000496
Chris Lattnere82a10f2008-10-20 05:46:22 +0000497 // Parse all the comma separated declarators.
Eli Friedmanf66a0dd2012-08-08 23:04:35 +0000498 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +0000499 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +0000500
John McCall7da19ea2011-03-26 01:53:26 +0000501 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
Chris Lattnera2449b22008-10-20 05:57:40 +0000502 break;
Steve Narofff28b2642007-09-05 23:30:30 +0000503 }
Steve Naroff294494e2007-08-22 16:35:03 +0000504 }
Chris Lattnerbc662af2008-10-20 06:10:06 +0000505
506 // We break out of the big loop in two cases: when we see @end or when we see
507 // EOF. In the former case, eat the @end. In the later case, emit an error.
Douglas Gregorc464ae82009-12-07 09:27:33 +0000508 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000509 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000510 return cutOffParsing();
Erik Verbruggend64251f2011-12-06 09:25:23 +0000511 } else if (Tok.isObjCAtKeyword(tok::objc_end)) {
Chris Lattnerbc662af2008-10-20 06:10:06 +0000512 ConsumeToken(); // the "end" identifier
Erik Verbruggend64251f2011-12-06 09:25:23 +0000513 } else {
514 Diag(Tok, diag::err_objc_missing_end)
515 << FixItHint::CreateInsertion(Tok.getLocation(), "\n@end\n");
516 Diag(CDecl->getLocStart(), diag::note_objc_container_start)
517 << (int) Actions.getObjCContainerKind();
518 AtEnd.setBegin(Tok.getLocation());
519 AtEnd.setEnd(Tok.getLocation());
520 }
Mike Stump1eb44332009-09-09 15:08:12 +0000521
Chris Lattnera2449b22008-10-20 05:57:40 +0000522 // Insert collected methods declarations into the @interface object.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000523 // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000524 Actions.ActOnAtEnd(getCurScope(), AtEnd,
Mike Stump1eb44332009-09-09 15:08:12 +0000525 allMethods.data(), allMethods.size(),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000526 allProperties.data(), allProperties.size(),
527 allTUVariables.data(), allTUVariables.size());
Steve Naroff294494e2007-08-22 16:35:03 +0000528}
529
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000530/// Parse property attribute declarations.
531///
532/// property-attr-decl: '(' property-attrlist ')'
533/// property-attrlist:
534/// property-attribute
535/// property-attrlist ',' property-attribute
536/// property-attribute:
537/// getter '=' identifier
538/// setter '=' identifier ':'
539/// readonly
540/// readwrite
541/// assign
542/// retain
543/// copy
544/// nonatomic
John McCallf85e1932011-06-15 23:02:42 +0000545/// atomic
546/// strong
547/// weak
548/// unsafe_unretained
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000549///
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000550void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000551 assert(Tok.getKind() == tok::l_paren);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000552 BalancedDelimiterTracker T(*this, tok::l_paren);
553 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000555 while (1) {
Steve Naroffece8e712009-10-08 21:55:05 +0000556 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000557 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000558 return cutOffParsing();
Steve Naroffece8e712009-10-08 21:55:05 +0000559 }
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000560 const IdentifierInfo *II = Tok.getIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000562 // If this is not an identifier at all, bail out early.
563 if (II == 0) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000564 T.consumeClose();
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000565 return;
566 }
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Chris Lattner156b0612008-10-20 07:37:22 +0000568 SourceLocation AttrName = ConsumeToken(); // consume last attribute name
Mike Stump1eb44332009-09-09 15:08:12 +0000569
Chris Lattner92e62b02008-11-20 04:42:34 +0000570 if (II->isStr("readonly"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000571 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
Chris Lattner92e62b02008-11-20 04:42:34 +0000572 else if (II->isStr("assign"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000573 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
John McCallf85e1932011-06-15 23:02:42 +0000574 else if (II->isStr("unsafe_unretained"))
575 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained);
Chris Lattner92e62b02008-11-20 04:42:34 +0000576 else if (II->isStr("readwrite"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000577 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
Chris Lattner92e62b02008-11-20 04:42:34 +0000578 else if (II->isStr("retain"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000579 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
John McCallf85e1932011-06-15 23:02:42 +0000580 else if (II->isStr("strong"))
581 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_strong);
Chris Lattner92e62b02008-11-20 04:42:34 +0000582 else if (II->isStr("copy"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000583 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_copy);
Chris Lattner92e62b02008-11-20 04:42:34 +0000584 else if (II->isStr("nonatomic"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000585 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nonatomic);
Fariborz Jahanian45937ae2011-06-11 00:45:12 +0000586 else if (II->isStr("atomic"))
587 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_atomic);
John McCallf85e1932011-06-15 23:02:42 +0000588 else if (II->isStr("weak"))
589 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_weak);
Chris Lattner92e62b02008-11-20 04:42:34 +0000590 else if (II->isStr("getter") || II->isStr("setter")) {
Anders Carlsson42499be2010-10-02 17:45:21 +0000591 bool IsSetter = II->getNameStart()[0] == 's';
592
Chris Lattnere00da7c2008-10-20 07:39:53 +0000593 // getter/setter require extra treatment.
Anders Carlsson42499be2010-10-02 17:45:21 +0000594 unsigned DiagID = IsSetter ? diag::err_objc_expected_equal_for_setter :
595 diag::err_objc_expected_equal_for_getter;
596
597 if (ExpectAndConsume(tok::equal, DiagID, "", tok::r_paren))
Chris Lattnerdd5b5f22008-10-20 07:00:43 +0000598 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000599
Douglas Gregor4ad96852009-11-19 07:41:15 +0000600 if (Tok.is(tok::code_completion)) {
Anders Carlsson42499be2010-10-02 17:45:21 +0000601 if (IsSetter)
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000602 Actions.CodeCompleteObjCPropertySetter(getCurScope());
Douglas Gregor4ad96852009-11-19 07:41:15 +0000603 else
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000604 Actions.CodeCompleteObjCPropertyGetter(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000605 return cutOffParsing();
Douglas Gregor4ad96852009-11-19 07:41:15 +0000606 }
607
Anders Carlsson42499be2010-10-02 17:45:21 +0000608
609 SourceLocation SelLoc;
610 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(SelLoc);
611
612 if (!SelIdent) {
613 Diag(Tok, diag::err_objc_expected_selector_for_getter_setter)
614 << IsSetter;
Chris Lattner8ca329c2008-10-20 07:24:39 +0000615 SkipUntil(tok::r_paren);
616 return;
617 }
Mike Stump1eb44332009-09-09 15:08:12 +0000618
Anders Carlsson42499be2010-10-02 17:45:21 +0000619 if (IsSetter) {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000620 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_setter);
Anders Carlsson42499be2010-10-02 17:45:21 +0000621 DS.setSetterName(SelIdent);
Mike Stump1eb44332009-09-09 15:08:12 +0000622
Fariborz Jahaniane0097db2010-02-15 22:20:11 +0000623 if (ExpectAndConsume(tok::colon,
624 diag::err_expected_colon_after_setter_name, "",
Chris Lattner156b0612008-10-20 07:37:22 +0000625 tok::r_paren))
Chris Lattner8ca329c2008-10-20 07:24:39 +0000626 return;
Chris Lattner8ca329c2008-10-20 07:24:39 +0000627 } else {
628 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_getter);
Anders Carlsson42499be2010-10-02 17:45:21 +0000629 DS.setGetterName(SelIdent);
Chris Lattner8ca329c2008-10-20 07:24:39 +0000630 }
Chris Lattnere00da7c2008-10-20 07:39:53 +0000631 } else {
Chris Lattnera9500f02008-11-19 07:49:38 +0000632 Diag(AttrName, diag::err_objc_expected_property_attr) << II;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000633 SkipUntil(tok::r_paren);
634 return;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000635 }
Mike Stump1eb44332009-09-09 15:08:12 +0000636
Chris Lattner156b0612008-10-20 07:37:22 +0000637 if (Tok.isNot(tok::comma))
638 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Chris Lattner156b0612008-10-20 07:37:22 +0000640 ConsumeToken();
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000641 }
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000643 T.consumeClose();
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000644}
645
Steve Naroff3536b442007-09-06 21:24:23 +0000646/// objc-method-proto:
Mike Stump1eb44332009-09-09 15:08:12 +0000647/// objc-instance-method objc-method-decl objc-method-attributes[opt]
Steve Naroff3536b442007-09-06 21:24:23 +0000648/// objc-class-method objc-method-decl objc-method-attributes[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000649///
650/// objc-instance-method: '-'
651/// objc-class-method: '+'
652///
Steve Naroff4985ace2007-08-22 18:35:33 +0000653/// objc-method-attributes: [OBJC2]
654/// __attribute__((deprecated))
655///
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000656Decl *Parser::ParseObjCMethodPrototype(tok::ObjCKeywordKind MethodImplKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000657 bool MethodDefinition) {
Chris Lattnerdf195262007-10-09 17:51:17 +0000658 assert((Tok.is(tok::minus) || Tok.is(tok::plus)) && "expected +/-");
Steve Naroff294494e2007-08-22 16:35:03 +0000659
Mike Stump1eb44332009-09-09 15:08:12 +0000660 tok::TokenKind methodType = Tok.getKind();
Steve Naroffbef11852007-10-26 20:53:56 +0000661 SourceLocation mLoc = ConsumeToken();
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000662 Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000663 MethodDefinition);
Steve Naroff3536b442007-09-06 21:24:23 +0000664 // Since this rule is used for both method declarations and definitions,
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000665 // the caller is (optionally) responsible for consuming the ';'.
Steve Narofff28b2642007-09-05 23:30:30 +0000666 return MDecl;
Steve Naroff294494e2007-08-22 16:35:03 +0000667}
668
669/// objc-selector:
670/// identifier
671/// one of
672/// enum struct union if else while do for switch case default
673/// break continue return goto asm sizeof typeof __alignof
674/// unsigned long const short volatile signed restrict _Complex
675/// in out inout bycopy byref oneway int char float double void _Bool
676///
Chris Lattner2fc5c242009-04-11 18:13:45 +0000677IdentifierInfo *Parser::ParseObjCSelectorPiece(SourceLocation &SelectorLoc) {
Fariborz Jahanianbe747402010-09-03 01:26:16 +0000678
Chris Lattnerff384912007-10-07 02:00:24 +0000679 switch (Tok.getKind()) {
680 default:
681 return 0;
Fariborz Jahanianafbc6812010-09-03 17:33:04 +0000682 case tok::ampamp:
683 case tok::ampequal:
684 case tok::amp:
685 case tok::pipe:
686 case tok::tilde:
687 case tok::exclaim:
688 case tok::exclaimequal:
689 case tok::pipepipe:
690 case tok::pipeequal:
691 case tok::caret:
692 case tok::caretequal: {
Fariborz Jahanian3846ca22010-09-03 18:01:09 +0000693 std::string ThisTok(PP.getSpelling(Tok));
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000694 if (isLetter(ThisTok[0])) {
Fariborz Jahanianafbc6812010-09-03 17:33:04 +0000695 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok.data());
696 Tok.setKind(tok::identifier);
697 SelectorLoc = ConsumeToken();
698 return II;
699 }
700 return 0;
701 }
702
Chris Lattnerff384912007-10-07 02:00:24 +0000703 case tok::identifier:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000704 case tok::kw_asm:
Chris Lattnerff384912007-10-07 02:00:24 +0000705 case tok::kw_auto:
Chris Lattner9298d962007-11-15 05:25:19 +0000706 case tok::kw_bool:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000707 case tok::kw_break:
708 case tok::kw_case:
709 case tok::kw_catch:
710 case tok::kw_char:
711 case tok::kw_class:
712 case tok::kw_const:
713 case tok::kw_const_cast:
714 case tok::kw_continue:
715 case tok::kw_default:
716 case tok::kw_delete:
717 case tok::kw_do:
718 case tok::kw_double:
719 case tok::kw_dynamic_cast:
720 case tok::kw_else:
721 case tok::kw_enum:
722 case tok::kw_explicit:
723 case tok::kw_export:
724 case tok::kw_extern:
725 case tok::kw_false:
726 case tok::kw_float:
727 case tok::kw_for:
728 case tok::kw_friend:
729 case tok::kw_goto:
730 case tok::kw_if:
731 case tok::kw_inline:
732 case tok::kw_int:
733 case tok::kw_long:
734 case tok::kw_mutable:
735 case tok::kw_namespace:
736 case tok::kw_new:
737 case tok::kw_operator:
738 case tok::kw_private:
739 case tok::kw_protected:
740 case tok::kw_public:
741 case tok::kw_register:
742 case tok::kw_reinterpret_cast:
743 case tok::kw_restrict:
744 case tok::kw_return:
745 case tok::kw_short:
746 case tok::kw_signed:
747 case tok::kw_sizeof:
748 case tok::kw_static:
749 case tok::kw_static_cast:
750 case tok::kw_struct:
751 case tok::kw_switch:
752 case tok::kw_template:
753 case tok::kw_this:
754 case tok::kw_throw:
755 case tok::kw_true:
756 case tok::kw_try:
757 case tok::kw_typedef:
758 case tok::kw_typeid:
759 case tok::kw_typename:
760 case tok::kw_typeof:
761 case tok::kw_union:
762 case tok::kw_unsigned:
763 case tok::kw_using:
764 case tok::kw_virtual:
765 case tok::kw_void:
766 case tok::kw_volatile:
767 case tok::kw_wchar_t:
768 case tok::kw_while:
Chris Lattnerff384912007-10-07 02:00:24 +0000769 case tok::kw__Bool:
770 case tok::kw__Complex:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000771 case tok::kw___alignof:
Chris Lattnerff384912007-10-07 02:00:24 +0000772 IdentifierInfo *II = Tok.getIdentifierInfo();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000773 SelectorLoc = ConsumeToken();
Chris Lattnerff384912007-10-07 02:00:24 +0000774 return II;
Fariborz Jahaniand0649512007-09-27 19:52:15 +0000775 }
Steve Naroff294494e2007-08-22 16:35:03 +0000776}
777
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000778/// objc-for-collection-in: 'in'
779///
Fariborz Jahanian335a2d42008-01-04 23:04:08 +0000780bool Parser::isTokIdentifier_in() const {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000781 // FIXME: May have to do additional look-ahead to only allow for
782 // valid tokens following an 'in'; such as an identifier, unary operators,
783 // '[' etc.
David Blaikie4e4d0842012-03-11 07:00:24 +0000784 return (getLangOpts().ObjC2 && Tok.is(tok::identifier) &&
Chris Lattner5ffb14b2008-08-23 02:02:23 +0000785 Tok.getIdentifierInfo() == ObjCTypeQuals[objc_in]);
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000786}
787
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000788/// ParseObjCTypeQualifierList - This routine parses the objective-c's type
Chris Lattnere8b724d2007-12-12 06:56:32 +0000789/// qualifier list and builds their bitmask representation in the input
790/// argument.
Steve Naroff294494e2007-08-22 16:35:03 +0000791///
792/// objc-type-qualifiers:
793/// objc-type-qualifier
794/// objc-type-qualifiers objc-type-qualifier
795///
Douglas Gregorb77cab92011-03-08 19:17:54 +0000796void Parser::ParseObjCTypeQualifierList(ObjCDeclSpec &DS,
John McCallcdda47f2011-10-01 09:56:14 +0000797 Declarator::TheContext Context) {
798 assert(Context == Declarator::ObjCParameterContext ||
799 Context == Declarator::ObjCResultContext);
800
Chris Lattnere8b724d2007-12-12 06:56:32 +0000801 while (1) {
Douglas Gregord32b0222010-08-24 01:06:58 +0000802 if (Tok.is(tok::code_completion)) {
Douglas Gregorb77cab92011-03-08 19:17:54 +0000803 Actions.CodeCompleteObjCPassingType(getCurScope(), DS,
John McCallcdda47f2011-10-01 09:56:14 +0000804 Context == Declarator::ObjCParameterContext);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000805 return cutOffParsing();
Douglas Gregord32b0222010-08-24 01:06:58 +0000806 }
807
Chris Lattnercb53b362007-12-27 19:57:00 +0000808 if (Tok.isNot(tok::identifier))
Chris Lattnere8b724d2007-12-12 06:56:32 +0000809 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000810
Chris Lattnere8b724d2007-12-12 06:56:32 +0000811 const IdentifierInfo *II = Tok.getIdentifierInfo();
812 for (unsigned i = 0; i != objc_NumQuals; ++i) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000813 if (II != ObjCTypeQuals[i])
Chris Lattnere8b724d2007-12-12 06:56:32 +0000814 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000815
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000816 ObjCDeclSpec::ObjCDeclQualifier Qual;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000817 switch (i) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000818 default: llvm_unreachable("Unknown decl qualifier");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000819 case objc_in: Qual = ObjCDeclSpec::DQ_In; break;
820 case objc_out: Qual = ObjCDeclSpec::DQ_Out; break;
821 case objc_inout: Qual = ObjCDeclSpec::DQ_Inout; break;
822 case objc_oneway: Qual = ObjCDeclSpec::DQ_Oneway; break;
823 case objc_bycopy: Qual = ObjCDeclSpec::DQ_Bycopy; break;
824 case objc_byref: Qual = ObjCDeclSpec::DQ_Byref; break;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000825 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000826 DS.setObjCDeclQualifier(Qual);
Chris Lattnere8b724d2007-12-12 06:56:32 +0000827 ConsumeToken();
828 II = 0;
829 break;
830 }
Mike Stump1eb44332009-09-09 15:08:12 +0000831
Chris Lattnere8b724d2007-12-12 06:56:32 +0000832 // If this wasn't a recognized qualifier, bail out.
833 if (II) return;
834 }
835}
836
John McCallcdda47f2011-10-01 09:56:14 +0000837/// Take all the decl attributes out of the given list and add
838/// them to the given attribute set.
839static void takeDeclAttributes(ParsedAttributes &attrs,
840 AttributeList *list) {
841 while (list) {
842 AttributeList *cur = list;
843 list = cur->getNext();
844
845 if (!cur->isUsedAsTypeAttr()) {
846 // Clear out the next pointer. We're really completely
847 // destroying the internal invariants of the declarator here,
848 // but it doesn't matter because we're done with it.
849 cur->setNext(0);
850 attrs.add(cur);
851 }
852 }
853}
854
855/// takeDeclAttributes - Take all the decl attributes from the given
856/// declarator and add them to the given list.
857static void takeDeclAttributes(ParsedAttributes &attrs,
858 Declarator &D) {
859 // First, take ownership of all attributes.
860 attrs.getPool().takeAllFrom(D.getAttributePool());
861 attrs.getPool().takeAllFrom(D.getDeclSpec().getAttributePool());
862
863 // Now actually move the attributes over.
864 takeDeclAttributes(attrs, D.getDeclSpec().getAttributes().getList());
865 takeDeclAttributes(attrs, D.getAttributes());
866 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
867 takeDeclAttributes(attrs,
868 const_cast<AttributeList*>(D.getTypeObject(i).getAttrs()));
869}
870
Chris Lattnere8b724d2007-12-12 06:56:32 +0000871/// objc-type-name:
872/// '(' objc-type-qualifiers[opt] type-name ')'
873/// '(' objc-type-qualifiers[opt] ')'
874///
Douglas Gregorb77cab92011-03-08 19:17:54 +0000875ParsedType Parser::ParseObjCTypeName(ObjCDeclSpec &DS,
John McCallcdda47f2011-10-01 09:56:14 +0000876 Declarator::TheContext context,
877 ParsedAttributes *paramAttrs) {
878 assert(context == Declarator::ObjCParameterContext ||
879 context == Declarator::ObjCResultContext);
880 assert((paramAttrs != 0) == (context == Declarator::ObjCParameterContext));
881
Chris Lattnerdf195262007-10-09 17:51:17 +0000882 assert(Tok.is(tok::l_paren) && "expected (");
Mike Stump1eb44332009-09-09 15:08:12 +0000883
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000884 BalancedDelimiterTracker T(*this, tok::l_paren);
885 T.consumeOpen();
886
Chris Lattnere8904e92008-08-23 01:48:03 +0000887 SourceLocation TypeStartLoc = Tok.getLocation();
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000888 ObjCDeclContextSwitch ObjCDC(*this);
889
Fariborz Jahanian19d74e12007-10-31 21:59:43 +0000890 // Parse type qualifiers, in, inout, etc.
John McCallcdda47f2011-10-01 09:56:14 +0000891 ParseObjCTypeQualifierList(DS, context);
Steve Naroff4fa7afd2007-08-22 23:18:22 +0000892
John McCallb3d87482010-08-24 05:47:05 +0000893 ParsedType Ty;
Douglas Gregor809070a2009-02-18 17:45:20 +0000894 if (isTypeSpecifierQualifier()) {
John McCallcdda47f2011-10-01 09:56:14 +0000895 // Parse an abstract declarator.
896 DeclSpec declSpec(AttrFactory);
897 declSpec.setObjCQualifiers(&DS);
898 ParseSpecifierQualifierList(declSpec);
Fariborz Jahanian6d1de1b2012-05-29 21:52:45 +0000899 declSpec.SetRangeEnd(Tok.getLocation());
John McCallcdda47f2011-10-01 09:56:14 +0000900 Declarator declarator(declSpec, context);
901 ParseDeclarator(declarator);
902
903 // If that's not invalid, extract a type.
904 if (!declarator.isInvalidType()) {
905 TypeResult type = Actions.ActOnTypeName(getCurScope(), declarator);
906 if (!type.isInvalid())
907 Ty = type.get();
908
909 // If we're parsing a parameter, steal all the decl attributes
910 // and add them to the decl spec.
911 if (context == Declarator::ObjCParameterContext)
912 takeDeclAttributes(*paramAttrs, declarator);
913 }
914 } else if (context == Declarator::ObjCResultContext &&
915 Tok.is(tok::identifier)) {
Douglas Gregore97179c2011-09-08 01:46:34 +0000916 if (!Ident_instancetype)
917 Ident_instancetype = PP.getIdentifierInfo("instancetype");
918
919 if (Tok.getIdentifierInfo() == Ident_instancetype) {
920 Ty = Actions.ActOnObjCInstanceType(Tok.getLocation());
921 ConsumeToken();
922 }
Douglas Gregor809070a2009-02-18 17:45:20 +0000923 }
Douglas Gregore97179c2011-09-08 01:46:34 +0000924
Steve Naroffd7333c22008-10-21 14:15:04 +0000925 if (Tok.is(tok::r_paren))
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000926 T.consumeClose();
Chris Lattner4a76b292008-10-22 03:52:06 +0000927 else if (Tok.getLocation() == TypeStartLoc) {
928 // If we didn't eat any tokens, then this isn't a type.
Chris Lattner1ab3b962008-11-18 07:48:38 +0000929 Diag(Tok, diag::err_expected_type);
Chris Lattner4a76b292008-10-22 03:52:06 +0000930 SkipUntil(tok::r_paren);
931 } else {
932 // Otherwise, we found *something*, but didn't get a ')' in the right
933 // place. Emit an error then return what we have as the type.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000934 T.consumeClose();
Chris Lattner4a76b292008-10-22 03:52:06 +0000935 }
Steve Narofff28b2642007-09-05 23:30:30 +0000936 return Ty;
Steve Naroff294494e2007-08-22 16:35:03 +0000937}
938
939/// objc-method-decl:
940/// objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000941/// objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000942/// objc-type-name objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000943/// objc-type-name objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000944///
945/// objc-keyword-selector:
Mike Stump1eb44332009-09-09 15:08:12 +0000946/// objc-keyword-decl
Steve Naroff294494e2007-08-22 16:35:03 +0000947/// objc-keyword-selector objc-keyword-decl
948///
949/// objc-keyword-decl:
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000950/// objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier
951/// objc-selector ':' objc-keyword-attributes[opt] identifier
952/// ':' objc-type-name objc-keyword-attributes[opt] identifier
953/// ':' objc-keyword-attributes[opt] identifier
Steve Naroff294494e2007-08-22 16:35:03 +0000954///
Steve Naroff4985ace2007-08-22 18:35:33 +0000955/// objc-parmlist:
956/// objc-parms objc-ellipsis[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000957///
Steve Naroff4985ace2007-08-22 18:35:33 +0000958/// objc-parms:
959/// objc-parms , parameter-declaration
Steve Naroff294494e2007-08-22 16:35:03 +0000960///
Steve Naroff4985ace2007-08-22 18:35:33 +0000961/// objc-ellipsis:
Steve Naroff294494e2007-08-22 16:35:03 +0000962/// , ...
963///
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000964/// objc-keyword-attributes: [OBJC2]
965/// __attribute__((unused))
966///
John McCalld226f652010-08-21 09:40:31 +0000967Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000968 tok::TokenKind mType,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000969 tok::ObjCKeywordKind MethodImplKind,
970 bool MethodDefinition) {
John McCall92576642012-05-07 06:16:41 +0000971 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
John McCall54abf7d2009-11-04 02:18:39 +0000972
Douglas Gregore8f5a172010-04-07 00:21:17 +0000973 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000974 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000975 /*ReturnType=*/ ParsedType());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000976 cutOffParsing();
977 return 0;
Douglas Gregore8f5a172010-04-07 00:21:17 +0000978 }
979
Chris Lattnere8904e92008-08-23 01:48:03 +0000980 // Parse the return type if present.
John McCallb3d87482010-08-24 05:47:05 +0000981 ParsedType ReturnType;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000982 ObjCDeclSpec DSRet;
Chris Lattnerdf195262007-10-09 17:51:17 +0000983 if (Tok.is(tok::l_paren))
John McCallcdda47f2011-10-01 09:56:14 +0000984 ReturnType = ParseObjCTypeName(DSRet, Declarator::ObjCResultContext, 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000985
Ted Kremenek9e049352010-02-18 23:05:16 +0000986 // If attributes exist before the method, parse them.
John McCall0b7e6782011-03-24 11:26:52 +0000987 ParsedAttributes methodAttrs(AttrFactory);
David Blaikie4e4d0842012-03-11 07:00:24 +0000988 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +0000989 MaybeParseGNUAttributes(methodAttrs);
Ted Kremenek9e049352010-02-18 23:05:16 +0000990
Douglas Gregore8f5a172010-04-07 00:21:17 +0000991 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000992 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000993 ReturnType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000994 cutOffParsing();
995 return 0;
Douglas Gregore8f5a172010-04-07 00:21:17 +0000996 }
997
Ted Kremenek9e049352010-02-18 23:05:16 +0000998 // Now parse the selector.
Steve Naroffbef11852007-10-26 20:53:56 +0000999 SourceLocation selLoc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00001000 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc);
Chris Lattnere8904e92008-08-23 01:48:03 +00001001
Steve Naroff84c43102009-02-11 20:43:13 +00001002 // An unnamed colon is valid.
1003 if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
Chris Lattner1ab3b962008-11-18 07:48:38 +00001004 Diag(Tok, diag::err_expected_selector_for_method)
1005 << SourceRange(mLoc, Tok.getLocation());
Fariborz Jahaniand30ec702012-07-26 17:32:28 +00001006 // Skip until we get a ; or @.
1007 SkipUntil(tok::at, true /*StopAtSemi*/, true /*don't consume*/);
John McCalld226f652010-08-21 09:40:31 +00001008 return 0;
Chris Lattnere8904e92008-08-23 01:48:03 +00001009 }
Mike Stump1eb44332009-09-09 15:08:12 +00001010
Chris Lattner5f9e2722011-07-23 10:55:15 +00001011 SmallVector<DeclaratorChunk::ParamInfo, 8> CParamInfo;
Chris Lattnerdf195262007-10-09 17:51:17 +00001012 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001013 // If attributes exist after the method, parse them.
David Blaikie4e4d0842012-03-11 07:00:24 +00001014 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +00001015 MaybeParseGNUAttributes(methodAttrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001016
Chris Lattnerff384912007-10-07 02:00:24 +00001017 Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent);
John McCalld226f652010-08-21 09:40:31 +00001018 Decl *Result
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001019 = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001020 mType, DSRet, ReturnType,
Douglas Gregor926df6c2011-06-11 01:09:30 +00001021 selLoc, Sel, 0,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001022 CParamInfo.data(), CParamInfo.size(),
John McCall0b7e6782011-03-24 11:26:52 +00001023 methodAttrs.getList(), MethodImplKind,
1024 false, MethodDefinition);
John McCall54abf7d2009-11-04 02:18:39 +00001025 PD.complete(Result);
1026 return Result;
Chris Lattnerff384912007-10-07 02:00:24 +00001027 }
Steve Narofff28b2642007-09-05 23:30:30 +00001028
Chris Lattner5f9e2722011-07-23 10:55:15 +00001029 SmallVector<IdentifierInfo *, 12> KeyIdents;
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001030 SmallVector<SourceLocation, 12> KeyLocs;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001031 SmallVector<Sema::ObjCArgInfo, 12> ArgInfos;
Richard Smith3a2b7a12013-01-28 22:42:45 +00001032 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope |
1033 Scope::FunctionDeclarationScope | Scope::DeclScope);
John McCall0b7e6782011-03-24 11:26:52 +00001034
1035 AttributePool allParamAttrs(AttrFactory);
Chris Lattnerff384912007-10-07 02:00:24 +00001036 while (1) {
John McCall0b7e6782011-03-24 11:26:52 +00001037 ParsedAttributes paramAttrs(AttrFactory);
John McCallf312b1e2010-08-26 23:41:50 +00001038 Sema::ObjCArgInfo ArgInfo;
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Chris Lattnerff384912007-10-07 02:00:24 +00001040 // Each iteration parses a single keyword argument.
Chris Lattnerdf195262007-10-09 17:51:17 +00001041 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001042 Diag(Tok, diag::err_expected_colon);
1043 break;
1044 }
1045 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00001046
John McCallb3d87482010-08-24 05:47:05 +00001047 ArgInfo.Type = ParsedType();
Chris Lattnere294d3f2009-04-11 18:57:04 +00001048 if (Tok.is(tok::l_paren)) // Parse the argument type if present.
John McCallcdda47f2011-10-01 09:56:14 +00001049 ArgInfo.Type = ParseObjCTypeName(ArgInfo.DeclSpec,
1050 Declarator::ObjCParameterContext,
1051 &paramAttrs);
Chris Lattnere294d3f2009-04-11 18:57:04 +00001052
Chris Lattnerff384912007-10-07 02:00:24 +00001053 // If attributes exist before the argument name, parse them.
John McCallcdda47f2011-10-01 09:56:14 +00001054 // Regardless, collect all the attributes we've parsed so far.
Chris Lattnere294d3f2009-04-11 18:57:04 +00001055 ArgInfo.ArgAttrs = 0;
David Blaikie4e4d0842012-03-11 07:00:24 +00001056 if (getLangOpts().ObjC2) {
John McCall0b7e6782011-03-24 11:26:52 +00001057 MaybeParseGNUAttributes(paramAttrs);
1058 ArgInfo.ArgAttrs = paramAttrs.getList();
John McCall7f040a92010-12-24 02:08:15 +00001059 }
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001060
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001061 // Code completion for the next piece of the selector.
1062 if (Tok.is(tok::code_completion)) {
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001063 KeyIdents.push_back(SelIdent);
1064 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1065 mType == tok::minus,
1066 /*AtParameterName=*/true,
1067 ReturnType,
1068 KeyIdents.data(),
1069 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001070 cutOffParsing();
1071 return 0;
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001072 }
1073
Chris Lattnerdf195262007-10-09 17:51:17 +00001074 if (Tok.isNot(tok::identifier)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001075 Diag(Tok, diag::err_expected_ident); // missing argument name.
1076 break;
Steve Naroff4985ace2007-08-22 18:35:33 +00001077 }
Mike Stump1eb44332009-09-09 15:08:12 +00001078
Chris Lattnere294d3f2009-04-11 18:57:04 +00001079 ArgInfo.Name = Tok.getIdentifierInfo();
1080 ArgInfo.NameLoc = Tok.getLocation();
Chris Lattnerff384912007-10-07 02:00:24 +00001081 ConsumeToken(); // Eat the identifier.
Mike Stump1eb44332009-09-09 15:08:12 +00001082
Chris Lattnere294d3f2009-04-11 18:57:04 +00001083 ArgInfos.push_back(ArgInfo);
1084 KeyIdents.push_back(SelIdent);
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001085 KeyLocs.push_back(selLoc);
Chris Lattnere294d3f2009-04-11 18:57:04 +00001086
John McCall0b7e6782011-03-24 11:26:52 +00001087 // Make sure the attributes persist.
1088 allParamAttrs.takeAllFrom(paramAttrs.getPool());
1089
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001090 // Code completion for the next piece of the selector.
1091 if (Tok.is(tok::code_completion)) {
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001092 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1093 mType == tok::minus,
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001094 /*AtParameterName=*/false,
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001095 ReturnType,
1096 KeyIdents.data(),
1097 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001098 cutOffParsing();
1099 return 0;
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001100 }
1101
Chris Lattnerff384912007-10-07 02:00:24 +00001102 // Check for another keyword selector.
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001103 SelIdent = ParseObjCSelectorPiece(selLoc);
Ted Kremenekb648cf02012-09-12 16:50:35 +00001104 if (!SelIdent && Tok.isNot(tok::colon))
1105 break;
Fariborz Jahanian03ebd3b2012-09-17 23:09:59 +00001106 if (!SelIdent) {
Fariborz Jahanian08602352012-09-17 19:15:26 +00001107 SourceLocation ColonLoc = Tok.getLocation();
1108 if (PP.getLocForEndOfToken(ArgInfo.NameLoc) == ColonLoc) {
Fariborz Jahanian03ebd3b2012-09-17 23:09:59 +00001109 Diag(ArgInfo.NameLoc, diag::warn_missing_selector_name) << ArgInfo.Name;
1110 Diag(ArgInfo.NameLoc, diag::note_missing_selector_name) << ArgInfo.Name;
1111 Diag(ColonLoc, diag::note_force_empty_selector_name) << ArgInfo.Name;
Fariborz Jahanian08602352012-09-17 19:15:26 +00001112 }
1113 }
Chris Lattnerff384912007-10-07 02:00:24 +00001114 // We have a selector or a colon, continue parsing.
Steve Naroff4985ace2007-08-22 18:35:33 +00001115 }
Mike Stump1eb44332009-09-09 15:08:12 +00001116
Steve Naroff335eafa2007-11-15 12:35:21 +00001117 bool isVariadic = false;
Fariborz Jahanian56242ba2012-06-21 18:43:08 +00001118 bool cStyleParamWarned = false;
Chris Lattnerff384912007-10-07 02:00:24 +00001119 // Parse the (optional) parameter list.
Chris Lattnerdf195262007-10-09 17:51:17 +00001120 while (Tok.is(tok::comma)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001121 ConsumeToken();
Chris Lattnerdf195262007-10-09 17:51:17 +00001122 if (Tok.is(tok::ellipsis)) {
Steve Naroff335eafa2007-11-15 12:35:21 +00001123 isVariadic = true;
Chris Lattnerff384912007-10-07 02:00:24 +00001124 ConsumeToken();
1125 break;
1126 }
Fariborz Jahanian56242ba2012-06-21 18:43:08 +00001127 if (!cStyleParamWarned) {
1128 Diag(Tok, diag::warn_cstyle_param);
1129 cStyleParamWarned = true;
1130 }
John McCall0b7e6782011-03-24 11:26:52 +00001131 DeclSpec DS(AttrFactory);
Chris Lattnerff384912007-10-07 02:00:24 +00001132 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00001133 // Parse the declarator.
Chris Lattnerff384912007-10-07 02:00:24 +00001134 Declarator ParmDecl(DS, Declarator::PrototypeContext);
1135 ParseDeclarator(ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001136 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
John McCalld226f652010-08-21 09:40:31 +00001137 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001138 CParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
1139 ParmDecl.getIdentifierLoc(),
1140 Param,
1141 0));
Chris Lattnerff384912007-10-07 02:00:24 +00001142 }
Mike Stump1eb44332009-09-09 15:08:12 +00001143
Cameron Esfahani9c4bb2c2010-10-12 00:21:25 +00001144 // FIXME: Add support for optional parameter list...
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001145 // If attributes exist after the method, parse them.
David Blaikie4e4d0842012-03-11 07:00:24 +00001146 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +00001147 MaybeParseGNUAttributes(methodAttrs);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001148
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001149 if (KeyIdents.size() == 0)
John McCalld226f652010-08-21 09:40:31 +00001150 return 0;
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001151
Chris Lattnerff384912007-10-07 02:00:24 +00001152 Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(),
1153 &KeyIdents[0]);
John McCalld226f652010-08-21 09:40:31 +00001154 Decl *Result
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001155 = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001156 mType, DSRet, ReturnType,
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001157 KeyLocs, Sel, &ArgInfos[0],
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001158 CParamInfo.data(), CParamInfo.size(),
John McCall0b7e6782011-03-24 11:26:52 +00001159 methodAttrs.getList(),
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00001160 MethodImplKind, isVariadic, MethodDefinition);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001161
John McCall54abf7d2009-11-04 02:18:39 +00001162 PD.complete(Result);
1163 return Result;
Steve Naroff294494e2007-08-22 16:35:03 +00001164}
1165
Steve Naroffdac269b2007-08-20 21:31:48 +00001166/// objc-protocol-refs:
1167/// '<' identifier-list '>'
1168///
Chris Lattner7caeabd2008-07-21 22:17:28 +00001169bool Parser::
Chris Lattner5f9e2722011-07-23 10:55:15 +00001170ParseObjCProtocolReferences(SmallVectorImpl<Decl *> &Protocols,
1171 SmallVectorImpl<SourceLocation> &ProtocolLocs,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001172 bool WarnOnDeclarations,
1173 SourceLocation &LAngleLoc, SourceLocation &EndLoc) {
Chris Lattnere13b9592008-07-26 04:03:38 +00001174 assert(Tok.is(tok::less) && "expected <");
Mike Stump1eb44332009-09-09 15:08:12 +00001175
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001176 LAngleLoc = ConsumeToken(); // the "<"
Mike Stump1eb44332009-09-09 15:08:12 +00001177
Chris Lattner5f9e2722011-07-23 10:55:15 +00001178 SmallVector<IdentifierLocPair, 8> ProtocolIdents;
Mike Stump1eb44332009-09-09 15:08:12 +00001179
Chris Lattnere13b9592008-07-26 04:03:38 +00001180 while (1) {
Douglas Gregor55385fe2009-11-18 04:19:12 +00001181 if (Tok.is(tok::code_completion)) {
1182 Actions.CodeCompleteObjCProtocolReferences(ProtocolIdents.data(),
1183 ProtocolIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001184 cutOffParsing();
1185 return true;
Douglas Gregor55385fe2009-11-18 04:19:12 +00001186 }
1187
Chris Lattnere13b9592008-07-26 04:03:38 +00001188 if (Tok.isNot(tok::identifier)) {
1189 Diag(Tok, diag::err_expected_ident);
1190 SkipUntil(tok::greater);
1191 return true;
1192 }
1193 ProtocolIdents.push_back(std::make_pair(Tok.getIdentifierInfo(),
1194 Tok.getLocation()));
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001195 ProtocolLocs.push_back(Tok.getLocation());
Chris Lattnere13b9592008-07-26 04:03:38 +00001196 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001197
Chris Lattnere13b9592008-07-26 04:03:38 +00001198 if (Tok.isNot(tok::comma))
1199 break;
1200 ConsumeToken();
1201 }
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Chris Lattnere13b9592008-07-26 04:03:38 +00001203 // Consume the '>'.
Nico Weberb707a472012-12-14 18:22:38 +00001204 if (ParseGreaterThanInTemplateList(EndLoc, /*ConsumeLastToken=*/true))
Chris Lattnere13b9592008-07-26 04:03:38 +00001205 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001206
Chris Lattnere13b9592008-07-26 04:03:38 +00001207 // Convert the list of protocols identifiers into a list of protocol decls.
1208 Actions.FindProtocolDeclaration(WarnOnDeclarations,
1209 &ProtocolIdents[0], ProtocolIdents.size(),
1210 Protocols);
1211 return false;
1212}
1213
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001214/// \brief Parse the Objective-C protocol qualifiers that follow a typename
1215/// in a decl-specifier-seq, starting at the '<'.
Douglas Gregor46f936e2010-11-19 17:10:50 +00001216bool Parser::ParseObjCProtocolQualifiers(DeclSpec &DS) {
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001217 assert(Tok.is(tok::less) && "Protocol qualifiers start with '<'");
David Blaikie4e4d0842012-03-11 07:00:24 +00001218 assert(getLangOpts().ObjC1 && "Protocol qualifiers only exist in Objective-C");
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001219 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001220 SmallVector<Decl *, 8> ProtocolDecl;
1221 SmallVector<SourceLocation, 8> ProtocolLocs;
Douglas Gregor46f936e2010-11-19 17:10:50 +00001222 bool Result = ParseObjCProtocolReferences(ProtocolDecl, ProtocolLocs, false,
1223 LAngleLoc, EndProtoLoc);
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001224 DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size(),
1225 ProtocolLocs.data(), LAngleLoc);
1226 if (EndProtoLoc.isValid())
1227 DS.SetRangeEnd(EndProtoLoc);
Douglas Gregor46f936e2010-11-19 17:10:50 +00001228 return Result;
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001229}
1230
1231
Steve Naroffdac269b2007-08-20 21:31:48 +00001232/// objc-class-instance-variables:
1233/// '{' objc-instance-variable-decl-list[opt] '}'
1234///
1235/// objc-instance-variable-decl-list:
1236/// objc-visibility-spec
1237/// objc-instance-variable-decl ';'
1238/// ';'
1239/// objc-instance-variable-decl-list objc-visibility-spec
1240/// objc-instance-variable-decl-list objc-instance-variable-decl ';'
1241/// objc-instance-variable-decl-list ';'
1242///
1243/// objc-visibility-spec:
1244/// @private
1245/// @protected
1246/// @public
Steve Naroffddbff782007-08-21 21:17:12 +00001247/// @package [OBJC2]
Steve Naroffdac269b2007-08-20 21:31:48 +00001248///
1249/// objc-instance-variable-decl:
Mike Stump1eb44332009-09-09 15:08:12 +00001250/// struct-declaration
Steve Naroffdac269b2007-08-20 21:31:48 +00001251///
John McCalld226f652010-08-21 09:40:31 +00001252void Parser::ParseObjCClassInstanceVariables(Decl *interfaceDecl,
Fariborz Jahanian83c481a2010-02-22 23:04:20 +00001253 tok::ObjCKeywordKind visibility,
Steve Naroff60fccee2007-10-29 21:38:07 +00001254 SourceLocation atLoc) {
Chris Lattnerdf195262007-10-09 17:51:17 +00001255 assert(Tok.is(tok::l_brace) && "expected {");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001256 SmallVector<Decl *, 32> AllIvarDecls;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001257
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001258 ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001259 ObjCDeclContextSwitch ObjCDC(*this);
Douglas Gregor72de6672009-01-08 20:45:30 +00001260
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001261 BalancedDelimiterTracker T(*this, tok::l_brace);
1262 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00001263
Steve Naroffddbff782007-08-21 21:17:12 +00001264 // While we still have something to read, read the instance variables.
Chris Lattnerdf195262007-10-09 17:51:17 +00001265 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001266 // Each iteration of this loop reads one objc-instance-variable-decl.
Mike Stump1eb44332009-09-09 15:08:12 +00001267
Steve Naroffddbff782007-08-21 21:17:12 +00001268 // Check for extraneous top-level semicolon.
Chris Lattnerdf195262007-10-09 17:51:17 +00001269 if (Tok.is(tok::semi)) {
Richard Trieu4b0e6f12012-05-16 19:04:59 +00001270 ConsumeExtraSemi(InstanceVariableList);
Steve Naroffddbff782007-08-21 21:17:12 +00001271 continue;
1272 }
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Steve Naroffddbff782007-08-21 21:17:12 +00001274 // Set the default visibility to private.
Chris Lattnerdf195262007-10-09 17:51:17 +00001275 if (Tok.is(tok::at)) { // parse objc-visibility-spec
Steve Naroffddbff782007-08-21 21:17:12 +00001276 ConsumeToken(); // eat the @ sign
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001277
1278 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001279 Actions.CodeCompleteObjCAtVisibility(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001280 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001281 }
1282
Steve Naroff861cf3e2007-08-23 18:16:40 +00001283 switch (Tok.getObjCKeywordID()) {
Steve Naroffddbff782007-08-21 21:17:12 +00001284 case tok::objc_private:
1285 case tok::objc_public:
1286 case tok::objc_protected:
1287 case tok::objc_package:
Steve Naroff861cf3e2007-08-23 18:16:40 +00001288 visibility = Tok.getObjCKeywordID();
Steve Naroffddbff782007-08-21 21:17:12 +00001289 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001290 continue;
Steve Naroffddbff782007-08-21 21:17:12 +00001291 default:
1292 Diag(Tok, diag::err_objc_illegal_visibility_spec);
Steve Naroffddbff782007-08-21 21:17:12 +00001293 continue;
1294 }
1295 }
Mike Stump1eb44332009-09-09 15:08:12 +00001296
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001297 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001298 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001299 Sema::PCC_ObjCInstanceVariableList);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001300 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001301 }
1302
John McCallbdd563e2009-11-03 02:38:08 +00001303 struct ObjCIvarCallback : FieldCallback {
1304 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00001305 Decl *IDecl;
John McCallbdd563e2009-11-03 02:38:08 +00001306 tok::ObjCKeywordKind visibility;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001307 SmallVectorImpl<Decl *> &AllIvarDecls;
John McCallbdd563e2009-11-03 02:38:08 +00001308
John McCalld226f652010-08-21 09:40:31 +00001309 ObjCIvarCallback(Parser &P, Decl *IDecl, tok::ObjCKeywordKind V,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001310 SmallVectorImpl<Decl *> &AllIvarDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00001311 P(P), IDecl(IDecl), visibility(V), AllIvarDecls(AllIvarDecls) {
1312 }
1313
Eli Friedmandcdff462012-08-08 23:53:27 +00001314 void invoke(ParsingFieldDeclarator &FD) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001315 P.Actions.ActOnObjCContainerStartDefinition(IDecl);
John McCallbdd563e2009-11-03 02:38:08 +00001316 // Install the declarator into the interface decl.
John McCalld226f652010-08-21 09:40:31 +00001317 Decl *Field
Douglas Gregor23c94db2010-07-02 17:43:08 +00001318 = P.Actions.ActOnIvar(P.getCurScope(),
John McCallbdd563e2009-11-03 02:38:08 +00001319 FD.D.getDeclSpec().getSourceRange().getBegin(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001320 FD.D, FD.BitfieldSize, visibility);
Fariborz Jahanian10af8792011-08-29 17:33:12 +00001321 P.Actions.ActOnObjCContainerFinishDefinition();
Fariborz Jahanian0bd04592010-04-06 22:43:48 +00001322 if (Field)
1323 AllIvarDecls.push_back(Field);
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00001324 FD.complete(Field);
John McCallbdd563e2009-11-03 02:38:08 +00001325 }
1326 } Callback(*this, interfaceDecl, visibility, AllIvarDecls);
Fariborz Jahaniand097be82010-08-23 22:46:52 +00001327
Chris Lattnere1359422008-04-10 06:46:29 +00001328 // Parse all the comma separated declarators.
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00001329 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +00001330 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +00001331
Chris Lattnerdf195262007-10-09 17:51:17 +00001332 if (Tok.is(tok::semi)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001333 ConsumeToken();
Steve Naroffddbff782007-08-21 21:17:12 +00001334 } else {
1335 Diag(Tok, diag::err_expected_semi_decl_list);
1336 // Skip to end of block or statement
1337 SkipUntil(tok::r_brace, true, true);
1338 }
1339 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001340 T.consumeClose();
1341
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001342 Actions.ActOnObjCContainerStartDefinition(interfaceDecl);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001343 Actions.ActOnLastBitfield(T.getCloseLocation(), AllIvarDecls);
Fariborz Jahanian10af8792011-08-29 17:33:12 +00001344 Actions.ActOnObjCContainerFinishDefinition();
Steve Naroff8749be52007-10-31 22:11:35 +00001345 // Call ActOnFields() even if we don't have any decls. This is useful
1346 // for code rewriting tools that need to be aware of the empty list.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001347 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl,
David Blaikie77b6de02011-09-22 02:58:26 +00001348 AllIvarDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001349 T.getOpenLocation(), T.getCloseLocation(), 0);
Steve Naroffddbff782007-08-21 21:17:12 +00001350 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001351}
Steve Naroffdac269b2007-08-20 21:31:48 +00001352
1353/// objc-protocol-declaration:
1354/// objc-protocol-definition
1355/// objc-protocol-forward-reference
1356///
1357/// objc-protocol-definition:
James Dennett17d26a62012-06-11 06:19:40 +00001358/// \@protocol identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001359/// objc-protocol-refs[opt]
1360/// objc-interface-decl-list
James Dennett17d26a62012-06-11 06:19:40 +00001361/// \@end
Steve Naroffdac269b2007-08-20 21:31:48 +00001362///
1363/// objc-protocol-forward-reference:
James Dennett17d26a62012-06-11 06:19:40 +00001364/// \@protocol identifier-list ';'
Steve Naroffdac269b2007-08-20 21:31:48 +00001365///
James Dennett17d26a62012-06-11 06:19:40 +00001366/// "\@protocol identifier ;" should be resolved as "\@protocol
Steve Naroff3536b442007-09-06 21:24:23 +00001367/// identifier-list ;": objc-interface-decl-list may not start with a
Steve Naroffdac269b2007-08-20 21:31:48 +00001368/// semicolon in the first alternative if objc-protocol-refs are omitted.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001369Parser::DeclGroupPtrTy
1370Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc,
1371 ParsedAttributes &attrs) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00001372 assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001373 "ParseObjCAtProtocolDeclaration(): Expected @protocol");
1374 ConsumeToken(); // the "protocol" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001375
Douglas Gregor083128f2009-11-18 04:49:41 +00001376 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001377 Actions.CodeCompleteObjCProtocolDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001378 cutOffParsing();
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001379 return DeclGroupPtrTy();
Douglas Gregor083128f2009-11-18 04:49:41 +00001380 }
1381
Chris Lattnerdf195262007-10-09 17:51:17 +00001382 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001383 Diag(Tok, diag::err_expected_ident); // missing protocol name.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001384 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001385 }
1386 // Save the protocol name, then consume it.
1387 IdentifierInfo *protocolName = Tok.getIdentifierInfo();
1388 SourceLocation nameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001389
Chris Lattnerdf195262007-10-09 17:51:17 +00001390 if (Tok.is(tok::semi)) { // forward declaration of one protocol.
Chris Lattner7caeabd2008-07-21 22:17:28 +00001391 IdentifierLocPair ProtoInfo(protocolName, nameLoc);
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001392 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001393 return Actions.ActOnForwardProtocolDeclaration(AtLoc, &ProtoInfo, 1,
John McCall7f040a92010-12-24 02:08:15 +00001394 attrs.getList());
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001395 }
Mike Stump1eb44332009-09-09 15:08:12 +00001396
Erik Verbruggen90ec96f2011-12-08 09:58:43 +00001397 CheckNestedObjCContexts(AtLoc);
1398
Chris Lattnerdf195262007-10-09 17:51:17 +00001399 if (Tok.is(tok::comma)) { // list of forward declarations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001400 SmallVector<IdentifierLocPair, 8> ProtocolRefs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001401 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc));
1402
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001403 // Parse the list of forward declarations.
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001404 while (1) {
1405 ConsumeToken(); // the ','
Chris Lattnerdf195262007-10-09 17:51:17 +00001406 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001407 Diag(Tok, diag::err_expected_ident);
1408 SkipUntil(tok::semi);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001409 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001410 }
Chris Lattner7caeabd2008-07-21 22:17:28 +00001411 ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(),
1412 Tok.getLocation()));
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001413 ConsumeToken(); // the identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001414
Chris Lattnerdf195262007-10-09 17:51:17 +00001415 if (Tok.isNot(tok::comma))
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001416 break;
1417 }
1418 // Consume the ';'.
1419 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001420 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001421
Steve Naroffe440eb82007-10-10 17:32:04 +00001422 return Actions.ActOnForwardProtocolDeclaration(AtLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001423 &ProtocolRefs[0],
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001424 ProtocolRefs.size(),
John McCall7f040a92010-12-24 02:08:15 +00001425 attrs.getList());
Chris Lattner7caeabd2008-07-21 22:17:28 +00001426 }
Mike Stump1eb44332009-09-09 15:08:12 +00001427
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001428 // Last, and definitely not least, parse a protocol declaration.
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001429 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001430
Chris Lattner5f9e2722011-07-23 10:55:15 +00001431 SmallVector<Decl *, 8> ProtocolRefs;
1432 SmallVector<SourceLocation, 8> ProtocolLocs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001433 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001434 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, false,
1435 LAngleLoc, EndProtoLoc))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001436 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001437
John McCalld226f652010-08-21 09:40:31 +00001438 Decl *ProtoType =
Chris Lattnere13b9592008-07-26 04:03:38 +00001439 Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001440 ProtocolRefs.data(),
1441 ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +00001442 ProtocolLocs.data(),
John McCall7f040a92010-12-24 02:08:15 +00001443 EndProtoLoc, attrs.getList());
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001444
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +00001445 ParseObjCInterfaceDeclList(tok::objc_protocol, ProtoType);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001446 return Actions.ConvertDeclToDeclGroup(ProtoType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001447}
Steve Naroffdac269b2007-08-20 21:31:48 +00001448
1449/// objc-implementation:
1450/// objc-class-implementation-prologue
1451/// objc-category-implementation-prologue
1452///
1453/// objc-class-implementation-prologue:
1454/// @implementation identifier objc-superclass[opt]
1455/// objc-class-instance-variables[opt]
1456///
1457/// objc-category-implementation-prologue:
1458/// @implementation identifier ( identifier )
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001459Parser::DeclGroupPtrTy
1460Parser::ParseObjCAtImplementationDeclaration(SourceLocation AtLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001461 assert(Tok.isObjCAtKeyword(tok::objc_implementation) &&
1462 "ParseObjCAtImplementationDeclaration(): Expected @implementation");
Erik Verbruggend64251f2011-12-06 09:25:23 +00001463 CheckNestedObjCContexts(AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001464 ConsumeToken(); // the "implementation" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001465
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001466 // Code completion after '@implementation'.
1467 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001468 Actions.CodeCompleteObjCImplementationDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001469 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001470 return DeclGroupPtrTy();
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001471 }
1472
Chris Lattnerdf195262007-10-09 17:51:17 +00001473 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001474 Diag(Tok, diag::err_expected_ident); // missing class or category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001475 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001476 }
1477 // We have a class or category name - consume it.
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001478 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001479 SourceLocation nameLoc = ConsumeToken(); // consume class or category name
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001480 Decl *ObjCImpDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001481
1482 if (Tok.is(tok::l_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001483 // we have a category implementation.
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001484 ConsumeParen();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001485 SourceLocation categoryLoc, rparenLoc;
1486 IdentifierInfo *categoryId = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001487
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001488 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001489 Actions.CodeCompleteObjCImplementationCategory(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001490 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001491 return DeclGroupPtrTy();
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001492 }
1493
Chris Lattnerdf195262007-10-09 17:51:17 +00001494 if (Tok.is(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001495 categoryId = Tok.getIdentifierInfo();
1496 categoryLoc = ConsumeToken();
1497 } else {
1498 Diag(Tok, diag::err_expected_ident); // missing category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001499 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001500 }
Chris Lattnerdf195262007-10-09 17:51:17 +00001501 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001502 Diag(Tok, diag::err_expected_rparen);
1503 SkipUntil(tok::r_paren, false); // don't stop at ';'
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001504 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001505 }
1506 rparenLoc = ConsumeParen();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001507 ObjCImpDecl = Actions.ActOnStartCategoryImplementation(
Erik Verbruggend64251f2011-12-06 09:25:23 +00001508 AtLoc, nameId, nameLoc, categoryId,
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001509 categoryLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001510
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001511 } else {
1512 // We have a class implementation
1513 SourceLocation superClassLoc;
1514 IdentifierInfo *superClassId = 0;
1515 if (Tok.is(tok::colon)) {
1516 // We have a super class
1517 ConsumeToken();
1518 if (Tok.isNot(tok::identifier)) {
1519 Diag(Tok, diag::err_expected_ident); // missing super class name.
1520 return DeclGroupPtrTy();
1521 }
1522 superClassId = Tok.getIdentifierInfo();
1523 superClassLoc = ConsumeToken(); // Consume super class name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001524 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001525 ObjCImpDecl = Actions.ActOnStartClassImplementation(
1526 AtLoc, nameId, nameLoc,
1527 superClassId, superClassLoc);
1528
1529 if (Tok.is(tok::l_brace)) // we have ivars
1530 ParseObjCClassInstanceVariables(ObjCImpDecl, tok::objc_private, AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001531 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001532 assert(ObjCImpDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001533
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001534 SmallVector<Decl *, 8> DeclsInGroup;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001535
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001536 {
1537 ObjCImplParsingDataRAII ObjCImplParsing(*this, ObjCImpDecl);
1538 while (!ObjCImplParsing.isFinished() && Tok.isNot(tok::eof)) {
1539 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00001540 MaybeParseCXX11Attributes(attrs);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001541 MaybeParseMicrosoftAttributes(attrs);
1542 if (DeclGroupPtrTy DGP = ParseExternalDeclaration(attrs)) {
1543 DeclGroupRef DG = DGP.get();
1544 DeclsInGroup.append(DG.begin(), DG.end());
1545 }
1546 }
1547 }
1548
Argyrios Kyrtzidis644af7b2012-02-23 21:11:20 +00001549 return Actions.ActOnFinishObjCImplementation(ObjCImpDecl, DeclsInGroup);
Reid Spencer5f016e22007-07-11 17:01:13 +00001550}
Steve Naroff60fccee2007-10-29 21:38:07 +00001551
Fariborz Jahanian140ab232011-08-31 17:37:55 +00001552Parser::DeclGroupPtrTy
1553Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001554 assert(Tok.isObjCAtKeyword(tok::objc_end) &&
1555 "ParseObjCAtEndDeclaration(): Expected @end");
1556 ConsumeToken(); // the "end" identifier
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001557 if (CurParsedObjCImpl)
1558 CurParsedObjCImpl->finish(atEnd);
Fariborz Jahanian8697d302011-08-31 22:24:06 +00001559 else
Ted Kremenek782f2f52010-01-07 01:20:12 +00001560 // missing @implementation
Erik Verbruggend64251f2011-12-06 09:25:23 +00001561 Diag(atEnd.getBegin(), diag::err_expected_objc_container);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001562 return DeclGroupPtrTy();
Steve Naroffdac269b2007-08-20 21:31:48 +00001563}
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001564
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001565Parser::ObjCImplParsingDataRAII::~ObjCImplParsingDataRAII() {
1566 if (!Finished) {
1567 finish(P.Tok.getLocation());
1568 if (P.Tok.is(tok::eof)) {
1569 P.Diag(P.Tok, diag::err_objc_missing_end)
1570 << FixItHint::CreateInsertion(P.Tok.getLocation(), "\n@end\n");
1571 P.Diag(Dcl->getLocStart(), diag::note_objc_container_start)
1572 << Sema::OCK_Implementation;
1573 }
1574 }
1575 P.CurParsedObjCImpl = 0;
1576 assert(LateParsedObjCMethods.empty());
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001577}
1578
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001579void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) {
1580 assert(!Finished);
1581 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl);
1582 for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i)
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001583 P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i],
1584 true/*Methods*/);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001585
1586 P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd);
1587
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001588 if (HasCFunction)
1589 for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i)
1590 P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i],
1591 false/*c-functions*/);
1592
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001593 /// \brief Clear and free the cached objc methods.
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001594 for (LateParsedObjCMethodContainer::iterator
1595 I = LateParsedObjCMethods.begin(),
1596 E = LateParsedObjCMethods.end(); I != E; ++I)
1597 delete *I;
1598 LateParsedObjCMethods.clear();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001599
1600 Finished = true;
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001601}
1602
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001603/// compatibility-alias-decl:
1604/// @compatibility_alias alias-name class-name ';'
1605///
John McCalld226f652010-08-21 09:40:31 +00001606Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001607 assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) &&
1608 "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias");
1609 ConsumeToken(); // consume compatibility_alias
Chris Lattnerdf195262007-10-09 17:51:17 +00001610 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001611 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001612 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001613 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001614 IdentifierInfo *aliasId = Tok.getIdentifierInfo();
1615 SourceLocation aliasLoc = ConsumeToken(); // consume alias-name
Chris Lattnerdf195262007-10-09 17:51:17 +00001616 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001617 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001618 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001619 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001620 IdentifierInfo *classId = Tok.getIdentifierInfo();
1621 SourceLocation classLoc = ConsumeToken(); // consume class-name;
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001622 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
1623 "@compatibility_alias");
Richard Smithde01b7a2012-08-08 23:32:13 +00001624 return Actions.ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc,
1625 classId, classLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001626}
1627
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001628/// property-synthesis:
1629/// @synthesize property-ivar-list ';'
1630///
1631/// property-ivar-list:
1632/// property-ivar
1633/// property-ivar-list ',' property-ivar
1634///
1635/// property-ivar:
1636/// identifier
1637/// identifier '=' identifier
1638///
John McCalld226f652010-08-21 09:40:31 +00001639Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001640 assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
1641 "ParseObjCPropertyDynamic(): Expected '@synthesize'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001642 ConsumeToken(); // consume synthesize
Mike Stump1eb44332009-09-09 15:08:12 +00001643
Douglas Gregorb328c422009-11-18 19:45:45 +00001644 while (true) {
Douglas Gregor322328b2009-11-18 22:32:06 +00001645 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001646 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001647 cutOffParsing();
1648 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001649 }
1650
Douglas Gregorb328c422009-11-18 19:45:45 +00001651 if (Tok.isNot(tok::identifier)) {
1652 Diag(Tok, diag::err_synthesized_property_name);
1653 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001654 return 0;
Douglas Gregorb328c422009-11-18 19:45:45 +00001655 }
1656
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001657 IdentifierInfo *propertyIvar = 0;
1658 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1659 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Douglas Gregora4ffd852010-11-17 01:03:52 +00001660 SourceLocation propertyIvarLoc;
Chris Lattnerdf195262007-10-09 17:51:17 +00001661 if (Tok.is(tok::equal)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001662 // property '=' ivar-name
1663 ConsumeToken(); // consume '='
Douglas Gregor322328b2009-11-18 22:32:06 +00001664
1665 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001666 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001667 cutOffParsing();
1668 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001669 }
1670
Chris Lattnerdf195262007-10-09 17:51:17 +00001671 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001672 Diag(Tok, diag::err_expected_ident);
1673 break;
1674 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001675 propertyIvar = Tok.getIdentifierInfo();
Douglas Gregora4ffd852010-11-17 01:03:52 +00001676 propertyIvarLoc = ConsumeToken(); // consume ivar-name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001677 }
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001678 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, true,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001679 propertyId, propertyIvar, propertyIvarLoc);
Chris Lattnerdf195262007-10-09 17:51:17 +00001680 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001681 break;
1682 ConsumeToken(); // consume ','
1683 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001684 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@synthesize");
John McCalld226f652010-08-21 09:40:31 +00001685 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001686}
1687
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001688/// property-dynamic:
1689/// @dynamic property-list
1690///
1691/// property-list:
1692/// identifier
1693/// property-list ',' identifier
1694///
John McCalld226f652010-08-21 09:40:31 +00001695Decl *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001696 assert(Tok.isObjCAtKeyword(tok::objc_dynamic) &&
1697 "ParseObjCPropertyDynamic(): Expected '@dynamic'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001698 ConsumeToken(); // consume dynamic
Douglas Gregor424b2a52009-11-18 22:56:13 +00001699 while (true) {
1700 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001701 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001702 cutOffParsing();
1703 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001704 }
1705
1706 if (Tok.isNot(tok::identifier)) {
1707 Diag(Tok, diag::err_expected_ident);
1708 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001709 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001710 }
1711
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001712 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1713 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001714 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, false,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001715 propertyId, 0, SourceLocation());
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001716
Chris Lattnerdf195262007-10-09 17:51:17 +00001717 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001718 break;
1719 ConsumeToken(); // consume ','
1720 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001721 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@dynamic");
John McCalld226f652010-08-21 09:40:31 +00001722 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001723}
Mike Stump1eb44332009-09-09 15:08:12 +00001724
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001725/// objc-throw-statement:
1726/// throw expression[opt];
1727///
John McCall60d7b3a2010-08-24 06:29:42 +00001728StmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) {
1729 ExprResult Res;
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001730 ConsumeToken(); // consume throw
Chris Lattnerdf195262007-10-09 17:51:17 +00001731 if (Tok.isNot(tok::semi)) {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001732 Res = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001733 if (Res.isInvalid()) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001734 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001735 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001736 }
1737 }
Ted Kremenek02418c72010-04-20 21:21:51 +00001738 // consume ';'
1739 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@throw");
John McCall9ae2f072010-08-23 23:25:46 +00001740 return Actions.ActOnObjCAtThrowStmt(atLoc, Res.take(), getCurScope());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001741}
1742
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001743/// objc-synchronized-statement:
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001744/// @synchronized '(' expression ')' compound-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001745///
John McCall60d7b3a2010-08-24 06:29:42 +00001746StmtResult
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001747Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) {
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001748 ConsumeToken(); // consume synchronized
1749 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001750 Diag(Tok, diag::err_expected_lparen_after) << "@synchronized";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001751 return StmtError();
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001752 }
John McCall07524032011-07-27 21:50:02 +00001753
1754 // The operand is surrounded with parentheses.
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001755 ConsumeParen(); // '('
John McCall07524032011-07-27 21:50:02 +00001756 ExprResult operand(ParseExpression());
1757
1758 if (Tok.is(tok::r_paren)) {
1759 ConsumeParen(); // ')'
1760 } else {
1761 if (!operand.isInvalid())
1762 Diag(Tok, diag::err_expected_rparen);
1763
1764 // Skip forward until we see a left brace, but don't consume it.
1765 SkipUntil(tok::l_brace, true, true);
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001766 }
John McCall07524032011-07-27 21:50:02 +00001767
1768 // Require a compound statement.
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001769 if (Tok.isNot(tok::l_brace)) {
John McCall07524032011-07-27 21:50:02 +00001770 if (!operand.isInvalid())
1771 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001772 return StmtError();
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001773 }
Steve Naroff3ac438c2008-06-04 20:36:13 +00001774
John McCall07524032011-07-27 21:50:02 +00001775 // Check the @synchronized operand now.
1776 if (!operand.isInvalid())
1777 operand = Actions.ActOnObjCAtSynchronizedOperand(atLoc, operand.take());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001778
John McCall07524032011-07-27 21:50:02 +00001779 // Parse the compound statement within a new scope.
1780 ParseScope bodyScope(this, Scope::DeclScope);
1781 StmtResult body(ParseCompoundStatementBody());
1782 bodyScope.Exit();
1783
1784 // If there was a semantic or parse error earlier with the
1785 // operand, fail now.
1786 if (operand.isInvalid())
1787 return StmtError();
1788
1789 if (body.isInvalid())
1790 body = Actions.ActOnNullStmt(Tok.getLocation());
1791
1792 return Actions.ActOnObjCAtSynchronizedStmt(atLoc, operand.get(), body.get());
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001793}
1794
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001795/// objc-try-catch-statement:
1796/// @try compound-statement objc-catch-list[opt]
1797/// @try compound-statement objc-catch-list[opt] @finally compound-statement
1798///
1799/// objc-catch-list:
1800/// @catch ( parameter-declaration ) compound-statement
1801/// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1802/// catch-parameter-declaration:
1803/// parameter-declaration
1804/// '...' [OBJC2]
1805///
John McCall60d7b3a2010-08-24 06:29:42 +00001806StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001807 bool catch_or_finally_seen = false;
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001808
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001809 ConsumeToken(); // consume try
Chris Lattnerdf195262007-10-09 17:51:17 +00001810 if (Tok.isNot(tok::l_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001811 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001812 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001813 }
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001814 StmtVector CatchStmts;
John McCall60d7b3a2010-08-24 06:29:42 +00001815 StmtResult FinallyStmt;
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001816 ParseScope TryScope(this, Scope::DeclScope);
John McCall60d7b3a2010-08-24 06:29:42 +00001817 StmtResult TryBody(ParseCompoundStatementBody());
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001818 TryScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001819 if (TryBody.isInvalid())
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001820 TryBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redla55e52c2008-11-25 22:21:31 +00001821
Chris Lattnerdf195262007-10-09 17:51:17 +00001822 while (Tok.is(tok::at)) {
Chris Lattner6b884502008-03-10 06:06:04 +00001823 // At this point, we need to lookahead to determine if this @ is the start
1824 // of an @catch or @finally. We don't want to consume the @ token if this
1825 // is an @try or @encode or something else.
1826 Token AfterAt = GetLookAheadToken(1);
1827 if (!AfterAt.isObjCAtKeyword(tok::objc_catch) &&
1828 !AfterAt.isObjCAtKeyword(tok::objc_finally))
1829 break;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001830
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001831 SourceLocation AtCatchFinallyLoc = ConsumeToken();
Chris Lattnercb53b362007-12-27 19:57:00 +00001832 if (Tok.isObjCAtKeyword(tok::objc_catch)) {
John McCalld226f652010-08-21 09:40:31 +00001833 Decl *FirstPart = 0;
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001834 ConsumeToken(); // consume catch
Chris Lattnerdf195262007-10-09 17:51:17 +00001835 if (Tok.is(tok::l_paren)) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001836 ConsumeParen();
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001837 ParseScope CatchScope(this, Scope::DeclScope|Scope::AtCatchScope);
Chris Lattnerdf195262007-10-09 17:51:17 +00001838 if (Tok.isNot(tok::ellipsis)) {
John McCall0b7e6782011-03-24 11:26:52 +00001839 DeclSpec DS(AttrFactory);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001840 ParseDeclarationSpecifiers(DS);
Argyrios Kyrtzidis17b63992011-07-01 22:22:40 +00001841 Declarator ParmDecl(DS, Declarator::ObjCCatchContext);
Steve Naroff7ba138a2009-03-03 19:52:17 +00001842 ParseDeclarator(ParmDecl);
1843
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00001844 // Inform the actions module about the declarator, so it
Steve Naroff7ba138a2009-03-03 19:52:17 +00001845 // gets added to the current scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001846 FirstPart = Actions.ActOnObjCExceptionDecl(getCurScope(), ParmDecl);
Steve Naroff64515f32008-02-05 21:27:35 +00001847 } else
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001848 ConsumeToken(); // consume '...'
Mike Stump1eb44332009-09-09 15:08:12 +00001849
Steve Naroff93a25952009-04-07 22:56:58 +00001850 SourceLocation RParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +00001851
Steve Naroff93a25952009-04-07 22:56:58 +00001852 if (Tok.is(tok::r_paren))
1853 RParenLoc = ConsumeParen();
1854 else // Skip over garbage, until we get to ')'. Eat the ')'.
1855 SkipUntil(tok::r_paren, true, false);
1856
John McCall60d7b3a2010-08-24 06:29:42 +00001857 StmtResult CatchBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001858 if (Tok.is(tok::l_brace))
1859 CatchBody = ParseCompoundStatementBody();
1860 else
1861 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001862 if (CatchBody.isInvalid())
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001863 CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001864
John McCall60d7b3a2010-08-24 06:29:42 +00001865 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001866 RParenLoc,
1867 FirstPart,
John McCall9ae2f072010-08-23 23:25:46 +00001868 CatchBody.take());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001869 if (!Catch.isInvalid())
1870 CatchStmts.push_back(Catch.release());
1871
Steve Naroff64515f32008-02-05 21:27:35 +00001872 } else {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001873 Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after)
1874 << "@catch clause";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001875 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001876 }
1877 catch_or_finally_seen = true;
Chris Lattner6b884502008-03-10 06:06:04 +00001878 } else {
1879 assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?");
Steve Naroff64515f32008-02-05 21:27:35 +00001880 ConsumeToken(); // consume finally
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001881 ParseScope FinallyScope(this, Scope::DeclScope);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001882
John McCall60d7b3a2010-08-24 06:29:42 +00001883 StmtResult FinallyBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001884 if (Tok.is(tok::l_brace))
1885 FinallyBody = ParseCompoundStatementBody();
1886 else
1887 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001888 if (FinallyBody.isInvalid())
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001889 FinallyBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001890 FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001891 FinallyBody.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001892 catch_or_finally_seen = true;
1893 break;
1894 }
1895 }
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001896 if (!catch_or_finally_seen) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001897 Diag(atLoc, diag::err_missing_catch_finally);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001898 return StmtError();
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001899 }
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001900
John McCall9ae2f072010-08-23 23:25:46 +00001901 return Actions.ActOnObjCAtTryStmt(atLoc, TryBody.take(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001902 CatchStmts,
John McCall9ae2f072010-08-23 23:25:46 +00001903 FinallyStmt.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001904}
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001905
John McCallf85e1932011-06-15 23:02:42 +00001906/// objc-autoreleasepool-statement:
1907/// @autoreleasepool compound-statement
1908///
1909StmtResult
1910Parser::ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) {
1911 ConsumeToken(); // consume autoreleasepool
1912 if (Tok.isNot(tok::l_brace)) {
1913 Diag(Tok, diag::err_expected_lbrace);
1914 return StmtError();
1915 }
1916 // Enter a scope to hold everything within the compound stmt. Compound
1917 // statements can always hold declarations.
1918 ParseScope BodyScope(this, Scope::DeclScope);
1919
1920 StmtResult AutoreleasePoolBody(ParseCompoundStatementBody());
1921
1922 BodyScope.Exit();
1923 if (AutoreleasePoolBody.isInvalid())
1924 AutoreleasePoolBody = Actions.ActOnNullStmt(Tok.getLocation());
1925 return Actions.ActOnObjCAutoreleasePoolStmt(atLoc,
1926 AutoreleasePoolBody.take());
1927}
1928
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001929/// StashAwayMethodOrFunctionBodyTokens - Consume the tokens and store them
1930/// for later parsing.
1931void Parser::StashAwayMethodOrFunctionBodyTokens(Decl *MDecl) {
1932 LexedMethod* LM = new LexedMethod(this, MDecl);
1933 CurParsedObjCImpl->LateParsedObjCMethods.push_back(LM);
1934 CachedTokens &Toks = LM->Toks;
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00001935 // Begin by storing the '{' or 'try' or ':' token.
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001936 Toks.push_back(Tok);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001937 if (Tok.is(tok::kw_try)) {
1938 ConsumeToken();
Fariborz Jahaniandbd69452012-08-10 20:34:17 +00001939 if (Tok.is(tok::colon)) {
1940 Toks.push_back(Tok);
1941 ConsumeToken();
1942 while (Tok.isNot(tok::l_brace)) {
1943 ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false);
1944 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
1945 }
1946 }
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00001947 Toks.push_back(Tok); // also store '{'
1948 }
1949 else if (Tok.is(tok::colon)) {
1950 ConsumeToken();
1951 while (Tok.isNot(tok::l_brace)) {
1952 ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false);
1953 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
1954 }
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001955 Toks.push_back(Tok); // also store '{'
1956 }
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001957 ConsumeBrace();
1958 // Consume everything up to (and including) the matching right brace.
1959 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001960 while (Tok.is(tok::kw_catch)) {
1961 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
1962 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1963 }
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001964}
1965
Steve Naroff3536b442007-09-06 21:24:23 +00001966/// objc-method-def: objc-method-proto ';'[opt] '{' body '}'
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001967///
John McCalld226f652010-08-21 09:40:31 +00001968Decl *Parser::ParseObjCMethodDefinition() {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001969 Decl *MDecl = ParseObjCMethodPrototype();
Mike Stump1eb44332009-09-09 15:08:12 +00001970
John McCallf312b1e2010-08-26 23:41:50 +00001971 PrettyDeclStackTraceEntry CrashInfo(Actions, MDecl, Tok.getLocation(),
1972 "parsing Objective-C method");
Mike Stump1eb44332009-09-09 15:08:12 +00001973
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001974 // parse optional ';'
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001975 if (Tok.is(tok::semi)) {
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001976 if (CurParsedObjCImpl) {
Ted Kremenek496e45e2009-11-10 22:55:49 +00001977 Diag(Tok, diag::warn_semicolon_before_method_body)
Douglas Gregor849b2432010-03-31 17:46:05 +00001978 << FixItHint::CreateRemoval(Tok.getLocation());
Ted Kremenek496e45e2009-11-10 22:55:49 +00001979 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001980 ConsumeToken();
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001981 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001982
Steve Naroff409be832007-11-11 19:54:21 +00001983 // We should have an opening brace now.
Chris Lattnerdf195262007-10-09 17:51:17 +00001984 if (Tok.isNot(tok::l_brace)) {
Steve Naroffda323ad2008-02-29 21:48:07 +00001985 Diag(Tok, diag::err_expected_method_body);
Mike Stump1eb44332009-09-09 15:08:12 +00001986
Steve Naroff409be832007-11-11 19:54:21 +00001987 // Skip over garbage, until we get to '{'. Don't eat the '{'.
1988 SkipUntil(tok::l_brace, true, true);
Mike Stump1eb44332009-09-09 15:08:12 +00001989
Steve Naroff409be832007-11-11 19:54:21 +00001990 // If we didn't find the '{', bail out.
1991 if (Tok.isNot(tok::l_brace))
John McCalld226f652010-08-21 09:40:31 +00001992 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001993 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001994
1995 if (!MDecl) {
1996 ConsumeBrace();
1997 SkipUntil(tok::r_brace, /*StopAtSemi=*/false);
1998 return 0;
1999 }
2000
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002001 // Allow the rest of sema to find private method decl implementations.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002002 Actions.AddAnyMethodToGlobalPool(MDecl);
Fariborz Jahanianc9b97092012-08-09 17:15:00 +00002003 assert (CurParsedObjCImpl
2004 && "ParseObjCMethodDefinition - Method out of @implementation");
2005 // Consume the tokens and store them for later parsing.
2006 StashAwayMethodOrFunctionBodyTokens(MDecl);
Steve Naroff71c0a952007-11-13 23:01:27 +00002007 return MDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00002008}
Anders Carlsson55085182007-08-21 17:43:55 +00002009
John McCall60d7b3a2010-08-24 06:29:42 +00002010StmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002011 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002012 Actions.CodeCompleteObjCAtStatement(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002013 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002014 return StmtError();
Chris Lattner5d803162009-12-07 16:33:19 +00002015 }
2016
2017 if (Tok.isObjCAtKeyword(tok::objc_try))
Chris Lattner6b884502008-03-10 06:06:04 +00002018 return ParseObjCTryStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002019
2020 if (Tok.isObjCAtKeyword(tok::objc_throw))
Steve Naroff64515f32008-02-05 21:27:35 +00002021 return ParseObjCThrowStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002022
2023 if (Tok.isObjCAtKeyword(tok::objc_synchronized))
Steve Naroff64515f32008-02-05 21:27:35 +00002024 return ParseObjCSynchronizedStmt(AtLoc);
John McCallf85e1932011-06-15 23:02:42 +00002025
2026 if (Tok.isObjCAtKeyword(tok::objc_autoreleasepool))
2027 return ParseObjCAutoreleasePoolStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002028
John McCall60d7b3a2010-08-24 06:29:42 +00002029 ExprResult Res(ParseExpressionWithLeadingAt(AtLoc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002030 if (Res.isInvalid()) {
Steve Naroff64515f32008-02-05 21:27:35 +00002031 // If the expression is invalid, skip ahead to the next semicolon. Not
2032 // doing this opens us up to the possibility of infinite loops if
2033 // ParseExpression does not consume any tokens.
2034 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00002035 return StmtError();
Steve Naroff64515f32008-02-05 21:27:35 +00002036 }
Chris Lattner5d803162009-12-07 16:33:19 +00002037
Steve Naroff64515f32008-02-05 21:27:35 +00002038 // Otherwise, eat the semicolon.
Douglas Gregor9ba23b42010-09-07 15:23:11 +00002039 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
Richard Smith41956372013-01-14 22:39:08 +00002040 return Actions.ActOnExprStmt(Res);
Steve Naroff64515f32008-02-05 21:27:35 +00002041}
2042
John McCall60d7b3a2010-08-24 06:29:42 +00002043ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
Anders Carlsson55085182007-08-21 17:43:55 +00002044 switch (Tok.getKind()) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002045 case tok::code_completion:
Douglas Gregor23c94db2010-07-02 17:43:08 +00002046 Actions.CodeCompleteObjCAtExpression(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002047 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002048 return ExprError();
2049
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002050 case tok::minus:
2051 case tok::plus: {
2052 tok::TokenKind Kind = Tok.getKind();
2053 SourceLocation OpLoc = ConsumeToken();
2054
2055 if (!Tok.is(tok::numeric_constant)) {
2056 const char *Symbol = 0;
2057 switch (Kind) {
2058 case tok::minus: Symbol = "-"; break;
2059 case tok::plus: Symbol = "+"; break;
2060 default: llvm_unreachable("missing unary operator case");
2061 }
2062 Diag(Tok, diag::err_nsnumber_nonliteral_unary)
2063 << Symbol;
2064 return ExprError();
2065 }
2066
2067 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2068 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002069 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002070 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002071 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002072
2073 Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.take());
2074 if (Lit.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002075 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002076
2077 return ParsePostfixExpressionSuffix(
2078 Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2079 }
2080
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002081 case tok::string_literal: // primary-expression: string-literal
2082 case tok::wide_string_literal:
Sebastian Redl1d922962008-12-13 15:32:12 +00002083 return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc));
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002084
2085 case tok::char_constant:
2086 return ParsePostfixExpressionSuffix(ParseObjCCharacterLiteral(AtLoc));
2087
2088 case tok::numeric_constant:
2089 return ParsePostfixExpressionSuffix(ParseObjCNumericLiteral(AtLoc));
2090
2091 case tok::kw_true: // Objective-C++, etc.
2092 case tok::kw___objc_yes: // c/c++/objc/objc++ __objc_yes
2093 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, true));
2094 case tok::kw_false: // Objective-C++, etc.
2095 case tok::kw___objc_no: // c/c++/objc/objc++ __objc_no
2096 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, false));
2097
2098 case tok::l_square:
2099 // Objective-C array literal
2100 return ParsePostfixExpressionSuffix(ParseObjCArrayLiteral(AtLoc));
2101
2102 case tok::l_brace:
2103 // Objective-C dictionary literal
2104 return ParsePostfixExpressionSuffix(ParseObjCDictionaryLiteral(AtLoc));
2105
Patrick Beardeb382ec2012-04-19 00:25:12 +00002106 case tok::l_paren:
2107 // Objective-C boxed expression
2108 return ParsePostfixExpressionSuffix(ParseObjCBoxedExpr(AtLoc));
2109
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002110 default:
Chris Lattner4fef81d2008-08-05 06:19:09 +00002111 if (Tok.getIdentifierInfo() == 0)
Sebastian Redl1d922962008-12-13 15:32:12 +00002112 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002113
Chris Lattner4fef81d2008-08-05 06:19:09 +00002114 switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
2115 case tok::objc_encode:
Sebastian Redl1d922962008-12-13 15:32:12 +00002116 return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002117 case tok::objc_protocol:
Sebastian Redl1d922962008-12-13 15:32:12 +00002118 return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002119 case tok::objc_selector:
Sebastian Redl1d922962008-12-13 15:32:12 +00002120 return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc));
Fariborz Jahanian6749ae12012-07-09 20:00:35 +00002121 default: {
2122 const char *str = 0;
2123 if (GetLookAheadToken(1).is(tok::l_brace)) {
2124 char ch = Tok.getIdentifierInfo()->getNameStart()[0];
2125 str =
2126 ch == 't' ? "try"
2127 : (ch == 'f' ? "finally"
2128 : (ch == 'a' ? "autoreleasepool" : 0));
2129 }
2130 if (str) {
2131 SourceLocation kwLoc = Tok.getLocation();
2132 return ExprError(Diag(AtLoc, diag::err_unexpected_at) <<
2133 FixItHint::CreateReplacement(kwLoc, str));
2134 }
2135 else
2136 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
2137 }
Chris Lattner4fef81d2008-08-05 06:19:09 +00002138 }
Anders Carlsson55085182007-08-21 17:43:55 +00002139 }
Anders Carlsson55085182007-08-21 17:43:55 +00002140}
2141
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +00002142/// \brief Parse the receiver of an Objective-C++ message send.
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002143///
2144/// This routine parses the receiver of a message send in
2145/// Objective-C++ either as a type or as an expression. Note that this
2146/// routine must not be called to parse a send to 'super', since it
2147/// has no way to return such a result.
2148///
2149/// \param IsExpr Whether the receiver was parsed as an expression.
2150///
2151/// \param TypeOrExpr If the receiver was parsed as an expression (\c
2152/// IsExpr is true), the parsed expression. If the receiver was parsed
2153/// as a type (\c IsExpr is false), the parsed type.
2154///
2155/// \returns True if an error occurred during parsing or semantic
2156/// analysis, in which case the arguments do not have valid
2157/// values. Otherwise, returns false for a successful parse.
2158///
2159/// objc-receiver: [C++]
2160/// 'super' [not parsed here]
2161/// expression
2162/// simple-type-specifier
2163/// typename-specifier
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002164bool Parser::ParseObjCXXMessageReceiver(bool &IsExpr, void *&TypeOrExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002165 InMessageExpressionRAIIObject InMessage(*this, true);
2166
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002167 if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
2168 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope))
2169 TryAnnotateTypeOrScopeToken();
2170
Kaelyn Uhrain7bf33402012-06-15 23:45:51 +00002171 if (!Actions.isSimpleTypeSpecifier(Tok.getKind())) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002172 // objc-receiver:
2173 // expression
John McCall60d7b3a2010-08-24 06:29:42 +00002174 ExprResult Receiver = ParseExpression();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002175 if (Receiver.isInvalid())
2176 return true;
2177
2178 IsExpr = true;
2179 TypeOrExpr = Receiver.take();
2180 return false;
2181 }
2182
2183 // objc-receiver:
2184 // typename-specifier
2185 // simple-type-specifier
2186 // expression (that starts with one of the above)
John McCall0b7e6782011-03-24 11:26:52 +00002187 DeclSpec DS(AttrFactory);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002188 ParseCXXSimpleTypeSpecifier(DS);
2189
2190 if (Tok.is(tok::l_paren)) {
2191 // If we see an opening parentheses at this point, we are
2192 // actually parsing an expression that starts with a
2193 // function-style cast, e.g.,
2194 //
2195 // postfix-expression:
2196 // simple-type-specifier ( expression-list [opt] )
2197 // typename-specifier ( expression-list [opt] )
2198 //
2199 // Parse the remainder of this case, then the (optional)
2200 // postfix-expression suffix, followed by the (optional)
2201 // right-hand side of the binary expression. We have an
2202 // instance method.
John McCall60d7b3a2010-08-24 06:29:42 +00002203 ExprResult Receiver = ParseCXXTypeConstructExpression(DS);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002204 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002205 Receiver = ParsePostfixExpressionSuffix(Receiver.take());
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002206 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002207 Receiver = ParseRHSOfBinaryExpression(Receiver.take(), prec::Comma);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002208 if (Receiver.isInvalid())
2209 return true;
2210
2211 IsExpr = true;
2212 TypeOrExpr = Receiver.take();
2213 return false;
2214 }
2215
2216 // We have a class message. Turn the simple-type-specifier or
2217 // typename-specifier we parsed into a type and parse the
2218 // remainder of the class message.
2219 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002220 TypeResult Type = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002221 if (Type.isInvalid())
2222 return true;
2223
2224 IsExpr = false;
John McCallb3d87482010-08-24 05:47:05 +00002225 TypeOrExpr = Type.get().getAsOpaquePtr();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002226 return false;
2227}
2228
Douglas Gregor1b730e82010-05-31 14:40:22 +00002229/// \brief Determine whether the parser is currently referring to a an
2230/// Objective-C message send, using a simplified heuristic to avoid overhead.
2231///
2232/// This routine will only return true for a subset of valid message-send
2233/// expressions.
2234bool Parser::isSimpleObjCMessageExpression() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002235 assert(Tok.is(tok::l_square) && getLangOpts().ObjC1 &&
Douglas Gregor1b730e82010-05-31 14:40:22 +00002236 "Incorrect start for isSimpleObjCMessageExpression");
Douglas Gregor1b730e82010-05-31 14:40:22 +00002237 return GetLookAheadToken(1).is(tok::identifier) &&
2238 GetLookAheadToken(2).is(tok::identifier);
2239}
2240
Douglas Gregor9497a732010-09-16 01:51:54 +00002241bool Parser::isStartOfObjCClassMessageMissingOpenBracket() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002242 if (!getLangOpts().ObjC1 || !NextToken().is(tok::identifier) ||
Douglas Gregor9497a732010-09-16 01:51:54 +00002243 InMessageExpression)
2244 return false;
2245
2246
2247 ParsedType Type;
2248
2249 if (Tok.is(tok::annot_typename))
2250 Type = getTypeAnnotation(Tok);
2251 else if (Tok.is(tok::identifier))
2252 Type = Actions.getTypeName(*Tok.getIdentifierInfo(), Tok.getLocation(),
2253 getCurScope());
2254 else
2255 return false;
2256
2257 if (!Type.get().isNull() && Type.get()->isObjCObjectOrInterfaceType()) {
2258 const Token &AfterNext = GetLookAheadToken(2);
2259 if (AfterNext.is(tok::colon) || AfterNext.is(tok::r_square)) {
2260 if (Tok.is(tok::identifier))
2261 TryAnnotateTypeOrScopeToken();
2262
2263 return Tok.is(tok::annot_typename);
2264 }
2265 }
2266
2267 return false;
2268}
2269
Mike Stump1eb44332009-09-09 15:08:12 +00002270/// objc-message-expr:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002271/// '[' objc-receiver objc-message-args ']'
2272///
Douglas Gregor2725ca82010-04-21 19:57:20 +00002273/// objc-receiver: [C]
Chris Lattnereb483eb2010-04-11 08:28:14 +00002274/// 'super'
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002275/// expression
2276/// class-name
2277/// type-name
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002278///
John McCall60d7b3a2010-08-24 06:29:42 +00002279ExprResult Parser::ParseObjCMessageExpression() {
Chris Lattner699b6612008-01-25 18:59:06 +00002280 assert(Tok.is(tok::l_square) && "'[' expected");
2281 SourceLocation LBracLoc = ConsumeBracket(); // consume '['
2282
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002283 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002284 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002285 cutOffParsing();
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002286 return ExprError();
2287 }
2288
Douglas Gregor0fbda682010-09-15 14:51:05 +00002289 InMessageExpressionRAIIObject InMessage(*this, true);
2290
David Blaikie4e4d0842012-03-11 07:00:24 +00002291 if (getLangOpts().CPlusPlus) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002292 // We completely separate the C and C++ cases because C++ requires
2293 // more complicated (read: slower) parsing.
2294
2295 // Handle send to super.
2296 // FIXME: This doesn't benefit from the same typo-correction we
2297 // get in Objective-C.
2298 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002299 NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
John McCallb3d87482010-08-24 05:47:05 +00002300 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2301 ParsedType(), 0);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002302
2303 // Parse the receiver, which is either a type or an expression.
2304 bool IsExpr;
Nick Lewycky304b7522010-09-15 18:35:19 +00002305 void *TypeOrExpr = NULL;
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002306 if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
2307 SkipUntil(tok::r_square);
2308 return ExprError();
2309 }
2310
2311 if (IsExpr)
John McCallb3d87482010-08-24 05:47:05 +00002312 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2313 ParsedType(),
John McCall9ae2f072010-08-23 23:25:46 +00002314 static_cast<Expr*>(TypeOrExpr));
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002315
2316 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +00002317 ParsedType::getFromOpaquePtr(TypeOrExpr),
2318 0);
Chris Lattnerc59cb382010-05-31 18:18:22 +00002319 }
2320
2321 if (Tok.is(tok::identifier)) {
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002322 IdentifierInfo *Name = Tok.getIdentifierInfo();
2323 SourceLocation NameLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002324 ParsedType ReceiverType;
Douglas Gregor23c94db2010-07-02 17:43:08 +00002325 switch (Actions.getObjCMessageKind(getCurScope(), Name, NameLoc,
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002326 Name == Ident_super,
Douglas Gregor1569f952010-04-21 20:38:13 +00002327 NextToken().is(tok::period),
2328 ReceiverType)) {
John McCallf312b1e2010-08-26 23:41:50 +00002329 case Sema::ObjCSuperMessage:
John McCallb3d87482010-08-24 05:47:05 +00002330 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2331 ParsedType(), 0);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002332
John McCallf312b1e2010-08-26 23:41:50 +00002333 case Sema::ObjCClassMessage:
Douglas Gregor1569f952010-04-21 20:38:13 +00002334 if (!ReceiverType) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002335 SkipUntil(tok::r_square);
2336 return ExprError();
2337 }
2338
Douglas Gregor1569f952010-04-21 20:38:13 +00002339 ConsumeToken(); // the type name
2340
2341 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCall9ae2f072010-08-23 23:25:46 +00002342 ReceiverType, 0);
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002343
John McCallf312b1e2010-08-26 23:41:50 +00002344 case Sema::ObjCInstanceMessage:
Douglas Gregor2725ca82010-04-21 19:57:20 +00002345 // Fall through to parse an expression.
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002346 break;
Fariborz Jahaniand2869922009-04-08 19:50:10 +00002347 }
Chris Lattner699b6612008-01-25 18:59:06 +00002348 }
Chris Lattnereb483eb2010-04-11 08:28:14 +00002349
2350 // Otherwise, an arbitrary expression can be the receiver of a send.
John McCall60d7b3a2010-08-24 06:29:42 +00002351 ExprResult Res(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002352 if (Res.isInvalid()) {
Chris Lattner5c749422008-01-25 19:43:26 +00002353 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002354 return Res;
Chris Lattner699b6612008-01-25 18:59:06 +00002355 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002356
John McCallb3d87482010-08-24 05:47:05 +00002357 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2358 ParsedType(), Res.take());
Chris Lattner699b6612008-01-25 18:59:06 +00002359}
Sebastian Redl1d922962008-12-13 15:32:12 +00002360
Douglas Gregor2725ca82010-04-21 19:57:20 +00002361/// \brief Parse the remainder of an Objective-C message following the
2362/// '[' objc-receiver.
2363///
2364/// This routine handles sends to super, class messages (sent to a
2365/// class name), and instance messages (sent to an object), and the
2366/// target is represented by \p SuperLoc, \p ReceiverType, or \p
2367/// ReceiverExpr, respectively. Only one of these parameters may have
2368/// a valid value.
2369///
2370/// \param LBracLoc The location of the opening '['.
2371///
2372/// \param SuperLoc If this is a send to 'super', the location of the
2373/// 'super' keyword that indicates a send to the superclass.
2374///
2375/// \param ReceiverType If this is a class message, the type of the
2376/// class we are sending a message to.
2377///
2378/// \param ReceiverExpr If this is an instance message, the expression
2379/// used to compute the receiver object.
Mike Stump1eb44332009-09-09 15:08:12 +00002380///
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002381/// objc-message-args:
2382/// objc-selector
2383/// objc-keywordarg-list
2384///
2385/// objc-keywordarg-list:
2386/// objc-keywordarg
2387/// objc-keywordarg-list objc-keywordarg
2388///
Mike Stump1eb44332009-09-09 15:08:12 +00002389/// objc-keywordarg:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002390/// selector-name[opt] ':' objc-keywordexpr
2391///
2392/// objc-keywordexpr:
2393/// nonempty-expr-list
2394///
2395/// nonempty-expr-list:
2396/// assignment-expression
2397/// nonempty-expr-list , assignment-expression
Sebastian Redl1d922962008-12-13 15:32:12 +00002398///
John McCall60d7b3a2010-08-24 06:29:42 +00002399ExprResult
Chris Lattner699b6612008-01-25 18:59:06 +00002400Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002401 SourceLocation SuperLoc,
John McCallb3d87482010-08-24 05:47:05 +00002402 ParsedType ReceiverType,
Sebastian Redl1d922962008-12-13 15:32:12 +00002403 ExprArg ReceiverExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002404 InMessageExpressionRAIIObject InMessage(*this, true);
2405
Steve Naroffc4df6d22009-11-07 02:08:14 +00002406 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002407 if (SuperLoc.isValid())
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002408 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, 0, 0,
2409 false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002410 else if (ReceiverType)
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002411 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, 0, 0,
2412 false);
Steve Naroffc4df6d22009-11-07 02:08:14 +00002413 else
John McCall9ae2f072010-08-23 23:25:46 +00002414 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002415 0, 0, false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002416 cutOffParsing();
2417 return ExprError();
Steve Naroffc4df6d22009-11-07 02:08:14 +00002418 }
Douglas Gregord3c68542009-11-19 01:08:35 +00002419
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002420 // Parse objc-selector
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00002421 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002422 IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002423
Chris Lattner5f9e2722011-07-23 10:55:15 +00002424 SmallVector<IdentifierInfo *, 12> KeyIdents;
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002425 SmallVector<SourceLocation, 12> KeyLocs;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002426 ExprVector KeyExprs;
Steve Naroff68d331a2007-09-27 14:38:14 +00002427
Chris Lattnerdf195262007-10-09 17:51:17 +00002428 if (Tok.is(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002429 while (1) {
2430 // Each iteration parses a single keyword argument.
Steve Naroff68d331a2007-09-27 14:38:14 +00002431 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002432 KeyLocs.push_back(Loc);
Steve Naroff37387c92007-09-17 20:25:27 +00002433
Chris Lattnerdf195262007-10-09 17:51:17 +00002434 if (Tok.isNot(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002435 Diag(Tok, diag::err_expected_colon);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002436 // We must manually skip to a ']', otherwise the expression skipper will
2437 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2438 // the enclosing expression.
2439 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002440 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002441 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002442
Steve Naroff68d331a2007-09-27 14:38:14 +00002443 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00002444 /// Parse the expression after ':'
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002445
2446 if (Tok.is(tok::code_completion)) {
2447 if (SuperLoc.isValid())
2448 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
2449 KeyIdents.data(),
2450 KeyIdents.size(),
2451 /*AtArgumentEpression=*/true);
2452 else if (ReceiverType)
2453 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
2454 KeyIdents.data(),
2455 KeyIdents.size(),
2456 /*AtArgumentEpression=*/true);
2457 else
2458 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
2459 KeyIdents.data(),
2460 KeyIdents.size(),
2461 /*AtArgumentEpression=*/true);
2462
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002463 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002464 return ExprError();
2465 }
2466
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002467 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002468 if (Res.isInvalid()) {
Chris Lattner4fef81d2008-08-05 06:19:09 +00002469 // We must manually skip to a ']', otherwise the expression skipper will
2470 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2471 // the enclosing expression.
2472 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002473 return Res;
Steve Naroff37387c92007-09-17 20:25:27 +00002474 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002475
Steve Naroff37387c92007-09-17 20:25:27 +00002476 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002477 KeyExprs.push_back(Res.release());
Sebastian Redl1d922962008-12-13 15:32:12 +00002478
Douglas Gregord3c68542009-11-19 01:08:35 +00002479 // Code completion after each argument.
2480 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002481 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002482 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002483 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002484 KeyIdents.size(),
2485 /*AtArgumentEpression=*/false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002486 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002487 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
Douglas Gregord3c68542009-11-19 01:08:35 +00002488 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002489 KeyIdents.size(),
2490 /*AtArgumentEpression=*/false);
Douglas Gregord3c68542009-11-19 01:08:35 +00002491 else
John McCall9ae2f072010-08-23 23:25:46 +00002492 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregord3c68542009-11-19 01:08:35 +00002493 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002494 KeyIdents.size(),
2495 /*AtArgumentEpression=*/false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002496 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002497 return ExprError();
Douglas Gregord3c68542009-11-19 01:08:35 +00002498 }
2499
Steve Naroff37387c92007-09-17 20:25:27 +00002500 // Check for another keyword selector.
Chris Lattner2fc5c242009-04-11 18:13:45 +00002501 selIdent = ParseObjCSelectorPiece(Loc);
Chris Lattnerdf195262007-10-09 17:51:17 +00002502 if (!selIdent && Tok.isNot(tok::colon))
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002503 break;
2504 // We have a selector or a colon, continue parsing.
2505 }
2506 // Parse the, optional, argument list, comma separated.
Chris Lattnerdf195262007-10-09 17:51:17 +00002507 while (Tok.is(tok::comma)) {
Fariborz Jahanian18df0eb2012-05-21 22:43:44 +00002508 SourceLocation commaLoc = ConsumeToken(); // Eat the ','.
Mike Stump1eb44332009-09-09 15:08:12 +00002509 /// Parse the expression after ','
John McCall60d7b3a2010-08-24 06:29:42 +00002510 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002511 if (Res.isInvalid()) {
Fariborz Jahanian18df0eb2012-05-21 22:43:44 +00002512 if (Tok.is(tok::colon)) {
2513 Diag(commaLoc, diag::note_extra_comma_message_arg) <<
2514 FixItHint::CreateRemoval(commaLoc);
2515 }
Chris Lattner4fef81d2008-08-05 06:19:09 +00002516 // We must manually skip to a ']', otherwise the expression skipper will
2517 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2518 // the enclosing expression.
2519 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002520 return Res;
Steve Naroff49f109c2007-11-15 13:05:42 +00002521 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002522
Steve Naroff49f109c2007-11-15 13:05:42 +00002523 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002524 KeyExprs.push_back(Res.release());
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002525 }
2526 } else if (!selIdent) {
2527 Diag(Tok, diag::err_expected_ident); // missing selector name.
Sebastian Redl1d922962008-12-13 15:32:12 +00002528
Chris Lattner4fef81d2008-08-05 06:19:09 +00002529 // We must manually skip to a ']', otherwise the expression skipper will
2530 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2531 // the enclosing expression.
2532 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002533 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002534 }
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002535
Chris Lattnerdf195262007-10-09 17:51:17 +00002536 if (Tok.isNot(tok::r_square)) {
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002537 if (Tok.is(tok::identifier))
2538 Diag(Tok, diag::err_expected_colon);
2539 else
2540 Diag(Tok, diag::err_expected_rsquare);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002541 // We must manually skip to a ']', otherwise the expression skipper will
2542 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2543 // the enclosing expression.
2544 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002545 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002546 }
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002547
Chris Lattner699b6612008-01-25 18:59:06 +00002548 SourceLocation RBracLoc = ConsumeBracket(); // consume ']'
Sebastian Redl1d922962008-12-13 15:32:12 +00002549
Steve Naroff29238a02007-10-05 18:42:47 +00002550 unsigned nKeys = KeyIdents.size();
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002551 if (nKeys == 0) {
Chris Lattnerff384912007-10-07 02:00:24 +00002552 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002553 KeyLocs.push_back(Loc);
2554 }
Chris Lattnerff384912007-10-07 02:00:24 +00002555 Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002556
Douglas Gregor2725ca82010-04-21 19:57:20 +00002557 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002558 return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002559 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002560 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002561 return Actions.ActOnClassMessage(getCurScope(), ReceiverType, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002562 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
John McCall9ae2f072010-08-23 23:25:46 +00002563 return Actions.ActOnInstanceMessage(getCurScope(), ReceiverExpr, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002564 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002565}
2566
John McCall60d7b3a2010-08-24 06:29:42 +00002567ExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) {
2568 ExprResult Res(ParseStringLiteralExpression());
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002569 if (Res.isInvalid()) return Res;
Sebastian Redl1d922962008-12-13 15:32:12 +00002570
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002571 // @"foo" @"bar" is a valid concatenated string. Eat any subsequent string
2572 // expressions. At this point, we know that the only valid thing that starts
2573 // with '@' is an @"".
Chris Lattner5f9e2722011-07-23 10:55:15 +00002574 SmallVector<SourceLocation, 4> AtLocs;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002575 ExprVector AtStrings;
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002576 AtLocs.push_back(AtLoc);
Sebastian Redleffa8d12008-12-10 00:02:53 +00002577 AtStrings.push_back(Res.release());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002578
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002579 while (Tok.is(tok::at)) {
2580 AtLocs.push_back(ConsumeToken()); // eat the @.
Anders Carlsson55085182007-08-21 17:43:55 +00002581
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002582 // Invalid unless there is a string literal.
Chris Lattner97cf6eb2009-02-18 05:56:09 +00002583 if (!isTokenStringLiteral())
2584 return ExprError(Diag(Tok, diag::err_objc_concat_string));
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002585
John McCall60d7b3a2010-08-24 06:29:42 +00002586 ExprResult Lit(ParseStringLiteralExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002587 if (Lit.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002588 return Lit;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002589
Sebastian Redleffa8d12008-12-10 00:02:53 +00002590 AtStrings.push_back(Lit.release());
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002591 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002592
Nico Weberd32b94d2012-12-31 00:28:03 +00002593 return Actions.ParseObjCStringLiteral(&AtLocs[0], AtStrings.data(),
2594 AtStrings.size());
Anders Carlsson55085182007-08-21 17:43:55 +00002595}
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002596
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002597/// ParseObjCBooleanLiteral -
2598/// objc-scalar-literal : '@' boolean-keyword
2599/// ;
2600/// boolean-keyword: 'true' | 'false' | '__objc_yes' | '__objc_no'
2601/// ;
2602ExprResult Parser::ParseObjCBooleanLiteral(SourceLocation AtLoc,
2603 bool ArgValue) {
2604 SourceLocation EndLoc = ConsumeToken(); // consume the keyword.
2605 return Actions.ActOnObjCBoolLiteral(AtLoc, EndLoc, ArgValue);
2606}
2607
2608/// ParseObjCCharacterLiteral -
2609/// objc-scalar-literal : '@' character-literal
2610/// ;
2611ExprResult Parser::ParseObjCCharacterLiteral(SourceLocation AtLoc) {
2612 ExprResult Lit(Actions.ActOnCharacterConstant(Tok));
2613 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002614 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002615 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002616 ConsumeToken(); // Consume the literal token.
Nico Weberd32b94d2012-12-31 00:28:03 +00002617 return Actions.BuildObjCNumericLiteral(AtLoc, Lit.take());
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002618}
2619
2620/// ParseObjCNumericLiteral -
2621/// objc-scalar-literal : '@' scalar-literal
2622/// ;
2623/// scalar-literal : | numeric-constant /* any numeric constant. */
2624/// ;
2625ExprResult Parser::ParseObjCNumericLiteral(SourceLocation AtLoc) {
2626 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2627 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002628 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002629 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002630 ConsumeToken(); // Consume the literal token.
Nico Weberd32b94d2012-12-31 00:28:03 +00002631 return Actions.BuildObjCNumericLiteral(AtLoc, Lit.take());
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002632}
2633
Patrick Beardeb382ec2012-04-19 00:25:12 +00002634/// ParseObjCBoxedExpr -
2635/// objc-box-expression:
2636/// @( assignment-expression )
2637ExprResult
2638Parser::ParseObjCBoxedExpr(SourceLocation AtLoc) {
2639 if (Tok.isNot(tok::l_paren))
2640 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@");
2641
2642 BalancedDelimiterTracker T(*this, tok::l_paren);
2643 T.consumeOpen();
2644 ExprResult ValueExpr(ParseAssignmentExpression());
2645 if (T.consumeClose())
2646 return ExprError();
Argyrios Kyrtzidisedd27602012-05-10 20:02:36 +00002647
2648 if (ValueExpr.isInvalid())
2649 return ExprError();
2650
Patrick Beardeb382ec2012-04-19 00:25:12 +00002651 // Wrap the sub-expression in a parenthesized expression, to distinguish
2652 // a boxed expression from a literal.
2653 SourceLocation LPLoc = T.getOpenLocation(), RPLoc = T.getCloseLocation();
2654 ValueExpr = Actions.ActOnParenExpr(LPLoc, RPLoc, ValueExpr.take());
Nico Weberd32b94d2012-12-31 00:28:03 +00002655 return Actions.BuildObjCBoxedExpr(SourceRange(AtLoc, RPLoc),
2656 ValueExpr.take());
Patrick Beardeb382ec2012-04-19 00:25:12 +00002657}
2658
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002659ExprResult Parser::ParseObjCArrayLiteral(SourceLocation AtLoc) {
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002660 ExprVector ElementExprs; // array elements.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002661 ConsumeBracket(); // consume the l_square.
2662
2663 while (Tok.isNot(tok::r_square)) {
2664 // Parse list of array element expressions (all must be id types).
2665 ExprResult Res(ParseAssignmentExpression());
2666 if (Res.isInvalid()) {
2667 // We must manually skip to a ']', otherwise the expression skipper will
2668 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2669 // the enclosing expression.
2670 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002671 return Res;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002672 }
2673
2674 // Parse the ellipsis that indicates a pack expansion.
2675 if (Tok.is(tok::ellipsis))
2676 Res = Actions.ActOnPackExpansion(Res.get(), ConsumeToken());
2677 if (Res.isInvalid())
2678 return true;
2679
2680 ElementExprs.push_back(Res.release());
2681
2682 if (Tok.is(tok::comma))
2683 ConsumeToken(); // Eat the ','.
2684 else if (Tok.isNot(tok::r_square))
2685 return ExprError(Diag(Tok, diag::err_expected_rsquare_or_comma));
2686 }
2687 SourceLocation EndLoc = ConsumeBracket(); // location of ']'
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002688 MultiExprArg Args(ElementExprs);
Nico Weberd32b94d2012-12-31 00:28:03 +00002689 return Actions.BuildObjCArrayLiteral(SourceRange(AtLoc, EndLoc), Args);
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002690}
2691
2692ExprResult Parser::ParseObjCDictionaryLiteral(SourceLocation AtLoc) {
2693 SmallVector<ObjCDictionaryElement, 4> Elements; // dictionary elements.
2694 ConsumeBrace(); // consume the l_square.
2695 while (Tok.isNot(tok::r_brace)) {
2696 // Parse the comma separated key : value expressions.
2697 ExprResult KeyExpr;
2698 {
2699 ColonProtectionRAIIObject X(*this);
2700 KeyExpr = ParseAssignmentExpression();
2701 if (KeyExpr.isInvalid()) {
2702 // We must manually skip to a '}', otherwise the expression skipper will
2703 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2704 // the enclosing expression.
2705 SkipUntil(tok::r_brace);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002706 return KeyExpr;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002707 }
2708 }
2709
2710 if (Tok.is(tok::colon)) {
2711 ConsumeToken();
2712 } else {
2713 return ExprError(Diag(Tok, diag::err_expected_colon));
2714 }
2715
2716 ExprResult ValueExpr(ParseAssignmentExpression());
2717 if (ValueExpr.isInvalid()) {
2718 // We must manually skip to a '}', otherwise the expression skipper will
2719 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2720 // the enclosing expression.
2721 SkipUntil(tok::r_brace);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002722 return ValueExpr;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002723 }
2724
2725 // Parse the ellipsis that designates this as a pack expansion.
2726 SourceLocation EllipsisLoc;
David Blaikie4e4d0842012-03-11 07:00:24 +00002727 if (Tok.is(tok::ellipsis) && getLangOpts().CPlusPlus)
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002728 EllipsisLoc = ConsumeToken();
2729
2730 // We have a valid expression. Collect it in a vector so we can
2731 // build the argument list.
2732 ObjCDictionaryElement Element = {
David Blaikie66874fb2013-02-21 01:47:18 +00002733 KeyExpr.get(), ValueExpr.get(), EllipsisLoc, None
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002734 };
2735 Elements.push_back(Element);
2736
2737 if (Tok.is(tok::comma))
2738 ConsumeToken(); // Eat the ','.
2739 else if (Tok.isNot(tok::r_brace))
2740 return ExprError(Diag(Tok, diag::err_expected_rbrace_or_comma));
2741 }
2742 SourceLocation EndLoc = ConsumeBrace();
2743
2744 // Create the ObjCDictionaryLiteral.
Nico Weberd32b94d2012-12-31 00:28:03 +00002745 return Actions.BuildObjCDictionaryLiteral(SourceRange(AtLoc, EndLoc),
2746 Elements.data(), Elements.size());
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002747}
2748
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002749/// objc-encode-expression:
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +00002750/// \@encode ( type-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002751ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002752Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00002753 assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
Sebastian Redl1d922962008-12-13 15:32:12 +00002754
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002755 SourceLocation EncLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002756
Chris Lattner4fef81d2008-08-05 06:19:09 +00002757 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002758 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode");
2759
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002760 BalancedDelimiterTracker T(*this, tok::l_paren);
2761 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002762
Douglas Gregor809070a2009-02-18 17:45:20 +00002763 TypeResult Ty = ParseTypeName();
Sebastian Redl1d922962008-12-13 15:32:12 +00002764
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002765 T.consumeClose();
Sebastian Redl1d922962008-12-13 15:32:12 +00002766
Douglas Gregor809070a2009-02-18 17:45:20 +00002767 if (Ty.isInvalid())
2768 return ExprError();
2769
Nico Weberd32b94d2012-12-31 00:28:03 +00002770 return Actions.ParseObjCEncodeExpression(AtLoc, EncLoc, T.getOpenLocation(),
2771 Ty.get(), T.getCloseLocation());
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002772}
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002773
2774/// objc-protocol-expression
James Dennett17d26a62012-06-11 06:19:40 +00002775/// \@protocol ( protocol-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002776ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002777Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) {
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002778 SourceLocation ProtoLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002779
Chris Lattner4fef81d2008-08-05 06:19:09 +00002780 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002781 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol");
2782
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002783 BalancedDelimiterTracker T(*this, tok::l_paren);
2784 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002785
Chris Lattner4fef81d2008-08-05 06:19:09 +00002786 if (Tok.isNot(tok::identifier))
Sebastian Redl1d922962008-12-13 15:32:12 +00002787 return ExprError(Diag(Tok, diag::err_expected_ident));
2788
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002789 IdentifierInfo *protocolId = Tok.getIdentifierInfo();
Argyrios Kyrtzidis7d24e282012-05-16 00:50:02 +00002790 SourceLocation ProtoIdLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002791
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002792 T.consumeClose();
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002793
Nico Weberd32b94d2012-12-31 00:28:03 +00002794 return Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc,
2795 T.getOpenLocation(), ProtoIdLoc,
2796 T.getCloseLocation());
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002797}
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002798
2799/// objc-selector-expression
2800/// @selector '(' objc-keyword-selector ')'
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002801ExprResult Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002802 SourceLocation SelectorLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002803
Chris Lattner4fef81d2008-08-05 06:19:09 +00002804 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002805 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector");
2806
Chris Lattner5f9e2722011-07-23 10:55:15 +00002807 SmallVector<IdentifierInfo *, 12> KeyIdents;
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002808 SourceLocation sLoc;
Douglas Gregor458433d2010-08-26 15:07:07 +00002809
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002810 BalancedDelimiterTracker T(*this, tok::l_paren);
2811 T.consumeOpen();
2812
Douglas Gregor458433d2010-08-26 15:07:07 +00002813 if (Tok.is(tok::code_completion)) {
2814 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2815 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002816 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002817 return ExprError();
2818 }
2819
Chris Lattner2fc5c242009-04-11 18:13:45 +00002820 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
Chris Lattner5add7542010-08-27 22:32:41 +00002821 if (!SelIdent && // missing selector name.
2822 Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002823 return ExprError(Diag(Tok, diag::err_expected_ident));
2824
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002825 KeyIdents.push_back(SelIdent);
Steve Naroff887407e2007-12-05 22:21:29 +00002826 unsigned nColons = 0;
2827 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002828 while (1) {
Chris Lattner5add7542010-08-27 22:32:41 +00002829 if (Tok.is(tok::coloncolon)) { // Handle :: in C++.
2830 ++nColons;
2831 KeyIdents.push_back(0);
2832 } else if (Tok.isNot(tok::colon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002833 return ExprError(Diag(Tok, diag::err_expected_colon));
2834
Chris Lattner5add7542010-08-27 22:32:41 +00002835 ++nColons;
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002836 ConsumeToken(); // Eat the ':' or '::'.
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002837 if (Tok.is(tok::r_paren))
2838 break;
Douglas Gregor458433d2010-08-26 15:07:07 +00002839
2840 if (Tok.is(tok::code_completion)) {
2841 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2842 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002843 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002844 return ExprError();
2845 }
2846
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002847 // Check for another keyword selector.
2848 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002849 SelIdent = ParseObjCSelectorPiece(Loc);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002850 KeyIdents.push_back(SelIdent);
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002851 if (!SelIdent && Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002852 break;
2853 }
Steve Naroff887407e2007-12-05 22:21:29 +00002854 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002855 T.consumeClose();
Steve Naroff887407e2007-12-05 22:21:29 +00002856 Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]);
Nico Weberd32b94d2012-12-31 00:28:03 +00002857 return Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc,
2858 T.getOpenLocation(),
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002859 T.getCloseLocation());
Gabor Greif58065b22007-10-19 15:38:32 +00002860 }
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002861
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002862void Parser::ParseLexedObjCMethodDefs(LexedMethod &LM, bool parseMethod) {
2863 // MCDecl might be null due to error in method or c-function prototype, etc.
2864 Decl *MCDecl = LM.D;
2865 bool skip = MCDecl &&
2866 ((parseMethod && !Actions.isObjCMethodDecl(MCDecl)) ||
2867 (!parseMethod && Actions.isObjCMethodDecl(MCDecl)));
2868 if (skip)
2869 return;
2870
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002871 // Save the current token position.
2872 SourceLocation OrigLoc = Tok.getLocation();
2873
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002874 assert(!LM.Toks.empty() && "ParseLexedObjCMethodDef - Empty body!");
2875 // Append the current token at the end of the new token stream so that it
2876 // doesn't get lost.
2877 LM.Toks.push_back(Tok);
2878 PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false);
2879
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002880 // Consume the previously pushed token.
2881 ConsumeAnyToken();
2882
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002883 assert((Tok.is(tok::l_brace) || Tok.is(tok::kw_try) ||
2884 Tok.is(tok::colon)) &&
2885 "Inline objective-c method not starting with '{' or 'try' or ':'");
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002886 // Enter a scope for the method or c-fucntion body.
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002887 ParseScope BodyScope(this,
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002888 parseMethod
2889 ? Scope::ObjCMethodScope|Scope::FnScope|Scope::DeclScope
2890 : Scope::FnScope|Scope::DeclScope);
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002891
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002892 // Tell the actions module that we have entered a method or c-function definition
2893 // with the specified Declarator for the method/function.
Fariborz Jahanian8c6cb462012-08-08 23:41:08 +00002894 if (parseMethod)
2895 Actions.ActOnStartOfObjCMethodDef(getCurScope(), MCDecl);
2896 else
2897 Actions.ActOnStartOfFunctionDef(getCurScope(), MCDecl);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00002898 if (Tok.is(tok::kw_try))
2899 MCDecl = ParseFunctionTryBlock(MCDecl, BodyScope);
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002900 else {
2901 if (Tok.is(tok::colon))
2902 ParseConstructorInitializer(MCDecl);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00002903 MCDecl = ParseFunctionStatementBody(MCDecl, BodyScope);
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002904 }
Fariborz Jahanian69409722012-08-09 21:12:39 +00002905
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002906 if (Tok.getLocation() != OrigLoc) {
2907 // Due to parsing error, we either went over the cached tokens or
2908 // there are still cached tokens left. If it's the latter case skip the
2909 // leftover tokens.
2910 // Since this is an uncommon situation that should be avoided, use the
2911 // expensive isBeforeInTranslationUnit call.
2912 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
2913 OrigLoc))
2914 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
2915 ConsumeAnyToken();
2916 }
2917
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002918 return;
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002919}