Implement BlockDecl::Capture dump in terms of visitors

Reviewers: aaron.ballman

Subscribers: cfe-commits

Differential Revision: https://reviews.llvm.org/D56709

llvm-svn: 351239
This commit is contained in:
Stephen Kelly
2019-01-15 20:41:37 +00:00
parent 7e6602110b
commit fbf424e101
3 changed files with 25 additions and 15 deletions

View File

@@ -171,6 +171,8 @@ public:
void Visit(const OMPClause *C);
void Visit(const BlockDecl::Capture &C);
void dumpPointer(const void *Ptr);
void dumpLocation(SourceLocation Loc);
void dumpSourceRange(SourceRange R);

View File

@@ -283,6 +283,7 @@ namespace {
void VisitObjCCompatibleAliasDecl(const ObjCCompatibleAliasDecl *D);
void VisitObjCPropertyDecl(const ObjCPropertyDecl *D);
void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
void Visit(const BlockDecl::Capture &C);
void VisitBlockDecl(const BlockDecl *D);
// Stmts.
@@ -1371,6 +1372,14 @@ void ASTDumper::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) {
NodeDumper.dumpDeclRef(D->getPropertyIvarDecl());
}
void ASTDumper::Visit(const BlockDecl::Capture &C) {
dumpChild([=] {
NodeDumper.Visit(C);
if (C.hasCopyExpr())
dumpStmt(C.getCopyExpr());
});
}
void ASTDumper::VisitBlockDecl(const BlockDecl *D) {
for (auto I : D->parameters())
dumpDecl(I);
@@ -1381,21 +1390,8 @@ void ASTDumper::VisitBlockDecl(const BlockDecl *D) {
if (D->capturesCXXThis())
dumpChild([=]{ OS << "capture this"; });
for (const auto &I : D->captures()) {
dumpChild([=] {
OS << "capture";
if (I.isByRef())
OS << " byref";
if (I.isNested())
OS << " nested";
if (I.getVariable()) {
OS << ' ';
NodeDumper.dumpBareDeclRef(I.getVariable());
}
if (I.hasCopyExpr())
dumpStmt(I.getCopyExpr());
});
}
for (const auto &I : D->captures())
Visit(I);
dumpStmt(D->getBody());
}

View File

@@ -272,6 +272,18 @@ void TextNodeDumper::Visit(const CXXCtorInitializer *Init) {
}
}
void TextNodeDumper::Visit(const BlockDecl::Capture &C) {
OS << "capture";
if (C.isByRef())
OS << " byref";
if (C.isNested())
OS << " nested";
if (C.getVariable()) {
OS << ' ';
dumpBareDeclRef(C.getVariable());
}
}
void TextNodeDumper::Visit(const OMPClause *C) {
if (!C) {
ColorScope Color(OS, ShowColors, NullColor);