blob: 73154ba14136d030d79f3c2f0f93fe4a40562df2 [file] [log] [blame]
Alexander Kornienko18ec81b2012-12-13 13:59:55 +00001//===--- ASTDumper.cpp - Dumping implementation for ASTs ------------------===//
Chris Lattnercbe4f772007-08-08 22:51:59 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnercbe4f772007-08-08 22:51:59 +00007//
8//===----------------------------------------------------------------------===//
9//
Alexander Kornienko18ec81b2012-12-13 13:59:55 +000010// This file implements the AST dump methods, which dump out the
Chris Lattnercbe4f772007-08-08 22:51:59 +000011// AST in a form that exposes type details and other fields.
12//
13//===----------------------------------------------------------------------===//
14
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "clang/AST/ASTContext.h"
Alexander Kornienko5bc364e2013-01-07 17:53:08 +000016#include "clang/AST/Attr.h"
Alexander Kornienkoebc17b52013-01-14 14:07:11 +000017#include "clang/AST/CommentVisitor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/AST/DeclCXX.h"
Richard Smith33937e72013-06-22 21:49:40 +000019#include "clang/AST/DeclLookups.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/AST/DeclObjC.h"
Alexey Bataev958b9e72016-03-31 09:30:50 +000021#include "clang/AST/DeclOpenMP.h"
Alexander Kornienko90ff6072012-12-20 02:09:13 +000022#include "clang/AST/DeclVisitor.h"
Benjamin Kramer31b382e2016-02-01 17:42:01 +000023#include "clang/AST/LocInfoType.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/AST/StmtVisitor.h"
Richard Smithd5e7ff82014-10-31 01:17:45 +000025#include "clang/AST/TypeVisitor.h"
David Majnemerd9b1a4f2015-11-04 03:40:30 +000026#include "clang/Basic/Builtins.h"
Alexander Kornienko90ff6072012-12-20 02:09:13 +000027#include "clang/Basic/Module.h"
Chris Lattner11e30d32007-08-30 06:17:34 +000028#include "clang/Basic/SourceManager.h"
Daniel Dunbar34a96c82009-12-03 09:13:13 +000029#include "llvm/Support/raw_ostream.h"
Chris Lattnercbe4f772007-08-08 22:51:59 +000030using namespace clang;
Alexander Kornienkoebc17b52013-01-14 14:07:11 +000031using namespace clang::comments;
Chris Lattnercbe4f772007-08-08 22:51:59 +000032
33//===----------------------------------------------------------------------===//
Alexander Kornienko18ec81b2012-12-13 13:59:55 +000034// ASTDumper Visitor
Chris Lattnercbe4f772007-08-08 22:51:59 +000035//===----------------------------------------------------------------------===//
36
37namespace {
Richard Trieud215b8d2013-01-26 01:31:20 +000038 // Colors used for various parts of the AST dump
Richard Trieu532018f2014-03-06 01:09:03 +000039 // Do not use bold yellow for any text. It is hard to read on white screens.
Richard Trieud215b8d2013-01-26 01:31:20 +000040
41 struct TerminalColor {
42 raw_ostream::Colors Color;
43 bool Bold;
44 };
45
Richard Trieu532018f2014-03-06 01:09:03 +000046 // Red - CastColor
47 // Green - TypeColor
48 // Bold Green - DeclKindNameColor, UndeserializedColor
49 // Yellow - AddressColor, LocationColor
50 // Blue - CommentColor, NullColor, IndentColor
51 // Bold Blue - AttrColor
52 // Bold Magenta - StmtColor
53 // Cyan - ValueKindColor, ObjectKindColor
54 // Bold Cyan - ValueColor, DeclNameColor
55
Richard Trieud215b8d2013-01-26 01:31:20 +000056 // Decl kind names (VarDecl, FunctionDecl, etc)
57 static const TerminalColor DeclKindNameColor = { raw_ostream::GREEN, true };
58 // Attr names (CleanupAttr, GuardedByAttr, etc)
59 static const TerminalColor AttrColor = { raw_ostream::BLUE, true };
60 // Statement names (DeclStmt, ImplicitCastExpr, etc)
61 static const TerminalColor StmtColor = { raw_ostream::MAGENTA, true };
62 // Comment names (FullComment, ParagraphComment, TextComment, etc)
Richard Trieu532018f2014-03-06 01:09:03 +000063 static const TerminalColor CommentColor = { raw_ostream::BLUE, false };
Richard Trieud215b8d2013-01-26 01:31:20 +000064
65 // Type names (int, float, etc, plus user defined types)
66 static const TerminalColor TypeColor = { raw_ostream::GREEN, false };
67
68 // Pointer address
69 static const TerminalColor AddressColor = { raw_ostream::YELLOW, false };
70 // Source locations
71 static const TerminalColor LocationColor = { raw_ostream::YELLOW, false };
72
73 // lvalue/xvalue
74 static const TerminalColor ValueKindColor = { raw_ostream::CYAN, false };
75 // bitfield/objcproperty/objcsubscript/vectorcomponent
76 static const TerminalColor ObjectKindColor = { raw_ostream::CYAN, false };
77
78 // Null statements
79 static const TerminalColor NullColor = { raw_ostream::BLUE, false };
80
Richard Smith1d209d02013-05-23 01:49:11 +000081 // Undeserialized entities
82 static const TerminalColor UndeserializedColor = { raw_ostream::GREEN, true };
83
Richard Trieud215b8d2013-01-26 01:31:20 +000084 // CastKind from CastExpr's
85 static const TerminalColor CastColor = { raw_ostream::RED, false };
86
87 // Value of the statement
88 static const TerminalColor ValueColor = { raw_ostream::CYAN, true };
89 // Decl names
90 static const TerminalColor DeclNameColor = { raw_ostream::CYAN, true };
91
Richard Trieude5cc7d2013-01-31 01:44:26 +000092 // Indents ( `, -. | )
93 static const TerminalColor IndentColor = { raw_ostream::BLUE, false };
94
Alexander Kornienko90ff6072012-12-20 02:09:13 +000095 class ASTDumper
Alexander Kornienko540bacb2013-02-01 12:35:51 +000096 : public ConstDeclVisitor<ASTDumper>, public ConstStmtVisitor<ASTDumper>,
Richard Smithd5e7ff82014-10-31 01:17:45 +000097 public ConstCommentVisitor<ASTDumper>, public TypeVisitor<ASTDumper> {
Chris Lattner0e62c1c2011-07-23 10:55:15 +000098 raw_ostream &OS;
Alexander Kornienkoebc17b52013-01-14 14:07:11 +000099 const CommandTraits *Traits;
100 const SourceManager *SM;
Mike Stump11289f42009-09-09 15:08:12 +0000101
Richard Smithf7514452014-10-30 21:02:37 +0000102 /// Pending[i] is an action to dump an entity at level i.
103 llvm::SmallVector<std::function<void(bool isLastChild)>, 32> Pending;
Richard Trieude5cc7d2013-01-31 01:44:26 +0000104
Richard Smith3a36ac12017-03-09 22:00:01 +0000105 /// Indicates whether we should trigger deserialization of nodes that had
106 /// not already been loaded.
107 bool Deserialize = false;
108
Richard Smithf7514452014-10-30 21:02:37 +0000109 /// Indicates whether we're at the top level.
Richard Smith3a36ac12017-03-09 22:00:01 +0000110 bool TopLevel = true;
Richard Trieude5cc7d2013-01-31 01:44:26 +0000111
Richard Smithf7514452014-10-30 21:02:37 +0000112 /// Indicates if we're handling the first child after entering a new depth.
Richard Smith3a36ac12017-03-09 22:00:01 +0000113 bool FirstChild = true;
Richard Smithf7514452014-10-30 21:02:37 +0000114
115 /// Prefix for currently-being-dumped entity.
116 std::string Prefix;
Richard Trieude5cc7d2013-01-31 01:44:26 +0000117
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000118 /// Keep track of the last location we print out so that we can
119 /// print out deltas from then on out.
Richard Smith3a36ac12017-03-09 22:00:01 +0000120 const char *LastLocFilename = "";
121 unsigned LastLocLine = ~0U;
Douglas Gregor7de59662009-05-29 20:38:28 +0000122
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000123 /// The \c FullComment parent of the comment being dumped.
Richard Smith3a36ac12017-03-09 22:00:01 +0000124 const FullComment *FC = nullptr;
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000125
Richard Trieud215b8d2013-01-26 01:31:20 +0000126 bool ShowColors;
127
Richard Smithf7514452014-10-30 21:02:37 +0000128 /// Dump a child of the current node.
129 template<typename Fn> void dumpChild(Fn doDumpChild) {
130 // If we're at the top level, there's nothing interesting to do; just
131 // run the dumper.
132 if (TopLevel) {
133 TopLevel = false;
134 doDumpChild();
135 while (!Pending.empty()) {
136 Pending.back()(true);
137 Pending.pop_back();
138 }
139 Prefix.clear();
140 OS << "\n";
141 TopLevel = true;
142 return;
Manuel Klimek874030e2012-11-07 00:33:12 +0000143 }
Richard Smithf7514452014-10-30 21:02:37 +0000144
145 const FullComment *OrigFC = FC;
146 auto dumpWithIndent = [this, doDumpChild, OrigFC](bool isLastChild) {
147 // Print out the appropriate tree structure and work out the prefix for
148 // children of this node. For instance:
149 //
150 // A Prefix = ""
151 // |-B Prefix = "| "
152 // | `-C Prefix = "| "
153 // `-D Prefix = " "
154 // |-E Prefix = " | "
155 // `-F Prefix = " "
156 // G Prefix = ""
157 //
158 // Note that the first level gets no prefix.
159 {
160 OS << '\n';
161 ColorScope Color(*this, IndentColor);
162 OS << Prefix << (isLastChild ? '`' : '|') << '-';
NAKAMURA Takumic73e4022014-10-31 00:30:37 +0000163 this->Prefix.push_back(isLastChild ? ' ' : '|');
164 this->Prefix.push_back(' ');
Richard Smithf7514452014-10-30 21:02:37 +0000165 }
166
167 FirstChild = true;
168 unsigned Depth = Pending.size();
169
170 FC = OrigFC;
171 doDumpChild();
172
173 // If any children are left, they're the last at their nesting level.
174 // Dump those ones out now.
175 while (Depth < Pending.size()) {
176 Pending.back()(true);
NAKAMURA Takumic73e4022014-10-31 00:30:37 +0000177 this->Pending.pop_back();
Richard Smithf7514452014-10-30 21:02:37 +0000178 }
179
180 // Restore the old prefix.
NAKAMURA Takumic73e4022014-10-31 00:30:37 +0000181 this->Prefix.resize(Prefix.size() - 2);
Richard Smithf7514452014-10-30 21:02:37 +0000182 };
183
184 if (FirstChild) {
185 Pending.push_back(std::move(dumpWithIndent));
186 } else {
187 Pending.back()(false);
188 Pending.back() = std::move(dumpWithIndent);
Manuel Klimek874030e2012-11-07 00:33:12 +0000189 }
Richard Smithf7514452014-10-30 21:02:37 +0000190 FirstChild = false;
191 }
Manuel Klimek874030e2012-11-07 00:33:12 +0000192
Richard Trieud215b8d2013-01-26 01:31:20 +0000193 class ColorScope {
194 ASTDumper &Dumper;
195 public:
196 ColorScope(ASTDumper &Dumper, TerminalColor Color)
197 : Dumper(Dumper) {
198 if (Dumper.ShowColors)
199 Dumper.OS.changeColor(Color.Color, Color.Bold);
200 }
201 ~ColorScope() {
202 if (Dumper.ShowColors)
203 Dumper.OS.resetColor();
204 }
205 };
206
Chris Lattnercbe4f772007-08-08 22:51:59 +0000207 public:
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000208 ASTDumper(raw_ostream &OS, const CommandTraits *Traits,
209 const SourceManager *SM)
Richard Smith3a36ac12017-03-09 22:00:01 +0000210 : OS(OS), Traits(Traits), SM(SM),
Richard Trieud215b8d2013-01-26 01:31:20 +0000211 ShowColors(SM && SM->getDiagnostics().getShowColors()) { }
212
213 ASTDumper(raw_ostream &OS, const CommandTraits *Traits,
214 const SourceManager *SM, bool ShowColors)
Richard Smith3a36ac12017-03-09 22:00:01 +0000215 : OS(OS), Traits(Traits), SM(SM), ShowColors(ShowColors) {}
216
217 void setDeserialize(bool D) { Deserialize = D; }
Mike Stump11289f42009-09-09 15:08:12 +0000218
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000219 void dumpDecl(const Decl *D);
220 void dumpStmt(const Stmt *S);
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000221 void dumpFullComment(const FullComment *C);
Mike Stump11289f42009-09-09 15:08:12 +0000222
Richard Trieude5cc7d2013-01-31 01:44:26 +0000223 // Utilities
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000224 void dumpPointer(const void *Ptr);
225 void dumpSourceRange(SourceRange R);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000226 void dumpLocation(SourceLocation Loc);
Richard Smithd5e7ff82014-10-31 01:17:45 +0000227 void dumpBareType(QualType T, bool Desugar = true);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000228 void dumpType(QualType T);
Richard Smithd5e7ff82014-10-31 01:17:45 +0000229 void dumpTypeAsChild(QualType T);
230 void dumpTypeAsChild(const Type *T);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000231 void dumpBareDeclRef(const Decl *Node);
Craig Topper36250ad2014-05-12 05:36:57 +0000232 void dumpDeclRef(const Decl *Node, const char *Label = nullptr);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000233 void dumpName(const NamedDecl *D);
Richard Trieude5cc7d2013-01-31 01:44:26 +0000234 bool hasNodes(const DeclContext *DC);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000235 void dumpDeclContext(const DeclContext *DC);
Richard Smith35f986d2014-08-11 22:11:07 +0000236 void dumpLookups(const DeclContext *DC, bool DumpDecls);
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000237 void dumpAttr(const Attr *A);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000238
239 // C++ Utilities
240 void dumpAccessSpecifier(AccessSpecifier AS);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000241 void dumpCXXCtorInitializer(const CXXCtorInitializer *Init);
242 void dumpTemplateParameters(const TemplateParameterList *TPL);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000243 void dumpTemplateArgumentListInfo(const TemplateArgumentListInfo &TALI);
244 void dumpTemplateArgumentLoc(const TemplateArgumentLoc &A);
245 void dumpTemplateArgumentList(const TemplateArgumentList &TAL);
246 void dumpTemplateArgument(const TemplateArgument &A,
247 SourceRange R = SourceRange());
248
Douglas Gregor85f3f952015-07-07 03:57:15 +0000249 // Objective-C utilities.
250 void dumpObjCTypeParamList(const ObjCTypeParamList *typeParams);
251
Richard Smithd5e7ff82014-10-31 01:17:45 +0000252 // Types
253 void VisitComplexType(const ComplexType *T) {
254 dumpTypeAsChild(T->getElementType());
255 }
256 void VisitPointerType(const PointerType *T) {
257 dumpTypeAsChild(T->getPointeeType());
258 }
259 void VisitBlockPointerType(const BlockPointerType *T) {
260 dumpTypeAsChild(T->getPointeeType());
261 }
262 void VisitReferenceType(const ReferenceType *T) {
263 dumpTypeAsChild(T->getPointeeType());
264 }
265 void VisitRValueReferenceType(const ReferenceType *T) {
266 if (T->isSpelledAsLValue())
267 OS << " written as lvalue reference";
268 VisitReferenceType(T);
269 }
270 void VisitMemberPointerType(const MemberPointerType *T) {
271 dumpTypeAsChild(T->getClass());
272 dumpTypeAsChild(T->getPointeeType());
273 }
274 void VisitArrayType(const ArrayType *T) {
275 switch (T->getSizeModifier()) {
276 case ArrayType::Normal: break;
277 case ArrayType::Static: OS << " static"; break;
278 case ArrayType::Star: OS << " *"; break;
279 }
280 OS << " " << T->getIndexTypeQualifiers().getAsString();
281 dumpTypeAsChild(T->getElementType());
282 }
283 void VisitConstantArrayType(const ConstantArrayType *T) {
284 OS << " " << T->getSize();
285 VisitArrayType(T);
286 }
287 void VisitVariableArrayType(const VariableArrayType *T) {
288 OS << " ";
289 dumpSourceRange(T->getBracketsRange());
290 VisitArrayType(T);
291 dumpStmt(T->getSizeExpr());
292 }
293 void VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
294 VisitArrayType(T);
295 OS << " ";
296 dumpSourceRange(T->getBracketsRange());
297 dumpStmt(T->getSizeExpr());
298 }
299 void VisitDependentSizedExtVectorType(
300 const DependentSizedExtVectorType *T) {
301 OS << " ";
302 dumpLocation(T->getAttributeLoc());
303 dumpTypeAsChild(T->getElementType());
304 dumpStmt(T->getSizeExpr());
305 }
306 void VisitVectorType(const VectorType *T) {
307 switch (T->getVectorKind()) {
308 case VectorType::GenericVector: break;
309 case VectorType::AltiVecVector: OS << " altivec"; break;
310 case VectorType::AltiVecPixel: OS << " altivec pixel"; break;
311 case VectorType::AltiVecBool: OS << " altivec bool"; break;
312 case VectorType::NeonVector: OS << " neon"; break;
313 case VectorType::NeonPolyVector: OS << " neon poly"; break;
314 }
315 OS << " " << T->getNumElements();
316 dumpTypeAsChild(T->getElementType());
317 }
318 void VisitFunctionType(const FunctionType *T) {
319 auto EI = T->getExtInfo();
320 if (EI.getNoReturn()) OS << " noreturn";
321 if (EI.getProducesResult()) OS << " produces_result";
322 if (EI.getHasRegParm()) OS << " regparm " << EI.getRegParm();
323 OS << " " << FunctionType::getNameForCallConv(EI.getCC());
324 dumpTypeAsChild(T->getReturnType());
325 }
326 void VisitFunctionProtoType(const FunctionProtoType *T) {
327 auto EPI = T->getExtProtoInfo();
328 if (EPI.HasTrailingReturn) OS << " trailing_return";
329 if (T->isConst()) OS << " const";
330 if (T->isVolatile()) OS << " volatile";
331 if (T->isRestrict()) OS << " restrict";
332 switch (EPI.RefQualifier) {
333 case RQ_None: break;
334 case RQ_LValue: OS << " &"; break;
335 case RQ_RValue: OS << " &&"; break;
336 }
337 // FIXME: Exception specification.
338 // FIXME: Consumed parameters.
339 VisitFunctionType(T);
340 for (QualType PT : T->getParamTypes())
341 dumpTypeAsChild(PT);
342 if (EPI.Variadic)
343 dumpChild([=] { OS << "..."; });
344 }
345 void VisitUnresolvedUsingType(const UnresolvedUsingType *T) {
346 dumpDeclRef(T->getDecl());
347 }
348 void VisitTypedefType(const TypedefType *T) {
349 dumpDeclRef(T->getDecl());
350 }
351 void VisitTypeOfExprType(const TypeOfExprType *T) {
352 dumpStmt(T->getUnderlyingExpr());
353 }
354 void VisitDecltypeType(const DecltypeType *T) {
355 dumpStmt(T->getUnderlyingExpr());
356 }
357 void VisitUnaryTransformType(const UnaryTransformType *T) {
358 switch (T->getUTTKind()) {
359 case UnaryTransformType::EnumUnderlyingType:
360 OS << " underlying_type";
361 break;
362 }
363 dumpTypeAsChild(T->getBaseType());
364 }
365 void VisitTagType(const TagType *T) {
366 dumpDeclRef(T->getDecl());
367 }
368 void VisitAttributedType(const AttributedType *T) {
369 // FIXME: AttrKind
370 dumpTypeAsChild(T->getModifiedType());
371 }
372 void VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
373 OS << " depth " << T->getDepth() << " index " << T->getIndex();
374 if (T->isParameterPack()) OS << " pack";
375 dumpDeclRef(T->getDecl());
376 }
377 void VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) {
378 dumpTypeAsChild(T->getReplacedParameter());
379 }
380 void VisitSubstTemplateTypeParmPackType(
381 const SubstTemplateTypeParmPackType *T) {
382 dumpTypeAsChild(T->getReplacedParameter());
383 dumpTemplateArgument(T->getArgumentPack());
384 }
385 void VisitAutoType(const AutoType *T) {
386 if (T->isDecltypeAuto()) OS << " decltype(auto)";
387 if (!T->isDeduced())
388 OS << " undeduced";
389 }
390 void VisitTemplateSpecializationType(const TemplateSpecializationType *T) {
391 if (T->isTypeAlias()) OS << " alias";
392 OS << " "; T->getTemplateName().dump(OS);
393 for (auto &Arg : *T)
394 dumpTemplateArgument(Arg);
395 if (T->isTypeAlias())
396 dumpTypeAsChild(T->getAliasedType());
397 }
398 void VisitInjectedClassNameType(const InjectedClassNameType *T) {
399 dumpDeclRef(T->getDecl());
400 }
401 void VisitObjCInterfaceType(const ObjCInterfaceType *T) {
402 dumpDeclRef(T->getDecl());
403 }
404 void VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
405 dumpTypeAsChild(T->getPointeeType());
406 }
407 void VisitAtomicType(const AtomicType *T) {
408 dumpTypeAsChild(T->getValueType());
409 }
Xiuli Pan2d12e652016-05-03 05:37:07 +0000410 void VisitPipeType(const PipeType *T) {
411 dumpTypeAsChild(T->getElementType());
412 }
Richard Smithd5e7ff82014-10-31 01:17:45 +0000413 void VisitAdjustedType(const AdjustedType *T) {
414 dumpTypeAsChild(T->getOriginalType());
415 }
416 void VisitPackExpansionType(const PackExpansionType *T) {
417 if (auto N = T->getNumExpansions()) OS << " expansions " << *N;
418 if (!T->isSugared())
419 dumpTypeAsChild(T->getPattern());
420 }
421 // FIXME: ElaboratedType, DependentNameType,
422 // DependentTemplateSpecializationType, ObjCObjectType
423
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000424 // Decls
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000425 void VisitLabelDecl(const LabelDecl *D);
426 void VisitTypedefDecl(const TypedefDecl *D);
427 void VisitEnumDecl(const EnumDecl *D);
428 void VisitRecordDecl(const RecordDecl *D);
429 void VisitEnumConstantDecl(const EnumConstantDecl *D);
430 void VisitIndirectFieldDecl(const IndirectFieldDecl *D);
431 void VisitFunctionDecl(const FunctionDecl *D);
432 void VisitFieldDecl(const FieldDecl *D);
433 void VisitVarDecl(const VarDecl *D);
Richard Smithbdb84f32016-07-22 23:36:59 +0000434 void VisitDecompositionDecl(const DecompositionDecl *D);
Richard Smith7873de02016-08-11 22:25:46 +0000435 void VisitBindingDecl(const BindingDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000436 void VisitFileScopeAsmDecl(const FileScopeAsmDecl *D);
437 void VisitImportDecl(const ImportDecl *D);
Nico Weber66220292016-03-02 17:28:48 +0000438 void VisitPragmaCommentDecl(const PragmaCommentDecl *D);
Nico Webercbbaeb12016-03-02 19:28:54 +0000439 void VisitPragmaDetectMismatchDecl(const PragmaDetectMismatchDecl *D);
Alexey Bataev958b9e72016-03-31 09:30:50 +0000440 void VisitCapturedDecl(const CapturedDecl *D);
441
442 // OpenMP decls
443 void VisitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D);
444 void VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D);
445 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000446
447 // C++ Decls
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000448 void VisitNamespaceDecl(const NamespaceDecl *D);
449 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
450 void VisitNamespaceAliasDecl(const NamespaceAliasDecl *D);
451 void VisitTypeAliasDecl(const TypeAliasDecl *D);
452 void VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D);
453 void VisitCXXRecordDecl(const CXXRecordDecl *D);
454 void VisitStaticAssertDecl(const StaticAssertDecl *D);
Richard Smithcbdf7332014-03-18 02:07:28 +0000455 template<typename SpecializationDecl>
Richard Smithf7514452014-10-30 21:02:37 +0000456 void VisitTemplateDeclSpecialization(const SpecializationDecl *D,
Richard Smithcbdf7332014-03-18 02:07:28 +0000457 bool DumpExplicitInst,
458 bool DumpRefOnly);
Richard Smith20ade552014-03-17 23:34:53 +0000459 template<typename TemplateDecl>
460 void VisitTemplateDecl(const TemplateDecl *D, bool DumpExplicitInst);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000461 void VisitFunctionTemplateDecl(const FunctionTemplateDecl *D);
462 void VisitClassTemplateDecl(const ClassTemplateDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000463 void VisitClassTemplateSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000464 const ClassTemplateSpecializationDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000465 void VisitClassTemplatePartialSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000466 const ClassTemplatePartialSpecializationDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000467 void VisitClassScopeFunctionSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000468 const ClassScopeFunctionSpecializationDecl *D);
David Majnemerd9b1a4f2015-11-04 03:40:30 +0000469 void VisitBuiltinTemplateDecl(const BuiltinTemplateDecl *D);
Richard Smithd25789a2013-09-18 01:36:02 +0000470 void VisitVarTemplateDecl(const VarTemplateDecl *D);
471 void VisitVarTemplateSpecializationDecl(
472 const VarTemplateSpecializationDecl *D);
473 void VisitVarTemplatePartialSpecializationDecl(
474 const VarTemplatePartialSpecializationDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000475 void VisitTemplateTypeParmDecl(const TemplateTypeParmDecl *D);
476 void VisitNonTypeTemplateParmDecl(const NonTypeTemplateParmDecl *D);
477 void VisitTemplateTemplateParmDecl(const TemplateTemplateParmDecl *D);
478 void VisitUsingDecl(const UsingDecl *D);
479 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
480 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D);
481 void VisitUsingShadowDecl(const UsingShadowDecl *D);
Richard Smith5179eb72016-06-28 19:03:57 +0000482 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000483 void VisitLinkageSpecDecl(const LinkageSpecDecl *D);
484 void VisitAccessSpecDecl(const AccessSpecDecl *D);
485 void VisitFriendDecl(const FriendDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000486
487 // ObjC Decls
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000488 void VisitObjCIvarDecl(const ObjCIvarDecl *D);
489 void VisitObjCMethodDecl(const ObjCMethodDecl *D);
Douglas Gregor85f3f952015-07-07 03:57:15 +0000490 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000491 void VisitObjCCategoryDecl(const ObjCCategoryDecl *D);
492 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
493 void VisitObjCProtocolDecl(const ObjCProtocolDecl *D);
494 void VisitObjCInterfaceDecl(const ObjCInterfaceDecl *D);
495 void VisitObjCImplementationDecl(const ObjCImplementationDecl *D);
496 void VisitObjCCompatibleAliasDecl(const ObjCCompatibleAliasDecl *D);
497 void VisitObjCPropertyDecl(const ObjCPropertyDecl *D);
498 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
499 void VisitBlockDecl(const BlockDecl *D);
Mike Stump11289f42009-09-09 15:08:12 +0000500
Chris Lattner84ca3762007-08-30 01:00:35 +0000501 // Stmts.
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000502 void VisitStmt(const Stmt *Node);
503 void VisitDeclStmt(const DeclStmt *Node);
504 void VisitAttributedStmt(const AttributedStmt *Node);
505 void VisitLabelStmt(const LabelStmt *Node);
506 void VisitGotoStmt(const GotoStmt *Node);
Pavel Labath1ef83422013-09-04 14:35:00 +0000507 void VisitCXXCatchStmt(const CXXCatchStmt *Node);
Alexey Bataev958b9e72016-03-31 09:30:50 +0000508 void VisitCapturedStmt(const CapturedStmt *Node);
509
510 // OpenMP
511 void VisitOMPExecutableDirective(const OMPExecutableDirective *Node);
Mike Stump11289f42009-09-09 15:08:12 +0000512
Chris Lattner84ca3762007-08-30 01:00:35 +0000513 // Exprs
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000514 void VisitExpr(const Expr *Node);
515 void VisitCastExpr(const CastExpr *Node);
516 void VisitDeclRefExpr(const DeclRefExpr *Node);
517 void VisitPredefinedExpr(const PredefinedExpr *Node);
518 void VisitCharacterLiteral(const CharacterLiteral *Node);
519 void VisitIntegerLiteral(const IntegerLiteral *Node);
520 void VisitFloatingLiteral(const FloatingLiteral *Node);
521 void VisitStringLiteral(const StringLiteral *Str);
Richard Smithf0514962014-06-03 08:24:28 +0000522 void VisitInitListExpr(const InitListExpr *ILE);
Richard Smith410306b2016-12-12 02:53:20 +0000523 void VisitArrayInitLoopExpr(const ArrayInitLoopExpr *ILE);
524 void VisitArrayInitIndexExpr(const ArrayInitIndexExpr *ILE);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000525 void VisitUnaryOperator(const UnaryOperator *Node);
526 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Node);
527 void VisitMemberExpr(const MemberExpr *Node);
528 void VisitExtVectorElementExpr(const ExtVectorElementExpr *Node);
529 void VisitBinaryOperator(const BinaryOperator *Node);
530 void VisitCompoundAssignOperator(const CompoundAssignOperator *Node);
531 void VisitAddrLabelExpr(const AddrLabelExpr *Node);
532 void VisitBlockExpr(const BlockExpr *Node);
533 void VisitOpaqueValueExpr(const OpaqueValueExpr *Node);
Chris Lattner84ca3762007-08-30 01:00:35 +0000534
535 // C++
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000536 void VisitCXXNamedCastExpr(const CXXNamedCastExpr *Node);
537 void VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node);
538 void VisitCXXThisExpr(const CXXThisExpr *Node);
539 void VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *Node);
Richard Smith39eca9b2017-08-23 22:12:08 +0000540 void VisitCXXUnresolvedConstructExpr(const CXXUnresolvedConstructExpr *Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000541 void VisitCXXConstructExpr(const CXXConstructExpr *Node);
542 void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Node);
Reid Kleckner5c682bc2015-03-19 18:09:25 +0000543 void VisitCXXNewExpr(const CXXNewExpr *Node);
544 void VisitCXXDeleteExpr(const CXXDeleteExpr *Node);
Richard Smithe6c01442013-06-05 00:46:14 +0000545 void VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000546 void VisitExprWithCleanups(const ExprWithCleanups *Node);
547 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node);
548 void dumpCXXTemporary(const CXXTemporary *Temporary);
Faisal Vali2b391ab2013-09-26 19:54:12 +0000549 void VisitLambdaExpr(const LambdaExpr *Node) {
550 VisitExpr(Node);
551 dumpDecl(Node->getLambdaClass());
552 }
Serge Pavlov6b926032015-02-16 19:58:41 +0000553 void VisitSizeOfPackExpr(const SizeOfPackExpr *Node);
Alex Lorenzddbe0f52016-11-09 14:02:18 +0000554 void
555 VisitCXXDependentScopeMemberExpr(const CXXDependentScopeMemberExpr *Node);
Mike Stump11289f42009-09-09 15:08:12 +0000556
Chris Lattner84ca3762007-08-30 01:00:35 +0000557 // ObjC
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000558 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
559 void VisitObjCEncodeExpr(const ObjCEncodeExpr *Node);
560 void VisitObjCMessageExpr(const ObjCMessageExpr *Node);
561 void VisitObjCBoxedExpr(const ObjCBoxedExpr *Node);
562 void VisitObjCSelectorExpr(const ObjCSelectorExpr *Node);
563 void VisitObjCProtocolExpr(const ObjCProtocolExpr *Node);
564 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
565 void VisitObjCSubscriptRefExpr(const ObjCSubscriptRefExpr *Node);
566 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node);
567 void VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *Node);
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000568
569 // Comments.
570 const char *getCommandName(unsigned CommandID);
571 void dumpComment(const Comment *C);
572
573 // Inline comments.
574 void visitTextComment(const TextComment *C);
575 void visitInlineCommandComment(const InlineCommandComment *C);
576 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
577 void visitHTMLEndTagComment(const HTMLEndTagComment *C);
578
579 // Block comments.
580 void visitBlockCommandComment(const BlockCommandComment *C);
581 void visitParamCommandComment(const ParamCommandComment *C);
582 void visitTParamCommandComment(const TParamCommandComment *C);
583 void visitVerbatimBlockComment(const VerbatimBlockComment *C);
584 void visitVerbatimBlockLineComment(const VerbatimBlockLineComment *C);
585 void visitVerbatimLineComment(const VerbatimLineComment *C);
Chris Lattnercbe4f772007-08-08 22:51:59 +0000586 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000587}
Chris Lattnercbe4f772007-08-08 22:51:59 +0000588
589//===----------------------------------------------------------------------===//
Chris Lattner11e30d32007-08-30 06:17:34 +0000590// Utilities
591//===----------------------------------------------------------------------===//
592
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000593void ASTDumper::dumpPointer(const void *Ptr) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000594 ColorScope Color(*this, AddressColor);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000595 OS << ' ' << Ptr;
596}
597
Alexander Kornienko18ec81b2012-12-13 13:59:55 +0000598void ASTDumper::dumpLocation(SourceLocation Loc) {
Alex McCarthye14ddef2014-05-02 20:24:11 +0000599 if (!SM)
600 return;
601
Richard Trieud215b8d2013-01-26 01:31:20 +0000602 ColorScope Color(*this, LocationColor);
Chris Lattner53e384f2009-01-16 07:00:02 +0000603 SourceLocation SpellingLoc = SM->getSpellingLoc(Loc);
Mike Stump11289f42009-09-09 15:08:12 +0000604
Chris Lattner11e30d32007-08-30 06:17:34 +0000605 // The general format we print out is filename:line:col, but we drop pieces
606 // that haven't changed since the last loc printed.
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000607 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
608
Douglas Gregor453b0122010-11-12 07:15:47 +0000609 if (PLoc.isInvalid()) {
610 OS << "<invalid sloc>";
611 return;
612 }
613
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000614 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000615 OS << PLoc.getFilename() << ':' << PLoc.getLine()
616 << ':' << PLoc.getColumn();
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000617 LastLocFilename = PLoc.getFilename();
618 LastLocLine = PLoc.getLine();
619 } else if (PLoc.getLine() != LastLocLine) {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000620 OS << "line" << ':' << PLoc.getLine()
621 << ':' << PLoc.getColumn();
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000622 LastLocLine = PLoc.getLine();
Chris Lattner11e30d32007-08-30 06:17:34 +0000623 } else {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000624 OS << "col" << ':' << PLoc.getColumn();
Chris Lattner11e30d32007-08-30 06:17:34 +0000625 }
626}
627
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000628void ASTDumper::dumpSourceRange(SourceRange R) {
Chris Lattner11e30d32007-08-30 06:17:34 +0000629 // Can't translate locations if a SourceManager isn't available.
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000630 if (!SM)
631 return;
Mike Stump11289f42009-09-09 15:08:12 +0000632
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000633 OS << " <";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000634 dumpLocation(R.getBegin());
Chris Lattnera7c19fe2007-10-16 22:36:42 +0000635 if (R.getBegin() != R.getEnd()) {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000636 OS << ", ";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000637 dumpLocation(R.getEnd());
Chris Lattner11e30d32007-08-30 06:17:34 +0000638 }
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000639 OS << ">";
Mike Stump11289f42009-09-09 15:08:12 +0000640
Chris Lattner11e30d32007-08-30 06:17:34 +0000641 // <t2.c:123:421[blah], t2.c:412:321>
642
643}
644
Richard Smithd5e7ff82014-10-31 01:17:45 +0000645void ASTDumper::dumpBareType(QualType T, bool Desugar) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000646 ColorScope Color(*this, TypeColor);
Richard Smithd5e7ff82014-10-31 01:17:45 +0000647
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000648 SplitQualType T_split = T.split();
649 OS << "'" << QualType::getAsString(T_split) << "'";
650
Richard Smithd5e7ff82014-10-31 01:17:45 +0000651 if (Desugar && !T.isNull()) {
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000652 // If the type is sugared, also dump a (shallow) desugared type.
653 SplitQualType D_split = T.getSplitDesugaredType();
654 if (T_split != D_split)
655 OS << ":'" << QualType::getAsString(D_split) << "'";
656 }
657}
658
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000659void ASTDumper::dumpType(QualType T) {
660 OS << ' ';
661 dumpBareType(T);
662}
663
Richard Smithd5e7ff82014-10-31 01:17:45 +0000664void ASTDumper::dumpTypeAsChild(QualType T) {
665 SplitQualType SQT = T.split();
666 if (!SQT.Quals.hasQualifiers())
667 return dumpTypeAsChild(SQT.Ty);
668
669 dumpChild([=] {
670 OS << "QualType";
671 dumpPointer(T.getAsOpaquePtr());
672 OS << " ";
673 dumpBareType(T, false);
674 OS << " " << T.split().Quals.getAsString();
675 dumpTypeAsChild(T.split().Ty);
676 });
677}
678
679void ASTDumper::dumpTypeAsChild(const Type *T) {
680 dumpChild([=] {
681 if (!T) {
682 ColorScope Color(*this, NullColor);
683 OS << "<<<NULL>>>";
684 return;
685 }
Serge Pavlova6adc9e2015-12-28 17:19:12 +0000686 if (const LocInfoType *LIT = llvm::dyn_cast<LocInfoType>(T)) {
687 {
688 ColorScope Color(*this, TypeColor);
689 OS << "LocInfo Type";
690 }
691 dumpPointer(T);
692 dumpTypeAsChild(LIT->getTypeSourceInfo()->getType());
693 return;
694 }
Richard Smithd5e7ff82014-10-31 01:17:45 +0000695
696 {
697 ColorScope Color(*this, TypeColor);
698 OS << T->getTypeClassName() << "Type";
699 }
700 dumpPointer(T);
701 OS << " ";
702 dumpBareType(QualType(T, 0), false);
703
704 QualType SingleStepDesugar =
705 T->getLocallyUnqualifiedSingleStepDesugaredType();
706 if (SingleStepDesugar != QualType(T, 0))
707 OS << " sugar";
708 if (T->isDependentType())
709 OS << " dependent";
710 else if (T->isInstantiationDependentType())
711 OS << " instantiation_dependent";
712 if (T->isVariablyModifiedType())
713 OS << " variably_modified";
714 if (T->containsUnexpandedParameterPack())
715 OS << " contains_unexpanded_pack";
716 if (T->isFromAST())
717 OS << " imported";
718
719 TypeVisitor<ASTDumper>::Visit(T);
720
721 if (SingleStepDesugar != QualType(T, 0))
722 dumpTypeAsChild(SingleStepDesugar);
723 });
724}
725
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000726void ASTDumper::dumpBareDeclRef(const Decl *D) {
Richard Smith5179eb72016-06-28 19:03:57 +0000727 if (!D) {
728 ColorScope Color(*this, NullColor);
729 OS << "<<<NULL>>>";
730 return;
731 }
732
Richard Trieud215b8d2013-01-26 01:31:20 +0000733 {
734 ColorScope Color(*this, DeclKindNameColor);
735 OS << D->getDeclKindName();
736 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000737 dumpPointer(D);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000738
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000739 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000740 ColorScope Color(*this, DeclNameColor);
David Blaikied4da8722013-05-14 21:04:00 +0000741 OS << " '" << ND->getDeclName() << '\'';
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000742 }
743
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000744 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D))
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000745 dumpType(VD->getType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000746}
747
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000748void ASTDumper::dumpDeclRef(const Decl *D, const char *Label) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000749 if (!D)
750 return;
751
Richard Smithf7514452014-10-30 21:02:37 +0000752 dumpChild([=]{
753 if (Label)
754 OS << Label << ' ';
755 dumpBareDeclRef(D);
756 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000757}
758
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000759void ASTDumper::dumpName(const NamedDecl *ND) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000760 if (ND->getDeclName()) {
761 ColorScope Color(*this, DeclNameColor);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000762 OS << ' ' << ND->getNameAsString();
Richard Trieud215b8d2013-01-26 01:31:20 +0000763 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000764}
765
Richard Trieude5cc7d2013-01-31 01:44:26 +0000766bool ASTDumper::hasNodes(const DeclContext *DC) {
767 if (!DC)
768 return false;
769
Richard Smith1d209d02013-05-23 01:49:11 +0000770 return DC->hasExternalLexicalStorage() ||
Richard Smith3a36ac12017-03-09 22:00:01 +0000771 (Deserialize ? DC->decls_begin() != DC->decls_end()
772 : DC->noload_decls_begin() != DC->noload_decls_end());
Richard Trieude5cc7d2013-01-31 01:44:26 +0000773}
774
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000775void ASTDumper::dumpDeclContext(const DeclContext *DC) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000776 if (!DC)
777 return;
Richard Smithdcc2c452014-03-17 23:00:06 +0000778
Richard Smith3a36ac12017-03-09 22:00:01 +0000779 for (auto *D : (Deserialize ? DC->decls() : DC->noload_decls()))
Richard Smithf7514452014-10-30 21:02:37 +0000780 dumpDecl(D);
Richard Smithdcc2c452014-03-17 23:00:06 +0000781
782 if (DC->hasExternalLexicalStorage()) {
Richard Smithf7514452014-10-30 21:02:37 +0000783 dumpChild([=]{
784 ColorScope Color(*this, UndeserializedColor);
785 OS << "<undeserialized declarations>";
786 });
Richard Smith1d209d02013-05-23 01:49:11 +0000787 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000788}
789
Richard Smith35f986d2014-08-11 22:11:07 +0000790void ASTDumper::dumpLookups(const DeclContext *DC, bool DumpDecls) {
Richard Smithf7514452014-10-30 21:02:37 +0000791 dumpChild([=] {
792 OS << "StoredDeclsMap ";
793 dumpBareDeclRef(cast<Decl>(DC));
Richard Smith33937e72013-06-22 21:49:40 +0000794
Richard Smithf7514452014-10-30 21:02:37 +0000795 const DeclContext *Primary = DC->getPrimaryContext();
796 if (Primary != DC) {
797 OS << " primary";
798 dumpPointer(cast<Decl>(Primary));
Richard Smith33937e72013-06-22 21:49:40 +0000799 }
800
Richard Smithf7514452014-10-30 21:02:37 +0000801 bool HasUndeserializedLookups = Primary->hasExternalVisibleStorage();
Richard Smith35f986d2014-08-11 22:11:07 +0000802
Richard Smith3a36ac12017-03-09 22:00:01 +0000803 for (auto I = Deserialize ? Primary->lookups_begin()
804 : Primary->noload_lookups_begin(),
805 E = Deserialize ? Primary->lookups_end()
806 : Primary->noload_lookups_end();
807 I != E; ++I) {
Richard Smithf7514452014-10-30 21:02:37 +0000808 DeclarationName Name = I.getLookupName();
Richard Smith3a36ac12017-03-09 22:00:01 +0000809 DeclContextLookupResult R = *I;
Richard Smith35f986d2014-08-11 22:11:07 +0000810
Richard Smithf7514452014-10-30 21:02:37 +0000811 dumpChild([=] {
812 OS << "DeclarationName ";
813 {
814 ColorScope Color(*this, DeclNameColor);
815 OS << '\'' << Name << '\'';
816 }
Richard Smith35f986d2014-08-11 22:11:07 +0000817
Richard Smithf7514452014-10-30 21:02:37 +0000818 for (DeclContextLookupResult::iterator RI = R.begin(), RE = R.end();
819 RI != RE; ++RI) {
820 dumpChild([=] {
821 dumpBareDeclRef(*RI);
822
823 if ((*RI)->isHidden())
824 OS << " hidden";
825
826 // If requested, dump the redecl chain for this lookup.
827 if (DumpDecls) {
828 // Dump earliest decl first.
829 std::function<void(Decl *)> DumpWithPrev = [&](Decl *D) {
830 if (Decl *Prev = D->getPreviousDecl())
831 DumpWithPrev(Prev);
832 dumpDecl(D);
833 };
834 DumpWithPrev(*RI);
835 }
836 });
837 }
838 });
Richard Smith33937e72013-06-22 21:49:40 +0000839 }
Richard Smith33937e72013-06-22 21:49:40 +0000840
Richard Smithf7514452014-10-30 21:02:37 +0000841 if (HasUndeserializedLookups) {
842 dumpChild([=] {
843 ColorScope Color(*this, UndeserializedColor);
844 OS << "<undeserialized lookups>";
845 });
846 }
847 });
Richard Smith33937e72013-06-22 21:49:40 +0000848}
849
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000850void ASTDumper::dumpAttr(const Attr *A) {
Richard Smithf7514452014-10-30 21:02:37 +0000851 dumpChild([=] {
852 {
853 ColorScope Color(*this, AttrColor);
Aaron Ballman36a53502014-01-16 13:03:14 +0000854
Richard Smithf7514452014-10-30 21:02:37 +0000855 switch (A->getKind()) {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000856#define ATTR(X) case attr::X: OS << #X; break;
857#include "clang/Basic/AttrList.inc"
Richard Smithf7514452014-10-30 21:02:37 +0000858 }
859 OS << "Attr";
Richard Trieud215b8d2013-01-26 01:31:20 +0000860 }
Richard Smithf7514452014-10-30 21:02:37 +0000861 dumpPointer(A);
862 dumpSourceRange(A->getRange());
863 if (A->isInherited())
864 OS << " Inherited";
865 if (A->isImplicit())
866 OS << " Implicit";
Hans Wennborgb0a8b4a2014-05-31 04:05:57 +0000867#include "clang/AST/AttrDump.inc"
Richard Smithf7514452014-10-30 21:02:37 +0000868 });
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000869}
870
Richard Smith71bec062013-10-15 21:58:30 +0000871static void dumpPreviousDeclImpl(raw_ostream &OS, ...) {}
872
873template<typename T>
874static void dumpPreviousDeclImpl(raw_ostream &OS, const Mergeable<T> *D) {
Rafael Espindola8db352d2013-10-17 15:37:26 +0000875 const T *First = D->getFirstDecl();
Richard Smith71bec062013-10-15 21:58:30 +0000876 if (First != D)
877 OS << " first " << First;
Richard Smithf5f43542013-02-07 01:35:44 +0000878}
879
880template<typename T>
Richard Smith71bec062013-10-15 21:58:30 +0000881static void dumpPreviousDeclImpl(raw_ostream &OS, const Redeclarable<T> *D) {
882 const T *Prev = D->getPreviousDecl();
883 if (Prev)
884 OS << " prev " << Prev;
Richard Smithf5f43542013-02-07 01:35:44 +0000885}
886
Richard Smith71bec062013-10-15 21:58:30 +0000887/// Dump the previous declaration in the redeclaration chain for a declaration,
888/// if any.
889static void dumpPreviousDecl(raw_ostream &OS, const Decl *D) {
Richard Smithf5f43542013-02-07 01:35:44 +0000890 switch (D->getKind()) {
891#define DECL(DERIVED, BASE) \
892 case Decl::DERIVED: \
Richard Smith71bec062013-10-15 21:58:30 +0000893 return dumpPreviousDeclImpl(OS, cast<DERIVED##Decl>(D));
Richard Smithf5f43542013-02-07 01:35:44 +0000894#define ABSTRACT_DECL(DECL)
895#include "clang/AST/DeclNodes.inc"
896 }
897 llvm_unreachable("Decl that isn't part of DeclNodes.inc!");
898}
899
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000900//===----------------------------------------------------------------------===//
901// C++ Utilities
902//===----------------------------------------------------------------------===//
903
904void ASTDumper::dumpAccessSpecifier(AccessSpecifier AS) {
905 switch (AS) {
906 case AS_none:
907 break;
908 case AS_public:
909 OS << "public";
910 break;
911 case AS_protected:
912 OS << "protected";
913 break;
914 case AS_private:
915 OS << "private";
916 break;
917 }
918}
919
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000920void ASTDumper::dumpCXXCtorInitializer(const CXXCtorInitializer *Init) {
Richard Smithf7514452014-10-30 21:02:37 +0000921 dumpChild([=] {
922 OS << "CXXCtorInitializer";
923 if (Init->isAnyMemberInitializer()) {
924 OS << ' ';
925 dumpBareDeclRef(Init->getAnyMember());
926 } else if (Init->isBaseInitializer()) {
927 dumpType(QualType(Init->getBaseClass(), 0));
928 } else if (Init->isDelegatingInitializer()) {
929 dumpType(Init->getTypeSourceInfo()->getType());
930 } else {
931 llvm_unreachable("Unknown initializer type");
932 }
933 dumpStmt(Init->getInit());
934 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000935}
936
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000937void ASTDumper::dumpTemplateParameters(const TemplateParameterList *TPL) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000938 if (!TPL)
939 return;
940
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000941 for (TemplateParameterList::const_iterator I = TPL->begin(), E = TPL->end();
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000942 I != E; ++I)
943 dumpDecl(*I);
944}
945
946void ASTDumper::dumpTemplateArgumentListInfo(
947 const TemplateArgumentListInfo &TALI) {
Richard Smithf7514452014-10-30 21:02:37 +0000948 for (unsigned i = 0, e = TALI.size(); i < e; ++i)
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000949 dumpTemplateArgumentLoc(TALI[i]);
950}
951
952void ASTDumper::dumpTemplateArgumentLoc(const TemplateArgumentLoc &A) {
953 dumpTemplateArgument(A.getArgument(), A.getSourceRange());
954}
955
956void ASTDumper::dumpTemplateArgumentList(const TemplateArgumentList &TAL) {
957 for (unsigned i = 0, e = TAL.size(); i < e; ++i)
958 dumpTemplateArgument(TAL[i]);
959}
960
961void ASTDumper::dumpTemplateArgument(const TemplateArgument &A, SourceRange R) {
Richard Smithf7514452014-10-30 21:02:37 +0000962 dumpChild([=] {
963 OS << "TemplateArgument";
964 if (R.isValid())
965 dumpSourceRange(R);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000966
Richard Smithf7514452014-10-30 21:02:37 +0000967 switch (A.getKind()) {
968 case TemplateArgument::Null:
969 OS << " null";
970 break;
971 case TemplateArgument::Type:
972 OS << " type";
973 dumpType(A.getAsType());
974 break;
975 case TemplateArgument::Declaration:
976 OS << " decl";
977 dumpDeclRef(A.getAsDecl());
978 break;
979 case TemplateArgument::NullPtr:
980 OS << " nullptr";
981 break;
982 case TemplateArgument::Integral:
983 OS << " integral " << A.getAsIntegral();
984 break;
985 case TemplateArgument::Template:
986 OS << " template ";
987 A.getAsTemplate().dump(OS);
988 break;
989 case TemplateArgument::TemplateExpansion:
990 OS << " template expansion";
991 A.getAsTemplateOrTemplatePattern().dump(OS);
992 break;
993 case TemplateArgument::Expression:
994 OS << " expr";
995 dumpStmt(A.getAsExpr());
996 break;
997 case TemplateArgument::Pack:
998 OS << " pack";
999 for (TemplateArgument::pack_iterator I = A.pack_begin(), E = A.pack_end();
1000 I != E; ++I)
1001 dumpTemplateArgument(*I);
1002 break;
Richard Trieude5cc7d2013-01-31 01:44:26 +00001003 }
Richard Smithf7514452014-10-30 21:02:37 +00001004 });
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001005}
1006
Chris Lattner11e30d32007-08-30 06:17:34 +00001007//===----------------------------------------------------------------------===//
Douglas Gregor85f3f952015-07-07 03:57:15 +00001008// Objective-C Utilities
1009//===----------------------------------------------------------------------===//
1010void ASTDumper::dumpObjCTypeParamList(const ObjCTypeParamList *typeParams) {
1011 if (!typeParams)
1012 return;
1013
1014 for (auto typeParam : *typeParams) {
1015 dumpDecl(typeParam);
1016 }
1017}
1018
1019//===----------------------------------------------------------------------===//
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001020// Decl dumping methods.
Chris Lattnercbe4f772007-08-08 22:51:59 +00001021//===----------------------------------------------------------------------===//
1022
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001023void ASTDumper::dumpDecl(const Decl *D) {
Richard Smithf7514452014-10-30 21:02:37 +00001024 dumpChild([=] {
1025 if (!D) {
1026 ColorScope Color(*this, NullColor);
1027 OS << "<<<NULL>>>";
1028 return;
1029 }
Mike Stump11289f42009-09-09 15:08:12 +00001030
Richard Smithf7514452014-10-30 21:02:37 +00001031 {
1032 ColorScope Color(*this, DeclKindNameColor);
1033 OS << D->getDeclKindName() << "Decl";
1034 }
1035 dumpPointer(D);
1036 if (D->getLexicalDeclContext() != D->getDeclContext())
1037 OS << " parent " << cast<Decl>(D->getDeclContext());
1038 dumpPreviousDecl(OS, D);
1039 dumpSourceRange(D->getSourceRange());
1040 OS << ' ';
1041 dumpLocation(D->getLocation());
Richard Smith26342f92017-05-17 00:24:14 +00001042 if (D->isFromASTFile())
1043 OS << " imported";
1044 if (Module *M = D->getOwningModule())
Richard Smithf7514452014-10-30 21:02:37 +00001045 OS << " in " << M->getFullModuleName();
Richard Smitha2eb4092015-06-22 18:47:01 +00001046 if (auto *ND = dyn_cast<NamedDecl>(D))
1047 for (Module *M : D->getASTContext().getModulesWithMergedDefinition(
1048 const_cast<NamedDecl *>(ND)))
1049 dumpChild([=] { OS << "also in " << M->getFullModuleName(); });
Richard Smithf7514452014-10-30 21:02:37 +00001050 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D))
1051 if (ND->isHidden())
1052 OS << " hidden";
1053 if (D->isImplicit())
1054 OS << " implicit";
1055 if (D->isUsed())
1056 OS << " used";
1057 else if (D->isThisDeclarationReferenced())
1058 OS << " referenced";
1059 if (D->isInvalidDecl())
1060 OS << " invalid";
Hans Wennborg76b00532014-12-05 22:38:57 +00001061 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
1062 if (FD->isConstexpr())
1063 OS << " constexpr";
1064
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001065
Richard Smithf7514452014-10-30 21:02:37 +00001066 ConstDeclVisitor<ASTDumper>::Visit(D);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001067
Richard Smithf7514452014-10-30 21:02:37 +00001068 for (Decl::attr_iterator I = D->attr_begin(), E = D->attr_end(); I != E;
1069 ++I)
1070 dumpAttr(*I);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001071
Richard Smithf7514452014-10-30 21:02:37 +00001072 if (const FullComment *Comment =
1073 D->getASTContext().getLocalCommentForDeclUncached(D))
1074 dumpFullComment(Comment);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001075
Richard Smithf7514452014-10-30 21:02:37 +00001076 // Decls within functions are visited by the body.
1077 if (!isa<FunctionDecl>(*D) && !isa<ObjCMethodDecl>(*D) &&
1078 hasNodes(dyn_cast<DeclContext>(D)))
1079 dumpDeclContext(cast<DeclContext>(D));
1080 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001081}
1082
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001083void ASTDumper::VisitLabelDecl(const LabelDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001084 dumpName(D);
1085}
1086
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001087void ASTDumper::VisitTypedefDecl(const TypedefDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001088 dumpName(D);
1089 dumpType(D->getUnderlyingType());
1090 if (D->isModulePrivate())
1091 OS << " __module_private__";
Richard Smithba3a4f92016-01-12 21:59:26 +00001092 dumpTypeAsChild(D->getUnderlyingType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001093}
1094
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001095void ASTDumper::VisitEnumDecl(const EnumDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001096 if (D->isScoped()) {
1097 if (D->isScopedUsingClassTag())
1098 OS << " class";
1099 else
1100 OS << " struct";
1101 }
1102 dumpName(D);
1103 if (D->isModulePrivate())
1104 OS << " __module_private__";
1105 if (D->isFixed())
1106 dumpType(D->getIntegerType());
1107}
1108
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001109void ASTDumper::VisitRecordDecl(const RecordDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001110 OS << ' ' << D->getKindName();
1111 dumpName(D);
1112 if (D->isModulePrivate())
1113 OS << " __module_private__";
Richard Smith99bc1b92013-08-30 05:32:29 +00001114 if (D->isCompleteDefinition())
1115 OS << " definition";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001116}
1117
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001118void ASTDumper::VisitEnumConstantDecl(const EnumConstantDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001119 dumpName(D);
1120 dumpType(D->getType());
Richard Smithf7514452014-10-30 21:02:37 +00001121 if (const Expr *Init = D->getInitExpr())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001122 dumpStmt(Init);
1123}
1124
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001125void ASTDumper::VisitIndirectFieldDecl(const IndirectFieldDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001126 dumpName(D);
1127 dumpType(D->getType());
Richard Smithdcc2c452014-03-17 23:00:06 +00001128
Richard Smith8aa49222014-03-18 00:35:12 +00001129 for (auto *Child : D->chain())
Richard Smithf7514452014-10-30 21:02:37 +00001130 dumpDeclRef(Child);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001131}
1132
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001133void ASTDumper::VisitFunctionDecl(const FunctionDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001134 dumpName(D);
1135 dumpType(D->getType());
1136
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001137 StorageClass SC = D->getStorageClass();
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001138 if (SC != SC_None)
1139 OS << ' ' << VarDecl::getStorageClassSpecifierString(SC);
1140 if (D->isInlineSpecified())
1141 OS << " inline";
1142 if (D->isVirtualAsWritten())
1143 OS << " virtual";
1144 if (D->isModulePrivate())
1145 OS << " __module_private__";
1146
1147 if (D->isPure())
1148 OS << " pure";
Richard Smith5a2e6b92016-11-21 23:43:54 +00001149 if (D->isDefaulted()) {
1150 OS << " default";
1151 if (D->isDeleted())
1152 OS << "_delete";
1153 }
1154 if (D->isDeletedAsWritten())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001155 OS << " delete";
Richard Smith5a2e6b92016-11-21 23:43:54 +00001156 if (D->isTrivial())
1157 OS << " trivial";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001158
Richard Smithadaa0152013-05-17 02:09:46 +00001159 if (const FunctionProtoType *FPT = D->getType()->getAs<FunctionProtoType>()) {
1160 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00001161 switch (EPI.ExceptionSpec.Type) {
Richard Smithadaa0152013-05-17 02:09:46 +00001162 default: break;
1163 case EST_Unevaluated:
Richard Smith8acb4282014-07-31 21:57:55 +00001164 OS << " noexcept-unevaluated " << EPI.ExceptionSpec.SourceDecl;
Richard Smithadaa0152013-05-17 02:09:46 +00001165 break;
1166 case EST_Uninstantiated:
Richard Smith8acb4282014-07-31 21:57:55 +00001167 OS << " noexcept-uninstantiated " << EPI.ExceptionSpec.SourceTemplate;
Richard Smithadaa0152013-05-17 02:09:46 +00001168 break;
1169 }
1170 }
1171
Richard Smithf7514452014-10-30 21:02:37 +00001172 if (const FunctionTemplateSpecializationInfo *FTSI =
1173 D->getTemplateSpecializationInfo())
Richard Trieude5cc7d2013-01-31 01:44:26 +00001174 dumpTemplateArgumentList(*FTSI->TemplateArguments);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001175
Richard Smith8a639892015-01-24 01:07:20 +00001176 if (!D->param_begin() && D->getNumParams())
1177 dumpChild([=] { OS << "<<NULL params x " << D->getNumParams() << ">>"; });
1178 else
David Majnemera3debed2016-06-24 05:33:44 +00001179 for (const ParmVarDecl *Parameter : D->parameters())
1180 dumpDecl(Parameter);
Richard Smithf7514452014-10-30 21:02:37 +00001181
1182 if (const CXXConstructorDecl *C = dyn_cast<CXXConstructorDecl>(D))
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001183 for (CXXConstructorDecl::init_const_iterator I = C->init_begin(),
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001184 E = C->init_end();
Richard Smithf7514452014-10-30 21:02:37 +00001185 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001186 dumpCXXCtorInitializer(*I);
1187
Lenar Safin9ae21552017-07-29 20:42:58 +00001188 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Lang Hames19e07e12017-06-20 21:06:00 +00001189 if (MD->size_overridden_methods() != 0) {
1190 auto dumpOverride =
1191 [=](const CXXMethodDecl *D) {
1192 SplitQualType T_split = D->getType().split();
Lang Hames971add52017-07-13 21:08:29 +00001193 OS << D << " " << D->getParent()->getName() << "::"
1194 << D->getNameAsString() << " '" << QualType::getAsString(T_split) << "'";
Lang Hames19e07e12017-06-20 21:06:00 +00001195 };
1196
1197 dumpChild([=] {
Benjamin Krameracfa3392017-12-17 23:52:45 +00001198 auto Overrides = MD->overridden_methods();
Lang Hames19e07e12017-06-20 21:06:00 +00001199 OS << "Overrides: [ ";
Benjamin Krameracfa3392017-12-17 23:52:45 +00001200 dumpOverride(*Overrides.begin());
Lang Hames19e07e12017-06-20 21:06:00 +00001201 for (const auto *Override :
Benjamin Krameracfa3392017-12-17 23:52:45 +00001202 llvm::make_range(Overrides.begin() + 1, Overrides.end())) {
Lenar Safin9ae21552017-07-29 20:42:58 +00001203 OS << ", ";
Lang Hames19e07e12017-06-20 21:06:00 +00001204 dumpOverride(Override);
Lenar Safin9ae21552017-07-29 20:42:58 +00001205 }
Lang Hames19e07e12017-06-20 21:06:00 +00001206 OS << " ]";
1207 });
1208 }
Lenar Safin9ae21552017-07-29 20:42:58 +00001209 }
Lang Hames19e07e12017-06-20 21:06:00 +00001210
Richard Smithf7514452014-10-30 21:02:37 +00001211 if (D->doesThisDeclarationHaveABody())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001212 dumpStmt(D->getBody());
1213}
1214
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001215void ASTDumper::VisitFieldDecl(const FieldDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001216 dumpName(D);
1217 dumpType(D->getType());
1218 if (D->isMutable())
1219 OS << " mutable";
1220 if (D->isModulePrivate())
1221 OS << " __module_private__";
Richard Trieude5cc7d2013-01-31 01:44:26 +00001222
Richard Smithf7514452014-10-30 21:02:37 +00001223 if (D->isBitField())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001224 dumpStmt(D->getBitWidth());
Richard Smithf7514452014-10-30 21:02:37 +00001225 if (Expr *Init = D->getInClassInitializer())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001226 dumpStmt(Init);
1227}
1228
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001229void ASTDumper::VisitVarDecl(const VarDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001230 dumpName(D);
1231 dumpType(D->getType());
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001232 StorageClass SC = D->getStorageClass();
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001233 if (SC != SC_None)
1234 OS << ' ' << VarDecl::getStorageClassSpecifierString(SC);
Richard Smithfd3834f2013-04-13 02:43:54 +00001235 switch (D->getTLSKind()) {
1236 case VarDecl::TLS_None: break;
1237 case VarDecl::TLS_Static: OS << " tls"; break;
1238 case VarDecl::TLS_Dynamic: OS << " tls_dynamic"; break;
1239 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001240 if (D->isModulePrivate())
1241 OS << " __module_private__";
1242 if (D->isNRVOVariable())
1243 OS << " nrvo";
Richard Smith62f19e72016-06-25 00:15:56 +00001244 if (D->isInline())
1245 OS << " inline";
1246 if (D->isConstexpr())
1247 OS << " constexpr";
Richard Trieude5cc7d2013-01-31 01:44:26 +00001248 if (D->hasInit()) {
Richard Smithd9967cc2014-07-10 22:54:03 +00001249 switch (D->getInitStyle()) {
1250 case VarDecl::CInit: OS << " cinit"; break;
1251 case VarDecl::CallInit: OS << " callinit"; break;
1252 case VarDecl::ListInit: OS << " listinit"; break;
1253 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001254 dumpStmt(D->getInit());
Richard Trieude5cc7d2013-01-31 01:44:26 +00001255 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001256}
1257
Richard Smithbdb84f32016-07-22 23:36:59 +00001258void ASTDumper::VisitDecompositionDecl(const DecompositionDecl *D) {
1259 VisitVarDecl(D);
1260 for (auto *B : D->bindings())
1261 dumpDecl(B);
1262}
1263
Richard Smith7873de02016-08-11 22:25:46 +00001264void ASTDumper::VisitBindingDecl(const BindingDecl *D) {
1265 dumpName(D);
1266 dumpType(D->getType());
1267 if (auto *E = D->getBinding())
1268 dumpStmt(E);
1269}
1270
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001271void ASTDumper::VisitFileScopeAsmDecl(const FileScopeAsmDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001272 dumpStmt(D->getAsmString());
1273}
1274
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001275void ASTDumper::VisitImportDecl(const ImportDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001276 OS << ' ' << D->getImportedModule()->getFullModuleName();
1277}
1278
Nico Weber66220292016-03-02 17:28:48 +00001279void ASTDumper::VisitPragmaCommentDecl(const PragmaCommentDecl *D) {
1280 OS << ' ';
1281 switch (D->getCommentKind()) {
1282 case PCK_Unknown: llvm_unreachable("unexpected pragma comment kind");
1283 case PCK_Compiler: OS << "compiler"; break;
1284 case PCK_ExeStr: OS << "exestr"; break;
1285 case PCK_Lib: OS << "lib"; break;
1286 case PCK_Linker: OS << "linker"; break;
1287 case PCK_User: OS << "user"; break;
1288 }
1289 StringRef Arg = D->getArg();
1290 if (!Arg.empty())
1291 OS << " \"" << Arg << "\"";
1292}
1293
Nico Webercbbaeb12016-03-02 19:28:54 +00001294void ASTDumper::VisitPragmaDetectMismatchDecl(
1295 const PragmaDetectMismatchDecl *D) {
1296 OS << " \"" << D->getName() << "\" \"" << D->getValue() << "\"";
1297}
1298
Alexey Bataev958b9e72016-03-31 09:30:50 +00001299void ASTDumper::VisitCapturedDecl(const CapturedDecl *D) {
1300 dumpStmt(D->getBody());
1301}
1302
1303//===----------------------------------------------------------------------===//
1304// OpenMP Declarations
1305//===----------------------------------------------------------------------===//
1306
1307void ASTDumper::VisitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D) {
1308 for (auto *E : D->varlists())
1309 dumpStmt(E);
1310}
1311
1312void ASTDumper::VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D) {
1313 dumpName(D);
1314 dumpType(D->getType());
1315 OS << " combiner";
1316 dumpStmt(D->getCombiner());
1317 if (auto *Initializer = D->getInitializer()) {
1318 OS << " initializer";
Alexey Bataev070f43a2017-09-06 14:49:58 +00001319 switch (D->getInitializerKind()) {
1320 case OMPDeclareReductionDecl::DirectInit:
1321 OS << " omp_priv = ";
1322 break;
1323 case OMPDeclareReductionDecl::CopyInit:
1324 OS << " omp_priv ()";
1325 break;
1326 case OMPDeclareReductionDecl::CallInit:
1327 break;
1328 }
Alexey Bataev958b9e72016-03-31 09:30:50 +00001329 dumpStmt(Initializer);
1330 }
1331}
1332
1333void ASTDumper::VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) {
1334 dumpName(D);
1335 dumpType(D->getType());
1336 dumpStmt(D->getInit());
1337}
Nico Webercbbaeb12016-03-02 19:28:54 +00001338
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001339//===----------------------------------------------------------------------===//
1340// C++ Declarations
1341//===----------------------------------------------------------------------===//
1342
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001343void ASTDumper::VisitNamespaceDecl(const NamespaceDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001344 dumpName(D);
1345 if (D->isInline())
1346 OS << " inline";
1347 if (!D->isOriginalNamespace())
1348 dumpDeclRef(D->getOriginalNamespace(), "original");
1349}
1350
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001351void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001352 OS << ' ';
1353 dumpBareDeclRef(D->getNominatedNamespace());
1354}
1355
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001356void ASTDumper::VisitNamespaceAliasDecl(const NamespaceAliasDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001357 dumpName(D);
1358 dumpDeclRef(D->getAliasedNamespace());
1359}
1360
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001361void ASTDumper::VisitTypeAliasDecl(const TypeAliasDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001362 dumpName(D);
1363 dumpType(D->getUnderlyingType());
Richard Smithba3a4f92016-01-12 21:59:26 +00001364 dumpTypeAsChild(D->getUnderlyingType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001365}
1366
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001367void ASTDumper::VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001368 dumpName(D);
1369 dumpTemplateParameters(D->getTemplateParameters());
1370 dumpDecl(D->getTemplatedDecl());
1371}
1372
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001373void ASTDumper::VisitCXXRecordDecl(const CXXRecordDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001374 VisitRecordDecl(D);
1375 if (!D->isCompleteDefinition())
1376 return;
1377
Richard Smithdfc4bff2017-09-22 00:11:15 +00001378 dumpChild([=] {
1379 {
1380 ColorScope Color(*this, DeclKindNameColor);
1381 OS << "DefinitionData";
1382 }
1383#define FLAG(fn, name) if (D->fn()) OS << " " #name;
1384 FLAG(isParsingBaseSpecifiers, parsing_base_specifiers);
1385
1386 FLAG(isGenericLambda, generic);
1387 FLAG(isLambda, lambda);
1388
1389 FLAG(canPassInRegisters, pass_in_registers);
1390 FLAG(isEmpty, empty);
1391 FLAG(isAggregate, aggregate);
1392 FLAG(isStandardLayout, standard_layout);
1393 FLAG(isTriviallyCopyable, trivially_copyable);
1394 FLAG(isPOD, pod);
1395 FLAG(isTrivial, trivial);
1396 FLAG(isPolymorphic, polymorphic);
1397 FLAG(isAbstract, abstract);
1398 FLAG(isLiteral, literal);
1399
1400 FLAG(hasUserDeclaredConstructor, has_user_declared_ctor);
1401 FLAG(hasConstexprNonCopyMoveConstructor, has_constexpr_non_copy_move_ctor);
1402 FLAG(hasMutableFields, has_mutable_fields);
1403 FLAG(hasVariantMembers, has_variant_members);
1404 FLAG(allowConstDefaultInit, can_const_default_init);
1405
1406 dumpChild([=] {
1407 {
1408 ColorScope Color(*this, DeclKindNameColor);
1409 OS << "DefaultConstructor";
1410 }
1411 FLAG(hasDefaultConstructor, exists);
1412 FLAG(hasTrivialDefaultConstructor, trivial);
1413 FLAG(hasNonTrivialDefaultConstructor, non_trivial);
1414 FLAG(hasUserProvidedDefaultConstructor, user_provided);
1415 FLAG(hasConstexprDefaultConstructor, constexpr);
1416 FLAG(needsImplicitDefaultConstructor, needs_implicit);
1417 FLAG(defaultedDefaultConstructorIsConstexpr, defaulted_is_constexpr);
1418 });
1419
1420 dumpChild([=] {
1421 {
1422 ColorScope Color(*this, DeclKindNameColor);
1423 OS << "CopyConstructor";
1424 }
1425 FLAG(hasSimpleCopyConstructor, simple);
1426 FLAG(hasTrivialCopyConstructor, trivial);
1427 FLAG(hasNonTrivialCopyConstructor, non_trivial);
1428 FLAG(hasUserDeclaredCopyConstructor, user_declared);
1429 FLAG(hasCopyConstructorWithConstParam, has_const_param);
1430 FLAG(needsImplicitCopyConstructor, needs_implicit);
1431 FLAG(needsOverloadResolutionForCopyConstructor,
1432 needs_overload_resolution);
1433 if (!D->needsOverloadResolutionForCopyConstructor())
1434 FLAG(defaultedCopyConstructorIsDeleted, defaulted_is_deleted);
1435 FLAG(implicitCopyConstructorHasConstParam, implicit_has_const_param);
1436 });
1437
1438 dumpChild([=] {
1439 {
1440 ColorScope Color(*this, DeclKindNameColor);
1441 OS << "MoveConstructor";
1442 }
1443 FLAG(hasMoveConstructor, exists);
1444 FLAG(hasSimpleMoveConstructor, simple);
1445 FLAG(hasTrivialMoveConstructor, trivial);
1446 FLAG(hasNonTrivialMoveConstructor, non_trivial);
1447 FLAG(hasUserDeclaredMoveConstructor, user_declared);
1448 FLAG(needsImplicitMoveConstructor, needs_implicit);
1449 FLAG(needsOverloadResolutionForMoveConstructor,
1450 needs_overload_resolution);
1451 if (!D->needsOverloadResolutionForMoveConstructor())
1452 FLAG(defaultedMoveConstructorIsDeleted, defaulted_is_deleted);
1453 });
1454
1455 dumpChild([=] {
1456 {
1457 ColorScope Color(*this, DeclKindNameColor);
1458 OS << "CopyAssignment";
1459 }
1460 FLAG(hasTrivialCopyAssignment, trivial);
1461 FLAG(hasNonTrivialCopyAssignment, non_trivial);
1462 FLAG(hasCopyAssignmentWithConstParam, has_const_param);
1463 FLAG(hasUserDeclaredCopyAssignment, user_declared);
1464 FLAG(needsImplicitCopyAssignment, needs_implicit);
1465 FLAG(needsOverloadResolutionForCopyAssignment, needs_overload_resolution);
1466 FLAG(implicitCopyAssignmentHasConstParam, implicit_has_const_param);
1467 });
1468
1469 dumpChild([=] {
1470 {
1471 ColorScope Color(*this, DeclKindNameColor);
1472 OS << "MoveAssignment";
1473 }
1474 FLAG(hasMoveAssignment, exists);
1475 FLAG(hasSimpleMoveAssignment, simple);
1476 FLAG(hasTrivialMoveAssignment, trivial);
1477 FLAG(hasNonTrivialMoveAssignment, non_trivial);
1478 FLAG(hasUserDeclaredMoveAssignment, user_declared);
1479 FLAG(needsImplicitMoveAssignment, needs_implicit);
1480 FLAG(needsOverloadResolutionForMoveAssignment, needs_overload_resolution);
1481 });
1482
1483 dumpChild([=] {
1484 {
1485 ColorScope Color(*this, DeclKindNameColor);
1486 OS << "Destructor";
1487 }
1488 FLAG(hasSimpleDestructor, simple);
1489 FLAG(hasIrrelevantDestructor, irrelevant);
1490 FLAG(hasTrivialDestructor, trivial);
1491 FLAG(hasNonTrivialDestructor, non_trivial);
1492 FLAG(hasUserDeclaredDestructor, user_declared);
1493 FLAG(needsImplicitDestructor, needs_implicit);
1494 FLAG(needsOverloadResolutionForDestructor, needs_overload_resolution);
1495 if (!D->needsOverloadResolutionForDestructor())
1496 FLAG(defaultedDestructorIsDeleted, defaulted_is_deleted);
1497 });
1498 });
1499
Aaron Ballman574705e2014-03-13 15:41:46 +00001500 for (const auto &I : D->bases()) {
Richard Smithf7514452014-10-30 21:02:37 +00001501 dumpChild([=] {
1502 if (I.isVirtual())
1503 OS << "virtual ";
1504 dumpAccessSpecifier(I.getAccessSpecifier());
1505 dumpType(I.getType());
1506 if (I.isPackExpansion())
1507 OS << "...";
1508 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001509 }
1510}
1511
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001512void ASTDumper::VisitStaticAssertDecl(const StaticAssertDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001513 dumpStmt(D->getAssertExpr());
1514 dumpStmt(D->getMessage());
1515}
1516
Richard Smithcbdf7332014-03-18 02:07:28 +00001517template<typename SpecializationDecl>
Richard Smithf7514452014-10-30 21:02:37 +00001518void ASTDumper::VisitTemplateDeclSpecialization(const SpecializationDecl *D,
Richard Smithcbdf7332014-03-18 02:07:28 +00001519 bool DumpExplicitInst,
1520 bool DumpRefOnly) {
1521 bool DumpedAny = false;
1522 for (auto *RedeclWithBadType : D->redecls()) {
1523 // FIXME: The redecls() range sometimes has elements of a less-specific
1524 // type. (In particular, ClassTemplateSpecializationDecl::redecls() gives
1525 // us TagDecls, and should give CXXRecordDecls).
1526 auto *Redecl = dyn_cast<SpecializationDecl>(RedeclWithBadType);
1527 if (!Redecl) {
1528 // Found the injected-class-name for a class template. This will be dumped
1529 // as part of its surrounding class so we don't need to dump it here.
1530 assert(isa<CXXRecordDecl>(RedeclWithBadType) &&
1531 "expected an injected-class-name");
1532 continue;
1533 }
1534
1535 switch (Redecl->getTemplateSpecializationKind()) {
1536 case TSK_ExplicitInstantiationDeclaration:
1537 case TSK_ExplicitInstantiationDefinition:
1538 if (!DumpExplicitInst)
1539 break;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00001540 LLVM_FALLTHROUGH;
Richard Smithcbdf7332014-03-18 02:07:28 +00001541 case TSK_Undeclared:
1542 case TSK_ImplicitInstantiation:
Richard Smithf7514452014-10-30 21:02:37 +00001543 if (DumpRefOnly)
1544 dumpDeclRef(Redecl);
1545 else
1546 dumpDecl(Redecl);
Richard Smithcbdf7332014-03-18 02:07:28 +00001547 DumpedAny = true;
1548 break;
1549 case TSK_ExplicitSpecialization:
1550 break;
1551 }
1552 }
1553
1554 // Ensure we dump at least one decl for each specialization.
1555 if (!DumpedAny)
Richard Smithf7514452014-10-30 21:02:37 +00001556 dumpDeclRef(D);
Richard Smithcbdf7332014-03-18 02:07:28 +00001557}
1558
Richard Smith20ade552014-03-17 23:34:53 +00001559template<typename TemplateDecl>
1560void ASTDumper::VisitTemplateDecl(const TemplateDecl *D,
1561 bool DumpExplicitInst) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001562 dumpName(D);
1563 dumpTemplateParameters(D->getTemplateParameters());
Richard Smithdcc2c452014-03-17 23:00:06 +00001564
Richard Smithf7514452014-10-30 21:02:37 +00001565 dumpDecl(D->getTemplatedDecl());
Richard Smithdcc2c452014-03-17 23:00:06 +00001566
Richard Smithcbdf7332014-03-18 02:07:28 +00001567 for (auto *Child : D->specializations())
Richard Smithf7514452014-10-30 21:02:37 +00001568 VisitTemplateDeclSpecialization(Child, DumpExplicitInst,
Richard Smithcbdf7332014-03-18 02:07:28 +00001569 !D->isCanonicalDecl());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001570}
1571
Richard Smith20ade552014-03-17 23:34:53 +00001572void ASTDumper::VisitFunctionTemplateDecl(const FunctionTemplateDecl *D) {
1573 // FIXME: We don't add a declaration of a function template specialization
1574 // to its context when it's explicitly instantiated, so dump explicit
1575 // instantiations when we dump the template itself.
1576 VisitTemplateDecl(D, true);
1577}
1578
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001579void ASTDumper::VisitClassTemplateDecl(const ClassTemplateDecl *D) {
Richard Smith20ade552014-03-17 23:34:53 +00001580 VisitTemplateDecl(D, false);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001581}
1582
1583void ASTDumper::VisitClassTemplateSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001584 const ClassTemplateSpecializationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001585 VisitCXXRecordDecl(D);
1586 dumpTemplateArgumentList(D->getTemplateArgs());
1587}
1588
1589void ASTDumper::VisitClassTemplatePartialSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001590 const ClassTemplatePartialSpecializationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001591 VisitClassTemplateSpecializationDecl(D);
1592 dumpTemplateParameters(D->getTemplateParameters());
1593}
1594
1595void ASTDumper::VisitClassScopeFunctionSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001596 const ClassScopeFunctionSpecializationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001597 dumpDeclRef(D->getSpecialization());
1598 if (D->hasExplicitTemplateArgs())
1599 dumpTemplateArgumentListInfo(D->templateArgs());
1600}
1601
Richard Smithd25789a2013-09-18 01:36:02 +00001602void ASTDumper::VisitVarTemplateDecl(const VarTemplateDecl *D) {
Richard Smith20ade552014-03-17 23:34:53 +00001603 VisitTemplateDecl(D, false);
Richard Smithd25789a2013-09-18 01:36:02 +00001604}
1605
David Majnemerd9b1a4f2015-11-04 03:40:30 +00001606void ASTDumper::VisitBuiltinTemplateDecl(const BuiltinTemplateDecl *D) {
1607 dumpName(D);
1608 dumpTemplateParameters(D->getTemplateParameters());
1609}
1610
Richard Smithd25789a2013-09-18 01:36:02 +00001611void ASTDumper::VisitVarTemplateSpecializationDecl(
1612 const VarTemplateSpecializationDecl *D) {
1613 dumpTemplateArgumentList(D->getTemplateArgs());
1614 VisitVarDecl(D);
1615}
1616
1617void ASTDumper::VisitVarTemplatePartialSpecializationDecl(
1618 const VarTemplatePartialSpecializationDecl *D) {
1619 dumpTemplateParameters(D->getTemplateParameters());
1620 VisitVarTemplateSpecializationDecl(D);
1621}
1622
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001623void ASTDumper::VisitTemplateTypeParmDecl(const TemplateTypeParmDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001624 if (D->wasDeclaredWithTypename())
1625 OS << " typename";
1626 else
1627 OS << " class";
Richard Smith1832a022017-02-21 02:04:03 +00001628 OS << " depth " << D->getDepth() << " index " << D->getIndex();
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001629 if (D->isParameterPack())
1630 OS << " ...";
1631 dumpName(D);
Richard Smithf7514452014-10-30 21:02:37 +00001632 if (D->hasDefaultArgument())
Richard Smithecf74ff2014-03-23 20:50:39 +00001633 dumpTemplateArgument(D->getDefaultArgument());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001634}
1635
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001636void ASTDumper::VisitNonTypeTemplateParmDecl(const NonTypeTemplateParmDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001637 dumpType(D->getType());
Richard Smith1832a022017-02-21 02:04:03 +00001638 OS << " depth " << D->getDepth() << " index " << D->getIndex();
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001639 if (D->isParameterPack())
1640 OS << " ...";
1641 dumpName(D);
Richard Smithf7514452014-10-30 21:02:37 +00001642 if (D->hasDefaultArgument())
Richard Smithecf74ff2014-03-23 20:50:39 +00001643 dumpTemplateArgument(D->getDefaultArgument());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001644}
1645
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001646void ASTDumper::VisitTemplateTemplateParmDecl(
1647 const TemplateTemplateParmDecl *D) {
Richard Smith1832a022017-02-21 02:04:03 +00001648 OS << " depth " << D->getDepth() << " index " << D->getIndex();
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001649 if (D->isParameterPack())
1650 OS << " ...";
1651 dumpName(D);
1652 dumpTemplateParameters(D->getTemplateParameters());
Richard Smithf7514452014-10-30 21:02:37 +00001653 if (D->hasDefaultArgument())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001654 dumpTemplateArgumentLoc(D->getDefaultArgument());
1655}
1656
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001657void ASTDumper::VisitUsingDecl(const UsingDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001658 OS << ' ';
Dawn Perchikddd03bf2015-12-05 22:37:55 +00001659 if (D->getQualifier())
1660 D->getQualifier()->print(OS, D->getASTContext().getPrintingPolicy());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001661 OS << D->getNameAsString();
1662}
1663
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001664void ASTDumper::VisitUnresolvedUsingTypenameDecl(
1665 const UnresolvedUsingTypenameDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001666 OS << ' ';
Dawn Perchikddd03bf2015-12-05 22:37:55 +00001667 if (D->getQualifier())
1668 D->getQualifier()->print(OS, D->getASTContext().getPrintingPolicy());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001669 OS << D->getNameAsString();
1670}
1671
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001672void ASTDumper::VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001673 OS << ' ';
Dawn Perchikddd03bf2015-12-05 22:37:55 +00001674 if (D->getQualifier())
1675 D->getQualifier()->print(OS, D->getASTContext().getPrintingPolicy());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001676 OS << D->getNameAsString();
1677 dumpType(D->getType());
1678}
1679
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001680void ASTDumper::VisitUsingShadowDecl(const UsingShadowDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001681 OS << ' ';
1682 dumpBareDeclRef(D->getTargetDecl());
Richard Smithba3a4f92016-01-12 21:59:26 +00001683 if (auto *TD = dyn_cast<TypeDecl>(D->getUnderlyingDecl()))
1684 dumpTypeAsChild(TD->getTypeForDecl());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001685}
1686
Richard Smith5179eb72016-06-28 19:03:57 +00001687void ASTDumper::VisitConstructorUsingShadowDecl(
1688 const ConstructorUsingShadowDecl *D) {
1689 if (D->constructsVirtualBase())
1690 OS << " virtual";
1691
1692 dumpChild([=] {
1693 OS << "target ";
1694 dumpBareDeclRef(D->getTargetDecl());
1695 });
1696
1697 dumpChild([=] {
1698 OS << "nominated ";
1699 dumpBareDeclRef(D->getNominatedBaseClass());
1700 OS << ' ';
1701 dumpBareDeclRef(D->getNominatedBaseClassShadowDecl());
1702 });
1703
1704 dumpChild([=] {
1705 OS << "constructed ";
1706 dumpBareDeclRef(D->getConstructedBaseClass());
1707 OS << ' ';
1708 dumpBareDeclRef(D->getConstructedBaseClassShadowDecl());
1709 });
1710}
1711
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001712void ASTDumper::VisitLinkageSpecDecl(const LinkageSpecDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001713 switch (D->getLanguage()) {
1714 case LinkageSpecDecl::lang_c: OS << " C"; break;
1715 case LinkageSpecDecl::lang_cxx: OS << " C++"; break;
1716 }
1717}
1718
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001719void ASTDumper::VisitAccessSpecDecl(const AccessSpecDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001720 OS << ' ';
1721 dumpAccessSpecifier(D->getAccess());
1722}
1723
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001724void ASTDumper::VisitFriendDecl(const FriendDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001725 if (TypeSourceInfo *T = D->getFriendType())
1726 dumpType(T->getType());
1727 else
1728 dumpDecl(D->getFriendDecl());
1729}
1730
1731//===----------------------------------------------------------------------===//
1732// Obj-C Declarations
1733//===----------------------------------------------------------------------===//
1734
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001735void ASTDumper::VisitObjCIvarDecl(const ObjCIvarDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001736 dumpName(D);
1737 dumpType(D->getType());
1738 if (D->getSynthesize())
1739 OS << " synthesize";
1740
1741 switch (D->getAccessControl()) {
1742 case ObjCIvarDecl::None:
1743 OS << " none";
1744 break;
1745 case ObjCIvarDecl::Private:
1746 OS << " private";
1747 break;
1748 case ObjCIvarDecl::Protected:
1749 OS << " protected";
1750 break;
1751 case ObjCIvarDecl::Public:
1752 OS << " public";
1753 break;
1754 case ObjCIvarDecl::Package:
1755 OS << " package";
1756 break;
1757 }
1758}
1759
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001760void ASTDumper::VisitObjCMethodDecl(const ObjCMethodDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001761 if (D->isInstanceMethod())
1762 OS << " -";
1763 else
1764 OS << " +";
1765 dumpName(D);
Alp Toker314cc812014-01-25 16:55:45 +00001766 dumpType(D->getReturnType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001767
Richard Trieude5cc7d2013-01-31 01:44:26 +00001768 if (D->isThisDeclarationADefinition()) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001769 dumpDeclContext(D);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001770 } else {
David Majnemera3debed2016-06-24 05:33:44 +00001771 for (const ParmVarDecl *Parameter : D->parameters())
1772 dumpDecl(Parameter);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001773 }
1774
Richard Smithf7514452014-10-30 21:02:37 +00001775 if (D->isVariadic())
1776 dumpChild([=] { OS << "..."; });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001777
Richard Smithf7514452014-10-30 21:02:37 +00001778 if (D->hasBody())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001779 dumpStmt(D->getBody());
1780}
1781
Douglas Gregor85f3f952015-07-07 03:57:15 +00001782void ASTDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) {
1783 dumpName(D);
Douglas Gregor1ac1b632015-07-07 03:58:54 +00001784 switch (D->getVariance()) {
1785 case ObjCTypeParamVariance::Invariant:
1786 break;
1787
1788 case ObjCTypeParamVariance::Covariant:
1789 OS << " covariant";
1790 break;
1791
1792 case ObjCTypeParamVariance::Contravariant:
1793 OS << " contravariant";
1794 break;
1795 }
1796
Douglas Gregor85f3f952015-07-07 03:57:15 +00001797 if (D->hasExplicitBound())
1798 OS << " bounded";
1799 dumpType(D->getUnderlyingType());
1800}
1801
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001802void ASTDumper::VisitObjCCategoryDecl(const ObjCCategoryDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001803 dumpName(D);
1804 dumpDeclRef(D->getClassInterface());
Douglas Gregor85f3f952015-07-07 03:57:15 +00001805 dumpObjCTypeParamList(D->getTypeParamList());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001806 dumpDeclRef(D->getImplementation());
1807 for (ObjCCategoryDecl::protocol_iterator I = D->protocol_begin(),
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001808 E = D->protocol_end();
Richard Smithf7514452014-10-30 21:02:37 +00001809 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001810 dumpDeclRef(*I);
1811}
1812
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001813void ASTDumper::VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001814 dumpName(D);
1815 dumpDeclRef(D->getClassInterface());
1816 dumpDeclRef(D->getCategoryDecl());
1817}
1818
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001819void ASTDumper::VisitObjCProtocolDecl(const ObjCProtocolDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001820 dumpName(D);
Richard Smithdcc2c452014-03-17 23:00:06 +00001821
Richard Smith7fcb35f2014-03-18 02:37:59 +00001822 for (auto *Child : D->protocols())
Richard Smithf7514452014-10-30 21:02:37 +00001823 dumpDeclRef(Child);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001824}
1825
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001826void ASTDumper::VisitObjCInterfaceDecl(const ObjCInterfaceDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001827 dumpName(D);
Douglas Gregor85f3f952015-07-07 03:57:15 +00001828 dumpObjCTypeParamList(D->getTypeParamListAsWritten());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001829 dumpDeclRef(D->getSuperClass(), "super");
Richard Smithdcc2c452014-03-17 23:00:06 +00001830
Richard Smithf7514452014-10-30 21:02:37 +00001831 dumpDeclRef(D->getImplementation());
Richard Smith7fcb35f2014-03-18 02:37:59 +00001832 for (auto *Child : D->protocols())
Richard Smithf7514452014-10-30 21:02:37 +00001833 dumpDeclRef(Child);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001834}
1835
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001836void ASTDumper::VisitObjCImplementationDecl(const ObjCImplementationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001837 dumpName(D);
1838 dumpDeclRef(D->getSuperClass(), "super");
1839 dumpDeclRef(D->getClassInterface());
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001840 for (ObjCImplementationDecl::init_const_iterator I = D->init_begin(),
1841 E = D->init_end();
Richard Smithf7514452014-10-30 21:02:37 +00001842 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001843 dumpCXXCtorInitializer(*I);
1844}
1845
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001846void ASTDumper::VisitObjCCompatibleAliasDecl(const ObjCCompatibleAliasDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001847 dumpName(D);
1848 dumpDeclRef(D->getClassInterface());
1849}
1850
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001851void ASTDumper::VisitObjCPropertyDecl(const ObjCPropertyDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001852 dumpName(D);
1853 dumpType(D->getType());
1854
1855 if (D->getPropertyImplementation() == ObjCPropertyDecl::Required)
1856 OS << " required";
1857 else if (D->getPropertyImplementation() == ObjCPropertyDecl::Optional)
1858 OS << " optional";
1859
1860 ObjCPropertyDecl::PropertyAttributeKind Attrs = D->getPropertyAttributes();
1861 if (Attrs != ObjCPropertyDecl::OBJC_PR_noattr) {
1862 if (Attrs & ObjCPropertyDecl::OBJC_PR_readonly)
1863 OS << " readonly";
1864 if (Attrs & ObjCPropertyDecl::OBJC_PR_assign)
1865 OS << " assign";
1866 if (Attrs & ObjCPropertyDecl::OBJC_PR_readwrite)
1867 OS << " readwrite";
1868 if (Attrs & ObjCPropertyDecl::OBJC_PR_retain)
1869 OS << " retain";
1870 if (Attrs & ObjCPropertyDecl::OBJC_PR_copy)
1871 OS << " copy";
1872 if (Attrs & ObjCPropertyDecl::OBJC_PR_nonatomic)
1873 OS << " nonatomic";
1874 if (Attrs & ObjCPropertyDecl::OBJC_PR_atomic)
1875 OS << " atomic";
1876 if (Attrs & ObjCPropertyDecl::OBJC_PR_weak)
1877 OS << " weak";
1878 if (Attrs & ObjCPropertyDecl::OBJC_PR_strong)
1879 OS << " strong";
1880 if (Attrs & ObjCPropertyDecl::OBJC_PR_unsafe_unretained)
1881 OS << " unsafe_unretained";
Manman Ren387ff7f2016-01-26 18:52:43 +00001882 if (Attrs & ObjCPropertyDecl::OBJC_PR_class)
1883 OS << " class";
Richard Smithf7514452014-10-30 21:02:37 +00001884 if (Attrs & ObjCPropertyDecl::OBJC_PR_getter)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001885 dumpDeclRef(D->getGetterMethodDecl(), "getter");
Richard Smithf7514452014-10-30 21:02:37 +00001886 if (Attrs & ObjCPropertyDecl::OBJC_PR_setter)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001887 dumpDeclRef(D->getSetterMethodDecl(), "setter");
1888 }
1889}
1890
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001891void ASTDumper::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001892 dumpName(D->getPropertyDecl());
1893 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
1894 OS << " synthesize";
1895 else
1896 OS << " dynamic";
1897 dumpDeclRef(D->getPropertyDecl());
1898 dumpDeclRef(D->getPropertyIvarDecl());
1899}
1900
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001901void ASTDumper::VisitBlockDecl(const BlockDecl *D) {
David Majnemer59f77922016-06-24 04:05:48 +00001902 for (auto I : D->parameters())
Aaron Ballmanb2b8b1d2014-03-07 16:09:59 +00001903 dumpDecl(I);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001904
Richard Smithf7514452014-10-30 21:02:37 +00001905 if (D->isVariadic())
1906 dumpChild([=]{ OS << "..."; });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001907
Richard Smithf7514452014-10-30 21:02:37 +00001908 if (D->capturesCXXThis())
1909 dumpChild([=]{ OS << "capture this"; });
1910
Aaron Ballman9371dd22014-03-14 18:34:04 +00001911 for (const auto &I : D->captures()) {
Richard Smithf7514452014-10-30 21:02:37 +00001912 dumpChild([=] {
1913 OS << "capture";
1914 if (I.isByRef())
1915 OS << " byref";
1916 if (I.isNested())
1917 OS << " nested";
1918 if (I.getVariable()) {
1919 OS << ' ';
1920 dumpBareDeclRef(I.getVariable());
1921 }
1922 if (I.hasCopyExpr())
1923 dumpStmt(I.getCopyExpr());
1924 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001925 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001926 dumpStmt(D->getBody());
Chris Lattnercbe4f772007-08-08 22:51:59 +00001927}
1928
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001929//===----------------------------------------------------------------------===//
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001930// Stmt dumping methods.
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001931//===----------------------------------------------------------------------===//
1932
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001933void ASTDumper::dumpStmt(const Stmt *S) {
Richard Smithf7514452014-10-30 21:02:37 +00001934 dumpChild([=] {
1935 if (!S) {
1936 ColorScope Color(*this, NullColor);
1937 OS << "<<<NULL>>>";
1938 return;
1939 }
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001940
Richard Smithf7514452014-10-30 21:02:37 +00001941 if (const DeclStmt *DS = dyn_cast<DeclStmt>(S)) {
1942 VisitDeclStmt(DS);
1943 return;
1944 }
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001945
Richard Smithf7514452014-10-30 21:02:37 +00001946 ConstStmtVisitor<ASTDumper>::Visit(S);
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001947
Benjamin Kramer642f1732015-07-02 21:03:14 +00001948 for (const Stmt *SubStmt : S->children())
1949 dumpStmt(SubStmt);
Richard Smithf7514452014-10-30 21:02:37 +00001950 });
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001951}
1952
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001953void ASTDumper::VisitStmt(const Stmt *Node) {
Richard Trieud215b8d2013-01-26 01:31:20 +00001954 {
1955 ColorScope Color(*this, StmtColor);
1956 OS << Node->getStmtClassName();
1957 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001958 dumpPointer(Node);
1959 dumpSourceRange(Node->getSourceRange());
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001960}
1961
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001962void ASTDumper::VisitDeclStmt(const DeclStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001963 VisitStmt(Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001964 for (DeclStmt::const_decl_iterator I = Node->decl_begin(),
1965 E = Node->decl_end();
Richard Smithf7514452014-10-30 21:02:37 +00001966 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001967 dumpDecl(*I);
Ted Kremenek433a4922007-12-12 06:59:42 +00001968}
1969
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001970void ASTDumper::VisitAttributedStmt(const AttributedStmt *Node) {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001971 VisitStmt(Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001972 for (ArrayRef<const Attr *>::iterator I = Node->getAttrs().begin(),
1973 E = Node->getAttrs().end();
Richard Smithf7514452014-10-30 21:02:37 +00001974 I != E; ++I)
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001975 dumpAttr(*I);
1976}
1977
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001978void ASTDumper::VisitLabelStmt(const LabelStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001979 VisitStmt(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00001980 OS << " '" << Node->getName() << "'";
Chris Lattnercbe4f772007-08-08 22:51:59 +00001981}
1982
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001983void ASTDumper::VisitGotoStmt(const GotoStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001984 VisitStmt(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001985 OS << " '" << Node->getLabel()->getName() << "'";
1986 dumpPointer(Node->getLabel());
Chris Lattnercbe4f772007-08-08 22:51:59 +00001987}
1988
Pavel Labath1ef83422013-09-04 14:35:00 +00001989void ASTDumper::VisitCXXCatchStmt(const CXXCatchStmt *Node) {
1990 VisitStmt(Node);
1991 dumpDecl(Node->getExceptionDecl());
1992}
1993
Alexey Bataev958b9e72016-03-31 09:30:50 +00001994void ASTDumper::VisitCapturedStmt(const CapturedStmt *Node) {
1995 VisitStmt(Node);
1996 dumpDecl(Node->getCapturedDecl());
1997}
1998
1999//===----------------------------------------------------------------------===//
2000// OpenMP dumping methods.
2001//===----------------------------------------------------------------------===//
2002
2003void ASTDumper::VisitOMPExecutableDirective(
2004 const OMPExecutableDirective *Node) {
2005 VisitStmt(Node);
2006 for (auto *C : Node->clauses()) {
2007 dumpChild([=] {
2008 if (!C) {
2009 ColorScope Color(*this, NullColor);
2010 OS << "<<<NULL>>> OMPClause";
2011 return;
2012 }
2013 {
2014 ColorScope Color(*this, AttrColor);
2015 StringRef ClauseName(getOpenMPClauseName(C->getClauseKind()));
2016 OS << "OMP" << ClauseName.substr(/*Start=*/0, /*N=*/1).upper()
2017 << ClauseName.drop_front() << "Clause";
2018 }
2019 dumpPointer(C);
2020 dumpSourceRange(SourceRange(C->getLocStart(), C->getLocEnd()));
2021 if (C->isImplicit())
2022 OS << " <implicit>";
2023 for (auto *S : C->children())
2024 dumpStmt(S);
2025 });
2026 }
2027}
2028
Chris Lattnercbe4f772007-08-08 22:51:59 +00002029//===----------------------------------------------------------------------===//
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002030// Expr dumping methods.
Chris Lattnercbe4f772007-08-08 22:51:59 +00002031//===----------------------------------------------------------------------===//
2032
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002033void ASTDumper::VisitExpr(const Expr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002034 VisitStmt(Node);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002035 dumpType(Node->getType());
2036
Richard Trieud215b8d2013-01-26 01:31:20 +00002037 {
2038 ColorScope Color(*this, ValueKindColor);
2039 switch (Node->getValueKind()) {
2040 case VK_RValue:
2041 break;
2042 case VK_LValue:
2043 OS << " lvalue";
2044 break;
2045 case VK_XValue:
2046 OS << " xvalue";
2047 break;
2048 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002049 }
2050
Richard Trieud215b8d2013-01-26 01:31:20 +00002051 {
2052 ColorScope Color(*this, ObjectKindColor);
2053 switch (Node->getObjectKind()) {
2054 case OK_Ordinary:
2055 break;
2056 case OK_BitField:
2057 OS << " bitfield";
2058 break;
2059 case OK_ObjCProperty:
2060 OS << " objcproperty";
2061 break;
2062 case OK_ObjCSubscript:
2063 OS << " objcsubscript";
2064 break;
2065 case OK_VectorComponent:
2066 OS << " vectorcomponent";
2067 break;
2068 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002069 }
Chris Lattnercbe4f772007-08-08 22:51:59 +00002070}
2071
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002072static void dumpBasePath(raw_ostream &OS, const CastExpr *Node) {
John McCallcf142162010-08-07 06:22:56 +00002073 if (Node->path_empty())
Anders Carlssona70cff62010-04-24 19:06:50 +00002074 return;
2075
2076 OS << " (";
2077 bool First = true;
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002078 for (CastExpr::path_const_iterator I = Node->path_begin(),
2079 E = Node->path_end();
2080 I != E; ++I) {
Anders Carlssona70cff62010-04-24 19:06:50 +00002081 const CXXBaseSpecifier *Base = *I;
2082 if (!First)
2083 OS << " -> ";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002084
Anders Carlssona70cff62010-04-24 19:06:50 +00002085 const CXXRecordDecl *RD =
2086 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002087
Anders Carlssona70cff62010-04-24 19:06:50 +00002088 if (Base->isVirtual())
2089 OS << "virtual ";
2090 OS << RD->getName();
2091 First = false;
2092 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002093
Anders Carlssona70cff62010-04-24 19:06:50 +00002094 OS << ')';
2095}
2096
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002097void ASTDumper::VisitCastExpr(const CastExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002098 VisitExpr(Node);
Richard Trieud215b8d2013-01-26 01:31:20 +00002099 OS << " <";
2100 {
2101 ColorScope Color(*this, CastColor);
2102 OS << Node->getCastKindName();
2103 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002104 dumpBasePath(OS, Node);
Anders Carlssona70cff62010-04-24 19:06:50 +00002105 OS << ">";
Anders Carlssond7923c62009-08-22 23:33:40 +00002106}
2107
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002108void ASTDumper::VisitDeclRefExpr(const DeclRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002109 VisitExpr(Node);
Ted Kremenek5f64ca82007-09-10 17:32:55 +00002110
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002111 OS << " ";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002112 dumpBareDeclRef(Node->getDecl());
Chandler Carruth8d26bb02011-05-01 23:48:14 +00002113 if (Node->getDecl() != Node->getFoundDecl()) {
2114 OS << " (";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002115 dumpBareDeclRef(Node->getFoundDecl());
Chandler Carruth8d26bb02011-05-01 23:48:14 +00002116 OS << ")";
2117 }
John McCall351762c2011-02-07 10:33:21 +00002118}
2119
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002120void ASTDumper::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002121 VisitExpr(Node);
John McCall76d09942009-12-11 21:50:11 +00002122 OS << " (";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002123 if (!Node->requiresADL())
2124 OS << "no ";
Benjamin Kramerb11416d2010-04-17 09:33:03 +00002125 OS << "ADL) = '" << Node->getName() << '\'';
John McCall76d09942009-12-11 21:50:11 +00002126
2127 UnresolvedLookupExpr::decls_iterator
2128 I = Node->decls_begin(), E = Node->decls_end();
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002129 if (I == E)
2130 OS << " empty";
John McCall76d09942009-12-11 21:50:11 +00002131 for (; I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002132 dumpPointer(*I);
John McCall76d09942009-12-11 21:50:11 +00002133}
2134
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002135void ASTDumper::VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002136 VisitExpr(Node);
Steve Naroff5d5efca2008-03-12 13:19:12 +00002137
Richard Trieud215b8d2013-01-26 01:31:20 +00002138 {
2139 ColorScope Color(*this, DeclKindNameColor);
2140 OS << " " << Node->getDecl()->getDeclKindName() << "Decl";
2141 }
2142 OS << "='" << *Node->getDecl() << "'";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002143 dumpPointer(Node->getDecl());
Steve Naroffb3424a92008-05-23 22:01:24 +00002144 if (Node->isFreeIvar())
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002145 OS << " isFreeIvar";
Steve Naroff5d5efca2008-03-12 13:19:12 +00002146}
2147
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002148void ASTDumper::VisitPredefinedExpr(const PredefinedExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002149 VisitExpr(Node);
Alexey Bataevec474782014-10-09 08:45:04 +00002150 OS << " " << PredefinedExpr::getIdentTypeName(Node->getIdentType());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002151}
2152
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002153void ASTDumper::VisitCharacterLiteral(const CharacterLiteral *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002154 VisitExpr(Node);
Richard Trieud215b8d2013-01-26 01:31:20 +00002155 ColorScope Color(*this, ValueColor);
Richard Trieu364ee422011-11-03 23:56:23 +00002156 OS << " " << Node->getValue();
Chris Lattnercbe4f772007-08-08 22:51:59 +00002157}
2158
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002159void ASTDumper::VisitIntegerLiteral(const IntegerLiteral *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002160 VisitExpr(Node);
Chris Lattnercbe4f772007-08-08 22:51:59 +00002161
2162 bool isSigned = Node->getType()->isSignedIntegerType();
Richard Trieud215b8d2013-01-26 01:31:20 +00002163 ColorScope Color(*this, ValueColor);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002164 OS << " " << Node->getValue().toString(10, isSigned);
Chris Lattnercbe4f772007-08-08 22:51:59 +00002165}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002166
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002167void ASTDumper::VisitFloatingLiteral(const FloatingLiteral *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002168 VisitExpr(Node);
Richard Trieud215b8d2013-01-26 01:31:20 +00002169 ColorScope Color(*this, ValueColor);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002170 OS << " " << Node->getValueAsApproximateDouble();
Chris Lattnercbe4f772007-08-08 22:51:59 +00002171}
Chris Lattner1c20a172007-08-26 03:42:43 +00002172
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002173void ASTDumper::VisitStringLiteral(const StringLiteral *Str) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002174 VisitExpr(Str);
Richard Trieud215b8d2013-01-26 01:31:20 +00002175 ColorScope Color(*this, ValueColor);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002176 OS << " ";
Richard Trieudc355912012-06-13 20:25:24 +00002177 Str->outputString(OS);
Chris Lattnercbe4f772007-08-08 22:51:59 +00002178}
Chris Lattner84ca3762007-08-30 01:00:35 +00002179
Richard Smithf0514962014-06-03 08:24:28 +00002180void ASTDumper::VisitInitListExpr(const InitListExpr *ILE) {
2181 VisitExpr(ILE);
2182 if (auto *Filler = ILE->getArrayFiller()) {
Richard Smithf7514452014-10-30 21:02:37 +00002183 dumpChild([=] {
2184 OS << "array filler";
2185 dumpStmt(Filler);
2186 });
Richard Smithf0514962014-06-03 08:24:28 +00002187 }
2188 if (auto *Field = ILE->getInitializedFieldInUnion()) {
2189 OS << " field ";
2190 dumpBareDeclRef(Field);
2191 }
2192}
2193
Richard Smith410306b2016-12-12 02:53:20 +00002194void ASTDumper::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
2195 VisitExpr(E);
2196}
2197
2198void ASTDumper::VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
2199 VisitExpr(E);
2200}
2201
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002202void ASTDumper::VisitUnaryOperator(const UnaryOperator *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002203 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002204 OS << " " << (Node->isPostfix() ? "postfix" : "prefix")
2205 << " '" << UnaryOperator::getOpcodeStr(Node->getOpcode()) << "'";
Chris Lattnercbe4f772007-08-08 22:51:59 +00002206}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002207
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002208void ASTDumper::VisitUnaryExprOrTypeTraitExpr(
2209 const UnaryExprOrTypeTraitExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002210 VisitExpr(Node);
Peter Collingbournee190dee2011-03-11 19:24:49 +00002211 switch(Node->getKind()) {
2212 case UETT_SizeOf:
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002213 OS << " sizeof";
Peter Collingbournee190dee2011-03-11 19:24:49 +00002214 break;
2215 case UETT_AlignOf:
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002216 OS << " alignof";
Peter Collingbournee190dee2011-03-11 19:24:49 +00002217 break;
2218 case UETT_VecStep:
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002219 OS << " vec_step";
Peter Collingbournee190dee2011-03-11 19:24:49 +00002220 break;
Alexey Bataev00396512015-07-02 03:40:19 +00002221 case UETT_OpenMPRequiredSimdAlign:
2222 OS << " __builtin_omp_required_simd_align";
2223 break;
Peter Collingbournee190dee2011-03-11 19:24:49 +00002224 }
Sebastian Redl6f282892008-11-11 17:56:53 +00002225 if (Node->isArgumentType())
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002226 dumpType(Node->getArgumentType());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002227}
Chris Lattnerdb3b3ff2007-08-09 17:35:30 +00002228
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002229void ASTDumper::VisitMemberExpr(const MemberExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002230 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002231 OS << " " << (Node->isArrow() ? "->" : ".") << *Node->getMemberDecl();
2232 dumpPointer(Node->getMemberDecl());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002233}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002234
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002235void ASTDumper::VisitExtVectorElementExpr(const ExtVectorElementExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002236 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002237 OS << " " << Node->getAccessor().getNameStart();
Chris Lattnercbe4f772007-08-08 22:51:59 +00002238}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002239
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002240void ASTDumper::VisitBinaryOperator(const BinaryOperator *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002241 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002242 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) << "'";
Chris Lattner86928112007-08-25 02:00:02 +00002243}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002244
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002245void ASTDumper::VisitCompoundAssignOperator(
2246 const CompoundAssignOperator *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002247 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002248 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode())
2249 << "' ComputeLHSTy=";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002250 dumpBareType(Node->getComputationLHSType());
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002251 OS << " ComputeResultTy=";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002252 dumpBareType(Node->getComputationResultType());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002253}
Chris Lattnercbe4f772007-08-08 22:51:59 +00002254
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002255void ASTDumper::VisitBlockExpr(const BlockExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002256 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002257 dumpDecl(Node->getBlockDecl());
John McCall351762c2011-02-07 10:33:21 +00002258}
2259
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002260void ASTDumper::VisitOpaqueValueExpr(const OpaqueValueExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002261 VisitExpr(Node);
John McCallfe96e0b2011-11-06 09:01:30 +00002262
Richard Smithf7514452014-10-30 21:02:37 +00002263 if (Expr *Source = Node->getSourceExpr())
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002264 dumpStmt(Source);
John McCallfe96e0b2011-11-06 09:01:30 +00002265}
2266
Chris Lattnercbe4f772007-08-08 22:51:59 +00002267// GNU extensions.
2268
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002269void ASTDumper::VisitAddrLabelExpr(const AddrLabelExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002270 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002271 OS << " " << Node->getLabel()->getName();
2272 dumpPointer(Node->getLabel());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002273}
2274
Chris Lattner8f184b12007-08-09 18:03:18 +00002275//===----------------------------------------------------------------------===//
2276// C++ Expressions
2277//===----------------------------------------------------------------------===//
Chris Lattnercbe4f772007-08-08 22:51:59 +00002278
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002279void ASTDumper::VisitCXXNamedCastExpr(const CXXNamedCastExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002280 VisitExpr(Node);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002281 OS << " " << Node->getCastName()
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002282 << "<" << Node->getTypeAsWritten().getAsString() << ">"
Anders Carlssona70cff62010-04-24 19:06:50 +00002283 << " <" << Node->getCastKindName();
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002284 dumpBasePath(OS, Node);
Anders Carlssona70cff62010-04-24 19:06:50 +00002285 OS << ">";
Chris Lattnercbe4f772007-08-08 22:51:59 +00002286}
2287
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002288void ASTDumper::VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002289 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002290 OS << " " << (Node->getValue() ? "true" : "false");
Chris Lattnercbe4f772007-08-08 22:51:59 +00002291}
2292
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002293void ASTDumper::VisitCXXThisExpr(const CXXThisExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002294 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002295 OS << " this";
Douglas Gregor8ea1f532008-11-04 14:56:14 +00002296}
2297
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002298void ASTDumper::VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002299 VisitExpr(Node);
Eli Friedman29538892011-09-02 17:38:59 +00002300 OS << " functional cast to " << Node->getTypeAsWritten().getAsString()
2301 << " <" << Node->getCastKindName() << ">";
Douglas Gregore200adc2008-10-27 19:41:14 +00002302}
2303
Richard Smith39eca9b2017-08-23 22:12:08 +00002304void ASTDumper::VisitCXXUnresolvedConstructExpr(
2305 const CXXUnresolvedConstructExpr *Node) {
2306 VisitExpr(Node);
2307 dumpType(Node->getTypeAsWritten());
2308 if (Node->isListInitialization())
2309 OS << " list";
2310}
2311
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002312void ASTDumper::VisitCXXConstructExpr(const CXXConstructExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002313 VisitExpr(Node);
John McCalleba90cd2010-02-02 19:03:45 +00002314 CXXConstructorDecl *Ctor = Node->getConstructor();
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002315 dumpType(Ctor->getType());
Anders Carlsson073846832009-08-12 00:21:52 +00002316 if (Node->isElidable())
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002317 OS << " elidable";
Richard Smith39eca9b2017-08-23 22:12:08 +00002318 if (Node->isListInitialization())
2319 OS << " list";
2320 if (Node->isStdInitListInitialization())
2321 OS << " std::initializer_list";
John McCall85370042010-08-07 06:38:55 +00002322 if (Node->requiresZeroInitialization())
2323 OS << " zeroing";
Anders Carlsson073846832009-08-12 00:21:52 +00002324}
2325
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002326void ASTDumper::VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002327 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002328 OS << " ";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002329 dumpCXXTemporary(Node->getTemporary());
Anders Carlsson073846832009-08-12 00:21:52 +00002330}
2331
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002332void ASTDumper::VisitCXXNewExpr(const CXXNewExpr *Node) {
2333 VisitExpr(Node);
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002334 if (Node->isGlobalNew())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002335 OS << " global";
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002336 if (Node->isArray())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002337 OS << " array";
2338 if (Node->getOperatorNew()) {
2339 OS << ' ';
2340 dumpBareDeclRef(Node->getOperatorNew());
2341 }
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002342 // We could dump the deallocation function used in case of error, but it's
2343 // usually not that interesting.
2344}
2345
2346void ASTDumper::VisitCXXDeleteExpr(const CXXDeleteExpr *Node) {
2347 VisitExpr(Node);
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002348 if (Node->isGlobalDelete())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002349 OS << " global";
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002350 if (Node->isArrayForm())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002351 OS << " array";
2352 if (Node->getOperatorDelete()) {
2353 OS << ' ';
2354 dumpBareDeclRef(Node->getOperatorDelete());
2355 }
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002356}
2357
Richard Smithe6c01442013-06-05 00:46:14 +00002358void
2359ASTDumper::VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Node) {
2360 VisitExpr(Node);
2361 if (const ValueDecl *VD = Node->getExtendingDecl()) {
2362 OS << " extended by ";
2363 dumpBareDeclRef(VD);
2364 }
2365}
2366
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002367void ASTDumper::VisitExprWithCleanups(const ExprWithCleanups *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002368 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002369 for (unsigned i = 0, e = Node->getNumObjects(); i != e; ++i)
2370 dumpDeclRef(Node->getObject(i), "cleanup");
Anders Carlsson073846832009-08-12 00:21:52 +00002371}
2372
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002373void ASTDumper::dumpCXXTemporary(const CXXTemporary *Temporary) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002374 OS << "(CXXTemporary";
2375 dumpPointer(Temporary);
2376 OS << ")";
Anders Carlsson073846832009-08-12 00:21:52 +00002377}
2378
Serge Pavlov6b926032015-02-16 19:58:41 +00002379void ASTDumper::VisitSizeOfPackExpr(const SizeOfPackExpr *Node) {
2380 VisitExpr(Node);
2381 dumpPointer(Node->getPack());
2382 dumpName(Node->getPack());
Richard Smithd784e682015-09-23 21:41:42 +00002383 if (Node->isPartiallySubstituted())
2384 for (const auto &A : Node->getPartialArguments())
2385 dumpTemplateArgument(A);
Serge Pavlov6b926032015-02-16 19:58:41 +00002386}
2387
Alex Lorenzddbe0f52016-11-09 14:02:18 +00002388void ASTDumper::VisitCXXDependentScopeMemberExpr(
2389 const CXXDependentScopeMemberExpr *Node) {
2390 VisitExpr(Node);
2391 OS << " " << (Node->isArrow() ? "->" : ".") << Node->getMember();
2392}
Serge Pavlov6b926032015-02-16 19:58:41 +00002393
Anders Carlsson76f4a902007-08-21 17:43:55 +00002394//===----------------------------------------------------------------------===//
2395// Obj-C Expressions
2396//===----------------------------------------------------------------------===//
2397
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002398void ASTDumper::VisitObjCMessageExpr(const ObjCMessageExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002399 VisitExpr(Node);
Aaron Ballmanb190f972014-01-03 17:59:55 +00002400 OS << " selector=";
2401 Node->getSelector().print(OS);
Douglas Gregor9a129192010-04-21 00:45:42 +00002402 switch (Node->getReceiverKind()) {
2403 case ObjCMessageExpr::Instance:
2404 break;
2405
2406 case ObjCMessageExpr::Class:
2407 OS << " class=";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002408 dumpBareType(Node->getClassReceiver());
Douglas Gregor9a129192010-04-21 00:45:42 +00002409 break;
2410
2411 case ObjCMessageExpr::SuperInstance:
2412 OS << " super (instance)";
2413 break;
2414
2415 case ObjCMessageExpr::SuperClass:
2416 OS << " super (class)";
2417 break;
2418 }
Ted Kremenek36748da2008-02-29 22:04:05 +00002419}
2420
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002421void ASTDumper::VisitObjCBoxedExpr(const ObjCBoxedExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002422 VisitExpr(Node);
Richard Trieu4b259c82016-06-09 22:03:04 +00002423 if (auto *BoxingMethod = Node->getBoxingMethod()) {
2424 OS << " selector=";
2425 BoxingMethod->getSelector().print(OS);
2426 }
Argyrios Kyrtzidis9dd40892012-05-10 20:02:31 +00002427}
2428
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002429void ASTDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002430 VisitStmt(Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002431 if (const VarDecl *CatchParam = Node->getCatchParamDecl())
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002432 dumpDecl(CatchParam);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002433 else
Douglas Gregor96c79492010-04-23 22:50:49 +00002434 OS << " catch all";
Douglas Gregor96c79492010-04-23 22:50:49 +00002435}
2436
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002437void ASTDumper::VisitObjCEncodeExpr(const ObjCEncodeExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002438 VisitExpr(Node);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002439 dumpType(Node->getEncodedType());
Anders Carlssonc5a81eb2007-08-22 15:14:15 +00002440}
2441
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002442void ASTDumper::VisitObjCSelectorExpr(const ObjCSelectorExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002443 VisitExpr(Node);
Mike Stump11289f42009-09-09 15:08:12 +00002444
Aaron Ballmanb190f972014-01-03 17:59:55 +00002445 OS << " ";
2446 Node->getSelector().print(OS);
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00002447}
2448
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002449void ASTDumper::VisitObjCProtocolExpr(const ObjCProtocolExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002450 VisitExpr(Node);
Mike Stump11289f42009-09-09 15:08:12 +00002451
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002452 OS << ' ' << *Node->getProtocol();
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00002453}
Daniel Dunbar4b8c6db2008-08-30 05:35:15 +00002454
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002455void ASTDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002456 VisitExpr(Node);
John McCallb7bd14f2010-12-02 01:19:52 +00002457 if (Node->isImplicitProperty()) {
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00002458 OS << " Kind=MethodRef Getter=\"";
2459 if (Node->getImplicitPropertyGetter())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002460 Node->getImplicitPropertyGetter()->getSelector().print(OS);
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00002461 else
2462 OS << "(null)";
2463
2464 OS << "\" Setter=\"";
John McCallb7bd14f2010-12-02 01:19:52 +00002465 if (ObjCMethodDecl *Setter = Node->getImplicitPropertySetter())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002466 Setter->getSelector().print(OS);
John McCallb7bd14f2010-12-02 01:19:52 +00002467 else
2468 OS << "(null)";
2469 OS << "\"";
2470 } else {
Benjamin Kramerb89514a2011-10-14 18:45:37 +00002471 OS << " Kind=PropertyRef Property=\"" << *Node->getExplicitProperty() <<'"';
John McCallb7bd14f2010-12-02 01:19:52 +00002472 }
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +00002473
Fariborz Jahanian681c0752010-10-14 16:04:05 +00002474 if (Node->isSuperReceiver())
2475 OS << " super";
Argyrios Kyrtzidisab468b02012-03-30 00:19:18 +00002476
2477 OS << " Messaging=";
2478 if (Node->isMessagingGetter() && Node->isMessagingSetter())
2479 OS << "Getter&Setter";
2480 else if (Node->isMessagingGetter())
2481 OS << "Getter";
2482 else if (Node->isMessagingSetter())
2483 OS << "Setter";
Douglas Gregor8ea1f532008-11-04 14:56:14 +00002484}
2485
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002486void ASTDumper::VisitObjCSubscriptRefExpr(const ObjCSubscriptRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002487 VisitExpr(Node);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002488 if (Node->isArraySubscriptRefExpr())
2489 OS << " Kind=ArraySubscript GetterForArray=\"";
2490 else
2491 OS << " Kind=DictionarySubscript GetterForDictionary=\"";
2492 if (Node->getAtIndexMethodDecl())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002493 Node->getAtIndexMethodDecl()->getSelector().print(OS);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002494 else
2495 OS << "(null)";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002496
Ted Kremeneke65b0862012-03-06 20:05:56 +00002497 if (Node->isArraySubscriptRefExpr())
2498 OS << "\" SetterForArray=\"";
2499 else
2500 OS << "\" SetterForDictionary=\"";
2501 if (Node->setAtIndexMethodDecl())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002502 Node->setAtIndexMethodDecl()->getSelector().print(OS);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002503 else
2504 OS << "(null)";
2505}
2506
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002507void ASTDumper::VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002508 VisitExpr(Node);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002509 OS << " " << (Node->getValue() ? "__objc_yes" : "__objc_no");
2510}
2511
Chris Lattnercbe4f772007-08-08 22:51:59 +00002512//===----------------------------------------------------------------------===//
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002513// Comments
2514//===----------------------------------------------------------------------===//
2515
2516const char *ASTDumper::getCommandName(unsigned CommandID) {
2517 if (Traits)
2518 return Traits->getCommandInfo(CommandID)->Name;
2519 const CommandInfo *Info = CommandTraits::getBuiltinCommandInfo(CommandID);
2520 if (Info)
2521 return Info->Name;
2522 return "<not a builtin command>";
2523}
2524
2525void ASTDumper::dumpFullComment(const FullComment *C) {
2526 if (!C)
2527 return;
2528
2529 FC = C;
2530 dumpComment(C);
Craig Topper36250ad2014-05-12 05:36:57 +00002531 FC = nullptr;
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002532}
2533
2534void ASTDumper::dumpComment(const Comment *C) {
Richard Smithf7514452014-10-30 21:02:37 +00002535 dumpChild([=] {
2536 if (!C) {
2537 ColorScope Color(*this, NullColor);
2538 OS << "<<<NULL>>>";
2539 return;
2540 }
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002541
Richard Smithf7514452014-10-30 21:02:37 +00002542 {
2543 ColorScope Color(*this, CommentColor);
2544 OS << C->getCommentKindName();
2545 }
2546 dumpPointer(C);
2547 dumpSourceRange(C->getSourceRange());
2548 ConstCommentVisitor<ASTDumper>::visit(C);
2549 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
2550 I != E; ++I)
2551 dumpComment(*I);
2552 });
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002553}
2554
2555void ASTDumper::visitTextComment(const TextComment *C) {
2556 OS << " Text=\"" << C->getText() << "\"";
2557}
2558
2559void ASTDumper::visitInlineCommandComment(const InlineCommandComment *C) {
2560 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\"";
2561 switch (C->getRenderKind()) {
2562 case InlineCommandComment::RenderNormal:
2563 OS << " RenderNormal";
2564 break;
2565 case InlineCommandComment::RenderBold:
2566 OS << " RenderBold";
2567 break;
2568 case InlineCommandComment::RenderMonospaced:
2569 OS << " RenderMonospaced";
2570 break;
2571 case InlineCommandComment::RenderEmphasized:
2572 OS << " RenderEmphasized";
2573 break;
2574 }
2575
2576 for (unsigned i = 0, e = C->getNumArgs(); i != e; ++i)
2577 OS << " Arg[" << i << "]=\"" << C->getArgText(i) << "\"";
2578}
2579
2580void ASTDumper::visitHTMLStartTagComment(const HTMLStartTagComment *C) {
2581 OS << " Name=\"" << C->getTagName() << "\"";
2582 if (C->getNumAttrs() != 0) {
2583 OS << " Attrs: ";
2584 for (unsigned i = 0, e = C->getNumAttrs(); i != e; ++i) {
2585 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i);
2586 OS << " \"" << Attr.Name << "=\"" << Attr.Value << "\"";
2587 }
2588 }
2589 if (C->isSelfClosing())
2590 OS << " SelfClosing";
2591}
2592
2593void ASTDumper::visitHTMLEndTagComment(const HTMLEndTagComment *C) {
2594 OS << " Name=\"" << C->getTagName() << "\"";
2595}
2596
2597void ASTDumper::visitBlockCommandComment(const BlockCommandComment *C) {
2598 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\"";
2599 for (unsigned i = 0, e = C->getNumArgs(); i != e; ++i)
2600 OS << " Arg[" << i << "]=\"" << C->getArgText(i) << "\"";
2601}
2602
2603void ASTDumper::visitParamCommandComment(const ParamCommandComment *C) {
2604 OS << " " << ParamCommandComment::getDirectionAsString(C->getDirection());
2605
2606 if (C->isDirectionExplicit())
2607 OS << " explicitly";
2608 else
2609 OS << " implicitly";
2610
2611 if (C->hasParamName()) {
2612 if (C->isParamIndexValid())
2613 OS << " Param=\"" << C->getParamName(FC) << "\"";
2614 else
2615 OS << " Param=\"" << C->getParamNameAsWritten() << "\"";
2616 }
2617
Dmitri Gribenkodbff5c72014-03-19 14:03:47 +00002618 if (C->isParamIndexValid() && !C->isVarArgParam())
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002619 OS << " ParamIndex=" << C->getParamIndex();
2620}
2621
2622void ASTDumper::visitTParamCommandComment(const TParamCommandComment *C) {
2623 if (C->hasParamName()) {
2624 if (C->isPositionValid())
2625 OS << " Param=\"" << C->getParamName(FC) << "\"";
2626 else
2627 OS << " Param=\"" << C->getParamNameAsWritten() << "\"";
2628 }
2629
2630 if (C->isPositionValid()) {
2631 OS << " Position=<";
2632 for (unsigned i = 0, e = C->getDepth(); i != e; ++i) {
2633 OS << C->getIndex(i);
2634 if (i != e - 1)
2635 OS << ", ";
2636 }
2637 OS << ">";
2638 }
2639}
2640
2641void ASTDumper::visitVerbatimBlockComment(const VerbatimBlockComment *C) {
2642 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\""
2643 " CloseName=\"" << C->getCloseName() << "\"";
2644}
2645
2646void ASTDumper::visitVerbatimBlockLineComment(
2647 const VerbatimBlockLineComment *C) {
2648 OS << " Text=\"" << C->getText() << "\"";
2649}
2650
2651void ASTDumper::visitVerbatimLineComment(const VerbatimLineComment *C) {
2652 OS << " Text=\"" << C->getText() << "\"";
2653}
2654
2655//===----------------------------------------------------------------------===//
Richard Smithd5e7ff82014-10-31 01:17:45 +00002656// Type method implementations
2657//===----------------------------------------------------------------------===//
2658
2659void QualType::dump(const char *msg) const {
2660 if (msg)
2661 llvm::errs() << msg << ": ";
2662 dump();
2663}
2664
Richard Smith14d04842016-11-02 23:57:18 +00002665LLVM_DUMP_METHOD void QualType::dump() const { dump(llvm::errs()); }
2666
2667LLVM_DUMP_METHOD void QualType::dump(llvm::raw_ostream &OS) const {
2668 ASTDumper Dumper(OS, nullptr, nullptr);
Richard Smithd5e7ff82014-10-31 01:17:45 +00002669 Dumper.dumpTypeAsChild(*this);
2670}
2671
Richard Smith14d04842016-11-02 23:57:18 +00002672LLVM_DUMP_METHOD void Type::dump() const { dump(llvm::errs()); }
2673
2674LLVM_DUMP_METHOD void Type::dump(llvm::raw_ostream &OS) const {
2675 QualType(this, 0).dump(OS);
2676}
Richard Smithd5e7ff82014-10-31 01:17:45 +00002677
2678//===----------------------------------------------------------------------===//
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002679// Decl method implementations
2680//===----------------------------------------------------------------------===//
2681
Alp Tokeref6b0072014-01-04 13:47:14 +00002682LLVM_DUMP_METHOD void Decl::dump() const { dump(llvm::errs()); }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002683
Richard Smith3a36ac12017-03-09 22:00:01 +00002684LLVM_DUMP_METHOD void Decl::dump(raw_ostream &OS, bool Deserialize) const {
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002685 ASTDumper P(OS, &getASTContext().getCommentCommandTraits(),
2686 &getASTContext().getSourceManager());
Richard Smith3a36ac12017-03-09 22:00:01 +00002687 P.setDeserialize(Deserialize);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002688 P.dumpDecl(this);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002689}
2690
Alp Tokeref6b0072014-01-04 13:47:14 +00002691LLVM_DUMP_METHOD void Decl::dumpColor() const {
Richard Trieud215b8d2013-01-26 01:31:20 +00002692 ASTDumper P(llvm::errs(), &getASTContext().getCommentCommandTraits(),
2693 &getASTContext().getSourceManager(), /*ShowColors*/true);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002694 P.dumpDecl(this);
Richard Trieud215b8d2013-01-26 01:31:20 +00002695}
Richard Smith33937e72013-06-22 21:49:40 +00002696
Alp Tokeref6b0072014-01-04 13:47:14 +00002697LLVM_DUMP_METHOD void DeclContext::dumpLookups() const {
Richard Smith6ea05822013-06-24 01:45:33 +00002698 dumpLookups(llvm::errs());
2699}
2700
Richard Smith35f986d2014-08-11 22:11:07 +00002701LLVM_DUMP_METHOD void DeclContext::dumpLookups(raw_ostream &OS,
Richard Smith3a36ac12017-03-09 22:00:01 +00002702 bool DumpDecls,
2703 bool Deserialize) const {
Richard Smith33937e72013-06-22 21:49:40 +00002704 const DeclContext *DC = this;
2705 while (!DC->isTranslationUnit())
2706 DC = DC->getParent();
2707 ASTContext &Ctx = cast<TranslationUnitDecl>(DC)->getASTContext();
Richard Smith6ea05822013-06-24 01:45:33 +00002708 ASTDumper P(OS, &Ctx.getCommentCommandTraits(), &Ctx.getSourceManager());
Richard Smith3a36ac12017-03-09 22:00:01 +00002709 P.setDeserialize(Deserialize);
Richard Smith35f986d2014-08-11 22:11:07 +00002710 P.dumpLookups(this, DumpDecls);
Richard Smith33937e72013-06-22 21:49:40 +00002711}
2712
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002713//===----------------------------------------------------------------------===//
Chris Lattnercbe4f772007-08-08 22:51:59 +00002714// Stmt method implementations
2715//===----------------------------------------------------------------------===//
2716
Alp Tokeref6b0072014-01-04 13:47:14 +00002717LLVM_DUMP_METHOD void Stmt::dump(SourceManager &SM) const {
Argyrios Kyrtzidisc049f752010-08-09 10:54:31 +00002718 dump(llvm::errs(), SM);
2719}
2720
Alp Tokeref6b0072014-01-04 13:47:14 +00002721LLVM_DUMP_METHOD void Stmt::dump(raw_ostream &OS, SourceManager &SM) const {
Craig Topper36250ad2014-05-12 05:36:57 +00002722 ASTDumper P(OS, nullptr, &SM);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002723 P.dumpStmt(this);
Chris Lattner779d5d92007-08-30 00:40:08 +00002724}
2725
Faisal Vali2da8ed92015-03-22 13:35:56 +00002726LLVM_DUMP_METHOD void Stmt::dump(raw_ostream &OS) const {
2727 ASTDumper P(OS, nullptr, nullptr);
2728 P.dumpStmt(this);
2729}
2730
Alp Tokeref6b0072014-01-04 13:47:14 +00002731LLVM_DUMP_METHOD void Stmt::dump() const {
Craig Topper36250ad2014-05-12 05:36:57 +00002732 ASTDumper P(llvm::errs(), nullptr, nullptr);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002733 P.dumpStmt(this);
Chris Lattnercbe4f772007-08-08 22:51:59 +00002734}
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002735
Alp Tokeref6b0072014-01-04 13:47:14 +00002736LLVM_DUMP_METHOD void Stmt::dumpColor() const {
Craig Topper36250ad2014-05-12 05:36:57 +00002737 ASTDumper P(llvm::errs(), nullptr, nullptr, /*ShowColors*/true);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002738 P.dumpStmt(this);
Richard Trieud215b8d2013-01-26 01:31:20 +00002739}
2740
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002741//===----------------------------------------------------------------------===//
2742// Comment method implementations
2743//===----------------------------------------------------------------------===//
2744
Craig Topper36250ad2014-05-12 05:36:57 +00002745LLVM_DUMP_METHOD void Comment::dump() const {
2746 dump(llvm::errs(), nullptr, nullptr);
2747}
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002748
Alp Tokeref6b0072014-01-04 13:47:14 +00002749LLVM_DUMP_METHOD void Comment::dump(const ASTContext &Context) const {
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002750 dump(llvm::errs(), &Context.getCommentCommandTraits(),
2751 &Context.getSourceManager());
2752}
2753
Alexander Kornienko00911f12013-01-15 12:20:21 +00002754void Comment::dump(raw_ostream &OS, const CommandTraits *Traits,
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002755 const SourceManager *SM) const {
2756 const FullComment *FC = dyn_cast<FullComment>(this);
2757 ASTDumper D(OS, Traits, SM);
2758 D.dumpFullComment(FC);
2759}
Richard Trieud215b8d2013-01-26 01:31:20 +00002760
Alp Tokeref6b0072014-01-04 13:47:14 +00002761LLVM_DUMP_METHOD void Comment::dumpColor() const {
Richard Trieud215b8d2013-01-26 01:31:20 +00002762 const FullComment *FC = dyn_cast<FullComment>(this);
Craig Topper36250ad2014-05-12 05:36:57 +00002763 ASTDumper D(llvm::errs(), nullptr, nullptr, /*ShowColors*/true);
Richard Trieud215b8d2013-01-26 01:31:20 +00002764 D.dumpFullComment(FC);
2765}