clang 22.0.0git
ASTNodeTraverser.h
Go to the documentation of this file.
1//===--- ASTNodeTraverser.h - Traversal of AST nodes ----------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the AST traversal facilities. Other users
10// of this class may make use of the same traversal logic by inheriting it,
11// similar to RecursiveASTVisitor.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_AST_ASTNODETRAVERSER_H
16#define LLVM_CLANG_AST_ASTNODETRAVERSER_H
17
25#include "clang/AST/Type.h"
28#include "llvm/Support/SaveAndRestore.h"
29
30namespace clang {
31
32class APValue;
33
34/**
35
36ASTNodeTraverser traverses the Clang AST for dumping purposes.
37
38The `Derived::doGetNodeDelegate()` method is required to be an accessible member
39which returns a reference of type `NodeDelegateType &` which implements the
40following interface:
41
42struct {
43 template <typename Fn> void AddChild(Fn DoAddChild);
44 template <typename Fn> void AddChild(StringRef Label, Fn DoAddChild);
45
46 void Visit(const comments::Comment *C, const comments::FullComment *FC);
47 void Visit(const Attr *A);
48 void Visit(const TemplateArgument &TA, SourceRange R = {},
49 const Decl *From = nullptr, StringRef Label = {});
50 void Visit(const Stmt *Node);
51 void Visit(const Type *T);
52 void Visit(QualType T);
53 void Visit(TypeLoc);
54 void Visit(const Decl *D);
55 void Visit(const CXXCtorInitializer *Init);
56 void Visit(const OpenACCClause *C);
57 void Visit(const OMPClause *C);
58 void Visit(const BlockDecl::Capture &C);
59 void Visit(const GenericSelectionExpr::ConstAssociation &A);
60 void Visit(const concepts::Requirement *R);
61 void Visit(const APValue &Value, QualType Ty);
62};
63*/
64template <typename Derived, typename NodeDelegateType>
66 : public ConstDeclVisitor<Derived>,
67 public ConstStmtVisitor<Derived>,
68 public comments::ConstCommentVisitor<Derived, void,
69 const comments::FullComment *>,
70 public TypeVisitor<Derived>,
71 public TypeLocVisitor<Derived>,
72 public ConstAttrVisitor<Derived>,
73 public ConstTemplateArgumentVisitor<Derived> {
74
75 /// Indicates whether we should trigger deserialization of nodes that had
76 /// not already been loaded.
77 bool Deserialize = false;
78
79 /// Tracks whether we should dump TypeLocs etc.
80 ///
81 /// Detailed location information such as TypeLoc nodes is not usually
82 /// included in the dump (too verbose).
83 /// But when explicitly asked to dump a Loc node, we do so recursively,
84 /// including e.g. FunctionTypeLoc => ParmVarDecl => TypeLoc.
85 bool VisitLocs = false;
86
88
89 NodeDelegateType &getNodeDelegate() {
90 return getDerived().doGetNodeDelegate();
91 }
92 Derived &getDerived() { return *static_cast<Derived *>(this); }
93
94public:
95 void setDeserialize(bool D) { Deserialize = D; }
96 bool getDeserialize() const { return Deserialize; }
97
98 void SetTraversalKind(TraversalKind TK) { Traversal = TK; }
99 TraversalKind GetTraversalKind() const { return Traversal; }
100
101 void Visit(const Decl *D, bool VisitLocs = false) {
102 if (Traversal == TK_IgnoreUnlessSpelledInSource && D && D->isImplicit())
103 return;
104
105 getNodeDelegate().AddChild([=] {
106 getNodeDelegate().Visit(D);
107 if (!D)
108 return;
109
110 {
111 llvm::SaveAndRestore RestoreVisitLocs(this->VisitLocs, VisitLocs);
113 }
114
115 for (const auto &A : D->attrs())
116 Visit(A);
117
118 if (const comments::FullComment *Comment =
120 Visit(Comment, Comment);
121
122 // Decls within functions are visited by the body.
124 if (Traversal != TK_AsIs) {
125 if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D)) {
126 auto SK = CTSD->getSpecializationKind();
129 return;
130 }
131 }
132 if (const auto *DC = dyn_cast<DeclContext>(D))
133 dumpDeclContext(DC);
134 }
135 });
136 }
137
138 void Visit(const Stmt *Node, StringRef Label = {}) {
139 getNodeDelegate().AddChild(Label, [=] {
140 const Stmt *S = Node;
141
142 if (auto *E = dyn_cast_or_null<Expr>(S)) {
143 switch (Traversal) {
144 case TK_AsIs:
145 break;
147 S = E->IgnoreUnlessSpelledInSource();
148 break;
149 }
150 }
151
152 getNodeDelegate().Visit(S);
153
154 if (!S) {
155 return;
156 }
157
159
160 // Some statements have custom mechanisms for dumping their children.
161 if (isa<DeclStmt, GenericSelectionExpr, RequiresExpr,
162 OpenACCWaitConstruct, SYCLKernelCallStmt>(S))
163 return;
164
165 if (Traversal == TK_IgnoreUnlessSpelledInSource &&
166 isa<LambdaExpr, CXXForRangeStmt, CallExpr,
167 CXXRewrittenBinaryOperator>(S))
168 return;
169
170 for (const Stmt *SubStmt : S->children())
171 Visit(SubStmt);
172 });
173 }
174
176 SplitQualType SQT = T.split();
177 if (!SQT.Quals.hasQualifiers())
178 return Visit(SQT.Ty);
179
180 getNodeDelegate().AddChild([=] {
181 getNodeDelegate().Visit(T);
182 Visit(T.split().Ty);
183 });
184 }
185
186 void Visit(const Type *T) {
187 getNodeDelegate().AddChild([=] {
188 getNodeDelegate().Visit(T);
189 if (!T)
190 return;
192
193 QualType SingleStepDesugar =
194 T->getLocallyUnqualifiedSingleStepDesugaredType();
195 if (SingleStepDesugar != QualType(T, 0))
196 Visit(SingleStepDesugar);
197 });
198 }
199
201 getNodeDelegate().AddChild([=] {
202 getNodeDelegate().Visit(T);
203 if (T.isNull())
204 return;
206 if (auto Inner = T.getNextTypeLoc())
207 Visit(Inner);
208 });
209 }
210
211 void Visit(const Attr *A) {
212 getNodeDelegate().AddChild([=] {
213 getNodeDelegate().Visit(A);
215 });
216 }
217
219 if (Traversal == TK_IgnoreUnlessSpelledInSource && !Init->isWritten())
220 return;
221 getNodeDelegate().AddChild([=] {
222 getNodeDelegate().Visit(Init);
223 Visit(Init->getInit());
224 });
225 }
226
227 void Visit(const TemplateArgument &A, SourceRange R = {},
228 const Decl *From = nullptr, const char *Label = nullptr) {
229 getNodeDelegate().AddChild([=] {
230 getNodeDelegate().Visit(A, R, From, Label);
232 });
233 }
234
236 getNodeDelegate().AddChild([=] {
237 getNodeDelegate().Visit(C);
238 if (C.hasCopyExpr())
239 Visit(C.getCopyExpr());
240 });
241 }
242
243 void Visit(const OpenACCClause *C) {
244 getNodeDelegate().AddChild([=] {
245 getNodeDelegate().Visit(C);
246 for (const auto *S : C->children())
247 Visit(S);
248 });
249 }
250
251 void Visit(const OMPClause *C) {
252 getNodeDelegate().AddChild([=] {
253 getNodeDelegate().Visit(C);
254 for (const auto *S : C->children())
255 Visit(S);
256 });
257 }
258
260 getNodeDelegate().AddChild([=] {
261 getNodeDelegate().Visit(A);
262 if (const TypeSourceInfo *TSI = A.getTypeSourceInfo())
263 Visit(TSI->getType());
264 Visit(A.getAssociationExpr());
265 });
266 }
267
269 getNodeDelegate().AddChild([=] {
270 getNodeDelegate().Visit(R);
271 if (!R)
272 return;
273 if (auto *TR = dyn_cast<concepts::TypeRequirement>(R)) {
274 if (!TR->isSubstitutionFailure())
275 Visit(TR->getType()->getType().getTypePtr());
276 } else if (auto *ER = dyn_cast<concepts::ExprRequirement>(R)) {
277 if (!ER->isExprSubstitutionFailure())
278 Visit(ER->getExpr());
279 if (!ER->getReturnTypeRequirement().isEmpty())
280 Visit(ER->getReturnTypeRequirement()
281 .getTypeConstraint()
282 ->getImmediatelyDeclaredConstraint());
283 } else if (auto *NR = dyn_cast<concepts::NestedRequirement>(R)) {
284 if (!NR->hasInvalidConstraint())
285 Visit(NR->getConstraintExpr());
286 }
287 });
288 }
289
290 void Visit(const ConceptReference *R) {
291 getNodeDelegate().AddChild([=] { getNodeDelegate().Visit(R); });
292 }
293
294 void Visit(const APValue &Value, QualType Ty) {
295 getNodeDelegate().AddChild([=] { getNodeDelegate().Visit(Value, Ty); });
296 }
297
299 getNodeDelegate().AddChild([=] {
300 getNodeDelegate().Visit(C, FC);
301 if (!C) {
302 return;
303 }
304 comments::ConstCommentVisitor<Derived, void,
306 FC);
307 for (comments::Comment::child_iterator I = C->child_begin(),
308 E = C->child_end();
309 I != E; ++I)
310 Visit(*I, FC);
311 });
312 }
313
314 void Visit(const DynTypedNode &N) {
315 // FIXME: Improve this with a switch or a visitor pattern.
316 if (const auto *D = N.get<Decl>())
317 Visit(D);
318 else if (const auto *S = N.get<Stmt>())
319 Visit(S);
320 else if (const auto *QT = N.get<QualType>())
321 Visit(*QT);
322 else if (const auto *T = N.get<Type>())
323 Visit(T);
324 else if (const auto *TL = N.get<TypeLoc>())
325 Visit(*TL);
326 else if (const auto *C = N.get<CXXCtorInitializer>())
327 Visit(C);
328 else if (const auto *C = N.get<OMPClause>())
329 Visit(C);
330 else if (const auto *T = N.get<TemplateArgument>())
331 Visit(*T);
332 else if (const auto *CR = N.get<ConceptReference>())
333 Visit(CR);
334 }
335
336 void dumpDeclContext(const DeclContext *DC) {
337 if (!DC)
338 return;
339
340 for (const auto *D : (Deserialize ? DC->decls() : DC->noload_decls()))
341 Visit(D);
342 }
343
345 if (!TPL)
346 return;
347
348 for (const auto &TP : *TPL)
349 Visit(TP);
350
351 if (const Expr *RC = TPL->getRequiresClause())
352 Visit(RC);
353 }
354
355 void
357 if (!TALI)
358 return;
359
360 for (const auto &TA : TALI->arguments())
362 }
363
365 const Decl *From = nullptr,
366 const char *Label = nullptr) {
367 Visit(A.getArgument(), A.getSourceRange(), From, Label);
368 }
369
371 for (unsigned i = 0, e = TAL.size(); i < e; ++i)
372 Visit(TAL[i]);
373 }
374
375 void dumpObjCTypeParamList(const ObjCTypeParamList *typeParams) {
376 if (!typeParams)
377 return;
378
379 for (const auto &typeParam : *typeParams) {
380 Visit(typeParam);
381 }
382 }
383
384 void VisitComplexType(const ComplexType *T) { Visit(T->getElementType()); }
386 Visit(T->getTypeSourceInfo()->getTypeLoc());
387 }
388 void VisitPointerType(const PointerType *T) { Visit(T->getPointeeType()); }
390 Visit(T->getPointeeType());
391 }
393 Visit(T->getPointeeType());
394 }
396 // FIXME: Provide a NestedNameSpecifier visitor.
397 NestedNameSpecifier Qualifier = T->getQualifier();
398 if (NestedNameSpecifier::Kind K = Qualifier.getKind();
400 Visit(Qualifier.getAsType());
401 if (T->isSugared())
402 Visit(cast<MemberPointerType>(T->getCanonicalTypeUnqualified())
403 ->getQualifier()
404 .getAsType());
405 Visit(T->getPointeeType());
406 }
407 void VisitArrayType(const ArrayType *T) { Visit(T->getElementType()); }
410 Visit(T->getSizeExpr());
411 }
413 Visit(T->getElementType());
414 Visit(T->getSizeExpr());
415 }
417 Visit(T->getElementType());
418 Visit(T->getSizeExpr());
419 }
420 void VisitVectorType(const VectorType *T) { Visit(T->getElementType()); }
421 void VisitFunctionType(const FunctionType *T) { Visit(T->getReturnType()); }
424 for (const QualType &PT : T->getParamTypes())
425 Visit(PT);
426 }
428 Visit(T->getUnderlyingExpr());
429 }
430 void VisitDecltypeType(const DecltypeType *T) {
431 Visit(T->getUnderlyingExpr());
432 }
433
434 void VisitPackIndexingType(const PackIndexingType *T) {
435 Visit(T->getPattern());
436 Visit(T->getIndexExpr());
437 }
438
439 void VisitUnaryTransformType(const UnaryTransformType *T) {
440 Visit(T->getBaseType());
441 }
442 void VisitAttributedType(const AttributedType *T) {
443 // FIXME: AttrKind
444 if (T->getModifiedType() != T->getEquivalentType())
445 Visit(T->getModifiedType());
446 }
447 void VisitBTFTagAttributedType(const BTFTagAttributedType *T) {
448 Visit(T->getWrappedType());
449 }
450 void VisitHLSLAttributedResourceType(const HLSLAttributedResourceType *T) {
451 QualType Contained = T->getContainedType();
452 if (!Contained.isNull())
453 Visit(Contained);
454 }
455 void VisitHLSLInlineSpirvType(const HLSLInlineSpirvType *T) {
456 for (auto &Operand : T->getOperands()) {
457 using SpirvOperandKind = SpirvOperand::SpirvOperandKind;
458
459 switch (Operand.getKind()) {
460 case SpirvOperandKind::ConstantId:
461 case SpirvOperandKind::Literal:
462 break;
463
464 case SpirvOperandKind::TypeId:
465 Visit(Operand.getResultType());
466 break;
467
468 default:
469 llvm_unreachable("Invalid SpirvOperand kind!");
470 }
471 }
472 }
473 void VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *) {}
474 void
475 VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T) {
476 Visit(T->getArgumentPack());
477 }
478 void VisitTemplateSpecializationType(const TemplateSpecializationType *T) {
479 for (const auto &Arg : T->template_arguments())
480 Visit(Arg);
481 }
483 Visit(T->getPointeeType());
484 }
485 void VisitAtomicType(const AtomicType *T) { Visit(T->getValueType()); }
486 void VisitPipeType(const PipeType *T) { Visit(T->getElementType()); }
487 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); }
488 void VisitPackExpansionType(const PackExpansionType *T) {
489 if (!T->isSugared())
490 Visit(T->getPattern());
491 }
492 void VisitAutoType(const AutoType *T) {
493 for (const auto &Arg : T->getTypeConstraintArguments())
494 Visit(Arg);
495 }
496 // FIXME: ElaboratedType, DependentNameType,
497 // DependentTemplateSpecializationType, ObjCObjectType
498
499 // For TypeLocs, we automatically visit the inner type loc (pointee type etc).
500 // We must explicitly visit other lexically-nested nodes.
503 for (const auto *Param : TL.getParams())
504 Visit(Param, /*VisitTypeLocs=*/true);
505 }
507 if (const auto *CR = TL.getConceptReference()) {
508 if (auto *Args = CR->getTemplateArgsAsWritten())
509 for (const auto &Arg : Args->arguments())
511 }
512 }
514 // FIXME: Provide NestedNamespecifierLoc visitor.
516 }
529 void VisitDecltypeType(DecltypeType TL) {
530 Visit(TL.getUnderlyingExpr());
531 }
533 for (unsigned I=0, N=TL.getNumArgs(); I < N; ++I)
535 }
536
538
540 if (const Expr *Init = D->getInitExpr())
541 Visit(Init);
542 }
543
547 dumpTemplateArgumentList(*FTSI->TemplateArguments);
550 dumpASTTemplateArgumentListInfo(DFTSI->TemplateArgumentsAsWritten);
551
552 if (D->param_begin())
553 for (const auto *Parameter : D->parameters())
555
557 Visit(TRC.ConstraintExpr);
558
559 if (Traversal == TK_IgnoreUnlessSpelledInSource && D->isDefaulted())
560 return;
561
562 if (const auto *C = dyn_cast<CXXConstructorDecl>(D))
563 for (const auto *I : C->inits())
564 Visit(I);
565
567 Visit(D->getBody());
568 }
569
570 void VisitFieldDecl(const FieldDecl *D) {
571 if (D->isBitField())
572 Visit(D->getBitWidth());
573 if (Expr *Init = D->getInClassInitializer())
574 Visit(Init);
575 }
576
577 void VisitVarDecl(const VarDecl *D) {
578 if (Traversal == TK_IgnoreUnlessSpelledInSource && D->isCXXForRangeDecl())
579 return;
580
581 if (const auto *TSI = D->getTypeSourceInfo(); VisitLocs && TSI)
582 Visit(TSI->getTypeLoc());
583 if (D->hasInit())
584 Visit(D->getInit());
585 }
586
588 VisitVarDecl(D);
589 for (const auto *B : D->bindings())
590 Visit(B);
591 }
592
594 if (Traversal == TK_IgnoreUnlessSpelledInSource)
595 return;
596
597 if (const auto *V = D->getHoldingVar())
598 Visit(V);
599
600 if (const auto *E = D->getBinding())
601 Visit(E);
602 }
603
607
609
611 for (const ImplicitParamDecl *Parameter : D->parameters())
613 Visit(D->getBody());
614 }
615
616 void VisitCapturedDecl(const CapturedDecl *D) { Visit(D->getBody()); }
617
619 for (const auto *E : D->varlist())
620 Visit(E);
621 }
622
624 Visit(D->getCombiner());
625 if (const auto *Initializer = D->getInitializer())
627 }
628
630 for (const auto *C : D->clauselists())
631 Visit(C);
632 }
633
637
639 for (const auto *E : D->varlist())
640 Visit(E);
641 for (const auto *C : D->clauselists())
642 Visit(C);
643 }
644
645 template <typename SpecializationDecl>
646 void dumpTemplateDeclSpecialization(const SpecializationDecl *D) {
647 for (const auto *Redecl : D->redecls())
649 }
650
651 template <typename TemplateDecl>
654
656
657 if (Traversal == TK_AsIs) {
658 for (const auto *Child : D->specializations())
660 }
661 }
662
665 }
666
671
673 Visit(D->getAssertExpr());
674 Visit(D->getMessage());
675 }
676
680
684
689
695
697
701
702 void
707
713
715 if (const auto *TC = D->getTypeConstraint())
716 Visit(TC->getImmediatelyDeclaredConstraint());
717 if (D->hasDefaultArgument())
720 D->defaultArgumentWasInherited() ? "inherited from" : "previous");
721 }
722
724 if (const auto *E = D->getPlaceholderTypeConstraint())
725 Visit(E);
726 if (D->hasDefaultArgument())
729 D->defaultArgumentWasInherited() ? "inherited from" : "previous");
730 }
731
739
744
750
753 if (CSE->hasExplicitTemplateArgs())
754 for (const auto &ArgLoc : CSE->getTemplateArgsAsWritten()->arguments())
756 }
757
759 Visit(D->getTargetDecl());
760 }
761
763 if (D->getFriendType()) {
764 // Traverse any CXXRecordDecl owned by this type, since
765 // it will not be in the parent context:
766 if (auto *TT = D->getFriendType()->getType()->getAs<TagType>())
767 if (TT->isTagOwned())
768 Visit(TT->getOriginalDecl());
769 } else {
770 Visit(D->getFriendDecl());
771 }
772 }
773
777 else
778 for (const ParmVarDecl *Parameter : D->parameters())
780
781 if (D->hasBody())
782 Visit(D->getBody());
783 }
784
788
792
794 for (const auto &I : D->inits())
795 Visit(I);
796 }
797
798 void VisitBlockDecl(const BlockDecl *D) {
799 for (const auto &I : D->parameters())
800 Visit(I);
801
802 for (const auto &I : D->captures())
803 Visit(I);
804 Visit(D->getBody());
805 }
806
807 void VisitDeclStmt(const DeclStmt *Node) {
808 for (const auto &D : Node->decls())
809 Visit(D);
810 }
811
813 for (const auto *A : Node->getAttrs())
814 Visit(A);
815 }
816
817 void VisitLabelStmt(const LabelStmt *Node) {
818 if (Node->getDecl()->hasAttrs()) {
819 for (const auto *A : Node->getDecl()->getAttrs())
820 Visit(A);
821 }
822 }
823
824 void VisitCXXCatchStmt(const CXXCatchStmt *Node) {
825 Visit(Node->getExceptionDecl());
826 }
827
828 void VisitCapturedStmt(const CapturedStmt *Node) {
829 Visit(Node->getCapturedDecl());
830 }
831
833 Visit(Node->getOriginalStmt());
834 if (Traversal != TK_IgnoreUnlessSpelledInSource)
836 }
837
839 for (const auto *C : Node->clauses())
840 Visit(C);
841 }
842
844 for (const auto *C : Node->clauses())
845 Visit(C);
846 }
847
849 // Needs custom child checking to put clauses AFTER the children, which are
850 // the expressions in the 'wait' construct. Others likely need this as well,
851 // and might need to do the associated statement after it.
852 for (const Stmt *S : Node->children())
853 Visit(S);
854 for (const auto *C : Node->clauses())
855 Visit(C);
856 }
857
859 if (auto *Filler = ILE->getArrayFiller()) {
860 Visit(Filler, "array_filler");
861 }
862 }
863
865 if (auto *Filler = PLIE->getArrayFiller()) {
866 Visit(Filler, "array_filler");
867 }
868 }
869
870 void VisitBlockExpr(const BlockExpr *Node) { Visit(Node->getBlockDecl()); }
871
873 if (Expr *Source = Node->getSourceExpr())
874 Visit(Source);
875 }
876
878 if (E->isExprPredicate()) {
880 Visit(E->getControllingExpr()->getType()); // FIXME: remove
881 } else
883
884 for (const auto Assoc : E->associations()) {
885 Visit(Assoc);
886 }
887 }
888
891 for (auto Arg : E->template_arguments())
892 Visit(Arg.getArgument());
893 }
894
896 for (auto *D : E->getLocalParameters())
897 Visit(D);
898 for (auto *R : E->getRequirements())
899 Visit(R);
900 }
901
903 // Argument types are not children of the TypeTraitExpr.
904 for (auto *A : E->getArgs())
905 Visit(A->getType());
906 }
907
908 void VisitLambdaExpr(const LambdaExpr *Node) {
909 if (Traversal == TK_IgnoreUnlessSpelledInSource) {
910 for (unsigned I = 0, N = Node->capture_size(); I != N; ++I) {
911 const auto *C = Node->capture_begin() + I;
912 if (!C->isExplicit())
913 continue;
914 if (Node->isInitCapture(C))
915 Visit(C->getCapturedVar());
916 else
917 Visit(Node->capture_init_begin()[I]);
918 }
920 for (const auto *P : Node->getCallOperator()->parameters())
921 Visit(P);
922 Visit(Node->getBody());
923 } else {
924 return Visit(Node->getLambdaClass());
925 }
926 }
927
929 if (Node->isPartiallySubstituted())
930 for (const auto &A : Node->getPartialArguments())
931 Visit(A);
932 }
933
942
944 if (const VarDecl *CatchParam = Node->getCatchParamDecl())
945 Visit(CatchParam);
946 }
947
949 if (Traversal == TK_IgnoreUnlessSpelledInSource) {
950 Visit(Node->getInit());
951 Visit(Node->getLoopVariable());
952 Visit(Node->getRangeInit());
953 Visit(Node->getBody());
954 }
955 }
956
957 void VisitCallExpr(const CallExpr *Node) {
958 for (const auto *Child :
959 make_filter_range(Node->children(), [this](const Stmt *Child) {
960 if (Traversal != TK_IgnoreUnlessSpelledInSource)
961 return false;
962 return !isa<CXXDefaultArgExpr>(Child);
963 })) {
964 Visit(Child);
965 }
966 }
967
969 if (Traversal == TK_IgnoreUnlessSpelledInSource) {
970 Visit(Node->getLHS());
971 Visit(Node->getRHS());
972 } else {
974 }
975 }
976
980
982 Visit(TA.getAsType());
983 }
984
986 for (const auto &TArg : TA.pack_elements())
987 Visit(TArg);
988 }
989
991 Visit(Node->getExpr());
992 }
993
995 Visit(Node->getExpr());
996 }
997
998 // Implements Visit methods for Attrs.
999#include "clang/AST/AttrNodeTraverse.inc"
1000};
1001
1002} // namespace clang
1003
1004#endif // LLVM_CLANG_AST_ASTNODETRAVERSER_H
#define V(N, I)
C Language Family Type Representation.
child_range children()
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
Definition APValue.h:122
comments::FullComment * getLocalCommentForDeclUncached(const Decl *D) const
Return parsed documentation comment attached to a given declaration.
ASTNodeTraverser traverses the Clang AST for dumping purposes.
void VisitSubstNonTypeTemplateParmPackExpr(const SubstNonTypeTemplateParmPackExpr *E)
void VisitDeclStmt(const DeclStmt *Node)
void VisitFunctionType(const FunctionType *T)
void VisitCapturedDecl(const CapturedDecl *D)
void VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *Node)
void Visit(const BlockDecl::Capture &C)
void VisitAdjustedType(const AdjustedType *T)
void VisitDependentSizedExtVectorTypeLoc(DependentSizedExtVectorTypeLoc TL)
void VisitSizeOfPackExpr(const SizeOfPackExpr *Node)
void VisitMemberPointerType(const MemberPointerType *T)
void VisitDependentSizedArrayType(const DependentSizedArrayType *T)
void VisitTypeOfExprType(const TypeOfExprType *T)
void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *E)
void VisitOpenACCWaitConstruct(const OpenACCWaitConstruct *Node)
void VisitLocInfoType(const LocInfoType *T)
void dumpTemplateDeclSpecialization(const SpecializationDecl *D)
void VisitOpenACCConstructStmt(const OpenACCConstructStmt *Node)
void VisitHLSLInlineSpirvType(const HLSLInlineSpirvType *T)
void Visit(const comments::Comment *C, const comments::FullComment *FC)
void VisitDependentSizedArrayTypeLoc(DependentSizedArrayTypeLoc TL)
void VisitClassTemplateSpecializationDecl(const ClassTemplateSpecializationDecl *D)
void VisitBlockDecl(const BlockDecl *D)
void VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL)
void VisitObjCImplementationDecl(const ObjCImplementationDecl *D)
void VisitTemplateTemplateParmDecl(const TemplateTemplateParmDecl *D)
void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node)
void VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL)
void VisitPackIndexingType(const PackIndexingType *T)
void VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D)
void VisitCXXParenListInitExpr(const CXXParenListInitExpr *PLIE)
void dumpTemplateArgumentList(const TemplateArgumentList &TAL)
void Visit(const OMPClause *C)
void VisitImplicitConceptSpecializationDecl(const ImplicitConceptSpecializationDecl *CSD)
void VisitReferenceType(const ReferenceType *T)
void VisitBlockExpr(const BlockExpr *Node)
void VisitDecltypeType(DecltypeType TL)
void VisitObjCInterfaceDecl(const ObjCInterfaceDecl *D)
void VisitStaticAssertDecl(const StaticAssertDecl *D)
void VisitBlockPointerType(const BlockPointerType *T)
void VisitFieldDecl(const FieldDecl *D)
void VisitAttributedStmt(const AttributedStmt *Node)
void Visit(const Type *T)
void VisitPipeType(const PipeType *T)
void Visit(const Attr *A)
void VisitInitListExpr(const InitListExpr *ILE)
void VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *Node)
void VisitVarTemplateDecl(const VarTemplateDecl *D)
void VisitPackExpansionType(const PackExpansionType *T)
void VisitBTFTagAttributedType(const BTFTagAttributedType *T)
void VisitTypeAliasDecl(const TypeAliasDecl *D)
void VisitDecompositionDecl(const DecompositionDecl *D)
void VisitObjCMethodDecl(const ObjCMethodDecl *D)
void VisitClassTemplateDecl(const ClassTemplateDecl *D)
void Visit(const Decl *D, bool VisitLocs=false)
void SetTraversalKind(TraversalKind TK)
void Visit(const concepts::Requirement *R)
void VisitLabelStmt(const LabelStmt *Node)
void VisitTypeTraitExpr(const TypeTraitExpr *E)
void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D)
void VisitComplexType(const ComplexType *T)
void dumpDeclContext(const DeclContext *DC)
void VisitUsingShadowDecl(const UsingShadowDecl *D)
void dumpObjCTypeParamList(const ObjCTypeParamList *typeParams)
void VisitVarTemplateSpecializationDecl(const VarTemplateSpecializationDecl *D)
void Visit(const DynTypedNode &N)
void VisitExpressionTemplateArgument(const TemplateArgument &TA)
void dumpTemplateDecl(const TemplateDecl *D)
void VisitHLSLAttributedResourceType(const HLSLAttributedResourceType *T)
void VisitVectorType(const VectorType *T)
void dumpTemplateArgumentLoc(const TemplateArgumentLoc &A, const Decl *From=nullptr, const char *Label=nullptr)
void Visit(const OpenACCClause *C)
void VisitCXXCatchStmt(const CXXCatchStmt *Node)
void VisitClassTemplatePartialSpecializationDecl(const ClassTemplatePartialSpecializationDecl *D)
void VisitTypedefDecl(const TypedefDecl *D)
void Visit(const ConceptReference *R)
void VisitBindingDecl(const BindingDecl *D)
void Visit(const APValue &Value, QualType Ty)
void VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL)
void VisitRequiresExpr(const RequiresExpr *E)
void VisitGenericSelectionExpr(const GenericSelectionExpr *E)
void VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T)
void VisitOpaqueValueExpr(const OpaqueValueExpr *Node)
void VisitArrayType(const ArrayType *T)
void Visit(const CXXCtorInitializer *Init)
void VisitVarDecl(const VarDecl *D)
void VisitVarTemplatePartialSpecializationDecl(const VarTemplatePartialSpecializationDecl *D)
void VisitFileScopeAsmDecl(const FileScopeAsmDecl *D)
void VisitAutoType(const AutoType *T)
void VisitFunctionProtoType(const FunctionProtoType *T)
void VisitUnaryTransformType(const UnaryTransformType *T)
void VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL)
void VisitLambdaExpr(const LambdaExpr *Node)
void VisitCallExpr(const CallExpr *Node)
void VisitDecltypeType(const DecltypeType *T)
void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL)
void VisitOMPExecutableDirective(const OMPExecutableDirective *Node)
void VisitEnumConstantDecl(const EnumConstantDecl *D)
void VisitTemplateSpecializationType(const TemplateSpecializationType *T)
void VisitAtomicType(const AtomicType *T)
void VisitDependentSizedExtVectorType(const DependentSizedExtVectorType *T)
void Visit(const Stmt *Node, StringRef Label={})
void VisitOutlinedFunctionDecl(const OutlinedFunctionDecl *D)
void Visit(const GenericSelectionExpr::ConstAssociation &A)
void VisitBuiltinTemplateDecl(const BuiltinTemplateDecl *D)
void VisitConceptDecl(const ConceptDecl *D)
void VisitTopLevelStmtDecl(const TopLevelStmtDecl *D)
void dumpASTTemplateArgumentListInfo(const ASTTemplateArgumentListInfo *TALI)
void VisitConceptSpecializationExpr(const ConceptSpecializationExpr *CSE)
void VisitVariableArrayType(const VariableArrayType *T)
void VisitTypeTemplateArgument(const TemplateArgument &TA)
void VisitTemplateTypeParmDecl(const TemplateTypeParmDecl *D)
void VisitOMPAllocateDecl(const OMPAllocateDecl *D)
void VisitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D)
void VisitCapturedStmt(const CapturedStmt *Node)
void VisitFriendDecl(const FriendDecl *D)
void VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
void VisitNonTypeTemplateParmDecl(const NonTypeTemplateParmDecl *D)
void VisitCXXForRangeStmt(const CXXForRangeStmt *Node)
void VisitOMPDeclareMapperDecl(const OMPDeclareMapperDecl *D)
void VisitObjCObjectPointerType(const ObjCObjectPointerType *T)
void VisitAttributedType(const AttributedType *T)
void Visit(const TemplateArgument &A, SourceRange R={}, const Decl *From=nullptr, const char *Label=nullptr)
void VisitPackTemplateArgument(const TemplateArgument &TA)
TraversalKind GetTraversalKind() const
void VisitObjCCategoryDecl(const ObjCCategoryDecl *D)
void VisitAutoTypeLoc(AutoTypeLoc TL)
void VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *)
void VisitCXXRewrittenBinaryOperator(const CXXRewrittenBinaryOperator *Node)
void VisitSYCLKernelCallStmt(const SYCLKernelCallStmt *Node)
void dumpTemplateParameters(const TemplateParameterList *TPL)
void VisitFunctionDecl(const FunctionDecl *D)
void VisitFunctionTemplateDecl(const FunctionTemplateDecl *D)
void VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D)
void VisitPointerType(const PointerType *T)
Represents a type which was implicitly adjusted by the semantic engine for arbitrary reasons.
Definition TypeBase.h:3489
Expr * getSizeExpr() const
Definition TypeLoc.h:1779
Represents an array type, per C99 6.7.5.2 - Array Declarators.
Definition TypeBase.h:3720
Attr - This represents one attribute.
Definition Attr.h:44
Represents an attribute applied to a statement.
Definition Stmt.h:2203
ArrayRef< const Attr * > getAttrs() const
Definition Stmt.h:2235
ConceptReference * getConceptReference() const
Definition TypeLoc.h:2387
A binding in a decomposition declaration.
Definition DeclCXX.h:4179
VarDecl * getHoldingVar() const
Get the variable (if any) that holds the value of evaluating the binding.
Definition DeclCXX.cpp:3589
Expr * getBinding() const
Get the expression to which this declaration is bound.
Definition DeclCXX.h:4205
A class which contains all the information about a particular captured value.
Definition Decl.h:4640
Represents a block literal declaration, which is like an unnamed FunctionDecl.
Definition Decl.h:4634
Stmt * getBody() const override
getBody - If this Decl represents a declaration for a body of code, such as a function or method defi...
Definition Decl.h:4713
ArrayRef< Capture > captures() const
Definition Decl.h:4761
ArrayRef< ParmVarDecl * > parameters() const
Definition Decl.h:4720
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Definition Expr.h:6560
const BlockDecl * getBlockDecl() const
Definition Expr.h:6572
Pointer to a block type.
Definition TypeBase.h:3540
Represents the builtin template declaration which is used to implement __make_integer_seq and other b...
CXXCatchStmt - This represents a C++ catch block.
Definition StmtCXX.h:28
VarDecl * getExceptionDecl() const
Definition StmtCXX.h:49
Represents a C++ base or member initializer.
Definition DeclCXX.h:2369
A default argument (C++ [dcl.fct.default]).
Definition ExprCXX.h:1271
A use of a default initializer in a constructor or in aggregate initialization.
Definition ExprCXX.h:1378
Expr * getExpr()
Get the initialization expression that will be used.
Definition ExprCXX.cpp:1105
CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for statement, represented as 'for (ra...
Definition StmtCXX.h:135
VarDecl * getLoopVariable()
Definition StmtCXX.cpp:77
Represents a list-initialization with parenthesis.
Definition ExprCXX.h:5135
A rewritten comparison expression that was originally written using operator syntax.
Definition ExprCXX.h:286
const Expr * getLHS() const
Definition ExprCXX.h:335
const Expr * getRHS() const
Definition ExprCXX.h:336
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition Expr.h:2879
child_range children()
Definition Expr.h:3282
Represents the body of a CapturedStmt, and serves as its DeclContext.
Definition Decl.h:4906
Stmt * getBody() const override
getBody - If this Decl represents a declaration for a body of code, such as a function or method defi...
Definition Decl.cpp:5566
This captures a statement into a function.
Definition Stmt.h:3886
CapturedDecl * getCapturedDecl()
Retrieve the outlined function declaration.
Definition Stmt.cpp:1451
Declaration of a class template.
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a class template specialization, which refers to a class template with a given set of temp...
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the class template specialization.
Complex values, per C99 6.2.5p11.
Definition TypeBase.h:3275
Declaration of a C++20 concept.
Expr * getConstraintExpr() const
A reference to a concept and its template args, as it appears in the code.
Definition ASTConcept.h:126
Represents the specialization of a concept - evaluates to a prvalue of type bool.
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
const ImplicitConceptSpecializationDecl * getSpecializationDecl() const
A simple visitor class that helps create attribute visitors.
Definition AttrVisitor.h:71
A simple visitor class that helps create declaration visitors.
Definition DeclVisitor.h:75
ConstStmtVisitor - This class implements a simple visitor for Stmt subclasses.
A simple visitor class that helps create template argument visitors.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Definition DeclBase.h:1449
decl_range noload_decls() const
noload_decls_begin/end - Iterate over the declarations stored in this context that are currently load...
Definition DeclBase.h:2381
decl_range decls() const
decls_begin/decls_end - Iterate over the declarations stored in this context.
Definition DeclBase.h:2373
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
Definition Stmt.h:1611
decl_range decls()
Definition Stmt.h:1659
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
bool hasAttrs() const
Definition DeclBase.h:518
ASTContext & getASTContext() const LLVM_READONLY
Definition DeclBase.cpp:524
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
Definition DeclBase.h:593
attr_range attrs() const
Definition DeclBase.h:535
AttrVec & getAttrs()
Definition DeclBase.h:524
const AssociatedConstraint & getTrailingRequiresClause() const
Get the constraint-expression introduced by the trailing requires-clause in the function/member decla...
Definition Decl.h:854
TypeSourceInfo * getTypeSourceInfo() const
Definition Decl.h:808
A decomposition declaration.
Definition DeclCXX.h:4243
ArrayRef< BindingDecl * > bindings() const
Definition DeclCXX.h:4281
const ParmDecl * getInheritedFrom() const
Get the parameter from which we inherit the default argument, if any.
Provides information about a dependent function-template specialization declaration.
Represents an array type in C++ whose size is a value-dependent expression.
Definition TypeBase.h:4009
Represents an extended vector type where either the type or size is dependent.
Definition TypeBase.h:4099
A dynamically typed AST node container.
const T * get() const
Retrieve the stored node as type T.
An instance of this object exists for each enum constant that is defined.
Definition Decl.h:3420
const Expr * getInitExpr() const
Definition Decl.h:3438
This represents one expression.
Definition Expr.h:112
QualType getType() const
Definition Expr.h:144
Represents a member of a struct/union/class.
Definition Decl.h:3157
Expr * getInClassInitializer() const
Get the C++11 default member initializer for this member, or null if one has not been set.
Definition Decl.cpp:4666
bool isBitField() const
Determines whether this field is a bitfield.
Definition Decl.h:3260
Expr * getBitWidth() const
Returns the expression that represents the bit width, if this field is a bit field.
Definition Decl.h:3273
const Expr * getAsmStringExpr() const
Definition Decl.h:4582
FriendDecl - Represents the declaration of a friend entity, which can be a function,...
Definition DeclFriend.h:54
NamedDecl * getFriendDecl() const
If this friend declaration doesn't name a type, return the inner declaration.
Definition DeclFriend.h:139
TypeSourceInfo * getFriendType() const
If this friend declaration names an (untemplated but possibly dependent) type, return the type; other...
Definition DeclFriend.h:125
Represents a function declaration or definition.
Definition Decl.h:1999
Stmt * getBody(const FunctionDecl *&Definition) const
Retrieve the body (definition) of the function.
Definition Decl.cpp:3271
ArrayRef< ParmVarDecl * > parameters() const
Definition Decl.h:2771
FunctionTemplateSpecializationInfo * getTemplateSpecializationInfo() const
If this function is actually a function template specialization, retrieve information about this func...
Definition Decl.cpp:4264
param_iterator param_begin()
Definition Decl.h:2783
bool doesThisDeclarationHaveABody() const
Returns whether this specific declaration of the function has a body.
Definition Decl.h:2325
DependentFunctionTemplateSpecializationInfo * getDependentSpecializationInfo() const
Definition Decl.cpp:4330
bool isDefaulted() const
Whether this function is defaulted.
Definition Decl.h:2384
Represents a prototype with parameter type info, e.g.
Definition TypeBase.h:5264
Declaration of a template function.
Provides information about a function template specialization, which is a FunctionDecl that has been ...
ArrayRef< ParmVarDecl * > getParams() const
Definition TypeLoc.h:1687
FunctionType - C99 6.7.5.3 - Function Declarators.
Definition TypeBase.h:4460
Represents a C11 generic selection.
Definition Expr.h:6114
TypeSourceInfo * getControllingType()
Return the controlling type of this generic selection expression.
Definition Expr.h:6389
bool isExprPredicate() const
Whether this generic selection uses an expression as its controlling argument.
Definition Expr.h:6370
association_range associations()
Definition Expr.h:6445
AssociationTy< true > ConstAssociation
Definition Expr.h:6346
Expr * getControllingExpr()
Return the controlling expression of this generic selection expression.
Definition Expr.h:6377
ArrayRef< TemplateArgument > getTemplateArguments() const
Describes an C or C++ initializer list.
Definition Expr.h:5235
Expr * getArrayFiller()
If this initializer list initializes an array with more elements than there are initializers in the l...
Definition Expr.h:5337
LabelStmt - Represents a label, which has a substatement.
Definition Stmt.h:2146
LabelDecl * getDecl() const
Definition Stmt.h:2164
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
Definition ExprCXX.h:1970
capture_iterator capture_begin() const
Retrieve an iterator pointing to the first lambda capture.
Definition ExprCXX.cpp:1363
Stmt * getBody() const
Retrieve the body of the lambda.
Definition ExprCXX.cpp:1346
unsigned capture_size() const
Determine the number of captures in this lambda.
Definition ExprCXX.h:2051
bool isInitCapture(const LambdaCapture *Capture) const
Determine whether one of this lambda's captures is an init-capture.
Definition ExprCXX.cpp:1358
CXXMethodDecl * getCallOperator() const
Retrieve the function call operator associated with this lambda expression.
Definition ExprCXX.cpp:1404
TemplateParameterList * getTemplateParameterList() const
If this is a generic lambda expression, retrieve the template parameter list associated with it,...
Definition ExprCXX.cpp:1414
capture_init_iterator capture_init_begin()
Retrieve the first initialization argument for this lambda expression (which initializes the first ca...
Definition ExprCXX.h:2096
CXXRecordDecl * getLambdaClass() const
Retrieve the class that corresponds to the lambda.
Definition ExprCXX.cpp:1400
Holds a QualType and a TypeSourceInfo* that came out of a declarator parsing.
Definition LocInfoType.h:28
Wrapper for source info for member pointers.
Definition TypeLoc.h:1524
NestedNameSpecifierLoc getQualifierLoc() const
Definition TypeLoc.h:1534
A pointer to member type per C++ 8.3.3 - Pointers to members.
Definition TypeBase.h:3651
TypeLoc castAsTypeLoc() const
For a nested-name-specifier that refers to a type, retrieve the type with source-location information...
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
Kind
The kind of specifier that completes this nested name specifier.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
const DefArgStorage & getDefaultArgStorage() const
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
bool defaultArgumentWasInherited() const
Determines whether the default argument was inherited from a previous declaration of this template.
const TemplateArgumentLoc & getDefaultArgument() const
Retrieve the default argument, if any.
Expr * getPlaceholderTypeConstraint() const
Return the constraint introduced by the placeholder type of this non-type template parameter (if any)...
This represents 'pragma omp allocate ...' directive.
Definition DeclOpenMP.h:474
clauselist_range clauselists()
Definition DeclOpenMP.h:527
varlist_range varlist()
Definition DeclOpenMP.h:516
Pseudo declaration for capturing expressions.
Definition DeclOpenMP.h:383
This is a basic class for representing single OpenMP clause.
This represents 'pragma omp declare mapper ...' directive.
Definition DeclOpenMP.h:287
clauselist_range clauselists()
Definition DeclOpenMP.h:333
This represents 'pragma omp declare reduction ...' directive.
Definition DeclOpenMP.h:177
Expr * getInitializer()
Get initializer expression (if specified) of the declare reduction construct.
Definition DeclOpenMP.h:238
Expr * getCombiner()
Get combiner expression of the declare reduction construct.
Definition DeclOpenMP.h:220
This represents 'pragma omp threadprivate ...' directive.
Definition DeclOpenMP.h:110
Represents Objective-C's @catch statement.
Definition StmtObjC.h:77
const VarDecl * getCatchParamDecl() const
Definition StmtObjC.h:97
ObjCCategoryDecl - Represents a category declaration.
Definition DeclObjC.h:2329
ObjCTypeParamList * getTypeParamList() const
Retrieve the type parameter list associated with this category or extension.
Definition DeclObjC.h:2377
ObjCImplementationDecl - Represents a class definition - this is where method definitions are specifi...
Definition DeclObjC.h:2597
Represents an ObjC class declaration.
Definition DeclObjC.h:1154
ObjCTypeParamList * getTypeParamListAsWritten() const
Retrieve the type parameters written on this particular declaration of the class.
Definition DeclObjC.h:1303
ObjCMethodDecl - Represents an instance or class method declaration.
Definition DeclObjC.h:140
bool hasBody() const override
Determine whether this method has a body.
Definition DeclObjC.h:523
ArrayRef< ParmVarDecl * > parameters() const
Definition DeclObjC.h:373
Stmt * getBody() const override
Retrieve the body of this method, if it has one.
Definition DeclObjC.cpp:906
bool isThisDeclarationADefinition() const
Returns whether this specific method is a definition.
Definition DeclObjC.h:534
Represents a pointer to an Objective C object.
Definition TypeBase.h:7903
Stores a list of Objective-C type parameters for a parameterized class or a category/extension thereo...
Definition DeclObjC.h:662
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
Definition Expr.h:1180
Expr * getSourceExpr() const
The source expression of an opaque value expression is the expression which originally generated the ...
Definition Expr.h:1230
This is the base type for all OpenACC Clauses.
This is the base class for an OpenACC statement-level construct, other construct types are expected t...
Definition StmtOpenACC.h:26
ArrayRef< const OpenACCClause * > clauses() const
Definition StmtOpenACC.h:67
Represents a partial function definition.
Definition Decl.h:4841
parameter_const_range parameters() const
Definition Decl.h:4885
Stmt * getBody() const override
getBody - If this Decl represents a declaration for a body of code, such as a function or method defi...
Definition Decl.cpp:5540
bool hasExplicitTemplateArgs() const
Determines whether this expression had explicit template arguments.
Definition ExprCXX.h:3274
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition ExprCXX.h:3331
Represents a parameter to a function.
Definition Decl.h:1789
PipeType - OpenCL20.
Definition TypeBase.h:8103
PointerType - C99 6.7.5.1 - Pointer Declarators.
Definition TypeBase.h:3328
A (possibly-)qualified type.
Definition TypeBase.h:937
bool isNull() const
Return true if this QualType doesn't point to a type yet.
Definition TypeBase.h:1004
bool hasQualifiers() const
Return true if the set contains any qualifiers.
Definition TypeBase.h:646
Base for LValueReferenceType and RValueReferenceType.
Definition TypeBase.h:3571
C++2a [expr.prim.req]: A requires-expression provides a concise way to express requirements on templa...
ArrayRef< concepts::Requirement * > getRequirements() const
ArrayRef< ParmVarDecl * > getLocalParameters() const
SYCLKernelCallStmt represents the transformation that is applied to the body of a function declared w...
Definition StmtSYCL.h:37
CompoundStmt * getOriginalStmt()
Retrieve the model statement.
Definition StmtSYCL.h:54
OutlinedFunctionDecl * getOutlinedFunctionDecl()
Retrieve the outlined function declaration.
Definition StmtSYCL.h:61
Represents an expression that computes the length of a parameter pack.
Definition ExprCXX.h:4435
bool isPartiallySubstituted() const
Determine whether this represents a partially-substituted sizeof... expression, such as is produced f...
Definition ExprCXX.h:4520
ArrayRef< TemplateArgument > getPartialArguments() const
Get.
Definition ExprCXX.h:4525
A trivial tuple used to represent a source range.
Represents a C++11 static_assert declaration.
Definition DeclCXX.h:4130
Stmt - This represents one statement.
Definition Stmt.h:85
child_range children()
Definition Stmt.cpp:295
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Definition ExprCXX.h:4658
Represents a reference to a non-type template parameter pack that has been substituted with a non-tem...
Definition ExprCXX.h:4748
TemplateArgument getArgumentPack() const
Retrieve the template argument pack containing the substituted template arguments.
Definition ExprCXX.cpp:1799
NonTypeTemplateParmDecl * getParameterPack() const
Retrieve the non-type template parameter pack being substituted.
Definition ExprCXX.cpp:1794
A template argument list.
unsigned size() const
Retrieve the number of template arguments in this template argument list.
Location wrapper for a TemplateArgument.
const TemplateArgument & getArgument() const
SourceRange getSourceRange() const LLVM_READONLY
Represents a template argument.
Expr * getAsExpr() const
Retrieve the template argument as an expression.
QualType getAsType() const
Retrieve the type for a type template argument.
ArrayRef< TemplateArgument > pack_elements() const
Iterator range referencing all of the elements of a template argument pack.
The base class of all kinds of template declarations (e.g., class, function, etc.).
NamedDecl * getTemplatedDecl() const
Get the underlying, templated declaration.
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Stores a list of template parameters for a TemplateDecl and its derived classes.
Expr * getRequiresClause()
The constraint-expression of the associated requires-clause.
TemplateArgumentLoc getArgLoc(unsigned i) const
Definition TypeLoc.h:1897
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
const DefArgStorage & getDefaultArgStorage() const
const TemplateArgumentLoc & getDefaultArgument() const
Retrieve the default argument, if any.
bool defaultArgumentWasInherited() const
Determines whether the default argument was inherited from a previous declaration of this template.
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
Declaration of a template type parameter.
const TemplateArgumentLoc & getDefaultArgument() const
Retrieve the default argument, if any.
const TypeConstraint * getTypeConstraint() const
Returns the type constraint associated with this template parameter (if any).
bool hasDefaultArgument() const
Determine whether this template parameter has a default argument.
bool defaultArgumentWasInherited() const
Determines whether the default argument was inherited from a previous declaration of this template.
const DefArgStorage & getDefaultArgStorage() const
A declaration that models statements at global scope.
Definition Decl.h:4597
Represents the declaration of a typedef-name via a C++11 alias-declaration.
Definition Decl.h:3685
Declaration of an alias template.
TypeAliasDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
RetTy Visit(TypeLoc TyLoc)
Base wrapper for a particular "section" of type source info.
Definition TypeLoc.h:59
QualType getType() const
Get the type for which this source info wrapper provides information.
Definition TypeLoc.h:133
Expr * getUnderlyingExpr() const
Definition TypeLoc.h:2224
Represents a typeof (or typeof) expression (a C23 feature and GCC extension) or a typeof_unqual expre...
Definition TypeBase.h:6175
A container of type source information.
Definition TypeBase.h:8256
QualType getType() const
Return the type wrapped by this type source info.
Definition TypeBase.h:8267
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
Definition ExprCXX.h:2890
ArrayRef< TypeSourceInfo * > getArgs() const
Retrieve the argument types.
Definition ExprCXX.h:2961
An operation on a type.
Definition TypeVisitor.h:64
RetTy Visit(const Type *T)
Performs the operation associated with this visitor object.
Definition TypeVisitor.h:68
The base class of the type hierarchy.
Definition TypeBase.h:1833
const T * getAs() const
Member-template getAs<specific type>'.
Definition TypeBase.h:9101
Represents the declaration of a typedef-name via the 'typedef' type specifier.
Definition Decl.h:3664
QualType getUnderlyingType() const
Definition Decl.h:3614
A reference to a name which we were able to look up during parsing but could not resolve to a specifi...
Definition ExprCXX.h:3384
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
Definition DeclCXX.h:3393
NamedDecl * getTargetDecl() const
Gets the underlying declaration which has been brought into the local scope.
Definition DeclCXX.h:3457
Represents a variable declaration or definition.
Definition Decl.h:925
bool hasInit() const
Definition Decl.cpp:2398
bool isCXXForRangeDecl() const
Determine whether this variable is the for-range-declaration in a C++0x for-range statement.
Definition Decl.h:1521
const Expr * getInit() const
Definition Decl.h:1367
Declaration of a variable template.
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a variable template specialization, which refers to a variable template with a given set o...
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the variable template specialization.
Represents a C array with a specified size that is not an integer-constant-expression.
Definition TypeBase.h:3964
Represents a GCC generic vector type.
Definition TypeBase.h:4173
Any part of the comment.
Definition Comment.h:66
Comment *const * child_iterator
Definition Comment.h:257
A full comment attached to a declaration, contains block content.
Definition Comment.h:1104
A static requirement that can be used in a requires-expression to check properties of types and expre...
The JSON file list parser is used to communicate input to InstallAPI.
bool isa(CodeGen::Address addr)
Definition Address.h:330
TraversalKind
Defines how we descend a level in the AST when we pass through expressions.
@ TK_AsIs
Will traverse all child nodes.
@ TK_IgnoreUnlessSpelledInSource
Ignore AST nodes not written in the source.
@ Parameter
The parameter type of a method or function.
Definition TypeBase.h:908
const FunctionProtoType * T
@ TSK_ExplicitInstantiationDefinition
This template specialization was instantiated from a template due to an explicit instantiation defini...
Definition Specifiers.h:206
@ TSK_ExplicitInstantiationDeclaration
This template specialization was instantiated from a template due to an explicit instantiation declar...
Definition Specifiers.h:202
U cast(CodeGen::Address addr)
Definition Address.h:327
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
ArrayRef< TemplateArgumentLoc > arguments() const
A std::pair-like structure for storing a qualified type split into its local qualifiers and its local...
Definition TypeBase.h:870
const Type * Ty
The locally-unqualified type.
Definition TypeBase.h:872
Qualifiers Quals
The local qualifiers.
Definition TypeBase.h:875