xref: /llvm-project/clang/lib/Parse/ParseObjc.cpp (revision e268b406bab611c738bfa0fa215324960dce23fa)
1 //===--- ParseObjC.cpp - Objective C Parsing ------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the Objective-C portions of the Parser interface.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Parse/Parser.h"
15 #include "clang/Parse/DeclSpec.h"
16 #include "clang/Parse/Scope.h"
17 #include "AstGuard.h"
18 #include "clang/Parse/ParseDiagnostic.h"
19 #include "llvm/ADT/SmallVector.h"
20 using namespace clang;
21 
22 
23 /// ParseObjCAtDirectives - Handle parts of the external-declaration production:
24 ///       external-declaration: [C99 6.9]
25 /// [OBJC]  objc-class-definition
26 /// [OBJC]  objc-class-declaration
27 /// [OBJC]  objc-alias-declaration
28 /// [OBJC]  objc-protocol-definition
29 /// [OBJC]  objc-method-definition
30 /// [OBJC]  '@' 'end'
31 Parser::DeclTy *Parser::ParseObjCAtDirectives() {
32   SourceLocation AtLoc = ConsumeToken(); // the "@"
33 
34   switch (Tok.getObjCKeywordID()) {
35   case tok::objc_class:
36     return ParseObjCAtClassDeclaration(AtLoc);
37   case tok::objc_interface:
38     return ParseObjCAtInterfaceDeclaration(AtLoc);
39   case tok::objc_protocol:
40     return ParseObjCAtProtocolDeclaration(AtLoc);
41   case tok::objc_implementation:
42     return ParseObjCAtImplementationDeclaration(AtLoc);
43   case tok::objc_end:
44     return ParseObjCAtEndDeclaration(AtLoc);
45   case tok::objc_compatibility_alias:
46     return ParseObjCAtAliasDeclaration(AtLoc);
47   case tok::objc_synthesize:
48     return ParseObjCPropertySynthesize(AtLoc);
49   case tok::objc_dynamic:
50     return ParseObjCPropertyDynamic(AtLoc);
51   default:
52     Diag(AtLoc, diag::err_unexpected_at);
53     SkipUntil(tok::semi);
54     return 0;
55   }
56 }
57 
58 ///
59 /// objc-class-declaration:
60 ///    '@' 'class' identifier-list ';'
61 ///
62 Parser::DeclTy *Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
63   ConsumeToken(); // the identifier "class"
64   llvm::SmallVector<IdentifierInfo *, 8> ClassNames;
65 
66   while (1) {
67     if (Tok.isNot(tok::identifier)) {
68       Diag(Tok, diag::err_expected_ident);
69       SkipUntil(tok::semi);
70       return 0;
71     }
72     ClassNames.push_back(Tok.getIdentifierInfo());
73     ConsumeToken();
74 
75     if (Tok.isNot(tok::comma))
76       break;
77 
78     ConsumeToken();
79   }
80 
81   // Consume the ';'.
82   if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@class"))
83     return 0;
84 
85   return Actions.ActOnForwardClassDeclaration(atLoc,
86                                       &ClassNames[0], ClassNames.size());
87 }
88 
89 ///
90 ///   objc-interface:
91 ///     objc-class-interface-attributes[opt] objc-class-interface
92 ///     objc-category-interface
93 ///
94 ///   objc-class-interface:
95 ///     '@' 'interface' identifier objc-superclass[opt]
96 ///       objc-protocol-refs[opt]
97 ///       objc-class-instance-variables[opt]
98 ///       objc-interface-decl-list
99 ///     @end
100 ///
101 ///   objc-category-interface:
102 ///     '@' 'interface' identifier '(' identifier[opt] ')'
103 ///       objc-protocol-refs[opt]
104 ///       objc-interface-decl-list
105 ///     @end
106 ///
107 ///   objc-superclass:
108 ///     ':' identifier
109 ///
110 ///   objc-class-interface-attributes:
111 ///     __attribute__((visibility("default")))
112 ///     __attribute__((visibility("hidden")))
113 ///     __attribute__((deprecated))
114 ///     __attribute__((unavailable))
115 ///     __attribute__((objc_exception)) - used by NSException on 64-bit
116 ///
117 Parser::DeclTy *Parser::ParseObjCAtInterfaceDeclaration(
118   SourceLocation atLoc, AttributeList *attrList) {
119   assert(Tok.isObjCAtKeyword(tok::objc_interface) &&
120          "ParseObjCAtInterfaceDeclaration(): Expected @interface");
121   ConsumeToken(); // the "interface" identifier
122 
123   if (Tok.isNot(tok::identifier)) {
124     Diag(Tok, diag::err_expected_ident); // missing class or category name.
125     return 0;
126   }
127   // We have a class or category name - consume it.
128   IdentifierInfo *nameId = Tok.getIdentifierInfo();
129   SourceLocation nameLoc = ConsumeToken();
130 
131   if (Tok.is(tok::l_paren)) { // we have a category.
132     SourceLocation lparenLoc = ConsumeParen();
133     SourceLocation categoryLoc, rparenLoc;
134     IdentifierInfo *categoryId = 0;
135 
136     // For ObjC2, the category name is optional (not an error).
137     if (Tok.is(tok::identifier)) {
138       categoryId = Tok.getIdentifierInfo();
139       categoryLoc = ConsumeToken();
140     } else if (!getLang().ObjC2) {
141       Diag(Tok, diag::err_expected_ident); // missing category name.
142       return 0;
143     }
144     if (Tok.isNot(tok::r_paren)) {
145       Diag(Tok, diag::err_expected_rparen);
146       SkipUntil(tok::r_paren, false); // don't stop at ';'
147       return 0;
148     }
149     rparenLoc = ConsumeParen();
150 
151     // Next, we need to check for any protocol references.
152     SourceLocation EndProtoLoc;
153     llvm::SmallVector<DeclTy *, 8> ProtocolRefs;
154     if (Tok.is(tok::less) &&
155         ParseObjCProtocolReferences(ProtocolRefs, true, EndProtoLoc))
156       return 0;
157 
158     if (attrList) // categories don't support attributes.
159       Diag(Tok, diag::err_objc_no_attributes_on_category);
160 
161     DeclTy *CategoryType = Actions.ActOnStartCategoryInterface(atLoc,
162                                      nameId, nameLoc, categoryId, categoryLoc,
163                                      &ProtocolRefs[0], ProtocolRefs.size(),
164                                      EndProtoLoc);
165 
166     ParseObjCInterfaceDeclList(CategoryType, tok::objc_not_keyword);
167     return CategoryType;
168   }
169   // Parse a class interface.
170   IdentifierInfo *superClassId = 0;
171   SourceLocation superClassLoc;
172 
173   if (Tok.is(tok::colon)) { // a super class is specified.
174     ConsumeToken();
175     if (Tok.isNot(tok::identifier)) {
176       Diag(Tok, diag::err_expected_ident); // missing super class name.
177       return 0;
178     }
179     superClassId = Tok.getIdentifierInfo();
180     superClassLoc = ConsumeToken();
181   }
182   // Next, we need to check for any protocol references.
183   llvm::SmallVector<Action::DeclTy*, 8> ProtocolRefs;
184   SourceLocation EndProtoLoc;
185   if (Tok.is(tok::less) &&
186       ParseObjCProtocolReferences(ProtocolRefs, true, EndProtoLoc))
187     return 0;
188 
189   DeclTy *ClsType =
190     Actions.ActOnStartClassInterface(atLoc, nameId, nameLoc,
191                                      superClassId, superClassLoc,
192                                      &ProtocolRefs[0], ProtocolRefs.size(),
193                                      EndProtoLoc, attrList);
194 
195   if (Tok.is(tok::l_brace))
196     ParseObjCClassInstanceVariables(ClsType, atLoc);
197 
198   ParseObjCInterfaceDeclList(ClsType, tok::objc_interface);
199   return ClsType;
200 }
201 
202 /// constructSetterName - Return the setter name for the given
203 /// identifier, i.e. "set" + Name where the initial character of Name
204 /// has been capitalized.
205 static IdentifierInfo *constructSetterName(IdentifierTable &Idents,
206                                            const IdentifierInfo *Name) {
207   llvm::SmallString<100> SelectorName;
208   SelectorName = "set";
209   SelectorName.append(Name->getName(), Name->getName()+Name->getLength());
210   SelectorName[3] = toupper(SelectorName[3]);
211   return &Idents.get(&SelectorName[0], &SelectorName[SelectorName.size()]);
212 }
213 
214 ///   objc-interface-decl-list:
215 ///     empty
216 ///     objc-interface-decl-list objc-property-decl [OBJC2]
217 ///     objc-interface-decl-list objc-method-requirement [OBJC2]
218 ///     objc-interface-decl-list objc-method-proto ';'
219 ///     objc-interface-decl-list declaration
220 ///     objc-interface-decl-list ';'
221 ///
222 ///   objc-method-requirement: [OBJC2]
223 ///     @required
224 ///     @optional
225 ///
226 void Parser::ParseObjCInterfaceDeclList(DeclTy *interfaceDecl,
227                                         tok::ObjCKeywordKind contextKey) {
228   llvm::SmallVector<DeclTy*, 32> allMethods;
229   llvm::SmallVector<DeclTy*, 16> allProperties;
230   tok::ObjCKeywordKind MethodImplKind = tok::objc_not_keyword;
231 
232   SourceLocation AtEndLoc;
233 
234   while (1) {
235     // If this is a method prototype, parse it.
236     if (Tok.is(tok::minus) || Tok.is(tok::plus)) {
237       DeclTy *methodPrototype =
238         ParseObjCMethodPrototype(interfaceDecl, MethodImplKind);
239       allMethods.push_back(methodPrototype);
240       // Consume the ';' here, since ParseObjCMethodPrototype() is re-used for
241       // method definitions.
242       ExpectAndConsume(tok::semi, diag::err_expected_semi_after_method_proto,
243                        "", tok::semi);
244       continue;
245     }
246 
247     // Ignore excess semicolons.
248     if (Tok.is(tok::semi)) {
249       ConsumeToken();
250       continue;
251     }
252 
253     // If we got to the end of the file, exit the loop.
254     if (Tok.is(tok::eof))
255       break;
256 
257     // If we don't have an @ directive, parse it as a function definition.
258     if (Tok.isNot(tok::at)) {
259       // The code below does not consume '}'s because it is afraid of eating the
260       // end of a namespace.  Because of the way this code is structured, an
261       // erroneous r_brace would cause an infinite loop if not handled here.
262       if (Tok.is(tok::r_brace))
263         break;
264 
265       // FIXME: as the name implies, this rule allows function definitions.
266       // We could pass a flag or check for functions during semantic analysis.
267       ParseDeclarationOrFunctionDefinition();
268       continue;
269     }
270 
271     // Otherwise, we have an @ directive, eat the @.
272     SourceLocation AtLoc = ConsumeToken(); // the "@"
273     tok::ObjCKeywordKind DirectiveKind = Tok.getObjCKeywordID();
274 
275     if (DirectiveKind == tok::objc_end) { // @end -> terminate list
276       AtEndLoc = AtLoc;
277       break;
278     }
279 
280     // Eat the identifier.
281     ConsumeToken();
282 
283     switch (DirectiveKind) {
284     default:
285       // FIXME: If someone forgets an @end on a protocol, this loop will
286       // continue to eat up tons of stuff and spew lots of nonsense errors.  It
287       // would probably be better to bail out if we saw an @class or @interface
288       // or something like that.
289       Diag(AtLoc, diag::err_objc_illegal_interface_qual);
290       // Skip until we see an '@' or '}' or ';'.
291       SkipUntil(tok::r_brace, tok::at);
292       break;
293 
294     case tok::objc_required:
295     case tok::objc_optional:
296       // This is only valid on protocols.
297       // FIXME: Should this check for ObjC2 being enabled?
298       if (contextKey != tok::objc_protocol)
299         Diag(AtLoc, diag::err_objc_directive_only_in_protocol);
300       else
301         MethodImplKind = DirectiveKind;
302       break;
303 
304     case tok::objc_property:
305       if (!getLang().ObjC2)
306         Diag(AtLoc, diag::err_objc_propertoes_require_objc2);
307 
308       ObjCDeclSpec OCDS;
309       // Parse property attribute list, if any.
310       if (Tok.is(tok::l_paren))
311         ParseObjCPropertyAttribute(OCDS);
312 
313       // Parse all the comma separated declarators.
314       DeclSpec DS;
315       llvm::SmallVector<FieldDeclarator, 8> FieldDeclarators;
316       ParseStructDeclaration(DS, FieldDeclarators);
317 
318       ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list, "",
319                        tok::at);
320 
321       // Convert them all to property declarations.
322       for (unsigned i = 0, e = FieldDeclarators.size(); i != e; ++i) {
323         FieldDeclarator &FD = FieldDeclarators[i];
324         if (FD.D.getIdentifier() == 0) {
325           Diag(AtLoc, diag::err_objc_property_requires_field_name)
326             << FD.D.getSourceRange();
327           continue;
328         }
329         if (FD.BitfieldSize) {
330           Diag(AtLoc, diag::err_objc_property_bitfield)
331             << FD.D.getSourceRange();
332           continue;
333         }
334 
335         // Install the property declarator into interfaceDecl.
336         IdentifierInfo *SelName =
337           OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier();
338 
339         Selector GetterSel =
340           PP.getSelectorTable().getNullarySelector(SelName);
341         IdentifierInfo *SetterName = OCDS.getSetterName();
342         if (!SetterName)
343           SetterName = constructSetterName(PP.getIdentifierTable(),
344                                            FD.D.getIdentifier());
345         Selector SetterSel =
346           PP.getSelectorTable().getUnarySelector(SetterName);
347         bool isOverridingProperty = false;
348         DeclTy *Property = Actions.ActOnProperty(CurScope, AtLoc, FD, OCDS,
349                                                  GetterSel, SetterSel,
350                                                  interfaceDecl,
351                                                  &isOverridingProperty,
352                                                  MethodImplKind);
353         if (!isOverridingProperty)
354           allProperties.push_back(Property);
355       }
356       break;
357     }
358   }
359 
360   // We break out of the big loop in two cases: when we see @end or when we see
361   // EOF.  In the former case, eat the @end.  In the later case, emit an error.
362   if (Tok.isObjCAtKeyword(tok::objc_end))
363     ConsumeToken(); // the "end" identifier
364   else
365     Diag(Tok, diag::err_objc_missing_end);
366 
367   // Insert collected methods declarations into the @interface object.
368   // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit.
369   Actions.ActOnAtEnd(AtEndLoc, interfaceDecl,
370                      allMethods.empty() ? 0 : &allMethods[0],
371                      allMethods.size(),
372                      allProperties.empty() ? 0 : &allProperties[0],
373                      allProperties.size());
374 }
375 
376 ///   Parse property attribute declarations.
377 ///
378 ///   property-attr-decl: '(' property-attrlist ')'
379 ///   property-attrlist:
380 ///     property-attribute
381 ///     property-attrlist ',' property-attribute
382 ///   property-attribute:
383 ///     getter '=' identifier
384 ///     setter '=' identifier ':'
385 ///     readonly
386 ///     readwrite
387 ///     assign
388 ///     retain
389 ///     copy
390 ///     nonatomic
391 ///
392 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) {
393   assert(Tok.getKind() == tok::l_paren);
394   SourceLocation LHSLoc = ConsumeParen(); // consume '('
395 
396   while (1) {
397     const IdentifierInfo *II = Tok.getIdentifierInfo();
398 
399     // If this is not an identifier at all, bail out early.
400     if (II == 0) {
401       MatchRHSPunctuation(tok::r_paren, LHSLoc);
402       return;
403     }
404 
405     SourceLocation AttrName = ConsumeToken(); // consume last attribute name
406 
407     if (II->isStr("readonly"))
408       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
409     else if (II->isStr("assign"))
410       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
411     else if (II->isStr("readwrite"))
412       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
413     else if (II->isStr("retain"))
414       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
415     else if (II->isStr("copy"))
416       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_copy);
417     else if (II->isStr("nonatomic"))
418       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nonatomic);
419     else if (II->isStr("getter") || II->isStr("setter")) {
420       // getter/setter require extra treatment.
421       if (ExpectAndConsume(tok::equal, diag::err_objc_expected_equal, "",
422                            tok::r_paren))
423         return;
424 
425       if (Tok.isNot(tok::identifier)) {
426         Diag(Tok, diag::err_expected_ident);
427         SkipUntil(tok::r_paren);
428         return;
429       }
430 
431       if (II->getName()[0] == 's') {
432         DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_setter);
433         DS.setSetterName(Tok.getIdentifierInfo());
434         ConsumeToken();  // consume method name
435 
436         if (ExpectAndConsume(tok::colon, diag::err_expected_colon, "",
437                              tok::r_paren))
438           return;
439       } else {
440         DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_getter);
441         DS.setGetterName(Tok.getIdentifierInfo());
442         ConsumeToken();  // consume method name
443       }
444     } else {
445       Diag(AttrName, diag::err_objc_expected_property_attr) << II;
446       SkipUntil(tok::r_paren);
447       return;
448     }
449 
450     if (Tok.isNot(tok::comma))
451       break;
452 
453     ConsumeToken();
454   }
455 
456   MatchRHSPunctuation(tok::r_paren, LHSLoc);
457 }
458 
459 ///   objc-method-proto:
460 ///     objc-instance-method objc-method-decl objc-method-attributes[opt]
461 ///     objc-class-method objc-method-decl objc-method-attributes[opt]
462 ///
463 ///   objc-instance-method: '-'
464 ///   objc-class-method: '+'
465 ///
466 ///   objc-method-attributes:         [OBJC2]
467 ///     __attribute__((deprecated))
468 ///
469 Parser::DeclTy *Parser::ParseObjCMethodPrototype(DeclTy *IDecl,
470                           tok::ObjCKeywordKind MethodImplKind) {
471   assert((Tok.is(tok::minus) || Tok.is(tok::plus)) && "expected +/-");
472 
473   tok::TokenKind methodType = Tok.getKind();
474   SourceLocation mLoc = ConsumeToken();
475 
476   DeclTy *MDecl = ParseObjCMethodDecl(mLoc, methodType, IDecl, MethodImplKind);
477   // Since this rule is used for both method declarations and definitions,
478   // the caller is (optionally) responsible for consuming the ';'.
479   return MDecl;
480 }
481 
482 ///   objc-selector:
483 ///     identifier
484 ///     one of
485 ///       enum struct union if else while do for switch case default
486 ///       break continue return goto asm sizeof typeof __alignof
487 ///       unsigned long const short volatile signed restrict _Complex
488 ///       in out inout bycopy byref oneway int char float double void _Bool
489 ///
490 IdentifierInfo *Parser::ParseObjCSelector(SourceLocation &SelectorLoc) {
491   switch (Tok.getKind()) {
492   default:
493     return 0;
494   case tok::identifier:
495   case tok::kw_asm:
496   case tok::kw_auto:
497   case tok::kw_bool:
498   case tok::kw_break:
499   case tok::kw_case:
500   case tok::kw_catch:
501   case tok::kw_char:
502   case tok::kw_class:
503   case tok::kw_const:
504   case tok::kw_const_cast:
505   case tok::kw_continue:
506   case tok::kw_default:
507   case tok::kw_delete:
508   case tok::kw_do:
509   case tok::kw_double:
510   case tok::kw_dynamic_cast:
511   case tok::kw_else:
512   case tok::kw_enum:
513   case tok::kw_explicit:
514   case tok::kw_export:
515   case tok::kw_extern:
516   case tok::kw_false:
517   case tok::kw_float:
518   case tok::kw_for:
519   case tok::kw_friend:
520   case tok::kw_goto:
521   case tok::kw_if:
522   case tok::kw_inline:
523   case tok::kw_int:
524   case tok::kw_long:
525   case tok::kw_mutable:
526   case tok::kw_namespace:
527   case tok::kw_new:
528   case tok::kw_operator:
529   case tok::kw_private:
530   case tok::kw_protected:
531   case tok::kw_public:
532   case tok::kw_register:
533   case tok::kw_reinterpret_cast:
534   case tok::kw_restrict:
535   case tok::kw_return:
536   case tok::kw_short:
537   case tok::kw_signed:
538   case tok::kw_sizeof:
539   case tok::kw_static:
540   case tok::kw_static_cast:
541   case tok::kw_struct:
542   case tok::kw_switch:
543   case tok::kw_template:
544   case tok::kw_this:
545   case tok::kw_throw:
546   case tok::kw_true:
547   case tok::kw_try:
548   case tok::kw_typedef:
549   case tok::kw_typeid:
550   case tok::kw_typename:
551   case tok::kw_typeof:
552   case tok::kw_union:
553   case tok::kw_unsigned:
554   case tok::kw_using:
555   case tok::kw_virtual:
556   case tok::kw_void:
557   case tok::kw_volatile:
558   case tok::kw_wchar_t:
559   case tok::kw_while:
560   case tok::kw__Bool:
561   case tok::kw__Complex:
562   case tok::kw___alignof:
563     IdentifierInfo *II = Tok.getIdentifierInfo();
564     SelectorLoc = ConsumeToken();
565     return II;
566   }
567 }
568 
569 ///  objc-for-collection-in: 'in'
570 ///
571 bool Parser::isTokIdentifier_in() const {
572   // FIXME: May have to do additional look-ahead to only allow for
573   // valid tokens following an 'in'; such as an identifier, unary operators,
574   // '[' etc.
575   return (getLang().ObjC2 && Tok.is(tok::identifier) &&
576           Tok.getIdentifierInfo() == ObjCTypeQuals[objc_in]);
577 }
578 
579 /// ParseObjCTypeQualifierList - This routine parses the objective-c's type
580 /// qualifier list and builds their bitmask representation in the input
581 /// argument.
582 ///
583 ///   objc-type-qualifiers:
584 ///     objc-type-qualifier
585 ///     objc-type-qualifiers objc-type-qualifier
586 ///
587 void Parser::ParseObjCTypeQualifierList(ObjCDeclSpec &DS) {
588   while (1) {
589     if (Tok.isNot(tok::identifier))
590       return;
591 
592     const IdentifierInfo *II = Tok.getIdentifierInfo();
593     for (unsigned i = 0; i != objc_NumQuals; ++i) {
594       if (II != ObjCTypeQuals[i])
595         continue;
596 
597       ObjCDeclSpec::ObjCDeclQualifier Qual;
598       switch (i) {
599       default: assert(0 && "Unknown decl qualifier");
600       case objc_in:     Qual = ObjCDeclSpec::DQ_In; break;
601       case objc_out:    Qual = ObjCDeclSpec::DQ_Out; break;
602       case objc_inout:  Qual = ObjCDeclSpec::DQ_Inout; break;
603       case objc_oneway: Qual = ObjCDeclSpec::DQ_Oneway; break;
604       case objc_bycopy: Qual = ObjCDeclSpec::DQ_Bycopy; break;
605       case objc_byref:  Qual = ObjCDeclSpec::DQ_Byref; break;
606       }
607       DS.setObjCDeclQualifier(Qual);
608       ConsumeToken();
609       II = 0;
610       break;
611     }
612 
613     // If this wasn't a recognized qualifier, bail out.
614     if (II) return;
615   }
616 }
617 
618 ///   objc-type-name:
619 ///     '(' objc-type-qualifiers[opt] type-name ')'
620 ///     '(' objc-type-qualifiers[opt] ')'
621 ///
622 Parser::TypeTy *Parser::ParseObjCTypeName(ObjCDeclSpec &DS) {
623   assert(Tok.is(tok::l_paren) && "expected (");
624 
625   SourceLocation LParenLoc = ConsumeParen();
626   SourceLocation TypeStartLoc = Tok.getLocation();
627 
628   // Parse type qualifiers, in, inout, etc.
629   ParseObjCTypeQualifierList(DS);
630 
631   TypeTy *Ty = 0;
632   if (isTypeSpecifierQualifier()) {
633     TypeResult TypeSpec = ParseTypeName();
634     if (!TypeSpec.isInvalid())
635       Ty = TypeSpec.get();
636   }
637 
638   if (Tok.is(tok::r_paren))
639     ConsumeParen();
640   else if (Tok.getLocation() == TypeStartLoc) {
641     // If we didn't eat any tokens, then this isn't a type.
642     Diag(Tok, diag::err_expected_type);
643     SkipUntil(tok::r_paren);
644   } else {
645     // Otherwise, we found *something*, but didn't get a ')' in the right
646     // place.  Emit an error then return what we have as the type.
647     MatchRHSPunctuation(tok::r_paren, LParenLoc);
648   }
649   return Ty;
650 }
651 
652 ///   objc-method-decl:
653 ///     objc-selector
654 ///     objc-keyword-selector objc-parmlist[opt]
655 ///     objc-type-name objc-selector
656 ///     objc-type-name objc-keyword-selector objc-parmlist[opt]
657 ///
658 ///   objc-keyword-selector:
659 ///     objc-keyword-decl
660 ///     objc-keyword-selector objc-keyword-decl
661 ///
662 ///   objc-keyword-decl:
663 ///     objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier
664 ///     objc-selector ':' objc-keyword-attributes[opt] identifier
665 ///     ':' objc-type-name objc-keyword-attributes[opt] identifier
666 ///     ':' objc-keyword-attributes[opt] identifier
667 ///
668 ///   objc-parmlist:
669 ///     objc-parms objc-ellipsis[opt]
670 ///
671 ///   objc-parms:
672 ///     objc-parms , parameter-declaration
673 ///
674 ///   objc-ellipsis:
675 ///     , ...
676 ///
677 ///   objc-keyword-attributes:         [OBJC2]
678 ///     __attribute__((unused))
679 ///
680 Parser::DeclTy *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
681                                             tok::TokenKind mType,
682                                             DeclTy *IDecl,
683                                             tok::ObjCKeywordKind MethodImplKind)
684 {
685   // Parse the return type if present.
686   TypeTy *ReturnType = 0;
687   ObjCDeclSpec DSRet;
688   if (Tok.is(tok::l_paren))
689     ReturnType = ParseObjCTypeName(DSRet);
690 
691   SourceLocation selLoc;
692   IdentifierInfo *SelIdent = ParseObjCSelector(selLoc);
693 
694   // An unnamed colon is valid.
695   if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
696     Diag(Tok, diag::err_expected_selector_for_method)
697       << SourceRange(mLoc, Tok.getLocation());
698     // Skip until we get a ; or {}.
699     SkipUntil(tok::r_brace);
700     return 0;
701   }
702 
703   llvm::SmallVector<Declarator, 8> CargNames;
704   if (Tok.isNot(tok::colon)) {
705     // If attributes exist after the method, parse them.
706     AttributeList *MethodAttrs = 0;
707     if (getLang().ObjC2 && Tok.is(tok::kw___attribute))
708       MethodAttrs = ParseAttributes();
709 
710     Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent);
711     return Actions.ActOnMethodDeclaration(mLoc, Tok.getLocation(),
712                                           mType, IDecl, DSRet, ReturnType, Sel,
713                                           0, 0, 0, CargNames,
714                                           MethodAttrs, MethodImplKind);
715   }
716 
717   llvm::SmallVector<IdentifierInfo *, 12> KeyIdents;
718   llvm::SmallVector<Action::TypeTy *, 12> KeyTypes;
719   llvm::SmallVector<ObjCDeclSpec, 12> ArgTypeQuals;
720   llvm::SmallVector<IdentifierInfo *, 12> ArgNames;
721 
722   Action::TypeTy *TypeInfo;
723   while (1) {
724     KeyIdents.push_back(SelIdent);
725 
726     // Each iteration parses a single keyword argument.
727     if (Tok.isNot(tok::colon)) {
728       Diag(Tok, diag::err_expected_colon);
729       break;
730     }
731     ConsumeToken(); // Eat the ':'.
732     ObjCDeclSpec DSType;
733     if (Tok.is(tok::l_paren)) // Parse the argument type.
734       TypeInfo = ParseObjCTypeName(DSType);
735     else
736       TypeInfo = 0;
737     KeyTypes.push_back(TypeInfo);
738     ArgTypeQuals.push_back(DSType);
739 
740     // If attributes exist before the argument name, parse them.
741     if (getLang().ObjC2 && Tok.is(tok::kw___attribute))
742       ParseAttributes(); // FIXME: pass attributes through.
743 
744     if (Tok.isNot(tok::identifier)) {
745       Diag(Tok, diag::err_expected_ident); // missing argument name.
746       break;
747     }
748     ArgNames.push_back(Tok.getIdentifierInfo());
749     ConsumeToken(); // Eat the identifier.
750 
751     // Check for another keyword selector.
752     SourceLocation Loc;
753     SelIdent = ParseObjCSelector(Loc);
754     if (!SelIdent && Tok.isNot(tok::colon))
755       break;
756     // We have a selector or a colon, continue parsing.
757   }
758 
759   bool isVariadic = false;
760 
761   // Parse the (optional) parameter list.
762   while (Tok.is(tok::comma)) {
763     ConsumeToken();
764     if (Tok.is(tok::ellipsis)) {
765       isVariadic = true;
766       ConsumeToken();
767       break;
768     }
769     DeclSpec DS;
770     ParseDeclarationSpecifiers(DS);
771     // Parse the declarator.
772     Declarator ParmDecl(DS, Declarator::PrototypeContext);
773     ParseDeclarator(ParmDecl);
774     CargNames.push_back(ParmDecl);
775   }
776 
777   // FIXME: Add support for optional parmameter list...
778   // If attributes exist after the method, parse them.
779   AttributeList *MethodAttrs = 0;
780   if (getLang().ObjC2 && Tok.is(tok::kw___attribute))
781     MethodAttrs = ParseAttributes();
782 
783   Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(),
784                                                    &KeyIdents[0]);
785   return Actions.ActOnMethodDeclaration(mLoc, Tok.getLocation(),
786                                         mType, IDecl, DSRet, ReturnType, Sel,
787                                         &ArgTypeQuals[0], &KeyTypes[0],
788                                         &ArgNames[0], CargNames,
789                                         MethodAttrs,
790                                         MethodImplKind, isVariadic);
791 }
792 
793 ///   objc-protocol-refs:
794 ///     '<' identifier-list '>'
795 ///
796 bool Parser::
797 ParseObjCProtocolReferences(llvm::SmallVectorImpl<Action::DeclTy*> &Protocols,
798                             bool WarnOnDeclarations, SourceLocation &EndLoc) {
799   assert(Tok.is(tok::less) && "expected <");
800 
801   ConsumeToken(); // the "<"
802 
803   llvm::SmallVector<IdentifierLocPair, 8> ProtocolIdents;
804 
805   while (1) {
806     if (Tok.isNot(tok::identifier)) {
807       Diag(Tok, diag::err_expected_ident);
808       SkipUntil(tok::greater);
809       return true;
810     }
811     ProtocolIdents.push_back(std::make_pair(Tok.getIdentifierInfo(),
812                                        Tok.getLocation()));
813     ConsumeToken();
814 
815     if (Tok.isNot(tok::comma))
816       break;
817     ConsumeToken();
818   }
819 
820   // Consume the '>'.
821   if (Tok.isNot(tok::greater)) {
822     Diag(Tok, diag::err_expected_greater);
823     return true;
824   }
825 
826   EndLoc = ConsumeAnyToken();
827 
828   // Convert the list of protocols identifiers into a list of protocol decls.
829   Actions.FindProtocolDeclaration(WarnOnDeclarations,
830                                   &ProtocolIdents[0], ProtocolIdents.size(),
831                                   Protocols);
832   return false;
833 }
834 
835 ///   objc-class-instance-variables:
836 ///     '{' objc-instance-variable-decl-list[opt] '}'
837 ///
838 ///   objc-instance-variable-decl-list:
839 ///     objc-visibility-spec
840 ///     objc-instance-variable-decl ';'
841 ///     ';'
842 ///     objc-instance-variable-decl-list objc-visibility-spec
843 ///     objc-instance-variable-decl-list objc-instance-variable-decl ';'
844 ///     objc-instance-variable-decl-list ';'
845 ///
846 ///   objc-visibility-spec:
847 ///     @private
848 ///     @protected
849 ///     @public
850 ///     @package [OBJC2]
851 ///
852 ///   objc-instance-variable-decl:
853 ///     struct-declaration
854 ///
855 void Parser::ParseObjCClassInstanceVariables(DeclTy *interfaceDecl,
856                                              SourceLocation atLoc) {
857   assert(Tok.is(tok::l_brace) && "expected {");
858   llvm::SmallVector<DeclTy*, 32> AllIvarDecls;
859   llvm::SmallVector<FieldDeclarator, 8> FieldDeclarators;
860 
861   ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope);
862 
863   SourceLocation LBraceLoc = ConsumeBrace(); // the "{"
864 
865   tok::ObjCKeywordKind visibility = tok::objc_protected;
866   // While we still have something to read, read the instance variables.
867   while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
868     // Each iteration of this loop reads one objc-instance-variable-decl.
869 
870     // Check for extraneous top-level semicolon.
871     if (Tok.is(tok::semi)) {
872       Diag(Tok, diag::ext_extra_struct_semi);
873       ConsumeToken();
874       continue;
875     }
876 
877     // Set the default visibility to private.
878     if (Tok.is(tok::at)) { // parse objc-visibility-spec
879       ConsumeToken(); // eat the @ sign
880       switch (Tok.getObjCKeywordID()) {
881       case tok::objc_private:
882       case tok::objc_public:
883       case tok::objc_protected:
884       case tok::objc_package:
885         visibility = Tok.getObjCKeywordID();
886         ConsumeToken();
887         continue;
888       default:
889         Diag(Tok, diag::err_objc_illegal_visibility_spec);
890         continue;
891       }
892     }
893 
894     // Parse all the comma separated declarators.
895     DeclSpec DS;
896     FieldDeclarators.clear();
897     ParseStructDeclaration(DS, FieldDeclarators);
898 
899     // Convert them all to fields.
900     for (unsigned i = 0, e = FieldDeclarators.size(); i != e; ++i) {
901       FieldDeclarator &FD = FieldDeclarators[i];
902       // Install the declarator into interfaceDecl.
903       DeclTy *Field = Actions.ActOnIvar(CurScope,
904                                          DS.getSourceRange().getBegin(),
905                                          FD.D, FD.BitfieldSize, visibility);
906       AllIvarDecls.push_back(Field);
907     }
908 
909     if (Tok.is(tok::semi)) {
910       ConsumeToken();
911     } else {
912       Diag(Tok, diag::err_expected_semi_decl_list);
913       // Skip to end of block or statement
914       SkipUntil(tok::r_brace, true, true);
915     }
916   }
917   SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
918   // Call ActOnFields() even if we don't have any decls. This is useful
919   // for code rewriting tools that need to be aware of the empty list.
920   Actions.ActOnFields(CurScope, atLoc, interfaceDecl,
921                       &AllIvarDecls[0], AllIvarDecls.size(),
922                       LBraceLoc, RBraceLoc, 0);
923   return;
924 }
925 
926 ///   objc-protocol-declaration:
927 ///     objc-protocol-definition
928 ///     objc-protocol-forward-reference
929 ///
930 ///   objc-protocol-definition:
931 ///     @protocol identifier
932 ///       objc-protocol-refs[opt]
933 ///       objc-interface-decl-list
934 ///     @end
935 ///
936 ///   objc-protocol-forward-reference:
937 ///     @protocol identifier-list ';'
938 ///
939 ///   "@protocol identifier ;" should be resolved as "@protocol
940 ///   identifier-list ;": objc-interface-decl-list may not start with a
941 ///   semicolon in the first alternative if objc-protocol-refs are omitted.
942 Parser::DeclTy *Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc,
943                                                AttributeList *attrList) {
944   assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
945          "ParseObjCAtProtocolDeclaration(): Expected @protocol");
946   ConsumeToken(); // the "protocol" identifier
947 
948   if (Tok.isNot(tok::identifier)) {
949     Diag(Tok, diag::err_expected_ident); // missing protocol name.
950     return 0;
951   }
952   // Save the protocol name, then consume it.
953   IdentifierInfo *protocolName = Tok.getIdentifierInfo();
954   SourceLocation nameLoc = ConsumeToken();
955 
956   if (Tok.is(tok::semi)) { // forward declaration of one protocol.
957     IdentifierLocPair ProtoInfo(protocolName, nameLoc);
958     ConsumeToken();
959     return Actions.ActOnForwardProtocolDeclaration(AtLoc, &ProtoInfo, 1,
960                                                    attrList);
961   }
962 
963   if (Tok.is(tok::comma)) { // list of forward declarations.
964     llvm::SmallVector<IdentifierLocPair, 8> ProtocolRefs;
965     ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc));
966 
967     // Parse the list of forward declarations.
968     while (1) {
969       ConsumeToken(); // the ','
970       if (Tok.isNot(tok::identifier)) {
971         Diag(Tok, diag::err_expected_ident);
972         SkipUntil(tok::semi);
973         return 0;
974       }
975       ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(),
976                                                Tok.getLocation()));
977       ConsumeToken(); // the identifier
978 
979       if (Tok.isNot(tok::comma))
980         break;
981     }
982     // Consume the ';'.
983     if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
984       return 0;
985 
986     return Actions.ActOnForwardProtocolDeclaration(AtLoc,
987                                                    &ProtocolRefs[0],
988                                                    ProtocolRefs.size(),
989                                                    attrList);
990   }
991 
992   // Last, and definitely not least, parse a protocol declaration.
993   SourceLocation EndProtoLoc;
994 
995   llvm::SmallVector<DeclTy *, 8> ProtocolRefs;
996   if (Tok.is(tok::less) &&
997       ParseObjCProtocolReferences(ProtocolRefs, true, EndProtoLoc))
998     return 0;
999 
1000   DeclTy *ProtoType =
1001     Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc,
1002                                         &ProtocolRefs[0], ProtocolRefs.size(),
1003                                         EndProtoLoc, attrList);
1004   ParseObjCInterfaceDeclList(ProtoType, tok::objc_protocol);
1005   return ProtoType;
1006 }
1007 
1008 ///   objc-implementation:
1009 ///     objc-class-implementation-prologue
1010 ///     objc-category-implementation-prologue
1011 ///
1012 ///   objc-class-implementation-prologue:
1013 ///     @implementation identifier objc-superclass[opt]
1014 ///       objc-class-instance-variables[opt]
1015 ///
1016 ///   objc-category-implementation-prologue:
1017 ///     @implementation identifier ( identifier )
1018 
1019 Parser::DeclTy *Parser::ParseObjCAtImplementationDeclaration(
1020   SourceLocation atLoc) {
1021   assert(Tok.isObjCAtKeyword(tok::objc_implementation) &&
1022          "ParseObjCAtImplementationDeclaration(): Expected @implementation");
1023   ConsumeToken(); // the "implementation" identifier
1024 
1025   if (Tok.isNot(tok::identifier)) {
1026     Diag(Tok, diag::err_expected_ident); // missing class or category name.
1027     return 0;
1028   }
1029   // We have a class or category name - consume it.
1030   IdentifierInfo *nameId = Tok.getIdentifierInfo();
1031   SourceLocation nameLoc = ConsumeToken(); // consume class or category name
1032 
1033   if (Tok.is(tok::l_paren)) {
1034     // we have a category implementation.
1035     SourceLocation lparenLoc = ConsumeParen();
1036     SourceLocation categoryLoc, rparenLoc;
1037     IdentifierInfo *categoryId = 0;
1038 
1039     if (Tok.is(tok::identifier)) {
1040       categoryId = Tok.getIdentifierInfo();
1041       categoryLoc = ConsumeToken();
1042     } else {
1043       Diag(Tok, diag::err_expected_ident); // missing category name.
1044       return 0;
1045     }
1046     if (Tok.isNot(tok::r_paren)) {
1047       Diag(Tok, diag::err_expected_rparen);
1048       SkipUntil(tok::r_paren, false); // don't stop at ';'
1049       return 0;
1050     }
1051     rparenLoc = ConsumeParen();
1052     DeclTy *ImplCatType = Actions.ActOnStartCategoryImplementation(
1053                                     atLoc, nameId, nameLoc, categoryId,
1054                                     categoryLoc);
1055     ObjCImpDecl = ImplCatType;
1056     return 0;
1057   }
1058   // We have a class implementation
1059   SourceLocation superClassLoc;
1060   IdentifierInfo *superClassId = 0;
1061   if (Tok.is(tok::colon)) {
1062     // We have a super class
1063     ConsumeToken();
1064     if (Tok.isNot(tok::identifier)) {
1065       Diag(Tok, diag::err_expected_ident); // missing super class name.
1066       return 0;
1067     }
1068     superClassId = Tok.getIdentifierInfo();
1069     superClassLoc = ConsumeToken(); // Consume super class name
1070   }
1071   DeclTy *ImplClsType = Actions.ActOnStartClassImplementation(
1072                                   atLoc, nameId, nameLoc,
1073                                   superClassId, superClassLoc);
1074 
1075   if (Tok.is(tok::l_brace)) // we have ivars
1076     ParseObjCClassInstanceVariables(ImplClsType/*FIXME*/, atLoc);
1077   ObjCImpDecl = ImplClsType;
1078 
1079   return 0;
1080 }
1081 
1082 Parser::DeclTy *Parser::ParseObjCAtEndDeclaration(SourceLocation atLoc) {
1083   assert(Tok.isObjCAtKeyword(tok::objc_end) &&
1084          "ParseObjCAtEndDeclaration(): Expected @end");
1085   DeclTy *Result = ObjCImpDecl;
1086   ConsumeToken(); // the "end" identifier
1087   if (ObjCImpDecl) {
1088     Actions.ActOnAtEnd(atLoc, ObjCImpDecl);
1089     ObjCImpDecl = 0;
1090   }
1091   else
1092     Diag(atLoc, diag::warn_expected_implementation); // missing @implementation
1093   return Result;
1094 }
1095 
1096 ///   compatibility-alias-decl:
1097 ///     @compatibility_alias alias-name  class-name ';'
1098 ///
1099 Parser::DeclTy *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
1100   assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) &&
1101          "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias");
1102   ConsumeToken(); // consume compatibility_alias
1103   if (Tok.isNot(tok::identifier)) {
1104     Diag(Tok, diag::err_expected_ident);
1105     return 0;
1106   }
1107   IdentifierInfo *aliasId = Tok.getIdentifierInfo();
1108   SourceLocation aliasLoc = ConsumeToken(); // consume alias-name
1109   if (Tok.isNot(tok::identifier)) {
1110     Diag(Tok, diag::err_expected_ident);
1111     return 0;
1112   }
1113   IdentifierInfo *classId = Tok.getIdentifierInfo();
1114   SourceLocation classLoc = ConsumeToken(); // consume class-name;
1115   if (Tok.isNot(tok::semi)) {
1116     Diag(Tok, diag::err_expected_semi_after) << "@compatibility_alias";
1117     return 0;
1118   }
1119   DeclTy *ClsType = Actions.ActOnCompatiblityAlias(atLoc,
1120                                                    aliasId, aliasLoc,
1121                                                    classId, classLoc);
1122   return ClsType;
1123 }
1124 
1125 ///   property-synthesis:
1126 ///     @synthesize property-ivar-list ';'
1127 ///
1128 ///   property-ivar-list:
1129 ///     property-ivar
1130 ///     property-ivar-list ',' property-ivar
1131 ///
1132 ///   property-ivar:
1133 ///     identifier
1134 ///     identifier '=' identifier
1135 ///
1136 Parser::DeclTy *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
1137   assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
1138          "ParseObjCPropertyDynamic(): Expected '@synthesize'");
1139   SourceLocation loc = ConsumeToken(); // consume synthesize
1140   if (Tok.isNot(tok::identifier)) {
1141     Diag(Tok, diag::err_expected_ident);
1142     return 0;
1143   }
1144   while (Tok.is(tok::identifier)) {
1145     IdentifierInfo *propertyIvar = 0;
1146     IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1147     SourceLocation propertyLoc = ConsumeToken(); // consume property name
1148     if (Tok.is(tok::equal)) {
1149       // property '=' ivar-name
1150       ConsumeToken(); // consume '='
1151       if (Tok.isNot(tok::identifier)) {
1152         Diag(Tok, diag::err_expected_ident);
1153         break;
1154       }
1155       propertyIvar = Tok.getIdentifierInfo();
1156       ConsumeToken(); // consume ivar-name
1157     }
1158     Actions.ActOnPropertyImplDecl(atLoc, propertyLoc, true, ObjCImpDecl,
1159                                   propertyId, propertyIvar);
1160     if (Tok.isNot(tok::comma))
1161       break;
1162     ConsumeToken(); // consume ','
1163   }
1164   if (Tok.isNot(tok::semi))
1165     Diag(Tok, diag::err_expected_semi_after) << "@synthesize";
1166   return 0;
1167 }
1168 
1169 ///   property-dynamic:
1170 ///     @dynamic  property-list
1171 ///
1172 ///   property-list:
1173 ///     identifier
1174 ///     property-list ',' identifier
1175 ///
1176 Parser::DeclTy *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) {
1177   assert(Tok.isObjCAtKeyword(tok::objc_dynamic) &&
1178          "ParseObjCPropertyDynamic(): Expected '@dynamic'");
1179   SourceLocation loc = ConsumeToken(); // consume dynamic
1180   if (Tok.isNot(tok::identifier)) {
1181     Diag(Tok, diag::err_expected_ident);
1182     return 0;
1183   }
1184   while (Tok.is(tok::identifier)) {
1185     IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1186     SourceLocation propertyLoc = ConsumeToken(); // consume property name
1187     Actions.ActOnPropertyImplDecl(atLoc, propertyLoc, false, ObjCImpDecl,
1188                                   propertyId, 0);
1189 
1190     if (Tok.isNot(tok::comma))
1191       break;
1192     ConsumeToken(); // consume ','
1193   }
1194   if (Tok.isNot(tok::semi))
1195     Diag(Tok, diag::err_expected_semi_after) << "@dynamic";
1196   return 0;
1197 }
1198 
1199 ///  objc-throw-statement:
1200 ///    throw expression[opt];
1201 ///
1202 Parser::OwningStmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) {
1203   OwningExprResult Res(Actions);
1204   ConsumeToken(); // consume throw
1205   if (Tok.isNot(tok::semi)) {
1206     Res = ParseExpression();
1207     if (Res.isInvalid()) {
1208       SkipUntil(tok::semi);
1209       return StmtError();
1210     }
1211   }
1212   ConsumeToken(); // consume ';'
1213   return Actions.ActOnObjCAtThrowStmt(atLoc, move(Res), CurScope);
1214 }
1215 
1216 /// objc-synchronized-statement:
1217 ///   @synchronized '(' expression ')' compound-statement
1218 ///
1219 Parser::OwningStmtResult
1220 Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) {
1221   ConsumeToken(); // consume synchronized
1222   if (Tok.isNot(tok::l_paren)) {
1223     Diag(Tok, diag::err_expected_lparen_after) << "@synchronized";
1224     return StmtError();
1225   }
1226   ConsumeParen();  // '('
1227   OwningExprResult Res(ParseExpression());
1228   if (Res.isInvalid()) {
1229     SkipUntil(tok::semi);
1230     return StmtError();
1231   }
1232   if (Tok.isNot(tok::r_paren)) {
1233     Diag(Tok, diag::err_expected_lbrace);
1234     return StmtError();
1235   }
1236   ConsumeParen();  // ')'
1237   if (Tok.isNot(tok::l_brace)) {
1238     Diag(Tok, diag::err_expected_lbrace);
1239     return StmtError();
1240   }
1241   // Enter a scope to hold everything within the compound stmt.  Compound
1242   // statements can always hold declarations.
1243   ParseScope BodyScope(this, Scope::DeclScope);
1244 
1245   OwningStmtResult SynchBody(ParseCompoundStatementBody());
1246 
1247   BodyScope.Exit();
1248   if (SynchBody.isInvalid())
1249     SynchBody = Actions.ActOnNullStmt(Tok.getLocation());
1250   return Actions.ActOnObjCAtSynchronizedStmt(atLoc, move(Res), move(SynchBody));
1251 }
1252 
1253 ///  objc-try-catch-statement:
1254 ///    @try compound-statement objc-catch-list[opt]
1255 ///    @try compound-statement objc-catch-list[opt] @finally compound-statement
1256 ///
1257 ///  objc-catch-list:
1258 ///    @catch ( parameter-declaration ) compound-statement
1259 ///    objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1260 ///  catch-parameter-declaration:
1261 ///     parameter-declaration
1262 ///     '...' [OBJC2]
1263 ///
1264 Parser::OwningStmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
1265   bool catch_or_finally_seen = false;
1266 
1267   ConsumeToken(); // consume try
1268   if (Tok.isNot(tok::l_brace)) {
1269     Diag(Tok, diag::err_expected_lbrace);
1270     return StmtError();
1271   }
1272   OwningStmtResult CatchStmts(Actions);
1273   OwningStmtResult FinallyStmt(Actions);
1274   ParseScope TryScope(this, Scope::DeclScope);
1275   OwningStmtResult TryBody(ParseCompoundStatementBody());
1276   TryScope.Exit();
1277   if (TryBody.isInvalid())
1278     TryBody = Actions.ActOnNullStmt(Tok.getLocation());
1279 
1280   while (Tok.is(tok::at)) {
1281     // At this point, we need to lookahead to determine if this @ is the start
1282     // of an @catch or @finally.  We don't want to consume the @ token if this
1283     // is an @try or @encode or something else.
1284     Token AfterAt = GetLookAheadToken(1);
1285     if (!AfterAt.isObjCAtKeyword(tok::objc_catch) &&
1286         !AfterAt.isObjCAtKeyword(tok::objc_finally))
1287       break;
1288 
1289     SourceLocation AtCatchFinallyLoc = ConsumeToken();
1290     if (Tok.isObjCAtKeyword(tok::objc_catch)) {
1291       DeclTy *FirstPart = 0;
1292       ConsumeToken(); // consume catch
1293       if (Tok.is(tok::l_paren)) {
1294         ConsumeParen();
1295         ParseScope CatchScope(this, Scope::DeclScope|Scope::AtCatchScope);
1296         if (Tok.isNot(tok::ellipsis)) {
1297           DeclSpec DS;
1298           ParseDeclarationSpecifiers(DS);
1299           // For some odd reason, the name of the exception variable is
1300           // optional. As a result, we need to use "PrototypeContext", because
1301           // we must accept either 'declarator' or 'abstract-declarator' here.
1302           Declarator ParmDecl(DS, Declarator::PrototypeContext);
1303           ParseDeclarator(ParmDecl);
1304 
1305           // Inform the actions module about the parameter declarator, so it
1306           // gets added to the current scope.
1307           FirstPart = Actions.ActOnParamDeclarator(CurScope, ParmDecl);
1308         } else
1309           ConsumeToken(); // consume '...'
1310         SourceLocation RParenLoc = ConsumeParen();
1311 
1312         OwningStmtResult CatchBody(Actions, true);
1313         if (Tok.is(tok::l_brace))
1314           CatchBody = ParseCompoundStatementBody();
1315         else
1316           Diag(Tok, diag::err_expected_lbrace);
1317         if (CatchBody.isInvalid())
1318           CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
1319         CatchStmts = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
1320                         RParenLoc, FirstPart, move(CatchBody),
1321                         move(CatchStmts));
1322       } else {
1323         Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after)
1324           << "@catch clause";
1325         return StmtError();
1326       }
1327       catch_or_finally_seen = true;
1328     } else {
1329       assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?");
1330       ConsumeToken(); // consume finally
1331       ParseScope FinallyScope(this, Scope::DeclScope);
1332 
1333       OwningStmtResult FinallyBody(Actions, true);
1334       if (Tok.is(tok::l_brace))
1335         FinallyBody = ParseCompoundStatementBody();
1336       else
1337         Diag(Tok, diag::err_expected_lbrace);
1338       if (FinallyBody.isInvalid())
1339         FinallyBody = Actions.ActOnNullStmt(Tok.getLocation());
1340       FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc,
1341                                                    move(FinallyBody));
1342       catch_or_finally_seen = true;
1343       break;
1344     }
1345   }
1346   if (!catch_or_finally_seen) {
1347     Diag(atLoc, diag::err_missing_catch_finally);
1348     return StmtError();
1349   }
1350   return Actions.ActOnObjCAtTryStmt(atLoc, move(TryBody), move(CatchStmts),
1351                                     move(FinallyStmt));
1352 }
1353 
1354 ///   objc-method-def: objc-method-proto ';'[opt] '{' body '}'
1355 ///
1356 Parser::DeclTy *Parser::ParseObjCMethodDefinition() {
1357   DeclTy *MDecl = ParseObjCMethodPrototype(ObjCImpDecl);
1358 
1359   PrettyStackTraceDecl CrashInfo(MDecl, Tok.getLocation(), Actions,
1360                                  PP.getSourceManager(),
1361                                  "parsing Objective-C method");
1362 
1363   // parse optional ';'
1364   if (Tok.is(tok::semi))
1365     ConsumeToken();
1366 
1367   // We should have an opening brace now.
1368   if (Tok.isNot(tok::l_brace)) {
1369     Diag(Tok, diag::err_expected_method_body);
1370 
1371     // Skip over garbage, until we get to '{'.  Don't eat the '{'.
1372     SkipUntil(tok::l_brace, true, true);
1373 
1374     // If we didn't find the '{', bail out.
1375     if (Tok.isNot(tok::l_brace))
1376       return 0;
1377   }
1378   SourceLocation BraceLoc = Tok.getLocation();
1379 
1380   // Enter a scope for the method body.
1381   ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
1382 
1383   // Tell the actions module that we have entered a method definition with the
1384   // specified Declarator for the method.
1385   Actions.ActOnStartOfObjCMethodDef(CurScope, MDecl);
1386 
1387   OwningStmtResult FnBody(ParseCompoundStatementBody());
1388 
1389   // If the function body could not be parsed, make a bogus compoundstmt.
1390   if (FnBody.isInvalid())
1391     FnBody = Actions.ActOnCompoundStmt(BraceLoc, BraceLoc,
1392                                        MultiStmtArg(Actions), false);
1393 
1394   // TODO: Pass argument information.
1395   Actions.ActOnFinishFunctionBody(MDecl, move(FnBody));
1396 
1397   // Leave the function body scope.
1398   BodyScope.Exit();
1399 
1400   return MDecl;
1401 }
1402 
1403 Parser::OwningStmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc) {
1404   if (Tok.isObjCAtKeyword(tok::objc_try)) {
1405     return ParseObjCTryStmt(AtLoc);
1406   } else if (Tok.isObjCAtKeyword(tok::objc_throw))
1407     return ParseObjCThrowStmt(AtLoc);
1408   else if (Tok.isObjCAtKeyword(tok::objc_synchronized))
1409     return ParseObjCSynchronizedStmt(AtLoc);
1410   OwningExprResult Res(ParseExpressionWithLeadingAt(AtLoc));
1411   if (Res.isInvalid()) {
1412     // If the expression is invalid, skip ahead to the next semicolon. Not
1413     // doing this opens us up to the possibility of infinite loops if
1414     // ParseExpression does not consume any tokens.
1415     SkipUntil(tok::semi);
1416     return StmtError();
1417   }
1418   // Otherwise, eat the semicolon.
1419   ExpectAndConsume(tok::semi, diag::err_expected_semi_after_expr);
1420   return Actions.ActOnExprStmt(move(Res));
1421 }
1422 
1423 Parser::OwningExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
1424   switch (Tok.getKind()) {
1425   case tok::string_literal:    // primary-expression: string-literal
1426   case tok::wide_string_literal:
1427     return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc));
1428   default:
1429     if (Tok.getIdentifierInfo() == 0)
1430       return ExprError(Diag(AtLoc, diag::err_unexpected_at));
1431 
1432     switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
1433     case tok::objc_encode:
1434       return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc));
1435     case tok::objc_protocol:
1436       return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc));
1437     case tok::objc_selector:
1438       return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc));
1439     default:
1440       return ExprError(Diag(AtLoc, diag::err_unexpected_at));
1441     }
1442   }
1443 }
1444 
1445 ///   objc-message-expr:
1446 ///     '[' objc-receiver objc-message-args ']'
1447 ///
1448 ///   objc-receiver:
1449 ///     expression
1450 ///     class-name
1451 ///     type-name
1452 Parser::OwningExprResult Parser::ParseObjCMessageExpression() {
1453   assert(Tok.is(tok::l_square) && "'[' expected");
1454   SourceLocation LBracLoc = ConsumeBracket(); // consume '['
1455 
1456   // Parse receiver
1457   if (isTokObjCMessageIdentifierReceiver()) {
1458     IdentifierInfo *ReceiverName = Tok.getIdentifierInfo();
1459     SourceLocation NameLoc = ConsumeToken();
1460     return ParseObjCMessageExpressionBody(LBracLoc, NameLoc, ReceiverName,
1461                                           ExprArg(Actions));
1462   }
1463 
1464   OwningExprResult Res(ParseExpression());
1465   if (Res.isInvalid()) {
1466     SkipUntil(tok::r_square);
1467     return move(Res);
1468   }
1469 
1470   return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
1471                                         0, move(Res));
1472 }
1473 
1474 /// ParseObjCMessageExpressionBody - Having parsed "'[' objc-receiver", parse
1475 /// the rest of a message expression.
1476 ///
1477 ///   objc-message-args:
1478 ///     objc-selector
1479 ///     objc-keywordarg-list
1480 ///
1481 ///   objc-keywordarg-list:
1482 ///     objc-keywordarg
1483 ///     objc-keywordarg-list objc-keywordarg
1484 ///
1485 ///   objc-keywordarg:
1486 ///     selector-name[opt] ':' objc-keywordexpr
1487 ///
1488 ///   objc-keywordexpr:
1489 ///     nonempty-expr-list
1490 ///
1491 ///   nonempty-expr-list:
1492 ///     assignment-expression
1493 ///     nonempty-expr-list , assignment-expression
1494 ///
1495 Parser::OwningExprResult
1496 Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc,
1497                                        SourceLocation NameLoc,
1498                                        IdentifierInfo *ReceiverName,
1499                                        ExprArg ReceiverExpr) {
1500   // Parse objc-selector
1501   SourceLocation Loc;
1502   IdentifierInfo *selIdent = ParseObjCSelector(Loc);
1503 
1504   SourceLocation SelectorLoc = Loc;
1505 
1506   llvm::SmallVector<IdentifierInfo *, 12> KeyIdents;
1507   ExprVector KeyExprs(Actions);
1508 
1509   if (Tok.is(tok::colon)) {
1510     while (1) {
1511       // Each iteration parses a single keyword argument.
1512       KeyIdents.push_back(selIdent);
1513 
1514       if (Tok.isNot(tok::colon)) {
1515         Diag(Tok, diag::err_expected_colon);
1516         // We must manually skip to a ']', otherwise the expression skipper will
1517         // stop at the ']' when it skips to the ';'.  We want it to skip beyond
1518         // the enclosing expression.
1519         SkipUntil(tok::r_square);
1520         return ExprError();
1521       }
1522 
1523       ConsumeToken(); // Eat the ':'.
1524       ///  Parse the expression after ':'
1525       OwningExprResult Res(ParseAssignmentExpression());
1526       if (Res.isInvalid()) {
1527         // We must manually skip to a ']', otherwise the expression skipper will
1528         // stop at the ']' when it skips to the ';'.  We want it to skip beyond
1529         // the enclosing expression.
1530         SkipUntil(tok::r_square);
1531         return move(Res);
1532       }
1533 
1534       // We have a valid expression.
1535       KeyExprs.push_back(Res.release());
1536 
1537       // Check for another keyword selector.
1538       selIdent = ParseObjCSelector(Loc);
1539       if (!selIdent && Tok.isNot(tok::colon))
1540         break;
1541       // We have a selector or a colon, continue parsing.
1542     }
1543     // Parse the, optional, argument list, comma separated.
1544     while (Tok.is(tok::comma)) {
1545       ConsumeToken(); // Eat the ','.
1546       ///  Parse the expression after ','
1547       OwningExprResult Res(ParseAssignmentExpression());
1548       if (Res.isInvalid()) {
1549         // We must manually skip to a ']', otherwise the expression skipper will
1550         // stop at the ']' when it skips to the ';'.  We want it to skip beyond
1551         // the enclosing expression.
1552         SkipUntil(tok::r_square);
1553         return move(Res);
1554       }
1555 
1556       // We have a valid expression.
1557       KeyExprs.push_back(Res.release());
1558     }
1559   } else if (!selIdent) {
1560     Diag(Tok, diag::err_expected_ident); // missing selector name.
1561 
1562     // We must manually skip to a ']', otherwise the expression skipper will
1563     // stop at the ']' when it skips to the ';'.  We want it to skip beyond
1564     // the enclosing expression.
1565     SkipUntil(tok::r_square);
1566     return ExprError();
1567   }
1568 
1569   if (Tok.isNot(tok::r_square)) {
1570     Diag(Tok, diag::err_expected_rsquare);
1571     // We must manually skip to a ']', otherwise the expression skipper will
1572     // stop at the ']' when it skips to the ';'.  We want it to skip beyond
1573     // the enclosing expression.
1574     SkipUntil(tok::r_square);
1575     return ExprError();
1576   }
1577 
1578   SourceLocation RBracLoc = ConsumeBracket(); // consume ']'
1579 
1580   unsigned nKeys = KeyIdents.size();
1581   if (nKeys == 0)
1582     KeyIdents.push_back(selIdent);
1583   Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]);
1584 
1585   // We've just parsed a keyword message.
1586   if (ReceiverName)
1587     return Owned(Actions.ActOnClassMessage(CurScope, ReceiverName, Sel,
1588                                            LBracLoc, NameLoc, SelectorLoc,
1589                                            RBracLoc,
1590                                            KeyExprs.take(), KeyExprs.size()));
1591   return Owned(Actions.ActOnInstanceMessage(ReceiverExpr.release(), Sel,
1592                                             LBracLoc, SelectorLoc, RBracLoc,
1593                                             KeyExprs.take(), KeyExprs.size()));
1594 }
1595 
1596 Parser::OwningExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) {
1597   OwningExprResult Res(ParseStringLiteralExpression());
1598   if (Res.isInvalid()) return move(Res);
1599 
1600   // @"foo" @"bar" is a valid concatenated string.  Eat any subsequent string
1601   // expressions.  At this point, we know that the only valid thing that starts
1602   // with '@' is an @"".
1603   llvm::SmallVector<SourceLocation, 4> AtLocs;
1604   ExprVector AtStrings(Actions);
1605   AtLocs.push_back(AtLoc);
1606   AtStrings.push_back(Res.release());
1607 
1608   while (Tok.is(tok::at)) {
1609     AtLocs.push_back(ConsumeToken()); // eat the @.
1610 
1611     // Invalid unless there is a string literal.
1612     if (!isTokenStringLiteral())
1613       return ExprError(Diag(Tok, diag::err_objc_concat_string));
1614 
1615     OwningExprResult Lit(ParseStringLiteralExpression());
1616     if (Lit.isInvalid())
1617       return move(Lit);
1618 
1619     AtStrings.push_back(Lit.release());
1620   }
1621 
1622   return Owned(Actions.ParseObjCStringLiteral(&AtLocs[0], AtStrings.take(),
1623                                               AtStrings.size()));
1624 }
1625 
1626 ///    objc-encode-expression:
1627 ///      @encode ( type-name )
1628 Parser::OwningExprResult
1629 Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
1630   assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
1631 
1632   SourceLocation EncLoc = ConsumeToken();
1633 
1634   if (Tok.isNot(tok::l_paren))
1635     return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode");
1636 
1637   SourceLocation LParenLoc = ConsumeParen();
1638 
1639   TypeResult Ty = ParseTypeName();
1640 
1641   SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1642 
1643   if (Ty.isInvalid())
1644     return ExprError();
1645 
1646   return Owned(Actions.ParseObjCEncodeExpression(AtLoc, EncLoc, LParenLoc,
1647                                                  Ty.get(), RParenLoc));
1648 }
1649 
1650 ///     objc-protocol-expression
1651 ///       @protocol ( protocol-name )
1652 Parser::OwningExprResult
1653 Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) {
1654   SourceLocation ProtoLoc = ConsumeToken();
1655 
1656   if (Tok.isNot(tok::l_paren))
1657     return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol");
1658 
1659   SourceLocation LParenLoc = ConsumeParen();
1660 
1661   if (Tok.isNot(tok::identifier))
1662     return ExprError(Diag(Tok, diag::err_expected_ident));
1663 
1664   IdentifierInfo *protocolId = Tok.getIdentifierInfo();
1665   ConsumeToken();
1666 
1667   SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1668 
1669   return Owned(Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc,
1670                                                    LParenLoc, RParenLoc));
1671 }
1672 
1673 ///     objc-selector-expression
1674 ///       @selector '(' objc-keyword-selector ')'
1675 Parser::OwningExprResult
1676 Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) {
1677   SourceLocation SelectorLoc = ConsumeToken();
1678 
1679   if (Tok.isNot(tok::l_paren))
1680     return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector");
1681 
1682   llvm::SmallVector<IdentifierInfo *, 12> KeyIdents;
1683   SourceLocation LParenLoc = ConsumeParen();
1684   SourceLocation sLoc;
1685   IdentifierInfo *SelIdent = ParseObjCSelector(sLoc);
1686   if (!SelIdent && Tok.isNot(tok::colon)) // missing selector name.
1687     return ExprError(Diag(Tok, diag::err_expected_ident));
1688 
1689   KeyIdents.push_back(SelIdent);
1690   unsigned nColons = 0;
1691   if (Tok.isNot(tok::r_paren)) {
1692     while (1) {
1693       if (Tok.isNot(tok::colon))
1694         return ExprError(Diag(Tok, diag::err_expected_colon));
1695 
1696       nColons++;
1697       ConsumeToken(); // Eat the ':'.
1698       if (Tok.is(tok::r_paren))
1699         break;
1700       // Check for another keyword selector.
1701       SourceLocation Loc;
1702       SelIdent = ParseObjCSelector(Loc);
1703       KeyIdents.push_back(SelIdent);
1704       if (!SelIdent && Tok.isNot(tok::colon))
1705         break;
1706     }
1707   }
1708   SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1709   Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]);
1710   return Owned(Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc,
1711                                                    LParenLoc, RParenLoc));
1712  }
1713