15f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===--- ParseExprCXX.cpp - C++ Expression Parsing ------------------------===//
25f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
35f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//                     The LLVM Compiler Infrastructure
45f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
50bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// This file is distributed under the University of Illinois Open Source
60bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// License. See LICENSE.TXT for details.
75f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
85f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
95f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer// This file implements the Expression parsing implementation for C++.
115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
14500d3297d2a21edeac4d46cbcbe21bc2352c2a28Chris Lattner#include "clang/Parse/ParseDiagnostic.h"
155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#include "clang/Parse/Parser.h"
16bc61bd8109d9accf8f966b59e3f16a1497e72adfDouglas Gregor#include "RAIIObjectsForParser.h"
17dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman#include "clang/Basic/PrettyStackTrace.h"
1833762775706e81c17ca774102ceda36049ecc593Richard Smith#include "clang/Lex/LiteralSupport.h"
1919510856727e0e14a3696b2a72c35163bff2a71fJohn McCall#include "clang/Sema/DeclSpec.h"
20ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor#include "clang/Sema/Scope.h"
2119510856727e0e14a3696b2a72c35163bff2a71fJohn McCall#include "clang/Sema/ParsedTemplate.h"
223f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor#include "llvm/Support/ErrorHandling.h"
233f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
245f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerusing namespace clang;
255f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
26ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smithstatic int SelectDigraphErrorMessage(tok::TokenKind Kind) {
27ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  switch (Kind) {
28ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    case tok::kw_template:         return 0;
29ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    case tok::kw_const_cast:       return 1;
30ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    case tok::kw_dynamic_cast:     return 2;
31ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    case tok::kw_reinterpret_cast: return 3;
32ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    case tok::kw_static_cast:      return 4;
33ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    default:
34b219cfc4d75f0a03630b7c4509ef791b7e97b2c8David Blaikie      llvm_unreachable("Unknown type for digraph error message.");
35ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  }
36ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith}
37ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
38ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith// Are the two tokens adjacent in the same source file?
3919a2702042b7e3ee838cca458b35f607111a3897Richard Smithbool Parser::areTokensAdjacent(const Token &First, const Token &Second) {
40ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  SourceManager &SM = PP.getSourceManager();
41ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  SourceLocation FirstLoc = SM.getSpellingLoc(First.getLocation());
42a64ccefdf0ea4e03ec88805d71b0af74950c7472Argyrios Kyrtzidis  SourceLocation FirstEnd = FirstLoc.getLocWithOffset(First.getLength());
43ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  return FirstEnd == SM.getSpellingLoc(Second.getLocation());
44ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith}
45ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
46ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith// Suggest fixit for "<::" after a cast.
47ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smithstatic void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken,
48ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith                       Token &ColonToken, tok::TokenKind Kind, bool AtDigraph) {
49ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  // Pull '<:' and ':' off token stream.
50ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  if (!AtDigraph)
51ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    PP.Lex(DigraphToken);
52ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  PP.Lex(ColonToken);
53ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
54ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  SourceRange Range;
55ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  Range.setBegin(DigraphToken.getLocation());
56ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  Range.setEnd(ColonToken.getLocation());
57ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  P.Diag(DigraphToken.getLocation(), diag::err_missing_whitespace_digraph)
58ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith      << SelectDigraphErrorMessage(Kind)
59ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith      << FixItHint::CreateReplacement(Range, "< ::");
60ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
61ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  // Update token information to reflect their change in token type.
62ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  ColonToken.setKind(tok::coloncolon);
63a64ccefdf0ea4e03ec88805d71b0af74950c7472Argyrios Kyrtzidis  ColonToken.setLocation(ColonToken.getLocation().getLocWithOffset(-1));
64ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  ColonToken.setLength(2);
65ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  DigraphToken.setKind(tok::less);
66ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  DigraphToken.setLength(1);
67ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
68ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  // Push new tokens back to token stream.
69ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  PP.EnterToken(ColonToken);
70ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  if (!AtDigraph)
71ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith    PP.EnterToken(DigraphToken);
72ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith}
73ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
74950be71c745409e373ae8a834490f9026c8ac222Richard Trieu// Check for '<::' which should be '< ::' instead of '[:' when following
75950be71c745409e373ae8a834490f9026c8ac222Richard Trieu// a template name.
76950be71c745409e373ae8a834490f9026c8ac222Richard Trieuvoid Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType,
77950be71c745409e373ae8a834490f9026c8ac222Richard Trieu                                        bool EnteringContext,
78950be71c745409e373ae8a834490f9026c8ac222Richard Trieu                                        IdentifierInfo &II, CXXScopeSpec &SS) {
79c11030ea936f6952deb5a1423ce1648173cd417eRichard Trieu  if (!Next.is(tok::l_square) || Next.getLength() != 2)
80950be71c745409e373ae8a834490f9026c8ac222Richard Trieu    return;
81950be71c745409e373ae8a834490f9026c8ac222Richard Trieu
82950be71c745409e373ae8a834490f9026c8ac222Richard Trieu  Token SecondToken = GetLookAheadToken(2);
8319a2702042b7e3ee838cca458b35f607111a3897Richard Smith  if (!SecondToken.is(tok::colon) || !areTokensAdjacent(Next, SecondToken))
84950be71c745409e373ae8a834490f9026c8ac222Richard Trieu    return;
85950be71c745409e373ae8a834490f9026c8ac222Richard Trieu
86950be71c745409e373ae8a834490f9026c8ac222Richard Trieu  TemplateTy Template;
87950be71c745409e373ae8a834490f9026c8ac222Richard Trieu  UnqualifiedId TemplateName;
88950be71c745409e373ae8a834490f9026c8ac222Richard Trieu  TemplateName.setIdentifier(&II, Tok.getLocation());
89950be71c745409e373ae8a834490f9026c8ac222Richard Trieu  bool MemberOfUnknownSpecialization;
90950be71c745409e373ae8a834490f9026c8ac222Richard Trieu  if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false,
91950be71c745409e373ae8a834490f9026c8ac222Richard Trieu                              TemplateName, ObjectType, EnteringContext,
92950be71c745409e373ae8a834490f9026c8ac222Richard Trieu                              Template, MemberOfUnknownSpecialization))
93950be71c745409e373ae8a834490f9026c8ac222Richard Trieu    return;
94950be71c745409e373ae8a834490f9026c8ac222Richard Trieu
95950be71c745409e373ae8a834490f9026c8ac222Richard Trieu  FixDigraph(*this, PP, Next, SecondToken, tok::kw_template,
96950be71c745409e373ae8a834490f9026c8ac222Richard Trieu             /*AtDigraph*/false);
97950be71c745409e373ae8a834490f9026c8ac222Richard Trieu}
98950be71c745409e373ae8a834490f9026c8ac222Richard Trieu
991eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// \brief Parse global scope or nested-name-specifier if present.
1002dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
1012dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
1021eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// may be preceded by '::'). Note that this routine will not parse ::new or
1032dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// ::delete; it will just leave them in the token stream.
104eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
105eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       '::'[opt] nested-name-specifier
106eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       '::'
107eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
108eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       nested-name-specifier:
109eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         type-name '::'
110eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         namespace-name '::'
111eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         nested-name-specifier identifier '::'
1122dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///         nested-name-specifier 'template'[opt] simple-template-id '::'
1132dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
1142dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
1151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// \param SS the scope specifier that will be set to the parsed
1162dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// nested-name-specifier (or empty)
1172dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
1181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// \param ObjectType if this nested-name-specifier is being parsed following
1192dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// the "." or "->" of a member access expression, this parameter provides the
1202dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// type of the object whose members are being accessed.
121eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
1222dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// \param EnteringContext whether we will be entering into the context of
1232dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// the nested-name-specifier after parsing it.
1242dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
125d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// \param MayBePseudoDestructor When non-NULL, points to a flag that
126d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// indicates whether this nested-name-specifier may be part of a
127d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// pseudo-destructor name. In this case, the flag will be set false
128d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// if we don't actually end up parsing a destructor name. Moreorover,
129d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// if we do end up determining that we are parsing a destructor name,
130d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// the last component of the nested-name-specifier is not parsed as
131d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// part of the scope specifier.
132d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
133b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor/// member access expression, e.g., the \p T:: in \p p->T::m.
134b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor///
1359ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall/// \returns true if there was an error parsing a scope specifier
136495c35d291da48c4f5655bbb54d15128ddde0d4dDouglas Gregorbool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
137b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                            ParsedType ObjectType,
138b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor                                            bool EnteringContext,
1394147d307086cf024a40a080e2bf379e9725f6f41Francois Pichet                                            bool *MayBePseudoDestructor,
1404147d307086cf024a40a080e2bf379e9725f6f41Francois Pichet                                            bool IsTypename) {
1414e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  assert(getLangOpts().CPlusPlus &&
1427452c6fc567ea1799f617395d0fa4c7ed075e5d9Chris Lattner         "Call sites of this function should be guarded by checking for C++");
1431eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
144eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  if (Tok.is(tok::annot_cxxscope)) {
145c34348a7ef1a6b3f92a644a227953800cd1f9947Douglas Gregor    Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
146c34348a7ef1a6b3f92a644a227953800cd1f9947Douglas Gregor                                                 Tok.getAnnotationRange(),
147c34348a7ef1a6b3f92a644a227953800cd1f9947Douglas Gregor                                                 SS);
148eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis    ConsumeToken();
1499ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall    return false;
150eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  }
151e607e808c2b90724a2a6fd841e850f07de1f5b30Chris Lattner
15239a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor  bool HasScopeSpecifier = false;
15339a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor
1545b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner  if (Tok.is(tok::coloncolon)) {
1555b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner    // ::new and ::delete aren't nested-name-specifiers.
1565b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner    tok::TokenKind NextKind = NextToken().getKind();
1575b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner    if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
1585b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner      return false;
1591eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
16055a7cefc846765ac7d142a63f773747a20518d71Chris Lattner    // '::' - Global scope qualifier.
1612e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor    if (Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), ConsumeToken(), SS))
1622e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor      return true;
1632e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor
16439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    HasScopeSpecifier = true;
165eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  }
166eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis
167d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  bool CheckForDestructor = false;
168d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (MayBePseudoDestructor && *MayBePseudoDestructor) {
169d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    CheckForDestructor = true;
170d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    *MayBePseudoDestructor = false;
171d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  }
172d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
17342d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie  if (Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype)) {
17442d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    DeclSpec DS(AttrFactory);
17542d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    SourceLocation DeclLoc = Tok.getLocation();
17642d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    SourceLocation EndLoc  = ParseDecltypeSpecifier(DS);
17742d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    if (Tok.isNot(tok::coloncolon)) {
17842d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie      AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
17942d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie      return false;
18042d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    }
18142d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie
18242d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    SourceLocation CCLoc = ConsumeToken();
18342d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
18442d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie      SS.SetInvalid(SourceRange(DeclLoc, CCLoc));
18542d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie
18642d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie    HasScopeSpecifier = true;
18742d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie  }
18842d6d0c91ab089cb252ab2f91c16d4557f458a2cDavid Blaikie
18939a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor  while (true) {
1902dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor    if (HasScopeSpecifier) {
1912dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // C++ [basic.lookup.classref]p5:
1922dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //   If the qualified-id has the form
1933b6afbb99a1c44b4076f8e15fb7311405941b306Douglas Gregor      //
1942dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //       ::class-name-or-namespace-name::...
1953b6afbb99a1c44b4076f8e15fb7311405941b306Douglas Gregor      //
1962dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //   the class-name-or-namespace-name is looked up in global scope as a
1972dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //   class-name or namespace-name.
1982dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //
1992dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // To implement this, we clear out the object type as soon as we've
2002dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // seen a leading '::' or part of a nested-name-specifier.
201b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall      ObjectType = ParsedType();
20281b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor
20381b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor      if (Tok.is(tok::code_completion)) {
20481b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor        // Code completion for a nested-name-specifier, where the code
20581b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor        // code completion token follows the '::'.
20623c94dbb6631fecdb55ba401aa93722803d980c6Douglas Gregor        Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext);
207b6b2b180c6857af75c6683f7107a7c8994f074edArgyrios Kyrtzidis        // Include code completion token into the range of the scope otherwise
208b6b2b180c6857af75c6683f7107a7c8994f074edArgyrios Kyrtzidis        // when we try to annotate the scope tokens the dangling code completion
209b6b2b180c6857af75c6683f7107a7c8994f074edArgyrios Kyrtzidis        // token will cause assertion in
210b6b2b180c6857af75c6683f7107a7c8994f074edArgyrios Kyrtzidis        // Preprocessor::AnnotatePreviousCachedTokens.
2117d100872341f233c81e1d7b72b40457e62c36862Argyrios Kyrtzidis        SS.setEndLoc(Tok.getLocation());
2127d100872341f233c81e1d7b72b40457e62c36862Argyrios Kyrtzidis        cutOffParsing();
2137d100872341f233c81e1d7b72b40457e62c36862Argyrios Kyrtzidis        return true;
21481b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor      }
2152dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor    }
2161eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
21739a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    // nested-name-specifier:
21877cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    //   nested-name-specifier 'template'[opt] simple-template-id '::'
21977cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner
22077cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    // Parse the optional 'template' keyword, then make sure we have
22177cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    // 'identifier <' after it.
22277cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    if (Tok.is(tok::kw_template)) {
2232dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // If we don't have a scope specifier or an object type, this isn't a
224eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman      // nested-name-specifier, since they aren't allowed to start with
225eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman      // 'template'.
2262dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      if (!HasScopeSpecifier && !ObjectType)
227eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman        break;
228eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman
2297bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      TentativeParsingAction TPA(*this);
23077cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner      SourceLocation TemplateKWLoc = ConsumeToken();
231ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
232ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      UnqualifiedId TemplateName;
233ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      if (Tok.is(tok::identifier)) {
234ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        // Consume the identifier.
2357bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
236ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        ConsumeToken();
237ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      } else if (Tok.is(tok::kw_operator)) {
238ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
2397bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor                                       TemplateName)) {
2407bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor          TPA.Commit();
241ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          break;
2427bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        }
243ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
244e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt        if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
245e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt            TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
246ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          Diag(TemplateName.getSourceRange().getBegin(),
247ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor               diag::err_id_after_template_in_nested_name_spec)
248ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor            << TemplateName.getSourceRange();
2497bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor          TPA.Commit();
250ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          break;
251ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        }
252ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      } else {
2537bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        TPA.Revert();
25477cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner        break;
25577cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner      }
2561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2577bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // If the next token is not '<', we have a qualified-id that refers
2587bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // to a template name, such as T::template apply, but is not a
2597bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // template-id.
2607bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      if (Tok.isNot(tok::less)) {
2617bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        TPA.Revert();
2627bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        break;
2637bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      }
2647bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor
2657bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // Commit to parsing the template-id.
2667bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      TPA.Commit();
267d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor      TemplateTy Template;
268e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara      if (TemplateNameKind TNK
269e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara          = Actions.ActOnDependentTemplateName(getCurScope(),
270e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                               SS, TemplateKWLoc, TemplateName,
271e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                               ObjectType, EnteringContext,
272e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                               Template)) {
273e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara        if (AnnotateTemplateIdToken(Template, TNK, SS, TemplateKWLoc,
274e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                    TemplateName, false))
275d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor          return true;
276d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor      } else
2779ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall        return true;
2781eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
27977cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner      continue;
28077cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    }
2811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
28239a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
2831eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      // We have
28439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      //
28539a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      //   simple-template-id '::'
28639a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      //
28739a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      // So we need to check whether the simple-template-id is of the
288c45c232440dfafedca1a3773b904fb42609b1b19Douglas Gregor      // right kind (it should name a type or be dependent), and then
289c45c232440dfafedca1a3773b904fb42609b1b19Douglas Gregor      // convert it into a type within the nested-name-specifier.
29025a767651d14db87aa03dd5fe3e011d877dd4100Argyrios Kyrtzidis      TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
291d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
292d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor        *MayBePseudoDestructor = true;
2939ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall        return false;
294d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      }
295d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
2966cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor      // Consume the template-id token.
2976cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor      ConsumeToken();
2986cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor
2996cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor      assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
3006cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor      SourceLocation CCLoc = ConsumeToken();
3011eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3026796fc1adcaf57c38d072a238b016b2834afbe0dDavid Blaikie      HasScopeSpecifier = true;
3036cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor
3045354e77e60e82828c7c2361f5c688c2667ab59ccBenjamin Kramer      ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
3056cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                         TemplateId->NumArgs);
3066cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor
3076cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor      if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(),
308e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                              SS,
309e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                              TemplateId->TemplateKWLoc,
3106cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                              TemplateId->Template,
3116cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                              TemplateId->TemplateNameLoc,
3126cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                              TemplateId->LAngleLoc,
3136cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                              TemplateArgsPtr,
3146cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                              TemplateId->RAngleLoc,
3156cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                              CCLoc,
3166cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                              EnteringContext)) {
3176cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor        SourceLocation StartLoc
3186cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor          = SS.getBeginLoc().isValid()? SS.getBeginLoc()
3196cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor                                      : TemplateId->TemplateNameLoc;
3206cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor        SS.SetInvalid(SourceRange(StartLoc, CCLoc));
32167b9e831943300ce54e564e601971828ce4def15Chris Lattner      }
322eccce7e246a17e12a2afd6eabb9ac7c8d582db4eArgyrios Kyrtzidis
3236cd9d4aa13c2145c8b4398453974515b734bfe42Douglas Gregor      continue;
32439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    }
32539a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor
3265c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
3275c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // The rest of the nested-name-specifier possibilities start with
3285c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // tok::identifier.
3295c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    if (Tok.isNot(tok::identifier))
3305c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      break;
3315c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
3325c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    IdentifierInfo &II = *Tok.getIdentifierInfo();
3335c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
3345c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // nested-name-specifier:
3355c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   type-name '::'
3365c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   namespace-name '::'
3375c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   nested-name-specifier identifier '::'
3385c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    Token Next = NextToken();
33946646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner
34046646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner    // If we get foo:bar, this is almost certainly a typo for foo::bar.  Recover
34146646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner    // and emit a fixit hint for it.
342b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor    if (Next.is(tok::colon) && !ColonIsSacred) {
3432e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor      if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II,
3442e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor                                            Tok.getLocation(),
3452e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor                                            Next.getLocation(), ObjectType,
346b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor                                            EnteringContext) &&
347b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          // If the token after the colon isn't an identifier, it's still an
348b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          // error, but they probably meant something else strange so don't
349b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          // recover like this.
350b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          PP.LookAhead(1).is(tok::identifier)) {
351b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor        Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
352849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor          << FixItHint::CreateReplacement(Next.getLocation(), "::");
353b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor
354b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor        // Recover as if the user wrote '::'.
355b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor        Next.setKind(tok::coloncolon);
356b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor      }
35746646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner    }
35846646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner
3595c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    if (Next.is(tok::coloncolon)) {
36077549080fb7b9af31606b3c1b4830a94429fb1fdDouglas Gregor      if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
36123c94dbb6631fecdb55ba401aa93722803d980c6Douglas Gregor          !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(),
36277549080fb7b9af31606b3c1b4830a94429fb1fdDouglas Gregor                                                II, ObjectType)) {
363d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor        *MayBePseudoDestructor = true;
3649ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall        return false;
365d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      }
366d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
3675c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      // We have an identifier followed by a '::'. Lookup this name
3685c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      // as the name in a nested-name-specifier.
3695c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      SourceLocation IdLoc = ConsumeToken();
37046646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner      assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
37146646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner             "NextToken() not working properly!");
3725c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      SourceLocation CCLoc = ConsumeToken();
3731eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3742e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor      HasScopeSpecifier = true;
3752e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor      if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
3762e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor                                              ObjectType, EnteringContext, SS))
3772e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor        SS.SetInvalid(SourceRange(IdLoc, CCLoc));
3782e4c34ac53d08633b9473df921db4c7e4c9cd577Douglas Gregor
3795c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      continue;
3805c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    }
3811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
382950be71c745409e373ae8a834490f9026c8ac222Richard Trieu    CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
383ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
3845c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // nested-name-specifier:
3855c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   type-name '<'
3865c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    if (Next.is(tok::less)) {
3875c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      TemplateTy Template;
388014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      UnqualifiedId TemplateName;
389014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateName.setIdentifier(&II, Tok.getLocation());
3901fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor      bool MemberOfUnknownSpecialization;
39123c94dbb6631fecdb55ba401aa93722803d980c6Douglas Gregor      if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
3927c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara                                              /*hasTemplateKeyword=*/false,
393014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor                                                        TemplateName,
3942dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor                                                        ObjectType,
395495c35d291da48c4f5655bbb54d15128ddde0d4dDouglas Gregor                                                        EnteringContext,
3961fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor                                                        Template,
3971fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor                                              MemberOfUnknownSpecialization)) {
3986796fc1adcaf57c38d072a238b016b2834afbe0dDavid Blaikie        // We have found a template name, so annotate this token
3995c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // with a template-id annotation. We do not permit the
4005c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // template-id to be translated into a type annotation,
4015c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // because some clients (e.g., the parsing of class template
4025c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // specializations) still want to see the original template-id
4035c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // token.
404ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        ConsumeToken();
405e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara        if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
406e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                    TemplateName, false))
4079ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall          return true;
4085c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        continue;
409d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor      }
410d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor
411d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor      if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
4124147d307086cf024a40a080e2bf379e9725f6f41Francois Pichet          (IsTypename || IsTemplateArgumentList(1))) {
413d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor        // We have something like t::getAs<T>, where getAs is a
414d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor        // member of an unknown specialization. However, this will only
415d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor        // parse correctly as a template, so suggest the keyword 'template'
416d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor        // before 'getAs' and treat this as a dependent template name.
4174147d307086cf024a40a080e2bf379e9725f6f41Francois Pichet        unsigned DiagID = diag::err_missing_dependent_template_keyword;
4184e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie        if (getLangOpts().MicrosoftExt)
419cf320c6388c90f1938c264e87d77a0e43946e2c3Francois Pichet          DiagID = diag::warn_missing_dependent_template_keyword;
4204147d307086cf024a40a080e2bf379e9725f6f41Francois Pichet
4214147d307086cf024a40a080e2bf379e9725f6f41Francois Pichet        Diag(Tok.getLocation(), DiagID)
422d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor          << II.getName()
423d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor          << FixItHint::CreateInsertion(Tok.getLocation(), "template ");
424d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor
425d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor        if (TemplateNameKind TNK
42623c94dbb6631fecdb55ba401aa93722803d980c6Douglas Gregor              = Actions.ActOnDependentTemplateName(getCurScope(),
427e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                                   SS, SourceLocation(),
428d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor                                                   TemplateName, ObjectType,
429d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor                                                   EnteringContext, Template)) {
430d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor          // Consume the identifier.
431d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor          ConsumeToken();
432e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara          if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
433e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                      TemplateName, false))
434e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara            return true;
435d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor        }
436d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor        else
437d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor          return true;
438d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor
439d5ab9b0a0ae24f7d0f49f6f10fd1b247e64b3306Douglas Gregor        continue;
4405c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      }
4415c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    }
4425c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
44339a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    // We don't have any tokens that form the beginning of a
44439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    // nested-name-specifier, so we're done.
44539a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    break;
44639a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor  }
4471eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
448d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Even if we didn't see any pieces of a nested-name-specifier, we
449d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // still check whether there is a tilde in this position, which
450d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // indicates a potential pseudo-destructor.
451d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (CheckForDestructor && Tok.is(tok::tilde))
452d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    *MayBePseudoDestructor = true;
453d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
4549ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall  return false;
455eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis}
456eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis
457eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// ParseCXXIdExpression - Handle id-expression.
458eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
459eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       id-expression:
460eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         unqualified-id
461eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         qualified-id
462eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
463eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       qualified-id:
464eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
465eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::' identifier
466eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::' operator-function-id
467edce4dd44732dfad69f28822dddcf2b8e92b4483Douglas Gregor///         '::' template-id
468eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
469eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// NOTE: The standard specifies that, for qualified-id, the parser does not
470eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// expect:
471eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
472eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   '::' conversion-function-id
473eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   '::' '~' class-name
474eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
475eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// This may cause a slight inconsistency on diagnostics:
476eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
477eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// class C {};
478eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// namespace A {}
479eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// void f() {
480eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   :: A :: ~ C(); // Some Sema error about using destructor with a
481eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///                  // namespace.
482eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   :: ~ C(); // Some Parser error like 'unexpected ~'.
483eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// }
484eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
485eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// We simplify the parser a bit and make it work like:
486eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
487eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       qualified-id:
488eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
489eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::' unqualified-id
490eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
491eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// That way Sema can handle and report similar errors for namespaces and the
492eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// global scope.
493eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
494ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// The isAddressOfOperand parameter indicates that this id-expression is a
495ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// direct operand of the address-of operator. This is, besides member contexts,
496ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// the only place where a qualified-id naming a non-static class member may
497ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// appear.
498ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl///
49960d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
500eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  // qualified-id:
501eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  //   '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
502eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  //   '::' unqualified-id
503eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  //
504eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  CXXScopeSpec SS;
505efaa93aaa2653f4eb40e6a22e504a448da94aaf8Douglas Gregor  ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
506e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara
507e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara  SourceLocation TemplateKWLoc;
50802a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor  UnqualifiedId Name;
509e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara  if (ParseUnqualifiedId(SS,
510e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                         /*EnteringContext=*/false,
511e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                         /*AllowDestructorName=*/false,
512e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                         /*AllowConstructorName=*/false,
513b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                         /*ObjectType=*/ ParsedType(),
514e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                         TemplateKWLoc,
51502a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor                         Name))
51602a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor    return ExprError();
517b681b61fea36618778b8030360e90e3f4641233bJohn McCall
518b681b61fea36618778b8030360e90e3f4641233bJohn McCall  // This is only the direct operand of an & operator if it is not
519b681b61fea36618778b8030360e90e3f4641233bJohn McCall  // followed by a postfix-expression suffix.
5209c72c6088d591ace8503b842d39448c2040f3033John McCall  if (isAddressOfOperand && isPostfixExpressionSuffixStart())
5219c72c6088d591ace8503b842d39448c2040f3033John McCall    isAddressOfOperand = false;
522e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara
523e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara  return Actions.ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Name,
524e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                   Tok.is(tok::l_paren), isAddressOfOperand);
525eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis}
526eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis
527ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// ParseLambdaExpression - Parse a C++0x lambda expression.
528ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
529ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///       lambda-expression:
530ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         lambda-introducer lambda-declarator[opt] compound-statement
531ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
532ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///       lambda-introducer:
533ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         '[' lambda-capture[opt] ']'
534ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
535ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///       lambda-capture:
536ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         capture-default
537ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         capture-list
538ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         capture-default ',' capture-list
539ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
540ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///       capture-default:
541ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         '&'
542ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         '='
543ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
544ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///       capture-list:
545ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         capture
546ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         capture-list ',' capture
547ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
548ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///       capture:
549ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         identifier
550ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         '&' identifier
551ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         'this'
552ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
553ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///       lambda-declarator:
554ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///         '(' parameter-declaration-clause ')' attribute-specifier[opt]
555ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///           'mutable'[opt] exception-specification[opt]
556ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///           trailing-return-type[opt]
557ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
558ae7902c4293d9de8b9591759513f0d075f45022aDouglas GregorExprResult Parser::ParseLambdaExpression() {
559ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  // Parse lambda-introducer.
560ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  LambdaIntroducer Intro;
561ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
562ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
563ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  if (DiagID) {
564ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    Diag(Tok, DiagID.getValue());
565ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    SkipUntil(tok::r_square);
566dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman    SkipUntil(tok::l_brace);
567dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman    SkipUntil(tok::r_brace);
568dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman    return ExprError();
569ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
570ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
571ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  return ParseLambdaExpressionAfterIntroducer(Intro);
572ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor}
573ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
574ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// TryParseLambdaExpression - Use lookahead and potentially tentative
575ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// parsing to determine if we are looking at a C++0x lambda expression, and parse
576ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// it if we are.
577ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
578ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// If we are not looking at a lambda expression, returns ExprError().
579ae7902c4293d9de8b9591759513f0d075f45022aDouglas GregorExprResult Parser::TryParseLambdaExpression() {
5804e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  assert(getLangOpts().CPlusPlus0x
581ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor         && Tok.is(tok::l_square)
582ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor         && "Not at the start of a possible lambda expression.");
583ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
584ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  const Token Next = NextToken(), After = GetLookAheadToken(2);
585ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
586ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  // If lookahead indicates this is a lambda...
587ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  if (Next.is(tok::r_square) ||     // []
588ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      Next.is(tok::equal) ||        // [=
589ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      (Next.is(tok::amp) &&         // [&] or [&,
590ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor       (After.is(tok::r_square) ||
591ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        After.is(tok::comma))) ||
592ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      (Next.is(tok::identifier) &&  // [identifier]
593ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor       After.is(tok::r_square))) {
594ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    return ParseLambdaExpression();
595ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
596ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
597dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // If lookahead indicates an ObjC message send...
598dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // [identifier identifier
599ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  if (Next.is(tok::identifier) && After.is(tok::identifier)) {
600dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman    return ExprEmpty();
601ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
602ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
603dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // Here, we're stuck: lambda introducers and Objective-C message sends are
604dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // unambiguous, but it requires arbitrary lookhead.  [a,b,c,d,e,f,g] is a
605dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // lambda, and [a,b,c,d,e,f,g h] is a Objective-C message send.  Instead of
606dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // writing two routines to parse a lambda introducer, just try to parse
607dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // a lambda introducer first, and fall back if that fails.
608dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  // (TryParseLambdaIntroducer never produces any diagnostic output.)
609ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  LambdaIntroducer Intro;
610ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  if (TryParseLambdaIntroducer(Intro))
611dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman    return ExprEmpty();
612ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  return ParseLambdaExpressionAfterIntroducer(Intro);
613ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor}
614ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
615ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// ParseLambdaExpression - Parse a lambda introducer.
616ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
617ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// Returns a DiagnosticID if it hit something unexpected.
61881f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregorllvm::Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro){
619ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  typedef llvm::Optional<unsigned> DiagResult;
620ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
621ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
6224a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_square);
6234a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  T.consumeOpen();
6244a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor
6254a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  Intro.Range.setBegin(T.getOpenLocation());
626ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
627ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  bool first = true;
628ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
629ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  // Parse capture-default.
630ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  if (Tok.is(tok::amp) &&
631ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
632ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    Intro.Default = LCD_ByRef;
6333ac109cd17151bb8ad3a40b0cbb0e1923cd6c4a0Douglas Gregor    Intro.DefaultLoc = ConsumeToken();
634ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    first = false;
635ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  } else if (Tok.is(tok::equal)) {
636ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    Intro.Default = LCD_ByCopy;
6373ac109cd17151bb8ad3a40b0cbb0e1923cd6c4a0Douglas Gregor    Intro.DefaultLoc = ConsumeToken();
638ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    first = false;
639ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
640ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
641ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  while (Tok.isNot(tok::r_square)) {
642ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    if (!first) {
64381f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor      if (Tok.isNot(tok::comma)) {
644437fbc51c260780af2f639da6af1c1f91e66f2abDouglas Gregor        // Provide a completion for a lambda introducer here. Except
645437fbc51c260780af2f639da6af1c1f91e66f2abDouglas Gregor        // in Objective-C, where this is Almost Surely meant to be a message
646437fbc51c260780af2f639da6af1c1f91e66f2abDouglas Gregor        // send. In that case, fail here and let the ObjC message
647437fbc51c260780af2f639da6af1c1f91e66f2abDouglas Gregor        // expression parser perform the completion.
648d48ab06b178e400ac31ef4fe649e9c33d2caf651Douglas Gregor        if (Tok.is(tok::code_completion) &&
649d48ab06b178e400ac31ef4fe649e9c33d2caf651Douglas Gregor            !(getLangOpts().ObjC1 && Intro.Default == LCD_None &&
650d48ab06b178e400ac31ef4fe649e9c33d2caf651Douglas Gregor              !Intro.Captures.empty())) {
65181f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor          Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
65281f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor                                               /*AfterAmpersand=*/false);
65381f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor          ConsumeCodeCompletionToken();
65481f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor          break;
65581f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor        }
65681f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor
657ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        return DiagResult(diag::err_expected_comma_or_rsquare);
65881f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor      }
659ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      ConsumeToken();
660ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    }
661ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
66281f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor    if (Tok.is(tok::code_completion)) {
66381f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor      // If we're in Objective-C++ and we have a bare '[', then this is more
66481f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor      // likely to be a message receiver.
6654e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie      if (getLangOpts().ObjC1 && first)
66681f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor        Actions.CodeCompleteObjCMessageReceiver(getCurScope());
66781f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor      else
66881f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor        Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
66981f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor                                             /*AfterAmpersand=*/false);
67081f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor      ConsumeCodeCompletionToken();
67181f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor      break;
67281f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor    }
673ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
67481f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor    first = false;
67581f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor
676ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    // Parse capture.
677ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    LambdaCaptureKind Kind = LCK_ByCopy;
678ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    SourceLocation Loc;
679ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    IdentifierInfo* Id = 0;
680a73652465bcc4c0f6cb7d933ad84e002b527a643Douglas Gregor    SourceLocation EllipsisLoc;
681a73652465bcc4c0f6cb7d933ad84e002b527a643Douglas Gregor
682ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    if (Tok.is(tok::kw_this)) {
683ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      Kind = LCK_This;
684ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      Loc = ConsumeToken();
685ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    } else {
686ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      if (Tok.is(tok::amp)) {
687ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        Kind = LCK_ByRef;
688ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        ConsumeToken();
68981f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor
69081f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor        if (Tok.is(tok::code_completion)) {
69181f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor          Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro,
69281f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor                                               /*AfterAmpersand=*/true);
69381f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor          ConsumeCodeCompletionToken();
69481f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor          break;
69581f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor        }
696ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      }
697ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
698ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      if (Tok.is(tok::identifier)) {
699ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        Id = Tok.getIdentifierInfo();
700ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        Loc = ConsumeToken();
701a73652465bcc4c0f6cb7d933ad84e002b527a643Douglas Gregor
702a73652465bcc4c0f6cb7d933ad84e002b527a643Douglas Gregor        if (Tok.is(tok::ellipsis))
703a73652465bcc4c0f6cb7d933ad84e002b527a643Douglas Gregor          EllipsisLoc = ConsumeToken();
704ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      } else if (Tok.is(tok::kw_this)) {
705ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        // FIXME: If we want to suggest a fixit here, will need to return more
706ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        // than just DiagnosticID. Perhaps full DiagnosticBuilder that can be
707ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        // Clear()ed to prevent emission in case of tentative parsing?
708ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        return DiagResult(diag::err_this_captured_by_reference);
709ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      } else {
710ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        return DiagResult(diag::err_expected_capture);
711ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      }
712ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    }
713ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
714a73652465bcc4c0f6cb7d933ad84e002b527a643Douglas Gregor    Intro.addCapture(Kind, Loc, Id, EllipsisLoc);
715ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
716ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
7174a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  T.consumeClose();
7184a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  Intro.Range.setEnd(T.getCloseLocation());
719ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
720ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  return DiagResult();
721ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor}
722ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
72381f3bff7c202d688c9298bc049fdb5b6f77057b1Douglas Gregor/// TryParseLambdaIntroducer - Tentatively parse a lambda introducer.
724ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor///
725ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// Returns true if it hit something unexpected.
726ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregorbool Parser::TryParseLambdaIntroducer(LambdaIntroducer &Intro) {
727ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  TentativeParsingAction PA(*this);
728ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
729ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  llvm::Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
730ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
731ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  if (DiagID) {
732ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    PA.Revert();
733ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    return true;
734ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
735ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
736ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  PA.Commit();
737ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  return false;
738ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor}
739ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
740ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// ParseLambdaExpressionAfterIntroducer - Parse the rest of a lambda
741ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor/// expression.
742ae7902c4293d9de8b9591759513f0d075f45022aDouglas GregorExprResult Parser::ParseLambdaExpressionAfterIntroducer(
743ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                     LambdaIntroducer &Intro) {
744dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  SourceLocation LambdaBeginLoc = Intro.Range.getBegin();
745dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  Diag(LambdaBeginLoc, diag::warn_cxx98_compat_lambda);
746dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman
747dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  PrettyStackTraceLoc CrashInfo(PP.getSourceManager(), LambdaBeginLoc,
748dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman                                "lambda expression parsing");
749dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman
750ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  // Parse lambda-declarator[opt].
751ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  DeclSpec DS(AttrFactory);
752f88c400085eac7068399d0a01dbad89f8c579f07Eli Friedman  Declarator D(DS, Declarator::LambdaExprContext);
753ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
754ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  if (Tok.is(tok::l_paren)) {
755ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    ParseScope PrototypeScope(this,
756ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                              Scope::FunctionPrototypeScope |
757ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                              Scope::DeclScope);
758ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
7594a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    SourceLocation DeclLoc, DeclEndLoc;
7604a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    BalancedDelimiterTracker T(*this, tok::l_paren);
7614a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeOpen();
7624a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    DeclLoc = T.getOpenLocation();
763ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
764ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    // Parse parameter-declaration-clause.
765ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    ParsedAttributes Attr(AttrFactory);
766ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    llvm::SmallVector<DeclaratorChunk::ParamInfo, 16> ParamInfo;
767ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    SourceLocation EllipsisLoc;
768ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
769ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    if (Tok.isNot(tok::r_paren))
770ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      ParseParameterDeclarationClause(D, Attr, ParamInfo, EllipsisLoc);
771ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
7724a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
7734a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    DeclEndLoc = T.getCloseLocation();
774ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
775ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    // Parse 'mutable'[opt].
776ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    SourceLocation MutableLoc;
777ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    if (Tok.is(tok::kw_mutable)) {
778ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      MutableLoc = ConsumeToken();
779ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      DeclEndLoc = MutableLoc;
780ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    }
781ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
782ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    // Parse exception-specification[opt].
783ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    ExceptionSpecificationType ESpecType = EST_None;
784ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    SourceRange ESpecRange;
785ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    llvm::SmallVector<ParsedType, 2> DynamicExceptions;
786ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    llvm::SmallVector<SourceRange, 2> DynamicExceptionRanges;
787ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    ExprResult NoexceptExpr;
788a058fd4f0a944174295f77169b438510dad389f8Richard Smith    ESpecType = tryParseExceptionSpecification(ESpecRange,
78974e2fc332e07c76d4e69ccbd0e9e47a0bafd3908Douglas Gregor                                               DynamicExceptions,
79074e2fc332e07c76d4e69ccbd0e9e47a0bafd3908Douglas Gregor                                               DynamicExceptionRanges,
791a058fd4f0a944174295f77169b438510dad389f8Richard Smith                                               NoexceptExpr);
792ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
793ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    if (ESpecType != EST_None)
794ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      DeclEndLoc = ESpecRange.getEnd();
795ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
796ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    // Parse attribute-specifier[opt].
797ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    MaybeParseCXX0XAttributes(Attr, &DeclEndLoc);
798ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
799ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    // Parse trailing-return-type[opt].
80054655be65585ed6618fdd7a19fa6c70efc321d3aRichard Smith    TypeResult TrailingReturnType;
801ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    if (Tok.is(tok::arrow)) {
802ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      SourceRange Range;
80354655be65585ed6618fdd7a19fa6c70efc321d3aRichard Smith      TrailingReturnType = ParseTrailingReturnType(Range);
804ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor      if (Range.getEnd().isValid())
805ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor        DeclEndLoc = Range.getEnd();
806ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    }
807ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
808ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    PrototypeScope.Exit();
809ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
810ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
811ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           /*isVariadic=*/EllipsisLoc.isValid(),
812b9c6261d02f688d0a9a36b736ad5956fbc737854Richard Smith                                           /*isAmbiguous=*/false, EllipsisLoc,
813ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           ParamInfo.data(), ParamInfo.size(),
814ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           DS.getTypeQualifiers(),
815ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           /*RefQualifierIsLValueRef=*/true,
816ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           /*RefQualifierLoc=*/SourceLocation(),
81743f5103f8051bbac19022e6edaf7d9138b0f3c0fDouglas Gregor                                         /*ConstQualifierLoc=*/SourceLocation(),
81843f5103f8051bbac19022e6edaf7d9138b0f3c0fDouglas Gregor                                      /*VolatileQualifierLoc=*/SourceLocation(),
819ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           MutableLoc,
820ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           ESpecType, ESpecRange.getBegin(),
821ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           DynamicExceptions.data(),
822ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           DynamicExceptionRanges.data(),
823ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           DynamicExceptions.size(),
824ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           NoexceptExpr.isUsable() ?
825ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                             NoexceptExpr.get() : 0,
826ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           DeclLoc, DeclEndLoc, D,
827ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                                           TrailingReturnType),
828ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor                  Attr, DeclEndLoc);
829c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor  } else if (Tok.is(tok::kw_mutable) || Tok.is(tok::arrow)) {
830c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    // It's common to forget that one needs '()' before 'mutable' or the
831c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    // result type. Deal with this.
832c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    Diag(Tok, diag::err_lambda_missing_parens)
833c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor      << Tok.is(tok::arrow)
834c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor      << FixItHint::CreateInsertion(Tok.getLocation(), "() ");
835c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    SourceLocation DeclLoc = Tok.getLocation();
836c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    SourceLocation DeclEndLoc = DeclLoc;
837c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor
838c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    // Parse 'mutable', if it's there.
839c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    SourceLocation MutableLoc;
840c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    if (Tok.is(tok::kw_mutable)) {
841c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor      MutableLoc = ConsumeToken();
842c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor      DeclEndLoc = MutableLoc;
843c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    }
844c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor
845c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    // Parse the return type, if there is one.
84654655be65585ed6618fdd7a19fa6c70efc321d3aRichard Smith    TypeResult TrailingReturnType;
847c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    if (Tok.is(tok::arrow)) {
848c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor      SourceRange Range;
84954655be65585ed6618fdd7a19fa6c70efc321d3aRichard Smith      TrailingReturnType = ParseTrailingReturnType(Range);
850c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor      if (Range.getEnd().isValid())
851c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor        DeclEndLoc = Range.getEnd();
852c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    }
853c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor
854c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    ParsedAttributes Attr(AttrFactory);
855c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor    D.AddTypeInfo(DeclaratorChunk::getFunction(/*hasProto=*/true,
856c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*isVariadic=*/false,
857b9c6261d02f688d0a9a36b736ad5956fbc737854Richard Smith                     /*isAmbiguous=*/false,
858c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*EllipsisLoc=*/SourceLocation(),
859c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*Params=*/0, /*NumParams=*/0,
860c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*TypeQuals=*/0,
861c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*RefQualifierIsLValueRef=*/true,
862c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*RefQualifierLoc=*/SourceLocation(),
863c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*ConstQualifierLoc=*/SourceLocation(),
864c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*VolatileQualifierLoc=*/SourceLocation(),
865c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     MutableLoc,
866c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     EST_None,
867c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*ESpecLoc=*/SourceLocation(),
868c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*Exceptions=*/0,
869c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*ExceptionRanges=*/0,
870c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*NumExceptions=*/0,
871c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     /*NoexceptExpr=*/0,
872c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     DeclLoc, DeclEndLoc, D,
873c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                     TrailingReturnType),
874c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor                  Attr, DeclEndLoc);
875ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
876c9ecec404fe28d53aa49b3c830d8353e97bea5f2Douglas Gregor
877ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
878906a7e1c0f272f7e539c82dda01f4644031ce637Eli Friedman  // FIXME: Rename BlockScope -> ClosureScope if we decide to continue using
879906a7e1c0f272f7e539c82dda01f4644031ce637Eli Friedman  // it.
880fccfb625e3090e77da9b6a79edcab159c7006685Douglas Gregor  unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope;
881fccfb625e3090e77da9b6a79edcab159c7006685Douglas Gregor  ParseScope BodyScope(this, ScopeFlags);
882906a7e1c0f272f7e539c82dda01f4644031ce637Eli Friedman
883ec9ea7200718478e8a976529defbe21942a11c9cEli Friedman  Actions.ActOnStartOfLambdaDefinition(Intro, D, getCurScope());
884ec9ea7200718478e8a976529defbe21942a11c9cEli Friedman
885ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  // Parse compound-statement.
886dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  if (!Tok.is(tok::l_brace)) {
887ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor    Diag(Tok, diag::err_expected_lambda_body);
888dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman    Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
889dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman    return ExprError();
890ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor  }
891ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
892dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  StmtResult Stmt(ParseCompoundStatementBody());
893dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman  BodyScope.Exit();
894dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman
895deeab90783eb28d955add1062b616c030eb2b781Eli Friedman  if (!Stmt.isInvalid())
8969e8c92a9c9b949bbb0408fbbd9a58e34894b6efcDouglas Gregor    return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.take(), getCurScope());
897dc3b723d35067e5d13474247b94a10c869cc7e58Eli Friedman
898deeab90783eb28d955add1062b616c030eb2b781Eli Friedman  Actions.ActOnLambdaError(LambdaBeginLoc, getCurScope());
899deeab90783eb28d955add1062b616c030eb2b781Eli Friedman  return ExprError();
900ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor}
901ae7902c4293d9de8b9591759513f0d075f45022aDouglas Gregor
9025f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// ParseCXXCasts - This handles the various ways to cast expressions to another
9035f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// type.
9045f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
9055f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///       postfix-expression: [C++ 5.2p1]
9065f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'dynamic_cast' '<' type-name '>' '(' expression ')'
9075f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'static_cast' '<' type-name '>' '(' expression ')'
9085f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'reinterpret_cast' '<' type-name '>' '(' expression ')'
9095f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'const_cast' '<' type-name '>' '(' expression ')'
9105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
91160d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult Parser::ParseCXXCasts() {
9125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  tok::TokenKind Kind = Tok.getKind();
9135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  const char *CastName = 0;     // For error messages
9145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  switch (Kind) {
916eb2d1f1c88836bd5382e5d7aa8f6b85148a88b27David Blaikie  default: llvm_unreachable("Unknown C++ cast!");
9175f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_const_cast:       CastName = "const_cast";       break;
9185f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_dynamic_cast:     CastName = "dynamic_cast";     break;
9195f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
9205f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_static_cast:      CastName = "static_cast";      break;
9215f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
9225f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9235f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation OpLoc = ConsumeToken();
9245f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation LAngleBracketLoc = Tok.getLocation();
9255f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
926ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  // Check for "<::" which is parsed as "[:".  If found, fix token stream,
927ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith  // diagnose error, suggest fix, and recover parsing.
92878fe3e05a9ea1fc670e5cb0bc54f54e064595e2cRichard Smith  if (Tok.is(tok::l_square) && Tok.getLength() == 2) {
92978fe3e05a9ea1fc670e5cb0bc54f54e064595e2cRichard Smith    Token Next = NextToken();
93078fe3e05a9ea1fc670e5cb0bc54f54e064595e2cRichard Smith    if (Next.is(tok::colon) && areTokensAdjacent(Tok, Next))
93178fe3e05a9ea1fc670e5cb0bc54f54e064595e2cRichard Smith      FixDigraph(*this, PP, Tok, Next, Kind, /*AtDigraph*/true);
93278fe3e05a9ea1fc670e5cb0bc54f54e064595e2cRichard Smith  }
933ea698b3f6cad84f7f583282dce3e03e24fe80e98Richard Smith
9345f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
93520df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError();
9365f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
93731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  // Parse the common declaration-specifiers piece.
93831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  DeclSpec DS(AttrFactory);
93931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  ParseSpecifierQualifierList(DS);
94031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
94131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  // Parse the abstract-declarator, if present.
94231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
94331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  ParseDeclarator(DeclaratorInfo);
94431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
9455f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation RAngleBracketLoc = Tok.getLocation();
9465f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9471ab3b96de160e4fbffec2a776e284a48a3bb543dChris Lattner  if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
94820df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
9495f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9504a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  SourceLocation LParenLoc, RParenLoc;
9514a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_paren);
9525f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9534a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  if (T.expectAndConsume(diag::err_expected_lparen_after, CastName))
95421e7ad24099965acfa801e4abdd91e3d94106428Argyrios Kyrtzidis    return ExprError();
9555f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
95660d7b3a319d84d688752be3870615ac0f111fb16John McCall  ExprResult Result = ParseExpression();
9571eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
95821e7ad24099965acfa801e4abdd91e3d94106428Argyrios Kyrtzidis  // Match the ')'.
9594a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  T.consumeClose();
9605f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
96131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
96249badde06e066d058d6c7fcf4e628a72999b65a9Douglas Gregor    Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
96331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis                                       LAngleBracketLoc, DeclaratorInfo,
964809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor                                       RAngleBracketLoc,
9654a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                       T.getOpenLocation(), Result.take(),
9664a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                       T.getCloseLocation());
9675f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
9683fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer  return Result;
9695f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
9705f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
971c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl/// ParseCXXTypeid - This handles the C++ typeid expression.
972c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///
973c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///       postfix-expression: [C++ 5.2p1]
974c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///         'typeid' '(' expression ')'
975c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///         'typeid' '(' type-id ')'
976c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///
97760d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult Parser::ParseCXXTypeid() {
978c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
979c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
980c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  SourceLocation OpLoc = ConsumeToken();
9814a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  SourceLocation LParenLoc, RParenLoc;
9824a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_paren);
983c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
984c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  // typeid expressions are always parenthesized.
9854a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  if (T.expectAndConsume(diag::err_expected_lparen_after, "typeid"))
98620df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError();
9874a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  LParenLoc = T.getOpenLocation();
988c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
98960d7b3a319d84d688752be3870615ac0f111fb16John McCall  ExprResult Result;
990c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
9910576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // C++0x [expr.typeid]p3:
9920576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  //   When typeid is applied to an expression other than an lvalue of a
9930576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  //   polymorphic class type [...] The expression is an unevaluated
9940576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  //   operand (Clause 5).
9950576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  //
9960576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // Note that we can't tell whether the expression is an lvalue of a
9970576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // polymorphic class type until after we've parsed the expression; we
9980576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // speculatively assume the subexpression is unevaluated, and fix it up
9990576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // later.
10000576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  //
10010576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // We enter the unevaluated context before trying to determine whether we
10020576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // have a type-id, because the tentative parse logic will try to resolve
10030576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  // names, and must treat them as unevaluated.
10040576681bac125be07f77f66b02a3dba2c3a24557Richard Smith  EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
10050576681bac125be07f77f66b02a3dba2c3a24557Richard Smith
1006c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  if (isTypeIdInParens()) {
1007809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor    TypeResult Ty = ParseTypeName();
1008c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
1009c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    // Match the ')'.
10104a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
10114a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    RParenLoc = T.getCloseLocation();
10124eb4f0f96289cbece50c1270e02af3caf8779705Douglas Gregor    if (Ty.isInvalid() || RParenLoc.isInvalid())
101320df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
1014c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
1015c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
1016b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                    Ty.get().getAsOpaquePtr(), RParenLoc);
1017c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  } else {
1018c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    Result = ParseExpression();
1019c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
1020c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    // Match the ')'.
10210e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl    if (Result.isInvalid())
1022c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl      SkipUntil(tok::r_paren);
1023c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    else {
10244a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      T.consumeClose();
10254a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      RParenLoc = T.getCloseLocation();
10264eb4f0f96289cbece50c1270e02af3caf8779705Douglas Gregor      if (RParenLoc.isInvalid())
10274eb4f0f96289cbece50c1270e02af3caf8779705Douglas Gregor        return ExprError();
1028fadb53b351977ca7f99a9a613596cba6531979a3Douglas Gregor
1029c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl      Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
1030effa8d1c97b00a3f53e972b0e61d9aade5ea1c57Sebastian Redl                                      Result.release(), RParenLoc);
1031c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    }
1032c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  }
1033c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
10343fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer  return Result;
1035c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl}
1036c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
103701b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet/// ParseCXXUuidof - This handles the Microsoft C++ __uuidof expression.
103801b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet///
103901b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet///         '__uuidof' '(' expression ')'
104001b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet///         '__uuidof' '(' type-id ')'
104101b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet///
104201b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois PichetExprResult Parser::ParseCXXUuidof() {
104301b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet  assert(Tok.is(tok::kw___uuidof) && "Not '__uuidof'!");
104401b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
104501b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet  SourceLocation OpLoc = ConsumeToken();
10464a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_paren);
104701b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
104801b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet  // __uuidof expressions are always parenthesized.
10494a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  if (T.expectAndConsume(diag::err_expected_lparen_after, "__uuidof"))
105001b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    return ExprError();
105101b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
105201b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet  ExprResult Result;
105301b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
105401b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet  if (isTypeIdInParens()) {
105501b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    TypeResult Ty = ParseTypeName();
105601b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
105701b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    // Match the ')'.
10584a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
105901b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
106001b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    if (Ty.isInvalid())
106101b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet      return ExprError();
106201b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
10634a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(), /*isType=*/true,
10644a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                    Ty.get().getAsOpaquePtr(),
10654a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                    T.getCloseLocation());
106601b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet  } else {
106701b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
106801b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    Result = ParseExpression();
106901b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
107001b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    // Match the ')'.
107101b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    if (Result.isInvalid())
107201b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet      SkipUntil(tok::r_paren);
107301b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    else {
10744a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      T.consumeClose();
107501b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
10764a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(),
10774a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                      /*isType=*/false,
10784a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                      Result.release(), T.getCloseLocation());
107901b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet    }
108001b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet  }
108101b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
10823fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer  return Result;
108301b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet}
108401b7c3028da5bbcb9f8e52ba67e4613070de0e60Francois Pichet
1085d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// \brief Parse a C++ pseudo-destructor expression after the base,
1086d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// . or -> operator, and nested-name-specifier have already been
1087d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// parsed.
1088d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
1089d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///       postfix-expression: [C++ 5.2]
1090d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         postfix-expression . pseudo-destructor-name
1091d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         postfix-expression -> pseudo-destructor-name
1092d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
1093d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///       pseudo-destructor-name:
1094d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         ::[opt] nested-name-specifier[opt] type-name :: ~type-name
1095d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         ::[opt] nested-name-specifier template simple-template-id ::
1096d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///                 ~type-name
1097d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         ::[opt] nested-name-specifier[opt] ~type-name
1098d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
109960d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult
1100d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas GregorParser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
1101d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                 tok::TokenKind OpKind,
1102d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                 CXXScopeSpec &SS,
1103b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                 ParsedType ObjectType) {
1104d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // We're parsing either a pseudo-destructor-name or a dependent
1105d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // member access that has the same form as a
1106d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // pseudo-destructor-name. We parse both in the same way and let
1107d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // the action model sort them out.
1108d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  //
1109d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Note that the ::[opt] nested-name-specifier[opt] has already
1110d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // been parsed, and if there was a simple-template-id, it has
1111d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // been coalesced into a template-id annotation token.
1112d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  UnqualifiedId FirstTypeName;
1113d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SourceLocation CCLoc;
1114d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (Tok.is(tok::identifier)) {
1115d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1116d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    ConsumeToken();
1117d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1118d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    CCLoc = ConsumeToken();
1119d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  } else if (Tok.is(tok::annot_template_id)) {
1120e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara    // FIXME: retrieve TemplateKWLoc from template-id annotation and
1121e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara    // store it in the pseudo-dtor node (to be used when instantiating it).
1122d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    FirstTypeName.setTemplateId(
1123d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                              (TemplateIdAnnotation *)Tok.getAnnotationValue());
1124d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    ConsumeToken();
1125d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
1126d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    CCLoc = ConsumeToken();
1127d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  } else {
1128d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    FirstTypeName.setIdentifier(0, SourceLocation());
1129d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  }
1130d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
1131d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Parse the tilde.
1132d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
1133d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SourceLocation TildeLoc = ConsumeToken();
113491ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie
113591ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie  if (Tok.is(tok::kw_decltype) && !FirstTypeName.isValid() && SS.isEmpty()) {
113691ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie    DeclSpec DS(AttrFactory);
113785c60db2131c6d210d4777c3d50bdaf0e69bb8bfBenjamin Kramer    ParseDecltypeSpecifier(DS);
113891ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie    if (DS.getTypeSpecType() == TST_error)
113991ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie      return ExprError();
114091ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie    return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base, OpLoc,
114191ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie                                             OpKind, TildeLoc, DS,
114291ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie                                             Tok.is(tok::l_paren));
114391ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie  }
114491ec7894ec186dd36f509682f00486c98d8228edDavid Blaikie
1145d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (!Tok.is(tok::identifier)) {
1146d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    Diag(Tok, diag::err_destructor_tilde_identifier);
1147d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    return ExprError();
1148d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  }
1149d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
1150d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Parse the second type.
1151d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  UnqualifiedId SecondTypeName;
1152d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  IdentifierInfo *Name = Tok.getIdentifierInfo();
1153d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SourceLocation NameLoc = ConsumeToken();
1154d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SecondTypeName.setIdentifier(Name, NameLoc);
1155d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
1156d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // If there is a '<', the second type name is a template-id. Parse
1157d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // it as such.
1158d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (Tok.is(tok::less) &&
1159e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara      ParseUnqualifiedIdTemplateId(SS, SourceLocation(),
1160e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                   Name, NameLoc,
1161e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                   false, ObjectType, SecondTypeName,
1162e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                   /*AssumeTemplateName=*/true))
1163d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    return ExprError();
1164d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
11659ae2f076ca5ab1feb3ba95629099ec2319833701John McCall  return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base,
11669ae2f076ca5ab1feb3ba95629099ec2319833701John McCall                                           OpLoc, OpKind,
1167d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                           SS, FirstTypeName, CCLoc,
1168d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                           TildeLoc, SecondTypeName,
1169d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                           Tok.is(tok::l_paren));
1170d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor}
1171d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
11725f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
11735f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
11745f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///       boolean-literal: [C++ 2.13.5]
11755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'true'
11765f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'false'
117760d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult Parser::ParseCXXBoolLiteral() {
11785f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  tok::TokenKind Kind = Tok.getKind();
1179f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
11805f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
118150dd289f45738ed22b7583d52ed2525b927042ffChris Lattner
118250dd289f45738ed22b7583d52ed2525b927042ffChris Lattner/// ParseThrowExpression - This handles the C++ throw expression.
118350dd289f45738ed22b7583d52ed2525b927042ffChris Lattner///
118450dd289f45738ed22b7583d52ed2525b927042ffChris Lattner///       throw-expression: [C++ 15]
118550dd289f45738ed22b7583d52ed2525b927042ffChris Lattner///         'throw' assignment-expression[opt]
118660d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult Parser::ParseThrowExpression() {
118750dd289f45738ed22b7583d52ed2525b927042ffChris Lattner  assert(Tok.is(tok::kw_throw) && "Not throw!");
118850dd289f45738ed22b7583d52ed2525b927042ffChris Lattner  SourceLocation ThrowLoc = ConsumeToken();           // Eat the throw token.
118920df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl
11902a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  // If the current token isn't the start of an assignment-expression,
11912a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  // then the expression is not present.  This handles things like:
11922a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  //   "C ? throw : (void)42", which is crazy but legal.
11932a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  switch (Tok.getKind()) {  // FIXME: move this predicate somewhere common.
11942a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::semi:
11952a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::r_paren:
11962a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::r_square:
11972a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::r_brace:
11982a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::colon:
11992a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::comma:
1200bca01b46850f867b2f4137f25c882022b58f8471Douglas Gregor    return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, 0);
120150dd289f45738ed22b7583d52ed2525b927042ffChris Lattner
12022a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  default:
120360d7b3a319d84d688752be3870615ac0f111fb16John McCall    ExprResult Expr(ParseAssignmentExpression());
12043fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer    if (Expr.isInvalid()) return Expr;
1205bca01b46850f867b2f4137f25c882022b58f8471Douglas Gregor    return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.take());
12062a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  }
120750dd289f45738ed22b7583d52ed2525b927042ffChris Lattner}
12084cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis
12094cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// ParseCXXThis - This handles the C++ 'this' pointer.
12104cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis///
12114cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
12124cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// a non-lvalue expression whose value is the address of the object for which
12134cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// the function is called.
121460d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult Parser::ParseCXXThis() {
12154cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis  assert(Tok.is(tok::kw_this) && "Not 'this'!");
12164cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis  SourceLocation ThisLoc = ConsumeToken();
1217f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXThis(ThisLoc);
12184cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis}
1219987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
1220987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
1221987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// Can be interpreted either as function-style casting ("int(x)")
1222987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// or class type construction ("ClassType(x,y,z)")
1223987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// or creation of a value-initialized type ("int()").
1224dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl/// See [C++ 5.2.3].
1225987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
1226987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///       postfix-expression: [C++ 5.2p1]
1227dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl///         simple-type-specifier '(' expression-list[opt] ')'
1228dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl/// [C++0x] simple-type-specifier braced-init-list
1229dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl///         typename-specifier '(' expression-list[opt] ')'
1230dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl/// [C++0x] typename-specifier braced-init-list
1231987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
123260d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult
123320df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
1234987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
1235b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get();
1236987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
1237dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl  assert((Tok.is(tok::l_paren) ||
12384e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie          (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace)))
1239dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl         && "Expected '(' or '{'!");
1240bc61bd8109d9accf8f966b59e3f16a1497e72adfDouglas Gregor
1241dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl  if (Tok.is(tok::l_brace)) {
12426dc00f6e98a00bd1c332927c3e04918d7e8b0d4fSebastian Redl    ExprResult Init = ParseBraceInitializer();
12436dc00f6e98a00bd1c332927c3e04918d7e8b0d4fSebastian Redl    if (Init.isInvalid())
12446dc00f6e98a00bd1c332927c3e04918d7e8b0d4fSebastian Redl      return Init;
12456dc00f6e98a00bd1c332927c3e04918d7e8b0d4fSebastian Redl    Expr *InitList = Init.take();
12466dc00f6e98a00bd1c332927c3e04918d7e8b0d4fSebastian Redl    return Actions.ActOnCXXTypeConstructExpr(TypeRep, SourceLocation(),
12476dc00f6e98a00bd1c332927c3e04918d7e8b0d4fSebastian Redl                                             MultiExprArg(&InitList, 1),
12486dc00f6e98a00bd1c332927c3e04918d7e8b0d4fSebastian Redl                                             SourceLocation());
1249dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl  } else {
12504a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    BalancedDelimiterTracker T(*this, tok::l_paren);
12514a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeOpen();
1252dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl
12534e28d9e2ba9ce237549b45cfd4136ec6536d1325Benjamin Kramer    ExprVector Exprs;
1254dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl    CommaLocsTy CommaLocs;
1255dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl
1256dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl    if (Tok.isNot(tok::r_paren)) {
1257dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl      if (ParseExpressionList(Exprs, CommaLocs)) {
1258dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl        SkipUntil(tok::r_paren);
1259dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl        return ExprError();
1260dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl      }
1261987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    }
1262987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
1263dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl    // Match the ')'.
12644a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
1265987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
1266dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl    // TypeRep could be null, if it references an invalid typedef.
1267dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl    if (!TypeRep)
1268dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl      return ExprError();
1269ef0cb8e62d090ad88a01ca9fa89e48d7416f0ac7Sebastian Redl
1270dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl    assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
1271dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl           "Unexpected number of commas!");
12724a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    return Actions.ActOnCXXTypeConstructExpr(TypeRep, T.getOpenLocation(),
12733fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer                                             Exprs,
12744a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                             T.getCloseLocation());
1275dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl  }
1276987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis}
1277987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
127899e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// ParseCXXCondition - if/switch/while condition expression.
127971b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///
128071b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///       condition:
128171b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///         expression
128271b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///         type-specifier-seq declarator '=' assignment-expression
12830635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith/// [C++11] type-specifier-seq declarator '=' initializer-clause
12840635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith/// [C++11] type-specifier-seq declarator braced-init-list
128571b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis/// [GNU]   type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
128671b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///             '=' assignment-expression
128771b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///
12881ddbd89bb397988dd1a4e96d8d8c2c7705a2af75Dmitri Gribenko/// \param ExprOut if the condition was parsed as an expression, the parsed
12891ddbd89bb397988dd1a4e96d8d8c2c7705a2af75Dmitri Gribenko/// expression.
129099e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor///
12911ddbd89bb397988dd1a4e96d8d8c2c7705a2af75Dmitri Gribenko/// \param DeclOut if the condition was parsed as a declaration, the parsed
12921ddbd89bb397988dd1a4e96d8d8c2c7705a2af75Dmitri Gribenko/// declaration.
129399e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor///
1294586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor/// \param Loc The location of the start of the statement that requires this
1295586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor/// condition, e.g., the "for" in a for loop.
1296586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor///
1297586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor/// \param ConvertToBoolean Whether the condition expression should be
1298586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor/// converted to a boolean value.
1299586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor///
130099e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// \returns true if there was a parsing, false otherwise.
130160d7b3a319d84d688752be3870615ac0f111fb16John McCallbool Parser::ParseCXXCondition(ExprResult &ExprOut,
130260d7b3a319d84d688752be3870615ac0f111fb16John McCall                               Decl *&DeclOut,
1303586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor                               SourceLocation Loc,
1304586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor                               bool ConvertToBoolean) {
130501dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor  if (Tok.is(tok::code_completion)) {
1306f312b1ea179f1c44371f9ee0cd0bc006f612de11John McCall    Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition);
13077d100872341f233c81e1d7b72b40457e62c36862Argyrios Kyrtzidis    cutOffParsing();
13087d100872341f233c81e1d7b72b40457e62c36862Argyrios Kyrtzidis    return true;
130901dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor  }
131001dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor
13112edf0a2520313cde900799b1eb9bd11c9c776afeSean Hunt  ParsedAttributesWithRange attrs(AttrFactory);
13122edf0a2520313cde900799b1eb9bd11c9c776afeSean Hunt  MaybeParseCXX0XAttributes(attrs);
13132edf0a2520313cde900799b1eb9bd11c9c776afeSean Hunt
131499e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  if (!isCXXConditionDeclaration()) {
13152edf0a2520313cde900799b1eb9bd11c9c776afeSean Hunt    ProhibitAttributes(attrs);
13162edf0a2520313cde900799b1eb9bd11c9c776afeSean Hunt
1317586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor    // Parse the expression.
131860d7b3a319d84d688752be3870615ac0f111fb16John McCall    ExprOut = ParseExpression(); // expression
131960d7b3a319d84d688752be3870615ac0f111fb16John McCall    DeclOut = 0;
132060d7b3a319d84d688752be3870615ac0f111fb16John McCall    if (ExprOut.isInvalid())
1321586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor      return true;
1322586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor
1323586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor    // If required, convert to a boolean value.
1324586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor    if (ConvertToBoolean)
132560d7b3a319d84d688752be3870615ac0f111fb16John McCall      ExprOut
132660d7b3a319d84d688752be3870615ac0f111fb16John McCall        = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get());
132760d7b3a319d84d688752be3870615ac0f111fb16John McCall    return ExprOut.isInvalid();
132899e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  }
132971b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
133071b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // type-specifier-seq
13310b7e678a11ece4288dc01aebb5b17e5eef8f8d2dJohn McCall  DeclSpec DS(AttrFactory);
133271b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  ParseSpecifierQualifierList(DS);
133371b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
133471b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // declarator
133571b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
133671b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  ParseDeclarator(DeclaratorInfo);
133771b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
133871b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // simple-asm-expr[opt]
133971b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  if (Tok.is(tok::kw_asm)) {
1340ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    SourceLocation Loc;
134160d7b3a319d84d688752be3870615ac0f111fb16John McCall    ExprResult AsmLabel(ParseSimpleAsm(&Loc));
13420e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl    if (AsmLabel.isInvalid()) {
134371b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis      SkipUntil(tok::semi);
134499e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor      return true;
134571b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis    }
1346effa8d1c97b00a3f53e972b0e61d9aade5ea1c57Sebastian Redl    DeclaratorInfo.setAsmLabel(AsmLabel.release());
1347ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    DeclaratorInfo.SetRangeEnd(Loc);
134871b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  }
134971b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
135071b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // If attributes are present, parse them.
13517f040a9d817cd1c72b565e92abff473510bf9e1dJohn McCall  MaybeParseGNUAttributes(DeclaratorInfo);
135271b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
135399e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  // Type-check the declaration itself.
135460d7b3a319d84d688752be3870615ac0f111fb16John McCall  DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(),
13557f040a9d817cd1c72b565e92abff473510bf9e1dJohn McCall                                                        DeclaratorInfo);
135660d7b3a319d84d688752be3870615ac0f111fb16John McCall  DeclOut = Dcl.get();
135760d7b3a319d84d688752be3870615ac0f111fb16John McCall  ExprOut = ExprError();
1358a6eb5f81d13bacac01faff70a947047725b4413fArgyrios Kyrtzidis
135971b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // '=' assignment-expression
1360d6c7c67313634b317a0d63c32be0511a121bb33dRichard Trieu  // If a '==' or '+=' is found, suggest a fixit to '='.
13610635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith  bool CopyInitialization = isTokenEqualOrEqualTypo();
13620635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith  if (CopyInitialization)
1363dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin    ConsumeToken();
13640635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith
13650635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith  ExprResult InitExpr = ExprError();
13664e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  if (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace)) {
13670635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    Diag(Tok.getLocation(),
13680635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith         diag::warn_cxx98_compat_generalized_initializer_lists);
13690635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    InitExpr = ParseBraceInitializer();
13700635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith  } else if (CopyInitialization) {
13710635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    InitExpr = ParseAssignmentExpression();
13720635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith  } else if (Tok.is(tok::l_paren)) {
13730635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    // This was probably an attempt to initialize the variable.
13740635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    SourceLocation LParen = ConsumeParen(), RParen = LParen;
13750635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    if (SkipUntil(tok::r_paren, true, /*DontConsume=*/true))
13760635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith      RParen = ConsumeParen();
13770635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    Diag(DeclOut ? DeclOut->getLocation() : LParen,
13780635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith         diag::err_expected_init_in_condition_lparen)
13790635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith      << SourceRange(LParen, RParen);
138099e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  } else {
13810635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    Diag(DeclOut ? DeclOut->getLocation() : Tok.getLocation(),
13820635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith         diag::err_expected_init_in_condition);
138399e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  }
13840635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith
13850635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith  if (!InitExpr.isInvalid())
13860635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith    Actions.AddInitializerToDecl(DeclOut, InitExpr.take(), !CopyInitialization,
13870635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith                                 DS.getTypeSpecType() == DeclSpec::TST_auto);
13880635aa75ab48c9c3b4269d266305aba77b6ec58eRichard Smith
1389586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor  // FIXME: Build a reference to this declaration? Convert it to bool?
1390586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor  // (This is currently handled by Sema).
1391483b9f3bc05c5409e2c6643f1c9d91e21c8ff9d2Richard Smith
1392483b9f3bc05c5409e2c6643f1c9d91e21c8ff9d2Richard Smith  Actions.FinalizeDeclaration(DeclOut);
1393586596fd7f7a336a2847b300c80614dcf39ab6d5Douglas Gregor
139499e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  return false;
139571b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis}
139671b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
1397987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
1398987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// This should only be called when the current token is known to be part of
1399987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// simple-type-specifier.
1400987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
1401987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///       simple-type-specifier:
1402eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::'[opt] nested-name-specifier[opt] type-name
1403987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
1404987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         char
1405987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         wchar_t
1406987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         bool
1407987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         short
1408987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         int
1409987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         long
1410987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         signed
1411987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         unsigned
1412987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         float
1413987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         double
1414987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         void
1415987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// [GNU]   typeof-specifier
1416987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// [C++0x] auto               [TODO]
1417987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
1418987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///       type-name:
1419987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         class-name
1420987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         enum-name
1421987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         typedef-name
1422987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
1423987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidisvoid Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
1424987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  DS.SetRangeStart(Tok.getLocation());
1425987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  const char *PrevSpec;
1426fec54013fcd0eb72642741584ca04c1bc292bef8John McCall  unsigned DiagID;
1427987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  SourceLocation Loc = Tok.getLocation();
14281eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1429987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  switch (Tok.getKind()) {
143055a7cefc846765ac7d142a63f773747a20518d71Chris Lattner  case tok::identifier:   // foo::bar
143155a7cefc846765ac7d142a63f773747a20518d71Chris Lattner  case tok::coloncolon:   // ::foo::bar
1432b219cfc4d75f0a03630b7c4509ef791b7e97b2c8David Blaikie    llvm_unreachable("Annotation token should already be formed!");
14331eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  default:
1434b219cfc4d75f0a03630b7c4509ef791b7e97b2c8David Blaikie    llvm_unreachable("Not a simple-type-specifier token!");
143555a7cefc846765ac7d142a63f773747a20518d71Chris Lattner
1436987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  // type-name
1437b31757b68afe06ba442a05775d08fe7aa0f6f889Chris Lattner  case tok::annot_typename: {
14386952f1e4256c5b43aee5e98cea4e9b663bd1d413Douglas Gregor    if (getTypeAnnotation(Tok))
14396952f1e4256c5b43aee5e98cea4e9b663bd1d413Douglas Gregor      DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
14406952f1e4256c5b43aee5e98cea4e9b663bd1d413Douglas Gregor                         getTypeAnnotation(Tok));
14416952f1e4256c5b43aee5e98cea4e9b663bd1d413Douglas Gregor    else
14426952f1e4256c5b43aee5e98cea4e9b663bd1d413Douglas Gregor      DS.SetTypeSpecError();
14439bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor
14449bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    DS.SetRangeEnd(Tok.getAnnotationEndLoc());
14459bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    ConsumeToken();
14469bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor
14479bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    // Objective-C supports syntax of the form 'id<proto1,proto2>' where 'id'
14489bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    // is a specific typedef and 'itf<proto1,proto2>' where 'itf' is an
14499bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    // Objective-C interface.  If we don't have Objective-C or a '<', this is
14509bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    // just a normal reference to a typedef name.
14514e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie    if (Tok.is(tok::less) && getLangOpts().ObjC1)
14529bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor      ParseObjCProtocolQualifiers(DS);
14539bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor
14549bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    DS.Finish(Diags, PP);
14559bd1d8d174a9d15ae343246c8322299248b9e92aDouglas Gregor    return;
1456987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  }
14571eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1458987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  // builtin types
1459987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_short:
1460fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
1461987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1462987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_long:
1463fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
1464338d7f7362d18fa9c39c6bb5282b4e20574a9309Francois Pichet    break;
1465338d7f7362d18fa9c39c6bb5282b4e20574a9309Francois Pichet  case tok::kw___int64:
1466338d7f7362d18fa9c39c6bb5282b4e20574a9309Francois Pichet    DS.SetTypeSpecWidth(DeclSpec::TSW_longlong, Loc, PrevSpec, DiagID);
1467987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1468987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_signed:
1469fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
1470987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1471987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_unsigned:
1472fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
1473987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1474987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_void:
1475fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
1476987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1477987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_char:
1478fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
1479987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1480987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_int:
1481fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
1482987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
14835a5a971908a1fd064454db44c42333a3aecf3d5bRichard Smith  case tok::kw___int128:
14845a5a971908a1fd064454db44c42333a3aecf3d5bRichard Smith    DS.SetTypeSpecType(DeclSpec::TST_int128, Loc, PrevSpec, DiagID);
14855a5a971908a1fd064454db44c42333a3aecf3d5bRichard Smith    break;
1486aa4a99b4a62615db243f7a5c433169f2fc704420Anton Korobeynikov  case tok::kw_half:
1487aa4a99b4a62615db243f7a5c433169f2fc704420Anton Korobeynikov    DS.SetTypeSpecType(DeclSpec::TST_half, Loc, PrevSpec, DiagID);
1488aa4a99b4a62615db243f7a5c433169f2fc704420Anton Korobeynikov    break;
1489987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_float:
1490fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
1491987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1492987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_double:
1493fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
1494987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1495987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_wchar_t:
1496fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
1497987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
1498f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith  case tok::kw_char16_t:
1499fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
1500f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith    break;
1501f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith  case tok::kw_char32_t:
1502fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
1503f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith    break;
1504987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_bool:
1505fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
1506987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
15075e089fe1affb63d670ea02010b104bd9fa3477a1David Blaikie  case tok::annot_decltype:
15085e089fe1affb63d670ea02010b104bd9fa3477a1David Blaikie  case tok::kw_decltype:
15095e089fe1affb63d670ea02010b104bd9fa3477a1David Blaikie    DS.SetRangeEnd(ParseDecltypeSpecifier(DS));
15105e089fe1affb63d670ea02010b104bd9fa3477a1David Blaikie    return DS.Finish(Diags, PP);
15111eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1512987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  // GNU typeof support.
1513987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_typeof:
1514987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    ParseTypeofSpecifier(DS);
15159b3064b55f3c858923734e8b1c9831777fc22554Douglas Gregor    DS.Finish(Diags, PP);
1516987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    return;
1517987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  }
1518b31757b68afe06ba442a05775d08fe7aa0f6f889Chris Lattner  if (Tok.is(tok::annot_typename))
1519eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis    DS.SetRangeEnd(Tok.getAnnotationEndLoc());
1520eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  else
1521eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis    DS.SetRangeEnd(Tok.getLocation());
1522987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  ConsumeToken();
15239b3064b55f3c858923734e8b1c9831777fc22554Douglas Gregor  DS.Finish(Diags, PP);
1524987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis}
15251cd1b1e987f5e2f060d7972b13d83239b36d77d6Douglas Gregor
15262f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
15272f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// [dcl.name]), which is a non-empty sequence of type-specifiers,
15282f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// e.g., "const short int". Note that the DeclSpec is *not* finished
15292f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// by parsing the type-specifier-seq, because these sequences are
15302f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// typically followed by some form of declarator. Returns true and
15312f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// emits diagnostics if this is not a type-specifier-seq, false
15322f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// otherwise.
15332f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///
15342f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///   type-specifier-seq: [C++ 8.1]
15352f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///     type-specifier type-specifier-seq[opt]
15362f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///
15372f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregorbool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
153869730c115c2d0fec2f20609d905d920a5a41b29bRichard Smith  ParseSpecifierQualifierList(DS, AS_none, DSC_type_specifier);
1539396a9f235e160093b5f803f7a6a18fad7b68bdbeDouglas Gregor  DS.Finish(Diags, PP);
15402f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor  return false;
15412f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor}
15422f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor
15433f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \brief Finish parsing a C++ unqualified-id that is a template-id of
15443f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// some form.
15453f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
15463f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// This routine is invoked when a '<' is encountered after an identifier or
15473f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
15483f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// whether the unqualified-id is actually a template-id. This routine will
15493f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// then parse the template arguments and form the appropriate template-id to
15503f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// return to the caller.
15513f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
15523f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param SS the nested-name-specifier that precedes this template-id, if
15533f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// we're actually parsing a qualified-id.
15543f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
15553f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param Name for constructor and destructor names, this is the actual
15563f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// identifier that may be a template-name.
15573f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
15583f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param NameLoc the location of the class-name in a constructor or
15593f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// destructor.
15603f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
15613f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param EnteringContext whether we're entering the scope of the
15623f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// nested-name-specifier.
15633f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
156446df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// \param ObjectType if this unqualified-id occurs within a member access
156546df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// expression, the type of the base object whose member is being accessed.
156646df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor///
15673f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param Id as input, describes the template-name or operator-function-id
15683f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// that precedes the '<'. If template arguments were parsed successfully,
15693f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// will be updated with the template-id.
15703f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1571d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// \param AssumeTemplateId When true, this routine will assume that the name
1572d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// refers to a template without performing name lookup to verify.
1573d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
15743f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \returns true if a parse error occurred, false otherwise.
15753f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregorbool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
1576e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          SourceLocation TemplateKWLoc,
15773f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                          IdentifierInfo *Name,
15783f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                          SourceLocation NameLoc,
15793f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                          bool EnteringContext,
1580b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                          ParsedType ObjectType,
1581d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                          UnqualifiedId &Id,
1582e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          bool AssumeTemplateId) {
15830278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor  assert((AssumeTemplateId || Tok.is(tok::less)) &&
15840278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor         "Expected '<' to finish parsing a template-id");
15853f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
15863f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  TemplateTy Template;
15873f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  TemplateNameKind TNK = TNK_Non_template;
15883f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  switch (Id.getKind()) {
15893f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  case UnqualifiedId::IK_Identifier:
1590014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  case UnqualifiedId::IK_OperatorFunctionId:
1591e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt  case UnqualifiedId::IK_LiteralOperatorId:
1592d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    if (AssumeTemplateId) {
1593e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara      TNK = Actions.ActOnDependentTemplateName(getCurScope(), SS, TemplateKWLoc,
1594d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor                                               Id, ObjectType, EnteringContext,
1595d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor                                               Template);
1596d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor      if (TNK == TNK_Non_template)
1597d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor        return true;
15981fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor    } else {
15991fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor      bool MemberOfUnknownSpecialization;
16007c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara      TNK = Actions.isTemplateName(getCurScope(), SS,
16017c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara                                   TemplateKWLoc.isValid(), Id,
16027c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara                                   ObjectType, EnteringContext, Template,
16031fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor                                   MemberOfUnknownSpecialization);
16041fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor
16051fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor      if (TNK == TNK_Non_template && MemberOfUnknownSpecialization &&
16061fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          ObjectType && IsTemplateArgumentList()) {
16071fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        // We have something like t->getAs<T>(), where getAs is a
16081fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        // member of an unknown specialization. However, this will only
16091fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        // parse correctly as a template, so suggest the keyword 'template'
16101fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        // before 'getAs' and treat this as a dependent template name.
16111fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        std::string Name;
16121fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        if (Id.getKind() == UnqualifiedId::IK_Identifier)
16131fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          Name = Id.Identifier->getName();
16141fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        else {
16151fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          Name = "operator ";
16161fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId)
16171fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor            Name += getOperatorSpelling(Id.OperatorFunctionId.Operator);
16181fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          else
16191fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor            Name += Id.Identifier->getName();
16201fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        }
16211fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor        Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword)
16221fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          << Name
16231fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          << FixItHint::CreateInsertion(Id.StartLocation, "template ");
1624e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara        TNK = Actions.ActOnDependentTemplateName(getCurScope(),
1625e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                                 SS, TemplateKWLoc, Id,
1626e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                                 ObjectType, EnteringContext,
1627e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                                 Template);
1628d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor        if (TNK == TNK_Non_template)
16291fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor          return true;
16301fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor      }
16311fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor    }
16323f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    break;
16333f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1634014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  case UnqualifiedId::IK_ConstructorName: {
1635014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    UnqualifiedId TemplateName;
16361fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor    bool MemberOfUnknownSpecialization;
1637014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    TemplateName.setIdentifier(Name, NameLoc);
16387c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara    TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
16397c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara                                 TemplateName, ObjectType,
16401fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor                                 EnteringContext, Template,
16411fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor                                 MemberOfUnknownSpecialization);
16423f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    break;
1643014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  }
16443f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1645014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  case UnqualifiedId::IK_DestructorName: {
1646014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    UnqualifiedId TemplateName;
16471fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor    bool MemberOfUnknownSpecialization;
1648014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    TemplateName.setIdentifier(Name, NameLoc);
16492d1c21414199a7452f122598189363a3922605b1Douglas Gregor    if (ObjectType) {
1650e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara      TNK = Actions.ActOnDependentTemplateName(getCurScope(),
1651e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                               SS, TemplateKWLoc, TemplateName,
1652e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                               ObjectType, EnteringContext,
1653e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                               Template);
1654d6ab232bb3ec9847de5af06249afb63078b5f2eeDouglas Gregor      if (TNK == TNK_Non_template)
16552d1c21414199a7452f122598189363a3922605b1Douglas Gregor        return true;
16562d1c21414199a7452f122598189363a3922605b1Douglas Gregor    } else {
16577c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara      TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(),
16587c15353ccaed24f2df932571166bf305c1b98b6dAbramo Bagnara                                   TemplateName, ObjectType,
16591fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor                                   EnteringContext, Template,
16601fd6d44d7ca97631497551bbf98866263143d706Douglas Gregor                                   MemberOfUnknownSpecialization);
16612d1c21414199a7452f122598189363a3922605b1Douglas Gregor
1662b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall      if (TNK == TNK_Non_template && !Id.DestructorName.get()) {
1663124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor        Diag(NameLoc, diag::err_destructor_template_id)
1664124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor          << Name << SS.getRange();
16652d1c21414199a7452f122598189363a3922605b1Douglas Gregor        return true;
16662d1c21414199a7452f122598189363a3922605b1Douglas Gregor      }
16672d1c21414199a7452f122598189363a3922605b1Douglas Gregor    }
16683f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    break;
1669014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  }
16703f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
16713f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  default:
16723f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
16733f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
16743f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
16753f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (TNK == TNK_Non_template)
16763f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
16773f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
16783f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // Parse the enclosed template argument list.
16793f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  SourceLocation LAngleLoc, RAngleLoc;
16803f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  TemplateArgList TemplateArgs;
16810278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor  if (Tok.is(tok::less) &&
16820278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor      ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
1683059101f922de6eb765601459925f4c8914420b23Douglas Gregor                                       SS, true, LAngleLoc,
16843f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                       TemplateArgs,
16853f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                       RAngleLoc))
16863f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return true;
16873f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
16883f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Id.getKind() == UnqualifiedId::IK_Identifier ||
1689e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt      Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1690e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt      Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
16913f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Form a parsed representation of the template-id to be stored in the
16923f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // UnqualifiedId.
16933f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateIdAnnotation *TemplateId
169413bb701f2f876356400a34b0917a417c66b5d70dBenjamin Kramer      = TemplateIdAnnotation::Allocate(TemplateArgs.size(), TemplateIds);
16953f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
16963f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    if (Id.getKind() == UnqualifiedId::IK_Identifier) {
16973f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      TemplateId->Name = Id.Identifier;
1698014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->Operator = OO_None;
16993f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      TemplateId->TemplateNameLoc = Id.StartLocation;
17003f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    } else {
1701014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->Name = 0;
1702014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->Operator = Id.OperatorFunctionId.Operator;
1703014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->TemplateNameLoc = Id.StartLocation;
17043f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    }
17053f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1706059101f922de6eb765601459925f4c8914420b23Douglas Gregor    TemplateId->SS = SS;
17072b28bf1a8fa6e1c598805374f29e4fbf45e751feBenjamin Kramer    TemplateId->TemplateKWLoc = TemplateKWLoc;
17082b5289b6fd7e3d9899868410a498c081c9595662John McCall    TemplateId->Template = Template;
17093f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateId->Kind = TNK;
17103f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateId->LAngleLoc = LAngleLoc;
17113f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateId->RAngleLoc = RAngleLoc;
1712314b97f8c564b465af605efaee23f91ec18a982bDouglas Gregor    ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
17133f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
1714314b97f8c564b465af605efaee23f91ec18a982bDouglas Gregor         Arg != ArgEnd; ++Arg)
17153f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      Args[Arg] = TemplateArgs[Arg];
17163f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
17173f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Id.setTemplateId(TemplateId);
17183f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
17193f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
17203f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
17213f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // Bundle the template arguments together.
17225354e77e60e82828c7c2361f5c688c2667ab59ccBenjamin Kramer  ASTTemplateArgsPtr TemplateArgsPtr(TemplateArgs);
1723fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara
17243f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // Constructor and destructor names.
1725f312b1ea179f1c44371f9ee0cd0bc006f612de11John McCall  TypeResult Type
172655d23c925b058be29b792008ddb7d68f6c4fa9a0Abramo Bagnara    = Actions.ActOnTemplateIdType(SS, TemplateKWLoc,
172755d23c925b058be29b792008ddb7d68f6c4fa9a0Abramo Bagnara                                  Template, NameLoc,
1728fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                  LAngleLoc, TemplateArgsPtr, RAngleLoc,
1729fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                  /*IsCtorOrDtorName=*/true);
17303f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Type.isInvalid())
17313f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return true;
17323f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
17333f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
17343f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
17353f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  else
17363f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
17373f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
17383f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  return false;
17393f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor}
17403f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1741ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \brief Parse an operator-function-id or conversion-function-id as part
1742ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// of a C++ unqualified-id.
17433f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1744ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// This routine is responsible only for parsing the operator-function-id or
1745ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// conversion-function-id; it does not handle template arguments in any way.
17463f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1747ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \code
17483f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       operator-function-id: [C++ 13.5]
17493f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         'operator' operator
17503f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1751ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///       operator: one of
17523f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            new   delete  new[]   delete[]
17533f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            +     -    *  /    %  ^    &   |   ~
17543f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            !     =    <  >    += -=   *=  /=  %=
17553f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            ^=    &=   |= <<   >> >>= <<=  ==  !=
17563f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            <=    >=   && ||   ++ --   ,   ->* ->
17573f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            ()    []
17583f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
17593f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       conversion-function-id: [C++ 12.3.2]
17603f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         operator conversion-type-id
17613f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
17623f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       conversion-type-id:
17633f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         type-specifier-seq conversion-declarator[opt]
17643f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
17653f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       conversion-declarator:
17663f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         ptr-operator conversion-declarator[opt]
17673f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \endcode
17683f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
17691ddbd89bb397988dd1a4e96d8d8c2c7705a2af75Dmitri Gribenko/// \param SS The nested-name-specifier that preceded this unqualified-id. If
17703f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// non-empty, then we are parsing the unqualified-id of a qualified-id.
17713f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
17723f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param EnteringContext whether we are entering the scope of the
17733f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// nested-name-specifier.
17743f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1775ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \param ObjectType if this unqualified-id occurs within a member access
1776ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// expression, the type of the base object whose member is being accessed.
1777ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1778ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \param Result on a successful parse, contains the parsed unqualified-id.
1779ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1780ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \returns true if parsing fails, false otherwise.
1781ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregorbool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
1782b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                        ParsedType ObjectType,
1783ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                        UnqualifiedId &Result) {
1784ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1785ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1786ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Consume the 'operator' keyword.
1787ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  SourceLocation KeywordLoc = ConsumeToken();
1788ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1789ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Determine what kind of operator name we have.
1790ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  unsigned SymbolIdx = 0;
1791ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  SourceLocation SymbolLocations[3];
1792ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  OverloadedOperatorKind Op = OO_None;
1793ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  switch (Tok.getKind()) {
1794ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::kw_new:
1795ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::kw_delete: {
1796ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      bool isNew = Tok.getKind() == tok::kw_new;
1797ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Consume the 'new' or 'delete'.
1798ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = ConsumeToken();
17996ee326af4e77e6f05973486097884d7431f2108dRichard Smith      // Check for array new/delete.
18006ee326af4e77e6f05973486097884d7431f2108dRichard Smith      if (Tok.is(tok::l_square) &&
18016ee326af4e77e6f05973486097884d7431f2108dRichard Smith          (!getLangOpts().CPlusPlus0x || NextToken().isNot(tok::l_square))) {
18024a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        // Consume the '[' and ']'.
18034a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        BalancedDelimiterTracker T(*this, tok::l_square);
18044a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        T.consumeOpen();
18054a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        T.consumeClose();
18064a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        if (T.getCloseLocation().isInvalid())
1807ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          return true;
1808ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
18094a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        SymbolLocations[SymbolIdx++] = T.getOpenLocation();
18104a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        SymbolLocations[SymbolIdx++] = T.getCloseLocation();
1811ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        Op = isNew? OO_Array_New : OO_Array_Delete;
1812ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      } else {
1813ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        Op = isNew? OO_New : OO_Delete;
1814ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      }
1815ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1816ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1817ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1818ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1819ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::Token:                                                     \
1820ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = ConsumeToken();                     \
1821ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      Op = OO_##Name;                                                    \
1822ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1823ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1824ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor#include "clang/Basic/OperatorKinds.def"
1825ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1826ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::l_paren: {
18274a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      // Consume the '(' and ')'.
18284a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      BalancedDelimiterTracker T(*this, tok::l_paren);
18294a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      T.consumeOpen();
18304a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      T.consumeClose();
18314a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      if (T.getCloseLocation().isInvalid())
1832ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        return true;
1833ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
18344a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      SymbolLocations[SymbolIdx++] = T.getOpenLocation();
18354a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      SymbolLocations[SymbolIdx++] = T.getCloseLocation();
1836ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      Op = OO_Call;
1837ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1838ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1839ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1840ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::l_square: {
18414a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      // Consume the '[' and ']'.
18424a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      BalancedDelimiterTracker T(*this, tok::l_square);
18434a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      T.consumeOpen();
18444a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      T.consumeClose();
18454a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      if (T.getCloseLocation().isInvalid())
1846ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        return true;
1847ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
18484a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      SymbolLocations[SymbolIdx++] = T.getOpenLocation();
18494a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      SymbolLocations[SymbolIdx++] = T.getCloseLocation();
1850ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      Op = OO_Subscript;
1851ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1852ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1853ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1854ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::code_completion: {
1855ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Code completion for the operator name.
185623c94dbb6631fecdb55ba401aa93722803d980c6Douglas Gregor      Actions.CodeCompleteOperatorName(getCurScope());
18577d100872341f233c81e1d7b72b40457e62c36862Argyrios Kyrtzidis      cutOffParsing();
1858ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Don't try to parse any further.
1859ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      return true;
1860ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1861ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1862ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    default:
1863ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1864ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  }
1865ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1866ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  if (Op != OO_None) {
1867ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    // We have parsed an operator-function-id.
1868ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1869ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    return false;
1870ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  }
18710486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
18720486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  // Parse a literal-operator-id.
18730486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  //
18740486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  //   literal-operator-id: [C++0x 13.5.8]
18750486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  //     operator "" identifier
18760486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
18774e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  if (getLangOpts().CPlusPlus0x && isTokenStringLiteral()) {
18787fe6208c3fa91f835813bb78236ef5c2bbf81053Richard Smith    Diag(Tok.getLocation(), diag::warn_cxx98_compat_literal_operator);
187933762775706e81c17ca774102ceda36049ecc593Richard Smith
188033762775706e81c17ca774102ceda36049ecc593Richard Smith    SourceLocation DiagLoc;
188133762775706e81c17ca774102ceda36049ecc593Richard Smith    unsigned DiagId = 0;
188233762775706e81c17ca774102ceda36049ecc593Richard Smith
188333762775706e81c17ca774102ceda36049ecc593Richard Smith    // We're past translation phase 6, so perform string literal concatenation
188433762775706e81c17ca774102ceda36049ecc593Richard Smith    // before checking for "".
188533762775706e81c17ca774102ceda36049ecc593Richard Smith    llvm::SmallVector<Token, 4> Toks;
188633762775706e81c17ca774102ceda36049ecc593Richard Smith    llvm::SmallVector<SourceLocation, 4> TokLocs;
188733762775706e81c17ca774102ceda36049ecc593Richard Smith    while (isTokenStringLiteral()) {
188833762775706e81c17ca774102ceda36049ecc593Richard Smith      if (!Tok.is(tok::string_literal) && !DiagId) {
188933762775706e81c17ca774102ceda36049ecc593Richard Smith        DiagLoc = Tok.getLocation();
189033762775706e81c17ca774102ceda36049ecc593Richard Smith        DiagId = diag::err_literal_operator_string_prefix;
189133762775706e81c17ca774102ceda36049ecc593Richard Smith      }
189233762775706e81c17ca774102ceda36049ecc593Richard Smith      Toks.push_back(Tok);
189333762775706e81c17ca774102ceda36049ecc593Richard Smith      TokLocs.push_back(ConsumeStringToken());
189499831e4677a7e2e051af636221694d60ba31fcdbRichard Smith    }
18950486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
189633762775706e81c17ca774102ceda36049ecc593Richard Smith    StringLiteralParser Literal(Toks.data(), Toks.size(), PP);
189733762775706e81c17ca774102ceda36049ecc593Richard Smith    if (Literal.hadError)
189833762775706e81c17ca774102ceda36049ecc593Richard Smith      return true;
189933762775706e81c17ca774102ceda36049ecc593Richard Smith
190033762775706e81c17ca774102ceda36049ecc593Richard Smith    // Grab the literal operator's suffix, which will be either the next token
190133762775706e81c17ca774102ceda36049ecc593Richard Smith    // or a ud-suffix from the string literal.
190233762775706e81c17ca774102ceda36049ecc593Richard Smith    IdentifierInfo *II = 0;
190333762775706e81c17ca774102ceda36049ecc593Richard Smith    SourceLocation SuffixLoc;
190433762775706e81c17ca774102ceda36049ecc593Richard Smith    if (!Literal.getUDSuffix().empty()) {
190533762775706e81c17ca774102ceda36049ecc593Richard Smith      II = &PP.getIdentifierTable().get(Literal.getUDSuffix());
190633762775706e81c17ca774102ceda36049ecc593Richard Smith      SuffixLoc =
190733762775706e81c17ca774102ceda36049ecc593Richard Smith        Lexer::AdvanceToTokenCharacter(TokLocs[Literal.getUDSuffixToken()],
190833762775706e81c17ca774102ceda36049ecc593Richard Smith                                       Literal.getUDSuffixOffset(),
19094e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie                                       PP.getSourceManager(), getLangOpts());
191033762775706e81c17ca774102ceda36049ecc593Richard Smith      // This form is not permitted by the standard (yet).
191133762775706e81c17ca774102ceda36049ecc593Richard Smith      DiagLoc = SuffixLoc;
191233762775706e81c17ca774102ceda36049ecc593Richard Smith      DiagId = diag::err_literal_operator_missing_space;
191333762775706e81c17ca774102ceda36049ecc593Richard Smith    } else if (Tok.is(tok::identifier)) {
191433762775706e81c17ca774102ceda36049ecc593Richard Smith      II = Tok.getIdentifierInfo();
191533762775706e81c17ca774102ceda36049ecc593Richard Smith      SuffixLoc = ConsumeToken();
191633762775706e81c17ca774102ceda36049ecc593Richard Smith      TokLocs.push_back(SuffixLoc);
191733762775706e81c17ca774102ceda36049ecc593Richard Smith    } else {
19180486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt      Diag(Tok.getLocation(), diag::err_expected_ident);
19190486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt      return true;
19200486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt    }
19210486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
192233762775706e81c17ca774102ceda36049ecc593Richard Smith    // The string literal must be empty.
192333762775706e81c17ca774102ceda36049ecc593Richard Smith    if (!Literal.GetString().empty() || Literal.Pascal) {
192433762775706e81c17ca774102ceda36049ecc593Richard Smith      DiagLoc = TokLocs.front();
192533762775706e81c17ca774102ceda36049ecc593Richard Smith      DiagId = diag::err_literal_operator_string_not_empty;
192633762775706e81c17ca774102ceda36049ecc593Richard Smith    }
192733762775706e81c17ca774102ceda36049ecc593Richard Smith
192833762775706e81c17ca774102ceda36049ecc593Richard Smith    if (DiagId) {
192933762775706e81c17ca774102ceda36049ecc593Richard Smith      // This isn't a valid literal-operator-id, but we think we know
193033762775706e81c17ca774102ceda36049ecc593Richard Smith      // what the user meant. Tell them what they should have written.
193133762775706e81c17ca774102ceda36049ecc593Richard Smith      llvm::SmallString<32> Str;
193233762775706e81c17ca774102ceda36049ecc593Richard Smith      Str += "\"\" ";
193333762775706e81c17ca774102ceda36049ecc593Richard Smith      Str += II->getName();
193433762775706e81c17ca774102ceda36049ecc593Richard Smith      Diag(DiagLoc, DiagId) << FixItHint::CreateReplacement(
193533762775706e81c17ca774102ceda36049ecc593Richard Smith          SourceRange(TokLocs.front(), TokLocs.back()), Str);
193633762775706e81c17ca774102ceda36049ecc593Richard Smith    }
193733762775706e81c17ca774102ceda36049ecc593Richard Smith
193833762775706e81c17ca774102ceda36049ecc593Richard Smith    Result.setLiteralOperatorId(II, KeywordLoc, SuffixLoc);
19393e518bda00d710754ca077cf9be8dd821e16a854Sean Hunt    return false;
19400486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  }
1941ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1942ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Parse a conversion-function-id.
1943ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //
1944ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //   conversion-function-id: [C++ 12.3.2]
1945ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //     operator conversion-type-id
1946ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //
1947ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //   conversion-type-id:
1948ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //     type-specifier-seq conversion-declarator[opt]
1949ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //
1950ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //   conversion-declarator:
1951ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //     ptr-operator conversion-declarator[opt]
1952ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1953ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Parse the type-specifier-seq.
19540b7e678a11ece4288dc01aebb5b17e5eef8f8d2dJohn McCall  DeclSpec DS(AttrFactory);
1955f6e6fc801c700c7b8ac202ddbe550d9843a816fcDouglas Gregor  if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
1956ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    return true;
1957ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1958ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Parse the conversion-declarator, which is merely a sequence of
1959ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // ptr-operators.
1960ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  Declarator D(DS, Declarator::TypeNameContext);
1961ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1962ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1963ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Finish up the type.
1964f312b1ea179f1c44371f9ee0cd0bc006f612de11John McCall  TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D);
1965ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  if (Ty.isInvalid())
1966ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    return true;
1967ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1968ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Note that this is a conversion-function-id.
1969ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1970ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                 D.getSourceRange().getEnd());
1971ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  return false;
1972ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor}
1973ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1974ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1975ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// name of an entity.
1976ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1977ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \code
1978ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///       unqualified-id: [C++ expr.prim.general]
1979ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         identifier
1980ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         operator-function-id
1981ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         conversion-function-id
1982ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// [C++0x] literal-operator-id [TODO]
1983ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         ~ class-name
1984ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         template-id
1985ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1986ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \endcode
1987ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
19881ddbd89bb397988dd1a4e96d8d8c2c7705a2af75Dmitri Gribenko/// \param SS The nested-name-specifier that preceded this unqualified-id. If
1989ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1990ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1991ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \param EnteringContext whether we are entering the scope of the
1992ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// nested-name-specifier.
1993ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
19943f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param AllowDestructorName whether we allow parsing of a destructor name.
19953f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
19963f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param AllowConstructorName whether we allow parsing a constructor name.
19973f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
199846df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// \param ObjectType if this unqualified-id occurs within a member access
199946df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// expression, the type of the base object whose member is being accessed.
200046df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor///
20013f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param Result on a successful parse, contains the parsed unqualified-id.
20023f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
20033f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \returns true if parsing fails, false otherwise.
20043f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregorbool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
20053f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                bool AllowDestructorName,
20063f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                bool AllowConstructorName,
2007b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                ParsedType ObjectType,
2008e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                SourceLocation& TemplateKWLoc,
20093f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                UnqualifiedId &Result) {
20100278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor
20110278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor  // Handle 'A::template B'. This is for template-ids which have not
20120278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor  // already been annotated by ParseOptionalCXXScopeSpecifier().
20130278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor  bool TemplateSpecified = false;
20144e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  if (getLangOpts().CPlusPlus && Tok.is(tok::kw_template) &&
20150278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor      (ObjectType || SS.isSet())) {
20160278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor    TemplateSpecified = true;
20170278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor    TemplateKWLoc = ConsumeToken();
20180278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor  }
20190278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor
20203f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // unqualified-id:
20213f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   identifier
20223f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   template-id (when it hasn't already been annotated)
20233f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Tok.is(tok::identifier)) {
20243f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Consume the identifier.
20253f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    IdentifierInfo *Id = Tok.getIdentifierInfo();
20263f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    SourceLocation IdLoc = ConsumeToken();
20273f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
20284e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie    if (!getLangOpts().CPlusPlus) {
2029b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      // If we're not in C++, only identifiers matter. Record the
2030b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      // identifier and return.
2031b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      Result.setIdentifier(Id, IdLoc);
2032b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      return false;
2033b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor    }
2034b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor
20353f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    if (AllowConstructorName &&
203623c94dbb6631fecdb55ba401aa93722803d980c6Douglas Gregor        Actions.isCurrentClassName(*Id, getCurScope(), &SS)) {
20373f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      // We have parsed a constructor name.
2038fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara      ParsedType Ty = Actions.getTypeName(*Id, IdLoc, getCurScope(),
2039fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                          &SS, false, false,
2040fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                          ParsedType(),
2041fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                          /*IsCtorOrDtorName=*/true,
2042fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                          /*NonTrivialTypeSourceInfo=*/true);
2043fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara      Result.setConstructorName(Ty, IdLoc, IdLoc);
20443f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    } else {
20453f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      // We have parsed an identifier.
20463f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      Result.setIdentifier(Id, IdLoc);
20473f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    }
20483f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
20493f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // If the next token is a '<', we may have a template.
20500278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor    if (TemplateSpecified || Tok.is(tok::less))
2051e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara      return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc, Id, IdLoc,
2052e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          EnteringContext, ObjectType,
2053e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          Result, TemplateSpecified);
20543f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
20553f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
20563f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
20573f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
20583f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // unqualified-id:
20593f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   template-id (already parsed and annotated)
20603f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Tok.is(tok::annot_template_id)) {
206125a767651d14db87aa03dd5fe3e011d877dd4100Argyrios Kyrtzidis    TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
20620efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor
20630efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    // If the template-name names the current class, then this is a constructor
20640efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    if (AllowConstructorName && TemplateId->Name &&
206523c94dbb6631fecdb55ba401aa93722803d980c6Douglas Gregor        Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) {
20660efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      if (SS.isSet()) {
20670efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // C++ [class.qual]p2 specifies that a qualified template-name
20680efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // is taken as the constructor name where a constructor can be
20690efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // declared. Thus, the template arguments are extraneous, so
20700efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // complain about them and remove them entirely.
20710efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        Diag(TemplateId->TemplateNameLoc,
20720efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor             diag::err_out_of_line_constructor_template_id)
20730efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor          << TemplateId->Name
2074849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor          << FixItHint::CreateRemoval(
20750efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                    SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
2076fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara        ParsedType Ty = Actions.getTypeName(*TemplateId->Name,
2077fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                            TemplateId->TemplateNameLoc,
2078fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                            getCurScope(),
2079fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                            &SS, false, false,
2080fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                            ParsedType(),
2081fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                            /*IsCtorOrDtorName=*/true,
2082fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara                                            /*NontrivialTypeSourceInfo=*/true);
2083fad03b75e0297546c5d12ec420b5b79d5b7baa2aAbramo Bagnara        Result.setConstructorName(Ty, TemplateId->TemplateNameLoc,
20840efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                                  TemplateId->RAngleLoc);
20850efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        ConsumeToken();
20860efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        return false;
20870efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      }
20880efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor
20890efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      Result.setConstructorTemplateId(TemplateId);
20900efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      ConsumeToken();
20910efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      return false;
20920efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    }
20930efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor
20943f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // We have already parsed a template-id; consume the annotation token as
20953f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // our unqualified-id.
20960efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    Result.setTemplateId(TemplateId);
2097e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara    TemplateKWLoc = TemplateId->TemplateKWLoc;
20983f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    ConsumeToken();
20993f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
21003f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
21013f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21023f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // unqualified-id:
21033f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   operator-function-id
21043f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   conversion-function-id
21053f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Tok.is(tok::kw_operator)) {
2106ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
21073f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      return true;
21083f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
2109e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt    // If we have an operator-function-id or a literal-operator-id and the next
2110e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt    // token is a '<', we may have a
2111ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    //
2112ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    //   template-id:
2113ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    //     operator-function-id < template-argument-list[opt] >
2114e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt    if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
2115e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt         Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
21160278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor        (TemplateSpecified || Tok.is(tok::less)))
2117e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara      return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
2118e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          0, SourceLocation(),
2119e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          EnteringContext, ObjectType,
2120e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          Result, TemplateSpecified);
21213f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21223f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
21233f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
21243f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21254e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  if (getLangOpts().CPlusPlus &&
2126b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
21273f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // C++ [expr.unary.op]p10:
21283f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    //   There is an ambiguity in the unary-expression ~X(), where X is a
21293f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    //   class-name. The ambiguity is resolved in favor of treating ~ as a
21303f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    //    unary complement rather than treating ~X as referring to a destructor.
21313f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21323f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Parse the '~'.
21333f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    SourceLocation TildeLoc = ConsumeToken();
213453a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie
213553a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie    if (SS.isEmpty() && Tok.is(tok::kw_decltype)) {
213653a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie      DeclSpec DS(AttrFactory);
213753a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie      SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
213853a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie      if (ParsedType Type = Actions.getDestructorType(DS, ObjectType)) {
213953a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie        Result.setDestructorName(TildeLoc, Type, EndLoc);
214053a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie        return false;
214153a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie      }
214253a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie      return true;
214353a75c07dbe79b3dd5dd88a0378aefa18f793083David Blaikie    }
21443f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21453f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Parse the class-name.
21463f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    if (Tok.isNot(tok::identifier)) {
2147124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor      Diag(Tok, diag::err_destructor_tilde_identifier);
21483f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      return true;
21493f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    }
21503f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21513f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Parse the class-name (or template-name in a simple-template-id).
21523f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    IdentifierInfo *ClassName = Tok.getIdentifierInfo();
21533f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    SourceLocation ClassNameLoc = ConsumeToken();
21543f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21550278e123b4606ea15dbfa717e9c5a76a5ef2bc7dDouglas Gregor    if (TemplateSpecified || Tok.is(tok::less)) {
2156b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall      Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc);
2157e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara      return ParseUnqualifiedIdTemplateId(SS, TemplateKWLoc,
2158e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          ClassName, ClassNameLoc,
2159e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          EnteringContext, ObjectType,
2160e4b92761b43ced611c417ae478568610f1ad7b1eAbramo Bagnara                                          Result, TemplateSpecified);
21612d1c21414199a7452f122598189363a3922605b1Douglas Gregor    }
21622d1c21414199a7452f122598189363a3922605b1Douglas Gregor
21633f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Note that this is a destructor name.
2164b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall    ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName,
2165b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                              ClassNameLoc, getCurScope(),
2166b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                              SS, ObjectType,
2167b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                              EnteringContext);
2168124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor    if (!Ty)
21693f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      return true;
2170124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor
21713f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
21723f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
21733f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
21743f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21752d1c21414199a7452f122598189363a3922605b1Douglas Gregor  Diag(Tok, diag::err_expected_unqualified_id)
21764e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie    << getLangOpts().CPlusPlus;
21773f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  return true;
21783f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor}
21793f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
21804c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
21814c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// memory in a typesafe manner and call constructors.
21821eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump///
218359232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// This method is called to parse the new expression after the optional :: has
218459232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// been already parsed.  If the :: was present, "UseGlobal" is true and "Start"
218559232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// is its location.  Otherwise, "Start" is the location of the 'new' token.
21864c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
21874c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-expression:
21884c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'new' new-placement[opt] new-type-id
21894c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                                     new-initializer[opt]
21904c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'new' new-placement[opt] '(' type-id ')'
21914c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                                     new-initializer[opt]
21924c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
21934c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-placement:
21944c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '(' expression-list ')'
21954c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
2196cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///        new-type-id:
2197cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///                   type-specifier-seq new-declarator[opt]
2198893e1cc13ab17e96ada5019df6978af1668fee26Douglas Gregor/// [GNU]             attributes type-specifier-seq new-declarator[opt]
2199cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///
2200cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///        new-declarator:
2201cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///                   ptr-operator new-declarator[opt]
2202cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///                   direct-new-declarator
2203cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///
22044c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-initializer:
22054c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '(' expression-list[opt] ')'
2206dbef1bb8a8118b7b73e184e08fccfe0eaf914ddaSebastian Redl/// [C++0x]           braced-init-list
22074c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
220860d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult
220959232d35f5820e334b6c8b007ae8006f4390055dChris LattnerParser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
221059232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  assert(Tok.is(tok::kw_new) && "expected 'new' token");
221159232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  ConsumeToken();   // Consume 'new'
22124c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
22134c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // A '(' now can be a new-placement or the '(' wrapping the type-id in the
22144c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // second form of new-expression. It can't be a new-type-id.
22154c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
22164e28d9e2ba9ce237549b45cfd4136ec6536d1325Benjamin Kramer  ExprVector PlacementArgs;
22174c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  SourceLocation PlacementLParen, PlacementRParen;
22184c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
22194bd40318cbea15310a37343db46de96c4fcc15e6Douglas Gregor  SourceRange TypeIdParens;
22200b7e678a11ece4288dc01aebb5b17e5eef8f8d2dJohn McCall  DeclSpec DS(AttrFactory);
22210b8c98f3ddf83adcb9e9d98b68ce38e970cdee73Argyrios Kyrtzidis  Declarator DeclaratorInfo(DS, Declarator::CXXNewContext);
22224c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  if (Tok.is(tok::l_paren)) {
22234c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    // If it turns out to be a placement, we change the type location.
22244a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    BalancedDelimiterTracker T(*this, tok::l_paren);
22254a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeOpen();
22264a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    PlacementLParen = T.getOpenLocation();
2227cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
2228cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
222920df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
2230cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    }
22314c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
22324a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
22334a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    PlacementRParen = T.getCloseLocation();
2234cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (PlacementRParen.isInvalid()) {
2235cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
223620df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
2237cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    }
22384c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
2239cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (PlacementArgs.empty()) {
22404c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      // Reset the placement locations. There was no placement.
22414a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      TypeIdParens = T.getRange();
22424c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      PlacementLParen = PlacementRParen = SourceLocation();
22434c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    } else {
22444c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      // We still need the type.
22454c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      if (Tok.is(tok::l_paren)) {
22464a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        BalancedDelimiterTracker T(*this, tok::l_paren);
22474a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        T.consumeOpen();
2248893e1cc13ab17e96ada5019df6978af1668fee26Douglas Gregor        MaybeParseGNUAttributes(DeclaratorInfo);
2249cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        ParseSpecifierQualifierList(DS);
2250ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl        DeclaratorInfo.SetSourceRange(DS.getSourceRange());
2251cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        ParseDeclarator(DeclaratorInfo);
22524a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        T.consumeClose();
22534a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor        TypeIdParens = T.getRange();
22544c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      } else {
2255893e1cc13ab17e96ada5019df6978af1668fee26Douglas Gregor        MaybeParseGNUAttributes(DeclaratorInfo);
2256cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        if (ParseCXXTypeSpecifierSeq(DS))
2257cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl          DeclaratorInfo.setInvalidType(true);
2258ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl        else {
2259ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl          DeclaratorInfo.SetSourceRange(DS.getSourceRange());
2260cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl          ParseDeclaratorInternal(DeclaratorInfo,
2261cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl                                  &Parser::ParseDirectNewDeclarator);
2262ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl        }
22634c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      }
22644c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    }
22654c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  } else {
2266cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    // A new-type-id is a simplified type-id, where essentially the
2267cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    // direct-declarator is replaced by a direct-new-declarator.
2268893e1cc13ab17e96ada5019df6978af1668fee26Douglas Gregor    MaybeParseGNUAttributes(DeclaratorInfo);
2269cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (ParseCXXTypeSpecifierSeq(DS))
2270cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      DeclaratorInfo.setInvalidType(true);
2271ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    else {
2272ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl      DeclaratorInfo.SetSourceRange(DS.getSourceRange());
2273cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      ParseDeclaratorInternal(DeclaratorInfo,
2274cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl                              &Parser::ParseDirectNewDeclarator);
2275ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    }
22764c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
2277eaaebc7cf10dc1a2016183a262ad3256bc468759Chris Lattner  if (DeclaratorInfo.isInvalidType()) {
2278cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
227920df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError();
2280cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl  }
22814c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
22822aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl  ExprResult Initializer;
22834c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
22844c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  if (Tok.is(tok::l_paren)) {
22852aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl    SourceLocation ConstructorLParen, ConstructorRParen;
22864e28d9e2ba9ce237549b45cfd4136ec6536d1325Benjamin Kramer    ExprVector ConstructorArgs;
22874a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    BalancedDelimiterTracker T(*this, tok::l_paren);
22884a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeOpen();
22894a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    ConstructorLParen = T.getOpenLocation();
22904c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    if (Tok.isNot(tok::r_paren)) {
22914c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      CommaLocsTy CommaLocs;
2292cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
2293cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
229420df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl        return ExprError();
2295cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      }
22964c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    }
22974a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
22984a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    ConstructorRParen = T.getCloseLocation();
2299cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (ConstructorRParen.isInvalid()) {
2300cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
230120df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
2302cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    }
23032aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl    Initializer = Actions.ActOnParenListExpr(ConstructorLParen,
23042aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl                                             ConstructorRParen,
23053fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer                                             ConstructorArgs);
23064e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  } else if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus0x) {
23077fe6208c3fa91f835813bb78236ef5c2bbf81053Richard Smith    Diag(Tok.getLocation(),
23087fe6208c3fa91f835813bb78236ef5c2bbf81053Richard Smith         diag::warn_cxx98_compat_generalized_initializer_lists);
23092aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl    Initializer = ParseBraceInitializer();
23104c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
23112aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl  if (Initializer.isInvalid())
23122aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl    return Initializer;
23134c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
2314f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
23153fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer                             PlacementArgs, PlacementRParen,
23162aed8b88613863f3c439cdfb205bdf8b608fb205Sebastian Redl                             TypeIdParens, DeclaratorInfo, Initializer.take());
23174c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
23184c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
23194c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
23204c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// passed to ParseDeclaratorInternal.
23214c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
23224c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        direct-new-declarator:
23234c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '[' expression ']'
23244c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   direct-new-declarator '[' constant-expression ']'
23254c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
232659232d35f5820e334b6c8b007ae8006f4390055dChris Lattnervoid Parser::ParseDirectNewDeclarator(Declarator &D) {
23274c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // Parse the array dimensions.
23284c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  bool first = true;
23294c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  while (Tok.is(tok::l_square)) {
23306ee326af4e77e6f05973486097884d7431f2108dRichard Smith    // An array-size expression can't start with a lambda.
23316ee326af4e77e6f05973486097884d7431f2108dRichard Smith    if (CheckProhibitedCXX11Attribute())
23326ee326af4e77e6f05973486097884d7431f2108dRichard Smith      continue;
23336ee326af4e77e6f05973486097884d7431f2108dRichard Smith
23344a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    BalancedDelimiterTracker T(*this, tok::l_square);
23354a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeOpen();
23364a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor
233760d7b3a319d84d688752be3870615ac0f111fb16John McCall    ExprResult Size(first ? ParseExpression()
23382f7ece7c77eb17e24e8f0f4e1b7fb01aa5111f96Sebastian Redl                                : ParseConstantExpression());
23390e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl    if (Size.isInvalid()) {
23404c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      // Recover
23414c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      SkipUntil(tok::r_square);
23424c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      return;
23434c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    }
23444c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    first = false;
23454c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
23464a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
23470b7e678a11ece4288dc01aebb5b17e5eef8f8d2dJohn McCall
23486ee326af4e77e6f05973486097884d7431f2108dRichard Smith    // Attributes here appertain to the array type. C++11 [expr.new]p5.
23496ee326af4e77e6f05973486097884d7431f2108dRichard Smith    ParsedAttributes Attrs(AttrFactory);
23506ee326af4e77e6f05973486097884d7431f2108dRichard Smith    MaybeParseCXX0XAttributes(Attrs);
23516ee326af4e77e6f05973486097884d7431f2108dRichard Smith
23520b7e678a11ece4288dc01aebb5b17e5eef8f8d2dJohn McCall    D.AddTypeInfo(DeclaratorChunk::getArray(0,
23537f040a9d817cd1c72b565e92abff473510bf9e1dJohn McCall                                            /*static=*/false, /*star=*/false,
23544a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                            Size.release(),
23554a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                            T.getOpenLocation(),
23564a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                            T.getCloseLocation()),
23576ee326af4e77e6f05973486097884d7431f2108dRichard Smith                  Attrs, T.getCloseLocation());
23584c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
23594a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    if (T.getCloseLocation().isInvalid())
23604c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      return;
23614c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
23624c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
23634c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
23644c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
23654c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// This ambiguity appears in the syntax of the C++ new operator.
23664c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
23674c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-expression:
23684c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'new' new-placement[opt] '(' type-id ')'
23694c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                                     new-initializer[opt]
23704c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
23714c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-placement:
23724c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '(' expression-list ')'
23734c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
2374ca0408fb49c1370430672acf2d770b7151cf71deJohn McCallbool Parser::ParseExpressionListOrTypeId(
23755f9e272e632e951b1efe824cd16acb4d96077930Chris Lattner                                   SmallVectorImpl<Expr*> &PlacementArgs,
237659232d35f5820e334b6c8b007ae8006f4390055dChris Lattner                                         Declarator &D) {
23774c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // The '(' was already consumed.
23784c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  if (isTypeIdInParens()) {
2379cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    ParseSpecifierQualifierList(D.getMutableDeclSpec());
2380ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    D.SetSourceRange(D.getDeclSpec().getSourceRange());
2381cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    ParseDeclarator(D);
2382eaaebc7cf10dc1a2016183a262ad3256bc468759Chris Lattner    return D.isInvalidType();
23834c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
23844c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
23854c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // It's not a type, it has to be an expression list.
23864c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // Discard the comma locations - ActOnCXXNew has enough parameters.
23874c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  CommaLocsTy CommaLocs;
23884c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  return ParseExpressionList(PlacementArgs, CommaLocs);
23894c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
23904c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
23914c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
23924c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// to free memory allocated by new.
23934c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
239459232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// This method is called to parse the 'delete' expression after the optional
239559232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// '::' has been already parsed.  If the '::' was present, "UseGlobal" is true
239659232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// and "Start" is its location.  Otherwise, "Start" is the location of the
239759232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// 'delete' token.
239859232d35f5820e334b6c8b007ae8006f4390055dChris Lattner///
23994c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        delete-expression:
24004c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'delete' cast-expression
24014c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'delete' '[' ']' cast-expression
240260d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult
240359232d35f5820e334b6c8b007ae8006f4390055dChris LattnerParser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
240459232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
240559232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  ConsumeToken(); // Consume 'delete'
24064c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
24074c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // Array delete?
24084c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  bool ArrayDelete = false;
24096ee326af4e77e6f05973486097884d7431f2108dRichard Smith  if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
2410950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    // C++11 [expr.delete]p1:
2411950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    //   Whenever the delete keyword is followed by empty square brackets, it
2412950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    //   shall be interpreted as [array delete].
2413950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    //   [Footnote: A lambda expression with a lambda-introducer that consists
2414950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    //              of empty square brackets can follow the delete keyword if
2415950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    //              the lambda expression is enclosed in parentheses.]
2416950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    // FIXME: Produce a better diagnostic if the '[]' is unambiguously a
2417950435c15e413c55859f8af78d2c6e603743b42fRichard Smith    //        lambda-introducer.
24184c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    ArrayDelete = true;
24194a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    BalancedDelimiterTracker T(*this, tok::l_square);
24204a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor
24214a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeOpen();
24224a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
24234a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    if (T.getCloseLocation().isInvalid())
242420df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
24254c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
24264c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
242760d7b3a319d84d688752be3870615ac0f111fb16John McCall  ExprResult Operand(ParseCastExpression(false));
24280e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl  if (Operand.isInvalid())
24293fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer    return Operand;
24304c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
24319ae2f076ca5ab1feb3ba95629099ec2319833701John McCall  return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take());
24324c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
243364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
24341eb4433ac451dc16f4133a88af2d002ac26c58efMike Stumpstatic UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
243564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  switch(kind) {
2436b219cfc4d75f0a03630b7c4509ef791b7e97b2c8David Blaikie  default: llvm_unreachable("Not a known unary type trait.");
243764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_nothrow_assign:      return UTT_HasNothrowAssign;
243864b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
243920c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___has_nothrow_copy:           return UTT_HasNothrowCopy;
244064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_trivial_assign:      return UTT_HasTrivialAssign;
2441023df37c27ee8035664fb62f206ca58f4e2a169dSean Hunt  case tok::kw___has_trivial_constructor:
2442023df37c27ee8035664fb62f206ca58f4e2a169dSean Hunt                                    return UTT_HasTrivialDefaultConstructor;
244320c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___has_trivial_copy:           return UTT_HasTrivialCopy;
244464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_trivial_destructor:  return UTT_HasTrivialDestructor;
244564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_virtual_destructor:  return UTT_HasVirtualDestructor;
244664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_abstract:             return UTT_IsAbstract;
244720c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_arithmetic:              return UTT_IsArithmetic;
244820c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_array:                   return UTT_IsArray;
244964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_class:                return UTT_IsClass;
245020c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_complete_type:           return UTT_IsCompleteType;
245120c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_compound:                return UTT_IsCompound;
245220c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_const:                   return UTT_IsConst;
245364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_empty:                return UTT_IsEmpty;
245464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_enum:                 return UTT_IsEnum;
24555e9392ba18f5925e26cc5714d1412eda0d219826Douglas Gregor  case tok::kw___is_final:                 return UTT_IsFinal;
245620c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_floating_point:          return UTT_IsFloatingPoint;
245720c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_function:                return UTT_IsFunction;
245820c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_fundamental:             return UTT_IsFundamental;
245920c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_integral:                return UTT_IsIntegral;
246020c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_lvalue_reference:        return UTT_IsLvalueReference;
246120c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_member_function_pointer: return UTT_IsMemberFunctionPointer;
246220c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_member_object_pointer:   return UTT_IsMemberObjectPointer;
246320c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_member_pointer:          return UTT_IsMemberPointer;
246420c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_object:                  return UTT_IsObject;
24654e61ddd644e9c6293697a966d98d7c1905cf63a8Chandler Carruth  case tok::kw___is_literal:              return UTT_IsLiteral;
24663840281126e7d10552c55f6fd8b1ec9483898906Chandler Carruth  case tok::kw___is_literal_type:         return UTT_IsLiteral;
246764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_pod:                  return UTT_IsPOD;
246820c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_pointer:                 return UTT_IsPointer;
246964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_polymorphic:          return UTT_IsPolymorphic;
247020c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_reference:               return UTT_IsReference;
247120c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_rvalue_reference:        return UTT_IsRvalueReference;
247220c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_scalar:                  return UTT_IsScalar;
247320c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_signed:                  return UTT_IsSigned;
247420c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_standard_layout:         return UTT_IsStandardLayout;
247520c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_trivial:                 return UTT_IsTrivial;
2476feb375d31b7e9108b04a9f55b721d5e0c793a558Sean Hunt  case tok::kw___is_trivially_copyable:      return UTT_IsTriviallyCopyable;
247764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_union:                return UTT_IsUnion;
247820c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_unsigned:                return UTT_IsUnsigned;
247920c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_void:                    return UTT_IsVoid;
248020c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_volatile:                return UTT_IsVolatile;
248164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  }
24826ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet}
24836ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
24846ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichetstatic BinaryTypeTrait BinaryTypeTraitFromTokKind(tok::TokenKind kind) {
24856ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  switch(kind) {
248638c2b730a8553fa1cf369d0c5567f8b5d0a3dda8Francois Pichet  default: llvm_unreachable("Not a known binary type trait");
2487f187237d916afa97c491ac32fe98be7d335c5b63Francois Pichet  case tok::kw___is_base_of:                 return BTT_IsBaseOf;
248820c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_convertible:             return BTT_IsConvertible;
248920c0da7787c9a7d2529e42a4a91d777778595d74John Wiegley  case tok::kw___is_same:                    return BTT_IsSame;
2490f187237d916afa97c491ac32fe98be7d335c5b63Francois Pichet  case tok::kw___builtin_types_compatible_p: return BTT_TypeCompatible;
24919f3611365d0f2297a910cf246e056708726ed10aDouglas Gregor  case tok::kw___is_convertible_to:          return BTT_IsConvertibleTo;
249225d0a0f67d9e949ffbfc57bf487012f5cbfd886eDouglas Gregor  case tok::kw___is_trivially_assignable:    return BTT_IsTriviallyAssignable;
24936ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  }
249464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl}
249564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
24964ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregorstatic TypeTrait TypeTraitFromTokKind(tok::TokenKind kind) {
24974ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  switch (kind) {
24984ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  default: llvm_unreachable("Not a known type trait");
24994ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  case tok::kw___is_trivially_constructible:
25004ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    return TT_IsTriviallyConstructible;
25014ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  }
25024ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor}
25034ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
250421ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegleystatic ArrayTypeTrait ArrayTypeTraitFromTokKind(tok::TokenKind kind) {
250521ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  switch(kind) {
250621ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  default: llvm_unreachable("Not a known binary type trait");
250721ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  case tok::kw___array_rank:                 return ATT_ArrayRank;
250821ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  case tok::kw___array_extent:               return ATT_ArrayExtent;
250921ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  }
251021ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley}
251121ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley
2512552622067dc45013d240f73952fece703f5e63bdJohn Wiegleystatic ExpressionTrait ExpressionTraitFromTokKind(tok::TokenKind kind) {
2513552622067dc45013d240f73952fece703f5e63bdJohn Wiegley  switch(kind) {
2514b219cfc4d75f0a03630b7c4509ef791b7e97b2c8David Blaikie  default: llvm_unreachable("Not a known unary expression trait.");
2515552622067dc45013d240f73952fece703f5e63bdJohn Wiegley  case tok::kw___is_lvalue_expr:             return ET_IsLValueExpr;
2516552622067dc45013d240f73952fece703f5e63bdJohn Wiegley  case tok::kw___is_rvalue_expr:             return ET_IsRValueExpr;
2517552622067dc45013d240f73952fece703f5e63bdJohn Wiegley  }
2518552622067dc45013d240f73952fece703f5e63bdJohn Wiegley}
2519552622067dc45013d240f73952fece703f5e63bdJohn Wiegley
252064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
252164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// pseudo-functions that allow implementation of the TR1/C++0x type traits
252264b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// templates.
252364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl///
252464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl///       primary-expression:
252564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// [GNU]             unary-type-trait '(' type-id ')'
252664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl///
252760d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult Parser::ParseUnaryTypeTrait() {
252864b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
252964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  SourceLocation Loc = ConsumeToken();
253064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
25314a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_paren);
25324a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  if (T.expectAndConsume(diag::err_expected_lparen))
253364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl    return ExprError();
253464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
253564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
253664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  // there will be cryptic errors about mismatched parentheses and missing
253764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  // specifiers.
2538809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  TypeResult Ty = ParseTypeName();
253964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
25404a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  T.consumeClose();
254164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
2542809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  if (Ty.isInvalid())
2543809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor    return ExprError();
2544809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor
25454a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  return Actions.ActOnUnaryTypeTrait(UTT, Loc, Ty.get(), T.getCloseLocation());
254664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl}
2547f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
25486ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet/// ParseBinaryTypeTrait - Parse the built-in binary type-trait
25496ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet/// pseudo-functions that allow implementation of the TR1/C++0x type traits
25506ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet/// templates.
25516ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet///
25526ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet///       primary-expression:
25536ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet/// [GNU]             binary-type-trait '(' type-id ',' type-id ')'
25546ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet///
25556ad6f2848d7652ab2991286eb48be440d3493b28Francois PichetExprResult Parser::ParseBinaryTypeTrait() {
25566ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  BinaryTypeTrait BTT = BinaryTypeTraitFromTokKind(Tok.getKind());
25576ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  SourceLocation Loc = ConsumeToken();
25586ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
25594a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_paren);
25604a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  if (T.expectAndConsume(diag::err_expected_lparen))
25616ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet    return ExprError();
25626ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
25636ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  TypeResult LhsTy = ParseTypeName();
25646ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  if (LhsTy.isInvalid()) {
25656ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet    SkipUntil(tok::r_paren);
25666ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet    return ExprError();
25676ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  }
25686ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
25696ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
25706ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet    SkipUntil(tok::r_paren);
25716ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet    return ExprError();
25726ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  }
25736ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
25746ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  TypeResult RhsTy = ParseTypeName();
25756ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  if (RhsTy.isInvalid()) {
25766ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet    SkipUntil(tok::r_paren);
25776ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet    return ExprError();
25786ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet  }
25796ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
25804a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  T.consumeClose();
25816ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
25824a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  return Actions.ActOnBinaryTypeTrait(BTT, Loc, LhsTy.get(), RhsTy.get(),
25834a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                      T.getCloseLocation());
25846ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet}
25856ad6f2848d7652ab2991286eb48be440d3493b28Francois Pichet
25864ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor/// \brief Parse the built-in type-trait pseudo-functions that allow
25874ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor/// implementation of the TR1/C++11 type traits templates.
25884ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor///
25894ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor///       primary-expression:
25904ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor///          type-trait '(' type-id-seq ')'
25914ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor///
25924ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor///       type-id-seq:
25934ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor///          type-id ...[opt] type-id-seq[opt]
25944ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor///
25954ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas GregorExprResult Parser::ParseTypeTrait() {
25964ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  TypeTrait Kind = TypeTraitFromTokKind(Tok.getKind());
25974ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  SourceLocation Loc = ConsumeToken();
25984ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
25994ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  BalancedDelimiterTracker Parens(*this, tok::l_paren);
26004ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  if (Parens.expectAndConsume(diag::err_expected_lparen))
26014ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    return ExprError();
26024ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
26034ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  llvm::SmallVector<ParsedType, 2> Args;
26044ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  do {
26054ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    // Parse the next type.
26064ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    TypeResult Ty = ParseTypeName();
26074ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    if (Ty.isInvalid()) {
26084ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor      Parens.skipToEnd();
26094ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor      return ExprError();
26104ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    }
26114ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
26124ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    // Parse the ellipsis, if present.
26134ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    if (Tok.is(tok::ellipsis)) {
26144ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor      Ty = Actions.ActOnPackExpansion(Ty.get(), ConsumeToken());
26154ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor      if (Ty.isInvalid()) {
26164ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor        Parens.skipToEnd();
26174ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor        return ExprError();
26184ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor      }
26194ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    }
26204ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
26214ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    // Add this type to the list of arguments.
26224ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    Args.push_back(Ty.get());
26234ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
26244ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    if (Tok.is(tok::comma)) {
26254ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor      ConsumeToken();
26264ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor      continue;
26274ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    }
26284ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
26294ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    break;
26304ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  } while (true);
26314ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
26324ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  if (Parens.consumeClose())
26334ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor    return ExprError();
26344ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
26354ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor  return Actions.ActOnTypeTrait(Kind, Loc, Args, Parens.getCloseLocation());
26364ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor}
26374ca8ac2e61c37ddadf37024af86f3e1019af8532Douglas Gregor
263821ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley/// ParseArrayTypeTrait - Parse the built-in array type-trait
263921ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley/// pseudo-functions.
264021ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley///
264121ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley///       primary-expression:
264221ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley/// [Embarcadero]     '__array_rank' '(' type-id ')'
264321ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley/// [Embarcadero]     '__array_extent' '(' type-id ',' expression ')'
264421ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley///
264521ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John WiegleyExprResult Parser::ParseArrayTypeTrait() {
264621ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  ArrayTypeTrait ATT = ArrayTypeTraitFromTokKind(Tok.getKind());
264721ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  SourceLocation Loc = ConsumeToken();
264821ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley
26494a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_paren);
26504a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  if (T.expectAndConsume(diag::err_expected_lparen))
265121ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley    return ExprError();
265221ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley
265321ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  TypeResult Ty = ParseTypeName();
265421ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  if (Ty.isInvalid()) {
265521ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley    SkipUntil(tok::comma);
265621ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley    SkipUntil(tok::r_paren);
265721ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley    return ExprError();
265821ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  }
265921ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley
266021ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  switch (ATT) {
266121ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  case ATT_ArrayRank: {
26624a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
26634a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), NULL,
26644a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                       T.getCloseLocation());
266521ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  }
266621ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  case ATT_ArrayExtent: {
266721ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley    if (ExpectAndConsume(tok::comma, diag::err_expected_comma)) {
266821ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley      SkipUntil(tok::r_paren);
266921ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley      return ExprError();
267021ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley    }
267121ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley
267221ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley    ExprResult DimExpr = ParseExpression();
26734a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    T.consumeClose();
267421ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley
26754a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    return Actions.ActOnArrayTypeTrait(ATT, Loc, Ty.get(), DimExpr.get(),
26764a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                       T.getCloseLocation());
267721ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  }
267821ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley  }
26793026348bd4c13a0f83b59839f64065e0fcbea253David Blaikie  llvm_unreachable("Invalid ArrayTypeTrait!");
268021ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley}
268121ff2e516b0e0bc8c1dbf965cb3d44bac3c64330John Wiegley
2682552622067dc45013d240f73952fece703f5e63bdJohn Wiegley/// ParseExpressionTrait - Parse built-in expression-trait
2683552622067dc45013d240f73952fece703f5e63bdJohn Wiegley/// pseudo-functions like __is_lvalue_expr( xxx ).
2684552622067dc45013d240f73952fece703f5e63bdJohn Wiegley///
2685552622067dc45013d240f73952fece703f5e63bdJohn Wiegley///       primary-expression:
2686552622067dc45013d240f73952fece703f5e63bdJohn Wiegley/// [Embarcadero]     expression-trait '(' expression ')'
2687552622067dc45013d240f73952fece703f5e63bdJohn Wiegley///
2688552622067dc45013d240f73952fece703f5e63bdJohn WiegleyExprResult Parser::ParseExpressionTrait() {
2689552622067dc45013d240f73952fece703f5e63bdJohn Wiegley  ExpressionTrait ET = ExpressionTraitFromTokKind(Tok.getKind());
2690552622067dc45013d240f73952fece703f5e63bdJohn Wiegley  SourceLocation Loc = ConsumeToken();
2691552622067dc45013d240f73952fece703f5e63bdJohn Wiegley
26924a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  BalancedDelimiterTracker T(*this, tok::l_paren);
26934a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  if (T.expectAndConsume(diag::err_expected_lparen))
2694552622067dc45013d240f73952fece703f5e63bdJohn Wiegley    return ExprError();
2695552622067dc45013d240f73952fece703f5e63bdJohn Wiegley
2696552622067dc45013d240f73952fece703f5e63bdJohn Wiegley  ExprResult Expr = ParseExpression();
2697552622067dc45013d240f73952fece703f5e63bdJohn Wiegley
26984a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  T.consumeClose();
2699552622067dc45013d240f73952fece703f5e63bdJohn Wiegley
27004a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  return Actions.ActOnExpressionTrait(ET, Loc, Expr.get(),
27014a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                      T.getCloseLocation());
2702552622067dc45013d240f73952fece703f5e63bdJohn Wiegley}
2703552622067dc45013d240f73952fece703f5e63bdJohn Wiegley
2704552622067dc45013d240f73952fece703f5e63bdJohn Wiegley
2705f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
2706f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
2707f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis/// based on the context past the parens.
270860d7b3a319d84d688752be3870615ac0f111fb16John McCallExprResult
2709f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios KyrtzidisParser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
2710b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                         ParsedType &CastTy,
27114a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                         BalancedDelimiterTracker &Tracker) {
27124e4d08403ca5cfd4d558fa2936215d3a4e5a528dDavid Blaikie  assert(getLangOpts().CPlusPlus && "Should only be called for C++!");
2713f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2714f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  assert(isTypeIdInParens() && "Not a type-id!");
2715f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
271660d7b3a319d84d688752be3870615ac0f111fb16John McCall  ExprResult Result(true);
2717b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  CastTy = ParsedType();
2718f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
2719f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // We need to disambiguate a very ugly part of the C++ syntax:
2720f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  //
2721f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T())x;  - type-id
2722f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T())*x; - type-id
2723f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T())/x; - expression
2724f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T());   - expression
2725f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  //
2726f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // The bad news is that we cannot use the specialized tentative parser, since
2727f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // it can only verify that the thing inside the parens can be parsed as
2728f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // type-id, it is not useful for determining the context past the parens.
2729f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  //
2730f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // The good news is that the parser can disambiguate this part without
2731a558a897cbe83a21914058348ffbdcf827530ad4Argyrios Kyrtzidis  // making any unnecessary Action calls.
2732f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  //
2733f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // It uses a scheme similar to parsing inline methods. The parenthesized
2734f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // tokens are cached, the context that follows is determined (possibly by
2735f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // parsing a cast-expression), and then we re-introduce the cached tokens
2736f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // into the token stream and parse them appropriately.
2737f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
27381eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  ParenParseOption ParseAs;
2739f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  CachedTokens Toks;
2740f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
2741f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Store the tokens of the parentheses. We will parse them after we determine
2742f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // the context that follows them.
274314b91628961ab50cc6e724bbcd408fdee100662dArgyrios Kyrtzidis  if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) {
2744f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // We didn't find the ')' we expected.
27454a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    Tracker.consumeClose();
2746f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    return ExprError();
2747f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
2748f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
2749f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  if (Tok.is(tok::l_brace)) {
2750f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    ParseAs = CompoundLiteral;
2751f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  } else {
2752f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    bool NotCastExpr;
2753b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
2754b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
2755b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      NotCastExpr = true;
2756b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    } else {
2757b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      // Try parsing the cast-expression that may follow.
2758b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      // If it is not a cast-expression, NotCastExpr will be true and no token
2759b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      // will be consumed.
2760b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      Result = ParseCastExpression(false/*isUnaryExpression*/,
2761b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman                                   false/*isAddressofOperand*/,
2762b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall                                   NotCastExpr,
27630a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis                                   // type-id has priority.
2764cd78e612d6fa8e214e6a6bb0e739a0c3e419df91Kaelyn Uhrain                                   IsTypeCast);
2765b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    }
2766f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
2767f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // If we parsed a cast-expression, it's really a type-id, otherwise it's
2768f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // an expression.
2769f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
2770f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
2771f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
27721eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  // The current token should go after the cached tokens.
2773f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  Toks.push_back(Tok);
2774f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Re-enter the stored parenthesized tokens into the token stream, so we may
2775f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // parse them now.
2776f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  PP.EnterTokenStream(Toks.data(), Toks.size(),
2777f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis                      true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
2778f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Drop the current token and bring the first cached one. It's the same token
2779f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // as when we entered this function.
2780f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  ConsumeAnyToken();
2781f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
2782f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  if (ParseAs >= CompoundLiteral) {
27830a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis    // Parse the type declarator.
27840a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis    DeclSpec DS(AttrFactory);
27850a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis    ParseSpecifierQualifierList(DS);
27860a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis    Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
27870a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis    ParseDeclarator(DeclaratorInfo);
2788f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
2789f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // Match the ')'.
27904a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    Tracker.consumeClose();
2791f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
2792f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    if (ParseAs == CompoundLiteral) {
2793f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis      ExprType = CompoundLiteral;
27940a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis      TypeResult Ty = ParseTypeName();
27954a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor       return ParseCompoundLiteralExpression(Ty.get(),
27964a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                            Tracker.getOpenLocation(),
27974a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                            Tracker.getCloseLocation());
2798f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    }
27991eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2800f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
2801f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    assert(ParseAs == CastExpr);
2802f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
28030a85183be6930571f3af8e5a976d24c3f95e5b25Argyrios Kyrtzidis    if (DeclaratorInfo.isInvalidType())
2804f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis      return ExprError();
2805f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
2806f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // Result is what ParseCastExpression returned earlier.
2807f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    if (!Result.isInvalid())
28084a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor      Result = Actions.ActOnCastExpr(getCurScope(), Tracker.getOpenLocation(),
28094a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                    DeclaratorInfo, CastTy,
28104a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                    Tracker.getCloseLocation(), Result.take());
28113fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer    return Result;
2812f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
28131eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2814f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Not a compound literal, and not followed by a cast-expression.
2815f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  assert(ParseAs == SimpleExpr);
2816f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
2817f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  ExprType = SimpleExpr;
2818f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  Result = ParseExpression();
2819f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  if (!Result.isInvalid() && Tok.is(tok::r_paren))
28204a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor    Result = Actions.ActOnParenExpr(Tracker.getOpenLocation(),
28214a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor                                    Tok.getLocation(), Result.take());
2822f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
2823f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // Match the ')'.
2824f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  if (Result.isInvalid()) {
2825f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    SkipUntil(tok::r_paren);
2826f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    return ExprError();
2827f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
28281eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
28294a8dfb511e8f84b2e38b7a86d8ddf05ac1e1a41bDouglas Gregor  Tracker.consumeClose();
28303fe198bf0d6118c7b080c17c3bb28d7c84e458b9Benjamin Kramer  return Result;
2831f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis}
2832