| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- ParseExprCXX.cpp - C++ Expression Parsing ------------------------===// | 
|  | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
| Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 | // | 
|  | 10 | // This file implements the Expression parsing implementation for C++. | 
|  | 11 | // | 
|  | 12 | //===----------------------------------------------------------------------===// | 
|  | 13 |  | 
| Chris Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 14 | #include "clang/Parse/ParseDiagnostic.h" | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 15 | #include "clang/Parse/Parser.h" | 
| John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 16 | #include "clang/Sema/DeclSpec.h" | 
|  | 17 | #include "clang/Sema/ParsedTemplate.h" | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 18 | #include "llvm/Support/ErrorHandling.h" | 
|  | 19 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | using namespace clang; | 
|  | 21 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 22 | /// \brief Parse global scope or nested-name-specifier if present. | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 23 | /// | 
|  | 24 | /// Parses a C++ global scope specifier ('::') or nested-name-specifier (which | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 25 | /// may be preceded by '::'). Note that this routine will not parse ::new or | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 26 | /// ::delete; it will just leave them in the token stream. | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 27 | /// | 
|  | 28 | ///       '::'[opt] nested-name-specifier | 
|  | 29 | ///       '::' | 
|  | 30 | /// | 
|  | 31 | ///       nested-name-specifier: | 
|  | 32 | ///         type-name '::' | 
|  | 33 | ///         namespace-name '::' | 
|  | 34 | ///         nested-name-specifier identifier '::' | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 35 | ///         nested-name-specifier 'template'[opt] simple-template-id '::' | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 36 | /// | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 37 | /// | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 38 | /// \param SS the scope specifier that will be set to the parsed | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 39 | /// nested-name-specifier (or empty) | 
|  | 40 | /// | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 41 | /// \param ObjectType if this nested-name-specifier is being parsed following | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 42 | /// the "." or "->" of a member access expression, this parameter provides the | 
|  | 43 | /// type of the object whose members are being accessed. | 
|  | 44 | /// | 
|  | 45 | /// \param EnteringContext whether we will be entering into the context of | 
|  | 46 | /// the nested-name-specifier after parsing it. | 
|  | 47 | /// | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 48 | /// \param MayBePseudoDestructor When non-NULL, points to a flag that | 
|  | 49 | /// indicates whether this nested-name-specifier may be part of a | 
|  | 50 | /// pseudo-destructor name. In this case, the flag will be set false | 
|  | 51 | /// if we don't actually end up parsing a destructor name. Moreorover, | 
|  | 52 | /// if we do end up determining that we are parsing a destructor name, | 
|  | 53 | /// the last component of the nested-name-specifier is not parsed as | 
|  | 54 | /// part of the scope specifier. | 
|  | 55 |  | 
| Douglas Gregor | b10cd04 | 2010-02-21 18:36:56 +0000 | [diff] [blame] | 56 | /// member access expression, e.g., the \p T:: in \p p->T::m. | 
|  | 57 | /// | 
| John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 58 | /// \returns true if there was an error parsing a scope specifier | 
| Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 59 | bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 60 | ParsedType ObjectType, | 
| Douglas Gregor | b10cd04 | 2010-02-21 18:36:56 +0000 | [diff] [blame] | 61 | bool EnteringContext, | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 62 | bool *MayBePseudoDestructor) { | 
| Argyrios Kyrtzidis | 4bdd91c | 2008-11-26 21:41:52 +0000 | [diff] [blame] | 63 | assert(getLang().CPlusPlus && | 
| Chris Lattner | 7452c6f | 2009-01-05 01:24:05 +0000 | [diff] [blame] | 64 | "Call sites of this function should be guarded by checking for C++"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 65 |  | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 66 | if (Tok.is(tok::annot_cxxscope)) { | 
| John McCall | ca0408f | 2010-08-23 06:44:23 +0000 | [diff] [blame] | 67 | SS.setScopeRep(static_cast<NestedNameSpecifier*>(Tok.getAnnotationValue())); | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 68 | SS.setRange(Tok.getAnnotationRange()); | 
|  | 69 | ConsumeToken(); | 
| John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 70 | return false; | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 71 | } | 
| Chris Lattner | e607e80 | 2009-01-04 21:14:15 +0000 | [diff] [blame] | 72 |  | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 73 | bool HasScopeSpecifier = false; | 
|  | 74 |  | 
| Chris Lattner | 5b45473 | 2009-01-05 03:55:46 +0000 | [diff] [blame] | 75 | if (Tok.is(tok::coloncolon)) { | 
|  | 76 | // ::new and ::delete aren't nested-name-specifiers. | 
|  | 77 | tok::TokenKind NextKind = NextToken().getKind(); | 
|  | 78 | if (NextKind == tok::kw_new || NextKind == tok::kw_delete) | 
|  | 79 | return false; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 80 |  | 
| Chris Lattner | 55a7cef | 2009-01-05 00:13:00 +0000 | [diff] [blame] | 81 | // '::' - Global scope qualifier. | 
| Chris Lattner | 357089d | 2009-01-05 02:07:19 +0000 | [diff] [blame] | 82 | SourceLocation CCLoc = ConsumeToken(); | 
| Chris Lattner | 357089d | 2009-01-05 02:07:19 +0000 | [diff] [blame] | 83 | SS.setBeginLoc(CCLoc); | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 84 | SS.setScopeRep(Actions.ActOnCXXGlobalScopeSpecifier(getCurScope(), CCLoc)); | 
| Chris Lattner | 357089d | 2009-01-05 02:07:19 +0000 | [diff] [blame] | 85 | SS.setEndLoc(CCLoc); | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 86 | HasScopeSpecifier = true; | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 87 | } | 
|  | 88 |  | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 89 | bool CheckForDestructor = false; | 
|  | 90 | if (MayBePseudoDestructor && *MayBePseudoDestructor) { | 
|  | 91 | CheckForDestructor = true; | 
|  | 92 | *MayBePseudoDestructor = false; | 
|  | 93 | } | 
|  | 94 |  | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 95 | while (true) { | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 96 | if (HasScopeSpecifier) { | 
|  | 97 | // C++ [basic.lookup.classref]p5: | 
|  | 98 | //   If the qualified-id has the form | 
| Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 99 | // | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 100 | //       ::class-name-or-namespace-name::... | 
| Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 101 | // | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 102 | //   the class-name-or-namespace-name is looked up in global scope as a | 
|  | 103 | //   class-name or namespace-name. | 
|  | 104 | // | 
|  | 105 | // To implement this, we clear out the object type as soon as we've | 
|  | 106 | // seen a leading '::' or part of a nested-name-specifier. | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 107 | ObjectType = ParsedType(); | 
| Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 108 |  | 
|  | 109 | if (Tok.is(tok::code_completion)) { | 
|  | 110 | // Code completion for a nested-name-specifier, where the code | 
|  | 111 | // code completion token follows the '::'. | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 112 | Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext); | 
| Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 113 | ConsumeCodeCompletionToken(); | 
| Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 114 | } | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 115 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 116 |  | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 117 | // nested-name-specifier: | 
| Chris Lattner | 77cf72a | 2009-06-26 03:47:46 +0000 | [diff] [blame] | 118 | //   nested-name-specifier 'template'[opt] simple-template-id '::' | 
|  | 119 |  | 
|  | 120 | // Parse the optional 'template' keyword, then make sure we have | 
|  | 121 | // 'identifier <' after it. | 
|  | 122 | if (Tok.is(tok::kw_template)) { | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 123 | // If we don't have a scope specifier or an object type, this isn't a | 
| Eli Friedman | eab975d | 2009-08-29 04:08:08 +0000 | [diff] [blame] | 124 | // nested-name-specifier, since they aren't allowed to start with | 
|  | 125 | // 'template'. | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 126 | if (!HasScopeSpecifier && !ObjectType) | 
| Eli Friedman | eab975d | 2009-08-29 04:08:08 +0000 | [diff] [blame] | 127 | break; | 
|  | 128 |  | 
| Douglas Gregor | 7bb87fc | 2009-11-11 16:39:34 +0000 | [diff] [blame] | 129 | TentativeParsingAction TPA(*this); | 
| Chris Lattner | 77cf72a | 2009-06-26 03:47:46 +0000 | [diff] [blame] | 130 | SourceLocation TemplateKWLoc = ConsumeToken(); | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 131 |  | 
|  | 132 | UnqualifiedId TemplateName; | 
|  | 133 | if (Tok.is(tok::identifier)) { | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 134 | // Consume the identifier. | 
| Douglas Gregor | 7bb87fc | 2009-11-11 16:39:34 +0000 | [diff] [blame] | 135 | TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation()); | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 136 | ConsumeToken(); | 
|  | 137 | } else if (Tok.is(tok::kw_operator)) { | 
|  | 138 | if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, | 
| Douglas Gregor | 7bb87fc | 2009-11-11 16:39:34 +0000 | [diff] [blame] | 139 | TemplateName)) { | 
|  | 140 | TPA.Commit(); | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 141 | break; | 
| Douglas Gregor | 7bb87fc | 2009-11-11 16:39:34 +0000 | [diff] [blame] | 142 | } | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 143 |  | 
| Sean Hunt | e6252d1 | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 144 | if (TemplateName.getKind() != UnqualifiedId::IK_OperatorFunctionId && | 
|  | 145 | TemplateName.getKind() != UnqualifiedId::IK_LiteralOperatorId) { | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 146 | Diag(TemplateName.getSourceRange().getBegin(), | 
|  | 147 | diag::err_id_after_template_in_nested_name_spec) | 
|  | 148 | << TemplateName.getSourceRange(); | 
| Douglas Gregor | 7bb87fc | 2009-11-11 16:39:34 +0000 | [diff] [blame] | 149 | TPA.Commit(); | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 150 | break; | 
|  | 151 | } | 
|  | 152 | } else { | 
| Douglas Gregor | 7bb87fc | 2009-11-11 16:39:34 +0000 | [diff] [blame] | 153 | TPA.Revert(); | 
| Chris Lattner | 77cf72a | 2009-06-26 03:47:46 +0000 | [diff] [blame] | 154 | break; | 
|  | 155 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 156 |  | 
| Douglas Gregor | 7bb87fc | 2009-11-11 16:39:34 +0000 | [diff] [blame] | 157 | // If the next token is not '<', we have a qualified-id that refers | 
|  | 158 | // to a template name, such as T::template apply, but is not a | 
|  | 159 | // template-id. | 
|  | 160 | if (Tok.isNot(tok::less)) { | 
|  | 161 | TPA.Revert(); | 
|  | 162 | break; | 
|  | 163 | } | 
|  | 164 |  | 
|  | 165 | // Commit to parsing the template-id. | 
|  | 166 | TPA.Commit(); | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 167 | TemplateTy Template; | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 168 | if (TemplateNameKind TNK = Actions.ActOnDependentTemplateName(getCurScope(), | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 169 | TemplateKWLoc, | 
|  | 170 | SS, | 
|  | 171 | TemplateName, | 
|  | 172 | ObjectType, | 
|  | 173 | EnteringContext, | 
|  | 174 | Template)) { | 
|  | 175 | if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName, | 
|  | 176 | TemplateKWLoc, false)) | 
|  | 177 | return true; | 
|  | 178 | } else | 
| John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 179 | return true; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 180 |  | 
| Chris Lattner | 77cf72a | 2009-06-26 03:47:46 +0000 | [diff] [blame] | 181 | continue; | 
|  | 182 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 183 |  | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 184 | if (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 185 | // We have | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 186 | // | 
|  | 187 | //   simple-template-id '::' | 
|  | 188 | // | 
|  | 189 | // So we need to check whether the simple-template-id is of the | 
| Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 190 | // right kind (it should name a type or be dependent), and then | 
|  | 191 | // convert it into a type within the nested-name-specifier. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 192 | TemplateIdAnnotation *TemplateId | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 193 | = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue()); | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 194 | if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) { | 
|  | 195 | *MayBePseudoDestructor = true; | 
| John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 196 | return false; | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 197 | } | 
|  | 198 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 199 | if (TemplateId->Kind == TNK_Type_template || | 
| Douglas Gregor | c45c232 | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 200 | TemplateId->Kind == TNK_Dependent_template_name) { | 
| Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 201 | AnnotateTemplateIdTokenAsType(&SS); | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 202 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 203 | assert(Tok.is(tok::annot_typename) && | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 204 | "AnnotateTemplateIdTokenAsType isn't working"); | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 205 | Token TypeToken = Tok; | 
|  | 206 | ConsumeToken(); | 
|  | 207 | assert(Tok.is(tok::coloncolon) && "NextToken() not working properly!"); | 
|  | 208 | SourceLocation CCLoc = ConsumeToken(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 209 |  | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 210 | if (!HasScopeSpecifier) { | 
|  | 211 | SS.setBeginLoc(TypeToken.getLocation()); | 
|  | 212 | HasScopeSpecifier = true; | 
|  | 213 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 214 |  | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 215 | if (ParsedType T = getTypeAnnotation(TypeToken)) { | 
|  | 216 | CXXScopeTy *Scope = | 
|  | 217 | Actions.ActOnCXXNestedNameSpecifier(getCurScope(), SS, T, | 
| Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 218 | TypeToken.getAnnotationRange(), | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 219 | CCLoc); | 
|  | 220 | SS.setScopeRep(Scope); | 
|  | 221 | } else | 
| Douglas Gregor | 31a19b6 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 222 | SS.setScopeRep(0); | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 223 | SS.setEndLoc(CCLoc); | 
|  | 224 | continue; | 
| Chris Lattner | 67b9e83 | 2009-06-26 03:45:46 +0000 | [diff] [blame] | 225 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 226 |  | 
| Chris Lattner | 67b9e83 | 2009-06-26 03:45:46 +0000 | [diff] [blame] | 227 | assert(false && "FIXME: Only type template names supported here"); | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 228 | } | 
|  | 229 |  | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 230 |  | 
|  | 231 | // The rest of the nested-name-specifier possibilities start with | 
|  | 232 | // tok::identifier. | 
|  | 233 | if (Tok.isNot(tok::identifier)) | 
|  | 234 | break; | 
|  | 235 |  | 
|  | 236 | IdentifierInfo &II = *Tok.getIdentifierInfo(); | 
|  | 237 |  | 
|  | 238 | // nested-name-specifier: | 
|  | 239 | //   type-name '::' | 
|  | 240 | //   namespace-name '::' | 
|  | 241 | //   nested-name-specifier identifier '::' | 
|  | 242 | Token Next = NextToken(); | 
| Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 243 |  | 
|  | 244 | // If we get foo:bar, this is almost certainly a typo for foo::bar.  Recover | 
|  | 245 | // and emit a fixit hint for it. | 
| Douglas Gregor | b10cd04 | 2010-02-21 18:36:56 +0000 | [diff] [blame] | 246 | if (Next.is(tok::colon) && !ColonIsSacred) { | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 247 | if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II, ObjectType, | 
| Douglas Gregor | b10cd04 | 2010-02-21 18:36:56 +0000 | [diff] [blame] | 248 | EnteringContext) && | 
|  | 249 | // If the token after the colon isn't an identifier, it's still an | 
|  | 250 | // error, but they probably meant something else strange so don't | 
|  | 251 | // recover like this. | 
|  | 252 | PP.LookAhead(1).is(tok::identifier)) { | 
|  | 253 | Diag(Next, diag::err_unexected_colon_in_nested_name_spec) | 
| Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 254 | << FixItHint::CreateReplacement(Next.getLocation(), "::"); | 
| Douglas Gregor | b10cd04 | 2010-02-21 18:36:56 +0000 | [diff] [blame] | 255 |  | 
|  | 256 | // Recover as if the user wrote '::'. | 
|  | 257 | Next.setKind(tok::coloncolon); | 
|  | 258 | } | 
| Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 259 | } | 
|  | 260 |  | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 261 | if (Next.is(tok::coloncolon)) { | 
| Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 262 | if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde) && | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 263 | !Actions.isNonTypeNestedNameSpecifier(getCurScope(), SS, Tok.getLocation(), | 
| Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 264 | II, ObjectType)) { | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 265 | *MayBePseudoDestructor = true; | 
| John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 266 | return false; | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 267 | } | 
|  | 268 |  | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 269 | // We have an identifier followed by a '::'. Lookup this name | 
|  | 270 | // as the name in a nested-name-specifier. | 
|  | 271 | SourceLocation IdLoc = ConsumeToken(); | 
| Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 272 | assert((Tok.is(tok::coloncolon) || Tok.is(tok::colon)) && | 
|  | 273 | "NextToken() not working properly!"); | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 274 | SourceLocation CCLoc = ConsumeToken(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 275 |  | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 276 | if (!HasScopeSpecifier) { | 
|  | 277 | SS.setBeginLoc(IdLoc); | 
|  | 278 | HasScopeSpecifier = true; | 
|  | 279 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 280 |  | 
| Argyrios Kyrtzidis | 661c36b | 2010-06-22 11:30:04 +0000 | [diff] [blame] | 281 | if (!SS.isInvalid()) | 
|  | 282 | SS.setScopeRep( | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 283 | Actions.ActOnCXXNestedNameSpecifier(getCurScope(), SS, IdLoc, CCLoc, II, | 
| Argyrios Kyrtzidis | 661c36b | 2010-06-22 11:30:04 +0000 | [diff] [blame] | 284 | ObjectType, EnteringContext)); | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 285 | SS.setEndLoc(CCLoc); | 
|  | 286 | continue; | 
|  | 287 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 288 |  | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 289 | // nested-name-specifier: | 
|  | 290 | //   type-name '<' | 
|  | 291 | if (Next.is(tok::less)) { | 
|  | 292 | TemplateTy Template; | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 293 | UnqualifiedId TemplateName; | 
|  | 294 | TemplateName.setIdentifier(&II, Tok.getLocation()); | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 295 | bool MemberOfUnknownSpecialization; | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 296 | if (TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS, | 
| Abramo Bagnara | 7c15353 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 297 | /*hasTemplateKeyword=*/false, | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 298 | TemplateName, | 
| Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 299 | ObjectType, | 
| Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 300 | EnteringContext, | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 301 | Template, | 
|  | 302 | MemberOfUnknownSpecialization)) { | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 303 | // We have found a template name, so annotate this this token | 
|  | 304 | // with a template-id annotation. We do not permit the | 
|  | 305 | // template-id to be translated into a type annotation, | 
|  | 306 | // because some clients (e.g., the parsing of class template | 
|  | 307 | // specializations) still want to see the original template-id | 
|  | 308 | // token. | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 309 | ConsumeToken(); | 
|  | 310 | if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName, | 
|  | 311 | SourceLocation(), false)) | 
| John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 312 | return true; | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 313 | continue; | 
| Douglas Gregor | d5ab9b0 | 2010-05-21 23:43:39 +0000 | [diff] [blame] | 314 | } | 
|  | 315 |  | 
|  | 316 | if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) && | 
|  | 317 | IsTemplateArgumentList(1)) { | 
|  | 318 | // We have something like t::getAs<T>, where getAs is a | 
|  | 319 | // member of an unknown specialization. However, this will only | 
|  | 320 | // parse correctly as a template, so suggest the keyword 'template' | 
|  | 321 | // before 'getAs' and treat this as a dependent template name. | 
|  | 322 | Diag(Tok.getLocation(), diag::err_missing_dependent_template_keyword) | 
|  | 323 | << II.getName() | 
|  | 324 | << FixItHint::CreateInsertion(Tok.getLocation(), "template "); | 
|  | 325 |  | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 326 | if (TemplateNameKind TNK | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 327 | = Actions.ActOnDependentTemplateName(getCurScope(), | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 328 | Tok.getLocation(), SS, | 
|  | 329 | TemplateName, ObjectType, | 
|  | 330 | EnteringContext, Template)) { | 
|  | 331 | // Consume the identifier. | 
|  | 332 | ConsumeToken(); | 
|  | 333 | if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName, | 
|  | 334 | SourceLocation(), false)) | 
|  | 335 | return true; | 
|  | 336 | } | 
|  | 337 | else | 
| Douglas Gregor | d5ab9b0 | 2010-05-21 23:43:39 +0000 | [diff] [blame] | 338 | return true; | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 339 |  | 
| Douglas Gregor | d5ab9b0 | 2010-05-21 23:43:39 +0000 | [diff] [blame] | 340 | continue; | 
| Chris Lattner | 5c7f786 | 2009-06-26 03:52:38 +0000 | [diff] [blame] | 341 | } | 
|  | 342 | } | 
|  | 343 |  | 
| Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 344 | // We don't have any tokens that form the beginning of a | 
|  | 345 | // nested-name-specifier, so we're done. | 
|  | 346 | break; | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 347 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 348 |  | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 349 | // Even if we didn't see any pieces of a nested-name-specifier, we | 
|  | 350 | // still check whether there is a tilde in this position, which | 
|  | 351 | // indicates a potential pseudo-destructor. | 
|  | 352 | if (CheckForDestructor && Tok.is(tok::tilde)) | 
|  | 353 | *MayBePseudoDestructor = true; | 
|  | 354 |  | 
| John McCall | 9ba6166 | 2010-02-26 08:45:28 +0000 | [diff] [blame] | 355 | return false; | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 356 | } | 
|  | 357 |  | 
|  | 358 | /// ParseCXXIdExpression - Handle id-expression. | 
|  | 359 | /// | 
|  | 360 | ///       id-expression: | 
|  | 361 | ///         unqualified-id | 
|  | 362 | ///         qualified-id | 
|  | 363 | /// | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 364 | ///       qualified-id: | 
|  | 365 | ///         '::'[opt] nested-name-specifier 'template'[opt] unqualified-id | 
|  | 366 | ///         '::' identifier | 
|  | 367 | ///         '::' operator-function-id | 
| Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 368 | ///         '::' template-id | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 369 | /// | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 370 | /// NOTE: The standard specifies that, for qualified-id, the parser does not | 
|  | 371 | /// expect: | 
|  | 372 | /// | 
|  | 373 | ///   '::' conversion-function-id | 
|  | 374 | ///   '::' '~' class-name | 
|  | 375 | /// | 
|  | 376 | /// This may cause a slight inconsistency on diagnostics: | 
|  | 377 | /// | 
|  | 378 | /// class C {}; | 
|  | 379 | /// namespace A {} | 
|  | 380 | /// void f() { | 
|  | 381 | ///   :: A :: ~ C(); // Some Sema error about using destructor with a | 
|  | 382 | ///                  // namespace. | 
|  | 383 | ///   :: ~ C(); // Some Parser error like 'unexpected ~'. | 
|  | 384 | /// } | 
|  | 385 | /// | 
|  | 386 | /// We simplify the parser a bit and make it work like: | 
|  | 387 | /// | 
|  | 388 | ///       qualified-id: | 
|  | 389 | ///         '::'[opt] nested-name-specifier 'template'[opt] unqualified-id | 
|  | 390 | ///         '::' unqualified-id | 
|  | 391 | /// | 
|  | 392 | /// That way Sema can handle and report similar errors for namespaces and the | 
|  | 393 | /// global scope. | 
|  | 394 | /// | 
| Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 395 | /// The isAddressOfOperand parameter indicates that this id-expression is a | 
|  | 396 | /// direct operand of the address-of operator. This is, besides member contexts, | 
|  | 397 | /// the only place where a qualified-id naming a non-static class member may | 
|  | 398 | /// appear. | 
|  | 399 | /// | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 400 | ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) { | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 401 | // qualified-id: | 
|  | 402 | //   '::'[opt] nested-name-specifier 'template'[opt] unqualified-id | 
|  | 403 | //   '::' unqualified-id | 
|  | 404 | // | 
|  | 405 | CXXScopeSpec SS; | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 406 | ParseOptionalCXXScopeSpecifier(SS, ParsedType(), false); | 
| Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 407 |  | 
|  | 408 | UnqualifiedId Name; | 
|  | 409 | if (ParseUnqualifiedId(SS, | 
|  | 410 | /*EnteringContext=*/false, | 
|  | 411 | /*AllowDestructorName=*/false, | 
|  | 412 | /*AllowConstructorName=*/false, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 413 | /*ObjectType=*/ ParsedType(), | 
| Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 414 | Name)) | 
|  | 415 | return ExprError(); | 
| John McCall | b681b61 | 2009-11-22 02:49:43 +0000 | [diff] [blame] | 416 |  | 
|  | 417 | // This is only the direct operand of an & operator if it is not | 
|  | 418 | // followed by a postfix-expression suffix. | 
| John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 419 | if (isAddressOfOperand && isPostfixExpressionSuffixStart()) | 
|  | 420 | isAddressOfOperand = false; | 
| Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 421 |  | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 422 | return Actions.ActOnIdExpression(getCurScope(), SS, Name, Tok.is(tok::l_paren), | 
| Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 423 | isAddressOfOperand); | 
|  | 424 |  | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 425 | } | 
|  | 426 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 427 | /// ParseCXXCasts - This handles the various ways to cast expressions to another | 
|  | 428 | /// type. | 
|  | 429 | /// | 
|  | 430 | ///       postfix-expression: [C++ 5.2p1] | 
|  | 431 | ///         'dynamic_cast' '<' type-name '>' '(' expression ')' | 
|  | 432 | ///         'static_cast' '<' type-name '>' '(' expression ')' | 
|  | 433 | ///         'reinterpret_cast' '<' type-name '>' '(' expression ')' | 
|  | 434 | ///         'const_cast' '<' type-name '>' '(' expression ')' | 
|  | 435 | /// | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 436 | ExprResult Parser::ParseCXXCasts() { | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 437 | tok::TokenKind Kind = Tok.getKind(); | 
|  | 438 | const char *CastName = 0;     // For error messages | 
|  | 439 |  | 
|  | 440 | switch (Kind) { | 
|  | 441 | default: assert(0 && "Unknown C++ cast!"); abort(); | 
|  | 442 | case tok::kw_const_cast:       CastName = "const_cast";       break; | 
|  | 443 | case tok::kw_dynamic_cast:     CastName = "dynamic_cast";     break; | 
|  | 444 | case tok::kw_reinterpret_cast: CastName = "reinterpret_cast"; break; | 
|  | 445 | case tok::kw_static_cast:      CastName = "static_cast";      break; | 
|  | 446 | } | 
|  | 447 |  | 
|  | 448 | SourceLocation OpLoc = ConsumeToken(); | 
|  | 449 | SourceLocation LAngleBracketLoc = Tok.getLocation(); | 
|  | 450 |  | 
|  | 451 | if (ExpectAndConsume(tok::less, diag::err_expected_less_after, CastName)) | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 452 | return ExprError(); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 453 |  | 
| Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 454 | TypeResult CastTy = ParseTypeName(); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 455 | SourceLocation RAngleBracketLoc = Tok.getLocation(); | 
|  | 456 |  | 
| Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 457 | if (ExpectAndConsume(tok::greater, diag::err_expected_greater)) | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 458 | return ExprError(Diag(LAngleBracketLoc, diag::note_matching) << "<"); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 459 |  | 
|  | 460 | SourceLocation LParenLoc = Tok.getLocation(), RParenLoc; | 
|  | 461 |  | 
| Argyrios Kyrtzidis | 21e7ad2 | 2009-05-22 10:23:16 +0000 | [diff] [blame] | 462 | if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, CastName)) | 
|  | 463 | return ExprError(); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 464 |  | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 465 | ExprResult Result = ParseExpression(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 466 |  | 
| Argyrios Kyrtzidis | 21e7ad2 | 2009-05-22 10:23:16 +0000 | [diff] [blame] | 467 | // Match the ')'. | 
| Douglas Gregor | 27591ff | 2009-11-06 05:48:00 +0000 | [diff] [blame] | 468 | RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 469 |  | 
| Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 470 | if (!Result.isInvalid() && !CastTy.isInvalid()) | 
| Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 471 | Result = Actions.ActOnCXXNamedCast(OpLoc, Kind, | 
| Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 472 | LAngleBracketLoc, CastTy.get(), | 
| Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 473 | RAngleBracketLoc, | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 474 | LParenLoc, Result.take(), RParenLoc); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 475 |  | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 476 | return move(Result); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 477 | } | 
|  | 478 |  | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 479 | /// ParseCXXTypeid - This handles the C++ typeid expression. | 
|  | 480 | /// | 
|  | 481 | ///       postfix-expression: [C++ 5.2p1] | 
|  | 482 | ///         'typeid' '(' expression ')' | 
|  | 483 | ///         'typeid' '(' type-id ')' | 
|  | 484 | /// | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 485 | ExprResult Parser::ParseCXXTypeid() { | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 486 | assert(Tok.is(tok::kw_typeid) && "Not 'typeid'!"); | 
|  | 487 |  | 
|  | 488 | SourceLocation OpLoc = ConsumeToken(); | 
|  | 489 | SourceLocation LParenLoc = Tok.getLocation(); | 
|  | 490 | SourceLocation RParenLoc; | 
|  | 491 |  | 
|  | 492 | // typeid expressions are always parenthesized. | 
|  | 493 | if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, | 
|  | 494 | "typeid")) | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 495 | return ExprError(); | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 496 |  | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 497 | ExprResult Result; | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 498 |  | 
|  | 499 | if (isTypeIdInParens()) { | 
| Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 500 | TypeResult Ty = ParseTypeName(); | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 501 |  | 
|  | 502 | // Match the ')'. | 
|  | 503 | MatchRHSPunctuation(tok::r_paren, LParenLoc); | 
|  | 504 |  | 
| Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 505 | if (Ty.isInvalid()) | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 506 | return ExprError(); | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 507 |  | 
|  | 508 | Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 509 | Ty.get().getAsOpaquePtr(), RParenLoc); | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 510 | } else { | 
| Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 511 | // C++0x [expr.typeid]p3: | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 512 | //   When typeid is applied to an expression other than an lvalue of a | 
|  | 513 | //   polymorphic class type [...] The expression is an unevaluated | 
| Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 514 | //   operand (Clause 5). | 
|  | 515 | // | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 516 | // Note that we can't tell whether the expression is an lvalue of a | 
| Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 517 | // polymorphic class type until after we've parsed the expression, so | 
| Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 518 | // we the expression is potentially potentially evaluated. | 
|  | 519 | EnterExpressionEvaluationContext Unevaluated(Actions, | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 520 | Sema::PotentiallyPotentiallyEvaluated); | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 521 | Result = ParseExpression(); | 
|  | 522 |  | 
|  | 523 | // Match the ')'. | 
| Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 524 | if (Result.isInvalid()) | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 525 | SkipUntil(tok::r_paren); | 
|  | 526 | else { | 
|  | 527 | MatchRHSPunctuation(tok::r_paren, LParenLoc); | 
|  | 528 |  | 
|  | 529 | Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false, | 
| Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 530 | Result.release(), RParenLoc); | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 531 | } | 
|  | 532 | } | 
|  | 533 |  | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 534 | return move(Result); | 
| Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 535 | } | 
|  | 536 |  | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 537 | /// \brief Parse a C++ pseudo-destructor expression after the base, | 
|  | 538 | /// . or -> operator, and nested-name-specifier have already been | 
|  | 539 | /// parsed. | 
|  | 540 | /// | 
|  | 541 | ///       postfix-expression: [C++ 5.2] | 
|  | 542 | ///         postfix-expression . pseudo-destructor-name | 
|  | 543 | ///         postfix-expression -> pseudo-destructor-name | 
|  | 544 | /// | 
|  | 545 | ///       pseudo-destructor-name: | 
|  | 546 | ///         ::[opt] nested-name-specifier[opt] type-name :: ~type-name | 
|  | 547 | ///         ::[opt] nested-name-specifier template simple-template-id :: | 
|  | 548 | ///                 ~type-name | 
|  | 549 | ///         ::[opt] nested-name-specifier[opt] ~type-name | 
|  | 550 | /// | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 551 | ExprResult | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 552 | Parser::ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc, | 
|  | 553 | tok::TokenKind OpKind, | 
|  | 554 | CXXScopeSpec &SS, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 555 | ParsedType ObjectType) { | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 556 | // We're parsing either a pseudo-destructor-name or a dependent | 
|  | 557 | // member access that has the same form as a | 
|  | 558 | // pseudo-destructor-name. We parse both in the same way and let | 
|  | 559 | // the action model sort them out. | 
|  | 560 | // | 
|  | 561 | // Note that the ::[opt] nested-name-specifier[opt] has already | 
|  | 562 | // been parsed, and if there was a simple-template-id, it has | 
|  | 563 | // been coalesced into a template-id annotation token. | 
|  | 564 | UnqualifiedId FirstTypeName; | 
|  | 565 | SourceLocation CCLoc; | 
|  | 566 | if (Tok.is(tok::identifier)) { | 
|  | 567 | FirstTypeName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation()); | 
|  | 568 | ConsumeToken(); | 
|  | 569 | assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail"); | 
|  | 570 | CCLoc = ConsumeToken(); | 
|  | 571 | } else if (Tok.is(tok::annot_template_id)) { | 
|  | 572 | FirstTypeName.setTemplateId( | 
|  | 573 | (TemplateIdAnnotation *)Tok.getAnnotationValue()); | 
|  | 574 | ConsumeToken(); | 
|  | 575 | assert(Tok.is(tok::coloncolon) &&"ParseOptionalCXXScopeSpecifier fail"); | 
|  | 576 | CCLoc = ConsumeToken(); | 
|  | 577 | } else { | 
|  | 578 | FirstTypeName.setIdentifier(0, SourceLocation()); | 
|  | 579 | } | 
|  | 580 |  | 
|  | 581 | // Parse the tilde. | 
|  | 582 | assert(Tok.is(tok::tilde) && "ParseOptionalCXXScopeSpecifier fail"); | 
|  | 583 | SourceLocation TildeLoc = ConsumeToken(); | 
|  | 584 | if (!Tok.is(tok::identifier)) { | 
|  | 585 | Diag(Tok, diag::err_destructor_tilde_identifier); | 
|  | 586 | return ExprError(); | 
|  | 587 | } | 
|  | 588 |  | 
|  | 589 | // Parse the second type. | 
|  | 590 | UnqualifiedId SecondTypeName; | 
|  | 591 | IdentifierInfo *Name = Tok.getIdentifierInfo(); | 
|  | 592 | SourceLocation NameLoc = ConsumeToken(); | 
|  | 593 | SecondTypeName.setIdentifier(Name, NameLoc); | 
|  | 594 |  | 
|  | 595 | // If there is a '<', the second type name is a template-id. Parse | 
|  | 596 | // it as such. | 
|  | 597 | if (Tok.is(tok::less) && | 
|  | 598 | ParseUnqualifiedIdTemplateId(SS, Name, NameLoc, false, ObjectType, | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 599 | SecondTypeName, /*AssumeTemplateName=*/true, | 
|  | 600 | /*TemplateKWLoc*/SourceLocation())) | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 601 | return ExprError(); | 
|  | 602 |  | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 603 | return Actions.ActOnPseudoDestructorExpr(getCurScope(), Base, | 
|  | 604 | OpLoc, OpKind, | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 605 | SS, FirstTypeName, CCLoc, | 
|  | 606 | TildeLoc, SecondTypeName, | 
|  | 607 | Tok.is(tok::l_paren)); | 
|  | 608 | } | 
|  | 609 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 610 | /// ParseCXXBoolLiteral - This handles the C++ Boolean literals. | 
|  | 611 | /// | 
|  | 612 | ///       boolean-literal: [C++ 2.13.5] | 
|  | 613 | ///         'true' | 
|  | 614 | ///         'false' | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 615 | ExprResult Parser::ParseCXXBoolLiteral() { | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 616 | tok::TokenKind Kind = Tok.getKind(); | 
| Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 617 | return Actions.ActOnCXXBoolLiteral(ConsumeToken(), Kind); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 618 | } | 
| Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 619 |  | 
|  | 620 | /// ParseThrowExpression - This handles the C++ throw expression. | 
|  | 621 | /// | 
|  | 622 | ///       throw-expression: [C++ 15] | 
|  | 623 | ///         'throw' assignment-expression[opt] | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 624 | ExprResult Parser::ParseThrowExpression() { | 
| Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 625 | assert(Tok.is(tok::kw_throw) && "Not throw!"); | 
| Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 626 | SourceLocation ThrowLoc = ConsumeToken();           // Eat the throw token. | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 627 |  | 
| Chris Lattner | 2a2819a | 2008-04-06 06:02:23 +0000 | [diff] [blame] | 628 | // If the current token isn't the start of an assignment-expression, | 
|  | 629 | // then the expression is not present.  This handles things like: | 
|  | 630 | //   "C ? throw : (void)42", which is crazy but legal. | 
|  | 631 | switch (Tok.getKind()) {  // FIXME: move this predicate somewhere common. | 
|  | 632 | case tok::semi: | 
|  | 633 | case tok::r_paren: | 
|  | 634 | case tok::r_square: | 
|  | 635 | case tok::r_brace: | 
|  | 636 | case tok::colon: | 
|  | 637 | case tok::comma: | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 638 | return Actions.ActOnCXXThrow(ThrowLoc, 0); | 
| Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 639 |  | 
| Chris Lattner | 2a2819a | 2008-04-06 06:02:23 +0000 | [diff] [blame] | 640 | default: | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 641 | ExprResult Expr(ParseAssignmentExpression()); | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 642 | if (Expr.isInvalid()) return move(Expr); | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 643 | return Actions.ActOnCXXThrow(ThrowLoc, Expr.take()); | 
| Chris Lattner | 2a2819a | 2008-04-06 06:02:23 +0000 | [diff] [blame] | 644 | } | 
| Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 645 | } | 
| Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 646 |  | 
|  | 647 | /// ParseCXXThis - This handles the C++ 'this' pointer. | 
|  | 648 | /// | 
|  | 649 | /// C++ 9.3.2: In the body of a non-static member function, the keyword this is | 
|  | 650 | /// a non-lvalue expression whose value is the address of the object for which | 
|  | 651 | /// the function is called. | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 652 | ExprResult Parser::ParseCXXThis() { | 
| Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 653 | assert(Tok.is(tok::kw_this) && "Not 'this'!"); | 
|  | 654 | SourceLocation ThisLoc = ConsumeToken(); | 
| Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 655 | return Actions.ActOnCXXThis(ThisLoc); | 
| Argyrios Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 656 | } | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 657 |  | 
|  | 658 | /// ParseCXXTypeConstructExpression - Parse construction of a specified type. | 
|  | 659 | /// Can be interpreted either as function-style casting ("int(x)") | 
|  | 660 | /// or class type construction ("ClassType(x,y,z)") | 
|  | 661 | /// or creation of a value-initialized type ("int()"). | 
|  | 662 | /// | 
|  | 663 | ///       postfix-expression: [C++ 5.2p1] | 
|  | 664 | ///         simple-type-specifier '(' expression-list[opt] ')'      [C++ 5.2.3] | 
|  | 665 | ///         typename-specifier '(' expression-list[opt] ')'         [TODO] | 
|  | 666 | /// | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 667 | ExprResult | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 668 | Parser::ParseCXXTypeConstructExpression(const DeclSpec &DS) { | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 669 | Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 670 | ParsedType TypeRep = Actions.ActOnTypeName(getCurScope(), DeclaratorInfo).get(); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 671 |  | 
|  | 672 | assert(Tok.is(tok::l_paren) && "Expected '('!"); | 
|  | 673 | SourceLocation LParenLoc = ConsumeParen(); | 
|  | 674 |  | 
| Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 675 | ExprVector Exprs(Actions); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 676 | CommaLocsTy CommaLocs; | 
|  | 677 |  | 
|  | 678 | if (Tok.isNot(tok::r_paren)) { | 
|  | 679 | if (ParseExpressionList(Exprs, CommaLocs)) { | 
|  | 680 | SkipUntil(tok::r_paren); | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 681 | return ExprError(); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 682 | } | 
|  | 683 | } | 
|  | 684 |  | 
|  | 685 | // Match the ')'. | 
|  | 686 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc); | 
|  | 687 |  | 
| Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 688 | // TypeRep could be null, if it references an invalid typedef. | 
|  | 689 | if (!TypeRep) | 
|  | 690 | return ExprError(); | 
|  | 691 |  | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 692 | assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&& | 
|  | 693 | "Unexpected number of commas!"); | 
| Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame^] | 694 | return Actions.ActOnCXXTypeConstructExpr(TypeRep, LParenLoc, move_arg(Exprs), | 
| Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 695 | CommaLocs.data(), RParenLoc); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 696 | } | 
|  | 697 |  | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 698 | /// ParseCXXCondition - if/switch/while condition expression. | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 699 | /// | 
|  | 700 | ///       condition: | 
|  | 701 | ///         expression | 
|  | 702 | ///         type-specifier-seq declarator '=' assignment-expression | 
|  | 703 | /// [GNU]   type-specifier-seq declarator simple-asm-expr[opt] attributes[opt] | 
|  | 704 | ///             '=' assignment-expression | 
|  | 705 | /// | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 706 | /// \param ExprResult if the condition was parsed as an expression, the | 
|  | 707 | /// parsed expression. | 
|  | 708 | /// | 
|  | 709 | /// \param DeclResult if the condition was parsed as a declaration, the | 
|  | 710 | /// parsed declaration. | 
|  | 711 | /// | 
| Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 712 | /// \param Loc The location of the start of the statement that requires this | 
|  | 713 | /// condition, e.g., the "for" in a for loop. | 
|  | 714 | /// | 
|  | 715 | /// \param ConvertToBoolean Whether the condition expression should be | 
|  | 716 | /// converted to a boolean value. | 
|  | 717 | /// | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 718 | /// \returns true if there was a parsing, false otherwise. | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 719 | bool Parser::ParseCXXCondition(ExprResult &ExprOut, | 
|  | 720 | Decl *&DeclOut, | 
| Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 721 | SourceLocation Loc, | 
|  | 722 | bool ConvertToBoolean) { | 
| Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 723 | if (Tok.is(tok::code_completion)) { | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 724 | Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Condition); | 
| Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 725 | ConsumeCodeCompletionToken(); | 
| Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 726 | } | 
|  | 727 |  | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 728 | if (!isCXXConditionDeclaration()) { | 
| Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 729 | // Parse the expression. | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 730 | ExprOut = ParseExpression(); // expression | 
|  | 731 | DeclOut = 0; | 
|  | 732 | if (ExprOut.isInvalid()) | 
| Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 733 | return true; | 
|  | 734 |  | 
|  | 735 | // If required, convert to a boolean value. | 
|  | 736 | if (ConvertToBoolean) | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 737 | ExprOut | 
|  | 738 | = Actions.ActOnBooleanCondition(getCurScope(), Loc, ExprOut.get()); | 
|  | 739 | return ExprOut.isInvalid(); | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 740 | } | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 741 |  | 
|  | 742 | // type-specifier-seq | 
|  | 743 | DeclSpec DS; | 
|  | 744 | ParseSpecifierQualifierList(DS); | 
|  | 745 |  | 
|  | 746 | // declarator | 
|  | 747 | Declarator DeclaratorInfo(DS, Declarator::ConditionContext); | 
|  | 748 | ParseDeclarator(DeclaratorInfo); | 
|  | 749 |  | 
|  | 750 | // simple-asm-expr[opt] | 
|  | 751 | if (Tok.is(tok::kw_asm)) { | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 752 | SourceLocation Loc; | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 753 | ExprResult AsmLabel(ParseSimpleAsm(&Loc)); | 
| Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 754 | if (AsmLabel.isInvalid()) { | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 755 | SkipUntil(tok::semi); | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 756 | return true; | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 757 | } | 
| Sebastian Redl | effa8d1 | 2008-12-10 00:02:53 +0000 | [diff] [blame] | 758 | DeclaratorInfo.setAsmLabel(AsmLabel.release()); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 759 | DeclaratorInfo.SetRangeEnd(Loc); | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 760 | } | 
|  | 761 |  | 
|  | 762 | // If attributes are present, parse them. | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 763 | if (Tok.is(tok::kw___attribute)) { | 
|  | 764 | SourceLocation Loc; | 
| Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 765 | AttributeList *AttrList = ParseGNUAttributes(&Loc); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 766 | DeclaratorInfo.AddAttributes(AttrList, Loc); | 
|  | 767 | } | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 768 |  | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 769 | // Type-check the declaration itself. | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 770 | DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(), | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 771 | DeclaratorInfo); | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 772 | DeclOut = Dcl.get(); | 
|  | 773 | ExprOut = ExprError(); | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 774 |  | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 775 | // '=' assignment-expression | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 776 | if (Tok.is(tok::equal)) { | 
|  | 777 | SourceLocation EqualLoc = ConsumeToken(); | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 778 | ExprResult AssignExpr(ParseAssignmentExpression()); | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 779 | if (!AssignExpr.isInvalid()) | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 780 | Actions.AddInitializerToDecl(DeclOut, AssignExpr.take()); | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 781 | } else { | 
|  | 782 | // FIXME: C++0x allows a braced-init-list | 
|  | 783 | Diag(Tok, diag::err_expected_equal_after_declarator); | 
|  | 784 | } | 
|  | 785 |  | 
| Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 786 | // FIXME: Build a reference to this declaration? Convert it to bool? | 
|  | 787 | // (This is currently handled by Sema). | 
|  | 788 |  | 
| Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 789 | return false; | 
| Argyrios Kyrtzidis | 71b914b | 2008-09-09 20:38:47 +0000 | [diff] [blame] | 790 | } | 
|  | 791 |  | 
| Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 792 | /// \brief Determine whether the current token starts a C++ | 
|  | 793 | /// simple-type-specifier. | 
|  | 794 | bool Parser::isCXXSimpleTypeSpecifier() const { | 
|  | 795 | switch (Tok.getKind()) { | 
|  | 796 | case tok::annot_typename: | 
|  | 797 | case tok::kw_short: | 
|  | 798 | case tok::kw_long: | 
|  | 799 | case tok::kw_signed: | 
|  | 800 | case tok::kw_unsigned: | 
|  | 801 | case tok::kw_void: | 
|  | 802 | case tok::kw_char: | 
|  | 803 | case tok::kw_int: | 
|  | 804 | case tok::kw_float: | 
|  | 805 | case tok::kw_double: | 
|  | 806 | case tok::kw_wchar_t: | 
|  | 807 | case tok::kw_char16_t: | 
|  | 808 | case tok::kw_char32_t: | 
|  | 809 | case tok::kw_bool: | 
|  | 810 | // FIXME: C++0x decltype support. | 
|  | 811 | // GNU typeof support. | 
|  | 812 | case tok::kw_typeof: | 
|  | 813 | return true; | 
|  | 814 |  | 
|  | 815 | default: | 
|  | 816 | break; | 
|  | 817 | } | 
|  | 818 |  | 
|  | 819 | return false; | 
|  | 820 | } | 
|  | 821 |  | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 822 | /// ParseCXXSimpleTypeSpecifier - [C++ 7.1.5.2] Simple type specifiers. | 
|  | 823 | /// This should only be called when the current token is known to be part of | 
|  | 824 | /// simple-type-specifier. | 
|  | 825 | /// | 
|  | 826 | ///       simple-type-specifier: | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 827 | ///         '::'[opt] nested-name-specifier[opt] type-name | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 828 | ///         '::'[opt] nested-name-specifier 'template' simple-template-id [TODO] | 
|  | 829 | ///         char | 
|  | 830 | ///         wchar_t | 
|  | 831 | ///         bool | 
|  | 832 | ///         short | 
|  | 833 | ///         int | 
|  | 834 | ///         long | 
|  | 835 | ///         signed | 
|  | 836 | ///         unsigned | 
|  | 837 | ///         float | 
|  | 838 | ///         double | 
|  | 839 | ///         void | 
|  | 840 | /// [GNU]   typeof-specifier | 
|  | 841 | /// [C++0x] auto               [TODO] | 
|  | 842 | /// | 
|  | 843 | ///       type-name: | 
|  | 844 | ///         class-name | 
|  | 845 | ///         enum-name | 
|  | 846 | ///         typedef-name | 
|  | 847 | /// | 
|  | 848 | void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) { | 
|  | 849 | DS.SetRangeStart(Tok.getLocation()); | 
|  | 850 | const char *PrevSpec; | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 851 | unsigned DiagID; | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 852 | SourceLocation Loc = Tok.getLocation(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 853 |  | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 854 | switch (Tok.getKind()) { | 
| Chris Lattner | 55a7cef | 2009-01-05 00:13:00 +0000 | [diff] [blame] | 855 | case tok::identifier:   // foo::bar | 
|  | 856 | case tok::coloncolon:   // ::foo::bar | 
|  | 857 | assert(0 && "Annotation token should already be formed!"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 858 | default: | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 859 | assert(0 && "Not a simple-type-specifier token!"); | 
|  | 860 | abort(); | 
| Chris Lattner | 55a7cef | 2009-01-05 00:13:00 +0000 | [diff] [blame] | 861 |  | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 862 | // type-name | 
| Chris Lattner | b31757b | 2009-01-06 05:06:21 +0000 | [diff] [blame] | 863 | case tok::annot_typename: { | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 864 | DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 865 | getTypeAnnotation(Tok)); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 866 | break; | 
|  | 867 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 868 |  | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 869 | // builtin types | 
|  | 870 | case tok::kw_short: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 871 | DS.SetTypeSpecWidth(DeclSpec::TSW_short, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 872 | break; | 
|  | 873 | case tok::kw_long: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 874 | DS.SetTypeSpecWidth(DeclSpec::TSW_long, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 875 | break; | 
|  | 876 | case tok::kw_signed: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 877 | DS.SetTypeSpecSign(DeclSpec::TSS_signed, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 878 | break; | 
|  | 879 | case tok::kw_unsigned: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 880 | DS.SetTypeSpecSign(DeclSpec::TSS_unsigned, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 881 | break; | 
|  | 882 | case tok::kw_void: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 883 | DS.SetTypeSpecType(DeclSpec::TST_void, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 884 | break; | 
|  | 885 | case tok::kw_char: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 886 | DS.SetTypeSpecType(DeclSpec::TST_char, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 887 | break; | 
|  | 888 | case tok::kw_int: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 889 | DS.SetTypeSpecType(DeclSpec::TST_int, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 890 | break; | 
|  | 891 | case tok::kw_float: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 892 | DS.SetTypeSpecType(DeclSpec::TST_float, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 893 | break; | 
|  | 894 | case tok::kw_double: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 895 | DS.SetTypeSpecType(DeclSpec::TST_double, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 896 | break; | 
|  | 897 | case tok::kw_wchar_t: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 898 | DS.SetTypeSpecType(DeclSpec::TST_wchar, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 899 | break; | 
| Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 900 | case tok::kw_char16_t: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 901 | DS.SetTypeSpecType(DeclSpec::TST_char16, Loc, PrevSpec, DiagID); | 
| Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 902 | break; | 
|  | 903 | case tok::kw_char32_t: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 904 | DS.SetTypeSpecType(DeclSpec::TST_char32, Loc, PrevSpec, DiagID); | 
| Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 905 | break; | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 906 | case tok::kw_bool: | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 907 | DS.SetTypeSpecType(DeclSpec::TST_bool, Loc, PrevSpec, DiagID); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 908 | break; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 909 |  | 
| Douglas Gregor | 6aa14d8 | 2010-04-21 22:36:40 +0000 | [diff] [blame] | 910 | // FIXME: C++0x decltype support. | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 911 | // GNU typeof support. | 
|  | 912 | case tok::kw_typeof: | 
|  | 913 | ParseTypeofSpecifier(DS); | 
| Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 914 | DS.Finish(Diags, PP); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 915 | return; | 
|  | 916 | } | 
| Chris Lattner | b31757b | 2009-01-06 05:06:21 +0000 | [diff] [blame] | 917 | if (Tok.is(tok::annot_typename)) | 
| Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 918 | DS.SetRangeEnd(Tok.getAnnotationEndLoc()); | 
|  | 919 | else | 
|  | 920 | DS.SetRangeEnd(Tok.getLocation()); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 921 | ConsumeToken(); | 
| Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 922 | DS.Finish(Diags, PP); | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 923 | } | 
| Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 924 |  | 
| Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 925 | /// ParseCXXTypeSpecifierSeq - Parse a C++ type-specifier-seq (C++ | 
|  | 926 | /// [dcl.name]), which is a non-empty sequence of type-specifiers, | 
|  | 927 | /// e.g., "const short int". Note that the DeclSpec is *not* finished | 
|  | 928 | /// by parsing the type-specifier-seq, because these sequences are | 
|  | 929 | /// typically followed by some form of declarator. Returns true and | 
|  | 930 | /// emits diagnostics if this is not a type-specifier-seq, false | 
|  | 931 | /// otherwise. | 
|  | 932 | /// | 
|  | 933 | ///   type-specifier-seq: [C++ 8.1] | 
|  | 934 | ///     type-specifier type-specifier-seq[opt] | 
|  | 935 | /// | 
|  | 936 | bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) { | 
|  | 937 | DS.SetRangeStart(Tok.getLocation()); | 
|  | 938 | const char *PrevSpec = 0; | 
| John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 939 | unsigned DiagID; | 
|  | 940 | bool isInvalid = 0; | 
| Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 941 |  | 
|  | 942 | // Parse one or more of the type specifiers. | 
| Sebastian Redl | d9bafa7 | 2010-02-03 21:21:43 +0000 | [diff] [blame] | 943 | if (!ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID, | 
|  | 944 | ParsedTemplateInfo(), /*SuppressDeclarations*/true)) { | 
| Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 945 | Diag(Tok, diag::err_operator_missing_type_specifier); | 
| Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 946 | return true; | 
|  | 947 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 948 |  | 
| Sebastian Redl | d9bafa7 | 2010-02-03 21:21:43 +0000 | [diff] [blame] | 949 | while (ParseOptionalTypeSpecifier(DS, isInvalid, PrevSpec, DiagID, | 
|  | 950 | ParsedTemplateInfo(), /*SuppressDeclarations*/true)) | 
|  | 951 | {} | 
| Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 952 |  | 
| Douglas Gregor | 396a9f2 | 2010-02-24 23:13:13 +0000 | [diff] [blame] | 953 | DS.Finish(Diags, PP); | 
| Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 954 | return false; | 
|  | 955 | } | 
|  | 956 |  | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 957 | /// \brief Finish parsing a C++ unqualified-id that is a template-id of | 
|  | 958 | /// some form. | 
|  | 959 | /// | 
|  | 960 | /// This routine is invoked when a '<' is encountered after an identifier or | 
|  | 961 | /// operator-function-id is parsed by \c ParseUnqualifiedId() to determine | 
|  | 962 | /// whether the unqualified-id is actually a template-id. This routine will | 
|  | 963 | /// then parse the template arguments and form the appropriate template-id to | 
|  | 964 | /// return to the caller. | 
|  | 965 | /// | 
|  | 966 | /// \param SS the nested-name-specifier that precedes this template-id, if | 
|  | 967 | /// we're actually parsing a qualified-id. | 
|  | 968 | /// | 
|  | 969 | /// \param Name for constructor and destructor names, this is the actual | 
|  | 970 | /// identifier that may be a template-name. | 
|  | 971 | /// | 
|  | 972 | /// \param NameLoc the location of the class-name in a constructor or | 
|  | 973 | /// destructor. | 
|  | 974 | /// | 
|  | 975 | /// \param EnteringContext whether we're entering the scope of the | 
|  | 976 | /// nested-name-specifier. | 
|  | 977 | /// | 
| Douglas Gregor | 46df8cc | 2009-11-03 21:24:04 +0000 | [diff] [blame] | 978 | /// \param ObjectType if this unqualified-id occurs within a member access | 
|  | 979 | /// expression, the type of the base object whose member is being accessed. | 
|  | 980 | /// | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 981 | /// \param Id as input, describes the template-name or operator-function-id | 
|  | 982 | /// that precedes the '<'. If template arguments were parsed successfully, | 
|  | 983 | /// will be updated with the template-id. | 
|  | 984 | /// | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 985 | /// \param AssumeTemplateId When true, this routine will assume that the name | 
|  | 986 | /// refers to a template without performing name lookup to verify. | 
|  | 987 | /// | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 988 | /// \returns true if a parse error occurred, false otherwise. | 
|  | 989 | bool Parser::ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS, | 
|  | 990 | IdentifierInfo *Name, | 
|  | 991 | SourceLocation NameLoc, | 
|  | 992 | bool EnteringContext, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 993 | ParsedType ObjectType, | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 994 | UnqualifiedId &Id, | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 995 | bool AssumeTemplateId, | 
|  | 996 | SourceLocation TemplateKWLoc) { | 
|  | 997 | assert((AssumeTemplateId || Tok.is(tok::less)) && | 
|  | 998 | "Expected '<' to finish parsing a template-id"); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 999 |  | 
|  | 1000 | TemplateTy Template; | 
|  | 1001 | TemplateNameKind TNK = TNK_Non_template; | 
|  | 1002 | switch (Id.getKind()) { | 
|  | 1003 | case UnqualifiedId::IK_Identifier: | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1004 | case UnqualifiedId::IK_OperatorFunctionId: | 
| Sean Hunt | e6252d1 | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 1005 | case UnqualifiedId::IK_LiteralOperatorId: | 
| Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 1006 | if (AssumeTemplateId) { | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1007 | TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS, | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 1008 | Id, ObjectType, EnteringContext, | 
|  | 1009 | Template); | 
|  | 1010 | if (TNK == TNK_Non_template) | 
|  | 1011 | return true; | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1012 | } else { | 
|  | 1013 | bool MemberOfUnknownSpecialization; | 
| Abramo Bagnara | 7c15353 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 1014 | TNK = Actions.isTemplateName(getCurScope(), SS, | 
|  | 1015 | TemplateKWLoc.isValid(), Id, | 
|  | 1016 | ObjectType, EnteringContext, Template, | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1017 | MemberOfUnknownSpecialization); | 
|  | 1018 |  | 
|  | 1019 | if (TNK == TNK_Non_template && MemberOfUnknownSpecialization && | 
|  | 1020 | ObjectType && IsTemplateArgumentList()) { | 
|  | 1021 | // We have something like t->getAs<T>(), where getAs is a | 
|  | 1022 | // member of an unknown specialization. However, this will only | 
|  | 1023 | // parse correctly as a template, so suggest the keyword 'template' | 
|  | 1024 | // before 'getAs' and treat this as a dependent template name. | 
|  | 1025 | std::string Name; | 
|  | 1026 | if (Id.getKind() == UnqualifiedId::IK_Identifier) | 
|  | 1027 | Name = Id.Identifier->getName(); | 
|  | 1028 | else { | 
|  | 1029 | Name = "operator "; | 
|  | 1030 | if (Id.getKind() == UnqualifiedId::IK_OperatorFunctionId) | 
|  | 1031 | Name += getOperatorSpelling(Id.OperatorFunctionId.Operator); | 
|  | 1032 | else | 
|  | 1033 | Name += Id.Identifier->getName(); | 
|  | 1034 | } | 
|  | 1035 | Diag(Id.StartLocation, diag::err_missing_dependent_template_keyword) | 
|  | 1036 | << Name | 
|  | 1037 | << FixItHint::CreateInsertion(Id.StartLocation, "template "); | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1038 | TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 1039 | SS, Id, ObjectType, | 
|  | 1040 | EnteringContext, Template); | 
|  | 1041 | if (TNK == TNK_Non_template) | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1042 | return true; | 
|  | 1043 | } | 
|  | 1044 | } | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1045 | break; | 
|  | 1046 |  | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1047 | case UnqualifiedId::IK_ConstructorName: { | 
|  | 1048 | UnqualifiedId TemplateName; | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1049 | bool MemberOfUnknownSpecialization; | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1050 | TemplateName.setIdentifier(Name, NameLoc); | 
| Abramo Bagnara | 7c15353 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 1051 | TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(), | 
|  | 1052 | TemplateName, ObjectType, | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1053 | EnteringContext, Template, | 
|  | 1054 | MemberOfUnknownSpecialization); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1055 | break; | 
|  | 1056 | } | 
|  | 1057 |  | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1058 | case UnqualifiedId::IK_DestructorName: { | 
|  | 1059 | UnqualifiedId TemplateName; | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1060 | bool MemberOfUnknownSpecialization; | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1061 | TemplateName.setIdentifier(Name, NameLoc); | 
| Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1062 | if (ObjectType) { | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1063 | TNK = Actions.ActOnDependentTemplateName(getCurScope(), TemplateKWLoc, SS, | 
| Douglas Gregor | d6ab232 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 1064 | TemplateName, ObjectType, | 
|  | 1065 | EnteringContext, Template); | 
|  | 1066 | if (TNK == TNK_Non_template) | 
| Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1067 | return true; | 
|  | 1068 | } else { | 
| Abramo Bagnara | 7c15353 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 1069 | TNK = Actions.isTemplateName(getCurScope(), SS, TemplateKWLoc.isValid(), | 
|  | 1070 | TemplateName, ObjectType, | 
| Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1071 | EnteringContext, Template, | 
|  | 1072 | MemberOfUnknownSpecialization); | 
| Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1073 |  | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1074 | if (TNK == TNK_Non_template && !Id.DestructorName.get()) { | 
| Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 1075 | Diag(NameLoc, diag::err_destructor_template_id) | 
|  | 1076 | << Name << SS.getRange(); | 
| Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1077 | return true; | 
|  | 1078 | } | 
|  | 1079 | } | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1080 | break; | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1081 | } | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1082 |  | 
|  | 1083 | default: | 
|  | 1084 | return false; | 
|  | 1085 | } | 
|  | 1086 |  | 
|  | 1087 | if (TNK == TNK_Non_template) | 
|  | 1088 | return false; | 
|  | 1089 |  | 
|  | 1090 | // Parse the enclosed template argument list. | 
|  | 1091 | SourceLocation LAngleLoc, RAngleLoc; | 
|  | 1092 | TemplateArgList TemplateArgs; | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1093 | if (Tok.is(tok::less) && | 
|  | 1094 | ParseTemplateIdAfterTemplateName(Template, Id.StartLocation, | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1095 | &SS, true, LAngleLoc, | 
|  | 1096 | TemplateArgs, | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1097 | RAngleLoc)) | 
|  | 1098 | return true; | 
|  | 1099 |  | 
|  | 1100 | if (Id.getKind() == UnqualifiedId::IK_Identifier || | 
| Sean Hunt | e6252d1 | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 1101 | Id.getKind() == UnqualifiedId::IK_OperatorFunctionId || | 
|  | 1102 | Id.getKind() == UnqualifiedId::IK_LiteralOperatorId) { | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1103 | // Form a parsed representation of the template-id to be stored in the | 
|  | 1104 | // UnqualifiedId. | 
|  | 1105 | TemplateIdAnnotation *TemplateId | 
|  | 1106 | = TemplateIdAnnotation::Allocate(TemplateArgs.size()); | 
|  | 1107 |  | 
|  | 1108 | if (Id.getKind() == UnqualifiedId::IK_Identifier) { | 
|  | 1109 | TemplateId->Name = Id.Identifier; | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1110 | TemplateId->Operator = OO_None; | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1111 | TemplateId->TemplateNameLoc = Id.StartLocation; | 
|  | 1112 | } else { | 
| Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 1113 | TemplateId->Name = 0; | 
|  | 1114 | TemplateId->Operator = Id.OperatorFunctionId.Operator; | 
|  | 1115 | TemplateId->TemplateNameLoc = Id.StartLocation; | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1116 | } | 
|  | 1117 |  | 
| John McCall | 2b5289b | 2010-08-23 07:28:44 +0000 | [diff] [blame] | 1118 | TemplateId->Template = Template; | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1119 | TemplateId->Kind = TNK; | 
|  | 1120 | TemplateId->LAngleLoc = LAngleLoc; | 
|  | 1121 | TemplateId->RAngleLoc = RAngleLoc; | 
| Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1122 | ParsedTemplateArgument *Args = TemplateId->getTemplateArgs(); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1123 | for (unsigned Arg = 0, ArgEnd = TemplateArgs.size(); | 
| Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 1124 | Arg != ArgEnd; ++Arg) | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1125 | Args[Arg] = TemplateArgs[Arg]; | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1126 |  | 
|  | 1127 | Id.setTemplateId(TemplateId); | 
|  | 1128 | return false; | 
|  | 1129 | } | 
|  | 1130 |  | 
|  | 1131 | // Bundle the template arguments together. | 
|  | 1132 | ASTTemplateArgsPtr TemplateArgsPtr(Actions, TemplateArgs.data(), | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1133 | TemplateArgs.size()); | 
|  | 1134 |  | 
|  | 1135 | // Constructor and destructor names. | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1136 | TypeResult Type | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1137 | = Actions.ActOnTemplateIdType(Template, NameLoc, | 
|  | 1138 | LAngleLoc, TemplateArgsPtr, | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1139 | RAngleLoc); | 
|  | 1140 | if (Type.isInvalid()) | 
|  | 1141 | return true; | 
|  | 1142 |  | 
|  | 1143 | if (Id.getKind() == UnqualifiedId::IK_ConstructorName) | 
|  | 1144 | Id.setConstructorName(Type.get(), NameLoc, RAngleLoc); | 
|  | 1145 | else | 
|  | 1146 | Id.setDestructorName(Id.StartLocation, Type.get(), RAngleLoc); | 
|  | 1147 |  | 
|  | 1148 | return false; | 
|  | 1149 | } | 
|  | 1150 |  | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1151 | /// \brief Parse an operator-function-id or conversion-function-id as part | 
|  | 1152 | /// of a C++ unqualified-id. | 
|  | 1153 | /// | 
|  | 1154 | /// This routine is responsible only for parsing the operator-function-id or | 
|  | 1155 | /// conversion-function-id; it does not handle template arguments in any way. | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1156 | /// | 
|  | 1157 | /// \code | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1158 | ///       operator-function-id: [C++ 13.5] | 
|  | 1159 | ///         'operator' operator | 
|  | 1160 | /// | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1161 | ///       operator: one of | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1162 | ///            new   delete  new[]   delete[] | 
|  | 1163 | ///            +     -    *  /    %  ^    &   |   ~ | 
|  | 1164 | ///            !     =    <  >    += -=   *=  /=  %= | 
|  | 1165 | ///            ^=    &=   |= <<   >> >>= <<=  ==  != | 
|  | 1166 | ///            <=    >=   && ||   ++ --   ,   ->* -> | 
|  | 1167 | ///            ()    [] | 
|  | 1168 | /// | 
|  | 1169 | ///       conversion-function-id: [C++ 12.3.2] | 
|  | 1170 | ///         operator conversion-type-id | 
|  | 1171 | /// | 
|  | 1172 | ///       conversion-type-id: | 
|  | 1173 | ///         type-specifier-seq conversion-declarator[opt] | 
|  | 1174 | /// | 
|  | 1175 | ///       conversion-declarator: | 
|  | 1176 | ///         ptr-operator conversion-declarator[opt] | 
|  | 1177 | /// \endcode | 
|  | 1178 | /// | 
|  | 1179 | /// \param The nested-name-specifier that preceded this unqualified-id. If | 
|  | 1180 | /// non-empty, then we are parsing the unqualified-id of a qualified-id. | 
|  | 1181 | /// | 
|  | 1182 | /// \param EnteringContext whether we are entering the scope of the | 
|  | 1183 | /// nested-name-specifier. | 
|  | 1184 | /// | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1185 | /// \param ObjectType if this unqualified-id occurs within a member access | 
|  | 1186 | /// expression, the type of the base object whose member is being accessed. | 
|  | 1187 | /// | 
|  | 1188 | /// \param Result on a successful parse, contains the parsed unqualified-id. | 
|  | 1189 | /// | 
|  | 1190 | /// \returns true if parsing fails, false otherwise. | 
|  | 1191 | bool Parser::ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1192 | ParsedType ObjectType, | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1193 | UnqualifiedId &Result) { | 
|  | 1194 | assert(Tok.is(tok::kw_operator) && "Expected 'operator' keyword"); | 
|  | 1195 |  | 
|  | 1196 | // Consume the 'operator' keyword. | 
|  | 1197 | SourceLocation KeywordLoc = ConsumeToken(); | 
|  | 1198 |  | 
|  | 1199 | // Determine what kind of operator name we have. | 
|  | 1200 | unsigned SymbolIdx = 0; | 
|  | 1201 | SourceLocation SymbolLocations[3]; | 
|  | 1202 | OverloadedOperatorKind Op = OO_None; | 
|  | 1203 | switch (Tok.getKind()) { | 
|  | 1204 | case tok::kw_new: | 
|  | 1205 | case tok::kw_delete: { | 
|  | 1206 | bool isNew = Tok.getKind() == tok::kw_new; | 
|  | 1207 | // Consume the 'new' or 'delete'. | 
|  | 1208 | SymbolLocations[SymbolIdx++] = ConsumeToken(); | 
|  | 1209 | if (Tok.is(tok::l_square)) { | 
|  | 1210 | // Consume the '['. | 
|  | 1211 | SourceLocation LBracketLoc = ConsumeBracket(); | 
|  | 1212 | // Consume the ']'. | 
|  | 1213 | SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square, | 
|  | 1214 | LBracketLoc); | 
|  | 1215 | if (RBracketLoc.isInvalid()) | 
|  | 1216 | return true; | 
|  | 1217 |  | 
|  | 1218 | SymbolLocations[SymbolIdx++] = LBracketLoc; | 
|  | 1219 | SymbolLocations[SymbolIdx++] = RBracketLoc; | 
|  | 1220 | Op = isNew? OO_Array_New : OO_Array_Delete; | 
|  | 1221 | } else { | 
|  | 1222 | Op = isNew? OO_New : OO_Delete; | 
|  | 1223 | } | 
|  | 1224 | break; | 
|  | 1225 | } | 
|  | 1226 |  | 
|  | 1227 | #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ | 
|  | 1228 | case tok::Token:                                                     \ | 
|  | 1229 | SymbolLocations[SymbolIdx++] = ConsumeToken();                     \ | 
|  | 1230 | Op = OO_##Name;                                                    \ | 
|  | 1231 | break; | 
|  | 1232 | #define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly) | 
|  | 1233 | #include "clang/Basic/OperatorKinds.def" | 
|  | 1234 |  | 
|  | 1235 | case tok::l_paren: { | 
|  | 1236 | // Consume the '('. | 
|  | 1237 | SourceLocation LParenLoc = ConsumeParen(); | 
|  | 1238 | // Consume the ')'. | 
|  | 1239 | SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, | 
|  | 1240 | LParenLoc); | 
|  | 1241 | if (RParenLoc.isInvalid()) | 
|  | 1242 | return true; | 
|  | 1243 |  | 
|  | 1244 | SymbolLocations[SymbolIdx++] = LParenLoc; | 
|  | 1245 | SymbolLocations[SymbolIdx++] = RParenLoc; | 
|  | 1246 | Op = OO_Call; | 
|  | 1247 | break; | 
|  | 1248 | } | 
|  | 1249 |  | 
|  | 1250 | case tok::l_square: { | 
|  | 1251 | // Consume the '['. | 
|  | 1252 | SourceLocation LBracketLoc = ConsumeBracket(); | 
|  | 1253 | // Consume the ']'. | 
|  | 1254 | SourceLocation RBracketLoc = MatchRHSPunctuation(tok::r_square, | 
|  | 1255 | LBracketLoc); | 
|  | 1256 | if (RBracketLoc.isInvalid()) | 
|  | 1257 | return true; | 
|  | 1258 |  | 
|  | 1259 | SymbolLocations[SymbolIdx++] = LBracketLoc; | 
|  | 1260 | SymbolLocations[SymbolIdx++] = RBracketLoc; | 
|  | 1261 | Op = OO_Subscript; | 
|  | 1262 | break; | 
|  | 1263 | } | 
|  | 1264 |  | 
|  | 1265 | case tok::code_completion: { | 
|  | 1266 | // Code completion for the operator name. | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1267 | Actions.CodeCompleteOperatorName(getCurScope()); | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1268 |  | 
|  | 1269 | // Consume the operator token. | 
| Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 1270 | ConsumeCodeCompletionToken(); | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1271 |  | 
|  | 1272 | // Don't try to parse any further. | 
|  | 1273 | return true; | 
|  | 1274 | } | 
|  | 1275 |  | 
|  | 1276 | default: | 
|  | 1277 | break; | 
|  | 1278 | } | 
|  | 1279 |  | 
|  | 1280 | if (Op != OO_None) { | 
|  | 1281 | // We have parsed an operator-function-id. | 
|  | 1282 | Result.setOperatorFunctionId(KeywordLoc, Op, SymbolLocations); | 
|  | 1283 | return false; | 
|  | 1284 | } | 
| Sean Hunt | 0486d74 | 2009-11-28 04:44:28 +0000 | [diff] [blame] | 1285 |  | 
|  | 1286 | // Parse a literal-operator-id. | 
|  | 1287 | // | 
|  | 1288 | //   literal-operator-id: [C++0x 13.5.8] | 
|  | 1289 | //     operator "" identifier | 
|  | 1290 |  | 
|  | 1291 | if (getLang().CPlusPlus0x && Tok.is(tok::string_literal)) { | 
|  | 1292 | if (Tok.getLength() != 2) | 
|  | 1293 | Diag(Tok.getLocation(), diag::err_operator_string_not_empty); | 
|  | 1294 | ConsumeStringToken(); | 
|  | 1295 |  | 
|  | 1296 | if (Tok.isNot(tok::identifier)) { | 
|  | 1297 | Diag(Tok.getLocation(), diag::err_expected_ident); | 
|  | 1298 | return true; | 
|  | 1299 | } | 
|  | 1300 |  | 
|  | 1301 | IdentifierInfo *II = Tok.getIdentifierInfo(); | 
|  | 1302 | Result.setLiteralOperatorId(II, KeywordLoc, ConsumeToken()); | 
| Sean Hunt | 3e518bd | 2009-11-29 07:34:05 +0000 | [diff] [blame] | 1303 | return false; | 
| Sean Hunt | 0486d74 | 2009-11-28 04:44:28 +0000 | [diff] [blame] | 1304 | } | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1305 |  | 
|  | 1306 | // Parse a conversion-function-id. | 
|  | 1307 | // | 
|  | 1308 | //   conversion-function-id: [C++ 12.3.2] | 
|  | 1309 | //     operator conversion-type-id | 
|  | 1310 | // | 
|  | 1311 | //   conversion-type-id: | 
|  | 1312 | //     type-specifier-seq conversion-declarator[opt] | 
|  | 1313 | // | 
|  | 1314 | //   conversion-declarator: | 
|  | 1315 | //     ptr-operator conversion-declarator[opt] | 
|  | 1316 |  | 
|  | 1317 | // Parse the type-specifier-seq. | 
|  | 1318 | DeclSpec DS; | 
| Douglas Gregor | f6e6fc8 | 2009-11-20 22:03:38 +0000 | [diff] [blame] | 1319 | if (ParseCXXTypeSpecifierSeq(DS)) // FIXME: ObjectType? | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1320 | return true; | 
|  | 1321 |  | 
|  | 1322 | // Parse the conversion-declarator, which is merely a sequence of | 
|  | 1323 | // ptr-operators. | 
|  | 1324 | Declarator D(DS, Declarator::TypeNameContext); | 
|  | 1325 | ParseDeclaratorInternal(D, /*DirectDeclParser=*/0); | 
|  | 1326 |  | 
|  | 1327 | // Finish up the type. | 
| John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1328 | TypeResult Ty = Actions.ActOnTypeName(getCurScope(), D); | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1329 | if (Ty.isInvalid()) | 
|  | 1330 | return true; | 
|  | 1331 |  | 
|  | 1332 | // Note that this is a conversion-function-id. | 
|  | 1333 | Result.setConversionFunctionId(KeywordLoc, Ty.get(), | 
|  | 1334 | D.getSourceRange().getEnd()); | 
|  | 1335 | return false; | 
|  | 1336 | } | 
|  | 1337 |  | 
|  | 1338 | /// \brief Parse a C++ unqualified-id (or a C identifier), which describes the | 
|  | 1339 | /// name of an entity. | 
|  | 1340 | /// | 
|  | 1341 | /// \code | 
|  | 1342 | ///       unqualified-id: [C++ expr.prim.general] | 
|  | 1343 | ///         identifier | 
|  | 1344 | ///         operator-function-id | 
|  | 1345 | ///         conversion-function-id | 
|  | 1346 | /// [C++0x] literal-operator-id [TODO] | 
|  | 1347 | ///         ~ class-name | 
|  | 1348 | ///         template-id | 
|  | 1349 | /// | 
|  | 1350 | /// \endcode | 
|  | 1351 | /// | 
|  | 1352 | /// \param The nested-name-specifier that preceded this unqualified-id. If | 
|  | 1353 | /// non-empty, then we are parsing the unqualified-id of a qualified-id. | 
|  | 1354 | /// | 
|  | 1355 | /// \param EnteringContext whether we are entering the scope of the | 
|  | 1356 | /// nested-name-specifier. | 
|  | 1357 | /// | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1358 | /// \param AllowDestructorName whether we allow parsing of a destructor name. | 
|  | 1359 | /// | 
|  | 1360 | /// \param AllowConstructorName whether we allow parsing a constructor name. | 
|  | 1361 | /// | 
| Douglas Gregor | 46df8cc | 2009-11-03 21:24:04 +0000 | [diff] [blame] | 1362 | /// \param ObjectType if this unqualified-id occurs within a member access | 
|  | 1363 | /// expression, the type of the base object whose member is being accessed. | 
|  | 1364 | /// | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1365 | /// \param Result on a successful parse, contains the parsed unqualified-id. | 
|  | 1366 | /// | 
|  | 1367 | /// \returns true if parsing fails, false otherwise. | 
|  | 1368 | bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext, | 
|  | 1369 | bool AllowDestructorName, | 
|  | 1370 | bool AllowConstructorName, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1371 | ParsedType ObjectType, | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1372 | UnqualifiedId &Result) { | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1373 |  | 
|  | 1374 | // Handle 'A::template B'. This is for template-ids which have not | 
|  | 1375 | // already been annotated by ParseOptionalCXXScopeSpecifier(). | 
|  | 1376 | bool TemplateSpecified = false; | 
|  | 1377 | SourceLocation TemplateKWLoc; | 
|  | 1378 | if (getLang().CPlusPlus && Tok.is(tok::kw_template) && | 
|  | 1379 | (ObjectType || SS.isSet())) { | 
|  | 1380 | TemplateSpecified = true; | 
|  | 1381 | TemplateKWLoc = ConsumeToken(); | 
|  | 1382 | } | 
|  | 1383 |  | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1384 | // unqualified-id: | 
|  | 1385 | //   identifier | 
|  | 1386 | //   template-id (when it hasn't already been annotated) | 
|  | 1387 | if (Tok.is(tok::identifier)) { | 
|  | 1388 | // Consume the identifier. | 
|  | 1389 | IdentifierInfo *Id = Tok.getIdentifierInfo(); | 
|  | 1390 | SourceLocation IdLoc = ConsumeToken(); | 
|  | 1391 |  | 
| Douglas Gregor | b862b8f | 2010-01-11 23:29:10 +0000 | [diff] [blame] | 1392 | if (!getLang().CPlusPlus) { | 
|  | 1393 | // If we're not in C++, only identifiers matter. Record the | 
|  | 1394 | // identifier and return. | 
|  | 1395 | Result.setIdentifier(Id, IdLoc); | 
|  | 1396 | return false; | 
|  | 1397 | } | 
|  | 1398 |  | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1399 | if (AllowConstructorName && | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1400 | Actions.isCurrentClassName(*Id, getCurScope(), &SS)) { | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1401 | // We have parsed a constructor name. | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1402 | Result.setConstructorName(Actions.getTypeName(*Id, IdLoc, getCurScope(), | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1403 | &SS, false), | 
|  | 1404 | IdLoc, IdLoc); | 
|  | 1405 | } else { | 
|  | 1406 | // We have parsed an identifier. | 
|  | 1407 | Result.setIdentifier(Id, IdLoc); | 
|  | 1408 | } | 
|  | 1409 |  | 
|  | 1410 | // If the next token is a '<', we may have a template. | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1411 | if (TemplateSpecified || Tok.is(tok::less)) | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1412 | return ParseUnqualifiedIdTemplateId(SS, Id, IdLoc, EnteringContext, | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1413 | ObjectType, Result, | 
|  | 1414 | TemplateSpecified, TemplateKWLoc); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1415 |  | 
|  | 1416 | return false; | 
|  | 1417 | } | 
|  | 1418 |  | 
|  | 1419 | // unqualified-id: | 
|  | 1420 | //   template-id (already parsed and annotated) | 
|  | 1421 | if (Tok.is(tok::annot_template_id)) { | 
| Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1422 | TemplateIdAnnotation *TemplateId | 
|  | 1423 | = static_cast<TemplateIdAnnotation*>(Tok.getAnnotationValue()); | 
|  | 1424 |  | 
|  | 1425 | // If the template-name names the current class, then this is a constructor | 
|  | 1426 | if (AllowConstructorName && TemplateId->Name && | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1427 | Actions.isCurrentClassName(*TemplateId->Name, getCurScope(), &SS)) { | 
| Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1428 | if (SS.isSet()) { | 
|  | 1429 | // C++ [class.qual]p2 specifies that a qualified template-name | 
|  | 1430 | // is taken as the constructor name where a constructor can be | 
|  | 1431 | // declared. Thus, the template arguments are extraneous, so | 
|  | 1432 | // complain about them and remove them entirely. | 
|  | 1433 | Diag(TemplateId->TemplateNameLoc, | 
|  | 1434 | diag::err_out_of_line_constructor_template_id) | 
|  | 1435 | << TemplateId->Name | 
| Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1436 | << FixItHint::CreateRemoval( | 
| Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1437 | SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc)); | 
|  | 1438 | Result.setConstructorName(Actions.getTypeName(*TemplateId->Name, | 
|  | 1439 | TemplateId->TemplateNameLoc, | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1440 | getCurScope(), | 
| Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1441 | &SS, false), | 
|  | 1442 | TemplateId->TemplateNameLoc, | 
|  | 1443 | TemplateId->RAngleLoc); | 
|  | 1444 | TemplateId->Destroy(); | 
|  | 1445 | ConsumeToken(); | 
|  | 1446 | return false; | 
|  | 1447 | } | 
|  | 1448 |  | 
|  | 1449 | Result.setConstructorTemplateId(TemplateId); | 
|  | 1450 | ConsumeToken(); | 
|  | 1451 | return false; | 
|  | 1452 | } | 
|  | 1453 |  | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1454 | // We have already parsed a template-id; consume the annotation token as | 
|  | 1455 | // our unqualified-id. | 
| Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 1456 | Result.setTemplateId(TemplateId); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1457 | ConsumeToken(); | 
|  | 1458 | return false; | 
|  | 1459 | } | 
|  | 1460 |  | 
|  | 1461 | // unqualified-id: | 
|  | 1462 | //   operator-function-id | 
|  | 1463 | //   conversion-function-id | 
|  | 1464 | if (Tok.is(tok::kw_operator)) { | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1465 | if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, Result)) | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1466 | return true; | 
|  | 1467 |  | 
| Sean Hunt | e6252d1 | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 1468 | // If we have an operator-function-id or a literal-operator-id and the next | 
|  | 1469 | // token is a '<', we may have a | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1470 | // | 
|  | 1471 | //   template-id: | 
|  | 1472 | //     operator-function-id < template-argument-list[opt] > | 
| Sean Hunt | e6252d1 | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 1473 | if ((Result.getKind() == UnqualifiedId::IK_OperatorFunctionId || | 
|  | 1474 | Result.getKind() == UnqualifiedId::IK_LiteralOperatorId) && | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1475 | (TemplateSpecified || Tok.is(tok::less))) | 
| Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 1476 | return ParseUnqualifiedIdTemplateId(SS, 0, SourceLocation(), | 
|  | 1477 | EnteringContext, ObjectType, | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1478 | Result, | 
|  | 1479 | TemplateSpecified, TemplateKWLoc); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1480 |  | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1481 | return false; | 
|  | 1482 | } | 
|  | 1483 |  | 
| Douglas Gregor | b862b8f | 2010-01-11 23:29:10 +0000 | [diff] [blame] | 1484 | if (getLang().CPlusPlus && | 
|  | 1485 | (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) { | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1486 | // C++ [expr.unary.op]p10: | 
|  | 1487 | //   There is an ambiguity in the unary-expression ~X(), where X is a | 
|  | 1488 | //   class-name. The ambiguity is resolved in favor of treating ~ as a | 
|  | 1489 | //    unary complement rather than treating ~X as referring to a destructor. | 
|  | 1490 |  | 
|  | 1491 | // Parse the '~'. | 
|  | 1492 | SourceLocation TildeLoc = ConsumeToken(); | 
|  | 1493 |  | 
|  | 1494 | // Parse the class-name. | 
|  | 1495 | if (Tok.isNot(tok::identifier)) { | 
| Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 1496 | Diag(Tok, diag::err_destructor_tilde_identifier); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1497 | return true; | 
|  | 1498 | } | 
|  | 1499 |  | 
|  | 1500 | // Parse the class-name (or template-name in a simple-template-id). | 
|  | 1501 | IdentifierInfo *ClassName = Tok.getIdentifierInfo(); | 
|  | 1502 | SourceLocation ClassNameLoc = ConsumeToken(); | 
|  | 1503 |  | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1504 | if (TemplateSpecified || Tok.is(tok::less)) { | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1505 | Result.setDestructorName(TildeLoc, ParsedType(), ClassNameLoc); | 
| Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1506 | return ParseUnqualifiedIdTemplateId(SS, ClassName, ClassNameLoc, | 
| Douglas Gregor | 0278e12 | 2010-05-05 05:58:24 +0000 | [diff] [blame] | 1507 | EnteringContext, ObjectType, Result, | 
|  | 1508 | TemplateSpecified, TemplateKWLoc); | 
| Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1509 | } | 
|  | 1510 |  | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1511 | // Note that this is a destructor name. | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1512 | ParsedType Ty = Actions.getDestructorName(TildeLoc, *ClassName, | 
|  | 1513 | ClassNameLoc, getCurScope(), | 
|  | 1514 | SS, ObjectType, | 
|  | 1515 | EnteringContext); | 
| Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 1516 | if (!Ty) | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1517 | return true; | 
| Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 1518 |  | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1519 | Result.setDestructorName(TildeLoc, Ty, ClassNameLoc); | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1520 | return false; | 
|  | 1521 | } | 
|  | 1522 |  | 
| Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 1523 | Diag(Tok, diag::err_expected_unqualified_id) | 
|  | 1524 | << getLang().CPlusPlus; | 
| Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 1525 | return true; | 
|  | 1526 | } | 
|  | 1527 |  | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1528 | /// ParseCXXNewExpression - Parse a C++ new-expression. New is used to allocate | 
|  | 1529 | /// memory in a typesafe manner and call constructors. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1530 | /// | 
| Chris Lattner | 59232d3 | 2009-01-04 21:25:24 +0000 | [diff] [blame] | 1531 | /// This method is called to parse the new expression after the optional :: has | 
|  | 1532 | /// been already parsed.  If the :: was present, "UseGlobal" is true and "Start" | 
|  | 1533 | /// is its location.  Otherwise, "Start" is the location of the 'new' token. | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1534 | /// | 
|  | 1535 | ///        new-expression: | 
|  | 1536 | ///                   '::'[opt] 'new' new-placement[opt] new-type-id | 
|  | 1537 | ///                                     new-initializer[opt] | 
|  | 1538 | ///                   '::'[opt] 'new' new-placement[opt] '(' type-id ')' | 
|  | 1539 | ///                                     new-initializer[opt] | 
|  | 1540 | /// | 
|  | 1541 | ///        new-placement: | 
|  | 1542 | ///                   '(' expression-list ')' | 
|  | 1543 | /// | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1544 | ///        new-type-id: | 
|  | 1545 | ///                   type-specifier-seq new-declarator[opt] | 
|  | 1546 | /// | 
|  | 1547 | ///        new-declarator: | 
|  | 1548 | ///                   ptr-operator new-declarator[opt] | 
|  | 1549 | ///                   direct-new-declarator | 
|  | 1550 | /// | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1551 | ///        new-initializer: | 
|  | 1552 | ///                   '(' expression-list[opt] ')' | 
|  | 1553 | /// [C++0x]           braced-init-list                                   [TODO] | 
|  | 1554 | /// | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1555 | ExprResult | 
| Chris Lattner | 59232d3 | 2009-01-04 21:25:24 +0000 | [diff] [blame] | 1556 | Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { | 
|  | 1557 | assert(Tok.is(tok::kw_new) && "expected 'new' token"); | 
|  | 1558 | ConsumeToken();   // Consume 'new' | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1559 |  | 
|  | 1560 | // A '(' now can be a new-placement or the '(' wrapping the type-id in the | 
|  | 1561 | // second form of new-expression. It can't be a new-type-id. | 
|  | 1562 |  | 
| Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 1563 | ExprVector PlacementArgs(Actions); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1564 | SourceLocation PlacementLParen, PlacementRParen; | 
|  | 1565 |  | 
| Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1566 | SourceRange TypeIdParens; | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1567 | DeclSpec DS; | 
|  | 1568 | Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1569 | if (Tok.is(tok::l_paren)) { | 
|  | 1570 | // If it turns out to be a placement, we change the type location. | 
|  | 1571 | PlacementLParen = ConsumeParen(); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1572 | if (ParseExpressionListOrTypeId(PlacementArgs, DeclaratorInfo)) { | 
|  | 1573 | SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true); | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 1574 | return ExprError(); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1575 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1576 |  | 
|  | 1577 | PlacementRParen = MatchRHSPunctuation(tok::r_paren, PlacementLParen); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1578 | if (PlacementRParen.isInvalid()) { | 
|  | 1579 | SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true); | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 1580 | return ExprError(); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1581 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1582 |  | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1583 | if (PlacementArgs.empty()) { | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1584 | // Reset the placement locations. There was no placement. | 
| Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1585 | TypeIdParens = SourceRange(PlacementLParen, PlacementRParen); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1586 | PlacementLParen = PlacementRParen = SourceLocation(); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1587 | } else { | 
|  | 1588 | // We still need the type. | 
|  | 1589 | if (Tok.is(tok::l_paren)) { | 
| Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1590 | TypeIdParens.setBegin(ConsumeParen()); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1591 | ParseSpecifierQualifierList(DS); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1592 | DeclaratorInfo.SetSourceRange(DS.getSourceRange()); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1593 | ParseDeclarator(DeclaratorInfo); | 
| Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1594 | TypeIdParens.setEnd(MatchRHSPunctuation(tok::r_paren, | 
|  | 1595 | TypeIdParens.getBegin())); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1596 | } else { | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1597 | if (ParseCXXTypeSpecifierSeq(DS)) | 
|  | 1598 | DeclaratorInfo.setInvalidType(true); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1599 | else { | 
|  | 1600 | DeclaratorInfo.SetSourceRange(DS.getSourceRange()); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1601 | ParseDeclaratorInternal(DeclaratorInfo, | 
|  | 1602 | &Parser::ParseDirectNewDeclarator); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1603 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1604 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1605 | } | 
|  | 1606 | } else { | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1607 | // A new-type-id is a simplified type-id, where essentially the | 
|  | 1608 | // direct-declarator is replaced by a direct-new-declarator. | 
|  | 1609 | if (ParseCXXTypeSpecifierSeq(DS)) | 
|  | 1610 | DeclaratorInfo.setInvalidType(true); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1611 | else { | 
|  | 1612 | DeclaratorInfo.SetSourceRange(DS.getSourceRange()); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1613 | ParseDeclaratorInternal(DeclaratorInfo, | 
|  | 1614 | &Parser::ParseDirectNewDeclarator); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1615 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1616 | } | 
| Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 1617 | if (DeclaratorInfo.isInvalidType()) { | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1618 | SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true); | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 1619 | return ExprError(); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1620 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1621 |  | 
| Sebastian Redl | a55e52c | 2008-11-25 22:21:31 +0000 | [diff] [blame] | 1622 | ExprVector ConstructorArgs(Actions); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1623 | SourceLocation ConstructorLParen, ConstructorRParen; | 
|  | 1624 |  | 
|  | 1625 | if (Tok.is(tok::l_paren)) { | 
|  | 1626 | ConstructorLParen = ConsumeParen(); | 
|  | 1627 | if (Tok.isNot(tok::r_paren)) { | 
|  | 1628 | CommaLocsTy CommaLocs; | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1629 | if (ParseExpressionList(ConstructorArgs, CommaLocs)) { | 
|  | 1630 | SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true); | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 1631 | return ExprError(); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1632 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1633 | } | 
|  | 1634 | ConstructorRParen = MatchRHSPunctuation(tok::r_paren, ConstructorLParen); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1635 | if (ConstructorRParen.isInvalid()) { | 
|  | 1636 | SkipUntil(tok::semi, /*StopAtSemi=*/true, /*DontConsume=*/true); | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 1637 | return ExprError(); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1638 | } | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1639 | } | 
|  | 1640 |  | 
| Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1641 | return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, | 
|  | 1642 | move_arg(PlacementArgs), PlacementRParen, | 
| Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1643 | TypeIdParens, DeclaratorInfo, ConstructorLParen, | 
| Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1644 | move_arg(ConstructorArgs), ConstructorRParen); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1645 | } | 
|  | 1646 |  | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1647 | /// ParseDirectNewDeclarator - Parses a direct-new-declarator. Intended to be | 
|  | 1648 | /// passed to ParseDeclaratorInternal. | 
|  | 1649 | /// | 
|  | 1650 | ///        direct-new-declarator: | 
|  | 1651 | ///                   '[' expression ']' | 
|  | 1652 | ///                   direct-new-declarator '[' constant-expression ']' | 
|  | 1653 | /// | 
| Chris Lattner | 59232d3 | 2009-01-04 21:25:24 +0000 | [diff] [blame] | 1654 | void Parser::ParseDirectNewDeclarator(Declarator &D) { | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1655 | // Parse the array dimensions. | 
|  | 1656 | bool first = true; | 
|  | 1657 | while (Tok.is(tok::l_square)) { | 
|  | 1658 | SourceLocation LLoc = ConsumeBracket(); | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1659 | ExprResult Size(first ? ParseExpression() | 
| Sebastian Redl | 2f7ece7 | 2008-12-11 21:36:32 +0000 | [diff] [blame] | 1660 | : ParseConstantExpression()); | 
| Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1661 | if (Size.isInvalid()) { | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1662 | // Recover | 
|  | 1663 | SkipUntil(tok::r_square); | 
|  | 1664 | return; | 
|  | 1665 | } | 
|  | 1666 | first = false; | 
|  | 1667 |  | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1668 | SourceLocation RLoc = MatchRHSPunctuation(tok::r_square, LLoc); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1669 | D.AddTypeInfo(DeclaratorChunk::getArray(0, /*static=*/false, /*star=*/false, | 
| Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 1670 | Size.release(), LLoc, RLoc), | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1671 | RLoc); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1672 |  | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1673 | if (RLoc.isInvalid()) | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1674 | return; | 
|  | 1675 | } | 
|  | 1676 | } | 
|  | 1677 |  | 
|  | 1678 | /// ParseExpressionListOrTypeId - Parse either an expression-list or a type-id. | 
|  | 1679 | /// This ambiguity appears in the syntax of the C++ new operator. | 
|  | 1680 | /// | 
|  | 1681 | ///        new-expression: | 
|  | 1682 | ///                   '::'[opt] 'new' new-placement[opt] '(' type-id ')' | 
|  | 1683 | ///                                     new-initializer[opt] | 
|  | 1684 | /// | 
|  | 1685 | ///        new-placement: | 
|  | 1686 | ///                   '(' expression-list ')' | 
|  | 1687 | /// | 
| John McCall | ca0408f | 2010-08-23 06:44:23 +0000 | [diff] [blame] | 1688 | bool Parser::ParseExpressionListOrTypeId( | 
|  | 1689 | llvm::SmallVectorImpl<Expr*> &PlacementArgs, | 
| Chris Lattner | 59232d3 | 2009-01-04 21:25:24 +0000 | [diff] [blame] | 1690 | Declarator &D) { | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1691 | // The '(' was already consumed. | 
|  | 1692 | if (isTypeIdInParens()) { | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1693 | ParseSpecifierQualifierList(D.getMutableDeclSpec()); | 
| Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 1694 | D.SetSourceRange(D.getDeclSpec().getSourceRange()); | 
| Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1695 | ParseDeclarator(D); | 
| Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 1696 | return D.isInvalidType(); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1697 | } | 
|  | 1698 |  | 
|  | 1699 | // It's not a type, it has to be an expression list. | 
|  | 1700 | // Discard the comma locations - ActOnCXXNew has enough parameters. | 
|  | 1701 | CommaLocsTy CommaLocs; | 
|  | 1702 | return ParseExpressionList(PlacementArgs, CommaLocs); | 
|  | 1703 | } | 
|  | 1704 |  | 
|  | 1705 | /// ParseCXXDeleteExpression - Parse a C++ delete-expression. Delete is used | 
|  | 1706 | /// to free memory allocated by new. | 
|  | 1707 | /// | 
| Chris Lattner | 59232d3 | 2009-01-04 21:25:24 +0000 | [diff] [blame] | 1708 | /// This method is called to parse the 'delete' expression after the optional | 
|  | 1709 | /// '::' has been already parsed.  If the '::' was present, "UseGlobal" is true | 
|  | 1710 | /// and "Start" is its location.  Otherwise, "Start" is the location of the | 
|  | 1711 | /// 'delete' token. | 
|  | 1712 | /// | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1713 | ///        delete-expression: | 
|  | 1714 | ///                   '::'[opt] 'delete' cast-expression | 
|  | 1715 | ///                   '::'[opt] 'delete' '[' ']' cast-expression | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1716 | ExprResult | 
| Chris Lattner | 59232d3 | 2009-01-04 21:25:24 +0000 | [diff] [blame] | 1717 | Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { | 
|  | 1718 | assert(Tok.is(tok::kw_delete) && "Expected 'delete' keyword"); | 
|  | 1719 | ConsumeToken(); // Consume 'delete' | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1720 |  | 
|  | 1721 | // Array delete? | 
|  | 1722 | bool ArrayDelete = false; | 
|  | 1723 | if (Tok.is(tok::l_square)) { | 
|  | 1724 | ArrayDelete = true; | 
|  | 1725 | SourceLocation LHS = ConsumeBracket(); | 
|  | 1726 | SourceLocation RHS = MatchRHSPunctuation(tok::r_square, LHS); | 
|  | 1727 | if (RHS.isInvalid()) | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 1728 | return ExprError(); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1729 | } | 
|  | 1730 |  | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1731 | ExprResult Operand(ParseCastExpression(false)); | 
| Sebastian Redl | 0e9eabc | 2008-12-09 13:15:23 +0000 | [diff] [blame] | 1732 | if (Operand.isInvalid()) | 
| Sebastian Redl | 20df9b7 | 2008-12-11 22:51:44 +0000 | [diff] [blame] | 1733 | return move(Operand); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1734 |  | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1735 | return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take()); | 
| Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1736 | } | 
| Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1737 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1738 | static UnaryTypeTrait UnaryTypeTraitFromTokKind(tok::TokenKind kind) { | 
| Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1739 | switch(kind) { | 
|  | 1740 | default: assert(false && "Not a known unary type trait."); | 
|  | 1741 | case tok::kw___has_nothrow_assign:      return UTT_HasNothrowAssign; | 
|  | 1742 | case tok::kw___has_nothrow_copy:        return UTT_HasNothrowCopy; | 
|  | 1743 | case tok::kw___has_nothrow_constructor: return UTT_HasNothrowConstructor; | 
|  | 1744 | case tok::kw___has_trivial_assign:      return UTT_HasTrivialAssign; | 
|  | 1745 | case tok::kw___has_trivial_copy:        return UTT_HasTrivialCopy; | 
|  | 1746 | case tok::kw___has_trivial_constructor: return UTT_HasTrivialConstructor; | 
|  | 1747 | case tok::kw___has_trivial_destructor:  return UTT_HasTrivialDestructor; | 
|  | 1748 | case tok::kw___has_virtual_destructor:  return UTT_HasVirtualDestructor; | 
|  | 1749 | case tok::kw___is_abstract:             return UTT_IsAbstract; | 
|  | 1750 | case tok::kw___is_class:                return UTT_IsClass; | 
|  | 1751 | case tok::kw___is_empty:                return UTT_IsEmpty; | 
|  | 1752 | case tok::kw___is_enum:                 return UTT_IsEnum; | 
|  | 1753 | case tok::kw___is_pod:                  return UTT_IsPOD; | 
|  | 1754 | case tok::kw___is_polymorphic:          return UTT_IsPolymorphic; | 
|  | 1755 | case tok::kw___is_union:                return UTT_IsUnion; | 
| Sebastian Redl | ccf4350 | 2009-12-03 00:13:20 +0000 | [diff] [blame] | 1756 | case tok::kw___is_literal:              return UTT_IsLiteral; | 
| Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1757 | } | 
|  | 1758 | } | 
|  | 1759 |  | 
|  | 1760 | /// ParseUnaryTypeTrait - Parse the built-in unary type-trait | 
|  | 1761 | /// pseudo-functions that allow implementation of the TR1/C++0x type traits | 
|  | 1762 | /// templates. | 
|  | 1763 | /// | 
|  | 1764 | ///       primary-expression: | 
|  | 1765 | /// [GNU]             unary-type-trait '(' type-id ')' | 
|  | 1766 | /// | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1767 | ExprResult Parser::ParseUnaryTypeTrait() { | 
| Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1768 | UnaryTypeTrait UTT = UnaryTypeTraitFromTokKind(Tok.getKind()); | 
|  | 1769 | SourceLocation Loc = ConsumeToken(); | 
|  | 1770 |  | 
|  | 1771 | SourceLocation LParen = Tok.getLocation(); | 
|  | 1772 | if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen)) | 
|  | 1773 | return ExprError(); | 
|  | 1774 |  | 
|  | 1775 | // FIXME: Error reporting absolutely sucks! If the this fails to parse a type | 
|  | 1776 | // there will be cryptic errors about mismatched parentheses and missing | 
|  | 1777 | // specifiers. | 
| Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 1778 | TypeResult Ty = ParseTypeName(); | 
| Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1779 |  | 
|  | 1780 | SourceLocation RParen = MatchRHSPunctuation(tok::r_paren, LParen); | 
|  | 1781 |  | 
| Douglas Gregor | 809070a | 2009-02-18 17:45:20 +0000 | [diff] [blame] | 1782 | if (Ty.isInvalid()) | 
|  | 1783 | return ExprError(); | 
|  | 1784 |  | 
|  | 1785 | return Actions.ActOnUnaryTypeTrait(UTT, Loc, LParen, Ty.get(), RParen); | 
| Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 1786 | } | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1787 |  | 
|  | 1788 | /// ParseCXXAmbiguousParenExpression - We have parsed the left paren of a | 
|  | 1789 | /// parenthesized ambiguous type-id. This uses tentative parsing to disambiguate | 
|  | 1790 | /// based on the context past the parens. | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1791 | ExprResult | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1792 | Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1793 | ParsedType &CastTy, | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1794 | SourceLocation LParenLoc, | 
|  | 1795 | SourceLocation &RParenLoc) { | 
|  | 1796 | assert(getLang().CPlusPlus && "Should only be called for C++!"); | 
|  | 1797 | assert(ExprType == CastExpr && "Compound literals are not ambiguous!"); | 
|  | 1798 | assert(isTypeIdInParens() && "Not a type-id!"); | 
|  | 1799 |  | 
| John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1800 | ExprResult Result(true); | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1801 | CastTy = ParsedType(); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1802 |  | 
|  | 1803 | // We need to disambiguate a very ugly part of the C++ syntax: | 
|  | 1804 | // | 
|  | 1805 | // (T())x;  - type-id | 
|  | 1806 | // (T())*x; - type-id | 
|  | 1807 | // (T())/x; - expression | 
|  | 1808 | // (T());   - expression | 
|  | 1809 | // | 
|  | 1810 | // The bad news is that we cannot use the specialized tentative parser, since | 
|  | 1811 | // it can only verify that the thing inside the parens can be parsed as | 
|  | 1812 | // type-id, it is not useful for determining the context past the parens. | 
|  | 1813 | // | 
|  | 1814 | // The good news is that the parser can disambiguate this part without | 
| Argyrios Kyrtzidis | a558a89 | 2009-05-22 15:12:46 +0000 | [diff] [blame] | 1815 | // making any unnecessary Action calls. | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1816 | // | 
|  | 1817 | // It uses a scheme similar to parsing inline methods. The parenthesized | 
|  | 1818 | // tokens are cached, the context that follows is determined (possibly by | 
|  | 1819 | // parsing a cast-expression), and then we re-introduce the cached tokens | 
|  | 1820 | // into the token stream and parse them appropriately. | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1821 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1822 | ParenParseOption ParseAs; | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1823 | CachedTokens Toks; | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1824 |  | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1825 | // Store the tokens of the parentheses. We will parse them after we determine | 
|  | 1826 | // the context that follows them. | 
| Argyrios Kyrtzidis | 14b9162 | 2010-04-23 21:20:12 +0000 | [diff] [blame] | 1827 | if (!ConsumeAndStoreUntil(tok::r_paren, Toks)) { | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1828 | // We didn't find the ')' we expected. | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1829 | MatchRHSPunctuation(tok::r_paren, LParenLoc); | 
|  | 1830 | return ExprError(); | 
|  | 1831 | } | 
|  | 1832 |  | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1833 | if (Tok.is(tok::l_brace)) { | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1834 | ParseAs = CompoundLiteral; | 
|  | 1835 | } else { | 
|  | 1836 | bool NotCastExpr; | 
| Eli Friedman | b53f08a | 2009-05-25 19:41:42 +0000 | [diff] [blame] | 1837 | // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression | 
|  | 1838 | if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) { | 
|  | 1839 | NotCastExpr = true; | 
|  | 1840 | } else { | 
|  | 1841 | // Try parsing the cast-expression that may follow. | 
|  | 1842 | // If it is not a cast-expression, NotCastExpr will be true and no token | 
|  | 1843 | // will be consumed. | 
|  | 1844 | Result = ParseCastExpression(false/*isUnaryExpression*/, | 
|  | 1845 | false/*isAddressofOperand*/, | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1846 | NotCastExpr, | 
|  | 1847 | ParsedType()/*TypeOfCast*/); | 
| Eli Friedman | b53f08a | 2009-05-25 19:41:42 +0000 | [diff] [blame] | 1848 | } | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1849 |  | 
|  | 1850 | // If we parsed a cast-expression, it's really a type-id, otherwise it's | 
|  | 1851 | // an expression. | 
|  | 1852 | ParseAs = NotCastExpr ? SimpleExpr : CastExpr; | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1853 | } | 
|  | 1854 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1855 | // The current token should go after the cached tokens. | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1856 | Toks.push_back(Tok); | 
|  | 1857 | // Re-enter the stored parenthesized tokens into the token stream, so we may | 
|  | 1858 | // parse them now. | 
|  | 1859 | PP.EnterTokenStream(Toks.data(), Toks.size(), | 
|  | 1860 | true/*DisableMacroExpansion*/, false/*OwnsTokens*/); | 
|  | 1861 | // Drop the current token and bring the first cached one. It's the same token | 
|  | 1862 | // as when we entered this function. | 
|  | 1863 | ConsumeAnyToken(); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1864 |  | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1865 | if (ParseAs >= CompoundLiteral) { | 
|  | 1866 | TypeResult Ty = ParseTypeName(); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1867 |  | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1868 | // Match the ')'. | 
|  | 1869 | if (Tok.is(tok::r_paren)) | 
|  | 1870 | RParenLoc = ConsumeParen(); | 
|  | 1871 | else | 
|  | 1872 | MatchRHSPunctuation(tok::r_paren, LParenLoc); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1873 |  | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1874 | if (ParseAs == CompoundLiteral) { | 
|  | 1875 | ExprType = CompoundLiteral; | 
|  | 1876 | return ParseCompoundLiteralExpression(Ty.get(), LParenLoc, RParenLoc); | 
|  | 1877 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1878 |  | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1879 | // We parsed '(' type-id ')' and the thing after it wasn't a '{'. | 
|  | 1880 | assert(ParseAs == CastExpr); | 
|  | 1881 |  | 
|  | 1882 | if (Ty.isInvalid()) | 
|  | 1883 | return ExprError(); | 
|  | 1884 |  | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1885 | CastTy = Ty.get(); | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1886 |  | 
|  | 1887 | // Result is what ParseCastExpression returned earlier. | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1888 | if (!Result.isInvalid()) | 
| Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1889 | Result = Actions.ActOnCastExpr(getCurScope(), LParenLoc, CastTy, RParenLoc, | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1890 | Result.take()); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1891 | return move(Result); | 
|  | 1892 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1893 |  | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1894 | // Not a compound literal, and not followed by a cast-expression. | 
|  | 1895 | assert(ParseAs == SimpleExpr); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1896 |  | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1897 | ExprType = SimpleExpr; | 
| Argyrios Kyrtzidis | f40882a | 2009-05-22 21:09:47 +0000 | [diff] [blame] | 1898 | Result = ParseExpression(); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1899 | if (!Result.isInvalid() && Tok.is(tok::r_paren)) | 
| John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1900 | Result = Actions.ActOnParenExpr(LParenLoc, Tok.getLocation(), Result.take()); | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1901 |  | 
|  | 1902 | // Match the ')'. | 
|  | 1903 | if (Result.isInvalid()) { | 
|  | 1904 | SkipUntil(tok::r_paren); | 
|  | 1905 | return ExprError(); | 
|  | 1906 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1907 |  | 
| Argyrios Kyrtzidis | f58f45e | 2009-05-22 10:24:42 +0000 | [diff] [blame] | 1908 | if (Tok.is(tok::r_paren)) | 
|  | 1909 | RParenLoc = ConsumeParen(); | 
|  | 1910 | else | 
|  | 1911 | MatchRHSPunctuation(tok::r_paren, LParenLoc); | 
|  | 1912 |  | 
|  | 1913 | return move(Result); | 
|  | 1914 | } |