Public メソッド | |
vcd_sc_fxval_fast_trace (const sc_dt::sc_fxval_fast &object, const std::string &name_, const std::string &vcd_name_) | |
void | write (FILE *f) |
bool | changed () |
Protected 変数 | |
const sc_dt::sc_fxval_fast & | object |
sc_dt::sc_fxval_fast | old_value |
sc_vcd_trace.cpp の 699 行で定義されています。
sc_core::vcd_sc_fxval_fast_trace::vcd_sc_fxval_fast_trace | ( | const sc_dt::sc_fxval_fast & | object, | |
const std::string & | name_, | |||
const std::string & | vcd_name_ | |||
) |
sc_vcd_trace.cpp の 716 行で定義されています。
00720 : vcd_trace( name_, vcd_name_ ), 00721 object( object_ ) 00722 { 00723 vcd_var_typ_name = "real"; 00724 bit_width = 1; 00725 old_value = object; 00726 }
void sc_core::vcd_sc_fxval_fast_trace::write | ( | FILE * | f | ) | [virtual] |
sc_core::vcd_traceを実装しています。
sc_vcd_trace.cpp の 735 行で定義されています。
00736 { 00737 std::fprintf( f, "r%.16g %s", object.to_double(), vcd_name.c_str() ); 00738 old_value = object; 00739 }
bool sc_core::vcd_sc_fxval_fast_trace::changed | ( | ) | [virtual] |
sc_core::vcd_traceを実装しています。
sc_vcd_trace.cpp の 729 行で定義されています。
00730 { 00731 return object != old_value; 00732 }
const sc_dt::sc_fxval_fast& sc_core::vcd_sc_fxval_fast_trace::object [protected] |
sc_vcd_trace.cpp の 711 行で定義されています。
sc_vcd_trace.cpp の 712 行で定義されています。