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