sc_trace.cpp File Reference

#include <stdarg.h>
#include <stdio.h>
#include "sysc/utils/sc_iostream.h"
#include "sysc/tracing/sc_trace.h"
#include "sysc/communication/sc_signal_ifs.h"
#include "sysc/utils/sc_utils_ids.h"

Include dependency graph for sc_trace.cpp:

Go to the source code of this file.

Namespaces

namespace  sc_core

Defines

#define DEFN_TRACE_FUNC_REF_A(tp)
#define DEFN_TRACE_FUNC_PTR_A(tp)
#define DEFN_TRACE_FUNC_A(tp)

Functions

void sc_core::put_error_message (const char *msg, bool just_warning)
void sc_core::tprintf (sc_trace_file *tf, const char *format,...)
void sc_core::sc_trace (sc_trace_file *tf, const sc_signal_in_if< char > &object, const std::string &name, int width)
void sc_core::sc_trace (sc_trace_file *tf, const sc_signal_in_if< short > &object, const std::string &name, int width)
void sc_core::sc_trace (sc_trace_file *tf, const sc_signal_in_if< int > &object, const std::string &name, int width)
void sc_core::sc_trace (sc_trace_file *tf, const sc_signal_in_if< long > &object, const std::string &name, int width)
void sc_core::sc_trace (sc_trace_file *, const void *, const std::string &name)
void sc_core::double_to_special_int64 (double in, unsigned *high, unsigned *low)
void sc_core::sc_trace (sc_trace_file *tf, const unsigned int &object, const std::string &name, const char **enum_literals)


Define Documentation

#define DEFN_TRACE_FUNC_A ( tp   ) 

Value:

Definition at line 257 of file sc_trace.cpp.

#define DEFN_TRACE_FUNC_PTR_A ( tp   ) 

Value:

void                                                                          \
sc_trace( sc_trace_file* tf, const tp* object, const std::string& name ) \
{                                                                             \
    if( tf ) {                                                                \
    tf->trace( *object, name );                                           \
    }                                                                         \
}

Definition at line 248 of file sc_trace.cpp.

#define DEFN_TRACE_FUNC_REF_A ( tp   ) 

Value:

void                                                                          \
sc_trace( sc_trace_file* tf, const tp& object, const std::string& name ) \
{                                                                             \
    if( tf ) {                                                                \
    tf->trace( object, name );                                            \
    }                                                                         \
}

Definition at line 239 of file sc_trace.cpp.


Generated on Wed Jan 21 15:32:11 2009 for SystemC by  doxygen 1.5.5