ParseDeclCXX.cpp revision c2e1c1af8ffe750b827284f207b9207112c7cc4e
1//===--- ParseDeclCXX.cpp - C++ Declaration 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 C++ Declaration portions of the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Basic/OperatorKinds.h"
15#include "clang/Parse/Parser.h"
16#include "clang/Parse/ParseDiagnostic.h"
17#include "clang/Parse/DeclSpec.h"
18#include "clang/Parse/Scope.h"
19#include "clang/Parse/Template.h"
20#include "RAIIObjectsForParser.h"
21using namespace clang;
22
23/// ParseNamespace - We know that the current token is a namespace keyword. This
24/// may either be a top level namespace or a block-level namespace alias.
25///
26///       namespace-definition: [C++ 7.3: basic.namespace]
27///         named-namespace-definition
28///         unnamed-namespace-definition
29///
30///       unnamed-namespace-definition:
31///         'namespace' attributes[opt] '{' namespace-body '}'
32///
33///       named-namespace-definition:
34///         original-namespace-definition
35///         extension-namespace-definition
36///
37///       original-namespace-definition:
38///         'namespace' identifier attributes[opt] '{' namespace-body '}'
39///
40///       extension-namespace-definition:
41///         'namespace' original-namespace-name '{' namespace-body '}'
42///
43///       namespace-alias-definition:  [C++ 7.3.2: namespace.alias]
44///         'namespace' identifier '=' qualified-namespace-specifier ';'
45///
46Parser::DeclPtrTy Parser::ParseNamespace(unsigned Context,
47                                         SourceLocation &DeclEnd) {
48  assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
49  SourceLocation NamespaceLoc = ConsumeToken();  // eat the 'namespace'.
50
51  if (Tok.is(tok::code_completion)) {
52    Actions.CodeCompleteNamespaceDecl(CurScope);
53    ConsumeToken();
54  }
55
56  SourceLocation IdentLoc;
57  IdentifierInfo *Ident = 0;
58
59  Token attrTok;
60
61  if (Tok.is(tok::identifier)) {
62    Ident = Tok.getIdentifierInfo();
63    IdentLoc = ConsumeToken();  // eat the identifier.
64  }
65
66  // Read label attributes, if present.
67  Action::AttrTy *AttrList = 0;
68  if (Tok.is(tok::kw___attribute)) {
69    attrTok = Tok;
70
71    // FIXME: save these somewhere.
72    AttrList = ParseGNUAttributes();
73  }
74
75  if (Tok.is(tok::equal)) {
76    if (AttrList)
77      Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
78
79    return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
80  }
81
82  if (Tok.isNot(tok::l_brace)) {
83    Diag(Tok, Ident ? diag::err_expected_lbrace :
84         diag::err_expected_ident_lbrace);
85    return DeclPtrTy();
86  }
87
88  SourceLocation LBrace = ConsumeBrace();
89
90  // Enter a scope for the namespace.
91  ParseScope NamespaceScope(this, Scope::DeclScope);
92
93  DeclPtrTy NamespcDecl =
94    Actions.ActOnStartNamespaceDef(CurScope, IdentLoc, Ident, LBrace);
95
96  PrettyStackTraceActionsDecl CrashInfo(NamespcDecl, NamespaceLoc, Actions,
97                                        PP.getSourceManager(),
98                                        "parsing namespace");
99
100  while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
101    CXX0XAttributeList Attr;
102    if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
103      Attr = ParseCXX0XAttributes();
104    ParseExternalDeclaration(Attr);
105  }
106
107  // Leave the namespace scope.
108  NamespaceScope.Exit();
109
110  SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace);
111  Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc);
112
113  DeclEnd = RBraceLoc;
114  return NamespcDecl;
115}
116
117/// ParseNamespaceAlias - Parse the part after the '=' in a namespace
118/// alias definition.
119///
120Parser::DeclPtrTy Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
121                                              SourceLocation AliasLoc,
122                                              IdentifierInfo *Alias,
123                                              SourceLocation &DeclEnd) {
124  assert(Tok.is(tok::equal) && "Not equal token");
125
126  ConsumeToken(); // eat the '='.
127
128  if (Tok.is(tok::code_completion)) {
129    Actions.CodeCompleteNamespaceAliasDecl(CurScope);
130    ConsumeToken();
131  }
132
133  CXXScopeSpec SS;
134  // Parse (optional) nested-name-specifier.
135  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
136
137  if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
138    Diag(Tok, diag::err_expected_namespace_name);
139    // Skip to end of the definition and eat the ';'.
140    SkipUntil(tok::semi);
141    return DeclPtrTy();
142  }
143
144  // Parse identifier.
145  IdentifierInfo *Ident = Tok.getIdentifierInfo();
146  SourceLocation IdentLoc = ConsumeToken();
147
148  // Eat the ';'.
149  DeclEnd = Tok.getLocation();
150  ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
151                   "", tok::semi);
152
153  return Actions.ActOnNamespaceAliasDef(CurScope, NamespaceLoc, AliasLoc, Alias,
154                                        SS, IdentLoc, Ident);
155}
156
157/// ParseLinkage - We know that the current token is a string_literal
158/// and just before that, that extern was seen.
159///
160///       linkage-specification: [C++ 7.5p2: dcl.link]
161///         'extern' string-literal '{' declaration-seq[opt] '}'
162///         'extern' string-literal declaration
163///
164Parser::DeclPtrTy Parser::ParseLinkage(ParsingDeclSpec &DS,
165                                       unsigned Context) {
166  assert(Tok.is(tok::string_literal) && "Not a string literal!");
167  llvm::SmallVector<char, 8> LangBuffer;
168  // LangBuffer is guaranteed to be big enough.
169  LangBuffer.resize(Tok.getLength());
170  const char *LangBufPtr = &LangBuffer[0];
171  unsigned StrSize = PP.getSpelling(Tok, LangBufPtr);
172
173  SourceLocation Loc = ConsumeStringToken();
174
175  ParseScope LinkageScope(this, Scope::DeclScope);
176  DeclPtrTy LinkageSpec
177    = Actions.ActOnStartLinkageSpecification(CurScope,
178                                             /*FIXME: */SourceLocation(),
179                                             Loc, LangBufPtr, StrSize,
180                                       Tok.is(tok::l_brace)? Tok.getLocation()
181                                                           : SourceLocation());
182
183  CXX0XAttributeList Attr;
184  if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier()) {
185    Attr = ParseCXX0XAttributes();
186  }
187
188  if (Tok.isNot(tok::l_brace)) {
189    ParseDeclarationOrFunctionDefinition(DS, Attr.AttrList);
190    return Actions.ActOnFinishLinkageSpecification(CurScope, LinkageSpec,
191                                                   SourceLocation());
192  }
193
194  if (Attr.HasAttr)
195    Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
196      << Attr.Range;
197
198  SourceLocation LBrace = ConsumeBrace();
199  while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
200    CXX0XAttributeList Attr;
201    if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
202      Attr = ParseCXX0XAttributes();
203    ParseExternalDeclaration(Attr);
204  }
205
206  SourceLocation RBrace = MatchRHSPunctuation(tok::r_brace, LBrace);
207  return Actions.ActOnFinishLinkageSpecification(CurScope, LinkageSpec, RBrace);
208}
209
210/// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
211/// using-directive. Assumes that current token is 'using'.
212Parser::DeclPtrTy Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
213                                                     SourceLocation &DeclEnd,
214                                                     CXX0XAttributeList Attr) {
215  assert(Tok.is(tok::kw_using) && "Not using token");
216
217  // Eat 'using'.
218  SourceLocation UsingLoc = ConsumeToken();
219
220  if (Tok.is(tok::code_completion)) {
221    Actions.CodeCompleteUsing(CurScope);
222    ConsumeToken();
223  }
224
225  if (Tok.is(tok::kw_namespace))
226    // Next token after 'using' is 'namespace' so it must be using-directive
227    return ParseUsingDirective(Context, UsingLoc, DeclEnd, Attr.AttrList);
228
229  if (Attr.HasAttr)
230    Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
231      << Attr.Range;
232
233  // Otherwise, it must be using-declaration.
234  // Ignore illegal attributes (the caller should already have issued an error.
235  return ParseUsingDeclaration(Context, UsingLoc, DeclEnd);
236}
237
238/// ParseUsingDirective - Parse C++ using-directive, assumes
239/// that current token is 'namespace' and 'using' was already parsed.
240///
241///       using-directive: [C++ 7.3.p4: namespace.udir]
242///        'using' 'namespace' ::[opt] nested-name-specifier[opt]
243///                 namespace-name ;
244/// [GNU] using-directive:
245///        'using' 'namespace' ::[opt] nested-name-specifier[opt]
246///                 namespace-name attributes[opt] ;
247///
248Parser::DeclPtrTy Parser::ParseUsingDirective(unsigned Context,
249                                              SourceLocation UsingLoc,
250                                              SourceLocation &DeclEnd,
251                                              AttributeList *Attr) {
252  assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
253
254  // Eat 'namespace'.
255  SourceLocation NamespcLoc = ConsumeToken();
256
257  if (Tok.is(tok::code_completion)) {
258    Actions.CodeCompleteUsingDirective(CurScope);
259    ConsumeToken();
260  }
261
262  CXXScopeSpec SS;
263  // Parse (optional) nested-name-specifier.
264  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
265
266  IdentifierInfo *NamespcName = 0;
267  SourceLocation IdentLoc = SourceLocation();
268
269  // Parse namespace-name.
270  if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
271    Diag(Tok, diag::err_expected_namespace_name);
272    // If there was invalid namespace name, skip to end of decl, and eat ';'.
273    SkipUntil(tok::semi);
274    // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
275    return DeclPtrTy();
276  }
277
278  // Parse identifier.
279  NamespcName = Tok.getIdentifierInfo();
280  IdentLoc = ConsumeToken();
281
282  // Parse (optional) attributes (most likely GNU strong-using extension).
283  bool GNUAttr = false;
284  if (Tok.is(tok::kw___attribute)) {
285    GNUAttr = true;
286    Attr = addAttributeLists(Attr, ParseGNUAttributes());
287  }
288
289  // Eat ';'.
290  DeclEnd = Tok.getLocation();
291  ExpectAndConsume(tok::semi,
292                   GNUAttr ? diag::err_expected_semi_after_attribute_list :
293                   diag::err_expected_semi_after_namespace_name, "", tok::semi);
294
295  return Actions.ActOnUsingDirective(CurScope, UsingLoc, NamespcLoc, SS,
296                                      IdentLoc, NamespcName, Attr);
297}
298
299/// ParseUsingDeclaration - Parse C++ using-declaration. Assumes that
300/// 'using' was already seen.
301///
302///     using-declaration: [C++ 7.3.p3: namespace.udecl]
303///       'using' 'typename'[opt] ::[opt] nested-name-specifier
304///               unqualified-id
305///       'using' :: unqualified-id
306///
307Parser::DeclPtrTy Parser::ParseUsingDeclaration(unsigned Context,
308                                                SourceLocation UsingLoc,
309                                                SourceLocation &DeclEnd,
310                                                AccessSpecifier AS) {
311  CXXScopeSpec SS;
312  SourceLocation TypenameLoc;
313  bool IsTypeName;
314
315  // Ignore optional 'typename'.
316  // FIXME: This is wrong; we should parse this as a typename-specifier.
317  if (Tok.is(tok::kw_typename)) {
318    TypenameLoc = Tok.getLocation();
319    ConsumeToken();
320    IsTypeName = true;
321  }
322  else
323    IsTypeName = false;
324
325  // Parse nested-name-specifier.
326  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
327
328  AttributeList *AttrList = 0;
329
330  // Check nested-name specifier.
331  if (SS.isInvalid()) {
332    SkipUntil(tok::semi);
333    return DeclPtrTy();
334  }
335
336  // Parse the unqualified-id. We allow parsing of both constructor and
337  // destructor names and allow the action module to diagnose any semantic
338  // errors.
339  UnqualifiedId Name;
340  if (ParseUnqualifiedId(SS,
341                         /*EnteringContext=*/false,
342                         /*AllowDestructorName=*/true,
343                         /*AllowConstructorName=*/true,
344                         /*ObjectType=*/0,
345                         Name)) {
346    SkipUntil(tok::semi);
347    return DeclPtrTy();
348  }
349
350  // Parse (optional) attributes (most likely GNU strong-using extension).
351  if (Tok.is(tok::kw___attribute))
352    AttrList = ParseGNUAttributes();
353
354  // Eat ';'.
355  DeclEnd = Tok.getLocation();
356  ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
357                   AttrList ? "attributes list" : "using declaration",
358                   tok::semi);
359
360  return Actions.ActOnUsingDeclaration(CurScope, AS, true, UsingLoc, SS, Name,
361                                       AttrList, IsTypeName, TypenameLoc);
362}
363
364/// ParseStaticAssertDeclaration - Parse C++0x static_assert-declaratoion.
365///
366///      static_assert-declaration:
367///        static_assert ( constant-expression  ,  string-literal  ) ;
368///
369Parser::DeclPtrTy Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
370  assert(Tok.is(tok::kw_static_assert) && "Not a static_assert declaration");
371  SourceLocation StaticAssertLoc = ConsumeToken();
372
373  if (Tok.isNot(tok::l_paren)) {
374    Diag(Tok, diag::err_expected_lparen);
375    return DeclPtrTy();
376  }
377
378  SourceLocation LParenLoc = ConsumeParen();
379
380  OwningExprResult AssertExpr(ParseConstantExpression());
381  if (AssertExpr.isInvalid()) {
382    SkipUntil(tok::semi);
383    return DeclPtrTy();
384  }
385
386  if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
387    return DeclPtrTy();
388
389  if (Tok.isNot(tok::string_literal)) {
390    Diag(Tok, diag::err_expected_string_literal);
391    SkipUntil(tok::semi);
392    return DeclPtrTy();
393  }
394
395  OwningExprResult AssertMessage(ParseStringLiteralExpression());
396  if (AssertMessage.isInvalid())
397    return DeclPtrTy();
398
399  MatchRHSPunctuation(tok::r_paren, LParenLoc);
400
401  DeclEnd = Tok.getLocation();
402  ExpectAndConsume(tok::semi, diag::err_expected_semi_after_static_assert);
403
404  return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc, move(AssertExpr),
405                                              move(AssertMessage));
406}
407
408/// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
409///
410/// 'decltype' ( expression )
411///
412void Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
413  assert(Tok.is(tok::kw_decltype) && "Not a decltype specifier");
414
415  SourceLocation StartLoc = ConsumeToken();
416  SourceLocation LParenLoc = Tok.getLocation();
417
418  if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
419                       "decltype")) {
420    SkipUntil(tok::r_paren);
421    return;
422  }
423
424  // Parse the expression
425
426  // C++0x [dcl.type.simple]p4:
427  //   The operand of the decltype specifier is an unevaluated operand.
428  EnterExpressionEvaluationContext Unevaluated(Actions,
429                                               Action::Unevaluated);
430  OwningExprResult Result = ParseExpression();
431  if (Result.isInvalid()) {
432    SkipUntil(tok::r_paren);
433    return;
434  }
435
436  // Match the ')'
437  SourceLocation RParenLoc;
438  if (Tok.is(tok::r_paren))
439    RParenLoc = ConsumeParen();
440  else
441    MatchRHSPunctuation(tok::r_paren, LParenLoc);
442
443  if (RParenLoc.isInvalid())
444    return;
445
446  const char *PrevSpec = 0;
447  unsigned DiagID;
448  // Check for duplicate type specifiers (e.g. "int decltype(a)").
449  if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
450                         DiagID, Result.release()))
451    Diag(StartLoc, DiagID) << PrevSpec;
452}
453
454/// ParseClassName - Parse a C++ class-name, which names a class. Note
455/// that we only check that the result names a type; semantic analysis
456/// will need to verify that the type names a class. The result is
457/// either a type or NULL, depending on whether a type name was
458/// found.
459///
460///       class-name: [C++ 9.1]
461///         identifier
462///         simple-template-id
463///
464Parser::TypeResult Parser::ParseClassName(SourceLocation &EndLocation,
465                                          const CXXScopeSpec *SS,
466                                          bool DestrExpected) {
467  // Check whether we have a template-id that names a type.
468  if (Tok.is(tok::annot_template_id)) {
469    TemplateIdAnnotation *TemplateId
470      = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
471    if (TemplateId->Kind == TNK_Type_template ||
472        TemplateId->Kind == TNK_Dependent_template_name) {
473      AnnotateTemplateIdTokenAsType(SS);
474
475      assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
476      TypeTy *Type = Tok.getAnnotationValue();
477      EndLocation = Tok.getAnnotationEndLoc();
478      ConsumeToken();
479
480      if (Type)
481        return Type;
482      return true;
483    }
484
485    // Fall through to produce an error below.
486  }
487
488  if (Tok.isNot(tok::identifier)) {
489    Diag(Tok, diag::err_expected_class_name);
490    return true;
491  }
492
493  IdentifierInfo *Id = Tok.getIdentifierInfo();
494  SourceLocation IdLoc = ConsumeToken();
495
496  if (Tok.is(tok::less)) {
497    // It looks the user intended to write a template-id here, but the
498    // template-name was wrong. Try to fix that.
499    TemplateNameKind TNK = TNK_Type_template;
500    TemplateTy Template;
501    if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, CurScope,
502                                             SS, Template, TNK)) {
503      Diag(IdLoc, diag::err_unknown_template_name)
504        << Id;
505    }
506
507    if (!Template)
508      return true;
509
510    // Form the template name
511    UnqualifiedId TemplateName;
512    TemplateName.setIdentifier(Id, IdLoc);
513
514    // Parse the full template-id, then turn it into a type.
515    if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateName,
516                                SourceLocation(), true))
517      return true;
518    if (TNK == TNK_Dependent_template_name)
519      AnnotateTemplateIdTokenAsType(SS);
520
521    // If we didn't end up with a typename token, there's nothing more we
522    // can do.
523    if (Tok.isNot(tok::annot_typename))
524      return true;
525
526    // Retrieve the type from the annotation token, consume that token, and
527    // return.
528    EndLocation = Tok.getAnnotationEndLoc();
529    TypeTy *Type = Tok.getAnnotationValue();
530    ConsumeToken();
531    return Type;
532  }
533
534  // We have an identifier; check whether it is actually a type.
535  TypeTy *Type = Actions.getTypeName(*Id, IdLoc, CurScope, SS, true);
536  if (!Type) {
537    Diag(IdLoc, DestrExpected ? diag::err_destructor_class_name
538                            : diag::err_expected_class_name);
539    return true;
540  }
541
542  // Consume the identifier.
543  EndLocation = IdLoc;
544  return Type;
545}
546
547/// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
548/// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
549/// until we reach the start of a definition or see a token that
550/// cannot start a definition.
551///
552///       class-specifier: [C++ class]
553///         class-head '{' member-specification[opt] '}'
554///         class-head '{' member-specification[opt] '}' attributes[opt]
555///       class-head:
556///         class-key identifier[opt] base-clause[opt]
557///         class-key nested-name-specifier identifier base-clause[opt]
558///         class-key nested-name-specifier[opt] simple-template-id
559///                          base-clause[opt]
560/// [GNU]   class-key attributes[opt] identifier[opt] base-clause[opt]
561/// [GNU]   class-key attributes[opt] nested-name-specifier
562///                          identifier base-clause[opt]
563/// [GNU]   class-key attributes[opt] nested-name-specifier[opt]
564///                          simple-template-id base-clause[opt]
565///       class-key:
566///         'class'
567///         'struct'
568///         'union'
569///
570///       elaborated-type-specifier: [C++ dcl.type.elab]
571///         class-key ::[opt] nested-name-specifier[opt] identifier
572///         class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
573///                          simple-template-id
574///
575///  Note that the C++ class-specifier and elaborated-type-specifier,
576///  together, subsume the C99 struct-or-union-specifier:
577///
578///       struct-or-union-specifier: [C99 6.7.2.1]
579///         struct-or-union identifier[opt] '{' struct-contents '}'
580///         struct-or-union identifier
581/// [GNU]   struct-or-union attributes[opt] identifier[opt] '{' struct-contents
582///                                                         '}' attributes[opt]
583/// [GNU]   struct-or-union attributes[opt] identifier
584///       struct-or-union:
585///         'struct'
586///         'union'
587void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
588                                 SourceLocation StartLoc, DeclSpec &DS,
589                                 const ParsedTemplateInfo &TemplateInfo,
590                                 AccessSpecifier AS) {
591  DeclSpec::TST TagType;
592  if (TagTokKind == tok::kw_struct)
593    TagType = DeclSpec::TST_struct;
594  else if (TagTokKind == tok::kw_class)
595    TagType = DeclSpec::TST_class;
596  else {
597    assert(TagTokKind == tok::kw_union && "Not a class specifier");
598    TagType = DeclSpec::TST_union;
599  }
600
601  if (Tok.is(tok::code_completion)) {
602    // Code completion for a struct, class, or union name.
603    Actions.CodeCompleteTag(CurScope, TagType);
604    ConsumeToken();
605  }
606
607  AttributeList *AttrList = 0;
608  // If attributes exist after tag, parse them.
609  if (Tok.is(tok::kw___attribute))
610    AttrList = ParseGNUAttributes();
611
612  // If declspecs exist after tag, parse them.
613  if (Tok.is(tok::kw___declspec))
614    AttrList = ParseMicrosoftDeclSpec(AttrList);
615
616  // If C++0x attributes exist here, parse them.
617  // FIXME: Are we consistent with the ordering of parsing of different
618  // styles of attributes?
619  if (isCXX0XAttributeSpecifier())
620    AttrList = addAttributeLists(AttrList, ParseCXX0XAttributes().AttrList);
621
622  if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_pod)) {
623    // GNU libstdc++ 4.2 uses __is_pod as the name of a struct template, but
624    // __is_pod is a keyword in GCC >= 4.3. Therefore, when we see the
625    // token sequence "struct __is_pod", make __is_pod into a normal
626    // identifier rather than a keyword, to allow libstdc++ 4.2 to work
627    // properly.
628    Tok.getIdentifierInfo()->setTokenID(tok::identifier);
629    Tok.setKind(tok::identifier);
630  }
631
632  if (TagType == DeclSpec::TST_struct && Tok.is(tok::kw___is_empty)) {
633    // GNU libstdc++ 4.2 uses __is_empty as the name of a struct template, but
634    // __is_empty is a keyword in GCC >= 4.3. Therefore, when we see the
635    // token sequence "struct __is_empty", make __is_empty into a normal
636    // identifier rather than a keyword, to allow libstdc++ 4.2 to work
637    // properly.
638    Tok.getIdentifierInfo()->setTokenID(tok::identifier);
639    Tok.setKind(tok::identifier);
640  }
641
642  // Parse the (optional) nested-name-specifier.
643  CXXScopeSpec &SS = DS.getTypeSpecScope();
644  if (getLang().CPlusPlus) {
645    // "FOO : BAR" is not a potential typo for "FOO::BAR".
646    ColonProtectionRAIIObject X(*this);
647
648    if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, true))
649      if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
650        Diag(Tok, diag::err_expected_ident);
651  }
652
653  TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
654
655  // Parse the (optional) class name or simple-template-id.
656  IdentifierInfo *Name = 0;
657  SourceLocation NameLoc;
658  TemplateIdAnnotation *TemplateId = 0;
659  if (Tok.is(tok::identifier)) {
660    Name = Tok.getIdentifierInfo();
661    NameLoc = ConsumeToken();
662
663    if (Tok.is(tok::less)) {
664      // The name was supposed to refer to a template, but didn't.
665      // Eat the template argument list and try to continue parsing this as
666      // a class (or template thereof).
667      TemplateArgList TemplateArgs;
668      SourceLocation LAngleLoc, RAngleLoc;
669      if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, &SS,
670                                           true, LAngleLoc,
671                                           TemplateArgs, RAngleLoc)) {
672        // We couldn't parse the template argument list at all, so don't
673        // try to give any location information for the list.
674        LAngleLoc = RAngleLoc = SourceLocation();
675      }
676
677      Diag(NameLoc, diag::err_explicit_spec_non_template)
678        << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
679        << (TagType == DeclSpec::TST_class? 0
680            : TagType == DeclSpec::TST_struct? 1
681            : 2)
682        << Name
683        << SourceRange(LAngleLoc, RAngleLoc);
684
685      // Strip off the last template parameter list if it was empty, since
686      // we've removed its template argument list.
687      if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
688        if (TemplateParams && TemplateParams->size() > 1) {
689          TemplateParams->pop_back();
690        } else {
691          TemplateParams = 0;
692          const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
693            = ParsedTemplateInfo::NonTemplate;
694        }
695      } else if (TemplateInfo.Kind
696                                == ParsedTemplateInfo::ExplicitInstantiation) {
697        // Pretend this is just a forward declaration.
698        TemplateParams = 0;
699        const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
700          = ParsedTemplateInfo::NonTemplate;
701        const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
702          = SourceLocation();
703        const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
704          = SourceLocation();
705      }
706
707
708    }
709  } else if (Tok.is(tok::annot_template_id)) {
710    TemplateId = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
711    NameLoc = ConsumeToken();
712
713    if (TemplateId->Kind != TNK_Type_template) {
714      // The template-name in the simple-template-id refers to
715      // something other than a class template. Give an appropriate
716      // error message and skip to the ';'.
717      SourceRange Range(NameLoc);
718      if (SS.isNotEmpty())
719        Range.setBegin(SS.getBeginLoc());
720
721      Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
722        << Name << static_cast<int>(TemplateId->Kind) << Range;
723
724      DS.SetTypeSpecError();
725      SkipUntil(tok::semi, false, true);
726      TemplateId->Destroy();
727      return;
728    }
729  }
730
731  // There are four options here.  If we have 'struct foo;', then this
732  // is either a forward declaration or a friend declaration, which
733  // have to be treated differently.  If we have 'struct foo {...' or
734  // 'struct foo :...' then this is a definition. Otherwise we have
735  // something like 'struct foo xyz', a reference.
736  Action::TagUseKind TUK;
737  if (Tok.is(tok::l_brace) || (getLang().CPlusPlus && Tok.is(tok::colon))) {
738    if (DS.isFriendSpecified()) {
739      // C++ [class.friend]p2:
740      //   A class shall not be defined in a friend declaration.
741      Diag(Tok.getLocation(), diag::err_friend_decl_defines_class)
742        << SourceRange(DS.getFriendSpecLoc());
743
744      // Skip everything up to the semicolon, so that this looks like a proper
745      // friend class (or template thereof) declaration.
746      SkipUntil(tok::semi, true, true);
747      TUK = Action::TUK_Friend;
748    } else {
749      // Okay, this is a class definition.
750      TUK = Action::TUK_Definition;
751    }
752  } else if (Tok.is(tok::semi))
753    TUK = DS.isFriendSpecified() ? Action::TUK_Friend : Action::TUK_Declaration;
754  else
755    TUK = Action::TUK_Reference;
756
757  if (!Name && !TemplateId && TUK != Action::TUK_Definition) {
758    // We have a declaration or reference to an anonymous class.
759    Diag(StartLoc, diag::err_anon_type_definition)
760      << DeclSpec::getSpecifierName(TagType);
761
762    SkipUntil(tok::comma, true);
763
764    if (TemplateId)
765      TemplateId->Destroy();
766    return;
767  }
768
769  // Create the tag portion of the class or class template.
770  Action::DeclResult TagOrTempResult = true; // invalid
771  Action::TypeResult TypeResult = true; // invalid
772
773  // FIXME: When TUK == TUK_Reference and we have a template-id, we need
774  // to turn that template-id into a type.
775
776  bool Owned = false;
777  if (TemplateId) {
778    // Explicit specialization, class template partial specialization,
779    // or explicit instantiation.
780    ASTTemplateArgsPtr TemplateArgsPtr(Actions,
781                                       TemplateId->getTemplateArgs(),
782                                       TemplateId->NumArgs);
783    if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
784        TUK == Action::TUK_Declaration) {
785      // This is an explicit instantiation of a class template.
786      TagOrTempResult
787        = Actions.ActOnExplicitInstantiation(CurScope,
788                                             TemplateInfo.ExternLoc,
789                                             TemplateInfo.TemplateLoc,
790                                             TagType,
791                                             StartLoc,
792                                             SS,
793                                     TemplateTy::make(TemplateId->Template),
794                                             TemplateId->TemplateNameLoc,
795                                             TemplateId->LAngleLoc,
796                                             TemplateArgsPtr,
797                                             TemplateId->RAngleLoc,
798                                             AttrList);
799    } else if (TUK == Action::TUK_Reference) {
800      TypeResult
801        = Actions.ActOnTemplateIdType(TemplateTy::make(TemplateId->Template),
802                                      TemplateId->TemplateNameLoc,
803                                      TemplateId->LAngleLoc,
804                                      TemplateArgsPtr,
805                                      TemplateId->RAngleLoc);
806
807      TypeResult = Actions.ActOnTagTemplateIdType(TypeResult, TUK,
808                                                  TagType, StartLoc);
809    } else {
810      // This is an explicit specialization or a class template
811      // partial specialization.
812      TemplateParameterLists FakedParamLists;
813
814      if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
815        // This looks like an explicit instantiation, because we have
816        // something like
817        //
818        //   template class Foo<X>
819        //
820        // but it actually has a definition. Most likely, this was
821        // meant to be an explicit specialization, but the user forgot
822        // the '<>' after 'template'.
823        assert(TUK == Action::TUK_Definition && "Expected a definition here");
824
825        SourceLocation LAngleLoc
826          = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
827        Diag(TemplateId->TemplateNameLoc,
828             diag::err_explicit_instantiation_with_definition)
829          << SourceRange(TemplateInfo.TemplateLoc)
830          << CodeModificationHint::CreateInsertion(LAngleLoc, "<>");
831
832        // Create a fake template parameter list that contains only
833        // "template<>", so that we treat this construct as a class
834        // template specialization.
835        FakedParamLists.push_back(
836          Actions.ActOnTemplateParameterList(0, SourceLocation(),
837                                             TemplateInfo.TemplateLoc,
838                                             LAngleLoc,
839                                             0, 0,
840                                             LAngleLoc));
841        TemplateParams = &FakedParamLists;
842      }
843
844      // Build the class template specialization.
845      TagOrTempResult
846        = Actions.ActOnClassTemplateSpecialization(CurScope, TagType, TUK,
847                       StartLoc, SS,
848                       TemplateTy::make(TemplateId->Template),
849                       TemplateId->TemplateNameLoc,
850                       TemplateId->LAngleLoc,
851                       TemplateArgsPtr,
852                       TemplateId->RAngleLoc,
853                       AttrList,
854                       Action::MultiTemplateParamsArg(Actions,
855                                    TemplateParams? &(*TemplateParams)[0] : 0,
856                                 TemplateParams? TemplateParams->size() : 0));
857    }
858    TemplateId->Destroy();
859  } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
860             TUK == Action::TUK_Declaration) {
861    // Explicit instantiation of a member of a class template
862    // specialization, e.g.,
863    //
864    //   template struct Outer<int>::Inner;
865    //
866    TagOrTempResult
867      = Actions.ActOnExplicitInstantiation(CurScope,
868                                           TemplateInfo.ExternLoc,
869                                           TemplateInfo.TemplateLoc,
870                                           TagType, StartLoc, SS, Name,
871                                           NameLoc, AttrList);
872  } else {
873    if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
874        TUK == Action::TUK_Definition) {
875      // FIXME: Diagnose this particular error.
876    }
877
878    bool IsDependent = false;
879
880    // Declaration or definition of a class type
881    TagOrTempResult = Actions.ActOnTag(CurScope, TagType, TUK, StartLoc, SS,
882                                       Name, NameLoc, AttrList, AS,
883                                  Action::MultiTemplateParamsArg(Actions,
884                                    TemplateParams? &(*TemplateParams)[0] : 0,
885                                    TemplateParams? TemplateParams->size() : 0),
886                                       Owned, IsDependent);
887
888    // If ActOnTag said the type was dependent, try again with the
889    // less common call.
890    if (IsDependent)
891      TypeResult = Actions.ActOnDependentTag(CurScope, TagType, TUK,
892                                             SS, Name, StartLoc, NameLoc);
893  }
894
895  // If there is a body, parse it and inform the actions module.
896  if (TUK == Action::TUK_Definition) {
897    assert(Tok.is(tok::l_brace) ||
898           (getLang().CPlusPlus && Tok.is(tok::colon)));
899    if (getLang().CPlusPlus)
900      ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
901    else
902      ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
903  }
904
905  void *Result;
906  if (!TypeResult.isInvalid()) {
907    TagType = DeclSpec::TST_typename;
908    Result = TypeResult.get();
909    Owned = false;
910  } else if (!TagOrTempResult.isInvalid()) {
911    Result = TagOrTempResult.get().getAs<void>();
912  } else {
913    DS.SetTypeSpecError();
914    return;
915  }
916
917  const char *PrevSpec = 0;
918  unsigned DiagID;
919
920  // FIXME: The DeclSpec should keep the locations of both the keyword and the
921  // name (if there is one).
922  SourceLocation TSTLoc = NameLoc.isValid()? NameLoc : StartLoc;
923
924  if (DS.SetTypeSpecType(TagType, TSTLoc, PrevSpec, DiagID,
925                         Result, Owned))
926    Diag(StartLoc, DiagID) << PrevSpec;
927
928  // At this point, we've successfully parsed a class-specifier in 'definition'
929  // form (e.g. "struct foo { int x; }".  While we could just return here, we're
930  // going to look at what comes after it to improve error recovery.  If an
931  // impossible token occurs next, we assume that the programmer forgot a ; at
932  // the end of the declaration and recover that way.
933  //
934  // This switch enumerates the valid "follow" set for definition.
935  if (TUK == Action::TUK_Definition) {
936    switch (Tok.getKind()) {
937    case tok::semi:               // struct foo {...} ;
938    case tok::star:               // struct foo {...} *         P;
939    case tok::amp:                // struct foo {...} &         R = ...
940    case tok::identifier:         // struct foo {...} V         ;
941    case tok::r_paren:            //(struct foo {...} )         {4}
942    case tok::annot_cxxscope:     // struct foo {...} a::       b;
943    case tok::annot_typename:     // struct foo {...} a         ::b;
944    case tok::annot_template_id:  // struct foo {...} a<int>    ::b;
945    case tok::l_paren:            // struct foo {...} (         x);
946    case tok::comma:              // __builtin_offsetof(struct foo{...} ,
947    // Storage-class specifiers
948    case tok::kw_static:          // struct foo {...} static    x;
949    case tok::kw_extern:          // struct foo {...} extern    x;
950    case tok::kw_typedef:         // struct foo {...} typedef   x;
951    case tok::kw_register:        // struct foo {...} register  x;
952    case tok::kw_auto:            // struct foo {...} auto      x;
953    // Type qualifiers
954    case tok::kw_const:           // struct foo {...} const     x;
955    case tok::kw_volatile:        // struct foo {...} volatile  x;
956    case tok::kw_restrict:        // struct foo {...} restrict  x;
957    case tok::kw_inline:          // struct foo {...} inline    foo() {};
958      break;
959
960    case tok::r_brace:  // struct bar { struct foo {...} }
961      // Missing ';' at end of struct is accepted as an extension in C mode.
962      if (!getLang().CPlusPlus) break;
963      // FALL THROUGH.
964    default:
965      ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
966                       TagType == DeclSpec::TST_class ? "class"
967                       : TagType == DeclSpec::TST_struct? "struct" : "union");
968      // Push this token back into the preprocessor and change our current token
969      // to ';' so that the rest of the code recovers as though there were an
970      // ';' after the definition.
971      PP.EnterToken(Tok);
972      Tok.setKind(tok::semi);
973      break;
974    }
975  }
976}
977
978/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
979///
980///       base-clause : [C++ class.derived]
981///         ':' base-specifier-list
982///       base-specifier-list:
983///         base-specifier '...'[opt]
984///         base-specifier-list ',' base-specifier '...'[opt]
985void Parser::ParseBaseClause(DeclPtrTy ClassDecl) {
986  assert(Tok.is(tok::colon) && "Not a base clause");
987  ConsumeToken();
988
989  // Build up an array of parsed base specifiers.
990  llvm::SmallVector<BaseTy *, 8> BaseInfo;
991
992  while (true) {
993    // Parse a base-specifier.
994    BaseResult Result = ParseBaseSpecifier(ClassDecl);
995    if (Result.isInvalid()) {
996      // Skip the rest of this base specifier, up until the comma or
997      // opening brace.
998      SkipUntil(tok::comma, tok::l_brace, true, true);
999    } else {
1000      // Add this to our array of base specifiers.
1001      BaseInfo.push_back(Result.get());
1002    }
1003
1004    // If the next token is a comma, consume it and keep reading
1005    // base-specifiers.
1006    if (Tok.isNot(tok::comma)) break;
1007
1008    // Consume the comma.
1009    ConsumeToken();
1010  }
1011
1012  // Attach the base specifiers
1013  Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
1014}
1015
1016/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
1017/// one entry in the base class list of a class specifier, for example:
1018///    class foo : public bar, virtual private baz {
1019/// 'public bar' and 'virtual private baz' are each base-specifiers.
1020///
1021///       base-specifier: [C++ class.derived]
1022///         ::[opt] nested-name-specifier[opt] class-name
1023///         'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
1024///                        class-name
1025///         access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
1026///                        class-name
1027Parser::BaseResult Parser::ParseBaseSpecifier(DeclPtrTy ClassDecl) {
1028  bool IsVirtual = false;
1029  SourceLocation StartLoc = Tok.getLocation();
1030
1031  // Parse the 'virtual' keyword.
1032  if (Tok.is(tok::kw_virtual))  {
1033    ConsumeToken();
1034    IsVirtual = true;
1035  }
1036
1037  // Parse an (optional) access specifier.
1038  AccessSpecifier Access = getAccessSpecifierIfPresent();
1039  if (Access != AS_none)
1040    ConsumeToken();
1041
1042  // Parse the 'virtual' keyword (again!), in case it came after the
1043  // access specifier.
1044  if (Tok.is(tok::kw_virtual))  {
1045    SourceLocation VirtualLoc = ConsumeToken();
1046    if (IsVirtual) {
1047      // Complain about duplicate 'virtual'
1048      Diag(VirtualLoc, diag::err_dup_virtual)
1049        << CodeModificationHint::CreateRemoval(VirtualLoc);
1050    }
1051
1052    IsVirtual = true;
1053  }
1054
1055  // Parse optional '::' and optional nested-name-specifier.
1056  CXXScopeSpec SS;
1057  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, true);
1058
1059  // The location of the base class itself.
1060  SourceLocation BaseLoc = Tok.getLocation();
1061
1062  // Parse the class-name.
1063  SourceLocation EndLocation;
1064  TypeResult BaseType = ParseClassName(EndLocation, &SS);
1065  if (BaseType.isInvalid())
1066    return true;
1067
1068  // Find the complete source range for the base-specifier.
1069  SourceRange Range(StartLoc, EndLocation);
1070
1071  // Notify semantic analysis that we have parsed a complete
1072  // base-specifier.
1073  return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
1074                                    BaseType.get(), BaseLoc);
1075}
1076
1077/// getAccessSpecifierIfPresent - Determine whether the next token is
1078/// a C++ access-specifier.
1079///
1080///       access-specifier: [C++ class.derived]
1081///         'private'
1082///         'protected'
1083///         'public'
1084AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
1085  switch (Tok.getKind()) {
1086  default: return AS_none;
1087  case tok::kw_private: return AS_private;
1088  case tok::kw_protected: return AS_protected;
1089  case tok::kw_public: return AS_public;
1090  }
1091}
1092
1093void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
1094                                             DeclPtrTy ThisDecl) {
1095  // We just declared a member function. If this member function
1096  // has any default arguments, we'll need to parse them later.
1097  LateParsedMethodDeclaration *LateMethod = 0;
1098  DeclaratorChunk::FunctionTypeInfo &FTI
1099    = DeclaratorInfo.getTypeObject(0).Fun;
1100  for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1101    if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1102      if (!LateMethod) {
1103        // Push this method onto the stack of late-parsed method
1104        // declarations.
1105        getCurrentClass().MethodDecls.push_back(
1106                                LateParsedMethodDeclaration(ThisDecl));
1107        LateMethod = &getCurrentClass().MethodDecls.back();
1108        LateMethod->TemplateScope = CurScope->isTemplateParamScope();
1109
1110        // Add all of the parameters prior to this one (they don't
1111        // have default arguments).
1112        LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1113        for (unsigned I = 0; I < ParamIdx; ++I)
1114          LateMethod->DefaultArgs.push_back(
1115                    LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param));
1116      }
1117
1118      // Add this parameter to the list of parameters (it or may
1119      // not have a default argument).
1120      LateMethod->DefaultArgs.push_back(
1121        LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1122                                  FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1123    }
1124  }
1125}
1126
1127/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1128///
1129///       member-declaration:
1130///         decl-specifier-seq[opt] member-declarator-list[opt] ';'
1131///         function-definition ';'[opt]
1132///         ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1133///         using-declaration                                            [TODO]
1134/// [C++0x] static_assert-declaration
1135///         template-declaration
1136/// [GNU]   '__extension__' member-declaration
1137///
1138///       member-declarator-list:
1139///         member-declarator
1140///         member-declarator-list ',' member-declarator
1141///
1142///       member-declarator:
1143///         declarator pure-specifier[opt]
1144///         declarator constant-initializer[opt]
1145///         identifier[opt] ':' constant-expression
1146///
1147///       pure-specifier:
1148///         '= 0'
1149///
1150///       constant-initializer:
1151///         '=' constant-expression
1152///
1153void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
1154                                       const ParsedTemplateInfo &TemplateInfo) {
1155  // Access declarations.
1156  if (!TemplateInfo.Kind &&
1157      (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1158      TryAnnotateCXXScopeToken() &&
1159      Tok.is(tok::annot_cxxscope)) {
1160    bool isAccessDecl = false;
1161    if (NextToken().is(tok::identifier))
1162      isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1163    else
1164      isAccessDecl = NextToken().is(tok::kw_operator);
1165
1166    if (isAccessDecl) {
1167      // Collect the scope specifier token we annotated earlier.
1168      CXXScopeSpec SS;
1169      ParseOptionalCXXScopeSpecifier(SS, /*ObjectType*/ 0, false);
1170
1171      // Try to parse an unqualified-id.
1172      UnqualifiedId Name;
1173      if (ParseUnqualifiedId(SS, false, true, true, /*ObjectType*/ 0, Name)) {
1174        SkipUntil(tok::semi);
1175        return;
1176      }
1177
1178      // TODO: recover from mistakenly-qualified operator declarations.
1179      if (ExpectAndConsume(tok::semi,
1180                           diag::err_expected_semi_after,
1181                           "access declaration",
1182                           tok::semi))
1183        return;
1184
1185      Actions.ActOnUsingDeclaration(CurScope, AS,
1186                                    false, SourceLocation(),
1187                                    SS, Name,
1188                                    /* AttrList */ 0,
1189                                    /* IsTypeName */ false,
1190                                    SourceLocation());
1191      return;
1192    }
1193  }
1194
1195  // static_assert-declaration
1196  if (Tok.is(tok::kw_static_assert)) {
1197    // FIXME: Check for templates
1198    SourceLocation DeclEnd;
1199    ParseStaticAssertDeclaration(DeclEnd);
1200    return;
1201  }
1202
1203  if (Tok.is(tok::kw_template)) {
1204    assert(!TemplateInfo.TemplateParams &&
1205           "Nested template improperly parsed?");
1206    SourceLocation DeclEnd;
1207    ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
1208                                         AS);
1209    return;
1210  }
1211
1212  // Handle:  member-declaration ::= '__extension__' member-declaration
1213  if (Tok.is(tok::kw___extension__)) {
1214    // __extension__ silences extension warnings in the subexpression.
1215    ExtensionRAIIObject O(Diags);  // Use RAII to do this.
1216    ConsumeToken();
1217    return ParseCXXClassMemberDeclaration(AS, TemplateInfo);
1218  }
1219
1220  // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
1221  // is a bitfield.
1222  ColonProtectionRAIIObject X(*this);
1223
1224  CXX0XAttributeList AttrList;
1225  // Optional C++0x attribute-specifier
1226  if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
1227    AttrList = ParseCXX0XAttributes();
1228
1229  if (Tok.is(tok::kw_using)) {
1230    // FIXME: Check for template aliases
1231
1232    if (AttrList.HasAttr)
1233      Diag(AttrList.Range.getBegin(), diag::err_attributes_not_allowed)
1234        << AttrList.Range;
1235
1236    // Eat 'using'.
1237    SourceLocation UsingLoc = ConsumeToken();
1238
1239    if (Tok.is(tok::kw_namespace)) {
1240      Diag(UsingLoc, diag::err_using_namespace_in_class);
1241      SkipUntil(tok::semi, true, true);
1242    } else {
1243      SourceLocation DeclEnd;
1244      // Otherwise, it must be using-declaration.
1245      ParseUsingDeclaration(Declarator::MemberContext, UsingLoc, DeclEnd, AS);
1246    }
1247    return;
1248  }
1249
1250  SourceLocation DSStart = Tok.getLocation();
1251  // decl-specifier-seq:
1252  // Parse the common declaration-specifiers piece.
1253  ParsingDeclSpec DS(*this);
1254  DS.AddAttributes(AttrList.AttrList);
1255  ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
1256
1257  Action::MultiTemplateParamsArg TemplateParams(Actions,
1258      TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1259      TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1260
1261  if (Tok.is(tok::semi)) {
1262    ConsumeToken();
1263    Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
1264    return;
1265  }
1266
1267  ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
1268
1269  if (Tok.isNot(tok::colon)) {
1270    // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1271    ColonProtectionRAIIObject X(*this);
1272
1273    // Parse the first declarator.
1274    ParseDeclarator(DeclaratorInfo);
1275    // Error parsing the declarator?
1276    if (!DeclaratorInfo.hasName()) {
1277      // If so, skip until the semi-colon or a }.
1278      SkipUntil(tok::r_brace, true);
1279      if (Tok.is(tok::semi))
1280        ConsumeToken();
1281      return;
1282    }
1283
1284    // If attributes exist after the declarator, but before an '{', parse them.
1285    if (Tok.is(tok::kw___attribute)) {
1286      SourceLocation Loc;
1287      AttributeList *AttrList = ParseGNUAttributes(&Loc);
1288      DeclaratorInfo.AddAttributes(AttrList, Loc);
1289    }
1290
1291    // function-definition:
1292    if (Tok.is(tok::l_brace)
1293        || (DeclaratorInfo.isFunctionDeclarator() &&
1294            (Tok.is(tok::colon) || Tok.is(tok::kw_try)))) {
1295      if (!DeclaratorInfo.isFunctionDeclarator()) {
1296        Diag(Tok, diag::err_func_def_no_params);
1297        ConsumeBrace();
1298        SkipUntil(tok::r_brace, true);
1299        return;
1300      }
1301
1302      if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1303        Diag(Tok, diag::err_function_declared_typedef);
1304        // This recovery skips the entire function body. It would be nice
1305        // to simply call ParseCXXInlineMethodDef() below, however Sema
1306        // assumes the declarator represents a function, not a typedef.
1307        ConsumeBrace();
1308        SkipUntil(tok::r_brace, true);
1309        return;
1310      }
1311
1312      ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo);
1313      return;
1314    }
1315  }
1316
1317  // member-declarator-list:
1318  //   member-declarator
1319  //   member-declarator-list ',' member-declarator
1320
1321  llvm::SmallVector<DeclPtrTy, 8> DeclsInGroup;
1322  OwningExprResult BitfieldSize(Actions);
1323  OwningExprResult Init(Actions);
1324  bool Deleted = false;
1325
1326  while (1) {
1327    // member-declarator:
1328    //   declarator pure-specifier[opt]
1329    //   declarator constant-initializer[opt]
1330    //   identifier[opt] ':' constant-expression
1331
1332    if (Tok.is(tok::colon)) {
1333      ConsumeToken();
1334      BitfieldSize = ParseConstantExpression();
1335      if (BitfieldSize.isInvalid())
1336        SkipUntil(tok::comma, true, true);
1337    }
1338
1339    // pure-specifier:
1340    //   '= 0'
1341    //
1342    // constant-initializer:
1343    //   '=' constant-expression
1344    //
1345    // defaulted/deleted function-definition:
1346    //   '=' 'default'                          [TODO]
1347    //   '=' 'delete'
1348
1349    if (Tok.is(tok::equal)) {
1350      ConsumeToken();
1351      if (getLang().CPlusPlus0x && Tok.is(tok::kw_delete)) {
1352        ConsumeToken();
1353        Deleted = true;
1354      } else {
1355        Init = ParseInitializer();
1356        if (Init.isInvalid())
1357          SkipUntil(tok::comma, true, true);
1358      }
1359    }
1360
1361    // If attributes exist after the declarator, parse them.
1362    if (Tok.is(tok::kw___attribute)) {
1363      SourceLocation Loc;
1364      AttributeList *AttrList = ParseGNUAttributes(&Loc);
1365      DeclaratorInfo.AddAttributes(AttrList, Loc);
1366    }
1367
1368    // NOTE: If Sema is the Action module and declarator is an instance field,
1369    // this call will *not* return the created decl; It will return null.
1370    // See Sema::ActOnCXXMemberDeclarator for details.
1371
1372    DeclPtrTy ThisDecl;
1373    if (DS.isFriendSpecified()) {
1374      // TODO: handle initializers, bitfields, 'delete'
1375      ThisDecl = Actions.ActOnFriendFunctionDecl(CurScope, DeclaratorInfo,
1376                                                 /*IsDefinition*/ false,
1377                                                 move(TemplateParams));
1378    } else {
1379      ThisDecl = Actions.ActOnCXXMemberDeclarator(CurScope, AS,
1380                                                  DeclaratorInfo,
1381                                                  move(TemplateParams),
1382                                                  BitfieldSize.release(),
1383                                                  Init.release(),
1384                                                  /*IsDefinition*/Deleted,
1385                                                  Deleted);
1386    }
1387    if (ThisDecl)
1388      DeclsInGroup.push_back(ThisDecl);
1389
1390    if (DeclaratorInfo.isFunctionDeclarator() &&
1391        DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1392          != DeclSpec::SCS_typedef) {
1393      HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
1394    }
1395
1396    DeclaratorInfo.complete(ThisDecl);
1397
1398    // If we don't have a comma, it is either the end of the list (a ';')
1399    // or an error, bail out.
1400    if (Tok.isNot(tok::comma))
1401      break;
1402
1403    // Consume the comma.
1404    ConsumeToken();
1405
1406    // Parse the next declarator.
1407    DeclaratorInfo.clear();
1408    BitfieldSize = 0;
1409    Init = 0;
1410    Deleted = false;
1411
1412    // Attributes are only allowed on the second declarator.
1413    if (Tok.is(tok::kw___attribute)) {
1414      SourceLocation Loc;
1415      AttributeList *AttrList = ParseGNUAttributes(&Loc);
1416      DeclaratorInfo.AddAttributes(AttrList, Loc);
1417    }
1418
1419    if (Tok.isNot(tok::colon))
1420      ParseDeclarator(DeclaratorInfo);
1421  }
1422
1423  if (ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
1424    // Skip to end of block or statement.
1425    SkipUntil(tok::r_brace, true, true);
1426    // If we stopped at a ';', eat it.
1427    if (Tok.is(tok::semi)) ConsumeToken();
1428    return;
1429  }
1430
1431  Actions.FinalizeDeclaratorGroup(CurScope, DS, DeclsInGroup.data(),
1432                                  DeclsInGroup.size());
1433}
1434
1435/// ParseCXXMemberSpecification - Parse the class definition.
1436///
1437///       member-specification:
1438///         member-declaration member-specification[opt]
1439///         access-specifier ':' member-specification[opt]
1440///
1441void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
1442                                         unsigned TagType, DeclPtrTy TagDecl) {
1443  assert((TagType == DeclSpec::TST_struct ||
1444         TagType == DeclSpec::TST_union  ||
1445         TagType == DeclSpec::TST_class) && "Invalid TagType!");
1446
1447  PrettyStackTraceActionsDecl CrashInfo(TagDecl, RecordLoc, Actions,
1448                                        PP.getSourceManager(),
1449                                        "parsing struct/union/class body");
1450
1451  // Determine whether this is a non-nested class. Note that local
1452  // classes are *not* considered to be nested classes.
1453  bool NonNestedClass = true;
1454  if (!ClassStack.empty()) {
1455    for (const Scope *S = CurScope; S; S = S->getParent()) {
1456      if (S->isClassScope()) {
1457        // We're inside a class scope, so this is a nested class.
1458        NonNestedClass = false;
1459        break;
1460      }
1461
1462      if ((S->getFlags() & Scope::FnScope)) {
1463        // If we're in a function or function template declared in the
1464        // body of a class, then this is a local class rather than a
1465        // nested class.
1466        const Scope *Parent = S->getParent();
1467        if (Parent->isTemplateParamScope())
1468          Parent = Parent->getParent();
1469        if (Parent->isClassScope())
1470          break;
1471      }
1472    }
1473  }
1474
1475  // Enter a scope for the class.
1476  ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
1477
1478  // Note that we are parsing a new (potentially-nested) class definition.
1479  ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
1480
1481  if (TagDecl)
1482    Actions.ActOnTagStartDefinition(CurScope, TagDecl);
1483
1484  if (Tok.is(tok::colon)) {
1485    ParseBaseClause(TagDecl);
1486
1487    if (!Tok.is(tok::l_brace)) {
1488      Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
1489      return;
1490    }
1491  }
1492
1493  assert(Tok.is(tok::l_brace));
1494
1495  SourceLocation LBraceLoc = ConsumeBrace();
1496
1497  if (!TagDecl) {
1498    SkipUntil(tok::r_brace, false, false);
1499    return;
1500  }
1501
1502  Actions.ActOnStartCXXMemberDeclarations(CurScope, TagDecl, LBraceLoc);
1503
1504  // C++ 11p3: Members of a class defined with the keyword class are private
1505  // by default. Members of a class defined with the keywords struct or union
1506  // are public by default.
1507  AccessSpecifier CurAS;
1508  if (TagType == DeclSpec::TST_class)
1509    CurAS = AS_private;
1510  else
1511    CurAS = AS_public;
1512
1513  // While we still have something to read, read the member-declarations.
1514  while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1515    // Each iteration of this loop reads one member-declaration.
1516
1517    // Check for extraneous top-level semicolon.
1518    if (Tok.is(tok::semi)) {
1519      Diag(Tok, diag::ext_extra_struct_semi)
1520        << CodeModificationHint::CreateRemoval(Tok.getLocation());
1521      ConsumeToken();
1522      continue;
1523    }
1524
1525    AccessSpecifier AS = getAccessSpecifierIfPresent();
1526    if (AS != AS_none) {
1527      // Current token is a C++ access specifier.
1528      CurAS = AS;
1529      ConsumeToken();
1530      ExpectAndConsume(tok::colon, diag::err_expected_colon);
1531      continue;
1532    }
1533
1534    // FIXME: Make sure we don't have a template here.
1535
1536    // Parse all the comma separated declarators.
1537    ParseCXXClassMemberDeclaration(CurAS);
1538  }
1539
1540  SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
1541
1542  AttributeList *AttrList = 0;
1543  // If attributes exist after class contents, parse them.
1544  if (Tok.is(tok::kw___attribute))
1545    AttrList = ParseGNUAttributes(); // FIXME: where should I put them?
1546
1547  Actions.ActOnFinishCXXMemberSpecification(CurScope, RecordLoc, TagDecl,
1548                                            LBraceLoc, RBraceLoc);
1549
1550  // C++ 9.2p2: Within the class member-specification, the class is regarded as
1551  // complete within function bodies, default arguments,
1552  // exception-specifications, and constructor ctor-initializers (including
1553  // such things in nested classes).
1554  //
1555  // FIXME: Only function bodies and constructor ctor-initializers are
1556  // parsed correctly, fix the rest.
1557  if (NonNestedClass) {
1558    // We are not inside a nested class. This class and its nested classes
1559    // are complete and we can parse the delayed portions of method
1560    // declarations and the lexed inline method definitions.
1561    ParseLexedMethodDeclarations(getCurrentClass());
1562    ParseLexedMethodDefs(getCurrentClass());
1563  }
1564
1565  // Leave the class scope.
1566  ParsingDef.Pop();
1567  ClassScope.Exit();
1568
1569  Actions.ActOnTagFinishDefinition(CurScope, TagDecl, RBraceLoc);
1570}
1571
1572/// ParseConstructorInitializer - Parse a C++ constructor initializer,
1573/// which explicitly initializes the members or base classes of a
1574/// class (C++ [class.base.init]). For example, the three initializers
1575/// after the ':' in the Derived constructor below:
1576///
1577/// @code
1578/// class Base { };
1579/// class Derived : Base {
1580///   int x;
1581///   float f;
1582/// public:
1583///   Derived(float f) : Base(), x(17), f(f) { }
1584/// };
1585/// @endcode
1586///
1587/// [C++]  ctor-initializer:
1588///          ':' mem-initializer-list
1589///
1590/// [C++]  mem-initializer-list:
1591///          mem-initializer
1592///          mem-initializer , mem-initializer-list
1593void Parser::ParseConstructorInitializer(DeclPtrTy ConstructorDecl) {
1594  assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
1595
1596  SourceLocation ColonLoc = ConsumeToken();
1597
1598  llvm::SmallVector<MemInitTy*, 4> MemInitializers;
1599  bool AnyErrors = false;
1600
1601  do {
1602    MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
1603    if (!MemInit.isInvalid())
1604      MemInitializers.push_back(MemInit.get());
1605    else
1606      AnyErrors = true;
1607
1608    if (Tok.is(tok::comma))
1609      ConsumeToken();
1610    else if (Tok.is(tok::l_brace))
1611      break;
1612    else {
1613      // Skip over garbage, until we get to '{'.  Don't eat the '{'.
1614      Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
1615      SkipUntil(tok::l_brace, true, true);
1616      break;
1617    }
1618  } while (true);
1619
1620  Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
1621                               MemInitializers.data(), MemInitializers.size(),
1622                               AnyErrors);
1623}
1624
1625/// ParseMemInitializer - Parse a C++ member initializer, which is
1626/// part of a constructor initializer that explicitly initializes one
1627/// member or base class (C++ [class.base.init]). See
1628/// ParseConstructorInitializer for an example.
1629///
1630/// [C++] mem-initializer:
1631///         mem-initializer-id '(' expression-list[opt] ')'
1632///
1633/// [C++] mem-initializer-id:
1634///         '::'[opt] nested-name-specifier[opt] class-name
1635///         identifier
1636Parser::MemInitResult Parser::ParseMemInitializer(DeclPtrTy ConstructorDecl) {
1637  // parse '::'[opt] nested-name-specifier[opt]
1638  CXXScopeSpec SS;
1639  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
1640  TypeTy *TemplateTypeTy = 0;
1641  if (Tok.is(tok::annot_template_id)) {
1642    TemplateIdAnnotation *TemplateId
1643      = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
1644    if (TemplateId->Kind == TNK_Type_template ||
1645        TemplateId->Kind == TNK_Dependent_template_name) {
1646      AnnotateTemplateIdTokenAsType(&SS);
1647      assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
1648      TemplateTypeTy = Tok.getAnnotationValue();
1649    }
1650  }
1651  if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
1652    Diag(Tok, diag::err_expected_member_or_base_name);
1653    return true;
1654  }
1655
1656  // Get the identifier. This may be a member name or a class name,
1657  // but we'll let the semantic analysis determine which it is.
1658  IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
1659  SourceLocation IdLoc = ConsumeToken();
1660
1661  // Parse the '('.
1662  if (Tok.isNot(tok::l_paren)) {
1663    Diag(Tok, diag::err_expected_lparen);
1664    return true;
1665  }
1666  SourceLocation LParenLoc = ConsumeParen();
1667
1668  // Parse the optional expression-list.
1669  ExprVector ArgExprs(Actions);
1670  CommaLocsTy CommaLocs;
1671  if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
1672    SkipUntil(tok::r_paren);
1673    return true;
1674  }
1675
1676  SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1677
1678  return Actions.ActOnMemInitializer(ConstructorDecl, CurScope, SS, II,
1679                                     TemplateTypeTy, IdLoc,
1680                                     LParenLoc, ArgExprs.take(),
1681                                     ArgExprs.size(), CommaLocs.data(),
1682                                     RParenLoc);
1683}
1684
1685/// ParseExceptionSpecification - Parse a C++ exception-specification
1686/// (C++ [except.spec]).
1687///
1688///       exception-specification:
1689///         'throw' '(' type-id-list [opt] ')'
1690/// [MS]    'throw' '(' '...' ')'
1691///
1692///       type-id-list:
1693///         type-id
1694///         type-id-list ',' type-id
1695///
1696bool Parser::ParseExceptionSpecification(SourceLocation &EndLoc,
1697                                         llvm::SmallVector<TypeTy*, 2>
1698                                             &Exceptions,
1699                                         llvm::SmallVector<SourceRange, 2>
1700                                             &Ranges,
1701                                         bool &hasAnyExceptionSpec) {
1702  assert(Tok.is(tok::kw_throw) && "expected throw");
1703
1704  SourceLocation ThrowLoc = ConsumeToken();
1705
1706  if (!Tok.is(tok::l_paren)) {
1707    return Diag(Tok, diag::err_expected_lparen_after) << "throw";
1708  }
1709  SourceLocation LParenLoc = ConsumeParen();
1710
1711  // Parse throw(...), a Microsoft extension that means "this function
1712  // can throw anything".
1713  if (Tok.is(tok::ellipsis)) {
1714    hasAnyExceptionSpec = true;
1715    SourceLocation EllipsisLoc = ConsumeToken();
1716    if (!getLang().Microsoft)
1717      Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
1718    EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1719    return false;
1720  }
1721
1722  // Parse the sequence of type-ids.
1723  SourceRange Range;
1724  while (Tok.isNot(tok::r_paren)) {
1725    TypeResult Res(ParseTypeName(&Range));
1726    if (!Res.isInvalid()) {
1727      Exceptions.push_back(Res.get());
1728      Ranges.push_back(Range);
1729    }
1730    if (Tok.is(tok::comma))
1731      ConsumeToken();
1732    else
1733      break;
1734  }
1735
1736  EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1737  return false;
1738}
1739
1740/// \brief We have just started parsing the definition of a new class,
1741/// so push that class onto our stack of classes that is currently
1742/// being parsed.
1743void Parser::PushParsingClass(DeclPtrTy ClassDecl, bool NonNestedClass) {
1744  assert((NonNestedClass || !ClassStack.empty()) &&
1745         "Nested class without outer class");
1746  ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
1747}
1748
1749/// \brief Deallocate the given parsed class and all of its nested
1750/// classes.
1751void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
1752  for (unsigned I = 0, N = Class->NestedClasses.size(); I != N; ++I)
1753    DeallocateParsedClasses(Class->NestedClasses[I]);
1754  delete Class;
1755}
1756
1757/// \brief Pop the top class of the stack of classes that are
1758/// currently being parsed.
1759///
1760/// This routine should be called when we have finished parsing the
1761/// definition of a class, but have not yet popped the Scope
1762/// associated with the class's definition.
1763///
1764/// \returns true if the class we've popped is a top-level class,
1765/// false otherwise.
1766void Parser::PopParsingClass() {
1767  assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
1768
1769  ParsingClass *Victim = ClassStack.top();
1770  ClassStack.pop();
1771  if (Victim->TopLevelClass) {
1772    // Deallocate all of the nested classes of this class,
1773    // recursively: we don't need to keep any of this information.
1774    DeallocateParsedClasses(Victim);
1775    return;
1776  }
1777  assert(!ClassStack.empty() && "Missing top-level class?");
1778
1779  if (Victim->MethodDecls.empty() && Victim->MethodDefs.empty() &&
1780      Victim->NestedClasses.empty()) {
1781    // The victim is a nested class, but we will not need to perform
1782    // any processing after the definition of this class since it has
1783    // no members whose handling was delayed. Therefore, we can just
1784    // remove this nested class.
1785    delete Victim;
1786    return;
1787  }
1788
1789  // This nested class has some members that will need to be processed
1790  // after the top-level class is completely defined. Therefore, add
1791  // it to the list of nested classes within its parent.
1792  assert(CurScope->isClassScope() && "Nested class outside of class scope?");
1793  ClassStack.top()->NestedClasses.push_back(Victim);
1794  Victim->TemplateScope = CurScope->getParent()->isTemplateParamScope();
1795}
1796
1797/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
1798/// parses standard attributes.
1799///
1800/// [C++0x] attribute-specifier:
1801///         '[' '[' attribute-list ']' ']'
1802///
1803/// [C++0x] attribute-list:
1804///         attribute[opt]
1805///         attribute-list ',' attribute[opt]
1806///
1807/// [C++0x] attribute:
1808///         attribute-token attribute-argument-clause[opt]
1809///
1810/// [C++0x] attribute-token:
1811///         identifier
1812///         attribute-scoped-token
1813///
1814/// [C++0x] attribute-scoped-token:
1815///         attribute-namespace '::' identifier
1816///
1817/// [C++0x] attribute-namespace:
1818///         identifier
1819///
1820/// [C++0x] attribute-argument-clause:
1821///         '(' balanced-token-seq ')'
1822///
1823/// [C++0x] balanced-token-seq:
1824///         balanced-token
1825///         balanced-token-seq balanced-token
1826///
1827/// [C++0x] balanced-token:
1828///         '(' balanced-token-seq ')'
1829///         '[' balanced-token-seq ']'
1830///         '{' balanced-token-seq '}'
1831///         any token but '(', ')', '[', ']', '{', or '}'
1832CXX0XAttributeList Parser::ParseCXX0XAttributes(SourceLocation *EndLoc) {
1833  assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
1834      && "Not a C++0x attribute list");
1835
1836  SourceLocation StartLoc = Tok.getLocation(), Loc;
1837  AttributeList *CurrAttr = 0;
1838
1839  ConsumeBracket();
1840  ConsumeBracket();
1841
1842  if (Tok.is(tok::comma)) {
1843    Diag(Tok.getLocation(), diag::err_expected_ident);
1844    ConsumeToken();
1845  }
1846
1847  while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
1848    // attribute not present
1849    if (Tok.is(tok::comma)) {
1850      ConsumeToken();
1851      continue;
1852    }
1853
1854    IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
1855    SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
1856
1857    // scoped attribute
1858    if (Tok.is(tok::coloncolon)) {
1859      ConsumeToken();
1860
1861      if (!Tok.is(tok::identifier)) {
1862        Diag(Tok.getLocation(), diag::err_expected_ident);
1863        SkipUntil(tok::r_square, tok::comma, true, true);
1864        continue;
1865      }
1866
1867      ScopeName = AttrName;
1868      ScopeLoc = AttrLoc;
1869
1870      AttrName = Tok.getIdentifierInfo();
1871      AttrLoc = ConsumeToken();
1872    }
1873
1874    bool AttrParsed = false;
1875    // No scoped names are supported; ideally we could put all non-standard
1876    // attributes into namespaces.
1877    if (!ScopeName) {
1878      switch(AttributeList::getKind(AttrName))
1879      {
1880      // No arguments
1881      case AttributeList::AT_base_check:
1882      case AttributeList::AT_carries_dependency:
1883      case AttributeList::AT_final:
1884      case AttributeList::AT_hiding:
1885      case AttributeList::AT_noreturn:
1886      case AttributeList::AT_override: {
1887        if (Tok.is(tok::l_paren)) {
1888          Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
1889            << AttrName->getName();
1890          break;
1891        }
1892
1893        CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc, 0,
1894                                     SourceLocation(), 0, 0, CurrAttr, false,
1895                                     true);
1896        AttrParsed = true;
1897        break;
1898      }
1899
1900      // One argument; must be a type-id or assignment-expression
1901      case AttributeList::AT_aligned: {
1902        if (Tok.isNot(tok::l_paren)) {
1903          Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
1904            << AttrName->getName();
1905          break;
1906        }
1907        SourceLocation ParamLoc = ConsumeParen();
1908
1909        OwningExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
1910
1911        MatchRHSPunctuation(tok::r_paren, ParamLoc);
1912
1913        ExprVector ArgExprs(Actions);
1914        ArgExprs.push_back(ArgExpr.release());
1915        CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc,
1916                                     0, ParamLoc, ArgExprs.take(), 1, CurrAttr,
1917                                     false, true);
1918
1919        AttrParsed = true;
1920        break;
1921      }
1922
1923      // Silence warnings
1924      default: break;
1925      }
1926    }
1927
1928    // Skip the entire parameter clause, if any
1929    if (!AttrParsed && Tok.is(tok::l_paren)) {
1930      ConsumeParen();
1931      // SkipUntil maintains the balancedness of tokens.
1932      SkipUntil(tok::r_paren, false);
1933    }
1934  }
1935
1936  if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
1937    SkipUntil(tok::r_square, false);
1938  Loc = Tok.getLocation();
1939  if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
1940    SkipUntil(tok::r_square, false);
1941
1942  CXX0XAttributeList Attr (CurrAttr, SourceRange(StartLoc, Loc), true);
1943  return Attr;
1944}
1945
1946/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
1947/// attribute.
1948///
1949/// FIXME: Simply returns an alignof() expression if the argument is a
1950/// type. Ideally, the type should be propagated directly into Sema.
1951///
1952/// [C++0x] 'align' '(' type-id ')'
1953/// [C++0x] 'align' '(' assignment-expression ')'
1954Parser::OwningExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
1955  if (isTypeIdInParens()) {
1956    EnterExpressionEvaluationContext Unevaluated(Actions,
1957                                                  Action::Unevaluated);
1958    SourceLocation TypeLoc = Tok.getLocation();
1959    TypeTy *Ty = ParseTypeName().get();
1960    SourceRange TypeRange(Start, Tok.getLocation());
1961    return Actions.ActOnSizeOfAlignOfExpr(TypeLoc, false, true, Ty,
1962                                              TypeRange);
1963  } else
1964    return ParseConstantExpression();
1965}
1966