31#include "llvm/ADT/SmallString.h"
32#include "llvm/Support/TimeProfiler.h"
67 assert(Tok.
is(tok::kw_namespace) &&
"Not a namespace!");
71 if (Tok.
is(tok::code_completion)) {
79 InnerNamespaceInfoList ExtraNSs;
84 while (MaybeParseGNUAttributes(attrs) || isAllowedCXX11AttributeSpecifier()) {
85 if (isAllowedCXX11AttributeSpecifier()) {
88 ? diag::warn_cxx14_compat_ns_enum_attribute
89 : diag::ext_ns_enum_attribute)
91 ParseCXX11Attributes(attrs);
95 if (Tok.
is(tok::identifier)) {
98 while (Tok.
is(tok::coloncolon) &&
101 GetLookAheadToken(2).is(tok::identifier)))) {
103 InnerNamespaceInfo Info;
106 if (Tok.
is(tok::kw_inline)) {
109 FirstNestedInlineLoc = Info.InlineLoc;
115 ExtraNSs.push_back(Info);
119 DiagnoseAndSkipCXX11Attributes();
120 MaybeParseGNUAttributes(attrs);
121 DiagnoseAndSkipCXX11Attributes();
126 if (!ExtraNSs.empty() && attrLoc.
isValid())
127 Diag(attrLoc, diag::err_unexpected_nested_namespace_attribute);
129 if (Tok.
is(tok::equal)) {
131 Diag(Tok, diag::err_expected) << tok::identifier;
136 if (!ExtraNSs.empty()) {
137 Diag(ExtraNSs.front().NamespaceLoc,
138 diag::err_unexpected_qualified_namespace_alias)
140 ExtraNSs.back().IdentLoc);
145 Diag(attrLoc, diag::err_unexpected_namespace_attributes_alias);
147 Diag(InlineLoc, diag::err_inline_namespace_alias)
149 Decl *NSAlias = ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
154 if (
T.consumeOpen()) {
156 Diag(Tok, diag::err_expected) << tok::l_brace;
158 Diag(Tok, diag::err_expected_either) << tok::identifier << tok::l_brace;
165 Diag(
T.getOpenLocation(), diag::err_namespace_nonnamespace_scope);
170 if (ExtraNSs.empty()) {
172 }
else if (InlineLoc.
isValid()) {
173 Diag(InlineLoc, diag::err_inline_nested_namespace_definition);
175 Diag(ExtraNSs[0].NamespaceLoc,
176 diag::warn_cxx14_compat_nested_namespace_definition);
177 if (FirstNestedInlineLoc.
isValid())
178 Diag(FirstNestedInlineLoc,
179 diag::warn_cxx17_compat_inline_nested_namespace_definition);
181 Diag(ExtraNSs[0].NamespaceLoc,
182 diag::warn_cxx14_compat_nested_namespace_definition);
183 if (FirstNestedInlineLoc.
isValid())
184 Diag(FirstNestedInlineLoc, diag::ext_inline_nested_namespace_definition);
186 TentativeParsingAction TPA(*
this);
188 Token rBraceToken = Tok;
191 if (!rBraceToken.
is(tok::r_brace)) {
192 Diag(ExtraNSs[0].NamespaceLoc, diag::ext_nested_namespace_definition)
194 ExtraNSs.back().IdentLoc);
196 std::string NamespaceFix;
197 for (
const auto &ExtraNS : ExtraNSs) {
198 NamespaceFix +=
" { ";
199 if (ExtraNS.InlineLoc.isValid())
200 NamespaceFix +=
"inline ";
201 NamespaceFix +=
"namespace ";
202 NamespaceFix += ExtraNS.Ident->getName();
206 for (
unsigned i = 0, e = ExtraNSs.size(); i != e; ++i)
209 Diag(ExtraNSs[0].NamespaceLoc, diag::ext_nested_namespace_definition)
212 ExtraNSs.back().IdentLoc),
218 if (FirstNestedInlineLoc.
isValid())
219 Diag(FirstNestedInlineLoc, diag::ext_inline_nested_namespace_definition);
225 ? diag::warn_cxx98_compat_inline_namespace
226 : diag::ext_inline_namespace);
233 getCurScope(), InlineLoc, NamespaceLoc, IdentLoc, Ident,
234 T.getOpenLocation(), attrs, ImplicitUsingDirectiveDecl,
false);
237 NamespaceLoc,
"parsing namespace");
241 ParseInnerNamespace(ExtraNSs, 0, InlineLoc, attrs,
T);
244 NamespaceScope.Exit();
246 DeclEnd =
T.getCloseLocation();
250 ImplicitUsingDirectiveDecl);
254void Parser::ParseInnerNamespace(
const InnerNamespaceInfoList &InnerNSs,
258 if (index == InnerNSs.size()) {
259 while (!tryParseMisplacedModuleImport() && Tok.
isNot(tok::r_brace) &&
260 Tok.
isNot(tok::eof)) {
262 MaybeParseCXX11Attributes(DeclAttrs);
264 ParseExternalDeclaration(DeclAttrs, EmptyDeclSpecAttrs);
280 getCurScope(), InnerNSs[index].InlineLoc, InnerNSs[index].NamespaceLoc,
281 InnerNSs[index].IdentLoc, InnerNSs[index].Ident,
283 assert(!ImplicitUsingDirectiveDecl &&
284 "nested namespace definition cannot define anonymous namespace");
286 ParseInnerNamespace(InnerNSs, ++index, InlineLoc, attrs, Tracker);
288 NamespaceScope.Exit();
299 assert(Tok.
is(tok::equal) &&
"Not equal token");
303 if (Tok.
is(tok::code_completion)) {
311 ParseOptionalCXXScopeSpecifier(SS,
nullptr,
319 if (Tok.
isNot(tok::identifier)) {
320 Diag(Tok, diag::err_expected_namespace_name);
339 if (ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name))
343 Alias, SS, IdentLoc, Ident);
354 assert(isTokenStringLiteral() &&
"Not a string literal!");
368 while (MaybeParseCXX11Attributes(DeclAttrs) ||
369 MaybeParseGNUAttributes(DeclSpecAttrs))
372 if (Tok.
isNot(tok::l_brace)) {
379 ParseExternalDeclaration(DeclAttrs, DeclSpecAttrs, &DS);
387 ProhibitAttributes(DeclAttrs);
392 unsigned NestedModules = 0;
395 case tok::annot_module_begin:
400 case tok::annot_module_end:
407 case tok::annot_module_include:
421 while (MaybeParseCXX11Attributes(DeclAttrs) ||
422 MaybeParseGNUAttributes(DeclSpecAttrs))
424 ParseExternalDeclaration(DeclAttrs, DeclSpecAttrs);
451Decl *Parser::ParseExportDeclaration() {
452 assert(Tok.
is(tok::kw_export));
455 if (Tok.
is(tok::code_completion)) {
469 if (Tok.
isNot(tok::l_brace)) {
472 MaybeParseCXX11Attributes(DeclAttrs);
474 ParseExternalDeclaration(DeclAttrs, EmptyDeclSpecAttrs);
482 while (!tryParseMisplacedModuleImport() && Tok.
isNot(tok::r_brace) &&
483 Tok.
isNot(tok::eof)) {
485 MaybeParseCXX11Attributes(DeclAttrs);
487 ParseExternalDeclaration(DeclAttrs, EmptyDeclSpecAttrs);
492 T.getCloseLocation());
500 assert(Tok.
is(tok::kw_using) &&
"Not using token");
506 if (Tok.
is(tok::code_completion)) {
513 while (Tok.
is(tok::kw_template)) {
515 Diag(TemplateLoc, diag::err_unexpected_template_after_using)
520 if (Tok.
is(tok::kw_namespace)) {
522 if (TemplateInfo.Kind) {
524 Diag(UsingLoc, diag::err_templated_using_directive_declaration)
528 Decl *UsingDir = ParseUsingDirective(Context, UsingLoc, DeclEnd, Attrs);
533 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, Attrs,
551 assert(Tok.
is(tok::kw_namespace) &&
"Not 'namespace' token");
556 if (Tok.
is(tok::code_completion)) {
564 ParseOptionalCXXScopeSpecifier(SS,
nullptr,
576 if (Tok.
isNot(tok::identifier)) {
577 Diag(Tok, diag::err_expected_namespace_name);
596 bool GNUAttr =
false;
597 if (Tok.
is(tok::kw___attribute)) {
599 ParseGNUAttributes(attrs);
604 if (ExpectAndConsume(tok::semi,
605 GNUAttr ? diag::err_expected_semi_after_attribute_list
606 : diag::err_expected_semi_after_namespace_name))
610 IdentLoc, NamespcName, attrs);
619 UsingDeclarator &
D) {
626 if (Tok.
is(tok::kw___super)) {
633 if (ParseOptionalCXXScopeSpecifier(
D.SS,
nullptr,
643 if (
D.SS.isInvalid())
657 Tok.
is(tok::identifier) &&
663 !
D.SS.getScopeRep()->getAsNamespace() &&
664 !
D.SS.getScopeRep()->getAsNamespaceAlias()) {
668 D.Name.setConstructorName(
Type, IdLoc, IdLoc);
675 !(Tok.
is(tok::identifier) &&
NextToken().is(tok::equal)),
676 false,
nullptr,
D.Name))
682 ? diag::warn_cxx17_compat_using_declaration_pack
683 : diag::ext_using_declaration_pack);
722 ? diag::warn_cxx17_compat_using_enum_declaration
723 : diag::ext_using_enum_declaration);
725 DiagnoseCXX11AttributeExtension(PrefixAttrs);
727 if (TemplateInfo.Kind) {
729 Diag(UsingLoc, diag::err_templated_using_directive_declaration)
735 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
747 if (Tok.
is(tok::code_completion)) {
757 if (Tok.
is(tok::identifier)) {
769 }
else if (Tok.
is(tok::annot_template_id)) {
776 assert(Tok.
is(tok::annot_typename) &&
"template-id -> type failed");
779 ConsumeAnnotationToken();
791 << Tok.
is(tok::kw_enum);
802 if (ExpectAndConsume(tok::semi, diag::err_expected_after,
803 "using-enum declaration"))
812 MaybeParseCXX11Attributes(MisplacedAttrs);
814 if (InInitStatement && Tok.
isNot(tok::identifier))
818 bool InvalidDeclarator = ParseUsingDeclarator(Context,
D);
821 MaybeParseAttributes(PAKM_GNU | PAKM_CXX11, Attrs);
825 if (MisplacedAttrs.Range.isValid()) {
827 MisplacedAttrs.empty() ? nullptr : &MisplacedAttrs.front();
828 auto &
Range = MisplacedAttrs.Range;
829 (FirstAttr && FirstAttr->isRegularKeywordAttribute()
839 if (Tok.
is(tok::equal) || InInitStatement) {
840 if (InvalidDeclarator) {
845 ProhibitAttributes(PrefixAttrs);
847 Decl *DeclFromDeclSpec =
nullptr;
853 Decl *AD = ParseAliasDeclarationAfterDeclarator(
854 TemplateInfo, UsingLoc,
D, DeclEnd, AS, Attrs, &DeclFromDeclSpec);
858 DiagnoseCXX11AttributeExtension(PrefixAttrs);
863 if (TemplateInfo.Kind) {
865 Diag(UsingLoc, diag::err_templated_using_directive_declaration)
877 MaybeParseAttributes(PAKM_GNU | PAKM_CXX11, Attrs);
878 DiagnoseCXX11AttributeExtension(Attrs);
881 if (InvalidDeclarator)
886 if (
D.TypenameLoc.isValid() &&
889 diag::err_typename_identifiers_only)
896 D.TypenameLoc,
D.SS,
D.Name,
897 D.EllipsisLoc, Attrs);
899 DeclsInGroup.push_back(UD);
907 InvalidDeclarator = ParseUsingDeclarator(Context,
D);
910 if (DeclsInGroup.size() > 1)
913 ? diag::warn_cxx17_compat_multi_using_declaration
914 : diag::ext_multi_using_declaration);
918 if (ExpectAndConsume(tok::semi, diag::err_expected_after,
919 !Attrs.
empty() ?
"attributes list"
920 : UELoc.
isValid() ?
"using-enum declaration"
921 :
"using declaration"))
927Decl *Parser::ParseAliasDeclarationAfterDeclarator(
931 if (ExpectAndConsume(tok::equal)) {
937 ? diag::warn_cxx98_compat_alias_declaration
938 : diag::ext_alias_declaration);
942 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
945 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
947 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
949 if (SpecKind != -1) {
953 D.Name.TemplateId->RAngleLoc);
955 Range = TemplateInfo.getSourceRange();
957 << SpecKind <<
Range;
964 Diag(
D.Name.StartLocation, diag::err_alias_declaration_not_identifier);
968 }
else if (
D.TypenameLoc.isValid())
969 Diag(
D.TypenameLoc, diag::err_alias_declaration_not_identifier)
973 else if (
D.SS.isNotEmpty())
976 if (
D.EllipsisLoc.isValid())
977 Diag(
D.EllipsisLoc, diag::err_alias_declaration_pack_expansion)
980 Decl *DeclFromDeclSpec =
nullptr;
985 AS, &DeclFromDeclSpec, &Attrs);
987 *OwnedType = DeclFromDeclSpec;
991 if (ExpectAndConsume(tok::semi, diag::err_expected_after,
992 !Attrs.
empty() ?
"attributes list"
993 :
"alias declaration"))
998 TemplateParams ? TemplateParams->data() :
nullptr,
999 TemplateParams ? TemplateParams->size() : 0);
1001 UsingLoc,
D.Name, Attrs, TypeAlias,
1007 if (
const auto *BO = dyn_cast_or_null<BinaryOperator>(AssertExpr)) {
1008 if (BO->getOpcode() == BO_LAnd &&
1009 isa<StringLiteral>(BO->getRHS()->IgnoreImpCasts()))
1024 assert(Tok.
isOneOf(tok::kw_static_assert, tok::kw__Static_assert) &&
1025 "Not a static_assert declaration");
1028 const char *TokName = Tok.
getName();
1030 if (Tok.
is(tok::kw__Static_assert))
1031 diagnoseUseOfC11Keyword(Tok);
1032 else if (Tok.
is(tok::kw_static_assert)) {
1035 Diag(Tok, diag::warn_c23_compat_keyword) << Tok.
getName();
1040 Diag(Tok, diag::warn_cxx98_compat_static_assert);
1046 if (
T.consumeOpen()) {
1047 Diag(Tok, diag::err_expected) << tok::l_paren;
1055 if (AssertExpr.isInvalid()) {
1061 if (Tok.
is(tok::r_paren)) {
1064 DiagVal = diag::warn_cxx14_compat_static_assert_no_message;
1066 DiagVal = diag::ext_cxx_static_assert_no_message;
1068 DiagVal = diag::warn_c17_compat_static_assert_no_message;
1070 DiagVal = diag::ext_c_static_assert_no_message;
1074 if (ExpectAndConsume(tok::comma)) {
1079 bool ParseAsExpression =
false;
1081 for (
unsigned I = 0;; ++I) {
1082 const Token &
T = GetLookAheadToken(I);
1083 if (
T.is(tok::r_paren))
1086 ParseAsExpression =
true;
1092 if (ParseAsExpression) {
1095 ? diag::warn_cxx20_compat_static_assert_user_generated_message
1096 : diag::ext_cxx_static_assert_user_generated_message);
1101 Diag(Tok, diag::err_expected_string_literal)
1113 if (
T.consumeClose())
1117 ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert, TokName);
1120 AssertMessage.
get(),
1121 T.getCloseLocation());
1130 assert(Tok.
isOneOf(tok::kw_decltype, tok::annot_decltype) &&
1131 "Not a decltype specifier");
1137 if (Tok.
is(tok::annot_decltype)) {
1138 Result = getExprAnnotation(Tok);
1143 ConsumeAnnotationToken();
1144 if (
Result.isInvalid()) {
1150 Diag(Tok, diag::warn_cxx98_compat_decltype);
1155 if (
T.expectAndConsume(diag::err_expected_lparen_after,
"decltype",
1158 return T.getOpenLocation() == Tok.
getLocation() ? StartLoc
1159 :
T.getOpenLocation();
1163 if (Tok.
is(tok::kw_auto) &&
NextToken().is(tok::r_paren)) {
1168 ? diag::warn_cxx11_compat_decltype_auto_type_specifier
1169 : diag::ext_decltype_auto_type_specifier);
1183 if (
Result.isInvalid()) {
1186 EndLoc = ConsumeParen();
1193 assert(Tok.
is(tok::semi));
1207 if (
T.getCloseLocation().isInvalid()) {
1211 return T.getCloseLocation();
1214 if (
Result.isInvalid()) {
1216 return T.getCloseLocation();
1219 EndLoc =
T.getCloseLocation();
1221 assert(!
Result.isInvalid());
1223 const char *PrevSpec =
nullptr;
1228 PrevSpec, DiagID,
Result.get(), Policy)
1230 PrevSpec, DiagID, Policy)) {
1231 Diag(StartLoc, DiagID) << PrevSpec;
1237void Parser::AnnotateExistingDecltypeSpecifier(
const DeclSpec &DS,
1253 Tok.
setKind(tok::annot_decltype);
1254 setExprAnnotation(Tok,
1264 assert(Tok.
isOneOf(tok::annot_pack_indexing_type, tok::identifier) &&
1265 "Expected an identifier");
1270 const char *PrevSpec;
1274 if (Tok.
is(tok::annot_pack_indexing_type)) {
1282 ConsumeAnnotationToken();
1283 if (
Type.isInvalid()) {
1288 DiagID,
Type, Policy);
1292 !GetLookAheadToken(2).is(tok::l_square)) {
1324 return T.getCloseLocation();
1327void Parser::AnnotateExistingIndexedTypeNamePack(
ParsedType T,
1343 Tok.
setKind(tok::annot_pack_indexing_type);
1344 setTypeAnnotation(Tok,
T);
1352#define TRANSFORM_TYPE_TRAIT_DEF(_, Trait) \
1353 case tok::kw___##Trait: \
1354 return DeclSpec::TST_##Trait;
1355#include "clang/Basic/TransformTypeTraits.def"
1357 llvm_unreachable(
"passed in an unhandled type transformation built-in");
1361bool Parser::MaybeParseTypeTransformTypeSpecifier(
DeclSpec &DS) {
1366 DeclSpec::TST TypeTransformTST = TypeTransformTokToDeclSpec();
1370 if (
T.expectAndConsume(diag::err_expected_lparen_after, Tok.
getName(),
1375 if (
Result.isInvalid()) {
1381 if (
T.getCloseLocation().isInvalid())
1384 const char *PrevSpec =
nullptr;
1389 Diag(StartLoc, DiagID) << PrevSpec;
1415 if (Tok.
is(tok::kw_typename)) {
1416 Diag(Tok, diag::err_expected_class_name_not_template)
1423 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
1433 if (Tok.
isOneOf(tok::kw_decltype, tok::annot_decltype)) {
1440 EndLocation = ParseDecltypeSpecifier(DS);
1447 if (Tok.
is(tok::annot_pack_indexing_type)) {
1449 ParsePackIndexingType(DS);
1458 if (Tok.
is(tok::annot_template_id)) {
1464 assert(Tok.
is(tok::annot_typename) &&
"template-id -> type failed");
1467 ConsumeAnnotationToken();
1474 if (Tok.
isNot(tok::identifier)) {
1475 Diag(Tok, diag::err_expected_class_name);
1482 if (Tok.
is(tok::less)) {
1491 Diag(IdLoc, diag::err_unknown_template_name) <<
Id;
1502 if (Tok.
is(tok::annot_template_id) &&
1503 takeTemplateIdAnnotation(Tok)->mightBeType())
1509 if (Tok.
isNot(tok::annot_typename))
1516 ConsumeAnnotationToken();
1529 Diag(IdLoc, diag::err_expected_class_name);
1534 EndLocation = IdLoc;
1542 const char *PrevSpec =
nullptr;
1552void Parser::ParseMicrosoftInheritanceClassAttributes(
ParsedAttributes &attrs) {
1553 while (Tok.
isOneOf(tok::kw___single_inheritance,
1554 tok::kw___multiple_inheritance,
1555 tok::kw___virtual_inheritance)) {
1559 attrs.
addNew(AttrName, AttrNameLoc,
nullptr, AttrNameLoc,
nullptr, 0, Kind);
1564 while (Tok.
is(tok::kw__Nullable)) {
1568 attrs.
addNew(AttrName, AttrNameLoc,
nullptr, AttrNameLoc,
nullptr, 0, Kind);
1575bool Parser::isValidAfterTypeSpecifier(
bool CouldBeBitfield) {
1586 case tok::identifier:
1588 case tok::coloncolon:
1589 case tok::annot_cxxscope:
1590 case tok::annot_typename:
1591 case tok::annot_template_id:
1592 case tok::kw_decltype:
1595 case tok::kw_operator:
1596 case tok::kw___declspec:
1601 case tok::kw___attribute:
1602 case tok::annot_pragma_pack:
1604 case tok::annot_pragma_ms_pragma:
1606 case tok::annot_pragma_ms_vtordisp:
1608 case tok::annot_pragma_ms_pointers_to_members:
1611 return CouldBeBitfield ||
1614 case tok::kw___cdecl:
1615 case tok::kw___fastcall:
1616 case tok::kw___stdcall:
1617 case tok::kw___thiscall:
1618 case tok::kw___vectorcall:
1624 case tok::kw_volatile:
1625 case tok::kw_restrict:
1626 case tok::kw__Atomic:
1627 case tok::kw___unaligned:
1631 case tok::kw_inline:
1632 case tok::kw_virtual:
1633 case tok::kw_friend:
1635 case tok::kw_static:
1636 case tok::kw_extern:
1637 case tok::kw_typedef:
1638 case tok::kw_register:
1640 case tok::kw_mutable:
1641 case tok::kw_thread_local:
1642 case tok::kw_constexpr:
1643 case tok::kw_consteval:
1644 case tok::kw_constinit:
1660 if (!isKnownToBeTypeSpecifier(
NextToken()))
1717 ParsedTemplateInfo &TemplateInfo,
1719 DeclSpecContext DSC,
1722 if (TagTokKind == tok::kw_struct)
1724 else if (TagTokKind == tok::kw___interface)
1726 else if (TagTokKind == tok::kw_class)
1729 assert(TagTokKind == tok::kw_union &&
"Not a class specifier");
1733 if (Tok.
is(tok::code_completion)) {
1747 const bool shouldDelayDiagsInTag =
1748 (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate);
1754 MaybeParseAttributes(PAKM_CXX11 | PAKM_Declspec | PAKM_GNU, attrs);
1756 if (Tok.
isOneOf(tok::kw___single_inheritance,
1757 tok::kw___multiple_inheritance,
1758 tok::kw___virtual_inheritance)) {
1759 ParseMicrosoftInheritanceClassAttributes(attrs);
1762 if (Tok.
is(tok::kw__Nullable)) {
1763 ParseNullabilityClassAttributes(attrs);
1777#include
"clang/Basic/TransformTypeTraits.def"
1778 tok::kw___is_abstract,
1779 tok::kw___is_aggregate,
1780 tok::kw___is_arithmetic,
1782 tok::kw___is_assignable,
1783 tok::kw___is_base_of,
1784 tok::kw___is_bounded_array,
1786 tok::kw___is_complete_type,
1787 tok::kw___is_compound,
1789 tok::kw___is_constructible,
1790 tok::kw___is_convertible,
1791 tok::kw___is_convertible_to,
1792 tok::kw___is_destructible,
1795 tok::kw___is_floating_point,
1797 tok::kw___is_function,
1798 tok::kw___is_fundamental,
1799 tok::kw___is_integral,
1800 tok::kw___is_interface_class,
1801 tok::kw___is_literal,
1802 tok::kw___is_lvalue_expr,
1803 tok::kw___is_lvalue_reference,
1804 tok::kw___is_member_function_pointer,
1805 tok::kw___is_member_object_pointer,
1806 tok::kw___is_member_pointer,
1807 tok::kw___is_nothrow_assignable,
1808 tok::kw___is_nothrow_constructible,
1809 tok::kw___is_nothrow_convertible,
1810 tok::kw___is_nothrow_destructible,
1811 tok::kw___is_object,
1813 tok::kw___is_pointer,
1814 tok::kw___is_polymorphic,
1815 tok::kw___is_reference,
1816 tok::kw___is_referenceable,
1817 tok::kw___is_rvalue_expr,
1818 tok::kw___is_rvalue_reference,
1820 tok::kw___is_scalar,
1821 tok::kw___is_scoped_enum,
1822 tok::kw___is_sealed,
1823 tok::kw___is_signed,
1824 tok::kw___is_standard_layout,
1825 tok::kw___is_trivial,
1826 tok::kw___is_trivially_equality_comparable,
1827 tok::kw___is_trivially_assignable,
1828 tok::kw___is_trivially_constructible,
1829 tok::kw___is_trivially_copyable,
1830 tok::kw___is_unbounded_array,
1832 tok::kw___is_unsigned,
1834 tok::kw___is_volatile
1841 TryKeywordIdentFallback(
true);
1843 struct PreserveAtomicIdentifierInfoRAII {
1844 PreserveAtomicIdentifierInfoRAII(
Token &Tok,
bool Enabled)
1845 : AtomicII(nullptr) {
1848 assert(Tok.
is(tok::kw__Atomic));
1853 ~PreserveAtomicIdentifierInfoRAII() {
1856 AtomicII->revertIdentifierToTokenID(tok::kw__Atomic);
1866 bool ShouldChangeAtomicToIdentifier =
getLangOpts().MSVCCompat &&
1867 Tok.
is(tok::kw__Atomic) &&
1869 PreserveAtomicIdentifierInfoRAII AtomicTokenGuard(
1870 Tok, ShouldChangeAtomicToIdentifier);
1880 if (TemplateInfo.TemplateParams)
1883 bool HasValidSpec =
true;
1884 if (ParseOptionalCXXScopeSpecifier(Spec,
nullptr,
1888 HasValidSpec =
false;
1891 if (Tok.
isNot(tok::identifier) && Tok.
isNot(tok::annot_template_id)) {
1892 Diag(Tok, diag::err_expected) << tok::identifier;
1893 HasValidSpec =
false;
1901 auto RecoverFromUndeclaredTemplateName = [&](
IdentifierInfo *Name,
1904 bool KnownUndeclared) {
1905 Diag(NameLoc, diag::err_explicit_spec_non_template)
1906 << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
1907 << TagTokKind << Name << TemplateArgRange << KnownUndeclared;
1911 if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
1912 if (TemplateParams->size() > 1) {
1913 TemplateParams->pop_back();
1915 TemplateParams =
nullptr;
1916 TemplateInfo.Kind = ParsedTemplateInfo::NonTemplate;
1918 }
else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
1920 TemplateParams =
nullptr;
1921 TemplateInfo.Kind = ParsedTemplateInfo::NonTemplate;
1931 if (Tok.
is(tok::identifier)) {
1940 TemplateArgList TemplateArgs;
1942 if (ParseTemplateIdAfterTemplateName(
true, LAngleLoc, TemplateArgs,
1948 RecoverFromUndeclaredTemplateName(
1949 Name, NameLoc,
SourceRange(LAngleLoc, RAngleLoc),
false);
1951 }
else if (Tok.
is(tok::annot_template_id)) {
1952 TemplateId = takeTemplateIdAnnotation(Tok);
1953 NameLoc = ConsumeAnnotationToken();
1960 RecoverFromUndeclaredTemplateName(
1963 TemplateId =
nullptr;
1976 Diag(TemplateId->
LAngleLoc, diag::err_template_spec_syntax_non_template)
1977 << TemplateId->
Name <<
static_cast<int>(TemplateId->
Kind) <<
Range;
2012 MaybeParseCXX11Attributes(Attributes);
2021 Tok.
isOneOf(tok::comma, tok::ellipsis))
2024 AllowDefiningTypeSpec::No ||
2027 else if (Tok.
is(tok::l_brace) ||
2028 (DSC != DeclSpecContext::DSC_association &&
2030 (isClassCompatibleKeyword() &&
2046 }
else if (isClassCompatibleKeyword() &&
2053 TentativeParsingAction PA(*
this);
2056 while (isClassCompatibleKeyword()) {
2062 if (Tok.
is(tok::l_square) &&
NextToken().is(tok::l_square)) {
2066 }
else if (Tok.
is(tok::kw_alignas) &&
NextToken().is(tok::l_paren)) {
2076 if (!
T.consumeOpen())
2084 if (Tok.
isOneOf(tok::l_brace, tok::colon))
2090 }
else if (!isTypeSpecifier(DSC) &&
2091 (Tok.
is(tok::semi) ||
2094 if (Tok.
isNot(tok::semi)) {
2097 ExpectAndConsume(tok::semi, diag::err_expected_after,
2115 auto *FirstAttr = Attributes.
empty() ? nullptr : &Attributes.
front();
2117 (FirstAttr && FirstAttr->isRegularKeywordAttribute()
2118 ?
Diag(
Loc, diag::err_keyword_not_allowed) << FirstAttr
2119 :
Diag(
Loc, diag::err_attributes_not_allowed))
2131 if (!Name && !TemplateId &&
2136 Diag(StartLoc, diag::err_anon_type_definition)
2163 }
else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
2166 ProhibitCXX11Attributes(attrs, diag::err_attributes_not_allowed,
2167 diag::err_keyword_not_allowed,
2171 getCurScope(), TemplateInfo.ExternLoc, TemplateInfo.TemplateLoc,
2182 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
2183 ProhibitCXX11Attributes(attrs, diag::err_attributes_not_allowed,
2184 diag::err_keyword_not_allowed,
2194 if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
2207 "Expected a definition here");
2211 TemplateParams =
nullptr;
2216 diag::err_explicit_instantiation_with_definition)
2225 LAngleLoc,
nullptr));
2226 TemplateParams = &FakedParamLists;
2233 SS, *TemplateId, attrs,
2236 TemplateParams ? TemplateParams->size() : 0),
2239 }
else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
2246 ProhibitAttributes(attrs);
2249 getCurScope(), TemplateInfo.ExternLoc, TemplateInfo.TemplateLoc,
2250 TagType, StartLoc, SS, Name, NameLoc, attrs);
2252 TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
2253 ProhibitCXX11Attributes(attrs, diag::err_attributes_not_allowed,
2254 diag::err_keyword_not_allowed,
2270 if (Tok.
is(tok::comma)) {
2272 diag::err_friend_template_decl_multiple_specifiers);
2278 NameLoc, EllipsisLoc, attrs,
2280 TemplateParams ? TemplateParams->size() : 0));
2283 ProhibitCXX11Attributes(attrs, diag::err_attributes_not_allowed,
2284 diag::err_keyword_not_allowed,
2288 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
2291 Diag(Tok, diag::err_template_defn_explicit_instantiation)
2293 TemplateParams =
nullptr;
2296 bool IsDependent =
false;
2306 stripTypeAttributesOffDeclSpec(attrs, DS, TUK);
2309 TagOrTempResult = Actions.
ActOnTag(
2313 DSC == DeclSpecContext::DSC_type_specifier,
2314 DSC == DeclSpecContext::DSC_template_param ||
2315 DSC == DeclSpecContext::DSC_template_type_arg,
2316 OffsetOfState, &SkipBody);
2323 Name, StartLoc, NameLoc);
2330 if (shouldDelayDiagsInTag) {
2331 diagsFromTag.done();
2333 TemplateInfo.Kind == ParsedTemplateInfo::Template)
2334 diagsFromTag.redelay();
2339 assert(Tok.
is(tok::l_brace) ||
2341 isClassCompatibleKeyword());
2343 SkipCXXMemberSpecification(StartLoc, AttrFixitLoc,
TagType,
2344 TagOrTempResult.
get());
2346 ParseCXXMemberSpecification(StartLoc, AttrFixitLoc, attrs,
TagType,
2347 TagOrTempResult.
get());
2352 ParseStructUnionBody(StartLoc,
TagType, cast<RecordDecl>(
D));
2365 const char *PrevSpec =
nullptr;
2370 NameLoc.
isValid() ? NameLoc : StartLoc,
2372 }
else if (!TagOrTempResult.
isInvalid()) {
2374 TagType, StartLoc, NameLoc.
isValid() ? NameLoc : StartLoc, PrevSpec,
2375 DiagID, TagOrTempResult.
get(), Owned, Policy);
2382 Diag(StartLoc, DiagID) << PrevSpec;
2398 (TemplateInfo.Kind || !isValidAfterTypeSpecifier(
false))) {
2399 if (Tok.
isNot(tok::semi)) {
2401 ExpectAndConsume(tok::semi, diag::err_expected_after,
2419void Parser::ParseBaseClause(
Decl *ClassDecl) {
2420 assert(Tok.
is(tok::colon) &&
"Not a base clause");
2429 if (
Result.isInvalid()) {
2435 BaseInfo.push_back(
Result.get());
2460 bool IsVirtual =
false;
2464 MaybeParseCXX11Attributes(Attributes);
2470 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
2480 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
2484 if (Tok.
is(tok::kw_virtual)) {
2488 Diag(VirtualLoc, diag::err_dup_virtual)
2495 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
2509 TypeResult BaseType = ParseBaseTypeSpecifier(BaseLoc, EndLocation);
2525 Access, BaseType.
get(), BaseLoc,
2540 case tok::kw_private:
2542 case tok::kw_protected:
2544 case tok::kw_public:
2553void Parser::HandleMemberFunctionDeclDelays(
Declarator &DeclaratorInfo,
2560 if (!NeedLateParse) {
2564 if (Param->hasUnparsedDefaultArg()) {
2565 NeedLateParse =
true;
2571 if (NeedLateParse) {
2574 auto LateMethod =
new LateParsedMethodDeclaration(
this, ThisDecl);
2575 getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
2580 LateMethod->DefaultArgs.reserve(FTI.
NumParams);
2582 LateMethod->DefaultArgs.push_back(LateParsedDefaultArgument(
2619 if (II == Ident_override)
2622 if (II == Ident_sealed)
2625 if (II == Ident_abstract)
2628 if (II == Ident_final)
2631 if (II == Ident_GNU_final)
2642void Parser::ParseOptionalCXX11VirtSpecifierSeq(
VirtSpecifiers &VS,
2661 const char *PrevSpec =
nullptr;
2679 ? diag::warn_cxx98_compat_override_control_keyword
2680 : diag::ext_override_control_keyword)
2689bool Parser::isCXX11FinalKeyword()
const {
2698bool Parser::isClassCompatibleKeyword()
const {
2708bool Parser::ParseCXXMemberDeclaratorBeforeInitializer(
2710 LateParsedAttrList &LateParsedAttrs) {
2721 if (Tok.
isNot(tok::colon))
2722 ParseDeclarator(DeclaratorInfo);
2727 MaybeParseHLSLAnnotations(DeclaratorInfo,
nullptr,
2732 "don't know where identifier would go yet?");
2736 }
else if (Tok.
is(tok::kw_requires)) {
2737 ParseTrailingRequiresClause(DeclaratorInfo);
2739 ParseOptionalCXX11VirtSpecifierSeq(
2740 VS, getCurrentClass().IsInterface,
2743 MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq(DeclaratorInfo,
2748 if (Tok.
is(tok::kw_asm)) {
2751 if (AsmLabel.isInvalid())
2761 DiagnoseAndSkipCXX11Attributes();
2762 MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
2763 DiagnoseAndSkipCXX11Attributes();
2768 ParseOptionalCXX11VirtSpecifierSeq(
2769 VS, getCurrentClass().IsInterface,
2775 if (AL.isKnownToGCC() && !AL.isCXX11Attribute())
2776 Diag(AL.getLoc(), diag::warn_gcc_attribute_location);
2778 MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq(DeclaratorInfo,
2795void Parser::MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq(
2801 ParseTypeQualifierListOpt(
2802 DS, AR_NoAttributesParsed,
false,
2803 false, llvm::function_ref<
void()>([&]() {
2806 D.ExtendWithDeclSpec(DS);
2808 if (
D.isFunctionDeclarator()) {
2809 auto &
Function =
D.getFunctionTypeInfo();
2811 auto DeclSpecCheck = [&](
DeclSpec::TQ TypeQual, StringRef FixItName,
2814 auto &MQ =
Function.getOrCreateMethodQualifiers();
2815 if (!(MQ.getTypeQualifiers() & TypeQual)) {
2816 std::string Name(FixItName.data());
2819 MQ.SetTypeQual(TypeQual, SpecLoc);
2821 Diag(SpecLoc, diag::err_declspec_after_virtspec)
2830 bool RefQualifierIsLValueRef =
true;
2832 if (ParseRefQualifier(RefQualifierIsLValueRef, RefQualifierLoc)) {
2833 const char *Name = (RefQualifierIsLValueRef ?
"& " :
"&& ");
2836 Function.RefQualifierIsLValueRef = RefQualifierIsLValueRef;
2837 Function.RefQualifierLoc = RefQualifierLoc;
2839 Diag(RefQualifierLoc, diag::err_declspec_after_virtspec)
2840 << (RefQualifierIsLValueRef ?
"&" :
"&&")
2843 D.SetRangeEnd(RefQualifierLoc);
2902 "ParseCXXClassMemberDeclaration should only be called in C++ mode");
2903 if (Tok.
is(tok::at)) {
2905 Diag(Tok, diag::err_at_defs_cxx);
2907 Diag(Tok, diag::err_at_in_class);
2923 bool MalformedTypeSpec =
false;
2924 if (!TemplateInfo.Kind &&
2925 Tok.
isOneOf(tok::identifier, tok::coloncolon, tok::kw___super)) {
2927 MalformedTypeSpec =
true;
2930 if (Tok.
isNot(tok::annot_cxxscope))
2931 isAccessDecl =
false;
2932 else if (
NextToken().is(tok::identifier))
2933 isAccessDecl = GetLookAheadToken(2).
is(tok::semi);
2940 ParseOptionalCXXScopeSpecifier(SS,
nullptr,
2953 false,
false,
true,
true,
2954 false, &TemplateKWLoc, Name)) {
2960 if (ExpectAndConsume(tok::semi, diag::err_expected_after,
2961 "access declaration")) {
2977 if (!TemplateInfo.Kind &&
2978 Tok.
isOneOf(tok::kw_static_assert, tok::kw__Static_assert)) {
2984 if (Tok.
is(tok::kw_template)) {
2985 assert(!TemplateInfo.TemplateParams &&
2986 "Nested template improperly parsed?");
2990 DeclEnd, AccessAttrs, AS);
2994 if (Tok.
is(tok::kw___extension__)) {
2998 return ParseCXXClassMemberDeclaration(AS, AccessAttrs, TemplateInfo,
3004 MaybeParseCXX11Attributes(DeclAttrs);
3009 if (Tok.
is(tok::annot_attr_openmp))
3010 return ParseOpenMPDeclarativeDirectiveWithExtDecl(AS, DeclAttrs);
3012 if (Tok.
is(tok::kw_using)) {
3017 while (Tok.
is(tok::kw_template)) {
3019 Diag(TemplateLoc, diag::err_unexpected_template_after_using)
3023 if (Tok.
is(tok::kw_namespace)) {
3024 Diag(UsingLoc, diag::err_using_namespace_in_class);
3031 UsingLoc, DeclEnd, DeclAttrs, AS);
3035 MaybeParseMicrosoftAttributes(DeclSpecAttrs);
3038 LateParsedAttrList CommonLateParsedAttrs;
3045 if (MalformedTypeSpec)
3053 bool IsTemplateSpecOrInst =
3054 (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
3055 TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization);
3058 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DeclSpecContext::DSC_class,
3059 &CommonLateParsedAttrs);
3061 if (IsTemplateSpecOrInst)
3062 diagsFromTag.done();
3070 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate &&
3071 DiagnoseMissingSemiAfterTagDefinition(DS, AS, DeclSpecContext::DSC_class,
3072 &CommonLateParsedAttrs))
3076 TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->data()
3078 TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->size() : 0);
3082 ProhibitAttributes(DeclAttrs);
3086 getCurScope(), AS, DS, DeclAttrs, TemplateParams,
false, AnonRecord);
3088 DS.complete(TheDecl);
3090 Decl *decls[] = {AnonRecord, TheDecl};
3103 ? diag::warn_cxx23_variadic_friends
3104 : diag::ext_variadic_friends);
3117 AnonRecord, VariadicLoc);
3128 if (ParsedFriendDecl(DS))
3133 const char *PrevSpec =
nullptr;
3134 unsigned DiagId = 0;
3136 ParseDeclarationSpecifiers(
DeclSpec, TemplateInfo, AS,
3137 DeclSpecContext::DSC_class,
nullptr);
3142 ExpectAndConsume(tok::semi, diag::err_expected_semi_after_stmt,
3143 "friend declaration");
3151 if (Tok.
is(tok::kw_concept)) {
3155 ? llvm::to_underlying(diag::err_friend_concept)
3156 : llvm::to_underlying(
3158 err_concept_decls_may_only_appear_in_global_namespace_scope));
3165 if (TemplateInfo.TemplateParams)
3170 LateParsedAttrList LateParsedAttrs;
3175 auto TryConsumePureSpecifier = [&](
bool AllowDefinition) {
3176 if (Tok.
isNot(tok::equal))
3181 if (
Zero.isNot(tok::numeric_constant) ||
3185 auto &
After = GetLookAheadToken(2);
3186 if (!
After.isOneOf(tok::semi, tok::comma) &&
3187 !(AllowDefinition &&
3188 After.isOneOf(tok::l_brace, tok::colon, tok::kw_try)))
3199 bool ExpectSemi =
true;
3207 if (ParseCXXMemberDeclaratorBeforeInitializer(
3208 DeclaratorInfo, VS, BitfieldSize, LateParsedAttrs)) {
3213 if (IsTemplateSpecOrInst)
3221 TryConsumePureSpecifier(
true);
3232 if (Tok.
isOneOf(tok::l_brace, tok::colon, tok::kw_try)) {
3234 }
else if (Tok.
is(tok::equal)) {
3236 if (KW.
is(tok::kw_default))
3238 else if (KW.
is(tok::kw_delete))
3240 else if (KW.
is(tok::code_completion)) {
3257 ProhibitAttributes(DeclAttrs);
3274 diag::err_function_declared_typedef);
3280 Decl *FunDecl = ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo,
3281 TemplateInfo, VS, PureSpecLoc);
3284 for (
unsigned i = 0, ni = CommonLateParsedAttrs.size(); i < ni; ++i) {
3285 CommonLateParsedAttrs[i]->addDecl(FunDecl);
3287 for (
unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
3288 LateParsedAttrs[i]->addDecl(FunDecl);
3291 LateParsedAttrs.clear();
3294 if (Tok.
is(tok::semi))
3295 ConsumeExtraSemi(AfterMemberFunctionDefinition);
3307 bool HasStaticInitializer =
false;
3312 Diag(Tok, diag::err_anon_bitfield_member_init);
3316 if (!TryConsumePureSpecifier(
false))
3318 HasStaticInitializer =
true;
3324 TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate) {
3326 if (BitfieldSize.
get())
3328 ? diag::warn_cxx17_compat_bitfield_member_init
3329 : diag::ext_bitfield_member_init);
3332 HasStaticInitializer =
true;
3348 if (AL.isCXX11Attribute() || AL.isRegularKeywordAttribute()) {
3349 auto Loc = AL.getRange().getBegin();
3350 (AL.isRegularKeywordAttribute()
3351 ?
Diag(
Loc, diag::err_keyword_not_allowed) << AL
3352 :
Diag(
Loc, diag::err_attributes_not_allowed))
3360 getCurScope(), AS, DeclaratorInfo, TemplateParams, BitfieldSize.
get(),
3361 VS, HasInClassInit);
3364 ThisDecl ? dyn_cast<VarTemplateDecl>(ThisDecl) :
nullptr)
3367 ThisDecl = VT->getTemplatedDecl();
3376 DeclaratorInfo.getDeclSpec().getStorageClassSpec() ==
3379 HasStaticInitializer =
true;
3383 Diag(PureSpecLoc, diag::err_duplicate_virt_specifier) <<
"abstract";
3385 if (ThisDecl && PureSpecLoc.
isValid())
3394 ? diag::warn_cxx98_compat_nonstatic_member_init
3395 : diag::ext_nonstatic_member_init);
3397 if (DeclaratorInfo.isArrayOfUnknownBound()) {
3403 Diag(Tok, diag::err_incomplete_array_member_init);
3410 ParseCXXNonStaticMemberInitializer(ThisDecl);
3411 }
else if (HasStaticInitializer) {
3414 ThisDecl, DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
3416 if (
Init.isInvalid()) {
3420 }
else if (ThisDecl)
3423 }
else if (ThisDecl && DeclaratorInfo.isStaticMember())
3430 for (
unsigned i = 0, ni = CommonLateParsedAttrs.size(); i < ni; ++i)
3431 CommonLateParsedAttrs[i]->addDecl(ThisDecl);
3433 for (
unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i)
3434 LateParsedAttrs[i]->addDecl(ThisDecl);
3437 DeclsInGroup.push_back(ThisDecl);
3439 if (DeclaratorInfo.isFunctionDeclarator() &&
3440 DeclaratorInfo.getDeclSpec().getStorageClassSpec() !=
3442 HandleMemberFunctionDeclDelays(DeclaratorInfo, ThisDecl);
3444 LateParsedAttrs.clear();
3446 DeclaratorInfo.complete(ThisDecl);
3459 Diag(CommaLoc, diag::err_expected_semi_declaration)
3469 if (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
3470 DeclaratorInfo.isFirstDeclarator()) {
3471 Diag(CommaLoc, diag::err_multiple_template_declarators)
3472 << TemplateInfo.Kind;
3476 DeclaratorInfo.clear();
3480 DeclaratorInfo.setCommaLoc(CommaLoc);
3485 DiagnoseAndSkipCXX11Attributes();
3486 MaybeParseGNUAttributes(DeclaratorInfo);
3487 DiagnoseAndSkipCXX11Attributes();
3489 if (ParseCXXMemberDeclaratorBeforeInitializer(
3490 DeclaratorInfo, VS, BitfieldSize, LateParsedAttrs))
3495 ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
3528 assert(Tok.
isOneOf(tok::equal, tok::l_brace) &&
3529 "Data member initializer not starting with '=' or '{'");
3531 bool IsFieldInitialization = isa_and_present<FieldDecl>(
D);
3535 IsFieldInitialization
3544 IsFieldInitialization;
3547 if (Tok.
is(tok::kw_delete)) {
3554 if (IsFunction || Next.isOneOf(tok::semi, tok::comma, tok::eof)) {
3560 SkipDeletedFunctionBody();
3563 }
else if (Tok.
is(tok::kw_default)) {
3565 Diag(Tok, diag::err_default_delete_in_multiple_declaration)
3573 if (
const auto *PD = dyn_cast_or_null<MSPropertyDecl>(
D)) {
3574 Diag(Tok, diag::err_ms_property_initializer) << PD;
3577 return ParseInitializer();
3585 assert(isCXX11FinalKeyword() &&
"not a class definition");
3591 CheckMisplacedCXX11Attribute(Attrs, AttrFixitLoc);
3596 if (Tok.
isNot(tok::colon) && Tok.
isNot(tok::l_brace))
3603 if (Tok.
is(tok::colon)) {
3606 ParsingClassDefinition ParsingDef(*
this,
TagDecl,
true,
3612 ParseBaseClause(
nullptr);
3616 if (!Tok.
is(tok::l_brace)) {
3618 diag::err_expected_lbrace_after_base_specifiers);
3624 assert(Tok.
is(tok::l_brace));
3630 if (Tok.
is(tok::kw___attribute)) {
3632 MaybeParseGNUAttributes(Attrs);
3642 case tok::kw___if_exists:
3643 case tok::kw___if_not_exists:
3644 ParseMicrosoftIfExistsClassDeclaration(
TagType, AccessAttrs, AS);
3649 ConsumeExtraSemi(InsideStruct,
TagType);
3653 case tok::annot_pragma_vis:
3654 HandlePragmaVisibility();
3656 case tok::annot_pragma_pack:
3659 case tok::annot_pragma_align:
3660 HandlePragmaAlign();
3662 case tok::annot_pragma_ms_pointers_to_members:
3663 HandlePragmaMSPointersToMembers();
3665 case tok::annot_pragma_ms_pragma:
3666 HandlePragmaMSPragma();
3668 case tok::annot_pragma_ms_vtordisp:
3669 HandlePragmaMSVtorDisp();
3671 case tok::annot_pragma_dump:
3675 case tok::kw_namespace:
3677 DiagnoseUnexpectedNamespace(cast<NamedDecl>(
TagDecl));
3680 case tok::kw_private:
3684 ParsedTemplateInfo TemplateInfo;
3685 return ParseCXXClassMemberDeclaration(AS, AccessAttrs, TemplateInfo);
3688 case tok::kw_public:
3689 case tok::kw_protected: {
3699 AccessAttrs.
clear();
3700 MaybeParseGNUAttributes(AccessAttrs);
3705 Diag(EndLoc, diag::err_expected)
3709 Diag(EndLoc, diag::err_expected)
3721 AccessAttrs.
clear();
3727 case tok::annot_attr_openmp:
3728 case tok::annot_pragma_openmp:
3729 return ParseOpenMPDeclarativeDirectiveWithExtDecl(
3731 case tok::annot_pragma_openacc:
3739 ConsumeAnnotationToken();
3742 ParsedTemplateInfo TemplateInfo;
3743 return ParseCXXClassMemberDeclaration(AS, AccessAttrs, TemplateInfo);
3760 "Invalid TagType!");
3762 llvm::TimeTraceScope TimeScope(
"ParseClass", [&]() {
3763 if (
auto *TD = dyn_cast_or_null<NamedDecl>(
TagDecl))
3764 return TD->getQualifiedNameAsString();
3765 return std::string(
"<anonymous>");
3769 "parsing struct/union/class body");
3773 bool NonNestedClass =
true;
3774 if (!ClassStack.empty()) {
3776 if (S->isClassScope()) {
3778 NonNestedClass =
false;
3781 if (getCurrentClass().IsInterface) {
3785 ? cast<NamedDecl>(
TagDecl)->getQualifiedNameAsString()
3791 if (S->isFunctionScope())
3802 ParsingClassDefinition ParsingDef(*
this,
TagDecl, NonNestedClass,
3810 bool IsFinalSpelledSealed =
false;
3811 bool IsAbstract =
false;
3819 if (isCXX11FinalKeyword()) {
3822 Diag(Skipped, diag::err_duplicate_class_virt_specifier)
3827 IsFinalSpelledSealed =
true;
3832 Diag(Skipped, diag::err_duplicate_class_virt_specifier)
3840 Diag(FinalLoc, diag::err_override_control_interface)
3844 ? diag::warn_cxx98_compat_override_control_keyword
3845 : diag::ext_override_control_keyword)
3848 Diag(FinalLoc, diag::ext_ms_sealed_keyword);
3850 Diag(AbstractLoc, diag::ext_ms_abstract_keyword);
3852 Diag(FinalLoc, diag::ext_warn_gnu_final);
3855 "not a class definition");
3861 CheckMisplacedCXX11Attribute(Attrs, AttrFixitLoc);
3870 if (!Tok.
is(tok::colon) && !Tok.
is(tok::l_brace)) {
3877 if (Tok.
is(tok::colon)) {
3878 ParseScope InheritanceScope(
this,
getCurScope()->getFlags() |
3882 if (!Tok.
is(tok::l_brace)) {
3883 bool SuggestFixIt =
false;
3887 case tok::kw_private:
3888 case tok::kw_protected:
3889 case tok::kw_public:
3892 case tok::kw_static_assert:
3896 case tok::kw_template:
3897 SuggestFixIt =
true;
3899 case tok::identifier:
3900 SuggestFixIt = isConstructorDeclarator(
true);
3903 SuggestFixIt = isCXXSimpleDeclaration(
false);
3908 Diag(BraceLoc, diag::err_expected_lbrace_after_base_specifiers);
3922 assert(Tok.
is(tok::l_brace));
3928 IsFinalSpelledSealed, IsAbstract,
3929 T.getOpenLocation());
3944 while (!tryParseMisplacedModuleImport() && Tok.
isNot(tok::r_brace) &&
3945 Tok.
isNot(tok::eof)) {
3947 ParseCXXClassMemberDeclarationWithPragmas(
3949 MaybeDestroyTemplateIds();
3958 MaybeParseGNUAttributes(attrs);
3962 T.getOpenLocation(),
3963 T.getCloseLocation(), attrs);
3970 if (
TagDecl && NonNestedClass) {
3977 ParseLexedPragmas(getCurrentClass());
3978 ParseLexedAttributes(getCurrentClass());
3979 ParseLexedMethodDeclarations(getCurrentClass());
3984 ParseLexedMemberInitializers(getCurrentClass());
3985 ParseLexedMethodDefs(getCurrentClass());
3986 PrevTokLocation = SavedPrevTokLocation;
4001void Parser::DiagnoseUnexpectedNamespace(
NamedDecl *
D) {
4002 assert(Tok.
is(tok::kw_namespace));
4041void Parser::ParseConstructorInitializer(
Decl *ConstructorDecl) {
4042 assert(Tok.
is(tok::colon) &&
4043 "Constructor initializer always starts with ':'");
4051 bool AnyErrors =
false;
4054 if (Tok.
is(tok::code_completion)) {
4057 ConstructorDecl, MemInitializers);
4061 MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
4063 MemInitializers.push_back(MemInit.
get());
4067 if (Tok.
is(tok::comma))
4069 else if (Tok.
is(tok::l_brace))
4074 Tok.
isOneOf(tok::identifier, tok::coloncolon)) {
4076 Diag(
Loc, diag::err_ctor_init_missing_comma)
4082 << tok::l_brace << tok::comma;
4107 if (ParseOptionalCXXScopeSpecifier(SS,
nullptr,
4120 if (Tok.
is(tok::identifier)) {
4125 }
else if (Tok.
is(tok::annot_decltype)) {
4130 ParseDecltypeSpecifier(DS);
4131 }
else if (Tok.
is(tok::annot_pack_indexing_type)) {
4134 ParsePackIndexingType(DS);
4137 ? takeTemplateIdAnnotation(Tok)
4142 assert(Tok.
is(tok::annot_typename) &&
"template-id -> type failed");
4144 ConsumeAnnotationToken();
4146 Diag(Tok, diag::err_expected_member_or_base_name);
4153 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
4156 ExprResult InitList = ParseBraceInitializer();
4166 TemplateTypeTy.
get(), DS, IdLoc,
4167 InitList.
get(), EllipsisLoc);
4168 }
else if (Tok.
is(tok::l_paren)) {
4173 ExprVector ArgExprs;
4174 auto RunSignatureHelp = [&] {
4179 ConstructorDecl, SS, TemplateTypeTy.
get(), ArgExprs, II,
4180 T.getOpenLocation(),
false);
4181 CalledSignatureHelp =
true;
4182 return PreferredType;
4184 if (Tok.
isNot(tok::r_paren) && ParseExpressionList(ArgExprs, [&] {
4185 PreferredType.enterFunctionArgument(Tok.
getLocation(),
4202 ConstructorDecl,
getCurScope(), SS, II, TemplateTypeTy.
get(), DS, IdLoc,
4203 T.getOpenLocation(), ArgExprs,
T.getCloseLocation(), EllipsisLoc);
4210 return Diag(Tok, diag::err_expected_either) << tok::l_paren << tok::l_brace;
4212 return Diag(Tok, diag::err_expected) << tok::l_paren;
4230 ExceptionSpecTokens =
nullptr;
4234 if (Tok.
isNot(tok::kw_throw) && Tok.
isNot(tok::kw_noexcept))
4238 bool IsNoexcept = Tok.
is(tok::kw_noexcept);
4239 Token StartTok = Tok;
4243 if (!Tok.
is(tok::l_paren)) {
4246 Diag(Tok, diag::warn_cxx98_compat_noexcept_decl);
4247 NoexceptExpr =
nullptr;
4251 Diag(Tok, diag::err_expected_lparen_after) <<
"throw";
4257 ExceptionSpecTokens->push_back(StartTok);
4258 ExceptionSpecTokens->push_back(Tok);
4259 SpecificationRange.
setEnd(ConsumeParen());
4261 ConsumeAndStoreUntil(tok::r_paren, *ExceptionSpecTokens,
4264 SpecificationRange.
setEnd(ExceptionSpecTokens->back().getLocation());
4270 if (Tok.
is(tok::kw_throw)) {
4271 Result = ParseDynamicExceptionSpecification(
4272 SpecificationRange, DynamicExceptions, DynamicExceptionRanges);
4273 assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
4274 "Produced different number of exception types and ranges.");
4278 if (Tok.
isNot(tok::kw_noexcept))
4281 Diag(Tok, diag::warn_cxx98_compat_noexcept_decl);
4289 if (Tok.
is(tok::l_paren)) {
4302 NoexceptRange =
SourceRange(KeywordLoc,
T.getCloseLocation());
4309 NoexceptRange =
SourceRange(KeywordLoc, KeywordLoc);
4313 SpecificationRange = NoexceptRange;
4318 if (Tok.
is(tok::kw_throw)) {
4319 Diag(Tok.
getLocation(), diag::err_dynamic_and_noexcept_specification);
4320 ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
4321 DynamicExceptionRanges);
4324 Diag(Tok.
getLocation(), diag::err_dynamic_and_noexcept_specification);
4332 if (
P.getLangOpts().CPlusPlus11) {
4333 const char *Replacement = IsNoexcept ?
"noexcept" :
"noexcept(false)";
4335 ? diag::ext_dynamic_exception_spec
4336 : diag::warn_exception_spec_deprecated)
4357 assert(Tok.
is(tok::kw_throw) &&
"expected throw");
4361 if (
T.consumeOpen()) {
4362 Diag(Tok, diag::err_expected_lparen_after) <<
"throw";
4369 if (Tok.
is(tok::ellipsis)) {
4372 Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
4374 SpecificationRange.
setEnd(
T.getCloseLocation());
4381 while (Tok.
isNot(tok::r_paren)) {
4384 if (Tok.
is(tok::ellipsis)) {
4390 if (!Res.isInvalid())
4394 if (!Res.isInvalid()) {
4395 Exceptions.push_back(Res.get());
4396 Ranges.push_back(
Range);
4404 SpecificationRange.
setEnd(
T.getCloseLocation());
4406 Exceptions.empty());
4413 bool MayBeFollowedByDirectInit) {
4414 assert(Tok.
is(tok::arrow) &&
"expected arrow");
4424void Parser::ParseTrailingRequiresClause(
Declarator &
D) {
4425 assert(Tok.
is(tok::kw_requires) &&
"expected requires");
4443 DeclaratorScopeObj DeclScopeObj(*
this, SS);
4445 DeclScopeObj.EnterDeclaratorScope();
4454 std::optional<Sema::CXXThisScopeRAII> ThisScope;
4455 InitCXXThisScopeForDeclaratorIfRelevant(
D,
D.getDeclSpec(), ThisScope);
4457 TrailingRequiresClause =
4460 TrailingRequiresClause =
4463 if (!
D.isDeclarationOfFunction()) {
4465 diag::err_requires_clause_on_declarator_not_declaring_a_function);
4470 SkipUntil({tok::l_brace, tok::arrow, tok::kw_try, tok::comma, tok::colon},
4473 D.setTrailingRequiresClause(TrailingRequiresClause.
get());
4476 if (
D.isFunctionDeclarator() && Tok.
is(tok::arrow) &&
4477 D.getDeclSpec().getTypeSpecType() ==
TST_auto) {
4481 ParseTrailingReturnType(
Range,
false);
4485 diag::err_requires_clause_must_appear_after_trailing_return)
4487 auto &FunctionChunk =
D.getFunctionTypeInfo();
4488 FunctionChunk.HasTrailingReturnType = TrailingReturnType.
isUsable();
4489 FunctionChunk.TrailingReturnType = TrailingReturnType.
get();
4492 SkipUntil({tok::equal, tok::l_brace, tok::arrow, tok::kw_try, tok::comma},
4501 bool NonNestedClass,
4503 assert((NonNestedClass || !ClassStack.empty()) &&
4504 "Nested class without outer class");
4505 ClassStack.push(
new ParsingClass(ClassDecl, NonNestedClass, IsInterface));
4511void Parser::DeallocateParsedClasses(Parser::ParsingClass *
Class) {
4512 for (
unsigned I = 0, N =
Class->LateParsedDeclarations.size(); I != N; ++I)
4513 delete Class->LateParsedDeclarations[I];
4524 assert(!ClassStack.empty() &&
"Mismatched push/pop for class parsing");
4528 ParsingClass *Victim = ClassStack.top();
4530 if (Victim->TopLevelClass) {
4533 DeallocateParsedClasses(Victim);
4536 assert(!ClassStack.empty() &&
"Missing top-level class?");
4538 if (Victim->LateParsedDeclarations.empty()) {
4543 DeallocateParsedClasses(Victim);
4551 "Nested class outside of class scope?");
4552 ClassStack.top()->LateParsedDeclarations.push_back(
4553 new LateParsedClass(
this, Victim));
4579 case tok::code_completion:
4586 case tok::numeric_constant: {
4594 StringRef Spelling = PP.
getSpelling(ExpansionLoc, ExpansionBuf);
4595 if (Spelling ==
"__clang__") {
4599 Diag(Tok, diag::warn_wrong_clang_attr_namespace)
4615 case tok::pipeequal:
4616 case tok::caretequal:
4618 case tok::exclaimequal:
4624 StringRef Spelling = PP.
getSpelling(SpellingLoc, SpellingBuf);
4633void Parser::ParseOpenMPAttributeArgs(
const IdentifierInfo *AttrName,
4638 if (
T.consumeOpen()) {
4639 Diag(Tok, diag::err_expected) << tok::l_paren;
4643 if (AttrName->
isStr(
"directive")) {
4649 OMPBeginTok.
setKind(tok::annot_attr_openmp);
4651 OpenMPTokens.push_back(OMPBeginTok);
4653 ConsumeAndStoreUntil(tok::r_paren, OpenMPTokens,
false,
4657 OMPEndTok.
setKind(tok::annot_pragma_openmp_end);
4659 OpenMPTokens.push_back(OMPEndTok);
4661 assert(AttrName->
isStr(
"sequence") &&
4662 "Expected either 'directive' or 'sequence'");
4671 const IdentifierInfo *Ident = TryParseCXX11AttributeIdentifier(IdentLoc);
4675 if (Ident && Ident->
isStr(
"omp") && !ExpectAndConsume(tok::coloncolon))
4676 Ident = TryParseCXX11AttributeIdentifier(IdentLoc);
4680 if (!Ident || (!Ident->
isStr(
"directive") && !Ident->
isStr(
"sequence"))) {
4687 ParseOpenMPAttributeArgs(Ident, OpenMPTokens);
4701 case ParsedAttr::AT_CarriesDependency:
4702 case ParsedAttr::AT_Deprecated:
4703 case ParsedAttr::AT_FallThrough:
4704 case ParsedAttr::AT_CXX11NoReturn:
4705 case ParsedAttr::AT_NoUniqueAddress:
4706 case ParsedAttr::AT_Likely:
4707 case ParsedAttr::AT_Unlikely:
4709 case ParsedAttr::AT_WarnUnusedResult:
4710 return !ScopeName && AttrName->
getName() ==
"nodiscard";
4711 case ParsedAttr::AT_Unused:
4712 return !ScopeName && AttrName->
getName() ==
"maybe_unused";
4724 assert(Tok.
is(tok::l_paren) &&
"Not a C++11 attribute argument list");
4732 TentativeParsingAction TPA(*
this);
4735 if (Res.isInvalid()) {
4738 if (Tok.
is(tok::r_paren))
4743 if (!Tok.
isOneOf(tok::r_paren, tok::r_square)) {
4748 if (!Res.isInvalid()) {
4749 auto *
E = Res.get();
4788bool Parser::ParseCXX11AttributeArgs(
4792 assert(Tok.
is(tok::l_paren) &&
"Not a C++11 attribute argument list");
4796 LO.CPlusPlus ? ParsedAttr::Form::CXX11() :
ParsedAttr::Form::
C23();
4802 Form = ParsedAttr::Form::Microsoft();
4817 if (ScopeName && (ScopeName->
isStr(
"gnu") || ScopeName->
isStr(
"__gnu__"))) {
4820 ParseGNUAttributeArgs(AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName,
4821 ScopeLoc, Form,
nullptr);
4826 if (ScopeName && ScopeName->
isStr(
"omp") &&
4827 (AttrName->
isStr(
"directive") || AttrName->
isStr(
"sequence"))) {
4829 ? diag::warn_omp51_compat_attributes
4830 : diag::ext_omp_attributes);
4832 ParseOpenMPAttributeArgs(AttrName, OpenMPTokens);
4841 if (ScopeName && (ScopeName->
isStr(
"clang") || ScopeName->
isStr(
"_Clang")))
4842 NumArgs = ParseClangAttributeArgs(AttrName, AttrNameLoc, Attrs, EndLoc,
4843 ScopeName, ScopeLoc, Form);
4845 else if (!ScopeName && AttrName->
isStr(
"assume")) {
4846 if (ParseCXXAssumeAttributeArg(Attrs, AttrName, AttrNameLoc, EndLoc, Form))
4850 NumArgs = ParseAttributeArgsCommon(AttrName, AttrNameLoc, Attrs, EndLoc,
4851 ScopeName, ScopeLoc, Form);
4853 if (!Attrs.
empty() &&
4859 Diag(LParenLoc, diag::warn_unknown_attribute_ignored) << AttrName;
4860 Attr.setInvalid(
true);
4868 if (
Attr.getMaxArgs() && !NumArgs) {
4871 Diag(LParenLoc, diag::err_attribute_requires_arguments) << AttrName;
4872 Attr.setInvalid(
true);
4873 }
else if (!
Attr.getMaxArgs()) {
4877 Diag(LParenLoc, diag::err_cxx11_attribute_forbids_arguments)
4880 Attr.setInvalid(
true);
4913 if (Tok.
is(tok::kw_alignas)) {
4920 ParseAlignmentSpecifier(Attrs, EndLoc);
4931 if (!Tok.
is(tok::l_paren))
4934 ParseAttributeArgsCommon(AttrName,
Loc, Attrs, EndLoc,
4938 Attrs.
addNew(AttrName,
Loc,
nullptr,
Loc,
nullptr, 0, Form);
4942 assert(Tok.
is(tok::l_square) &&
NextToken().is(tok::l_square) &&
4943 "Not a double square bracket attribute list");
4948 : diag::warn_ext_cxx11_attributes);
4951 : diag::warn_ext_c23_attributes);
4955 checkCompoundToken(OpenLoc, tok::l_square, CompoundToken::AttrBegin);
4960 if (Tok.
is(tok::kw_using)) {
4962 ? diag::warn_cxx14_compat_using_attribute_ns
4963 : diag::ext_using_attribute_ns);
4966 CommonScopeName = TryParseCXX11AttributeIdentifier(
4968 if (!CommonScopeName) {
4976 bool AttrParsed =
false;
4977 while (!Tok.
isOneOf(tok::r_square, tok::semi, tok::eof)) {
4981 if (ExpectAndConsume(tok::comma)) {
4995 AttrName = TryParseCXX11AttributeIdentifier(
5004 ScopeName = AttrName;
5007 AttrName = TryParseCXX11AttributeIdentifier(
5017 if (CommonScopeName) {
5019 Diag(ScopeLoc, diag::err_using_attribute_ns_conflict)
5022 ScopeName = CommonScopeName;
5023 ScopeLoc = CommonScopeLoc;
5028 if (Tok.
is(tok::l_paren))
5029 AttrParsed = ParseCXX11AttributeArgs(AttrName, AttrLoc, Attrs, EndLoc,
5030 ScopeName, ScopeLoc, OpenMPTokens);
5036 ScopeName, ScopeLoc,
nullptr, 0,
5038 : ParsedAttr::Form::C23());
5043 Diag(Tok, diag::err_cxx11_attribute_forbids_ellipsis) << AttrName;
5048 if (Tok.
is(tok::semi)) {
5054 if (ExpectAndConsume(tok::r_square))
5056 else if (Tok.
is(tok::r_square))
5057 checkCompoundToken(CloseLoc, tok::r_square, CompoundToken::AttrEnd);
5060 if (ExpectAndConsume(tok::r_square))
5073 ParseCXX11AttributeSpecifier(Attrs, &EndLoc);
5074 }
while (isAllowedCXX11AttributeSpecifier());
5079void Parser::DiagnoseAndSkipCXX11Attributes() {
5088 (Keyword ?
Diag(StartLoc, diag::err_keyword_not_allowed) << Keyword
5089 :
Diag(StartLoc, diag::err_attributes_not_allowed))
5097 if (!isCXX11AttributeSpecifier())
5101 if (Tok.
is(tok::l_square)) {
5105 EndLoc =
T.getCloseLocation();
5112 "not an attribute specifier");
5115 if (!
T.consumeOpen())
5117 EndLoc =
T.getCloseLocation();
5119 }
while (isCXX11AttributeSpecifier());
5126 assert(Tok.
is(tok::identifier) &&
"Not a Microsoft attribute list");
5128 assert(UuidIdent->
getName() ==
"uuid" &&
"Not a Microsoft attribute list");
5135 if (
T.consumeOpen()) {
5136 Diag(Tok, diag::err_expected) << tok::l_paren;
5141 if (isTokenStringLiteral()) {
5146 ArgExprs.push_back(StringResult.
get());
5163 while (Tok.
isNot(tok::r_paren)) {
5165 Diag(Tok, diag::err_attribute_uuid_malformed_guid);
5170 SpellingBuffer.resize(Tok.
getLength() + 1);
5172 StringRef TokSpelling = PP.
getSpelling(Tok, SpellingBuffer, &Invalid);
5177 StrBuffer += TokSpelling;
5183 Diag(Tok, diag::err_attribute_uuid_malformed_guid);
5193 Toks[0].
setKind(tok::string_literal);
5199 ArgExprs.push_back(UuidString);
5202 if (!
T.consumeClose()) {
5205 ParsedAttr::Form::Microsoft());
5218 assert(Tok.
is(tok::l_square) &&
"Not a Microsoft attribute list");
5229 SkipUntil(tok::r_square, tok::identifier,
5231 if (Tok.
is(tok::code_completion)) {
5239 if (Tok.
isNot(tok::identifier))
5242 ParseMicrosoftUuidAttributeArgs(Attrs);
5252 bool AttrParsed =
false;
5253 if (Tok.
is(tok::l_paren)) {
5256 ParseCXX11AttributeArgs(II, NameLoc, Attrs, &EndLoc,
nullptr,
5258 ReplayOpenMPAttributeTokens(OpenMPTokens);
5262 ParsedAttr::Form::Microsoft());
5269 EndLoc =
T.getCloseLocation();
5270 }
while (Tok.
is(tok::l_square));
5275void Parser::ParseMicrosoftIfExistsClassDeclaration(
5278 IfExistsCondition
Result;
5279 if (ParseMicrosoftIfExistsCondition(
Result))
5283 if (
Braces.consumeOpen()) {
5284 Diag(Tok, diag::err_expected) << tok::l_brace;
5288 switch (
Result.Behavior) {
5294 Diag(
Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
5304 while (Tok.
isNot(tok::r_brace) && !isEofOrEom()) {
5306 if (Tok.
isOneOf(tok::kw___if_exists, tok::kw___if_not_exists)) {
5307 ParseMicrosoftIfExistsClassDeclaration(
TagType, AccessAttrs, CurAS);
5312 if (Tok.
is(tok::semi)) {
5313 ConsumeExtraSemi(InsideStruct,
TagType);
5323 if (Tok.
is(tok::colon))
5327 Diag(Tok, diag::err_expected) << tok::colon;
5332 ParsedTemplateInfo TemplateInfo;
5334 ParseCXXClassMemberDeclaration(CurAS, AccessAttrs, TemplateInfo);
Defines the clang::ASTContext interface.
Defines the C++ template declaration subclasses.
llvm::MachO::RecordLoc RecordLoc
Defines an enumeration for C++ overloaded operators.
static void diagnoseDynamicExceptionSpecification(Parser &P, SourceRange Range, bool IsNoexcept)
static bool IsBuiltInOrStandardCXX11Attribute(IdentifierInfo *AttrName, IdentifierInfo *ScopeName)
static FixItHint getStaticAssertNoMessageFixIt(const Expr *AssertExpr, SourceLocation EndExprLoc)
This file declares facilities that support code completion.
Defines the clang::TokenKind enum and support functions.
#define TRANSFORM_TYPE_TRAIT_DEF(Enum, _)
const NestedNameSpecifier * Specifier
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
const clang::PrintingPolicy & getPrintingPolicy() const
Attr - This represents one attribute.
@ AS_Microsoft
[uuid("...")] class Foo
Kind getParsedKind() const
RAII class that helps handle the parsing of an open/close delimiter pair, such as braces { ....
SourceLocation getOpenLocation() const
SourceLocation getCloseLocation() const
Represents a C++ nested-name-specifier or a global scope specifier.
bool isNotEmpty() const
A scope specifier is present, but may be valid or invalid.
bool isValid() const
A scope specifier is present, and it refers to a real scope.
SourceRange getRange() const
SourceLocation getBeginLoc() const
bool isSet() const
Deprecated.
bool isInvalid() const
An error occurred during parsing of the scope specifier.
void setTemplateParamLists(ArrayRef< TemplateParameterList * > L)
Represents a character-granular source range.
static CharSourceRange getTokenRange(SourceRange R)
ColonProtectionRAIIObject - This sets the Parser::ColonIsSacred bool and restores it when destroyed.
Captures information about "declaration specifiers".
void setTypeArgumentRange(SourceRange range)
static const TST TST_typename
void ClearStorageClassSpecs()
TST getTypeSpecType() const
SCS getStorageClassSpec() const
bool SetTypeSpecType(TST T, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, const PrintingPolicy &Policy)
SourceRange getSourceRange() const LLVM_READONLY
void SetPackIndexingExpr(SourceLocation EllipsisLoc, Expr *Pack)
void SetRangeEnd(SourceLocation Loc)
static const TST TST_interface
unsigned getTypeQualifiers() const
getTypeQualifiers - Return a set of TQs.
void SetRangeStart(SourceLocation Loc)
bool SetFriendSpec(SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID)
static const TST TST_union
static const TST TST_typename_pack_indexing
SourceLocation getFriendSpecLoc() const
SourceLocation getModulePrivateSpecLoc() const
bool isFriendSpecifiedFirst() const
Expr * getRepAsExpr() const
static const TST TST_decltype
static const TST TST_class
bool hasTagDefinition() const
static const char * getSpecifierName(DeclSpec::TST T, const PrintingPolicy &Policy)
Turn a type-specifier-type into a string like "_Bool" or "union".
Decl * getRepAsDecl() const
CXXScopeSpec & getTypeSpecScope()
static const TST TST_decltype_auto
void setExternInLinkageSpec(bool Value)
static const TST TST_error
void forEachQualifier(llvm::function_ref< void(TQ, StringRef, SourceLocation)> Handle)
This method calls the passed in handler on each qual being set.
FriendSpecified isFriendSpecified() const
void takeAttributesFrom(ParsedAttributes &attrs)
static const TST TST_struct
Decl - This represents one declaration (or definition), e.g.
SourceLocation getEndLoc() const LLVM_READONLY
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
bool isInvalidDecl() const
SourceLocation getLocation() const
SourceLocation getBeginLoc() const LLVM_READONLY
virtual SourceRange getSourceRange() const LLVM_READONLY
Source range that this declaration covers.
Information about one declarator, including the parsed type information and the identifier.
bool isFunctionDeclarator(unsigned &idx) const
isFunctionDeclarator - This method returns true if the declarator is a function declarator (looking t...
bool isPastIdentifier() const
isPastIdentifier - Return true if we have parsed beyond the point where the name would appear.
bool isDeclarationOfFunction() const
Determine whether the declaration that will be produced from this declaration will be a function.
const DeclSpec & getDeclSpec() const
getDeclSpec - Return the declaration-specifier that this declarator was declared with.
const ParsedAttributes & getAttributes() const
SourceLocation getIdentifierLoc() const
void SetIdentifier(const IdentifierInfo *Id, SourceLocation IdLoc)
Set the name of this declarator to be the given identifier.
void setTemplateParameterLists(ArrayRef< TemplateParameterList * > TPLs)
Sets the template parameter lists that preceded the declarator.
void setFunctionDefinitionKind(FunctionDefinitionKind Val)
bool hasName() const
hasName - Whether this declarator has a name, which might be an identifier (accessible via getIdentif...
void setAsmLabel(Expr *E)
void SetRangeEnd(SourceLocation Loc)
SetRangeEnd - Set the end of the source range to Loc, unless it's invalid.
DeclaratorChunk::FunctionTypeInfo & getFunctionTypeInfo()
getFunctionTypeInfo - Retrieves the function type info object (looking through parentheses).
A little helper class used to produce diagnostics.
RAII object that enters a new expression evaluation context.
Represents a standard C++ module export declaration.
This represents one expression.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
bool hasPlaceholderType() const
Returns whether this expression has a placeholder type.
ExtensionRAIIObject - This saves the state of extension warnings when constructed and disables them.
Annotates a diagnostic with some code that should be inserted, removed, or replaced to fix the proble...
static FixItHint CreateInsertionFromRange(SourceLocation InsertionLoc, CharSourceRange FromRange, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code from FromRange at a specific location.
static FixItHint CreateReplacement(CharSourceRange RemoveRange, StringRef Code)
Create a code modification hint that replaces the given source range with the given code string.
static FixItHint CreateRemoval(CharSourceRange RemoveRange)
Create a code modification hint that removes the given source range.
static FixItHint CreateInsertion(SourceLocation InsertionLoc, StringRef Code, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code string at a specific location.
One of these records is kept for each identifier that is lexed.
bool isStr(const char(&Str)[StrLen]) const
Return true if this is the identifier for the specified string.
void revertTokenIDToIdentifier()
Revert TokenID to tok::identifier; used for GNU libstdc++ 4.2 compatibility.
StringRef getName() const
Return the actual identifier string.
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
static IntegerLiteral * Create(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l)
Returns a new integer literal with value 'V' and type 'type'.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
This represents a decl that may have a name.
Wrapper for void* pointer.
static OpaquePtr make(PtrTy P)
A single parameter index whose accessors require each use to make explicit the parameter index encodi...
RAII object that makes sure paren/bracket/brace count is correct after declaration/statement parsing,...
ParsedAttr - Represents a syntactic attribute.
static const ParsedAttributesView & none()
void addAll(iterator B, iterator E)
ParsedAttributes - A collection of parsed attributes.
ParsedAttr * addNew(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, ArgsUnion *args, unsigned numArgs, ParsedAttr::Form form, SourceLocation ellipsisLoc=SourceLocation())
Add attribute with expression arguments.
void takeAllFrom(ParsedAttributes &Other)
Parser - This implements a parser for the C family of languages.
TypeResult ParseTypeName(SourceRange *Range=nullptr, DeclaratorContext Context=DeclaratorContext::TypeName, AccessSpecifier AS=AS_none, Decl **OwnedType=nullptr, ParsedAttributes *Attrs=nullptr)
ParseTypeName type-name: [C99 6.7.6] specifier-qualifier-list abstract-declarator[opt].
DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
SourceLocation ConsumeToken()
ConsumeToken - Consume the current 'peek token' and lex the next one.
DeclGroupPtrTy ParseOpenACCDirectiveDecl()
Placeholder for now, should just ignore the directives after emitting a diagnostic.
static TypeResult getTypeAnnotation(const Token &Tok)
getTypeAnnotation - Read a parsed type out of an annotation token.
ExprResult ParseConstraintLogicalOrExpression(bool IsTrailingRequiresClause)
Parse a constraint-logical-or-expression.
bool ParseUnqualifiedId(CXXScopeSpec &SS, ParsedType ObjectType, bool ObjectHadErrors, bool EnteringContext, bool AllowDestructorName, bool AllowConstructorName, bool AllowDeductionGuide, SourceLocation *TemplateKWLoc, UnqualifiedId &Result)
Parse a C++ unqualified-id (or a C identifier), which describes the name of an entity.
SourceLocation ConsumeAnyToken(bool ConsumeCodeCompletionTok=false)
ConsumeAnyToken - Dispatch to the right Consume* method based on the current token type.
ExprResult ParseConstantExpression()
ExprResult ParseConditionalExpression()
bool TryConsumeToken(tok::TokenKind Expected)
Scope * getCurScope() const
const TargetInfo & getTargetInfo() const
OpaquePtr< TemplateName > TemplateTy
bool SkipUntil(tok::TokenKind T, SkipUntilFlags Flags=static_cast< SkipUntilFlags >(0))
SkipUntil - Read tokens until we get to the specified token, then consume it (unless StopBeforeMatch ...
void SkipMalformedDecl()
SkipMalformedDecl - Read tokens until we get to some likely good stopping point for skipping past a s...
friend class ObjCDeclContextSwitch
ExprResult ParseConstantExpressionInExprEvalContext(TypeCastState isTypeCast=NotTypeCast)
const LangOptions & getLangOpts() const
ExprResult ParseExpression(TypeCastState isTypeCast=NotTypeCast)
Simple precedence-based parser for binary/ternary operators.
@ StopBeforeMatch
Stop skipping at specified token, but don't skip the token itself.
@ StopAtCodeCompletion
Stop at code completion.
@ StopAtSemi
Stop skipping at semicolon.
ExprResult ParseUnevaluatedStringLiteralExpression()
const Token & NextToken()
NextToken - This peeks ahead one token and returns it without consuming it.
SmallVector< TemplateParameterList *, 4 > TemplateParameterLists
bool TryAnnotateCXXScopeToken(bool EnteringContext=false)
TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only annotates C++ scope specifiers and ...
RAII object used to inform the actions that we're currently parsing a declaration.
A class for parsing a DeclSpec.
A class for parsing a declarator.
bool isIncrementalProcessingEnabled() const
Returns true if incremental processing is enabled.
void EnterToken(const Token &Tok, bool IsReinject)
Enters a token in the token stream to be lexed next.
void AnnotateCachedTokens(const Token &Tok)
We notify the Preprocessor that if it is caching tokens (because backtrack is enabled) it should repl...
SourceManager & getSourceManager() const
bool isBacktrackEnabled() const
True if EnableBacktrackAtThisPos() was called and caching of tokens is on.
void RevertCachedTokens(unsigned N)
When backtracking is enabled and tokens are cached, this allows to revert a specific number of tokens...
StringRef getSpelling(SourceLocation loc, SmallVectorImpl< char > &buffer, bool *invalid=nullptr) const
Return the 'spelling' of the token at the given location; does not go up to the spelling location or ...
IdentifierTable & getIdentifierTable()
bool isCodeCompletionReached() const
Returns true if code-completion is enabled and we have hit the code-completion point.
SourceLocation getLastCachedTokenLocation() const
Get the location of the last cached token, suitable for setting the end location of an annotation tok...
SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset=0)
Computes the source location just past the end of the token at this source location.
PrettyDeclStackTraceEntry - If a crash occurs in the parser while parsing something related to a decl...
A (possibly-)qualified type.
Represents a struct/union/class.
Scope - A scope is a transient data structure that is used while parsing the program.
unsigned getFlags() const
getFlags - Return the flags for this scope.
@ FunctionPrototypeScope
This is a scope that corresponds to the parameters within a function prototype.
@ TypeAliasScope
This is a scope of type alias declaration.
@ ClassInheritanceScope
We are between inheritance colon and the real class/struct definition scope.
@ ClassScope
The scope of a struct/union/class definition.
@ FunctionDeclarationScope
This is a scope that corresponds to the parameters within a function prototype for a function declara...
@ DeclScope
This is a scope that can contain a declaration.
void CodeCompleteAttribute(AttributeCommonInfo::Syntax Syntax, AttributeCompletion Completion=AttributeCompletion::Attribute, const IdentifierInfo *Scope=nullptr)
QualType ProduceCtorInitMemberSignatureHelp(Decl *ConstructorDecl, CXXScopeSpec SS, ParsedType TemplateTypeTy, ArrayRef< Expr * > ArgExprs, IdentifierInfo *II, SourceLocation OpenParLoc, bool Braced)
void CodeCompleteNamespaceAliasDecl(Scope *S)
void CodeCompleteUsing(Scope *S)
void CodeCompleteUsingDirective(Scope *S)
@ PCC_TopLevelOrExpression
Code completion occurs at top-level in a REPL session.
@ PCC_Namespace
Code completion occurs at top-level or namespace context.
void CodeCompleteAfterFunctionEquals(Declarator &D)
void CodeCompleteConstructorInitializer(Decl *Constructor, ArrayRef< CXXCtorInitializer * > Initializers)
void CodeCompleteOrdinaryName(Scope *S, ParserCompletionContext CompletionContext)
void CodeCompleteNamespaceDecl(Scope *S)
void CodeCompleteTag(Scope *S, unsigned TagSpec)
DeclResult ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, SourceLocation ModulePrivateLoc, CXXScopeSpec &SS, TemplateIdAnnotation &TemplateId, const ParsedAttributesView &Attr, MultiTemplateParamsArg TemplateParameterLists, SkipBodyInfo *SkipBody=nullptr)
Decl * ActOnAliasDeclaration(Scope *CurScope, AccessSpecifier AS, MultiTemplateParamsArg TemplateParams, SourceLocation UsingLoc, UnqualifiedId &Name, const ParsedAttributesView &AttrList, TypeResult Type, Decl *DeclFromDeclSpec)
void PopParsingClass(ParsingClassState state)
void ActOnDefinedDeclarationSpecifier(Decl *D)
Called once it is known whether a tag declaration is an anonymous union or struct.
Decl * ActOnUsingEnumDeclaration(Scope *CurScope, AccessSpecifier AS, SourceLocation UsingLoc, SourceLocation EnumLoc, SourceRange TyLoc, const IdentifierInfo &II, ParsedType Ty, CXXScopeSpec *SS=nullptr)
void ActOnFinishCXXNonNestedClass()
TemplateParameterList * ActOnTemplateParameterList(unsigned Depth, SourceLocation ExportLoc, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl * > Params, SourceLocation RAngleLoc, Expr *RequiresClause)
ActOnTemplateParameterList - Builds a TemplateParameterList, optionally constrained by RequiresClause...
void ActOnTagDefinitionError(Scope *S, Decl *TagDecl)
ActOnTagDefinitionError - Invoked when there was an unrecoverable error parsing the definition of a t...
void ActOnTagFinishDefinition(Scope *S, Decl *TagDecl, SourceRange BraceRange)
ActOnTagFinishDefinition - Invoked once we have finished parsing the definition of a tag (enumeration...
bool ActOnAccessSpecifier(AccessSpecifier Access, SourceLocation ASLoc, SourceLocation ColonLoc, const ParsedAttributesView &Attrs)
ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
TypeResult ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK, const CXXScopeSpec &SS, const IdentifierInfo *Name, SourceLocation TagLoc, SourceLocation NameLoc)
Decl * ActOnNamespaceAliasDef(Scope *CurScope, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *Ident)
DeclResult ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc, unsigned TagSpec, SourceLocation TagLoc, CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, SourceLocation EllipsisLoc, const ParsedAttributesView &Attr, MultiTemplateParamsArg TempParamLists)
Handle a friend tag declaration where the scope specifier was templated.
NamedDecl * ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, MultiTemplateParamsArg TemplateParameterLists, Expr *BitfieldWidth, const VirtSpecifiers &VS, InClassInitStyle InitStyle)
ActOnCXXMemberDeclarator - This is invoked when a C++ class member declarator is parsed.
BaseResult ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange, const ParsedAttributesView &Attrs, bool Virtual, AccessSpecifier Access, ParsedType basetype, SourceLocation BaseLoc, SourceLocation EllipsisLoc)
ActOnBaseSpecifier - Parsed a base specifier.
bool DiagnoseUnknownTemplateName(const IdentifierInfo &II, SourceLocation IILoc, Scope *S, const CXXScopeSpec *SS, TemplateTy &SuggestedTemplate, TemplateNameKind &SuggestedKind)
void FinalizeDeclaration(Decl *D)
FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform any semantic actions neces...
NamedDecl * ActOnFriendFunctionDecl(Scope *S, Declarator &D, MultiTemplateParamsArg TemplateParams)
DeclGroupPtrTy ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType=nullptr)
ASTContext & getASTContext() const
Decl * ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc, SourceLocation LBraceLoc)
We have parsed the start of an export declaration, including the '{' (if present).
ParsingClassState PushParsingClass()
ExprResult ActOnUnevaluatedStringLiteral(ArrayRef< Token > StringToks)
Decl * ActOnStartNamespaceDef(Scope *S, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *Ident, SourceLocation LBrace, const ParsedAttributesView &AttrList, UsingDirectiveDecl *&UsingDecl, bool IsNested)
ActOnStartNamespaceDef - This is called at the start of a namespace definition.
SemaCodeCompletion & CodeCompletion()
void ActOnBaseSpecifiers(Decl *ClassDecl, MutableArrayRef< CXXBaseSpecifier * > Bases)
ActOnBaseSpecifiers - Attach the given base specifiers to the class, after checking whether there are...
ExprResult ActOnNoexceptSpec(Expr *NoexceptExpr, ExceptionSpecificationType &EST)
Check the given noexcept-specifier, convert its expression, and compute the appropriate ExceptionSpec...
bool ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS)
void ProcessDeclAttributeList(Scope *S, Decl *D, const ParsedAttributesView &AttrList, const ProcessDeclAttributeOptions &Options=ProcessDeclAttributeOptions())
ProcessDeclAttributeList - Apply all the decl attributes in the specified attribute list to the speci...
DeclGroupPtrTy BuildDeclaratorGroup(MutableArrayRef< Decl * > Group)
BuildDeclaratorGroup - convert a list of declarations into a declaration group, performing any necess...
void ProcessDeclAttributeDelayed(Decl *D, const ParsedAttributesView &AttrList)
Helper for delayed processing TransparentUnion or BPFPreserveAccessIndexAttr attribute.
ExprResult ActOnFinishTrailingRequiresClause(ExprResult ConstraintExpr)
void ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagDecl, SourceLocation FinalLoc, bool IsFinalSpelledSealed, bool IsAbstract, SourceLocation LBraceLoc)
ActOnStartCXXMemberDeclarations - Invoked when we have parsed a C++ record definition's base-specifie...
bool ActOnDuplicateDefinition(Decl *Prev, SkipBodyInfo &SkipBody)
Perform ODR-like check for C/ObjC when merging tag types from modules.
Decl * ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc, Expr *LangStr, SourceLocation LBraceLoc)
ActOnStartLinkageSpecification - Parsed the beginning of a C++ linkage specification,...
void ActOnTagStartDefinition(Scope *S, Decl *TagDecl)
ActOnTagStartDefinition - Invoked when we have entered the scope of a tag's definition (e....
void ActOnMemInitializers(Decl *ConstructorDecl, SourceLocation ColonLoc, ArrayRef< CXXCtorInitializer * > MemInits, bool AnyErrors)
ActOnMemInitializers - Handle the member initializers for a constructor.
TypeResult ActOnTypeName(Declarator &D)
void ActOnFinishCXXMemberSpecification(Scope *S, SourceLocation RLoc, Decl *TagDecl, SourceLocation LBrac, SourceLocation RBrac, const ParsedAttributesView &AttrList)
ParsedTemplateArgument ActOnPackExpansion(const ParsedTemplateArgument &Arg, SourceLocation EllipsisLoc)
Invoked when parsing a template argument followed by an ellipsis, which creates a pack expansion.
void ActOnUndeclaredTypeTemplateName(Scope *S, TemplateTy &Name, TemplateNameKind &TNK, SourceLocation NameLoc, IdentifierInfo *&II)
Try to resolve an undeclared template name as a type template.
ParsedType getInheritingConstructorName(CXXScopeSpec &SS, SourceLocation NameLoc, const IdentifierInfo &Name)
Handle the result of the special case name lookup for inheriting constructor declarations.
Decl * ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc, Expr *AssertExpr, Expr *AssertMessageExpr, SourceLocation RParenLoc)
DeclGroupPtrTy FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS, ArrayRef< Decl * > Group)
ParsedType getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, Scope *S, CXXScopeSpec *SS=nullptr, bool isClassName=false, bool HasTrailingDot=false, ParsedType ObjectType=nullptr, bool IsCtorOrDtorName=false, bool WantNontrivialTypeSourceInfo=false, bool IsClassTemplateDeductionContext=true, ImplicitTypenameContext AllowImplicitTypename=ImplicitTypenameContext::No, IdentifierInfo **CorrectedII=nullptr)
If the identifier refers to a type name within this scope, return the declaration of that type.
void ActOnFinishCXXMemberDecls()
Perform any semantic analysis which needs to be delayed until all pending class member declarations h...
Decl * ActOnFinishLinkageSpecification(Scope *S, Decl *LinkageSpec, SourceLocation RBraceLoc)
ActOnFinishLinkageSpecification - Complete the definition of the C++ linkage specification LinkageSpe...
DeclResult ActOnExplicitInstantiation(Scope *S, SourceLocation ExternLoc, SourceLocation TemplateLoc, unsigned TagSpec, SourceLocation KWLoc, const CXXScopeSpec &SS, TemplateTy Template, SourceLocation TemplateNameLoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgs, SourceLocation RAngleLoc, const ParsedAttributesView &Attr)
@ ConstantEvaluated
The current context is "potentially evaluated" in C++11 terms, but the expression is evaluated at com...
@ PotentiallyEvaluated
The current expression is potentially evaluated at run time, which means that code may be generated t...
@ Unevaluated
The current expression and its subexpressions occur within an unevaluated operand (C++11 [expr]p7),...
@ PotentiallyEvaluatedIfUsed
The current expression is potentially evaluated, but any declarations referenced inside that expressi...
DeclResult ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, const ParsedAttributesView &Attr, AccessSpecifier AS, SourceLocation ModulePrivateLoc, MultiTemplateParamsArg TemplateParameterLists, bool &OwnedDecl, bool &IsDependent, SourceLocation ScopedEnumKWLoc, bool ScopedEnumUsesClassTag, TypeResult UnderlyingType, bool IsTypeSpecifier, bool IsTemplateParamOrArg, OffsetOfKind OOK, SkipBodyInfo *SkipBody=nullptr)
This is invoked when we see 'struct foo' or 'struct {'.
Decl * ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS, const ParsedAttributesView &DeclAttrs, RecordDecl *&AnonRecord)
ParsedFreeStandingDeclSpec - This method is invoked when a declspec with no declarator (e....
void ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace)
ActOnFinishNamespaceDef - This callback is called after a namespace is exited.
void ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context)
SmallVector< ExpressionEvaluationContextRecord, 8 > ExprEvalContexts
A stack of expression evaluation contexts.
MemInitResult ActOnMemInitializer(Decl *ConstructorD, Scope *S, CXXScopeSpec &SS, IdentifierInfo *MemberOrBase, ParsedType TemplateTypeTy, const DeclSpec &DS, SourceLocation IdLoc, SourceLocation LParenLoc, ArrayRef< Expr * > Args, SourceLocation RParenLoc, SourceLocation EllipsisLoc)
Handle a C++ member initializer using parentheses syntax.
void ActOnUninitializedDecl(Decl *dcl)
void AddInitializerToDecl(Decl *dcl, Expr *init, bool DirectInit)
AddInitializerToDecl - Adds the initializer Init to the declaration dcl.
Decl * ActOnFinishExportDecl(Scope *S, Decl *ExportDecl, SourceLocation RBraceLoc)
Complete the definition of an export declaration.
void ActOnPureSpecifier(Decl *D, SourceLocation PureSpecLoc)
SkippedDefinitionContext ActOnTagStartSkippedDefinition(Scope *S, Decl *TD)
Invoked when we enter a tag definition that we're skipping.
Decl * ActOnUsingDirective(Scope *CurScope, SourceLocation UsingLoc, SourceLocation NamespcLoc, CXXScopeSpec &SS, SourceLocation IdentLoc, IdentifierInfo *NamespcName, const ParsedAttributesView &AttrList)
void ActOnStartTrailingRequiresClause(Scope *S, Declarator &D)
TypeResult ActOnTagTemplateIdType(TagUseKind TUK, TypeSpecifierType TagSpec, SourceLocation TagLoc, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, TemplateTy TemplateD, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgsIn, SourceLocation RAngleLoc)
Parsed an elaborated-type-specifier that refers to a template-id, such as class T::template apply.
Decl * ActOnUsingDeclaration(Scope *CurScope, AccessSpecifier AS, SourceLocation UsingLoc, SourceLocation TypenameLoc, CXXScopeSpec &SS, UnqualifiedId &Name, SourceLocation EllipsisLoc, const ParsedAttributesView &AttrList)
ExprResult ActOnDecltypeExpression(Expr *E)
Process the expression contained within a decltype.
ExprResult CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl=nullptr, bool RecoverUncorrectedTypos=false, llvm::function_ref< ExprResult(Expr *)> Filter=[](Expr *E) -> ExprResult { return E;})
Process any TypoExprs in the given Expr and its children, generating diagnostics as appropriate and r...
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
SourceLocation getLocWithOffset(IntTy Offset) const
Return a source location with the specified offset from this SourceLocation.
SourceLocation getSpellingLoc(SourceLocation Loc) const
Given a SourceLocation object, return the spelling location referenced by the ID.
SourceLocation getExpansionLoc(SourceLocation Loc) const
Given a SourceLocation object Loc, return the expansion location referenced by the ID.
A trivial tuple used to represent a source range.
void setBegin(SourceLocation b)
SourceLocation getBegin() const
void setEnd(SourceLocation e)
SourceLocation getEndLoc() const LLVM_READONLY
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
SourceLocation getBeginLoc() const LLVM_READONLY
StringLiteral - This represents a string literal expression, e.g.
A RAII object used to temporarily suppress access-like checking.
Represents the declaration of a struct/union/class/enum.
Represents a C++ template name within the type system.
Token - This structure provides full information about a lexed token.
IdentifierInfo * getIdentifierInfo() const
void setLiteralData(const char *Ptr)
SourceLocation getEndLoc() const
void setAnnotationEndLoc(SourceLocation L)
SourceLocation getLocation() const
Return a source location identifier for the specified offset in the current file.
const char * getName() const
unsigned getLength() const
void setLength(unsigned Len)
void setKind(tok::TokenKind K)
SourceLocation getAnnotationEndLoc() const
bool is(tok::TokenKind K) const
is/isNot - Predicates to check if this token is a specific kind, as in "if (Tok.is(tok::l_brace)) {....
tok::TokenKind getKind() const
bool isRegularKeywordAttribute() const
Return true if the token is a keyword that is parsed in the same position as a standard attribute,...
bool isAtStartOfLine() const
isAtStartOfLine - Return true if this token is at the start of a line.
bool hasLeadingSpace() const
Return true if this token has whitespace before it.
SourceRange getAnnotationRange() const
SourceRange of the group of tokens that this annotation token represents.
void setLocation(SourceLocation L)
bool isOneOf(tok::TokenKind K1, tok::TokenKind K2) const
bool isNot(tok::TokenKind K) const
bool isAnnotation() const
Return true if this is any of tok::annot_* kind tokens.
void startToken()
Reset all flags to cleared.
The base class of the type hierarchy.
Represents a C++ unqualified-id that has been parsed.
Represents C++ using-directive.
Declaration of a variable template.
Represents a C++11 virt-specifier-seq.
Specifier getLastSpecifier() const
SourceLocation getFirstLocation() const
SourceLocation getAbstractLoc() const
static const char * getSpecifierName(Specifier VS)
bool SetSpecifier(Specifier VS, SourceLocation Loc, const char *&PrevSpec)
Defines the clang::TargetInfo interface.
@ After
Like System, but searched after the system directories.
bool Zero(InterpState &S, CodePtr OpPC)
TokenKind
Provides a simple uniform namespace for tokens from all C languages.
constexpr bool isRegularKeywordAttribute(TokenKind K)
bool isPragmaAnnotation(TokenKind K)
Return true if this is an annotation token representing a pragma.
The JSON file list parser is used to communicate input to InstallAPI.
TypeSpecifierType
Specifies the kind of type.
bool doesKeywordAttributeTakeArgs(tok::TokenKind Kind)
FunctionDefinitionKind
Described the kind of function definition (if any) provided for a function.
InClassInitStyle
In-class initialization styles for non-static data members.
@ ICIS_CopyInit
Copy initialization.
@ ICIS_ListInit
Direct list-initialization.
@ ICIS_NoInit
No in-class initializer.
bool tokenIsLikeStringLiteral(const Token &Tok, const LangOptions &LO)
Return true if the token is a string literal, or a function local predefined macro,...
llvm::PointerUnion< Expr *, IdentifierLoc * > ArgsUnion
A union of the various pointer types that can be passed to an ParsedAttr as an argument.
@ IK_TemplateId
A template-id, e.g., f<int>.
@ IK_Identifier
An identifier.
LLVM_READONLY bool isLetter(unsigned char c)
Return true if this character is an ASCII letter: [a-zA-Z].
@ Result
The result type of a method or function.
ActionResult< Expr * > ExprResult
MutableArrayRef< TemplateParameterList * > MultiTemplateParamsArg
int hasAttribute(AttributeCommonInfo::Syntax Syntax, const IdentifierInfo *Scope, const IdentifierInfo *Attr, const TargetInfo &Target, const LangOptions &LangOpts)
Return the version number associated with the attribute if we recognize and implement the attribute s...
TemplateNameKind
Specifies the kind of template name that an identifier refers to.
@ TNK_Non_template
The name does not refer to a template.
@ TNK_Undeclared_template
Lookup for the name failed, but we're assuming it was a template name anyway.
const FunctionProtoType * T
SmallVector< Token, 4 > CachedTokens
A set of tokens that has been cached for later parsing.
@ Class
The "class" keyword introduces the elaborated-type-specifier.
@ Braces
New-expression has a C++11 list-initializer.
ExceptionSpecificationType
The various types of exception specifications that exist in C++11.
@ EST_Unparsed
not parsed yet
@ EST_None
no exception specification
@ EST_MSAny
Microsoft throw(...) extension.
@ EST_BasicNoexcept
noexcept
@ EST_Dynamic
throw(T1, T2)
AccessSpecifier
A C++ access specifier (public, private, protected), plus the special value "none" which means differ...
CachedTokens * ExceptionSpecTokens
Pointer to the cached tokens for an exception-specification that has not yet been parsed.
ParamInfo * Params
Params - This is a pointer to a new[]'d array of ParamInfo objects that describe the parameters speci...
unsigned NumParams
NumParams - This is the number of formal parameters specified by the declarator.
ExceptionSpecificationType getExceptionSpecType() const
Get the type of exception specification this function has.
std::unique_ptr< CachedTokens > DefaultArgTokens
DefaultArgTokens - When the parameter's default argument cannot be parsed immediately (because it occ...
Describes how types, statements, expressions, and declarations should be printed.
Information about a template-id annotation token.
const IdentifierInfo * Name
FIXME: Temporarily stores the name of a specialization.
TemplateNameKind Kind
The kind of template that Template refers to.
unsigned NumArgs
NumArgs - The number of template arguments.
SourceLocation TemplateNameLoc
TemplateNameLoc - The location of the template name within the source.
ParsedTemplateArgument * getTemplateArgs()
Retrieves a pointer to the template arguments.
SourceLocation RAngleLoc
The location of the '>' after the template argument list.
SourceLocation LAngleLoc
The location of the '<' before the template argument list.
SourceLocation TemplateKWLoc
TemplateKWLoc - The location of the template keyword.
bool mightBeType() const
Determine whether this might be a type template.
ParsedTemplateTy Template
The declaration of the template corresponding to the template-name.