28 #ifndef __SYSTEMC_UTILS_TRACEFILE_HH__ 29 #define __SYSTEMC_UTILS_TRACEFILE_HH__ 58 virtual bool check() = 0;
61 template <
typename T,
typename Base=TraceValBase>
74 const T &
value() {
return oldVal; }
79 bool changed = (*t != oldVal);
85 template <
typename T,
typename Base>
89 const ::sc_core::sc_signal_in_if<T> *
iface;
94 Base(_width), iface(_iface), oldVal(iface->read())
98 void finalize()
override { oldVal = iface->read(); }
99 const T &
value() {
return oldVal; }
104 T newVal = iface->read();
105 bool changed = (newVal != oldVal);
111 template <
typename Base>
121 Base(_width), triggered(false), oldStamp(0),
122 event(
Event::getFromScEvent(_event))
127 void finalize()
override { oldStamp =
event->triggeredStamp(); }
132 uint64_t newStamp =
event->triggeredStamp();
133 triggered = (oldStamp != newStamp);
139 template <
typename T,
typename Base>
149 oldVal(_t->m_params.type_params(), _t->m_params.enc(),
150 _t->m_params.cast_switch(), 0)
166 bool changed = (*t != oldVal);
172 template <
typename Base>
181 template <
typename Base>
202 std::ostream &stream();
212 virtual void trace(
bool delta) = 0;
214 virtual void addTraceVal(
const bool *
v,
const std::string &
name) = 0;
215 virtual void addTraceVal(
const float *v,
const std::string &name) = 0;
216 virtual void addTraceVal(
const double *v,
const std::string &name) = 0;
219 const std::string &name) = 0;
221 const std::string &name) = 0;
223 const std::string &name) = 0;
225 const std::string &name) = 0;
227 const std::string &name) = 0;
229 const std::string &name) = 0;
231 const std::string &name) = 0;
233 const std::string &name) = 0;
235 const std::string &name) = 0;
237 const std::string &name) = 0;
239 const std::string &name) = 0;
242 const std::string &name) = 0;
244 const std::string &name) = 0;
246 virtual void addTraceVal(
const unsigned char *v,
247 const std::string &name,
int width) = 0;
248 virtual void addTraceVal(
const char *v,
const std::string &name,
250 virtual void addTraceVal(
const unsigned short *v,
251 const std::string &name,
int width) = 0;
252 virtual void addTraceVal(
const short *v,
const std::string &name,
254 virtual void addTraceVal(
const unsigned int *v,
255 const std::string &name,
int width) = 0;
256 virtual void addTraceVal(
const int *v,
const std::string &name,
258 virtual void addTraceVal(
const unsigned long *v,
259 const std::string &name,
int width) = 0;
260 virtual void addTraceVal(
const long *v,
const std::string &name,
264 const std::string &name,
int width) = 0;
266 const std::string &name,
int width) = 0;
268 virtual void addTraceVal(
const unsigned int *,
269 const std::string &name,
270 const char **literals) = 0;
272 virtual void writeComment(
const std::string &comment) = 0;
277 #endif // __SYSTEMC_UTILS_TRACEFILE_HH__
TraceValFxnumBase(const T *_t, int _width)
const std::string & name()
const ::sc_core::sc_signal_in_if< T > * iface
void traceDeltas(bool on)
TraceVal(const ::sc_core::sc_signal_in_if< T > *_iface, int _width)
::sc_core::sc_time_unit timeUnitUnit
TraceVal(const ::sc_core::sc_event *_event, int _width)
TraceVal(const T *_t, int _width)