blob: badbee2b5b2245fc861aa1ebd206f9726bccbc2a [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
Fariborz Jahanian4cc0cf12013-03-20 18:09:33 +00001231void Parser::HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc,
1232 BalancedDelimiterTracker &T,
1233 SmallVectorImpl<Decl *> &AllIvarDecls,
1234 bool RBraceMissing) {
1235 if (!RBraceMissing)
1236 T.consumeClose();
1237
1238 Actions.ActOnObjCContainerStartDefinition(interfaceDecl);
1239 Actions.ActOnLastBitfield(T.getCloseLocation(), AllIvarDecls);
1240 Actions.ActOnObjCContainerFinishDefinition();
1241 // Call ActOnFields() even if we don't have any decls. This is useful
1242 // for code rewriting tools that need to be aware of the empty list.
1243 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl,
1244 AllIvarDecls,
1245 T.getOpenLocation(), T.getCloseLocation(), 0);
1246}
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001247
Steve Naroffdac269b2007-08-20 21:31:48 +00001248/// objc-class-instance-variables:
1249/// '{' objc-instance-variable-decl-list[opt] '}'
1250///
1251/// objc-instance-variable-decl-list:
1252/// objc-visibility-spec
1253/// objc-instance-variable-decl ';'
1254/// ';'
1255/// objc-instance-variable-decl-list objc-visibility-spec
1256/// objc-instance-variable-decl-list objc-instance-variable-decl ';'
1257/// objc-instance-variable-decl-list ';'
1258///
1259/// objc-visibility-spec:
1260/// @private
1261/// @protected
1262/// @public
Steve Naroffddbff782007-08-21 21:17:12 +00001263/// @package [OBJC2]
Steve Naroffdac269b2007-08-20 21:31:48 +00001264///
1265/// objc-instance-variable-decl:
Mike Stump1eb44332009-09-09 15:08:12 +00001266/// struct-declaration
Steve Naroffdac269b2007-08-20 21:31:48 +00001267///
John McCalld226f652010-08-21 09:40:31 +00001268void Parser::ParseObjCClassInstanceVariables(Decl *interfaceDecl,
Fariborz Jahanian83c481a2010-02-22 23:04:20 +00001269 tok::ObjCKeywordKind visibility,
Steve Naroff60fccee2007-10-29 21:38:07 +00001270 SourceLocation atLoc) {
Chris Lattnerdf195262007-10-09 17:51:17 +00001271 assert(Tok.is(tok::l_brace) && "expected {");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001272 SmallVector<Decl *, 32> AllIvarDecls;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001273
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001274 ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001275 ObjCDeclContextSwitch ObjCDC(*this);
Douglas Gregor72de6672009-01-08 20:45:30 +00001276
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001277 BalancedDelimiterTracker T(*this, tok::l_brace);
1278 T.consumeOpen();
Steve Naroffddbff782007-08-21 21:17:12 +00001279 // While we still have something to read, read the instance variables.
Chris Lattnerdf195262007-10-09 17:51:17 +00001280 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001281 // Each iteration of this loop reads one objc-instance-variable-decl.
Mike Stump1eb44332009-09-09 15:08:12 +00001282
Steve Naroffddbff782007-08-21 21:17:12 +00001283 // Check for extraneous top-level semicolon.
Chris Lattnerdf195262007-10-09 17:51:17 +00001284 if (Tok.is(tok::semi)) {
Richard Trieu4b0e6f12012-05-16 19:04:59 +00001285 ConsumeExtraSemi(InstanceVariableList);
Steve Naroffddbff782007-08-21 21:17:12 +00001286 continue;
1287 }
Mike Stump1eb44332009-09-09 15:08:12 +00001288
Steve Naroffddbff782007-08-21 21:17:12 +00001289 // Set the default visibility to private.
Chris Lattnerdf195262007-10-09 17:51:17 +00001290 if (Tok.is(tok::at)) { // parse objc-visibility-spec
Steve Naroffddbff782007-08-21 21:17:12 +00001291 ConsumeToken(); // eat the @ sign
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001292
1293 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001294 Actions.CodeCompleteObjCAtVisibility(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001295 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001296 }
1297
Steve Naroff861cf3e2007-08-23 18:16:40 +00001298 switch (Tok.getObjCKeywordID()) {
Steve Naroffddbff782007-08-21 21:17:12 +00001299 case tok::objc_private:
1300 case tok::objc_public:
1301 case tok::objc_protected:
1302 case tok::objc_package:
Steve Naroff861cf3e2007-08-23 18:16:40 +00001303 visibility = Tok.getObjCKeywordID();
Steve Naroffddbff782007-08-21 21:17:12 +00001304 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001305 continue;
Steve Naroffddbff782007-08-21 21:17:12 +00001306 default:
Fariborz Jahanian4cc0cf12013-03-20 18:09:33 +00001307 Diag(Tok, (Tok.getObjCKeywordID() == tok::objc_end) ?
1308 diag::err_objc_unexpected_atend :
1309 diag::err_objc_illegal_visibility_spec);
1310 Tok.setLocation(Tok.getLocation().getLocWithOffset(-1));
1311 Tok.setKind(tok::at);
1312 Tok.setLength(1);
1313 PP.EnterToken(Tok);
1314 HelperActionsForIvarDeclarations(interfaceDecl, atLoc,
1315 T, AllIvarDecls, true);
1316 return;
Steve Naroffddbff782007-08-21 21:17:12 +00001317 }
1318 }
Mike Stump1eb44332009-09-09 15:08:12 +00001319
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001320 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001321 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001322 Sema::PCC_ObjCInstanceVariableList);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001323 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001324 }
1325
John McCallbdd563e2009-11-03 02:38:08 +00001326 struct ObjCIvarCallback : FieldCallback {
1327 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00001328 Decl *IDecl;
John McCallbdd563e2009-11-03 02:38:08 +00001329 tok::ObjCKeywordKind visibility;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001330 SmallVectorImpl<Decl *> &AllIvarDecls;
John McCallbdd563e2009-11-03 02:38:08 +00001331
John McCalld226f652010-08-21 09:40:31 +00001332 ObjCIvarCallback(Parser &P, Decl *IDecl, tok::ObjCKeywordKind V,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001333 SmallVectorImpl<Decl *> &AllIvarDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00001334 P(P), IDecl(IDecl), visibility(V), AllIvarDecls(AllIvarDecls) {
1335 }
1336
Eli Friedmandcdff462012-08-08 23:53:27 +00001337 void invoke(ParsingFieldDeclarator &FD) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001338 P.Actions.ActOnObjCContainerStartDefinition(IDecl);
John McCallbdd563e2009-11-03 02:38:08 +00001339 // Install the declarator into the interface decl.
John McCalld226f652010-08-21 09:40:31 +00001340 Decl *Field
Douglas Gregor23c94db2010-07-02 17:43:08 +00001341 = P.Actions.ActOnIvar(P.getCurScope(),
John McCallbdd563e2009-11-03 02:38:08 +00001342 FD.D.getDeclSpec().getSourceRange().getBegin(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001343 FD.D, FD.BitfieldSize, visibility);
Fariborz Jahanian10af8792011-08-29 17:33:12 +00001344 P.Actions.ActOnObjCContainerFinishDefinition();
Fariborz Jahanian0bd04592010-04-06 22:43:48 +00001345 if (Field)
1346 AllIvarDecls.push_back(Field);
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00001347 FD.complete(Field);
John McCallbdd563e2009-11-03 02:38:08 +00001348 }
1349 } Callback(*this, interfaceDecl, visibility, AllIvarDecls);
Fariborz Jahaniand097be82010-08-23 22:46:52 +00001350
Chris Lattnere1359422008-04-10 06:46:29 +00001351 // Parse all the comma separated declarators.
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00001352 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +00001353 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +00001354
Chris Lattnerdf195262007-10-09 17:51:17 +00001355 if (Tok.is(tok::semi)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001356 ConsumeToken();
Steve Naroffddbff782007-08-21 21:17:12 +00001357 } else {
1358 Diag(Tok, diag::err_expected_semi_decl_list);
1359 // Skip to end of block or statement
1360 SkipUntil(tok::r_brace, true, true);
1361 }
1362 }
Fariborz Jahanian4cc0cf12013-03-20 18:09:33 +00001363 HelperActionsForIvarDeclarations(interfaceDecl, atLoc,
1364 T, AllIvarDecls, false);
Steve Naroffddbff782007-08-21 21:17:12 +00001365 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001366}
Steve Naroffdac269b2007-08-20 21:31:48 +00001367
1368/// objc-protocol-declaration:
1369/// objc-protocol-definition
1370/// objc-protocol-forward-reference
1371///
1372/// objc-protocol-definition:
James Dennett17d26a62012-06-11 06:19:40 +00001373/// \@protocol identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001374/// objc-protocol-refs[opt]
1375/// objc-interface-decl-list
James Dennett17d26a62012-06-11 06:19:40 +00001376/// \@end
Steve Naroffdac269b2007-08-20 21:31:48 +00001377///
1378/// objc-protocol-forward-reference:
James Dennett17d26a62012-06-11 06:19:40 +00001379/// \@protocol identifier-list ';'
Steve Naroffdac269b2007-08-20 21:31:48 +00001380///
James Dennett17d26a62012-06-11 06:19:40 +00001381/// "\@protocol identifier ;" should be resolved as "\@protocol
Steve Naroff3536b442007-09-06 21:24:23 +00001382/// identifier-list ;": objc-interface-decl-list may not start with a
Steve Naroffdac269b2007-08-20 21:31:48 +00001383/// semicolon in the first alternative if objc-protocol-refs are omitted.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001384Parser::DeclGroupPtrTy
1385Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc,
1386 ParsedAttributes &attrs) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00001387 assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001388 "ParseObjCAtProtocolDeclaration(): Expected @protocol");
1389 ConsumeToken(); // the "protocol" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001390
Douglas Gregor083128f2009-11-18 04:49:41 +00001391 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001392 Actions.CodeCompleteObjCProtocolDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001393 cutOffParsing();
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001394 return DeclGroupPtrTy();
Douglas Gregor083128f2009-11-18 04:49:41 +00001395 }
1396
Chris Lattnerdf195262007-10-09 17:51:17 +00001397 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001398 Diag(Tok, diag::err_expected_ident); // missing protocol name.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001399 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001400 }
1401 // Save the protocol name, then consume it.
1402 IdentifierInfo *protocolName = Tok.getIdentifierInfo();
1403 SourceLocation nameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001404
Chris Lattnerdf195262007-10-09 17:51:17 +00001405 if (Tok.is(tok::semi)) { // forward declaration of one protocol.
Chris Lattner7caeabd2008-07-21 22:17:28 +00001406 IdentifierLocPair ProtoInfo(protocolName, nameLoc);
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001407 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001408 return Actions.ActOnForwardProtocolDeclaration(AtLoc, &ProtoInfo, 1,
John McCall7f040a92010-12-24 02:08:15 +00001409 attrs.getList());
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001410 }
Mike Stump1eb44332009-09-09 15:08:12 +00001411
Erik Verbruggen90ec96f2011-12-08 09:58:43 +00001412 CheckNestedObjCContexts(AtLoc);
1413
Chris Lattnerdf195262007-10-09 17:51:17 +00001414 if (Tok.is(tok::comma)) { // list of forward declarations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001415 SmallVector<IdentifierLocPair, 8> ProtocolRefs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001416 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc));
1417
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001418 // Parse the list of forward declarations.
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001419 while (1) {
1420 ConsumeToken(); // the ','
Chris Lattnerdf195262007-10-09 17:51:17 +00001421 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001422 Diag(Tok, diag::err_expected_ident);
1423 SkipUntil(tok::semi);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001424 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001425 }
Chris Lattner7caeabd2008-07-21 22:17:28 +00001426 ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(),
1427 Tok.getLocation()));
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001428 ConsumeToken(); // the identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001429
Chris Lattnerdf195262007-10-09 17:51:17 +00001430 if (Tok.isNot(tok::comma))
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001431 break;
1432 }
1433 // Consume the ';'.
1434 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001435 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001436
Steve Naroffe440eb82007-10-10 17:32:04 +00001437 return Actions.ActOnForwardProtocolDeclaration(AtLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001438 &ProtocolRefs[0],
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001439 ProtocolRefs.size(),
John McCall7f040a92010-12-24 02:08:15 +00001440 attrs.getList());
Chris Lattner7caeabd2008-07-21 22:17:28 +00001441 }
Mike Stump1eb44332009-09-09 15:08:12 +00001442
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001443 // Last, and definitely not least, parse a protocol declaration.
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001444 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001445
Chris Lattner5f9e2722011-07-23 10:55:15 +00001446 SmallVector<Decl *, 8> ProtocolRefs;
1447 SmallVector<SourceLocation, 8> ProtocolLocs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001448 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001449 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, false,
1450 LAngleLoc, EndProtoLoc))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001451 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001452
John McCalld226f652010-08-21 09:40:31 +00001453 Decl *ProtoType =
Chris Lattnere13b9592008-07-26 04:03:38 +00001454 Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001455 ProtocolRefs.data(),
1456 ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +00001457 ProtocolLocs.data(),
John McCall7f040a92010-12-24 02:08:15 +00001458 EndProtoLoc, attrs.getList());
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001459
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +00001460 ParseObjCInterfaceDeclList(tok::objc_protocol, ProtoType);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001461 return Actions.ConvertDeclToDeclGroup(ProtoType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001462}
Steve Naroffdac269b2007-08-20 21:31:48 +00001463
1464/// objc-implementation:
1465/// objc-class-implementation-prologue
1466/// objc-category-implementation-prologue
1467///
1468/// objc-class-implementation-prologue:
1469/// @implementation identifier objc-superclass[opt]
1470/// objc-class-instance-variables[opt]
1471///
1472/// objc-category-implementation-prologue:
1473/// @implementation identifier ( identifier )
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001474Parser::DeclGroupPtrTy
1475Parser::ParseObjCAtImplementationDeclaration(SourceLocation AtLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001476 assert(Tok.isObjCAtKeyword(tok::objc_implementation) &&
1477 "ParseObjCAtImplementationDeclaration(): Expected @implementation");
Erik Verbruggend64251f2011-12-06 09:25:23 +00001478 CheckNestedObjCContexts(AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001479 ConsumeToken(); // the "implementation" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001480
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001481 // Code completion after '@implementation'.
1482 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001483 Actions.CodeCompleteObjCImplementationDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001484 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001485 return DeclGroupPtrTy();
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001486 }
1487
Chris Lattnerdf195262007-10-09 17:51:17 +00001488 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001489 Diag(Tok, diag::err_expected_ident); // missing class or category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001490 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001491 }
1492 // We have a class or category name - consume it.
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001493 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001494 SourceLocation nameLoc = ConsumeToken(); // consume class or category name
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001495 Decl *ObjCImpDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001496
1497 if (Tok.is(tok::l_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001498 // we have a category implementation.
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001499 ConsumeParen();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001500 SourceLocation categoryLoc, rparenLoc;
1501 IdentifierInfo *categoryId = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001502
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001503 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001504 Actions.CodeCompleteObjCImplementationCategory(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001505 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001506 return DeclGroupPtrTy();
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001507 }
1508
Chris Lattnerdf195262007-10-09 17:51:17 +00001509 if (Tok.is(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001510 categoryId = Tok.getIdentifierInfo();
1511 categoryLoc = ConsumeToken();
1512 } else {
1513 Diag(Tok, diag::err_expected_ident); // missing category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001514 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001515 }
Chris Lattnerdf195262007-10-09 17:51:17 +00001516 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001517 Diag(Tok, diag::err_expected_rparen);
1518 SkipUntil(tok::r_paren, false); // don't stop at ';'
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001519 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001520 }
1521 rparenLoc = ConsumeParen();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001522 ObjCImpDecl = Actions.ActOnStartCategoryImplementation(
Erik Verbruggend64251f2011-12-06 09:25:23 +00001523 AtLoc, nameId, nameLoc, categoryId,
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001524 categoryLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001525
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001526 } else {
1527 // We have a class implementation
1528 SourceLocation superClassLoc;
1529 IdentifierInfo *superClassId = 0;
1530 if (Tok.is(tok::colon)) {
1531 // We have a super class
1532 ConsumeToken();
1533 if (Tok.isNot(tok::identifier)) {
1534 Diag(Tok, diag::err_expected_ident); // missing super class name.
1535 return DeclGroupPtrTy();
1536 }
1537 superClassId = Tok.getIdentifierInfo();
1538 superClassLoc = ConsumeToken(); // Consume super class name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001539 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001540 ObjCImpDecl = Actions.ActOnStartClassImplementation(
1541 AtLoc, nameId, nameLoc,
1542 superClassId, superClassLoc);
1543
1544 if (Tok.is(tok::l_brace)) // we have ivars
1545 ParseObjCClassInstanceVariables(ObjCImpDecl, tok::objc_private, AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001546 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001547 assert(ObjCImpDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001548
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001549 SmallVector<Decl *, 8> DeclsInGroup;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001550
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001551 {
1552 ObjCImplParsingDataRAII ObjCImplParsing(*this, ObjCImpDecl);
1553 while (!ObjCImplParsing.isFinished() && Tok.isNot(tok::eof)) {
1554 ParsedAttributesWithRange attrs(AttrFactory);
Richard Smith4e24f0f2013-01-02 12:01:23 +00001555 MaybeParseCXX11Attributes(attrs);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001556 MaybeParseMicrosoftAttributes(attrs);
1557 if (DeclGroupPtrTy DGP = ParseExternalDeclaration(attrs)) {
1558 DeclGroupRef DG = DGP.get();
1559 DeclsInGroup.append(DG.begin(), DG.end());
1560 }
1561 }
1562 }
1563
Argyrios Kyrtzidis644af7b2012-02-23 21:11:20 +00001564 return Actions.ActOnFinishObjCImplementation(ObjCImpDecl, DeclsInGroup);
Reid Spencer5f016e22007-07-11 17:01:13 +00001565}
Steve Naroff60fccee2007-10-29 21:38:07 +00001566
Fariborz Jahanian140ab232011-08-31 17:37:55 +00001567Parser::DeclGroupPtrTy
1568Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001569 assert(Tok.isObjCAtKeyword(tok::objc_end) &&
1570 "ParseObjCAtEndDeclaration(): Expected @end");
1571 ConsumeToken(); // the "end" identifier
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001572 if (CurParsedObjCImpl)
1573 CurParsedObjCImpl->finish(atEnd);
Fariborz Jahanian8697d302011-08-31 22:24:06 +00001574 else
Ted Kremenek782f2f52010-01-07 01:20:12 +00001575 // missing @implementation
Erik Verbruggend64251f2011-12-06 09:25:23 +00001576 Diag(atEnd.getBegin(), diag::err_expected_objc_container);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001577 return DeclGroupPtrTy();
Steve Naroffdac269b2007-08-20 21:31:48 +00001578}
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001579
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001580Parser::ObjCImplParsingDataRAII::~ObjCImplParsingDataRAII() {
1581 if (!Finished) {
1582 finish(P.Tok.getLocation());
1583 if (P.Tok.is(tok::eof)) {
1584 P.Diag(P.Tok, diag::err_objc_missing_end)
1585 << FixItHint::CreateInsertion(P.Tok.getLocation(), "\n@end\n");
1586 P.Diag(Dcl->getLocStart(), diag::note_objc_container_start)
1587 << Sema::OCK_Implementation;
1588 }
1589 }
1590 P.CurParsedObjCImpl = 0;
1591 assert(LateParsedObjCMethods.empty());
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001592}
1593
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001594void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) {
1595 assert(!Finished);
1596 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl);
1597 for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i)
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001598 P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i],
1599 true/*Methods*/);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001600
1601 P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd);
1602
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001603 if (HasCFunction)
1604 for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i)
1605 P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i],
1606 false/*c-functions*/);
1607
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001608 /// \brief Clear and free the cached objc methods.
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001609 for (LateParsedObjCMethodContainer::iterator
1610 I = LateParsedObjCMethods.begin(),
1611 E = LateParsedObjCMethods.end(); I != E; ++I)
1612 delete *I;
1613 LateParsedObjCMethods.clear();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001614
1615 Finished = true;
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001616}
1617
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001618/// compatibility-alias-decl:
1619/// @compatibility_alias alias-name class-name ';'
1620///
John McCalld226f652010-08-21 09:40:31 +00001621Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001622 assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) &&
1623 "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias");
1624 ConsumeToken(); // consume compatibility_alias
Chris Lattnerdf195262007-10-09 17:51:17 +00001625 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001626 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001627 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001628 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001629 IdentifierInfo *aliasId = Tok.getIdentifierInfo();
1630 SourceLocation aliasLoc = ConsumeToken(); // consume alias-name
Chris Lattnerdf195262007-10-09 17:51:17 +00001631 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001632 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001633 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001634 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001635 IdentifierInfo *classId = Tok.getIdentifierInfo();
1636 SourceLocation classLoc = ConsumeToken(); // consume class-name;
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001637 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
1638 "@compatibility_alias");
Richard Smithde01b7a2012-08-08 23:32:13 +00001639 return Actions.ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc,
1640 classId, classLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001641}
1642
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001643/// property-synthesis:
1644/// @synthesize property-ivar-list ';'
1645///
1646/// property-ivar-list:
1647/// property-ivar
1648/// property-ivar-list ',' property-ivar
1649///
1650/// property-ivar:
1651/// identifier
1652/// identifier '=' identifier
1653///
John McCalld226f652010-08-21 09:40:31 +00001654Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001655 assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
1656 "ParseObjCPropertyDynamic(): Expected '@synthesize'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001657 ConsumeToken(); // consume synthesize
Mike Stump1eb44332009-09-09 15:08:12 +00001658
Douglas Gregorb328c422009-11-18 19:45:45 +00001659 while (true) {
Douglas Gregor322328b2009-11-18 22:32:06 +00001660 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001661 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001662 cutOffParsing();
1663 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001664 }
1665
Douglas Gregorb328c422009-11-18 19:45:45 +00001666 if (Tok.isNot(tok::identifier)) {
1667 Diag(Tok, diag::err_synthesized_property_name);
1668 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001669 return 0;
Douglas Gregorb328c422009-11-18 19:45:45 +00001670 }
1671
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001672 IdentifierInfo *propertyIvar = 0;
1673 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1674 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Douglas Gregora4ffd852010-11-17 01:03:52 +00001675 SourceLocation propertyIvarLoc;
Chris Lattnerdf195262007-10-09 17:51:17 +00001676 if (Tok.is(tok::equal)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001677 // property '=' ivar-name
1678 ConsumeToken(); // consume '='
Douglas Gregor322328b2009-11-18 22:32:06 +00001679
1680 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001681 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001682 cutOffParsing();
1683 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001684 }
1685
Chris Lattnerdf195262007-10-09 17:51:17 +00001686 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001687 Diag(Tok, diag::err_expected_ident);
1688 break;
1689 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001690 propertyIvar = Tok.getIdentifierInfo();
Douglas Gregora4ffd852010-11-17 01:03:52 +00001691 propertyIvarLoc = ConsumeToken(); // consume ivar-name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001692 }
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001693 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, true,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001694 propertyId, propertyIvar, propertyIvarLoc);
Chris Lattnerdf195262007-10-09 17:51:17 +00001695 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001696 break;
1697 ConsumeToken(); // consume ','
1698 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001699 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@synthesize");
John McCalld226f652010-08-21 09:40:31 +00001700 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001701}
1702
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001703/// property-dynamic:
1704/// @dynamic property-list
1705///
1706/// property-list:
1707/// identifier
1708/// property-list ',' identifier
1709///
John McCalld226f652010-08-21 09:40:31 +00001710Decl *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001711 assert(Tok.isObjCAtKeyword(tok::objc_dynamic) &&
1712 "ParseObjCPropertyDynamic(): Expected '@dynamic'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001713 ConsumeToken(); // consume dynamic
Douglas Gregor424b2a52009-11-18 22:56:13 +00001714 while (true) {
1715 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001716 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001717 cutOffParsing();
1718 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001719 }
1720
1721 if (Tok.isNot(tok::identifier)) {
1722 Diag(Tok, diag::err_expected_ident);
1723 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001724 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001725 }
1726
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001727 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1728 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001729 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, false,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001730 propertyId, 0, SourceLocation());
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001731
Chris Lattnerdf195262007-10-09 17:51:17 +00001732 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001733 break;
1734 ConsumeToken(); // consume ','
1735 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001736 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@dynamic");
John McCalld226f652010-08-21 09:40:31 +00001737 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001738}
Mike Stump1eb44332009-09-09 15:08:12 +00001739
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001740/// objc-throw-statement:
1741/// throw expression[opt];
1742///
John McCall60d7b3a2010-08-24 06:29:42 +00001743StmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) {
1744 ExprResult Res;
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001745 ConsumeToken(); // consume throw
Chris Lattnerdf195262007-10-09 17:51:17 +00001746 if (Tok.isNot(tok::semi)) {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001747 Res = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001748 if (Res.isInvalid()) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001749 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001750 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001751 }
1752 }
Ted Kremenek02418c72010-04-20 21:21:51 +00001753 // consume ';'
1754 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@throw");
John McCall9ae2f072010-08-23 23:25:46 +00001755 return Actions.ActOnObjCAtThrowStmt(atLoc, Res.take(), getCurScope());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001756}
1757
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001758/// objc-synchronized-statement:
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001759/// @synchronized '(' expression ')' compound-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001760///
John McCall60d7b3a2010-08-24 06:29:42 +00001761StmtResult
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001762Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) {
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001763 ConsumeToken(); // consume synchronized
1764 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001765 Diag(Tok, diag::err_expected_lparen_after) << "@synchronized";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001766 return StmtError();
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001767 }
John McCall07524032011-07-27 21:50:02 +00001768
1769 // The operand is surrounded with parentheses.
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001770 ConsumeParen(); // '('
John McCall07524032011-07-27 21:50:02 +00001771 ExprResult operand(ParseExpression());
1772
1773 if (Tok.is(tok::r_paren)) {
1774 ConsumeParen(); // ')'
1775 } else {
1776 if (!operand.isInvalid())
1777 Diag(Tok, diag::err_expected_rparen);
1778
1779 // Skip forward until we see a left brace, but don't consume it.
1780 SkipUntil(tok::l_brace, true, true);
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001781 }
John McCall07524032011-07-27 21:50:02 +00001782
1783 // Require a compound statement.
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001784 if (Tok.isNot(tok::l_brace)) {
John McCall07524032011-07-27 21:50:02 +00001785 if (!operand.isInvalid())
1786 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001787 return StmtError();
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001788 }
Steve Naroff3ac438c2008-06-04 20:36:13 +00001789
John McCall07524032011-07-27 21:50:02 +00001790 // Check the @synchronized operand now.
1791 if (!operand.isInvalid())
1792 operand = Actions.ActOnObjCAtSynchronizedOperand(atLoc, operand.take());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001793
John McCall07524032011-07-27 21:50:02 +00001794 // Parse the compound statement within a new scope.
1795 ParseScope bodyScope(this, Scope::DeclScope);
1796 StmtResult body(ParseCompoundStatementBody());
1797 bodyScope.Exit();
1798
1799 // If there was a semantic or parse error earlier with the
1800 // operand, fail now.
1801 if (operand.isInvalid())
1802 return StmtError();
1803
1804 if (body.isInvalid())
1805 body = Actions.ActOnNullStmt(Tok.getLocation());
1806
1807 return Actions.ActOnObjCAtSynchronizedStmt(atLoc, operand.get(), body.get());
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001808}
1809
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001810/// objc-try-catch-statement:
1811/// @try compound-statement objc-catch-list[opt]
1812/// @try compound-statement objc-catch-list[opt] @finally compound-statement
1813///
1814/// objc-catch-list:
1815/// @catch ( parameter-declaration ) compound-statement
1816/// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1817/// catch-parameter-declaration:
1818/// parameter-declaration
1819/// '...' [OBJC2]
1820///
John McCall60d7b3a2010-08-24 06:29:42 +00001821StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001822 bool catch_or_finally_seen = false;
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001823
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001824 ConsumeToken(); // consume try
Chris Lattnerdf195262007-10-09 17:51:17 +00001825 if (Tok.isNot(tok::l_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001826 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001827 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001828 }
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001829 StmtVector CatchStmts;
John McCall60d7b3a2010-08-24 06:29:42 +00001830 StmtResult FinallyStmt;
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001831 ParseScope TryScope(this, Scope::DeclScope);
John McCall60d7b3a2010-08-24 06:29:42 +00001832 StmtResult TryBody(ParseCompoundStatementBody());
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001833 TryScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001834 if (TryBody.isInvalid())
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001835 TryBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redla55e52c2008-11-25 22:21:31 +00001836
Chris Lattnerdf195262007-10-09 17:51:17 +00001837 while (Tok.is(tok::at)) {
Chris Lattner6b884502008-03-10 06:06:04 +00001838 // At this point, we need to lookahead to determine if this @ is the start
1839 // of an @catch or @finally. We don't want to consume the @ token if this
1840 // is an @try or @encode or something else.
1841 Token AfterAt = GetLookAheadToken(1);
1842 if (!AfterAt.isObjCAtKeyword(tok::objc_catch) &&
1843 !AfterAt.isObjCAtKeyword(tok::objc_finally))
1844 break;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001845
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001846 SourceLocation AtCatchFinallyLoc = ConsumeToken();
Chris Lattnercb53b362007-12-27 19:57:00 +00001847 if (Tok.isObjCAtKeyword(tok::objc_catch)) {
John McCalld226f652010-08-21 09:40:31 +00001848 Decl *FirstPart = 0;
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001849 ConsumeToken(); // consume catch
Chris Lattnerdf195262007-10-09 17:51:17 +00001850 if (Tok.is(tok::l_paren)) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001851 ConsumeParen();
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001852 ParseScope CatchScope(this, Scope::DeclScope|Scope::AtCatchScope);
Chris Lattnerdf195262007-10-09 17:51:17 +00001853 if (Tok.isNot(tok::ellipsis)) {
John McCall0b7e6782011-03-24 11:26:52 +00001854 DeclSpec DS(AttrFactory);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001855 ParseDeclarationSpecifiers(DS);
Argyrios Kyrtzidis17b63992011-07-01 22:22:40 +00001856 Declarator ParmDecl(DS, Declarator::ObjCCatchContext);
Steve Naroff7ba138a2009-03-03 19:52:17 +00001857 ParseDeclarator(ParmDecl);
1858
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00001859 // Inform the actions module about the declarator, so it
Steve Naroff7ba138a2009-03-03 19:52:17 +00001860 // gets added to the current scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001861 FirstPart = Actions.ActOnObjCExceptionDecl(getCurScope(), ParmDecl);
Steve Naroff64515f32008-02-05 21:27:35 +00001862 } else
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001863 ConsumeToken(); // consume '...'
Mike Stump1eb44332009-09-09 15:08:12 +00001864
Steve Naroff93a25952009-04-07 22:56:58 +00001865 SourceLocation RParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +00001866
Steve Naroff93a25952009-04-07 22:56:58 +00001867 if (Tok.is(tok::r_paren))
1868 RParenLoc = ConsumeParen();
1869 else // Skip over garbage, until we get to ')'. Eat the ')'.
1870 SkipUntil(tok::r_paren, true, false);
1871
John McCall60d7b3a2010-08-24 06:29:42 +00001872 StmtResult CatchBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001873 if (Tok.is(tok::l_brace))
1874 CatchBody = ParseCompoundStatementBody();
1875 else
1876 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001877 if (CatchBody.isInvalid())
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001878 CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001879
John McCall60d7b3a2010-08-24 06:29:42 +00001880 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001881 RParenLoc,
1882 FirstPart,
John McCall9ae2f072010-08-23 23:25:46 +00001883 CatchBody.take());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001884 if (!Catch.isInvalid())
1885 CatchStmts.push_back(Catch.release());
1886
Steve Naroff64515f32008-02-05 21:27:35 +00001887 } else {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001888 Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after)
1889 << "@catch clause";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001890 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001891 }
1892 catch_or_finally_seen = true;
Chris Lattner6b884502008-03-10 06:06:04 +00001893 } else {
1894 assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?");
Steve Naroff64515f32008-02-05 21:27:35 +00001895 ConsumeToken(); // consume finally
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001896 ParseScope FinallyScope(this, Scope::DeclScope);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001897
John McCall60d7b3a2010-08-24 06:29:42 +00001898 StmtResult FinallyBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001899 if (Tok.is(tok::l_brace))
1900 FinallyBody = ParseCompoundStatementBody();
1901 else
1902 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001903 if (FinallyBody.isInvalid())
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001904 FinallyBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001905 FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001906 FinallyBody.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001907 catch_or_finally_seen = true;
1908 break;
1909 }
1910 }
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001911 if (!catch_or_finally_seen) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001912 Diag(atLoc, diag::err_missing_catch_finally);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001913 return StmtError();
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001914 }
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001915
John McCall9ae2f072010-08-23 23:25:46 +00001916 return Actions.ActOnObjCAtTryStmt(atLoc, TryBody.take(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001917 CatchStmts,
John McCall9ae2f072010-08-23 23:25:46 +00001918 FinallyStmt.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001919}
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001920
John McCallf85e1932011-06-15 23:02:42 +00001921/// objc-autoreleasepool-statement:
1922/// @autoreleasepool compound-statement
1923///
1924StmtResult
1925Parser::ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) {
1926 ConsumeToken(); // consume autoreleasepool
1927 if (Tok.isNot(tok::l_brace)) {
1928 Diag(Tok, diag::err_expected_lbrace);
1929 return StmtError();
1930 }
1931 // Enter a scope to hold everything within the compound stmt. Compound
1932 // statements can always hold declarations.
1933 ParseScope BodyScope(this, Scope::DeclScope);
1934
1935 StmtResult AutoreleasePoolBody(ParseCompoundStatementBody());
1936
1937 BodyScope.Exit();
1938 if (AutoreleasePoolBody.isInvalid())
1939 AutoreleasePoolBody = Actions.ActOnNullStmt(Tok.getLocation());
1940 return Actions.ActOnObjCAutoreleasePoolStmt(atLoc,
1941 AutoreleasePoolBody.take());
1942}
1943
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001944/// StashAwayMethodOrFunctionBodyTokens - Consume the tokens and store them
1945/// for later parsing.
1946void Parser::StashAwayMethodOrFunctionBodyTokens(Decl *MDecl) {
1947 LexedMethod* LM = new LexedMethod(this, MDecl);
1948 CurParsedObjCImpl->LateParsedObjCMethods.push_back(LM);
1949 CachedTokens &Toks = LM->Toks;
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00001950 // Begin by storing the '{' or 'try' or ':' token.
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001951 Toks.push_back(Tok);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001952 if (Tok.is(tok::kw_try)) {
1953 ConsumeToken();
Fariborz Jahaniandbd69452012-08-10 20:34:17 +00001954 if (Tok.is(tok::colon)) {
1955 Toks.push_back(Tok);
1956 ConsumeToken();
1957 while (Tok.isNot(tok::l_brace)) {
1958 ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false);
1959 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
1960 }
1961 }
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00001962 Toks.push_back(Tok); // also store '{'
1963 }
1964 else if (Tok.is(tok::colon)) {
1965 ConsumeToken();
1966 while (Tok.isNot(tok::l_brace)) {
1967 ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false);
1968 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
1969 }
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001970 Toks.push_back(Tok); // also store '{'
1971 }
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001972 ConsumeBrace();
1973 // Consume everything up to (and including) the matching right brace.
1974 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001975 while (Tok.is(tok::kw_catch)) {
1976 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
1977 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1978 }
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001979}
1980
Steve Naroff3536b442007-09-06 21:24:23 +00001981/// objc-method-def: objc-method-proto ';'[opt] '{' body '}'
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001982///
John McCalld226f652010-08-21 09:40:31 +00001983Decl *Parser::ParseObjCMethodDefinition() {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001984 Decl *MDecl = ParseObjCMethodPrototype();
Mike Stump1eb44332009-09-09 15:08:12 +00001985
John McCallf312b1e2010-08-26 23:41:50 +00001986 PrettyDeclStackTraceEntry CrashInfo(Actions, MDecl, Tok.getLocation(),
1987 "parsing Objective-C method");
Mike Stump1eb44332009-09-09 15:08:12 +00001988
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001989 // parse optional ';'
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001990 if (Tok.is(tok::semi)) {
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001991 if (CurParsedObjCImpl) {
Ted Kremenek496e45e2009-11-10 22:55:49 +00001992 Diag(Tok, diag::warn_semicolon_before_method_body)
Douglas Gregor849b2432010-03-31 17:46:05 +00001993 << FixItHint::CreateRemoval(Tok.getLocation());
Ted Kremenek496e45e2009-11-10 22:55:49 +00001994 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001995 ConsumeToken();
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001996 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001997
Steve Naroff409be832007-11-11 19:54:21 +00001998 // We should have an opening brace now.
Chris Lattnerdf195262007-10-09 17:51:17 +00001999 if (Tok.isNot(tok::l_brace)) {
Steve Naroffda323ad2008-02-29 21:48:07 +00002000 Diag(Tok, diag::err_expected_method_body);
Mike Stump1eb44332009-09-09 15:08:12 +00002001
Steve Naroff409be832007-11-11 19:54:21 +00002002 // Skip over garbage, until we get to '{'. Don't eat the '{'.
2003 SkipUntil(tok::l_brace, true, true);
Mike Stump1eb44332009-09-09 15:08:12 +00002004
Steve Naroff409be832007-11-11 19:54:21 +00002005 // If we didn't find the '{', bail out.
2006 if (Tok.isNot(tok::l_brace))
John McCalld226f652010-08-21 09:40:31 +00002007 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00002008 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002009
2010 if (!MDecl) {
2011 ConsumeBrace();
2012 SkipUntil(tok::r_brace, /*StopAtSemi=*/false);
2013 return 0;
2014 }
2015
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002016 // Allow the rest of sema to find private method decl implementations.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002017 Actions.AddAnyMethodToGlobalPool(MDecl);
Fariborz Jahanianc9b97092012-08-09 17:15:00 +00002018 assert (CurParsedObjCImpl
2019 && "ParseObjCMethodDefinition - Method out of @implementation");
2020 // Consume the tokens and store them for later parsing.
2021 StashAwayMethodOrFunctionBodyTokens(MDecl);
Steve Naroff71c0a952007-11-13 23:01:27 +00002022 return MDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00002023}
Anders Carlsson55085182007-08-21 17:43:55 +00002024
John McCall60d7b3a2010-08-24 06:29:42 +00002025StmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002026 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002027 Actions.CodeCompleteObjCAtStatement(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002028 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002029 return StmtError();
Chris Lattner5d803162009-12-07 16:33:19 +00002030 }
2031
2032 if (Tok.isObjCAtKeyword(tok::objc_try))
Chris Lattner6b884502008-03-10 06:06:04 +00002033 return ParseObjCTryStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002034
2035 if (Tok.isObjCAtKeyword(tok::objc_throw))
Steve Naroff64515f32008-02-05 21:27:35 +00002036 return ParseObjCThrowStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002037
2038 if (Tok.isObjCAtKeyword(tok::objc_synchronized))
Steve Naroff64515f32008-02-05 21:27:35 +00002039 return ParseObjCSynchronizedStmt(AtLoc);
John McCallf85e1932011-06-15 23:02:42 +00002040
2041 if (Tok.isObjCAtKeyword(tok::objc_autoreleasepool))
2042 return ParseObjCAutoreleasePoolStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002043
John McCall60d7b3a2010-08-24 06:29:42 +00002044 ExprResult Res(ParseExpressionWithLeadingAt(AtLoc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002045 if (Res.isInvalid()) {
Steve Naroff64515f32008-02-05 21:27:35 +00002046 // If the expression is invalid, skip ahead to the next semicolon. Not
2047 // doing this opens us up to the possibility of infinite loops if
2048 // ParseExpression does not consume any tokens.
2049 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00002050 return StmtError();
Steve Naroff64515f32008-02-05 21:27:35 +00002051 }
Chris Lattner5d803162009-12-07 16:33:19 +00002052
Steve Naroff64515f32008-02-05 21:27:35 +00002053 // Otherwise, eat the semicolon.
Douglas Gregor9ba23b42010-09-07 15:23:11 +00002054 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
Richard Smith41956372013-01-14 22:39:08 +00002055 return Actions.ActOnExprStmt(Res);
Steve Naroff64515f32008-02-05 21:27:35 +00002056}
2057
John McCall60d7b3a2010-08-24 06:29:42 +00002058ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
Anders Carlsson55085182007-08-21 17:43:55 +00002059 switch (Tok.getKind()) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002060 case tok::code_completion:
Douglas Gregor23c94db2010-07-02 17:43:08 +00002061 Actions.CodeCompleteObjCAtExpression(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002062 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002063 return ExprError();
2064
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002065 case tok::minus:
2066 case tok::plus: {
2067 tok::TokenKind Kind = Tok.getKind();
2068 SourceLocation OpLoc = ConsumeToken();
2069
2070 if (!Tok.is(tok::numeric_constant)) {
2071 const char *Symbol = 0;
2072 switch (Kind) {
2073 case tok::minus: Symbol = "-"; break;
2074 case tok::plus: Symbol = "+"; break;
2075 default: llvm_unreachable("missing unary operator case");
2076 }
2077 Diag(Tok, diag::err_nsnumber_nonliteral_unary)
2078 << Symbol;
2079 return ExprError();
2080 }
2081
2082 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2083 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002084 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002085 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002086 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002087
2088 Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.take());
2089 if (Lit.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002090 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002091
2092 return ParsePostfixExpressionSuffix(
2093 Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2094 }
2095
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002096 case tok::string_literal: // primary-expression: string-literal
2097 case tok::wide_string_literal:
Sebastian Redl1d922962008-12-13 15:32:12 +00002098 return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc));
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002099
2100 case tok::char_constant:
2101 return ParsePostfixExpressionSuffix(ParseObjCCharacterLiteral(AtLoc));
2102
2103 case tok::numeric_constant:
2104 return ParsePostfixExpressionSuffix(ParseObjCNumericLiteral(AtLoc));
2105
2106 case tok::kw_true: // Objective-C++, etc.
2107 case tok::kw___objc_yes: // c/c++/objc/objc++ __objc_yes
2108 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, true));
2109 case tok::kw_false: // Objective-C++, etc.
2110 case tok::kw___objc_no: // c/c++/objc/objc++ __objc_no
2111 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, false));
2112
2113 case tok::l_square:
2114 // Objective-C array literal
2115 return ParsePostfixExpressionSuffix(ParseObjCArrayLiteral(AtLoc));
2116
2117 case tok::l_brace:
2118 // Objective-C dictionary literal
2119 return ParsePostfixExpressionSuffix(ParseObjCDictionaryLiteral(AtLoc));
2120
Patrick Beardeb382ec2012-04-19 00:25:12 +00002121 case tok::l_paren:
2122 // Objective-C boxed expression
2123 return ParsePostfixExpressionSuffix(ParseObjCBoxedExpr(AtLoc));
2124
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002125 default:
Chris Lattner4fef81d2008-08-05 06:19:09 +00002126 if (Tok.getIdentifierInfo() == 0)
Sebastian Redl1d922962008-12-13 15:32:12 +00002127 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002128
Chris Lattner4fef81d2008-08-05 06:19:09 +00002129 switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
2130 case tok::objc_encode:
Sebastian Redl1d922962008-12-13 15:32:12 +00002131 return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002132 case tok::objc_protocol:
Sebastian Redl1d922962008-12-13 15:32:12 +00002133 return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002134 case tok::objc_selector:
Sebastian Redl1d922962008-12-13 15:32:12 +00002135 return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc));
Fariborz Jahanian6749ae12012-07-09 20:00:35 +00002136 default: {
2137 const char *str = 0;
2138 if (GetLookAheadToken(1).is(tok::l_brace)) {
2139 char ch = Tok.getIdentifierInfo()->getNameStart()[0];
2140 str =
2141 ch == 't' ? "try"
2142 : (ch == 'f' ? "finally"
2143 : (ch == 'a' ? "autoreleasepool" : 0));
2144 }
2145 if (str) {
2146 SourceLocation kwLoc = Tok.getLocation();
2147 return ExprError(Diag(AtLoc, diag::err_unexpected_at) <<
2148 FixItHint::CreateReplacement(kwLoc, str));
2149 }
2150 else
2151 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
2152 }
Chris Lattner4fef81d2008-08-05 06:19:09 +00002153 }
Anders Carlsson55085182007-08-21 17:43:55 +00002154 }
Anders Carlsson55085182007-08-21 17:43:55 +00002155}
2156
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +00002157/// \brief Parse the receiver of an Objective-C++ message send.
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002158///
2159/// This routine parses the receiver of a message send in
2160/// Objective-C++ either as a type or as an expression. Note that this
2161/// routine must not be called to parse a send to 'super', since it
2162/// has no way to return such a result.
2163///
2164/// \param IsExpr Whether the receiver was parsed as an expression.
2165///
2166/// \param TypeOrExpr If the receiver was parsed as an expression (\c
2167/// IsExpr is true), the parsed expression. If the receiver was parsed
2168/// as a type (\c IsExpr is false), the parsed type.
2169///
2170/// \returns True if an error occurred during parsing or semantic
2171/// analysis, in which case the arguments do not have valid
2172/// values. Otherwise, returns false for a successful parse.
2173///
2174/// objc-receiver: [C++]
2175/// 'super' [not parsed here]
2176/// expression
2177/// simple-type-specifier
2178/// typename-specifier
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002179bool Parser::ParseObjCXXMessageReceiver(bool &IsExpr, void *&TypeOrExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002180 InMessageExpressionRAIIObject InMessage(*this, true);
2181
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002182 if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
2183 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope))
2184 TryAnnotateTypeOrScopeToken();
2185
Kaelyn Uhrain7bf33402012-06-15 23:45:51 +00002186 if (!Actions.isSimpleTypeSpecifier(Tok.getKind())) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002187 // objc-receiver:
2188 // expression
John McCall60d7b3a2010-08-24 06:29:42 +00002189 ExprResult Receiver = ParseExpression();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002190 if (Receiver.isInvalid())
2191 return true;
2192
2193 IsExpr = true;
2194 TypeOrExpr = Receiver.take();
2195 return false;
2196 }
2197
2198 // objc-receiver:
2199 // typename-specifier
2200 // simple-type-specifier
2201 // expression (that starts with one of the above)
John McCall0b7e6782011-03-24 11:26:52 +00002202 DeclSpec DS(AttrFactory);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002203 ParseCXXSimpleTypeSpecifier(DS);
2204
2205 if (Tok.is(tok::l_paren)) {
2206 // If we see an opening parentheses at this point, we are
2207 // actually parsing an expression that starts with a
2208 // function-style cast, e.g.,
2209 //
2210 // postfix-expression:
2211 // simple-type-specifier ( expression-list [opt] )
2212 // typename-specifier ( expression-list [opt] )
2213 //
2214 // Parse the remainder of this case, then the (optional)
2215 // postfix-expression suffix, followed by the (optional)
2216 // right-hand side of the binary expression. We have an
2217 // instance method.
John McCall60d7b3a2010-08-24 06:29:42 +00002218 ExprResult Receiver = ParseCXXTypeConstructExpression(DS);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002219 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002220 Receiver = ParsePostfixExpressionSuffix(Receiver.take());
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002221 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002222 Receiver = ParseRHSOfBinaryExpression(Receiver.take(), prec::Comma);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002223 if (Receiver.isInvalid())
2224 return true;
2225
2226 IsExpr = true;
2227 TypeOrExpr = Receiver.take();
2228 return false;
2229 }
2230
2231 // We have a class message. Turn the simple-type-specifier or
2232 // typename-specifier we parsed into a type and parse the
2233 // remainder of the class message.
2234 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002235 TypeResult Type = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002236 if (Type.isInvalid())
2237 return true;
2238
2239 IsExpr = false;
John McCallb3d87482010-08-24 05:47:05 +00002240 TypeOrExpr = Type.get().getAsOpaquePtr();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002241 return false;
2242}
2243
Douglas Gregor1b730e82010-05-31 14:40:22 +00002244/// \brief Determine whether the parser is currently referring to a an
2245/// Objective-C message send, using a simplified heuristic to avoid overhead.
2246///
2247/// This routine will only return true for a subset of valid message-send
2248/// expressions.
2249bool Parser::isSimpleObjCMessageExpression() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002250 assert(Tok.is(tok::l_square) && getLangOpts().ObjC1 &&
Douglas Gregor1b730e82010-05-31 14:40:22 +00002251 "Incorrect start for isSimpleObjCMessageExpression");
Douglas Gregor1b730e82010-05-31 14:40:22 +00002252 return GetLookAheadToken(1).is(tok::identifier) &&
2253 GetLookAheadToken(2).is(tok::identifier);
2254}
2255
Douglas Gregor9497a732010-09-16 01:51:54 +00002256bool Parser::isStartOfObjCClassMessageMissingOpenBracket() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002257 if (!getLangOpts().ObjC1 || !NextToken().is(tok::identifier) ||
Douglas Gregor9497a732010-09-16 01:51:54 +00002258 InMessageExpression)
2259 return false;
2260
2261
2262 ParsedType Type;
2263
2264 if (Tok.is(tok::annot_typename))
2265 Type = getTypeAnnotation(Tok);
2266 else if (Tok.is(tok::identifier))
2267 Type = Actions.getTypeName(*Tok.getIdentifierInfo(), Tok.getLocation(),
2268 getCurScope());
2269 else
2270 return false;
2271
2272 if (!Type.get().isNull() && Type.get()->isObjCObjectOrInterfaceType()) {
2273 const Token &AfterNext = GetLookAheadToken(2);
2274 if (AfterNext.is(tok::colon) || AfterNext.is(tok::r_square)) {
2275 if (Tok.is(tok::identifier))
2276 TryAnnotateTypeOrScopeToken();
2277
2278 return Tok.is(tok::annot_typename);
2279 }
2280 }
2281
2282 return false;
2283}
2284
Mike Stump1eb44332009-09-09 15:08:12 +00002285/// objc-message-expr:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002286/// '[' objc-receiver objc-message-args ']'
2287///
Douglas Gregor2725ca82010-04-21 19:57:20 +00002288/// objc-receiver: [C]
Chris Lattnereb483eb2010-04-11 08:28:14 +00002289/// 'super'
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002290/// expression
2291/// class-name
2292/// type-name
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002293///
John McCall60d7b3a2010-08-24 06:29:42 +00002294ExprResult Parser::ParseObjCMessageExpression() {
Chris Lattner699b6612008-01-25 18:59:06 +00002295 assert(Tok.is(tok::l_square) && "'[' expected");
2296 SourceLocation LBracLoc = ConsumeBracket(); // consume '['
2297
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002298 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002299 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002300 cutOffParsing();
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002301 return ExprError();
2302 }
2303
Douglas Gregor0fbda682010-09-15 14:51:05 +00002304 InMessageExpressionRAIIObject InMessage(*this, true);
2305
David Blaikie4e4d0842012-03-11 07:00:24 +00002306 if (getLangOpts().CPlusPlus) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002307 // We completely separate the C and C++ cases because C++ requires
2308 // more complicated (read: slower) parsing.
2309
2310 // Handle send to super.
2311 // FIXME: This doesn't benefit from the same typo-correction we
2312 // get in Objective-C.
2313 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002314 NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
John McCallb3d87482010-08-24 05:47:05 +00002315 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2316 ParsedType(), 0);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002317
2318 // Parse the receiver, which is either a type or an expression.
2319 bool IsExpr;
Nick Lewycky304b7522010-09-15 18:35:19 +00002320 void *TypeOrExpr = NULL;
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002321 if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
2322 SkipUntil(tok::r_square);
2323 return ExprError();
2324 }
2325
2326 if (IsExpr)
John McCallb3d87482010-08-24 05:47:05 +00002327 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2328 ParsedType(),
John McCall9ae2f072010-08-23 23:25:46 +00002329 static_cast<Expr*>(TypeOrExpr));
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002330
2331 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +00002332 ParsedType::getFromOpaquePtr(TypeOrExpr),
2333 0);
Chris Lattnerc59cb382010-05-31 18:18:22 +00002334 }
2335
2336 if (Tok.is(tok::identifier)) {
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002337 IdentifierInfo *Name = Tok.getIdentifierInfo();
2338 SourceLocation NameLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002339 ParsedType ReceiverType;
Douglas Gregor23c94db2010-07-02 17:43:08 +00002340 switch (Actions.getObjCMessageKind(getCurScope(), Name, NameLoc,
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002341 Name == Ident_super,
Douglas Gregor1569f952010-04-21 20:38:13 +00002342 NextToken().is(tok::period),
2343 ReceiverType)) {
John McCallf312b1e2010-08-26 23:41:50 +00002344 case Sema::ObjCSuperMessage:
John McCallb3d87482010-08-24 05:47:05 +00002345 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2346 ParsedType(), 0);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002347
John McCallf312b1e2010-08-26 23:41:50 +00002348 case Sema::ObjCClassMessage:
Douglas Gregor1569f952010-04-21 20:38:13 +00002349 if (!ReceiverType) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002350 SkipUntil(tok::r_square);
2351 return ExprError();
2352 }
2353
Douglas Gregor1569f952010-04-21 20:38:13 +00002354 ConsumeToken(); // the type name
2355
2356 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCall9ae2f072010-08-23 23:25:46 +00002357 ReceiverType, 0);
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002358
John McCallf312b1e2010-08-26 23:41:50 +00002359 case Sema::ObjCInstanceMessage:
Douglas Gregor2725ca82010-04-21 19:57:20 +00002360 // Fall through to parse an expression.
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002361 break;
Fariborz Jahaniand2869922009-04-08 19:50:10 +00002362 }
Chris Lattner699b6612008-01-25 18:59:06 +00002363 }
Chris Lattnereb483eb2010-04-11 08:28:14 +00002364
2365 // Otherwise, an arbitrary expression can be the receiver of a send.
John McCall60d7b3a2010-08-24 06:29:42 +00002366 ExprResult Res(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002367 if (Res.isInvalid()) {
Chris Lattner5c749422008-01-25 19:43:26 +00002368 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002369 return Res;
Chris Lattner699b6612008-01-25 18:59:06 +00002370 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002371
John McCallb3d87482010-08-24 05:47:05 +00002372 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2373 ParsedType(), Res.take());
Chris Lattner699b6612008-01-25 18:59:06 +00002374}
Sebastian Redl1d922962008-12-13 15:32:12 +00002375
Douglas Gregor2725ca82010-04-21 19:57:20 +00002376/// \brief Parse the remainder of an Objective-C message following the
2377/// '[' objc-receiver.
2378///
2379/// This routine handles sends to super, class messages (sent to a
2380/// class name), and instance messages (sent to an object), and the
2381/// target is represented by \p SuperLoc, \p ReceiverType, or \p
2382/// ReceiverExpr, respectively. Only one of these parameters may have
2383/// a valid value.
2384///
2385/// \param LBracLoc The location of the opening '['.
2386///
2387/// \param SuperLoc If this is a send to 'super', the location of the
2388/// 'super' keyword that indicates a send to the superclass.
2389///
2390/// \param ReceiverType If this is a class message, the type of the
2391/// class we are sending a message to.
2392///
2393/// \param ReceiverExpr If this is an instance message, the expression
2394/// used to compute the receiver object.
Mike Stump1eb44332009-09-09 15:08:12 +00002395///
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002396/// objc-message-args:
2397/// objc-selector
2398/// objc-keywordarg-list
2399///
2400/// objc-keywordarg-list:
2401/// objc-keywordarg
2402/// objc-keywordarg-list objc-keywordarg
2403///
Mike Stump1eb44332009-09-09 15:08:12 +00002404/// objc-keywordarg:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002405/// selector-name[opt] ':' objc-keywordexpr
2406///
2407/// objc-keywordexpr:
2408/// nonempty-expr-list
2409///
2410/// nonempty-expr-list:
2411/// assignment-expression
2412/// nonempty-expr-list , assignment-expression
Sebastian Redl1d922962008-12-13 15:32:12 +00002413///
John McCall60d7b3a2010-08-24 06:29:42 +00002414ExprResult
Chris Lattner699b6612008-01-25 18:59:06 +00002415Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002416 SourceLocation SuperLoc,
John McCallb3d87482010-08-24 05:47:05 +00002417 ParsedType ReceiverType,
Sebastian Redl1d922962008-12-13 15:32:12 +00002418 ExprArg ReceiverExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002419 InMessageExpressionRAIIObject InMessage(*this, true);
2420
Steve Naroffc4df6d22009-11-07 02:08:14 +00002421 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002422 if (SuperLoc.isValid())
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002423 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, 0, 0,
2424 false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002425 else if (ReceiverType)
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002426 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, 0, 0,
2427 false);
Steve Naroffc4df6d22009-11-07 02:08:14 +00002428 else
John McCall9ae2f072010-08-23 23:25:46 +00002429 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002430 0, 0, false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002431 cutOffParsing();
2432 return ExprError();
Steve Naroffc4df6d22009-11-07 02:08:14 +00002433 }
Douglas Gregord3c68542009-11-19 01:08:35 +00002434
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002435 // Parse objc-selector
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00002436 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002437 IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002438
Chris Lattner5f9e2722011-07-23 10:55:15 +00002439 SmallVector<IdentifierInfo *, 12> KeyIdents;
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002440 SmallVector<SourceLocation, 12> KeyLocs;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002441 ExprVector KeyExprs;
Steve Naroff68d331a2007-09-27 14:38:14 +00002442
Chris Lattnerdf195262007-10-09 17:51:17 +00002443 if (Tok.is(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002444 while (1) {
2445 // Each iteration parses a single keyword argument.
Steve Naroff68d331a2007-09-27 14:38:14 +00002446 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002447 KeyLocs.push_back(Loc);
Steve Naroff37387c92007-09-17 20:25:27 +00002448
Chris Lattnerdf195262007-10-09 17:51:17 +00002449 if (Tok.isNot(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002450 Diag(Tok, diag::err_expected_colon);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002451 // We must manually skip to a ']', otherwise the expression skipper will
2452 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2453 // the enclosing expression.
2454 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002455 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002456 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002457
Steve Naroff68d331a2007-09-27 14:38:14 +00002458 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00002459 /// Parse the expression after ':'
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002460
2461 if (Tok.is(tok::code_completion)) {
2462 if (SuperLoc.isValid())
2463 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
2464 KeyIdents.data(),
2465 KeyIdents.size(),
2466 /*AtArgumentEpression=*/true);
2467 else if (ReceiverType)
2468 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
2469 KeyIdents.data(),
2470 KeyIdents.size(),
2471 /*AtArgumentEpression=*/true);
2472 else
2473 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
2474 KeyIdents.data(),
2475 KeyIdents.size(),
2476 /*AtArgumentEpression=*/true);
2477
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002478 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002479 return ExprError();
2480 }
2481
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002482 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002483 if (Res.isInvalid()) {
Chris Lattner4fef81d2008-08-05 06:19:09 +00002484 // We must manually skip to a ']', otherwise the expression skipper will
2485 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2486 // the enclosing expression.
2487 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002488 return Res;
Steve Naroff37387c92007-09-17 20:25:27 +00002489 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002490
Steve Naroff37387c92007-09-17 20:25:27 +00002491 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002492 KeyExprs.push_back(Res.release());
Sebastian Redl1d922962008-12-13 15:32:12 +00002493
Douglas Gregord3c68542009-11-19 01:08:35 +00002494 // Code completion after each argument.
2495 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002496 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002497 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002498 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002499 KeyIdents.size(),
2500 /*AtArgumentEpression=*/false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002501 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002502 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
Douglas Gregord3c68542009-11-19 01:08:35 +00002503 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002504 KeyIdents.size(),
2505 /*AtArgumentEpression=*/false);
Douglas Gregord3c68542009-11-19 01:08:35 +00002506 else
John McCall9ae2f072010-08-23 23:25:46 +00002507 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregord3c68542009-11-19 01:08:35 +00002508 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002509 KeyIdents.size(),
2510 /*AtArgumentEpression=*/false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002511 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002512 return ExprError();
Douglas Gregord3c68542009-11-19 01:08:35 +00002513 }
2514
Steve Naroff37387c92007-09-17 20:25:27 +00002515 // Check for another keyword selector.
Chris Lattner2fc5c242009-04-11 18:13:45 +00002516 selIdent = ParseObjCSelectorPiece(Loc);
Chris Lattnerdf195262007-10-09 17:51:17 +00002517 if (!selIdent && Tok.isNot(tok::colon))
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002518 break;
2519 // We have a selector or a colon, continue parsing.
2520 }
2521 // Parse the, optional, argument list, comma separated.
Chris Lattnerdf195262007-10-09 17:51:17 +00002522 while (Tok.is(tok::comma)) {
Fariborz Jahanian18df0eb2012-05-21 22:43:44 +00002523 SourceLocation commaLoc = ConsumeToken(); // Eat the ','.
Mike Stump1eb44332009-09-09 15:08:12 +00002524 /// Parse the expression after ','
John McCall60d7b3a2010-08-24 06:29:42 +00002525 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002526 if (Res.isInvalid()) {
Fariborz Jahanian18df0eb2012-05-21 22:43:44 +00002527 if (Tok.is(tok::colon)) {
2528 Diag(commaLoc, diag::note_extra_comma_message_arg) <<
2529 FixItHint::CreateRemoval(commaLoc);
2530 }
Chris Lattner4fef81d2008-08-05 06:19:09 +00002531 // We must manually skip to a ']', otherwise the expression skipper will
2532 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2533 // the enclosing expression.
2534 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002535 return Res;
Steve Naroff49f109c2007-11-15 13:05:42 +00002536 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002537
Steve Naroff49f109c2007-11-15 13:05:42 +00002538 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002539 KeyExprs.push_back(Res.release());
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002540 }
2541 } else if (!selIdent) {
2542 Diag(Tok, diag::err_expected_ident); // missing selector name.
Sebastian Redl1d922962008-12-13 15:32:12 +00002543
Chris Lattner4fef81d2008-08-05 06:19:09 +00002544 // We must manually skip to a ']', otherwise the expression skipper will
2545 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2546 // the enclosing expression.
2547 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002548 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002549 }
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002550
Chris Lattnerdf195262007-10-09 17:51:17 +00002551 if (Tok.isNot(tok::r_square)) {
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002552 if (Tok.is(tok::identifier))
2553 Diag(Tok, diag::err_expected_colon);
2554 else
2555 Diag(Tok, diag::err_expected_rsquare);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002556 // We must manually skip to a ']', otherwise the expression skipper will
2557 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2558 // the enclosing expression.
2559 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002560 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002561 }
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002562
Chris Lattner699b6612008-01-25 18:59:06 +00002563 SourceLocation RBracLoc = ConsumeBracket(); // consume ']'
Sebastian Redl1d922962008-12-13 15:32:12 +00002564
Steve Naroff29238a02007-10-05 18:42:47 +00002565 unsigned nKeys = KeyIdents.size();
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002566 if (nKeys == 0) {
Chris Lattnerff384912007-10-07 02:00:24 +00002567 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002568 KeyLocs.push_back(Loc);
2569 }
Chris Lattnerff384912007-10-07 02:00:24 +00002570 Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002571
Douglas Gregor2725ca82010-04-21 19:57:20 +00002572 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002573 return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002574 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002575 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002576 return Actions.ActOnClassMessage(getCurScope(), ReceiverType, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002577 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
John McCall9ae2f072010-08-23 23:25:46 +00002578 return Actions.ActOnInstanceMessage(getCurScope(), ReceiverExpr, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002579 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002580}
2581
John McCall60d7b3a2010-08-24 06:29:42 +00002582ExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) {
2583 ExprResult Res(ParseStringLiteralExpression());
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002584 if (Res.isInvalid()) return Res;
Sebastian Redl1d922962008-12-13 15:32:12 +00002585
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002586 // @"foo" @"bar" is a valid concatenated string. Eat any subsequent string
2587 // expressions. At this point, we know that the only valid thing that starts
2588 // with '@' is an @"".
Chris Lattner5f9e2722011-07-23 10:55:15 +00002589 SmallVector<SourceLocation, 4> AtLocs;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002590 ExprVector AtStrings;
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002591 AtLocs.push_back(AtLoc);
Sebastian Redleffa8d12008-12-10 00:02:53 +00002592 AtStrings.push_back(Res.release());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002593
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002594 while (Tok.is(tok::at)) {
2595 AtLocs.push_back(ConsumeToken()); // eat the @.
Anders Carlsson55085182007-08-21 17:43:55 +00002596
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002597 // Invalid unless there is a string literal.
Chris Lattner97cf6eb2009-02-18 05:56:09 +00002598 if (!isTokenStringLiteral())
2599 return ExprError(Diag(Tok, diag::err_objc_concat_string));
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002600
John McCall60d7b3a2010-08-24 06:29:42 +00002601 ExprResult Lit(ParseStringLiteralExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002602 if (Lit.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002603 return Lit;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002604
Sebastian Redleffa8d12008-12-10 00:02:53 +00002605 AtStrings.push_back(Lit.release());
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002606 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002607
Nico Weberd32b94d2012-12-31 00:28:03 +00002608 return Actions.ParseObjCStringLiteral(&AtLocs[0], AtStrings.data(),
2609 AtStrings.size());
Anders Carlsson55085182007-08-21 17:43:55 +00002610}
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002611
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002612/// ParseObjCBooleanLiteral -
2613/// objc-scalar-literal : '@' boolean-keyword
2614/// ;
2615/// boolean-keyword: 'true' | 'false' | '__objc_yes' | '__objc_no'
2616/// ;
2617ExprResult Parser::ParseObjCBooleanLiteral(SourceLocation AtLoc,
2618 bool ArgValue) {
2619 SourceLocation EndLoc = ConsumeToken(); // consume the keyword.
2620 return Actions.ActOnObjCBoolLiteral(AtLoc, EndLoc, ArgValue);
2621}
2622
2623/// ParseObjCCharacterLiteral -
2624/// objc-scalar-literal : '@' character-literal
2625/// ;
2626ExprResult Parser::ParseObjCCharacterLiteral(SourceLocation AtLoc) {
2627 ExprResult Lit(Actions.ActOnCharacterConstant(Tok));
2628 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002629 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002630 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002631 ConsumeToken(); // Consume the literal token.
Nico Weberd32b94d2012-12-31 00:28:03 +00002632 return Actions.BuildObjCNumericLiteral(AtLoc, Lit.take());
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002633}
2634
2635/// ParseObjCNumericLiteral -
2636/// objc-scalar-literal : '@' scalar-literal
2637/// ;
2638/// scalar-literal : | numeric-constant /* any numeric constant. */
2639/// ;
2640ExprResult Parser::ParseObjCNumericLiteral(SourceLocation AtLoc) {
2641 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2642 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002643 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002644 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002645 ConsumeToken(); // Consume the literal token.
Nico Weberd32b94d2012-12-31 00:28:03 +00002646 return Actions.BuildObjCNumericLiteral(AtLoc, Lit.take());
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002647}
2648
Patrick Beardeb382ec2012-04-19 00:25:12 +00002649/// ParseObjCBoxedExpr -
2650/// objc-box-expression:
2651/// @( assignment-expression )
2652ExprResult
2653Parser::ParseObjCBoxedExpr(SourceLocation AtLoc) {
2654 if (Tok.isNot(tok::l_paren))
2655 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@");
2656
2657 BalancedDelimiterTracker T(*this, tok::l_paren);
2658 T.consumeOpen();
2659 ExprResult ValueExpr(ParseAssignmentExpression());
2660 if (T.consumeClose())
2661 return ExprError();
Argyrios Kyrtzidisedd27602012-05-10 20:02:36 +00002662
2663 if (ValueExpr.isInvalid())
2664 return ExprError();
2665
Patrick Beardeb382ec2012-04-19 00:25:12 +00002666 // Wrap the sub-expression in a parenthesized expression, to distinguish
2667 // a boxed expression from a literal.
2668 SourceLocation LPLoc = T.getOpenLocation(), RPLoc = T.getCloseLocation();
2669 ValueExpr = Actions.ActOnParenExpr(LPLoc, RPLoc, ValueExpr.take());
Nico Weberd32b94d2012-12-31 00:28:03 +00002670 return Actions.BuildObjCBoxedExpr(SourceRange(AtLoc, RPLoc),
2671 ValueExpr.take());
Patrick Beardeb382ec2012-04-19 00:25:12 +00002672}
2673
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002674ExprResult Parser::ParseObjCArrayLiteral(SourceLocation AtLoc) {
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002675 ExprVector ElementExprs; // array elements.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002676 ConsumeBracket(); // consume the l_square.
2677
2678 while (Tok.isNot(tok::r_square)) {
2679 // Parse list of array element expressions (all must be id types).
2680 ExprResult Res(ParseAssignmentExpression());
2681 if (Res.isInvalid()) {
2682 // We must manually skip to a ']', otherwise the expression skipper will
2683 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2684 // the enclosing expression.
2685 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002686 return Res;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002687 }
2688
2689 // Parse the ellipsis that indicates a pack expansion.
2690 if (Tok.is(tok::ellipsis))
2691 Res = Actions.ActOnPackExpansion(Res.get(), ConsumeToken());
2692 if (Res.isInvalid())
2693 return true;
2694
2695 ElementExprs.push_back(Res.release());
2696
2697 if (Tok.is(tok::comma))
2698 ConsumeToken(); // Eat the ','.
2699 else if (Tok.isNot(tok::r_square))
2700 return ExprError(Diag(Tok, diag::err_expected_rsquare_or_comma));
2701 }
2702 SourceLocation EndLoc = ConsumeBracket(); // location of ']'
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002703 MultiExprArg Args(ElementExprs);
Nico Weberd32b94d2012-12-31 00:28:03 +00002704 return Actions.BuildObjCArrayLiteral(SourceRange(AtLoc, EndLoc), Args);
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002705}
2706
2707ExprResult Parser::ParseObjCDictionaryLiteral(SourceLocation AtLoc) {
2708 SmallVector<ObjCDictionaryElement, 4> Elements; // dictionary elements.
2709 ConsumeBrace(); // consume the l_square.
2710 while (Tok.isNot(tok::r_brace)) {
2711 // Parse the comma separated key : value expressions.
2712 ExprResult KeyExpr;
2713 {
2714 ColonProtectionRAIIObject X(*this);
2715 KeyExpr = ParseAssignmentExpression();
2716 if (KeyExpr.isInvalid()) {
2717 // We must manually skip to a '}', otherwise the expression skipper will
2718 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2719 // the enclosing expression.
2720 SkipUntil(tok::r_brace);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002721 return KeyExpr;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002722 }
2723 }
2724
2725 if (Tok.is(tok::colon)) {
2726 ConsumeToken();
2727 } else {
2728 return ExprError(Diag(Tok, diag::err_expected_colon));
2729 }
2730
2731 ExprResult ValueExpr(ParseAssignmentExpression());
2732 if (ValueExpr.isInvalid()) {
2733 // We must manually skip to a '}', otherwise the expression skipper will
2734 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2735 // the enclosing expression.
2736 SkipUntil(tok::r_brace);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002737 return ValueExpr;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002738 }
2739
2740 // Parse the ellipsis that designates this as a pack expansion.
2741 SourceLocation EllipsisLoc;
David Blaikie4e4d0842012-03-11 07:00:24 +00002742 if (Tok.is(tok::ellipsis) && getLangOpts().CPlusPlus)
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002743 EllipsisLoc = ConsumeToken();
2744
2745 // We have a valid expression. Collect it in a vector so we can
2746 // build the argument list.
2747 ObjCDictionaryElement Element = {
David Blaikie66874fb2013-02-21 01:47:18 +00002748 KeyExpr.get(), ValueExpr.get(), EllipsisLoc, None
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002749 };
2750 Elements.push_back(Element);
2751
2752 if (Tok.is(tok::comma))
2753 ConsumeToken(); // Eat the ','.
2754 else if (Tok.isNot(tok::r_brace))
2755 return ExprError(Diag(Tok, diag::err_expected_rbrace_or_comma));
2756 }
2757 SourceLocation EndLoc = ConsumeBrace();
2758
2759 // Create the ObjCDictionaryLiteral.
Nico Weberd32b94d2012-12-31 00:28:03 +00002760 return Actions.BuildObjCDictionaryLiteral(SourceRange(AtLoc, EndLoc),
2761 Elements.data(), Elements.size());
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002762}
2763
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002764/// objc-encode-expression:
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +00002765/// \@encode ( type-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002766ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002767Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00002768 assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
Sebastian Redl1d922962008-12-13 15:32:12 +00002769
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002770 SourceLocation EncLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002771
Chris Lattner4fef81d2008-08-05 06:19:09 +00002772 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002773 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode");
2774
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002775 BalancedDelimiterTracker T(*this, tok::l_paren);
2776 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002777
Douglas Gregor809070a2009-02-18 17:45:20 +00002778 TypeResult Ty = ParseTypeName();
Sebastian Redl1d922962008-12-13 15:32:12 +00002779
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002780 T.consumeClose();
Sebastian Redl1d922962008-12-13 15:32:12 +00002781
Douglas Gregor809070a2009-02-18 17:45:20 +00002782 if (Ty.isInvalid())
2783 return ExprError();
2784
Nico Weberd32b94d2012-12-31 00:28:03 +00002785 return Actions.ParseObjCEncodeExpression(AtLoc, EncLoc, T.getOpenLocation(),
2786 Ty.get(), T.getCloseLocation());
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002787}
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002788
2789/// objc-protocol-expression
James Dennett17d26a62012-06-11 06:19:40 +00002790/// \@protocol ( protocol-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002791ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002792Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) {
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002793 SourceLocation ProtoLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002794
Chris Lattner4fef81d2008-08-05 06:19:09 +00002795 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002796 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol");
2797
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002798 BalancedDelimiterTracker T(*this, tok::l_paren);
2799 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002800
Chris Lattner4fef81d2008-08-05 06:19:09 +00002801 if (Tok.isNot(tok::identifier))
Sebastian Redl1d922962008-12-13 15:32:12 +00002802 return ExprError(Diag(Tok, diag::err_expected_ident));
2803
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002804 IdentifierInfo *protocolId = Tok.getIdentifierInfo();
Argyrios Kyrtzidis7d24e282012-05-16 00:50:02 +00002805 SourceLocation ProtoIdLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002806
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002807 T.consumeClose();
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002808
Nico Weberd32b94d2012-12-31 00:28:03 +00002809 return Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc,
2810 T.getOpenLocation(), ProtoIdLoc,
2811 T.getCloseLocation());
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002812}
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002813
2814/// objc-selector-expression
2815/// @selector '(' objc-keyword-selector ')'
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002816ExprResult Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002817 SourceLocation SelectorLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002818
Chris Lattner4fef81d2008-08-05 06:19:09 +00002819 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002820 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector");
2821
Chris Lattner5f9e2722011-07-23 10:55:15 +00002822 SmallVector<IdentifierInfo *, 12> KeyIdents;
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002823 SourceLocation sLoc;
Douglas Gregor458433d2010-08-26 15:07:07 +00002824
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002825 BalancedDelimiterTracker T(*this, tok::l_paren);
2826 T.consumeOpen();
2827
Douglas Gregor458433d2010-08-26 15:07:07 +00002828 if (Tok.is(tok::code_completion)) {
2829 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2830 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002831 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002832 return ExprError();
2833 }
2834
Chris Lattner2fc5c242009-04-11 18:13:45 +00002835 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
Chris Lattner5add7542010-08-27 22:32:41 +00002836 if (!SelIdent && // missing selector name.
2837 Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002838 return ExprError(Diag(Tok, diag::err_expected_ident));
2839
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002840 KeyIdents.push_back(SelIdent);
Steve Naroff887407e2007-12-05 22:21:29 +00002841 unsigned nColons = 0;
2842 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002843 while (1) {
Chris Lattner5add7542010-08-27 22:32:41 +00002844 if (Tok.is(tok::coloncolon)) { // Handle :: in C++.
2845 ++nColons;
2846 KeyIdents.push_back(0);
2847 } else if (Tok.isNot(tok::colon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002848 return ExprError(Diag(Tok, diag::err_expected_colon));
2849
Chris Lattner5add7542010-08-27 22:32:41 +00002850 ++nColons;
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002851 ConsumeToken(); // Eat the ':' or '::'.
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002852 if (Tok.is(tok::r_paren))
2853 break;
Douglas Gregor458433d2010-08-26 15:07:07 +00002854
2855 if (Tok.is(tok::code_completion)) {
2856 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2857 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002858 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002859 return ExprError();
2860 }
2861
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002862 // Check for another keyword selector.
2863 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002864 SelIdent = ParseObjCSelectorPiece(Loc);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002865 KeyIdents.push_back(SelIdent);
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002866 if (!SelIdent && Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002867 break;
2868 }
Steve Naroff887407e2007-12-05 22:21:29 +00002869 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002870 T.consumeClose();
Steve Naroff887407e2007-12-05 22:21:29 +00002871 Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]);
Nico Weberd32b94d2012-12-31 00:28:03 +00002872 return Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc,
2873 T.getOpenLocation(),
Fariborz Jahanian48f3cc22013-01-22 18:35:43 +00002874 T.getCloseLocation());
Gabor Greif58065b22007-10-19 15:38:32 +00002875 }
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002876
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002877void Parser::ParseLexedObjCMethodDefs(LexedMethod &LM, bool parseMethod) {
2878 // MCDecl might be null due to error in method or c-function prototype, etc.
2879 Decl *MCDecl = LM.D;
2880 bool skip = MCDecl &&
2881 ((parseMethod && !Actions.isObjCMethodDecl(MCDecl)) ||
2882 (!parseMethod && Actions.isObjCMethodDecl(MCDecl)));
2883 if (skip)
2884 return;
2885
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002886 // Save the current token position.
2887 SourceLocation OrigLoc = Tok.getLocation();
2888
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002889 assert(!LM.Toks.empty() && "ParseLexedObjCMethodDef - Empty body!");
2890 // Append the current token at the end of the new token stream so that it
2891 // doesn't get lost.
2892 LM.Toks.push_back(Tok);
2893 PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false);
2894
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002895 // Consume the previously pushed token.
2896 ConsumeAnyToken();
2897
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002898 assert((Tok.is(tok::l_brace) || Tok.is(tok::kw_try) ||
2899 Tok.is(tok::colon)) &&
2900 "Inline objective-c method not starting with '{' or 'try' or ':'");
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002901 // Enter a scope for the method or c-fucntion body.
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002902 ParseScope BodyScope(this,
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002903 parseMethod
2904 ? Scope::ObjCMethodScope|Scope::FnScope|Scope::DeclScope
2905 : Scope::FnScope|Scope::DeclScope);
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002906
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002907 // Tell the actions module that we have entered a method or c-function definition
2908 // with the specified Declarator for the method/function.
Fariborz Jahanian8c6cb462012-08-08 23:41:08 +00002909 if (parseMethod)
2910 Actions.ActOnStartOfObjCMethodDef(getCurScope(), MCDecl);
2911 else
2912 Actions.ActOnStartOfFunctionDef(getCurScope(), MCDecl);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00002913 if (Tok.is(tok::kw_try))
2914 MCDecl = ParseFunctionTryBlock(MCDecl, BodyScope);
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002915 else {
2916 if (Tok.is(tok::colon))
2917 ParseConstructorInitializer(MCDecl);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00002918 MCDecl = ParseFunctionStatementBody(MCDecl, BodyScope);
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002919 }
Fariborz Jahanian69409722012-08-09 21:12:39 +00002920
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002921 if (Tok.getLocation() != OrigLoc) {
2922 // Due to parsing error, we either went over the cached tokens or
2923 // there are still cached tokens left. If it's the latter case skip the
2924 // leftover tokens.
2925 // Since this is an uncommon situation that should be avoided, use the
2926 // expensive isBeforeInTranslationUnit call.
2927 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
2928 OrigLoc))
2929 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
2930 ConsumeAnyToken();
2931 }
2932
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002933 return;
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002934}