diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-10 16:09:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 16:09:27 +0000 |
commit | 072b14f1a945d096d6f72fc4ac621354aa636c70 (patch) | |
tree | dc90291aed57d5109bdf520da26e603015bf45bf /backends/cxxrtl/cxxrtl.h | |
parent | 8f1a32064639fa17d67bda508df941c8846a0664 (diff) | |
parent | 0955a603c889e3ce86ca65cf59ec3ca5650c6517 (diff) | |
download | yosys-072b14f1a945d096d6f72fc4ac621354aa636c70.tar.gz yosys-072b14f1a945d096d6f72fc4ac621354aa636c70.tar.bz2 yosys-072b14f1a945d096d6f72fc4ac621354aa636c70.zip |
Merge pull request #2140 from whitequark/cxxrtl-aliases
cxxrtl: disambiguate values/wires and their aliases in debug info
Diffstat (limited to 'backends/cxxrtl/cxxrtl.h')
-rw-r--r-- | backends/cxxrtl/cxxrtl.h | 29 |
1 files changed, 28 insertions, 1 deletions
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<std::string, metadata> 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<uint32_t*>(item.data); + curr = const_cast<chunk_t*>(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<size_t Bits> + debug_item(debug_alias, const value<Bits> &item) { + static_assert(sizeof(item) == value<Bits>::chunks * sizeof(chunk_t), + "value<Bits> is not compatible with C layout"); + type = ALIAS; + width = Bits; + depth = 1; + curr = const_cast<chunk_t*>(item.data); + next = nullptr; + } + + template<size_t Bits> + debug_item(debug_alias, const wire<Bits> &item) { + static_assert(sizeof(item.curr) == value<Bits>::chunks * sizeof(chunk_t) && + sizeof(item.next) == value<Bits>::chunks * sizeof(chunk_t), + "wire<Bits> is not compatible with C layout"); + type = ALIAS; + width = Bits; + depth = 1; + curr = const_cast<chunk_t*>(item.curr.data); + next = nullptr; + } }; static_assert(std::is_standard_layout<debug_item>::value, "debug_item is not compatible with C layout"); |