blob: d321baf836bfbcecb230f7dae213d126404c4339 [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"
Fariborz Jahanian08602352012-09-17 19:15:26 +000021#include "llvm/ADT/StringExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
24
Chris Lattner891dca62008-12-08 21:53:24 +000025/// ParseObjCAtDirectives - Handle parts of the external-declaration production:
Reid Spencer5f016e22007-07-11 17:01:13 +000026/// external-declaration: [C99 6.9]
27/// [OBJC] objc-class-definition
Steve Naroff91fa0b72007-10-29 21:39:29 +000028/// [OBJC] objc-class-declaration
29/// [OBJC] objc-alias-declaration
30/// [OBJC] objc-protocol-definition
31/// [OBJC] objc-method-definition
32/// [OBJC] '@' 'end'
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000033Parser::DeclGroupPtrTy Parser::ParseObjCAtDirectives() {
Reid Spencer5f016e22007-07-11 17:01:13 +000034 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +000035
Douglas Gregorc464ae82009-12-07 09:27:33 +000036 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000037 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +000038 cutOffParsing();
39 return DeclGroupPtrTy();
Douglas Gregorc464ae82009-12-07 09:27:33 +000040 }
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000041
42 Decl *SingleDecl = 0;
Steve Naroff861cf3e2007-08-23 18:16:40 +000043 switch (Tok.getObjCKeywordID()) {
Chris Lattner5ffb14b2008-08-23 02:02:23 +000044 case tok::objc_class:
45 return ParseObjCAtClassDeclaration(AtLoc);
John McCall7f040a92010-12-24 02:08:15 +000046 case tok::objc_interface: {
John McCall0b7e6782011-03-24 11:26:52 +000047 ParsedAttributes attrs(AttrFactory);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000048 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs);
49 break;
John McCall7f040a92010-12-24 02:08:15 +000050 }
51 case tok::objc_protocol: {
John McCall0b7e6782011-03-24 11:26:52 +000052 ParsedAttributes attrs(AttrFactory);
Douglas Gregorbd9482d2012-01-01 21:23:57 +000053 return ParseObjCAtProtocolDeclaration(AtLoc, attrs);
John McCall7f040a92010-12-24 02:08:15 +000054 }
Chris Lattner5ffb14b2008-08-23 02:02:23 +000055 case tok::objc_implementation:
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +000056 return ParseObjCAtImplementationDeclaration(AtLoc);
Chris Lattner5ffb14b2008-08-23 02:02:23 +000057 case tok::objc_end:
Fariborz Jahanian140ab232011-08-31 17:37:55 +000058 return ParseObjCAtEndDeclaration(AtLoc);
Chris Lattner5ffb14b2008-08-23 02:02:23 +000059 case tok::objc_compatibility_alias:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000060 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
61 break;
Chris Lattner5ffb14b2008-08-23 02:02:23 +000062 case tok::objc_synthesize:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000063 SingleDecl = ParseObjCPropertySynthesize(AtLoc);
64 break;
Chris Lattner5ffb14b2008-08-23 02:02:23 +000065 case tok::objc_dynamic:
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000066 SingleDecl = ParseObjCPropertyDynamic(AtLoc);
67 break;
Ted Kremenek32ad2ee2012-03-01 22:07:04 +000068 case tok::objc___experimental_modules_import:
David Blaikie4e4d0842012-03-11 07:00:24 +000069 if (getLangOpts().Modules)
Douglas Gregor94ad28b2012-01-03 18:24:14 +000070 return ParseModuleImport(AtLoc);
71
72 // Fall through
73
Chris Lattner5ffb14b2008-08-23 02:02:23 +000074 default:
75 Diag(AtLoc, diag::err_unexpected_at);
76 SkipUntil(tok::semi);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000077 SingleDecl = 0;
78 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000079 }
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000080 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +000081}
82
83///
Mike Stump1eb44332009-09-09 15:08:12 +000084/// objc-class-declaration:
Reid Spencer5f016e22007-07-11 17:01:13 +000085/// '@' 'class' identifier-list ';'
Mike Stump1eb44332009-09-09 15:08:12 +000086///
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000087Parser::DeclGroupPtrTy
88Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
Reid Spencer5f016e22007-07-11 17:01:13 +000089 ConsumeToken(); // the identifier "class"
Chris Lattner5f9e2722011-07-23 10:55:15 +000090 SmallVector<IdentifierInfo *, 8> ClassNames;
91 SmallVector<SourceLocation, 8> ClassLocs;
Ted Kremenekc09cba62009-11-17 23:12:20 +000092
Mike Stump1eb44332009-09-09 15:08:12 +000093
Reid Spencer5f016e22007-07-11 17:01:13 +000094 while (1) {
Chris Lattnerdf195262007-10-09 17:51:17 +000095 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000096 Diag(Tok, diag::err_expected_ident);
97 SkipUntil(tok::semi);
Fariborz Jahanian95ed7782011-08-27 20:50:59 +000098 return Actions.ConvertDeclToDeclGroup(0);
Reid Spencer5f016e22007-07-11 17:01:13 +000099 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000100 ClassNames.push_back(Tok.getIdentifierInfo());
Ted Kremenekc09cba62009-11-17 23:12:20 +0000101 ClassLocs.push_back(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +0000103
Chris Lattnerdf195262007-10-09 17:51:17 +0000104 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000106
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 ConsumeToken();
108 }
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 // Consume the ';'.
111 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@class"))
Fariborz Jahanian95ed7782011-08-27 20:50:59 +0000112 return Actions.ConvertDeclToDeclGroup(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Ted Kremenekc09cba62009-11-17 23:12:20 +0000114 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(),
115 ClassLocs.data(),
116 ClassNames.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000117}
118
Erik Verbruggend64251f2011-12-06 09:25:23 +0000119void Parser::CheckNestedObjCContexts(SourceLocation AtLoc)
120{
121 Sema::ObjCContainerKind ock = Actions.getObjCContainerKind();
122 if (ock == Sema::OCK_None)
123 return;
124
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +0000125 Decl *Decl = Actions.getObjCDeclContext();
126 if (CurParsedObjCImpl) {
127 CurParsedObjCImpl->finish(AtLoc);
128 } else {
129 Actions.ActOnAtEnd(getCurScope(), AtLoc);
130 }
Erik Verbruggend64251f2011-12-06 09:25:23 +0000131 Diag(AtLoc, diag::err_objc_missing_end)
132 << FixItHint::CreateInsertion(AtLoc, "@end\n");
133 if (Decl)
134 Diag(Decl->getLocStart(), diag::note_objc_container_start)
135 << (int) ock;
Erik Verbruggend64251f2011-12-06 09:25:23 +0000136}
137
Steve Naroffdac269b2007-08-20 21:31:48 +0000138///
139/// objc-interface:
140/// objc-class-interface-attributes[opt] objc-class-interface
141/// objc-category-interface
142///
143/// objc-class-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000144/// '@' 'interface' identifier objc-superclass[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000145/// objc-protocol-refs[opt]
Mike Stump1eb44332009-09-09 15:08:12 +0000146/// objc-class-instance-variables[opt]
Steve Naroffdac269b2007-08-20 21:31:48 +0000147/// objc-interface-decl-list
148/// @end
149///
150/// objc-category-interface:
Mike Stump1eb44332009-09-09 15:08:12 +0000151/// '@' 'interface' identifier '(' identifier[opt] ')'
Steve Naroffdac269b2007-08-20 21:31:48 +0000152/// objc-protocol-refs[opt]
153/// objc-interface-decl-list
154/// @end
155///
156/// objc-superclass:
157/// ':' identifier
158///
159/// objc-class-interface-attributes:
160/// __attribute__((visibility("default")))
161/// __attribute__((visibility("hidden")))
162/// __attribute__((deprecated))
163/// __attribute__((unavailable))
164/// __attribute__((objc_exception)) - used by NSException on 64-bit
Patrick Beardb2f68202012-04-06 18:12:22 +0000165/// __attribute__((objc_root_class))
Steve Naroffdac269b2007-08-20 21:31:48 +0000166///
Erik Verbruggend64251f2011-12-06 09:25:23 +0000167Decl *Parser::ParseObjCAtInterfaceDeclaration(SourceLocation AtLoc,
John McCall7f040a92010-12-24 02:08:15 +0000168 ParsedAttributes &attrs) {
Steve Naroff861cf3e2007-08-23 18:16:40 +0000169 assert(Tok.isObjCAtKeyword(tok::objc_interface) &&
Steve Naroffdac269b2007-08-20 21:31:48 +0000170 "ParseObjCAtInterfaceDeclaration(): Expected @interface");
Erik Verbruggend64251f2011-12-06 09:25:23 +0000171 CheckNestedObjCContexts(AtLoc);
Steve Naroffdac269b2007-08-20 21:31:48 +0000172 ConsumeToken(); // the "interface" identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000173
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000174 // Code completion after '@interface'.
175 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000176 Actions.CodeCompleteObjCInterfaceDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000177 cutOffParsing();
178 return 0;
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000179 }
180
Chris Lattnerdf195262007-10-09 17:51:17 +0000181 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000182 Diag(Tok, diag::err_expected_ident); // missing class or category name.
John McCalld226f652010-08-21 09:40:31 +0000183 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000184 }
Fariborz Jahanian63e963c2009-11-16 18:57:01 +0000185
Steve Naroffdac269b2007-08-20 21:31:48 +0000186 // We have a class or category name - consume it.
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000187 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Steve Naroffdac269b2007-08-20 21:31:48 +0000188 SourceLocation nameLoc = ConsumeToken();
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000189 if (Tok.is(tok::l_paren) &&
190 !isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { // we have a category.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000191
192 BalancedDelimiterTracker T(*this, tok::l_paren);
193 T.consumeOpen();
194
195 SourceLocation categoryLoc;
Steve Naroffdac269b2007-08-20 21:31:48 +0000196 IdentifierInfo *categoryId = 0;
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000197 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000198 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000199 cutOffParsing();
200 return 0;
Douglas Gregor33ced0b2009-11-18 19:08:43 +0000201 }
202
Steve Naroff527fe232007-08-23 19:56:30 +0000203 // For ObjC2, the category name is optional (not an error).
Chris Lattnerdf195262007-10-09 17:51:17 +0000204 if (Tok.is(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000205 categoryId = Tok.getIdentifierInfo();
206 categoryLoc = ConsumeToken();
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000207 }
David Blaikie4e4d0842012-03-11 07:00:24 +0000208 else if (!getLangOpts().ObjC2) {
Steve Naroff527fe232007-08-23 19:56:30 +0000209 Diag(Tok, diag::err_expected_ident); // missing category name.
John McCalld226f652010-08-21 09:40:31 +0000210 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000211 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000212
213 T.consumeClose();
214 if (T.getCloseLocation().isInvalid())
John McCalld226f652010-08-21 09:40:31 +0000215 return 0;
Douglas Gregor13d05ac2011-09-23 19:19:41 +0000216
217 if (!attrs.empty()) { // categories don't support attributes.
218 Diag(nameLoc, diag::err_objc_no_attributes_on_category);
219 attrs.clear();
Steve Naroffdac269b2007-08-20 21:31:48 +0000220 }
Douglas Gregor13d05ac2011-09-23 19:19:41 +0000221
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000222 // Next, we need to check for any protocol references.
223 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000224 SmallVector<Decl *, 8> ProtocolRefs;
225 SmallVector<SourceLocation, 8> ProtocolLocs;
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000226 if (Tok.is(tok::less) &&
227 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000228 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000229 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000230
John McCalld226f652010-08-21 09:40:31 +0000231 Decl *CategoryType =
Erik Verbruggend64251f2011-12-06 09:25:23 +0000232 Actions.ActOnStartCategoryInterface(AtLoc,
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000233 nameId, nameLoc,
234 categoryId, categoryLoc,
235 ProtocolRefs.data(),
236 ProtocolRefs.size(),
237 ProtocolLocs.data(),
238 EndProtoLoc);
Fariborz Jahaniane6f07f52011-08-19 18:02:47 +0000239
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000240 if (Tok.is(tok::l_brace))
Erik Verbruggend64251f2011-12-06 09:25:23 +0000241 ParseObjCClassInstanceVariables(CategoryType, tok::objc_private, AtLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000242
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000243 ParseObjCInterfaceDeclList(tok::objc_not_keyword, CategoryType);
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000244 return CategoryType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000245 }
246 // Parse a class interface.
247 IdentifierInfo *superClassId = 0;
248 SourceLocation superClassLoc;
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000249
Chris Lattnerdf195262007-10-09 17:51:17 +0000250 if (Tok.is(tok::colon)) { // a super class is specified.
Steve Naroffdac269b2007-08-20 21:31:48 +0000251 ConsumeToken();
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000252
253 // Code completion of superclass names.
254 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000255 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000256 cutOffParsing();
257 return 0;
Douglas Gregor3b49aca2009-11-18 16:26:39 +0000258 }
259
Chris Lattnerdf195262007-10-09 17:51:17 +0000260 if (Tok.isNot(tok::identifier)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000261 Diag(Tok, diag::err_expected_ident); // missing super class name.
John McCalld226f652010-08-21 09:40:31 +0000262 return 0;
Steve Naroffdac269b2007-08-20 21:31:48 +0000263 }
264 superClassId = Tok.getIdentifierInfo();
265 superClassLoc = ConsumeToken();
266 }
267 // Next, we need to check for any protocol references.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000268 SmallVector<Decl *, 8> ProtocolRefs;
269 SmallVector<SourceLocation, 8> ProtocolLocs;
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000270 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner06036d32008-07-26 04:13:19 +0000271 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +0000272 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
273 LAngleLoc, EndProtoLoc))
John McCalld226f652010-08-21 09:40:31 +0000274 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000275
John McCalld226f652010-08-21 09:40:31 +0000276 Decl *ClsType =
Erik Verbruggend64251f2011-12-06 09:25:23 +0000277 Actions.ActOnStartClassInterface(AtLoc, nameId, nameLoc,
Chris Lattner06036d32008-07-26 04:13:19 +0000278 superClassId, superClassLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +0000279 ProtocolRefs.data(), ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +0000280 ProtocolLocs.data(),
John McCall7f040a92010-12-24 02:08:15 +0000281 EndProtoLoc, attrs.getList());
Mike Stump1eb44332009-09-09 15:08:12 +0000282
Chris Lattnerdf195262007-10-09 17:51:17 +0000283 if (Tok.is(tok::l_brace))
Erik Verbruggend64251f2011-12-06 09:25:23 +0000284 ParseObjCClassInstanceVariables(ClsType, tok::objc_protected, AtLoc);
Steve Naroffdac269b2007-08-20 21:31:48 +0000285
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000286 ParseObjCInterfaceDeclList(tok::objc_interface, ClsType);
Fariborz Jahanian5512ba52010-04-26 21:18:08 +0000287 return ClsType;
Steve Naroffdac269b2007-08-20 21:31:48 +0000288}
289
John McCalld0014542009-12-03 22:31:13 +0000290/// The Objective-C property callback. This should be defined where
291/// it's used, but instead it's been lifted to here to support VS2005.
292struct Parser::ObjCPropertyCallback : FieldCallback {
David Blaikie99ba9e32011-12-20 02:48:34 +0000293private:
294 virtual void anchor();
295public:
John McCalld0014542009-12-03 22:31:13 +0000296 Parser &P;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000297 SmallVectorImpl<Decl *> &Props;
John McCalld0014542009-12-03 22:31:13 +0000298 ObjCDeclSpec &OCDS;
299 SourceLocation AtLoc;
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000300 SourceLocation LParenLoc;
John McCalld0014542009-12-03 22:31:13 +0000301 tok::ObjCKeywordKind MethodImplKind;
302
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000303 ObjCPropertyCallback(Parser &P,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000304 SmallVectorImpl<Decl *> &Props,
John McCalld0014542009-12-03 22:31:13 +0000305 ObjCDeclSpec &OCDS, SourceLocation AtLoc,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000306 SourceLocation LParenLoc,
John McCalld0014542009-12-03 22:31:13 +0000307 tok::ObjCKeywordKind MethodImplKind) :
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000308 P(P), Props(Props), OCDS(OCDS), AtLoc(AtLoc), LParenLoc(LParenLoc),
John McCalld0014542009-12-03 22:31:13 +0000309 MethodImplKind(MethodImplKind) {
310 }
311
Eli Friedmandcdff462012-08-08 23:53:27 +0000312 void invoke(ParsingFieldDeclarator &FD) {
John McCalld0014542009-12-03 22:31:13 +0000313 if (FD.D.getIdentifier() == 0) {
314 P.Diag(AtLoc, diag::err_objc_property_requires_field_name)
315 << FD.D.getSourceRange();
Eli Friedmandcdff462012-08-08 23:53:27 +0000316 return;
John McCalld0014542009-12-03 22:31:13 +0000317 }
318 if (FD.BitfieldSize) {
319 P.Diag(AtLoc, diag::err_objc_property_bitfield)
320 << FD.D.getSourceRange();
Eli Friedmandcdff462012-08-08 23:53:27 +0000321 return;
John McCalld0014542009-12-03 22:31:13 +0000322 }
323
324 // Install the property declarator into interfaceDecl.
325 IdentifierInfo *SelName =
326 OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier();
327
328 Selector GetterSel =
329 P.PP.getSelectorTable().getNullarySelector(SelName);
330 IdentifierInfo *SetterName = OCDS.getSetterName();
331 Selector SetterSel;
332 if (SetterName)
333 SetterSel = P.PP.getSelectorTable().getSelector(1, &SetterName);
334 else
335 SetterSel = SelectorTable::constructSetterName(P.PP.getIdentifierTable(),
336 P.PP.getSelectorTable(),
337 FD.D.getIdentifier());
338 bool isOverridingProperty = false;
John McCalld226f652010-08-21 09:40:31 +0000339 Decl *Property =
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000340 P.Actions.ActOnProperty(P.getCurScope(), AtLoc, LParenLoc,
341 FD, OCDS,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000342 GetterSel, SetterSel,
John McCalld0014542009-12-03 22:31:13 +0000343 &isOverridingProperty,
344 MethodImplKind);
345 if (!isOverridingProperty)
346 Props.push_back(Property);
347
Eli Friedmanf66a0dd2012-08-08 23:04:35 +0000348 FD.complete(Property);
John McCalld0014542009-12-03 22:31:13 +0000349 }
350};
351
David Blaikie99ba9e32011-12-20 02:48:34 +0000352void Parser::ObjCPropertyCallback::anchor() {
353}
354
Steve Naroffdac269b2007-08-20 21:31:48 +0000355/// objc-interface-decl-list:
356/// empty
Steve Naroffdac269b2007-08-20 21:31:48 +0000357/// objc-interface-decl-list objc-property-decl [OBJC2]
Steve Naroff294494e2007-08-22 16:35:03 +0000358/// objc-interface-decl-list objc-method-requirement [OBJC2]
Steve Naroff3536b442007-09-06 21:24:23 +0000359/// objc-interface-decl-list objc-method-proto ';'
Steve Naroffdac269b2007-08-20 21:31:48 +0000360/// objc-interface-decl-list declaration
361/// objc-interface-decl-list ';'
362///
Steve Naroff294494e2007-08-22 16:35:03 +0000363/// objc-method-requirement: [OBJC2]
364/// @required
365/// @optional
366///
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000367void Parser::ParseObjCInterfaceDeclList(tok::ObjCKeywordKind contextKey,
368 Decl *CDecl) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000369 SmallVector<Decl *, 32> allMethods;
370 SmallVector<Decl *, 16> allProperties;
371 SmallVector<DeclGroupPtrTy, 8> allTUVariables;
Fariborz Jahanian00933592007-09-18 00:25:23 +0000372 tok::ObjCKeywordKind MethodImplKind = tok::objc_not_keyword;
Mike Stump1eb44332009-09-09 15:08:12 +0000373
Ted Kremenek782f2f52010-01-07 01:20:12 +0000374 SourceRange AtEnd;
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +0000375
Steve Naroff294494e2007-08-22 16:35:03 +0000376 while (1) {
Chris Lattnere82a10f2008-10-20 05:46:22 +0000377 // If this is a method prototype, parse it.
Chris Lattnerdf195262007-10-09 17:51:17 +0000378 if (Tok.is(tok::minus) || Tok.is(tok::plus)) {
Fariborz Jahaniand30ec702012-07-26 17:32:28 +0000379 if (Decl *methodPrototype =
380 ParseObjCMethodPrototype(MethodImplKind, false))
381 allMethods.push_back(methodPrototype);
Steve Naroff3536b442007-09-06 21:24:23 +0000382 // Consume the ';' here, since ParseObjCMethodPrototype() is re-used for
383 // method definitions.
Argyrios Kyrtzidis0db9f4d2011-12-17 04:13:22 +0000384 if (ExpectAndConsumeSemi(diag::err_expected_semi_after_method_proto)) {
385 // We didn't find a semi and we error'ed out. Skip until a ';' or '@'.
386 SkipUntil(tok::at, /*StopAtSemi=*/true, /*DontConsume=*/true);
387 if (Tok.is(tok::semi))
388 ConsumeToken();
389 }
Steve Naroff294494e2007-08-22 16:35:03 +0000390 continue;
391 }
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000392 if (Tok.is(tok::l_paren)) {
393 Diag(Tok, diag::err_expected_minus_or_plus);
John McCalld226f652010-08-21 09:40:31 +0000394 ParseObjCMethodDecl(Tok.getLocation(),
395 tok::minus,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000396 MethodImplKind, false);
Fariborz Jahanian05511fa2010-04-02 23:15:40 +0000397 continue;
398 }
Chris Lattnere82a10f2008-10-20 05:46:22 +0000399 // Ignore excess semicolons.
400 if (Tok.is(tok::semi)) {
Steve Naroff294494e2007-08-22 16:35:03 +0000401 ConsumeToken();
Chris Lattnere82a10f2008-10-20 05:46:22 +0000402 continue;
403 }
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Chris Lattnerbc662af2008-10-20 06:10:06 +0000405 // If we got to the end of the file, exit the loop.
Chris Lattnere82a10f2008-10-20 05:46:22 +0000406 if (Tok.is(tok::eof))
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000407 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000409 // Code completion within an Objective-C interface.
410 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000411 Actions.CodeCompleteOrdinaryName(getCurScope(),
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +0000412 CurParsedObjCImpl? Sema::PCC_ObjCImplementation
John McCallf312b1e2010-08-26 23:41:50 +0000413 : Sema::PCC_ObjCInterface);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000414 return cutOffParsing();
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000415 }
416
Chris Lattnere82a10f2008-10-20 05:46:22 +0000417 // If we don't have an @ directive, parse it as a function definition.
418 if (Tok.isNot(tok::at)) {
Chris Lattner1fd80112009-01-09 04:34:13 +0000419 // The code below does not consume '}'s because it is afraid of eating the
420 // end of a namespace. Because of the way this code is structured, an
421 // erroneous r_brace would cause an infinite loop if not handled here.
422 if (Tok.is(tok::r_brace))
423 break;
Sean Hunt2edf0a22012-06-23 05:07:58 +0000424 ParsedAttributesWithRange attrs(AttrFactory);
John McCall7f040a92010-12-24 02:08:15 +0000425 allTUVariables.push_back(ParseDeclarationOrFunctionDefinition(attrs));
Chris Lattnere82a10f2008-10-20 05:46:22 +0000426 continue;
427 }
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Chris Lattnere82a10f2008-10-20 05:46:22 +0000429 // Otherwise, we have an @ directive, eat the @.
430 SourceLocation AtLoc = ConsumeToken(); // the "@"
Douglas Gregorc464ae82009-12-07 09:27:33 +0000431 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000432 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000433 return cutOffParsing();
Douglas Gregorc464ae82009-12-07 09:27:33 +0000434 }
435
Chris Lattnera2449b22008-10-20 05:57:40 +0000436 tok::ObjCKeywordKind DirectiveKind = Tok.getObjCKeywordID();
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Chris Lattnera2449b22008-10-20 05:57:40 +0000438 if (DirectiveKind == tok::objc_end) { // @end -> terminate list
Ted Kremenek782f2f52010-01-07 01:20:12 +0000439 AtEnd.setBegin(AtLoc);
440 AtEnd.setEnd(Tok.getLocation());
Chris Lattnere82a10f2008-10-20 05:46:22 +0000441 break;
Douglas Gregorc3d43b72010-03-16 06:04:47 +0000442 } else if (DirectiveKind == tok::objc_not_keyword) {
443 Diag(Tok, diag::err_objc_unknown_at);
444 SkipUntil(tok::semi);
445 continue;
Chris Lattnerbc662af2008-10-20 06:10:06 +0000446 }
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Chris Lattnerbc662af2008-10-20 06:10:06 +0000448 // Eat the identifier.
449 ConsumeToken();
450
Chris Lattnera2449b22008-10-20 05:57:40 +0000451 switch (DirectiveKind) {
452 default:
Chris Lattnerbc662af2008-10-20 06:10:06 +0000453 // FIXME: If someone forgets an @end on a protocol, this loop will
454 // continue to eat up tons of stuff and spew lots of nonsense errors. It
455 // would probably be better to bail out if we saw an @class or @interface
456 // or something like that.
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000457 Diag(AtLoc, diag::err_objc_illegal_interface_qual);
Chris Lattnerbc662af2008-10-20 06:10:06 +0000458 // Skip until we see an '@' or '}' or ';'.
Chris Lattnera2449b22008-10-20 05:57:40 +0000459 SkipUntil(tok::r_brace, tok::at);
460 break;
Fariborz Jahanian46d545e2010-11-02 00:44:43 +0000461
462 case tok::objc_implementation:
Fariborz Jahaniandf81c2c2010-11-09 20:38:00 +0000463 case tok::objc_interface:
Erik Verbruggend64251f2011-12-06 09:25:23 +0000464 Diag(AtLoc, diag::err_objc_missing_end)
465 << FixItHint::CreateInsertion(AtLoc, "@end\n");
466 Diag(CDecl->getLocStart(), diag::note_objc_container_start)
467 << (int) Actions.getObjCContainerKind();
Fariborz Jahanian46d545e2010-11-02 00:44:43 +0000468 ConsumeToken();
469 break;
470
Chris Lattnera2449b22008-10-20 05:57:40 +0000471 case tok::objc_required:
Chris Lattnera2449b22008-10-20 05:57:40 +0000472 case tok::objc_optional:
Chris Lattnera2449b22008-10-20 05:57:40 +0000473 // This is only valid on protocols.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000474 // FIXME: Should this check for ObjC2 being enabled?
Chris Lattnere82a10f2008-10-20 05:46:22 +0000475 if (contextKey != tok::objc_protocol)
Chris Lattnerbc662af2008-10-20 06:10:06 +0000476 Diag(AtLoc, diag::err_objc_directive_only_in_protocol);
Chris Lattnera2449b22008-10-20 05:57:40 +0000477 else
Chris Lattnerbc662af2008-10-20 06:10:06 +0000478 MethodImplKind = DirectiveKind;
Chris Lattnera2449b22008-10-20 05:57:40 +0000479 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Chris Lattnera2449b22008-10-20 05:57:40 +0000481 case tok::objc_property:
David Blaikie4e4d0842012-03-11 07:00:24 +0000482 if (!getLangOpts().ObjC2)
Chris Lattnerb321c0c2010-12-17 05:40:22 +0000483 Diag(AtLoc, diag::err_objc_properties_require_objc2);
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000484
Chris Lattnere82a10f2008-10-20 05:46:22 +0000485 ObjCDeclSpec OCDS;
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000486 SourceLocation LParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +0000487 // Parse property attribute list, if any.
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000488 if (Tok.is(tok::l_paren)) {
489 LParenLoc = Tok.getLocation();
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000490 ParseObjCPropertyAttribute(OCDS);
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000491 }
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000493 ObjCPropertyCallback Callback(*this, allProperties,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000494 OCDS, AtLoc, LParenLoc, MethodImplKind);
John McCallbdd563e2009-11-03 02:38:08 +0000495
Chris Lattnere82a10f2008-10-20 05:46:22 +0000496 // Parse all the comma separated declarators.
Eli Friedmanf66a0dd2012-08-08 23:04:35 +0000497 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +0000498 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +0000499
John McCall7da19ea2011-03-26 01:53:26 +0000500 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
Chris Lattnera2449b22008-10-20 05:57:40 +0000501 break;
Steve Narofff28b2642007-09-05 23:30:30 +0000502 }
Steve Naroff294494e2007-08-22 16:35:03 +0000503 }
Chris Lattnerbc662af2008-10-20 06:10:06 +0000504
505 // We break out of the big loop in two cases: when we see @end or when we see
506 // EOF. In the former case, eat the @end. In the later case, emit an error.
Douglas Gregorc464ae82009-12-07 09:27:33 +0000507 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000508 Actions.CodeCompleteObjCAtDirective(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000509 return cutOffParsing();
Erik Verbruggend64251f2011-12-06 09:25:23 +0000510 } else if (Tok.isObjCAtKeyword(tok::objc_end)) {
Chris Lattnerbc662af2008-10-20 06:10:06 +0000511 ConsumeToken(); // the "end" identifier
Erik Verbruggend64251f2011-12-06 09:25:23 +0000512 } else {
513 Diag(Tok, diag::err_objc_missing_end)
514 << FixItHint::CreateInsertion(Tok.getLocation(), "\n@end\n");
515 Diag(CDecl->getLocStart(), diag::note_objc_container_start)
516 << (int) Actions.getObjCContainerKind();
517 AtEnd.setBegin(Tok.getLocation());
518 AtEnd.setEnd(Tok.getLocation());
519 }
Mike Stump1eb44332009-09-09 15:08:12 +0000520
Chris Lattnera2449b22008-10-20 05:57:40 +0000521 // Insert collected methods declarations into the @interface object.
Chris Lattnerbc662af2008-10-20 06:10:06 +0000522 // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000523 Actions.ActOnAtEnd(getCurScope(), AtEnd,
Mike Stump1eb44332009-09-09 15:08:12 +0000524 allMethods.data(), allMethods.size(),
Jay Foadbeaaccd2009-05-21 09:52:38 +0000525 allProperties.data(), allProperties.size(),
526 allTUVariables.data(), allTUVariables.size());
Steve Naroff294494e2007-08-22 16:35:03 +0000527}
528
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000529/// Parse property attribute declarations.
530///
531/// property-attr-decl: '(' property-attrlist ')'
532/// property-attrlist:
533/// property-attribute
534/// property-attrlist ',' property-attribute
535/// property-attribute:
536/// getter '=' identifier
537/// setter '=' identifier ':'
538/// readonly
539/// readwrite
540/// assign
541/// retain
542/// copy
543/// nonatomic
John McCallf85e1932011-06-15 23:02:42 +0000544/// atomic
545/// strong
546/// weak
547/// unsafe_unretained
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000548///
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000549void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000550 assert(Tok.getKind() == tok::l_paren);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000551 BalancedDelimiterTracker T(*this, tok::l_paren);
552 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +0000553
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000554 while (1) {
Steve Naroffece8e712009-10-08 21:55:05 +0000555 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000556 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000557 return cutOffParsing();
Steve Naroffece8e712009-10-08 21:55:05 +0000558 }
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000559 const IdentifierInfo *II = Tok.getIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000560
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000561 // If this is not an identifier at all, bail out early.
562 if (II == 0) {
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000563 T.consumeClose();
Chris Lattnerf6ed8552008-10-20 07:22:18 +0000564 return;
565 }
Mike Stump1eb44332009-09-09 15:08:12 +0000566
Chris Lattner156b0612008-10-20 07:37:22 +0000567 SourceLocation AttrName = ConsumeToken(); // consume last attribute name
Mike Stump1eb44332009-09-09 15:08:12 +0000568
Chris Lattner92e62b02008-11-20 04:42:34 +0000569 if (II->isStr("readonly"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000570 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
Chris Lattner92e62b02008-11-20 04:42:34 +0000571 else if (II->isStr("assign"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000572 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
John McCallf85e1932011-06-15 23:02:42 +0000573 else if (II->isStr("unsafe_unretained"))
574 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained);
Chris Lattner92e62b02008-11-20 04:42:34 +0000575 else if (II->isStr("readwrite"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000576 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
Chris Lattner92e62b02008-11-20 04:42:34 +0000577 else if (II->isStr("retain"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000578 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
John McCallf85e1932011-06-15 23:02:42 +0000579 else if (II->isStr("strong"))
580 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_strong);
Chris Lattner92e62b02008-11-20 04:42:34 +0000581 else if (II->isStr("copy"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000582 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_copy);
Chris Lattner92e62b02008-11-20 04:42:34 +0000583 else if (II->isStr("nonatomic"))
Chris Lattnere00da7c2008-10-20 07:39:53 +0000584 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nonatomic);
Fariborz Jahanian45937ae2011-06-11 00:45:12 +0000585 else if (II->isStr("atomic"))
586 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_atomic);
John McCallf85e1932011-06-15 23:02:42 +0000587 else if (II->isStr("weak"))
588 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_weak);
Chris Lattner92e62b02008-11-20 04:42:34 +0000589 else if (II->isStr("getter") || II->isStr("setter")) {
Anders Carlsson42499be2010-10-02 17:45:21 +0000590 bool IsSetter = II->getNameStart()[0] == 's';
591
Chris Lattnere00da7c2008-10-20 07:39:53 +0000592 // getter/setter require extra treatment.
Anders Carlsson42499be2010-10-02 17:45:21 +0000593 unsigned DiagID = IsSetter ? diag::err_objc_expected_equal_for_setter :
594 diag::err_objc_expected_equal_for_getter;
595
596 if (ExpectAndConsume(tok::equal, DiagID, "", tok::r_paren))
Chris Lattnerdd5b5f22008-10-20 07:00:43 +0000597 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000598
Douglas Gregor4ad96852009-11-19 07:41:15 +0000599 if (Tok.is(tok::code_completion)) {
Anders Carlsson42499be2010-10-02 17:45:21 +0000600 if (IsSetter)
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000601 Actions.CodeCompleteObjCPropertySetter(getCurScope());
Douglas Gregor4ad96852009-11-19 07:41:15 +0000602 else
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000603 Actions.CodeCompleteObjCPropertyGetter(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000604 return cutOffParsing();
Douglas Gregor4ad96852009-11-19 07:41:15 +0000605 }
606
Anders Carlsson42499be2010-10-02 17:45:21 +0000607
608 SourceLocation SelLoc;
609 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(SelLoc);
610
611 if (!SelIdent) {
612 Diag(Tok, diag::err_objc_expected_selector_for_getter_setter)
613 << IsSetter;
Chris Lattner8ca329c2008-10-20 07:24:39 +0000614 SkipUntil(tok::r_paren);
615 return;
616 }
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Anders Carlsson42499be2010-10-02 17:45:21 +0000618 if (IsSetter) {
Chris Lattner8ca329c2008-10-20 07:24:39 +0000619 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_setter);
Anders Carlsson42499be2010-10-02 17:45:21 +0000620 DS.setSetterName(SelIdent);
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Fariborz Jahaniane0097db2010-02-15 22:20:11 +0000622 if (ExpectAndConsume(tok::colon,
623 diag::err_expected_colon_after_setter_name, "",
Chris Lattner156b0612008-10-20 07:37:22 +0000624 tok::r_paren))
Chris Lattner8ca329c2008-10-20 07:24:39 +0000625 return;
Chris Lattner8ca329c2008-10-20 07:24:39 +0000626 } else {
627 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_getter);
Anders Carlsson42499be2010-10-02 17:45:21 +0000628 DS.setGetterName(SelIdent);
Chris Lattner8ca329c2008-10-20 07:24:39 +0000629 }
Chris Lattnere00da7c2008-10-20 07:39:53 +0000630 } else {
Chris Lattnera9500f02008-11-19 07:49:38 +0000631 Diag(AttrName, diag::err_objc_expected_property_attr) << II;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000632 SkipUntil(tok::r_paren);
633 return;
Chris Lattnercd9f4b32008-10-20 07:15:22 +0000634 }
Mike Stump1eb44332009-09-09 15:08:12 +0000635
Chris Lattner156b0612008-10-20 07:37:22 +0000636 if (Tok.isNot(tok::comma))
637 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Chris Lattner156b0612008-10-20 07:37:22 +0000639 ConsumeToken();
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000640 }
Mike Stump1eb44332009-09-09 15:08:12 +0000641
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000642 T.consumeClose();
Fariborz Jahaniand0f97d12007-08-31 16:11:31 +0000643}
644
Steve Naroff3536b442007-09-06 21:24:23 +0000645/// objc-method-proto:
Mike Stump1eb44332009-09-09 15:08:12 +0000646/// objc-instance-method objc-method-decl objc-method-attributes[opt]
Steve Naroff3536b442007-09-06 21:24:23 +0000647/// objc-class-method objc-method-decl objc-method-attributes[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000648///
649/// objc-instance-method: '-'
650/// objc-class-method: '+'
651///
Steve Naroff4985ace2007-08-22 18:35:33 +0000652/// objc-method-attributes: [OBJC2]
653/// __attribute__((deprecated))
654///
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000655Decl *Parser::ParseObjCMethodPrototype(tok::ObjCKeywordKind MethodImplKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000656 bool MethodDefinition) {
Chris Lattnerdf195262007-10-09 17:51:17 +0000657 assert((Tok.is(tok::minus) || Tok.is(tok::plus)) && "expected +/-");
Steve Naroff294494e2007-08-22 16:35:03 +0000658
Mike Stump1eb44332009-09-09 15:08:12 +0000659 tok::TokenKind methodType = Tok.getKind();
Steve Naroffbef11852007-10-26 20:53:56 +0000660 SourceLocation mLoc = ConsumeToken();
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000661 Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000662 MethodDefinition);
Steve Naroff3536b442007-09-06 21:24:23 +0000663 // Since this rule is used for both method declarations and definitions,
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000664 // the caller is (optionally) responsible for consuming the ';'.
Steve Narofff28b2642007-09-05 23:30:30 +0000665 return MDecl;
Steve Naroff294494e2007-08-22 16:35:03 +0000666}
667
668/// objc-selector:
669/// identifier
670/// one of
671/// enum struct union if else while do for switch case default
672/// break continue return goto asm sizeof typeof __alignof
673/// unsigned long const short volatile signed restrict _Complex
674/// in out inout bycopy byref oneway int char float double void _Bool
675///
Chris Lattner2fc5c242009-04-11 18:13:45 +0000676IdentifierInfo *Parser::ParseObjCSelectorPiece(SourceLocation &SelectorLoc) {
Fariborz Jahanianbe747402010-09-03 01:26:16 +0000677
Chris Lattnerff384912007-10-07 02:00:24 +0000678 switch (Tok.getKind()) {
679 default:
680 return 0;
Fariborz Jahanianafbc6812010-09-03 17:33:04 +0000681 case tok::ampamp:
682 case tok::ampequal:
683 case tok::amp:
684 case tok::pipe:
685 case tok::tilde:
686 case tok::exclaim:
687 case tok::exclaimequal:
688 case tok::pipepipe:
689 case tok::pipeequal:
690 case tok::caret:
691 case tok::caretequal: {
Fariborz Jahanian3846ca22010-09-03 18:01:09 +0000692 std::string ThisTok(PP.getSpelling(Tok));
Fariborz Jahanianafbc6812010-09-03 17:33:04 +0000693 if (isalpha(ThisTok[0])) {
694 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok.data());
695 Tok.setKind(tok::identifier);
696 SelectorLoc = ConsumeToken();
697 return II;
698 }
699 return 0;
700 }
701
Chris Lattnerff384912007-10-07 02:00:24 +0000702 case tok::identifier:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000703 case tok::kw_asm:
Chris Lattnerff384912007-10-07 02:00:24 +0000704 case tok::kw_auto:
Chris Lattner9298d962007-11-15 05:25:19 +0000705 case tok::kw_bool:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000706 case tok::kw_break:
707 case tok::kw_case:
708 case tok::kw_catch:
709 case tok::kw_char:
710 case tok::kw_class:
711 case tok::kw_const:
712 case tok::kw_const_cast:
713 case tok::kw_continue:
714 case tok::kw_default:
715 case tok::kw_delete:
716 case tok::kw_do:
717 case tok::kw_double:
718 case tok::kw_dynamic_cast:
719 case tok::kw_else:
720 case tok::kw_enum:
721 case tok::kw_explicit:
722 case tok::kw_export:
723 case tok::kw_extern:
724 case tok::kw_false:
725 case tok::kw_float:
726 case tok::kw_for:
727 case tok::kw_friend:
728 case tok::kw_goto:
729 case tok::kw_if:
730 case tok::kw_inline:
731 case tok::kw_int:
732 case tok::kw_long:
733 case tok::kw_mutable:
734 case tok::kw_namespace:
735 case tok::kw_new:
736 case tok::kw_operator:
737 case tok::kw_private:
738 case tok::kw_protected:
739 case tok::kw_public:
740 case tok::kw_register:
741 case tok::kw_reinterpret_cast:
742 case tok::kw_restrict:
743 case tok::kw_return:
744 case tok::kw_short:
745 case tok::kw_signed:
746 case tok::kw_sizeof:
747 case tok::kw_static:
748 case tok::kw_static_cast:
749 case tok::kw_struct:
750 case tok::kw_switch:
751 case tok::kw_template:
752 case tok::kw_this:
753 case tok::kw_throw:
754 case tok::kw_true:
755 case tok::kw_try:
756 case tok::kw_typedef:
757 case tok::kw_typeid:
758 case tok::kw_typename:
759 case tok::kw_typeof:
760 case tok::kw_union:
761 case tok::kw_unsigned:
762 case tok::kw_using:
763 case tok::kw_virtual:
764 case tok::kw_void:
765 case tok::kw_volatile:
766 case tok::kw_wchar_t:
767 case tok::kw_while:
Chris Lattnerff384912007-10-07 02:00:24 +0000768 case tok::kw__Bool:
769 case tok::kw__Complex:
Anders Carlssonef048ef2008-08-23 21:00:01 +0000770 case tok::kw___alignof:
Chris Lattnerff384912007-10-07 02:00:24 +0000771 IdentifierInfo *II = Tok.getIdentifierInfo();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000772 SelectorLoc = ConsumeToken();
Chris Lattnerff384912007-10-07 02:00:24 +0000773 return II;
Fariborz Jahaniand0649512007-09-27 19:52:15 +0000774 }
Steve Naroff294494e2007-08-22 16:35:03 +0000775}
776
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000777/// objc-for-collection-in: 'in'
778///
Fariborz Jahanian335a2d42008-01-04 23:04:08 +0000779bool Parser::isTokIdentifier_in() const {
Fariborz Jahanian3ba5a0f2008-01-03 17:55:25 +0000780 // FIXME: May have to do additional look-ahead to only allow for
781 // valid tokens following an 'in'; such as an identifier, unary operators,
782 // '[' etc.
David Blaikie4e4d0842012-03-11 07:00:24 +0000783 return (getLangOpts().ObjC2 && Tok.is(tok::identifier) &&
Chris Lattner5ffb14b2008-08-23 02:02:23 +0000784 Tok.getIdentifierInfo() == ObjCTypeQuals[objc_in]);
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000785}
786
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000787/// ParseObjCTypeQualifierList - This routine parses the objective-c's type
Chris Lattnere8b724d2007-12-12 06:56:32 +0000788/// qualifier list and builds their bitmask representation in the input
789/// argument.
Steve Naroff294494e2007-08-22 16:35:03 +0000790///
791/// objc-type-qualifiers:
792/// objc-type-qualifier
793/// objc-type-qualifiers objc-type-qualifier
794///
Douglas Gregorb77cab92011-03-08 19:17:54 +0000795void Parser::ParseObjCTypeQualifierList(ObjCDeclSpec &DS,
John McCallcdda47f2011-10-01 09:56:14 +0000796 Declarator::TheContext Context) {
797 assert(Context == Declarator::ObjCParameterContext ||
798 Context == Declarator::ObjCResultContext);
799
Chris Lattnere8b724d2007-12-12 06:56:32 +0000800 while (1) {
Douglas Gregord32b0222010-08-24 01:06:58 +0000801 if (Tok.is(tok::code_completion)) {
Douglas Gregorb77cab92011-03-08 19:17:54 +0000802 Actions.CodeCompleteObjCPassingType(getCurScope(), DS,
John McCallcdda47f2011-10-01 09:56:14 +0000803 Context == Declarator::ObjCParameterContext);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000804 return cutOffParsing();
Douglas Gregord32b0222010-08-24 01:06:58 +0000805 }
806
Chris Lattnercb53b362007-12-27 19:57:00 +0000807 if (Tok.isNot(tok::identifier))
Chris Lattnere8b724d2007-12-12 06:56:32 +0000808 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000809
Chris Lattnere8b724d2007-12-12 06:56:32 +0000810 const IdentifierInfo *II = Tok.getIdentifierInfo();
811 for (unsigned i = 0; i != objc_NumQuals; ++i) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000812 if (II != ObjCTypeQuals[i])
Chris Lattnere8b724d2007-12-12 06:56:32 +0000813 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000814
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000815 ObjCDeclSpec::ObjCDeclQualifier Qual;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000816 switch (i) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000817 default: llvm_unreachable("Unknown decl qualifier");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000818 case objc_in: Qual = ObjCDeclSpec::DQ_In; break;
819 case objc_out: Qual = ObjCDeclSpec::DQ_Out; break;
820 case objc_inout: Qual = ObjCDeclSpec::DQ_Inout; break;
821 case objc_oneway: Qual = ObjCDeclSpec::DQ_Oneway; break;
822 case objc_bycopy: Qual = ObjCDeclSpec::DQ_Bycopy; break;
823 case objc_byref: Qual = ObjCDeclSpec::DQ_Byref; break;
Chris Lattnere8b724d2007-12-12 06:56:32 +0000824 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000825 DS.setObjCDeclQualifier(Qual);
Chris Lattnere8b724d2007-12-12 06:56:32 +0000826 ConsumeToken();
827 II = 0;
828 break;
829 }
Mike Stump1eb44332009-09-09 15:08:12 +0000830
Chris Lattnere8b724d2007-12-12 06:56:32 +0000831 // If this wasn't a recognized qualifier, bail out.
832 if (II) return;
833 }
834}
835
John McCallcdda47f2011-10-01 09:56:14 +0000836/// Take all the decl attributes out of the given list and add
837/// them to the given attribute set.
838static void takeDeclAttributes(ParsedAttributes &attrs,
839 AttributeList *list) {
840 while (list) {
841 AttributeList *cur = list;
842 list = cur->getNext();
843
844 if (!cur->isUsedAsTypeAttr()) {
845 // Clear out the next pointer. We're really completely
846 // destroying the internal invariants of the declarator here,
847 // but it doesn't matter because we're done with it.
848 cur->setNext(0);
849 attrs.add(cur);
850 }
851 }
852}
853
854/// takeDeclAttributes - Take all the decl attributes from the given
855/// declarator and add them to the given list.
856static void takeDeclAttributes(ParsedAttributes &attrs,
857 Declarator &D) {
858 // First, take ownership of all attributes.
859 attrs.getPool().takeAllFrom(D.getAttributePool());
860 attrs.getPool().takeAllFrom(D.getDeclSpec().getAttributePool());
861
862 // Now actually move the attributes over.
863 takeDeclAttributes(attrs, D.getDeclSpec().getAttributes().getList());
864 takeDeclAttributes(attrs, D.getAttributes());
865 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
866 takeDeclAttributes(attrs,
867 const_cast<AttributeList*>(D.getTypeObject(i).getAttrs()));
868}
869
Chris Lattnere8b724d2007-12-12 06:56:32 +0000870/// objc-type-name:
871/// '(' objc-type-qualifiers[opt] type-name ')'
872/// '(' objc-type-qualifiers[opt] ')'
873///
Douglas Gregorb77cab92011-03-08 19:17:54 +0000874ParsedType Parser::ParseObjCTypeName(ObjCDeclSpec &DS,
John McCallcdda47f2011-10-01 09:56:14 +0000875 Declarator::TheContext context,
876 ParsedAttributes *paramAttrs) {
877 assert(context == Declarator::ObjCParameterContext ||
878 context == Declarator::ObjCResultContext);
879 assert((paramAttrs != 0) == (context == Declarator::ObjCParameterContext));
880
Chris Lattnerdf195262007-10-09 17:51:17 +0000881 assert(Tok.is(tok::l_paren) && "expected (");
Mike Stump1eb44332009-09-09 15:08:12 +0000882
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000883 BalancedDelimiterTracker T(*this, tok::l_paren);
884 T.consumeOpen();
885
Chris Lattnere8904e92008-08-23 01:48:03 +0000886 SourceLocation TypeStartLoc = Tok.getLocation();
Fariborz Jahanian9735c5e2011-08-22 17:59:19 +0000887 ObjCDeclContextSwitch ObjCDC(*this);
888
Fariborz Jahanian19d74e12007-10-31 21:59:43 +0000889 // Parse type qualifiers, in, inout, etc.
John McCallcdda47f2011-10-01 09:56:14 +0000890 ParseObjCTypeQualifierList(DS, context);
Steve Naroff4fa7afd2007-08-22 23:18:22 +0000891
John McCallb3d87482010-08-24 05:47:05 +0000892 ParsedType Ty;
Douglas Gregor809070a2009-02-18 17:45:20 +0000893 if (isTypeSpecifierQualifier()) {
John McCallcdda47f2011-10-01 09:56:14 +0000894 // Parse an abstract declarator.
895 DeclSpec declSpec(AttrFactory);
896 declSpec.setObjCQualifiers(&DS);
897 ParseSpecifierQualifierList(declSpec);
Fariborz Jahanian6d1de1b2012-05-29 21:52:45 +0000898 declSpec.SetRangeEnd(Tok.getLocation());
John McCallcdda47f2011-10-01 09:56:14 +0000899 Declarator declarator(declSpec, context);
900 ParseDeclarator(declarator);
901
902 // If that's not invalid, extract a type.
903 if (!declarator.isInvalidType()) {
904 TypeResult type = Actions.ActOnTypeName(getCurScope(), declarator);
905 if (!type.isInvalid())
906 Ty = type.get();
907
908 // If we're parsing a parameter, steal all the decl attributes
909 // and add them to the decl spec.
910 if (context == Declarator::ObjCParameterContext)
911 takeDeclAttributes(*paramAttrs, declarator);
912 }
913 } else if (context == Declarator::ObjCResultContext &&
914 Tok.is(tok::identifier)) {
Douglas Gregore97179c2011-09-08 01:46:34 +0000915 if (!Ident_instancetype)
916 Ident_instancetype = PP.getIdentifierInfo("instancetype");
917
918 if (Tok.getIdentifierInfo() == Ident_instancetype) {
919 Ty = Actions.ActOnObjCInstanceType(Tok.getLocation());
920 ConsumeToken();
921 }
Douglas Gregor809070a2009-02-18 17:45:20 +0000922 }
Douglas Gregore97179c2011-09-08 01:46:34 +0000923
Steve Naroffd7333c22008-10-21 14:15:04 +0000924 if (Tok.is(tok::r_paren))
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000925 T.consumeClose();
Chris Lattner4a76b292008-10-22 03:52:06 +0000926 else if (Tok.getLocation() == TypeStartLoc) {
927 // If we didn't eat any tokens, then this isn't a type.
Chris Lattner1ab3b962008-11-18 07:48:38 +0000928 Diag(Tok, diag::err_expected_type);
Chris Lattner4a76b292008-10-22 03:52:06 +0000929 SkipUntil(tok::r_paren);
930 } else {
931 // Otherwise, we found *something*, but didn't get a ')' in the right
932 // place. Emit an error then return what we have as the type.
Douglas Gregor4a8dfb52011-10-12 16:37:45 +0000933 T.consumeClose();
Chris Lattner4a76b292008-10-22 03:52:06 +0000934 }
Steve Narofff28b2642007-09-05 23:30:30 +0000935 return Ty;
Steve Naroff294494e2007-08-22 16:35:03 +0000936}
937
938/// objc-method-decl:
939/// objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000940/// objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000941/// objc-type-name objc-selector
Steve Naroff4985ace2007-08-22 18:35:33 +0000942/// objc-type-name objc-keyword-selector objc-parmlist[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000943///
944/// objc-keyword-selector:
Mike Stump1eb44332009-09-09 15:08:12 +0000945/// objc-keyword-decl
Steve Naroff294494e2007-08-22 16:35:03 +0000946/// objc-keyword-selector objc-keyword-decl
947///
948/// objc-keyword-decl:
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000949/// objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier
950/// objc-selector ':' objc-keyword-attributes[opt] identifier
951/// ':' objc-type-name objc-keyword-attributes[opt] identifier
952/// ':' objc-keyword-attributes[opt] identifier
Steve Naroff294494e2007-08-22 16:35:03 +0000953///
Steve Naroff4985ace2007-08-22 18:35:33 +0000954/// objc-parmlist:
955/// objc-parms objc-ellipsis[opt]
Steve Naroff294494e2007-08-22 16:35:03 +0000956///
Steve Naroff4985ace2007-08-22 18:35:33 +0000957/// objc-parms:
958/// objc-parms , parameter-declaration
Steve Naroff294494e2007-08-22 16:35:03 +0000959///
Steve Naroff4985ace2007-08-22 18:35:33 +0000960/// objc-ellipsis:
Steve Naroff294494e2007-08-22 16:35:03 +0000961/// , ...
962///
Steve Naroff7ef58fd2007-08-22 22:17:26 +0000963/// objc-keyword-attributes: [OBJC2]
964/// __attribute__((unused))
965///
John McCalld226f652010-08-21 09:40:31 +0000966Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000967 tok::TokenKind mType,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +0000968 tok::ObjCKeywordKind MethodImplKind,
969 bool MethodDefinition) {
John McCall92576642012-05-07 06:16:41 +0000970 ParsingDeclRAIIObject PD(*this, ParsingDeclRAIIObject::NoParent);
John McCall54abf7d2009-11-04 02:18:39 +0000971
Douglas Gregore8f5a172010-04-07 00:21:17 +0000972 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000973 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000974 /*ReturnType=*/ ParsedType());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000975 cutOffParsing();
976 return 0;
Douglas Gregore8f5a172010-04-07 00:21:17 +0000977 }
978
Chris Lattnere8904e92008-08-23 01:48:03 +0000979 // Parse the return type if present.
John McCallb3d87482010-08-24 05:47:05 +0000980 ParsedType ReturnType;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000981 ObjCDeclSpec DSRet;
Chris Lattnerdf195262007-10-09 17:51:17 +0000982 if (Tok.is(tok::l_paren))
John McCallcdda47f2011-10-01 09:56:14 +0000983 ReturnType = ParseObjCTypeName(DSRet, Declarator::ObjCResultContext, 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000984
Ted Kremenek9e049352010-02-18 23:05:16 +0000985 // If attributes exist before the method, parse them.
John McCall0b7e6782011-03-24 11:26:52 +0000986 ParsedAttributes methodAttrs(AttrFactory);
David Blaikie4e4d0842012-03-11 07:00:24 +0000987 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +0000988 MaybeParseGNUAttributes(methodAttrs);
Ted Kremenek9e049352010-02-18 23:05:16 +0000989
Douglas Gregore8f5a172010-04-07 00:21:17 +0000990 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000991 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000992 ReturnType);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000993 cutOffParsing();
994 return 0;
Douglas Gregore8f5a172010-04-07 00:21:17 +0000995 }
996
Ted Kremenek9e049352010-02-18 23:05:16 +0000997 // Now parse the selector.
Steve Naroffbef11852007-10-26 20:53:56 +0000998 SourceLocation selLoc;
Chris Lattner2fc5c242009-04-11 18:13:45 +0000999 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc);
Chris Lattnere8904e92008-08-23 01:48:03 +00001000
Steve Naroff84c43102009-02-11 20:43:13 +00001001 // An unnamed colon is valid.
1002 if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
Chris Lattner1ab3b962008-11-18 07:48:38 +00001003 Diag(Tok, diag::err_expected_selector_for_method)
1004 << SourceRange(mLoc, Tok.getLocation());
Fariborz Jahaniand30ec702012-07-26 17:32:28 +00001005 // Skip until we get a ; or @.
1006 SkipUntil(tok::at, true /*StopAtSemi*/, true /*don't consume*/);
John McCalld226f652010-08-21 09:40:31 +00001007 return 0;
Chris Lattnere8904e92008-08-23 01:48:03 +00001008 }
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Chris Lattner5f9e2722011-07-23 10:55:15 +00001010 SmallVector<DeclaratorChunk::ParamInfo, 8> CParamInfo;
Chris Lattnerdf195262007-10-09 17:51:17 +00001011 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001012 // If attributes exist after the method, parse them.
David Blaikie4e4d0842012-03-11 07:00:24 +00001013 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +00001014 MaybeParseGNUAttributes(methodAttrs);
Mike Stump1eb44332009-09-09 15:08:12 +00001015
Chris Lattnerff384912007-10-07 02:00:24 +00001016 Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent);
John McCalld226f652010-08-21 09:40:31 +00001017 Decl *Result
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001018 = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001019 mType, DSRet, ReturnType,
Douglas Gregor926df6c2011-06-11 01:09:30 +00001020 selLoc, Sel, 0,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001021 CParamInfo.data(), CParamInfo.size(),
John McCall0b7e6782011-03-24 11:26:52 +00001022 methodAttrs.getList(), MethodImplKind,
1023 false, MethodDefinition);
John McCall54abf7d2009-11-04 02:18:39 +00001024 PD.complete(Result);
1025 return Result;
Chris Lattnerff384912007-10-07 02:00:24 +00001026 }
Steve Narofff28b2642007-09-05 23:30:30 +00001027
Chris Lattner5f9e2722011-07-23 10:55:15 +00001028 SmallVector<IdentifierInfo *, 12> KeyIdents;
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001029 SmallVector<SourceLocation, 12> KeyLocs;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001030 SmallVector<Sema::ObjCArgInfo, 12> ArgInfos;
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001031 ParseScope PrototypeScope(this,
1032 Scope::FunctionPrototypeScope|Scope::DeclScope);
John McCall0b7e6782011-03-24 11:26:52 +00001033
1034 AttributePool allParamAttrs(AttrFactory);
Chris Lattnerff384912007-10-07 02:00:24 +00001035 while (1) {
John McCall0b7e6782011-03-24 11:26:52 +00001036 ParsedAttributes paramAttrs(AttrFactory);
John McCallf312b1e2010-08-26 23:41:50 +00001037 Sema::ObjCArgInfo ArgInfo;
Mike Stump1eb44332009-09-09 15:08:12 +00001038
Chris Lattnerff384912007-10-07 02:00:24 +00001039 // Each iteration parses a single keyword argument.
Chris Lattnerdf195262007-10-09 17:51:17 +00001040 if (Tok.isNot(tok::colon)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001041 Diag(Tok, diag::err_expected_colon);
1042 break;
1043 }
1044 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00001045
John McCallb3d87482010-08-24 05:47:05 +00001046 ArgInfo.Type = ParsedType();
Chris Lattnere294d3f2009-04-11 18:57:04 +00001047 if (Tok.is(tok::l_paren)) // Parse the argument type if present.
John McCallcdda47f2011-10-01 09:56:14 +00001048 ArgInfo.Type = ParseObjCTypeName(ArgInfo.DeclSpec,
1049 Declarator::ObjCParameterContext,
1050 &paramAttrs);
Chris Lattnere294d3f2009-04-11 18:57:04 +00001051
Chris Lattnerff384912007-10-07 02:00:24 +00001052 // If attributes exist before the argument name, parse them.
John McCallcdda47f2011-10-01 09:56:14 +00001053 // Regardless, collect all the attributes we've parsed so far.
Chris Lattnere294d3f2009-04-11 18:57:04 +00001054 ArgInfo.ArgAttrs = 0;
David Blaikie4e4d0842012-03-11 07:00:24 +00001055 if (getLangOpts().ObjC2) {
John McCall0b7e6782011-03-24 11:26:52 +00001056 MaybeParseGNUAttributes(paramAttrs);
1057 ArgInfo.ArgAttrs = paramAttrs.getList();
John McCall7f040a92010-12-24 02:08:15 +00001058 }
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001059
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001060 // Code completion for the next piece of the selector.
1061 if (Tok.is(tok::code_completion)) {
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001062 KeyIdents.push_back(SelIdent);
1063 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1064 mType == tok::minus,
1065 /*AtParameterName=*/true,
1066 ReturnType,
1067 KeyIdents.data(),
1068 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001069 cutOffParsing();
1070 return 0;
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001071 }
1072
Chris Lattnerdf195262007-10-09 17:51:17 +00001073 if (Tok.isNot(tok::identifier)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001074 Diag(Tok, diag::err_expected_ident); // missing argument name.
1075 break;
Steve Naroff4985ace2007-08-22 18:35:33 +00001076 }
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Chris Lattnere294d3f2009-04-11 18:57:04 +00001078 ArgInfo.Name = Tok.getIdentifierInfo();
1079 ArgInfo.NameLoc = Tok.getLocation();
Chris Lattnerff384912007-10-07 02:00:24 +00001080 ConsumeToken(); // Eat the identifier.
Mike Stump1eb44332009-09-09 15:08:12 +00001081
Chris Lattnere294d3f2009-04-11 18:57:04 +00001082 ArgInfos.push_back(ArgInfo);
1083 KeyIdents.push_back(SelIdent);
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001084 KeyLocs.push_back(selLoc);
Chris Lattnere294d3f2009-04-11 18:57:04 +00001085
John McCall0b7e6782011-03-24 11:26:52 +00001086 // Make sure the attributes persist.
1087 allParamAttrs.takeAllFrom(paramAttrs.getPool());
1088
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001089 // Code completion for the next piece of the selector.
1090 if (Tok.is(tok::code_completion)) {
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001091 Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1092 mType == tok::minus,
Douglas Gregor40ed9a12010-07-08 23:37:41 +00001093 /*AtParameterName=*/false,
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001094 ReturnType,
1095 KeyIdents.data(),
1096 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001097 cutOffParsing();
1098 return 0;
Douglas Gregor1f5537a2010-07-08 23:20:03 +00001099 }
1100
Chris Lattnerff384912007-10-07 02:00:24 +00001101 // Check for another keyword selector.
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001102 SelIdent = ParseObjCSelectorPiece(selLoc);
Ted Kremenekb648cf02012-09-12 16:50:35 +00001103 if (!SelIdent && Tok.isNot(tok::colon))
1104 break;
Fariborz Jahanian03ebd3b2012-09-17 23:09:59 +00001105 if (!SelIdent) {
Fariborz Jahanian08602352012-09-17 19:15:26 +00001106 SourceLocation ColonLoc = Tok.getLocation();
1107 if (PP.getLocForEndOfToken(ArgInfo.NameLoc) == ColonLoc) {
Fariborz Jahanian03ebd3b2012-09-17 23:09:59 +00001108 Diag(ArgInfo.NameLoc, diag::warn_missing_selector_name) << ArgInfo.Name;
1109 Diag(ArgInfo.NameLoc, diag::note_missing_selector_name) << ArgInfo.Name;
1110 Diag(ColonLoc, diag::note_force_empty_selector_name) << ArgInfo.Name;
Fariborz Jahanian08602352012-09-17 19:15:26 +00001111 }
1112 }
Chris Lattnerff384912007-10-07 02:00:24 +00001113 // We have a selector or a colon, continue parsing.
Steve Naroff4985ace2007-08-22 18:35:33 +00001114 }
Mike Stump1eb44332009-09-09 15:08:12 +00001115
Steve Naroff335eafa2007-11-15 12:35:21 +00001116 bool isVariadic = false;
Fariborz Jahanian56242ba2012-06-21 18:43:08 +00001117 bool cStyleParamWarned = false;
Chris Lattnerff384912007-10-07 02:00:24 +00001118 // Parse the (optional) parameter list.
Chris Lattnerdf195262007-10-09 17:51:17 +00001119 while (Tok.is(tok::comma)) {
Chris Lattnerff384912007-10-07 02:00:24 +00001120 ConsumeToken();
Chris Lattnerdf195262007-10-09 17:51:17 +00001121 if (Tok.is(tok::ellipsis)) {
Steve Naroff335eafa2007-11-15 12:35:21 +00001122 isVariadic = true;
Chris Lattnerff384912007-10-07 02:00:24 +00001123 ConsumeToken();
1124 break;
1125 }
Fariborz Jahanian56242ba2012-06-21 18:43:08 +00001126 if (!cStyleParamWarned) {
1127 Diag(Tok, diag::warn_cstyle_param);
1128 cStyleParamWarned = true;
1129 }
John McCall0b7e6782011-03-24 11:26:52 +00001130 DeclSpec DS(AttrFactory);
Chris Lattnerff384912007-10-07 02:00:24 +00001131 ParseDeclarationSpecifiers(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00001132 // Parse the declarator.
Chris Lattnerff384912007-10-07 02:00:24 +00001133 Declarator ParmDecl(DS, Declarator::PrototypeContext);
1134 ParseDeclarator(ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001135 IdentifierInfo *ParmII = ParmDecl.getIdentifier();
John McCalld226f652010-08-21 09:40:31 +00001136 Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001137 CParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
1138 ParmDecl.getIdentifierLoc(),
1139 Param,
1140 0));
Chris Lattnerff384912007-10-07 02:00:24 +00001141 }
Mike Stump1eb44332009-09-09 15:08:12 +00001142
Cameron Esfahani9c4bb2c2010-10-12 00:21:25 +00001143 // FIXME: Add support for optional parameter list...
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001144 // If attributes exist after the method, parse them.
David Blaikie4e4d0842012-03-11 07:00:24 +00001145 if (getLangOpts().ObjC2)
John McCall0b7e6782011-03-24 11:26:52 +00001146 MaybeParseGNUAttributes(methodAttrs);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001147
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001148 if (KeyIdents.size() == 0)
John McCalld226f652010-08-21 09:40:31 +00001149 return 0;
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001150
Chris Lattnerff384912007-10-07 02:00:24 +00001151 Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(),
1152 &KeyIdents[0]);
John McCalld226f652010-08-21 09:40:31 +00001153 Decl *Result
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001154 = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001155 mType, DSRet, ReturnType,
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00001156 KeyLocs, Sel, &ArgInfos[0],
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00001157 CParamInfo.data(), CParamInfo.size(),
John McCall0b7e6782011-03-24 11:26:52 +00001158 methodAttrs.getList(),
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00001159 MethodImplKind, isVariadic, MethodDefinition);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00001160
John McCall54abf7d2009-11-04 02:18:39 +00001161 PD.complete(Result);
1162 return Result;
Steve Naroff294494e2007-08-22 16:35:03 +00001163}
1164
Steve Naroffdac269b2007-08-20 21:31:48 +00001165/// objc-protocol-refs:
1166/// '<' identifier-list '>'
1167///
Chris Lattner7caeabd2008-07-21 22:17:28 +00001168bool Parser::
Chris Lattner5f9e2722011-07-23 10:55:15 +00001169ParseObjCProtocolReferences(SmallVectorImpl<Decl *> &Protocols,
1170 SmallVectorImpl<SourceLocation> &ProtocolLocs,
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001171 bool WarnOnDeclarations,
1172 SourceLocation &LAngleLoc, SourceLocation &EndLoc) {
Chris Lattnere13b9592008-07-26 04:03:38 +00001173 assert(Tok.is(tok::less) && "expected <");
Mike Stump1eb44332009-09-09 15:08:12 +00001174
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001175 LAngleLoc = ConsumeToken(); // the "<"
Mike Stump1eb44332009-09-09 15:08:12 +00001176
Chris Lattner5f9e2722011-07-23 10:55:15 +00001177 SmallVector<IdentifierLocPair, 8> ProtocolIdents;
Mike Stump1eb44332009-09-09 15:08:12 +00001178
Chris Lattnere13b9592008-07-26 04:03:38 +00001179 while (1) {
Douglas Gregor55385fe2009-11-18 04:19:12 +00001180 if (Tok.is(tok::code_completion)) {
1181 Actions.CodeCompleteObjCProtocolReferences(ProtocolIdents.data(),
1182 ProtocolIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001183 cutOffParsing();
1184 return true;
Douglas Gregor55385fe2009-11-18 04:19:12 +00001185 }
1186
Chris Lattnere13b9592008-07-26 04:03:38 +00001187 if (Tok.isNot(tok::identifier)) {
1188 Diag(Tok, diag::err_expected_ident);
1189 SkipUntil(tok::greater);
1190 return true;
1191 }
1192 ProtocolIdents.push_back(std::make_pair(Tok.getIdentifierInfo(),
1193 Tok.getLocation()));
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001194 ProtocolLocs.push_back(Tok.getLocation());
Chris Lattnere13b9592008-07-26 04:03:38 +00001195 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001196
Chris Lattnere13b9592008-07-26 04:03:38 +00001197 if (Tok.isNot(tok::comma))
1198 break;
1199 ConsumeToken();
1200 }
Mike Stump1eb44332009-09-09 15:08:12 +00001201
Chris Lattnere13b9592008-07-26 04:03:38 +00001202 // Consume the '>'.
1203 if (Tok.isNot(tok::greater)) {
1204 Diag(Tok, diag::err_expected_greater);
1205 return true;
1206 }
Mike Stump1eb44332009-09-09 15:08:12 +00001207
Douglas Gregord78ef5b2012-03-08 01:00:17 +00001208 EndLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001209
Chris Lattnere13b9592008-07-26 04:03:38 +00001210 // Convert the list of protocols identifiers into a list of protocol decls.
1211 Actions.FindProtocolDeclaration(WarnOnDeclarations,
1212 &ProtocolIdents[0], ProtocolIdents.size(),
1213 Protocols);
1214 return false;
1215}
1216
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001217/// \brief Parse the Objective-C protocol qualifiers that follow a typename
1218/// in a decl-specifier-seq, starting at the '<'.
Douglas Gregor46f936e2010-11-19 17:10:50 +00001219bool Parser::ParseObjCProtocolQualifiers(DeclSpec &DS) {
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001220 assert(Tok.is(tok::less) && "Protocol qualifiers start with '<'");
David Blaikie4e4d0842012-03-11 07:00:24 +00001221 assert(getLangOpts().ObjC1 && "Protocol qualifiers only exist in Objective-C");
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001222 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001223 SmallVector<Decl *, 8> ProtocolDecl;
1224 SmallVector<SourceLocation, 8> ProtocolLocs;
Douglas Gregor46f936e2010-11-19 17:10:50 +00001225 bool Result = ParseObjCProtocolReferences(ProtocolDecl, ProtocolLocs, false,
1226 LAngleLoc, EndProtoLoc);
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001227 DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size(),
1228 ProtocolLocs.data(), LAngleLoc);
1229 if (EndProtoLoc.isValid())
1230 DS.SetRangeEnd(EndProtoLoc);
Douglas Gregor46f936e2010-11-19 17:10:50 +00001231 return Result;
Douglas Gregor9bd1d8d2010-10-21 23:17:00 +00001232}
1233
1234
Steve Naroffdac269b2007-08-20 21:31:48 +00001235/// objc-class-instance-variables:
1236/// '{' objc-instance-variable-decl-list[opt] '}'
1237///
1238/// objc-instance-variable-decl-list:
1239/// objc-visibility-spec
1240/// objc-instance-variable-decl ';'
1241/// ';'
1242/// objc-instance-variable-decl-list objc-visibility-spec
1243/// objc-instance-variable-decl-list objc-instance-variable-decl ';'
1244/// objc-instance-variable-decl-list ';'
1245///
1246/// objc-visibility-spec:
1247/// @private
1248/// @protected
1249/// @public
Steve Naroffddbff782007-08-21 21:17:12 +00001250/// @package [OBJC2]
Steve Naroffdac269b2007-08-20 21:31:48 +00001251///
1252/// objc-instance-variable-decl:
Mike Stump1eb44332009-09-09 15:08:12 +00001253/// struct-declaration
Steve Naroffdac269b2007-08-20 21:31:48 +00001254///
John McCalld226f652010-08-21 09:40:31 +00001255void Parser::ParseObjCClassInstanceVariables(Decl *interfaceDecl,
Fariborz Jahanian83c481a2010-02-22 23:04:20 +00001256 tok::ObjCKeywordKind visibility,
Steve Naroff60fccee2007-10-29 21:38:07 +00001257 SourceLocation atLoc) {
Chris Lattnerdf195262007-10-09 17:51:17 +00001258 assert(Tok.is(tok::l_brace) && "expected {");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001259 SmallVector<Decl *, 32> AllIvarDecls;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001260
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001261 ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001262 ObjCDeclContextSwitch ObjCDC(*this);
Douglas Gregor72de6672009-01-08 20:45:30 +00001263
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001264 BalancedDelimiterTracker T(*this, tok::l_brace);
1265 T.consumeOpen();
Mike Stump1eb44332009-09-09 15:08:12 +00001266
Steve Naroffddbff782007-08-21 21:17:12 +00001267 // While we still have something to read, read the instance variables.
Chris Lattnerdf195262007-10-09 17:51:17 +00001268 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001269 // Each iteration of this loop reads one objc-instance-variable-decl.
Mike Stump1eb44332009-09-09 15:08:12 +00001270
Steve Naroffddbff782007-08-21 21:17:12 +00001271 // Check for extraneous top-level semicolon.
Chris Lattnerdf195262007-10-09 17:51:17 +00001272 if (Tok.is(tok::semi)) {
Richard Trieu4b0e6f12012-05-16 19:04:59 +00001273 ConsumeExtraSemi(InstanceVariableList);
Steve Naroffddbff782007-08-21 21:17:12 +00001274 continue;
1275 }
Mike Stump1eb44332009-09-09 15:08:12 +00001276
Steve Naroffddbff782007-08-21 21:17:12 +00001277 // Set the default visibility to private.
Chris Lattnerdf195262007-10-09 17:51:17 +00001278 if (Tok.is(tok::at)) { // parse objc-visibility-spec
Steve Naroffddbff782007-08-21 21:17:12 +00001279 ConsumeToken(); // eat the @ sign
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001280
1281 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001282 Actions.CodeCompleteObjCAtVisibility(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001283 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001284 }
1285
Steve Naroff861cf3e2007-08-23 18:16:40 +00001286 switch (Tok.getObjCKeywordID()) {
Steve Naroffddbff782007-08-21 21:17:12 +00001287 case tok::objc_private:
1288 case tok::objc_public:
1289 case tok::objc_protected:
1290 case tok::objc_package:
Steve Naroff861cf3e2007-08-23 18:16:40 +00001291 visibility = Tok.getObjCKeywordID();
Steve Naroffddbff782007-08-21 21:17:12 +00001292 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001293 continue;
Steve Naroffddbff782007-08-21 21:17:12 +00001294 default:
1295 Diag(Tok, diag::err_objc_illegal_visibility_spec);
Steve Naroffddbff782007-08-21 21:17:12 +00001296 continue;
1297 }
1298 }
Mike Stump1eb44332009-09-09 15:08:12 +00001299
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001300 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001301 Actions.CodeCompleteOrdinaryName(getCurScope(),
John McCallf312b1e2010-08-26 23:41:50 +00001302 Sema::PCC_ObjCInstanceVariableList);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001303 return cutOffParsing();
Douglas Gregorc38c3e12010-01-13 21:54:15 +00001304 }
1305
John McCallbdd563e2009-11-03 02:38:08 +00001306 struct ObjCIvarCallback : FieldCallback {
1307 Parser &P;
John McCalld226f652010-08-21 09:40:31 +00001308 Decl *IDecl;
John McCallbdd563e2009-11-03 02:38:08 +00001309 tok::ObjCKeywordKind visibility;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001310 SmallVectorImpl<Decl *> &AllIvarDecls;
John McCallbdd563e2009-11-03 02:38:08 +00001311
John McCalld226f652010-08-21 09:40:31 +00001312 ObjCIvarCallback(Parser &P, Decl *IDecl, tok::ObjCKeywordKind V,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001313 SmallVectorImpl<Decl *> &AllIvarDecls) :
John McCallbdd563e2009-11-03 02:38:08 +00001314 P(P), IDecl(IDecl), visibility(V), AllIvarDecls(AllIvarDecls) {
1315 }
1316
Eli Friedmandcdff462012-08-08 23:53:27 +00001317 void invoke(ParsingFieldDeclarator &FD) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001318 P.Actions.ActOnObjCContainerStartDefinition(IDecl);
John McCallbdd563e2009-11-03 02:38:08 +00001319 // Install the declarator into the interface decl.
John McCalld226f652010-08-21 09:40:31 +00001320 Decl *Field
Douglas Gregor23c94db2010-07-02 17:43:08 +00001321 = P.Actions.ActOnIvar(P.getCurScope(),
John McCallbdd563e2009-11-03 02:38:08 +00001322 FD.D.getDeclSpec().getSourceRange().getBegin(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001323 FD.D, FD.BitfieldSize, visibility);
Fariborz Jahanian10af8792011-08-29 17:33:12 +00001324 P.Actions.ActOnObjCContainerFinishDefinition();
Fariborz Jahanian0bd04592010-04-06 22:43:48 +00001325 if (Field)
1326 AllIvarDecls.push_back(Field);
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00001327 FD.complete(Field);
John McCallbdd563e2009-11-03 02:38:08 +00001328 }
1329 } Callback(*this, interfaceDecl, visibility, AllIvarDecls);
Fariborz Jahaniand097be82010-08-23 22:46:52 +00001330
Chris Lattnere1359422008-04-10 06:46:29 +00001331 // Parse all the comma separated declarators.
Eli Friedmanf66a0dd2012-08-08 23:04:35 +00001332 ParsingDeclSpec DS(*this);
John McCallbdd563e2009-11-03 02:38:08 +00001333 ParseStructDeclaration(DS, Callback);
Mike Stump1eb44332009-09-09 15:08:12 +00001334
Chris Lattnerdf195262007-10-09 17:51:17 +00001335 if (Tok.is(tok::semi)) {
Steve Naroffddbff782007-08-21 21:17:12 +00001336 ConsumeToken();
Steve Naroffddbff782007-08-21 21:17:12 +00001337 } else {
1338 Diag(Tok, diag::err_expected_semi_decl_list);
1339 // Skip to end of block or statement
1340 SkipUntil(tok::r_brace, true, true);
1341 }
1342 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001343 T.consumeClose();
1344
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001345 Actions.ActOnObjCContainerStartDefinition(interfaceDecl);
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001346 Actions.ActOnLastBitfield(T.getCloseLocation(), AllIvarDecls);
Fariborz Jahanian10af8792011-08-29 17:33:12 +00001347 Actions.ActOnObjCContainerFinishDefinition();
Steve Naroff8749be52007-10-31 22:11:35 +00001348 // Call ActOnFields() even if we don't have any decls. This is useful
1349 // for code rewriting tools that need to be aware of the empty list.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001350 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl,
David Blaikie77b6de02011-09-22 02:58:26 +00001351 AllIvarDecls,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00001352 T.getOpenLocation(), T.getCloseLocation(), 0);
Steve Naroffddbff782007-08-21 21:17:12 +00001353 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001354}
Steve Naroffdac269b2007-08-20 21:31:48 +00001355
1356/// objc-protocol-declaration:
1357/// objc-protocol-definition
1358/// objc-protocol-forward-reference
1359///
1360/// objc-protocol-definition:
James Dennett17d26a62012-06-11 06:19:40 +00001361/// \@protocol identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001362/// objc-protocol-refs[opt]
1363/// objc-interface-decl-list
James Dennett17d26a62012-06-11 06:19:40 +00001364/// \@end
Steve Naroffdac269b2007-08-20 21:31:48 +00001365///
1366/// objc-protocol-forward-reference:
James Dennett17d26a62012-06-11 06:19:40 +00001367/// \@protocol identifier-list ';'
Steve Naroffdac269b2007-08-20 21:31:48 +00001368///
James Dennett17d26a62012-06-11 06:19:40 +00001369/// "\@protocol identifier ;" should be resolved as "\@protocol
Steve Naroff3536b442007-09-06 21:24:23 +00001370/// identifier-list ;": objc-interface-decl-list may not start with a
Steve Naroffdac269b2007-08-20 21:31:48 +00001371/// semicolon in the first alternative if objc-protocol-refs are omitted.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001372Parser::DeclGroupPtrTy
1373Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc,
1374 ParsedAttributes &attrs) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00001375 assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001376 "ParseObjCAtProtocolDeclaration(): Expected @protocol");
1377 ConsumeToken(); // the "protocol" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001378
Douglas Gregor083128f2009-11-18 04:49:41 +00001379 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001380 Actions.CodeCompleteObjCProtocolDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001381 cutOffParsing();
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001382 return DeclGroupPtrTy();
Douglas Gregor083128f2009-11-18 04:49:41 +00001383 }
1384
Chris Lattnerdf195262007-10-09 17:51:17 +00001385 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001386 Diag(Tok, diag::err_expected_ident); // missing protocol name.
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001387 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001388 }
1389 // Save the protocol name, then consume it.
1390 IdentifierInfo *protocolName = Tok.getIdentifierInfo();
1391 SourceLocation nameLoc = ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001392
Chris Lattnerdf195262007-10-09 17:51:17 +00001393 if (Tok.is(tok::semi)) { // forward declaration of one protocol.
Chris Lattner7caeabd2008-07-21 22:17:28 +00001394 IdentifierLocPair ProtoInfo(protocolName, nameLoc);
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001395 ConsumeToken();
Mike Stump1eb44332009-09-09 15:08:12 +00001396 return Actions.ActOnForwardProtocolDeclaration(AtLoc, &ProtoInfo, 1,
John McCall7f040a92010-12-24 02:08:15 +00001397 attrs.getList());
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001398 }
Mike Stump1eb44332009-09-09 15:08:12 +00001399
Erik Verbruggen90ec96f2011-12-08 09:58:43 +00001400 CheckNestedObjCContexts(AtLoc);
1401
Chris Lattnerdf195262007-10-09 17:51:17 +00001402 if (Tok.is(tok::comma)) { // list of forward declarations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001403 SmallVector<IdentifierLocPair, 8> ProtocolRefs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001404 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc));
1405
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001406 // Parse the list of forward declarations.
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001407 while (1) {
1408 ConsumeToken(); // the ','
Chris Lattnerdf195262007-10-09 17:51:17 +00001409 if (Tok.isNot(tok::identifier)) {
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001410 Diag(Tok, diag::err_expected_ident);
1411 SkipUntil(tok::semi);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001412 return DeclGroupPtrTy();
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001413 }
Chris Lattner7caeabd2008-07-21 22:17:28 +00001414 ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(),
1415 Tok.getLocation()));
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001416 ConsumeToken(); // the identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001417
Chris Lattnerdf195262007-10-09 17:51:17 +00001418 if (Tok.isNot(tok::comma))
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001419 break;
1420 }
1421 // Consume the ';'.
1422 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001423 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001424
Steve Naroffe440eb82007-10-10 17:32:04 +00001425 return Actions.ActOnForwardProtocolDeclaration(AtLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001426 &ProtocolRefs[0],
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001427 ProtocolRefs.size(),
John McCall7f040a92010-12-24 02:08:15 +00001428 attrs.getList());
Chris Lattner7caeabd2008-07-21 22:17:28 +00001429 }
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Steve Naroff7ef58fd2007-08-22 22:17:26 +00001431 // Last, and definitely not least, parse a protocol declaration.
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001432 SourceLocation LAngleLoc, EndProtoLoc;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001433
Chris Lattner5f9e2722011-07-23 10:55:15 +00001434 SmallVector<Decl *, 8> ProtocolRefs;
1435 SmallVector<SourceLocation, 8> ProtocolLocs;
Chris Lattner7caeabd2008-07-21 22:17:28 +00001436 if (Tok.is(tok::less) &&
Argyrios Kyrtzidis71b0add2009-09-29 19:41:44 +00001437 ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, false,
1438 LAngleLoc, EndProtoLoc))
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001439 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001440
John McCalld226f652010-08-21 09:40:31 +00001441 Decl *ProtoType =
Chris Lattnere13b9592008-07-26 04:03:38 +00001442 Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001443 ProtocolRefs.data(),
1444 ProtocolRefs.size(),
Douglas Gregor18df52b2010-01-16 15:02:53 +00001445 ProtocolLocs.data(),
John McCall7f040a92010-12-24 02:08:15 +00001446 EndProtoLoc, attrs.getList());
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001447
Fariborz Jahanian2f64cfe2011-08-22 21:44:58 +00001448 ParseObjCInterfaceDeclList(tok::objc_protocol, ProtoType);
Douglas Gregorbd9482d2012-01-01 21:23:57 +00001449 return Actions.ConvertDeclToDeclGroup(ProtoType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001450}
Steve Naroffdac269b2007-08-20 21:31:48 +00001451
1452/// objc-implementation:
1453/// objc-class-implementation-prologue
1454/// objc-category-implementation-prologue
1455///
1456/// objc-class-implementation-prologue:
1457/// @implementation identifier objc-superclass[opt]
1458/// objc-class-instance-variables[opt]
1459///
1460/// objc-category-implementation-prologue:
1461/// @implementation identifier ( identifier )
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001462Parser::DeclGroupPtrTy
1463Parser::ParseObjCAtImplementationDeclaration(SourceLocation AtLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001464 assert(Tok.isObjCAtKeyword(tok::objc_implementation) &&
1465 "ParseObjCAtImplementationDeclaration(): Expected @implementation");
Erik Verbruggend64251f2011-12-06 09:25:23 +00001466 CheckNestedObjCContexts(AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001467 ConsumeToken(); // the "implementation" identifier
Mike Stump1eb44332009-09-09 15:08:12 +00001468
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001469 // Code completion after '@implementation'.
1470 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001471 Actions.CodeCompleteObjCImplementationDecl(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001472 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001473 return DeclGroupPtrTy();
Douglas Gregor3b49aca2009-11-18 16:26:39 +00001474 }
1475
Chris Lattnerdf195262007-10-09 17:51:17 +00001476 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001477 Diag(Tok, diag::err_expected_ident); // missing class or category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001478 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001479 }
1480 // We have a class or category name - consume it.
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001481 IdentifierInfo *nameId = Tok.getIdentifierInfo();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001482 SourceLocation nameLoc = ConsumeToken(); // consume class or category name
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001483 Decl *ObjCImpDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001484
1485 if (Tok.is(tok::l_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001486 // we have a category implementation.
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001487 ConsumeParen();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001488 SourceLocation categoryLoc, rparenLoc;
1489 IdentifierInfo *categoryId = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001490
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001491 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001492 Actions.CodeCompleteObjCImplementationCategory(getCurScope(), nameId, nameLoc);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001493 cutOffParsing();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001494 return DeclGroupPtrTy();
Douglas Gregor33ced0b2009-11-18 19:08:43 +00001495 }
1496
Chris Lattnerdf195262007-10-09 17:51:17 +00001497 if (Tok.is(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001498 categoryId = Tok.getIdentifierInfo();
1499 categoryLoc = ConsumeToken();
1500 } else {
1501 Diag(Tok, diag::err_expected_ident); // missing category name.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001502 return DeclGroupPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00001503 }
Chris Lattnerdf195262007-10-09 17:51:17 +00001504 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001505 Diag(Tok, diag::err_expected_rparen);
1506 SkipUntil(tok::r_paren, false); // don't stop at ';'
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001507 return DeclGroupPtrTy();
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001508 }
1509 rparenLoc = ConsumeParen();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001510 ObjCImpDecl = Actions.ActOnStartCategoryImplementation(
Erik Verbruggend64251f2011-12-06 09:25:23 +00001511 AtLoc, nameId, nameLoc, categoryId,
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001512 categoryLoc);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001513
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001514 } else {
1515 // We have a class implementation
1516 SourceLocation superClassLoc;
1517 IdentifierInfo *superClassId = 0;
1518 if (Tok.is(tok::colon)) {
1519 // We have a super class
1520 ConsumeToken();
1521 if (Tok.isNot(tok::identifier)) {
1522 Diag(Tok, diag::err_expected_ident); // missing super class name.
1523 return DeclGroupPtrTy();
1524 }
1525 superClassId = Tok.getIdentifierInfo();
1526 superClassLoc = ConsumeToken(); // Consume super class name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001527 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001528 ObjCImpDecl = Actions.ActOnStartClassImplementation(
1529 AtLoc, nameId, nameLoc,
1530 superClassId, superClassLoc);
1531
1532 if (Tok.is(tok::l_brace)) // we have ivars
1533 ParseObjCClassInstanceVariables(ObjCImpDecl, tok::objc_private, AtLoc);
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001534 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001535 assert(ObjCImpDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001536
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001537 SmallVector<Decl *, 8> DeclsInGroup;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001538
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001539 {
1540 ObjCImplParsingDataRAII ObjCImplParsing(*this, ObjCImpDecl);
1541 while (!ObjCImplParsing.isFinished() && Tok.isNot(tok::eof)) {
1542 ParsedAttributesWithRange attrs(AttrFactory);
1543 MaybeParseCXX0XAttributes(attrs);
1544 MaybeParseMicrosoftAttributes(attrs);
1545 if (DeclGroupPtrTy DGP = ParseExternalDeclaration(attrs)) {
1546 DeclGroupRef DG = DGP.get();
1547 DeclsInGroup.append(DG.begin(), DG.end());
1548 }
1549 }
1550 }
1551
Argyrios Kyrtzidis644af7b2012-02-23 21:11:20 +00001552 return Actions.ActOnFinishObjCImplementation(ObjCImpDecl, DeclsInGroup);
Reid Spencer5f016e22007-07-11 17:01:13 +00001553}
Steve Naroff60fccee2007-10-29 21:38:07 +00001554
Fariborz Jahanian140ab232011-08-31 17:37:55 +00001555Parser::DeclGroupPtrTy
1556Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001557 assert(Tok.isObjCAtKeyword(tok::objc_end) &&
1558 "ParseObjCAtEndDeclaration(): Expected @end");
1559 ConsumeToken(); // the "end" identifier
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001560 if (CurParsedObjCImpl)
1561 CurParsedObjCImpl->finish(atEnd);
Fariborz Jahanian8697d302011-08-31 22:24:06 +00001562 else
Ted Kremenek782f2f52010-01-07 01:20:12 +00001563 // missing @implementation
Erik Verbruggend64251f2011-12-06 09:25:23 +00001564 Diag(atEnd.getBegin(), diag::err_expected_objc_container);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001565 return DeclGroupPtrTy();
Steve Naroffdac269b2007-08-20 21:31:48 +00001566}
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001567
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001568Parser::ObjCImplParsingDataRAII::~ObjCImplParsingDataRAII() {
1569 if (!Finished) {
1570 finish(P.Tok.getLocation());
1571 if (P.Tok.is(tok::eof)) {
1572 P.Diag(P.Tok, diag::err_objc_missing_end)
1573 << FixItHint::CreateInsertion(P.Tok.getLocation(), "\n@end\n");
1574 P.Diag(Dcl->getLocStart(), diag::note_objc_container_start)
1575 << Sema::OCK_Implementation;
1576 }
1577 }
1578 P.CurParsedObjCImpl = 0;
1579 assert(LateParsedObjCMethods.empty());
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00001580}
1581
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001582void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) {
1583 assert(!Finished);
1584 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl);
1585 for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i)
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001586 P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i],
1587 true/*Methods*/);
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001588
1589 P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd);
1590
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001591 if (HasCFunction)
1592 for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i)
1593 P.ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i],
1594 false/*c-functions*/);
1595
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001596 /// \brief Clear and free the cached objc methods.
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001597 for (LateParsedObjCMethodContainer::iterator
1598 I = LateParsedObjCMethods.begin(),
1599 E = LateParsedObjCMethods.end(); I != E; ++I)
1600 delete *I;
1601 LateParsedObjCMethods.clear();
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001602
1603 Finished = true;
Argyrios Kyrtzidis2fea2242011-11-29 08:14:54 +00001604}
1605
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001606/// compatibility-alias-decl:
1607/// @compatibility_alias alias-name class-name ';'
1608///
John McCalld226f652010-08-21 09:40:31 +00001609Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001610 assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) &&
1611 "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias");
1612 ConsumeToken(); // consume compatibility_alias
Chris Lattnerdf195262007-10-09 17:51:17 +00001613 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001614 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001615 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001616 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001617 IdentifierInfo *aliasId = Tok.getIdentifierInfo();
1618 SourceLocation aliasLoc = ConsumeToken(); // consume alias-name
Chris Lattnerdf195262007-10-09 17:51:17 +00001619 if (Tok.isNot(tok::identifier)) {
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001620 Diag(Tok, diag::err_expected_ident);
John McCalld226f652010-08-21 09:40:31 +00001621 return 0;
Fariborz Jahaniane992af02007-09-04 19:26:51 +00001622 }
Fariborz Jahanian243b64b2007-10-11 23:42:27 +00001623 IdentifierInfo *classId = Tok.getIdentifierInfo();
1624 SourceLocation classLoc = ConsumeToken(); // consume class-name;
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001625 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
1626 "@compatibility_alias");
Richard Smithde01b7a2012-08-08 23:32:13 +00001627 return Actions.ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc,
1628 classId, classLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001629}
1630
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001631/// property-synthesis:
1632/// @synthesize property-ivar-list ';'
1633///
1634/// property-ivar-list:
1635/// property-ivar
1636/// property-ivar-list ',' property-ivar
1637///
1638/// property-ivar:
1639/// identifier
1640/// identifier '=' identifier
1641///
John McCalld226f652010-08-21 09:40:31 +00001642Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001643 assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
1644 "ParseObjCPropertyDynamic(): Expected '@synthesize'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001645 ConsumeToken(); // consume synthesize
Mike Stump1eb44332009-09-09 15:08:12 +00001646
Douglas Gregorb328c422009-11-18 19:45:45 +00001647 while (true) {
Douglas Gregor322328b2009-11-18 22:32:06 +00001648 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001649 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001650 cutOffParsing();
1651 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001652 }
1653
Douglas Gregorb328c422009-11-18 19:45:45 +00001654 if (Tok.isNot(tok::identifier)) {
1655 Diag(Tok, diag::err_synthesized_property_name);
1656 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001657 return 0;
Douglas Gregorb328c422009-11-18 19:45:45 +00001658 }
1659
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001660 IdentifierInfo *propertyIvar = 0;
1661 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1662 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Douglas Gregora4ffd852010-11-17 01:03:52 +00001663 SourceLocation propertyIvarLoc;
Chris Lattnerdf195262007-10-09 17:51:17 +00001664 if (Tok.is(tok::equal)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001665 // property '=' ivar-name
1666 ConsumeToken(); // consume '='
Douglas Gregor322328b2009-11-18 22:32:06 +00001667
1668 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001669 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001670 cutOffParsing();
1671 return 0;
Douglas Gregor322328b2009-11-18 22:32:06 +00001672 }
1673
Chris Lattnerdf195262007-10-09 17:51:17 +00001674 if (Tok.isNot(tok::identifier)) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001675 Diag(Tok, diag::err_expected_ident);
1676 break;
1677 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001678 propertyIvar = Tok.getIdentifierInfo();
Douglas Gregora4ffd852010-11-17 01:03:52 +00001679 propertyIvarLoc = ConsumeToken(); // consume ivar-name
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001680 }
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001681 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, true,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001682 propertyId, propertyIvar, propertyIvarLoc);
Chris Lattnerdf195262007-10-09 17:51:17 +00001683 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001684 break;
1685 ConsumeToken(); // consume ','
1686 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001687 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@synthesize");
John McCalld226f652010-08-21 09:40:31 +00001688 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001689}
1690
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001691/// property-dynamic:
1692/// @dynamic property-list
1693///
1694/// property-list:
1695/// identifier
1696/// property-list ',' identifier
1697///
John McCalld226f652010-08-21 09:40:31 +00001698Decl *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) {
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001699 assert(Tok.isObjCAtKeyword(tok::objc_dynamic) &&
1700 "ParseObjCPropertyDynamic(): Expected '@dynamic'");
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001701 ConsumeToken(); // consume dynamic
Douglas Gregor424b2a52009-11-18 22:56:13 +00001702 while (true) {
1703 if (Tok.is(tok::code_completion)) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001704 Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001705 cutOffParsing();
1706 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001707 }
1708
1709 if (Tok.isNot(tok::identifier)) {
1710 Diag(Tok, diag::err_expected_ident);
1711 SkipUntil(tok::semi);
John McCalld226f652010-08-21 09:40:31 +00001712 return 0;
Douglas Gregor424b2a52009-11-18 22:56:13 +00001713 }
1714
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001715 IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1716 SourceLocation propertyLoc = ConsumeToken(); // consume property name
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001717 Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, false,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001718 propertyId, 0, SourceLocation());
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001719
Chris Lattnerdf195262007-10-09 17:51:17 +00001720 if (Tok.isNot(tok::comma))
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001721 break;
1722 ConsumeToken(); // consume ','
1723 }
Douglas Gregore6bf90a2011-01-05 01:10:06 +00001724 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@dynamic");
John McCalld226f652010-08-21 09:40:31 +00001725 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001726}
Mike Stump1eb44332009-09-09 15:08:12 +00001727
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001728/// objc-throw-statement:
1729/// throw expression[opt];
1730///
John McCall60d7b3a2010-08-24 06:29:42 +00001731StmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) {
1732 ExprResult Res;
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001733 ConsumeToken(); // consume throw
Chris Lattnerdf195262007-10-09 17:51:17 +00001734 if (Tok.isNot(tok::semi)) {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +00001735 Res = ParseExpression();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001736 if (Res.isInvalid()) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001737 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001738 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001739 }
1740 }
Ted Kremenek02418c72010-04-20 21:21:51 +00001741 // consume ';'
1742 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@throw");
John McCall9ae2f072010-08-23 23:25:46 +00001743 return Actions.ActOnObjCAtThrowStmt(atLoc, Res.take(), getCurScope());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001744}
1745
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001746/// objc-synchronized-statement:
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001747/// @synchronized '(' expression ')' compound-statement
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001748///
John McCall60d7b3a2010-08-24 06:29:42 +00001749StmtResult
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001750Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) {
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001751 ConsumeToken(); // consume synchronized
1752 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001753 Diag(Tok, diag::err_expected_lparen_after) << "@synchronized";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001754 return StmtError();
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001755 }
John McCall07524032011-07-27 21:50:02 +00001756
1757 // The operand is surrounded with parentheses.
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001758 ConsumeParen(); // '('
John McCall07524032011-07-27 21:50:02 +00001759 ExprResult operand(ParseExpression());
1760
1761 if (Tok.is(tok::r_paren)) {
1762 ConsumeParen(); // ')'
1763 } else {
1764 if (!operand.isInvalid())
1765 Diag(Tok, diag::err_expected_rparen);
1766
1767 // Skip forward until we see a left brace, but don't consume it.
1768 SkipUntil(tok::l_brace, true, true);
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +00001769 }
John McCall07524032011-07-27 21:50:02 +00001770
1771 // Require a compound statement.
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001772 if (Tok.isNot(tok::l_brace)) {
John McCall07524032011-07-27 21:50:02 +00001773 if (!operand.isInvalid())
1774 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001775 return StmtError();
Fariborz Jahanian78a677b2008-01-30 17:38:29 +00001776 }
Steve Naroff3ac438c2008-06-04 20:36:13 +00001777
John McCall07524032011-07-27 21:50:02 +00001778 // Check the @synchronized operand now.
1779 if (!operand.isInvalid())
1780 operand = Actions.ActOnObjCAtSynchronizedOperand(atLoc, operand.take());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001781
John McCall07524032011-07-27 21:50:02 +00001782 // Parse the compound statement within a new scope.
1783 ParseScope bodyScope(this, Scope::DeclScope);
1784 StmtResult body(ParseCompoundStatementBody());
1785 bodyScope.Exit();
1786
1787 // If there was a semantic or parse error earlier with the
1788 // operand, fail now.
1789 if (operand.isInvalid())
1790 return StmtError();
1791
1792 if (body.isInvalid())
1793 body = Actions.ActOnNullStmt(Tok.getLocation());
1794
1795 return Actions.ActOnObjCAtSynchronizedStmt(atLoc, operand.get(), body.get());
Fariborz Jahanianc385c902008-01-29 18:21:32 +00001796}
1797
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001798/// objc-try-catch-statement:
1799/// @try compound-statement objc-catch-list[opt]
1800/// @try compound-statement objc-catch-list[opt] @finally compound-statement
1801///
1802/// objc-catch-list:
1803/// @catch ( parameter-declaration ) compound-statement
1804/// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1805/// catch-parameter-declaration:
1806/// parameter-declaration
1807/// '...' [OBJC2]
1808///
John McCall60d7b3a2010-08-24 06:29:42 +00001809StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001810 bool catch_or_finally_seen = false;
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001811
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001812 ConsumeToken(); // consume try
Chris Lattnerdf195262007-10-09 17:51:17 +00001813 if (Tok.isNot(tok::l_brace)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001814 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001815 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001816 }
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00001817 StmtVector CatchStmts;
John McCall60d7b3a2010-08-24 06:29:42 +00001818 StmtResult FinallyStmt;
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001819 ParseScope TryScope(this, Scope::DeclScope);
John McCall60d7b3a2010-08-24 06:29:42 +00001820 StmtResult TryBody(ParseCompoundStatementBody());
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001821 TryScope.Exit();
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001822 if (TryBody.isInvalid())
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001823 TryBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redla55e52c2008-11-25 22:21:31 +00001824
Chris Lattnerdf195262007-10-09 17:51:17 +00001825 while (Tok.is(tok::at)) {
Chris Lattner6b884502008-03-10 06:06:04 +00001826 // At this point, we need to lookahead to determine if this @ is the start
1827 // of an @catch or @finally. We don't want to consume the @ token if this
1828 // is an @try or @encode or something else.
1829 Token AfterAt = GetLookAheadToken(1);
1830 if (!AfterAt.isObjCAtKeyword(tok::objc_catch) &&
1831 !AfterAt.isObjCAtKeyword(tok::objc_finally))
1832 break;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001833
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001834 SourceLocation AtCatchFinallyLoc = ConsumeToken();
Chris Lattnercb53b362007-12-27 19:57:00 +00001835 if (Tok.isObjCAtKeyword(tok::objc_catch)) {
John McCalld226f652010-08-21 09:40:31 +00001836 Decl *FirstPart = 0;
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001837 ConsumeToken(); // consume catch
Chris Lattnerdf195262007-10-09 17:51:17 +00001838 if (Tok.is(tok::l_paren)) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001839 ConsumeParen();
Steve Naroffe21dd6f2009-02-11 20:05:44 +00001840 ParseScope CatchScope(this, Scope::DeclScope|Scope::AtCatchScope);
Chris Lattnerdf195262007-10-09 17:51:17 +00001841 if (Tok.isNot(tok::ellipsis)) {
John McCall0b7e6782011-03-24 11:26:52 +00001842 DeclSpec DS(AttrFactory);
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001843 ParseDeclarationSpecifiers(DS);
Argyrios Kyrtzidis17b63992011-07-01 22:22:40 +00001844 Declarator ParmDecl(DS, Declarator::ObjCCatchContext);
Steve Naroff7ba138a2009-03-03 19:52:17 +00001845 ParseDeclarator(ParmDecl);
1846
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00001847 // Inform the actions module about the declarator, so it
Steve Naroff7ba138a2009-03-03 19:52:17 +00001848 // gets added to the current scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00001849 FirstPart = Actions.ActOnObjCExceptionDecl(getCurScope(), ParmDecl);
Steve Naroff64515f32008-02-05 21:27:35 +00001850 } else
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001851 ConsumeToken(); // consume '...'
Mike Stump1eb44332009-09-09 15:08:12 +00001852
Steve Naroff93a25952009-04-07 22:56:58 +00001853 SourceLocation RParenLoc;
Mike Stump1eb44332009-09-09 15:08:12 +00001854
Steve Naroff93a25952009-04-07 22:56:58 +00001855 if (Tok.is(tok::r_paren))
1856 RParenLoc = ConsumeParen();
1857 else // Skip over garbage, until we get to ')'. Eat the ')'.
1858 SkipUntil(tok::r_paren, true, false);
1859
John McCall60d7b3a2010-08-24 06:29:42 +00001860 StmtResult CatchBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001861 if (Tok.is(tok::l_brace))
1862 CatchBody = ParseCompoundStatementBody();
1863 else
1864 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001865 if (CatchBody.isInvalid())
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +00001866 CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001867
John McCall60d7b3a2010-08-24 06:29:42 +00001868 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001869 RParenLoc,
1870 FirstPart,
John McCall9ae2f072010-08-23 23:25:46 +00001871 CatchBody.take());
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001872 if (!Catch.isInvalid())
1873 CatchStmts.push_back(Catch.release());
1874
Steve Naroff64515f32008-02-05 21:27:35 +00001875 } else {
Chris Lattner1ab3b962008-11-18 07:48:38 +00001876 Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after)
1877 << "@catch clause";
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001878 return StmtError();
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001879 }
1880 catch_or_finally_seen = true;
Chris Lattner6b884502008-03-10 06:06:04 +00001881 } else {
1882 assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?");
Steve Naroff64515f32008-02-05 21:27:35 +00001883 ConsumeToken(); // consume finally
Douglas Gregor8935b8b2008-12-10 06:34:36 +00001884 ParseScope FinallyScope(this, Scope::DeclScope);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001885
John McCall60d7b3a2010-08-24 06:29:42 +00001886 StmtResult FinallyBody(true);
Chris Lattnerc1b3ba52008-02-14 19:27:54 +00001887 if (Tok.is(tok::l_brace))
1888 FinallyBody = ParseCompoundStatementBody();
1889 else
1890 Diag(Tok, diag::err_expected_lbrace);
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001891 if (FinallyBody.isInvalid())
Fariborz Jahanian161a9c52007-11-02 00:18:53 +00001892 FinallyBody = Actions.ActOnNullStmt(Tok.getLocation());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00001893 FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc,
John McCall9ae2f072010-08-23 23:25:46 +00001894 FinallyBody.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001895 catch_or_finally_seen = true;
1896 break;
1897 }
1898 }
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001899 if (!catch_or_finally_seen) {
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001900 Diag(atLoc, diag::err_missing_catch_finally);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00001901 return StmtError();
Fariborz Jahanianbd49a642007-11-02 15:39:31 +00001902 }
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001903
John McCall9ae2f072010-08-23 23:25:46 +00001904 return Actions.ActOnObjCAtTryStmt(atLoc, TryBody.take(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001905 CatchStmts,
John McCall9ae2f072010-08-23 23:25:46 +00001906 FinallyStmt.take());
Fariborz Jahanian397fcc12007-09-19 19:14:32 +00001907}
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001908
John McCallf85e1932011-06-15 23:02:42 +00001909/// objc-autoreleasepool-statement:
1910/// @autoreleasepool compound-statement
1911///
1912StmtResult
1913Parser::ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) {
1914 ConsumeToken(); // consume autoreleasepool
1915 if (Tok.isNot(tok::l_brace)) {
1916 Diag(Tok, diag::err_expected_lbrace);
1917 return StmtError();
1918 }
1919 // Enter a scope to hold everything within the compound stmt. Compound
1920 // statements can always hold declarations.
1921 ParseScope BodyScope(this, Scope::DeclScope);
1922
1923 StmtResult AutoreleasePoolBody(ParseCompoundStatementBody());
1924
1925 BodyScope.Exit();
1926 if (AutoreleasePoolBody.isInvalid())
1927 AutoreleasePoolBody = Actions.ActOnNullStmt(Tok.getLocation());
1928 return Actions.ActOnObjCAutoreleasePoolStmt(atLoc,
1929 AutoreleasePoolBody.take());
1930}
1931
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001932/// StashAwayMethodOrFunctionBodyTokens - Consume the tokens and store them
1933/// for later parsing.
1934void Parser::StashAwayMethodOrFunctionBodyTokens(Decl *MDecl) {
1935 LexedMethod* LM = new LexedMethod(this, MDecl);
1936 CurParsedObjCImpl->LateParsedObjCMethods.push_back(LM);
1937 CachedTokens &Toks = LM->Toks;
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00001938 // Begin by storing the '{' or 'try' or ':' token.
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001939 Toks.push_back(Tok);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001940 if (Tok.is(tok::kw_try)) {
1941 ConsumeToken();
Fariborz Jahaniandbd69452012-08-10 20:34:17 +00001942 if (Tok.is(tok::colon)) {
1943 Toks.push_back(Tok);
1944 ConsumeToken();
1945 while (Tok.isNot(tok::l_brace)) {
1946 ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false);
1947 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
1948 }
1949 }
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00001950 Toks.push_back(Tok); // also store '{'
1951 }
1952 else if (Tok.is(tok::colon)) {
1953 ConsumeToken();
1954 while (Tok.isNot(tok::l_brace)) {
1955 ConsumeAndStoreUntil(tok::l_paren, Toks, /*StopAtSemi=*/false);
1956 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
1957 }
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001958 Toks.push_back(Tok); // also store '{'
1959 }
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001960 ConsumeBrace();
1961 // Consume everything up to (and including) the matching right brace.
1962 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00001963 while (Tok.is(tok::kw_catch)) {
1964 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
1965 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1966 }
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00001967}
1968
Steve Naroff3536b442007-09-06 21:24:23 +00001969/// objc-method-def: objc-method-proto ';'[opt] '{' body '}'
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001970///
John McCalld226f652010-08-21 09:40:31 +00001971Decl *Parser::ParseObjCMethodDefinition() {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001972 Decl *MDecl = ParseObjCMethodPrototype();
Mike Stump1eb44332009-09-09 15:08:12 +00001973
John McCallf312b1e2010-08-26 23:41:50 +00001974 PrettyDeclStackTraceEntry CrashInfo(Actions, MDecl, Tok.getLocation(),
1975 "parsing Objective-C method");
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001977 // parse optional ';'
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001978 if (Tok.is(tok::semi)) {
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001979 if (CurParsedObjCImpl) {
Ted Kremenek496e45e2009-11-10 22:55:49 +00001980 Diag(Tok, diag::warn_semicolon_before_method_body)
Douglas Gregor849b2432010-03-31 17:46:05 +00001981 << FixItHint::CreateRemoval(Tok.getLocation());
Ted Kremenek496e45e2009-11-10 22:55:49 +00001982 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001983 ConsumeToken();
Fariborz Jahanian209a8c22009-10-20 16:39:13 +00001984 }
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001985
Steve Naroff409be832007-11-11 19:54:21 +00001986 // We should have an opening brace now.
Chris Lattnerdf195262007-10-09 17:51:17 +00001987 if (Tok.isNot(tok::l_brace)) {
Steve Naroffda323ad2008-02-29 21:48:07 +00001988 Diag(Tok, diag::err_expected_method_body);
Mike Stump1eb44332009-09-09 15:08:12 +00001989
Steve Naroff409be832007-11-11 19:54:21 +00001990 // Skip over garbage, until we get to '{'. Don't eat the '{'.
1991 SkipUntil(tok::l_brace, true, true);
Mike Stump1eb44332009-09-09 15:08:12 +00001992
Steve Naroff409be832007-11-11 19:54:21 +00001993 // If we didn't find the '{', bail out.
1994 if (Tok.isNot(tok::l_brace))
John McCalld226f652010-08-21 09:40:31 +00001995 return 0;
Fariborz Jahanianac00b7f2007-09-01 00:26:16 +00001996 }
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00001997
1998 if (!MDecl) {
1999 ConsumeBrace();
2000 SkipUntil(tok::r_brace, /*StopAtSemi=*/false);
2001 return 0;
2002 }
2003
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002004 // Allow the rest of sema to find private method decl implementations.
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +00002005 Actions.AddAnyMethodToGlobalPool(MDecl);
Fariborz Jahanianc9b97092012-08-09 17:15:00 +00002006 assert (CurParsedObjCImpl
2007 && "ParseObjCMethodDefinition - Method out of @implementation");
2008 // Consume the tokens and store them for later parsing.
2009 StashAwayMethodOrFunctionBodyTokens(MDecl);
Steve Naroff71c0a952007-11-13 23:01:27 +00002010 return MDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +00002011}
Anders Carlsson55085182007-08-21 17:43:55 +00002012
John McCall60d7b3a2010-08-24 06:29:42 +00002013StmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002014 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002015 Actions.CodeCompleteObjCAtStatement(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002016 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002017 return StmtError();
Chris Lattner5d803162009-12-07 16:33:19 +00002018 }
2019
2020 if (Tok.isObjCAtKeyword(tok::objc_try))
Chris Lattner6b884502008-03-10 06:06:04 +00002021 return ParseObjCTryStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002022
2023 if (Tok.isObjCAtKeyword(tok::objc_throw))
Steve Naroff64515f32008-02-05 21:27:35 +00002024 return ParseObjCThrowStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002025
2026 if (Tok.isObjCAtKeyword(tok::objc_synchronized))
Steve Naroff64515f32008-02-05 21:27:35 +00002027 return ParseObjCSynchronizedStmt(AtLoc);
John McCallf85e1932011-06-15 23:02:42 +00002028
2029 if (Tok.isObjCAtKeyword(tok::objc_autoreleasepool))
2030 return ParseObjCAutoreleasePoolStmt(AtLoc);
Chris Lattner5d803162009-12-07 16:33:19 +00002031
John McCall60d7b3a2010-08-24 06:29:42 +00002032 ExprResult Res(ParseExpressionWithLeadingAt(AtLoc));
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002033 if (Res.isInvalid()) {
Steve Naroff64515f32008-02-05 21:27:35 +00002034 // If the expression is invalid, skip ahead to the next semicolon. Not
2035 // doing this opens us up to the possibility of infinite loops if
2036 // ParseExpression does not consume any tokens.
2037 SkipUntil(tok::semi);
Sebastian Redl43bc2a02008-12-11 20:12:42 +00002038 return StmtError();
Steve Naroff64515f32008-02-05 21:27:35 +00002039 }
Chris Lattner5d803162009-12-07 16:33:19 +00002040
Steve Naroff64515f32008-02-05 21:27:35 +00002041 // Otherwise, eat the semicolon.
Douglas Gregor9ba23b42010-09-07 15:23:11 +00002042 ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
John McCall9ae2f072010-08-23 23:25:46 +00002043 return Actions.ActOnExprStmt(Actions.MakeFullExpr(Res.take()));
Steve Naroff64515f32008-02-05 21:27:35 +00002044}
2045
John McCall60d7b3a2010-08-24 06:29:42 +00002046ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
Anders Carlsson55085182007-08-21 17:43:55 +00002047 switch (Tok.getKind()) {
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002048 case tok::code_completion:
Douglas Gregor23c94db2010-07-02 17:43:08 +00002049 Actions.CodeCompleteObjCAtExpression(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002050 cutOffParsing();
Douglas Gregor9a0c85e2009-12-07 09:51:25 +00002051 return ExprError();
2052
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002053 case tok::minus:
2054 case tok::plus: {
2055 tok::TokenKind Kind = Tok.getKind();
2056 SourceLocation OpLoc = ConsumeToken();
2057
2058 if (!Tok.is(tok::numeric_constant)) {
2059 const char *Symbol = 0;
2060 switch (Kind) {
2061 case tok::minus: Symbol = "-"; break;
2062 case tok::plus: Symbol = "+"; break;
2063 default: llvm_unreachable("missing unary operator case");
2064 }
2065 Diag(Tok, diag::err_nsnumber_nonliteral_unary)
2066 << Symbol;
2067 return ExprError();
2068 }
2069
2070 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2071 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002072 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002073 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002074 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002075
2076 Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.take());
2077 if (Lit.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002078 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002079
2080 return ParsePostfixExpressionSuffix(
2081 Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2082 }
2083
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002084 case tok::string_literal: // primary-expression: string-literal
2085 case tok::wide_string_literal:
Sebastian Redl1d922962008-12-13 15:32:12 +00002086 return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc));
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002087
2088 case tok::char_constant:
2089 return ParsePostfixExpressionSuffix(ParseObjCCharacterLiteral(AtLoc));
2090
2091 case tok::numeric_constant:
2092 return ParsePostfixExpressionSuffix(ParseObjCNumericLiteral(AtLoc));
2093
2094 case tok::kw_true: // Objective-C++, etc.
2095 case tok::kw___objc_yes: // c/c++/objc/objc++ __objc_yes
2096 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, true));
2097 case tok::kw_false: // Objective-C++, etc.
2098 case tok::kw___objc_no: // c/c++/objc/objc++ __objc_no
2099 return ParsePostfixExpressionSuffix(ParseObjCBooleanLiteral(AtLoc, false));
2100
2101 case tok::l_square:
2102 // Objective-C array literal
2103 return ParsePostfixExpressionSuffix(ParseObjCArrayLiteral(AtLoc));
2104
2105 case tok::l_brace:
2106 // Objective-C dictionary literal
2107 return ParsePostfixExpressionSuffix(ParseObjCDictionaryLiteral(AtLoc));
2108
Patrick Beardeb382ec2012-04-19 00:25:12 +00002109 case tok::l_paren:
2110 // Objective-C boxed expression
2111 return ParsePostfixExpressionSuffix(ParseObjCBoxedExpr(AtLoc));
2112
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002113 default:
Chris Lattner4fef81d2008-08-05 06:19:09 +00002114 if (Tok.getIdentifierInfo() == 0)
Sebastian Redl1d922962008-12-13 15:32:12 +00002115 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
Sebastian Redl2f7ece72008-12-11 21:36:32 +00002116
Chris Lattner4fef81d2008-08-05 06:19:09 +00002117 switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
2118 case tok::objc_encode:
Sebastian Redl1d922962008-12-13 15:32:12 +00002119 return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002120 case tok::objc_protocol:
Sebastian Redl1d922962008-12-13 15:32:12 +00002121 return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc));
Chris Lattner4fef81d2008-08-05 06:19:09 +00002122 case tok::objc_selector:
Sebastian Redl1d922962008-12-13 15:32:12 +00002123 return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc));
Fariborz Jahanian6749ae12012-07-09 20:00:35 +00002124 default: {
2125 const char *str = 0;
2126 if (GetLookAheadToken(1).is(tok::l_brace)) {
2127 char ch = Tok.getIdentifierInfo()->getNameStart()[0];
2128 str =
2129 ch == 't' ? "try"
2130 : (ch == 'f' ? "finally"
2131 : (ch == 'a' ? "autoreleasepool" : 0));
2132 }
2133 if (str) {
2134 SourceLocation kwLoc = Tok.getLocation();
2135 return ExprError(Diag(AtLoc, diag::err_unexpected_at) <<
2136 FixItHint::CreateReplacement(kwLoc, str));
2137 }
2138 else
2139 return ExprError(Diag(AtLoc, diag::err_unexpected_at));
2140 }
Chris Lattner4fef81d2008-08-05 06:19:09 +00002141 }
Anders Carlsson55085182007-08-21 17:43:55 +00002142 }
Anders Carlsson55085182007-08-21 17:43:55 +00002143}
2144
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +00002145/// \brief Parse the receiver of an Objective-C++ message send.
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002146///
2147/// This routine parses the receiver of a message send in
2148/// Objective-C++ either as a type or as an expression. Note that this
2149/// routine must not be called to parse a send to 'super', since it
2150/// has no way to return such a result.
2151///
2152/// \param IsExpr Whether the receiver was parsed as an expression.
2153///
2154/// \param TypeOrExpr If the receiver was parsed as an expression (\c
2155/// IsExpr is true), the parsed expression. If the receiver was parsed
2156/// as a type (\c IsExpr is false), the parsed type.
2157///
2158/// \returns True if an error occurred during parsing or semantic
2159/// analysis, in which case the arguments do not have valid
2160/// values. Otherwise, returns false for a successful parse.
2161///
2162/// objc-receiver: [C++]
2163/// 'super' [not parsed here]
2164/// expression
2165/// simple-type-specifier
2166/// typename-specifier
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002167bool Parser::ParseObjCXXMessageReceiver(bool &IsExpr, void *&TypeOrExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002168 InMessageExpressionRAIIObject InMessage(*this, true);
2169
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002170 if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
2171 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope))
2172 TryAnnotateTypeOrScopeToken();
2173
Kaelyn Uhrain7bf33402012-06-15 23:45:51 +00002174 if (!Actions.isSimpleTypeSpecifier(Tok.getKind())) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002175 // objc-receiver:
2176 // expression
John McCall60d7b3a2010-08-24 06:29:42 +00002177 ExprResult Receiver = ParseExpression();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002178 if (Receiver.isInvalid())
2179 return true;
2180
2181 IsExpr = true;
2182 TypeOrExpr = Receiver.take();
2183 return false;
2184 }
2185
2186 // objc-receiver:
2187 // typename-specifier
2188 // simple-type-specifier
2189 // expression (that starts with one of the above)
John McCall0b7e6782011-03-24 11:26:52 +00002190 DeclSpec DS(AttrFactory);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002191 ParseCXXSimpleTypeSpecifier(DS);
2192
2193 if (Tok.is(tok::l_paren)) {
2194 // If we see an opening parentheses at this point, we are
2195 // actually parsing an expression that starts with a
2196 // function-style cast, e.g.,
2197 //
2198 // postfix-expression:
2199 // simple-type-specifier ( expression-list [opt] )
2200 // typename-specifier ( expression-list [opt] )
2201 //
2202 // Parse the remainder of this case, then the (optional)
2203 // postfix-expression suffix, followed by the (optional)
2204 // right-hand side of the binary expression. We have an
2205 // instance method.
John McCall60d7b3a2010-08-24 06:29:42 +00002206 ExprResult Receiver = ParseCXXTypeConstructExpression(DS);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002207 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002208 Receiver = ParsePostfixExpressionSuffix(Receiver.take());
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002209 if (!Receiver.isInvalid())
John McCall9ae2f072010-08-23 23:25:46 +00002210 Receiver = ParseRHSOfBinaryExpression(Receiver.take(), prec::Comma);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002211 if (Receiver.isInvalid())
2212 return true;
2213
2214 IsExpr = true;
2215 TypeOrExpr = Receiver.take();
2216 return false;
2217 }
2218
2219 // We have a class message. Turn the simple-type-specifier or
2220 // typename-specifier we parsed into a type and parse the
2221 // remainder of the class message.
2222 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002223 TypeResult Type = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002224 if (Type.isInvalid())
2225 return true;
2226
2227 IsExpr = false;
John McCallb3d87482010-08-24 05:47:05 +00002228 TypeOrExpr = Type.get().getAsOpaquePtr();
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002229 return false;
2230}
2231
Douglas Gregor1b730e82010-05-31 14:40:22 +00002232/// \brief Determine whether the parser is currently referring to a an
2233/// Objective-C message send, using a simplified heuristic to avoid overhead.
2234///
2235/// This routine will only return true for a subset of valid message-send
2236/// expressions.
2237bool Parser::isSimpleObjCMessageExpression() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002238 assert(Tok.is(tok::l_square) && getLangOpts().ObjC1 &&
Douglas Gregor1b730e82010-05-31 14:40:22 +00002239 "Incorrect start for isSimpleObjCMessageExpression");
Douglas Gregor1b730e82010-05-31 14:40:22 +00002240 return GetLookAheadToken(1).is(tok::identifier) &&
2241 GetLookAheadToken(2).is(tok::identifier);
2242}
2243
Douglas Gregor9497a732010-09-16 01:51:54 +00002244bool Parser::isStartOfObjCClassMessageMissingOpenBracket() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002245 if (!getLangOpts().ObjC1 || !NextToken().is(tok::identifier) ||
Douglas Gregor9497a732010-09-16 01:51:54 +00002246 InMessageExpression)
2247 return false;
2248
2249
2250 ParsedType Type;
2251
2252 if (Tok.is(tok::annot_typename))
2253 Type = getTypeAnnotation(Tok);
2254 else if (Tok.is(tok::identifier))
2255 Type = Actions.getTypeName(*Tok.getIdentifierInfo(), Tok.getLocation(),
2256 getCurScope());
2257 else
2258 return false;
2259
2260 if (!Type.get().isNull() && Type.get()->isObjCObjectOrInterfaceType()) {
2261 const Token &AfterNext = GetLookAheadToken(2);
2262 if (AfterNext.is(tok::colon) || AfterNext.is(tok::r_square)) {
2263 if (Tok.is(tok::identifier))
2264 TryAnnotateTypeOrScopeToken();
2265
2266 return Tok.is(tok::annot_typename);
2267 }
2268 }
2269
2270 return false;
2271}
2272
Mike Stump1eb44332009-09-09 15:08:12 +00002273/// objc-message-expr:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002274/// '[' objc-receiver objc-message-args ']'
2275///
Douglas Gregor2725ca82010-04-21 19:57:20 +00002276/// objc-receiver: [C]
Chris Lattnereb483eb2010-04-11 08:28:14 +00002277/// 'super'
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002278/// expression
2279/// class-name
2280/// type-name
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002281///
John McCall60d7b3a2010-08-24 06:29:42 +00002282ExprResult Parser::ParseObjCMessageExpression() {
Chris Lattner699b6612008-01-25 18:59:06 +00002283 assert(Tok.is(tok::l_square) && "'[' expected");
2284 SourceLocation LBracLoc = ConsumeBracket(); // consume '['
2285
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002286 if (Tok.is(tok::code_completion)) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00002287 Actions.CodeCompleteObjCMessageReceiver(getCurScope());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002288 cutOffParsing();
Douglas Gregor8e254cf2010-05-27 23:06:34 +00002289 return ExprError();
2290 }
2291
Douglas Gregor0fbda682010-09-15 14:51:05 +00002292 InMessageExpressionRAIIObject InMessage(*this, true);
2293
David Blaikie4e4d0842012-03-11 07:00:24 +00002294 if (getLangOpts().CPlusPlus) {
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002295 // We completely separate the C and C++ cases because C++ requires
2296 // more complicated (read: slower) parsing.
2297
2298 // Handle send to super.
2299 // FIXME: This doesn't benefit from the same typo-correction we
2300 // get in Objective-C.
2301 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
Douglas Gregor23c94db2010-07-02 17:43:08 +00002302 NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
John McCallb3d87482010-08-24 05:47:05 +00002303 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2304 ParsedType(), 0);
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002305
2306 // Parse the receiver, which is either a type or an expression.
2307 bool IsExpr;
Nick Lewycky304b7522010-09-15 18:35:19 +00002308 void *TypeOrExpr = NULL;
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002309 if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
2310 SkipUntil(tok::r_square);
2311 return ExprError();
2312 }
2313
2314 if (IsExpr)
John McCallb3d87482010-08-24 05:47:05 +00002315 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2316 ParsedType(),
John McCall9ae2f072010-08-23 23:25:46 +00002317 static_cast<Expr*>(TypeOrExpr));
Douglas Gregor6aa14d82010-04-21 22:36:40 +00002318
2319 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +00002320 ParsedType::getFromOpaquePtr(TypeOrExpr),
2321 0);
Chris Lattnerc59cb382010-05-31 18:18:22 +00002322 }
2323
2324 if (Tok.is(tok::identifier)) {
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002325 IdentifierInfo *Name = Tok.getIdentifierInfo();
2326 SourceLocation NameLoc = Tok.getLocation();
John McCallb3d87482010-08-24 05:47:05 +00002327 ParsedType ReceiverType;
Douglas Gregor23c94db2010-07-02 17:43:08 +00002328 switch (Actions.getObjCMessageKind(getCurScope(), Name, NameLoc,
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002329 Name == Ident_super,
Douglas Gregor1569f952010-04-21 20:38:13 +00002330 NextToken().is(tok::period),
2331 ReceiverType)) {
John McCallf312b1e2010-08-26 23:41:50 +00002332 case Sema::ObjCSuperMessage:
John McCallb3d87482010-08-24 05:47:05 +00002333 return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2334 ParsedType(), 0);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002335
John McCallf312b1e2010-08-26 23:41:50 +00002336 case Sema::ObjCClassMessage:
Douglas Gregor1569f952010-04-21 20:38:13 +00002337 if (!ReceiverType) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002338 SkipUntil(tok::r_square);
2339 return ExprError();
2340 }
2341
Douglas Gregor1569f952010-04-21 20:38:13 +00002342 ConsumeToken(); // the type name
2343
2344 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
John McCall9ae2f072010-08-23 23:25:46 +00002345 ReceiverType, 0);
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002346
John McCallf312b1e2010-08-26 23:41:50 +00002347 case Sema::ObjCInstanceMessage:
Douglas Gregor2725ca82010-04-21 19:57:20 +00002348 // Fall through to parse an expression.
Douglas Gregor1dbca6e2010-04-14 02:22:16 +00002349 break;
Fariborz Jahaniand2869922009-04-08 19:50:10 +00002350 }
Chris Lattner699b6612008-01-25 18:59:06 +00002351 }
Chris Lattnereb483eb2010-04-11 08:28:14 +00002352
2353 // Otherwise, an arbitrary expression can be the receiver of a send.
John McCall60d7b3a2010-08-24 06:29:42 +00002354 ExprResult Res(ParseExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002355 if (Res.isInvalid()) {
Chris Lattner5c749422008-01-25 19:43:26 +00002356 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002357 return Res;
Chris Lattner699b6612008-01-25 18:59:06 +00002358 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002359
John McCallb3d87482010-08-24 05:47:05 +00002360 return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2361 ParsedType(), Res.take());
Chris Lattner699b6612008-01-25 18:59:06 +00002362}
Sebastian Redl1d922962008-12-13 15:32:12 +00002363
Douglas Gregor2725ca82010-04-21 19:57:20 +00002364/// \brief Parse the remainder of an Objective-C message following the
2365/// '[' objc-receiver.
2366///
2367/// This routine handles sends to super, class messages (sent to a
2368/// class name), and instance messages (sent to an object), and the
2369/// target is represented by \p SuperLoc, \p ReceiverType, or \p
2370/// ReceiverExpr, respectively. Only one of these parameters may have
2371/// a valid value.
2372///
2373/// \param LBracLoc The location of the opening '['.
2374///
2375/// \param SuperLoc If this is a send to 'super', the location of the
2376/// 'super' keyword that indicates a send to the superclass.
2377///
2378/// \param ReceiverType If this is a class message, the type of the
2379/// class we are sending a message to.
2380///
2381/// \param ReceiverExpr If this is an instance message, the expression
2382/// used to compute the receiver object.
Mike Stump1eb44332009-09-09 15:08:12 +00002383///
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002384/// objc-message-args:
2385/// objc-selector
2386/// objc-keywordarg-list
2387///
2388/// objc-keywordarg-list:
2389/// objc-keywordarg
2390/// objc-keywordarg-list objc-keywordarg
2391///
Mike Stump1eb44332009-09-09 15:08:12 +00002392/// objc-keywordarg:
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002393/// selector-name[opt] ':' objc-keywordexpr
2394///
2395/// objc-keywordexpr:
2396/// nonempty-expr-list
2397///
2398/// nonempty-expr-list:
2399/// assignment-expression
2400/// nonempty-expr-list , assignment-expression
Sebastian Redl1d922962008-12-13 15:32:12 +00002401///
John McCall60d7b3a2010-08-24 06:29:42 +00002402ExprResult
Chris Lattner699b6612008-01-25 18:59:06 +00002403Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002404 SourceLocation SuperLoc,
John McCallb3d87482010-08-24 05:47:05 +00002405 ParsedType ReceiverType,
Sebastian Redl1d922962008-12-13 15:32:12 +00002406 ExprArg ReceiverExpr) {
Douglas Gregor0fbda682010-09-15 14:51:05 +00002407 InMessageExpressionRAIIObject InMessage(*this, true);
2408
Steve Naroffc4df6d22009-11-07 02:08:14 +00002409 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002410 if (SuperLoc.isValid())
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002411 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, 0, 0,
2412 false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002413 else if (ReceiverType)
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002414 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, 0, 0,
2415 false);
Steve Naroffc4df6d22009-11-07 02:08:14 +00002416 else
John McCall9ae2f072010-08-23 23:25:46 +00002417 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002418 0, 0, false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002419 cutOffParsing();
2420 return ExprError();
Steve Naroffc4df6d22009-11-07 02:08:14 +00002421 }
Douglas Gregord3c68542009-11-19 01:08:35 +00002422
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002423 // Parse objc-selector
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00002424 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002425 IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
Steve Naroff68d331a2007-09-27 14:38:14 +00002426
Chris Lattner5f9e2722011-07-23 10:55:15 +00002427 SmallVector<IdentifierInfo *, 12> KeyIdents;
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002428 SmallVector<SourceLocation, 12> KeyLocs;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002429 ExprVector KeyExprs;
Steve Naroff68d331a2007-09-27 14:38:14 +00002430
Chris Lattnerdf195262007-10-09 17:51:17 +00002431 if (Tok.is(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002432 while (1) {
2433 // Each iteration parses a single keyword argument.
Steve Naroff68d331a2007-09-27 14:38:14 +00002434 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002435 KeyLocs.push_back(Loc);
Steve Naroff37387c92007-09-17 20:25:27 +00002436
Chris Lattnerdf195262007-10-09 17:51:17 +00002437 if (Tok.isNot(tok::colon)) {
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002438 Diag(Tok, diag::err_expected_colon);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002439 // We must manually skip to a ']', otherwise the expression skipper will
2440 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2441 // the enclosing expression.
2442 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002443 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002444 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002445
Steve Naroff68d331a2007-09-27 14:38:14 +00002446 ConsumeToken(); // Eat the ':'.
Mike Stump1eb44332009-09-09 15:08:12 +00002447 /// Parse the expression after ':'
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002448
2449 if (Tok.is(tok::code_completion)) {
2450 if (SuperLoc.isValid())
2451 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
2452 KeyIdents.data(),
2453 KeyIdents.size(),
2454 /*AtArgumentEpression=*/true);
2455 else if (ReceiverType)
2456 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
2457 KeyIdents.data(),
2458 KeyIdents.size(),
2459 /*AtArgumentEpression=*/true);
2460 else
2461 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
2462 KeyIdents.data(),
2463 KeyIdents.size(),
2464 /*AtArgumentEpression=*/true);
2465
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002466 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002467 return ExprError();
2468 }
2469
John McCall60d7b3a2010-08-24 06:29:42 +00002470 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002471 if (Res.isInvalid()) {
Chris Lattner4fef81d2008-08-05 06:19:09 +00002472 // We must manually skip to a ']', otherwise the expression skipper will
2473 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2474 // the enclosing expression.
2475 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002476 return Res;
Steve Naroff37387c92007-09-17 20:25:27 +00002477 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002478
Steve Naroff37387c92007-09-17 20:25:27 +00002479 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002480 KeyExprs.push_back(Res.release());
Sebastian Redl1d922962008-12-13 15:32:12 +00002481
Douglas Gregord3c68542009-11-19 01:08:35 +00002482 // Code completion after each argument.
2483 if (Tok.is(tok::code_completion)) {
Douglas Gregor2725ca82010-04-21 19:57:20 +00002484 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002485 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
Douglas Gregor2725ca82010-04-21 19:57:20 +00002486 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002487 KeyIdents.size(),
2488 /*AtArgumentEpression=*/false);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002489 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002490 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
Douglas Gregord3c68542009-11-19 01:08:35 +00002491 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002492 KeyIdents.size(),
2493 /*AtArgumentEpression=*/false);
Douglas Gregord3c68542009-11-19 01:08:35 +00002494 else
John McCall9ae2f072010-08-23 23:25:46 +00002495 Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
Douglas Gregord3c68542009-11-19 01:08:35 +00002496 KeyIdents.data(),
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002497 KeyIdents.size(),
2498 /*AtArgumentEpression=*/false);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002499 cutOffParsing();
Douglas Gregor70c5ac72010-09-20 23:34:21 +00002500 return ExprError();
Douglas Gregord3c68542009-11-19 01:08:35 +00002501 }
2502
Steve Naroff37387c92007-09-17 20:25:27 +00002503 // Check for another keyword selector.
Chris Lattner2fc5c242009-04-11 18:13:45 +00002504 selIdent = ParseObjCSelectorPiece(Loc);
Chris Lattnerdf195262007-10-09 17:51:17 +00002505 if (!selIdent && Tok.isNot(tok::colon))
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002506 break;
2507 // We have a selector or a colon, continue parsing.
2508 }
2509 // Parse the, optional, argument list, comma separated.
Chris Lattnerdf195262007-10-09 17:51:17 +00002510 while (Tok.is(tok::comma)) {
Fariborz Jahanian18df0eb2012-05-21 22:43:44 +00002511 SourceLocation commaLoc = ConsumeToken(); // Eat the ','.
Mike Stump1eb44332009-09-09 15:08:12 +00002512 /// Parse the expression after ','
John McCall60d7b3a2010-08-24 06:29:42 +00002513 ExprResult Res(ParseAssignmentExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002514 if (Res.isInvalid()) {
Fariborz Jahanian18df0eb2012-05-21 22:43:44 +00002515 if (Tok.is(tok::colon)) {
2516 Diag(commaLoc, diag::note_extra_comma_message_arg) <<
2517 FixItHint::CreateRemoval(commaLoc);
2518 }
Chris Lattner4fef81d2008-08-05 06:19:09 +00002519 // We must manually skip to a ']', otherwise the expression skipper will
2520 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2521 // the enclosing expression.
2522 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002523 return Res;
Steve Naroff49f109c2007-11-15 13:05:42 +00002524 }
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002525
Steve Naroff49f109c2007-11-15 13:05:42 +00002526 // We have a valid expression.
Sebastian Redleffa8d12008-12-10 00:02:53 +00002527 KeyExprs.push_back(Res.release());
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002528 }
2529 } else if (!selIdent) {
2530 Diag(Tok, diag::err_expected_ident); // missing selector name.
Sebastian Redl1d922962008-12-13 15:32:12 +00002531
Chris Lattner4fef81d2008-08-05 06:19:09 +00002532 // We must manually skip to a ']', otherwise the expression skipper will
2533 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2534 // the enclosing expression.
2535 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002536 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002537 }
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002538
Chris Lattnerdf195262007-10-09 17:51:17 +00002539 if (Tok.isNot(tok::r_square)) {
Fariborz Jahanian809872e2010-03-31 20:22:35 +00002540 if (Tok.is(tok::identifier))
2541 Diag(Tok, diag::err_expected_colon);
2542 else
2543 Diag(Tok, diag::err_expected_rsquare);
Chris Lattner4fef81d2008-08-05 06:19:09 +00002544 // We must manually skip to a ']', otherwise the expression skipper will
2545 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2546 // the enclosing expression.
2547 SkipUntil(tok::r_square);
Sebastian Redl1d922962008-12-13 15:32:12 +00002548 return ExprError();
Fariborz Jahaniana65ff6c2007-09-05 23:08:20 +00002549 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002550
Chris Lattner699b6612008-01-25 18:59:06 +00002551 SourceLocation RBracLoc = ConsumeBracket(); // consume ']'
Sebastian Redl1d922962008-12-13 15:32:12 +00002552
Steve Naroff29238a02007-10-05 18:42:47 +00002553 unsigned nKeys = KeyIdents.size();
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002554 if (nKeys == 0) {
Chris Lattnerff384912007-10-07 02:00:24 +00002555 KeyIdents.push_back(selIdent);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002556 KeyLocs.push_back(Loc);
2557 }
Chris Lattnerff384912007-10-07 02:00:24 +00002558 Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002559
Douglas Gregor2725ca82010-04-21 19:57:20 +00002560 if (SuperLoc.isValid())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002561 return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002562 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
Douglas Gregor2725ca82010-04-21 19:57:20 +00002563 else if (ReceiverType)
Douglas Gregor23c94db2010-07-02 17:43:08 +00002564 return Actions.ActOnClassMessage(getCurScope(), ReceiverType, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002565 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
John McCall9ae2f072010-08-23 23:25:46 +00002566 return Actions.ActOnInstanceMessage(getCurScope(), ReceiverExpr, Sel,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002567 LBracLoc, KeyLocs, RBracLoc, KeyExprs);
Fariborz Jahanian0ccb27d2007-09-05 19:52:07 +00002568}
2569
John McCall60d7b3a2010-08-24 06:29:42 +00002570ExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) {
2571 ExprResult Res(ParseStringLiteralExpression());
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002572 if (Res.isInvalid()) return Res;
Sebastian Redl1d922962008-12-13 15:32:12 +00002573
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002574 // @"foo" @"bar" is a valid concatenated string. Eat any subsequent string
2575 // expressions. At this point, we know that the only valid thing that starts
2576 // with '@' is an @"".
Chris Lattner5f9e2722011-07-23 10:55:15 +00002577 SmallVector<SourceLocation, 4> AtLocs;
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002578 ExprVector AtStrings;
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002579 AtLocs.push_back(AtLoc);
Sebastian Redleffa8d12008-12-10 00:02:53 +00002580 AtStrings.push_back(Res.release());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002581
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002582 while (Tok.is(tok::at)) {
2583 AtLocs.push_back(ConsumeToken()); // eat the @.
Anders Carlsson55085182007-08-21 17:43:55 +00002584
Sebastian Redl15faa7f2008-12-09 20:22:58 +00002585 // Invalid unless there is a string literal.
Chris Lattner97cf6eb2009-02-18 05:56:09 +00002586 if (!isTokenStringLiteral())
2587 return ExprError(Diag(Tok, diag::err_objc_concat_string));
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002588
John McCall60d7b3a2010-08-24 06:29:42 +00002589 ExprResult Lit(ParseStringLiteralExpression());
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002590 if (Lit.isInvalid())
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002591 return Lit;
Sebastian Redl0e9eabc2008-12-09 13:15:23 +00002592
Sebastian Redleffa8d12008-12-10 00:02:53 +00002593 AtStrings.push_back(Lit.release());
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002594 }
Sebastian Redl1d922962008-12-13 15:32:12 +00002595
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002596 return Owned(Actions.ParseObjCStringLiteral(&AtLocs[0], AtStrings.data(),
Sebastian Redl1d922962008-12-13 15:32:12 +00002597 AtStrings.size()));
Anders Carlsson55085182007-08-21 17:43:55 +00002598}
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002599
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002600/// ParseObjCBooleanLiteral -
2601/// objc-scalar-literal : '@' boolean-keyword
2602/// ;
2603/// boolean-keyword: 'true' | 'false' | '__objc_yes' | '__objc_no'
2604/// ;
2605ExprResult Parser::ParseObjCBooleanLiteral(SourceLocation AtLoc,
2606 bool ArgValue) {
2607 SourceLocation EndLoc = ConsumeToken(); // consume the keyword.
2608 return Actions.ActOnObjCBoolLiteral(AtLoc, EndLoc, ArgValue);
2609}
2610
2611/// ParseObjCCharacterLiteral -
2612/// objc-scalar-literal : '@' character-literal
2613/// ;
2614ExprResult Parser::ParseObjCCharacterLiteral(SourceLocation AtLoc) {
2615 ExprResult Lit(Actions.ActOnCharacterConstant(Tok));
2616 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002617 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002618 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002619 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002620 return Owned(Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2621}
2622
2623/// ParseObjCNumericLiteral -
2624/// objc-scalar-literal : '@' scalar-literal
2625/// ;
2626/// scalar-literal : | numeric-constant /* any numeric constant. */
2627/// ;
2628ExprResult Parser::ParseObjCNumericLiteral(SourceLocation AtLoc) {
2629 ExprResult Lit(Actions.ActOnNumericConstant(Tok));
2630 if (Lit.isInvalid()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002631 return Lit;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002632 }
Benjamin Kramer8b8d9532012-03-07 00:14:40 +00002633 ConsumeToken(); // Consume the literal token.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002634 return Owned(Actions.BuildObjCNumericLiteral(AtLoc, Lit.take()));
2635}
2636
Patrick Beardeb382ec2012-04-19 00:25:12 +00002637/// ParseObjCBoxedExpr -
2638/// objc-box-expression:
2639/// @( assignment-expression )
2640ExprResult
2641Parser::ParseObjCBoxedExpr(SourceLocation AtLoc) {
2642 if (Tok.isNot(tok::l_paren))
2643 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@");
2644
2645 BalancedDelimiterTracker T(*this, tok::l_paren);
2646 T.consumeOpen();
2647 ExprResult ValueExpr(ParseAssignmentExpression());
2648 if (T.consumeClose())
2649 return ExprError();
Argyrios Kyrtzidisedd27602012-05-10 20:02:36 +00002650
2651 if (ValueExpr.isInvalid())
2652 return ExprError();
2653
Patrick Beardeb382ec2012-04-19 00:25:12 +00002654 // Wrap the sub-expression in a parenthesized expression, to distinguish
2655 // a boxed expression from a literal.
2656 SourceLocation LPLoc = T.getOpenLocation(), RPLoc = T.getCloseLocation();
2657 ValueExpr = Actions.ActOnParenExpr(LPLoc, RPLoc, ValueExpr.take());
2658 return Owned(Actions.BuildObjCBoxedExpr(SourceRange(AtLoc, RPLoc),
2659 ValueExpr.take()));
2660}
2661
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002662ExprResult Parser::ParseObjCArrayLiteral(SourceLocation AtLoc) {
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002663 ExprVector ElementExprs; // array elements.
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002664 ConsumeBracket(); // consume the l_square.
2665
2666 while (Tok.isNot(tok::r_square)) {
2667 // Parse list of array element expressions (all must be id types).
2668 ExprResult Res(ParseAssignmentExpression());
2669 if (Res.isInvalid()) {
2670 // We must manually skip to a ']', otherwise the expression skipper will
2671 // stop at the ']' when it skips to the ';'. We want it to skip beyond
2672 // the enclosing expression.
2673 SkipUntil(tok::r_square);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002674 return Res;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002675 }
2676
2677 // Parse the ellipsis that indicates a pack expansion.
2678 if (Tok.is(tok::ellipsis))
2679 Res = Actions.ActOnPackExpansion(Res.get(), ConsumeToken());
2680 if (Res.isInvalid())
2681 return true;
2682
2683 ElementExprs.push_back(Res.release());
2684
2685 if (Tok.is(tok::comma))
2686 ConsumeToken(); // Eat the ','.
2687 else if (Tok.isNot(tok::r_square))
2688 return ExprError(Diag(Tok, diag::err_expected_rsquare_or_comma));
2689 }
2690 SourceLocation EndLoc = ConsumeBracket(); // location of ']'
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00002691 MultiExprArg Args(ElementExprs);
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002692 return Owned(Actions.BuildObjCArrayLiteral(SourceRange(AtLoc, EndLoc), Args));
2693}
2694
2695ExprResult Parser::ParseObjCDictionaryLiteral(SourceLocation AtLoc) {
2696 SmallVector<ObjCDictionaryElement, 4> Elements; // dictionary elements.
2697 ConsumeBrace(); // consume the l_square.
2698 while (Tok.isNot(tok::r_brace)) {
2699 // Parse the comma separated key : value expressions.
2700 ExprResult KeyExpr;
2701 {
2702 ColonProtectionRAIIObject X(*this);
2703 KeyExpr = ParseAssignmentExpression();
2704 if (KeyExpr.isInvalid()) {
2705 // We must manually skip to a '}', otherwise the expression skipper will
2706 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2707 // the enclosing expression.
2708 SkipUntil(tok::r_brace);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002709 return KeyExpr;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002710 }
2711 }
2712
2713 if (Tok.is(tok::colon)) {
2714 ConsumeToken();
2715 } else {
2716 return ExprError(Diag(Tok, diag::err_expected_colon));
2717 }
2718
2719 ExprResult ValueExpr(ParseAssignmentExpression());
2720 if (ValueExpr.isInvalid()) {
2721 // We must manually skip to a '}', otherwise the expression skipper will
2722 // stop at the '}' when it skips to the ';'. We want it to skip beyond
2723 // the enclosing expression.
2724 SkipUntil(tok::r_brace);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002725 return ValueExpr;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002726 }
2727
2728 // Parse the ellipsis that designates this as a pack expansion.
2729 SourceLocation EllipsisLoc;
David Blaikie4e4d0842012-03-11 07:00:24 +00002730 if (Tok.is(tok::ellipsis) && getLangOpts().CPlusPlus)
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002731 EllipsisLoc = ConsumeToken();
2732
2733 // We have a valid expression. Collect it in a vector so we can
2734 // build the argument list.
2735 ObjCDictionaryElement Element = {
2736 KeyExpr.get(), ValueExpr.get(), EllipsisLoc, llvm::Optional<unsigned>()
2737 };
2738 Elements.push_back(Element);
2739
2740 if (Tok.is(tok::comma))
2741 ConsumeToken(); // Eat the ','.
2742 else if (Tok.isNot(tok::r_brace))
2743 return ExprError(Diag(Tok, diag::err_expected_rbrace_or_comma));
2744 }
2745 SourceLocation EndLoc = ConsumeBrace();
2746
2747 // Create the ObjCDictionaryLiteral.
2748 return Owned(Actions.BuildObjCDictionaryLiteral(SourceRange(AtLoc, EndLoc),
2749 Elements.data(),
2750 Elements.size()));
2751}
2752
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002753/// objc-encode-expression:
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +00002754/// \@encode ( type-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002755ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002756Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
Steve Naroff861cf3e2007-08-23 18:16:40 +00002757 assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
Sebastian Redl1d922962008-12-13 15:32:12 +00002758
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002759 SourceLocation EncLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002760
Chris Lattner4fef81d2008-08-05 06:19:09 +00002761 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002762 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode");
2763
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002764 BalancedDelimiterTracker T(*this, tok::l_paren);
2765 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002766
Douglas Gregor809070a2009-02-18 17:45:20 +00002767 TypeResult Ty = ParseTypeName();
Sebastian Redl1d922962008-12-13 15:32:12 +00002768
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002769 T.consumeClose();
Sebastian Redl1d922962008-12-13 15:32:12 +00002770
Douglas Gregor809070a2009-02-18 17:45:20 +00002771 if (Ty.isInvalid())
2772 return ExprError();
2773
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002774 return Owned(Actions.ParseObjCEncodeExpression(AtLoc, EncLoc,
2775 T.getOpenLocation(), Ty.get(),
2776 T.getCloseLocation()));
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002777}
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002778
2779/// objc-protocol-expression
James Dennett17d26a62012-06-11 06:19:40 +00002780/// \@protocol ( protocol-name )
John McCall60d7b3a2010-08-24 06:29:42 +00002781ExprResult
Sebastian Redl1d922962008-12-13 15:32:12 +00002782Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) {
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002783 SourceLocation ProtoLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002784
Chris Lattner4fef81d2008-08-05 06:19:09 +00002785 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002786 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol");
2787
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002788 BalancedDelimiterTracker T(*this, tok::l_paren);
2789 T.consumeOpen();
Sebastian Redl1d922962008-12-13 15:32:12 +00002790
Chris Lattner4fef81d2008-08-05 06:19:09 +00002791 if (Tok.isNot(tok::identifier))
Sebastian Redl1d922962008-12-13 15:32:12 +00002792 return ExprError(Diag(Tok, diag::err_expected_ident));
2793
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002794 IdentifierInfo *protocolId = Tok.getIdentifierInfo();
Argyrios Kyrtzidis7d24e282012-05-16 00:50:02 +00002795 SourceLocation ProtoIdLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002796
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002797 T.consumeClose();
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002798
Sebastian Redl1d922962008-12-13 15:32:12 +00002799 return Owned(Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002800 T.getOpenLocation(),
Argyrios Kyrtzidis7d24e282012-05-16 00:50:02 +00002801 ProtoIdLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002802 T.getCloseLocation()));
Anders Carlsson29b2cb12007-08-23 15:25:28 +00002803}
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002804
2805/// objc-selector-expression
2806/// @selector '(' objc-keyword-selector ')'
John McCall60d7b3a2010-08-24 06:29:42 +00002807ExprResult Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002808 SourceLocation SelectorLoc = ConsumeToken();
Sebastian Redl1d922962008-12-13 15:32:12 +00002809
Chris Lattner4fef81d2008-08-05 06:19:09 +00002810 if (Tok.isNot(tok::l_paren))
Sebastian Redl1d922962008-12-13 15:32:12 +00002811 return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector");
2812
Chris Lattner5f9e2722011-07-23 10:55:15 +00002813 SmallVector<IdentifierInfo *, 12> KeyIdents;
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002814 SourceLocation sLoc;
Douglas Gregor458433d2010-08-26 15:07:07 +00002815
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002816 BalancedDelimiterTracker T(*this, tok::l_paren);
2817 T.consumeOpen();
2818
Douglas Gregor458433d2010-08-26 15:07:07 +00002819 if (Tok.is(tok::code_completion)) {
2820 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2821 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002822 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002823 return ExprError();
2824 }
2825
Chris Lattner2fc5c242009-04-11 18:13:45 +00002826 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
Chris Lattner5add7542010-08-27 22:32:41 +00002827 if (!SelIdent && // missing selector name.
2828 Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002829 return ExprError(Diag(Tok, diag::err_expected_ident));
2830
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002831 KeyIdents.push_back(SelIdent);
Steve Naroff887407e2007-12-05 22:21:29 +00002832 unsigned nColons = 0;
2833 if (Tok.isNot(tok::r_paren)) {
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002834 while (1) {
Chris Lattner5add7542010-08-27 22:32:41 +00002835 if (Tok.is(tok::coloncolon)) { // Handle :: in C++.
2836 ++nColons;
2837 KeyIdents.push_back(0);
2838 } else if (Tok.isNot(tok::colon))
Sebastian Redl1d922962008-12-13 15:32:12 +00002839 return ExprError(Diag(Tok, diag::err_expected_colon));
2840
Chris Lattner5add7542010-08-27 22:32:41 +00002841 ++nColons;
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002842 ConsumeToken(); // Eat the ':' or '::'.
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002843 if (Tok.is(tok::r_paren))
2844 break;
Douglas Gregor458433d2010-08-26 15:07:07 +00002845
2846 if (Tok.is(tok::code_completion)) {
2847 Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2848 KeyIdents.size());
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00002849 cutOffParsing();
Douglas Gregor458433d2010-08-26 15:07:07 +00002850 return ExprError();
2851 }
2852
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002853 // Check for another keyword selector.
2854 SourceLocation Loc;
Chris Lattner2fc5c242009-04-11 18:13:45 +00002855 SelIdent = ParseObjCSelectorPiece(Loc);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002856 KeyIdents.push_back(SelIdent);
Chris Lattner3b3e1a92011-03-26 18:11:38 +00002857 if (!SelIdent && Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00002858 break;
2859 }
Steve Naroff887407e2007-12-05 22:21:29 +00002860 }
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002861 T.consumeClose();
Steve Naroff887407e2007-12-05 22:21:29 +00002862 Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]);
Sebastian Redl1d922962008-12-13 15:32:12 +00002863 return Owned(Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc,
Douglas Gregor4a8dfb52011-10-12 16:37:45 +00002864 T.getOpenLocation(),
2865 T.getCloseLocation()));
Gabor Greif58065b22007-10-19 15:38:32 +00002866 }
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002867
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002868void Parser::ParseLexedObjCMethodDefs(LexedMethod &LM, bool parseMethod) {
2869 // MCDecl might be null due to error in method or c-function prototype, etc.
2870 Decl *MCDecl = LM.D;
2871 bool skip = MCDecl &&
2872 ((parseMethod && !Actions.isObjCMethodDecl(MCDecl)) ||
2873 (!parseMethod && Actions.isObjCMethodDecl(MCDecl)));
2874 if (skip)
2875 return;
2876
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002877 // Save the current token position.
2878 SourceLocation OrigLoc = Tok.getLocation();
2879
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002880 assert(!LM.Toks.empty() && "ParseLexedObjCMethodDef - Empty body!");
2881 // Append the current token at the end of the new token stream so that it
2882 // doesn't get lost.
2883 LM.Toks.push_back(Tok);
2884 PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false);
2885
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002886 // Consume the previously pushed token.
2887 ConsumeAnyToken();
2888
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002889 assert((Tok.is(tok::l_brace) || Tok.is(tok::kw_try) ||
2890 Tok.is(tok::colon)) &&
2891 "Inline objective-c method not starting with '{' or 'try' or ':'");
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002892 // Enter a scope for the method or c-fucntion body.
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002893 ParseScope BodyScope(this,
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002894 parseMethod
2895 ? Scope::ObjCMethodScope|Scope::FnScope|Scope::DeclScope
2896 : Scope::FnScope|Scope::DeclScope);
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002897
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002898 // Tell the actions module that we have entered a method or c-function definition
2899 // with the specified Declarator for the method/function.
Fariborz Jahanian8c6cb462012-08-08 23:41:08 +00002900 if (parseMethod)
2901 Actions.ActOnStartOfObjCMethodDef(getCurScope(), MCDecl);
2902 else
2903 Actions.ActOnStartOfFunctionDef(getCurScope(), MCDecl);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00002904 if (Tok.is(tok::kw_try))
2905 MCDecl = ParseFunctionTryBlock(MCDecl, BodyScope);
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002906 else {
2907 if (Tok.is(tok::colon))
2908 ParseConstructorInitializer(MCDecl);
Fariborz Jahanian2eb362b2012-08-10 18:10:56 +00002909 MCDecl = ParseFunctionStatementBody(MCDecl, BodyScope);
Fariborz Jahanian9e5df312012-08-10 21:15:06 +00002910 }
Fariborz Jahanian69409722012-08-09 21:12:39 +00002911
Argyrios Kyrtzidisa24195a2011-12-17 04:13:18 +00002912 if (Tok.getLocation() != OrigLoc) {
2913 // Due to parsing error, we either went over the cached tokens or
2914 // there are still cached tokens left. If it's the latter case skip the
2915 // leftover tokens.
2916 // Since this is an uncommon situation that should be avoided, use the
2917 // expensive isBeforeInTranslationUnit call.
2918 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
2919 OrigLoc))
2920 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
2921 ConsumeAnyToken();
2922 }
2923
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +00002924 return;
Fariborz Jahanian140ab232011-08-31 17:37:55 +00002925}