26#include "llvm/ADT/StringExtras.h"
27#include "llvm/Frontend/HLSL/HLSLRootSignature.h"
40 OS <<
" first " <<
First;
47 OS <<
" prev " << Prev;
54#define DECL(DERIVED, BASE) \
56 return dumpPreviousDeclImpl(OS, cast<DERIVED##Decl>(D));
57#define ABSTRACT_DECL(DECL)
58#include "clang/AST/DeclNodes.inc"
60 llvm_unreachable(
"Decl that isn't part of DeclNodes.inc!");
66 Context(&Context), SM(&Context.getSourceManager()),
67 PrintPolicy(Context.getPrintingPolicy()),
68 Traits(&Context.getCommentCommandTraits()) {}
83 OS <<
C->getCommentKindName();
101#include "clang/Basic/AttrList.inc"
116 const Decl *From, StringRef Label) {
117 OS <<
"TemplateArgument";
140 if (
const auto *E = dyn_cast<Expr>(Node)) {
143 if (E->containsErrors()) {
145 OS <<
" contains-errors";
150 switch (E->getValueKind()) {
164 switch (E->getObjectKind()) {
171 OS <<
" objcproperty";
174 OS <<
" objcsubscript";
177 OS <<
" vectorcomponent";
180 OS <<
" matrixcomponent";
198 OS <<
"LocInfo Type";
206 OS << T->getTypeClassName() <<
"Type";
214 if (SingleStepDesugar !=
QualType(T, 0))
217 if (T->containsErrors()) {
219 OS <<
" contains-errors";
222 if (T->isDependentType())
224 else if (T->isInstantiationDependentType())
225 OS <<
" instantiation_dependent";
227 if (T->isVariablyModifiedType())
228 OS <<
" variably_modified";
229 if (T->containsUnexpandedParameterPack())
230 OS <<
" contains_unexpanded_pack";
242 OS <<
" " << T.split().Quals.getAsString();
287 OS <<
" in " << M->getFullModuleName();
288 if (
auto *ND = dyn_cast<NamedDecl>(D))
291 AddChild([=] { OS <<
"also in " << M->getFullModuleName(); });
292 if (
const NamedDecl *ND = dyn_cast<NamedDecl>(D))
293 if (!ND->isUnconditionallyVisible())
305 if (
const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
306 if (FD->isConstexprSpecified())
308 if (FD->isConsteval())
310 else if (FD->isImmediateFunction())
312 if (FD->isMultiVersion())
313 OS <<
" multiversion";
317 const auto *MD = dyn_cast<ObjCMethodDecl>(D);
318 if (!MD || !MD->isThisDeclarationADefinition()) {
319 const auto *DC = dyn_cast<DeclContext>(D);
320 if (DC && DC->hasExternalLexicalStorage()) {
322 OS <<
" <undeserialized declarations>";
334 OS <<
" friend_undeclared";
342 OS <<
"CXXCtorInitializer";
343 if (
Init->isAnyMemberInitializer()) {
346 }
else if (
Init->isBaseInitializer()) {
348 }
else if (
Init->isDelegatingInitializer()) {
351 llvm_unreachable(
"Unknown initializer type");
361 if (
C.getVariable()) {
370 OS <<
"<<<NULL>>> OMPClause";
375 StringRef ClauseName(llvm::omp::getOpenMPClauseName(
C->getClauseKind()));
376 OS <<
"OMP" << ClauseName.substr(0, 1).upper()
377 << ClauseName.drop_front() <<
"Clause";
393 OS <<
"<<<NULL>>> OpenACCClause";
398 OS <<
C->getClauseKind();
402 switch (
C->getClauseKind()) {
404 OS << '(' << cast<OpenACCDefaultClause>(
C)->getDefaultClauseKind() <<
')';
448 for (
unsigned I = 0; I < GC->getNumExprs(); ++I) {
449 OS <<
" " << GC->getExpr(I).first;
497 OS <<
" has queues tag";
502 llvm::interleaveComma(
505 if (
Arch.getIdentifierInfo() ==
nullptr)
508 OS <<
Arch.getIdentifierInfo()->getName();
513 OS <<
" clause Operator: "
519 OS <<
" identifier '"
547 OS <<
"<<<NULL>>> ConceptReference";
551 OS <<
"ConceptReference";
561 OS <<
"<<<NULL>>> Requirement";
569 OS <<
"TypeRequirement";
572 OS <<
"SimpleRequirement";
575 OS <<
"CompoundRequirement";
578 OS <<
"NestedRequirement";
585 if (
auto *ER = dyn_cast<concepts::ExprRequirement>(R)) {
586 if (ER->hasNoexceptRequirement())
593 OS << (R->
isSatisfied() ?
" satisfied" :
" unsatisfied");
595 OS <<
" contains_unexpanded_pack";
601 V.convert(llvm::APFloat::IEEEdouble(), llvm::APFloat::rmNearestTiesToEven,
603 return V.convertToDouble();
628 llvm_unreachable(
"unexpected APValue kind!");
644void TextNodeDumper::dumpAPValueChildren(
647 unsigned NumChildren, StringRef LabelSingular, StringRef LabelPlurial) {
650 constexpr unsigned MaxChildrenPerLine = 4;
652 while (I < NumChildren) {
654 while (J < NumChildren) {
656 (J - I < MaxChildrenPerLine)) {
663 J = std::max(I + 1, J);
666 AddChild(J - I > 1 ? LabelPlurial : LabelSingular, [=]() {
667 for (
unsigned X = I;
X < J; ++
X) {
684 OS <<
"Indeterminate";
690 OS <<
Value.getInt();
704 OS <<
Value.getFixedPoint();
714 return Value.getVectorElt(Index);
723 OS <<
Value.getComplexIntReal() <<
" + " <<
Value.getComplexIntImag()
728 OS <<
"ComplexFloat ";
737 OS <<
"LValue Base=";
742 OS << BE->getStmtClassName() <<
' ';
745 OS <<
"TypeInfoLValue ";
747 BTI.print(OS, PrintPolicy);
749 OS <<
"DynamicAllocLValue";
757 OS <<
", Null=" <<
Value.isNullPointer()
758 <<
", Offset=" <<
Value.getLValueOffset().getQuantity()
759 <<
", HasPath=" <<
Value.hasLValuePath();
760 if (
Value.hasLValuePath()) {
761 OS <<
", PathLength=" <<
Value.getLValuePath().size();
763 llvm::ListSeparator Sep;
764 for (
const auto &PathEntry :
Value.getLValuePath()) {
767 OS << Sep << PathEntry.getAsArrayIndex();
774 unsigned ArraySize =
Value.getArraySize();
775 unsigned NumInitializedElements =
Value.getArrayInitializedElts();
776 OS <<
"Array size=" << ArraySize;
781 return Value.getArrayInitializedElt(Index);
783 NumInitializedElements,
"element",
"elements");
785 if (
Value.hasArrayFiller()) {
789 OS << ArraySize - NumInitializedElements <<
" x ";
803 return Value.getStructBase(Index);
805 Value.getStructNumBases(),
"base",
"bases");
810 return Value.getStructField(Index);
812 Value.getStructNumFields(),
"field",
"fields");
817 unsigned NumRows =
Value.getMatrixNumRows();
818 unsigned NumCols =
Value.getMatrixNumColumns();
819 OS <<
"Matrix " << NumRows <<
"x" << NumCols;
824 return Value.getMatrixElt(Index);
826 Value.getMatrixNumElements(),
"element",
"elements");
841 Visit(UnionValue, Ty);
849 OS <<
"MemberPointer ";
850 auto Path =
Value.getMemberPointerPath();
854 OS << D->getDeclName();
861 OS << MemDecl->getDeclName();
867 OS <<
"AddrLabelDiff ";
868 OS <<
"&&" <<
Value.getAddrLabelDiffLHS()->getLabel()->getName();
870 OS <<
"&&" <<
Value.getAddrLabelDiffRHS()->getLabel()->getName();
873 llvm_unreachable(
"Unknown APValue kind!");
890 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
893 OS <<
"<invalid sloc>";
897 if (strcmp(PLoc.
getFilename(), LastLocFilename) != 0) {
902 }
else if (PLoc.
getLine() != LastLocLine) {
931 OS <<
"'" << T_str <<
"'";
933 if (Desugar && !T.isNull()) {
937 if (T_split != D_split) {
963 if (
const NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
966 OS <<
" '" << Name <<
'\'';
968 switch (ND->getKind()) {
969 case Decl::Decomposition: {
971 OS <<
" first_binding '" << DD->bindings()[0]->getDeclName() <<
'\'';
976 OS <<
" field_index " << FD->getFieldIndex();
979 case Decl::ParmVar: {
981 OS <<
" depth " << PD->getFunctionScopeDepth() <<
" index "
982 << PD->getFunctionScopeIndex();
985 case Decl::TemplateTypeParm: {
987 OS <<
" depth " << TD->getDepth() <<
" index " << TD->getIndex();
990 case Decl::NonTypeTemplateParm: {
992 OS <<
" depth " << TD->getDepth() <<
" index " << TD->getIndex();
1002 if (
const ValueDecl *VD = dyn_cast<ValueDecl>(D))
1015 if (AccessSpelling.empty())
1017 OS << AccessSpelling;
1022 if (
auto *BD = dyn_cast<BlockDecl *>(
C))
1024 else if (
auto *CLE = dyn_cast<CompoundLiteralExpr *>(
C))
1029 OS << CLE->getStmtClassName();
1034 llvm_unreachable(
"unexpected cleanup type");
1043 OS <<
" implicit_instantiation";
1046 OS <<
" explicit_specialization";
1049 OS <<
" explicit_instantiation_declaration";
1052 OS <<
" explicit_instantiation_definition";
1062 OS <<
"NestedNameSpecifier";
1083 llvm_unreachable(
"unexpected null nested name specifier");
1102 llvm::raw_svector_ostream SS(Str);
1103 TA.
print(PrintPolicy, SS,
true);
1105 OS <<
" '" << Str <<
"'";
1114 llvm::raw_svector_ostream SS(CanonStr);
1115 CanonTA.print(PrintPolicy, SS,
true);
1117 if (CanonStr != Str)
1118 OS <<
":'" << CanonStr <<
"'";
1122const char *TextNodeDumper::getCommandName(
unsigned CommandID) {
1124 return Traits->getCommandInfo(CommandID)->Name;
1129 return "<not a builtin command>";
1133#define FP_OPTION(NAME, TYPE, WIDTH, PREVIOUS) \
1134 if (FPO.has##NAME##Override()) \
1135 OS << " " #NAME "=" << FPO.get##NAME##Override();
1136#include "clang/Basic/FPOptions.def"
1141 OS <<
" Text=\"" <<
C->getText() <<
"\"";
1146 OS <<
" Name=\"" << getCommandName(
C->getCommandID()) <<
"\"";
1147 switch (
C->getRenderKind()) {
1149 OS <<
" RenderNormal";
1152 OS <<
" RenderBold";
1155 OS <<
" RenderMonospaced";
1158 OS <<
" RenderEmphasized";
1161 OS <<
" RenderAnchor";
1165 for (
unsigned i = 0, e =
C->getNumArgs(); i != e; ++i)
1166 OS <<
" Arg[" << i <<
"]=\"" <<
C->getArgText(i) <<
"\"";
1171 OS <<
" Name=\"" <<
C->getTagName() <<
"\"";
1172 if (
C->getNumAttrs() != 0) {
1174 for (
unsigned i = 0, e =
C->getNumAttrs(); i != e; ++i) {
1176 OS <<
" \"" <<
Attr.Name <<
"=\"" <<
Attr.Value <<
"\"";
1179 if (
C->isSelfClosing())
1180 OS <<
" SelfClosing";
1185 OS <<
" Name=\"" <<
C->getTagName() <<
"\"";
1190 OS <<
" Name=\"" << getCommandName(
C->getCommandID()) <<
"\"";
1191 for (
unsigned i = 0, e =
C->getNumArgs(); i != e; ++i)
1192 OS <<
" Arg[" << i <<
"]=\"" <<
C->getArgText(i) <<
"\"";
1200 if (
C->isDirectionExplicit())
1201 OS <<
" explicitly";
1203 OS <<
" implicitly";
1205 if (
C->hasParamName()) {
1206 if (
C->isParamIndexValid())
1207 OS <<
" Param=\"" <<
C->getParamName(FC) <<
"\"";
1209 OS <<
" Param=\"" <<
C->getParamNameAsWritten() <<
"\"";
1212 if (
C->isParamIndexValid() && !
C->isVarArgParam())
1213 OS <<
" ParamIndex=" <<
C->getParamIndex();
1218 if (
C->hasParamName()) {
1219 if (
C->isPositionValid())
1220 OS <<
" Param=\"" <<
C->getParamName(FC) <<
"\"";
1222 OS <<
" Param=\"" <<
C->getParamNameAsWritten() <<
"\"";
1225 if (
C->isPositionValid()) {
1226 OS <<
" Position=<";
1227 for (
unsigned i = 0, e =
C->getDepth(); i != e; ++i) {
1228 OS <<
C->getIndex(i);
1238 OS <<
" Name=\"" << getCommandName(
C->getCommandID())
1241 <<
C->getCloseName() <<
"\"";
1247 OS <<
" Text=\"" <<
C->getText() <<
"\"";
1252 OS <<
" Text=\"" <<
C->getText() <<
"\"";
1283 OS <<
" structural value";
1292 llvm::raw_svector_ostream SS(Str);
1293 TN.
print(SS, PrintPolicy);
1295 OS <<
"'" << Str <<
"'";
1298 if (
TemplateName CanonTN = Context->getCanonicalTemplateName(TN);
1302 llvm::raw_svector_ostream SS(CanonStr);
1303 CanonTN.print(SS, PrintPolicy);
1305 if (CanonStr != Str)
1306 OS <<
":'" << CanonStr <<
"'";
1344 OS <<
" index " << STS->
getIndex();
1346 OS <<
" pack_index " << *PackIndex;
1361 OS <<
" start " << StartPos;
1369 OS <<
" overloaded";
1375 OS <<
" subst_pack";
1378 llvm_unreachable(
"Unexpected TemplateName Kind");
1389 OS <<
" template expansion";
1421 Base->getType()->castAsCanonical<RecordType>()->getDecl());
1423 if (
Base->isVirtual())
1425 OS << RD->getName();
1445 OS <<
Target->getStmtClassName();
1482 OS <<
" '" << Node->
getName() <<
"'";
1484 OS <<
" side_entry";
1499 OS <<
" nrvo_candidate(";
1530 if (OperatorSpelling)
1531 OS <<
" '" << OperatorSpelling <<
"'";
1551 OS <<
" part_of_explicit_cast";
1570 OS <<
" dependent_capture";
1572 OS <<
" refers_to_enclosing_variable_or_capture";
1575 OS <<
" immediate-escalating";
1589 OS <<
"ADL) = '" << Node->
getName() <<
'\'';
1604 OS <<
"='" << *Node->
getDecl() <<
"'";
1607 OS <<
" isFreeIvar";
1655 OS <<
" result_dependent";
1659 OS <<
" " << (Node->
isPostfix() ?
"postfix" :
"prefix") <<
" '"
1662 OS <<
" cannot overflow";
1705 <<
"' ComputeLHSTy=";
1707 OS <<
" ComputeResultTy=";
1727 OS <<
" " << (Node->
getValue() ?
"true" :
"false");
1734 OS <<
" dependent_capture";
1767 OS <<
" std::initializer_list";
1771 OS <<
" immediate-escalating";
1776 OS <<
" (CXXTemporary";
1819 OS <<
" has rewritten init";
1824 OS <<
" has rewritten init";
1830 OS <<
" extended by ";
1836 for (
unsigned i = 0, e = Node->
getNumObjects(); i != e; ++i)
1863 OS <<
" super (instance)";
1867 OS <<
" super (class)";
1875 BoxingMethod->getSelector().print(OS);
1899 OS <<
" Kind=MethodRef Getter=\"";
1905 OS <<
"\" Setter=\"";
1907 Setter->getSelector().print(OS);
1919 OS <<
" Messaging=";
1921 OS <<
"Getter&Setter";
1931 OS <<
" Kind=ArraySubscript GetterForArray=\"";
1933 OS <<
" Kind=DictionarySubscript GetterForDictionary=\"";
1940 OS <<
"\" SetterForArray=\"";
1942 OS <<
"\" SetterForDictionary=\"";
1950 OS <<
" " << (Node->
getValue() ?
"__objc_yes" :
"__objc_no");
1979 OS << (Node->
isSatisfied() ?
" satisfied" :
" unsatisfied");
1983 if (T->isSpelledAsLValue())
1984 OS <<
" written as lvalue reference";
1988 switch (T->getSizeModifier()) {
1998 OS <<
" " << T->getIndexTypeQualifiers().getAsString();
2002 OS <<
" " << T->getSize();
2022 switch (T->getVectorKind()) {
2029 OS <<
" altivec pixel";
2032 OS <<
" altivec bool";
2041 OS <<
" fixed-length sve data vector";
2044 OS <<
" fixed-length sve predicate vector";
2047 OS <<
" fixed-length rvv data vector";
2053 OS <<
" fixed-length rvv mask vector";
2056 OS <<
" " << T->getNumElements();
2060 auto EI = T->getExtInfo();
2061 if (EI.getNoReturn())
2063 if (EI.getProducesResult())
2064 OS <<
" produces_result";
2065 if (EI.getHasRegParm())
2066 OS <<
" regparm " << EI.getRegParm();
2071 auto EPI = T->getExtProtoInfo();
2072 if (EPI.HasTrailingReturn)
2073 OS <<
" trailing_return";
2076 if (T->isVolatile())
2078 if (T->isRestrict())
2080 if (T->getExtProtoInfo().Variadic)
2082 switch (EPI.RefQualifier) {
2093 switch (EPI.ExceptionSpec.Type) {
2097 OS <<
" exceptionspec_dynamic_none";
2100 OS <<
" exceptionspec_dynamic";
2103 OS <<
" exceptionspec_ms_any";
2106 OS <<
" exceptionspec_nothrow";
2109 OS <<
" exceptionspec_basic_noexcept";
2112 OS <<
" exceptionspec_dependent_noexcept";
2115 OS <<
" exceptionspec_noexcept_false";
2118 OS <<
" exceptionspec_noexcept_true";
2121 OS <<
" exceptionspec_unevaluated";
2124 OS <<
" exceptionspec_uninstantiated";
2127 OS <<
" exceptionspec_unparsed";
2130 if (!EPI.ExceptionSpec.Exceptions.empty()) {
2132 OS <<
"Exceptions:";
2133 for (
unsigned I = 0, N = EPI.ExceptionSpec.Exceptions.size(); I != N;
2137 dumpType(EPI.ExceptionSpec.Exceptions[I]);
2141 if (EPI.ExceptionSpec.NoexceptExpr) {
2143 OS <<
"NoexceptExpr: ";
2144 Visit(EPI.ExceptionSpec.NoexceptExpr);
2147 dumpDeclRef(EPI.ExceptionSpec.SourceDecl,
"ExceptionSourceDecl");
2148 dumpDeclRef(EPI.ExceptionSpec.SourceTemplate,
"ExceptionSourceTemplate");
2177 if (!T->typeMatchesDecl()) {
2184 switch (T->getUTTKind()) {
2185#define TRANSFORM_TYPE_TRAIT_DEF(Enum, Trait) \
2186 case UnaryTransformType::Enum: \
2189#include "clang/Basic/TransformTypeTraits.def"
2194 if (T->isCanonicalUnqualified())
2196 if (T->isTagOwned())
2198 if (T->isInjected())
2208 OS <<
" depth " << T->getDepth() <<
" index " << T->getIndex();
2209 if (T->isParameterPack())
2215 const SubstTemplateTypeParmType *T) {
2218 if (
auto PackIndex = T->getPackIndex())
2219 OS <<
" pack_index " << *PackIndex;
2225 const SubstTemplateTypeParmPackType *T) {
2231 if (T->isDecltypeAuto())
2232 OS <<
" decltype(auto)";
2233 if (!T->isDeduced())
2235 if (T->isConstrained())
2240 const DeducedTemplateSpecializationType *T) {
2245 const TemplateSpecializationType *T) {
2246 if (T->isTypeAlias())
2255 const InjectedClassNameType *T) {
2264 if (
auto N = T->getNumExpansions())
2265 OS <<
" expansions " << *N;
2281 OS <<
" __module_private__";
2293 OS <<
" __module_private__";
2298 OS <<
" instantiated_from";
2307 OS <<
" __module_private__";
2309 OS <<
" definition";
2321 for (
const auto *Child : D->
chain())
2338 OS <<
" __module_private__";
2356 OS << (isa<CXXDestructorDecl>(D) ?
" not_selected" :
" ineligible");
2372 if (
const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
2373 if (MD->size_overridden_methods() != 0) {
2381 auto Overrides = MD->overridden_methods();
2382 OS <<
"Overrides: [ ";
2383 dumpOverride(*Overrides.begin());
2384 for (
const auto *
Override : llvm::drop_begin(Overrides)) {
2394 OS <<
" implicit-inline";
2401 OS <<
" <<<NULL params x " << D->
getNumParams() <<
">>>";
2404 OS <<
" instantiated_from";
2417 OS <<
" aggregate ";
2424 OS <<
" extended by ";
2439 OS <<
" __module_private__";
2445 if (
const auto *
P = dyn_cast<ParmVarDecl>(D);
2446 P &&
P->isExplicitObjectParameter())
2461 OS <<
" tls_dynamic";
2465 OS <<
" __module_private__";
2484 OS <<
" parenlistinit";
2493 OS <<
" instantiated_from";
2531 llvm_unreachable(
"unexpected pragma comment kind");
2548 StringRef Arg = D->
getArg();
2550 OS <<
" \"" << Arg <<
"\"";
2560 if (D->isStandaloneDirective())
2561 OS <<
" openmp_standalone_directive";
2571 OS <<
" initializer";
2575 OS <<
" omp_priv = ";
2578 OS <<
" omp_priv ()";
2591 OS <<
"<<<NULL>>> OMPClause";
2596 StringRef ClauseName(
2597 llvm::omp::getOpenMPClauseName(
C->getClauseKind()));
2598 OS <<
"OMP" << ClauseName.substr(0, 1).upper()
2599 << ClauseName.drop_front() <<
"Clause";
2645 OS <<
" instantiated_from";
2648 if (
const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D)) {
2650 if (CTSD->hasStrictPackMatch())
2651 OS <<
" strict-pack-match";
2662 OS <<
"DefinitionData";
2664#define FLAG(fn, name) \
2667 FLAG(isParsingBaseSpecifiers, parsing_base_specifiers);
2669 FLAG(isGenericLambda, generic);
2670 FLAG(isLambda, lambda);
2672 FLAG(isAnonymousStructOrUnion, is_anonymous);
2674 FLAG(isEmpty, empty);
2675 FLAG(isAggregate, aggregate);
2676 FLAG(isStandardLayout, standard_layout);
2677 FLAG(isTriviallyCopyable, trivially_copyable);
2680 FLAG(isPolymorphic, polymorphic);
2681 FLAG(isAbstract, abstract);
2682 FLAG(isLiteral, literal);
2684 FLAG(hasUserDeclaredConstructor, has_user_declared_ctor);
2685 FLAG(hasConstexprNonCopyMoveConstructor, has_constexpr_non_copy_move_ctor);
2686 FLAG(hasMutableFields, has_mutable_fields);
2687 FLAG(hasVariantMembers, has_variant_members);
2688 FLAG(allowConstDefaultInit, can_const_default_init);
2693 OS <<
"DefaultConstructor";
2695 FLAG(hasDefaultConstructor, exists);
2696 FLAG(hasTrivialDefaultConstructor, trivial);
2697 FLAG(hasNonTrivialDefaultConstructor, non_trivial);
2698 FLAG(hasUserProvidedDefaultConstructor, user_provided);
2699 FLAG(hasConstexprDefaultConstructor,
constexpr);
2700 FLAG(needsImplicitDefaultConstructor, needs_implicit);
2701 FLAG(defaultedDefaultConstructorIsConstexpr, defaulted_is_constexpr);
2707 OS <<
"CopyConstructor";
2709 FLAG(hasSimpleCopyConstructor, simple);
2710 FLAG(hasTrivialCopyConstructor, trivial);
2711 FLAG(hasNonTrivialCopyConstructor, non_trivial);
2712 FLAG(hasUserDeclaredCopyConstructor, user_declared);
2713 FLAG(hasCopyConstructorWithConstParam, has_const_param);
2714 FLAG(needsImplicitCopyConstructor, needs_implicit);
2715 FLAG(needsOverloadResolutionForCopyConstructor,
2716 needs_overload_resolution);
2718 FLAG(defaultedCopyConstructorIsDeleted, defaulted_is_deleted);
2719 FLAG(implicitCopyConstructorHasConstParam, implicit_has_const_param);
2725 OS <<
"MoveConstructor";
2727 FLAG(hasMoveConstructor, exists);
2728 FLAG(hasSimpleMoveConstructor, simple);
2729 FLAG(hasTrivialMoveConstructor, trivial);
2730 FLAG(hasNonTrivialMoveConstructor, non_trivial);
2731 FLAG(hasUserDeclaredMoveConstructor, user_declared);
2732 FLAG(needsImplicitMoveConstructor, needs_implicit);
2733 FLAG(needsOverloadResolutionForMoveConstructor,
2734 needs_overload_resolution);
2736 FLAG(defaultedMoveConstructorIsDeleted, defaulted_is_deleted);
2742 OS <<
"CopyAssignment";
2744 FLAG(hasSimpleCopyAssignment, simple);
2745 FLAG(hasTrivialCopyAssignment, trivial);
2746 FLAG(hasNonTrivialCopyAssignment, non_trivial);
2747 FLAG(hasCopyAssignmentWithConstParam, has_const_param);
2748 FLAG(hasUserDeclaredCopyAssignment, user_declared);
2749 FLAG(needsImplicitCopyAssignment, needs_implicit);
2750 FLAG(needsOverloadResolutionForCopyAssignment, needs_overload_resolution);
2751 FLAG(implicitCopyAssignmentHasConstParam, implicit_has_const_param);
2757 OS <<
"MoveAssignment";
2759 FLAG(hasMoveAssignment, exists);
2760 FLAG(hasSimpleMoveAssignment, simple);
2761 FLAG(hasTrivialMoveAssignment, trivial);
2762 FLAG(hasNonTrivialMoveAssignment, non_trivial);
2763 FLAG(hasUserDeclaredMoveAssignment, user_declared);
2764 FLAG(needsImplicitMoveAssignment, needs_implicit);
2765 FLAG(needsOverloadResolutionForMoveAssignment, needs_overload_resolution);
2773 FLAG(hasSimpleDestructor, simple);
2774 FLAG(hasIrrelevantDestructor, irrelevant);
2775 FLAG(hasTrivialDestructor, trivial);
2776 FLAG(hasNonTrivialDestructor, non_trivial);
2777 FLAG(hasUserDeclaredDestructor, user_declared);
2778 FLAG(hasConstexprDestructor,
constexpr);
2779 FLAG(needsImplicitDestructor, needs_implicit);
2780 FLAG(needsOverloadResolutionForDestructor, needs_overload_resolution);
2782 FLAG(defaultedDestructorIsDeleted, defaulted_is_deleted);
2786 for (
const auto &I : D->
bases()) {
2792 if (I.isPackExpansion())
2818 if (TC->getNamedConcept() != TC->getFoundDecl()) {
2900 OS <<
"constructed ";
2934 OS <<
" synthesize";
2978 OS <<
" contravariant";
3004 for (
const auto *Child : D->
protocols())
3013 for (
const auto *Child : D->
protocols())
3060 OS <<
" unsafe_unretained";
3075 OS <<
" synthesize";
3087 OS <<
" captures_this";
3113 case llvm::dxbc::RootSignatureVersion::V1_0:
3116 case llvm::dxbc::RootSignatureVersion::V1_1:
3119 case llvm::dxbc::RootSignatureVersion::V1_2:
3128 OS << (E->
isInOut() ?
" inout" :
" out");
3201 for (
const Stmt *S :
C->children())
3215 for (
const Stmt *S :
C->children())
3221 const OpenACCRoutineDeclAttr *A) {
3225 for (
const Stmt *S :
C->children())
static double GetApproxValue(const llvm::APFloat &F)
static bool isTrivial(ASTContext &Ctx, const Expr *E)
Checks if the expression is constant or does not have non-trivial function calls.
This file defines OpenMP nodes for declarative directives.
Defines the C++ template declaration subclasses.
Defines the clang::Module class, which describes a module in the source code.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
static bool canPassInRegisters(Sema &S, CXXRecordDecl *D, TargetInfo::CallingConvKind CCK)
Determine whether a type is permitted to be passed or returned in registers, per C++ [class....
Defines the SourceManager interface.
Defines various enumerations that describe declaration and type specifiers.
static bool isSimpleAPValue(const APValue &Value)
True if the APValue Value can be folded onto the current line.
static void dumpBasePath(raw_ostream &OS, const CastExpr *Node)
static void dumpPreviousDeclImpl(raw_ostream &OS,...)
static void dumpPreviousDecl(raw_ostream &OS, const Decl *D)
Dump the previous declaration in the redeclaration chain for a declaration, if any.
Defines enumerations for the type traits support.
C Language Family Type Representation.
OpenACCAtomicKind getAtomicKind() const
This class represents a 'loop' construct. The 'loop' construct applies to a 'for' loop (or range-for ...
bool isOrphanedLoopConstruct() const
OpenACC 3.3 2.9: An orphaned loop construct is a loop construct that is not lexically enclosed within...
OpenACCDirectiveKind getParentComputeConstructKind() const
llvm::APInt getValue() const
QualType getDynamicAllocType() const
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
@ Indeterminate
This object has an indeterminate value (C++ [basic.indet]).
@ None
There is no such object (it's outside its lifetime).
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
ArrayRef< Decl * > getModuleInitializers(Module *M)
Get the initializations to perform when importing a module, if any.
const clang::PrintingPolicy & getPrintingPolicy() const
ArrayRef< Module * > getModulesWithMergedDefinition(const NamedDecl *Def)
Get the additional modules in which the definition Def has been merged.
Represents an access specifier followed by colon ':'.
AddrLabelExpr - The GNU address of label extension, representing &&label.
LabelDecl * getLabel() const
An Embarcadero array type trait, as used in the implementation of __array_rank and __array_extent.
ArrayTypeTrait getTrait() const
Represents an array type, per C99 6.7.5.2 - Array Declarators.
AtomicExpr - Variadic atomic builtins: __atomic_exchange, __atomic_fetch_*, __atomic_load,...
StringRef getOpAsString() const
Attr - This represents one attribute.
attr::Kind getKind() const
bool isImplicit() const
Returns true if the attribute has been implicitly created instead of explicitly written by the user.
SourceRange getRange() const
A builtin binary operation expression such as "x + y" or "x <= y".
StringRef getOpcodeStr() const
bool hasStoredFPFeatures() const
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
A binding in a decomposition declaration.
A class which contains all the information about a particular captured value.
Represents a block literal declaration, which is like an unnamed FunctionDecl.
bool capturesCXXThis() const
Represents the builtin template declaration which is used to implement __make_integer_seq and other b...
Represents a base class of a C++ class.
Represents binding an expression to a temporary.
A boolean literal, per ([C++ lex.bool] Boolean literals).
Represents a call to a C++ constructor.
bool isElidable() const
Whether this construction is elidable.
bool isStdInitListInitialization() const
Whether this constructor call was written as list-initialization, but was interpreted as forming a st...
bool isImmediateEscalating() const
bool requiresZeroInitialization() const
Whether this construction first requires zero-initialization before the initializer is called.
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
bool isListInitialization() const
Whether this constructor call was written as list-initialization.
Represents a C++ constructor within a class.
Represents a C++ base or member initializer.
Represents a C++ deduction guide declaration.
DeductionCandidate getDeductionCandidateKind() const
A default argument (C++ [dcl.fct.default]).
bool hasRewrittenInit() const
A use of a default initializer in a constructor or in aggregate initialization.
bool hasRewrittenInit() const
Represents a delete expression for memory deallocation and destructor calls, e.g.
FunctionDecl * getOperatorDelete() const
bool isGlobalDelete() const
Represents a C++ member access expression where the actual member referenced could not be resolved be...
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
DeclarationName getMember() const
Retrieve the name of the member that this expression refers to.
Represents an explicit C++ type conversion that uses "functional" notation (C++ [expr....
Represents a static or instance method of a struct/union/class.
Abstract class common to all of the C++ "named"/"keyword" casts.
const char * getCastName() const
getCastName - Get the name of the C++ cast being used, e.g., "static_cast", "dynamic_cast",...
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
FunctionDecl * getOperatorNew() const
A call to an overloaded operator written using operator syntax.
OverloadedOperatorKind getOperator() const
Returns the kind of overloaded operator that this expression refers to.
Represents a C++ struct/union/class.
const CXXRecordDecl * getTemplateInstantiationPattern() const
Retrieve the record declaration from which this record could be instantiated.
bool needsOverloadResolutionForMoveConstructor() const
Determine whether we need to eagerly declare a defaulted move constructor for this class.
bool needsOverloadResolutionForDestructor() const
Determine whether we need to eagerly declare a destructor for this class.
bool needsOverloadResolutionForCopyConstructor() const
Determine whether we need to eagerly declare a defaulted copy constructor for this class.
A C++ static_cast expression (C++ [expr.static.cast]).
Represents the this expression in C++.
bool isCapturedByCopyInLambdaWithExplicitObjectParameter() const
Describes an explicit type conversion that uses functional notion but could not be resolved because o...
bool isListInitialization() const
Determine whether this expression models list-initialization.
QualType getTypeAsWritten() const
Retrieve the type that is being constructed, as specified in the source code.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
bool hasStoredFPFeatures() const
FPOptionsOverride getFPFeatures() const
Represents the body of a CapturedStmt, and serves as its DeclContext.
CaseStmt - Represent a case statement.
bool caseStmtIsGNURange() const
True if this case statement is of the form case LHS ... RHS, which is a GNU extension.
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
path_iterator path_begin()
bool hasStoredFPFeatures() const
static const char * getCastKindName(CastKind CK)
const CXXBaseSpecifier *const * path_const_iterator
FPOptionsOverride getFPFeatures() const
unsigned getValue() const
Declaration of a class template.
Represents a 'co_await' expression.
CompoundAssignOperator - For compound assignments (e.g.
QualType getComputationLHSType() const
QualType getComputationResultType() const
CompoundStmt - This represents a group of statements like { stmt stmt }.
FPOptionsOverride getStoredFPFeatures() const
Get FPOptionsOverride from trailing storage.
bool hasStoredFPFeatures() const
Declaration of a C++20 concept.
A reference to a concept and its template args, as it appears in the code.
SourceRange getSourceRange() const LLVM_READONLY
TemplateDecl * getNamedConcept() const
Represents the specialization of a concept - evaluates to a prvalue of type bool.
NamedDecl * getFoundDecl() const
Represents the canonical version of C arrays with a specified constant size.
ConstantExpr - An expression that occurs in a constant context and optionally the result of evaluatin...
APValue getAPValueResult() const
bool hasAPValueResult() const
Represents a shadow constructor declaration introduced into a class by a C++11 using-declaration that...
CXXRecordDecl * getConstructedBaseClass() const
Get the base class whose constructor or constructor shadow declaration is passed the constructor argu...
bool constructsVirtualBase() const
Returns true if the constructed base class is a virtual base class subobject of this declaration's cl...
ConstructorUsingShadowDecl * getConstructedBaseClassShadowDecl() const
Get the inheriting constructor declaration for the base class for which we don't have an explicit ini...
ConstructorUsingShadowDecl * getNominatedBaseClassShadowDecl() const
Get the inheriting constructor declaration for the direct base class from which this using shadow dec...
CXXRecordDecl * getNominatedBaseClass() const
Get the base class that was named in the using declaration.
ConvertVectorExpr - Clang builtin function __builtin_convertvector This AST node provides support for...
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
bool hasStoredFPFeatures() const
Is FPFeatures in Trailing Storage?
Represents a 'co_return' statement in the C++ Coroutines TS.
DeclContext * getParent()
getParent - Returns the containing DeclContext.
A reference to a declared variable, function, enum, etc.
NamedDecl * getFoundDecl()
Get the NamedDecl through which this reference occurred.
NestedNameSpecifier getQualifier() const
If the name was qualified, retrieves the nested-name-specifier that precedes the name.
bool refersToEnclosingVariableOrCapture() const
Does this DeclRefExpr refer to an enclosing local or a captured variable?
bool isCapturedByCopyInLambdaWithExplicitObjectParameter() const
NonOdrUseReason isNonOdrUse() const
Is this expression a non-odr-use reference, and if so, why?
bool isImmediateEscalating() const
Decl - This represents one declaration (or definition), e.g.
FriendObjectKind getFriendObjectKind() const
Determines whether this declaration is the object of a friend declaration and, if so,...
ASTContext & getASTContext() const LLVM_READONLY
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
@ FOK_Undeclared
A friend of a previously-undeclared entity.
@ FOK_None
Not a friend object.
@ FOK_Declared
A friend of a previously-declared entity.
Module * getOwningModule() const
Get the module that owns this declaration (for visibility purposes).
bool isFromASTFile() const
Determine whether this declaration came from an AST file (such as a precompiled header or module) rat...
bool isInvalidDecl() const
SourceLocation getLocation() const
const char * getDeclKindName() const
bool isThisDeclarationReferenced() const
Whether this declaration was referenced.
bool isUsed(bool CheckUsedAttr=true) const
Whether any (re-)declaration of the entity was used, meaning that a definition is required.
DeclContext * getDeclContext()
AccessSpecifier getAccess() const
DeclContext * getLexicalDeclContext()
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC).
virtual SourceRange getSourceRange() const LLVM_READONLY
Source range that this declaration covers.
The name of a declaration.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies the name of this declaration, if it was present in ...
TemplateName getUnderlying() const
DefaultArguments getDefaultArguments() const
A qualified reference to a name whose declaration cannot yet be resolved.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies this declaration.
Represents an array type in C++ whose size is a value-dependent expression.
Represents an extended vector type where either the type or size is dependent.
NestedNameSpecifier getQualifier() const
Return the nested name specifier that qualifies this name.
Symbolic representation of a dynamic allocation.
IdentifierInfo & getAccessor() const
Represents a reference to emded data.
unsigned getStartingElementPos() const
size_t getDataElementCount() const
An instance of this object exists for each enum constant that is defined.
bool isScoped() const
Returns true if this is a C++11 scoped enumeration.
bool isScopedUsingClassTag() const
Returns true if this is a C++11 scoped enumeration.
bool isFixed() const
Returns true if this is an Objective-C, C++11, or Microsoft-style enumeration with a fixed underlying...
QualType getIntegerType() const
Return the integer type this enum decl corresponds to.
EnumDecl * getTemplateInstantiationPattern() const
Retrieve the enum definition from which this enumeration could be instantiated, if it is an instantia...
QualType getTypeAsWritten() const
getTypeAsWritten - Returns the type that this expression is casting to, as written in the source code...
Represents an expression – generally a full-expression – that introduces cleanups to be run at the en...
CleanupObject getObject(unsigned i) const
unsigned getNumObjects() const
llvm::PointerUnion< BlockDecl *, CompoundLiteralExpr * > CleanupObject
The type of objects that are kept in the cleanup.
This represents one expression.
bool isValueDependent() const
Determines whether the value of this expression depends on.
An expression trait intrinsic.
ExpressionTrait getTrait() const
ExtVectorElementExpr - This represents access to specific elements of a vector, and may occur on the ...
Represents difference between two FPOptions values.
Represents a member of a struct/union/class.
bool isMutable() const
Determines whether this field is mutable (C++ only).
std::string getValueAsString(unsigned Radix) const
double getValueAsApproximateDouble() const
getValueAsApproximateDouble - This returns the value as an inaccurate double.
FriendDecl - Represents the declaration of a friend entity, which can be a function,...
TypeSourceInfo * getFriendType() const
If this friend declaration names an (untemplated but possibly dependent) type, return the type; other...
bool isPackExpansion() const
Represents a function declaration or definition.
StringLiteral * getDeletedMessage() const
Get the message that indicates why this function was deleted.
bool isInlined() const
Determine whether this function should be inlined, because it is either marked "inline" or "constexpr...
FunctionDecl * getTemplateInstantiationPattern(bool ForDefinition=true) const
Retrieve the function declaration from which this function could be instantiated, if it is an instant...
bool isTrivial() const
Whether this function is "trivial" in some specialized C++ senses.
param_iterator param_begin()
bool isDeleted() const
Whether this function has been deleted.
StorageClass getStorageClass() const
Returns the storage class as written in the source.
bool isDeletedAsWritten() const
bool isPureVirtual() const
Whether this virtual function is pure, i.e.
bool isDefaulted() const
Whether this function is defaulted.
bool isIneligibleOrNotSelected() const
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine what kind of template instantiation this function represents.
bool isVirtualAsWritten() const
Whether this function is marked as virtual explicitly.
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
bool isInlineSpecified() const
Determine whether the "inline" keyword was specified for this function.
Represents a prototype with parameter type info, e.g.
Declaration of a template function.
FunctionType - C99 6.7.5.3 - Function Declarators.
static StringRef getNameForCallConv(CallingConv CC)
Represents a C11 generic selection.
AssociationTy< true > ConstAssociation
bool isResultDependent() const
Whether this generic selection is result-dependent.
GotoStmt - This represents a direct goto.
LabelDecl * getLabel() const
HLSLBufferDecl - Represent a cbuffer or tbuffer declaration.
This class represents temporary values used to represent inout and out arguments in HLSL.
bool isInOut() const
returns true if the parameter is inout and false if the parameter is out.
ArrayRef< llvm::hlsl::rootsig::RootElement > getRootElements() const
llvm::dxbc::RootSignatureVersion getVersion() const
const char * getNameStart() const
Return the beginning of the actual null-terminated string for this identifier.
StringRef getName() const
Return the actual identifier string.
IfStmt - This represents an if/then/else.
bool hasElseStorage() const
True if this IfStmt has storage for an else statement.
bool hasVarStorage() const
True if this IfStmt has storage for a variable declaration.
bool hasInitStorage() const
True if this IfStmt has the storage for an init statement.
bool isNegatedConsteval() const
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
bool isPartOfExplicitCast() const
Describes a module import declaration, which makes the contents of the named module visible in the cu...
Module * getImportedModule() const
Retrieve the module that was imported by the import declaration.
Represents a field injected from an anonymous union/struct into the parent scope.
ArrayRef< NamedDecl * > chain() const
Describes an C or C++ initializer list.
FieldDecl * getInitializedFieldInUnion()
If this initializes a union, specifies which field in the union to initialize.
Represents the declaration of a label.
LabelStmt - Represents a label, which has a substatement.
const char * getName() const
Implicit declaration of a temporary that was materialized by a MaterializeTemporaryExpr and lifetime-...
unsigned getManglingNumber() const
ValueDecl * getExtendingDecl()
Represents a linkage specification.
LinkageSpecLanguageIDs getLanguage() const
Return the language specified by this linkage specification.
Base class for BreakStmt and ContinueStmt.
LabelDecl * getLabelDecl()
const Stmt * getNamedLoopOrSwitch() const
If this is a named break/continue, get the loop or switch statement that this targets.
bool hasLabelTarget() const
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
ValueDecl * getExtendingDecl()
Get the declaration which triggered the lifetime-extension of this temporary, if any.
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
NestedNameSpecifier getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
NonOdrUseReason isNonOdrUse() const
Is this expression a non-odr-use reference, and if so, why?
Provides common interface for the Decls that cannot be redeclared, but can be merged if the same decl...
decl_type * getFirstDecl()
Return the first declaration of this declaration or itself if this is the only declaration.
Describes a module or submodule.
std::string getFullModuleName(bool AllowStringLiterals=false) const
Retrieve the full name of this module, including the path from its top-level module.
This represents a decl that may have a name.
bool isModulePrivate() const
Whether this declaration was marked as being private to the module in which it was defined.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Represents a C++ namespace alias.
NamespaceBaseDecl * getAliasedNamespace() const
Retrieve the namespace that this alias refers to, which may either be a NamespaceDecl or a NamespaceA...
Represent a C++ namespace.
bool isFirstDecl() const
True if this is the first declaration in its redeclaration chain.
bool isInline() const
Returns true if this is an inline namespace declaration.
bool isNested() const
Returns true if this is a nested namespace declaration.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
NamespaceAndPrefix getAsNamespaceAndPrefix() const
void print(raw_ostream &OS, const PrintingPolicy &Policy, bool ResolveTemplateArguments=false, bool PrintFinalScopeResOp=true) const
Print this nested name specifier to the given output stream.
const Type * getAsType() const
@ MicrosoftSuper
Microsoft's '__super' specifier, stored as a CXXRecordDecl* of the class it appeared in.
@ Global
The global specifier '::'. There is no stored value.
@ Type
A type, stored as a Type*.
@ Namespace
A namespace-like entity, stored as a NamespaceBaseDecl*.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
bool isParameterPack() const
Whether this parameter is a non-type template parameter pack.
unsigned getIndex() const
Get the index of the template parameter within its parameter list.
unsigned getDepth() const
Get the nesting depth of the template parameter.
Pseudo declaration for capturing expressions.
This is a basic class for representing single OpenMP clause.
This represents 'pragma omp declare reduction ...' directive.
Expr * getInitializer()
Get initializer expression (if specified) of the declare reduction construct.
Expr * getCombiner()
Get combiner expression of the declare reduction construct.
OMPDeclareReductionInitKind getInitializerKind() const
Get initializer kind.
OpenMP 5.0 [2.1.6 Iterators] Iterators are identifiers that expand to multiple values in the clause o...
IteratorRange getIteratorRange(unsigned I)
Gets the iterator range for the given iterator.
unsigned numOfIterators() const
Returns number of iterator definitions.
Decl * getIteratorDecl(unsigned I)
Gets the iterator declaration for the given iterator.
This represents 'pragma omp requires...' directive.
clauselist_range clauselists()
Represents Objective-C's @catch statement.
const VarDecl * getCatchParamDecl() const
ObjCBoolLiteralExpr - Objective-C Boolean Literal.
ObjCBoxedExpr - used for generalized expression boxing.
ObjCMethodDecl * getBoxingMethod() const
ObjCCategoryDecl - Represents a category declaration.
ObjCCategoryImplDecl * getImplementation() const
ObjCInterfaceDecl * getClassInterface()
protocol_range protocols() const
ObjCCategoryImplDecl - An object of this class encapsulates a category @implementation declaration.
ObjCCategoryDecl * getCategoryDecl() const
ObjCCompatibleAliasDecl - Represents alias of a class.
const ObjCInterfaceDecl * getClassInterface() const
ObjCEncodeExpr, used for @encode in Objective-C.
QualType getEncodedType() const
const ObjCInterfaceDecl * getClassInterface() const
ObjCImplementationDecl - Represents a class definition - this is where method definitions are specifi...
const ObjCInterfaceDecl * getSuperClass() const
Represents an ObjC class declaration.
protocol_range protocols() const
ObjCImplementationDecl * getImplementation() const
ObjCInterfaceDecl * getSuperClass() const
Represents typeof(type), a C23 feature and GCC extension, or `typeof_unqual(type),...
ObjCIvarDecl - Represents an ObjC instance variable.
AccessControl getAccessControl() const
bool getSynthesize() const
ObjCIvarRefExpr - A reference to an ObjC instance variable.
An expression that sends a message to the given Objective-C object or class.
Selector getSelector() const
@ SuperInstance
The receiver is the instance of the superclass object.
@ Instance
The receiver is an object instance.
@ SuperClass
The receiver is a superclass.
@ Class
The receiver is a class.
QualType getClassReceiver() const
Returns the type of a class message send, or NULL if the message is not a class message.
ReceiverKind getReceiverKind() const
Determine the kind of receiver that this message is being sent to.
ObjCMethodDecl - Represents an instance or class method declaration.
Selector getSelector() const
bool isInstanceMethod() const
QualType getReturnType() const
Represents one property declaration in an Objective-C interface.
ObjCMethodDecl * getGetterMethodDecl() const
ObjCMethodDecl * getSetterMethodDecl() const
ObjCPropertyAttribute::Kind getPropertyAttributes() const
PropertyControl getPropertyImplementation() const
ObjCPropertyImplDecl - Represents implementation declaration of a property in a class or category imp...
ObjCIvarDecl * getPropertyIvarDecl() const
Kind getPropertyImplementation() const
ObjCPropertyDecl * getPropertyDecl() const
ObjCPropertyRefExpr - A dot-syntax expression to access an ObjC property.
bool isMessagingGetter() const
True if the property reference will result in a message to the getter.
ObjCPropertyDecl * getExplicitProperty() const
bool isMessagingSetter() const
True if the property reference will result in a message to the setter.
ObjCMethodDecl * getImplicitPropertyGetter() const
bool isImplicitProperty() const
ObjCMethodDecl * getImplicitPropertySetter() const
bool isSuperReceiver() const
Represents an Objective-C protocol declaration.
protocol_range protocols() const
ObjCProtocolExpr used for protocol expression in Objective-C.
ObjCProtocolDecl * getProtocol() const
ObjCSelectorExpr used for @selector in Objective-C.
Selector getSelector() const
ObjCSubscriptRefExpr - used for array and dictionary subscripting.
bool isArraySubscriptRefExpr() const
ObjCMethodDecl * getAtIndexMethodDecl() const
ObjCMethodDecl * setAtIndexMethodDecl() const
Represents the declaration of an Objective-C type parameter.
bool hasExplicitBound() const
Whether this type parameter has an explicitly-written type bound, e.g., "T : NSView".
ObjCTypeParamVariance getVariance() const
Determine the variance of this type parameter.
This expression type represents an asterisk in an OpenACC Size-Expr, used in the 'tile' and 'gang' cl...
This is the base type for all OpenACC Clauses.
OpenACCDirectiveKind getDirectiveKind() const
ArrayRef< const OpenACCClause * > clauses() const
This is the base class for an OpenACC statement-level construct, other construct types are expected t...
OpenACCDirectiveKind getDirectiveKind() const
SourceLocation getRParenLoc() const
const Expr * getFunctionReference() const
SourceLocation getLParenLoc() const
UnresolvedSetImpl::iterator decls_iterator
decls_iterator decls_begin() const
decls_iterator decls_end() const
DeclarationName getName() const
Gets the name looked up.
Represents a #pragma detect_mismatch line.
StringRef getName() const
StringRef getValue() const
[C99 6.4.2.2] - A predefined identifier such as func.
StringRef getIdentKindName() const
PredefinedIdentKind getIdentKind() const
Represents an unpacked "presumed" location which can be presented to the user.
unsigned getColumn() const
Return the presumed column number of this location.
const char * getFilename() const
Return the presumed filename of this location.
unsigned getLine() const
Return the presumed line number of this location.
bool isInvalid() const
Return true if this object is invalid or uninitialized.
A (possibly-)qualified type.
SplitQualType split() const
Divides a QualType into its unqualified type and a set of local qualifiers.
std::string getAsString() const
static std::string getAsString(SplitQualType split, const PrintingPolicy &Policy)
Represents a template name as written in source code.
NestedNameSpecifier getQualifier() const
Return the nested name specifier that qualifies this name.
TemplateName getUnderlyingTemplate() const
Return the underlying template name.
bool hasTemplateKeyword() const
Whether the template name was prefixed by the "template" keyword.
Represents a struct/union/class.
Provides common interface for the Decls that can be redeclared.
decl_type * getFirstDecl()
Return the first declaration of this declaration or itself if this is the only declaration.
decl_type * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
Base for LValueReferenceType and RValueReferenceType.
C++2a [expr.prim.req]: A requires-expression provides a concise way to express requirements on templa...
bool isSatisfied() const
Whether or not the requires clause is satisfied.
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
const VarDecl * getNRVOCandidate() const
Retrieve the variable that might be used for the named return value optimization.
TypeSourceInfo * getTypeSourceInfo()
void print(llvm::raw_ostream &OS) const
Prints the full selector name (e.g. "foo:bar:").
Represents an expression that computes the length of a parameter pack.
NamedDecl * getPack() const
Retrieve the parameter pack.
Encodes a location in the source.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
void Visit(PTR(Stmt) S, ParamTys... P)
Stmt - This represents one statement.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
const char * getStmtClassName() const
StringLiteral - This represents a string literal expression, e.g.
void outputString(raw_ostream &OS) const
A structure for storing the information associated with a substituted template template parameter.
TemplateName getReplacement() const
TemplateTemplateParmDecl * getParameter() const
UnsignedOrNone getPackIndex() const
unsigned getIndex() const
Returns the index of the replaced parameter in the associated declaration.
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
SwitchStmt - This represents a 'switch' stmt.
bool hasVarStorage() const
True if this SwitchStmt has storage for a condition variable.
bool hasInitStorage() const
True if this SwitchStmt has storage for an init statement.
StringRef getKindName() const
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies the name of this declaration, if it was present in ...
Represents a template argument.
TemplateName getAsTemplate() const
Retrieve the template name for a template name argument.
bool structurallyEquals(const TemplateArgument &Other) const
Determines whether two template arguments are superficially the same.
void print(const PrintingPolicy &Policy, raw_ostream &Out, bool IncludeType) const
Print this template argument to the given output stream.
ValueDecl * getAsDecl() const
Retrieve the declaration for a declaration non-type template argument.
bool isCanonicalExpr() const
TemplateName getAsTemplateOrTemplatePattern() const
Retrieve the template argument as a template name; if the argument is a pack expansion,...
Represents a C++ template name within the type system.
TemplateDecl * getAsTemplateDecl(bool IgnoreDeduced=false) const
Retrieve the underlying template declaration that this template name refers to, if known.
DeducedTemplateStorage * getAsDeducedTemplateName() const
Retrieve the deduced template info, if any.
DependentTemplateName * getAsDependentTemplateName() const
Retrieve the underlying dependent template name structure, if any.
QualifiedTemplateName * getAsQualifiedTemplateName() const
Retrieve the underlying qualified template name structure, if any.
void print(raw_ostream &OS, const PrintingPolicy &Policy, Qualified Qual=Qualified::AsWritten) const
Print the template name.
@ UsingTemplate
A template name that refers to a template declaration found through a specific using shadow declarati...
@ OverloadedTemplate
A set of overloaded template declarations.
@ Template
A single template declaration.
@ DependentTemplate
A dependent template name that has not been resolved to a template (or set of templates).
@ SubstTemplateTemplateParm
A template template parameter that has been substituted for some other template name.
@ SubstTemplateTemplateParmPack
A template template parameter pack that has been substituted for a template template argument pack,...
@ DeducedTemplate
A template name that refers to another TemplateName with deduced default arguments.
@ QualifiedTemplate
A qualified template name, where the qualification is kept to describe the source code as written.
@ AssumedTemplate
An unqualified-id that has been assumed to name a function template that will be found by ADL.
UsingShadowDecl * getAsUsingShadowDecl() const
Retrieve the using shadow declaration through which the underlying template declaration is introduced...
SubstTemplateTemplateParmStorage * getAsSubstTemplateTemplateParm() const
Retrieve the substituted template template parameter, if known.
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
bool isParameterPack() const
Whether this template template parameter is a template parameter pack.
unsigned getIndex() const
Get the index of the template parameter within its parameter list.
unsigned getDepth() const
Get the nesting depth of the template parameter.
Declaration of a template type parameter.
bool wasDeclaredWithTypename() const
Whether this template type parameter was declared with the 'typename' keyword.
unsigned getIndex() const
Retrieve the index of the template parameter.
const TypeConstraint * getTypeConstraint() const
Returns the type constraint associated with this template parameter (if any).
bool isParameterPack() const
Returns whether this is a parameter pack.
unsigned getDepth() const
Retrieve the depth of the template parameter.
void VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *Node)
void VisitEnumDecl(const EnumDecl *D)
void VisitExprWithCleanups(const ExprWithCleanups *Node)
void visitInlineCommandComment(const comments::InlineCommandComment *C, const comments::FullComment *)
void VisitCXXStaticCastExpr(const CXXStaticCastExpr *Node)
void visitVerbatimBlockComment(const comments::VerbatimBlockComment *C, const comments::FullComment *)
void dumpPointer(const void *Ptr)
void VisitDeclarationTemplateArgument(const TemplateArgument &TA)
void VisitOpenACCLoopConstruct(const OpenACCLoopConstruct *S)
void VisitLinkageSpecDecl(const LinkageSpecDecl *D)
void VisitVectorType(const VectorType *T)
void VisitLoopControlStmt(const LoopControlStmt *L)
void VisitHLSLRootSignatureDecl(const HLSLRootSignatureDecl *D)
void VisitCoawaitExpr(const CoawaitExpr *Node)
void VisitUnaryOperator(const UnaryOperator *Node)
void dumpAccessSpecifier(AccessSpecifier AS)
void VisitHLSLOutArgExpr(const HLSLOutArgExpr *E)
void VisitDeducedTemplateSpecializationType(const DeducedTemplateSpecializationType *T)
void VisitObjCSelectorExpr(const ObjCSelectorExpr *Node)
void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *Node)
void VisitCXXUnresolvedConstructExpr(const CXXUnresolvedConstructExpr *Node)
void VisitPragmaCommentDecl(const PragmaCommentDecl *D)
void VisitOpenACCRoutineDecl(const OpenACCRoutineDecl *D)
void VisitDependentScopeDeclRefExpr(const DependentScopeDeclRefExpr *Node)
void VisitImportDecl(const ImportDecl *D)
void VisitUsingEnumDecl(const UsingEnumDecl *D)
void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D)
void VisitUnresolvedUsingType(const UnresolvedUsingType *T)
void VisitObjCProtocolExpr(const ObjCProtocolExpr *Node)
void VisitIntegralTemplateArgument(const TemplateArgument &TA)
void VisitObjCCategoryDecl(const ObjCCategoryDecl *D)
void VisitIndirectFieldDecl(const IndirectFieldDecl *D)
void VisitNullTemplateArgument(const TemplateArgument &TA)
void VisitPackTemplateArgument(const TemplateArgument &TA)
void VisitUsingType(const UsingType *T)
void VisitInjectedClassNameType(const InjectedClassNameType *T)
void VisitBinaryOperator(const BinaryOperator *Node)
void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node)
void VisitObjCInterfaceDecl(const ObjCInterfaceDecl *D)
void VisitBlockDecl(const BlockDecl *D)
void VisitCXXDeleteExpr(const CXXDeleteExpr *Node)
void VisitObjCBoxedExpr(const ObjCBoxedExpr *Node)
void VisitNullPtrTemplateArgument(const TemplateArgument &TA)
void VisitVarTemplateDecl(const VarTemplateDecl *D)
void VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T)
void VisitConceptSpecializationExpr(const ConceptSpecializationExpr *Node)
void VisitCXXDeductionGuideDecl(const CXXDeductionGuideDecl *D)
TextNodeDumper(raw_ostream &OS, const ASTContext &Context, bool ShowColors)
void VisitPredefinedExpr(const PredefinedExpr *Node)
void dumpType(QualType T)
void VisitMatrixElementExpr(const MatrixElementExpr *Node)
void VisitObjCEncodeExpr(const ObjCEncodeExpr *Node)
void dumpNestedNameSpecifier(NestedNameSpecifier NNS)
void VisitStructuralValueTemplateArgument(const TemplateArgument &TA)
void VisitHLSLBufferDecl(const HLSLBufferDecl *D)
void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D)
void VisitNamespaceAliasDecl(const NamespaceAliasDecl *D)
void VisitObjCMessageExpr(const ObjCMessageExpr *Node)
void dumpSourceRange(SourceRange R)
void VisitMemberExpr(const MemberExpr *Node)
void VisitOpenACCDataConstruct(const OpenACCDataConstruct *S)
void dumpBareTemplateName(TemplateName TN)
void VisitOpenACCConstructStmt(const OpenACCConstructStmt *S)
void VisitCompoundStmt(const CompoundStmt *Node)
void VisitConstantExpr(const ConstantExpr *Node)
void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node)
void VisitOpenACCDeclareDecl(const OpenACCDeclareDecl *D)
void VisitOpenACCAsteriskSizeExpr(const OpenACCAsteriskSizeExpr *S)
void VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Node)
void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D)
void VisitWhileStmt(const WhileStmt *Node)
void VisitCharacterLiteral(const CharacterLiteral *Node)
void VisitAccessSpecDecl(const AccessSpecDecl *D)
void VisitFunctionType(const FunctionType *T)
void VisitObjCImplementationDecl(const ObjCImplementationDecl *D)
void VisitReturnStmt(const ReturnStmt *Node)
void VisitTypeLoc(TypeLoc TL)
void VisitAutoType(const AutoType *T)
void VisitObjCInterfaceType(const ObjCInterfaceType *T)
void visitVerbatimLineComment(const comments::VerbatimLineComment *C, const comments::FullComment *)
void VisitTypedefDecl(const TypedefDecl *D)
void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Node)
void visitParamCommandComment(const comments::ParamCommandComment *C, const comments::FullComment *FC)
void VisitIntegerLiteral(const IntegerLiteral *Node)
void VisitObjCProtocolDecl(const ObjCProtocolDecl *D)
void VisitGotoStmt(const GotoStmt *Node)
void VisitDependentSizedExtVectorType(const DependentSizedExtVectorType *T)
void VisitFriendDecl(const FriendDecl *D)
void VisitSwitchStmt(const SwitchStmt *Node)
void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Node)
void VisitEmbedExpr(const EmbedExpr *S)
void VisitFunctionTemplateDecl(const FunctionTemplateDecl *D)
void VisitTemplateTemplateParmDecl(const TemplateTemplateParmDecl *D)
void VisitUsingDecl(const UsingDecl *D)
void VisitConstantArrayType(const ConstantArrayType *T)
void VisitTypeTemplateArgument(const TemplateArgument &TA)
void VisitObjCPropertyDecl(const ObjCPropertyDecl *D)
void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D)
void VisitObjCSubscriptRefExpr(const ObjCSubscriptRefExpr *Node)
void VisitArrayType(const ArrayType *T)
void visitHTMLEndTagComment(const comments::HTMLEndTagComment *C, const comments::FullComment *)
void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node)
void visitTextComment(const comments::TextComment *C, const comments::FullComment *)
void VisitLifetimeExtendedTemporaryDecl(const LifetimeExtendedTemporaryDecl *D)
void VisitCXXRecordDecl(const CXXRecordDecl *D)
void VisitTemplateTemplateArgument(const TemplateArgument &TA)
void dumpCleanupObject(const ExprWithCleanups::CleanupObject &C)
void VisitOpenACCExitDataConstruct(const OpenACCExitDataConstruct *S)
void VisitCaseStmt(const CaseStmt *Node)
void VisitRValueReferenceType(const ReferenceType *T)
void VisitPackExpansionType(const PackExpansionType *T)
void VisitConceptDecl(const ConceptDecl *D)
void VisitOpenACCEnterDataConstruct(const OpenACCEnterDataConstruct *S)
void VisitCallExpr(const CallExpr *Node)
void VisitCapturedDecl(const CapturedDecl *D)
void VisitOpenACCWaitConstruct(const OpenACCWaitConstruct *S)
void VisitBuiltinTemplateDecl(const BuiltinTemplateDecl *D)
void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node)
void VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D)
void VisitCoreturnStmt(const CoreturnStmt *Node)
void VisitSizeOfPackExpr(const SizeOfPackExpr *Node)
void VisitDeclRefExpr(const DeclRefExpr *Node)
void VisitLabelStmt(const LabelStmt *Node)
void VisitOpenACCUpdateConstruct(const OpenACCUpdateConstruct *S)
void Visit(const comments::Comment *C, const comments::FullComment *FC)
void VisitLabelDecl(const LabelDecl *D)
void VisitUnaryTransformType(const UnaryTransformType *T)
void VisitStringLiteral(const StringLiteral *Str)
void VisitOMPRequiresDecl(const OMPRequiresDecl *D)
void dumpBareType(QualType T, bool Desugar=true)
void VisitTemplateSpecializationType(const TemplateSpecializationType *T)
void VisitOpenACCInitConstruct(const OpenACCInitConstruct *S)
void VisitTemplateTypeParmDecl(const TemplateTypeParmDecl *D)
void VisitCompoundAssignOperator(const CompoundAssignOperator *Node)
void VisitCXXThisExpr(const CXXThisExpr *Node)
void VisitOpenACCRoutineDeclAttr(const OpenACCRoutineDeclAttr *A)
void dumpName(const NamedDecl *ND)
void dumpTemplateName(TemplateName TN, StringRef Label={})
void VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *Node)
void VisitObjCIvarDecl(const ObjCIvarDecl *D)
void VisitFieldDecl(const FieldDecl *D)
void dumpDeclRef(const Decl *D, StringRef Label={})
void VisitRecordDecl(const RecordDecl *D)
void VisitCXXNewExpr(const CXXNewExpr *Node)
void VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *Node)
void VisitCastExpr(const CastExpr *Node)
void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D)
void VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T)
void VisitExpressionTraitExpr(const ExpressionTraitExpr *Node)
void VisitAddrLabelExpr(const AddrLabelExpr *Node)
void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D)
void VisitCXXDependentScopeMemberExpr(const CXXDependentScopeMemberExpr *Node)
void VisitOpenACCAtomicConstruct(const OpenACCAtomicConstruct *S)
void visitBlockCommandComment(const comments::BlockCommandComment *C, const comments::FullComment *)
void VisitExpressionTemplateArgument(const TemplateArgument &TA)
void VisitTypeAliasDecl(const TypeAliasDecl *D)
void VisitVarDecl(const VarDecl *D)
void VisitOpenACCCacheConstruct(const OpenACCCacheConstruct *S)
void VisitFixedPointLiteral(const FixedPointLiteral *Node)
void VisitOMPIteratorExpr(const OMPIteratorExpr *Node)
void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D)
void VisitObjCMethodDecl(const ObjCMethodDecl *D)
void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D)
void VisitUsingShadowDecl(const UsingShadowDecl *D)
void VisitNamespaceDecl(const NamespaceDecl *D)
void VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D)
void VisitOpenACCHostDataConstruct(const OpenACCHostDataConstruct *S)
void VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node)
void VisitIfStmt(const IfStmt *Node)
void VisitCXXConstructExpr(const CXXConstructExpr *Node)
void VisitFunctionProtoType(const FunctionProtoType *T)
void dumpTemplateArgument(const TemplateArgument &TA)
void dumpLocation(SourceLocation Loc)
void VisitDependentSizedArrayType(const DependentSizedArrayType *T)
void VisitOpenACCCombinedConstruct(const OpenACCCombinedConstruct *S)
void VisitOMPExecutableDirective(const OMPExecutableDirective *D)
void VisitImplicitCastExpr(const ImplicitCastExpr *Node)
void VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *Node)
void VisitCXXNamedCastExpr(const CXXNamedCastExpr *Node)
void VisitTagType(const TagType *T)
void VisitTemplateExpansionTemplateArgument(const TemplateArgument &TA)
void VisitSYCLUniqueStableNameExpr(const SYCLUniqueStableNameExpr *Node)
void VisitNonTypeTemplateParmDecl(const NonTypeTemplateParmDecl *D)
void VisitOpenACCSetConstruct(const OpenACCSetConstruct *S)
void VisitFunctionDecl(const FunctionDecl *D)
void visitTParamCommandComment(const comments::TParamCommandComment *C, const comments::FullComment *FC)
void VisitTypeTraitExpr(const TypeTraitExpr *Node)
void dumpBareDeclRef(const Decl *D)
void VisitExtVectorElementExpr(const ExtVectorElementExpr *Node)
void VisitConvertVectorExpr(const ConvertVectorExpr *S)
void visitVerbatimBlockLineComment(const comments::VerbatimBlockLineComment *C, const comments::FullComment *)
void VisitOpenACCShutdownConstruct(const OpenACCShutdownConstruct *S)
void VisitFloatingLiteral(const FloatingLiteral *Node)
void VisitInitListExpr(const InitListExpr *ILE)
void VisitRequiresExpr(const RequiresExpr *Node)
void VisitVariableArrayType(const VariableArrayType *T)
void VisitGenericSelectionExpr(const GenericSelectionExpr *E)
void VisitTemplateTypeParmType(const TemplateTypeParmType *T)
void VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *Node)
void visitHTMLStartTagComment(const comments::HTMLStartTagComment *C, const comments::FullComment *)
void VisitEnumConstantDecl(const EnumConstantDecl *D)
void VisitPragmaDetectMismatchDecl(const PragmaDetectMismatchDecl *D)
void dumpTemplateSpecializationKind(TemplateSpecializationKind TSK)
void VisitAtomicExpr(const AtomicExpr *AE)
void VisitObjCCompatibleAliasDecl(const ObjCCompatibleAliasDecl *D)
void VisitClassTemplateDecl(const ClassTemplateDecl *D)
void VisitBindingDecl(const BindingDecl *D)
void VisitTypedefType(const TypedefType *T)
TextTreeStructure(raw_ostream &OS, bool ShowColors)
void AddChild(Fn DoAddChild)
Add a child of the current node. Calls DoAddChild without arguments.
Represents the declaration of a typedef-name via a C++11 alias-declaration.
Declaration of an alias template.
Symbolic representation of typeid(T) for some type T.
RetTy Visit(TypeLoc TyLoc)
Base wrapper for a particular "section" of type source info.
QualType getType() const
Get the type for which this source info wrapper provides information.
SourceRange getSourceRange() const LLVM_READONLY
Get the full source range.
TypeLocClass getTypeLocClass() const
const Type * getTypePtr() const
A container of type source information.
QualType getType() const
Return the type wrapped by this type source info.
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
TypeTrait getTrait() const
Determine which type trait this expression uses.
RetTy Visit(const Type *T)
Performs the operation associated with this visitor object.
The base class of the type hierarchy.
bool isSignedIntegerType() const
Return true if this is an integer type that is signed, according to C99 6.2.5p4 [char,...
QualType getLocallyUnqualifiedSingleStepDesugaredType() const
Pull a single level of sugar off of this locally-unqualified type.
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
const char * getTypeClassName() const
const T * getAs() const
Member-template getAs<specific type>'.
Represents the declaration of a typedef-name via the 'typedef' type specifier.
QualType getUnderlyingType() const
UnaryExprOrTypeTraitExpr - expression with either a type or (unevaluated) expression operand.
QualType getArgumentType() const
bool isArgumentType() const
UnaryExprOrTypeTrait getKind() const
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
static bool isPostfix(Opcode Op)
isPostfix - Return true if this is a postfix operation, like x++.
bool hasStoredFPFeatures() const
Is FPFeatures in Trailing Storage?
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
static StringRef getOpcodeStr(Opcode Op)
getOpcodeStr - Turn an Opcode enum value into the punctuation char it corresponds to,...
bool canOverflow() const
Returns true if the unary operator can cause an overflow.
A reference to a name which we were able to look up during parsing but could not resolve to a specifi...
bool requiresADL() const
True if this declaration should be extended by argument-dependent lookup.
Represents the dependent type named by a dependently-scoped typename using declaration,...
Represents a dependent using declaration which was marked with typename.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies the name.
Represents a dependent using declaration which was not marked with typename.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies the name.
Represents a C++ using-declaration.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies the name.
Represents C++ using-directive.
NamespaceDecl * getNominatedNamespace()
Returns the namespace nominated by this using-directive.
Represents a C++ using-enum-declaration.
EnumDecl * getEnumDecl() const
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
NamedDecl * getTargetDecl() const
Gets the underlying declaration which has been brought into the local scope.
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
bool isParameterPack() const
Determine whether this value is actually a function parameter pack, init-capture pack,...
Represents a variable declaration or definition.
bool isConstexpr() const
Whether this variable is (C++11) constexpr.
TLSKind getTLSKind() const
InitializationStyle getInitStyle() const
The style of initialization for this declaration.
static const char * getStorageClassSpecifierString(StorageClass SC)
Return the string used to specify the storage class SC.
@ ListInit
Direct list-initialization (C++11)
@ CInit
C-style initialization with assignment.
@ ParenListInit
Parenthesized list-initialization (C++20)
@ CallInit
Call-style initialization (C++98)
APValue * evaluateValue() const
Attempt to evaluate the value of the initializer attached to this declaration, and produce notes expl...
VarDecl * getTemplateInstantiationPattern() const
Retrieve the variable declaration from which this variable could be instantiated, if it is an instant...
bool isNRVOVariable() const
Determine whether this local variable can be used with the named return value optimization (NRVO).
QualType::DestructionKind needsDestruction(const ASTContext &Ctx) const
Would the destruction of this variable have any effect, and if so, what kind?
bool isInline() const
Whether this variable is (C++1z) inline.
const Expr * getInit() const
@ TLS_Static
TLS with a known-constant initializer.
@ TLS_Dynamic
TLS with a dynamic initializer.
@ TLS_None
Not a TLS variable.
StorageClass getStorageClass() const
Returns the storage class as written in the source.
TemplateSpecializationKind getTemplateSpecializationKind() const
If this variable is an instantiation of a variable template or a static data member of a class templa...
Declaration of a variable template.
Represents a C array with a specified size that is not an integer-constant-expression.
Represents a GCC generic vector type.
WhileStmt - This represents a 'while' stmt.
bool hasVarStorage() const
True if this WhileStmt has storage for a condition variable.
A static requirement that can be used in a requires-expression to check properties of types and expre...
RequirementKind getKind() const
bool containsUnexpandedParameterPack() const
void Visit(REF(TemplateArgument) TA, ParamTys... P)
The JSON file list parser is used to communicate input to InstallAPI.
bool isa(CodeGen::Address addr)
llvm::StringRef getAccessSpelling(AccessSpecifier AS)
@ RQ_None
No ref-qualifier was provided.
@ RQ_LValue
An lvalue ref-qualifier was provided (&).
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
@ OK_VectorComponent
A vector component is an element or range of elements of a vector.
@ OK_ObjCProperty
An Objective-C property is a logical field of an Objective-C object which is read and written via Obj...
@ OK_ObjCSubscript
An Objective-C array/dictionary subscripting which reads an object or writes at the subscripted array...
@ OK_Ordinary
An ordinary object is located at an address in memory.
@ OK_BitField
A bitfield object is a bitfield on a C or C++ record.
@ OK_MatrixComponent
A matrix component is a single element or range of elements of a matrix.
@ Override
Merge availability attributes for an override, which requires an exact match or a weakening of constr...
@ Auto
'auto' clause, allowed on 'loop' directives.
@ Bind
'bind' clause, allowed on routine constructs.
@ Gang
'gang' clause, allowed on 'loop' and Combined constructs.
@ Wait
'wait' clause, allowed on Compute, Data, 'update', and Combined constructs.
@ DevicePtr
'deviceptr' clause, allowed on Compute and Combined Constructs, plus 'data' and 'declare'.
@ PCopyOut
'copyout' clause alias 'pcopyout'. Preserved for diagnostic purposes.
@ VectorLength
'vector_length' clause, allowed on 'parallel', 'kernels', 'parallel loop', and 'kernels loop' constru...
@ Async
'async' clause, allowed on Compute, Data, 'update', 'wait', and Combined constructs.
@ PresentOrCreate
'create' clause alias 'present_or_create'.
@ Collapse
'collapse' clause, allowed on 'loop' and Combined constructs.
@ NoHost
'nohost' clause, allowed on 'routine' directives.
@ PresentOrCopy
'copy' clause alias 'present_or_copy'. Preserved for diagnostic purposes.
@ DeviceNum
'device_num' clause, allowed on 'init', 'shutdown', and 'set' constructs.
@ Private
'private' clause, allowed on 'parallel', 'serial', 'loop', 'parallel loop', and 'serial loop' constru...
@ Invalid
Represents an invalid clause, for the purposes of parsing.
@ Vector
'vector' clause, allowed on 'loop', Combined, and 'routine' directives.
@ Copy
'copy' clause, allowed on Compute and Combined Constructs, plus 'data' and 'declare'.
@ Worker
'worker' clause, allowed on 'loop', Combined, and 'routine' directives.
@ Create
'create' clause, allowed on Compute and Combined constructs, plus 'data', 'enter data',...
@ DeviceType
'device_type' clause, allowed on Compute, 'data', 'init', 'shutdown', 'set', update',...
@ DefaultAsync
'default_async' clause, allowed on 'set' construct.
@ Attach
'attach' clause, allowed on Compute and Combined constructs, plus 'data' and 'enter data'.
@ Shortloop
'shortloop' is represented in the ACC.td file, but isn't present in the standard.
@ NumGangs
'num_gangs' clause, allowed on 'parallel', 'kernels', parallel loop', and 'kernels loop' constructs.
@ If
'if' clause, allowed on all the Compute Constructs, Data Constructs, Executable Constructs,...
@ Default
'default' clause, allowed on parallel, serial, kernel (and compound) constructs.
@ UseDevice
'use_device' clause, allowed on 'host_data' construct.
@ NoCreate
'no_create' clause, allowed on allowed on Compute and Combined constructs, plus 'data'.
@ PresentOrCopyOut
'copyout' clause alias 'present_or_copyout'.
@ Link
'link' clause, allowed on 'declare' construct.
@ Reduction
'reduction' clause, allowed on Parallel, Serial, Loop, and the combined constructs.
@ Self
'self' clause, allowed on Compute and Combined Constructs, plus 'update'.
@ CopyOut
'copyout' clause, allowed on Compute and Combined constructs, plus 'data', 'exit data',...
@ Seq
'seq' clause, allowed on 'loop' and 'routine' directives.
@ FirstPrivate
'firstprivate' clause, allowed on 'parallel', 'serial', 'parallel loop', and 'serial loop' constructs...
@ Host
'host' clause, allowed on 'update' construct.
@ PCopy
'copy' clause alias 'pcopy'. Preserved for diagnostic purposes.
@ Tile
'tile' clause, allowed on 'loop' and Combined constructs.
@ PCopyIn
'copyin' clause alias 'pcopyin'. Preserved for diagnostic purposes.
@ DeviceResident
'device_resident' clause, allowed on the 'declare' construct.
@ PCreate
'create' clause alias 'pcreate'. Preserved for diagnostic purposes.
@ Present
'present' clause, allowed on Compute and Combined constructs, plus 'data' and 'declare'.
@ DType
'dtype' clause, an alias for 'device_type', stored separately for diagnostic purposes.
@ CopyIn
'copyin' clause, allowed on Compute and Combined constructs, plus 'data', 'enter data',...
@ Device
'device' clause, allowed on the 'update' construct.
@ Independent
'independent' clause, allowed on 'loop' directives.
@ NumWorkers
'num_workers' clause, allowed on 'parallel', 'kernels', parallel loop', and 'kernels loop' constructs...
@ IfPresent
'if_present' clause, allowed on 'host_data' and 'update' directives.
@ Detach
'detach' clause, allowed on the 'exit data' construct.
@ Delete
'delete' clause, allowed on the 'exit data' construct.
@ PresentOrCopyIn
'copyin' clause alias 'present_or_copyin'.
@ Finalize
'finalize' clause, allowed on 'exit data' directive.
AccessSpecifier
A C++ access specifier (public, private, protected), plus the special value "none" which means differ...
StorageClass
Storage classes.
IdentifierLoc DeviceTypeArgument
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
@ VK_XValue
An x-value expression is a reference to an object with independent storage but which can be "moved",...
@ VK_LValue
An l-value expression is a reference to an object with independent storage.
const char * getTraitSpelling(ExpressionTrait T) LLVM_READONLY
Return the spelling of the type trait TT. Never null.
TemplateSpecializationKind
Describes the kind of template specialization that a particular template specialization declaration r...
@ TSK_ExplicitInstantiationDefinition
This template specialization was instantiated from a template due to an explicit instantiation defini...
@ TSK_ExplicitInstantiationDeclaration
This template specialization was instantiated from a template due to an explicit instantiation declar...
@ TSK_ExplicitSpecialization
This template specialization was declared or defined by an explicit specialization (C++ [temp....
@ TSK_ImplicitInstantiation
This template specialization was implicitly instantiated from a template.
@ TSK_Undeclared
This template specialization was formed from a template-id but has not yet been declared,...
@ Invariant
The parameter is invariant: must match exactly.
@ Contravariant
The parameter is contravariant, e.g., X<T> is a subtype of X when the type parameter is covariant and...
@ Covariant
The parameter is covariant, e.g., X<T> is a subtype of X when the type parameter is covariant and T i...
const char * getOperatorSpelling(OverloadedOperatorKind Operator)
Retrieve the spelling of the given overloaded operator, without the preceding "operator" keyword.
@ AltiVecBool
is AltiVec 'vector bool ...'
@ SveFixedLengthData
is AArch64 SVE fixed-length data vector
@ AltiVecVector
is AltiVec vector
@ AltiVecPixel
is AltiVec 'vector Pixel'
@ Generic
not a target-specific vector type
@ RVVFixedLengthData
is RISC-V RVV fixed-length data vector
@ RVVFixedLengthMask
is RISC-V RVV fixed-length mask vector
@ NeonPoly
is ARM Neon polynomial vector
@ SveFixedLengthPredicate
is AArch64 SVE fixed-length predicate vector
U cast(CodeGen::Address addr)
ElaboratedTypeKeyword
The elaboration keyword that precedes a qualified type name or introduces an elaborated-type-specifie...
@ None
No keyword precedes the qualified type name.
@ EST_DependentNoexcept
noexcept(expression), value-dependent
@ EST_Uninstantiated
not instantiated yet
@ EST_Unparsed
not parsed yet
@ EST_NoThrow
Microsoft __declspec(nothrow) extension.
@ EST_None
no exception specification
@ EST_MSAny
Microsoft throw(...) extension.
@ EST_BasicNoexcept
noexcept
@ EST_NoexceptFalse
noexcept(expression), evals to 'false'
@ EST_Unevaluated
not evaluated yet, for special member function
@ EST_NoexceptTrue
noexcept(expression), evals to 'true'
@ EST_Dynamic
throw(T1, T2)
@ NOUR_Discarded
This name appears as a potential result of a discarded value expression.
@ NOUR_Unevaluated
This name appears in an unevaluated operand.
@ NOUR_None
This is an odr-use.
@ NOUR_Constant
This name appears as a potential result of an lvalue-to-rvalue conversion that is a constant expressi...
static constexpr TerminalColor Value
static constexpr TerminalColor Address
static constexpr TerminalColor Comment
static constexpr TerminalColor DeclKindName
static constexpr TerminalColor ObjectKind
static constexpr TerminalColor Null
static constexpr TerminalColor Location
static constexpr TerminalColor Attr
static constexpr TerminalColor DeclName
static constexpr TerminalColor Stmt
static constexpr TerminalColor Cast
static constexpr TerminalColor ValueKind
static constexpr TerminalColor Undeserialized
static constexpr TerminalColor Type
static constexpr TerminalColor Errors
FunctionDecl * SourceDecl
The function whose exception specification this is, for EST_Unevaluated and EST_Uninstantiated.
FunctionDecl * SourceTemplate
The function template whose exception specification this is instantiated from, for EST_Uninstantiated...
ExceptionSpecificationType Type
The kind of exception specification this is.
Extra information about a function prototype.
ExceptionSpecInfo ExceptionSpec
static StringRef getKeywordName(ElaboratedTypeKeyword Keyword)
Iterator range representation begin:end[:step].
A std::pair-like structure for storing a qualified type split into its local qualifiers and its local...