ParseDeclCXX.cpp revision b988f9cde9bce0848d081b5cd1f6a48b86ec8108
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
929/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
930///
931///       base-clause : [C++ class.derived]
932///         ':' base-specifier-list
933///       base-specifier-list:
934///         base-specifier '...'[opt]
935///         base-specifier-list ',' base-specifier '...'[opt]
936void Parser::ParseBaseClause(DeclPtrTy ClassDecl) {
937  assert(Tok.is(tok::colon) && "Not a base clause");
938  ConsumeToken();
939
940  // Build up an array of parsed base specifiers.
941  llvm::SmallVector<BaseTy *, 8> BaseInfo;
942
943  while (true) {
944    // Parse a base-specifier.
945    BaseResult Result = ParseBaseSpecifier(ClassDecl);
946    if (Result.isInvalid()) {
947      // Skip the rest of this base specifier, up until the comma or
948      // opening brace.
949      SkipUntil(tok::comma, tok::l_brace, true, true);
950    } else {
951      // Add this to our array of base specifiers.
952      BaseInfo.push_back(Result.get());
953    }
954
955    // If the next token is a comma, consume it and keep reading
956    // base-specifiers.
957    if (Tok.isNot(tok::comma)) break;
958
959    // Consume the comma.
960    ConsumeToken();
961  }
962
963  // Attach the base specifiers
964  Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
965}
966
967/// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
968/// one entry in the base class list of a class specifier, for example:
969///    class foo : public bar, virtual private baz {
970/// 'public bar' and 'virtual private baz' are each base-specifiers.
971///
972///       base-specifier: [C++ class.derived]
973///         ::[opt] nested-name-specifier[opt] class-name
974///         'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
975///                        class-name
976///         access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
977///                        class-name
978Parser::BaseResult Parser::ParseBaseSpecifier(DeclPtrTy ClassDecl) {
979  bool IsVirtual = false;
980  SourceLocation StartLoc = Tok.getLocation();
981
982  // Parse the 'virtual' keyword.
983  if (Tok.is(tok::kw_virtual))  {
984    ConsumeToken();
985    IsVirtual = true;
986  }
987
988  // Parse an (optional) access specifier.
989  AccessSpecifier Access = getAccessSpecifierIfPresent();
990  if (Access != AS_none)
991    ConsumeToken();
992
993  // Parse the 'virtual' keyword (again!), in case it came after the
994  // access specifier.
995  if (Tok.is(tok::kw_virtual))  {
996    SourceLocation VirtualLoc = ConsumeToken();
997    if (IsVirtual) {
998      // Complain about duplicate 'virtual'
999      Diag(VirtualLoc, diag::err_dup_virtual)
1000        << CodeModificationHint::CreateRemoval(VirtualLoc);
1001    }
1002
1003    IsVirtual = true;
1004  }
1005
1006  // Parse optional '::' and optional nested-name-specifier.
1007  CXXScopeSpec SS;
1008  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, true);
1009
1010  // The location of the base class itself.
1011  SourceLocation BaseLoc = Tok.getLocation();
1012
1013  // Parse the class-name.
1014  SourceLocation EndLocation;
1015  TypeResult BaseType = ParseClassName(EndLocation, &SS);
1016  if (BaseType.isInvalid())
1017    return true;
1018
1019  // Find the complete source range for the base-specifier.
1020  SourceRange Range(StartLoc, EndLocation);
1021
1022  // Notify semantic analysis that we have parsed a complete
1023  // base-specifier.
1024  return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
1025                                    BaseType.get(), BaseLoc);
1026}
1027
1028/// getAccessSpecifierIfPresent - Determine whether the next token is
1029/// a C++ access-specifier.
1030///
1031///       access-specifier: [C++ class.derived]
1032///         'private'
1033///         'protected'
1034///         'public'
1035AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
1036  switch (Tok.getKind()) {
1037  default: return AS_none;
1038  case tok::kw_private: return AS_private;
1039  case tok::kw_protected: return AS_protected;
1040  case tok::kw_public: return AS_public;
1041  }
1042}
1043
1044void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
1045                                             DeclPtrTy ThisDecl) {
1046  // We just declared a member function. If this member function
1047  // has any default arguments, we'll need to parse them later.
1048  LateParsedMethodDeclaration *LateMethod = 0;
1049  DeclaratorChunk::FunctionTypeInfo &FTI
1050    = DeclaratorInfo.getTypeObject(0).Fun;
1051  for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
1052    if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
1053      if (!LateMethod) {
1054        // Push this method onto the stack of late-parsed method
1055        // declarations.
1056        getCurrentClass().MethodDecls.push_back(
1057                                LateParsedMethodDeclaration(ThisDecl));
1058        LateMethod = &getCurrentClass().MethodDecls.back();
1059        LateMethod->TemplateScope = CurScope->isTemplateParamScope();
1060
1061        // Add all of the parameters prior to this one (they don't
1062        // have default arguments).
1063        LateMethod->DefaultArgs.reserve(FTI.NumArgs);
1064        for (unsigned I = 0; I < ParamIdx; ++I)
1065          LateMethod->DefaultArgs.push_back(
1066                    LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param));
1067      }
1068
1069      // Add this parameter to the list of parameters (it or may
1070      // not have a default argument).
1071      LateMethod->DefaultArgs.push_back(
1072        LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
1073                                  FTI.ArgInfo[ParamIdx].DefaultArgTokens));
1074    }
1075  }
1076}
1077
1078/// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
1079///
1080///       member-declaration:
1081///         decl-specifier-seq[opt] member-declarator-list[opt] ';'
1082///         function-definition ';'[opt]
1083///         ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
1084///         using-declaration                                            [TODO]
1085/// [C++0x] static_assert-declaration
1086///         template-declaration
1087/// [GNU]   '__extension__' member-declaration
1088///
1089///       member-declarator-list:
1090///         member-declarator
1091///         member-declarator-list ',' member-declarator
1092///
1093///       member-declarator:
1094///         declarator pure-specifier[opt]
1095///         declarator constant-initializer[opt]
1096///         identifier[opt] ':' constant-expression
1097///
1098///       pure-specifier:
1099///         '= 0'
1100///
1101///       constant-initializer:
1102///         '=' constant-expression
1103///
1104void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
1105                                       const ParsedTemplateInfo &TemplateInfo) {
1106  // Access declarations.
1107  if (!TemplateInfo.Kind &&
1108      (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1109      TryAnnotateCXXScopeToken() &&
1110      Tok.is(tok::annot_cxxscope)) {
1111    bool isAccessDecl = false;
1112    if (NextToken().is(tok::identifier))
1113      isAccessDecl = GetLookAheadToken(2).is(tok::semi);
1114    else
1115      isAccessDecl = NextToken().is(tok::kw_operator);
1116
1117    if (isAccessDecl) {
1118      // Collect the scope specifier token we annotated earlier.
1119      CXXScopeSpec SS;
1120      ParseOptionalCXXScopeSpecifier(SS, /*ObjectType*/ 0, false);
1121
1122      // Try to parse an unqualified-id.
1123      UnqualifiedId Name;
1124      if (ParseUnqualifiedId(SS, false, true, true, /*ObjectType*/ 0, Name)) {
1125        SkipUntil(tok::semi);
1126        return;
1127      }
1128
1129      // TODO: recover from mistakenly-qualified operator declarations.
1130      if (ExpectAndConsume(tok::semi,
1131                           diag::err_expected_semi_after,
1132                           "access declaration",
1133                           tok::semi))
1134        return;
1135
1136      Actions.ActOnUsingDeclaration(CurScope, AS,
1137                                    false, SourceLocation(),
1138                                    SS, Name,
1139                                    /* AttrList */ 0,
1140                                    /* IsTypeName */ false,
1141                                    SourceLocation());
1142      return;
1143    }
1144  }
1145
1146  // static_assert-declaration
1147  if (Tok.is(tok::kw_static_assert)) {
1148    // FIXME: Check for templates
1149    SourceLocation DeclEnd;
1150    ParseStaticAssertDeclaration(DeclEnd);
1151    return;
1152  }
1153
1154  if (Tok.is(tok::kw_template)) {
1155    assert(!TemplateInfo.TemplateParams &&
1156           "Nested template improperly parsed?");
1157    SourceLocation DeclEnd;
1158    ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
1159                                         AS);
1160    return;
1161  }
1162
1163  // Handle:  member-declaration ::= '__extension__' member-declaration
1164  if (Tok.is(tok::kw___extension__)) {
1165    // __extension__ silences extension warnings in the subexpression.
1166    ExtensionRAIIObject O(Diags);  // Use RAII to do this.
1167    ConsumeToken();
1168    return ParseCXXClassMemberDeclaration(AS, TemplateInfo);
1169  }
1170
1171  // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1172  ColonProtectionRAIIObject X(*this);
1173
1174  CXX0XAttributeList AttrList;
1175  // Optional C++0x attribute-specifier
1176  if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
1177    AttrList = ParseCXX0XAttributes();
1178
1179  if (Tok.is(tok::kw_using)) {
1180    // FIXME: Check for template aliases
1181
1182    if (AttrList.HasAttr)
1183      Diag(AttrList.Range.getBegin(), diag::err_attributes_not_allowed)
1184        << AttrList.Range;
1185
1186    // Eat 'using'.
1187    SourceLocation UsingLoc = ConsumeToken();
1188
1189    if (Tok.is(tok::kw_namespace)) {
1190      Diag(UsingLoc, diag::err_using_namespace_in_class);
1191      SkipUntil(tok::semi, true, true);
1192    }
1193    else {
1194      SourceLocation DeclEnd;
1195      // Otherwise, it must be using-declaration.
1196      ParseUsingDeclaration(Declarator::MemberContext, UsingLoc, DeclEnd, AS);
1197    }
1198    return;
1199  }
1200
1201  SourceLocation DSStart = Tok.getLocation();
1202  // decl-specifier-seq:
1203  // Parse the common declaration-specifiers piece.
1204  ParsingDeclSpec DS(*this);
1205  DS.AddAttributes(AttrList.AttrList);
1206  ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class);
1207
1208  Action::MultiTemplateParamsArg TemplateParams(Actions,
1209      TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
1210      TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
1211
1212  if (Tok.is(tok::semi)) {
1213    ConsumeToken();
1214    Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
1215    return;
1216  }
1217
1218  ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
1219
1220  if (Tok.isNot(tok::colon)) {
1221    // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
1222    ColonProtectionRAIIObject X(*this);
1223
1224    // Parse the first declarator.
1225    ParseDeclarator(DeclaratorInfo);
1226    // Error parsing the declarator?
1227    if (!DeclaratorInfo.hasName()) {
1228      // If so, skip until the semi-colon or a }.
1229      SkipUntil(tok::r_brace, true);
1230      if (Tok.is(tok::semi))
1231        ConsumeToken();
1232      return;
1233    }
1234
1235    // If attributes exist after the declarator, but before an '{', parse them.
1236    if (Tok.is(tok::kw___attribute)) {
1237      SourceLocation Loc;
1238      AttributeList *AttrList = ParseGNUAttributes(&Loc);
1239      DeclaratorInfo.AddAttributes(AttrList, Loc);
1240    }
1241
1242    // function-definition:
1243    if (Tok.is(tok::l_brace)
1244        || (DeclaratorInfo.isFunctionDeclarator() &&
1245            (Tok.is(tok::colon) || Tok.is(tok::kw_try)))) {
1246      if (!DeclaratorInfo.isFunctionDeclarator()) {
1247        Diag(Tok, diag::err_func_def_no_params);
1248        ConsumeBrace();
1249        SkipUntil(tok::r_brace, true);
1250        return;
1251      }
1252
1253      if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
1254        Diag(Tok, diag::err_function_declared_typedef);
1255        // This recovery skips the entire function body. It would be nice
1256        // to simply call ParseCXXInlineMethodDef() below, however Sema
1257        // assumes the declarator represents a function, not a typedef.
1258        ConsumeBrace();
1259        SkipUntil(tok::r_brace, true);
1260        return;
1261      }
1262
1263      ParseCXXInlineMethodDef(AS, DeclaratorInfo, TemplateInfo);
1264      return;
1265    }
1266  }
1267
1268  // member-declarator-list:
1269  //   member-declarator
1270  //   member-declarator-list ',' member-declarator
1271
1272  llvm::SmallVector<DeclPtrTy, 8> DeclsInGroup;
1273  OwningExprResult BitfieldSize(Actions);
1274  OwningExprResult Init(Actions);
1275  bool Deleted = false;
1276
1277  while (1) {
1278    // member-declarator:
1279    //   declarator pure-specifier[opt]
1280    //   declarator constant-initializer[opt]
1281    //   identifier[opt] ':' constant-expression
1282
1283    if (Tok.is(tok::colon)) {
1284      ConsumeToken();
1285      BitfieldSize = ParseConstantExpression();
1286      if (BitfieldSize.isInvalid())
1287        SkipUntil(tok::comma, true, true);
1288    }
1289
1290    // pure-specifier:
1291    //   '= 0'
1292    //
1293    // constant-initializer:
1294    //   '=' constant-expression
1295    //
1296    // defaulted/deleted function-definition:
1297    //   '=' 'default'                          [TODO]
1298    //   '=' 'delete'
1299
1300    if (Tok.is(tok::equal)) {
1301      ConsumeToken();
1302      if (getLang().CPlusPlus0x && Tok.is(tok::kw_delete)) {
1303        ConsumeToken();
1304        Deleted = true;
1305      } else {
1306        Init = ParseInitializer();
1307        if (Init.isInvalid())
1308          SkipUntil(tok::comma, true, true);
1309      }
1310    }
1311
1312    // If attributes exist after the declarator, parse them.
1313    if (Tok.is(tok::kw___attribute)) {
1314      SourceLocation Loc;
1315      AttributeList *AttrList = ParseGNUAttributes(&Loc);
1316      DeclaratorInfo.AddAttributes(AttrList, Loc);
1317    }
1318
1319    // NOTE: If Sema is the Action module and declarator is an instance field,
1320    // this call will *not* return the created decl; It will return null.
1321    // See Sema::ActOnCXXMemberDeclarator for details.
1322
1323    DeclPtrTy ThisDecl;
1324    if (DS.isFriendSpecified()) {
1325      // TODO: handle initializers, bitfields, 'delete'
1326      ThisDecl = Actions.ActOnFriendFunctionDecl(CurScope, DeclaratorInfo,
1327                                                 /*IsDefinition*/ false,
1328                                                 move(TemplateParams));
1329    } else {
1330      ThisDecl = Actions.ActOnCXXMemberDeclarator(CurScope, AS,
1331                                                  DeclaratorInfo,
1332                                                  move(TemplateParams),
1333                                                  BitfieldSize.release(),
1334                                                  Init.release(),
1335                                                  /*IsDefinition*/Deleted,
1336                                                  Deleted);
1337    }
1338    if (ThisDecl)
1339      DeclsInGroup.push_back(ThisDecl);
1340
1341    if (DeclaratorInfo.isFunctionDeclarator() &&
1342        DeclaratorInfo.getDeclSpec().getStorageClassSpec()
1343          != DeclSpec::SCS_typedef) {
1344      HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
1345    }
1346
1347    DeclaratorInfo.complete(ThisDecl);
1348
1349    // If we don't have a comma, it is either the end of the list (a ';')
1350    // or an error, bail out.
1351    if (Tok.isNot(tok::comma))
1352      break;
1353
1354    // Consume the comma.
1355    ConsumeToken();
1356
1357    // Parse the next declarator.
1358    DeclaratorInfo.clear();
1359    BitfieldSize = 0;
1360    Init = 0;
1361    Deleted = false;
1362
1363    // Attributes are only allowed on the second declarator.
1364    if (Tok.is(tok::kw___attribute)) {
1365      SourceLocation Loc;
1366      AttributeList *AttrList = ParseGNUAttributes(&Loc);
1367      DeclaratorInfo.AddAttributes(AttrList, Loc);
1368    }
1369
1370    if (Tok.isNot(tok::colon))
1371      ParseDeclarator(DeclaratorInfo);
1372  }
1373
1374  if (Tok.is(tok::semi)) {
1375    ConsumeToken();
1376    Actions.FinalizeDeclaratorGroup(CurScope, DS, DeclsInGroup.data(),
1377                                    DeclsInGroup.size());
1378    return;
1379  }
1380
1381  Diag(Tok, diag::err_expected_semi_decl_list);
1382  // Skip to end of block or statement
1383  SkipUntil(tok::r_brace, true, true);
1384  if (Tok.is(tok::semi))
1385    ConsumeToken();
1386  return;
1387}
1388
1389/// ParseCXXMemberSpecification - Parse the class definition.
1390///
1391///       member-specification:
1392///         member-declaration member-specification[opt]
1393///         access-specifier ':' member-specification[opt]
1394///
1395void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
1396                                         unsigned TagType, DeclPtrTy TagDecl) {
1397  assert((TagType == DeclSpec::TST_struct ||
1398         TagType == DeclSpec::TST_union  ||
1399         TagType == DeclSpec::TST_class) && "Invalid TagType!");
1400
1401  PrettyStackTraceActionsDecl CrashInfo(TagDecl, RecordLoc, Actions,
1402                                        PP.getSourceManager(),
1403                                        "parsing struct/union/class body");
1404
1405  // Determine whether this is a non-nested class. Note that local
1406  // classes are *not* considered to be nested classes.
1407  bool NonNestedClass = true;
1408  if (!ClassStack.empty()) {
1409    for (const Scope *S = CurScope; S; S = S->getParent()) {
1410      if (S->isClassScope()) {
1411        // We're inside a class scope, so this is a nested class.
1412        NonNestedClass = false;
1413        break;
1414      }
1415
1416      if ((S->getFlags() & Scope::FnScope)) {
1417        // If we're in a function or function template declared in the
1418        // body of a class, then this is a local class rather than a
1419        // nested class.
1420        const Scope *Parent = S->getParent();
1421        if (Parent->isTemplateParamScope())
1422          Parent = Parent->getParent();
1423        if (Parent->isClassScope())
1424          break;
1425      }
1426    }
1427  }
1428
1429  // Enter a scope for the class.
1430  ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
1431
1432  // Note that we are parsing a new (potentially-nested) class definition.
1433  ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
1434
1435  if (TagDecl)
1436    Actions.ActOnTagStartDefinition(CurScope, TagDecl);
1437
1438  if (Tok.is(tok::colon)) {
1439    ParseBaseClause(TagDecl);
1440
1441    if (!Tok.is(tok::l_brace)) {
1442      Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
1443      return;
1444    }
1445  }
1446
1447  assert(Tok.is(tok::l_brace));
1448
1449  SourceLocation LBraceLoc = ConsumeBrace();
1450
1451  if (!TagDecl) {
1452    SkipUntil(tok::r_brace, false, false);
1453    return;
1454  }
1455
1456  Actions.ActOnStartCXXMemberDeclarations(CurScope, TagDecl, LBraceLoc);
1457
1458  // C++ 11p3: Members of a class defined with the keyword class are private
1459  // by default. Members of a class defined with the keywords struct or union
1460  // are public by default.
1461  AccessSpecifier CurAS;
1462  if (TagType == DeclSpec::TST_class)
1463    CurAS = AS_private;
1464  else
1465    CurAS = AS_public;
1466
1467  // While we still have something to read, read the member-declarations.
1468  while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1469    // Each iteration of this loop reads one member-declaration.
1470
1471    // Check for extraneous top-level semicolon.
1472    if (Tok.is(tok::semi)) {
1473      Diag(Tok, diag::ext_extra_struct_semi)
1474        << CodeModificationHint::CreateRemoval(Tok.getLocation());
1475      ConsumeToken();
1476      continue;
1477    }
1478
1479    AccessSpecifier AS = getAccessSpecifierIfPresent();
1480    if (AS != AS_none) {
1481      // Current token is a C++ access specifier.
1482      CurAS = AS;
1483      ConsumeToken();
1484      ExpectAndConsume(tok::colon, diag::err_expected_colon);
1485      continue;
1486    }
1487
1488    // FIXME: Make sure we don't have a template here.
1489
1490    // Parse all the comma separated declarators.
1491    ParseCXXClassMemberDeclaration(CurAS);
1492  }
1493
1494  SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc);
1495
1496  AttributeList *AttrList = 0;
1497  // If attributes exist after class contents, parse them.
1498  if (Tok.is(tok::kw___attribute))
1499    AttrList = ParseGNUAttributes(); // FIXME: where should I put them?
1500
1501  Actions.ActOnFinishCXXMemberSpecification(CurScope, RecordLoc, TagDecl,
1502                                            LBraceLoc, RBraceLoc);
1503
1504  // C++ 9.2p2: Within the class member-specification, the class is regarded as
1505  // complete within function bodies, default arguments,
1506  // exception-specifications, and constructor ctor-initializers (including
1507  // such things in nested classes).
1508  //
1509  // FIXME: Only function bodies and constructor ctor-initializers are
1510  // parsed correctly, fix the rest.
1511  if (NonNestedClass) {
1512    // We are not inside a nested class. This class and its nested classes
1513    // are complete and we can parse the delayed portions of method
1514    // declarations and the lexed inline method definitions.
1515    ParseLexedMethodDeclarations(getCurrentClass());
1516    ParseLexedMethodDefs(getCurrentClass());
1517  }
1518
1519  // Leave the class scope.
1520  ParsingDef.Pop();
1521  ClassScope.Exit();
1522
1523  Actions.ActOnTagFinishDefinition(CurScope, TagDecl, RBraceLoc);
1524}
1525
1526/// ParseConstructorInitializer - Parse a C++ constructor initializer,
1527/// which explicitly initializes the members or base classes of a
1528/// class (C++ [class.base.init]). For example, the three initializers
1529/// after the ':' in the Derived constructor below:
1530///
1531/// @code
1532/// class Base { };
1533/// class Derived : Base {
1534///   int x;
1535///   float f;
1536/// public:
1537///   Derived(float f) : Base(), x(17), f(f) { }
1538/// };
1539/// @endcode
1540///
1541/// [C++]  ctor-initializer:
1542///          ':' mem-initializer-list
1543///
1544/// [C++]  mem-initializer-list:
1545///          mem-initializer
1546///          mem-initializer , mem-initializer-list
1547void Parser::ParseConstructorInitializer(DeclPtrTy ConstructorDecl) {
1548  assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
1549
1550  SourceLocation ColonLoc = ConsumeToken();
1551
1552  llvm::SmallVector<MemInitTy*, 4> MemInitializers;
1553
1554  do {
1555    MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
1556    if (!MemInit.isInvalid())
1557      MemInitializers.push_back(MemInit.get());
1558
1559    if (Tok.is(tok::comma))
1560      ConsumeToken();
1561    else if (Tok.is(tok::l_brace))
1562      break;
1563    else {
1564      // Skip over garbage, until we get to '{'.  Don't eat the '{'.
1565      Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
1566      SkipUntil(tok::l_brace, true, true);
1567      break;
1568    }
1569  } while (true);
1570
1571  Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
1572                               MemInitializers.data(), MemInitializers.size());
1573}
1574
1575/// ParseMemInitializer - Parse a C++ member initializer, which is
1576/// part of a constructor initializer that explicitly initializes one
1577/// member or base class (C++ [class.base.init]). See
1578/// ParseConstructorInitializer for an example.
1579///
1580/// [C++] mem-initializer:
1581///         mem-initializer-id '(' expression-list[opt] ')'
1582///
1583/// [C++] mem-initializer-id:
1584///         '::'[opt] nested-name-specifier[opt] class-name
1585///         identifier
1586Parser::MemInitResult Parser::ParseMemInitializer(DeclPtrTy ConstructorDecl) {
1587  // parse '::'[opt] nested-name-specifier[opt]
1588  CXXScopeSpec SS;
1589  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
1590  TypeTy *TemplateTypeTy = 0;
1591  if (Tok.is(tok::annot_template_id)) {
1592    TemplateIdAnnotation *TemplateId
1593      = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
1594    if (TemplateId->Kind == TNK_Type_template ||
1595        TemplateId->Kind == TNK_Dependent_template_name) {
1596      AnnotateTemplateIdTokenAsType(&SS);
1597      assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
1598      TemplateTypeTy = Tok.getAnnotationValue();
1599    }
1600  }
1601  if (!TemplateTypeTy && Tok.isNot(tok::identifier)) {
1602    Diag(Tok, diag::err_expected_member_or_base_name);
1603    return true;
1604  }
1605
1606  // Get the identifier. This may be a member name or a class name,
1607  // but we'll let the semantic analysis determine which it is.
1608  IdentifierInfo *II = Tok.is(tok::identifier) ? Tok.getIdentifierInfo() : 0;
1609  SourceLocation IdLoc = ConsumeToken();
1610
1611  // Parse the '('.
1612  if (Tok.isNot(tok::l_paren)) {
1613    Diag(Tok, diag::err_expected_lparen);
1614    return true;
1615  }
1616  SourceLocation LParenLoc = ConsumeParen();
1617
1618  // Parse the optional expression-list.
1619  ExprVector ArgExprs(Actions);
1620  CommaLocsTy CommaLocs;
1621  if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
1622    SkipUntil(tok::r_paren);
1623    return true;
1624  }
1625
1626  SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1627
1628  return Actions.ActOnMemInitializer(ConstructorDecl, CurScope, SS, II,
1629                                     TemplateTypeTy, IdLoc,
1630                                     LParenLoc, ArgExprs.take(),
1631                                     ArgExprs.size(), CommaLocs.data(),
1632                                     RParenLoc);
1633}
1634
1635/// ParseExceptionSpecification - Parse a C++ exception-specification
1636/// (C++ [except.spec]).
1637///
1638///       exception-specification:
1639///         'throw' '(' type-id-list [opt] ')'
1640/// [MS]    'throw' '(' '...' ')'
1641///
1642///       type-id-list:
1643///         type-id
1644///         type-id-list ',' type-id
1645///
1646bool Parser::ParseExceptionSpecification(SourceLocation &EndLoc,
1647                                         llvm::SmallVector<TypeTy*, 2>
1648                                             &Exceptions,
1649                                         llvm::SmallVector<SourceRange, 2>
1650                                             &Ranges,
1651                                         bool &hasAnyExceptionSpec) {
1652  assert(Tok.is(tok::kw_throw) && "expected throw");
1653
1654  SourceLocation ThrowLoc = ConsumeToken();
1655
1656  if (!Tok.is(tok::l_paren)) {
1657    return Diag(Tok, diag::err_expected_lparen_after) << "throw";
1658  }
1659  SourceLocation LParenLoc = ConsumeParen();
1660
1661  // Parse throw(...), a Microsoft extension that means "this function
1662  // can throw anything".
1663  if (Tok.is(tok::ellipsis)) {
1664    hasAnyExceptionSpec = true;
1665    SourceLocation EllipsisLoc = ConsumeToken();
1666    if (!getLang().Microsoft)
1667      Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
1668    EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1669    return false;
1670  }
1671
1672  // Parse the sequence of type-ids.
1673  SourceRange Range;
1674  while (Tok.isNot(tok::r_paren)) {
1675    TypeResult Res(ParseTypeName(&Range));
1676    if (!Res.isInvalid()) {
1677      Exceptions.push_back(Res.get());
1678      Ranges.push_back(Range);
1679    }
1680    if (Tok.is(tok::comma))
1681      ConsumeToken();
1682    else
1683      break;
1684  }
1685
1686  EndLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
1687  return false;
1688}
1689
1690/// \brief We have just started parsing the definition of a new class,
1691/// so push that class onto our stack of classes that is currently
1692/// being parsed.
1693void Parser::PushParsingClass(DeclPtrTy ClassDecl, bool NonNestedClass) {
1694  assert((NonNestedClass || !ClassStack.empty()) &&
1695         "Nested class without outer class");
1696  ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
1697}
1698
1699/// \brief Deallocate the given parsed class and all of its nested
1700/// classes.
1701void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
1702  for (unsigned I = 0, N = Class->NestedClasses.size(); I != N; ++I)
1703    DeallocateParsedClasses(Class->NestedClasses[I]);
1704  delete Class;
1705}
1706
1707/// \brief Pop the top class of the stack of classes that are
1708/// currently being parsed.
1709///
1710/// This routine should be called when we have finished parsing the
1711/// definition of a class, but have not yet popped the Scope
1712/// associated with the class's definition.
1713///
1714/// \returns true if the class we've popped is a top-level class,
1715/// false otherwise.
1716void Parser::PopParsingClass() {
1717  assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
1718
1719  ParsingClass *Victim = ClassStack.top();
1720  ClassStack.pop();
1721  if (Victim->TopLevelClass) {
1722    // Deallocate all of the nested classes of this class,
1723    // recursively: we don't need to keep any of this information.
1724    DeallocateParsedClasses(Victim);
1725    return;
1726  }
1727  assert(!ClassStack.empty() && "Missing top-level class?");
1728
1729  if (Victim->MethodDecls.empty() && Victim->MethodDefs.empty() &&
1730      Victim->NestedClasses.empty()) {
1731    // The victim is a nested class, but we will not need to perform
1732    // any processing after the definition of this class since it has
1733    // no members whose handling was delayed. Therefore, we can just
1734    // remove this nested class.
1735    delete Victim;
1736    return;
1737  }
1738
1739  // This nested class has some members that will need to be processed
1740  // after the top-level class is completely defined. Therefore, add
1741  // it to the list of nested classes within its parent.
1742  assert(CurScope->isClassScope() && "Nested class outside of class scope?");
1743  ClassStack.top()->NestedClasses.push_back(Victim);
1744  Victim->TemplateScope = CurScope->getParent()->isTemplateParamScope();
1745}
1746
1747/// ParseCXX0XAttributes - Parse a C++0x attribute-specifier. Currently only
1748/// parses standard attributes.
1749///
1750/// [C++0x] attribute-specifier:
1751///         '[' '[' attribute-list ']' ']'
1752///
1753/// [C++0x] attribute-list:
1754///         attribute[opt]
1755///         attribute-list ',' attribute[opt]
1756///
1757/// [C++0x] attribute:
1758///         attribute-token attribute-argument-clause[opt]
1759///
1760/// [C++0x] attribute-token:
1761///         identifier
1762///         attribute-scoped-token
1763///
1764/// [C++0x] attribute-scoped-token:
1765///         attribute-namespace '::' identifier
1766///
1767/// [C++0x] attribute-namespace:
1768///         identifier
1769///
1770/// [C++0x] attribute-argument-clause:
1771///         '(' balanced-token-seq ')'
1772///
1773/// [C++0x] balanced-token-seq:
1774///         balanced-token
1775///         balanced-token-seq balanced-token
1776///
1777/// [C++0x] balanced-token:
1778///         '(' balanced-token-seq ')'
1779///         '[' balanced-token-seq ']'
1780///         '{' balanced-token-seq '}'
1781///         any token but '(', ')', '[', ']', '{', or '}'
1782CXX0XAttributeList Parser::ParseCXX0XAttributes(SourceLocation *EndLoc) {
1783  assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
1784      && "Not a C++0x attribute list");
1785
1786  SourceLocation StartLoc = Tok.getLocation(), Loc;
1787  AttributeList *CurrAttr = 0;
1788
1789  ConsumeBracket();
1790  ConsumeBracket();
1791
1792  if (Tok.is(tok::comma)) {
1793    Diag(Tok.getLocation(), diag::err_expected_ident);
1794    ConsumeToken();
1795  }
1796
1797  while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
1798    // attribute not present
1799    if (Tok.is(tok::comma)) {
1800      ConsumeToken();
1801      continue;
1802    }
1803
1804    IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
1805    SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
1806
1807    // scoped attribute
1808    if (Tok.is(tok::coloncolon)) {
1809      ConsumeToken();
1810
1811      if (!Tok.is(tok::identifier)) {
1812        Diag(Tok.getLocation(), diag::err_expected_ident);
1813        SkipUntil(tok::r_square, tok::comma, true, true);
1814        continue;
1815      }
1816
1817      ScopeName = AttrName;
1818      ScopeLoc = AttrLoc;
1819
1820      AttrName = Tok.getIdentifierInfo();
1821      AttrLoc = ConsumeToken();
1822    }
1823
1824    bool AttrParsed = false;
1825    // No scoped names are supported; ideally we could put all non-standard
1826    // attributes into namespaces.
1827    if (!ScopeName) {
1828      switch(AttributeList::getKind(AttrName))
1829      {
1830      // No arguments
1831      case AttributeList::AT_base_check:
1832      case AttributeList::AT_carries_dependency:
1833      case AttributeList::AT_final:
1834      case AttributeList::AT_hiding:
1835      case AttributeList::AT_noreturn:
1836      case AttributeList::AT_override: {
1837        if (Tok.is(tok::l_paren)) {
1838          Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
1839            << AttrName->getName();
1840          break;
1841        }
1842
1843        CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc, 0,
1844                                     SourceLocation(), 0, 0, CurrAttr, false,
1845                                     true);
1846        AttrParsed = true;
1847        break;
1848      }
1849
1850      // One argument; must be a type-id or assignment-expression
1851      case AttributeList::AT_aligned: {
1852        if (Tok.isNot(tok::l_paren)) {
1853          Diag(Tok.getLocation(), diag::err_cxx0x_attribute_requires_arguments)
1854            << AttrName->getName();
1855          break;
1856        }
1857        SourceLocation ParamLoc = ConsumeParen();
1858
1859        OwningExprResult ArgExpr = ParseCXX0XAlignArgument(ParamLoc);
1860
1861        MatchRHSPunctuation(tok::r_paren, ParamLoc);
1862
1863        ExprVector ArgExprs(Actions);
1864        ArgExprs.push_back(ArgExpr.release());
1865        CurrAttr = new AttributeList(AttrName, AttrLoc, 0, AttrLoc,
1866                                     0, ParamLoc, ArgExprs.take(), 1, CurrAttr,
1867                                     false, true);
1868
1869        AttrParsed = true;
1870        break;
1871      }
1872
1873      // Silence warnings
1874      default: break;
1875      }
1876    }
1877
1878    // Skip the entire parameter clause, if any
1879    if (!AttrParsed && Tok.is(tok::l_paren)) {
1880      ConsumeParen();
1881      // SkipUntil maintains the balancedness of tokens.
1882      SkipUntil(tok::r_paren, false);
1883    }
1884  }
1885
1886  if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
1887    SkipUntil(tok::r_square, false);
1888  Loc = Tok.getLocation();
1889  if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
1890    SkipUntil(tok::r_square, false);
1891
1892  CXX0XAttributeList Attr (CurrAttr, SourceRange(StartLoc, Loc), true);
1893  return Attr;
1894}
1895
1896/// ParseCXX0XAlignArgument - Parse the argument to C++0x's [[align]]
1897/// attribute.
1898///
1899/// FIXME: Simply returns an alignof() expression if the argument is a
1900/// type. Ideally, the type should be propagated directly into Sema.
1901///
1902/// [C++0x] 'align' '(' type-id ')'
1903/// [C++0x] 'align' '(' assignment-expression ')'
1904Parser::OwningExprResult Parser::ParseCXX0XAlignArgument(SourceLocation Start) {
1905  if (isTypeIdInParens()) {
1906    EnterExpressionEvaluationContext Unevaluated(Actions,
1907                                                  Action::Unevaluated);
1908    SourceLocation TypeLoc = Tok.getLocation();
1909    TypeTy *Ty = ParseTypeName().get();
1910    SourceRange TypeRange(Start, Tok.getLocation());
1911    return Actions.ActOnSizeOfAlignOfExpr(TypeLoc, false, true, Ty,
1912                                              TypeRange);
1913  } else
1914    return ParseConstantExpression();
1915}
1916