From 0955a603c889e3ce86ca65cf59ec3ca5650c6517 Mon Sep 17 00:00:00 2001 From: whitequark Date: Wed, 10 Jun 2020 14:39:45 +0000 Subject: cxxrtl: disambiguate values/wires and their aliases in debug info. With this change, it is easier to see which signals carry state (only wire<>s appear as `reg` in VCD files) and to construct a minimal checkpoint (CXXRTL_WIRE debug items represent the canonical smallest set of state required to fully reconstruct the simulation). --- backends/cxxrtl/cxxrtl.h | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) (limited to 'backends/cxxrtl/cxxrtl.h') diff --git a/backends/cxxrtl/cxxrtl.h b/backends/cxxrtl/cxxrtl.h index c988c9e80..bc3162981 100644 --- a/backends/cxxrtl/cxxrtl.h +++ b/backends/cxxrtl/cxxrtl.h @@ -716,6 +716,9 @@ struct metadata { typedef std::map metadata_map; +// Helper class to disambiguate values/wires and their aliases. +struct debug_alias {}; + // This structure is intended for consumption via foreign function interfaces, like Python's ctypes. // Because of this it uses a C-style layout that is easy to parse rather than more idiomatic C++. // @@ -726,6 +729,7 @@ struct debug_item : ::cxxrtl_object { VALUE = CXXRTL_VALUE, WIRE = CXXRTL_WIRE, MEMORY = CXXRTL_MEMORY, + ALIAS = CXXRTL_ALIAS, }; debug_item(const ::cxxrtl_object &object) : cxxrtl_object(object) {} @@ -748,7 +752,7 @@ struct debug_item : ::cxxrtl_object { type = VALUE; width = Bits; depth = 1; - curr = const_cast(item.data); + curr = const_cast(item.data); next = nullptr; } @@ -774,6 +778,29 @@ struct debug_item : ::cxxrtl_object { curr = item.data.empty() ? nullptr : item.data[0].data; next = nullptr; } + + template + debug_item(debug_alias, const value &item) { + static_assert(sizeof(item) == value::chunks * sizeof(chunk_t), + "value is not compatible with C layout"); + type = ALIAS; + width = Bits; + depth = 1; + curr = const_cast(item.data); + next = nullptr; + } + + template + debug_item(debug_alias, const wire &item) { + static_assert(sizeof(item.curr) == value::chunks * sizeof(chunk_t) && + sizeof(item.next) == value::chunks * sizeof(chunk_t), + "wire is not compatible with C layout"); + type = ALIAS; + width = Bits; + depth = 1; + curr = const_cast(item.curr.data); + next = nullptr; + } }; static_assert(std::is_standard_layout::value, "debug_item is not compatible with C layout"); -- cgit v1.2.3