blob: 62261ccc905b67ae33cd700073c7070773091549 [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 Smithf7514452014-10-30 21:02:37 +0000105 /// Indicates whether we're at the top level.
106 bool TopLevel;
Richard Trieude5cc7d2013-01-31 01:44:26 +0000107
Richard Smithf7514452014-10-30 21:02:37 +0000108 /// Indicates if we're handling the first child after entering a new depth.
109 bool FirstChild;
110
111 /// Prefix for currently-being-dumped entity.
112 std::string Prefix;
Richard Trieude5cc7d2013-01-31 01:44:26 +0000113
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000114 /// Keep track of the last location we print out so that we can
115 /// print out deltas from then on out.
Chris Lattner11e30d32007-08-30 06:17:34 +0000116 const char *LastLocFilename;
117 unsigned LastLocLine;
Douglas Gregor7de59662009-05-29 20:38:28 +0000118
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000119 /// The \c FullComment parent of the comment being dumped.
120 const FullComment *FC;
121
Richard Trieud215b8d2013-01-26 01:31:20 +0000122 bool ShowColors;
123
Richard Smithf7514452014-10-30 21:02:37 +0000124 /// Dump a child of the current node.
125 template<typename Fn> void dumpChild(Fn doDumpChild) {
126 // If we're at the top level, there's nothing interesting to do; just
127 // run the dumper.
128 if (TopLevel) {
129 TopLevel = false;
130 doDumpChild();
131 while (!Pending.empty()) {
132 Pending.back()(true);
133 Pending.pop_back();
134 }
135 Prefix.clear();
136 OS << "\n";
137 TopLevel = true;
138 return;
Manuel Klimek874030e2012-11-07 00:33:12 +0000139 }
Richard Smithf7514452014-10-30 21:02:37 +0000140
141 const FullComment *OrigFC = FC;
142 auto dumpWithIndent = [this, doDumpChild, OrigFC](bool isLastChild) {
143 // Print out the appropriate tree structure and work out the prefix for
144 // children of this node. For instance:
145 //
146 // A Prefix = ""
147 // |-B Prefix = "| "
148 // | `-C Prefix = "| "
149 // `-D Prefix = " "
150 // |-E Prefix = " | "
151 // `-F Prefix = " "
152 // G Prefix = ""
153 //
154 // Note that the first level gets no prefix.
155 {
156 OS << '\n';
157 ColorScope Color(*this, IndentColor);
158 OS << Prefix << (isLastChild ? '`' : '|') << '-';
NAKAMURA Takumic73e4022014-10-31 00:30:37 +0000159 this->Prefix.push_back(isLastChild ? ' ' : '|');
160 this->Prefix.push_back(' ');
Richard Smithf7514452014-10-30 21:02:37 +0000161 }
162
163 FirstChild = true;
164 unsigned Depth = Pending.size();
165
166 FC = OrigFC;
167 doDumpChild();
168
169 // If any children are left, they're the last at their nesting level.
170 // Dump those ones out now.
171 while (Depth < Pending.size()) {
172 Pending.back()(true);
NAKAMURA Takumic73e4022014-10-31 00:30:37 +0000173 this->Pending.pop_back();
Richard Smithf7514452014-10-30 21:02:37 +0000174 }
175
176 // Restore the old prefix.
NAKAMURA Takumic73e4022014-10-31 00:30:37 +0000177 this->Prefix.resize(Prefix.size() - 2);
Richard Smithf7514452014-10-30 21:02:37 +0000178 };
179
180 if (FirstChild) {
181 Pending.push_back(std::move(dumpWithIndent));
182 } else {
183 Pending.back()(false);
184 Pending.back() = std::move(dumpWithIndent);
Manuel Klimek874030e2012-11-07 00:33:12 +0000185 }
Richard Smithf7514452014-10-30 21:02:37 +0000186 FirstChild = false;
187 }
Manuel Klimek874030e2012-11-07 00:33:12 +0000188
Richard Trieud215b8d2013-01-26 01:31:20 +0000189 class ColorScope {
190 ASTDumper &Dumper;
191 public:
192 ColorScope(ASTDumper &Dumper, TerminalColor Color)
193 : Dumper(Dumper) {
194 if (Dumper.ShowColors)
195 Dumper.OS.changeColor(Color.Color, Color.Bold);
196 }
197 ~ColorScope() {
198 if (Dumper.ShowColors)
199 Dumper.OS.resetColor();
200 }
201 };
202
Chris Lattnercbe4f772007-08-08 22:51:59 +0000203 public:
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000204 ASTDumper(raw_ostream &OS, const CommandTraits *Traits,
205 const SourceManager *SM)
Richard Smithf7514452014-10-30 21:02:37 +0000206 : OS(OS), Traits(Traits), SM(SM), TopLevel(true), FirstChild(true),
Craig Topper36250ad2014-05-12 05:36:57 +0000207 LastLocFilename(""), LastLocLine(~0U), FC(nullptr),
Richard Trieud215b8d2013-01-26 01:31:20 +0000208 ShowColors(SM && SM->getDiagnostics().getShowColors()) { }
209
210 ASTDumper(raw_ostream &OS, const CommandTraits *Traits,
211 const SourceManager *SM, bool ShowColors)
Richard Smithf7514452014-10-30 21:02:37 +0000212 : OS(OS), Traits(Traits), SM(SM), TopLevel(true), FirstChild(true),
Richard Smith56d12152013-01-31 02:04:38 +0000213 LastLocFilename(""), LastLocLine(~0U),
Richard Trieude5cc7d2013-01-31 01:44:26 +0000214 ShowColors(ShowColors) { }
Mike Stump11289f42009-09-09 15:08:12 +0000215
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000216 void dumpDecl(const Decl *D);
217 void dumpStmt(const Stmt *S);
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000218 void dumpFullComment(const FullComment *C);
Mike Stump11289f42009-09-09 15:08:12 +0000219
Richard Trieude5cc7d2013-01-31 01:44:26 +0000220 // Utilities
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000221 void dumpPointer(const void *Ptr);
222 void dumpSourceRange(SourceRange R);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000223 void dumpLocation(SourceLocation Loc);
Richard Smithd5e7ff82014-10-31 01:17:45 +0000224 void dumpBareType(QualType T, bool Desugar = true);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000225 void dumpType(QualType T);
Richard Smithd5e7ff82014-10-31 01:17:45 +0000226 void dumpTypeAsChild(QualType T);
227 void dumpTypeAsChild(const Type *T);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000228 void dumpBareDeclRef(const Decl *Node);
Craig Topper36250ad2014-05-12 05:36:57 +0000229 void dumpDeclRef(const Decl *Node, const char *Label = nullptr);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000230 void dumpName(const NamedDecl *D);
Richard Trieude5cc7d2013-01-31 01:44:26 +0000231 bool hasNodes(const DeclContext *DC);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000232 void dumpDeclContext(const DeclContext *DC);
Richard Smith35f986d2014-08-11 22:11:07 +0000233 void dumpLookups(const DeclContext *DC, bool DumpDecls);
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000234 void dumpAttr(const Attr *A);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000235
236 // C++ Utilities
237 void dumpAccessSpecifier(AccessSpecifier AS);
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000238 void dumpCXXCtorInitializer(const CXXCtorInitializer *Init);
239 void dumpTemplateParameters(const TemplateParameterList *TPL);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000240 void dumpTemplateArgumentListInfo(const TemplateArgumentListInfo &TALI);
241 void dumpTemplateArgumentLoc(const TemplateArgumentLoc &A);
242 void dumpTemplateArgumentList(const TemplateArgumentList &TAL);
243 void dumpTemplateArgument(const TemplateArgument &A,
244 SourceRange R = SourceRange());
245
Douglas Gregor85f3f952015-07-07 03:57:15 +0000246 // Objective-C utilities.
247 void dumpObjCTypeParamList(const ObjCTypeParamList *typeParams);
248
Richard Smithd5e7ff82014-10-31 01:17:45 +0000249 // Types
250 void VisitComplexType(const ComplexType *T) {
251 dumpTypeAsChild(T->getElementType());
252 }
253 void VisitPointerType(const PointerType *T) {
254 dumpTypeAsChild(T->getPointeeType());
255 }
256 void VisitBlockPointerType(const BlockPointerType *T) {
257 dumpTypeAsChild(T->getPointeeType());
258 }
259 void VisitReferenceType(const ReferenceType *T) {
260 dumpTypeAsChild(T->getPointeeType());
261 }
262 void VisitRValueReferenceType(const ReferenceType *T) {
263 if (T->isSpelledAsLValue())
264 OS << " written as lvalue reference";
265 VisitReferenceType(T);
266 }
267 void VisitMemberPointerType(const MemberPointerType *T) {
268 dumpTypeAsChild(T->getClass());
269 dumpTypeAsChild(T->getPointeeType());
270 }
271 void VisitArrayType(const ArrayType *T) {
272 switch (T->getSizeModifier()) {
273 case ArrayType::Normal: break;
274 case ArrayType::Static: OS << " static"; break;
275 case ArrayType::Star: OS << " *"; break;
276 }
277 OS << " " << T->getIndexTypeQualifiers().getAsString();
278 dumpTypeAsChild(T->getElementType());
279 }
280 void VisitConstantArrayType(const ConstantArrayType *T) {
281 OS << " " << T->getSize();
282 VisitArrayType(T);
283 }
284 void VisitVariableArrayType(const VariableArrayType *T) {
285 OS << " ";
286 dumpSourceRange(T->getBracketsRange());
287 VisitArrayType(T);
288 dumpStmt(T->getSizeExpr());
289 }
290 void VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
291 VisitArrayType(T);
292 OS << " ";
293 dumpSourceRange(T->getBracketsRange());
294 dumpStmt(T->getSizeExpr());
295 }
296 void VisitDependentSizedExtVectorType(
297 const DependentSizedExtVectorType *T) {
298 OS << " ";
299 dumpLocation(T->getAttributeLoc());
300 dumpTypeAsChild(T->getElementType());
301 dumpStmt(T->getSizeExpr());
302 }
303 void VisitVectorType(const VectorType *T) {
304 switch (T->getVectorKind()) {
305 case VectorType::GenericVector: break;
306 case VectorType::AltiVecVector: OS << " altivec"; break;
307 case VectorType::AltiVecPixel: OS << " altivec pixel"; break;
308 case VectorType::AltiVecBool: OS << " altivec bool"; break;
309 case VectorType::NeonVector: OS << " neon"; break;
310 case VectorType::NeonPolyVector: OS << " neon poly"; break;
311 }
312 OS << " " << T->getNumElements();
313 dumpTypeAsChild(T->getElementType());
314 }
315 void VisitFunctionType(const FunctionType *T) {
316 auto EI = T->getExtInfo();
317 if (EI.getNoReturn()) OS << " noreturn";
318 if (EI.getProducesResult()) OS << " produces_result";
319 if (EI.getHasRegParm()) OS << " regparm " << EI.getRegParm();
320 OS << " " << FunctionType::getNameForCallConv(EI.getCC());
321 dumpTypeAsChild(T->getReturnType());
322 }
323 void VisitFunctionProtoType(const FunctionProtoType *T) {
324 auto EPI = T->getExtProtoInfo();
325 if (EPI.HasTrailingReturn) OS << " trailing_return";
326 if (T->isConst()) OS << " const";
327 if (T->isVolatile()) OS << " volatile";
328 if (T->isRestrict()) OS << " restrict";
329 switch (EPI.RefQualifier) {
330 case RQ_None: break;
331 case RQ_LValue: OS << " &"; break;
332 case RQ_RValue: OS << " &&"; break;
333 }
334 // FIXME: Exception specification.
335 // FIXME: Consumed parameters.
336 VisitFunctionType(T);
337 for (QualType PT : T->getParamTypes())
338 dumpTypeAsChild(PT);
339 if (EPI.Variadic)
340 dumpChild([=] { OS << "..."; });
341 }
342 void VisitUnresolvedUsingType(const UnresolvedUsingType *T) {
343 dumpDeclRef(T->getDecl());
344 }
345 void VisitTypedefType(const TypedefType *T) {
346 dumpDeclRef(T->getDecl());
347 }
348 void VisitTypeOfExprType(const TypeOfExprType *T) {
349 dumpStmt(T->getUnderlyingExpr());
350 }
351 void VisitDecltypeType(const DecltypeType *T) {
352 dumpStmt(T->getUnderlyingExpr());
353 }
354 void VisitUnaryTransformType(const UnaryTransformType *T) {
355 switch (T->getUTTKind()) {
356 case UnaryTransformType::EnumUnderlyingType:
357 OS << " underlying_type";
358 break;
359 }
360 dumpTypeAsChild(T->getBaseType());
361 }
362 void VisitTagType(const TagType *T) {
363 dumpDeclRef(T->getDecl());
364 }
365 void VisitAttributedType(const AttributedType *T) {
366 // FIXME: AttrKind
367 dumpTypeAsChild(T->getModifiedType());
368 }
369 void VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
370 OS << " depth " << T->getDepth() << " index " << T->getIndex();
371 if (T->isParameterPack()) OS << " pack";
372 dumpDeclRef(T->getDecl());
373 }
374 void VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) {
375 dumpTypeAsChild(T->getReplacedParameter());
376 }
377 void VisitSubstTemplateTypeParmPackType(
378 const SubstTemplateTypeParmPackType *T) {
379 dumpTypeAsChild(T->getReplacedParameter());
380 dumpTemplateArgument(T->getArgumentPack());
381 }
382 void VisitAutoType(const AutoType *T) {
383 if (T->isDecltypeAuto()) OS << " decltype(auto)";
384 if (!T->isDeduced())
385 OS << " undeduced";
386 }
387 void VisitTemplateSpecializationType(const TemplateSpecializationType *T) {
388 if (T->isTypeAlias()) OS << " alias";
389 OS << " "; T->getTemplateName().dump(OS);
390 for (auto &Arg : *T)
391 dumpTemplateArgument(Arg);
392 if (T->isTypeAlias())
393 dumpTypeAsChild(T->getAliasedType());
394 }
395 void VisitInjectedClassNameType(const InjectedClassNameType *T) {
396 dumpDeclRef(T->getDecl());
397 }
398 void VisitObjCInterfaceType(const ObjCInterfaceType *T) {
399 dumpDeclRef(T->getDecl());
400 }
401 void VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
402 dumpTypeAsChild(T->getPointeeType());
403 }
404 void VisitAtomicType(const AtomicType *T) {
405 dumpTypeAsChild(T->getValueType());
406 }
Xiuli Pan2d12e652016-05-03 05:37:07 +0000407 void VisitPipeType(const PipeType *T) {
408 dumpTypeAsChild(T->getElementType());
409 }
Richard Smithd5e7ff82014-10-31 01:17:45 +0000410 void VisitAdjustedType(const AdjustedType *T) {
411 dumpTypeAsChild(T->getOriginalType());
412 }
413 void VisitPackExpansionType(const PackExpansionType *T) {
414 if (auto N = T->getNumExpansions()) OS << " expansions " << *N;
415 if (!T->isSugared())
416 dumpTypeAsChild(T->getPattern());
417 }
418 // FIXME: ElaboratedType, DependentNameType,
419 // DependentTemplateSpecializationType, ObjCObjectType
420
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000421 // Decls
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000422 void VisitLabelDecl(const LabelDecl *D);
423 void VisitTypedefDecl(const TypedefDecl *D);
424 void VisitEnumDecl(const EnumDecl *D);
425 void VisitRecordDecl(const RecordDecl *D);
426 void VisitEnumConstantDecl(const EnumConstantDecl *D);
427 void VisitIndirectFieldDecl(const IndirectFieldDecl *D);
428 void VisitFunctionDecl(const FunctionDecl *D);
429 void VisitFieldDecl(const FieldDecl *D);
430 void VisitVarDecl(const VarDecl *D);
Richard Smithbdb84f32016-07-22 23:36:59 +0000431 void VisitDecompositionDecl(const DecompositionDecl *D);
Richard Smith7873de02016-08-11 22:25:46 +0000432 void VisitBindingDecl(const BindingDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000433 void VisitFileScopeAsmDecl(const FileScopeAsmDecl *D);
434 void VisitImportDecl(const ImportDecl *D);
Nico Weber66220292016-03-02 17:28:48 +0000435 void VisitPragmaCommentDecl(const PragmaCommentDecl *D);
Nico Webercbbaeb12016-03-02 19:28:54 +0000436 void VisitPragmaDetectMismatchDecl(const PragmaDetectMismatchDecl *D);
Alexey Bataev958b9e72016-03-31 09:30:50 +0000437 void VisitCapturedDecl(const CapturedDecl *D);
438
439 // OpenMP decls
440 void VisitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D);
441 void VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D);
442 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000443
444 // C++ Decls
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000445 void VisitNamespaceDecl(const NamespaceDecl *D);
446 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
447 void VisitNamespaceAliasDecl(const NamespaceAliasDecl *D);
448 void VisitTypeAliasDecl(const TypeAliasDecl *D);
449 void VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D);
450 void VisitCXXRecordDecl(const CXXRecordDecl *D);
451 void VisitStaticAssertDecl(const StaticAssertDecl *D);
Richard Smithcbdf7332014-03-18 02:07:28 +0000452 template<typename SpecializationDecl>
Richard Smithf7514452014-10-30 21:02:37 +0000453 void VisitTemplateDeclSpecialization(const SpecializationDecl *D,
Richard Smithcbdf7332014-03-18 02:07:28 +0000454 bool DumpExplicitInst,
455 bool DumpRefOnly);
Richard Smith20ade552014-03-17 23:34:53 +0000456 template<typename TemplateDecl>
457 void VisitTemplateDecl(const TemplateDecl *D, bool DumpExplicitInst);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000458 void VisitFunctionTemplateDecl(const FunctionTemplateDecl *D);
459 void VisitClassTemplateDecl(const ClassTemplateDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000460 void VisitClassTemplateSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000461 const ClassTemplateSpecializationDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000462 void VisitClassTemplatePartialSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000463 const ClassTemplatePartialSpecializationDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000464 void VisitClassScopeFunctionSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000465 const ClassScopeFunctionSpecializationDecl *D);
David Majnemerd9b1a4f2015-11-04 03:40:30 +0000466 void VisitBuiltinTemplateDecl(const BuiltinTemplateDecl *D);
Richard Smithd25789a2013-09-18 01:36:02 +0000467 void VisitVarTemplateDecl(const VarTemplateDecl *D);
468 void VisitVarTemplateSpecializationDecl(
469 const VarTemplateSpecializationDecl *D);
470 void VisitVarTemplatePartialSpecializationDecl(
471 const VarTemplatePartialSpecializationDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000472 void VisitTemplateTypeParmDecl(const TemplateTypeParmDecl *D);
473 void VisitNonTypeTemplateParmDecl(const NonTypeTemplateParmDecl *D);
474 void VisitTemplateTemplateParmDecl(const TemplateTemplateParmDecl *D);
475 void VisitUsingDecl(const UsingDecl *D);
476 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
477 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D);
478 void VisitUsingShadowDecl(const UsingShadowDecl *D);
Richard Smith5179eb72016-06-28 19:03:57 +0000479 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000480 void VisitLinkageSpecDecl(const LinkageSpecDecl *D);
481 void VisitAccessSpecDecl(const AccessSpecDecl *D);
482 void VisitFriendDecl(const FriendDecl *D);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000483
484 // ObjC Decls
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000485 void VisitObjCIvarDecl(const ObjCIvarDecl *D);
486 void VisitObjCMethodDecl(const ObjCMethodDecl *D);
Douglas Gregor85f3f952015-07-07 03:57:15 +0000487 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000488 void VisitObjCCategoryDecl(const ObjCCategoryDecl *D);
489 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
490 void VisitObjCProtocolDecl(const ObjCProtocolDecl *D);
491 void VisitObjCInterfaceDecl(const ObjCInterfaceDecl *D);
492 void VisitObjCImplementationDecl(const ObjCImplementationDecl *D);
493 void VisitObjCCompatibleAliasDecl(const ObjCCompatibleAliasDecl *D);
494 void VisitObjCPropertyDecl(const ObjCPropertyDecl *D);
495 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
496 void VisitBlockDecl(const BlockDecl *D);
Mike Stump11289f42009-09-09 15:08:12 +0000497
Chris Lattner84ca3762007-08-30 01:00:35 +0000498 // Stmts.
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000499 void VisitStmt(const Stmt *Node);
500 void VisitDeclStmt(const DeclStmt *Node);
501 void VisitAttributedStmt(const AttributedStmt *Node);
502 void VisitLabelStmt(const LabelStmt *Node);
503 void VisitGotoStmt(const GotoStmt *Node);
Pavel Labath1ef83422013-09-04 14:35:00 +0000504 void VisitCXXCatchStmt(const CXXCatchStmt *Node);
Alexey Bataev958b9e72016-03-31 09:30:50 +0000505 void VisitCapturedStmt(const CapturedStmt *Node);
506
507 // OpenMP
508 void VisitOMPExecutableDirective(const OMPExecutableDirective *Node);
Mike Stump11289f42009-09-09 15:08:12 +0000509
Chris Lattner84ca3762007-08-30 01:00:35 +0000510 // Exprs
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000511 void VisitExpr(const Expr *Node);
512 void VisitCastExpr(const CastExpr *Node);
513 void VisitDeclRefExpr(const DeclRefExpr *Node);
514 void VisitPredefinedExpr(const PredefinedExpr *Node);
515 void VisitCharacterLiteral(const CharacterLiteral *Node);
516 void VisitIntegerLiteral(const IntegerLiteral *Node);
517 void VisitFloatingLiteral(const FloatingLiteral *Node);
518 void VisitStringLiteral(const StringLiteral *Str);
Richard Smithf0514962014-06-03 08:24:28 +0000519 void VisitInitListExpr(const InitListExpr *ILE);
Richard Smith410306b2016-12-12 02:53:20 +0000520 void VisitArrayInitLoopExpr(const ArrayInitLoopExpr *ILE);
521 void VisitArrayInitIndexExpr(const ArrayInitIndexExpr *ILE);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000522 void VisitUnaryOperator(const UnaryOperator *Node);
523 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Node);
524 void VisitMemberExpr(const MemberExpr *Node);
525 void VisitExtVectorElementExpr(const ExtVectorElementExpr *Node);
526 void VisitBinaryOperator(const BinaryOperator *Node);
527 void VisitCompoundAssignOperator(const CompoundAssignOperator *Node);
528 void VisitAddrLabelExpr(const AddrLabelExpr *Node);
529 void VisitBlockExpr(const BlockExpr *Node);
530 void VisitOpaqueValueExpr(const OpaqueValueExpr *Node);
Chris Lattner84ca3762007-08-30 01:00:35 +0000531
532 // C++
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000533 void VisitCXXNamedCastExpr(const CXXNamedCastExpr *Node);
534 void VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node);
535 void VisitCXXThisExpr(const CXXThisExpr *Node);
536 void VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *Node);
537 void VisitCXXConstructExpr(const CXXConstructExpr *Node);
538 void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Node);
Reid Kleckner5c682bc2015-03-19 18:09:25 +0000539 void VisitCXXNewExpr(const CXXNewExpr *Node);
540 void VisitCXXDeleteExpr(const CXXDeleteExpr *Node);
Richard Smithe6c01442013-06-05 00:46:14 +0000541 void VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000542 void VisitExprWithCleanups(const ExprWithCleanups *Node);
543 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node);
544 void dumpCXXTemporary(const CXXTemporary *Temporary);
Faisal Vali2b391ab2013-09-26 19:54:12 +0000545 void VisitLambdaExpr(const LambdaExpr *Node) {
546 VisitExpr(Node);
547 dumpDecl(Node->getLambdaClass());
548 }
Serge Pavlov6b926032015-02-16 19:58:41 +0000549 void VisitSizeOfPackExpr(const SizeOfPackExpr *Node);
Alex Lorenzddbe0f52016-11-09 14:02:18 +0000550 void
551 VisitCXXDependentScopeMemberExpr(const CXXDependentScopeMemberExpr *Node);
Mike Stump11289f42009-09-09 15:08:12 +0000552
Chris Lattner84ca3762007-08-30 01:00:35 +0000553 // ObjC
Alexander Kornienko540bacb2013-02-01 12:35:51 +0000554 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
555 void VisitObjCEncodeExpr(const ObjCEncodeExpr *Node);
556 void VisitObjCMessageExpr(const ObjCMessageExpr *Node);
557 void VisitObjCBoxedExpr(const ObjCBoxedExpr *Node);
558 void VisitObjCSelectorExpr(const ObjCSelectorExpr *Node);
559 void VisitObjCProtocolExpr(const ObjCProtocolExpr *Node);
560 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
561 void VisitObjCSubscriptRefExpr(const ObjCSubscriptRefExpr *Node);
562 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node);
563 void VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *Node);
Alexander Kornienkoebc17b52013-01-14 14:07:11 +0000564
565 // Comments.
566 const char *getCommandName(unsigned CommandID);
567 void dumpComment(const Comment *C);
568
569 // Inline comments.
570 void visitTextComment(const TextComment *C);
571 void visitInlineCommandComment(const InlineCommandComment *C);
572 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
573 void visitHTMLEndTagComment(const HTMLEndTagComment *C);
574
575 // Block comments.
576 void visitBlockCommandComment(const BlockCommandComment *C);
577 void visitParamCommandComment(const ParamCommandComment *C);
578 void visitTParamCommandComment(const TParamCommandComment *C);
579 void visitVerbatimBlockComment(const VerbatimBlockComment *C);
580 void visitVerbatimBlockLineComment(const VerbatimBlockLineComment *C);
581 void visitVerbatimLineComment(const VerbatimLineComment *C);
Chris Lattnercbe4f772007-08-08 22:51:59 +0000582 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000583}
Chris Lattnercbe4f772007-08-08 22:51:59 +0000584
585//===----------------------------------------------------------------------===//
Chris Lattner11e30d32007-08-30 06:17:34 +0000586// Utilities
587//===----------------------------------------------------------------------===//
588
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000589void ASTDumper::dumpPointer(const void *Ptr) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000590 ColorScope Color(*this, AddressColor);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000591 OS << ' ' << Ptr;
592}
593
Alexander Kornienko18ec81b2012-12-13 13:59:55 +0000594void ASTDumper::dumpLocation(SourceLocation Loc) {
Alex McCarthye14ddef2014-05-02 20:24:11 +0000595 if (!SM)
596 return;
597
Richard Trieud215b8d2013-01-26 01:31:20 +0000598 ColorScope Color(*this, LocationColor);
Chris Lattner53e384f2009-01-16 07:00:02 +0000599 SourceLocation SpellingLoc = SM->getSpellingLoc(Loc);
Mike Stump11289f42009-09-09 15:08:12 +0000600
Chris Lattner11e30d32007-08-30 06:17:34 +0000601 // The general format we print out is filename:line:col, but we drop pieces
602 // that haven't changed since the last loc printed.
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000603 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
604
Douglas Gregor453b0122010-11-12 07:15:47 +0000605 if (PLoc.isInvalid()) {
606 OS << "<invalid sloc>";
607 return;
608 }
609
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000610 if (strcmp(PLoc.getFilename(), LastLocFilename) != 0) {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000611 OS << PLoc.getFilename() << ':' << PLoc.getLine()
612 << ':' << PLoc.getColumn();
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000613 LastLocFilename = PLoc.getFilename();
614 LastLocLine = PLoc.getLine();
615 } else if (PLoc.getLine() != LastLocLine) {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000616 OS << "line" << ':' << PLoc.getLine()
617 << ':' << PLoc.getColumn();
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000618 LastLocLine = PLoc.getLine();
Chris Lattner11e30d32007-08-30 06:17:34 +0000619 } else {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000620 OS << "col" << ':' << PLoc.getColumn();
Chris Lattner11e30d32007-08-30 06:17:34 +0000621 }
622}
623
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000624void ASTDumper::dumpSourceRange(SourceRange R) {
Chris Lattner11e30d32007-08-30 06:17:34 +0000625 // Can't translate locations if a SourceManager isn't available.
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000626 if (!SM)
627 return;
Mike Stump11289f42009-09-09 15:08:12 +0000628
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000629 OS << " <";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000630 dumpLocation(R.getBegin());
Chris Lattnera7c19fe2007-10-16 22:36:42 +0000631 if (R.getBegin() != R.getEnd()) {
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000632 OS << ", ";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000633 dumpLocation(R.getEnd());
Chris Lattner11e30d32007-08-30 06:17:34 +0000634 }
Daniel Dunbar34a96c82009-12-03 09:13:13 +0000635 OS << ">";
Mike Stump11289f42009-09-09 15:08:12 +0000636
Chris Lattner11e30d32007-08-30 06:17:34 +0000637 // <t2.c:123:421[blah], t2.c:412:321>
638
639}
640
Richard Smithd5e7ff82014-10-31 01:17:45 +0000641void ASTDumper::dumpBareType(QualType T, bool Desugar) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000642 ColorScope Color(*this, TypeColor);
Richard Smithd5e7ff82014-10-31 01:17:45 +0000643
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000644 SplitQualType T_split = T.split();
645 OS << "'" << QualType::getAsString(T_split) << "'";
646
Richard Smithd5e7ff82014-10-31 01:17:45 +0000647 if (Desugar && !T.isNull()) {
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000648 // If the type is sugared, also dump a (shallow) desugared type.
649 SplitQualType D_split = T.getSplitDesugaredType();
650 if (T_split != D_split)
651 OS << ":'" << QualType::getAsString(D_split) << "'";
652 }
653}
654
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000655void ASTDumper::dumpType(QualType T) {
656 OS << ' ';
657 dumpBareType(T);
658}
659
Richard Smithd5e7ff82014-10-31 01:17:45 +0000660void ASTDumper::dumpTypeAsChild(QualType T) {
661 SplitQualType SQT = T.split();
662 if (!SQT.Quals.hasQualifiers())
663 return dumpTypeAsChild(SQT.Ty);
664
665 dumpChild([=] {
666 OS << "QualType";
667 dumpPointer(T.getAsOpaquePtr());
668 OS << " ";
669 dumpBareType(T, false);
670 OS << " " << T.split().Quals.getAsString();
671 dumpTypeAsChild(T.split().Ty);
672 });
673}
674
675void ASTDumper::dumpTypeAsChild(const Type *T) {
676 dumpChild([=] {
677 if (!T) {
678 ColorScope Color(*this, NullColor);
679 OS << "<<<NULL>>>";
680 return;
681 }
Serge Pavlova6adc9e2015-12-28 17:19:12 +0000682 if (const LocInfoType *LIT = llvm::dyn_cast<LocInfoType>(T)) {
683 {
684 ColorScope Color(*this, TypeColor);
685 OS << "LocInfo Type";
686 }
687 dumpPointer(T);
688 dumpTypeAsChild(LIT->getTypeSourceInfo()->getType());
689 return;
690 }
Richard Smithd5e7ff82014-10-31 01:17:45 +0000691
692 {
693 ColorScope Color(*this, TypeColor);
694 OS << T->getTypeClassName() << "Type";
695 }
696 dumpPointer(T);
697 OS << " ";
698 dumpBareType(QualType(T, 0), false);
699
700 QualType SingleStepDesugar =
701 T->getLocallyUnqualifiedSingleStepDesugaredType();
702 if (SingleStepDesugar != QualType(T, 0))
703 OS << " sugar";
704 if (T->isDependentType())
705 OS << " dependent";
706 else if (T->isInstantiationDependentType())
707 OS << " instantiation_dependent";
708 if (T->isVariablyModifiedType())
709 OS << " variably_modified";
710 if (T->containsUnexpandedParameterPack())
711 OS << " contains_unexpanded_pack";
712 if (T->isFromAST())
713 OS << " imported";
714
715 TypeVisitor<ASTDumper>::Visit(T);
716
717 if (SingleStepDesugar != QualType(T, 0))
718 dumpTypeAsChild(SingleStepDesugar);
719 });
720}
721
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000722void ASTDumper::dumpBareDeclRef(const Decl *D) {
Richard Smith5179eb72016-06-28 19:03:57 +0000723 if (!D) {
724 ColorScope Color(*this, NullColor);
725 OS << "<<<NULL>>>";
726 return;
727 }
728
Richard Trieud215b8d2013-01-26 01:31:20 +0000729 {
730 ColorScope Color(*this, DeclKindNameColor);
731 OS << D->getDeclKindName();
732 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000733 dumpPointer(D);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000734
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000735 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000736 ColorScope Color(*this, DeclNameColor);
David Blaikied4da8722013-05-14 21:04:00 +0000737 OS << " '" << ND->getDeclName() << '\'';
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000738 }
739
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000740 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D))
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000741 dumpType(VD->getType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000742}
743
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000744void ASTDumper::dumpDeclRef(const Decl *D, const char *Label) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000745 if (!D)
746 return;
747
Richard Smithf7514452014-10-30 21:02:37 +0000748 dumpChild([=]{
749 if (Label)
750 OS << Label << ' ';
751 dumpBareDeclRef(D);
752 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000753}
754
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000755void ASTDumper::dumpName(const NamedDecl *ND) {
Richard Trieud215b8d2013-01-26 01:31:20 +0000756 if (ND->getDeclName()) {
757 ColorScope Color(*this, DeclNameColor);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000758 OS << ' ' << ND->getNameAsString();
Richard Trieud215b8d2013-01-26 01:31:20 +0000759 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000760}
761
Richard Trieude5cc7d2013-01-31 01:44:26 +0000762bool ASTDumper::hasNodes(const DeclContext *DC) {
763 if (!DC)
764 return false;
765
Richard Smith1d209d02013-05-23 01:49:11 +0000766 return DC->hasExternalLexicalStorage() ||
767 DC->noload_decls_begin() != DC->noload_decls_end();
Richard Trieude5cc7d2013-01-31 01:44:26 +0000768}
769
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000770void ASTDumper::dumpDeclContext(const DeclContext *DC) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000771 if (!DC)
772 return;
Richard Smithdcc2c452014-03-17 23:00:06 +0000773
Richard Smithdcc2c452014-03-17 23:00:06 +0000774 for (auto *D : DC->noload_decls())
Richard Smithf7514452014-10-30 21:02:37 +0000775 dumpDecl(D);
Richard Smithdcc2c452014-03-17 23:00:06 +0000776
777 if (DC->hasExternalLexicalStorage()) {
Richard Smithf7514452014-10-30 21:02:37 +0000778 dumpChild([=]{
779 ColorScope Color(*this, UndeserializedColor);
780 OS << "<undeserialized declarations>";
781 });
Richard Smith1d209d02013-05-23 01:49:11 +0000782 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000783}
784
Richard Smith35f986d2014-08-11 22:11:07 +0000785void ASTDumper::dumpLookups(const DeclContext *DC, bool DumpDecls) {
Richard Smithf7514452014-10-30 21:02:37 +0000786 dumpChild([=] {
787 OS << "StoredDeclsMap ";
788 dumpBareDeclRef(cast<Decl>(DC));
Richard Smith33937e72013-06-22 21:49:40 +0000789
Richard Smithf7514452014-10-30 21:02:37 +0000790 const DeclContext *Primary = DC->getPrimaryContext();
791 if (Primary != DC) {
792 OS << " primary";
793 dumpPointer(cast<Decl>(Primary));
Richard Smith33937e72013-06-22 21:49:40 +0000794 }
795
Richard Smithf7514452014-10-30 21:02:37 +0000796 bool HasUndeserializedLookups = Primary->hasExternalVisibleStorage();
Richard Smith35f986d2014-08-11 22:11:07 +0000797
Richard Smithf7514452014-10-30 21:02:37 +0000798 DeclContext::all_lookups_iterator I = Primary->noload_lookups_begin(),
799 E = Primary->noload_lookups_end();
800 while (I != E) {
801 DeclarationName Name = I.getLookupName();
802 DeclContextLookupResult R = *I++;
Richard Smith35f986d2014-08-11 22:11:07 +0000803
Richard Smithf7514452014-10-30 21:02:37 +0000804 dumpChild([=] {
805 OS << "DeclarationName ";
806 {
807 ColorScope Color(*this, DeclNameColor);
808 OS << '\'' << Name << '\'';
809 }
Richard Smith35f986d2014-08-11 22:11:07 +0000810
Richard Smithf7514452014-10-30 21:02:37 +0000811 for (DeclContextLookupResult::iterator RI = R.begin(), RE = R.end();
812 RI != RE; ++RI) {
813 dumpChild([=] {
814 dumpBareDeclRef(*RI);
815
816 if ((*RI)->isHidden())
817 OS << " hidden";
818
819 // If requested, dump the redecl chain for this lookup.
820 if (DumpDecls) {
821 // Dump earliest decl first.
822 std::function<void(Decl *)> DumpWithPrev = [&](Decl *D) {
823 if (Decl *Prev = D->getPreviousDecl())
824 DumpWithPrev(Prev);
825 dumpDecl(D);
826 };
827 DumpWithPrev(*RI);
828 }
829 });
830 }
831 });
Richard Smith33937e72013-06-22 21:49:40 +0000832 }
Richard Smith33937e72013-06-22 21:49:40 +0000833
Richard Smithf7514452014-10-30 21:02:37 +0000834 if (HasUndeserializedLookups) {
835 dumpChild([=] {
836 ColorScope Color(*this, UndeserializedColor);
837 OS << "<undeserialized lookups>";
838 });
839 }
840 });
Richard Smith33937e72013-06-22 21:49:40 +0000841}
842
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000843void ASTDumper::dumpAttr(const Attr *A) {
Richard Smithf7514452014-10-30 21:02:37 +0000844 dumpChild([=] {
845 {
846 ColorScope Color(*this, AttrColor);
Aaron Ballman36a53502014-01-16 13:03:14 +0000847
Richard Smithf7514452014-10-30 21:02:37 +0000848 switch (A->getKind()) {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000849#define ATTR(X) case attr::X: OS << #X; break;
850#include "clang/Basic/AttrList.inc"
Richard Smithf7514452014-10-30 21:02:37 +0000851 }
852 OS << "Attr";
Richard Trieud215b8d2013-01-26 01:31:20 +0000853 }
Richard Smithf7514452014-10-30 21:02:37 +0000854 dumpPointer(A);
855 dumpSourceRange(A->getRange());
856 if (A->isInherited())
857 OS << " Inherited";
858 if (A->isImplicit())
859 OS << " Implicit";
Hans Wennborgb0a8b4a2014-05-31 04:05:57 +0000860#include "clang/AST/AttrDump.inc"
Richard Smithf7514452014-10-30 21:02:37 +0000861 });
Alexander Kornienko5bc364e2013-01-07 17:53:08 +0000862}
863
Richard Smith71bec062013-10-15 21:58:30 +0000864static void dumpPreviousDeclImpl(raw_ostream &OS, ...) {}
865
866template<typename T>
867static void dumpPreviousDeclImpl(raw_ostream &OS, const Mergeable<T> *D) {
Rafael Espindola8db352d2013-10-17 15:37:26 +0000868 const T *First = D->getFirstDecl();
Richard Smith71bec062013-10-15 21:58:30 +0000869 if (First != D)
870 OS << " first " << First;
Richard Smithf5f43542013-02-07 01:35:44 +0000871}
872
873template<typename T>
Richard Smith71bec062013-10-15 21:58:30 +0000874static void dumpPreviousDeclImpl(raw_ostream &OS, const Redeclarable<T> *D) {
875 const T *Prev = D->getPreviousDecl();
876 if (Prev)
877 OS << " prev " << Prev;
Richard Smithf5f43542013-02-07 01:35:44 +0000878}
879
Richard Smith71bec062013-10-15 21:58:30 +0000880/// Dump the previous declaration in the redeclaration chain for a declaration,
881/// if any.
882static void dumpPreviousDecl(raw_ostream &OS, const Decl *D) {
Richard Smithf5f43542013-02-07 01:35:44 +0000883 switch (D->getKind()) {
884#define DECL(DERIVED, BASE) \
885 case Decl::DERIVED: \
Richard Smith71bec062013-10-15 21:58:30 +0000886 return dumpPreviousDeclImpl(OS, cast<DERIVED##Decl>(D));
Richard Smithf5f43542013-02-07 01:35:44 +0000887#define ABSTRACT_DECL(DECL)
888#include "clang/AST/DeclNodes.inc"
889 }
890 llvm_unreachable("Decl that isn't part of DeclNodes.inc!");
891}
892
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000893//===----------------------------------------------------------------------===//
894// C++ Utilities
895//===----------------------------------------------------------------------===//
896
897void ASTDumper::dumpAccessSpecifier(AccessSpecifier AS) {
898 switch (AS) {
899 case AS_none:
900 break;
901 case AS_public:
902 OS << "public";
903 break;
904 case AS_protected:
905 OS << "protected";
906 break;
907 case AS_private:
908 OS << "private";
909 break;
910 }
911}
912
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000913void ASTDumper::dumpCXXCtorInitializer(const CXXCtorInitializer *Init) {
Richard Smithf7514452014-10-30 21:02:37 +0000914 dumpChild([=] {
915 OS << "CXXCtorInitializer";
916 if (Init->isAnyMemberInitializer()) {
917 OS << ' ';
918 dumpBareDeclRef(Init->getAnyMember());
919 } else if (Init->isBaseInitializer()) {
920 dumpType(QualType(Init->getBaseClass(), 0));
921 } else if (Init->isDelegatingInitializer()) {
922 dumpType(Init->getTypeSourceInfo()->getType());
923 } else {
924 llvm_unreachable("Unknown initializer type");
925 }
926 dumpStmt(Init->getInit());
927 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000928}
929
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000930void ASTDumper::dumpTemplateParameters(const TemplateParameterList *TPL) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000931 if (!TPL)
932 return;
933
Alexander Kornienko787f4c32012-12-20 11:08:38 +0000934 for (TemplateParameterList::const_iterator I = TPL->begin(), E = TPL->end();
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000935 I != E; ++I)
936 dumpDecl(*I);
937}
938
939void ASTDumper::dumpTemplateArgumentListInfo(
940 const TemplateArgumentListInfo &TALI) {
Richard Smithf7514452014-10-30 21:02:37 +0000941 for (unsigned i = 0, e = TALI.size(); i < e; ++i)
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000942 dumpTemplateArgumentLoc(TALI[i]);
943}
944
945void ASTDumper::dumpTemplateArgumentLoc(const TemplateArgumentLoc &A) {
946 dumpTemplateArgument(A.getArgument(), A.getSourceRange());
947}
948
949void ASTDumper::dumpTemplateArgumentList(const TemplateArgumentList &TAL) {
950 for (unsigned i = 0, e = TAL.size(); i < e; ++i)
951 dumpTemplateArgument(TAL[i]);
952}
953
954void ASTDumper::dumpTemplateArgument(const TemplateArgument &A, SourceRange R) {
Richard Smithf7514452014-10-30 21:02:37 +0000955 dumpChild([=] {
956 OS << "TemplateArgument";
957 if (R.isValid())
958 dumpSourceRange(R);
Alexander Kornienko90ff6072012-12-20 02:09:13 +0000959
Richard Smithf7514452014-10-30 21:02:37 +0000960 switch (A.getKind()) {
961 case TemplateArgument::Null:
962 OS << " null";
963 break;
964 case TemplateArgument::Type:
965 OS << " type";
966 dumpType(A.getAsType());
967 break;
968 case TemplateArgument::Declaration:
969 OS << " decl";
970 dumpDeclRef(A.getAsDecl());
971 break;
972 case TemplateArgument::NullPtr:
973 OS << " nullptr";
974 break;
975 case TemplateArgument::Integral:
976 OS << " integral " << A.getAsIntegral();
977 break;
978 case TemplateArgument::Template:
979 OS << " template ";
980 A.getAsTemplate().dump(OS);
981 break;
982 case TemplateArgument::TemplateExpansion:
983 OS << " template expansion";
984 A.getAsTemplateOrTemplatePattern().dump(OS);
985 break;
986 case TemplateArgument::Expression:
987 OS << " expr";
988 dumpStmt(A.getAsExpr());
989 break;
990 case TemplateArgument::Pack:
991 OS << " pack";
992 for (TemplateArgument::pack_iterator I = A.pack_begin(), E = A.pack_end();
993 I != E; ++I)
994 dumpTemplateArgument(*I);
995 break;
Richard Trieude5cc7d2013-01-31 01:44:26 +0000996 }
Richard Smithf7514452014-10-30 21:02:37 +0000997 });
Alexander Kornienko61c93bd2012-12-11 15:28:09 +0000998}
999
Chris Lattner11e30d32007-08-30 06:17:34 +00001000//===----------------------------------------------------------------------===//
Douglas Gregor85f3f952015-07-07 03:57:15 +00001001// Objective-C Utilities
1002//===----------------------------------------------------------------------===//
1003void ASTDumper::dumpObjCTypeParamList(const ObjCTypeParamList *typeParams) {
1004 if (!typeParams)
1005 return;
1006
1007 for (auto typeParam : *typeParams) {
1008 dumpDecl(typeParam);
1009 }
1010}
1011
1012//===----------------------------------------------------------------------===//
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001013// Decl dumping methods.
Chris Lattnercbe4f772007-08-08 22:51:59 +00001014//===----------------------------------------------------------------------===//
1015
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001016void ASTDumper::dumpDecl(const Decl *D) {
Richard Smithf7514452014-10-30 21:02:37 +00001017 dumpChild([=] {
1018 if (!D) {
1019 ColorScope Color(*this, NullColor);
1020 OS << "<<<NULL>>>";
1021 return;
1022 }
Mike Stump11289f42009-09-09 15:08:12 +00001023
Richard Smithf7514452014-10-30 21:02:37 +00001024 {
1025 ColorScope Color(*this, DeclKindNameColor);
1026 OS << D->getDeclKindName() << "Decl";
1027 }
1028 dumpPointer(D);
1029 if (D->getLexicalDeclContext() != D->getDeclContext())
1030 OS << " parent " << cast<Decl>(D->getDeclContext());
1031 dumpPreviousDecl(OS, D);
1032 dumpSourceRange(D->getSourceRange());
1033 OS << ' ';
1034 dumpLocation(D->getLocation());
Richard Smith42413142015-05-15 20:05:43 +00001035 if (Module *M = D->getImportedOwningModule())
Richard Smithf7514452014-10-30 21:02:37 +00001036 OS << " in " << M->getFullModuleName();
Richard Smith42413142015-05-15 20:05:43 +00001037 else if (Module *M = D->getLocalOwningModule())
1038 OS << " in (local) " << M->getFullModuleName();
Richard Smitha2eb4092015-06-22 18:47:01 +00001039 if (auto *ND = dyn_cast<NamedDecl>(D))
1040 for (Module *M : D->getASTContext().getModulesWithMergedDefinition(
1041 const_cast<NamedDecl *>(ND)))
1042 dumpChild([=] { OS << "also in " << M->getFullModuleName(); });
Richard Smithf7514452014-10-30 21:02:37 +00001043 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D))
1044 if (ND->isHidden())
1045 OS << " hidden";
1046 if (D->isImplicit())
1047 OS << " implicit";
1048 if (D->isUsed())
1049 OS << " used";
1050 else if (D->isThisDeclarationReferenced())
1051 OS << " referenced";
1052 if (D->isInvalidDecl())
1053 OS << " invalid";
Hans Wennborg76b00532014-12-05 22:38:57 +00001054 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
1055 if (FD->isConstexpr())
1056 OS << " constexpr";
1057
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001058
Richard Smithf7514452014-10-30 21:02:37 +00001059 ConstDeclVisitor<ASTDumper>::Visit(D);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001060
Richard Smithf7514452014-10-30 21:02:37 +00001061 for (Decl::attr_iterator I = D->attr_begin(), E = D->attr_end(); I != E;
1062 ++I)
1063 dumpAttr(*I);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001064
Richard Smithf7514452014-10-30 21:02:37 +00001065 if (const FullComment *Comment =
1066 D->getASTContext().getLocalCommentForDeclUncached(D))
1067 dumpFullComment(Comment);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001068
Richard Smithf7514452014-10-30 21:02:37 +00001069 // Decls within functions are visited by the body.
1070 if (!isa<FunctionDecl>(*D) && !isa<ObjCMethodDecl>(*D) &&
1071 hasNodes(dyn_cast<DeclContext>(D)))
1072 dumpDeclContext(cast<DeclContext>(D));
1073 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001074}
1075
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001076void ASTDumper::VisitLabelDecl(const LabelDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001077 dumpName(D);
1078}
1079
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001080void ASTDumper::VisitTypedefDecl(const TypedefDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001081 dumpName(D);
1082 dumpType(D->getUnderlyingType());
1083 if (D->isModulePrivate())
1084 OS << " __module_private__";
Richard Smithba3a4f92016-01-12 21:59:26 +00001085 dumpTypeAsChild(D->getUnderlyingType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001086}
1087
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001088void ASTDumper::VisitEnumDecl(const EnumDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001089 if (D->isScoped()) {
1090 if (D->isScopedUsingClassTag())
1091 OS << " class";
1092 else
1093 OS << " struct";
1094 }
1095 dumpName(D);
1096 if (D->isModulePrivate())
1097 OS << " __module_private__";
1098 if (D->isFixed())
1099 dumpType(D->getIntegerType());
1100}
1101
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001102void ASTDumper::VisitRecordDecl(const RecordDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001103 OS << ' ' << D->getKindName();
1104 dumpName(D);
1105 if (D->isModulePrivate())
1106 OS << " __module_private__";
Richard Smith99bc1b92013-08-30 05:32:29 +00001107 if (D->isCompleteDefinition())
1108 OS << " definition";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001109}
1110
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001111void ASTDumper::VisitEnumConstantDecl(const EnumConstantDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001112 dumpName(D);
1113 dumpType(D->getType());
Richard Smithf7514452014-10-30 21:02:37 +00001114 if (const Expr *Init = D->getInitExpr())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001115 dumpStmt(Init);
1116}
1117
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001118void ASTDumper::VisitIndirectFieldDecl(const IndirectFieldDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001119 dumpName(D);
1120 dumpType(D->getType());
Richard Smithdcc2c452014-03-17 23:00:06 +00001121
Richard Smith8aa49222014-03-18 00:35:12 +00001122 for (auto *Child : D->chain())
Richard Smithf7514452014-10-30 21:02:37 +00001123 dumpDeclRef(Child);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001124}
1125
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001126void ASTDumper::VisitFunctionDecl(const FunctionDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001127 dumpName(D);
1128 dumpType(D->getType());
1129
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001130 StorageClass SC = D->getStorageClass();
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001131 if (SC != SC_None)
1132 OS << ' ' << VarDecl::getStorageClassSpecifierString(SC);
1133 if (D->isInlineSpecified())
1134 OS << " inline";
1135 if (D->isVirtualAsWritten())
1136 OS << " virtual";
1137 if (D->isModulePrivate())
1138 OS << " __module_private__";
1139
1140 if (D->isPure())
1141 OS << " pure";
Richard Smith5a2e6b92016-11-21 23:43:54 +00001142 if (D->isDefaulted()) {
1143 OS << " default";
1144 if (D->isDeleted())
1145 OS << "_delete";
1146 }
1147 if (D->isDeletedAsWritten())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001148 OS << " delete";
Richard Smith5a2e6b92016-11-21 23:43:54 +00001149 if (D->isTrivial())
1150 OS << " trivial";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001151
Richard Smithadaa0152013-05-17 02:09:46 +00001152 if (const FunctionProtoType *FPT = D->getType()->getAs<FunctionProtoType>()) {
1153 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00001154 switch (EPI.ExceptionSpec.Type) {
Richard Smithadaa0152013-05-17 02:09:46 +00001155 default: break;
1156 case EST_Unevaluated:
Richard Smith8acb4282014-07-31 21:57:55 +00001157 OS << " noexcept-unevaluated " << EPI.ExceptionSpec.SourceDecl;
Richard Smithadaa0152013-05-17 02:09:46 +00001158 break;
1159 case EST_Uninstantiated:
Richard Smith8acb4282014-07-31 21:57:55 +00001160 OS << " noexcept-uninstantiated " << EPI.ExceptionSpec.SourceTemplate;
Richard Smithadaa0152013-05-17 02:09:46 +00001161 break;
1162 }
1163 }
1164
Richard Smithf7514452014-10-30 21:02:37 +00001165 if (const FunctionTemplateSpecializationInfo *FTSI =
1166 D->getTemplateSpecializationInfo())
Richard Trieude5cc7d2013-01-31 01:44:26 +00001167 dumpTemplateArgumentList(*FTSI->TemplateArguments);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001168
Richard Smith8a639892015-01-24 01:07:20 +00001169 if (!D->param_begin() && D->getNumParams())
1170 dumpChild([=] { OS << "<<NULL params x " << D->getNumParams() << ">>"; });
1171 else
David Majnemera3debed2016-06-24 05:33:44 +00001172 for (const ParmVarDecl *Parameter : D->parameters())
1173 dumpDecl(Parameter);
Richard Smithf7514452014-10-30 21:02:37 +00001174
1175 if (const CXXConstructorDecl *C = dyn_cast<CXXConstructorDecl>(D))
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001176 for (CXXConstructorDecl::init_const_iterator I = C->init_begin(),
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001177 E = C->init_end();
Richard Smithf7514452014-10-30 21:02:37 +00001178 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001179 dumpCXXCtorInitializer(*I);
1180
Richard Smithf7514452014-10-30 21:02:37 +00001181 if (D->doesThisDeclarationHaveABody())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001182 dumpStmt(D->getBody());
1183}
1184
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001185void ASTDumper::VisitFieldDecl(const FieldDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001186 dumpName(D);
1187 dumpType(D->getType());
1188 if (D->isMutable())
1189 OS << " mutable";
1190 if (D->isModulePrivate())
1191 OS << " __module_private__";
Richard Trieude5cc7d2013-01-31 01:44:26 +00001192
Richard Smithf7514452014-10-30 21:02:37 +00001193 if (D->isBitField())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001194 dumpStmt(D->getBitWidth());
Richard Smithf7514452014-10-30 21:02:37 +00001195 if (Expr *Init = D->getInClassInitializer())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001196 dumpStmt(Init);
1197}
1198
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001199void ASTDumper::VisitVarDecl(const VarDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001200 dumpName(D);
1201 dumpType(D->getType());
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001202 StorageClass SC = D->getStorageClass();
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001203 if (SC != SC_None)
1204 OS << ' ' << VarDecl::getStorageClassSpecifierString(SC);
Richard Smithfd3834f2013-04-13 02:43:54 +00001205 switch (D->getTLSKind()) {
1206 case VarDecl::TLS_None: break;
1207 case VarDecl::TLS_Static: OS << " tls"; break;
1208 case VarDecl::TLS_Dynamic: OS << " tls_dynamic"; break;
1209 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001210 if (D->isModulePrivate())
1211 OS << " __module_private__";
1212 if (D->isNRVOVariable())
1213 OS << " nrvo";
Richard Smith62f19e72016-06-25 00:15:56 +00001214 if (D->isInline())
1215 OS << " inline";
1216 if (D->isConstexpr())
1217 OS << " constexpr";
Richard Trieude5cc7d2013-01-31 01:44:26 +00001218 if (D->hasInit()) {
Richard Smithd9967cc2014-07-10 22:54:03 +00001219 switch (D->getInitStyle()) {
1220 case VarDecl::CInit: OS << " cinit"; break;
1221 case VarDecl::CallInit: OS << " callinit"; break;
1222 case VarDecl::ListInit: OS << " listinit"; break;
1223 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001224 dumpStmt(D->getInit());
Richard Trieude5cc7d2013-01-31 01:44:26 +00001225 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001226}
1227
Richard Smithbdb84f32016-07-22 23:36:59 +00001228void ASTDumper::VisitDecompositionDecl(const DecompositionDecl *D) {
1229 VisitVarDecl(D);
1230 for (auto *B : D->bindings())
1231 dumpDecl(B);
1232}
1233
Richard Smith7873de02016-08-11 22:25:46 +00001234void ASTDumper::VisitBindingDecl(const BindingDecl *D) {
1235 dumpName(D);
1236 dumpType(D->getType());
1237 if (auto *E = D->getBinding())
1238 dumpStmt(E);
1239}
1240
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001241void ASTDumper::VisitFileScopeAsmDecl(const FileScopeAsmDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001242 dumpStmt(D->getAsmString());
1243}
1244
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001245void ASTDumper::VisitImportDecl(const ImportDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001246 OS << ' ' << D->getImportedModule()->getFullModuleName();
1247}
1248
Nico Weber66220292016-03-02 17:28:48 +00001249void ASTDumper::VisitPragmaCommentDecl(const PragmaCommentDecl *D) {
1250 OS << ' ';
1251 switch (D->getCommentKind()) {
1252 case PCK_Unknown: llvm_unreachable("unexpected pragma comment kind");
1253 case PCK_Compiler: OS << "compiler"; break;
1254 case PCK_ExeStr: OS << "exestr"; break;
1255 case PCK_Lib: OS << "lib"; break;
1256 case PCK_Linker: OS << "linker"; break;
1257 case PCK_User: OS << "user"; break;
1258 }
1259 StringRef Arg = D->getArg();
1260 if (!Arg.empty())
1261 OS << " \"" << Arg << "\"";
1262}
1263
Nico Webercbbaeb12016-03-02 19:28:54 +00001264void ASTDumper::VisitPragmaDetectMismatchDecl(
1265 const PragmaDetectMismatchDecl *D) {
1266 OS << " \"" << D->getName() << "\" \"" << D->getValue() << "\"";
1267}
1268
Alexey Bataev958b9e72016-03-31 09:30:50 +00001269void ASTDumper::VisitCapturedDecl(const CapturedDecl *D) {
1270 dumpStmt(D->getBody());
1271}
1272
1273//===----------------------------------------------------------------------===//
1274// OpenMP Declarations
1275//===----------------------------------------------------------------------===//
1276
1277void ASTDumper::VisitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D) {
1278 for (auto *E : D->varlists())
1279 dumpStmt(E);
1280}
1281
1282void ASTDumper::VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D) {
1283 dumpName(D);
1284 dumpType(D->getType());
1285 OS << " combiner";
1286 dumpStmt(D->getCombiner());
1287 if (auto *Initializer = D->getInitializer()) {
1288 OS << " initializer";
1289 dumpStmt(Initializer);
1290 }
1291}
1292
1293void ASTDumper::VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) {
1294 dumpName(D);
1295 dumpType(D->getType());
1296 dumpStmt(D->getInit());
1297}
Nico Webercbbaeb12016-03-02 19:28:54 +00001298
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001299//===----------------------------------------------------------------------===//
1300// C++ Declarations
1301//===----------------------------------------------------------------------===//
1302
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001303void ASTDumper::VisitNamespaceDecl(const NamespaceDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001304 dumpName(D);
1305 if (D->isInline())
1306 OS << " inline";
1307 if (!D->isOriginalNamespace())
1308 dumpDeclRef(D->getOriginalNamespace(), "original");
1309}
1310
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001311void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001312 OS << ' ';
1313 dumpBareDeclRef(D->getNominatedNamespace());
1314}
1315
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001316void ASTDumper::VisitNamespaceAliasDecl(const NamespaceAliasDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001317 dumpName(D);
1318 dumpDeclRef(D->getAliasedNamespace());
1319}
1320
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001321void ASTDumper::VisitTypeAliasDecl(const TypeAliasDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001322 dumpName(D);
1323 dumpType(D->getUnderlyingType());
Richard Smithba3a4f92016-01-12 21:59:26 +00001324 dumpTypeAsChild(D->getUnderlyingType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001325}
1326
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001327void ASTDumper::VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001328 dumpName(D);
1329 dumpTemplateParameters(D->getTemplateParameters());
1330 dumpDecl(D->getTemplatedDecl());
1331}
1332
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001333void ASTDumper::VisitCXXRecordDecl(const CXXRecordDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001334 VisitRecordDecl(D);
1335 if (!D->isCompleteDefinition())
1336 return;
1337
Aaron Ballman574705e2014-03-13 15:41:46 +00001338 for (const auto &I : D->bases()) {
Richard Smithf7514452014-10-30 21:02:37 +00001339 dumpChild([=] {
1340 if (I.isVirtual())
1341 OS << "virtual ";
1342 dumpAccessSpecifier(I.getAccessSpecifier());
1343 dumpType(I.getType());
1344 if (I.isPackExpansion())
1345 OS << "...";
1346 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001347 }
1348}
1349
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001350void ASTDumper::VisitStaticAssertDecl(const StaticAssertDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001351 dumpStmt(D->getAssertExpr());
1352 dumpStmt(D->getMessage());
1353}
1354
Richard Smithcbdf7332014-03-18 02:07:28 +00001355template<typename SpecializationDecl>
Richard Smithf7514452014-10-30 21:02:37 +00001356void ASTDumper::VisitTemplateDeclSpecialization(const SpecializationDecl *D,
Richard Smithcbdf7332014-03-18 02:07:28 +00001357 bool DumpExplicitInst,
1358 bool DumpRefOnly) {
1359 bool DumpedAny = false;
1360 for (auto *RedeclWithBadType : D->redecls()) {
1361 // FIXME: The redecls() range sometimes has elements of a less-specific
1362 // type. (In particular, ClassTemplateSpecializationDecl::redecls() gives
1363 // us TagDecls, and should give CXXRecordDecls).
1364 auto *Redecl = dyn_cast<SpecializationDecl>(RedeclWithBadType);
1365 if (!Redecl) {
1366 // Found the injected-class-name for a class template. This will be dumped
1367 // as part of its surrounding class so we don't need to dump it here.
1368 assert(isa<CXXRecordDecl>(RedeclWithBadType) &&
1369 "expected an injected-class-name");
1370 continue;
1371 }
1372
1373 switch (Redecl->getTemplateSpecializationKind()) {
1374 case TSK_ExplicitInstantiationDeclaration:
1375 case TSK_ExplicitInstantiationDefinition:
1376 if (!DumpExplicitInst)
1377 break;
1378 // Fall through.
1379 case TSK_Undeclared:
1380 case TSK_ImplicitInstantiation:
Richard Smithf7514452014-10-30 21:02:37 +00001381 if (DumpRefOnly)
1382 dumpDeclRef(Redecl);
1383 else
1384 dumpDecl(Redecl);
Richard Smithcbdf7332014-03-18 02:07:28 +00001385 DumpedAny = true;
1386 break;
1387 case TSK_ExplicitSpecialization:
1388 break;
1389 }
1390 }
1391
1392 // Ensure we dump at least one decl for each specialization.
1393 if (!DumpedAny)
Richard Smithf7514452014-10-30 21:02:37 +00001394 dumpDeclRef(D);
Richard Smithcbdf7332014-03-18 02:07:28 +00001395}
1396
Richard Smith20ade552014-03-17 23:34:53 +00001397template<typename TemplateDecl>
1398void ASTDumper::VisitTemplateDecl(const TemplateDecl *D,
1399 bool DumpExplicitInst) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001400 dumpName(D);
1401 dumpTemplateParameters(D->getTemplateParameters());
Richard Smithdcc2c452014-03-17 23:00:06 +00001402
Richard Smithf7514452014-10-30 21:02:37 +00001403 dumpDecl(D->getTemplatedDecl());
Richard Smithdcc2c452014-03-17 23:00:06 +00001404
Richard Smithcbdf7332014-03-18 02:07:28 +00001405 for (auto *Child : D->specializations())
Richard Smithf7514452014-10-30 21:02:37 +00001406 VisitTemplateDeclSpecialization(Child, DumpExplicitInst,
Richard Smithcbdf7332014-03-18 02:07:28 +00001407 !D->isCanonicalDecl());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001408}
1409
Richard Smith20ade552014-03-17 23:34:53 +00001410void ASTDumper::VisitFunctionTemplateDecl(const FunctionTemplateDecl *D) {
1411 // FIXME: We don't add a declaration of a function template specialization
1412 // to its context when it's explicitly instantiated, so dump explicit
1413 // instantiations when we dump the template itself.
1414 VisitTemplateDecl(D, true);
1415}
1416
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001417void ASTDumper::VisitClassTemplateDecl(const ClassTemplateDecl *D) {
Richard Smith20ade552014-03-17 23:34:53 +00001418 VisitTemplateDecl(D, false);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001419}
1420
1421void ASTDumper::VisitClassTemplateSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001422 const ClassTemplateSpecializationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001423 VisitCXXRecordDecl(D);
1424 dumpTemplateArgumentList(D->getTemplateArgs());
1425}
1426
1427void ASTDumper::VisitClassTemplatePartialSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001428 const ClassTemplatePartialSpecializationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001429 VisitClassTemplateSpecializationDecl(D);
1430 dumpTemplateParameters(D->getTemplateParameters());
1431}
1432
1433void ASTDumper::VisitClassScopeFunctionSpecializationDecl(
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001434 const ClassScopeFunctionSpecializationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001435 dumpDeclRef(D->getSpecialization());
1436 if (D->hasExplicitTemplateArgs())
1437 dumpTemplateArgumentListInfo(D->templateArgs());
1438}
1439
Richard Smithd25789a2013-09-18 01:36:02 +00001440void ASTDumper::VisitVarTemplateDecl(const VarTemplateDecl *D) {
Richard Smith20ade552014-03-17 23:34:53 +00001441 VisitTemplateDecl(D, false);
Richard Smithd25789a2013-09-18 01:36:02 +00001442}
1443
David Majnemerd9b1a4f2015-11-04 03:40:30 +00001444void ASTDumper::VisitBuiltinTemplateDecl(const BuiltinTemplateDecl *D) {
1445 dumpName(D);
1446 dumpTemplateParameters(D->getTemplateParameters());
1447}
1448
Richard Smithd25789a2013-09-18 01:36:02 +00001449void ASTDumper::VisitVarTemplateSpecializationDecl(
1450 const VarTemplateSpecializationDecl *D) {
1451 dumpTemplateArgumentList(D->getTemplateArgs());
1452 VisitVarDecl(D);
1453}
1454
1455void ASTDumper::VisitVarTemplatePartialSpecializationDecl(
1456 const VarTemplatePartialSpecializationDecl *D) {
1457 dumpTemplateParameters(D->getTemplateParameters());
1458 VisitVarTemplateSpecializationDecl(D);
1459}
1460
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001461void ASTDumper::VisitTemplateTypeParmDecl(const TemplateTypeParmDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001462 if (D->wasDeclaredWithTypename())
1463 OS << " typename";
1464 else
1465 OS << " class";
1466 if (D->isParameterPack())
1467 OS << " ...";
1468 dumpName(D);
Richard Smithf7514452014-10-30 21:02:37 +00001469 if (D->hasDefaultArgument())
Richard Smithecf74ff2014-03-23 20:50:39 +00001470 dumpTemplateArgument(D->getDefaultArgument());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001471}
1472
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001473void ASTDumper::VisitNonTypeTemplateParmDecl(const NonTypeTemplateParmDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001474 dumpType(D->getType());
1475 if (D->isParameterPack())
1476 OS << " ...";
1477 dumpName(D);
Richard Smithf7514452014-10-30 21:02:37 +00001478 if (D->hasDefaultArgument())
Richard Smithecf74ff2014-03-23 20:50:39 +00001479 dumpTemplateArgument(D->getDefaultArgument());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001480}
1481
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001482void ASTDumper::VisitTemplateTemplateParmDecl(
1483 const TemplateTemplateParmDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001484 if (D->isParameterPack())
1485 OS << " ...";
1486 dumpName(D);
1487 dumpTemplateParameters(D->getTemplateParameters());
Richard Smithf7514452014-10-30 21:02:37 +00001488 if (D->hasDefaultArgument())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001489 dumpTemplateArgumentLoc(D->getDefaultArgument());
1490}
1491
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001492void ASTDumper::VisitUsingDecl(const UsingDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001493 OS << ' ';
Dawn Perchikddd03bf2015-12-05 22:37:55 +00001494 if (D->getQualifier())
1495 D->getQualifier()->print(OS, D->getASTContext().getPrintingPolicy());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001496 OS << D->getNameAsString();
1497}
1498
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001499void ASTDumper::VisitUnresolvedUsingTypenameDecl(
1500 const UnresolvedUsingTypenameDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001501 OS << ' ';
Dawn Perchikddd03bf2015-12-05 22:37:55 +00001502 if (D->getQualifier())
1503 D->getQualifier()->print(OS, D->getASTContext().getPrintingPolicy());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001504 OS << D->getNameAsString();
1505}
1506
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001507void ASTDumper::VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001508 OS << ' ';
Dawn Perchikddd03bf2015-12-05 22:37:55 +00001509 if (D->getQualifier())
1510 D->getQualifier()->print(OS, D->getASTContext().getPrintingPolicy());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001511 OS << D->getNameAsString();
1512 dumpType(D->getType());
1513}
1514
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001515void ASTDumper::VisitUsingShadowDecl(const UsingShadowDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001516 OS << ' ';
1517 dumpBareDeclRef(D->getTargetDecl());
Richard Smithba3a4f92016-01-12 21:59:26 +00001518 if (auto *TD = dyn_cast<TypeDecl>(D->getUnderlyingDecl()))
1519 dumpTypeAsChild(TD->getTypeForDecl());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001520}
1521
Richard Smith5179eb72016-06-28 19:03:57 +00001522void ASTDumper::VisitConstructorUsingShadowDecl(
1523 const ConstructorUsingShadowDecl *D) {
1524 if (D->constructsVirtualBase())
1525 OS << " virtual";
1526
1527 dumpChild([=] {
1528 OS << "target ";
1529 dumpBareDeclRef(D->getTargetDecl());
1530 });
1531
1532 dumpChild([=] {
1533 OS << "nominated ";
1534 dumpBareDeclRef(D->getNominatedBaseClass());
1535 OS << ' ';
1536 dumpBareDeclRef(D->getNominatedBaseClassShadowDecl());
1537 });
1538
1539 dumpChild([=] {
1540 OS << "constructed ";
1541 dumpBareDeclRef(D->getConstructedBaseClass());
1542 OS << ' ';
1543 dumpBareDeclRef(D->getConstructedBaseClassShadowDecl());
1544 });
1545}
1546
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001547void ASTDumper::VisitLinkageSpecDecl(const LinkageSpecDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001548 switch (D->getLanguage()) {
1549 case LinkageSpecDecl::lang_c: OS << " C"; break;
1550 case LinkageSpecDecl::lang_cxx: OS << " C++"; break;
1551 }
1552}
1553
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001554void ASTDumper::VisitAccessSpecDecl(const AccessSpecDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001555 OS << ' ';
1556 dumpAccessSpecifier(D->getAccess());
1557}
1558
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001559void ASTDumper::VisitFriendDecl(const FriendDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001560 if (TypeSourceInfo *T = D->getFriendType())
1561 dumpType(T->getType());
1562 else
1563 dumpDecl(D->getFriendDecl());
1564}
1565
1566//===----------------------------------------------------------------------===//
1567// Obj-C Declarations
1568//===----------------------------------------------------------------------===//
1569
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001570void ASTDumper::VisitObjCIvarDecl(const ObjCIvarDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001571 dumpName(D);
1572 dumpType(D->getType());
1573 if (D->getSynthesize())
1574 OS << " synthesize";
1575
1576 switch (D->getAccessControl()) {
1577 case ObjCIvarDecl::None:
1578 OS << " none";
1579 break;
1580 case ObjCIvarDecl::Private:
1581 OS << " private";
1582 break;
1583 case ObjCIvarDecl::Protected:
1584 OS << " protected";
1585 break;
1586 case ObjCIvarDecl::Public:
1587 OS << " public";
1588 break;
1589 case ObjCIvarDecl::Package:
1590 OS << " package";
1591 break;
1592 }
1593}
1594
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001595void ASTDumper::VisitObjCMethodDecl(const ObjCMethodDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001596 if (D->isInstanceMethod())
1597 OS << " -";
1598 else
1599 OS << " +";
1600 dumpName(D);
Alp Toker314cc812014-01-25 16:55:45 +00001601 dumpType(D->getReturnType());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001602
Richard Trieude5cc7d2013-01-31 01:44:26 +00001603 if (D->isThisDeclarationADefinition()) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001604 dumpDeclContext(D);
Richard Trieude5cc7d2013-01-31 01:44:26 +00001605 } else {
David Majnemera3debed2016-06-24 05:33:44 +00001606 for (const ParmVarDecl *Parameter : D->parameters())
1607 dumpDecl(Parameter);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001608 }
1609
Richard Smithf7514452014-10-30 21:02:37 +00001610 if (D->isVariadic())
1611 dumpChild([=] { OS << "..."; });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001612
Richard Smithf7514452014-10-30 21:02:37 +00001613 if (D->hasBody())
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001614 dumpStmt(D->getBody());
1615}
1616
Douglas Gregor85f3f952015-07-07 03:57:15 +00001617void ASTDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) {
1618 dumpName(D);
Douglas Gregor1ac1b632015-07-07 03:58:54 +00001619 switch (D->getVariance()) {
1620 case ObjCTypeParamVariance::Invariant:
1621 break;
1622
1623 case ObjCTypeParamVariance::Covariant:
1624 OS << " covariant";
1625 break;
1626
1627 case ObjCTypeParamVariance::Contravariant:
1628 OS << " contravariant";
1629 break;
1630 }
1631
Douglas Gregor85f3f952015-07-07 03:57:15 +00001632 if (D->hasExplicitBound())
1633 OS << " bounded";
1634 dumpType(D->getUnderlyingType());
1635}
1636
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001637void ASTDumper::VisitObjCCategoryDecl(const ObjCCategoryDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001638 dumpName(D);
1639 dumpDeclRef(D->getClassInterface());
Douglas Gregor85f3f952015-07-07 03:57:15 +00001640 dumpObjCTypeParamList(D->getTypeParamList());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001641 dumpDeclRef(D->getImplementation());
1642 for (ObjCCategoryDecl::protocol_iterator I = D->protocol_begin(),
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001643 E = D->protocol_end();
Richard Smithf7514452014-10-30 21:02:37 +00001644 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001645 dumpDeclRef(*I);
1646}
1647
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001648void ASTDumper::VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001649 dumpName(D);
1650 dumpDeclRef(D->getClassInterface());
1651 dumpDeclRef(D->getCategoryDecl());
1652}
1653
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001654void ASTDumper::VisitObjCProtocolDecl(const ObjCProtocolDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001655 dumpName(D);
Richard Smithdcc2c452014-03-17 23:00:06 +00001656
Richard Smith7fcb35f2014-03-18 02:37:59 +00001657 for (auto *Child : D->protocols())
Richard Smithf7514452014-10-30 21:02:37 +00001658 dumpDeclRef(Child);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001659}
1660
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001661void ASTDumper::VisitObjCInterfaceDecl(const ObjCInterfaceDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001662 dumpName(D);
Douglas Gregor85f3f952015-07-07 03:57:15 +00001663 dumpObjCTypeParamList(D->getTypeParamListAsWritten());
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001664 dumpDeclRef(D->getSuperClass(), "super");
Richard Smithdcc2c452014-03-17 23:00:06 +00001665
Richard Smithf7514452014-10-30 21:02:37 +00001666 dumpDeclRef(D->getImplementation());
Richard Smith7fcb35f2014-03-18 02:37:59 +00001667 for (auto *Child : D->protocols())
Richard Smithf7514452014-10-30 21:02:37 +00001668 dumpDeclRef(Child);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001669}
1670
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001671void ASTDumper::VisitObjCImplementationDecl(const ObjCImplementationDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001672 dumpName(D);
1673 dumpDeclRef(D->getSuperClass(), "super");
1674 dumpDeclRef(D->getClassInterface());
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001675 for (ObjCImplementationDecl::init_const_iterator I = D->init_begin(),
1676 E = D->init_end();
Richard Smithf7514452014-10-30 21:02:37 +00001677 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001678 dumpCXXCtorInitializer(*I);
1679}
1680
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001681void ASTDumper::VisitObjCCompatibleAliasDecl(const ObjCCompatibleAliasDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001682 dumpName(D);
1683 dumpDeclRef(D->getClassInterface());
1684}
1685
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001686void ASTDumper::VisitObjCPropertyDecl(const ObjCPropertyDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001687 dumpName(D);
1688 dumpType(D->getType());
1689
1690 if (D->getPropertyImplementation() == ObjCPropertyDecl::Required)
1691 OS << " required";
1692 else if (D->getPropertyImplementation() == ObjCPropertyDecl::Optional)
1693 OS << " optional";
1694
1695 ObjCPropertyDecl::PropertyAttributeKind Attrs = D->getPropertyAttributes();
1696 if (Attrs != ObjCPropertyDecl::OBJC_PR_noattr) {
1697 if (Attrs & ObjCPropertyDecl::OBJC_PR_readonly)
1698 OS << " readonly";
1699 if (Attrs & ObjCPropertyDecl::OBJC_PR_assign)
1700 OS << " assign";
1701 if (Attrs & ObjCPropertyDecl::OBJC_PR_readwrite)
1702 OS << " readwrite";
1703 if (Attrs & ObjCPropertyDecl::OBJC_PR_retain)
1704 OS << " retain";
1705 if (Attrs & ObjCPropertyDecl::OBJC_PR_copy)
1706 OS << " copy";
1707 if (Attrs & ObjCPropertyDecl::OBJC_PR_nonatomic)
1708 OS << " nonatomic";
1709 if (Attrs & ObjCPropertyDecl::OBJC_PR_atomic)
1710 OS << " atomic";
1711 if (Attrs & ObjCPropertyDecl::OBJC_PR_weak)
1712 OS << " weak";
1713 if (Attrs & ObjCPropertyDecl::OBJC_PR_strong)
1714 OS << " strong";
1715 if (Attrs & ObjCPropertyDecl::OBJC_PR_unsafe_unretained)
1716 OS << " unsafe_unretained";
Manman Ren387ff7f2016-01-26 18:52:43 +00001717 if (Attrs & ObjCPropertyDecl::OBJC_PR_class)
1718 OS << " class";
Richard Smithf7514452014-10-30 21:02:37 +00001719 if (Attrs & ObjCPropertyDecl::OBJC_PR_getter)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001720 dumpDeclRef(D->getGetterMethodDecl(), "getter");
Richard Smithf7514452014-10-30 21:02:37 +00001721 if (Attrs & ObjCPropertyDecl::OBJC_PR_setter)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001722 dumpDeclRef(D->getSetterMethodDecl(), "setter");
1723 }
1724}
1725
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001726void ASTDumper::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001727 dumpName(D->getPropertyDecl());
1728 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
1729 OS << " synthesize";
1730 else
1731 OS << " dynamic";
1732 dumpDeclRef(D->getPropertyDecl());
1733 dumpDeclRef(D->getPropertyIvarDecl());
1734}
1735
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001736void ASTDumper::VisitBlockDecl(const BlockDecl *D) {
David Majnemer59f77922016-06-24 04:05:48 +00001737 for (auto I : D->parameters())
Aaron Ballmanb2b8b1d2014-03-07 16:09:59 +00001738 dumpDecl(I);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001739
Richard Smithf7514452014-10-30 21:02:37 +00001740 if (D->isVariadic())
1741 dumpChild([=]{ OS << "..."; });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001742
Richard Smithf7514452014-10-30 21:02:37 +00001743 if (D->capturesCXXThis())
1744 dumpChild([=]{ OS << "capture this"; });
1745
Aaron Ballman9371dd22014-03-14 18:34:04 +00001746 for (const auto &I : D->captures()) {
Richard Smithf7514452014-10-30 21:02:37 +00001747 dumpChild([=] {
1748 OS << "capture";
1749 if (I.isByRef())
1750 OS << " byref";
1751 if (I.isNested())
1752 OS << " nested";
1753 if (I.getVariable()) {
1754 OS << ' ';
1755 dumpBareDeclRef(I.getVariable());
1756 }
1757 if (I.hasCopyExpr())
1758 dumpStmt(I.getCopyExpr());
1759 });
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001760 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001761 dumpStmt(D->getBody());
Chris Lattnercbe4f772007-08-08 22:51:59 +00001762}
1763
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001764//===----------------------------------------------------------------------===//
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001765// Stmt dumping methods.
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001766//===----------------------------------------------------------------------===//
1767
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001768void ASTDumper::dumpStmt(const Stmt *S) {
Richard Smithf7514452014-10-30 21:02:37 +00001769 dumpChild([=] {
1770 if (!S) {
1771 ColorScope Color(*this, NullColor);
1772 OS << "<<<NULL>>>";
1773 return;
1774 }
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001775
Richard Smithf7514452014-10-30 21:02:37 +00001776 if (const DeclStmt *DS = dyn_cast<DeclStmt>(S)) {
1777 VisitDeclStmt(DS);
1778 return;
1779 }
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001780
Richard Smithf7514452014-10-30 21:02:37 +00001781 ConstStmtVisitor<ASTDumper>::Visit(S);
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001782
Benjamin Kramer642f1732015-07-02 21:03:14 +00001783 for (const Stmt *SubStmt : S->children())
1784 dumpStmt(SubStmt);
Richard Smithf7514452014-10-30 21:02:37 +00001785 });
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001786}
1787
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001788void ASTDumper::VisitStmt(const Stmt *Node) {
Richard Trieud215b8d2013-01-26 01:31:20 +00001789 {
1790 ColorScope Color(*this, StmtColor);
1791 OS << Node->getStmtClassName();
1792 }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001793 dumpPointer(Node);
1794 dumpSourceRange(Node->getSourceRange());
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001795}
1796
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001797void ASTDumper::VisitDeclStmt(const DeclStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001798 VisitStmt(Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001799 for (DeclStmt::const_decl_iterator I = Node->decl_begin(),
1800 E = Node->decl_end();
Richard Smithf7514452014-10-30 21:02:37 +00001801 I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001802 dumpDecl(*I);
Ted Kremenek433a4922007-12-12 06:59:42 +00001803}
1804
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001805void ASTDumper::VisitAttributedStmt(const AttributedStmt *Node) {
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001806 VisitStmt(Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001807 for (ArrayRef<const Attr *>::iterator I = Node->getAttrs().begin(),
1808 E = Node->getAttrs().end();
Richard Smithf7514452014-10-30 21:02:37 +00001809 I != E; ++I)
Alexander Kornienko5bc364e2013-01-07 17:53:08 +00001810 dumpAttr(*I);
1811}
1812
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001813void ASTDumper::VisitLabelStmt(const LabelStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001814 VisitStmt(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00001815 OS << " '" << Node->getName() << "'";
Chris Lattnercbe4f772007-08-08 22:51:59 +00001816}
1817
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001818void ASTDumper::VisitGotoStmt(const GotoStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001819 VisitStmt(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001820 OS << " '" << Node->getLabel()->getName() << "'";
1821 dumpPointer(Node->getLabel());
Chris Lattnercbe4f772007-08-08 22:51:59 +00001822}
1823
Pavel Labath1ef83422013-09-04 14:35:00 +00001824void ASTDumper::VisitCXXCatchStmt(const CXXCatchStmt *Node) {
1825 VisitStmt(Node);
1826 dumpDecl(Node->getExceptionDecl());
1827}
1828
Alexey Bataev958b9e72016-03-31 09:30:50 +00001829void ASTDumper::VisitCapturedStmt(const CapturedStmt *Node) {
1830 VisitStmt(Node);
1831 dumpDecl(Node->getCapturedDecl());
1832}
1833
1834//===----------------------------------------------------------------------===//
1835// OpenMP dumping methods.
1836//===----------------------------------------------------------------------===//
1837
1838void ASTDumper::VisitOMPExecutableDirective(
1839 const OMPExecutableDirective *Node) {
1840 VisitStmt(Node);
1841 for (auto *C : Node->clauses()) {
1842 dumpChild([=] {
1843 if (!C) {
1844 ColorScope Color(*this, NullColor);
1845 OS << "<<<NULL>>> OMPClause";
1846 return;
1847 }
1848 {
1849 ColorScope Color(*this, AttrColor);
1850 StringRef ClauseName(getOpenMPClauseName(C->getClauseKind()));
1851 OS << "OMP" << ClauseName.substr(/*Start=*/0, /*N=*/1).upper()
1852 << ClauseName.drop_front() << "Clause";
1853 }
1854 dumpPointer(C);
1855 dumpSourceRange(SourceRange(C->getLocStart(), C->getLocEnd()));
1856 if (C->isImplicit())
1857 OS << " <implicit>";
1858 for (auto *S : C->children())
1859 dumpStmt(S);
1860 });
1861 }
1862}
1863
Chris Lattnercbe4f772007-08-08 22:51:59 +00001864//===----------------------------------------------------------------------===//
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001865// Expr dumping methods.
Chris Lattnercbe4f772007-08-08 22:51:59 +00001866//===----------------------------------------------------------------------===//
1867
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001868void ASTDumper::VisitExpr(const Expr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001869 VisitStmt(Node);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001870 dumpType(Node->getType());
1871
Richard Trieud215b8d2013-01-26 01:31:20 +00001872 {
1873 ColorScope Color(*this, ValueKindColor);
1874 switch (Node->getValueKind()) {
1875 case VK_RValue:
1876 break;
1877 case VK_LValue:
1878 OS << " lvalue";
1879 break;
1880 case VK_XValue:
1881 OS << " xvalue";
1882 break;
1883 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001884 }
1885
Richard Trieud215b8d2013-01-26 01:31:20 +00001886 {
1887 ColorScope Color(*this, ObjectKindColor);
1888 switch (Node->getObjectKind()) {
1889 case OK_Ordinary:
1890 break;
1891 case OK_BitField:
1892 OS << " bitfield";
1893 break;
1894 case OK_ObjCProperty:
1895 OS << " objcproperty";
1896 break;
1897 case OK_ObjCSubscript:
1898 OS << " objcsubscript";
1899 break;
1900 case OK_VectorComponent:
1901 OS << " vectorcomponent";
1902 break;
1903 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001904 }
Chris Lattnercbe4f772007-08-08 22:51:59 +00001905}
1906
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001907static void dumpBasePath(raw_ostream &OS, const CastExpr *Node) {
John McCallcf142162010-08-07 06:22:56 +00001908 if (Node->path_empty())
Anders Carlssona70cff62010-04-24 19:06:50 +00001909 return;
1910
1911 OS << " (";
1912 bool First = true;
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001913 for (CastExpr::path_const_iterator I = Node->path_begin(),
1914 E = Node->path_end();
1915 I != E; ++I) {
Anders Carlssona70cff62010-04-24 19:06:50 +00001916 const CXXBaseSpecifier *Base = *I;
1917 if (!First)
1918 OS << " -> ";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001919
Anders Carlssona70cff62010-04-24 19:06:50 +00001920 const CXXRecordDecl *RD =
1921 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001922
Anders Carlssona70cff62010-04-24 19:06:50 +00001923 if (Base->isVirtual())
1924 OS << "virtual ";
1925 OS << RD->getName();
1926 First = false;
1927 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001928
Anders Carlssona70cff62010-04-24 19:06:50 +00001929 OS << ')';
1930}
1931
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001932void ASTDumper::VisitCastExpr(const CastExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001933 VisitExpr(Node);
Richard Trieud215b8d2013-01-26 01:31:20 +00001934 OS << " <";
1935 {
1936 ColorScope Color(*this, CastColor);
1937 OS << Node->getCastKindName();
1938 }
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001939 dumpBasePath(OS, Node);
Anders Carlssona70cff62010-04-24 19:06:50 +00001940 OS << ">";
Anders Carlssond7923c62009-08-22 23:33:40 +00001941}
1942
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001943void ASTDumper::VisitDeclRefExpr(const DeclRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001944 VisitExpr(Node);
Ted Kremenek5f64ca82007-09-10 17:32:55 +00001945
Daniel Dunbar34a96c82009-12-03 09:13:13 +00001946 OS << " ";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001947 dumpBareDeclRef(Node->getDecl());
Chandler Carruth8d26bb02011-05-01 23:48:14 +00001948 if (Node->getDecl() != Node->getFoundDecl()) {
1949 OS << " (";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001950 dumpBareDeclRef(Node->getFoundDecl());
Chandler Carruth8d26bb02011-05-01 23:48:14 +00001951 OS << ")";
1952 }
John McCall351762c2011-02-07 10:33:21 +00001953}
1954
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001955void ASTDumper::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001956 VisitExpr(Node);
John McCall76d09942009-12-11 21:50:11 +00001957 OS << " (";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001958 if (!Node->requiresADL())
1959 OS << "no ";
Benjamin Kramerb11416d2010-04-17 09:33:03 +00001960 OS << "ADL) = '" << Node->getName() << '\'';
John McCall76d09942009-12-11 21:50:11 +00001961
1962 UnresolvedLookupExpr::decls_iterator
1963 I = Node->decls_begin(), E = Node->decls_end();
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00001964 if (I == E)
1965 OS << " empty";
John McCall76d09942009-12-11 21:50:11 +00001966 for (; I != E; ++I)
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001967 dumpPointer(*I);
John McCall76d09942009-12-11 21:50:11 +00001968}
1969
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001970void ASTDumper::VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001971 VisitExpr(Node);
Steve Naroff5d5efca2008-03-12 13:19:12 +00001972
Richard Trieud215b8d2013-01-26 01:31:20 +00001973 {
1974 ColorScope Color(*this, DeclKindNameColor);
1975 OS << " " << Node->getDecl()->getDeclKindName() << "Decl";
1976 }
1977 OS << "='" << *Node->getDecl() << "'";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00001978 dumpPointer(Node->getDecl());
Steve Naroffb3424a92008-05-23 22:01:24 +00001979 if (Node->isFreeIvar())
Daniel Dunbar34a96c82009-12-03 09:13:13 +00001980 OS << " isFreeIvar";
Steve Naroff5d5efca2008-03-12 13:19:12 +00001981}
1982
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001983void ASTDumper::VisitPredefinedExpr(const PredefinedExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001984 VisitExpr(Node);
Alexey Bataevec474782014-10-09 08:45:04 +00001985 OS << " " << PredefinedExpr::getIdentTypeName(Node->getIdentType());
Chris Lattnercbe4f772007-08-08 22:51:59 +00001986}
1987
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001988void ASTDumper::VisitCharacterLiteral(const CharacterLiteral *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001989 VisitExpr(Node);
Richard Trieud215b8d2013-01-26 01:31:20 +00001990 ColorScope Color(*this, ValueColor);
Richard Trieu364ee422011-11-03 23:56:23 +00001991 OS << " " << Node->getValue();
Chris Lattnercbe4f772007-08-08 22:51:59 +00001992}
1993
Alexander Kornienko540bacb2013-02-01 12:35:51 +00001994void ASTDumper::VisitIntegerLiteral(const IntegerLiteral *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00001995 VisitExpr(Node);
Chris Lattnercbe4f772007-08-08 22:51:59 +00001996
1997 bool isSigned = Node->getType()->isSignedIntegerType();
Richard Trieud215b8d2013-01-26 01:31:20 +00001998 ColorScope Color(*this, ValueColor);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00001999 OS << " " << Node->getValue().toString(10, isSigned);
Chris Lattnercbe4f772007-08-08 22:51:59 +00002000}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002001
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002002void ASTDumper::VisitFloatingLiteral(const FloatingLiteral *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002003 VisitExpr(Node);
Richard Trieud215b8d2013-01-26 01:31:20 +00002004 ColorScope Color(*this, ValueColor);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002005 OS << " " << Node->getValueAsApproximateDouble();
Chris Lattnercbe4f772007-08-08 22:51:59 +00002006}
Chris Lattner1c20a172007-08-26 03:42:43 +00002007
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002008void ASTDumper::VisitStringLiteral(const StringLiteral *Str) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002009 VisitExpr(Str);
Richard Trieud215b8d2013-01-26 01:31:20 +00002010 ColorScope Color(*this, ValueColor);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002011 OS << " ";
Richard Trieudc355912012-06-13 20:25:24 +00002012 Str->outputString(OS);
Chris Lattnercbe4f772007-08-08 22:51:59 +00002013}
Chris Lattner84ca3762007-08-30 01:00:35 +00002014
Richard Smithf0514962014-06-03 08:24:28 +00002015void ASTDumper::VisitInitListExpr(const InitListExpr *ILE) {
2016 VisitExpr(ILE);
2017 if (auto *Filler = ILE->getArrayFiller()) {
Richard Smithf7514452014-10-30 21:02:37 +00002018 dumpChild([=] {
2019 OS << "array filler";
2020 dumpStmt(Filler);
2021 });
Richard Smithf0514962014-06-03 08:24:28 +00002022 }
2023 if (auto *Field = ILE->getInitializedFieldInUnion()) {
2024 OS << " field ";
2025 dumpBareDeclRef(Field);
2026 }
2027}
2028
Richard Smith410306b2016-12-12 02:53:20 +00002029void ASTDumper::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
2030 VisitExpr(E);
2031}
2032
2033void ASTDumper::VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
2034 VisitExpr(E);
2035}
2036
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002037void ASTDumper::VisitUnaryOperator(const UnaryOperator *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002038 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002039 OS << " " << (Node->isPostfix() ? "postfix" : "prefix")
2040 << " '" << UnaryOperator::getOpcodeStr(Node->getOpcode()) << "'";
Chris Lattnercbe4f772007-08-08 22:51:59 +00002041}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002042
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002043void ASTDumper::VisitUnaryExprOrTypeTraitExpr(
2044 const UnaryExprOrTypeTraitExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002045 VisitExpr(Node);
Peter Collingbournee190dee2011-03-11 19:24:49 +00002046 switch(Node->getKind()) {
2047 case UETT_SizeOf:
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002048 OS << " sizeof";
Peter Collingbournee190dee2011-03-11 19:24:49 +00002049 break;
2050 case UETT_AlignOf:
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002051 OS << " alignof";
Peter Collingbournee190dee2011-03-11 19:24:49 +00002052 break;
2053 case UETT_VecStep:
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002054 OS << " vec_step";
Peter Collingbournee190dee2011-03-11 19:24:49 +00002055 break;
Alexey Bataev00396512015-07-02 03:40:19 +00002056 case UETT_OpenMPRequiredSimdAlign:
2057 OS << " __builtin_omp_required_simd_align";
2058 break;
Peter Collingbournee190dee2011-03-11 19:24:49 +00002059 }
Sebastian Redl6f282892008-11-11 17:56:53 +00002060 if (Node->isArgumentType())
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002061 dumpType(Node->getArgumentType());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002062}
Chris Lattnerdb3b3ff2007-08-09 17:35:30 +00002063
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002064void ASTDumper::VisitMemberExpr(const MemberExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002065 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002066 OS << " " << (Node->isArrow() ? "->" : ".") << *Node->getMemberDecl();
2067 dumpPointer(Node->getMemberDecl());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002068}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002069
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002070void ASTDumper::VisitExtVectorElementExpr(const ExtVectorElementExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002071 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002072 OS << " " << Node->getAccessor().getNameStart();
Chris Lattnercbe4f772007-08-08 22:51:59 +00002073}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002074
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002075void ASTDumper::VisitBinaryOperator(const BinaryOperator *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002076 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002077 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) << "'";
Chris Lattner86928112007-08-25 02:00:02 +00002078}
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002079
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002080void ASTDumper::VisitCompoundAssignOperator(
2081 const CompoundAssignOperator *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002082 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002083 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode())
2084 << "' ComputeLHSTy=";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002085 dumpBareType(Node->getComputationLHSType());
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002086 OS << " ComputeResultTy=";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002087 dumpBareType(Node->getComputationResultType());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002088}
Chris Lattnercbe4f772007-08-08 22:51:59 +00002089
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002090void ASTDumper::VisitBlockExpr(const BlockExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002091 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002092 dumpDecl(Node->getBlockDecl());
John McCall351762c2011-02-07 10:33:21 +00002093}
2094
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002095void ASTDumper::VisitOpaqueValueExpr(const OpaqueValueExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002096 VisitExpr(Node);
John McCallfe96e0b2011-11-06 09:01:30 +00002097
Richard Smithf7514452014-10-30 21:02:37 +00002098 if (Expr *Source = Node->getSourceExpr())
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002099 dumpStmt(Source);
John McCallfe96e0b2011-11-06 09:01:30 +00002100}
2101
Chris Lattnercbe4f772007-08-08 22:51:59 +00002102// GNU extensions.
2103
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002104void ASTDumper::VisitAddrLabelExpr(const AddrLabelExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002105 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002106 OS << " " << Node->getLabel()->getName();
2107 dumpPointer(Node->getLabel());
Chris Lattnercbe4f772007-08-08 22:51:59 +00002108}
2109
Chris Lattner8f184b12007-08-09 18:03:18 +00002110//===----------------------------------------------------------------------===//
2111// C++ Expressions
2112//===----------------------------------------------------------------------===//
Chris Lattnercbe4f772007-08-08 22:51:59 +00002113
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002114void ASTDumper::VisitCXXNamedCastExpr(const CXXNamedCastExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002115 VisitExpr(Node);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002116 OS << " " << Node->getCastName()
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002117 << "<" << Node->getTypeAsWritten().getAsString() << ">"
Anders Carlssona70cff62010-04-24 19:06:50 +00002118 << " <" << Node->getCastKindName();
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002119 dumpBasePath(OS, Node);
Anders Carlssona70cff62010-04-24 19:06:50 +00002120 OS << ">";
Chris Lattnercbe4f772007-08-08 22:51:59 +00002121}
2122
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002123void ASTDumper::VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002124 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002125 OS << " " << (Node->getValue() ? "true" : "false");
Chris Lattnercbe4f772007-08-08 22:51:59 +00002126}
2127
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002128void ASTDumper::VisitCXXThisExpr(const CXXThisExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002129 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002130 OS << " this";
Douglas Gregor8ea1f532008-11-04 14:56:14 +00002131}
2132
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002133void ASTDumper::VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002134 VisitExpr(Node);
Eli Friedman29538892011-09-02 17:38:59 +00002135 OS << " functional cast to " << Node->getTypeAsWritten().getAsString()
2136 << " <" << Node->getCastKindName() << ">";
Douglas Gregore200adc2008-10-27 19:41:14 +00002137}
2138
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002139void ASTDumper::VisitCXXConstructExpr(const CXXConstructExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002140 VisitExpr(Node);
John McCalleba90cd2010-02-02 19:03:45 +00002141 CXXConstructorDecl *Ctor = Node->getConstructor();
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002142 dumpType(Ctor->getType());
Anders Carlsson073846832009-08-12 00:21:52 +00002143 if (Node->isElidable())
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002144 OS << " elidable";
John McCall85370042010-08-07 06:38:55 +00002145 if (Node->requiresZeroInitialization())
2146 OS << " zeroing";
Anders Carlsson073846832009-08-12 00:21:52 +00002147}
2148
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002149void ASTDumper::VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002150 VisitExpr(Node);
Daniel Dunbar34a96c82009-12-03 09:13:13 +00002151 OS << " ";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002152 dumpCXXTemporary(Node->getTemporary());
Anders Carlsson073846832009-08-12 00:21:52 +00002153}
2154
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002155void ASTDumper::VisitCXXNewExpr(const CXXNewExpr *Node) {
2156 VisitExpr(Node);
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002157 if (Node->isGlobalNew())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002158 OS << " global";
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002159 if (Node->isArray())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002160 OS << " array";
2161 if (Node->getOperatorNew()) {
2162 OS << ' ';
2163 dumpBareDeclRef(Node->getOperatorNew());
2164 }
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002165 // We could dump the deallocation function used in case of error, but it's
2166 // usually not that interesting.
2167}
2168
2169void ASTDumper::VisitCXXDeleteExpr(const CXXDeleteExpr *Node) {
2170 VisitExpr(Node);
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002171 if (Node->isGlobalDelete())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002172 OS << " global";
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002173 if (Node->isArrayForm())
Reid Kleckner461c0c62015-03-19 18:47:47 +00002174 OS << " array";
2175 if (Node->getOperatorDelete()) {
2176 OS << ' ';
2177 dumpBareDeclRef(Node->getOperatorDelete());
2178 }
Reid Kleckner5c682bc2015-03-19 18:09:25 +00002179}
2180
Richard Smithe6c01442013-06-05 00:46:14 +00002181void
2182ASTDumper::VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Node) {
2183 VisitExpr(Node);
2184 if (const ValueDecl *VD = Node->getExtendingDecl()) {
2185 OS << " extended by ";
2186 dumpBareDeclRef(VD);
2187 }
2188}
2189
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002190void ASTDumper::VisitExprWithCleanups(const ExprWithCleanups *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002191 VisitExpr(Node);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002192 for (unsigned i = 0, e = Node->getNumObjects(); i != e; ++i)
2193 dumpDeclRef(Node->getObject(i), "cleanup");
Anders Carlsson073846832009-08-12 00:21:52 +00002194}
2195
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002196void ASTDumper::dumpCXXTemporary(const CXXTemporary *Temporary) {
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002197 OS << "(CXXTemporary";
2198 dumpPointer(Temporary);
2199 OS << ")";
Anders Carlsson073846832009-08-12 00:21:52 +00002200}
2201
Serge Pavlov6b926032015-02-16 19:58:41 +00002202void ASTDumper::VisitSizeOfPackExpr(const SizeOfPackExpr *Node) {
2203 VisitExpr(Node);
2204 dumpPointer(Node->getPack());
2205 dumpName(Node->getPack());
Richard Smithd784e682015-09-23 21:41:42 +00002206 if (Node->isPartiallySubstituted())
2207 for (const auto &A : Node->getPartialArguments())
2208 dumpTemplateArgument(A);
Serge Pavlov6b926032015-02-16 19:58:41 +00002209}
2210
Alex Lorenzddbe0f52016-11-09 14:02:18 +00002211void ASTDumper::VisitCXXDependentScopeMemberExpr(
2212 const CXXDependentScopeMemberExpr *Node) {
2213 VisitExpr(Node);
2214 OS << " " << (Node->isArrow() ? "->" : ".") << Node->getMember();
2215}
Serge Pavlov6b926032015-02-16 19:58:41 +00002216
Anders Carlsson76f4a902007-08-21 17:43:55 +00002217//===----------------------------------------------------------------------===//
2218// Obj-C Expressions
2219//===----------------------------------------------------------------------===//
2220
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002221void ASTDumper::VisitObjCMessageExpr(const ObjCMessageExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002222 VisitExpr(Node);
Aaron Ballmanb190f972014-01-03 17:59:55 +00002223 OS << " selector=";
2224 Node->getSelector().print(OS);
Douglas Gregor9a129192010-04-21 00:45:42 +00002225 switch (Node->getReceiverKind()) {
2226 case ObjCMessageExpr::Instance:
2227 break;
2228
2229 case ObjCMessageExpr::Class:
2230 OS << " class=";
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002231 dumpBareType(Node->getClassReceiver());
Douglas Gregor9a129192010-04-21 00:45:42 +00002232 break;
2233
2234 case ObjCMessageExpr::SuperInstance:
2235 OS << " super (instance)";
2236 break;
2237
2238 case ObjCMessageExpr::SuperClass:
2239 OS << " super (class)";
2240 break;
2241 }
Ted Kremenek36748da2008-02-29 22:04:05 +00002242}
2243
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002244void ASTDumper::VisitObjCBoxedExpr(const ObjCBoxedExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002245 VisitExpr(Node);
Richard Trieu4b259c82016-06-09 22:03:04 +00002246 if (auto *BoxingMethod = Node->getBoxingMethod()) {
2247 OS << " selector=";
2248 BoxingMethod->getSelector().print(OS);
2249 }
Argyrios Kyrtzidis9dd40892012-05-10 20:02:31 +00002250}
2251
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002252void ASTDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002253 VisitStmt(Node);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002254 if (const VarDecl *CatchParam = Node->getCatchParamDecl())
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002255 dumpDecl(CatchParam);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002256 else
Douglas Gregor96c79492010-04-23 22:50:49 +00002257 OS << " catch all";
Douglas Gregor96c79492010-04-23 22:50:49 +00002258}
2259
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002260void ASTDumper::VisitObjCEncodeExpr(const ObjCEncodeExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002261 VisitExpr(Node);
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002262 dumpType(Node->getEncodedType());
Anders Carlssonc5a81eb2007-08-22 15:14:15 +00002263}
2264
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002265void ASTDumper::VisitObjCSelectorExpr(const ObjCSelectorExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002266 VisitExpr(Node);
Mike Stump11289f42009-09-09 15:08:12 +00002267
Aaron Ballmanb190f972014-01-03 17:59:55 +00002268 OS << " ";
2269 Node->getSelector().print(OS);
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00002270}
2271
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002272void ASTDumper::VisitObjCProtocolExpr(const ObjCProtocolExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002273 VisitExpr(Node);
Mike Stump11289f42009-09-09 15:08:12 +00002274
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002275 OS << ' ' << *Node->getProtocol();
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00002276}
Daniel Dunbar4b8c6db2008-08-30 05:35:15 +00002277
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002278void ASTDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002279 VisitExpr(Node);
John McCallb7bd14f2010-12-02 01:19:52 +00002280 if (Node->isImplicitProperty()) {
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00002281 OS << " Kind=MethodRef Getter=\"";
2282 if (Node->getImplicitPropertyGetter())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002283 Node->getImplicitPropertyGetter()->getSelector().print(OS);
Fariborz Jahanian0f0b3022010-12-22 19:46:35 +00002284 else
2285 OS << "(null)";
2286
2287 OS << "\" Setter=\"";
John McCallb7bd14f2010-12-02 01:19:52 +00002288 if (ObjCMethodDecl *Setter = Node->getImplicitPropertySetter())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002289 Setter->getSelector().print(OS);
John McCallb7bd14f2010-12-02 01:19:52 +00002290 else
2291 OS << "(null)";
2292 OS << "\"";
2293 } else {
Benjamin Kramerb89514a2011-10-14 18:45:37 +00002294 OS << " Kind=PropertyRef Property=\"" << *Node->getExplicitProperty() <<'"';
John McCallb7bd14f2010-12-02 01:19:52 +00002295 }
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +00002296
Fariborz Jahanian681c0752010-10-14 16:04:05 +00002297 if (Node->isSuperReceiver())
2298 OS << " super";
Argyrios Kyrtzidisab468b02012-03-30 00:19:18 +00002299
2300 OS << " Messaging=";
2301 if (Node->isMessagingGetter() && Node->isMessagingSetter())
2302 OS << "Getter&Setter";
2303 else if (Node->isMessagingGetter())
2304 OS << "Getter";
2305 else if (Node->isMessagingSetter())
2306 OS << "Setter";
Douglas Gregor8ea1f532008-11-04 14:56:14 +00002307}
2308
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002309void ASTDumper::VisitObjCSubscriptRefExpr(const ObjCSubscriptRefExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002310 VisitExpr(Node);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002311 if (Node->isArraySubscriptRefExpr())
2312 OS << " Kind=ArraySubscript GetterForArray=\"";
2313 else
2314 OS << " Kind=DictionarySubscript GetterForDictionary=\"";
2315 if (Node->getAtIndexMethodDecl())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002316 Node->getAtIndexMethodDecl()->getSelector().print(OS);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002317 else
2318 OS << "(null)";
Alexander Kornienko61c93bd2012-12-11 15:28:09 +00002319
Ted Kremeneke65b0862012-03-06 20:05:56 +00002320 if (Node->isArraySubscriptRefExpr())
2321 OS << "\" SetterForArray=\"";
2322 else
2323 OS << "\" SetterForDictionary=\"";
2324 if (Node->setAtIndexMethodDecl())
Aaron Ballmanb190f972014-01-03 17:59:55 +00002325 Node->setAtIndexMethodDecl()->getSelector().print(OS);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002326 else
2327 OS << "(null)";
2328}
2329
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002330void ASTDumper::VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *Node) {
Alexander Kornienko7bd0f9b2012-12-11 15:20:44 +00002331 VisitExpr(Node);
Ted Kremeneke65b0862012-03-06 20:05:56 +00002332 OS << " " << (Node->getValue() ? "__objc_yes" : "__objc_no");
2333}
2334
Chris Lattnercbe4f772007-08-08 22:51:59 +00002335//===----------------------------------------------------------------------===//
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002336// Comments
2337//===----------------------------------------------------------------------===//
2338
2339const char *ASTDumper::getCommandName(unsigned CommandID) {
2340 if (Traits)
2341 return Traits->getCommandInfo(CommandID)->Name;
2342 const CommandInfo *Info = CommandTraits::getBuiltinCommandInfo(CommandID);
2343 if (Info)
2344 return Info->Name;
2345 return "<not a builtin command>";
2346}
2347
2348void ASTDumper::dumpFullComment(const FullComment *C) {
2349 if (!C)
2350 return;
2351
2352 FC = C;
2353 dumpComment(C);
Craig Topper36250ad2014-05-12 05:36:57 +00002354 FC = nullptr;
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002355}
2356
2357void ASTDumper::dumpComment(const Comment *C) {
Richard Smithf7514452014-10-30 21:02:37 +00002358 dumpChild([=] {
2359 if (!C) {
2360 ColorScope Color(*this, NullColor);
2361 OS << "<<<NULL>>>";
2362 return;
2363 }
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002364
Richard Smithf7514452014-10-30 21:02:37 +00002365 {
2366 ColorScope Color(*this, CommentColor);
2367 OS << C->getCommentKindName();
2368 }
2369 dumpPointer(C);
2370 dumpSourceRange(C->getSourceRange());
2371 ConstCommentVisitor<ASTDumper>::visit(C);
2372 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
2373 I != E; ++I)
2374 dumpComment(*I);
2375 });
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002376}
2377
2378void ASTDumper::visitTextComment(const TextComment *C) {
2379 OS << " Text=\"" << C->getText() << "\"";
2380}
2381
2382void ASTDumper::visitInlineCommandComment(const InlineCommandComment *C) {
2383 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\"";
2384 switch (C->getRenderKind()) {
2385 case InlineCommandComment::RenderNormal:
2386 OS << " RenderNormal";
2387 break;
2388 case InlineCommandComment::RenderBold:
2389 OS << " RenderBold";
2390 break;
2391 case InlineCommandComment::RenderMonospaced:
2392 OS << " RenderMonospaced";
2393 break;
2394 case InlineCommandComment::RenderEmphasized:
2395 OS << " RenderEmphasized";
2396 break;
2397 }
2398
2399 for (unsigned i = 0, e = C->getNumArgs(); i != e; ++i)
2400 OS << " Arg[" << i << "]=\"" << C->getArgText(i) << "\"";
2401}
2402
2403void ASTDumper::visitHTMLStartTagComment(const HTMLStartTagComment *C) {
2404 OS << " Name=\"" << C->getTagName() << "\"";
2405 if (C->getNumAttrs() != 0) {
2406 OS << " Attrs: ";
2407 for (unsigned i = 0, e = C->getNumAttrs(); i != e; ++i) {
2408 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i);
2409 OS << " \"" << Attr.Name << "=\"" << Attr.Value << "\"";
2410 }
2411 }
2412 if (C->isSelfClosing())
2413 OS << " SelfClosing";
2414}
2415
2416void ASTDumper::visitHTMLEndTagComment(const HTMLEndTagComment *C) {
2417 OS << " Name=\"" << C->getTagName() << "\"";
2418}
2419
2420void ASTDumper::visitBlockCommandComment(const BlockCommandComment *C) {
2421 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\"";
2422 for (unsigned i = 0, e = C->getNumArgs(); i != e; ++i)
2423 OS << " Arg[" << i << "]=\"" << C->getArgText(i) << "\"";
2424}
2425
2426void ASTDumper::visitParamCommandComment(const ParamCommandComment *C) {
2427 OS << " " << ParamCommandComment::getDirectionAsString(C->getDirection());
2428
2429 if (C->isDirectionExplicit())
2430 OS << " explicitly";
2431 else
2432 OS << " implicitly";
2433
2434 if (C->hasParamName()) {
2435 if (C->isParamIndexValid())
2436 OS << " Param=\"" << C->getParamName(FC) << "\"";
2437 else
2438 OS << " Param=\"" << C->getParamNameAsWritten() << "\"";
2439 }
2440
Dmitri Gribenkodbff5c72014-03-19 14:03:47 +00002441 if (C->isParamIndexValid() && !C->isVarArgParam())
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002442 OS << " ParamIndex=" << C->getParamIndex();
2443}
2444
2445void ASTDumper::visitTParamCommandComment(const TParamCommandComment *C) {
2446 if (C->hasParamName()) {
2447 if (C->isPositionValid())
2448 OS << " Param=\"" << C->getParamName(FC) << "\"";
2449 else
2450 OS << " Param=\"" << C->getParamNameAsWritten() << "\"";
2451 }
2452
2453 if (C->isPositionValid()) {
2454 OS << " Position=<";
2455 for (unsigned i = 0, e = C->getDepth(); i != e; ++i) {
2456 OS << C->getIndex(i);
2457 if (i != e - 1)
2458 OS << ", ";
2459 }
2460 OS << ">";
2461 }
2462}
2463
2464void ASTDumper::visitVerbatimBlockComment(const VerbatimBlockComment *C) {
2465 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\""
2466 " CloseName=\"" << C->getCloseName() << "\"";
2467}
2468
2469void ASTDumper::visitVerbatimBlockLineComment(
2470 const VerbatimBlockLineComment *C) {
2471 OS << " Text=\"" << C->getText() << "\"";
2472}
2473
2474void ASTDumper::visitVerbatimLineComment(const VerbatimLineComment *C) {
2475 OS << " Text=\"" << C->getText() << "\"";
2476}
2477
2478//===----------------------------------------------------------------------===//
Richard Smithd5e7ff82014-10-31 01:17:45 +00002479// Type method implementations
2480//===----------------------------------------------------------------------===//
2481
2482void QualType::dump(const char *msg) const {
2483 if (msg)
2484 llvm::errs() << msg << ": ";
2485 dump();
2486}
2487
Richard Smith14d04842016-11-02 23:57:18 +00002488LLVM_DUMP_METHOD void QualType::dump() const { dump(llvm::errs()); }
2489
2490LLVM_DUMP_METHOD void QualType::dump(llvm::raw_ostream &OS) const {
2491 ASTDumper Dumper(OS, nullptr, nullptr);
Richard Smithd5e7ff82014-10-31 01:17:45 +00002492 Dumper.dumpTypeAsChild(*this);
2493}
2494
Richard Smith14d04842016-11-02 23:57:18 +00002495LLVM_DUMP_METHOD void Type::dump() const { dump(llvm::errs()); }
2496
2497LLVM_DUMP_METHOD void Type::dump(llvm::raw_ostream &OS) const {
2498 QualType(this, 0).dump(OS);
2499}
Richard Smithd5e7ff82014-10-31 01:17:45 +00002500
2501//===----------------------------------------------------------------------===//
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002502// Decl method implementations
2503//===----------------------------------------------------------------------===//
2504
Alp Tokeref6b0072014-01-04 13:47:14 +00002505LLVM_DUMP_METHOD void Decl::dump() const { dump(llvm::errs()); }
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002506
Alp Tokeref6b0072014-01-04 13:47:14 +00002507LLVM_DUMP_METHOD void Decl::dump(raw_ostream &OS) const {
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002508 ASTDumper P(OS, &getASTContext().getCommentCommandTraits(),
2509 &getASTContext().getSourceManager());
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002510 P.dumpDecl(this);
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002511}
2512
Alp Tokeref6b0072014-01-04 13:47:14 +00002513LLVM_DUMP_METHOD void Decl::dumpColor() const {
Richard Trieud215b8d2013-01-26 01:31:20 +00002514 ASTDumper P(llvm::errs(), &getASTContext().getCommentCommandTraits(),
2515 &getASTContext().getSourceManager(), /*ShowColors*/true);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002516 P.dumpDecl(this);
Richard Trieud215b8d2013-01-26 01:31:20 +00002517}
Richard Smith33937e72013-06-22 21:49:40 +00002518
Alp Tokeref6b0072014-01-04 13:47:14 +00002519LLVM_DUMP_METHOD void DeclContext::dumpLookups() const {
Richard Smith6ea05822013-06-24 01:45:33 +00002520 dumpLookups(llvm::errs());
2521}
2522
Richard Smith35f986d2014-08-11 22:11:07 +00002523LLVM_DUMP_METHOD void DeclContext::dumpLookups(raw_ostream &OS,
2524 bool DumpDecls) const {
Richard Smith33937e72013-06-22 21:49:40 +00002525 const DeclContext *DC = this;
2526 while (!DC->isTranslationUnit())
2527 DC = DC->getParent();
2528 ASTContext &Ctx = cast<TranslationUnitDecl>(DC)->getASTContext();
Richard Smith6ea05822013-06-24 01:45:33 +00002529 ASTDumper P(OS, &Ctx.getCommentCommandTraits(), &Ctx.getSourceManager());
Richard Smith35f986d2014-08-11 22:11:07 +00002530 P.dumpLookups(this, DumpDecls);
Richard Smith33937e72013-06-22 21:49:40 +00002531}
2532
Alexander Kornienko90ff6072012-12-20 02:09:13 +00002533//===----------------------------------------------------------------------===//
Chris Lattnercbe4f772007-08-08 22:51:59 +00002534// Stmt method implementations
2535//===----------------------------------------------------------------------===//
2536
Alp Tokeref6b0072014-01-04 13:47:14 +00002537LLVM_DUMP_METHOD void Stmt::dump(SourceManager &SM) const {
Argyrios Kyrtzidisc049f752010-08-09 10:54:31 +00002538 dump(llvm::errs(), SM);
2539}
2540
Alp Tokeref6b0072014-01-04 13:47:14 +00002541LLVM_DUMP_METHOD void Stmt::dump(raw_ostream &OS, SourceManager &SM) const {
Craig Topper36250ad2014-05-12 05:36:57 +00002542 ASTDumper P(OS, nullptr, &SM);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002543 P.dumpStmt(this);
Chris Lattner779d5d92007-08-30 00:40:08 +00002544}
2545
Faisal Vali2da8ed92015-03-22 13:35:56 +00002546LLVM_DUMP_METHOD void Stmt::dump(raw_ostream &OS) const {
2547 ASTDumper P(OS, nullptr, nullptr);
2548 P.dumpStmt(this);
2549}
2550
Alp Tokeref6b0072014-01-04 13:47:14 +00002551LLVM_DUMP_METHOD void Stmt::dump() const {
Craig Topper36250ad2014-05-12 05:36:57 +00002552 ASTDumper P(llvm::errs(), nullptr, nullptr);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002553 P.dumpStmt(this);
Chris Lattnercbe4f772007-08-08 22:51:59 +00002554}
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002555
Alp Tokeref6b0072014-01-04 13:47:14 +00002556LLVM_DUMP_METHOD void Stmt::dumpColor() const {
Craig Topper36250ad2014-05-12 05:36:57 +00002557 ASTDumper P(llvm::errs(), nullptr, nullptr, /*ShowColors*/true);
Alexander Kornienko540bacb2013-02-01 12:35:51 +00002558 P.dumpStmt(this);
Richard Trieud215b8d2013-01-26 01:31:20 +00002559}
2560
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002561//===----------------------------------------------------------------------===//
2562// Comment method implementations
2563//===----------------------------------------------------------------------===//
2564
Craig Topper36250ad2014-05-12 05:36:57 +00002565LLVM_DUMP_METHOD void Comment::dump() const {
2566 dump(llvm::errs(), nullptr, nullptr);
2567}
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002568
Alp Tokeref6b0072014-01-04 13:47:14 +00002569LLVM_DUMP_METHOD void Comment::dump(const ASTContext &Context) const {
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002570 dump(llvm::errs(), &Context.getCommentCommandTraits(),
2571 &Context.getSourceManager());
2572}
2573
Alexander Kornienko00911f12013-01-15 12:20:21 +00002574void Comment::dump(raw_ostream &OS, const CommandTraits *Traits,
Alexander Kornienkoebc17b52013-01-14 14:07:11 +00002575 const SourceManager *SM) const {
2576 const FullComment *FC = dyn_cast<FullComment>(this);
2577 ASTDumper D(OS, Traits, SM);
2578 D.dumpFullComment(FC);
2579}
Richard Trieud215b8d2013-01-26 01:31:20 +00002580
Alp Tokeref6b0072014-01-04 13:47:14 +00002581LLVM_DUMP_METHOD void Comment::dumpColor() const {
Richard Trieud215b8d2013-01-26 01:31:20 +00002582 const FullComment *FC = dyn_cast<FullComment>(this);
Craig Topper36250ad2014-05-12 05:36:57 +00002583 ASTDumper D(llvm::errs(), nullptr, nullptr, /*ShowColors*/true);
Richard Trieud215b8d2013-01-26 01:31:20 +00002584 D.dumpFullComment(FC);
2585}