Searched refs:sc_trace (Results 51 - 75 of 76) sorted by relevance

1234

/gem5/src/systemc/tests/systemc/tracing/wif_trace/test06/
H A Dtest06.cpp84 sc_trace(tf, P1.obj1, "Float");
85 sc_trace(tf, P1.obj2, "Double");
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test10/
H A Dtest10.cpp96 sc_trace(tf, P1.obj1, "Enum", (const char **) enum_literals);
97 sc_trace(tf, clock, "Clock");
/gem5/src/systemc/tests/systemc/tracing/wif_trace/mixed/
H A Dmixed.cpp122 sc_trace(tf, a, "a");
123 sc_trace(tf, b, "b");
124 sc_trace(tf, sum, "sum");
125 sc_trace(tf, clk, "clk");
/gem5/src/systemc/tests/systemc/communication/sc_signal/datatypes/test02/
H A Dtest02.cpp40 // -- sc_trace() does not have to be defined (unless used)
41 // -- here, sc_trace() is defined and used
60 friend void sc_trace( sc_trace_file* tf, const my_datatype& a, function in class:my_datatype
62 { sc_core::sc_trace( tf, a.m_val, name ); }
86 sc_trace( tf, sig, "sig" );
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test1/
H A Dtest1.cpp168 sc_trace(tf, a, "SYNC-IN1");
169 sc_trace(tf, b, "SYNC-IN2");
170 sc_trace(tf, c, "SYNC2-OUT");
171 sc_trace(tf, clock, "Clock");
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test2/
H A Dtest2.cpp162 sc_trace(tf, a, "SYNC-IN1");
163 sc_trace(tf, b, "SYNC-IN2");
164 sc_trace(tf, c, "SYNC2-OUT");
165 sc_trace(tf, clock, "Clock");
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test4/
H A Dtest4.cpp183 sc_trace(tf, clock1, "Clock");
184 sc_trace(tf, dclock, "Dclock");
185 sc_trace(tf, Gate, "Gate");
186 sc_trace(tf, Output, "Out");
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test5/
H A Dtest5.cpp182 sc_trace(tf, clock1, "Clock");
183 sc_trace(tf, dclock, "Dclock");
184 sc_trace(tf, Gate, "Gate");
185 sc_trace(tf, Output, "Out");
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dscfx_other_defs.h56 #include "sysc/tracing/sc_trace.h"
353 // FUNCTION : sc_trace
358 sc_trace( sc_core::sc_trace_file* tf, function in namespace:sc_dt
367 sc_trace( sc_core::sc_trace_file* tf, function in namespace:sc_dt
376 sc_trace( sc_core::sc_trace_file* tf, function in namespace:sc_dt
385 sc_trace( sc_core::sc_trace_file* tf, function in namespace:sc_dt
394 sc_trace( sc_core::sc_trace_file* tf, function in namespace:sc_dt
403 sc_trace( sc_core::sc_trace_file* tf, function in namespace:sc_dt
412 sc_trace( sc_core::sc_trace_file* tf, function in namespace:sc_dt
421 sc_trace( sc_cor function in namespace:sc_dt
[all...]
/gem5/src/systemc/tests/systemc/misc/stars/vcd_trace/star126273/
H A Dtest.cpp89 // sc_trace(tf, clk1.signal(), "clk1");
90 // sc_trace(tf, clk2.signal(), "clk2");
91 sc_trace(tf, clk1, "clk1");
92 sc_trace(tf, clk2, "clk2");
/gem5/src/systemc/tests/systemc/misc/stars/star127536/
H A Dtest.cpp92 sc_trace(tf,clk1,"clock");
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test15/
H A Dtest15.cpp89 sc_trace(tf, test_top.sig, test_top.sig.name());
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test15/
H A Dtest15.cpp89 sc_trace(tf, test_top.sig, test_top.sig.name());
/gem5/src/systemc/ext/channel/
H A Dsc_in.hh121 sc_trace(params->tf, (*this)->read(), params->name);
158 sc_trace(sc_trace_file *tf, const sc_in<T> &i, const std::string &name) function in namespace:sc_core
163 sc_trace(tf, i->read(), name);
265 sc_trace(params->tf, (*this)->read(), params->name);
320 sc_trace<bool>(sc_trace_file *tf, const sc_in<bool> &i, function in namespace:sc_core
326 sc_trace(tf, i->read(), name);
433 sc_trace(params->tf, (*this)->read(), params->name);
481 sc_trace<sc_dt::sc_logic>(sc_trace_file *tf, const sc_in<sc_dt::sc_logic> &i, function in namespace:sc_core
487 sc_trace(tf, i->read(), name);
H A Dsc_inout.hh117 sc_trace(params->tf, (*this)->read(), params->name);
186 sc_trace(sc_trace_file *tf, const sc_inout<T> &i, const std::string &name) function in namespace:sc_core
191 sc_trace(tf, i->read(), name);
281 sc_trace(params->tf, (*this)->read(), params->name);
358 inline void sc_trace<bool>( function in namespace:sc_core
364 sc_trace(tf, i->read(), name);
471 sc_trace(params->tf, (*this)->read(), params->name);
550 sc_trace<sc_dt::sc_logic>(sc_trace_file *tf, function in namespace:sc_core
556 sc_trace(tf, i->read(), name);
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal_ports.cpp52 sc_trace( p->tf, iface->read(), p->name );
58 // called by sc_trace
134 sc_trace( p->tf, iface->read(), p->name );
141 // called by sc_trace
251 sc_trace( p->tf, iface->read(), p->name );
258 // called by sc_trace
342 sc_trace( p->tf, iface->read(), p->name );
349 // called by sc_trace
417 // classes so that sc_trace has something to call that won't emit an
H A Dsc_signal.h40 #include "sysc/tracing/sc_trace.h"
172 sc_trace( tf, read(), name() );
401 sc_trace( tf, read(), name() );
568 sc_trace( tf, read(), name() );
H A Dsc_signal_ports.h37 #include "sysc/tracing/sc_trace.h"
50 // Struct for storing the trace file and object name of an sc_trace call.
244 // called by sc_trace
306 sc_trace( p->tf, iface->read(), p->name );
313 // called by sc_trace
611 // called by sc_trace
878 // called by sc_trace
1083 // called by sc_trace
1167 sc_trace( p->tf, iface->read(), p->name );
1174 // called by sc_trace
1793 sc_trace(sc_trace_file* tf, const sc_in<T>& port, const std::string& name) function in namespace:sc_core
1810 sc_trace( sc_trace_file* tf, const sc_inout<T>& port, function in namespace:sc_core
[all...]
H A Dsc_fifo.h38 #include "sysc/tracing/sc_trace.h"
301 sc_trace( tf, m_buf[i], nm + buf );
/gem5/src/systemc/ext/utils/
H A D_using.hh75 using sc_core::sc_trace;
/gem5/src/systemc/tests/systemc/compliance_1666/test228/
H A Dtest228.cpp72 sc_trace(tf, sig, "sig");
/gem5/src/systemc/tests/systemc/misc/stars/star104726/
H A Dglobal.h142 sc_trace( sc_trace_file*, const Coeff8x8&, const std::string& ) function
/gem5/src/systemc/tests/include/specialized_signals/
H A Dscx_signal_int.h932 sc_trace( p->tf, read(), p->name );
942 // called by sc_trace
1195 sc_trace( p->tf, read(), p->name );
1220 // called by sc_trace
H A Dscx_signal_uint.h988 sc_trace( p->tf, read(), p->name );
998 // called by sc_trace
1253 sc_trace( p->tf, read(), p->name );
1278 // called by sc_trace
H A Dscx_signal_signed.h1114 sc_trace( p->tf, read(), p->name );
1124 // called by sc_trace
1377 sc_trace( p->tf, read(), p->name );
1402 // called by sc_trace

Completed in 54 milliseconds

1234