mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
log_dump() to support State enum
This commit is contained in:
parent
6028f5df1a
commit
62c66406ad
|
@ -551,6 +551,10 @@ void log_dump_val_worker(RTLIL::SigSpec v) {
|
||||||
log("%s", log_signal(v));
|
log("%s", log_signal(v));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void log_dump_val_worker(RTLIL::State v) {
|
||||||
|
log("%s", log_signal(v));
|
||||||
|
}
|
||||||
|
|
||||||
const char *log_signal(const RTLIL::SigSpec &sig, bool autoint)
|
const char *log_signal(const RTLIL::SigSpec &sig, bool autoint)
|
||||||
{
|
{
|
||||||
std::stringstream buf;
|
std::stringstream buf;
|
||||||
|
|
|
@ -292,6 +292,7 @@ static inline void log_dump_val_worker(PerformanceTimer p) { log("%f seconds", p
|
||||||
static inline void log_dump_args_worker(const char *p YS_ATTRIBUTE(unused)) { log_assert(*p == 0); }
|
static inline void log_dump_args_worker(const char *p YS_ATTRIBUTE(unused)) { log_assert(*p == 0); }
|
||||||
void log_dump_val_worker(RTLIL::IdString v);
|
void log_dump_val_worker(RTLIL::IdString v);
|
||||||
void log_dump_val_worker(RTLIL::SigSpec v);
|
void log_dump_val_worker(RTLIL::SigSpec v);
|
||||||
|
void log_dump_val_worker(RTLIL::State v);
|
||||||
|
|
||||||
template<typename K, typename T, typename OPS>
|
template<typename K, typename T, typename OPS>
|
||||||
static inline void log_dump_val_worker(dict<K, T, OPS> &v) {
|
static inline void log_dump_val_worker(dict<K, T, OPS> &v) {
|
||||||
|
|
|
@ -210,6 +210,7 @@ namespace RTLIL {
|
||||||
struct Module;
|
struct Module;
|
||||||
struct Design;
|
struct Design;
|
||||||
struct Monitor;
|
struct Monitor;
|
||||||
|
enum State : unsigned char;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace AST {
|
namespace AST {
|
||||||
|
|
Loading…
Reference in a new issue