#include <assert.h>#include <time.h>#include <stdlib.h>#include "systemc/kernel/sc_simcontext.h"#include "systemc/kernel/sc_ver.h"#include "systemc/datatypes/bit/sc_bit.h"#include "systemc/datatypes/bit/sc_logic.h"#include "systemc/datatypes/bit/sc_lv_base.h"#include "systemc/datatypes/int/sc_signed.h"#include "systemc/datatypes/int/sc_unsigned.h"#include "systemc/datatypes/int/sc_int_base.h"#include "systemc/datatypes/int/sc_uint_base.h"#include "systemc/datatypes/fx/fx.h"#include "systemc/tracing/sc_wif_trace.h"#include "systemc/utils/sc_string.h"Include dependency graph for sc_wif_trace.cpp:

Go to the source code of this file.
|
|
Value: void \ wif_trace_file::trace( const tp& object_, const sc_string& name_ ) \ { \ if( initialized ) { \ wif_put_error_message( \ "No traces can be added once simulation has started.\n" \ "To add traces, create a new wif trace file.", false ); \ } \ sc_string temp_wif_name; \ create_wif_name( &temp_wif_name ); \ traces.push_back( new wif_ ## tp ## _trace( object_, \ name_, \ temp_wif_name ) ); \ } Definition at line 1711 of file sc_wif_trace.cpp. |
|
|
Value: void \ wif_trace_file::trace( const tp& object_, \ const sc_string& name_, \ int width_ ) \ { \ if( initialized ) { \ wif_put_error_message( \ "No traces can be added once simulation has started.\n" \ "To add traces, create a new wif trace file.", false ); \ } \ sc_string temp_wif_name; \ create_wif_name( &temp_wif_name ); \ traces.push_back( new wif_ ## tp ## _trace( object_, \ name_, \ temp_wif_name, \ width_ ) ); \ } Definition at line 1799 of file sc_wif_trace.cpp. |
|
|
Value: void \ wif_trace_file::trace( const tp& object_, \ const sc_string& name_, \ int width_ ) \ { \ if( initialized ) { \ wif_put_error_message( \ "No traces can be added once simulation has started.\n" \ "To add traces, create a new wif trace file.", false ); \ } \ sc_string temp_wif_name; \ create_wif_name( &temp_wif_name ); \ traces.push_back( new wif_signed_ ## tp ## _trace( object_, \ name_, \ temp_wif_name, \ width_ ) ); \ } Definition at line 1747 of file sc_wif_trace.cpp. |
|
|
Value: void \ wif_trace_file::trace( const unsigned tp& object_, \ const sc_string& name_, \ int width_ ) \ { \ if( initialized ) { \ wif_put_error_message( \ "No traces can be added once simulation has started.\n" \ "To add traces, create a new wif trace file.", false ); \ } \ sc_string temp_wif_name; \ create_wif_name( &temp_wif_name ); \ traces.push_back( new wif_unsigned_ ## tp ## _trace( object_, \ name_, \ temp_wif_name, \ width_ ) ); \ } Definition at line 1766 of file sc_wif_trace.cpp. |
|
|
Definition at line 1551 of file sc_wif_trace.cpp. |
|
|
Definition at line 1552 of file sc_wif_trace.cpp. |
|
|
Definition at line 2013 of file sc_wif_trace.cpp. |
|
|
Definition at line 2003 of file sc_wif_trace.cpp. References sc_simcontext::add_trace_file(), and sc_get_curr_simcontext(). |
|
||||||||||||
|
Definition at line 1991 of file sc_wif_trace.cpp. Referenced by wif_trace::print_variable_declaration_line(), wif_trace_file::sc_set_wif_time_unit(), wif_trace_file::trace(), wif_trace_file::traceT(), and wif_enum_trace::write(). |
|
|
Definition at line 85 of file sc_wif_trace.cpp. Referenced by wif_T_trace< T >::wif_T_trace(). |
1.2.18