xref: /llvm-project/clang/lib/Parse/ParseObjc.cpp (revision 22d0974b40673d2492c5427e4066743223cab696)
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/ParseDiagnostic.h"
15 #include "clang/Parse/Parser.h"
16 #include "RAIIObjectsForParser.h"
17 #include "clang/Sema/DeclSpec.h"
18 #include "clang/Sema/PrettyDeclStackTrace.h"
19 #include "clang/Sema/Scope.h"
20 #include "llvm/ADT/SmallVector.h"
21 using namespace clang;
22 
23 
24 /// ParseObjCAtDirectives - Handle parts of the external-declaration production:
25 ///       external-declaration: [C99 6.9]
26 /// [OBJC]  objc-class-definition
27 /// [OBJC]  objc-class-declaration
28 /// [OBJC]  objc-alias-declaration
29 /// [OBJC]  objc-protocol-definition
30 /// [OBJC]  objc-method-definition
31 /// [OBJC]  '@' 'end'
32 Parser::DeclGroupPtrTy Parser::ParseObjCAtDirectives() {
33   SourceLocation AtLoc = ConsumeToken(); // the "@"
34 
35   if (Tok.is(tok::code_completion)) {
36     Actions.CodeCompleteObjCAtDirective(getCurScope());
37     cutOffParsing();
38     return DeclGroupPtrTy();
39   }
40 
41   Decl *SingleDecl = 0;
42   switch (Tok.getObjCKeywordID()) {
43   case tok::objc_class:
44     return ParseObjCAtClassDeclaration(AtLoc);
45     break;
46   case tok::objc_interface: {
47     ParsedAttributes attrs(AttrFactory);
48     SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs);
49     break;
50   }
51   case tok::objc_protocol: {
52     ParsedAttributes attrs(AttrFactory);
53     return ParseObjCAtProtocolDeclaration(AtLoc, attrs);
54   }
55   case tok::objc_implementation:
56     SingleDecl = ParseObjCAtImplementationDeclaration(AtLoc);
57     break;
58   case tok::objc_end:
59     return ParseObjCAtEndDeclaration(AtLoc);
60   case tok::objc_compatibility_alias:
61     SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
62     break;
63   case tok::objc_synthesize:
64     SingleDecl = ParseObjCPropertySynthesize(AtLoc);
65     break;
66   case tok::objc_dynamic:
67     SingleDecl = ParseObjCPropertyDynamic(AtLoc);
68     break;
69   case tok::objc_import:
70     return ParseModuleImport(AtLoc);
71   default:
72     Diag(AtLoc, diag::err_unexpected_at);
73     SkipUntil(tok::semi);
74     SingleDecl = 0;
75     break;
76   }
77   return Actions.ConvertDeclToDeclGroup(SingleDecl);
78 }
79 
80 ///
81 /// objc-class-declaration:
82 ///    '@' 'class' identifier-list ';'
83 ///
84 Parser::DeclGroupPtrTy
85 Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
86   ConsumeToken(); // the identifier "class"
87   SmallVector<IdentifierInfo *, 8> ClassNames;
88   SmallVector<SourceLocation, 8> ClassLocs;
89 
90 
91   while (1) {
92     if (Tok.isNot(tok::identifier)) {
93       Diag(Tok, diag::err_expected_ident);
94       SkipUntil(tok::semi);
95       return Actions.ConvertDeclToDeclGroup(0);
96     }
97     ClassNames.push_back(Tok.getIdentifierInfo());
98     ClassLocs.push_back(Tok.getLocation());
99     ConsumeToken();
100 
101     if (Tok.isNot(tok::comma))
102       break;
103 
104     ConsumeToken();
105   }
106 
107   // Consume the ';'.
108   if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@class"))
109     return Actions.ConvertDeclToDeclGroup(0);
110 
111   return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(),
112                                               ClassLocs.data(),
113                                               ClassNames.size());
114 }
115 
116 void Parser::CheckNestedObjCContexts(SourceLocation AtLoc)
117 {
118   Sema::ObjCContainerKind ock = Actions.getObjCContainerKind();
119   if (ock == Sema::OCK_None)
120     return;
121 
122   Decl *Decl = Actions.ActOnAtEnd(getCurScope(), AtLoc);
123   Diag(AtLoc, diag::err_objc_missing_end)
124       << FixItHint::CreateInsertion(AtLoc, "@end\n");
125   if (Decl)
126     Diag(Decl->getLocStart(), diag::note_objc_container_start)
127         << (int) ock;
128   if (!PendingObjCImpDecl.empty())
129     PendingObjCImpDecl.pop_back();
130   ObjCImpDecl = 0;
131 }
132 
133 ///
134 ///   objc-interface:
135 ///     objc-class-interface-attributes[opt] objc-class-interface
136 ///     objc-category-interface
137 ///
138 ///   objc-class-interface:
139 ///     '@' 'interface' identifier objc-superclass[opt]
140 ///       objc-protocol-refs[opt]
141 ///       objc-class-instance-variables[opt]
142 ///       objc-interface-decl-list
143 ///     @end
144 ///
145 ///   objc-category-interface:
146 ///     '@' 'interface' identifier '(' identifier[opt] ')'
147 ///       objc-protocol-refs[opt]
148 ///       objc-interface-decl-list
149 ///     @end
150 ///
151 ///   objc-superclass:
152 ///     ':' identifier
153 ///
154 ///   objc-class-interface-attributes:
155 ///     __attribute__((visibility("default")))
156 ///     __attribute__((visibility("hidden")))
157 ///     __attribute__((deprecated))
158 ///     __attribute__((unavailable))
159 ///     __attribute__((objc_exception)) - used by NSException on 64-bit
160 ///
161 Decl *Parser::ParseObjCAtInterfaceDeclaration(SourceLocation AtLoc,
162                                               ParsedAttributes &attrs) {
163   assert(Tok.isObjCAtKeyword(tok::objc_interface) &&
164          "ParseObjCAtInterfaceDeclaration(): Expected @interface");
165   CheckNestedObjCContexts(AtLoc);
166   ConsumeToken(); // the "interface" identifier
167 
168   // Code completion after '@interface'.
169   if (Tok.is(tok::code_completion)) {
170     Actions.CodeCompleteObjCInterfaceDecl(getCurScope());
171     cutOffParsing();
172     return 0;
173   }
174 
175   if (Tok.isNot(tok::identifier)) {
176     Diag(Tok, diag::err_expected_ident); // missing class or category name.
177     return 0;
178   }
179 
180   // We have a class or category name - consume it.
181   IdentifierInfo *nameId = Tok.getIdentifierInfo();
182   SourceLocation nameLoc = ConsumeToken();
183   if (Tok.is(tok::l_paren) &&
184       !isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { // we have a category.
185 
186     BalancedDelimiterTracker T(*this, tok::l_paren);
187     T.consumeOpen();
188 
189     SourceLocation categoryLoc;
190     IdentifierInfo *categoryId = 0;
191     if (Tok.is(tok::code_completion)) {
192       Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
193       cutOffParsing();
194       return 0;
195     }
196 
197     // For ObjC2, the category name is optional (not an error).
198     if (Tok.is(tok::identifier)) {
199       categoryId = Tok.getIdentifierInfo();
200       categoryLoc = ConsumeToken();
201     }
202     else if (!getLang().ObjC2) {
203       Diag(Tok, diag::err_expected_ident); // missing category name.
204       return 0;
205     }
206 
207     T.consumeClose();
208     if (T.getCloseLocation().isInvalid())
209       return 0;
210 
211     if (!attrs.empty()) { // categories don't support attributes.
212       Diag(nameLoc, diag::err_objc_no_attributes_on_category);
213       attrs.clear();
214     }
215 
216     // Next, we need to check for any protocol references.
217     SourceLocation LAngleLoc, EndProtoLoc;
218     SmallVector<Decl *, 8> ProtocolRefs;
219     SmallVector<SourceLocation, 8> ProtocolLocs;
220     if (Tok.is(tok::less) &&
221         ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
222                                     LAngleLoc, EndProtoLoc))
223       return 0;
224 
225     Decl *CategoryType =
226     Actions.ActOnStartCategoryInterface(AtLoc,
227                                         nameId, nameLoc,
228                                         categoryId, categoryLoc,
229                                         ProtocolRefs.data(),
230                                         ProtocolRefs.size(),
231                                         ProtocolLocs.data(),
232                                         EndProtoLoc);
233 
234     if (Tok.is(tok::l_brace))
235       ParseObjCClassInstanceVariables(CategoryType, tok::objc_private, AtLoc);
236 
237     ParseObjCInterfaceDeclList(tok::objc_not_keyword, CategoryType);
238     return CategoryType;
239   }
240   // Parse a class interface.
241   IdentifierInfo *superClassId = 0;
242   SourceLocation superClassLoc;
243 
244   if (Tok.is(tok::colon)) { // a super class is specified.
245     ConsumeToken();
246 
247     // Code completion of superclass names.
248     if (Tok.is(tok::code_completion)) {
249       Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
250       cutOffParsing();
251       return 0;
252     }
253 
254     if (Tok.isNot(tok::identifier)) {
255       Diag(Tok, diag::err_expected_ident); // missing super class name.
256       return 0;
257     }
258     superClassId = Tok.getIdentifierInfo();
259     superClassLoc = ConsumeToken();
260   }
261   // Next, we need to check for any protocol references.
262   SmallVector<Decl *, 8> ProtocolRefs;
263   SmallVector<SourceLocation, 8> ProtocolLocs;
264   SourceLocation LAngleLoc, EndProtoLoc;
265   if (Tok.is(tok::less) &&
266       ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, true,
267                                   LAngleLoc, EndProtoLoc))
268     return 0;
269 
270   Decl *ClsType =
271     Actions.ActOnStartClassInterface(AtLoc, nameId, nameLoc,
272                                      superClassId, superClassLoc,
273                                      ProtocolRefs.data(), ProtocolRefs.size(),
274                                      ProtocolLocs.data(),
275                                      EndProtoLoc, attrs.getList());
276 
277   if (Tok.is(tok::l_brace))
278     ParseObjCClassInstanceVariables(ClsType, tok::objc_protected, AtLoc);
279 
280   ParseObjCInterfaceDeclList(tok::objc_interface, ClsType);
281   return ClsType;
282 }
283 
284 /// The Objective-C property callback.  This should be defined where
285 /// it's used, but instead it's been lifted to here to support VS2005.
286 struct Parser::ObjCPropertyCallback : FieldCallback {
287 private:
288   virtual void anchor();
289 public:
290   Parser &P;
291   SmallVectorImpl<Decl *> &Props;
292   ObjCDeclSpec &OCDS;
293   SourceLocation AtLoc;
294   tok::ObjCKeywordKind MethodImplKind;
295 
296   ObjCPropertyCallback(Parser &P,
297                        SmallVectorImpl<Decl *> &Props,
298                        ObjCDeclSpec &OCDS, SourceLocation AtLoc,
299                        tok::ObjCKeywordKind MethodImplKind) :
300     P(P), Props(Props), OCDS(OCDS), AtLoc(AtLoc),
301     MethodImplKind(MethodImplKind) {
302   }
303 
304   Decl *invoke(FieldDeclarator &FD) {
305     if (FD.D.getIdentifier() == 0) {
306       P.Diag(AtLoc, diag::err_objc_property_requires_field_name)
307         << FD.D.getSourceRange();
308       return 0;
309     }
310     if (FD.BitfieldSize) {
311       P.Diag(AtLoc, diag::err_objc_property_bitfield)
312         << FD.D.getSourceRange();
313       return 0;
314     }
315 
316     // Install the property declarator into interfaceDecl.
317     IdentifierInfo *SelName =
318       OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier();
319 
320     Selector GetterSel =
321       P.PP.getSelectorTable().getNullarySelector(SelName);
322     IdentifierInfo *SetterName = OCDS.getSetterName();
323     Selector SetterSel;
324     if (SetterName)
325       SetterSel = P.PP.getSelectorTable().getSelector(1, &SetterName);
326     else
327       SetterSel = SelectorTable::constructSetterName(P.PP.getIdentifierTable(),
328                                                      P.PP.getSelectorTable(),
329                                                      FD.D.getIdentifier());
330     bool isOverridingProperty = false;
331     Decl *Property =
332       P.Actions.ActOnProperty(P.getCurScope(), AtLoc, FD, OCDS,
333                               GetterSel, SetterSel,
334                               &isOverridingProperty,
335                               MethodImplKind);
336     if (!isOverridingProperty)
337       Props.push_back(Property);
338 
339     return Property;
340   }
341 };
342 
343 void Parser::ObjCPropertyCallback::anchor() {
344 }
345 
346 ///   objc-interface-decl-list:
347 ///     empty
348 ///     objc-interface-decl-list objc-property-decl [OBJC2]
349 ///     objc-interface-decl-list objc-method-requirement [OBJC2]
350 ///     objc-interface-decl-list objc-method-proto ';'
351 ///     objc-interface-decl-list declaration
352 ///     objc-interface-decl-list ';'
353 ///
354 ///   objc-method-requirement: [OBJC2]
355 ///     @required
356 ///     @optional
357 ///
358 void Parser::ParseObjCInterfaceDeclList(tok::ObjCKeywordKind contextKey,
359                                         Decl *CDecl) {
360   SmallVector<Decl *, 32> allMethods;
361   SmallVector<Decl *, 16> allProperties;
362   SmallVector<DeclGroupPtrTy, 8> allTUVariables;
363   tok::ObjCKeywordKind MethodImplKind = tok::objc_not_keyword;
364 
365   SourceRange AtEnd;
366 
367   while (1) {
368     // If this is a method prototype, parse it.
369     if (Tok.is(tok::minus) || Tok.is(tok::plus)) {
370       Decl *methodPrototype =
371         ParseObjCMethodPrototype(MethodImplKind, false);
372       allMethods.push_back(methodPrototype);
373       // Consume the ';' here, since ParseObjCMethodPrototype() is re-used for
374       // method definitions.
375       if (ExpectAndConsumeSemi(diag::err_expected_semi_after_method_proto)) {
376         // We didn't find a semi and we error'ed out. Skip until a ';' or '@'.
377         SkipUntil(tok::at, /*StopAtSemi=*/true, /*DontConsume=*/true);
378         if (Tok.is(tok::semi))
379           ConsumeToken();
380       }
381       continue;
382     }
383     if (Tok.is(tok::l_paren)) {
384       Diag(Tok, diag::err_expected_minus_or_plus);
385       ParseObjCMethodDecl(Tok.getLocation(),
386                           tok::minus,
387                           MethodImplKind, false);
388       continue;
389     }
390     // Ignore excess semicolons.
391     if (Tok.is(tok::semi)) {
392       ConsumeToken();
393       continue;
394     }
395 
396     // If we got to the end of the file, exit the loop.
397     if (Tok.is(tok::eof))
398       break;
399 
400     // Code completion within an Objective-C interface.
401     if (Tok.is(tok::code_completion)) {
402       Actions.CodeCompleteOrdinaryName(getCurScope(),
403                                   ObjCImpDecl? Sema::PCC_ObjCImplementation
404                                              : Sema::PCC_ObjCInterface);
405       return cutOffParsing();
406     }
407 
408     // If we don't have an @ directive, parse it as a function definition.
409     if (Tok.isNot(tok::at)) {
410       // The code below does not consume '}'s because it is afraid of eating the
411       // end of a namespace.  Because of the way this code is structured, an
412       // erroneous r_brace would cause an infinite loop if not handled here.
413       if (Tok.is(tok::r_brace))
414         break;
415       ParsedAttributes attrs(AttrFactory);
416       allTUVariables.push_back(ParseDeclarationOrFunctionDefinition(attrs));
417       continue;
418     }
419 
420     // Otherwise, we have an @ directive, eat the @.
421     SourceLocation AtLoc = ConsumeToken(); // the "@"
422     if (Tok.is(tok::code_completion)) {
423       Actions.CodeCompleteObjCAtDirective(getCurScope());
424       return cutOffParsing();
425       break;
426     }
427 
428     tok::ObjCKeywordKind DirectiveKind = Tok.getObjCKeywordID();
429 
430     if (DirectiveKind == tok::objc_end) { // @end -> terminate list
431       AtEnd.setBegin(AtLoc);
432       AtEnd.setEnd(Tok.getLocation());
433       break;
434     } else if (DirectiveKind == tok::objc_not_keyword) {
435       Diag(Tok, diag::err_objc_unknown_at);
436       SkipUntil(tok::semi);
437       continue;
438     }
439 
440     // Eat the identifier.
441     ConsumeToken();
442 
443     switch (DirectiveKind) {
444     default:
445       // FIXME: If someone forgets an @end on a protocol, this loop will
446       // continue to eat up tons of stuff and spew lots of nonsense errors.  It
447       // would probably be better to bail out if we saw an @class or @interface
448       // or something like that.
449       Diag(AtLoc, diag::err_objc_illegal_interface_qual);
450       // Skip until we see an '@' or '}' or ';'.
451       SkipUntil(tok::r_brace, tok::at);
452       break;
453 
454     case tok::objc_implementation:
455     case tok::objc_interface:
456       Diag(AtLoc, diag::err_objc_missing_end)
457           << FixItHint::CreateInsertion(AtLoc, "@end\n");
458       Diag(CDecl->getLocStart(), diag::note_objc_container_start)
459           << (int) Actions.getObjCContainerKind();
460       ConsumeToken();
461       break;
462 
463     case tok::objc_required:
464     case tok::objc_optional:
465       // This is only valid on protocols.
466       // FIXME: Should this check for ObjC2 being enabled?
467       if (contextKey != tok::objc_protocol)
468         Diag(AtLoc, diag::err_objc_directive_only_in_protocol);
469       else
470         MethodImplKind = DirectiveKind;
471       break;
472 
473     case tok::objc_property:
474       if (!getLang().ObjC2)
475         Diag(AtLoc, diag::err_objc_properties_require_objc2);
476 
477       ObjCDeclSpec OCDS;
478       // Parse property attribute list, if any.
479       if (Tok.is(tok::l_paren))
480         ParseObjCPropertyAttribute(OCDS);
481 
482       ObjCPropertyCallback Callback(*this, allProperties,
483                                     OCDS, AtLoc, MethodImplKind);
484 
485       // Parse all the comma separated declarators.
486       DeclSpec DS(AttrFactory);
487       ParseStructDeclaration(DS, Callback);
488 
489       ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list);
490       break;
491     }
492   }
493 
494   // We break out of the big loop in two cases: when we see @end or when we see
495   // EOF.  In the former case, eat the @end.  In the later case, emit an error.
496   if (Tok.is(tok::code_completion)) {
497     Actions.CodeCompleteObjCAtDirective(getCurScope());
498     return cutOffParsing();
499   } else if (Tok.isObjCAtKeyword(tok::objc_end)) {
500     ConsumeToken(); // the "end" identifier
501   } else {
502     Diag(Tok, diag::err_objc_missing_end)
503         << FixItHint::CreateInsertion(Tok.getLocation(), "\n@end\n");
504     Diag(CDecl->getLocStart(), diag::note_objc_container_start)
505         << (int) Actions.getObjCContainerKind();
506     AtEnd.setBegin(Tok.getLocation());
507     AtEnd.setEnd(Tok.getLocation());
508   }
509 
510   // Insert collected methods declarations into the @interface object.
511   // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit.
512   Actions.ActOnAtEnd(getCurScope(), AtEnd,
513                      allMethods.data(), allMethods.size(),
514                      allProperties.data(), allProperties.size(),
515                      allTUVariables.data(), allTUVariables.size());
516 }
517 
518 ///   Parse property attribute declarations.
519 ///
520 ///   property-attr-decl: '(' property-attrlist ')'
521 ///   property-attrlist:
522 ///     property-attribute
523 ///     property-attrlist ',' property-attribute
524 ///   property-attribute:
525 ///     getter '=' identifier
526 ///     setter '=' identifier ':'
527 ///     readonly
528 ///     readwrite
529 ///     assign
530 ///     retain
531 ///     copy
532 ///     nonatomic
533 ///     atomic
534 ///     strong
535 ///     weak
536 ///     unsafe_unretained
537 ///
538 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) {
539   assert(Tok.getKind() == tok::l_paren);
540   BalancedDelimiterTracker T(*this, tok::l_paren);
541   T.consumeOpen();
542 
543   while (1) {
544     if (Tok.is(tok::code_completion)) {
545       Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS);
546       return cutOffParsing();
547     }
548     const IdentifierInfo *II = Tok.getIdentifierInfo();
549 
550     // If this is not an identifier at all, bail out early.
551     if (II == 0) {
552       T.consumeClose();
553       return;
554     }
555 
556     SourceLocation AttrName = ConsumeToken(); // consume last attribute name
557 
558     if (II->isStr("readonly"))
559       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
560     else if (II->isStr("assign"))
561       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
562     else if (II->isStr("unsafe_unretained"))
563       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained);
564     else if (II->isStr("readwrite"))
565       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
566     else if (II->isStr("retain"))
567       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
568     else if (II->isStr("strong"))
569       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_strong);
570     else if (II->isStr("copy"))
571       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_copy);
572     else if (II->isStr("nonatomic"))
573       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_nonatomic);
574     else if (II->isStr("atomic"))
575       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_atomic);
576     else if (II->isStr("weak"))
577       DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_weak);
578     else if (II->isStr("getter") || II->isStr("setter")) {
579       bool IsSetter = II->getNameStart()[0] == 's';
580 
581       // getter/setter require extra treatment.
582       unsigned DiagID = IsSetter ? diag::err_objc_expected_equal_for_setter :
583         diag::err_objc_expected_equal_for_getter;
584 
585       if (ExpectAndConsume(tok::equal, DiagID, "", tok::r_paren))
586         return;
587 
588       if (Tok.is(tok::code_completion)) {
589         if (IsSetter)
590           Actions.CodeCompleteObjCPropertySetter(getCurScope());
591         else
592           Actions.CodeCompleteObjCPropertyGetter(getCurScope());
593         return cutOffParsing();
594       }
595 
596 
597       SourceLocation SelLoc;
598       IdentifierInfo *SelIdent = ParseObjCSelectorPiece(SelLoc);
599 
600       if (!SelIdent) {
601         Diag(Tok, diag::err_objc_expected_selector_for_getter_setter)
602           << IsSetter;
603         SkipUntil(tok::r_paren);
604         return;
605       }
606 
607       if (IsSetter) {
608         DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_setter);
609         DS.setSetterName(SelIdent);
610 
611         if (ExpectAndConsume(tok::colon,
612                              diag::err_expected_colon_after_setter_name, "",
613                              tok::r_paren))
614           return;
615       } else {
616         DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_getter);
617         DS.setGetterName(SelIdent);
618       }
619     } else {
620       Diag(AttrName, diag::err_objc_expected_property_attr) << II;
621       SkipUntil(tok::r_paren);
622       return;
623     }
624 
625     if (Tok.isNot(tok::comma))
626       break;
627 
628     ConsumeToken();
629   }
630 
631   T.consumeClose();
632 }
633 
634 ///   objc-method-proto:
635 ///     objc-instance-method objc-method-decl objc-method-attributes[opt]
636 ///     objc-class-method objc-method-decl objc-method-attributes[opt]
637 ///
638 ///   objc-instance-method: '-'
639 ///   objc-class-method: '+'
640 ///
641 ///   objc-method-attributes:         [OBJC2]
642 ///     __attribute__((deprecated))
643 ///
644 Decl *Parser::ParseObjCMethodPrototype(tok::ObjCKeywordKind MethodImplKind,
645                                        bool MethodDefinition) {
646   assert((Tok.is(tok::minus) || Tok.is(tok::plus)) && "expected +/-");
647 
648   tok::TokenKind methodType = Tok.getKind();
649   SourceLocation mLoc = ConsumeToken();
650   Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind,
651                                     MethodDefinition);
652   // Since this rule is used for both method declarations and definitions,
653   // the caller is (optionally) responsible for consuming the ';'.
654   return MDecl;
655 }
656 
657 ///   objc-selector:
658 ///     identifier
659 ///     one of
660 ///       enum struct union if else while do for switch case default
661 ///       break continue return goto asm sizeof typeof __alignof
662 ///       unsigned long const short volatile signed restrict _Complex
663 ///       in out inout bycopy byref oneway int char float double void _Bool
664 ///
665 IdentifierInfo *Parser::ParseObjCSelectorPiece(SourceLocation &SelectorLoc) {
666 
667   switch (Tok.getKind()) {
668   default:
669     return 0;
670   case tok::ampamp:
671   case tok::ampequal:
672   case tok::amp:
673   case tok::pipe:
674   case tok::tilde:
675   case tok::exclaim:
676   case tok::exclaimequal:
677   case tok::pipepipe:
678   case tok::pipeequal:
679   case tok::caret:
680   case tok::caretequal: {
681     std::string ThisTok(PP.getSpelling(Tok));
682     if (isalpha(ThisTok[0])) {
683       IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok.data());
684       Tok.setKind(tok::identifier);
685       SelectorLoc = ConsumeToken();
686       return II;
687     }
688     return 0;
689   }
690 
691   case tok::identifier:
692   case tok::kw_asm:
693   case tok::kw_auto:
694   case tok::kw_bool:
695   case tok::kw_break:
696   case tok::kw_case:
697   case tok::kw_catch:
698   case tok::kw_char:
699   case tok::kw_class:
700   case tok::kw_const:
701   case tok::kw_const_cast:
702   case tok::kw_continue:
703   case tok::kw_default:
704   case tok::kw_delete:
705   case tok::kw_do:
706   case tok::kw_double:
707   case tok::kw_dynamic_cast:
708   case tok::kw_else:
709   case tok::kw_enum:
710   case tok::kw_explicit:
711   case tok::kw_export:
712   case tok::kw_extern:
713   case tok::kw_false:
714   case tok::kw_float:
715   case tok::kw_for:
716   case tok::kw_friend:
717   case tok::kw_goto:
718   case tok::kw_if:
719   case tok::kw_inline:
720   case tok::kw_int:
721   case tok::kw_long:
722   case tok::kw_mutable:
723   case tok::kw_namespace:
724   case tok::kw_new:
725   case tok::kw_operator:
726   case tok::kw_private:
727   case tok::kw_protected:
728   case tok::kw_public:
729   case tok::kw_register:
730   case tok::kw_reinterpret_cast:
731   case tok::kw_restrict:
732   case tok::kw_return:
733   case tok::kw_short:
734   case tok::kw_signed:
735   case tok::kw_sizeof:
736   case tok::kw_static:
737   case tok::kw_static_cast:
738   case tok::kw_struct:
739   case tok::kw_switch:
740   case tok::kw_template:
741   case tok::kw_this:
742   case tok::kw_throw:
743   case tok::kw_true:
744   case tok::kw_try:
745   case tok::kw_typedef:
746   case tok::kw_typeid:
747   case tok::kw_typename:
748   case tok::kw_typeof:
749   case tok::kw_union:
750   case tok::kw_unsigned:
751   case tok::kw_using:
752   case tok::kw_virtual:
753   case tok::kw_void:
754   case tok::kw_volatile:
755   case tok::kw_wchar_t:
756   case tok::kw_while:
757   case tok::kw__Bool:
758   case tok::kw__Complex:
759   case tok::kw___alignof:
760     IdentifierInfo *II = Tok.getIdentifierInfo();
761     SelectorLoc = ConsumeToken();
762     return II;
763   }
764 }
765 
766 ///  objc-for-collection-in: 'in'
767 ///
768 bool Parser::isTokIdentifier_in() const {
769   // FIXME: May have to do additional look-ahead to only allow for
770   // valid tokens following an 'in'; such as an identifier, unary operators,
771   // '[' etc.
772   return (getLang().ObjC2 && Tok.is(tok::identifier) &&
773           Tok.getIdentifierInfo() == ObjCTypeQuals[objc_in]);
774 }
775 
776 /// ParseObjCTypeQualifierList - This routine parses the objective-c's type
777 /// qualifier list and builds their bitmask representation in the input
778 /// argument.
779 ///
780 ///   objc-type-qualifiers:
781 ///     objc-type-qualifier
782 ///     objc-type-qualifiers objc-type-qualifier
783 ///
784 void Parser::ParseObjCTypeQualifierList(ObjCDeclSpec &DS,
785                                         Declarator::TheContext Context) {
786   assert(Context == Declarator::ObjCParameterContext ||
787          Context == Declarator::ObjCResultContext);
788 
789   while (1) {
790     if (Tok.is(tok::code_completion)) {
791       Actions.CodeCompleteObjCPassingType(getCurScope(), DS,
792                           Context == Declarator::ObjCParameterContext);
793       return cutOffParsing();
794     }
795 
796     if (Tok.isNot(tok::identifier))
797       return;
798 
799     const IdentifierInfo *II = Tok.getIdentifierInfo();
800     for (unsigned i = 0; i != objc_NumQuals; ++i) {
801       if (II != ObjCTypeQuals[i])
802         continue;
803 
804       ObjCDeclSpec::ObjCDeclQualifier Qual;
805       switch (i) {
806       default: llvm_unreachable("Unknown decl qualifier");
807       case objc_in:     Qual = ObjCDeclSpec::DQ_In; break;
808       case objc_out:    Qual = ObjCDeclSpec::DQ_Out; break;
809       case objc_inout:  Qual = ObjCDeclSpec::DQ_Inout; break;
810       case objc_oneway: Qual = ObjCDeclSpec::DQ_Oneway; break;
811       case objc_bycopy: Qual = ObjCDeclSpec::DQ_Bycopy; break;
812       case objc_byref:  Qual = ObjCDeclSpec::DQ_Byref; break;
813       }
814       DS.setObjCDeclQualifier(Qual);
815       ConsumeToken();
816       II = 0;
817       break;
818     }
819 
820     // If this wasn't a recognized qualifier, bail out.
821     if (II) return;
822   }
823 }
824 
825 /// Take all the decl attributes out of the given list and add
826 /// them to the given attribute set.
827 static void takeDeclAttributes(ParsedAttributes &attrs,
828                                AttributeList *list) {
829   while (list) {
830     AttributeList *cur = list;
831     list = cur->getNext();
832 
833     if (!cur->isUsedAsTypeAttr()) {
834       // Clear out the next pointer.  We're really completely
835       // destroying the internal invariants of the declarator here,
836       // but it doesn't matter because we're done with it.
837       cur->setNext(0);
838       attrs.add(cur);
839     }
840   }
841 }
842 
843 /// takeDeclAttributes - Take all the decl attributes from the given
844 /// declarator and add them to the given list.
845 static void takeDeclAttributes(ParsedAttributes &attrs,
846                                Declarator &D) {
847   // First, take ownership of all attributes.
848   attrs.getPool().takeAllFrom(D.getAttributePool());
849   attrs.getPool().takeAllFrom(D.getDeclSpec().getAttributePool());
850 
851   // Now actually move the attributes over.
852   takeDeclAttributes(attrs, D.getDeclSpec().getAttributes().getList());
853   takeDeclAttributes(attrs, D.getAttributes());
854   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
855     takeDeclAttributes(attrs,
856                   const_cast<AttributeList*>(D.getTypeObject(i).getAttrs()));
857 }
858 
859 ///   objc-type-name:
860 ///     '(' objc-type-qualifiers[opt] type-name ')'
861 ///     '(' objc-type-qualifiers[opt] ')'
862 ///
863 ParsedType Parser::ParseObjCTypeName(ObjCDeclSpec &DS,
864                                      Declarator::TheContext context,
865                                      ParsedAttributes *paramAttrs) {
866   assert(context == Declarator::ObjCParameterContext ||
867          context == Declarator::ObjCResultContext);
868   assert((paramAttrs != 0) == (context == Declarator::ObjCParameterContext));
869 
870   assert(Tok.is(tok::l_paren) && "expected (");
871 
872   BalancedDelimiterTracker T(*this, tok::l_paren);
873   T.consumeOpen();
874 
875   SourceLocation TypeStartLoc = Tok.getLocation();
876   ObjCDeclContextSwitch ObjCDC(*this);
877 
878   // Parse type qualifiers, in, inout, etc.
879   ParseObjCTypeQualifierList(DS, context);
880 
881   ParsedType Ty;
882   if (isTypeSpecifierQualifier()) {
883     // Parse an abstract declarator.
884     DeclSpec declSpec(AttrFactory);
885     declSpec.setObjCQualifiers(&DS);
886     ParseSpecifierQualifierList(declSpec);
887     Declarator declarator(declSpec, context);
888     ParseDeclarator(declarator);
889 
890     // If that's not invalid, extract a type.
891     if (!declarator.isInvalidType()) {
892       TypeResult type = Actions.ActOnTypeName(getCurScope(), declarator);
893       if (!type.isInvalid())
894         Ty = type.get();
895 
896       // If we're parsing a parameter, steal all the decl attributes
897       // and add them to the decl spec.
898       if (context == Declarator::ObjCParameterContext)
899         takeDeclAttributes(*paramAttrs, declarator);
900     }
901   } else if (context == Declarator::ObjCResultContext &&
902              Tok.is(tok::identifier)) {
903     if (!Ident_instancetype)
904       Ident_instancetype = PP.getIdentifierInfo("instancetype");
905 
906     if (Tok.getIdentifierInfo() == Ident_instancetype) {
907       Ty = Actions.ActOnObjCInstanceType(Tok.getLocation());
908       ConsumeToken();
909     }
910   }
911 
912   if (Tok.is(tok::r_paren))
913     T.consumeClose();
914   else if (Tok.getLocation() == TypeStartLoc) {
915     // If we didn't eat any tokens, then this isn't a type.
916     Diag(Tok, diag::err_expected_type);
917     SkipUntil(tok::r_paren);
918   } else {
919     // Otherwise, we found *something*, but didn't get a ')' in the right
920     // place.  Emit an error then return what we have as the type.
921     T.consumeClose();
922   }
923   return Ty;
924 }
925 
926 ///   objc-method-decl:
927 ///     objc-selector
928 ///     objc-keyword-selector objc-parmlist[opt]
929 ///     objc-type-name objc-selector
930 ///     objc-type-name objc-keyword-selector objc-parmlist[opt]
931 ///
932 ///   objc-keyword-selector:
933 ///     objc-keyword-decl
934 ///     objc-keyword-selector objc-keyword-decl
935 ///
936 ///   objc-keyword-decl:
937 ///     objc-selector ':' objc-type-name objc-keyword-attributes[opt] identifier
938 ///     objc-selector ':' objc-keyword-attributes[opt] identifier
939 ///     ':' objc-type-name objc-keyword-attributes[opt] identifier
940 ///     ':' objc-keyword-attributes[opt] identifier
941 ///
942 ///   objc-parmlist:
943 ///     objc-parms objc-ellipsis[opt]
944 ///
945 ///   objc-parms:
946 ///     objc-parms , parameter-declaration
947 ///
948 ///   objc-ellipsis:
949 ///     , ...
950 ///
951 ///   objc-keyword-attributes:         [OBJC2]
952 ///     __attribute__((unused))
953 ///
954 Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
955                                   tok::TokenKind mType,
956                                   tok::ObjCKeywordKind MethodImplKind,
957                                   bool MethodDefinition) {
958   ParsingDeclRAIIObject PD(*this);
959 
960   if (Tok.is(tok::code_completion)) {
961     Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
962                                        /*ReturnType=*/ ParsedType());
963     cutOffParsing();
964     return 0;
965   }
966 
967   // Parse the return type if present.
968   ParsedType ReturnType;
969   ObjCDeclSpec DSRet;
970   if (Tok.is(tok::l_paren))
971     ReturnType = ParseObjCTypeName(DSRet, Declarator::ObjCResultContext, 0);
972 
973   // If attributes exist before the method, parse them.
974   ParsedAttributes methodAttrs(AttrFactory);
975   if (getLang().ObjC2)
976     MaybeParseGNUAttributes(methodAttrs);
977 
978   if (Tok.is(tok::code_completion)) {
979     Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
980                                        ReturnType);
981     cutOffParsing();
982     return 0;
983   }
984 
985   // Now parse the selector.
986   SourceLocation selLoc;
987   IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc);
988 
989   // An unnamed colon is valid.
990   if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
991     Diag(Tok, diag::err_expected_selector_for_method)
992       << SourceRange(mLoc, Tok.getLocation());
993     // Skip until we get a ; or {}.
994     SkipUntil(tok::r_brace);
995     return 0;
996   }
997 
998   SmallVector<DeclaratorChunk::ParamInfo, 8> CParamInfo;
999   if (Tok.isNot(tok::colon)) {
1000     // If attributes exist after the method, parse them.
1001     if (getLang().ObjC2)
1002       MaybeParseGNUAttributes(methodAttrs);
1003 
1004     Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent);
1005     Decl *Result
1006          = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
1007                                           mType, DSRet, ReturnType,
1008                                           selLoc, Sel, 0,
1009                                           CParamInfo.data(), CParamInfo.size(),
1010                                           methodAttrs.getList(), MethodImplKind,
1011                                           false, MethodDefinition);
1012     PD.complete(Result);
1013     return Result;
1014   }
1015 
1016   SmallVector<IdentifierInfo *, 12> KeyIdents;
1017   SmallVector<SourceLocation, 12> KeyLocs;
1018   SmallVector<Sema::ObjCArgInfo, 12> ArgInfos;
1019   ParseScope PrototypeScope(this,
1020                             Scope::FunctionPrototypeScope|Scope::DeclScope);
1021 
1022   AttributePool allParamAttrs(AttrFactory);
1023 
1024   while (1) {
1025     ParsedAttributes paramAttrs(AttrFactory);
1026     Sema::ObjCArgInfo ArgInfo;
1027 
1028     // Each iteration parses a single keyword argument.
1029     if (Tok.isNot(tok::colon)) {
1030       Diag(Tok, diag::err_expected_colon);
1031       break;
1032     }
1033     ConsumeToken(); // Eat the ':'.
1034 
1035     ArgInfo.Type = ParsedType();
1036     if (Tok.is(tok::l_paren)) // Parse the argument type if present.
1037       ArgInfo.Type = ParseObjCTypeName(ArgInfo.DeclSpec,
1038                                        Declarator::ObjCParameterContext,
1039                                        &paramAttrs);
1040 
1041     // If attributes exist before the argument name, parse them.
1042     // Regardless, collect all the attributes we've parsed so far.
1043     ArgInfo.ArgAttrs = 0;
1044     if (getLang().ObjC2) {
1045       MaybeParseGNUAttributes(paramAttrs);
1046       ArgInfo.ArgAttrs = paramAttrs.getList();
1047     }
1048 
1049     // Code completion for the next piece of the selector.
1050     if (Tok.is(tok::code_completion)) {
1051       KeyIdents.push_back(SelIdent);
1052       Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1053                                                  mType == tok::minus,
1054                                                  /*AtParameterName=*/true,
1055                                                  ReturnType,
1056                                                  KeyIdents.data(),
1057                                                  KeyIdents.size());
1058       cutOffParsing();
1059       return 0;
1060     }
1061 
1062     if (Tok.isNot(tok::identifier)) {
1063       Diag(Tok, diag::err_expected_ident); // missing argument name.
1064       break;
1065     }
1066 
1067     ArgInfo.Name = Tok.getIdentifierInfo();
1068     ArgInfo.NameLoc = Tok.getLocation();
1069     ConsumeToken(); // Eat the identifier.
1070 
1071     ArgInfos.push_back(ArgInfo);
1072     KeyIdents.push_back(SelIdent);
1073     KeyLocs.push_back(selLoc);
1074 
1075     // Make sure the attributes persist.
1076     allParamAttrs.takeAllFrom(paramAttrs.getPool());
1077 
1078     // Code completion for the next piece of the selector.
1079     if (Tok.is(tok::code_completion)) {
1080       Actions.CodeCompleteObjCMethodDeclSelector(getCurScope(),
1081                                                  mType == tok::minus,
1082                                                  /*AtParameterName=*/false,
1083                                                  ReturnType,
1084                                                  KeyIdents.data(),
1085                                                  KeyIdents.size());
1086       cutOffParsing();
1087       return 0;
1088     }
1089 
1090     // Check for another keyword selector.
1091     SelIdent = ParseObjCSelectorPiece(selLoc);
1092     if (!SelIdent && Tok.isNot(tok::colon))
1093       break;
1094     // We have a selector or a colon, continue parsing.
1095   }
1096 
1097   bool isVariadic = false;
1098 
1099   // Parse the (optional) parameter list.
1100   while (Tok.is(tok::comma)) {
1101     ConsumeToken();
1102     if (Tok.is(tok::ellipsis)) {
1103       isVariadic = true;
1104       ConsumeToken();
1105       break;
1106     }
1107     DeclSpec DS(AttrFactory);
1108     ParseDeclarationSpecifiers(DS);
1109     // Parse the declarator.
1110     Declarator ParmDecl(DS, Declarator::PrototypeContext);
1111     ParseDeclarator(ParmDecl);
1112     IdentifierInfo *ParmII = ParmDecl.getIdentifier();
1113     Decl *Param = Actions.ActOnParamDeclarator(getCurScope(), ParmDecl);
1114     CParamInfo.push_back(DeclaratorChunk::ParamInfo(ParmII,
1115                                                     ParmDecl.getIdentifierLoc(),
1116                                                     Param,
1117                                                    0));
1118 
1119   }
1120 
1121   // FIXME: Add support for optional parameter list...
1122   // If attributes exist after the method, parse them.
1123   if (getLang().ObjC2)
1124     MaybeParseGNUAttributes(methodAttrs);
1125 
1126   if (KeyIdents.size() == 0)
1127     return 0;
1128 
1129   Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(),
1130                                                    &KeyIdents[0]);
1131   Decl *Result
1132        = Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
1133                                         mType, DSRet, ReturnType,
1134                                         KeyLocs, Sel, &ArgInfos[0],
1135                                         CParamInfo.data(), CParamInfo.size(),
1136                                         methodAttrs.getList(),
1137                                         MethodImplKind, isVariadic, MethodDefinition);
1138 
1139   PD.complete(Result);
1140   return Result;
1141 }
1142 
1143 ///   objc-protocol-refs:
1144 ///     '<' identifier-list '>'
1145 ///
1146 bool Parser::
1147 ParseObjCProtocolReferences(SmallVectorImpl<Decl *> &Protocols,
1148                             SmallVectorImpl<SourceLocation> &ProtocolLocs,
1149                             bool WarnOnDeclarations,
1150                             SourceLocation &LAngleLoc, SourceLocation &EndLoc) {
1151   assert(Tok.is(tok::less) && "expected <");
1152 
1153   LAngleLoc = ConsumeToken(); // the "<"
1154 
1155   SmallVector<IdentifierLocPair, 8> ProtocolIdents;
1156 
1157   while (1) {
1158     if (Tok.is(tok::code_completion)) {
1159       Actions.CodeCompleteObjCProtocolReferences(ProtocolIdents.data(),
1160                                                  ProtocolIdents.size());
1161       cutOffParsing();
1162       return true;
1163     }
1164 
1165     if (Tok.isNot(tok::identifier)) {
1166       Diag(Tok, diag::err_expected_ident);
1167       SkipUntil(tok::greater);
1168       return true;
1169     }
1170     ProtocolIdents.push_back(std::make_pair(Tok.getIdentifierInfo(),
1171                                        Tok.getLocation()));
1172     ProtocolLocs.push_back(Tok.getLocation());
1173     ConsumeToken();
1174 
1175     if (Tok.isNot(tok::comma))
1176       break;
1177     ConsumeToken();
1178   }
1179 
1180   // Consume the '>'.
1181   if (Tok.isNot(tok::greater)) {
1182     Diag(Tok, diag::err_expected_greater);
1183     return true;
1184   }
1185 
1186   EndLoc = ConsumeAnyToken();
1187 
1188   // Convert the list of protocols identifiers into a list of protocol decls.
1189   Actions.FindProtocolDeclaration(WarnOnDeclarations,
1190                                   &ProtocolIdents[0], ProtocolIdents.size(),
1191                                   Protocols);
1192   return false;
1193 }
1194 
1195 /// \brief Parse the Objective-C protocol qualifiers that follow a typename
1196 /// in a decl-specifier-seq, starting at the '<'.
1197 bool Parser::ParseObjCProtocolQualifiers(DeclSpec &DS) {
1198   assert(Tok.is(tok::less) && "Protocol qualifiers start with '<'");
1199   assert(getLang().ObjC1 && "Protocol qualifiers only exist in Objective-C");
1200   SourceLocation LAngleLoc, EndProtoLoc;
1201   SmallVector<Decl *, 8> ProtocolDecl;
1202   SmallVector<SourceLocation, 8> ProtocolLocs;
1203   bool Result = ParseObjCProtocolReferences(ProtocolDecl, ProtocolLocs, false,
1204                                             LAngleLoc, EndProtoLoc);
1205   DS.setProtocolQualifiers(ProtocolDecl.data(), ProtocolDecl.size(),
1206                            ProtocolLocs.data(), LAngleLoc);
1207   if (EndProtoLoc.isValid())
1208     DS.SetRangeEnd(EndProtoLoc);
1209   return Result;
1210 }
1211 
1212 
1213 ///   objc-class-instance-variables:
1214 ///     '{' objc-instance-variable-decl-list[opt] '}'
1215 ///
1216 ///   objc-instance-variable-decl-list:
1217 ///     objc-visibility-spec
1218 ///     objc-instance-variable-decl ';'
1219 ///     ';'
1220 ///     objc-instance-variable-decl-list objc-visibility-spec
1221 ///     objc-instance-variable-decl-list objc-instance-variable-decl ';'
1222 ///     objc-instance-variable-decl-list ';'
1223 ///
1224 ///   objc-visibility-spec:
1225 ///     @private
1226 ///     @protected
1227 ///     @public
1228 ///     @package [OBJC2]
1229 ///
1230 ///   objc-instance-variable-decl:
1231 ///     struct-declaration
1232 ///
1233 void Parser::ParseObjCClassInstanceVariables(Decl *interfaceDecl,
1234                                              tok::ObjCKeywordKind visibility,
1235                                              SourceLocation atLoc) {
1236   assert(Tok.is(tok::l_brace) && "expected {");
1237   SmallVector<Decl *, 32> AllIvarDecls;
1238 
1239   ParseScope ClassScope(this, Scope::DeclScope|Scope::ClassScope);
1240   ObjCDeclContextSwitch ObjCDC(*this);
1241 
1242   BalancedDelimiterTracker T(*this, tok::l_brace);
1243   T.consumeOpen();
1244 
1245   // While we still have something to read, read the instance variables.
1246   while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1247     // Each iteration of this loop reads one objc-instance-variable-decl.
1248 
1249     // Check for extraneous top-level semicolon.
1250     if (Tok.is(tok::semi)) {
1251       Diag(Tok, diag::ext_extra_ivar_semi)
1252         << FixItHint::CreateRemoval(Tok.getLocation());
1253       ConsumeToken();
1254       continue;
1255     }
1256 
1257     // Set the default visibility to private.
1258     if (Tok.is(tok::at)) { // parse objc-visibility-spec
1259       ConsumeToken(); // eat the @ sign
1260 
1261       if (Tok.is(tok::code_completion)) {
1262         Actions.CodeCompleteObjCAtVisibility(getCurScope());
1263         return cutOffParsing();
1264       }
1265 
1266       switch (Tok.getObjCKeywordID()) {
1267       case tok::objc_private:
1268       case tok::objc_public:
1269       case tok::objc_protected:
1270       case tok::objc_package:
1271         visibility = Tok.getObjCKeywordID();
1272         ConsumeToken();
1273         continue;
1274       default:
1275         Diag(Tok, diag::err_objc_illegal_visibility_spec);
1276         continue;
1277       }
1278     }
1279 
1280     if (Tok.is(tok::code_completion)) {
1281       Actions.CodeCompleteOrdinaryName(getCurScope(),
1282                                        Sema::PCC_ObjCInstanceVariableList);
1283       return cutOffParsing();
1284     }
1285 
1286     struct ObjCIvarCallback : FieldCallback {
1287       Parser &P;
1288       Decl *IDecl;
1289       tok::ObjCKeywordKind visibility;
1290       SmallVectorImpl<Decl *> &AllIvarDecls;
1291 
1292       ObjCIvarCallback(Parser &P, Decl *IDecl, tok::ObjCKeywordKind V,
1293                        SmallVectorImpl<Decl *> &AllIvarDecls) :
1294         P(P), IDecl(IDecl), visibility(V), AllIvarDecls(AllIvarDecls) {
1295       }
1296 
1297       Decl *invoke(FieldDeclarator &FD) {
1298         P.Actions.ActOnObjCContainerStartDefinition(IDecl);
1299         // Install the declarator into the interface decl.
1300         Decl *Field
1301           = P.Actions.ActOnIvar(P.getCurScope(),
1302                                 FD.D.getDeclSpec().getSourceRange().getBegin(),
1303                                 FD.D, FD.BitfieldSize, visibility);
1304         P.Actions.ActOnObjCContainerFinishDefinition();
1305         if (Field)
1306           AllIvarDecls.push_back(Field);
1307         return Field;
1308       }
1309     } Callback(*this, interfaceDecl, visibility, AllIvarDecls);
1310 
1311     // Parse all the comma separated declarators.
1312     DeclSpec DS(AttrFactory);
1313     ParseStructDeclaration(DS, Callback);
1314 
1315     if (Tok.is(tok::semi)) {
1316       ConsumeToken();
1317     } else {
1318       Diag(Tok, diag::err_expected_semi_decl_list);
1319       // Skip to end of block or statement
1320       SkipUntil(tok::r_brace, true, true);
1321     }
1322   }
1323   T.consumeClose();
1324 
1325   Actions.ActOnObjCContainerStartDefinition(interfaceDecl);
1326   Actions.ActOnLastBitfield(T.getCloseLocation(), AllIvarDecls);
1327   Actions.ActOnObjCContainerFinishDefinition();
1328   // Call ActOnFields() even if we don't have any decls. This is useful
1329   // for code rewriting tools that need to be aware of the empty list.
1330   Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl,
1331                       AllIvarDecls,
1332                       T.getOpenLocation(), T.getCloseLocation(), 0);
1333   return;
1334 }
1335 
1336 ///   objc-protocol-declaration:
1337 ///     objc-protocol-definition
1338 ///     objc-protocol-forward-reference
1339 ///
1340 ///   objc-protocol-definition:
1341 ///     @protocol identifier
1342 ///       objc-protocol-refs[opt]
1343 ///       objc-interface-decl-list
1344 ///     @end
1345 ///
1346 ///   objc-protocol-forward-reference:
1347 ///     @protocol identifier-list ';'
1348 ///
1349 ///   "@protocol identifier ;" should be resolved as "@protocol
1350 ///   identifier-list ;": objc-interface-decl-list may not start with a
1351 ///   semicolon in the first alternative if objc-protocol-refs are omitted.
1352 Parser::DeclGroupPtrTy
1353 Parser::ParseObjCAtProtocolDeclaration(SourceLocation AtLoc,
1354                                        ParsedAttributes &attrs) {
1355   assert(Tok.isObjCAtKeyword(tok::objc_protocol) &&
1356          "ParseObjCAtProtocolDeclaration(): Expected @protocol");
1357   ConsumeToken(); // the "protocol" identifier
1358 
1359   if (Tok.is(tok::code_completion)) {
1360     Actions.CodeCompleteObjCProtocolDecl(getCurScope());
1361     cutOffParsing();
1362     return DeclGroupPtrTy();
1363   }
1364 
1365   if (Tok.isNot(tok::identifier)) {
1366     Diag(Tok, diag::err_expected_ident); // missing protocol name.
1367     return DeclGroupPtrTy();
1368   }
1369   // Save the protocol name, then consume it.
1370   IdentifierInfo *protocolName = Tok.getIdentifierInfo();
1371   SourceLocation nameLoc = ConsumeToken();
1372 
1373   if (Tok.is(tok::semi)) { // forward declaration of one protocol.
1374     IdentifierLocPair ProtoInfo(protocolName, nameLoc);
1375     ConsumeToken();
1376     return Actions.ActOnForwardProtocolDeclaration(AtLoc, &ProtoInfo, 1,
1377                                                    attrs.getList());
1378   }
1379 
1380   CheckNestedObjCContexts(AtLoc);
1381 
1382   if (Tok.is(tok::comma)) { // list of forward declarations.
1383     SmallVector<IdentifierLocPair, 8> ProtocolRefs;
1384     ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc));
1385 
1386     // Parse the list of forward declarations.
1387     while (1) {
1388       ConsumeToken(); // the ','
1389       if (Tok.isNot(tok::identifier)) {
1390         Diag(Tok, diag::err_expected_ident);
1391         SkipUntil(tok::semi);
1392         return DeclGroupPtrTy();
1393       }
1394       ProtocolRefs.push_back(IdentifierLocPair(Tok.getIdentifierInfo(),
1395                                                Tok.getLocation()));
1396       ConsumeToken(); // the identifier
1397 
1398       if (Tok.isNot(tok::comma))
1399         break;
1400     }
1401     // Consume the ';'.
1402     if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@protocol"))
1403       return DeclGroupPtrTy();
1404 
1405     return Actions.ActOnForwardProtocolDeclaration(AtLoc,
1406                                                    &ProtocolRefs[0],
1407                                                    ProtocolRefs.size(),
1408                                                    attrs.getList());
1409   }
1410 
1411   // Last, and definitely not least, parse a protocol declaration.
1412   SourceLocation LAngleLoc, EndProtoLoc;
1413 
1414   SmallVector<Decl *, 8> ProtocolRefs;
1415   SmallVector<SourceLocation, 8> ProtocolLocs;
1416   if (Tok.is(tok::less) &&
1417       ParseObjCProtocolReferences(ProtocolRefs, ProtocolLocs, false,
1418                                   LAngleLoc, EndProtoLoc))
1419     return DeclGroupPtrTy();
1420 
1421   Decl *ProtoType =
1422     Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc,
1423                                         ProtocolRefs.data(),
1424                                         ProtocolRefs.size(),
1425                                         ProtocolLocs.data(),
1426                                         EndProtoLoc, attrs.getList());
1427 
1428   ParseObjCInterfaceDeclList(tok::objc_protocol, ProtoType);
1429   return Actions.ConvertDeclToDeclGroup(ProtoType);
1430 }
1431 
1432 ///   objc-implementation:
1433 ///     objc-class-implementation-prologue
1434 ///     objc-category-implementation-prologue
1435 ///
1436 ///   objc-class-implementation-prologue:
1437 ///     @implementation identifier objc-superclass[opt]
1438 ///       objc-class-instance-variables[opt]
1439 ///
1440 ///   objc-category-implementation-prologue:
1441 ///     @implementation identifier ( identifier )
1442 Decl *Parser::ParseObjCAtImplementationDeclaration(SourceLocation AtLoc) {
1443   assert(Tok.isObjCAtKeyword(tok::objc_implementation) &&
1444          "ParseObjCAtImplementationDeclaration(): Expected @implementation");
1445   CheckNestedObjCContexts(AtLoc);
1446   ConsumeToken(); // the "implementation" identifier
1447 
1448   // Code completion after '@implementation'.
1449   if (Tok.is(tok::code_completion)) {
1450     Actions.CodeCompleteObjCImplementationDecl(getCurScope());
1451     cutOffParsing();
1452     return 0;
1453   }
1454 
1455   if (Tok.isNot(tok::identifier)) {
1456     Diag(Tok, diag::err_expected_ident); // missing class or category name.
1457     return 0;
1458   }
1459   // We have a class or category name - consume it.
1460   IdentifierInfo *nameId = Tok.getIdentifierInfo();
1461   SourceLocation nameLoc = ConsumeToken(); // consume class or category name
1462 
1463   if (Tok.is(tok::l_paren)) {
1464     // we have a category implementation.
1465     ConsumeParen();
1466     SourceLocation categoryLoc, rparenLoc;
1467     IdentifierInfo *categoryId = 0;
1468 
1469     if (Tok.is(tok::code_completion)) {
1470       Actions.CodeCompleteObjCImplementationCategory(getCurScope(), nameId, nameLoc);
1471       cutOffParsing();
1472       return 0;
1473     }
1474 
1475     if (Tok.is(tok::identifier)) {
1476       categoryId = Tok.getIdentifierInfo();
1477       categoryLoc = ConsumeToken();
1478     } else {
1479       Diag(Tok, diag::err_expected_ident); // missing category name.
1480       return 0;
1481     }
1482     if (Tok.isNot(tok::r_paren)) {
1483       Diag(Tok, diag::err_expected_rparen);
1484       SkipUntil(tok::r_paren, false); // don't stop at ';'
1485       return 0;
1486     }
1487     rparenLoc = ConsumeParen();
1488     Decl *ImplCatType = Actions.ActOnStartCategoryImplementation(
1489                                     AtLoc, nameId, nameLoc, categoryId,
1490                                     categoryLoc);
1491 
1492     ObjCImpDecl = ImplCatType;
1493     PendingObjCImpDecl.push_back(ObjCImpDecl);
1494     return 0;
1495   }
1496   // We have a class implementation
1497   SourceLocation superClassLoc;
1498   IdentifierInfo *superClassId = 0;
1499   if (Tok.is(tok::colon)) {
1500     // We have a super class
1501     ConsumeToken();
1502     if (Tok.isNot(tok::identifier)) {
1503       Diag(Tok, diag::err_expected_ident); // missing super class name.
1504       return 0;
1505     }
1506     superClassId = Tok.getIdentifierInfo();
1507     superClassLoc = ConsumeToken(); // Consume super class name
1508   }
1509   Decl *ImplClsType = Actions.ActOnStartClassImplementation(
1510                                   AtLoc, nameId, nameLoc,
1511                                   superClassId, superClassLoc);
1512 
1513   if (Tok.is(tok::l_brace)) // we have ivars
1514     ParseObjCClassInstanceVariables(ImplClsType, tok::objc_private, AtLoc);
1515 
1516   ObjCImpDecl = ImplClsType;
1517   PendingObjCImpDecl.push_back(ObjCImpDecl);
1518   return 0;
1519 }
1520 
1521 Parser::DeclGroupPtrTy
1522 Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) {
1523   assert(Tok.isObjCAtKeyword(tok::objc_end) &&
1524          "ParseObjCAtEndDeclaration(): Expected @end");
1525   ConsumeToken(); // the "end" identifier
1526   SmallVector<Decl *, 8> DeclsInGroup;
1527   Actions.DefaultSynthesizeProperties(getCurScope(), ObjCImpDecl);
1528   for (size_t i = 0; i < LateParsedObjCMethods.size(); ++i) {
1529     Decl *D = ParseLexedObjCMethodDefs(*LateParsedObjCMethods[i]);
1530     if (D)
1531       DeclsInGroup.push_back(D);
1532   }
1533   DeclsInGroup.push_back(ObjCImpDecl);
1534 
1535   if (ObjCImpDecl) {
1536     Actions.ActOnAtEnd(getCurScope(), atEnd);
1537     PendingObjCImpDecl.pop_back();
1538   }
1539   else
1540     // missing @implementation
1541     Diag(atEnd.getBegin(), diag::err_expected_objc_container);
1542 
1543   clearLateParsedObjCMethods();
1544   ObjCImpDecl = 0;
1545   return Actions.BuildDeclaratorGroup(
1546            DeclsInGroup.data(), DeclsInGroup.size(), false);
1547 }
1548 
1549 Parser::DeclGroupPtrTy Parser::FinishPendingObjCActions() {
1550   Actions.DiagnoseUseOfUnimplementedSelectors();
1551   if (PendingObjCImpDecl.empty())
1552     return Actions.ConvertDeclToDeclGroup(0);
1553 
1554   Decl *ImpDecl = PendingObjCImpDecl.pop_back_val();
1555   Actions.ActOnAtEnd(getCurScope(), SourceRange(Tok.getLocation()));
1556   Diag(Tok, diag::err_objc_missing_end)
1557       << FixItHint::CreateInsertion(Tok.getLocation(), "\n@end\n");
1558   if (ImpDecl)
1559     Diag(ImpDecl->getLocStart(), diag::note_objc_container_start)
1560         << Sema::OCK_Implementation;
1561 
1562   return Actions.ConvertDeclToDeclGroup(ImpDecl);
1563 }
1564 
1565 void Parser::clearLateParsedObjCMethods() {
1566   for (LateParsedObjCMethodContainer::iterator
1567          I = LateParsedObjCMethods.begin(),
1568          E = LateParsedObjCMethods.end(); I != E; ++I)
1569     delete *I;
1570   LateParsedObjCMethods.clear();
1571 }
1572 
1573 ///   compatibility-alias-decl:
1574 ///     @compatibility_alias alias-name  class-name ';'
1575 ///
1576 Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
1577   assert(Tok.isObjCAtKeyword(tok::objc_compatibility_alias) &&
1578          "ParseObjCAtAliasDeclaration(): Expected @compatibility_alias");
1579   ConsumeToken(); // consume compatibility_alias
1580   if (Tok.isNot(tok::identifier)) {
1581     Diag(Tok, diag::err_expected_ident);
1582     return 0;
1583   }
1584   IdentifierInfo *aliasId = Tok.getIdentifierInfo();
1585   SourceLocation aliasLoc = ConsumeToken(); // consume alias-name
1586   if (Tok.isNot(tok::identifier)) {
1587     Diag(Tok, diag::err_expected_ident);
1588     return 0;
1589   }
1590   IdentifierInfo *classId = Tok.getIdentifierInfo();
1591   SourceLocation classLoc = ConsumeToken(); // consume class-name;
1592   ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
1593                    "@compatibility_alias");
1594   return Actions.ActOnCompatiblityAlias(atLoc, aliasId, aliasLoc,
1595                                         classId, classLoc);
1596 }
1597 
1598 ///   property-synthesis:
1599 ///     @synthesize property-ivar-list ';'
1600 ///
1601 ///   property-ivar-list:
1602 ///     property-ivar
1603 ///     property-ivar-list ',' property-ivar
1604 ///
1605 ///   property-ivar:
1606 ///     identifier
1607 ///     identifier '=' identifier
1608 ///
1609 Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
1610   assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
1611          "ParseObjCPropertyDynamic(): Expected '@synthesize'");
1612   ConsumeToken(); // consume synthesize
1613 
1614   while (true) {
1615     if (Tok.is(tok::code_completion)) {
1616       Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
1617       cutOffParsing();
1618       return 0;
1619     }
1620 
1621     if (Tok.isNot(tok::identifier)) {
1622       Diag(Tok, diag::err_synthesized_property_name);
1623       SkipUntil(tok::semi);
1624       return 0;
1625     }
1626 
1627     IdentifierInfo *propertyIvar = 0;
1628     IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1629     SourceLocation propertyLoc = ConsumeToken(); // consume property name
1630     SourceLocation propertyIvarLoc;
1631     if (Tok.is(tok::equal)) {
1632       // property '=' ivar-name
1633       ConsumeToken(); // consume '='
1634 
1635       if (Tok.is(tok::code_completion)) {
1636         Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId);
1637         cutOffParsing();
1638         return 0;
1639       }
1640 
1641       if (Tok.isNot(tok::identifier)) {
1642         Diag(Tok, diag::err_expected_ident);
1643         break;
1644       }
1645       propertyIvar = Tok.getIdentifierInfo();
1646       propertyIvarLoc = ConsumeToken(); // consume ivar-name
1647     }
1648     Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, true,
1649                                   propertyId, propertyIvar, propertyIvarLoc);
1650     if (Tok.isNot(tok::comma))
1651       break;
1652     ConsumeToken(); // consume ','
1653   }
1654   ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@synthesize");
1655   return 0;
1656 }
1657 
1658 ///   property-dynamic:
1659 ///     @dynamic  property-list
1660 ///
1661 ///   property-list:
1662 ///     identifier
1663 ///     property-list ',' identifier
1664 ///
1665 Decl *Parser::ParseObjCPropertyDynamic(SourceLocation atLoc) {
1666   assert(Tok.isObjCAtKeyword(tok::objc_dynamic) &&
1667          "ParseObjCPropertyDynamic(): Expected '@dynamic'");
1668   ConsumeToken(); // consume dynamic
1669   while (true) {
1670     if (Tok.is(tok::code_completion)) {
1671       Actions.CodeCompleteObjCPropertyDefinition(getCurScope());
1672       cutOffParsing();
1673       return 0;
1674     }
1675 
1676     if (Tok.isNot(tok::identifier)) {
1677       Diag(Tok, diag::err_expected_ident);
1678       SkipUntil(tok::semi);
1679       return 0;
1680     }
1681 
1682     IdentifierInfo *propertyId = Tok.getIdentifierInfo();
1683     SourceLocation propertyLoc = ConsumeToken(); // consume property name
1684     Actions.ActOnPropertyImplDecl(getCurScope(), atLoc, propertyLoc, false,
1685                                   propertyId, 0, SourceLocation());
1686 
1687     if (Tok.isNot(tok::comma))
1688       break;
1689     ConsumeToken(); // consume ','
1690   }
1691   ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@dynamic");
1692   return 0;
1693 }
1694 
1695 ///  objc-throw-statement:
1696 ///    throw expression[opt];
1697 ///
1698 StmtResult Parser::ParseObjCThrowStmt(SourceLocation atLoc) {
1699   ExprResult Res;
1700   ConsumeToken(); // consume throw
1701   if (Tok.isNot(tok::semi)) {
1702     Res = ParseExpression();
1703     if (Res.isInvalid()) {
1704       SkipUntil(tok::semi);
1705       return StmtError();
1706     }
1707   }
1708   // consume ';'
1709   ExpectAndConsume(tok::semi, diag::err_expected_semi_after, "@throw");
1710   return Actions.ActOnObjCAtThrowStmt(atLoc, Res.take(), getCurScope());
1711 }
1712 
1713 /// objc-synchronized-statement:
1714 ///   @synchronized '(' expression ')' compound-statement
1715 ///
1716 StmtResult
1717 Parser::ParseObjCSynchronizedStmt(SourceLocation atLoc) {
1718   ConsumeToken(); // consume synchronized
1719   if (Tok.isNot(tok::l_paren)) {
1720     Diag(Tok, diag::err_expected_lparen_after) << "@synchronized";
1721     return StmtError();
1722   }
1723 
1724   // The operand is surrounded with parentheses.
1725   ConsumeParen();  // '('
1726   ExprResult operand(ParseExpression());
1727 
1728   if (Tok.is(tok::r_paren)) {
1729     ConsumeParen();  // ')'
1730   } else {
1731     if (!operand.isInvalid())
1732       Diag(Tok, diag::err_expected_rparen);
1733 
1734     // Skip forward until we see a left brace, but don't consume it.
1735     SkipUntil(tok::l_brace, true, true);
1736   }
1737 
1738   // Require a compound statement.
1739   if (Tok.isNot(tok::l_brace)) {
1740     if (!operand.isInvalid())
1741       Diag(Tok, diag::err_expected_lbrace);
1742     return StmtError();
1743   }
1744 
1745   // Check the @synchronized operand now.
1746   if (!operand.isInvalid())
1747     operand = Actions.ActOnObjCAtSynchronizedOperand(atLoc, operand.take());
1748 
1749   // Parse the compound statement within a new scope.
1750   ParseScope bodyScope(this, Scope::DeclScope);
1751   StmtResult body(ParseCompoundStatementBody());
1752   bodyScope.Exit();
1753 
1754   // If there was a semantic or parse error earlier with the
1755   // operand, fail now.
1756   if (operand.isInvalid())
1757     return StmtError();
1758 
1759   if (body.isInvalid())
1760     body = Actions.ActOnNullStmt(Tok.getLocation());
1761 
1762   return Actions.ActOnObjCAtSynchronizedStmt(atLoc, operand.get(), body.get());
1763 }
1764 
1765 ///  objc-try-catch-statement:
1766 ///    @try compound-statement objc-catch-list[opt]
1767 ///    @try compound-statement objc-catch-list[opt] @finally compound-statement
1768 ///
1769 ///  objc-catch-list:
1770 ///    @catch ( parameter-declaration ) compound-statement
1771 ///    objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1772 ///  catch-parameter-declaration:
1773 ///     parameter-declaration
1774 ///     '...' [OBJC2]
1775 ///
1776 StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
1777   bool catch_or_finally_seen = false;
1778 
1779   ConsumeToken(); // consume try
1780   if (Tok.isNot(tok::l_brace)) {
1781     Diag(Tok, diag::err_expected_lbrace);
1782     return StmtError();
1783   }
1784   StmtVector CatchStmts(Actions);
1785   StmtResult FinallyStmt;
1786   ParseScope TryScope(this, Scope::DeclScope);
1787   StmtResult TryBody(ParseCompoundStatementBody());
1788   TryScope.Exit();
1789   if (TryBody.isInvalid())
1790     TryBody = Actions.ActOnNullStmt(Tok.getLocation());
1791 
1792   while (Tok.is(tok::at)) {
1793     // At this point, we need to lookahead to determine if this @ is the start
1794     // of an @catch or @finally.  We don't want to consume the @ token if this
1795     // is an @try or @encode or something else.
1796     Token AfterAt = GetLookAheadToken(1);
1797     if (!AfterAt.isObjCAtKeyword(tok::objc_catch) &&
1798         !AfterAt.isObjCAtKeyword(tok::objc_finally))
1799       break;
1800 
1801     SourceLocation AtCatchFinallyLoc = ConsumeToken();
1802     if (Tok.isObjCAtKeyword(tok::objc_catch)) {
1803       Decl *FirstPart = 0;
1804       ConsumeToken(); // consume catch
1805       if (Tok.is(tok::l_paren)) {
1806         ConsumeParen();
1807         ParseScope CatchScope(this, Scope::DeclScope|Scope::AtCatchScope);
1808         if (Tok.isNot(tok::ellipsis)) {
1809           DeclSpec DS(AttrFactory);
1810           ParseDeclarationSpecifiers(DS);
1811           Declarator ParmDecl(DS, Declarator::ObjCCatchContext);
1812           ParseDeclarator(ParmDecl);
1813 
1814           // Inform the actions module about the declarator, so it
1815           // gets added to the current scope.
1816           FirstPart = Actions.ActOnObjCExceptionDecl(getCurScope(), ParmDecl);
1817         } else
1818           ConsumeToken(); // consume '...'
1819 
1820         SourceLocation RParenLoc;
1821 
1822         if (Tok.is(tok::r_paren))
1823           RParenLoc = ConsumeParen();
1824         else // Skip over garbage, until we get to ')'.  Eat the ')'.
1825           SkipUntil(tok::r_paren, true, false);
1826 
1827         StmtResult CatchBody(true);
1828         if (Tok.is(tok::l_brace))
1829           CatchBody = ParseCompoundStatementBody();
1830         else
1831           Diag(Tok, diag::err_expected_lbrace);
1832         if (CatchBody.isInvalid())
1833           CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
1834 
1835         StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
1836                                                               RParenLoc,
1837                                                               FirstPart,
1838                                                               CatchBody.take());
1839         if (!Catch.isInvalid())
1840           CatchStmts.push_back(Catch.release());
1841 
1842       } else {
1843         Diag(AtCatchFinallyLoc, diag::err_expected_lparen_after)
1844           << "@catch clause";
1845         return StmtError();
1846       }
1847       catch_or_finally_seen = true;
1848     } else {
1849       assert(Tok.isObjCAtKeyword(tok::objc_finally) && "Lookahead confused?");
1850       ConsumeToken(); // consume finally
1851       ParseScope FinallyScope(this, Scope::DeclScope);
1852 
1853       StmtResult FinallyBody(true);
1854       if (Tok.is(tok::l_brace))
1855         FinallyBody = ParseCompoundStatementBody();
1856       else
1857         Diag(Tok, diag::err_expected_lbrace);
1858       if (FinallyBody.isInvalid())
1859         FinallyBody = Actions.ActOnNullStmt(Tok.getLocation());
1860       FinallyStmt = Actions.ActOnObjCAtFinallyStmt(AtCatchFinallyLoc,
1861                                                    FinallyBody.take());
1862       catch_or_finally_seen = true;
1863       break;
1864     }
1865   }
1866   if (!catch_or_finally_seen) {
1867     Diag(atLoc, diag::err_missing_catch_finally);
1868     return StmtError();
1869   }
1870 
1871   return Actions.ActOnObjCAtTryStmt(atLoc, TryBody.take(),
1872                                     move_arg(CatchStmts),
1873                                     FinallyStmt.take());
1874 }
1875 
1876 /// objc-autoreleasepool-statement:
1877 ///   @autoreleasepool compound-statement
1878 ///
1879 StmtResult
1880 Parser::ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) {
1881   ConsumeToken(); // consume autoreleasepool
1882   if (Tok.isNot(tok::l_brace)) {
1883     Diag(Tok, diag::err_expected_lbrace);
1884     return StmtError();
1885   }
1886   // Enter a scope to hold everything within the compound stmt.  Compound
1887   // statements can always hold declarations.
1888   ParseScope BodyScope(this, Scope::DeclScope);
1889 
1890   StmtResult AutoreleasePoolBody(ParseCompoundStatementBody());
1891 
1892   BodyScope.Exit();
1893   if (AutoreleasePoolBody.isInvalid())
1894     AutoreleasePoolBody = Actions.ActOnNullStmt(Tok.getLocation());
1895   return Actions.ActOnObjCAutoreleasePoolStmt(atLoc,
1896                                                 AutoreleasePoolBody.take());
1897 }
1898 
1899 ///   objc-method-def: objc-method-proto ';'[opt] '{' body '}'
1900 ///
1901 Decl *Parser::ParseObjCMethodDefinition() {
1902   Decl *MDecl = ParseObjCMethodPrototype();
1903 
1904   PrettyDeclStackTraceEntry CrashInfo(Actions, MDecl, Tok.getLocation(),
1905                                       "parsing Objective-C method");
1906 
1907   // parse optional ';'
1908   if (Tok.is(tok::semi)) {
1909     if (ObjCImpDecl) {
1910       Diag(Tok, diag::warn_semicolon_before_method_body)
1911         << FixItHint::CreateRemoval(Tok.getLocation());
1912     }
1913     ConsumeToken();
1914   }
1915 
1916   // We should have an opening brace now.
1917   if (Tok.isNot(tok::l_brace)) {
1918     Diag(Tok, diag::err_expected_method_body);
1919 
1920     // Skip over garbage, until we get to '{'.  Don't eat the '{'.
1921     SkipUntil(tok::l_brace, true, true);
1922 
1923     // If we didn't find the '{', bail out.
1924     if (Tok.isNot(tok::l_brace))
1925       return 0;
1926   }
1927   // Allow the rest of sema to find private method decl implementations.
1928   if (MDecl)
1929     Actions.AddAnyMethodToGlobalPool(MDecl);
1930 
1931   // Consume the tokens and store them for later parsing.
1932   LexedMethod* LM = new LexedMethod(this, MDecl);
1933   LateParsedObjCMethods.push_back(LM);
1934   CachedTokens &Toks = LM->Toks;
1935   // Begin by storing the '{' token.
1936   Toks.push_back(Tok);
1937   ConsumeBrace();
1938   // Consume everything up to (and including) the matching right brace.
1939   ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
1940   return MDecl;
1941 }
1942 
1943 StmtResult Parser::ParseObjCAtStatement(SourceLocation AtLoc) {
1944   if (Tok.is(tok::code_completion)) {
1945     Actions.CodeCompleteObjCAtStatement(getCurScope());
1946     cutOffParsing();
1947     return StmtError();
1948   }
1949 
1950   if (Tok.isObjCAtKeyword(tok::objc_try))
1951     return ParseObjCTryStmt(AtLoc);
1952 
1953   if (Tok.isObjCAtKeyword(tok::objc_throw))
1954     return ParseObjCThrowStmt(AtLoc);
1955 
1956   if (Tok.isObjCAtKeyword(tok::objc_synchronized))
1957     return ParseObjCSynchronizedStmt(AtLoc);
1958 
1959   if (Tok.isObjCAtKeyword(tok::objc_autoreleasepool))
1960     return ParseObjCAutoreleasePoolStmt(AtLoc);
1961 
1962   ExprResult Res(ParseExpressionWithLeadingAt(AtLoc));
1963   if (Res.isInvalid()) {
1964     // If the expression is invalid, skip ahead to the next semicolon. Not
1965     // doing this opens us up to the possibility of infinite loops if
1966     // ParseExpression does not consume any tokens.
1967     SkipUntil(tok::semi);
1968     return StmtError();
1969   }
1970 
1971   // Otherwise, eat the semicolon.
1972   ExpectAndConsumeSemi(diag::err_expected_semi_after_expr);
1973   return Actions.ActOnExprStmt(Actions.MakeFullExpr(Res.take()));
1974 }
1975 
1976 ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
1977   switch (Tok.getKind()) {
1978   case tok::code_completion:
1979     Actions.CodeCompleteObjCAtExpression(getCurScope());
1980     cutOffParsing();
1981     return ExprError();
1982 
1983   case tok::string_literal:    // primary-expression: string-literal
1984   case tok::wide_string_literal:
1985     return ParsePostfixExpressionSuffix(ParseObjCStringLiteral(AtLoc));
1986   default:
1987     if (Tok.getIdentifierInfo() == 0)
1988       return ExprError(Diag(AtLoc, diag::err_unexpected_at));
1989 
1990     switch (Tok.getIdentifierInfo()->getObjCKeywordID()) {
1991     case tok::objc_encode:
1992       return ParsePostfixExpressionSuffix(ParseObjCEncodeExpression(AtLoc));
1993     case tok::objc_protocol:
1994       return ParsePostfixExpressionSuffix(ParseObjCProtocolExpression(AtLoc));
1995     case tok::objc_selector:
1996       return ParsePostfixExpressionSuffix(ParseObjCSelectorExpression(AtLoc));
1997     default:
1998       return ExprError(Diag(AtLoc, diag::err_unexpected_at));
1999     }
2000   }
2001 }
2002 
2003 /// \brirg Parse the receiver of an Objective-C++ message send.
2004 ///
2005 /// This routine parses the receiver of a message send in
2006 /// Objective-C++ either as a type or as an expression. Note that this
2007 /// routine must not be called to parse a send to 'super', since it
2008 /// has no way to return such a result.
2009 ///
2010 /// \param IsExpr Whether the receiver was parsed as an expression.
2011 ///
2012 /// \param TypeOrExpr If the receiver was parsed as an expression (\c
2013 /// IsExpr is true), the parsed expression. If the receiver was parsed
2014 /// as a type (\c IsExpr is false), the parsed type.
2015 ///
2016 /// \returns True if an error occurred during parsing or semantic
2017 /// analysis, in which case the arguments do not have valid
2018 /// values. Otherwise, returns false for a successful parse.
2019 ///
2020 ///   objc-receiver: [C++]
2021 ///     'super' [not parsed here]
2022 ///     expression
2023 ///     simple-type-specifier
2024 ///     typename-specifier
2025 bool Parser::ParseObjCXXMessageReceiver(bool &IsExpr, void *&TypeOrExpr) {
2026   InMessageExpressionRAIIObject InMessage(*this, true);
2027 
2028   if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
2029       Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope))
2030     TryAnnotateTypeOrScopeToken();
2031 
2032   if (!isCXXSimpleTypeSpecifier()) {
2033     //   objc-receiver:
2034     //     expression
2035     ExprResult Receiver = ParseExpression();
2036     if (Receiver.isInvalid())
2037       return true;
2038 
2039     IsExpr = true;
2040     TypeOrExpr = Receiver.take();
2041     return false;
2042   }
2043 
2044   // objc-receiver:
2045   //   typename-specifier
2046   //   simple-type-specifier
2047   //   expression (that starts with one of the above)
2048   DeclSpec DS(AttrFactory);
2049   ParseCXXSimpleTypeSpecifier(DS);
2050 
2051   if (Tok.is(tok::l_paren)) {
2052     // If we see an opening parentheses at this point, we are
2053     // actually parsing an expression that starts with a
2054     // function-style cast, e.g.,
2055     //
2056     //   postfix-expression:
2057     //     simple-type-specifier ( expression-list [opt] )
2058     //     typename-specifier ( expression-list [opt] )
2059     //
2060     // Parse the remainder of this case, then the (optional)
2061     // postfix-expression suffix, followed by the (optional)
2062     // right-hand side of the binary expression. We have an
2063     // instance method.
2064     ExprResult Receiver = ParseCXXTypeConstructExpression(DS);
2065     if (!Receiver.isInvalid())
2066       Receiver = ParsePostfixExpressionSuffix(Receiver.take());
2067     if (!Receiver.isInvalid())
2068       Receiver = ParseRHSOfBinaryExpression(Receiver.take(), prec::Comma);
2069     if (Receiver.isInvalid())
2070       return true;
2071 
2072     IsExpr = true;
2073     TypeOrExpr = Receiver.take();
2074     return false;
2075   }
2076 
2077   // We have a class message. Turn the simple-type-specifier or
2078   // typename-specifier we parsed into a type and parse the
2079   // remainder of the class message.
2080   Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
2081   TypeResult Type = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
2082   if (Type.isInvalid())
2083     return true;
2084 
2085   IsExpr = false;
2086   TypeOrExpr = Type.get().getAsOpaquePtr();
2087   return false;
2088 }
2089 
2090 /// \brief Determine whether the parser is currently referring to a an
2091 /// Objective-C message send, using a simplified heuristic to avoid overhead.
2092 ///
2093 /// This routine will only return true for a subset of valid message-send
2094 /// expressions.
2095 bool Parser::isSimpleObjCMessageExpression() {
2096   assert(Tok.is(tok::l_square) && getLang().ObjC1 &&
2097          "Incorrect start for isSimpleObjCMessageExpression");
2098   return GetLookAheadToken(1).is(tok::identifier) &&
2099          GetLookAheadToken(2).is(tok::identifier);
2100 }
2101 
2102 bool Parser::isStartOfObjCClassMessageMissingOpenBracket() {
2103   if (!getLang().ObjC1 || !NextToken().is(tok::identifier) ||
2104       InMessageExpression)
2105     return false;
2106 
2107 
2108   ParsedType Type;
2109 
2110   if (Tok.is(tok::annot_typename))
2111     Type = getTypeAnnotation(Tok);
2112   else if (Tok.is(tok::identifier))
2113     Type = Actions.getTypeName(*Tok.getIdentifierInfo(), Tok.getLocation(),
2114                                getCurScope());
2115   else
2116     return false;
2117 
2118   if (!Type.get().isNull() && Type.get()->isObjCObjectOrInterfaceType()) {
2119     const Token &AfterNext = GetLookAheadToken(2);
2120     if (AfterNext.is(tok::colon) || AfterNext.is(tok::r_square)) {
2121       if (Tok.is(tok::identifier))
2122         TryAnnotateTypeOrScopeToken();
2123 
2124       return Tok.is(tok::annot_typename);
2125     }
2126   }
2127 
2128   return false;
2129 }
2130 
2131 ///   objc-message-expr:
2132 ///     '[' objc-receiver objc-message-args ']'
2133 ///
2134 ///   objc-receiver: [C]
2135 ///     'super'
2136 ///     expression
2137 ///     class-name
2138 ///     type-name
2139 ///
2140 ExprResult Parser::ParseObjCMessageExpression() {
2141   assert(Tok.is(tok::l_square) && "'[' expected");
2142   SourceLocation LBracLoc = ConsumeBracket(); // consume '['
2143 
2144   if (Tok.is(tok::code_completion)) {
2145     Actions.CodeCompleteObjCMessageReceiver(getCurScope());
2146     cutOffParsing();
2147     return ExprError();
2148   }
2149 
2150   InMessageExpressionRAIIObject InMessage(*this, true);
2151 
2152   if (getLang().CPlusPlus) {
2153     // We completely separate the C and C++ cases because C++ requires
2154     // more complicated (read: slower) parsing.
2155 
2156     // Handle send to super.
2157     // FIXME: This doesn't benefit from the same typo-correction we
2158     // get in Objective-C.
2159     if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super &&
2160         NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
2161       return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2162                                             ParsedType(), 0);
2163 
2164     // Parse the receiver, which is either a type or an expression.
2165     bool IsExpr;
2166     void *TypeOrExpr = NULL;
2167     if (ParseObjCXXMessageReceiver(IsExpr, TypeOrExpr)) {
2168       SkipUntil(tok::r_square);
2169       return ExprError();
2170     }
2171 
2172     if (IsExpr)
2173       return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2174                                             ParsedType(),
2175                                             static_cast<Expr*>(TypeOrExpr));
2176 
2177     return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2178                               ParsedType::getFromOpaquePtr(TypeOrExpr),
2179                                           0);
2180   }
2181 
2182   if (Tok.is(tok::identifier)) {
2183     IdentifierInfo *Name = Tok.getIdentifierInfo();
2184     SourceLocation NameLoc = Tok.getLocation();
2185     ParsedType ReceiverType;
2186     switch (Actions.getObjCMessageKind(getCurScope(), Name, NameLoc,
2187                                        Name == Ident_super,
2188                                        NextToken().is(tok::period),
2189                                        ReceiverType)) {
2190     case Sema::ObjCSuperMessage:
2191       return ParseObjCMessageExpressionBody(LBracLoc, ConsumeToken(),
2192                                             ParsedType(), 0);
2193 
2194     case Sema::ObjCClassMessage:
2195       if (!ReceiverType) {
2196         SkipUntil(tok::r_square);
2197         return ExprError();
2198       }
2199 
2200       ConsumeToken(); // the type name
2201 
2202       return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2203                                             ReceiverType, 0);
2204 
2205     case Sema::ObjCInstanceMessage:
2206       // Fall through to parse an expression.
2207       break;
2208     }
2209   }
2210 
2211   // Otherwise, an arbitrary expression can be the receiver of a send.
2212   ExprResult Res(ParseExpression());
2213   if (Res.isInvalid()) {
2214     SkipUntil(tok::r_square);
2215     return move(Res);
2216   }
2217 
2218   return ParseObjCMessageExpressionBody(LBracLoc, SourceLocation(),
2219                                         ParsedType(), Res.take());
2220 }
2221 
2222 /// \brief Parse the remainder of an Objective-C message following the
2223 /// '[' objc-receiver.
2224 ///
2225 /// This routine handles sends to super, class messages (sent to a
2226 /// class name), and instance messages (sent to an object), and the
2227 /// target is represented by \p SuperLoc, \p ReceiverType, or \p
2228 /// ReceiverExpr, respectively. Only one of these parameters may have
2229 /// a valid value.
2230 ///
2231 /// \param LBracLoc The location of the opening '['.
2232 ///
2233 /// \param SuperLoc If this is a send to 'super', the location of the
2234 /// 'super' keyword that indicates a send to the superclass.
2235 ///
2236 /// \param ReceiverType If this is a class message, the type of the
2237 /// class we are sending a message to.
2238 ///
2239 /// \param ReceiverExpr If this is an instance message, the expression
2240 /// used to compute the receiver object.
2241 ///
2242 ///   objc-message-args:
2243 ///     objc-selector
2244 ///     objc-keywordarg-list
2245 ///
2246 ///   objc-keywordarg-list:
2247 ///     objc-keywordarg
2248 ///     objc-keywordarg-list objc-keywordarg
2249 ///
2250 ///   objc-keywordarg:
2251 ///     selector-name[opt] ':' objc-keywordexpr
2252 ///
2253 ///   objc-keywordexpr:
2254 ///     nonempty-expr-list
2255 ///
2256 ///   nonempty-expr-list:
2257 ///     assignment-expression
2258 ///     nonempty-expr-list , assignment-expression
2259 ///
2260 ExprResult
2261 Parser::ParseObjCMessageExpressionBody(SourceLocation LBracLoc,
2262                                        SourceLocation SuperLoc,
2263                                        ParsedType ReceiverType,
2264                                        ExprArg ReceiverExpr) {
2265   InMessageExpressionRAIIObject InMessage(*this, true);
2266 
2267   if (Tok.is(tok::code_completion)) {
2268     if (SuperLoc.isValid())
2269       Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, 0, 0,
2270                                            false);
2271     else if (ReceiverType)
2272       Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, 0, 0,
2273                                            false);
2274     else
2275       Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
2276                                               0, 0, false);
2277     cutOffParsing();
2278     return ExprError();
2279   }
2280 
2281   // Parse objc-selector
2282   SourceLocation Loc;
2283   IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
2284 
2285   SmallVector<IdentifierInfo *, 12> KeyIdents;
2286   SmallVector<SourceLocation, 12> KeyLocs;
2287   ExprVector KeyExprs(Actions);
2288 
2289   if (Tok.is(tok::colon)) {
2290     while (1) {
2291       // Each iteration parses a single keyword argument.
2292       KeyIdents.push_back(selIdent);
2293       KeyLocs.push_back(Loc);
2294 
2295       if (Tok.isNot(tok::colon)) {
2296         Diag(Tok, diag::err_expected_colon);
2297         // We must manually skip to a ']', otherwise the expression skipper will
2298         // stop at the ']' when it skips to the ';'.  We want it to skip beyond
2299         // the enclosing expression.
2300         SkipUntil(tok::r_square);
2301         return ExprError();
2302       }
2303 
2304       ConsumeToken(); // Eat the ':'.
2305       ///  Parse the expression after ':'
2306 
2307       if (Tok.is(tok::code_completion)) {
2308         if (SuperLoc.isValid())
2309           Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
2310                                                KeyIdents.data(),
2311                                                KeyIdents.size(),
2312                                                /*AtArgumentEpression=*/true);
2313         else if (ReceiverType)
2314           Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
2315                                                KeyIdents.data(),
2316                                                KeyIdents.size(),
2317                                                /*AtArgumentEpression=*/true);
2318         else
2319           Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
2320                                                   KeyIdents.data(),
2321                                                   KeyIdents.size(),
2322                                                   /*AtArgumentEpression=*/true);
2323 
2324         cutOffParsing();
2325         return ExprError();
2326       }
2327 
2328       ExprResult Res(ParseAssignmentExpression());
2329       if (Res.isInvalid()) {
2330         // We must manually skip to a ']', otherwise the expression skipper will
2331         // stop at the ']' when it skips to the ';'.  We want it to skip beyond
2332         // the enclosing expression.
2333         SkipUntil(tok::r_square);
2334         return move(Res);
2335       }
2336 
2337       // We have a valid expression.
2338       KeyExprs.push_back(Res.release());
2339 
2340       // Code completion after each argument.
2341       if (Tok.is(tok::code_completion)) {
2342         if (SuperLoc.isValid())
2343           Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
2344                                                KeyIdents.data(),
2345                                                KeyIdents.size(),
2346                                                /*AtArgumentEpression=*/false);
2347         else if (ReceiverType)
2348           Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType,
2349                                                KeyIdents.data(),
2350                                                KeyIdents.size(),
2351                                                /*AtArgumentEpression=*/false);
2352         else
2353           Actions.CodeCompleteObjCInstanceMessage(getCurScope(), ReceiverExpr,
2354                                                   KeyIdents.data(),
2355                                                   KeyIdents.size(),
2356                                                 /*AtArgumentEpression=*/false);
2357         cutOffParsing();
2358         return ExprError();
2359       }
2360 
2361       // Check for another keyword selector.
2362       selIdent = ParseObjCSelectorPiece(Loc);
2363       if (!selIdent && Tok.isNot(tok::colon))
2364         break;
2365       // We have a selector or a colon, continue parsing.
2366     }
2367     // Parse the, optional, argument list, comma separated.
2368     while (Tok.is(tok::comma)) {
2369       ConsumeToken(); // Eat the ','.
2370       ///  Parse the expression after ','
2371       ExprResult Res(ParseAssignmentExpression());
2372       if (Res.isInvalid()) {
2373         // We must manually skip to a ']', otherwise the expression skipper will
2374         // stop at the ']' when it skips to the ';'.  We want it to skip beyond
2375         // the enclosing expression.
2376         SkipUntil(tok::r_square);
2377         return move(Res);
2378       }
2379 
2380       // We have a valid expression.
2381       KeyExprs.push_back(Res.release());
2382     }
2383   } else if (!selIdent) {
2384     Diag(Tok, diag::err_expected_ident); // missing selector name.
2385 
2386     // We must manually skip to a ']', otherwise the expression skipper will
2387     // stop at the ']' when it skips to the ';'.  We want it to skip beyond
2388     // the enclosing expression.
2389     SkipUntil(tok::r_square);
2390     return ExprError();
2391   }
2392 
2393   if (Tok.isNot(tok::r_square)) {
2394     if (Tok.is(tok::identifier))
2395       Diag(Tok, diag::err_expected_colon);
2396     else
2397       Diag(Tok, diag::err_expected_rsquare);
2398     // We must manually skip to a ']', otherwise the expression skipper will
2399     // stop at the ']' when it skips to the ';'.  We want it to skip beyond
2400     // the enclosing expression.
2401     SkipUntil(tok::r_square);
2402     return ExprError();
2403   }
2404 
2405   SourceLocation RBracLoc = ConsumeBracket(); // consume ']'
2406 
2407   unsigned nKeys = KeyIdents.size();
2408   if (nKeys == 0) {
2409     KeyIdents.push_back(selIdent);
2410     KeyLocs.push_back(Loc);
2411   }
2412   Selector Sel = PP.getSelectorTable().getSelector(nKeys, &KeyIdents[0]);
2413 
2414   if (SuperLoc.isValid())
2415     return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel,
2416                                      LBracLoc, KeyLocs, RBracLoc,
2417                                      MultiExprArg(Actions,
2418                                                   KeyExprs.take(),
2419                                                   KeyExprs.size()));
2420   else if (ReceiverType)
2421     return Actions.ActOnClassMessage(getCurScope(), ReceiverType, Sel,
2422                                      LBracLoc, KeyLocs, RBracLoc,
2423                                      MultiExprArg(Actions,
2424                                                   KeyExprs.take(),
2425                                                   KeyExprs.size()));
2426   return Actions.ActOnInstanceMessage(getCurScope(), ReceiverExpr, Sel,
2427                                       LBracLoc, KeyLocs, RBracLoc,
2428                                       MultiExprArg(Actions,
2429                                                    KeyExprs.take(),
2430                                                    KeyExprs.size()));
2431 }
2432 
2433 ExprResult Parser::ParseObjCStringLiteral(SourceLocation AtLoc) {
2434   ExprResult Res(ParseStringLiteralExpression());
2435   if (Res.isInvalid()) return move(Res);
2436 
2437   // @"foo" @"bar" is a valid concatenated string.  Eat any subsequent string
2438   // expressions.  At this point, we know that the only valid thing that starts
2439   // with '@' is an @"".
2440   SmallVector<SourceLocation, 4> AtLocs;
2441   ExprVector AtStrings(Actions);
2442   AtLocs.push_back(AtLoc);
2443   AtStrings.push_back(Res.release());
2444 
2445   while (Tok.is(tok::at)) {
2446     AtLocs.push_back(ConsumeToken()); // eat the @.
2447 
2448     // Invalid unless there is a string literal.
2449     if (!isTokenStringLiteral())
2450       return ExprError(Diag(Tok, diag::err_objc_concat_string));
2451 
2452     ExprResult Lit(ParseStringLiteralExpression());
2453     if (Lit.isInvalid())
2454       return move(Lit);
2455 
2456     AtStrings.push_back(Lit.release());
2457   }
2458 
2459   return Owned(Actions.ParseObjCStringLiteral(&AtLocs[0], AtStrings.take(),
2460                                               AtStrings.size()));
2461 }
2462 
2463 ///    objc-encode-expression:
2464 ///      @encode ( type-name )
2465 ExprResult
2466 Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
2467   assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");
2468 
2469   SourceLocation EncLoc = ConsumeToken();
2470 
2471   if (Tok.isNot(tok::l_paren))
2472     return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@encode");
2473 
2474   BalancedDelimiterTracker T(*this, tok::l_paren);
2475   T.consumeOpen();
2476 
2477   TypeResult Ty = ParseTypeName();
2478 
2479   T.consumeClose();
2480 
2481   if (Ty.isInvalid())
2482     return ExprError();
2483 
2484   return Owned(Actions.ParseObjCEncodeExpression(AtLoc, EncLoc,
2485                                                  T.getOpenLocation(), Ty.get(),
2486                                                  T.getCloseLocation()));
2487 }
2488 
2489 ///     objc-protocol-expression
2490 ///       @protocol ( protocol-name )
2491 ExprResult
2492 Parser::ParseObjCProtocolExpression(SourceLocation AtLoc) {
2493   SourceLocation ProtoLoc = ConsumeToken();
2494 
2495   if (Tok.isNot(tok::l_paren))
2496     return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@protocol");
2497 
2498   BalancedDelimiterTracker T(*this, tok::l_paren);
2499   T.consumeOpen();
2500 
2501   if (Tok.isNot(tok::identifier))
2502     return ExprError(Diag(Tok, diag::err_expected_ident));
2503 
2504   IdentifierInfo *protocolId = Tok.getIdentifierInfo();
2505   ConsumeToken();
2506 
2507   T.consumeClose();
2508 
2509   return Owned(Actions.ParseObjCProtocolExpression(protocolId, AtLoc, ProtoLoc,
2510                                                    T.getOpenLocation(),
2511                                                    T.getCloseLocation()));
2512 }
2513 
2514 ///     objc-selector-expression
2515 ///       @selector '(' objc-keyword-selector ')'
2516 ExprResult Parser::ParseObjCSelectorExpression(SourceLocation AtLoc) {
2517   SourceLocation SelectorLoc = ConsumeToken();
2518 
2519   if (Tok.isNot(tok::l_paren))
2520     return ExprError(Diag(Tok, diag::err_expected_lparen_after) << "@selector");
2521 
2522   SmallVector<IdentifierInfo *, 12> KeyIdents;
2523   SourceLocation sLoc;
2524 
2525   BalancedDelimiterTracker T(*this, tok::l_paren);
2526   T.consumeOpen();
2527 
2528   if (Tok.is(tok::code_completion)) {
2529     Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2530                                      KeyIdents.size());
2531     cutOffParsing();
2532     return ExprError();
2533   }
2534 
2535   IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
2536   if (!SelIdent &&  // missing selector name.
2537       Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
2538     return ExprError(Diag(Tok, diag::err_expected_ident));
2539 
2540   KeyIdents.push_back(SelIdent);
2541   unsigned nColons = 0;
2542   if (Tok.isNot(tok::r_paren)) {
2543     while (1) {
2544       if (Tok.is(tok::coloncolon)) { // Handle :: in C++.
2545         ++nColons;
2546         KeyIdents.push_back(0);
2547       } else if (Tok.isNot(tok::colon))
2548         return ExprError(Diag(Tok, diag::err_expected_colon));
2549 
2550       ++nColons;
2551       ConsumeToken(); // Eat the ':' or '::'.
2552       if (Tok.is(tok::r_paren))
2553         break;
2554 
2555       if (Tok.is(tok::code_completion)) {
2556         Actions.CodeCompleteObjCSelector(getCurScope(), KeyIdents.data(),
2557                                          KeyIdents.size());
2558         cutOffParsing();
2559         return ExprError();
2560       }
2561 
2562       // Check for another keyword selector.
2563       SourceLocation Loc;
2564       SelIdent = ParseObjCSelectorPiece(Loc);
2565       KeyIdents.push_back(SelIdent);
2566       if (!SelIdent && Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))
2567         break;
2568     }
2569   }
2570   T.consumeClose();
2571   Selector Sel = PP.getSelectorTable().getSelector(nColons, &KeyIdents[0]);
2572   return Owned(Actions.ParseObjCSelectorExpression(Sel, AtLoc, SelectorLoc,
2573                                                    T.getOpenLocation(),
2574                                                    T.getCloseLocation()));
2575  }
2576 
2577 Decl *Parser::ParseLexedObjCMethodDefs(LexedMethod &LM) {
2578 
2579   // Save the current token position.
2580   SourceLocation OrigLoc = Tok.getLocation();
2581 
2582   assert(!LM.Toks.empty() && "ParseLexedObjCMethodDef - Empty body!");
2583   // Append the current token at the end of the new token stream so that it
2584   // doesn't get lost.
2585   LM.Toks.push_back(Tok);
2586   PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false);
2587 
2588   // MDecl might be null due to error in method prototype, etc.
2589   Decl *MDecl = LM.D;
2590   // Consume the previously pushed token.
2591   ConsumeAnyToken();
2592 
2593   assert(Tok.is(tok::l_brace) && "Inline objective-c method not starting with '{'");
2594   SourceLocation BraceLoc = Tok.getLocation();
2595   // Enter a scope for the method body.
2596   ParseScope BodyScope(this,
2597                        Scope::ObjCMethodScope|Scope::FnScope|Scope::DeclScope);
2598 
2599   // Tell the actions module that we have entered a method definition with the
2600   // specified Declarator for the method.
2601   Actions.ActOnStartOfObjCMethodDef(getCurScope(), MDecl);
2602 
2603   if (PP.isCodeCompletionEnabled()) {
2604       if (trySkippingFunctionBodyForCodeCompletion()) {
2605           BodyScope.Exit();
2606           return Actions.ActOnFinishFunctionBody(MDecl, 0);
2607       }
2608   }
2609 
2610   StmtResult FnBody(ParseCompoundStatementBody());
2611 
2612   // If the function body could not be parsed, make a bogus compoundstmt.
2613   if (FnBody.isInvalid())
2614     FnBody = Actions.ActOnCompoundStmt(BraceLoc, BraceLoc,
2615                                        MultiStmtArg(Actions), false);
2616 
2617   // Leave the function body scope.
2618   BodyScope.Exit();
2619 
2620   MDecl = Actions.ActOnFinishFunctionBody(MDecl, FnBody.take());
2621 
2622   if (Tok.getLocation() != OrigLoc) {
2623     // Due to parsing error, we either went over the cached tokens or
2624     // there are still cached tokens left. If it's the latter case skip the
2625     // leftover tokens.
2626     // Since this is an uncommon situation that should be avoided, use the
2627     // expensive isBeforeInTranslationUnit call.
2628     if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
2629                                                      OrigLoc))
2630       while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
2631         ConsumeAnyToken();
2632   }
2633 
2634   return MDecl;
2635 }
2636