ParseExprCXX.cpp revision 6aa14d832704ae176c92d4e0f22dfb3f3d83a70a
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"
16987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis#include "clang/Parse/DeclSpec.h"
17314b97f8c564b465af605efaee23f91ec18a982bDouglas Gregor#include "clang/Parse/Template.h"
183f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor#include "llvm/Support/ErrorHandling.h"
193f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
205f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerusing namespace clang;
215f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
221eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// \brief Parse global scope or nested-name-specifier if present.
232dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
242dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
251eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// may be preceded by '::'). Note that this routine will not parse ::new or
262dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// ::delete; it will just leave them in the token stream.
27eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
28eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       '::'[opt] nested-name-specifier
29eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       '::'
30eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
31eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       nested-name-specifier:
32eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         type-name '::'
33eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         namespace-name '::'
34eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         nested-name-specifier identifier '::'
352dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///         nested-name-specifier 'template'[opt] simple-template-id '::'
362dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
372dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
381eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// \param SS the scope specifier that will be set to the parsed
392dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// nested-name-specifier (or empty)
402dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
411eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// \param ObjectType if this nested-name-specifier is being parsed following
422dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// the "." or "->" of a member access expression, this parameter provides the
432dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// type of the object whose members are being accessed.
44eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
452dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// \param EnteringContext whether we will be entering into the context of
462dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor/// the nested-name-specifier after parsing it.
472dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor///
48d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// \param MayBePseudoDestructor When non-NULL, points to a flag that
49d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// indicates whether this nested-name-specifier may be part of a
50d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// pseudo-destructor name. In this case, the flag will be set false
51d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// if we don't actually end up parsing a destructor name. Moreorover,
52d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// if we do end up determining that we are parsing a destructor name,
53d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// the last component of the nested-name-specifier is not parsed as
54d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// part of the scope specifier.
55d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
56b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor/// member access expression, e.g., the \p T:: in \p p->T::m.
57b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor///
589ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall/// \returns true if there was an error parsing a scope specifier
59495c35d291da48c4f5655bbb54d15128ddde0d4dDouglas Gregorbool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
602dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor                                            Action::TypeTy *ObjectType,
61b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor                                            bool EnteringContext,
62d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                            bool *MayBePseudoDestructor) {
634bdd91c09fd59e0c154d759288beff300e31e1d0Argyrios Kyrtzidis  assert(getLang().CPlusPlus &&
647452c6fc567ea1799f617395d0fa4c7ed075e5d9Chris Lattner         "Call sites of this function should be guarded by checking for C++");
651eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
66eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  if (Tok.is(tok::annot_cxxscope)) {
673507369940bfb269551bfa1fec812481f60e3552Douglas Gregor    SS.setScopeRep(Tok.getAnnotationValue());
68eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis    SS.setRange(Tok.getAnnotationRange());
69eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis    ConsumeToken();
709ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall    return false;
71eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  }
72e607e808c2b90724a2a6fd841e850f07de1f5b30Chris Lattner
7339a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor  bool HasScopeSpecifier = false;
7439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor
755b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner  if (Tok.is(tok::coloncolon)) {
765b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner    // ::new and ::delete aren't nested-name-specifiers.
775b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner    tok::TokenKind NextKind = NextToken().getKind();
785b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner    if (NextKind == tok::kw_new || NextKind == tok::kw_delete)
795b4547318bb179fc76f984f0eeaaf615927e795cChris Lattner      return false;
801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
8155a7cefc846765ac7d142a63f773747a20518d71Chris Lattner    // '::' - Global scope qualifier.
82357089dea05855e27f80f6f244f9c60fc77cee83Chris Lattner    SourceLocation CCLoc = ConsumeToken();
83357089dea05855e27f80f6f244f9c60fc77cee83Chris Lattner    SS.setBeginLoc(CCLoc);
843507369940bfb269551bfa1fec812481f60e3552Douglas Gregor    SS.setScopeRep(Actions.ActOnCXXGlobalScopeSpecifier(CurScope, CCLoc));
85357089dea05855e27f80f6f244f9c60fc77cee83Chris Lattner    SS.setEndLoc(CCLoc);
8639a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    HasScopeSpecifier = true;
87eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  }
88eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis
89d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  bool CheckForDestructor = false;
90d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (MayBePseudoDestructor && *MayBePseudoDestructor) {
91d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    CheckForDestructor = true;
92d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    *MayBePseudoDestructor = false;
93d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  }
94d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
9539a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor  while (true) {
962dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor    if (HasScopeSpecifier) {
972dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // C++ [basic.lookup.classref]p5:
982dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //   If the qualified-id has the form
993b6afbb99a1c44b4076f8e15fb7311405941b306Douglas Gregor      //
1002dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //       ::class-name-or-namespace-name::...
1013b6afbb99a1c44b4076f8e15fb7311405941b306Douglas Gregor      //
1022dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //   the class-name-or-namespace-name is looked up in global scope as a
1032dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //   class-name or namespace-name.
1042dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      //
1052dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // To implement this, we clear out the object type as soon as we've
1062dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // seen a leading '::' or part of a nested-name-specifier.
1072dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      ObjectType = 0;
10881b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor
10981b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor      if (Tok.is(tok::code_completion)) {
11081b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor        // Code completion for a nested-name-specifier, where the code
11181b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor        // code completion token follows the '::'.
11281b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor        Actions.CodeCompleteQualifiedId(CurScope, SS, EnteringContext);
11381b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor        ConsumeToken();
11481b747b7fcc91c2fba9a3183d8fac80adbfc1d3eDouglas Gregor      }
1152dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor    }
1161eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
11739a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    // nested-name-specifier:
11877cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    //   nested-name-specifier 'template'[opt] simple-template-id '::'
11977cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner
12077cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    // Parse the optional 'template' keyword, then make sure we have
12177cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    // 'identifier <' after it.
12277cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    if (Tok.is(tok::kw_template)) {
1232dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      // If we don't have a scope specifier or an object type, this isn't a
124eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman      // nested-name-specifier, since they aren't allowed to start with
125eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman      // 'template'.
1262dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor      if (!HasScopeSpecifier && !ObjectType)
127eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman        break;
128eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman
1297bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      TentativeParsingAction TPA(*this);
13077cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner      SourceLocation TemplateKWLoc = ConsumeToken();
131ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
132ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      UnqualifiedId TemplateName;
133ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      if (Tok.is(tok::identifier)) {
134ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        // Consume the identifier.
1357bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
136ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        ConsumeToken();
137ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      } else if (Tok.is(tok::kw_operator)) {
138ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
1397bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor                                       TemplateName)) {
1407bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor          TPA.Commit();
141ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          break;
1427bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        }
143ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
144e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt        if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId &&
145e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt            TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) {
146ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          Diag(TemplateName.getSourceRange().getBegin(),
147ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor               diag::err_id_after_template_in_nested_name_spec)
148ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor            << TemplateName.getSourceRange();
1497bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor          TPA.Commit();
150ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          break;
151ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        }
152ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      } else {
1537bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        TPA.Revert();
15477cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner        break;
15577cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner      }
1561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1577bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // If the next token is not '<', we have a qualified-id that refers
1587bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // to a template name, such as T::template apply, but is not a
1597bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // template-id.
1607bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      if (Tok.isNot(tok::less)) {
1617bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        TPA.Revert();
1627bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor        break;
1637bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      }
1647bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor
1657bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      // Commit to parsing the template-id.
1667bb87fca7d22a8a194d04188746b90f46512975fDouglas Gregor      TPA.Commit();
1671eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      TemplateTy Template
168014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor        = Actions.ActOnDependentTemplateName(TemplateKWLoc, SS, TemplateName,
169a481edb1b11c956a46cb42cd0dc4dd9851c10801Douglas Gregor                                             ObjectType, EnteringContext);
170eab975dce83fcf6a7fa8fc9379944d4b1aaf1a00Eli Friedman      if (!Template)
1719ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall        return true;
172c8e27cc402043ec86c1698c09e4ee9e415b16207Chris Lattner      if (AnnotateTemplateIdToken(Template, TNK_Dependent_template_name,
173ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                  &SS, TemplateName, TemplateKWLoc, false))
1749ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall        return true;
1751eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
17677cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner      continue;
17777cf72a95baa18e82737bb45131e9658a00fee16Chris Lattner    }
1781eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
17939a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) {
1801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      // We have
18139a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      //
18239a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      //   simple-template-id '::'
18339a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      //
18439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor      // So we need to check whether the simple-template-id is of the
185c45c232440dfafedca1a3773b904fb42609b1b19Douglas Gregor      // right kind (it should name a type or be dependent), and then
186c45c232440dfafedca1a3773b904fb42609b1b19Douglas Gregor      // convert it into a type within the nested-name-specifier.
1871eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      TemplateIdAnnotation *TemplateId
18839a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
189d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) {
190d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor        *MayBePseudoDestructor = true;
1919ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall        return false;
192d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      }
193d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
1941eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      if (TemplateId->Kind == TNK_Type_template ||
195c45c232440dfafedca1a3773b904fb42609b1b19Douglas Gregor          TemplateId->Kind == TNK_Dependent_template_name) {
19631a19b6989bbf326d2de5ae12e712e2a65ca9c34Douglas Gregor        AnnotateTemplateIdTokenAsType(&SS);
19739a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor
1981eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump        assert(Tok.is(tok::annot_typename) &&
19939a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor               "AnnotateTemplateIdTokenAsType isn't working");
20039a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        Token TypeToken = Tok;
20139a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        ConsumeToken();
20239a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!");
20339a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        SourceLocation CCLoc = ConsumeToken();
2041eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
20539a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        if (!HasScopeSpecifier) {
20639a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor          SS.setBeginLoc(TypeToken.getLocation());
20739a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor          HasScopeSpecifier = true;
20839a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        }
2091eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
21031a19b6989bbf326d2de5ae12e712e2a65ca9c34Douglas Gregor        if (TypeToken.getAnnotationValue())
21131a19b6989bbf326d2de5ae12e712e2a65ca9c34Douglas Gregor          SS.setScopeRep(
2121eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump            Actions.ActOnCXXNestedNameSpecifier(CurScope, SS,
21331a19b6989bbf326d2de5ae12e712e2a65ca9c34Douglas Gregor                                                TypeToken.getAnnotationValue(),
21431a19b6989bbf326d2de5ae12e712e2a65ca9c34Douglas Gregor                                                TypeToken.getAnnotationRange(),
215edc90500b1d2587bf0b698fada14537d6741fddfDouglas Gregor                                                CCLoc));
21631a19b6989bbf326d2de5ae12e712e2a65ca9c34Douglas Gregor        else
21731a19b6989bbf326d2de5ae12e712e2a65ca9c34Douglas Gregor          SS.setScopeRep(0);
21839a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        SS.setEndLoc(CCLoc);
21939a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor        continue;
22067b9e831943300ce54e564e601971828ce4def15Chris Lattner      }
2211eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
22267b9e831943300ce54e564e601971828ce4def15Chris Lattner      assert(false && "FIXME: Only type template names supported here");
22339a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    }
22439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor
2255c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
2265c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // The rest of the nested-name-specifier possibilities start with
2275c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // tok::identifier.
2285c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    if (Tok.isNot(tok::identifier))
2295c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      break;
2305c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
2315c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    IdentifierInfo &II = *Tok.getIdentifierInfo();
2325c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
2335c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // nested-name-specifier:
2345c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   type-name '::'
2355c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   namespace-name '::'
2365c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   nested-name-specifier identifier '::'
2375c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    Token Next = NextToken();
23846646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner
23946646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner    // If we get foo:bar, this is almost certainly a typo for foo::bar.  Recover
24046646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner    // and emit a fixit hint for it.
241b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor    if (Next.is(tok::colon) && !ColonIsSacred) {
242edc90500b1d2587bf0b698fada14537d6741fddfDouglas Gregor      if (Actions.IsInvalidUnlessNestedName(CurScope, SS, II, ObjectType,
243b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor                                            EnteringContext) &&
244b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          // If the token after the colon isn't an identifier, it's still an
245b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          // error, but they probably meant something else strange so don't
246b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          // recover like this.
247b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor          PP.LookAhead(1).is(tok::identifier)) {
248b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor        Diag(Next, diag::err_unexected_colon_in_nested_name_spec)
249849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor          << FixItHint::CreateReplacement(Next.getLocation(), "::");
250b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor
251b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor        // Recover as if the user wrote '::'.
252b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor        Next.setKind(tok::coloncolon);
253b10cd04880672103660e5844e51ee91af7361a20Douglas Gregor      }
25446646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner    }
25546646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner
2565c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    if (Next.is(tok::coloncolon)) {
25777549080fb7b9af31606b3c1b4830a94429fb1fdDouglas Gregor      if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) &&
25877549080fb7b9af31606b3c1b4830a94429fb1fdDouglas Gregor          !Actions.isNonTypeNestedNameSpecifier(CurScope, SS, Tok.getLocation(),
25977549080fb7b9af31606b3c1b4830a94429fb1fdDouglas Gregor                                                II, ObjectType)) {
260d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor        *MayBePseudoDestructor = true;
2619ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall        return false;
262d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      }
263d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
2645c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      // We have an identifier followed by a '::'. Lookup this name
2655c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      // as the name in a nested-name-specifier.
2665c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      SourceLocation IdLoc = ConsumeToken();
26746646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner      assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) &&
26846646491834cd8faabb22482dfe93b24ce28a6c1Chris Lattner             "NextToken() not working properly!");
2695c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      SourceLocation CCLoc = ConsumeToken();
2701eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2715c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      if (!HasScopeSpecifier) {
2725c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        SS.setBeginLoc(IdLoc);
2735c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        HasScopeSpecifier = true;
2745c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      }
2751eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2765c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      if (SS.isInvalid())
2775c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        continue;
2781eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2795c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      SS.setScopeRep(
280495c35d291da48c4f5655bbb54d15128ddde0d4dDouglas Gregor        Actions.ActOnCXXNestedNameSpecifier(CurScope, SS, IdLoc, CCLoc, II,
281edc90500b1d2587bf0b698fada14537d6741fddfDouglas Gregor                                            ObjectType, EnteringContext));
2825c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      SS.setEndLoc(CCLoc);
2835c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      continue;
2845c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    }
2851eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2865c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    // nested-name-specifier:
2875c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    //   type-name '<'
2885c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    if (Next.is(tok::less)) {
2895c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      TemplateTy Template;
290014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      UnqualifiedId TemplateName;
291014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateName.setIdentifier(&II, Tok.getLocation());
292014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      if (TemplateNameKind TNK = Actions.isTemplateName(CurScope, SS,
293014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor                                                        TemplateName,
2942dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor                                                        ObjectType,
295495c35d291da48c4f5655bbb54d15128ddde0d4dDouglas Gregor                                                        EnteringContext,
296495c35d291da48c4f5655bbb54d15128ddde0d4dDouglas Gregor                                                        Template)) {
2975c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // We have found a template name, so annotate this this token
2985c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // with a template-id annotation. We do not permit the
2995c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // template-id to be translated into a type annotation,
3005c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // because some clients (e.g., the parsing of class template
3015c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // specializations) still want to see the original template-id
3025c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        // token.
303ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        ConsumeToken();
304ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName,
305ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                    SourceLocation(), false))
3069ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall          return true;
3075c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner        continue;
3085c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner      }
3095c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner    }
3105c7f786e3269ee2b512ecf13ccf556c47be83a76Chris Lattner
31139a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    // We don't have any tokens that form the beginning of a
31239a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    // nested-name-specifier, so we're done.
31339a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor    break;
31439a8de10c18365bde7062d8959b7ed525449c561Douglas Gregor  }
3151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
316d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Even if we didn't see any pieces of a nested-name-specifier, we
317d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // still check whether there is a tilde in this position, which
318d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // indicates a potential pseudo-destructor.
319d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (CheckForDestructor && Tok.is(tok::tilde))
320d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    *MayBePseudoDestructor = true;
321d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
3229ba6166f4a78722e7df8ffbd64eb788bfdf2764aJohn McCall  return false;
323eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis}
324eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis
325eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// ParseCXXIdExpression - Handle id-expression.
326eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
327eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       id-expression:
328eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         unqualified-id
329eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         qualified-id
330eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
331eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       qualified-id:
332eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
333eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::' identifier
334eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::' operator-function-id
335edce4dd44732dfad69f28822dddcf2b8e92b4483Douglas Gregor///         '::' template-id
336eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
337eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// NOTE: The standard specifies that, for qualified-id, the parser does not
338eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// expect:
339eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
340eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   '::' conversion-function-id
341eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   '::' '~' class-name
342eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
343eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// This may cause a slight inconsistency on diagnostics:
344eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
345eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// class C {};
346eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// namespace A {}
347eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// void f() {
348eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   :: A :: ~ C(); // Some Sema error about using destructor with a
349eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///                  // namespace.
350eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///   :: ~ C(); // Some Parser error like 'unexpected ~'.
351eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// }
352eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
353eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// We simplify the parser a bit and make it work like:
354eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
355eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///       qualified-id:
356eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
357eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::' unqualified-id
358eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
359eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// That way Sema can handle and report similar errors for namespaces and the
360eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis/// global scope.
361eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///
362ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// The isAddressOfOperand parameter indicates that this id-expression is a
363ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// direct operand of the address-of operator. This is, besides member contexts,
364ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// the only place where a qualified-id naming a non-static class member may
365ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl/// appear.
366ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian Redl///
367ebc07d57be9e0722b4b9c66625e1fca43dcc2ee0Sebastian RedlParser::OwningExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
368eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  // qualified-id:
369eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  //   '::'[opt] nested-name-specifier 'template'[opt] unqualified-id
370eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  //   '::' unqualified-id
371eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  //
372eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  CXXScopeSpec SS;
3732dd078ae50ff7be1fb25ebeedde45e9ab691a4f0Douglas Gregor  ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
37402a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor
37502a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor  UnqualifiedId Name;
37602a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor  if (ParseUnqualifiedId(SS,
37702a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor                         /*EnteringContext=*/false,
37802a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor                         /*AllowDestructorName=*/false,
37902a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor                         /*AllowConstructorName=*/false,
3802d1c21414199a7452f122598189363a3922605b1Douglas Gregor                         /*ObjectType=*/0,
38102a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor                         Name))
38202a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor    return ExprError();
383b681b61fea36618778b8030360e90e3f4641233bJohn McCall
384b681b61fea36618778b8030360e90e3f4641233bJohn McCall  // This is only the direct operand of an & operator if it is not
385b681b61fea36618778b8030360e90e3f4641233bJohn McCall  // followed by a postfix-expression suffix.
386b681b61fea36618778b8030360e90e3f4641233bJohn McCall  if (isAddressOfOperand) {
387b681b61fea36618778b8030360e90e3f4641233bJohn McCall    switch (Tok.getKind()) {
388b681b61fea36618778b8030360e90e3f4641233bJohn McCall    case tok::l_square:
389b681b61fea36618778b8030360e90e3f4641233bJohn McCall    case tok::l_paren:
390b681b61fea36618778b8030360e90e3f4641233bJohn McCall    case tok::arrow:
391b681b61fea36618778b8030360e90e3f4641233bJohn McCall    case tok::period:
392b681b61fea36618778b8030360e90e3f4641233bJohn McCall    case tok::plusplus:
393b681b61fea36618778b8030360e90e3f4641233bJohn McCall    case tok::minusminus:
394b681b61fea36618778b8030360e90e3f4641233bJohn McCall      isAddressOfOperand = false;
395b681b61fea36618778b8030360e90e3f4641233bJohn McCall      break;
396b681b61fea36618778b8030360e90e3f4641233bJohn McCall
397b681b61fea36618778b8030360e90e3f4641233bJohn McCall    default:
398b681b61fea36618778b8030360e90e3f4641233bJohn McCall      break;
399b681b61fea36618778b8030360e90e3f4641233bJohn McCall    }
400b681b61fea36618778b8030360e90e3f4641233bJohn McCall  }
40102a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor
40202a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor  return Actions.ActOnIdExpression(CurScope, SS, Name, Tok.is(tok::l_paren),
40302a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor                                   isAddressOfOperand);
40402a24ee67c0a91bdb0db8a651d5748595652e670Douglas Gregor
405eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis}
406eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis
4075f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// ParseCXXCasts - This handles the various ways to cast expressions to another
4085f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// type.
4095f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
4105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///       postfix-expression: [C++ 5.2p1]
4115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'dynamic_cast' '<' type-name '>' '(' expression ')'
4125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'static_cast' '<' type-name '>' '(' expression ')'
4135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'reinterpret_cast' '<' type-name '>' '(' expression ')'
4145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'const_cast' '<' type-name '>' '(' expression ')'
4155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
41620df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::OwningExprResult Parser::ParseCXXCasts() {
4175f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  tok::TokenKind Kind = Tok.getKind();
4185f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  const char *CastName = 0;     // For error messages
4195f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4205f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  switch (Kind) {
4215f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  default: assert(0 && "Unknown C++ cast!"); abort();
4225f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_const_cast:       CastName = "const_cast";       break;
4235f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_dynamic_cast:     CastName = "dynamic_cast";     break;
4245f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break;
4255f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case tok::kw_static_cast:      CastName = "static_cast";      break;
4265f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
4275f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4285f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation OpLoc = ConsumeToken();
4295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation LAngleBracketLoc = Tok.getLocation();
4305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4315f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName))
43220df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError();
4335f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
434809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  TypeResult CastTy = ParseTypeName();
4355f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation RAngleBracketLoc = Tok.getLocation();
4365f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4371ab3b96de160e4fbffec2a776e284a48a3bb543dChris Lattner  if (ExpectAndConsume(tok::greater, diag::err_expected_greater))
43820df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<");
4395f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
4405f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
4415f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
44221e7ad24099965acfa801e4abdd91e3d94106428Argyrios Kyrtzidis  if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, CastName))
44321e7ad24099965acfa801e4abdd91e3d94106428Argyrios Kyrtzidis    return ExprError();
4445f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
44521e7ad24099965acfa801e4abdd91e3d94106428Argyrios Kyrtzidis  OwningExprResult Result = ParseExpression();
4461eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
44721e7ad24099965acfa801e4abdd91e3d94106428Argyrios Kyrtzidis  // Match the ')'.
44827591ff4fc64600fd67c5d81899e3efe5ef41a80Douglas Gregor  RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
4495f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
450809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  if (!Result.isInvalid() && !CastTy.isInvalid())
45149badde06e066d058d6c7fcf4e628a72999b65a9Douglas Gregor    Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
452f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl                                       LAngleBracketLoc, CastTy.get(),
453809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor                                       RAngleBracketLoc,
454f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl                                       LParenLoc, move(Result), RParenLoc);
4555f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
45620df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl  return move(Result);
4575f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
4585f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
459c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl/// ParseCXXTypeid - This handles the C++ typeid expression.
460c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///
461c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///       postfix-expression: [C++ 5.2p1]
462c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///         'typeid' '(' expression ')'
463c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///         'typeid' '(' type-id ')'
464c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl///
46520df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::OwningExprResult Parser::ParseCXXTypeid() {
466c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!");
467c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
468c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  SourceLocation OpLoc = ConsumeToken();
469c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  SourceLocation LParenLoc = Tok.getLocation();
470c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  SourceLocation RParenLoc;
471c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
472c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  // typeid expressions are always parenthesized.
473c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
474c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl      "typeid"))
47520df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError();
476c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
47715faa7fdfb496489dec9470aa5eb699b29ecdaccSebastian Redl  OwningExprResult Result(Actions);
478c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
479c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  if (isTypeIdInParens()) {
480809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor    TypeResult Ty = ParseTypeName();
481c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
482c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    // Match the ')'.
483c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    MatchRHSPunctuation(tok::r_paren, LParenLoc);
484c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
485809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor    if (Ty.isInvalid())
48620df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
487c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
488c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
489809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor                                    Ty.get(), RParenLoc);
490c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  } else {
491e0762c92110dfdcdd207db461a4ea17afd168f1eDouglas Gregor    // C++0x [expr.typeid]p3:
4921eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    //   When typeid is applied to an expression other than an lvalue of a
4931eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    //   polymorphic class type [...] The expression is an unevaluated
494e0762c92110dfdcdd207db461a4ea17afd168f1eDouglas Gregor    //   operand (Clause 5).
495e0762c92110dfdcdd207db461a4ea17afd168f1eDouglas Gregor    //
4961eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    // Note that we can't tell whether the expression is an lvalue of a
497e0762c92110dfdcdd207db461a4ea17afd168f1eDouglas Gregor    // polymorphic class type until after we've parsed the expression, so
498ac7610dad6653bad02dd42de198ca358b6fb1f1dDouglas Gregor    // we the expression is potentially potentially evaluated.
499ac7610dad6653bad02dd42de198ca358b6fb1f1dDouglas Gregor    EnterExpressionEvaluationContext Unevaluated(Actions,
500ac7610dad6653bad02dd42de198ca358b6fb1f1dDouglas Gregor                                       Action::PotentiallyPotentiallyEvaluated);
501c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    Result = ParseExpression();
502c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
503c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    // Match the ')'.
5040e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl    if (Result.isInvalid())
505c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl      SkipUntil(tok::r_paren);
506c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    else {
507c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl      MatchRHSPunctuation(tok::r_paren, LParenLoc);
508c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
509c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl      Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false,
510effa8d1c97b00a3f53e972b0e61d9aade5ea1c57Sebastian Redl                                      Result.release(), RParenLoc);
511c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl    }
512c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl  }
513c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
51420df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl  return move(Result);
515c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl}
516c42e1183846228a7fa5143ad76507d6d60f5c6f3Sebastian Redl
517d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// \brief Parse a C++ pseudo-destructor expression after the base,
518d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// . or -> operator, and nested-name-specifier have already been
519d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// parsed.
520d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
521d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///       postfix-expression: [C++ 5.2]
522d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         postfix-expression . pseudo-destructor-name
523d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         postfix-expression -> pseudo-destructor-name
524d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
525d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///       pseudo-destructor-name:
526d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         ::[opt] nested-name-specifier[opt] type-name :: ~type-name
527d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         ::[opt] nested-name-specifier template simple-template-id ::
528d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///                 ~type-name
529d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///         ::[opt] nested-name-specifier[opt] ~type-name
530d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
531d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas GregorParser::OwningExprResult
532d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas GregorParser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc,
533d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                 tok::TokenKind OpKind,
534d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                 CXXScopeSpec &SS,
535d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                 Action::TypeTy *ObjectType) {
536d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // We're parsing either a pseudo-destructor-name or a dependent
537d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // member access that has the same form as a
538d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // pseudo-destructor-name. We parse both in the same way and let
539d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // the action model sort them out.
540d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  //
541d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Note that the ::[opt] nested-name-specifier[opt] has already
542d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // been parsed, and if there was a simple-template-id, it has
543d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // been coalesced into a template-id annotation token.
544d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  UnqualifiedId FirstTypeName;
545d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SourceLocation CCLoc;
546d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (Tok.is(tok::identifier)) {
547d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
548d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    ConsumeToken();
549d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
550d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    CCLoc = ConsumeToken();
551d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  } else if (Tok.is(tok::annot_template_id)) {
552d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    FirstTypeName.setTemplateId(
553d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                              (TemplateIdAnnotation *)Tok.getAnnotationValue());
554d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    ConsumeToken();
555d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail");
556d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    CCLoc = ConsumeToken();
557d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  } else {
558d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    FirstTypeName.setIdentifier(0, SourceLocation());
559d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  }
560d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
561d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Parse the tilde.
562d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail");
563d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SourceLocation TildeLoc = ConsumeToken();
564d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (!Tok.is(tok::identifier)) {
565d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    Diag(Tok, diag::err_destructor_tilde_identifier);
566d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    return ExprError();
567d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  }
568d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
569d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // Parse the second type.
570d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  UnqualifiedId SecondTypeName;
571d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  IdentifierInfo *Name = Tok.getIdentifierInfo();
572d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SourceLocation NameLoc = ConsumeToken();
573d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  SecondTypeName.setIdentifier(Name, NameLoc);
574d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
575d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // If there is a '<', the second type name is a template-id. Parse
576d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  // it as such.
577d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  if (Tok.is(tok::less) &&
578d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      ParseUnqualifiedIdTemplateId(SS, Name, NameLoc, false, ObjectType,
579d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                   SecondTypeName, /*AssumeTemplateName=*/true))
580d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    return ExprError();
581d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
582d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor  return Actions.ActOnPseudoDestructorExpr(CurScope, move(Base), OpLoc, OpKind,
583d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                           SS, FirstTypeName, CCLoc,
584d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                           TildeLoc, SecondTypeName,
585d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                           Tok.is(tok::l_paren));
586d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor}
587d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor
5885f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// ParseCXXBoolLiteral - This handles the C++ Boolean literals.
5895f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
5905f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///       boolean-literal: [C++ 2.13.5]
5915f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'true'
5925f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///         'false'
59320df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::OwningExprResult Parser::ParseCXXBoolLiteral() {
5945f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  tok::TokenKind Kind = Tok.getKind();
595f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind);
5965f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
59750dd289f45738ed22b7583d52ed2525b927042ffChris Lattner
59850dd289f45738ed22b7583d52ed2525b927042ffChris Lattner/// ParseThrowExpression - This handles the C++ throw expression.
59950dd289f45738ed22b7583d52ed2525b927042ffChris Lattner///
60050dd289f45738ed22b7583d52ed2525b927042ffChris Lattner///       throw-expression: [C++ 15]
60150dd289f45738ed22b7583d52ed2525b927042ffChris Lattner///         'throw' assignment-expression[opt]
60220df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::OwningExprResult Parser::ParseThrowExpression() {
60350dd289f45738ed22b7583d52ed2525b927042ffChris Lattner  assert(Tok.is(tok::kw_throw) && "Not throw!");
60450dd289f45738ed22b7583d52ed2525b927042ffChris Lattner  SourceLocation ThrowLoc = ConsumeToken();           // Eat the throw token.
60520df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl
6062a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  // If the current token isn't the start of an assignment-expression,
6072a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  // then the expression is not present.  This handles things like:
6082a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  //   "C ? throw : (void)42", which is crazy but legal.
6092a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  switch (Tok.getKind()) {  // FIXME: move this predicate somewhere common.
6102a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::semi:
6112a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::r_paren:
6122a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::r_square:
6132a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::r_brace:
6142a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::colon:
6152a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  case tok::comma:
616f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl    return Actions.ActOnCXXThrow(ThrowLoc, ExprArg(Actions));
61750dd289f45738ed22b7583d52ed2525b927042ffChris Lattner
6182a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  default:
6192f7ece7c77eb17e24e8f0f4e1b7fb01aa5111f96Sebastian Redl    OwningExprResult Expr(ParseAssignmentExpression());
62020df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    if (Expr.isInvalid()) return move(Expr);
621f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl    return Actions.ActOnCXXThrow(ThrowLoc, move(Expr));
6222a2819a0a8e114bfa5a3c4fc4c97fa173155bae9Chris Lattner  }
62350dd289f45738ed22b7583d52ed2525b927042ffChris Lattner}
6244cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis
6254cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// ParseCXXThis - This handles the C++ 'this' pointer.
6264cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis///
6274cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// C++ 9.3.2: In the body of a non-static member function, the keyword this is
6284cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// a non-lvalue expression whose value is the address of the object for which
6294cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis/// the function is called.
63020df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::OwningExprResult Parser::ParseCXXThis() {
6314cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis  assert(Tok.is(tok::kw_this) && "Not 'this'!");
6324cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis  SourceLocation ThisLoc = ConsumeToken();
633f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXThis(ThisLoc);
6344cc18a4d5222e04bd568b1e3e4d86127dbbcdf3fArgyrios Kyrtzidis}
635987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
636987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// ParseCXXTypeConstructExpression - Parse construction of a specified type.
637987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// Can be interpreted either as function-style casting ("int(x)")
638987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// or class type construction ("ClassType(x,y,z)")
639987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// or creation of a value-initialized type ("int()").
640987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
641987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///       postfix-expression: [C++ 5.2p1]
642987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         simple-type-specifier '(' expression-list[opt] ')'      [C++ 5.2.3]
643987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         typename-specifier '(' expression-list[opt] ')'         [TODO]
644987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
64520df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::OwningExprResult
64620df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian RedlParser::ParseCXXTypeConstructExpression(const DeclSpec &DS) {
647987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
6485ac8aff3d7431dc7e4d64d960574a10c9f7e0078Douglas Gregor  TypeTy *TypeRep = Actions.ActOnTypeName(CurScope, DeclaratorInfo).get();
649987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
650987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  assert(Tok.is(tok::l_paren) && "Expected '('!");
651987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  SourceLocation LParenLoc = ConsumeParen();
652987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
653a55e52c0802cae3b7c366a05c461d3d15074c1a3Sebastian Redl  ExprVector Exprs(Actions);
654987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  CommaLocsTy CommaLocs;
655987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
656987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  if (Tok.isNot(tok::r_paren)) {
657987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    if (ParseExpressionList(Exprs, CommaLocs)) {
658987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis      SkipUntil(tok::r_paren);
65920df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
660987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    }
661987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  }
662987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
663987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  // Match the ')'.
664987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
665987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
666ef0cb8e62d090ad88a01ca9fa89e48d7416f0ac7Sebastian Redl  // TypeRep could be null, if it references an invalid typedef.
667ef0cb8e62d090ad88a01ca9fa89e48d7416f0ac7Sebastian Redl  if (!TypeRep)
668ef0cb8e62d090ad88a01ca9fa89e48d7416f0ac7Sebastian Redl    return ExprError();
669ef0cb8e62d090ad88a01ca9fa89e48d7416f0ac7Sebastian Redl
670987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&&
671987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis         "Unexpected number of commas!");
672f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXTypeConstructExpr(DS.getSourceRange(), TypeRep,
673f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl                                           LParenLoc, move_arg(Exprs),
674beaaccd8e2a8748f77b66e2b330fb9136937e14cJay Foad                                           CommaLocs.data(), RParenLoc);
675987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis}
676987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis
67799e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// ParseCXXCondition - if/switch/while condition expression.
67871b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///
67971b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///       condition:
68071b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///         expression
68171b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///         type-specifier-seq declarator '=' assignment-expression
68271b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis/// [GNU]   type-specifier-seq declarator simple-asm-expr[opt] attributes[opt]
68371b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///             '=' assignment-expression
68471b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis///
68599e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// \param ExprResult if the condition was parsed as an expression, the
68699e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// parsed expression.
68799e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor///
68899e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// \param DeclResult if the condition was parsed as a declaration, the
68999e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// parsed declaration.
69099e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor///
69199e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor/// \returns true if there was a parsing, false otherwise.
69299e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregorbool Parser::ParseCXXCondition(OwningExprResult &ExprResult,
69399e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor                               DeclPtrTy &DeclResult) {
69401dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor  if (Tok.is(tok::code_completion)) {
69501dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor    Actions.CodeCompleteOrdinaryName(CurScope, Action::CCC_Condition);
69601dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor    ConsumeToken();
69701dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor  }
69801dfea02d1da297e8b53db8eea3d3cc652acda8dDouglas Gregor
69999e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  if (!isCXXConditionDeclaration()) {
70099e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    ExprResult = ParseExpression(); // expression
70199e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    DeclResult = DeclPtrTy();
70299e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    return ExprResult.isInvalid();
70399e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  }
70471b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
70571b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // type-specifier-seq
70671b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  DeclSpec DS;
70771b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  ParseSpecifierQualifierList(DS);
70871b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
70971b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // declarator
71071b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  Declarator DeclaratorInfo(DS, Declarator::ConditionContext);
71171b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  ParseDeclarator(DeclaratorInfo);
71271b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
71371b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // simple-asm-expr[opt]
71471b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  if (Tok.is(tok::kw_asm)) {
715ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    SourceLocation Loc;
716ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    OwningExprResult AsmLabel(ParseSimpleAsm(&Loc));
7170e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl    if (AsmLabel.isInvalid()) {
71871b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis      SkipUntil(tok::semi);
71999e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor      return true;
72071b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis    }
721effa8d1c97b00a3f53e972b0e61d9aade5ea1c57Sebastian Redl    DeclaratorInfo.setAsmLabel(AsmLabel.release());
722ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    DeclaratorInfo.SetRangeEnd(Loc);
72371b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  }
72471b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
72571b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // If attributes are present, parse them.
726ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl  if (Tok.is(tok::kw___attribute)) {
727ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    SourceLocation Loc;
728bbd37c62e34db3f5a95c899723484a76c71d7757Sean Hunt    AttributeList *AttrList = ParseGNUAttributes(&Loc);
729ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    DeclaratorInfo.AddAttributes(AttrList, Loc);
730ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl  }
73171b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
73299e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  // Type-check the declaration itself.
73399e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  Action::DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(CurScope,
73499e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor                                                                DeclaratorInfo);
73599e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  DeclResult = Dcl.get();
73699e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  ExprResult = ExprError();
73799e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor
73871b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis  // '=' assignment-expression
73999e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  if (Tok.is(tok::equal)) {
74099e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    SourceLocation EqualLoc = ConsumeToken();
74199e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    OwningExprResult AssignExpr(ParseAssignmentExpression());
74299e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    if (!AssignExpr.isInvalid())
74399e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor      Actions.AddInitializerToDecl(DeclResult, move(AssignExpr));
74499e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  } else {
74599e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    // FIXME: C++0x allows a braced-init-list
74699e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor    Diag(Tok, diag::err_expected_equal_after_declarator);
74799e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  }
74899e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor
74999e9b4d172f6877e6ba5ebe75bb8238721f5e01cDouglas Gregor  return false;
75071b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis}
75171b914b999d9c4b6df11068fc5a3291ac4770492Argyrios Kyrtzidis
7526aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor/// \brief Determine whether the current token starts a C++
7536aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor/// simple-type-specifier.
7546aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregorbool Parser::isCXXSimpleTypeSpecifier() const {
7556aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  switch (Tok.getKind()) {
7566aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::annot_typename:
7576aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_short:
7586aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_long:
7596aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_signed:
7606aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_unsigned:
7616aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_void:
7626aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_char:
7636aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_int:
7646aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_float:
7656aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_double:
7666aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_wchar_t:
7676aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_char16_t:
7686aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_char32_t:
7696aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_bool:
7706aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor    // FIXME: C++0x decltype support.
7716aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  // GNU typeof support.
7726aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  case tok::kw_typeof:
7736aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor    return true;
7746aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor
7756aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  default:
7766aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor    break;
7776aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  }
7786aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor
7796aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor  return false;
7806aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor}
7816aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor
782987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers.
783987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// This should only be called when the current token is known to be part of
784987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// simple-type-specifier.
785987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
786987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///       simple-type-specifier:
787eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis///         '::'[opt] nested-name-specifier[opt] type-name
788987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         '::'[opt] nested-name-specifier 'template' simple-template-id [TODO]
789987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         char
790987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         wchar_t
791987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         bool
792987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         short
793987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         int
794987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         long
795987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         signed
796987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         unsigned
797987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         float
798987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         double
799987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         void
800987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// [GNU]   typeof-specifier
801987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis/// [C++0x] auto               [TODO]
802987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
803987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///       type-name:
804987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         class-name
805987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         enum-name
806987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///         typedef-name
807987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis///
808987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidisvoid Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) {
809987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  DS.SetRangeStart(Tok.getLocation());
810987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  const char *PrevSpec;
811fec54013fcd0eb72642741584ca04c1bc292bef8John McCall  unsigned DiagID;
812987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  SourceLocation Loc = Tok.getLocation();
8131eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
814987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  switch (Tok.getKind()) {
81555a7cefc846765ac7d142a63f773747a20518d71Chris Lattner  case tok::identifier:   // foo::bar
81655a7cefc846765ac7d142a63f773747a20518d71Chris Lattner  case tok::coloncolon:   // ::foo::bar
81755a7cefc846765ac7d142a63f773747a20518d71Chris Lattner    assert(0 && "Annotation token should already be formed!");
8181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  default:
819987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    assert(0 && "Not a simple-type-specifier token!");
820987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    abort();
82155a7cefc846765ac7d142a63f773747a20518d71Chris Lattner
822987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  // type-name
823b31757b68afe06ba442a05775d08fe7aa0f6f889Chris Lattner  case tok::annot_typename: {
824fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID,
825eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis                       Tok.getAnnotationValue());
826987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
827987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  }
8281eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
829987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  // builtin types
830987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_short:
831fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID);
832987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
833987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_long:
834fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID);
835987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
836987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_signed:
837fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID);
838987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
839987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_unsigned:
840fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID);
841987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
842987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_void:
843fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID);
844987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
845987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_char:
846fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID);
847987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
848987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_int:
849fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID);
850987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
851987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_float:
852fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID);
853987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
854987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_double:
855fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID);
856987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
857987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_wchar_t:
858fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID);
859987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
860f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith  case tok::kw_char16_t:
861fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID);
862f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith    break;
863f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith  case tok::kw_char32_t:
864fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID);
865f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith    break;
866987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_bool:
867fec54013fcd0eb72642741584ca04c1bc292bef8John McCall    DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID);
868987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    break;
8691eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
8706aa14d832704ae176c92d4e0f22dfb3f3d83a70aDouglas Gregor    // FIXME: C++0x decltype support.
871987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  // GNU typeof support.
872987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  case tok::kw_typeof:
873987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    ParseTypeofSpecifier(DS);
8749b3064b55f3c858923734e8b1c9831777fc22554Douglas Gregor    DS.Finish(Diags, PP);
875987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis    return;
876987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  }
877b31757b68afe06ba442a05775d08fe7aa0f6f889Chris Lattner  if (Tok.is(tok::annot_typename))
878eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis    DS.SetRangeEnd(Tok.getAnnotationEndLoc());
879eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis  else
880eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8Argyrios Kyrtzidis    DS.SetRangeEnd(Tok.getLocation());
881987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis  ConsumeToken();
8829b3064b55f3c858923734e8b1c9831777fc22554Douglas Gregor  DS.Finish(Diags, PP);
883987a14bf5883ef6e5d07f1c83eb6d41a8212a78cArgyrios Kyrtzidis}
8841cd1b1e987f5e2f060d7972b13d83239b36d77d6Douglas Gregor
8852f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++
8862f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// [dcl.name]), which is a non-empty sequence of type-specifiers,
8872f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// e.g., "const short int". Note that the DeclSpec is *not* finished
8882f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// by parsing the type-specifier-seq, because these sequences are
8892f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// typically followed by some form of declarator. Returns true and
8902f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// emits diagnostics if this is not a type-specifier-seq, false
8912f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor/// otherwise.
8922f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///
8932f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///   type-specifier-seq: [C++ 8.1]
8942f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///     type-specifier type-specifier-seq[opt]
8952f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor///
8962f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregorbool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
8972f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor  DS.SetRangeStart(Tok.getLocation());
8982f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor  const char *PrevSpec = 0;
899fec54013fcd0eb72642741584ca04c1bc292bef8John McCall  unsigned DiagID;
900fec54013fcd0eb72642741584ca04c1bc292bef8John McCall  bool isInvalid = 0;
9012f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor
9022f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor  // Parse one or more of the type specifiers.
903d9bafa76f8d6eb9e4f4974ed322217f8df6bb82eSebastian Redl  if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
904d9bafa76f8d6eb9e4f4974ed322217f8df6bb82eSebastian Redl      ParsedTemplateInfo(), /*SuppressDeclarations*/true)) {
9051ab3b96de160e4fbffec2a776e284a48a3bb543dChris Lattner    Diag(Tok, diag::err_operator_missing_type_specifier);
9062f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor    return true;
9072f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor  }
9081eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
909d9bafa76f8d6eb9e4f4974ed322217f8df6bb82eSebastian Redl  while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID,
910d9bafa76f8d6eb9e4f4974ed322217f8df6bb82eSebastian Redl         ParsedTemplateInfo(), /*SuppressDeclarations*/true))
911d9bafa76f8d6eb9e4f4974ed322217f8df6bb82eSebastian Redl  {}
9122f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor
913396a9f235e160093b5f803f7a6a18fad7b68bdbeDouglas Gregor  DS.Finish(Diags, PP);
9142f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor  return false;
9152f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor}
9162f1bc5285ccd40f411af5f5993f013e27e74ab78Douglas Gregor
9173f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \brief Finish parsing a C++ unqualified-id that is a template-id of
9183f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// some form.
9193f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
9203f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// This routine is invoked when a '<' is encountered after an identifier or
9213f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// operator-function-id is parsed by \c ParseUnqualifiedId() to determine
9223f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// whether the unqualified-id is actually a template-id. This routine will
9233f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// then parse the template arguments and form the appropriate template-id to
9243f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// return to the caller.
9253f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
9263f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param SS the nested-name-specifier that precedes this template-id, if
9273f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// we're actually parsing a qualified-id.
9283f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
9293f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param Name for constructor and destructor names, this is the actual
9303f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// identifier that may be a template-name.
9313f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
9323f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param NameLoc the location of the class-name in a constructor or
9333f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// destructor.
9343f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
9353f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param EnteringContext whether we're entering the scope of the
9363f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// nested-name-specifier.
9373f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
93846df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// \param ObjectType if this unqualified-id occurs within a member access
93946df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// expression, the type of the base object whose member is being accessed.
94046df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor///
9413f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param Id as input, describes the template-name or operator-function-id
9423f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// that precedes the '<'. If template arguments were parsed successfully,
9433f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// will be updated with the template-id.
9443f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
945d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// \param AssumeTemplateId When true, this routine will assume that the name
946d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor/// refers to a template without performing name lookup to verify.
947d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor///
9483f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \returns true if a parse error occurred, false otherwise.
9493f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregorbool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS,
9503f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                          IdentifierInfo *Name,
9513f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                          SourceLocation NameLoc,
9523f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                          bool EnteringContext,
9532d1c21414199a7452f122598189363a3922605b1Douglas Gregor                                          TypeTy *ObjectType,
954d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                          UnqualifiedId &Id,
955d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                          bool AssumeTemplateId) {
9563f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  assert(Tok.is(tok::less) && "Expected '<' to finish parsing a template-id");
9573f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
9583f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  TemplateTy Template;
9593f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  TemplateNameKind TNK = TNK_Non_template;
9603f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  switch (Id.getKind()) {
9613f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  case UnqualifiedId::IK_Identifier:
962014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  case UnqualifiedId::IK_OperatorFunctionId:
963e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt  case UnqualifiedId::IK_LiteralOperatorId:
964d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    if (AssumeTemplateId) {
965d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      Template = Actions.ActOnDependentTemplateName(SourceLocation(), SS,
966d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                                    Id, ObjectType,
967d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                                    EnteringContext);
968d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      TNK = TNK_Dependent_template_name;
969d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      if (!Template.get())
970d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor        return true;
971d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor    } else
972d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor      TNK = Actions.isTemplateName(CurScope, SS, Id, ObjectType,
973d4dca08d6b7ed2e3e3718caa6fd735960b135e9aDouglas Gregor                                   EnteringContext, Template);
9743f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    break;
9753f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
976014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  case UnqualifiedId::IK_ConstructorName: {
977014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    UnqualifiedId TemplateName;
978014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    TemplateName.setIdentifier(Name, NameLoc);
979014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
9802d1c21414199a7452f122598189363a3922605b1Douglas Gregor                                 EnteringContext, Template);
9813f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    break;
982014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  }
9833f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
984014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  case UnqualifiedId::IK_DestructorName: {
985014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    UnqualifiedId TemplateName;
986014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor    TemplateName.setIdentifier(Name, NameLoc);
9872d1c21414199a7452f122598189363a3922605b1Douglas Gregor    if (ObjectType) {
988014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      Template = Actions.ActOnDependentTemplateName(SourceLocation(), SS,
989a481edb1b11c956a46cb42cd0dc4dd9851c10801Douglas Gregor                                                    TemplateName, ObjectType,
990a481edb1b11c956a46cb42cd0dc4dd9851c10801Douglas Gregor                                                    EnteringContext);
9912d1c21414199a7452f122598189363a3922605b1Douglas Gregor      TNK = TNK_Dependent_template_name;
9922d1c21414199a7452f122598189363a3922605b1Douglas Gregor      if (!Template.get())
9932d1c21414199a7452f122598189363a3922605b1Douglas Gregor        return true;
9942d1c21414199a7452f122598189363a3922605b1Douglas Gregor    } else {
995014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TNK = Actions.isTemplateName(CurScope, SS, TemplateName, ObjectType,
9962d1c21414199a7452f122598189363a3922605b1Douglas Gregor                                   EnteringContext, Template);
9972d1c21414199a7452f122598189363a3922605b1Douglas Gregor
9982d1c21414199a7452f122598189363a3922605b1Douglas Gregor      if (TNK == TNK_Non_template && Id.DestructorName == 0) {
999124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor        Diag(NameLoc, diag::err_destructor_template_id)
1000124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor          << Name << SS.getRange();
10012d1c21414199a7452f122598189363a3922605b1Douglas Gregor        return true;
10022d1c21414199a7452f122598189363a3922605b1Douglas Gregor      }
10032d1c21414199a7452f122598189363a3922605b1Douglas Gregor    }
10043f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    break;
1005014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor  }
10063f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10073f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  default:
10083f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
10093f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
10103f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10113f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (TNK == TNK_Non_template)
10123f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
10133f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10143f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // Parse the enclosed template argument list.
10153f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  SourceLocation LAngleLoc, RAngleLoc;
10163f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  TemplateArgList TemplateArgs;
10173f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (ParseTemplateIdAfterTemplateName(Template, Id.StartLocation,
10183f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                       &SS, true, LAngleLoc,
10193f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                       TemplateArgs,
10203f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                       RAngleLoc))
10213f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return true;
10223f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10233f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Id.getKind() == UnqualifiedId::IK_Identifier ||
1024e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt      Id.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1025e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt      Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) {
10263f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Form a parsed representation of the template-id to be stored in the
10273f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // UnqualifiedId.
10283f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateIdAnnotation *TemplateId
10293f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      = TemplateIdAnnotation::Allocate(TemplateArgs.size());
10303f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10313f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    if (Id.getKind() == UnqualifiedId::IK_Identifier) {
10323f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      TemplateId->Name = Id.Identifier;
1033014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->Operator = OO_None;
10343f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      TemplateId->TemplateNameLoc = Id.StartLocation;
10353f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    } else {
1036014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->Name = 0;
1037014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->Operator = Id.OperatorFunctionId.Operator;
1038014e88d94ff83e3aad4e33b16413a2d1817ec208Douglas Gregor      TemplateId->TemplateNameLoc = Id.StartLocation;
10393f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    }
10403f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10413f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateId->Template = Template.getAs<void*>();
10423f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateId->Kind = TNK;
10433f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateId->LAngleLoc = LAngleLoc;
10443f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    TemplateId->RAngleLoc = RAngleLoc;
1045314b97f8c564b465af605efaee23f91ec18a982bDouglas Gregor    ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
10463f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    for (unsigned Arg = 0, ArgEnd = TemplateArgs.size();
1047314b97f8c564b465af605efaee23f91ec18a982bDouglas Gregor         Arg != ArgEnd; ++Arg)
10483f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      Args[Arg] = TemplateArgs[Arg];
10493f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10503f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Id.setTemplateId(TemplateId);
10513f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
10523f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
10533f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10543f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // Bundle the template arguments together.
10553f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(),
10563f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                     TemplateArgs.size());
10573f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10583f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // Constructor and destructor names.
10593f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  Action::TypeResult Type
10603f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    = Actions.ActOnTemplateIdType(Template, NameLoc,
10613f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                  LAngleLoc, TemplateArgsPtr,
10623f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                  RAngleLoc);
10633f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Type.isInvalid())
10643f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return true;
10653f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10663f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Id.getKind() == UnqualifiedId::IK_ConstructorName)
10673f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Id.setConstructorName(Type.get(), NameLoc, RAngleLoc);
10683f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  else
10693f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc);
10703f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
10713f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  return false;
10723f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor}
10733f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1074ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \brief Parse an operator-function-id or conversion-function-id as part
1075ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// of a C++ unqualified-id.
10763f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1077ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// This routine is responsible only for parsing the operator-function-id or
1078ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// conversion-function-id; it does not handle template arguments in any way.
10793f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1080ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \code
10813f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       operator-function-id: [C++ 13.5]
10823f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         'operator' operator
10833f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1084ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///       operator: one of
10853f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            new   delete  new[]   delete[]
10863f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            +     -    *  /    %  ^    &   |   ~
10873f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            !     =    <  >    += -=   *=  /=  %=
10883f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            ^=    &=   |= <<   >> >>= <<=  ==  !=
10893f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            <=    >=   && ||   ++ --   ,   ->* ->
10903f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///            ()    []
10913f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
10923f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       conversion-function-id: [C++ 12.3.2]
10933f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         operator conversion-type-id
10943f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
10953f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       conversion-type-id:
10963f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         type-specifier-seq conversion-declarator[opt]
10973f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
10983f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///       conversion-declarator:
10993f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///         ptr-operator conversion-declarator[opt]
11003f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \endcode
11013f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
11023f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param The nested-name-specifier that preceded this unqualified-id. If
11033f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// non-empty, then we are parsing the unqualified-id of a qualified-id.
11043f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
11053f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param EnteringContext whether we are entering the scope of the
11063f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// nested-name-specifier.
11073f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
1108ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \param ObjectType if this unqualified-id occurs within a member access
1109ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// expression, the type of the base object whose member is being accessed.
1110ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1111ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \param Result on a successful parse, contains the parsed unqualified-id.
1112ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1113ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \returns true if parsing fails, false otherwise.
1114ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregorbool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext,
1115ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                        TypeTy *ObjectType,
1116ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                        UnqualifiedId &Result) {
1117ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword");
1118ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1119ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Consume the 'operator' keyword.
1120ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  SourceLocation KeywordLoc = ConsumeToken();
1121ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1122ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Determine what kind of operator name we have.
1123ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  unsigned SymbolIdx = 0;
1124ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  SourceLocation SymbolLocations[3];
1125ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  OverloadedOperatorKind Op = OO_None;
1126ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  switch (Tok.getKind()) {
1127ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::kw_new:
1128ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::kw_delete: {
1129ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      bool isNew = Tok.getKind() == tok::kw_new;
1130ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Consume the 'new' or 'delete'.
1131ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = ConsumeToken();
1132ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      if (Tok.is(tok::l_square)) {
1133ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        // Consume the '['.
1134ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        SourceLocation LBracketLoc = ConsumeBracket();
1135ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        // Consume the ']'.
1136ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1137ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                                         LBracketLoc);
1138ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        if (RBracketLoc.isInvalid())
1139ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor          return true;
1140ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1141ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        SymbolLocations[SymbolIdx++] = LBracketLoc;
1142ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        SymbolLocations[SymbolIdx++] = RBracketLoc;
1143ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        Op = isNew? OO_Array_New : OO_Array_Delete;
1144ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      } else {
1145ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        Op = isNew? OO_New : OO_Delete;
1146ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      }
1147ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1148ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1149ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1150ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1151ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::Token:                                                     \
1152ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = ConsumeToken();                     \
1153ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      Op = OO_##Name;                                                    \
1154ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1155ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
1156ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor#include "clang/Basic/OperatorKinds.def"
1157ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1158ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::l_paren: {
1159ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Consume the '('.
1160ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SourceLocation LParenLoc = ConsumeParen();
1161ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Consume the ')'.
1162ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren,
1163ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                                     LParenLoc);
1164ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      if (RParenLoc.isInvalid())
1165ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        return true;
1166ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1167ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = LParenLoc;
1168ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = RParenLoc;
1169ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      Op = OO_Call;
1170ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1171ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1172ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1173ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::l_square: {
1174ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Consume the '['.
1175ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SourceLocation LBracketLoc = ConsumeBracket();
1176ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Consume the ']'.
1177ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square,
1178ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                                       LBracketLoc);
1179ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      if (RBracketLoc.isInvalid())
1180ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        return true;
1181ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1182ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = LBracketLoc;
1183ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      SymbolLocations[SymbolIdx++] = RBracketLoc;
1184ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      Op = OO_Subscript;
1185ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1186ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1187ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1188ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    case tok::code_completion: {
1189ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Code completion for the operator name.
1190ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      Actions.CodeCompleteOperatorName(CurScope);
1191ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1192ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Consume the operator token.
1193ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      ConsumeToken();
1194ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1195ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      // Don't try to parse any further.
1196ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      return true;
1197ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    }
1198ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1199ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    default:
1200ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      break;
1201ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  }
1202ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1203ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  if (Op != OO_None) {
1204ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    // We have parsed an operator-function-id.
1205ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations);
1206ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    return false;
1207ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  }
12080486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
12090486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  // Parse a literal-operator-id.
12100486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  //
12110486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  //   literal-operator-id: [C++0x 13.5.8]
12120486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  //     operator "" identifier
12130486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
12140486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) {
12150486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt    if (Tok.getLength() != 2)
12160486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt      Diag(Tok.getLocation(), diag::err_operator_string_not_empty);
12170486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt    ConsumeStringToken();
12180486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
12190486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt    if (Tok.isNot(tok::identifier)) {
12200486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt      Diag(Tok.getLocation(), diag::err_expected_ident);
12210486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt      return true;
12220486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt    }
12230486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt
12240486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt    IdentifierInfo *II = Tok.getIdentifierInfo();
12250486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt    Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken());
12263e518bda00d710754ca077cf9be8dd821e16a854Sean Hunt    return false;
12270486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  }
1228ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1229ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Parse a conversion-function-id.
1230ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //
1231ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //   conversion-function-id: [C++ 12.3.2]
1232ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //     operator conversion-type-id
1233ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //
1234ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //   conversion-type-id:
1235ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //     type-specifier-seq conversion-declarator[opt]
1236ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //
1237ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //   conversion-declarator:
1238ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  //     ptr-operator conversion-declarator[opt]
1239ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1240ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Parse the type-specifier-seq.
1241ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  DeclSpec DS;
1242f6e6fc801c700c7b8ac202ddbe550d9843a816fcDouglas Gregor  if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType?
1243ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    return true;
1244ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1245ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Parse the conversion-declarator, which is merely a sequence of
1246ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // ptr-operators.
1247ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  Declarator D(DS, Declarator::TypeNameContext);
1248ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  ParseDeclaratorInternal(D, /*DirectDeclParser=*/0);
1249ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1250ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Finish up the type.
1251ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  Action::TypeResult Ty = Actions.ActOnTypeName(CurScope, D);
1252ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  if (Ty.isInvalid())
1253ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    return true;
1254ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1255ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  // Note that this is a conversion-function-id.
1256ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  Result.setConversionFunctionId(KeywordLoc, Ty.get(),
1257ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                 D.getSourceRange().getEnd());
1258ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor  return false;
1259ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor}
1260ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor
1261ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \brief Parse a C++ unqualified-id (or a C identifier), which describes the
1262ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// name of an entity.
1263ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1264ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \code
1265ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///       unqualified-id: [C++ expr.prim.general]
1266ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         identifier
1267ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         operator-function-id
1268ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         conversion-function-id
1269ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// [C++0x] literal-operator-id [TODO]
1270ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         ~ class-name
1271ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///         template-id
1272ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1273ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \endcode
1274ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1275ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \param The nested-name-specifier that preceded this unqualified-id. If
1276ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// non-empty, then we are parsing the unqualified-id of a qualified-id.
1277ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
1278ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// \param EnteringContext whether we are entering the scope of the
1279ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor/// nested-name-specifier.
1280ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor///
12813f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param AllowDestructorName whether we allow parsing of a destructor name.
12823f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
12833f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param AllowConstructorName whether we allow parsing a constructor name.
12843f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
128546df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// \param ObjectType if this unqualified-id occurs within a member access
128646df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor/// expression, the type of the base object whose member is being accessed.
128746df8cc349096f141c841dbffaa72641ff1dd94bDouglas Gregor///
12883f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \param Result on a successful parse, contains the parsed unqualified-id.
12893f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor///
12903f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor/// \returns true if parsing fails, false otherwise.
12913f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregorbool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
12923f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                bool AllowDestructorName,
12933f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                bool AllowConstructorName,
12942d1c21414199a7452f122598189363a3922605b1Douglas Gregor                                TypeTy *ObjectType,
12953f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                UnqualifiedId &Result) {
12963f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // unqualified-id:
12973f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   identifier
12983f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   template-id (when it hasn't already been annotated)
12993f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Tok.is(tok::identifier)) {
13003f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Consume the identifier.
13013f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    IdentifierInfo *Id = Tok.getIdentifierInfo();
13023f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    SourceLocation IdLoc = ConsumeToken();
13033f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1304b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor    if (!getLang().CPlusPlus) {
1305b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      // If we're not in C++, only identifiers matter. Record the
1306b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      // identifier and return.
1307b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      Result.setIdentifier(Id, IdLoc);
1308b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      return false;
1309b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor    }
1310b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor
13113f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    if (AllowConstructorName &&
13123f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor        Actions.isCurrentClassName(*Id, CurScope, &SS)) {
13133f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      // We have parsed a constructor name.
13143f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, CurScope,
13153f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                                    &SS, false),
13163f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor                                IdLoc, IdLoc);
13173f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    } else {
13183f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      // We have parsed an identifier.
13193f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      Result.setIdentifier(Id, IdLoc);
13203f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    }
13213f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
13223f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // If the next token is a '<', we may have a template.
13233f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    if (Tok.is(tok::less))
13243f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext,
13252d1c21414199a7452f122598189363a3922605b1Douglas Gregor                                          ObjectType, Result);
13263f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
13273f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
13283f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
13293f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
13303f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // unqualified-id:
13313f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   template-id (already parsed and annotated)
13323f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Tok.is(tok::annot_template_id)) {
13330efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    TemplateIdAnnotation *TemplateId
13340efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      = static_cast<TemplateIdAnnotation*>(Tok.getAnnotationValue());
13350efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor
13360efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    // If the template-name names the current class, then this is a constructor
13370efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    if (AllowConstructorName && TemplateId->Name &&
13380efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        Actions.isCurrentClassName(*TemplateId->Name, CurScope, &SS)) {
13390efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      if (SS.isSet()) {
13400efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // C++ [class.qual]p2 specifies that a qualified template-name
13410efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // is taken as the constructor name where a constructor can be
13420efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // declared. Thus, the template arguments are extraneous, so
13430efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        // complain about them and remove them entirely.
13440efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        Diag(TemplateId->TemplateNameLoc,
13450efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor             diag::err_out_of_line_constructor_template_id)
13460efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor          << TemplateId->Name
1347849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor          << FixItHint::CreateRemoval(
13480efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                    SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc));
13490efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        Result.setConstructorName(Actions.getTypeName(*TemplateId->Name,
13500efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                                                  TemplateId->TemplateNameLoc,
13510efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                                                      CurScope,
13520efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                                                      &SS, false),
13530efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                                  TemplateId->TemplateNameLoc,
13540efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor                                  TemplateId->RAngleLoc);
13550efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        TemplateId->Destroy();
13560efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        ConsumeToken();
13570efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor        return false;
13580efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      }
13590efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor
13600efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      Result.setConstructorTemplateId(TemplateId);
13610efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      ConsumeToken();
13620efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor      return false;
13630efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    }
13640efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor
13653f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // We have already parsed a template-id; consume the annotation token as
13663f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // our unqualified-id.
13670efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor    Result.setTemplateId(TemplateId);
13683f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    ConsumeToken();
13693f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
13703f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
13713f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
13723f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  // unqualified-id:
13733f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   operator-function-id
13743f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  //   conversion-function-id
13753f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (Tok.is(tok::kw_operator)) {
1376ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result))
13773f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      return true;
13783f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1379e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt    // If we have an operator-function-id or a literal-operator-id and the next
1380e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt    // token is a '<', we may have a
1381ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    //
1382ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    //   template-id:
1383ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor    //     operator-function-id < template-argument-list[opt] >
1384e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt    if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId ||
1385e6252d1587f98dbac704178e7b2ce53116048310Sean Hunt         Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) &&
1386ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor        Tok.is(tok::less))
1387ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor      return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(),
1388ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                          EnteringContext, ObjectType,
1389ca1bdd7c269a2390d43c040a60511edd017ee130Douglas Gregor                                          Result);
13903f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
13913f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
13923f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
13933f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1394b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor  if (getLang().CPlusPlus &&
1395b862b8f93424a583fc912ab37bbbac1c231e852eDouglas Gregor      (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
13963f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // C++ [expr.unary.op]p10:
13973f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    //   There is an ambiguity in the unary-expression ~X(), where X is a
13983f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    //   class-name. The ambiguity is resolved in favor of treating ~ as a
13993f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    //    unary complement rather than treating ~X as referring to a destructor.
14003f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
14013f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Parse the '~'.
14023f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    SourceLocation TildeLoc = ConsumeToken();
14033f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
14043f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Parse the class-name.
14053f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    if (Tok.isNot(tok::identifier)) {
1406124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor      Diag(Tok, diag::err_destructor_tilde_identifier);
14073f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      return true;
14083f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    }
14093f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
14103f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Parse the class-name (or template-name in a simple-template-id).
14113f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    IdentifierInfo *ClassName = Tok.getIdentifierInfo();
14123f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    SourceLocation ClassNameLoc = ConsumeToken();
14133f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
14142d1c21414199a7452f122598189363a3922605b1Douglas Gregor    if (Tok.is(tok::less)) {
14152d1c21414199a7452f122598189363a3922605b1Douglas Gregor      Result.setDestructorName(TildeLoc, 0, ClassNameLoc);
14162d1c21414199a7452f122598189363a3922605b1Douglas Gregor      return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc,
14172d1c21414199a7452f122598189363a3922605b1Douglas Gregor                                          EnteringContext, ObjectType, Result);
14182d1c21414199a7452f122598189363a3922605b1Douglas Gregor    }
14192d1c21414199a7452f122598189363a3922605b1Douglas Gregor
14203f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    // Note that this is a destructor name.
1421124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor    Action::TypeTy *Ty = Actions.getDestructorName(TildeLoc, *ClassName,
1422124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor                                                   ClassNameLoc, CurScope,
1423124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor                                                   SS, ObjectType,
1424124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor                                                   EnteringContext);
1425124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor    if (!Ty)
14263f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor      return true;
1427124b878dba5007df0a268ea128a6ad8dc5dd2c5eDouglas Gregor
14283f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    Result.setDestructorName(TildeLoc, Ty, ClassNameLoc);
14293f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return false;
14303f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
14313f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
14322d1c21414199a7452f122598189363a3922605b1Douglas Gregor  Diag(Tok, diag::err_expected_unqualified_id)
14332d1c21414199a7452f122598189363a3922605b1Douglas Gregor    << getLang().CPlusPlus;
14343f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  return true;
14353f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor}
14363f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
14374c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate
14384c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// memory in a typesafe manner and call constructors.
14391eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump///
144059232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// This method is called to parse the new expression after the optional :: has
144159232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// been already parsed.  If the :: was present, "UseGlobal" is true and "Start"
144259232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// is its location.  Otherwise, "Start" is the location of the 'new' token.
14434c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
14444c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-expression:
14454c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'new' new-placement[opt] new-type-id
14464c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                                     new-initializer[opt]
14474c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'new' new-placement[opt] '(' type-id ')'
14484c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                                     new-initializer[opt]
14494c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
14504c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-placement:
14514c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '(' expression-list ')'
14524c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
1453cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///        new-type-id:
1454cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///                   type-specifier-seq new-declarator[opt]
1455cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///
1456cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///        new-declarator:
1457cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///                   ptr-operator new-declarator[opt]
1458cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///                   direct-new-declarator
1459cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl///
14604c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-initializer:
14614c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '(' expression-list[opt] ')'
14624c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// [C++0x]           braced-init-list                                   [TODO]
14634c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
146459232d35f5820e334b6c8b007ae8006f4390055dChris LattnerParser::OwningExprResult
146559232d35f5820e334b6c8b007ae8006f4390055dChris LattnerParser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) {
146659232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  assert(Tok.is(tok::kw_new) && "expected 'new' token");
146759232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  ConsumeToken();   // Consume 'new'
14684c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
14694c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // A '(' now can be a new-placement or the '(' wrapping the type-id in the
14704c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // second form of new-expression. It can't be a new-type-id.
14714c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
1472a55e52c0802cae3b7c366a05c461d3d15074c1a3Sebastian Redl  ExprVector PlacementArgs(Actions);
14734c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  SourceLocation PlacementLParen, PlacementRParen;
14744c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
14754c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  bool ParenTypeId;
1476cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl  DeclSpec DS;
1477cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl  Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
14784c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  if (Tok.is(tok::l_paren)) {
14794c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    // If it turns out to be a placement, we change the type location.
14804c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    PlacementLParen = ConsumeParen();
1481cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) {
1482cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
148320df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
1484cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    }
14854c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
14864c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    PlacementRParen = MatchRHSPunctuation(tok::r_paren, PlacementLParen);
1487cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (PlacementRParen.isInvalid()) {
1488cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
148920df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
1490cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    }
14914c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
1492cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (PlacementArgs.empty()) {
14934c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      // Reset the placement locations. There was no placement.
14944c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      PlacementLParen = PlacementRParen = SourceLocation();
14954c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      ParenTypeId = true;
14964c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    } else {
14974c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      // We still need the type.
14984c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      if (Tok.is(tok::l_paren)) {
1499cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        SourceLocation LParen = ConsumeParen();
1500cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        ParseSpecifierQualifierList(DS);
1501ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl        DeclaratorInfo.SetSourceRange(DS.getSourceRange());
1502cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        ParseDeclarator(DeclaratorInfo);
1503cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        MatchRHSPunctuation(tok::r_paren, LParen);
15044c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl        ParenTypeId = true;
15054c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      } else {
1506cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        if (ParseCXXTypeSpecifierSeq(DS))
1507cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl          DeclaratorInfo.setInvalidType(true);
1508ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl        else {
1509ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl          DeclaratorInfo.SetSourceRange(DS.getSourceRange());
1510cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl          ParseDeclaratorInternal(DeclaratorInfo,
1511cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl                                  &Parser::ParseDirectNewDeclarator);
1512ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl        }
15134c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl        ParenTypeId = false;
15144c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      }
15154c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    }
15164c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  } else {
1517cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    // A new-type-id is a simplified type-id, where essentially the
1518cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    // direct-declarator is replaced by a direct-new-declarator.
1519cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (ParseCXXTypeSpecifierSeq(DS))
1520cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      DeclaratorInfo.setInvalidType(true);
1521ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    else {
1522ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl      DeclaratorInfo.SetSourceRange(DS.getSourceRange());
1523cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      ParseDeclaratorInternal(DeclaratorInfo,
1524cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl                              &Parser::ParseDirectNewDeclarator);
1525ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    }
15264c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    ParenTypeId = false;
15274c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
1528eaaebc7cf10dc1a2016183a262ad3256bc468759Chris Lattner  if (DeclaratorInfo.isInvalidType()) {
1529cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
153020df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return ExprError();
1531cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl  }
15324c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
1533a55e52c0802cae3b7c366a05c461d3d15074c1a3Sebastian Redl  ExprVector ConstructorArgs(Actions);
15344c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  SourceLocation ConstructorLParen, ConstructorRParen;
15354c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
15364c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  if (Tok.is(tok::l_paren)) {
15374c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    ConstructorLParen = ConsumeParen();
15384c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    if (Tok.isNot(tok::r_paren)) {
15394c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      CommaLocsTy CommaLocs;
1540cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      if (ParseExpressionList(ConstructorArgs, CommaLocs)) {
1541cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl        SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
154220df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl        return ExprError();
1543cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      }
15444c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    }
15454c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    ConstructorRParen = MatchRHSPunctuation(tok::r_paren, ConstructorLParen);
1546cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    if (ConstructorRParen.isInvalid()) {
1547cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl      SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true);
154820df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
1549cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    }
15504c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
15514c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
1552f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
1553f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl                             move_arg(PlacementArgs), PlacementRParen,
1554f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl                             ParenTypeId, DeclaratorInfo, ConstructorLParen,
1555f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl                             move_arg(ConstructorArgs), ConstructorRParen);
15564c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
15574c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
15584c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be
15594c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// passed to ParseDeclaratorInternal.
15604c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
15614c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        direct-new-declarator:
15624c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '[' expression ']'
15634c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   direct-new-declarator '[' constant-expression ']'
15644c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
156559232d35f5820e334b6c8b007ae8006f4390055dChris Lattnervoid Parser::ParseDirectNewDeclarator(Declarator &D) {
15664c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // Parse the array dimensions.
15674c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  bool first = true;
15684c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  while (Tok.is(tok::l_square)) {
15694c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    SourceLocation LLoc = ConsumeBracket();
15702f7ece7c77eb17e24e8f0f4e1b7fb01aa5111f96Sebastian Redl    OwningExprResult Size(first ? ParseExpression()
15712f7ece7c77eb17e24e8f0f4e1b7fb01aa5111f96Sebastian Redl                                : ParseConstantExpression());
15720e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl    if (Size.isInvalid()) {
15734c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      // Recover
15744c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      SkipUntil(tok::r_square);
15754c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      return;
15764c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    }
15774c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    first = false;
15784c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
1579ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    SourceLocation RLoc = MatchRHSPunctuation(tok::r_square, LLoc);
15804c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    D.AddTypeInfo(DeclaratorChunk::getArray(0, /*static=*/false, /*star=*/false,
15817e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor                                            Size.release(), LLoc, RLoc),
1582ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl                  RLoc);
15834c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
1584ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    if (RLoc.isInvalid())
15854c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl      return;
15864c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
15874c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
15884c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
15894c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id.
15904c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// This ambiguity appears in the syntax of the C++ new operator.
15914c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
15924c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-expression:
15934c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'new' new-placement[opt] '(' type-id ')'
15944c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                                     new-initializer[opt]
15954c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
15964c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        new-placement:
15974c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '(' expression-list ')'
15984c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
1599cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redlbool Parser::ParseExpressionListOrTypeId(ExprListTy &PlacementArgs,
160059232d35f5820e334b6c8b007ae8006f4390055dChris Lattner                                         Declarator &D) {
16014c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // The '(' was already consumed.
16024c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  if (isTypeIdInParens()) {
1603cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    ParseSpecifierQualifierList(D.getMutableDeclSpec());
1604ab197baec16bacade82325fb274cf6b992ac5d8aSebastian Redl    D.SetSourceRange(D.getDeclSpec().getSourceRange());
1605cee63fbf0e64ac526582312bf8cf33263fc5c16eSebastian Redl    ParseDeclarator(D);
1606eaaebc7cf10dc1a2016183a262ad3256bc468759Chris Lattner    return D.isInvalidType();
16074c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
16084c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
16094c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // It's not a type, it has to be an expression list.
16104c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // Discard the comma locations - ActOnCXXNew has enough parameters.
16114c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  CommaLocsTy CommaLocs;
16124c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  return ParseExpressionList(PlacementArgs, CommaLocs);
16134c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
16144c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
16154c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used
16164c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl/// to free memory allocated by new.
16174c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///
161859232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// This method is called to parse the 'delete' expression after the optional
161959232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// '::' has been already parsed.  If the '::' was present, "UseGlobal" is true
162059232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// and "Start" is its location.  Otherwise, "Start" is the location of the
162159232d35f5820e334b6c8b007ae8006f4390055dChris Lattner/// 'delete' token.
162259232d35f5820e334b6c8b007ae8006f4390055dChris Lattner///
16234c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///        delete-expression:
16244c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'delete' cast-expression
16254c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl///                   '::'[opt] 'delete' '[' ']' cast-expression
162659232d35f5820e334b6c8b007ae8006f4390055dChris LattnerParser::OwningExprResult
162759232d35f5820e334b6c8b007ae8006f4390055dChris LattnerParser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) {
162859232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword");
162959232d35f5820e334b6c8b007ae8006f4390055dChris Lattner  ConsumeToken(); // Consume 'delete'
16304c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
16314c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  // Array delete?
16324c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  bool ArrayDelete = false;
16334c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  if (Tok.is(tok::l_square)) {
16344c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    ArrayDelete = true;
16354c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    SourceLocation LHS = ConsumeBracket();
16364c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    SourceLocation RHS = MatchRHSPunctuation(tok::r_square, LHS);
16374c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl    if (RHS.isInvalid())
163820df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl      return ExprError();
16394c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl  }
16404c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
16412f7ece7c77eb17e24e8f0f4e1b7fb01aa5111f96Sebastian Redl  OwningExprResult Operand(ParseCastExpression(false));
16420e9eabca263e8922bec0e2b38c8670eba9a39a1fSebastian Redl  if (Operand.isInvalid())
164320df9b7ab9388b2a488c5b1293cd196b1e073b4eSebastian Redl    return move(Operand);
16444c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl
1645f53597fb16142bdb4a66901f8c0b768db4f2a548Sebastian Redl  return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, move(Operand));
16464c5d320a7581f4b80b151630c91cea5727fa9923Sebastian Redl}
164764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
16481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stumpstatic UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) {
164964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  switch(kind) {
165064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  default: assert(false && "Not a known unary type trait.");
165164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_nothrow_assign:      return UTT_HasNothrowAssign;
165264b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_nothrow_copy:        return UTT_HasNothrowCopy;
165364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor;
165464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_trivial_assign:      return UTT_HasTrivialAssign;
165564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_trivial_copy:        return UTT_HasTrivialCopy;
165664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_trivial_constructor: return UTT_HasTrivialConstructor;
165764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_trivial_destructor:  return UTT_HasTrivialDestructor;
165864b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___has_virtual_destructor:  return UTT_HasVirtualDestructor;
165964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_abstract:             return UTT_IsAbstract;
166064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_class:                return UTT_IsClass;
166164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_empty:                return UTT_IsEmpty;
166264b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_enum:                 return UTT_IsEnum;
166364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_pod:                  return UTT_IsPOD;
166464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_polymorphic:          return UTT_IsPolymorphic;
166564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  case tok::kw___is_union:                return UTT_IsUnion;
1666ccf43505dbc47da041c06125f90b3bd3ac7eac97Sebastian Redl  case tok::kw___is_literal:              return UTT_IsLiteral;
166764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  }
166864b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl}
166964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
167064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// ParseUnaryTypeTrait - Parse the built-in unary type-trait
167164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// pseudo-functions that allow implementation of the TR1/C++0x type traits
167264b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// templates.
167364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl///
167464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl///       primary-expression:
167564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl/// [GNU]             unary-type-trait '(' type-id ')'
167664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl///
16771eb4433ac451dc16f4133a88af2d002ac26c58efMike StumpParser::OwningExprResult Parser::ParseUnaryTypeTrait() {
167864b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind());
167964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  SourceLocation Loc = ConsumeToken();
168064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
168164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  SourceLocation LParen = Tok.getLocation();
168264b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen))
168364b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl    return ExprError();
168464b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
168564b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  // FIXME: Error reporting absolutely sucks! If the this fails to parse a type
168664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  // there will be cryptic errors about mismatched parentheses and missing
168764b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  // specifiers.
1688809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  TypeResult Ty = ParseTypeName();
168964b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
169064b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl  SourceLocation RParen = MatchRHSPunctuation(tok::r_paren, LParen);
169164b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl
1692809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  if (Ty.isInvalid())
1693809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor    return ExprError();
1694809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor
1695809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  return Actions.ActOnUnaryTypeTrait(UTT, Loc, LParen, Ty.get(), RParen);
169664b45f7e0d3167f040841ac2920aead7f080730dSebastian Redl}
1697f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1698f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis/// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a
1699f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis/// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate
1700f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis/// based on the context past the parens.
1701f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios KyrtzidisParser::OwningExprResult
1702f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios KyrtzidisParser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
1703f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis                                         TypeTy *&CastTy,
1704f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis                                         SourceLocation LParenLoc,
1705f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis                                         SourceLocation &RParenLoc) {
1706f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  assert(getLang().CPlusPlus && "Should only be called for C++!");
1707f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
1708f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  assert(isTypeIdInParens() && "Not a type-id!");
1709f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1710f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  OwningExprResult Result(Actions, true);
1711f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  CastTy = 0;
1712f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1713f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // We need to disambiguate a very ugly part of the C++ syntax:
1714f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  //
1715f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T())x;  - type-id
1716f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T())*x; - type-id
1717f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T())/x; - expression
1718f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // (T());   - expression
1719f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  //
1720f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // The bad news is that we cannot use the specialized tentative parser, since
1721f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // it can only verify that the thing inside the parens can be parsed as
1722f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // type-id, it is not useful for determining the context past the parens.
1723f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  //
1724f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // The good news is that the parser can disambiguate this part without
1725a558a897cbe83a21914058348ffbdcf827530ad4Argyrios Kyrtzidis  // making any unnecessary Action calls.
1726f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  //
1727f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // It uses a scheme similar to parsing inline methods. The parenthesized
1728f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // tokens are cached, the context that follows is determined (possibly by
1729f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // parsing a cast-expression), and then we re-introduce the cached tokens
1730f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // into the token stream and parse them appropriately.
1731f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
17321eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  ParenParseOption ParseAs;
1733f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  CachedTokens Toks;
1734f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
1735f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Store the tokens of the parentheses. We will parse them after we determine
1736f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // the context that follows them.
1737f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  if (!ConsumeAndStoreUntil(tok::r_paren, tok::unknown, Toks, tok::semi)) {
1738f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // We didn't find the ')' we expected.
1739f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    MatchRHSPunctuation(tok::r_paren, LParenLoc);
1740f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    return ExprError();
1741f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
1742f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1743f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  if (Tok.is(tok::l_brace)) {
1744f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    ParseAs = CompoundLiteral;
1745f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  } else {
1746f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    bool NotCastExpr;
1747b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
1748b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
1749b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      NotCastExpr = true;
1750b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    } else {
1751b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      // Try parsing the cast-expression that may follow.
1752b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      // If it is not a cast-expression, NotCastExpr will be true and no token
1753b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      // will be consumed.
1754b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman      Result = ParseCastExpression(false/*isUnaryExpression*/,
1755b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman                                   false/*isAddressofOperand*/,
17562ef13e5abef0570a9f567b4671367275c05d4d34Nate Begeman                                   NotCastExpr, false);
1757b53f08ac87f1e1f4bc2fbfa4560c2183a82020eeEli Friedman    }
1758f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
1759f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // If we parsed a cast-expression, it's really a type-id, otherwise it's
1760f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // an expression.
1761f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    ParseAs = NotCastExpr ? SimpleExpr : CastExpr;
1762f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
1763f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
17641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  // The current token should go after the cached tokens.
1765f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  Toks.push_back(Tok);
1766f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Re-enter the stored parenthesized tokens into the token stream, so we may
1767f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // parse them now.
1768f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  PP.EnterTokenStream(Toks.data(), Toks.size(),
1769f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis                      true/*DisableMacroExpansion*/, false/*OwnsTokens*/);
1770f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Drop the current token and bring the first cached one. It's the same token
1771f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // as when we entered this function.
1772f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  ConsumeAnyToken();
1773f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
1774f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  if (ParseAs >= CompoundLiteral) {
1775f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    TypeResult Ty = ParseTypeName();
1776f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1777f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // Match the ')'.
1778f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    if (Tok.is(tok::r_paren))
1779f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis      RParenLoc = ConsumeParen();
1780f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    else
1781f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis      MatchRHSPunctuation(tok::r_paren, LParenLoc);
1782f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
1783f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    if (ParseAs == CompoundLiteral) {
1784f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis      ExprType = CompoundLiteral;
1785f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis      return ParseCompoundLiteralExpression(Ty.get(), LParenLoc, RParenLoc);
1786f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    }
17871eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1788f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // We parsed '(' type-id ')' and the thing after it wasn't a '{'.
1789f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    assert(ParseAs == CastExpr);
1790f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
1791f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    if (Ty.isInvalid())
1792f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis      return ExprError();
1793f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1794f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    CastTy = Ty.get();
1795f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis
1796f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis    // Result is what ParseCastExpression returned earlier.
1797f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    if (!Result.isInvalid())
17981eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      Result = Actions.ActOnCastExpr(CurScope, LParenLoc, CastTy, RParenLoc,
17992ef13e5abef0570a9f567b4671367275c05d4d34Nate Begeman                                     move(Result));
1800f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    return move(Result);
1801f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
18021eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1803f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  // Not a compound literal, and not followed by a cast-expression.
1804f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  assert(ParseAs == SimpleExpr);
1805f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1806f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  ExprType = SimpleExpr;
1807f40882a38baf258fa10e362003f6939a590074bbArgyrios Kyrtzidis  Result = ParseExpression();
1808f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  if (!Result.isInvalid() && Tok.is(tok::r_paren))
1809f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    Result = Actions.ActOnParenExpr(LParenLoc, Tok.getLocation(), move(Result));
1810f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1811f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  // Match the ')'.
1812f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  if (Result.isInvalid()) {
1813f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    SkipUntil(tok::r_paren);
1814f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    return ExprError();
1815f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  }
18161eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1817f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  if (Tok.is(tok::r_paren))
1818f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    RParenLoc = ConsumeParen();
1819f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  else
1820f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis    MatchRHSPunctuation(tok::r_paren, LParenLoc);
1821f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis
1822f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis  return move(Result);
1823f58f45e6d76792df8c643ce1c6d364dce5db4826Argyrios Kyrtzidis}
1824