blob: 1baebd5ba929711297ae6794b4fe9ec4cd93035e [file] [log] [blame]
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001//===--- ParseObjC.cpp - Objective C Parsing ------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Objective-C portions of the Parser interface.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner500d3292009-01-29 05:15:15 +000014#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000015#include "clang/Parse/Parser.h"
Douglas Gregor0fbda682010-09-15 14:51:05 +000016#include "RAIIObjectsForParser.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/DeclSpec.h"
John McCallf312b1e2010-08-26 23:41:50 +000018#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall19510852010-08-20 18:27:03 +000019#include "clang/Sema/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/ADT/SmallVector.h"
21using namespace clang;
22
23
Chris Lattner891dca62008-12-08 21:53:24 +000024/// ParseObjCAtDirectives - Handle parts of the external-declaration production:
Reid Spencer5f016e22007-07-11 17:01:13 +000025/// external-declaration: [C99 6.9]
26/// [OBJC] objc-class-definition
Steve Naroff91fa0b72007-10-29 21:39:29 +000027/// [OBJC] objc-class-declaration
28/// [OBJC] objc-alias-declaration
29/// [OBJC] objc-protocol-definition
30/// [OBJC] objc-method-definition
31/// [OBJC] '@' 'end'
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000032Parser::DeclGroupPtrTy Parser::ParseObjCAtDirectives() {
Reid Spencer5f016e22007-07-11 17:01:13 +000033 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +000034
Douglas Gregorc464ae82009-12-07 09:27:33 +000035 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000036 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +000037 cutOffParsing();
38 return DeclGroupPtrTy();
Douglas Gregorc464ae82009-12-07 09:27:33 +000039 }
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000040
41 Decl *SingleDecl = 0;
Steve Naroff861cf3e2007-08-23 18:16:40 +000042 switch (Tok.getObjCKeywordID()) {
Chris Lattner5ffb14b2008-08-23 02:02:23 +000043 case tok::objc_class:
44 return ParseObjCAtClassDeclaration(AtLoc);
John McCall7f040a92010-12-24 02:08:15 +000045 case tok::objc_interface: {
John McCall0b7e6782011-03-24 11:26:52 +000046 ParsedAttributes attrs(AttrFactory);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000047 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs);
48 break;
John McCall7f040a92010-12-24 02:08:15 +000049 }
50 case tok::objc_protocol: {
John McCall0b7e6782011-03-24 11:26:52 +000051 ParsedAttributes attrs(AttrFactory);
Douglas Gregorbd9482d2012-01-01 21:23:57 +000052 return ParseObjCAtProtocolDeclaration(AtLoc, attrs);
John McCall7f040a92010-12-24 02:08:15 +000053 }
Chris Lattner5ffb14b2008-08-23 02:02:23 +000054 case tok::objc_implementation:
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +000055 return ParseObjCAtImplementationDeclaration(AtLoc);
Chris Lattner5ffb14b2008-08-23 02:02:23 +000056 case tok::objc_end:
Fariborz Jahanian140ab232011-08-31 17:37:55 +000057 return ParseObjCAtEndDeclaration(AtLoc);
Chris Lattner5ffb14b2008-08-23 02:02:23 +000058 case tok::objc_compatibility_alias:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000059 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
60 break;
Chris Lattner5ffb14b2008-08-23 02:02:23 +000061 case tok::objc_synthesize:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000062 SingleDecl = ParseObjCPropertySynthesize(AtLoc);
63 break;
Chris Lattner5ffb14b2008-08-23 02:02:23 +000064 case tok::objc_dynamic:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000065 SingleDecl = ParseObjCPropertyDynamic(AtLoc);
66 break;
Ted Kremenek32ad2ee2012-03-01 22:07:04 +000067 case tok::objc___experimental_modules_import:
David Blaikie4e4d0842012-03-11 07:00:24 +000068 if (getLangOpts().Modules)
Douglas Gregor94ad28b2012-01-03 18:24:14 +000069 return ParseModuleImport(AtLoc);
70
71 // Fall through
72
Chris Lattner5ffb14b2008-08-23 02:02:23 +000073 default:
74 Diag(AtLoc, diag::err_unexpected_at);
75 SkipUntil(tok::semi);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000076 SingleDecl = 0;
77 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000078 }
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000079 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +000080}
81
82///
Mike Stump1eb44332009-09-09 15:08:12 +000083/// objc-class-declaration:
Reid Spencer5f016e22007-07-11 17:01:13 +000084/// '@' 'class' identifier-list ';'
Mike Stump1eb44332009-09-09 15:08:12 +000085///
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000086Parser::DeclGroupPtrTy
87Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
Reid Spencer5f016e22007-07-11 17:01:13 +000088 ConsumeToken(); // the identifier "class"
Chris Lattner5f9e2722011-07-23 10:55:15 +000089 SmallVector<IdentifierInfo *, 8> ClassNames;
90 SmallVector<SourceLocation, 8> ClassLocs;
Ted Kremenekc09cba62009-11-17 23:12:20 +000091
Mike Stump1eb44332009-09-09 15:08:12 +000092
Reid Spencer5f016e22007-07-11 17:01:13 +000093 while (1) {
Chris Lattnerdf195262007-10-09 17:51:17 +000094 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000095 Diag(Tok, diag::err_expected_ident);
96 SkipUntil(tok::semi);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000097 return Actions.ConvertDeclToDeclGroup(0);
Reid Spencer5f016e22007-07-11 17:01:13 +000098 }
Reid Spencer5f016e22007-07-11 17:01:13 +000099 ClassNames.push_back(Tok.getIdentifierInfo());
Ted Kremenekc09cba62009-11-17 23:12:20 +0000100 ClassLocs.push_back(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000101 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Chris Lattnerdf195262007-10-09 17:51:17 +0000103 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000105
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 ConsumeToken();
107 }
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 // Consume the ';'.
110 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@class"))
Fariborz Jahanian95ed7782011-08-27 20:50:59 +0000111 return Actions.ConvertDeclToDeclGroup(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000112
Ted Kremenekc09cba62009-11-17 23:12:20 +0000113 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(),
114 ClassLocs.data(),
115 ClassNames.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000116}
117
Erik Verbruggend64251f2011-12-06 09:25:23 +0000118void Parser::CheckNestedObjCContexts(SourceLocation AtLoc)
119{
120 Sema::ObjCContainerKind ock = Actions.getObjCContainerKind();
121 if (ock == Sema::OCK_None)
122 return;
123
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +0000124 Decl *Decl = Actions.getObjCDeclContext();
125 if (CurParsedObjCImpl) {
126 CurParsedObjCImpl->finish(AtLoc);
127 } else {
128 Actions.ActOnAtEnd(getCurScope(), AtLoc);
129 }
Erik Verbruggend64251f2011-12-06 09:25:23 +0000130 Diag(AtLoc, diag::err_objc_missing_end)
131 << FixItHint::CreateInsertion(AtLoc, "@end\n");
132 if (Decl)
133 Diag(Decl->getLocStart(), diag::note_objc_container_start)
134 << (int) ock;
Erik Verbruggend64251f2011-12-06 09:25:23 +0000135}
136
Steve Naroffdac269b2007-08-20 21:31:48 +0000137///
138/// objc-interface:
139/// objc-class-interface-attributes[opt] objc-class-interface
140/// objc-category-interface
141///
142/// objc-class-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000143/// '@' 'interface' identifier objc-superclass[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000144/// objc-protocol-refs[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000145/// objc-class-instance-variables[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000146/// objc-interface-decl-list
147/// @end
148///
149/// objc-category-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000150/// '@' 'interface' identifier '(' identifier[opt] ')'
Steve Naroffdac269b2007-08-20 21:31:48 +0000151/// objc-protocol-refs[opt]
152/// objc-interface-decl-list
153/// @end
154///
155/// objc-superclass:
156/// ':' identifier
157///
158/// objc-class-interface-attributes:
159/// __attribute__((visibility("default")))
160/// __attribute__((visibility("hidden")))
161/// __attribute__((deprecated))
162/// __attribute__((unavailable))
163/// __attribute__((objc_exception)) - used by NSException on 64-bit
Patrick Beardb2f68202012-04-06 18:12:22 +0000164/// __attribute__((objc_root_class))
Steve Naroffdac269b2007-08-20 21:31:48 +0000165///
Erik Verbruggend64251f2011-12-06 09:25:23 +0000166Decl *Parser::ParseObjCAtInterfaceDeclaration(SourceLocation AtLoc,
John McCall7f040a92010-12-24 02:08:15 +0000167 ParsedAttributes &attrs) {
Steve Naroff861cf3e2007-08-23 18:16:40 +0000168 assert(Tok.isObjCAtKeyword(tok::objc_interface) &&
Steve Naroffdac269b2007-08-20 21:31:48 +0000169 "ParseObjCAtInterfaceDeclaration(): Expected @interface");
Erik Verbruggend64251f2011-12-06 09:25:23 +0000170 CheckNestedObjCContexts(AtLoc);
Steve Naroffdac269b2007-08-20 21:31:48 +0000171 ConsumeToken(); // the "interface" identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000172
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000173 // Code completion after '@interface'.
174 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000175 Actions.CodeCompleteObjCInterfaceDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000176 cutOffParsing();
177 return 0;
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000178 }
179
Chris Lattnerdf195262007-10-09 17:51:17 +0000180 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000181 Diag(Tok, diag::err_expected_ident); // missing class or category name.
John McCalld226f652010-08-21 09:40:31 +0000182 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000183 }
Fariborz Jahanian63e963c2009-11-16 18:57:01 +0000184
Steve Naroffdac269b2007-08-20 21:31:48 +0000185 // We have a class or category name - consume it.
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000186 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Steve Naroffdac269b2007-08-20 21:31:48 +0000187 SourceLocation nameLoc = ConsumeToken();
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000188 if (Tok.is(tok::l_paren) &&
189 !isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { // we have a category.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000190
191 BalancedDelimiterTracker T(*this, tok::l_paren);
192 T.consumeOpen();
193
194 SourceLocation categoryLoc;
Steve Naroffdac269b2007-08-20 21:31:48 +0000195 IdentifierInfo *categoryId = 0;
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000196 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000197 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000198 cutOffParsing();
199 return 0;
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000200 }
201
Steve Naroff527fe232007-08-23 19:56:30 +0000202 // For ObjC2, the category name is optional (not an error).
Chris Lattnerdf195262007-10-09 17:51:17 +0000203 if (Tok.is(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000204 categoryId = Tok.getIdentifierInfo();
205 categoryLoc = ConsumeToken();
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000206 }
David Blaikie4e4d0842012-03-11 07:00:24 +0000207 else if (!getLangOpts().ObjC2) {
Steve Naroff527fe232007-08-23 19:56:30 +0000208 Diag(Tok, diag::err_expected_ident); // missing category name.
John McCalld226f652010-08-21 09:40:31 +0000209 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000210 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000211
212 T.consumeClose();
213 if (T.getCloseLocation().isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000214 return 0;
Douglas Gregor13d05ac2011-09-23 19:19:41 +0000215
216 if (!attrs.empty()) { // categories don't support attributes.
217 Diag(nameLoc, diag::err_objc_no_attributes_on_category);
218 attrs.clear();
Steve Naroffdac269b2007-08-20 21:31:48 +0000219 }
Douglas Gregor13d05ac2011-09-23 19:19:41 +0000220
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000221 // Next, we need to check for any protocol references.
222 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000223 SmallVector<Decl *, 8> ProtocolRefs;
224 SmallVector<SourceLocation, 8> ProtocolLocs;
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000225 if (Tok.is(tok::less) &&
226 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000227 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000228 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000229
John McCalld226f652010-08-21 09:40:31 +0000230 Decl *CategoryType =
Erik Verbruggend64251f2011-12-06 09:25:23 +0000231 Actions.ActOnStartCategoryInterface(AtLoc,
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000232 nameId, nameLoc,
233 categoryId, categoryLoc,
234 ProtocolRefs.data(),
235 ProtocolRefs.size(),
236 ProtocolLocs.data(),
237 EndProtoLoc);
Fariborz Jahaniane6f07f52011-08-19 18:02:47 +0000238
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000239 if (Tok.is(tok::l_brace))
Erik Verbruggend64251f2011-12-06 09:25:23 +0000240 ParseObjCClassInstanceVariables(CategoryType, tok::objc_private, AtLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000241
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000242 ParseObjCInterfaceDeclList(tok::objc_not_keyword, CategoryType);
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000243 return CategoryType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000244 }
245 // Parse a class interface.
246 IdentifierInfo *superClassId = 0;
247 SourceLocation superClassLoc;
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000248
Chris Lattnerdf195262007-10-09 17:51:17 +0000249 if (Tok.is(tok::colon)) { // a super class is specified.
Steve Naroffdac269b2007-08-20 21:31:48 +0000250 ConsumeToken();
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000251
252 // Code completion of superclass names.
253 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000254 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000255 cutOffParsing();
256 return 0;
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000257 }
258
Chris Lattnerdf195262007-10-09 17:51:17 +0000259 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000260 Diag(Tok, diag::err_expected_ident); // missing super class name.
John McCalld226f652010-08-21 09:40:31 +0000261 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000262 }
263 superClassId = Tok.getIdentifierInfo();
264 superClassLoc = ConsumeToken();
265 }
266 // Next, we need to check for any protocol references.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000267 SmallVector<Decl *, 8> ProtocolRefs;
268 SmallVector<SourceLocation, 8> ProtocolLocs;
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000269 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner06036d32008-07-26 04:13:19 +0000270 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000271 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
272 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000273 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000274
John McCalld226f652010-08-21 09:40:31 +0000275 Decl *ClsType =
Erik Verbruggend64251f2011-12-06 09:25:23 +0000276 Actions.ActOnStartClassInterface(AtLoc, nameId, nameLoc,
Chris Lattner06036d32008-07-26 04:13:19 +0000277 superClassId, superClassLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +0000278 ProtocolRefs.data(), ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +0000279 ProtocolLocs.data(),
John McCall7f040a92010-12-24 02:08:15 +0000280 EndProtoLoc, attrs.getList());
Mike Stump1eb44332009-09-09 15:08:12 +0000281
Chris Lattnerdf195262007-10-09 17:51:17 +0000282 if (Tok.is(tok::l_brace))
Erik Verbruggend64251f2011-12-06 09:25:23 +0000283 ParseObjCClassInstanceVariables(ClsType, tok::objc_protected, AtLoc);
Steve Naroffdac269b2007-08-20 21:31:48 +0000284
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000285 ParseObjCInterfaceDeclList(tok::objc_interface, ClsType);
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000286 return ClsType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000287}
288
John McCalld0014542009-12-03 22:31:13 +0000289/// The Objective-C property callback. This should be defined where
290/// it's used, but instead it's been lifted to here to support VS2005.
291struct Parser::ObjCPropertyCallback : FieldCallback {
David Blaikie99ba9e32011-12-20 02:48:34 +0000292private:
293 virtual void anchor();
294public:
John McCalld0014542009-12-03 22:31:13 +0000295 Parser &P;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000296 SmallVectorImpl<Decl *> &Props;
John McCalld0014542009-12-03 22:31:13 +0000297 ObjCDeclSpec &OCDS;
298 SourceLocation AtLoc;
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000299 SourceLocation LParenLoc;
John McCalld0014542009-12-03 22:31:13 +0000300 tok::ObjCKeywordKind MethodImplKind;
301
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000302 ObjCPropertyCallback(Parser &P,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000303 SmallVectorImpl<Decl *> &Props,
John McCalld0014542009-12-03 22:31:13 +0000304 ObjCDeclSpec &OCDS, SourceLocation AtLoc,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000305 SourceLocation LParenLoc,
John McCalld0014542009-12-03 22:31:13 +0000306 tok::ObjCKeywordKind MethodImplKind) :
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000307 P(P), Props(Props), OCDS(OCDS), AtLoc(AtLoc), LParenLoc(LParenLoc),
John McCalld0014542009-12-03 22:31:13 +0000308 MethodImplKind(MethodImplKind) {
309 }
310
John McCalld226f652010-08-21 09:40:31 +0000311 Decl *invoke(FieldDeclarator &FD) {
John McCalld0014542009-12-03 22:31:13 +0000312 if (FD.D.getIdentifier() == 0) {
313 P.Diag(AtLoc, diag::err_objc_property_requires_field_name)
314 << FD.D.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +0000315 return 0;
John McCalld0014542009-12-03 22:31:13 +0000316 }
317 if (FD.BitfieldSize) {
318 P.Diag(AtLoc, diag::err_objc_property_bitfield)
319 << FD.D.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +0000320 return 0;
John McCalld0014542009-12-03 22:31:13 +0000321 }
322
323 // Install the property declarator into interfaceDecl.
324 IdentifierInfo *SelName =
325 OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier();
326
327 Selector GetterSel =
328 P.PP.getSelectorTable().getNullarySelector(SelName);
329 IdentifierInfo *SetterName = OCDS.getSetterName();
330 Selector SetterSel;
331 if (SetterName)
332 SetterSel = P.PP.getSelectorTable().getSelector(1, &SetterName);
333 else
334 SetterSel = SelectorTable::constructSetterName(P.PP.getIdentifierTable(),
335 P.PP.getSelectorTable(),
336 FD.D.getIdentifier());
337 bool isOverridingProperty = false;
John McCalld226f652010-08-21 09:40:31 +0000338 Decl *Property =
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000339 P.Actions.ActOnProperty(P.getCurScope(), AtLoc, LParenLoc,
340 FD, OCDS,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000341 GetterSel, SetterSel,
John McCalld0014542009-12-03 22:31:13 +0000342 &isOverridingProperty,
343 MethodImplKind);
344 if (!isOverridingProperty)
345 Props.push_back(Property);
346
347 return Property;
348 }
349};
350
David Blaikie99ba9e32011-12-20 02:48:34 +0000351void Parser::ObjCPropertyCallback::anchor() {
352}
353
Steve Naroffdac269b2007-08-20 21:31:48 +0000354/// objc-interface-decl-list:
355/// empty
Steve Naroffdac269b2007-08-20 21:31:48 +0000356/// objc-interface-decl-list objc-property-decl [OBJC2]
Steve Naroff294494e2007-08-22 16:35:03 +0000357/// objc-interface-decl-list objc-method-requirement [OBJC2]
Steve Naroff3536b442007-09-06 21:24:23 +0000358/// objc-interface-decl-list objc-method-proto ';'
Steve Naroffdac269b2007-08-20 21:31:48 +0000359/// objc-interface-decl-list declaration
360/// objc-interface-decl-list ';'
361///
Steve Naroff294494e2007-08-22 16:35:03 +0000362/// objc-method-requirement: [OBJC2]
363/// @required
364/// @optional
365///
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000366void Parser::ParseObjCInterfaceDeclList(tok::ObjCKeywordKind contextKey,
367 Decl *CDecl) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000368 SmallVector<Decl *, 32> allMethods;
369 SmallVector<Decl *, 16> allProperties;
370 SmallVector<DeclGroupPtrTy, 8> allTUVariables;
Fariborz Jahanian00933592007-09-18 00:25:23 +0000371 tok::ObjCKeywordKind MethodImplKind = tok::objc_not_keyword;
Mike Stump1eb44332009-09-09 15:08:12 +0000372
Ted Kremenek782f2f52010-01-07 01:20:12 +0000373 SourceRange AtEnd;
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000374
Steve Naroff294494e2007-08-22 16:35:03 +0000375 while (1) {
Chris Lattnere82a10f2008-10-20 05:46:22 +0000376 // If this is a method prototype, parse it.
Chris Lattnerdf195262007-10-09 17:51:17 +0000377 if (Tok.is(tok::minus) || Tok.is(tok::plus)) {
John McCalld226f652010-08-21 09:40:31 +0000378 Decl *methodPrototype =
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000379 ParseObjCMethodPrototype(MethodImplKind, false);
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000380 allMethods.push_back(methodPrototype);
Steve Naroff3536b442007-09-06 21:24:23 +0000381 // Consume the ';' here, since ParseObjCMethodPrototype() is re-used for
382 // method definitions.
Argyrios Kyrtzidis0db9f4d2011-12-17 04:13:22 +0000383 if (ExpectAndConsumeSemi(diag::err_expected_semi_after_method_proto)) {
384 // We didn't find a semi and we error'ed out. Skip until a ';' or '@'.
385 SkipUntil(tok::at, /*StopAtSemi=*/true, /*DontConsume=*/true);
386 if (Tok.is(tok::semi))
387 ConsumeToken();
388 }
Steve Naroff294494e2007-08-22 16:35:03 +0000389 continue;
390 }
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000391 if (Tok.is(tok::l_paren)) {
392 Diag(Tok, diag::err_expected_minus_or_plus);
John McCalld226f652010-08-21 09:40:31 +0000393 ParseObjCMethodDecl(Tok.getLocation(),
394 tok::minus,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000395 MethodImplKind, false);
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000396 continue;
397 }
Chris Lattnere82a10f2008-10-20 05:46:22 +0000398 // Ignore excess semicolons.
399 if (Tok.is(tok::semi)) {
Steve Naroff294494e2007-08-22 16:35:03 +0000400 ConsumeToken();
Chris Lattnere82a10f2008-10-20 05:46:22 +0000401 continue;
402 }
Mike Stump1eb44332009-09-09 15:08:12 +0000403
Chris Lattnerbc662af2008-10-20 06:10:06 +0000404 // If we got to the end of the file, exit the loop.
Chris Lattnere82a10f2008-10-20 05:46:22 +0000405 if (Tok.is(tok::eof))
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000406 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000407
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000408 // Code completion within an Objective-C interface.
409 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000410 Actions.CodeCompleteOrdinaryName(getCurScope(),
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +0000411 CurParsedObjCImpl? Sema::PCC_ObjCImplementation
John McCallf312b1e2010-08-26 23:41:50 +0000412 : Sema::PCC_ObjCInterface);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000413 return cutOffParsing();
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000414 }
415
Chris Lattnere82a10f2008-10-20 05:46:22 +0000416 // If we don't have an @ directive, parse it as a function definition.
417 if (Tok.isNot(tok::at)) {
Chris Lattner1fd80112009-01-09 04:34:13 +0000418 // The code below does not consume '}'s because it is afraid of eating the
419 // end of a namespace. Because of the way this code is structured, an
420 // erroneous r_brace would cause an infinite loop if not handled here.
421 if (Tok.is(tok::r_brace))
422 break;
John McCall0b7e6782011-03-24 11:26:52 +0000423 ParsedAttributes attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000424 allTUVariables.push_back(ParseDeclarationOrFunctionDefinition(attrs));
Chris Lattnere82a10f2008-10-20 05:46:22 +0000425 continue;
426 }
Mike Stump1eb44332009-09-09 15:08:12 +0000427
Chris Lattnere82a10f2008-10-20 05:46:22 +0000428 // Otherwise, we have an @ directive, eat the @.
429 SourceLocation AtLoc = ConsumeToken(); // the "@"
Douglas Gregorc464ae82009-12-07 09:27:33 +0000430 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000431 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000432 return cutOffParsing();
Douglas Gregorc464ae82009-12-07 09:27:33 +0000433 }
434
Chris Lattnera2449b22008-10-20 05:57:40 +0000435 tok::ObjCKeywordKind DirectiveKind = Tok.getObjCKeywordID();
Mike Stump1eb44332009-09-09 15:08:12 +0000436
Chris Lattnera2449b22008-10-20 05:57:40 +0000437 if (DirectiveKind == tok::objc_end) { // @end -> terminate list
Ted Kremenek782f2f52010-01-07 01:20:12 +0000438 AtEnd.setBegin(AtLoc);
439 AtEnd.setEnd(Tok.getLocation());
Chris Lattnere82a10f2008-10-20 05:46:22 +0000440 break;
Douglas Gregorc3d43b72010-03-16 06:04:47 +0000441 } else if (DirectiveKind == tok::objc_not_keyword) {
442 Diag(Tok, diag::err_objc_unknown_at);
443 SkipUntil(tok::semi);
444 continue;
Chris Lattnerbc662af2008-10-20 06:10:06 +0000445 }
Mike Stump1eb44332009-09-09 15:08:12 +0000446
Chris Lattnerbc662af2008-10-20 06:10:06 +0000447 // Eat the identifier.
448 ConsumeToken();
449
Chris Lattnera2449b22008-10-20 05:57:40 +0000450 switch (DirectiveKind) {
451 default:
Chris Lattnerbc662af2008-10-20 06:10:06 +0000452 // FIXME: If someone forgets an @end on a protocol, this loop will
453 // continue to eat up tons of stuff and spew lots of nonsense errors. It
454 // would probably be better to bail out if we saw an @class or @interface
455 // or something like that.
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000456 Diag(AtLoc, diag::err_objc_illegal_interface_qual);
Chris Lattnerbc662af2008-10-20 06:10:06 +0000457 // Skip until we see an '@' or '}' or ';'.
Chris Lattnera2449b22008-10-20 05:57:40 +0000458 SkipUntil(tok::r_brace, tok::at);
459 break;
Fariborz Jahanian46d545e2010-11-02 00:44:43 +0000460
461 case tok::objc_implementation:
Fariborz Jahaniandf81c2c2010-11-09 20:38:00 +0000462 case tok::objc_interface:
Erik Verbruggend64251f2011-12-06 09:25:23 +0000463 Diag(AtLoc, diag::err_objc_missing_end)
464 << FixItHint::CreateInsertion(AtLoc, "@end\n");
465 Diag(CDecl->getLocStart(), diag::note_objc_container_start)
466 << (int) Actions.getObjCContainerKind();
Fariborz Jahanian46d545e2010-11-02 00:44:43 +0000467 ConsumeToken();
468 break;
469
Chris Lattnera2449b22008-10-20 05:57:40 +0000470 case tok::objc_required:
Chris Lattnera2449b22008-10-20 05:57:40 +0000471 case tok::objc_optional:
Chris Lattnera2449b22008-10-20 05:57:40 +0000472 // This is only valid on protocols.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000473 // FIXME: Should this check for ObjC2 being enabled?
Chris Lattnere82a10f2008-10-20 05:46:22 +0000474 if (contextKey != tok::objc_protocol)
Chris Lattnerbc662af2008-10-20 06:10:06 +0000475 Diag(AtLoc, diag::err_objc_directive_only_in_protocol);
Chris Lattnera2449b22008-10-20 05:57:40 +0000476 else
Chris Lattnerbc662af2008-10-20 06:10:06 +0000477 MethodImplKind = DirectiveKind;
Chris Lattnera2449b22008-10-20 05:57:40 +0000478 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000479
Chris Lattnera2449b22008-10-20 05:57:40 +0000480 case tok::objc_property:
David Blaikie4e4d0842012-03-11 07:00:24 +0000481 if (!getLangOpts().ObjC2)
Chris Lattnerb321c0c2010-12-17 05:40:22 +0000482 Diag(AtLoc, diag::err_objc_properties_require_objc2);
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000483
Chris Lattnere82a10f2008-10-20 05:46:22 +0000484 ObjCDeclSpec OCDS;
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000485 SourceLocation LParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +0000486 // Parse property attribute list, if any.
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000487 if (Tok.is(tok::l_paren)) {
488 LParenLoc = Tok.getLocation();
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000489 ParseObjCPropertyAttribute(OCDS);
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000490 }
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000492 ObjCPropertyCallback Callback(*this, allProperties,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000493 OCDS, AtLoc, LParenLoc, MethodImplKind);
John McCallbdd563e2009-11-03 02:38:08 +0000494
Chris Lattnere82a10f2008-10-20 05:46:22 +0000495 // Parse all the comma separated declarators.
John McCall0b7e6782011-03-24 11:26:52 +0000496 DeclSpec DS(AttrFactory);
John McCallbdd563e2009-11-03 02:38:08 +0000497 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +0000498
John McCall7da19ea2011-03-26 01:53:26 +0000499 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
Chris Lattnera2449b22008-10-20 05:57:40 +0000500 break;
Steve Narofff28b2642007-09-05 23:30:30 +0000501 }
Steve Naroff294494e2007-08-22 16:35:03 +0000502 }
Chris Lattnerbc662af2008-10-20 06:10:06 +0000503
504 // We break out of the big loop in two cases: when we see @end or when we see
505 // EOF. In the former case, eat the @end. In the later case, emit an error.
Douglas Gregorc464ae82009-12-07 09:27:33 +0000506 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000507 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000508 return cutOffParsing();
Erik Verbruggend64251f2011-12-06 09:25:23 +0000509 } else if (Tok.isObjCAtKeyword(tok::objc_end)) {
Chris Lattnerbc662af2008-10-20 06:10:06 +0000510 ConsumeToken(); // the "end" identifier
Erik Verbruggend64251f2011-12-06 09:25:23 +0000511 } else {
512 Diag(Tok, diag::err_objc_missing_end)
513 << FixItHint::CreateInsertion(Tok.getLocation(), "\n@end\n");
514 Diag(CDecl->getLocStart(), diag::note_objc_container_start)
515 << (int) Actions.getObjCContainerKind();
516 AtEnd.setBegin(Tok.getLocation());
517 AtEnd.setEnd(Tok.getLocation());
518 }
Mike Stump1eb44332009-09-09 15:08:12 +0000519
Chris Lattnera2449b22008-10-20 05:57:40 +0000520 // Insert collected methods declarations into the @interface object.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000521 // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000522 Actions.ActOnAtEnd(getCurScope(), AtEnd,
Mike Stump1eb44332009-09-09 15:08:12 +0000523 allMethods.data(), allMethods.size(),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000524 allProperties.data(), allProperties.size(),
525 allTUVariables.data(), allTUVariables.size());
Steve Naroff294494e2007-08-22 16:35:03 +0000526}
527
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000528/// Parse property attribute declarations.
529///
530/// property-attr-decl: '(' property-attrlist ')'
531/// property-attrlist:
532/// property-attribute
533/// property-attrlist ',' property-attribute
534/// property-attribute:
535/// getter '=' identifier
536/// setter '=' identifier ':'
537/// readonly
538/// readwrite
539/// assign
540/// retain
541/// copy
542/// nonatomic
John McCallf85e1932011-06-15 23:02:42 +0000543/// atomic
544/// strong
545/// weak
546/// unsafe_unretained
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000547///
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000548void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000549 assert(Tok.getKind() == tok::l_paren);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000550 BalancedDelimiterTracker T(*this, tok::l_paren);
551 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000553 while (1) {
Steve Naroffece8e712009-10-08 21:55:05 +0000554 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000555 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000556 return cutOffParsing();
Steve Naroffece8e712009-10-08 21:55:05 +0000557 }
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000558 const IdentifierInfo *II = Tok.getIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000560 // If this is not an identifier at all, bail out early.
561 if (II == 0) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000562 T.consumeClose();
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000563 return;
564 }
Mike Stump1eb44332009-09-09 15:08:12 +0000565
Chris Lattner156b0612008-10-20 07:37:22 +0000566 SourceLocation AttrName = ConsumeToken(); // consume last attribute name
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Chris Lattner92e62b02008-11-20 04:42:34 +0000568 if (II->isStr("readonly"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000569 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
Chris Lattner92e62b02008-11-20 04:42:34 +0000570 else if (II->isStr("assign"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000571 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
John McCallf85e1932011-06-15 23:02:42 +0000572 else if (II->isStr("unsafe_unretained"))
573 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained);
Chris Lattner92e62b02008-11-20 04:42:34 +0000574 else if (II->isStr("readwrite"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000575 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
Chris Lattner92e62b02008-11-20 04:42:34 +0000576 else if (II->isStr("retain"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000577 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
John McCallf85e1932011-06-15 23:02:42 +0000578 else if (II->isStr("strong"))
579 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_strong);
Chris Lattner92e62b02008-11-20 04:42:34 +0000580 else if (II->isStr("copy"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000581 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_copy);
Chris Lattner92e62b02008-11-20 04:42:34 +0000582 else if (II->isStr("nonatomic"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000583 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nonatomic);
Fariborz Jahanian45937ae2011-06-11 00:45:12 +0000584 else if (II->isStr("atomic"))
585 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_atomic);
John McCallf85e1932011-06-15 23:02:42 +0000586 else if (II->isStr("weak"))
587 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_weak);
Chris Lattner92e62b02008-11-20 04:42:34 +0000588 else if (II->isStr("getter") || II->isStr("setter")) {
Anders Carlsson42499be2010-10-02 17:45:21 +0000589 bool IsSetter = II->getNameStart()[0] == 's';
590
Chris Lattnere00da7c2008-10-20 07:39:53 +0000591 // getter/setter require extra treatment.
Anders Carlsson42499be2010-10-02 17:45:21 +0000592 unsigned DiagID = IsSetter ? diag::err_objc_expected_equal_for_setter :
593 diag::err_objc_expected_equal_for_getter;
594
595 if (ExpectAndConsume(tok::equal, DiagID, "", tok::r_paren))
Chris Lattnerdd5b5f22008-10-20 07:00:43 +0000596 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Douglas Gregor4ad96852009-11-19 07:41:15 +0000598 if (Tok.is(tok::code_completion)) {
Anders Carlsson42499be2010-10-02 17:45:21 +0000599 if (IsSetter)
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000600 Actions.CodeCompleteObjCPropertySetter(getCurScope());
Douglas Gregor4ad96852009-11-19 07:41:15 +0000601 else
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000602 Actions.CodeCompleteObjCPropertyGetter(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000603 return cutOffParsing();
Douglas Gregor4ad96852009-11-19 07:41:15 +0000604 }
605
Anders Carlsson42499be2010-10-02 17:45:21 +0000606
607 SourceLocation SelLoc;
608 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(SelLoc);
609
610 if (!SelIdent) {
611 Diag(Tok, diag::err_objc_expected_selector_for_getter_setter)
612 << IsSetter;
Chris Lattner8ca329c2008-10-20 07:24:39 +0000613 SkipUntil(tok::r_paren);
614 return;
615 }
Mike Stump1eb44332009-09-09 15:08:12 +0000616
Anders Carlsson42499be2010-10-02 17:45:21 +0000617 if (IsSetter) {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000618 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_setter);
Anders Carlsson42499be2010-10-02 17:45:21 +0000619 DS.setSetterName(SelIdent);
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Fariborz Jahaniane0097db2010-02-15 22:20:11 +0000621 if (ExpectAndConsume(tok::colon,
622 diag::err_expected_colon_after_setter_name, "",
Chris Lattner156b0612008-10-20 07:37:22 +0000623 tok::r_paren))
Chris Lattner8ca329c2008-10-20 07:24:39 +0000624 return;
Chris Lattner8ca329c2008-10-20 07:24:39 +0000625 } else {
626 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_getter);
Anders Carlsson42499be2010-10-02 17:45:21 +0000627 DS.setGetterName(SelIdent);
Chris Lattner8ca329c2008-10-20 07:24:39 +0000628 }
Chris Lattnere00da7c2008-10-20 07:39:53 +0000629 } else {
Chris Lattnera9500f02008-11-19 07:49:38 +0000630 Diag(AttrName, diag::err_objc_expected_property_attr) << II;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000631 SkipUntil(tok::r_paren);
632 return;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000633 }
Mike Stump1eb44332009-09-09 15:08:12 +0000634
Chris Lattner156b0612008-10-20 07:37:22 +0000635 if (Tok.isNot(tok::comma))
636 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000637
Chris Lattner156b0612008-10-20 07:37:22 +0000638 ConsumeToken();
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000639 }
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000641 T.consumeClose();
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000642}
643
Steve Naroff3536b442007-09-06 21:24:23 +0000644/// objc-method-proto:
Mike Stump1eb44332009-09-09 15:08:12 +0000645/// objc-instance-method objc-method-decl objc-method-attributes[opt]
Steve Naroff3536b442007-09-06 21:24:23 +0000646/// objc-class-method objc-method-decl objc-method-attributes[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000647///
648/// objc-instance-method: '-'
649/// objc-class-method: '+'
650///
Steve Naroff4985ace2007-08-22 18:35:33 +0000651/// objc-method-attributes: [OBJC2]
652/// __attribute__((deprecated))
653///
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000654Decl *Parser::ParseObjCMethodPrototype(tok::ObjCKeywordKind MethodImplKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000655 bool MethodDefinition) {
Chris Lattnerdf195262007-10-09 17:51:17 +0000656 assert((Tok.is(tok::minus) || Tok.is(tok::plus)) && "expected +/-");
Steve Naroff294494e2007-08-22 16:35:03 +0000657
Mike Stump1eb44332009-09-09 15:08:12 +0000658 tok::TokenKind methodType = Tok.getKind();
Steve Naroffbef11852007-10-26 20:53:56 +0000659 SourceLocation mLoc = ConsumeToken();
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000660 Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000661 MethodDefinition);
Steve Naroff3536b442007-09-06 21:24:23 +0000662 // Since this rule is used for both method declarations and definitions,
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000663 // the caller is (optionally) responsible for consuming the ';'.
Steve Narofff28b2642007-09-05 23:30:30 +0000664 return MDecl;
Steve Naroff294494e2007-08-22 16:35:03 +0000665}
666
667/// objc-selector:
668/// identifier
669/// one of
670/// enum struct union if else while do for switch case default
671/// break continue return goto asm sizeof typeof __alignof
672/// unsigned long const short volatile signed restrict _Complex
673/// in out inout bycopy byref oneway int char float double void _Bool
674///
Chris Lattner2fc5c242009-04-11 18:13:45 +0000675IdentifierInfo *Parser::ParseObjCSelectorPiece(SourceLocation &SelectorLoc) {
Fariborz Jahanianbe747402010-09-03 01:26:16 +0000676
Chris Lattnerff384912007-10-07 02:00:24 +0000677 switch (Tok.getKind()) {
678 default:
679 return 0;
Fariborz Jahanianafbc6812010-09-03 17:33:04 +0000680 case tok::ampamp:
681 case tok::ampequal:
682 case tok::amp:
683 case tok::pipe:
684 case tok::tilde:
685 case tok::exclaim:
686 case tok::exclaimequal:
687 case tok::pipepipe:
688 case tok::pipeequal:
689 case tok::caret:
690 case tok::caretequal: {
Fariborz Jahanian3846ca22010-09-03 18:01:09 +0000691 std::string ThisTok(PP.getSpelling(Tok));
Fariborz Jahanianafbc6812010-09-03 17:33:04 +0000692 if (isalpha(ThisTok[0])) {
693 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok.data());
694 Tok.setKind(tok::identifier);
695 SelectorLoc = ConsumeToken();
696 return II;
697 }
698 return 0;
699 }
700
Chris Lattnerff384912007-10-07 02:00:24 +0000701 case tok::identifier:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000702 case tok::kw_asm:
Chris Lattnerff384912007-10-07 02:00:24 +0000703 case tok::kw_auto:
Chris Lattner9298d962007-11-15 05:25:19 +0000704 case tok::kw_bool:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000705 case tok::kw_break:
706 case tok::kw_case:
707 case tok::kw_catch:
708 case tok::kw_char:
709 case tok::kw_class:
710 case tok::kw_const:
711 case tok::kw_const_cast:
712 case tok::kw_continue:
713 case tok::kw_default:
714 case tok::kw_delete:
715 case tok::kw_do:
716 case tok::kw_double:
717 case tok::kw_dynamic_cast:
718 case tok::kw_else:
719 case tok::kw_enum:
720 case tok::kw_explicit:
721 case tok::kw_export:
722 case tok::kw_extern:
723 case tok::kw_false:
724 case tok::kw_float:
725 case tok::kw_for:
726 case tok::kw_friend:
727 case tok::kw_goto:
728 case tok::kw_if:
729 case tok::kw_inline:
730 case tok::kw_int:
731 case tok::kw_long:
732 case tok::kw_mutable:
733 case tok::kw_namespace:
734 case tok::kw_new:
735 case tok::kw_operator:
736 case tok::kw_private:
737 case tok::kw_protected:
738 case tok::kw_public:
739 case tok::kw_register:
740 case tok::kw_reinterpret_cast:
741 case tok::kw_restrict:
742 case tok::kw_return:
743 case tok::kw_short:
744 case tok::kw_signed:
745 case tok::kw_sizeof:
746 case tok::kw_static:
747 case tok::kw_static_cast:
748 case tok::kw_struct:
749 case tok::kw_switch:
750 case tok::kw_template:
751 case tok::kw_this:
752 case tok::kw_throw:
753 case tok::kw_true:
754 case tok::kw_try:
755 case tok::kw_typedef:
756 case tok::kw_typeid:
757 case tok::kw_typename:
758 case tok::kw_typeof:
759 case tok::kw_union:
760 case tok::kw_unsigned:
761 case tok::kw_using:
762 case tok::kw_virtual:
763 case tok::kw_void:
764 case tok::kw_volatile:
765 case tok::kw_wchar_t:
766 case tok::kw_while:
Chris Lattnerff384912007-10-07 02:00:24 +0000767 case tok::kw__Bool:
768 case tok::kw__Complex:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000769 case tok::kw___alignof:
Chris Lattnerff384912007-10-07 02:00:24 +0000770 IdentifierInfo *II = Tok.getIdentifierInfo();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000771 SelectorLoc = ConsumeToken();
Chris Lattnerff384912007-10-07 02:00:24 +0000772 return II;
Fariborz Jahaniand0649512007-09-27 19:52:15 +0000773 }
Steve Naroff294494e2007-08-22 16:35:03 +0000774}
775
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000776/// objc-for-collection-in: 'in'
777///
Fariborz Jahanian335a2d42008-01-04 23:04:08 +0000778bool Parser::isTokIdentifier_in() const {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000779 // FIXME: May have to do additional look-ahead to only allow for
780 // valid tokens following an 'in'; such as an identifier, unary operators,
781 // '[' etc.
David Blaikie4e4d0842012-03-11 07:00:24 +0000782 return (getLangOpts().ObjC2 && Tok.is(tok::identifier) &&
Chris Lattner5ffb14b2008-08-23 02:02:23 +0000783 Tok.getIdentifierInfo() == ObjCTypeQuals[objc_in]);
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000784}
785
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000786/// ParseObjCTypeQualifierList - This routine parses the objective-c's type
Chris Lattnere8b724d2007-12-12 06:56:32 +0000787/// qualifier list and builds their bitmask representation in the input
788/// argument.
Steve Naroff294494e2007-08-22 16:35:03 +0000789///
790/// objc-type-qualifiers:
791/// objc-type-qualifier
792/// objc-type-qualifiers objc-type-qualifier
793///
Douglas Gregorb77cab92011-03-08 19:17:54 +0000794void Parser::ParseObjCTypeQualifierList(ObjCDeclSpec &DS,
John McCallcdda47f2011-10-01 09:56:14 +0000795 Declarator::TheContext Context) {
796 assert(Context == Declarator::ObjCParameterContext ||
797 Context == Declarator::ObjCResultContext);
798
Chris Lattnere8b724d2007-12-12 06:56:32 +0000799 while (1) {
Douglas Gregord32b0222010-08-24 01:06:58 +0000800 if (Tok.is(tok::code_completion)) {
Douglas Gregorb77cab92011-03-08 19:17:54 +0000801 Actions.CodeCompleteObjCPassingType(getCurScope(), DS,
John McCallcdda47f2011-10-01 09:56:14 +0000802 Context == Declarator::ObjCParameterContext);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000803 return cutOffParsing();
Douglas Gregord32b0222010-08-24 01:06:58 +0000804 }
805
Chris Lattnercb53b362007-12-27 19:57:00 +0000806 if (Tok.isNot(tok::identifier))
Chris Lattnere8b724d2007-12-12 06:56:32 +0000807 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000808
Chris Lattnere8b724d2007-12-12 06:56:32 +0000809 const IdentifierInfo *II = Tok.getIdentifierInfo();
810 for (unsigned i = 0; i != objc_NumQuals; ++i) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000811 if (II != ObjCTypeQuals[i])
Chris Lattnere8b724d2007-12-12 06:56:32 +0000812 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000813
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000814 ObjCDeclSpec::ObjCDeclQualifier Qual;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000815 switch (i) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000816 default: llvm_unreachable("Unknown decl qualifier");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000817 case objc_in: Qual = ObjCDeclSpec::DQ_In; break;
818 case objc_out: Qual = ObjCDeclSpec::DQ_Out; break;
819 case objc_inout: Qual = ObjCDeclSpec::DQ_Inout; break;
820 case objc_oneway: Qual = ObjCDeclSpec::DQ_Oneway; break;
821 case objc_bycopy: Qual = ObjCDeclSpec::DQ_Bycopy; break;
822 case objc_byref: Qual = ObjCDeclSpec::DQ_Byref; break;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000823 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000824 DS.setObjCDeclQualifier(Qual);
Chris Lattnere8b724d2007-12-12 06:56:32 +0000825 ConsumeToken();
826 II = 0;
827 break;
828 }
Mike Stump1eb44332009-09-09 15:08:12 +0000829
Chris Lattnere8b724d2007-12-12 06:56:32 +0000830 // If this wasn't a recognized qualifier, bail out.
831 if (II) return;
832 }
833}
834
John McCallcdda47f2011-10-01 09:56:14 +0000835/// Take all the decl attributes out of the given list and add
836/// them to the given attribute set.
837static void takeDeclAttributes(ParsedAttributes &attrs,
838 AttributeList *list) {
839 while (list) {
840 AttributeList *cur = list;
841 list = cur->getNext();
842
843 if (!cur->isUsedAsTypeAttr()) {
844 // Clear out the next pointer. We're really completely
845 // destroying the internal invariants of the declarator here,
846 // but it doesn't matter because we're done with it.
847 cur->setNext(0);
848 attrs.add(cur);
849 }
850 }
851}
852
853/// takeDeclAttributes - Take all the decl attributes from the given
854/// declarator and add them to the given list.
855static void takeDeclAttributes(ParsedAttributes &attrs,
856 Declarator &D) {
857 // First, take ownership of all attributes.
858 attrs.getPool().takeAllFrom(D.getAttributePool());
859 attrs.getPool().takeAllFrom(D.getDeclSpec().getAttributePool());
860
861 // Now actually move the attributes over.
862 takeDeclAttributes(attrs, D.getDeclSpec().getAttributes().getList());
863 takeDeclAttributes(attrs, D.getAttributes());
864 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
865 takeDeclAttributes(attrs,
866 const_cast<AttributeList*>(D.getTypeObject(i).getAttrs()));
867}
868
Chris Lattnere8b724d2007-12-12 06:56:32 +0000869/// objc-type-name:
870/// '(' objc-type-qualifiers[opt] type-name ')'
871/// '(' objc-type-qualifiers[opt] ')'
872///
Douglas Gregorb77cab92011-03-08 19:17:54 +0000873ParsedType Parser::ParseObjCTypeName(ObjCDeclSpec &DS,
John McCallcdda47f2011-10-01 09:56:14 +0000874 Declarator::TheContext context,
875 ParsedAttributes *paramAttrs) {
876 assert(context == Declarator::ObjCParameterContext ||
877 context == Declarator::ObjCResultContext);
878 assert((paramAttrs != 0) == (context == Declarator::ObjCParameterContext));
879
Chris Lattnerdf195262007-10-09 17:51:17 +0000880 assert(Tok.is(tok::l_paren) && "expected (");
Mike Stump1eb44332009-09-09 15:08:12 +0000881
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000882 BalancedDelimiterTracker T(*this, tok::l_paren);
883 T.consumeOpen();
884
Chris Lattnere8904e92008-08-23 01:48:03 +0000885 SourceLocation TypeStartLoc = Tok.getLocation();
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000886 ObjCDeclContextSwitch ObjCDC(*this);
887
Fariborz Jahanian19d74e12007-10-31 21:59:43 +0000888 // Parse type qualifiers, in, inout, etc.
John McCallcdda47f2011-10-01 09:56:14 +0000889 ParseObjCTypeQualifierList(DS, context);
Steve Naroff4fa7afd2007-08-22 23:18:22 +0000890
John McCallb3d87482010-08-24 05:47:05 +0000891 ParsedType Ty;
Douglas Gregor809070a2009-02-18 17:45:20 +0000892 if (isTypeSpecifierQualifier()) {
John McCallcdda47f2011-10-01 09:56:14 +0000893 // Parse an abstract declarator.
894 DeclSpec declSpec(AttrFactory);
895 declSpec.setObjCQualifiers(&DS);
896 ParseSpecifierQualifierList(declSpec);
897 Declarator declarator(declSpec, context);
898 ParseDeclarator(declarator);
899
900 // If that's not invalid, extract a type.
901 if (!declarator.isInvalidType()) {
902 TypeResult type = Actions.ActOnTypeName(getCurScope(), declarator);
903 if (!type.isInvalid())
904 Ty = type.get();
905
906 // If we're parsing a parameter, steal all the decl attributes
907 // and add them to the decl spec.
908 if (context == Declarator::ObjCParameterContext)
909 takeDeclAttributes(*paramAttrs, declarator);
910 }
911 } else if (context == Declarator::ObjCResultContext &&
912 Tok.is(tok::identifier)) {
Douglas Gregore97179c2011-09-08 01:46:34 +0000913 if (!Ident_instancetype)
914 Ident_instancetype = PP.getIdentifierInfo("instancetype");
915
916 if (Tok.getIdentifierInfo() == Ident_instancetype) {
917 Ty = Actions.ActOnObjCInstanceType(Tok.getLocation());
918 ConsumeToken();
919 }
Douglas Gregor809070a2009-02-18 17:45:20 +0000920 }
Douglas Gregore97179c2011-09-08 01:46:34 +0000921
Steve Naroffd7333c22008-10-21 14:15:04 +0000922 if (Tok.is(tok::r_paren))
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000923 T.consumeClose();
Chris Lattner4a76b292008-10-22 03:52:06 +0000924 else if (Tok.getLocation() == TypeStartLoc) {
925 // If we didn't eat any tokens, then this isn't a type.
Chris Lattner1ab3b962008-11-18 07:48:38 +0000926 Diag(Tok, diag::err_expected_type);
Chris Lattner4a76b292008-10-22 03:52:06 +0000927 SkipUntil(tok::r_paren);
928 } else {
929 // Otherwise, we found *something*, but didn't get a ')' in the right
930 // place. Emit an error then return what we have as the type.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000931 T.consumeClose();
Chris Lattner4a76b292008-10-22 03:52:06 +0000932 }
Steve Narofff28b2642007-09-05 23:30:30 +0000933 return Ty;
Steve Naroff294494e2007-08-22 16:35:03 +0000934}
935
936/// objc-method-decl:
937/// objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000938/// objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000939/// objc-type-name objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000940/// objc-type-name objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000941///
942/// objc-keyword-selector:
Mike Stump1eb44332009-09-09 15:08:12 +0000943/// objc-keyword-decl
Steve Naroff294494e2007-08-22 16:35:03 +0000944/// objc-keyword-selector objc-keyword-decl
945///
946/// objc-keyword-decl:
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000947/// objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier
948/// objc-selector ':' objc-keyword-attributes[opt] identifier
949/// ':' objc-type-name objc-keyword-attributes[opt] identifier
950/// ':' objc-keyword-attributes[opt] identifier
Steve Naroff294494e2007-08-22 16:35:03 +0000951///
Steve Naroff4985ace2007-08-22 18:35:33 +0000952/// objc-parmlist:
953/// objc-parms objc-ellipsis[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000954///
Steve Naroff4985ace2007-08-22 18:35:33 +0000955/// objc-parms:
956/// objc-parms , parameter-declaration
Steve Naroff294494e2007-08-22 16:35:03 +0000957///
Steve Naroff4985ace2007-08-22 18:35:33 +0000958/// objc-ellipsis:
Steve Naroff294494e2007-08-22 16:35:03 +0000959/// , ...
960///
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000961/// objc-keyword-attributes: [OBJC2]
962/// __attribute__((unused))
963///
John McCalld226f652010-08-21 09:40:31 +0000964Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000965 tok::TokenKind mType,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000966 tok::ObjCKeywordKind MethodImplKind,
967 bool MethodDefinition) {
John McCall92576642012-05-07 06:16:41 +0000968 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
John McCall54abf7d2009-11-04 02:18:39 +0000969
Douglas Gregore8f5a172010-04-07 00:21:17 +0000970 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000971 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000972 /*ReturnType=*/ ParsedType());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000973 cutOffParsing();
974 return 0;
Douglas Gregore8f5a172010-04-07 00:21:17 +0000975 }
976
Chris Lattnere8904e92008-08-23 01:48:03 +0000977 // Parse the return type if present.
John McCallb3d87482010-08-24 05:47:05 +0000978 ParsedType ReturnType;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000979 ObjCDeclSpec DSRet;
Chris Lattnerdf195262007-10-09 17:51:17 +0000980 if (Tok.is(tok::l_paren))
John McCallcdda47f2011-10-01 09:56:14 +0000981 ReturnType = ParseObjCTypeName(DSRet, Declarator::ObjCResultContext, 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000982
Ted Kremenek9e049352010-02-18 23:05:16 +0000983 // If attributes exist before the method, parse them.
John McCall0b7e6782011-03-24 11:26:52 +0000984 ParsedAttributes methodAttrs(AttrFactory);
David Blaikie4e4d0842012-03-11 07:00:24 +0000985 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +0000986 MaybeParseGNUAttributes(methodAttrs);
Ted Kremenek9e049352010-02-18 23:05:16 +0000987
Douglas Gregore8f5a172010-04-07 00:21:17 +0000988 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000989 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000990 ReturnType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000991 cutOffParsing();
992 return 0;
Douglas Gregore8f5a172010-04-07 00:21:17 +0000993 }
994
Ted Kremenek9e049352010-02-18 23:05:16 +0000995 // Now parse the selector.
Steve Naroffbef11852007-10-26 20:53:56 +0000996 SourceLocation selLoc;
Chris Lattner2fc5c242009-04-11 18:13:45 +0000997 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc);
Chris Lattnere8904e92008-08-23 01:48:03 +0000998
Steve Naroff84c43102009-02-11 20:43:13 +0000999 // An unnamed colon is valid.
1000 if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
Chris Lattner1ab3b962008-11-18 07:48:38 +00001001 Diag(Tok, diag::err_expected_selector_for_method)
1002 << SourceRange(mLoc, Tok.getLocation());
Chris Lattnere8904e92008-08-23 01:48:03 +00001003 // Skip until we get a ; or {}.
1004 SkipUntil(tok::r_brace);
John McCalld226f652010-08-21 09:40:31 +00001005 return 0;
Chris Lattnere8904e92008-08-23 01:48:03 +00001006 }
Mike Stump1eb44332009-09-09 15:08:12 +00001007
Chris Lattner5f9e2722011-07-23 10:55:15 +00001008 SmallVector<DeclaratorChunk::ParamInfo, 8> CParamInfo;
Chris Lattnerdf195262007-10-09 17:51:17 +00001009 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001010 // If attributes exist after the method, parse them.
David Blaikie4e4d0842012-03-11 07:00:24 +00001011 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +00001012 MaybeParseGNUAttributes(methodAttrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001013
Chris Lattnerff384912007-10-07 02:00:24 +00001014 Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent);
John McCalld226f652010-08-21 09:40:31 +00001015 Decl *Result
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001016 = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001017 mType, DSRet, ReturnType,
Douglas Gregor926df6c2011-06-11 01:09:30 +00001018 selLoc, Sel, 0,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001019 CParamInfo.data(), CParamInfo.size(),
John McCall0b7e6782011-03-24 11:26:52 +00001020 methodAttrs.getList(), MethodImplKind,
1021 false, MethodDefinition);
John McCall54abf7d2009-11-04 02:18:39 +00001022 PD.complete(Result);
1023 return Result;
Chris Lattnerff384912007-10-07 02:00:24 +00001024 }
Steve Narofff28b2642007-09-05 23:30:30 +00001025
Chris Lattner5f9e2722011-07-23 10:55:15 +00001026 SmallVector<IdentifierInfo *, 12> KeyIdents;
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001027 SmallVector<SourceLocation, 12> KeyLocs;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001028 SmallVector<Sema::ObjCArgInfo, 12> ArgInfos;
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001029 ParseScope PrototypeScope(this,
1030 Scope::FunctionPrototypeScope|Scope::DeclScope);
John McCall0b7e6782011-03-24 11:26:52 +00001031
1032 AttributePool allParamAttrs(AttrFactory);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001033
Chris Lattnerff384912007-10-07 02:00:24 +00001034 while (1) {
John McCall0b7e6782011-03-24 11:26:52 +00001035 ParsedAttributes paramAttrs(AttrFactory);
John McCallf312b1e2010-08-26 23:41:50 +00001036 Sema::ObjCArgInfo ArgInfo;
Mike Stump1eb44332009-09-09 15:08:12 +00001037
Chris Lattnerff384912007-10-07 02:00:24 +00001038 // Each iteration parses a single keyword argument.
Chris Lattnerdf195262007-10-09 17:51:17 +00001039 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001040 Diag(Tok, diag::err_expected_colon);
1041 break;
1042 }
1043 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00001044
John McCallb3d87482010-08-24 05:47:05 +00001045 ArgInfo.Type = ParsedType();
Chris Lattnere294d3f2009-04-11 18:57:04 +00001046 if (Tok.is(tok::l_paren)) // Parse the argument type if present.
John McCallcdda47f2011-10-01 09:56:14 +00001047 ArgInfo.Type = ParseObjCTypeName(ArgInfo.DeclSpec,
1048 Declarator::ObjCParameterContext,
1049 &paramAttrs);
Chris Lattnere294d3f2009-04-11 18:57:04 +00001050
Chris Lattnerff384912007-10-07 02:00:24 +00001051 // If attributes exist before the argument name, parse them.
John McCallcdda47f2011-10-01 09:56:14 +00001052 // Regardless, collect all the attributes we've parsed so far.
Chris Lattnere294d3f2009-04-11 18:57:04 +00001053 ArgInfo.ArgAttrs = 0;
David Blaikie4e4d0842012-03-11 07:00:24 +00001054 if (getLangOpts().ObjC2) {
John McCall0b7e6782011-03-24 11:26:52 +00001055 MaybeParseGNUAttributes(paramAttrs);
1056 ArgInfo.ArgAttrs = paramAttrs.getList();
John McCall7f040a92010-12-24 02:08:15 +00001057 }
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001058
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001059 // Code completion for the next piece of the selector.
1060 if (Tok.is(tok::code_completion)) {
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001061 KeyIdents.push_back(SelIdent);
1062 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1063 mType == tok::minus,
1064 /*AtParameterName=*/true,
1065 ReturnType,
1066 KeyIdents.data(),
1067 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001068 cutOffParsing();
1069 return 0;
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001070 }
1071
Chris Lattnerdf195262007-10-09 17:51:17 +00001072 if (Tok.isNot(tok::identifier)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001073 Diag(Tok, diag::err_expected_ident); // missing argument name.
1074 break;
Steve Naroff4985ace2007-08-22 18:35:33 +00001075 }
Mike Stump1eb44332009-09-09 15:08:12 +00001076
Chris Lattnere294d3f2009-04-11 18:57:04 +00001077 ArgInfo.Name = Tok.getIdentifierInfo();
1078 ArgInfo.NameLoc = Tok.getLocation();
Chris Lattnerff384912007-10-07 02:00:24 +00001079 ConsumeToken(); // Eat the identifier.
Mike Stump1eb44332009-09-09 15:08:12 +00001080
Chris Lattnere294d3f2009-04-11 18:57:04 +00001081 ArgInfos.push_back(ArgInfo);
1082 KeyIdents.push_back(SelIdent);
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001083 KeyLocs.push_back(selLoc);
Chris Lattnere294d3f2009-04-11 18:57:04 +00001084
John McCall0b7e6782011-03-24 11:26:52 +00001085 // Make sure the attributes persist.
1086 allParamAttrs.takeAllFrom(paramAttrs.getPool());
1087
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001088 // Code completion for the next piece of the selector.
1089 if (Tok.is(tok::code_completion)) {
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001090 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1091 mType == tok::minus,
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001092 /*AtParameterName=*/false,
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001093 ReturnType,
1094 KeyIdents.data(),
1095 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001096 cutOffParsing();
1097 return 0;
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001098 }
1099
Chris Lattnerff384912007-10-07 02:00:24 +00001100 // Check for another keyword selector.
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001101 SelIdent = ParseObjCSelectorPiece(selLoc);
Chris Lattnerdf195262007-10-09 17:51:17 +00001102 if (!SelIdent && Tok.isNot(tok::colon))
Chris Lattnerff384912007-10-07 02:00:24 +00001103 break;
1104 // We have a selector or a colon, continue parsing.
Steve Naroff4985ace2007-08-22 18:35:33 +00001105 }
Mike Stump1eb44332009-09-09 15:08:12 +00001106
Steve Naroff335eafa2007-11-15 12:35:21 +00001107 bool isVariadic = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001108
Chris Lattnerff384912007-10-07 02:00:24 +00001109 // Parse the (optional) parameter list.
Chris Lattnerdf195262007-10-09 17:51:17 +00001110 while (Tok.is(tok::comma)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001111 ConsumeToken();
Chris Lattnerdf195262007-10-09 17:51:17 +00001112 if (Tok.is(tok::ellipsis)) {
Steve Naroff335eafa2007-11-15 12:35:21 +00001113 isVariadic = true;
Chris Lattnerff384912007-10-07 02:00:24 +00001114 ConsumeToken();
1115 break;
1116 }
John McCall0b7e6782011-03-24 11:26:52 +00001117 DeclSpec DS(AttrFactory);
Chris Lattnerff384912007-10-07 02:00:24 +00001118 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00001119 // Parse the declarator.
Chris Lattnerff384912007-10-07 02:00:24 +00001120 Declarator ParmDecl(DS, Declarator::PrototypeContext);
1121 ParseDeclarator(ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001122 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
John McCalld226f652010-08-21 09:40:31 +00001123 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001124 CParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
1125 ParmDecl.getIdentifierLoc(),
1126 Param,
1127 0));
1128
Chris Lattnerff384912007-10-07 02:00:24 +00001129 }
Mike Stump1eb44332009-09-09 15:08:12 +00001130
Cameron Esfahani9c4bb2c2010-10-12 00:21:25 +00001131 // FIXME: Add support for optional parameter list...
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001132 // If attributes exist after the method, parse them.
David Blaikie4e4d0842012-03-11 07:00:24 +00001133 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +00001134 MaybeParseGNUAttributes(methodAttrs);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001135
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001136 if (KeyIdents.size() == 0)
John McCalld226f652010-08-21 09:40:31 +00001137 return 0;
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001138
Chris Lattnerff384912007-10-07 02:00:24 +00001139 Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(),
1140 &KeyIdents[0]);
John McCalld226f652010-08-21 09:40:31 +00001141 Decl *Result
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001142 = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001143 mType, DSRet, ReturnType,
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001144 KeyLocs, Sel, &ArgInfos[0],
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001145 CParamInfo.data(), CParamInfo.size(),
John McCall0b7e6782011-03-24 11:26:52 +00001146 methodAttrs.getList(),
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00001147 MethodImplKind, isVariadic, MethodDefinition);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001148
John McCall54abf7d2009-11-04 02:18:39 +00001149 PD.complete(Result);
1150 return Result;
Steve Naroff294494e2007-08-22 16:35:03 +00001151}
1152
Steve Naroffdac269b2007-08-20 21:31:48 +00001153/// objc-protocol-refs:
1154/// '<' identifier-list '>'
1155///
Chris Lattner7caeabd2008-07-21 22:17:28 +00001156bool Parser::
Chris Lattner5f9e2722011-07-23 10:55:15 +00001157ParseObjCProtocolReferences(SmallVectorImpl<Decl *> &Protocols,
1158 SmallVectorImpl<SourceLocation> &ProtocolLocs,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001159 bool WarnOnDeclarations,
1160 SourceLocation &LAngleLoc, SourceLocation &EndLoc) {
Chris Lattnere13b9592008-07-26 04:03:38 +00001161 assert(Tok.is(tok::less) && "expected <");
Mike Stump1eb44332009-09-09 15:08:12 +00001162
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001163 LAngleLoc = ConsumeToken(); // the "<"
Mike Stump1eb44332009-09-09 15:08:12 +00001164
Chris Lattner5f9e2722011-07-23 10:55:15 +00001165 SmallVector<IdentifierLocPair, 8> ProtocolIdents;
Mike Stump1eb44332009-09-09 15:08:12 +00001166
Chris Lattnere13b9592008-07-26 04:03:38 +00001167 while (1) {
Douglas Gregor55385fe2009-11-18 04:19:12 +00001168 if (Tok.is(tok::code_completion)) {
1169 Actions.CodeCompleteObjCProtocolReferences(ProtocolIdents.data(),
1170 ProtocolIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001171 cutOffParsing();
1172 return true;
Douglas Gregor55385fe2009-11-18 04:19:12 +00001173 }
1174
Chris Lattnere13b9592008-07-26 04:03:38 +00001175 if (Tok.isNot(tok::identifier)) {
1176 Diag(Tok, diag::err_expected_ident);
1177 SkipUntil(tok::greater);
1178 return true;
1179 }
1180 ProtocolIdents.push_back(std::make_pair(Tok.getIdentifierInfo(),
1181 Tok.getLocation()));
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001182 ProtocolLocs.push_back(Tok.getLocation());
Chris Lattnere13b9592008-07-26 04:03:38 +00001183 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001184
Chris Lattnere13b9592008-07-26 04:03:38 +00001185 if (Tok.isNot(tok::comma))
1186 break;
1187 ConsumeToken();
1188 }
Mike Stump1eb44332009-09-09 15:08:12 +00001189
Chris Lattnere13b9592008-07-26 04:03:38 +00001190 // Consume the '>'.
1191 if (Tok.isNot(tok::greater)) {
1192 Diag(Tok, diag::err_expected_greater);
1193 return true;
1194 }
Mike Stump1eb44332009-09-09 15:08:12 +00001195
Douglas Gregord78ef5b2012-03-08 01:00:17 +00001196 EndLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001197
Chris Lattnere13b9592008-07-26 04:03:38 +00001198 // Convert the list of protocols identifiers into a list of protocol decls.
1199 Actions.FindProtocolDeclaration(WarnOnDeclarations,
1200 &ProtocolIdents[0], ProtocolIdents.size(),
1201 Protocols);
1202 return false;
1203}
1204
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001205/// \brief Parse the Objective-C protocol qualifiers that follow a typename
1206/// in a decl-specifier-seq, starting at the '<'.
Douglas Gregor46f936e2010-11-19 17:10:50 +00001207bool Parser::ParseObjCProtocolQualifiers(DeclSpec &DS) {
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001208 assert(Tok.is(tok::less) && "Protocol qualifiers start with '<'");
David Blaikie4e4d0842012-03-11 07:00:24 +00001209 assert(getLangOpts().ObjC1 && "Protocol qualifiers only exist in Objective-C");
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001210 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001211 SmallVector<Decl *, 8> ProtocolDecl;
1212 SmallVector<SourceLocation, 8> ProtocolLocs;
Douglas Gregor46f936e2010-11-19 17:10:50 +00001213 bool Result = ParseObjCProtocolReferences(ProtocolDecl, ProtocolLocs, false,
1214 LAngleLoc, EndProtoLoc);
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001215 DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size(),
1216 ProtocolLocs.data(), LAngleLoc);
1217 if (EndProtoLoc.isValid())
1218 DS.SetRangeEnd(EndProtoLoc);
Douglas Gregor46f936e2010-11-19 17:10:50 +00001219 return Result;
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001220}
1221
1222
Steve Naroffdac269b2007-08-20 21:31:48 +00001223/// objc-class-instance-variables:
1224/// '{' objc-instance-variable-decl-list[opt] '}'
1225///
1226/// objc-instance-variable-decl-list:
1227/// objc-visibility-spec
1228/// objc-instance-variable-decl ';'
1229/// ';'
1230/// objc-instance-variable-decl-list objc-visibility-spec
1231/// objc-instance-variable-decl-list objc-instance-variable-decl ';'
1232/// objc-instance-variable-decl-list ';'
1233///
1234/// objc-visibility-spec:
1235/// @private
1236/// @protected
1237/// @public
Steve Naroffddbff782007-08-21 21:17:12 +00001238/// @package [OBJC2]
Steve Naroffdac269b2007-08-20 21:31:48 +00001239///
1240/// objc-instance-variable-decl:
Mike Stump1eb44332009-09-09 15:08:12 +00001241/// struct-declaration
Steve Naroffdac269b2007-08-20 21:31:48 +00001242///
John McCalld226f652010-08-21 09:40:31 +00001243void Parser::ParseObjCClassInstanceVariables(Decl *interfaceDecl,
Fariborz Jahanian83c481a2010-02-22 23:04:20 +00001244 tok::ObjCKeywordKind visibility,
Steve Naroff60fccee2007-10-29 21:38:07 +00001245 SourceLocation atLoc) {
Chris Lattnerdf195262007-10-09 17:51:17 +00001246 assert(Tok.is(tok::l_brace) && "expected {");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001247 SmallVector<Decl *, 32> AllIvarDecls;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001248
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001249 ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001250 ObjCDeclContextSwitch ObjCDC(*this);
Douglas Gregor72de6672009-01-08 20:45:30 +00001251
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001252 BalancedDelimiterTracker T(*this, tok::l_brace);
1253 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00001254
Steve Naroffddbff782007-08-21 21:17:12 +00001255 // While we still have something to read, read the instance variables.
Chris Lattnerdf195262007-10-09 17:51:17 +00001256 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001257 // Each iteration of this loop reads one objc-instance-variable-decl.
Mike Stump1eb44332009-09-09 15:08:12 +00001258
Steve Naroffddbff782007-08-21 21:17:12 +00001259 // Check for extraneous top-level semicolon.
Chris Lattnerdf195262007-10-09 17:51:17 +00001260 if (Tok.is(tok::semi)) {
Douglas Gregorf13ca062010-06-16 23:08:59 +00001261 Diag(Tok, diag::ext_extra_ivar_semi)
Douglas Gregor849b2432010-03-31 17:46:05 +00001262 << FixItHint::CreateRemoval(Tok.getLocation());
Steve Naroffddbff782007-08-21 21:17:12 +00001263 ConsumeToken();
1264 continue;
1265 }
Mike Stump1eb44332009-09-09 15:08:12 +00001266
Steve Naroffddbff782007-08-21 21:17:12 +00001267 // Set the default visibility to private.
Chris Lattnerdf195262007-10-09 17:51:17 +00001268 if (Tok.is(tok::at)) { // parse objc-visibility-spec
Steve Naroffddbff782007-08-21 21:17:12 +00001269 ConsumeToken(); // eat the @ sign
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001270
1271 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001272 Actions.CodeCompleteObjCAtVisibility(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001273 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001274 }
1275
Steve Naroff861cf3e2007-08-23 18:16:40 +00001276 switch (Tok.getObjCKeywordID()) {
Steve Naroffddbff782007-08-21 21:17:12 +00001277 case tok::objc_private:
1278 case tok::objc_public:
1279 case tok::objc_protected:
1280 case tok::objc_package:
Steve Naroff861cf3e2007-08-23 18:16:40 +00001281 visibility = Tok.getObjCKeywordID();
Steve Naroffddbff782007-08-21 21:17:12 +00001282 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001283 continue;
Steve Naroffddbff782007-08-21 21:17:12 +00001284 default:
1285 Diag(Tok, diag::err_objc_illegal_visibility_spec);
Steve Naroffddbff782007-08-21 21:17:12 +00001286 continue;
1287 }
1288 }
Mike Stump1eb44332009-09-09 15:08:12 +00001289
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001290 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001291 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001292 Sema::PCC_ObjCInstanceVariableList);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001293 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001294 }
1295
John McCallbdd563e2009-11-03 02:38:08 +00001296 struct ObjCIvarCallback : FieldCallback {
1297 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00001298 Decl *IDecl;
John McCallbdd563e2009-11-03 02:38:08 +00001299 tok::ObjCKeywordKind visibility;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001300 SmallVectorImpl<Decl *> &AllIvarDecls;
John McCallbdd563e2009-11-03 02:38:08 +00001301
John McCalld226f652010-08-21 09:40:31 +00001302 ObjCIvarCallback(Parser &P, Decl *IDecl, tok::ObjCKeywordKind V,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001303 SmallVectorImpl<Decl *> &AllIvarDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00001304 P(P), IDecl(IDecl), visibility(V), AllIvarDecls(AllIvarDecls) {
1305 }
1306
John McCalld226f652010-08-21 09:40:31 +00001307 Decl *invoke(FieldDeclarator &FD) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001308 P.Actions.ActOnObjCContainerStartDefinition(IDecl);
John McCallbdd563e2009-11-03 02:38:08 +00001309 // Install the declarator into the interface decl.
John McCalld226f652010-08-21 09:40:31 +00001310 Decl *Field
Douglas Gregor23c94db2010-07-02 17:43:08 +00001311 = P.Actions.ActOnIvar(P.getCurScope(),
John McCallbdd563e2009-11-03 02:38:08 +00001312 FD.D.getDeclSpec().getSourceRange().getBegin(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001313 FD.D, FD.BitfieldSize, visibility);
Fariborz Jahanian10af8792011-08-29 17:33:12 +00001314 P.Actions.ActOnObjCContainerFinishDefinition();
Fariborz Jahanian0bd04592010-04-06 22:43:48 +00001315 if (Field)
1316 AllIvarDecls.push_back(Field);
John McCallbdd563e2009-11-03 02:38:08 +00001317 return Field;
1318 }
1319 } Callback(*this, interfaceDecl, visibility, AllIvarDecls);
Fariborz Jahaniand097be82010-08-23 22:46:52 +00001320
Chris Lattnere1359422008-04-10 06:46:29 +00001321 // Parse all the comma separated declarators.
John McCall0b7e6782011-03-24 11:26:52 +00001322 DeclSpec DS(AttrFactory);
John McCallbdd563e2009-11-03 02:38:08 +00001323 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +00001324
Chris Lattnerdf195262007-10-09 17:51:17 +00001325 if (Tok.is(tok::semi)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001326 ConsumeToken();
Steve Naroffddbff782007-08-21 21:17:12 +00001327 } else {
1328 Diag(Tok, diag::err_expected_semi_decl_list);
1329 // Skip to end of block or statement
1330 SkipUntil(tok::r_brace, true, true);
1331 }
1332 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001333 T.consumeClose();
1334
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001335 Actions.ActOnObjCContainerStartDefinition(interfaceDecl);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001336 Actions.ActOnLastBitfield(T.getCloseLocation(), AllIvarDecls);
Fariborz Jahanian10af8792011-08-29 17:33:12 +00001337 Actions.ActOnObjCContainerFinishDefinition();
Steve Naroff8749be52007-10-31 22:11:35 +00001338 // Call ActOnFields() even if we don't have any decls. This is useful
1339 // for code rewriting tools that need to be aware of the empty list.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001340 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl,
David Blaikie77b6de02011-09-22 02:58:26 +00001341 AllIvarDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001342 T.getOpenLocation(), T.getCloseLocation(), 0);
Steve Naroffddbff782007-08-21 21:17:12 +00001343 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001344}
Steve Naroffdac269b2007-08-20 21:31:48 +00001345
1346/// objc-protocol-declaration:
1347/// objc-protocol-definition
1348/// objc-protocol-forward-reference
1349///
1350/// objc-protocol-definition:
Mike Stump1eb44332009-09-09 15:08:12 +00001351/// @protocol identifier
1352/// objc-protocol-refs[opt]
1353/// objc-interface-decl-list
Steve Naroffdac269b2007-08-20 21:31:48 +00001354/// @end
1355///
1356/// objc-protocol-forward-reference:
1357/// @protocol identifier-list ';'
1358///
1359/// "@protocol identifier ;" should be resolved as "@protocol
Steve Naroff3536b442007-09-06 21:24:23 +00001360/// identifier-list ;": objc-interface-decl-list may not start with a
Steve Naroffdac269b2007-08-20 21:31:48 +00001361/// semicolon in the first alternative if objc-protocol-refs are omitted.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001362Parser::DeclGroupPtrTy
1363Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc,
1364 ParsedAttributes &attrs) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00001365 assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001366 "ParseObjCAtProtocolDeclaration(): Expected @protocol");
1367 ConsumeToken(); // the "protocol" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001368
Douglas Gregor083128f2009-11-18 04:49:41 +00001369 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001370 Actions.CodeCompleteObjCProtocolDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001371 cutOffParsing();
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001372 return DeclGroupPtrTy();
Douglas Gregor083128f2009-11-18 04:49:41 +00001373 }
1374
Chris Lattnerdf195262007-10-09 17:51:17 +00001375 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001376 Diag(Tok, diag::err_expected_ident); // missing protocol name.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001377 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001378 }
1379 // Save the protocol name, then consume it.
1380 IdentifierInfo *protocolName = Tok.getIdentifierInfo();
1381 SourceLocation nameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001382
Chris Lattnerdf195262007-10-09 17:51:17 +00001383 if (Tok.is(tok::semi)) { // forward declaration of one protocol.
Chris Lattner7caeabd2008-07-21 22:17:28 +00001384 IdentifierLocPair ProtoInfo(protocolName, nameLoc);
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001385 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001386 return Actions.ActOnForwardProtocolDeclaration(AtLoc, &ProtoInfo, 1,
John McCall7f040a92010-12-24 02:08:15 +00001387 attrs.getList());
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001388 }
Mike Stump1eb44332009-09-09 15:08:12 +00001389
Erik Verbruggen90ec96f2011-12-08 09:58:43 +00001390 CheckNestedObjCContexts(AtLoc);
1391
Chris Lattnerdf195262007-10-09 17:51:17 +00001392 if (Tok.is(tok::comma)) { // list of forward declarations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001393 SmallVector<IdentifierLocPair, 8> ProtocolRefs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001394 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc));
1395
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001396 // Parse the list of forward declarations.
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001397 while (1) {
1398 ConsumeToken(); // the ','
Chris Lattnerdf195262007-10-09 17:51:17 +00001399 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001400 Diag(Tok, diag::err_expected_ident);
1401 SkipUntil(tok::semi);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001402 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001403 }
Chris Lattner7caeabd2008-07-21 22:17:28 +00001404 ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(),
1405 Tok.getLocation()));
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001406 ConsumeToken(); // the identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001407
Chris Lattnerdf195262007-10-09 17:51:17 +00001408 if (Tok.isNot(tok::comma))
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001409 break;
1410 }
1411 // Consume the ';'.
1412 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001413 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001414
Steve Naroffe440eb82007-10-10 17:32:04 +00001415 return Actions.ActOnForwardProtocolDeclaration(AtLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001416 &ProtocolRefs[0],
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001417 ProtocolRefs.size(),
John McCall7f040a92010-12-24 02:08:15 +00001418 attrs.getList());
Chris Lattner7caeabd2008-07-21 22:17:28 +00001419 }
Mike Stump1eb44332009-09-09 15:08:12 +00001420
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001421 // Last, and definitely not least, parse a protocol declaration.
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001422 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001423
Chris Lattner5f9e2722011-07-23 10:55:15 +00001424 SmallVector<Decl *, 8> ProtocolRefs;
1425 SmallVector<SourceLocation, 8> ProtocolLocs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001426 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001427 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, false,
1428 LAngleLoc, EndProtoLoc))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001429 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001430
John McCalld226f652010-08-21 09:40:31 +00001431 Decl *ProtoType =
Chris Lattnere13b9592008-07-26 04:03:38 +00001432 Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001433 ProtocolRefs.data(),
1434 ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +00001435 ProtocolLocs.data(),
John McCall7f040a92010-12-24 02:08:15 +00001436 EndProtoLoc, attrs.getList());
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001437
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +00001438 ParseObjCInterfaceDeclList(tok::objc_protocol, ProtoType);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001439 return Actions.ConvertDeclToDeclGroup(ProtoType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001440}
Steve Naroffdac269b2007-08-20 21:31:48 +00001441
1442/// objc-implementation:
1443/// objc-class-implementation-prologue
1444/// objc-category-implementation-prologue
1445///
1446/// objc-class-implementation-prologue:
1447/// @implementation identifier objc-superclass[opt]
1448/// objc-class-instance-variables[opt]
1449///
1450/// objc-category-implementation-prologue:
1451/// @implementation identifier ( identifier )
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001452Parser::DeclGroupPtrTy
1453Parser::ParseObjCAtImplementationDeclaration(SourceLocation AtLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001454 assert(Tok.isObjCAtKeyword(tok::objc_implementation) &&
1455 "ParseObjCAtImplementationDeclaration(): Expected @implementation");
Erik Verbruggend64251f2011-12-06 09:25:23 +00001456 CheckNestedObjCContexts(AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001457 ConsumeToken(); // the "implementation" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001458
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001459 // Code completion after '@implementation'.
1460 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001461 Actions.CodeCompleteObjCImplementationDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001462 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001463 return DeclGroupPtrTy();
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001464 }
1465
Chris Lattnerdf195262007-10-09 17:51:17 +00001466 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001467 Diag(Tok, diag::err_expected_ident); // missing class or category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001468 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001469 }
1470 // We have a class or category name - consume it.
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001471 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001472 SourceLocation nameLoc = ConsumeToken(); // consume class or category name
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001473 Decl *ObjCImpDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001474
1475 if (Tok.is(tok::l_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001476 // we have a category implementation.
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001477 ConsumeParen();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001478 SourceLocation categoryLoc, rparenLoc;
1479 IdentifierInfo *categoryId = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001480
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001481 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001482 Actions.CodeCompleteObjCImplementationCategory(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001483 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001484 return DeclGroupPtrTy();
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001485 }
1486
Chris Lattnerdf195262007-10-09 17:51:17 +00001487 if (Tok.is(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001488 categoryId = Tok.getIdentifierInfo();
1489 categoryLoc = ConsumeToken();
1490 } else {
1491 Diag(Tok, diag::err_expected_ident); // missing category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001492 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001493 }
Chris Lattnerdf195262007-10-09 17:51:17 +00001494 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001495 Diag(Tok, diag::err_expected_rparen);
1496 SkipUntil(tok::r_paren, false); // don't stop at ';'
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001497 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001498 }
1499 rparenLoc = ConsumeParen();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001500 ObjCImpDecl = Actions.ActOnStartCategoryImplementation(
Erik Verbruggend64251f2011-12-06 09:25:23 +00001501 AtLoc, nameId, nameLoc, categoryId,
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001502 categoryLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001503
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001504 } else {
1505 // We have a class implementation
1506 SourceLocation superClassLoc;
1507 IdentifierInfo *superClassId = 0;
1508 if (Tok.is(tok::colon)) {
1509 // We have a super class
1510 ConsumeToken();
1511 if (Tok.isNot(tok::identifier)) {
1512 Diag(Tok, diag::err_expected_ident); // missing super class name.
1513 return DeclGroupPtrTy();
1514 }
1515 superClassId = Tok.getIdentifierInfo();
1516 superClassLoc = ConsumeToken(); // Consume super class name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001517 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001518 ObjCImpDecl = Actions.ActOnStartClassImplementation(
1519 AtLoc, nameId, nameLoc,
1520 superClassId, superClassLoc);
1521
1522 if (Tok.is(tok::l_brace)) // we have ivars
1523 ParseObjCClassInstanceVariables(ObjCImpDecl, tok::objc_private, AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001524 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001525 assert(ObjCImpDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001526
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001527 SmallVector<Decl *, 8> DeclsInGroup;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001528
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001529 {
1530 ObjCImplParsingDataRAII ObjCImplParsing(*this, ObjCImpDecl);
1531 while (!ObjCImplParsing.isFinished() && Tok.isNot(tok::eof)) {
1532 ParsedAttributesWithRange attrs(AttrFactory);
1533 MaybeParseCXX0XAttributes(attrs);
1534 MaybeParseMicrosoftAttributes(attrs);
1535 if (DeclGroupPtrTy DGP = ParseExternalDeclaration(attrs)) {
1536 DeclGroupRef DG = DGP.get();
1537 DeclsInGroup.append(DG.begin(), DG.end());
1538 }
1539 }
1540 }
1541
Argyrios Kyrtzidis644af7b2012-02-23 21:11:20 +00001542 return Actions.ActOnFinishObjCImplementation(ObjCImpDecl, DeclsInGroup);
Reid Spencer5f016e22007-07-11 17:01:13 +00001543}
Steve Naroff60fccee2007-10-29 21:38:07 +00001544
Fariborz Jahanian140ab232011-08-31 17:37:55 +00001545Parser::DeclGroupPtrTy
1546Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001547 assert(Tok.isObjCAtKeyword(tok::objc_end) &&
1548 "ParseObjCAtEndDeclaration(): Expected @end");
1549 ConsumeToken(); // the "end" identifier
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001550 if (CurParsedObjCImpl)
1551 CurParsedObjCImpl->finish(atEnd);
Fariborz Jahanian8697d302011-08-31 22:24:06 +00001552 else
Ted Kremenek782f2f52010-01-07 01:20:12 +00001553 // missing @implementation
Erik Verbruggend64251f2011-12-06 09:25:23 +00001554 Diag(atEnd.getBegin(), diag::err_expected_objc_container);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001555 return DeclGroupPtrTy();
Steve Naroffdac269b2007-08-20 21:31:48 +00001556}
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001557
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001558Parser::ObjCImplParsingDataRAII::~ObjCImplParsingDataRAII() {
1559 if (!Finished) {
1560 finish(P.Tok.getLocation());
1561 if (P.Tok.is(tok::eof)) {
1562 P.Diag(P.Tok, diag::err_objc_missing_end)
1563 << FixItHint::CreateInsertion(P.Tok.getLocation(), "\n@end\n");
1564 P.Diag(Dcl->getLocStart(), diag::note_objc_container_start)
1565 << Sema::OCK_Implementation;
1566 }
1567 }
1568 P.CurParsedObjCImpl = 0;
1569 assert(LateParsedObjCMethods.empty());
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001570}
1571
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001572void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) {
1573 assert(!Finished);
1574 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl);
1575 for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i)
1576 P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i]);
1577
1578 P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd);
1579
1580 /// \brief Clear and free the cached objc methods.
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001581 for (LateParsedObjCMethodContainer::iterator
1582 I = LateParsedObjCMethods.begin(),
1583 E = LateParsedObjCMethods.end(); I != E; ++I)
1584 delete *I;
1585 LateParsedObjCMethods.clear();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001586
1587 Finished = true;
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001588}
1589
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001590/// compatibility-alias-decl:
1591/// @compatibility_alias alias-name class-name ';'
1592///
John McCalld226f652010-08-21 09:40:31 +00001593Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001594 assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) &&
1595 "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias");
1596 ConsumeToken(); // consume compatibility_alias
Chris Lattnerdf195262007-10-09 17:51:17 +00001597 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001598 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001599 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001600 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001601 IdentifierInfo *aliasId = Tok.getIdentifierInfo();
1602 SourceLocation aliasLoc = ConsumeToken(); // consume alias-name
Chris Lattnerdf195262007-10-09 17:51:17 +00001603 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001604 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001605 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001606 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001607 IdentifierInfo *classId = Tok.getIdentifierInfo();
1608 SourceLocation classLoc = ConsumeToken(); // consume class-name;
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001609 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
1610 "@compatibility_alias");
Chris Lattnerb28317a2009-03-28 19:18:32 +00001611 return Actions.ActOnCompatiblityAlias(atLoc, aliasId, aliasLoc,
1612 classId, classLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001613}
1614
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001615/// property-synthesis:
1616/// @synthesize property-ivar-list ';'
1617///
1618/// property-ivar-list:
1619/// property-ivar
1620/// property-ivar-list ',' property-ivar
1621///
1622/// property-ivar:
1623/// identifier
1624/// identifier '=' identifier
1625///
John McCalld226f652010-08-21 09:40:31 +00001626Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001627 assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
1628 "ParseObjCPropertyDynamic(): Expected '@synthesize'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001629 ConsumeToken(); // consume synthesize
Mike Stump1eb44332009-09-09 15:08:12 +00001630
Douglas Gregorb328c422009-11-18 19:45:45 +00001631 while (true) {
Douglas Gregor322328b2009-11-18 22:32:06 +00001632 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001633 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001634 cutOffParsing();
1635 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001636 }
1637
Douglas Gregorb328c422009-11-18 19:45:45 +00001638 if (Tok.isNot(tok::identifier)) {
1639 Diag(Tok, diag::err_synthesized_property_name);
1640 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001641 return 0;
Douglas Gregorb328c422009-11-18 19:45:45 +00001642 }
1643
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001644 IdentifierInfo *propertyIvar = 0;
1645 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1646 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Douglas Gregora4ffd852010-11-17 01:03:52 +00001647 SourceLocation propertyIvarLoc;
Chris Lattnerdf195262007-10-09 17:51:17 +00001648 if (Tok.is(tok::equal)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001649 // property '=' ivar-name
1650 ConsumeToken(); // consume '='
Douglas Gregor322328b2009-11-18 22:32:06 +00001651
1652 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001653 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001654 cutOffParsing();
1655 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001656 }
1657
Chris Lattnerdf195262007-10-09 17:51:17 +00001658 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001659 Diag(Tok, diag::err_expected_ident);
1660 break;
1661 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001662 propertyIvar = Tok.getIdentifierInfo();
Douglas Gregora4ffd852010-11-17 01:03:52 +00001663 propertyIvarLoc = ConsumeToken(); // consume ivar-name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001664 }
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001665 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, true,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001666 propertyId, propertyIvar, propertyIvarLoc);
Chris Lattnerdf195262007-10-09 17:51:17 +00001667 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001668 break;
1669 ConsumeToken(); // consume ','
1670 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001671 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@synthesize");
John McCalld226f652010-08-21 09:40:31 +00001672 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001673}
1674
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001675/// property-dynamic:
1676/// @dynamic property-list
1677///
1678/// property-list:
1679/// identifier
1680/// property-list ',' identifier
1681///
John McCalld226f652010-08-21 09:40:31 +00001682Decl *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001683 assert(Tok.isObjCAtKeyword(tok::objc_dynamic) &&
1684 "ParseObjCPropertyDynamic(): Expected '@dynamic'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001685 ConsumeToken(); // consume dynamic
Douglas Gregor424b2a52009-11-18 22:56:13 +00001686 while (true) {
1687 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001688 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001689 cutOffParsing();
1690 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001691 }
1692
1693 if (Tok.isNot(tok::identifier)) {
1694 Diag(Tok, diag::err_expected_ident);
1695 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001696 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001697 }
1698
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001699 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1700 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001701 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, false,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001702 propertyId, 0, SourceLocation());
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001703
Chris Lattnerdf195262007-10-09 17:51:17 +00001704 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001705 break;
1706 ConsumeToken(); // consume ','
1707 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001708 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@dynamic");
John McCalld226f652010-08-21 09:40:31 +00001709 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001710}
Mike Stump1eb44332009-09-09 15:08:12 +00001711
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001712/// objc-throw-statement:
1713/// throw expression[opt];
1714///
John McCall60d7b3a2010-08-24 06:29:42 +00001715StmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) {
1716 ExprResult Res;
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001717 ConsumeToken(); // consume throw
Chris Lattnerdf195262007-10-09 17:51:17 +00001718 if (Tok.isNot(tok::semi)) {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001719 Res = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001720 if (Res.isInvalid()) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001721 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001722 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001723 }
1724 }
Ted Kremenek02418c72010-04-20 21:21:51 +00001725 // consume ';'
1726 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@throw");
John McCall9ae2f072010-08-23 23:25:46 +00001727 return Actions.ActOnObjCAtThrowStmt(atLoc, Res.take(), getCurScope());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001728}
1729
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001730/// objc-synchronized-statement:
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001731/// @synchronized '(' expression ')' compound-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001732///
John McCall60d7b3a2010-08-24 06:29:42 +00001733StmtResult
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001734Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) {
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001735 ConsumeToken(); // consume synchronized
1736 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001737 Diag(Tok, diag::err_expected_lparen_after) << "@synchronized";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001738 return StmtError();
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001739 }
John McCall07524032011-07-27 21:50:02 +00001740
1741 // The operand is surrounded with parentheses.
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001742 ConsumeParen(); // '('
John McCall07524032011-07-27 21:50:02 +00001743 ExprResult operand(ParseExpression());
1744
1745 if (Tok.is(tok::r_paren)) {
1746 ConsumeParen(); // ')'
1747 } else {
1748 if (!operand.isInvalid())
1749 Diag(Tok, diag::err_expected_rparen);
1750
1751 // Skip forward until we see a left brace, but don't consume it.
1752 SkipUntil(tok::l_brace, true, true);
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001753 }
John McCall07524032011-07-27 21:50:02 +00001754
1755 // Require a compound statement.
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001756 if (Tok.isNot(tok::l_brace)) {
John McCall07524032011-07-27 21:50:02 +00001757 if (!operand.isInvalid())
1758 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001759 return StmtError();
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001760 }
Steve Naroff3ac438c2008-06-04 20:36:13 +00001761
John McCall07524032011-07-27 21:50:02 +00001762 // Check the @synchronized operand now.
1763 if (!operand.isInvalid())
1764 operand = Actions.ActOnObjCAtSynchronizedOperand(atLoc, operand.take());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001765
John McCall07524032011-07-27 21:50:02 +00001766 // Parse the compound statement within a new scope.
1767 ParseScope bodyScope(this, Scope::DeclScope);
1768 StmtResult body(ParseCompoundStatementBody());
1769 bodyScope.Exit();
1770
1771 // If there was a semantic or parse error earlier with the
1772 // operand, fail now.
1773 if (operand.isInvalid())
1774 return StmtError();
1775
1776 if (body.isInvalid())
1777 body = Actions.ActOnNullStmt(Tok.getLocation());
1778
1779 return Actions.ActOnObjCAtSynchronizedStmt(atLoc, operand.get(), body.get());
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001780}
1781
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001782/// objc-try-catch-statement:
1783/// @try compound-statement objc-catch-list[opt]
1784/// @try compound-statement objc-catch-list[opt] @finally compound-statement
1785///
1786/// objc-catch-list:
1787/// @catch ( parameter-declaration ) compound-statement
1788/// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1789/// catch-parameter-declaration:
1790/// parameter-declaration
1791/// '...' [OBJC2]
1792///
John McCall60d7b3a2010-08-24 06:29:42 +00001793StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001794 bool catch_or_finally_seen = false;
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001795
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001796 ConsumeToken(); // consume try
Chris Lattnerdf195262007-10-09 17:51:17 +00001797 if (Tok.isNot(tok::l_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001798 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001799 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001800 }
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001801 StmtVector CatchStmts(Actions);
John McCall60d7b3a2010-08-24 06:29:42 +00001802 StmtResult FinallyStmt;
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001803 ParseScope TryScope(this, Scope::DeclScope);
John McCall60d7b3a2010-08-24 06:29:42 +00001804 StmtResult TryBody(ParseCompoundStatementBody());
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001805 TryScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001806 if (TryBody.isInvalid())
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001807 TryBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redla55e52c2008-11-25 22:21:31 +00001808
Chris Lattnerdf195262007-10-09 17:51:17 +00001809 while (Tok.is(tok::at)) {
Chris Lattner6b884502008-03-10 06:06:04 +00001810 // At this point, we need to lookahead to determine if this @ is the start
1811 // of an @catch or @finally. We don't want to consume the @ token if this
1812 // is an @try or @encode or something else.
1813 Token AfterAt = GetLookAheadToken(1);
1814 if (!AfterAt.isObjCAtKeyword(tok::objc_catch) &&
1815 !AfterAt.isObjCAtKeyword(tok::objc_finally))
1816 break;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001817
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001818 SourceLocation AtCatchFinallyLoc = ConsumeToken();
Chris Lattnercb53b362007-12-27 19:57:00 +00001819 if (Tok.isObjCAtKeyword(tok::objc_catch)) {
John McCalld226f652010-08-21 09:40:31 +00001820 Decl *FirstPart = 0;
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001821 ConsumeToken(); // consume catch
Chris Lattnerdf195262007-10-09 17:51:17 +00001822 if (Tok.is(tok::l_paren)) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001823 ConsumeParen();
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001824 ParseScope CatchScope(this, Scope::DeclScope|Scope::AtCatchScope);
Chris Lattnerdf195262007-10-09 17:51:17 +00001825 if (Tok.isNot(tok::ellipsis)) {
John McCall0b7e6782011-03-24 11:26:52 +00001826 DeclSpec DS(AttrFactory);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001827 ParseDeclarationSpecifiers(DS);
Argyrios Kyrtzidis17b63992011-07-01 22:22:40 +00001828 Declarator ParmDecl(DS, Declarator::ObjCCatchContext);
Steve Naroff7ba138a2009-03-03 19:52:17 +00001829 ParseDeclarator(ParmDecl);
1830
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00001831 // Inform the actions module about the declarator, so it
Steve Naroff7ba138a2009-03-03 19:52:17 +00001832 // gets added to the current scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001833 FirstPart = Actions.ActOnObjCExceptionDecl(getCurScope(), ParmDecl);
Steve Naroff64515f32008-02-05 21:27:35 +00001834 } else
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001835 ConsumeToken(); // consume '...'
Mike Stump1eb44332009-09-09 15:08:12 +00001836
Steve Naroff93a25952009-04-07 22:56:58 +00001837 SourceLocation RParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Steve Naroff93a25952009-04-07 22:56:58 +00001839 if (Tok.is(tok::r_paren))
1840 RParenLoc = ConsumeParen();
1841 else // Skip over garbage, until we get to ')'. Eat the ')'.
1842 SkipUntil(tok::r_paren, true, false);
1843
John McCall60d7b3a2010-08-24 06:29:42 +00001844 StmtResult CatchBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001845 if (Tok.is(tok::l_brace))
1846 CatchBody = ParseCompoundStatementBody();
1847 else
1848 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001849 if (CatchBody.isInvalid())
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001850 CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001851
John McCall60d7b3a2010-08-24 06:29:42 +00001852 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001853 RParenLoc,
1854 FirstPart,
John McCall9ae2f072010-08-23 23:25:46 +00001855 CatchBody.take());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001856 if (!Catch.isInvalid())
1857 CatchStmts.push_back(Catch.release());
1858
Steve Naroff64515f32008-02-05 21:27:35 +00001859 } else {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001860 Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after)
1861 << "@catch clause";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001862 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001863 }
1864 catch_or_finally_seen = true;
Chris Lattner6b884502008-03-10 06:06:04 +00001865 } else {
1866 assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?");
Steve Naroff64515f32008-02-05 21:27:35 +00001867 ConsumeToken(); // consume finally
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001868 ParseScope FinallyScope(this, Scope::DeclScope);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001869
John McCall60d7b3a2010-08-24 06:29:42 +00001870 StmtResult FinallyBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001871 if (Tok.is(tok::l_brace))
1872 FinallyBody = ParseCompoundStatementBody();
1873 else
1874 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001875 if (FinallyBody.isInvalid())
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001876 FinallyBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001877 FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001878 FinallyBody.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001879 catch_or_finally_seen = true;
1880 break;
1881 }
1882 }
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001883 if (!catch_or_finally_seen) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001884 Diag(atLoc, diag::err_missing_catch_finally);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001885 return StmtError();
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001886 }
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001887
John McCall9ae2f072010-08-23 23:25:46 +00001888 return Actions.ActOnObjCAtTryStmt(atLoc, TryBody.take(),
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001889 move_arg(CatchStmts),
John McCall9ae2f072010-08-23 23:25:46 +00001890 FinallyStmt.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001891}
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001892
John McCallf85e1932011-06-15 23:02:42 +00001893/// objc-autoreleasepool-statement:
1894/// @autoreleasepool compound-statement
1895///
1896StmtResult
1897Parser::ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) {
1898 ConsumeToken(); // consume autoreleasepool
1899 if (Tok.isNot(tok::l_brace)) {
1900 Diag(Tok, diag::err_expected_lbrace);
1901 return StmtError();
1902 }
1903 // Enter a scope to hold everything within the compound stmt. Compound
1904 // statements can always hold declarations.
1905 ParseScope BodyScope(this, Scope::DeclScope);
1906
1907 StmtResult AutoreleasePoolBody(ParseCompoundStatementBody());
1908
1909 BodyScope.Exit();
1910 if (AutoreleasePoolBody.isInvalid())
1911 AutoreleasePoolBody = Actions.ActOnNullStmt(Tok.getLocation());
1912 return Actions.ActOnObjCAutoreleasePoolStmt(atLoc,
1913 AutoreleasePoolBody.take());
1914}
1915
Steve Naroff3536b442007-09-06 21:24:23 +00001916/// objc-method-def: objc-method-proto ';'[opt] '{' body '}'
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001917///
John McCalld226f652010-08-21 09:40:31 +00001918Decl *Parser::ParseObjCMethodDefinition() {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001919 Decl *MDecl = ParseObjCMethodPrototype();
Mike Stump1eb44332009-09-09 15:08:12 +00001920
John McCallf312b1e2010-08-26 23:41:50 +00001921 PrettyDeclStackTraceEntry CrashInfo(Actions, MDecl, Tok.getLocation(),
1922 "parsing Objective-C method");
Mike Stump1eb44332009-09-09 15:08:12 +00001923
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001924 // parse optional ';'
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001925 if (Tok.is(tok::semi)) {
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001926 if (CurParsedObjCImpl) {
Ted Kremenek496e45e2009-11-10 22:55:49 +00001927 Diag(Tok, diag::warn_semicolon_before_method_body)
Douglas Gregor849b2432010-03-31 17:46:05 +00001928 << FixItHint::CreateRemoval(Tok.getLocation());
Ted Kremenek496e45e2009-11-10 22:55:49 +00001929 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001930 ConsumeToken();
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001931 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001932
Steve Naroff409be832007-11-11 19:54:21 +00001933 // We should have an opening brace now.
Chris Lattnerdf195262007-10-09 17:51:17 +00001934 if (Tok.isNot(tok::l_brace)) {
Steve Naroffda323ad2008-02-29 21:48:07 +00001935 Diag(Tok, diag::err_expected_method_body);
Mike Stump1eb44332009-09-09 15:08:12 +00001936
Steve Naroff409be832007-11-11 19:54:21 +00001937 // Skip over garbage, until we get to '{'. Don't eat the '{'.
1938 SkipUntil(tok::l_brace, true, true);
Mike Stump1eb44332009-09-09 15:08:12 +00001939
Steve Naroff409be832007-11-11 19:54:21 +00001940 // If we didn't find the '{', bail out.
1941 if (Tok.isNot(tok::l_brace))
John McCalld226f652010-08-21 09:40:31 +00001942 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001943 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001944
1945 if (!MDecl) {
1946 ConsumeBrace();
1947 SkipUntil(tok::r_brace, /*StopAtSemi=*/false);
1948 return 0;
1949 }
1950
Fariborz Jahanian140ab232011-08-31 17:37:55 +00001951 // Allow the rest of sema to find private method decl implementations.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001952 Actions.AddAnyMethodToGlobalPool(MDecl);
1953
1954 if (CurParsedObjCImpl) {
1955 // Consume the tokens and store them for later parsing.
1956 LexedMethod* LM = new LexedMethod(this, MDecl);
1957 CurParsedObjCImpl->LateParsedObjCMethods.push_back(LM);
1958 CachedTokens &Toks = LM->Toks;
1959 // Begin by storing the '{' token.
1960 Toks.push_back(Tok);
1961 ConsumeBrace();
1962 // Consume everything up to (and including) the matching right brace.
1963 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1964
1965 } else {
1966 ConsumeBrace();
1967 SkipUntil(tok::r_brace, /*StopAtSemi=*/false);
1968 }
1969
Steve Naroff71c0a952007-11-13 23:01:27 +00001970 return MDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00001971}
Anders Carlsson55085182007-08-21 17:43:55 +00001972
John McCall60d7b3a2010-08-24 06:29:42 +00001973StmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00001974 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001975 Actions.CodeCompleteObjCAtStatement(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001976 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00001977 return StmtError();
Chris Lattner5d803162009-12-07 16:33:19 +00001978 }
1979
1980 if (Tok.isObjCAtKeyword(tok::objc_try))
Chris Lattner6b884502008-03-10 06:06:04 +00001981 return ParseObjCTryStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00001982
1983 if (Tok.isObjCAtKeyword(tok::objc_throw))
Steve Naroff64515f32008-02-05 21:27:35 +00001984 return ParseObjCThrowStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00001985
1986 if (Tok.isObjCAtKeyword(tok::objc_synchronized))
Steve Naroff64515f32008-02-05 21:27:35 +00001987 return ParseObjCSynchronizedStmt(AtLoc);
John McCallf85e1932011-06-15 23:02:42 +00001988
1989 if (Tok.isObjCAtKeyword(tok::objc_autoreleasepool))
1990 return ParseObjCAutoreleasePoolStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00001991
John McCall60d7b3a2010-08-24 06:29:42 +00001992 ExprResult Res(ParseExpressionWithLeadingAt(AtLoc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001993 if (Res.isInvalid()) {
Steve Naroff64515f32008-02-05 21:27:35 +00001994 // If the expression is invalid, skip ahead to the next semicolon. Not
1995 // doing this opens us up to the possibility of infinite loops if
1996 // ParseExpression does not consume any tokens.
1997 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001998 return StmtError();
Steve Naroff64515f32008-02-05 21:27:35 +00001999 }
Chris Lattner5d803162009-12-07 16:33:19 +00002000
Steve Naroff64515f32008-02-05 21:27:35 +00002001 // Otherwise, eat the semicolon.
Douglas Gregor9ba23b42010-09-07 15:23:11 +00002002 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
John McCall9ae2f072010-08-23 23:25:46 +00002003 return Actions.ActOnExprStmt(Actions.MakeFullExpr(Res.take()));
Steve Naroff64515f32008-02-05 21:27:35 +00002004}
2005
John McCall60d7b3a2010-08-24 06:29:42 +00002006ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
Anders Carlsson55085182007-08-21 17:43:55 +00002007 switch (Tok.getKind()) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002008 case tok::code_completion:
Douglas Gregor23c94db2010-07-02 17:43:08 +00002009 Actions.CodeCompleteObjCAtExpression(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002010 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002011 return ExprError();
2012
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002013 case tok::minus:
2014 case tok::plus: {
2015 tok::TokenKind Kind = Tok.getKind();
2016 SourceLocation OpLoc = ConsumeToken();
2017
2018 if (!Tok.is(tok::numeric_constant)) {
2019 const char *Symbol = 0;
2020 switch (Kind) {
2021 case tok::minus: Symbol = "-"; break;
2022 case tok::plus: Symbol = "+"; break;
2023 default: llvm_unreachable("missing unary operator case");
2024 }
2025 Diag(Tok, diag::err_nsnumber_nonliteral_unary)
2026 << Symbol;
2027 return ExprError();
2028 }
2029
2030 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2031 if (Lit.isInvalid()) {
2032 return move(Lit);
2033 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002034 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002035
2036 Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.take());
2037 if (Lit.isInvalid())
2038 return move(Lit);
2039
2040 return ParsePostfixExpressionSuffix(
2041 Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2042 }
2043
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002044 case tok::string_literal: // primary-expression: string-literal
2045 case tok::wide_string_literal:
Sebastian Redl1d922962008-12-13 15:32:12 +00002046 return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc));
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002047
2048 case tok::char_constant:
2049 return ParsePostfixExpressionSuffix(ParseObjCCharacterLiteral(AtLoc));
2050
2051 case tok::numeric_constant:
2052 return ParsePostfixExpressionSuffix(ParseObjCNumericLiteral(AtLoc));
2053
2054 case tok::kw_true: // Objective-C++, etc.
2055 case tok::kw___objc_yes: // c/c++/objc/objc++ __objc_yes
2056 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, true));
2057 case tok::kw_false: // Objective-C++, etc.
2058 case tok::kw___objc_no: // c/c++/objc/objc++ __objc_no
2059 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, false));
2060
2061 case tok::l_square:
2062 // Objective-C array literal
2063 return ParsePostfixExpressionSuffix(ParseObjCArrayLiteral(AtLoc));
2064
2065 case tok::l_brace:
2066 // Objective-C dictionary literal
2067 return ParsePostfixExpressionSuffix(ParseObjCDictionaryLiteral(AtLoc));
2068
Patrick Beardeb382ec2012-04-19 00:25:12 +00002069 case tok::l_paren:
2070 // Objective-C boxed expression
2071 return ParsePostfixExpressionSuffix(ParseObjCBoxedExpr(AtLoc));
2072
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002073 default:
Chris Lattner4fef81d2008-08-05 06:19:09 +00002074 if (Tok.getIdentifierInfo() == 0)
Sebastian Redl1d922962008-12-13 15:32:12 +00002075 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002076
Chris Lattner4fef81d2008-08-05 06:19:09 +00002077 switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
2078 case tok::objc_encode:
Sebastian Redl1d922962008-12-13 15:32:12 +00002079 return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002080 case tok::objc_protocol:
Sebastian Redl1d922962008-12-13 15:32:12 +00002081 return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002082 case tok::objc_selector:
Sebastian Redl1d922962008-12-13 15:32:12 +00002083 return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002084 default:
Sebastian Redl1d922962008-12-13 15:32:12 +00002085 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002086 }
Anders Carlsson55085182007-08-21 17:43:55 +00002087 }
Anders Carlsson55085182007-08-21 17:43:55 +00002088}
2089
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002090/// \brirg Parse the receiver of an Objective-C++ message send.
2091///
2092/// This routine parses the receiver of a message send in
2093/// Objective-C++ either as a type or as an expression. Note that this
2094/// routine must not be called to parse a send to 'super', since it
2095/// has no way to return such a result.
2096///
2097/// \param IsExpr Whether the receiver was parsed as an expression.
2098///
2099/// \param TypeOrExpr If the receiver was parsed as an expression (\c
2100/// IsExpr is true), the parsed expression. If the receiver was parsed
2101/// as a type (\c IsExpr is false), the parsed type.
2102///
2103/// \returns True if an error occurred during parsing or semantic
2104/// analysis, in which case the arguments do not have valid
2105/// values. Otherwise, returns false for a successful parse.
2106///
2107/// objc-receiver: [C++]
2108/// 'super' [not parsed here]
2109/// expression
2110/// simple-type-specifier
2111/// typename-specifier
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002112bool Parser::ParseObjCXXMessageReceiver(bool &IsExpr, void *&TypeOrExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002113 InMessageExpressionRAIIObject InMessage(*this, true);
2114
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002115 if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
2116 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope))
2117 TryAnnotateTypeOrScopeToken();
2118
2119 if (!isCXXSimpleTypeSpecifier()) {
2120 // objc-receiver:
2121 // expression
John McCall60d7b3a2010-08-24 06:29:42 +00002122 ExprResult Receiver = ParseExpression();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002123 if (Receiver.isInvalid())
2124 return true;
2125
2126 IsExpr = true;
2127 TypeOrExpr = Receiver.take();
2128 return false;
2129 }
2130
2131 // objc-receiver:
2132 // typename-specifier
2133 // simple-type-specifier
2134 // expression (that starts with one of the above)
John McCall0b7e6782011-03-24 11:26:52 +00002135 DeclSpec DS(AttrFactory);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002136 ParseCXXSimpleTypeSpecifier(DS);
2137
2138 if (Tok.is(tok::l_paren)) {
2139 // If we see an opening parentheses at this point, we are
2140 // actually parsing an expression that starts with a
2141 // function-style cast, e.g.,
2142 //
2143 // postfix-expression:
2144 // simple-type-specifier ( expression-list [opt] )
2145 // typename-specifier ( expression-list [opt] )
2146 //
2147 // Parse the remainder of this case, then the (optional)
2148 // postfix-expression suffix, followed by the (optional)
2149 // right-hand side of the binary expression. We have an
2150 // instance method.
John McCall60d7b3a2010-08-24 06:29:42 +00002151 ExprResult Receiver = ParseCXXTypeConstructExpression(DS);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002152 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002153 Receiver = ParsePostfixExpressionSuffix(Receiver.take());
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002154 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002155 Receiver = ParseRHSOfBinaryExpression(Receiver.take(), prec::Comma);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002156 if (Receiver.isInvalid())
2157 return true;
2158
2159 IsExpr = true;
2160 TypeOrExpr = Receiver.take();
2161 return false;
2162 }
2163
2164 // We have a class message. Turn the simple-type-specifier or
2165 // typename-specifier we parsed into a type and parse the
2166 // remainder of the class message.
2167 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002168 TypeResult Type = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002169 if (Type.isInvalid())
2170 return true;
2171
2172 IsExpr = false;
John McCallb3d87482010-08-24 05:47:05 +00002173 TypeOrExpr = Type.get().getAsOpaquePtr();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002174 return false;
2175}
2176
Douglas Gregor1b730e82010-05-31 14:40:22 +00002177/// \brief Determine whether the parser is currently referring to a an
2178/// Objective-C message send, using a simplified heuristic to avoid overhead.
2179///
2180/// This routine will only return true for a subset of valid message-send
2181/// expressions.
2182bool Parser::isSimpleObjCMessageExpression() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002183 assert(Tok.is(tok::l_square) && getLangOpts().ObjC1 &&
Douglas Gregor1b730e82010-05-31 14:40:22 +00002184 "Incorrect start for isSimpleObjCMessageExpression");
Douglas Gregor1b730e82010-05-31 14:40:22 +00002185 return GetLookAheadToken(1).is(tok::identifier) &&
2186 GetLookAheadToken(2).is(tok::identifier);
2187}
2188
Douglas Gregor9497a732010-09-16 01:51:54 +00002189bool Parser::isStartOfObjCClassMessageMissingOpenBracket() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002190 if (!getLangOpts().ObjC1 || !NextToken().is(tok::identifier) ||
Douglas Gregor9497a732010-09-16 01:51:54 +00002191 InMessageExpression)
2192 return false;
2193
2194
2195 ParsedType Type;
2196
2197 if (Tok.is(tok::annot_typename))
2198 Type = getTypeAnnotation(Tok);
2199 else if (Tok.is(tok::identifier))
2200 Type = Actions.getTypeName(*Tok.getIdentifierInfo(), Tok.getLocation(),
2201 getCurScope());
2202 else
2203 return false;
2204
2205 if (!Type.get().isNull() && Type.get()->isObjCObjectOrInterfaceType()) {
2206 const Token &AfterNext = GetLookAheadToken(2);
2207 if (AfterNext.is(tok::colon) || AfterNext.is(tok::r_square)) {
2208 if (Tok.is(tok::identifier))
2209 TryAnnotateTypeOrScopeToken();
2210
2211 return Tok.is(tok::annot_typename);
2212 }
2213 }
2214
2215 return false;
2216}
2217
Mike Stump1eb44332009-09-09 15:08:12 +00002218/// objc-message-expr:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002219/// '[' objc-receiver objc-message-args ']'
2220///
Douglas Gregor2725ca82010-04-21 19:57:20 +00002221/// objc-receiver: [C]
Chris Lattnereb483eb2010-04-11 08:28:14 +00002222/// 'super'
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002223/// expression
2224/// class-name
2225/// type-name
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002226///
John McCall60d7b3a2010-08-24 06:29:42 +00002227ExprResult Parser::ParseObjCMessageExpression() {
Chris Lattner699b6612008-01-25 18:59:06 +00002228 assert(Tok.is(tok::l_square) && "'[' expected");
2229 SourceLocation LBracLoc = ConsumeBracket(); // consume '['
2230
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002231 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002232 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002233 cutOffParsing();
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002234 return ExprError();
2235 }
2236
Douglas Gregor0fbda682010-09-15 14:51:05 +00002237 InMessageExpressionRAIIObject InMessage(*this, true);
2238
David Blaikie4e4d0842012-03-11 07:00:24 +00002239 if (getLangOpts().CPlusPlus) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002240 // We completely separate the C and C++ cases because C++ requires
2241 // more complicated (read: slower) parsing.
2242
2243 // Handle send to super.
2244 // FIXME: This doesn't benefit from the same typo-correction we
2245 // get in Objective-C.
2246 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002247 NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
John McCallb3d87482010-08-24 05:47:05 +00002248 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2249 ParsedType(), 0);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002250
2251 // Parse the receiver, which is either a type or an expression.
2252 bool IsExpr;
Nick Lewycky304b7522010-09-15 18:35:19 +00002253 void *TypeOrExpr = NULL;
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002254 if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
2255 SkipUntil(tok::r_square);
2256 return ExprError();
2257 }
2258
2259 if (IsExpr)
John McCallb3d87482010-08-24 05:47:05 +00002260 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2261 ParsedType(),
John McCall9ae2f072010-08-23 23:25:46 +00002262 static_cast<Expr*>(TypeOrExpr));
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002263
2264 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +00002265 ParsedType::getFromOpaquePtr(TypeOrExpr),
2266 0);
Chris Lattnerc59cb382010-05-31 18:18:22 +00002267 }
2268
2269 if (Tok.is(tok::identifier)) {
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002270 IdentifierInfo *Name = Tok.getIdentifierInfo();
2271 SourceLocation NameLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002272 ParsedType ReceiverType;
Douglas Gregor23c94db2010-07-02 17:43:08 +00002273 switch (Actions.getObjCMessageKind(getCurScope(), Name, NameLoc,
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002274 Name == Ident_super,
Douglas Gregor1569f952010-04-21 20:38:13 +00002275 NextToken().is(tok::period),
2276 ReceiverType)) {
John McCallf312b1e2010-08-26 23:41:50 +00002277 case Sema::ObjCSuperMessage:
John McCallb3d87482010-08-24 05:47:05 +00002278 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2279 ParsedType(), 0);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002280
John McCallf312b1e2010-08-26 23:41:50 +00002281 case Sema::ObjCClassMessage:
Douglas Gregor1569f952010-04-21 20:38:13 +00002282 if (!ReceiverType) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002283 SkipUntil(tok::r_square);
2284 return ExprError();
2285 }
2286
Douglas Gregor1569f952010-04-21 20:38:13 +00002287 ConsumeToken(); // the type name
2288
2289 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCall9ae2f072010-08-23 23:25:46 +00002290 ReceiverType, 0);
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002291
John McCallf312b1e2010-08-26 23:41:50 +00002292 case Sema::ObjCInstanceMessage:
Douglas Gregor2725ca82010-04-21 19:57:20 +00002293 // Fall through to parse an expression.
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002294 break;
Fariborz Jahaniand2869922009-04-08 19:50:10 +00002295 }
Chris Lattner699b6612008-01-25 18:59:06 +00002296 }
Chris Lattnereb483eb2010-04-11 08:28:14 +00002297
2298 // Otherwise, an arbitrary expression can be the receiver of a send.
John McCall60d7b3a2010-08-24 06:29:42 +00002299 ExprResult Res(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002300 if (Res.isInvalid()) {
Chris Lattner5c749422008-01-25 19:43:26 +00002301 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002302 return move(Res);
Chris Lattner699b6612008-01-25 18:59:06 +00002303 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002304
John McCallb3d87482010-08-24 05:47:05 +00002305 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2306 ParsedType(), Res.take());
Chris Lattner699b6612008-01-25 18:59:06 +00002307}
Sebastian Redl1d922962008-12-13 15:32:12 +00002308
Douglas Gregor2725ca82010-04-21 19:57:20 +00002309/// \brief Parse the remainder of an Objective-C message following the
2310/// '[' objc-receiver.
2311///
2312/// This routine handles sends to super, class messages (sent to a
2313/// class name), and instance messages (sent to an object), and the
2314/// target is represented by \p SuperLoc, \p ReceiverType, or \p
2315/// ReceiverExpr, respectively. Only one of these parameters may have
2316/// a valid value.
2317///
2318/// \param LBracLoc The location of the opening '['.
2319///
2320/// \param SuperLoc If this is a send to 'super', the location of the
2321/// 'super' keyword that indicates a send to the superclass.
2322///
2323/// \param ReceiverType If this is a class message, the type of the
2324/// class we are sending a message to.
2325///
2326/// \param ReceiverExpr If this is an instance message, the expression
2327/// used to compute the receiver object.
Mike Stump1eb44332009-09-09 15:08:12 +00002328///
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002329/// objc-message-args:
2330/// objc-selector
2331/// objc-keywordarg-list
2332///
2333/// objc-keywordarg-list:
2334/// objc-keywordarg
2335/// objc-keywordarg-list objc-keywordarg
2336///
Mike Stump1eb44332009-09-09 15:08:12 +00002337/// objc-keywordarg:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002338/// selector-name[opt] ':' objc-keywordexpr
2339///
2340/// objc-keywordexpr:
2341/// nonempty-expr-list
2342///
2343/// nonempty-expr-list:
2344/// assignment-expression
2345/// nonempty-expr-list , assignment-expression
Sebastian Redl1d922962008-12-13 15:32:12 +00002346///
John McCall60d7b3a2010-08-24 06:29:42 +00002347ExprResult
Chris Lattner699b6612008-01-25 18:59:06 +00002348Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002349 SourceLocation SuperLoc,
John McCallb3d87482010-08-24 05:47:05 +00002350 ParsedType ReceiverType,
Sebastian Redl1d922962008-12-13 15:32:12 +00002351 ExprArg ReceiverExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002352 InMessageExpressionRAIIObject InMessage(*this, true);
2353
Steve Naroffc4df6d22009-11-07 02:08:14 +00002354 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002355 if (SuperLoc.isValid())
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002356 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, 0, 0,
2357 false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002358 else if (ReceiverType)
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002359 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, 0, 0,
2360 false);
Steve Naroffc4df6d22009-11-07 02:08:14 +00002361 else
John McCall9ae2f072010-08-23 23:25:46 +00002362 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002363 0, 0, false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002364 cutOffParsing();
2365 return ExprError();
Steve Naroffc4df6d22009-11-07 02:08:14 +00002366 }
Douglas Gregord3c68542009-11-19 01:08:35 +00002367
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002368 // Parse objc-selector
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00002369 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002370 IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
Steve Naroff68d331a2007-09-27 14:38:14 +00002371
Chris Lattner5f9e2722011-07-23 10:55:15 +00002372 SmallVector<IdentifierInfo *, 12> KeyIdents;
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002373 SmallVector<SourceLocation, 12> KeyLocs;
Sebastian Redla55e52c2008-11-25 22:21:31 +00002374 ExprVector KeyExprs(Actions);
Steve Naroff68d331a2007-09-27 14:38:14 +00002375
Chris Lattnerdf195262007-10-09 17:51:17 +00002376 if (Tok.is(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002377 while (1) {
2378 // Each iteration parses a single keyword argument.
Steve Naroff68d331a2007-09-27 14:38:14 +00002379 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002380 KeyLocs.push_back(Loc);
Steve Naroff37387c92007-09-17 20:25:27 +00002381
Chris Lattnerdf195262007-10-09 17:51:17 +00002382 if (Tok.isNot(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002383 Diag(Tok, diag::err_expected_colon);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002384 // We must manually skip to a ']', otherwise the expression skipper will
2385 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2386 // the enclosing expression.
2387 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002388 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002389 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002390
Steve Naroff68d331a2007-09-27 14:38:14 +00002391 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00002392 /// Parse the expression after ':'
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002393
2394 if (Tok.is(tok::code_completion)) {
2395 if (SuperLoc.isValid())
2396 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
2397 KeyIdents.data(),
2398 KeyIdents.size(),
2399 /*AtArgumentEpression=*/true);
2400 else if (ReceiverType)
2401 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
2402 KeyIdents.data(),
2403 KeyIdents.size(),
2404 /*AtArgumentEpression=*/true);
2405 else
2406 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
2407 KeyIdents.data(),
2408 KeyIdents.size(),
2409 /*AtArgumentEpression=*/true);
2410
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002411 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002412 return ExprError();
2413 }
2414
John McCall60d7b3a2010-08-24 06:29:42 +00002415 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002416 if (Res.isInvalid()) {
Chris Lattner4fef81d2008-08-05 06:19:09 +00002417 // We must manually skip to a ']', otherwise the expression skipper will
2418 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2419 // the enclosing expression.
2420 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002421 return move(Res);
Steve Naroff37387c92007-09-17 20:25:27 +00002422 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002423
Steve Naroff37387c92007-09-17 20:25:27 +00002424 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002425 KeyExprs.push_back(Res.release());
Sebastian Redl1d922962008-12-13 15:32:12 +00002426
Douglas Gregord3c68542009-11-19 01:08:35 +00002427 // Code completion after each argument.
2428 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002429 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002430 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002431 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002432 KeyIdents.size(),
2433 /*AtArgumentEpression=*/false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002434 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002435 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
Douglas Gregord3c68542009-11-19 01:08:35 +00002436 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002437 KeyIdents.size(),
2438 /*AtArgumentEpression=*/false);
Douglas Gregord3c68542009-11-19 01:08:35 +00002439 else
John McCall9ae2f072010-08-23 23:25:46 +00002440 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregord3c68542009-11-19 01:08:35 +00002441 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002442 KeyIdents.size(),
2443 /*AtArgumentEpression=*/false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002444 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002445 return ExprError();
Douglas Gregord3c68542009-11-19 01:08:35 +00002446 }
2447
Steve Naroff37387c92007-09-17 20:25:27 +00002448 // Check for another keyword selector.
Chris Lattner2fc5c242009-04-11 18:13:45 +00002449 selIdent = ParseObjCSelectorPiece(Loc);
Chris Lattnerdf195262007-10-09 17:51:17 +00002450 if (!selIdent && Tok.isNot(tok::colon))
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002451 break;
2452 // We have a selector or a colon, continue parsing.
2453 }
2454 // Parse the, optional, argument list, comma separated.
Chris Lattnerdf195262007-10-09 17:51:17 +00002455 while (Tok.is(tok::comma)) {
Steve Naroff49f109c2007-11-15 13:05:42 +00002456 ConsumeToken(); // Eat the ','.
Mike Stump1eb44332009-09-09 15:08:12 +00002457 /// Parse the expression after ','
John McCall60d7b3a2010-08-24 06:29:42 +00002458 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002459 if (Res.isInvalid()) {
Chris Lattner4fef81d2008-08-05 06:19:09 +00002460 // We must manually skip to a ']', otherwise the expression skipper will
2461 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2462 // the enclosing expression.
2463 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002464 return move(Res);
Steve Naroff49f109c2007-11-15 13:05:42 +00002465 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002466
Steve Naroff49f109c2007-11-15 13:05:42 +00002467 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002468 KeyExprs.push_back(Res.release());
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002469 }
2470 } else if (!selIdent) {
2471 Diag(Tok, diag::err_expected_ident); // missing selector name.
Sebastian Redl1d922962008-12-13 15:32:12 +00002472
Chris Lattner4fef81d2008-08-05 06:19:09 +00002473 // We must manually skip to a ']', otherwise the expression skipper will
2474 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2475 // the enclosing expression.
2476 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002477 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002478 }
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002479
Chris Lattnerdf195262007-10-09 17:51:17 +00002480 if (Tok.isNot(tok::r_square)) {
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002481 if (Tok.is(tok::identifier))
2482 Diag(Tok, diag::err_expected_colon);
2483 else
2484 Diag(Tok, diag::err_expected_rsquare);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002485 // We must manually skip to a ']', otherwise the expression skipper will
2486 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2487 // the enclosing expression.
2488 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002489 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002490 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002491
Chris Lattner699b6612008-01-25 18:59:06 +00002492 SourceLocation RBracLoc = ConsumeBracket(); // consume ']'
Sebastian Redl1d922962008-12-13 15:32:12 +00002493
Steve Naroff29238a02007-10-05 18:42:47 +00002494 unsigned nKeys = KeyIdents.size();
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002495 if (nKeys == 0) {
Chris Lattnerff384912007-10-07 02:00:24 +00002496 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002497 KeyLocs.push_back(Loc);
2498 }
Chris Lattnerff384912007-10-07 02:00:24 +00002499 Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002500
Douglas Gregor2725ca82010-04-21 19:57:20 +00002501 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002502 return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002503 LBracLoc, KeyLocs, RBracLoc,
John McCallf312b1e2010-08-26 23:41:50 +00002504 MultiExprArg(Actions,
2505 KeyExprs.take(),
2506 KeyExprs.size()));
Douglas Gregor2725ca82010-04-21 19:57:20 +00002507 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002508 return Actions.ActOnClassMessage(getCurScope(), ReceiverType, Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002509 LBracLoc, KeyLocs, RBracLoc,
John McCallf312b1e2010-08-26 23:41:50 +00002510 MultiExprArg(Actions,
2511 KeyExprs.take(),
2512 KeyExprs.size()));
John McCall9ae2f072010-08-23 23:25:46 +00002513 return Actions.ActOnInstanceMessage(getCurScope(), ReceiverExpr, Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002514 LBracLoc, KeyLocs, RBracLoc,
John McCallf312b1e2010-08-26 23:41:50 +00002515 MultiExprArg(Actions,
2516 KeyExprs.take(),
2517 KeyExprs.size()));
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002518}
2519
John McCall60d7b3a2010-08-24 06:29:42 +00002520ExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) {
2521 ExprResult Res(ParseStringLiteralExpression());
Sebastian Redl1d922962008-12-13 15:32:12 +00002522 if (Res.isInvalid()) return move(Res);
2523
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002524 // @"foo" @"bar" is a valid concatenated string. Eat any subsequent string
2525 // expressions. At this point, we know that the only valid thing that starts
2526 // with '@' is an @"".
Chris Lattner5f9e2722011-07-23 10:55:15 +00002527 SmallVector<SourceLocation, 4> AtLocs;
Sebastian Redla55e52c2008-11-25 22:21:31 +00002528 ExprVector AtStrings(Actions);
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002529 AtLocs.push_back(AtLoc);
Sebastian Redleffa8d12008-12-10 00:02:53 +00002530 AtStrings.push_back(Res.release());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002531
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002532 while (Tok.is(tok::at)) {
2533 AtLocs.push_back(ConsumeToken()); // eat the @.
Anders Carlsson55085182007-08-21 17:43:55 +00002534
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002535 // Invalid unless there is a string literal.
Chris Lattner97cf6eb2009-02-18 05:56:09 +00002536 if (!isTokenStringLiteral())
2537 return ExprError(Diag(Tok, diag::err_objc_concat_string));
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002538
John McCall60d7b3a2010-08-24 06:29:42 +00002539 ExprResult Lit(ParseStringLiteralExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002540 if (Lit.isInvalid())
Sebastian Redl1d922962008-12-13 15:32:12 +00002541 return move(Lit);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002542
Sebastian Redleffa8d12008-12-10 00:02:53 +00002543 AtStrings.push_back(Lit.release());
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002544 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002545
2546 return Owned(Actions.ParseObjCStringLiteral(&AtLocs[0], AtStrings.take(),
2547 AtStrings.size()));
Anders Carlsson55085182007-08-21 17:43:55 +00002548}
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002549
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002550/// ParseObjCBooleanLiteral -
2551/// objc-scalar-literal : '@' boolean-keyword
2552/// ;
2553/// boolean-keyword: 'true' | 'false' | '__objc_yes' | '__objc_no'
2554/// ;
2555ExprResult Parser::ParseObjCBooleanLiteral(SourceLocation AtLoc,
2556 bool ArgValue) {
2557 SourceLocation EndLoc = ConsumeToken(); // consume the keyword.
2558 return Actions.ActOnObjCBoolLiteral(AtLoc, EndLoc, ArgValue);
2559}
2560
2561/// ParseObjCCharacterLiteral -
2562/// objc-scalar-literal : '@' character-literal
2563/// ;
2564ExprResult Parser::ParseObjCCharacterLiteral(SourceLocation AtLoc) {
2565 ExprResult Lit(Actions.ActOnCharacterConstant(Tok));
2566 if (Lit.isInvalid()) {
2567 return move(Lit);
2568 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002569 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002570 return Owned(Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2571}
2572
2573/// ParseObjCNumericLiteral -
2574/// objc-scalar-literal : '@' scalar-literal
2575/// ;
2576/// scalar-literal : | numeric-constant /* any numeric constant. */
2577/// ;
2578ExprResult Parser::ParseObjCNumericLiteral(SourceLocation AtLoc) {
2579 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2580 if (Lit.isInvalid()) {
2581 return move(Lit);
2582 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002583 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002584 return Owned(Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2585}
2586
Patrick Beardeb382ec2012-04-19 00:25:12 +00002587/// ParseObjCBoxedExpr -
2588/// objc-box-expression:
2589/// @( assignment-expression )
2590ExprResult
2591Parser::ParseObjCBoxedExpr(SourceLocation AtLoc) {
2592 if (Tok.isNot(tok::l_paren))
2593 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@");
2594
2595 BalancedDelimiterTracker T(*this, tok::l_paren);
2596 T.consumeOpen();
2597 ExprResult ValueExpr(ParseAssignmentExpression());
2598 if (T.consumeClose())
2599 return ExprError();
2600
2601 // Wrap the sub-expression in a parenthesized expression, to distinguish
2602 // a boxed expression from a literal.
2603 SourceLocation LPLoc = T.getOpenLocation(), RPLoc = T.getCloseLocation();
2604 ValueExpr = Actions.ActOnParenExpr(LPLoc, RPLoc, ValueExpr.take());
2605 return Owned(Actions.BuildObjCBoxedExpr(SourceRange(AtLoc, RPLoc),
2606 ValueExpr.take()));
2607}
2608
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002609ExprResult Parser::ParseObjCArrayLiteral(SourceLocation AtLoc) {
2610 ExprVector ElementExprs(Actions); // array elements.
2611 ConsumeBracket(); // consume the l_square.
2612
2613 while (Tok.isNot(tok::r_square)) {
2614 // Parse list of array element expressions (all must be id types).
2615 ExprResult Res(ParseAssignmentExpression());
2616 if (Res.isInvalid()) {
2617 // We must manually skip to a ']', otherwise the expression skipper will
2618 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2619 // the enclosing expression.
2620 SkipUntil(tok::r_square);
2621 return move(Res);
2622 }
2623
2624 // Parse the ellipsis that indicates a pack expansion.
2625 if (Tok.is(tok::ellipsis))
2626 Res = Actions.ActOnPackExpansion(Res.get(), ConsumeToken());
2627 if (Res.isInvalid())
2628 return true;
2629
2630 ElementExprs.push_back(Res.release());
2631
2632 if (Tok.is(tok::comma))
2633 ConsumeToken(); // Eat the ','.
2634 else if (Tok.isNot(tok::r_square))
2635 return ExprError(Diag(Tok, diag::err_expected_rsquare_or_comma));
2636 }
2637 SourceLocation EndLoc = ConsumeBracket(); // location of ']'
2638 MultiExprArg Args(Actions, ElementExprs.take(), ElementExprs.size());
2639 return Owned(Actions.BuildObjCArrayLiteral(SourceRange(AtLoc, EndLoc), Args));
2640}
2641
2642ExprResult Parser::ParseObjCDictionaryLiteral(SourceLocation AtLoc) {
2643 SmallVector<ObjCDictionaryElement, 4> Elements; // dictionary elements.
2644 ConsumeBrace(); // consume the l_square.
2645 while (Tok.isNot(tok::r_brace)) {
2646 // Parse the comma separated key : value expressions.
2647 ExprResult KeyExpr;
2648 {
2649 ColonProtectionRAIIObject X(*this);
2650 KeyExpr = ParseAssignmentExpression();
2651 if (KeyExpr.isInvalid()) {
2652 // We must manually skip to a '}', otherwise the expression skipper will
2653 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2654 // the enclosing expression.
2655 SkipUntil(tok::r_brace);
2656 return move(KeyExpr);
2657 }
2658 }
2659
2660 if (Tok.is(tok::colon)) {
2661 ConsumeToken();
2662 } else {
2663 return ExprError(Diag(Tok, diag::err_expected_colon));
2664 }
2665
2666 ExprResult ValueExpr(ParseAssignmentExpression());
2667 if (ValueExpr.isInvalid()) {
2668 // We must manually skip to a '}', otherwise the expression skipper will
2669 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2670 // the enclosing expression.
2671 SkipUntil(tok::r_brace);
2672 return move(ValueExpr);
2673 }
2674
2675 // Parse the ellipsis that designates this as a pack expansion.
2676 SourceLocation EllipsisLoc;
David Blaikie4e4d0842012-03-11 07:00:24 +00002677 if (Tok.is(tok::ellipsis) && getLangOpts().CPlusPlus)
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002678 EllipsisLoc = ConsumeToken();
2679
2680 // We have a valid expression. Collect it in a vector so we can
2681 // build the argument list.
2682 ObjCDictionaryElement Element = {
2683 KeyExpr.get(), ValueExpr.get(), EllipsisLoc, llvm::Optional<unsigned>()
2684 };
2685 Elements.push_back(Element);
2686
2687 if (Tok.is(tok::comma))
2688 ConsumeToken(); // Eat the ','.
2689 else if (Tok.isNot(tok::r_brace))
2690 return ExprError(Diag(Tok, diag::err_expected_rbrace_or_comma));
2691 }
2692 SourceLocation EndLoc = ConsumeBrace();
2693
2694 // Create the ObjCDictionaryLiteral.
2695 return Owned(Actions.BuildObjCDictionaryLiteral(SourceRange(AtLoc, EndLoc),
2696 Elements.data(),
2697 Elements.size()));
2698}
2699
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002700/// objc-encode-expression:
2701/// @encode ( type-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002702ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002703Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00002704 assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
Sebastian Redl1d922962008-12-13 15:32:12 +00002705
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002706 SourceLocation EncLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002707
Chris Lattner4fef81d2008-08-05 06:19:09 +00002708 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002709 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode");
2710
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002711 BalancedDelimiterTracker T(*this, tok::l_paren);
2712 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002713
Douglas Gregor809070a2009-02-18 17:45:20 +00002714 TypeResult Ty = ParseTypeName();
Sebastian Redl1d922962008-12-13 15:32:12 +00002715
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002716 T.consumeClose();
Sebastian Redl1d922962008-12-13 15:32:12 +00002717
Douglas Gregor809070a2009-02-18 17:45:20 +00002718 if (Ty.isInvalid())
2719 return ExprError();
2720
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002721 return Owned(Actions.ParseObjCEncodeExpression(AtLoc, EncLoc,
2722 T.getOpenLocation(), Ty.get(),
2723 T.getCloseLocation()));
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002724}
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002725
2726/// objc-protocol-expression
2727/// @protocol ( protocol-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002728ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002729Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) {
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002730 SourceLocation ProtoLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002731
Chris Lattner4fef81d2008-08-05 06:19:09 +00002732 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002733 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol");
2734
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002735 BalancedDelimiterTracker T(*this, tok::l_paren);
2736 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002737
Chris Lattner4fef81d2008-08-05 06:19:09 +00002738 if (Tok.isNot(tok::identifier))
Sebastian Redl1d922962008-12-13 15:32:12 +00002739 return ExprError(Diag(Tok, diag::err_expected_ident));
2740
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002741 IdentifierInfo *protocolId = Tok.getIdentifierInfo();
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002742 ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002743
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002744 T.consumeClose();
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002745
Sebastian Redl1d922962008-12-13 15:32:12 +00002746 return Owned(Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002747 T.getOpenLocation(),
2748 T.getCloseLocation()));
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002749}
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002750
2751/// objc-selector-expression
2752/// @selector '(' objc-keyword-selector ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002753ExprResult Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002754 SourceLocation SelectorLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002755
Chris Lattner4fef81d2008-08-05 06:19:09 +00002756 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002757 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector");
2758
Chris Lattner5f9e2722011-07-23 10:55:15 +00002759 SmallVector<IdentifierInfo *, 12> KeyIdents;
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002760 SourceLocation sLoc;
Douglas Gregor458433d2010-08-26 15:07:07 +00002761
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002762 BalancedDelimiterTracker T(*this, tok::l_paren);
2763 T.consumeOpen();
2764
Douglas Gregor458433d2010-08-26 15:07:07 +00002765 if (Tok.is(tok::code_completion)) {
2766 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2767 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002768 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002769 return ExprError();
2770 }
2771
Chris Lattner2fc5c242009-04-11 18:13:45 +00002772 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
Chris Lattner5add7542010-08-27 22:32:41 +00002773 if (!SelIdent && // missing selector name.
2774 Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002775 return ExprError(Diag(Tok, diag::err_expected_ident));
2776
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002777 KeyIdents.push_back(SelIdent);
Steve Naroff887407e2007-12-05 22:21:29 +00002778 unsigned nColons = 0;
2779 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002780 while (1) {
Chris Lattner5add7542010-08-27 22:32:41 +00002781 if (Tok.is(tok::coloncolon)) { // Handle :: in C++.
2782 ++nColons;
2783 KeyIdents.push_back(0);
2784 } else if (Tok.isNot(tok::colon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002785 return ExprError(Diag(Tok, diag::err_expected_colon));
2786
Chris Lattner5add7542010-08-27 22:32:41 +00002787 ++nColons;
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002788 ConsumeToken(); // Eat the ':' or '::'.
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002789 if (Tok.is(tok::r_paren))
2790 break;
Douglas Gregor458433d2010-08-26 15:07:07 +00002791
2792 if (Tok.is(tok::code_completion)) {
2793 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2794 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002795 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002796 return ExprError();
2797 }
2798
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002799 // Check for another keyword selector.
2800 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002801 SelIdent = ParseObjCSelectorPiece(Loc);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002802 KeyIdents.push_back(SelIdent);
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002803 if (!SelIdent && Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002804 break;
2805 }
Steve Naroff887407e2007-12-05 22:21:29 +00002806 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002807 T.consumeClose();
Steve Naroff887407e2007-12-05 22:21:29 +00002808 Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002809 return Owned(Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002810 T.getOpenLocation(),
2811 T.getCloseLocation()));
Gabor Greif58065b22007-10-19 15:38:32 +00002812 }
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002813
2814Decl *Parser::ParseLexedObjCMethodDefs(LexedMethod &LM) {
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002815
2816 // Save the current token position.
2817 SourceLocation OrigLoc = Tok.getLocation();
2818
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002819 assert(!LM.Toks.empty() && "ParseLexedObjCMethodDef - Empty body!");
2820 // Append the current token at the end of the new token stream so that it
2821 // doesn't get lost.
2822 LM.Toks.push_back(Tok);
2823 PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false);
2824
2825 // MDecl might be null due to error in method prototype, etc.
2826 Decl *MDecl = LM.D;
2827 // Consume the previously pushed token.
2828 ConsumeAnyToken();
2829
2830 assert(Tok.is(tok::l_brace) && "Inline objective-c method not starting with '{'");
2831 SourceLocation BraceLoc = Tok.getLocation();
2832 // Enter a scope for the method body.
2833 ParseScope BodyScope(this,
2834 Scope::ObjCMethodScope|Scope::FnScope|Scope::DeclScope);
2835
2836 // Tell the actions module that we have entered a method definition with the
2837 // specified Declarator for the method.
2838 Actions.ActOnStartOfObjCMethodDef(getCurScope(), MDecl);
2839
Erik Verbruggen6a91d382012-04-12 10:11:59 +00002840 if (SkipFunctionBodies && trySkippingFunctionBody()) {
2841 BodyScope.Exit();
2842 return Actions.ActOnFinishFunctionBody(MDecl, 0);
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002843 }
2844
2845 StmtResult FnBody(ParseCompoundStatementBody());
2846
2847 // If the function body could not be parsed, make a bogus compoundstmt.
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002848 if (FnBody.isInvalid()) {
2849 Sema::CompoundScopeRAII CompoundScope(Actions);
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002850 FnBody = Actions.ActOnCompoundStmt(BraceLoc, BraceLoc,
2851 MultiStmtArg(Actions), false);
Dmitri Gribenko625bb562012-02-14 22:14:32 +00002852 }
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002853
2854 // Leave the function body scope.
2855 BodyScope.Exit();
2856
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002857 MDecl = Actions.ActOnFinishFunctionBody(MDecl, FnBody.take());
2858
2859 if (Tok.getLocation() != OrigLoc) {
2860 // Due to parsing error, we either went over the cached tokens or
2861 // there are still cached tokens left. If it's the latter case skip the
2862 // leftover tokens.
2863 // Since this is an uncommon situation that should be avoided, use the
2864 // expensive isBeforeInTranslationUnit call.
2865 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
2866 OrigLoc))
2867 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
2868 ConsumeAnyToken();
2869 }
2870
2871 return MDecl;
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002872}