From 88d9e213cb6c55f89563d2675371771dba3564a8 Mon Sep 17 00:00:00 2001 From: Dag Lem Date: Wed, 27 Dec 2023 22:35:18 +0100 Subject: [PATCH] Decoding of a few more AST nodes in dumpVlog --- frontends/ast/ast.cc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc index 04360de72..ead79fd95 100644 --- a/frontends/ast/ast.cc +++ b/frontends/ast/ast.cc @@ -488,6 +488,20 @@ void AstNode::dumpVlog(FILE *f, std::string indent) const fprintf(f, ";\n"); break; + if (0) { case AST_MEMRD: txt = "@memrd@"; } + if (0) { case AST_MEMINIT: txt = "@meminit@"; } + if (0) { case AST_MEMWR: txt = "@memwr@"; } + fprintf(f, "%s%s", indent.c_str(), txt.c_str()); + for (auto child : children) { + fprintf(f, first ? "(" : ", "); + child->dumpVlog(f, ""); + first = false; + } + fprintf(f, ")"); + if (type != AST_MEMRD) + fprintf(f, ";\n"); + break; + case AST_RANGE: if (range_valid) { if (range_swapped) @@ -556,6 +570,12 @@ void AstNode::dumpVlog(FILE *f, std::string indent) const child->dumpVlog(f, ""); break; + case AST_STRUCT: + case AST_UNION: + case AST_STRUCT_ITEM: + fprintf(f, "%s", id2vl(str).c_str()); + break; + case AST_CONSTANT: if (!str.empty()) fprintf(f, "\"%s\"", str.c_str());