57 cleanName(std::string
name)
59 for (
int i = 0;
i < name.length();
i++) {
62 else if (name[
i] ==
']')
78 const char first = orig[0];
80 if (first !=
'z' && first !=
'x' && first !=
'0')
83 const char *res = orig;
84 while (*++res == first) {}
86 if (first !=
'0' || *res !=
'1')
121 os << rep <<
vcdName() << std::endl;;
134 void vcdName(
const std::string &vcd_name) { _vcdName = vcd_name; }
136 virtual std::string
vcdType() {
return "wire"; }
138 virtual void output(std::ostream &
os) = 0;
144 size_t pos = name.find_first_of(
'.');
145 if (pos == std::string::npos) {
146 values.emplace_back(name, value);
148 std::string sname = name.substr(0, pos);
149 auto it = scopes.find(sname);
150 if (it == scopes.end())
152 it->second->addValue(name.substr(pos + 1), value);
159 os <<
"$scope module " << name <<
" $end" << std::endl;
161 for (
auto &
p: values) {
162 const std::string &name =
p.first;
167 std::string msg =
csprintf(
"'%s' has 0 bits", name);
174 std::string clean_name = cleanName(name);
176 ccprintf(os,
"$var %s % 3d %s %s $end\n",
179 ccprintf(os,
"$var %s % 3d %s %s [%d:0] $end\n",
184 for (
auto &
p: scopes)
185 p.second->output(
p.first, os);
187 os <<
"$upscope $end" << std::endl;
190 template <
typename T>
206 std::string
name(_nextName);
209 int pos = NextNameChars - 1;
211 carry = (_nextName[pos] ==
'z');
213 _nextName[pos--] =
'a';
216 }
while (carry && pos >= 0);
227 stream() <<
"$date" << std::endl;
230 struct tm *p_tm = localtime(&long_time);
231 stream() << std::put_time(p_tm,
" %b %d, %Y %H:%M:%S\n");
232 stream() <<
"$end" << std::endl << std::endl;
235 stream() <<
"$version" << std::endl;
237 stream() <<
"$end" << std::endl << std::endl;
240 stream() <<
"$timescale" << std::endl;
243 stream() <<
"$end" << std::endl << std::endl;
245 for (
auto tv: traceVals)
248 topScope.output(
"SystemC", stream());
250 stream() <<
"$enddefinitions $end" << std::endl << std::endl;
254 std::string timedump_comment =
255 csprintf(
"All initial values are dumped below at time " 256 "%g sec = %g timescale units.",
258 static_cast<double>(now / timeUnitTicks));
259 writeComment(timedump_comment);
261 lastPrintedTime = now / timeUnitTicks;
263 stream() <<
"$dumpvars" << std::endl;
264 for (
auto tv: traceVals)
265 tv->output(stream());
266 stream() <<
"$end" << std::endl << std::endl;
273 for (
auto tv: traceVals)
287 uint64_t deltaOffset = deltasAtNow;
290 deltaOffset = deltasAtNow++;
292 if (_traceDeltas != delta)
302 if (now <= lastPrintedTime) {
307 bool time_printed =
false;
308 for (
auto tv: traceVals) {
311 lastPrintedTime = now;
316 tv->output(stream());
320 stream() << std::endl;
331 printVal(os, this->value() ?
"1" :
"0");
338 addNewTraceVal<VcdTraceValBool>(
v,
name);
341 template <
typename T>
347 std::string
vcdType()
override {
return "real"; }
359 addNewTraceVal<VcdTraceValFloat<float>>(
v,
name);
364 addNewTraceVal<VcdTraceValFloat<double>>(
v,
name);
386 addNewTraceVal<VcdTraceValScLogic>(
v,
name);
389 template <
typename T>
399 this->
_width = this->value().length();
406 const int w = this->
width();
409 for (
int i = w - 1;
i >= 0;
i--)
410 str += this->value()[
i].to_bool() ?
'1' :
'0';
418 const std::string &name)
420 addNewTraceVal<VcdTraceValFinite<sc_dt::sc_int_base>>(
v,
name);
424 const std::string &name)
426 addNewTraceVal<VcdTraceValFinite<sc_dt::sc_uint_base>>(
v,
name);
432 addNewTraceVal<VcdTraceValFinite<sc_dt::sc_signed>>(
v,
name);
436 const std::string &name)
438 addNewTraceVal<VcdTraceValFinite<sc_dt::sc_unsigned>>(
v,
name);
441 template <
typename T>
451 this->
_width = this->value().length();
464 addNewTraceVal<VcdTraceValLogic<::sc_dt::sc_bv_base>>(
v,
name);
469 addNewTraceVal<VcdTraceValLogic<::sc_dt::sc_lv_base>>(
v,
name);
472 template <
typename T>
478 std::string
vcdType()
override {
return "real"; }
484 this->value().to_double(), this->
vcdName());
491 addNewTraceVal<VcdTraceValFxval<sc_dt::sc_fxval>>(
v,
name);
495 const std::string &name)
497 addNewTraceVal<VcdTraceValFxval<sc_dt::sc_fxval_fast>>(
v,
name);
500 template <
typename T>
510 const int w = this->
width();
513 for (
int i = w - 1;
i >= 0;
i--)
514 str += this->value()[
i] ?
'1' :
'0';
523 addNewTraceVal<VcdTraceValFxnum<::sc_dt::sc_fxnum>>(
v,
name);
527 const std::string &name)
529 addNewTraceVal<VcdTraceValFxnum<::sc_dt::sc_fxnum_fast>>(
v,
name);
537 std::string
vcdType()
override {
return "event"; }
552 addNewTraceVal<VcdTraceValEvent>(
v,
name);
558 static const int TimeWidth = 64;
563 std::string
vcdType()
override {
return "time"; }
575 char str[TimeWidth + 1];
576 str[TimeWidth] =
'\0';
578 const uint64_t
val = value().value();
579 for (
int i = 0;
i < TimeWidth;
i++)
580 str[
i] = ::
bits(val, TimeWidth -
i - 1) ?
'1' :
'0';
588 addNewTraceVal<VcdTraceValTime>(
v,
name);
591 template <
typename T>
600 const int w = this->
width();
605 static_cast<uint64_t
>(this->value()) & ::
mask(
sizeof(T) * 8);
608 for (
int i = 0;
i <
w;
i++)
611 for (
int i = 0;
i <
w;
i++)
612 str[
i] = ::
bits(val, w -
i - 1) ?
'1' :
'0';
623 addNewTraceVal<VcdTraceValInt<unsigned char>>(
v,
name,
width);
628 addNewTraceVal<VcdTraceValInt<char>>(
v,
name,
width);
634 addNewTraceVal<VcdTraceValInt<unsigned short>>(
v,
name,
width);
639 addNewTraceVal<VcdTraceValInt<short>>(
v,
name,
width);
645 addNewTraceVal<VcdTraceValInt<unsigned int>>(
v,
name,
width);
650 addNewTraceVal<VcdTraceValInt<int>>(
v,
name,
width);
656 addNewTraceVal<VcdTraceValInt<unsigned long>>(
v,
name,
width);
661 addNewTraceVal<VcdTraceValInt<long>>(
v,
name,
width);
668 addNewTraceVal<VcdTraceValInt<sc_dt::int64>>(
v,
name,
width);
674 addNewTraceVal<VcdTraceValInt<sc_dt::uint64>>(
v,
name,
width);
679 const char **literals)
686 while (count >> bits)
689 addNewTraceVal<VcdTraceValInt<unsigned int>>(
v,
name,
bits);
695 stream() <<
"$comment" << std::endl;
696 stream() << comment << std::endl;
697 stream() <<
"$end" << std::endl << std::endl;
void ccprintf(cp::Print &print)
void output(std::ostream &os) override
const std::string & name()
void writeComment(const std::string &comment) override
void addTraceVal(const bool *v, const std::string &name) override
const std::string & vcdName()
void addValue(const std::string &name, VcdTraceValBase *value)
double s
These variables equal the number of ticks in the unit of time they're named after in a double...
std::string nextSignalName()
void trace(bool delta) override
void output(std::ostream &os) override
void vcdName(const std::string &vcd_name)
void output(const std::string &name, std::ostream &os)
static sc_time from_value(sc_dt::uint64)
void output(std::ostream &os) override
std::string csprintf(const char *format, const Args &...args)
const char * sc_version()
char scLogicToVcdState(char in)
std::string vcdType() override
uint64_t Tick
Tick count type.
virtual void output(std::ostream &os)=0
std::string vcdType() override
const char * stripLeadingBits(const char *orig)
void output(std::ostream &os) override
void output(std::ostream &os) override
void output(std::ostream &os) override
VcdTraceVal(const T *t, const std::string &vcd_name, int width)
void printVal(std::ostream &os, const std::string &rep)
#define SC_REPORT_ERROR(msg_type, msg)
void output(std::ostream &os) override
std::string vcdType() override
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
std::string vcdType() override
virtual std::string vcdType()
void output(std::ostream &os) override
void output(std::ostream &os) override
const std::string to_string(sc_enc enc)
VcdTraceValBase(int width)
void output(std::ostream &os) override