Using STL map

M

Mona

Newbie question - I am a newbie to c++ and stl maps. My question is
based onSystemC which is a specialized C++ hardware programming
language.
I am trying to create a map with key of type sc_lv<22> (sc_logic vector
with 22 bits) and the value is a class pf packets with 8 different
fields of type sc_lv also.

Here's what I am trying to do -

cur_transactions_p current_pkt_info;
sc_lv<22> current_key;
map<sc_lv<22>,cur_transactions_p> current_working_tr_map;
map<sc_lv<22>, cur_transactions_p>::iterator
current_working_tr_iterator;

current_key.range(7,0) = am_packet.SrcSCID;
current_key.range(13,8) = am_packet.SrcFuncID;
current_key.range(21,14) = am_packet.TxnID;

current_pkt_info.Req_type = am_packet.Opcode;
current_working_tr_map.insert( make_pair( proxy_x->current_key,
proxy_x->current_pkt_info ) );




My cur_transctions_p class looks like this -
class cur_transactions_p : public sc_module {
public:
sc_lv<8> Req_type;
sc_lv<8> Home_rsp;
sc_lv<8> Exp_snps;
sc_lv<1> Final_cmp_reqd;
sc_lv<8> Snp_rsp;
sc_lv<8> Final_cmp_rsp;
sc_lv<8> Final_home_rsp;



This is the error I see when I compile
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc/3.2.3/install/include/c++/3.2.3/bits/stl_function.h:

In
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

member function `bool std::less<_Tp>::eek:perator()(const _Tp&, const
_Tp&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

const [with _Tp = sc_dt::sc_lv<22>]':
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc/3.2.3/install/include/c++/3.2.3/bits/stl_tree.h:1042:

instantiated from `std::pair<std::_Rb_tree_iterator<_Val, _Val&,
_Val*>, bool> std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare,
_Alloc>::insert_unique(const _Val&) [with _Key = sc_dt::sc_lv<22>, _Val
=
cur_transactions_p> said:
, _Compare =
std::less<sc_dt::sc_lv<22> >, _Alloc = std::allocator<std::pair<const
sc_dt::sc_lv<22>, cur_transactions_p> >]'
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc/3.2.3/install/include/c++/3.2.3/bits/stl_map.h:245:

instantiated from `std::pair<std::_Rb_tree<_Key, std::pair<const _Key,
_Tp>, std::_Select1st<std::pair<const _Key, _Tp> >, _Compare,
_Alloc>::iterator, bool> std::map<_Key, _Tp, _Compare,
_Alloc>::insert(const
std::pair<const _Key, _Tp>&) [with _Key = sc_dt::sc_lv<22>, _Tp =
_Alloc = said:
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/vobs/cmp3_tr/src/sys_tb/bus_mon/sys_tb_4x_proxy_xactor_fc.cpp:88:
instantiated from here
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc/3.2.3/install/include/c++/3.2.3/bits/stl_function.h:197:

no
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

match for `const sc_dt::sc_lv<22>& < const sc_dt::sc_lv<22>&' operator
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

candidates
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

are: bool sc_dt::eek:perator<(bool, const sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, bool)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_uint_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_base&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_int_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_base&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

unsigned int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, long
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

unsigned int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, unsigned
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long long int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long int, const sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, long int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(int, const sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/misc/sc_concatref.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_concatref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_concatref&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1230:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_int_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1229:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_uint_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1228:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_base&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1227:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_base&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1225:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1223:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(int, const sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1221:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1220:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long int, const sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1219:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1218:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long long int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1216:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, unsigned
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1214:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1212:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, long
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

unsigned int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1211:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, long int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1210:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

unsigned int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1209:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1208:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1353:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_uint_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1352:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_int_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1351:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_base&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1350:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_base&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1348:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(unsigned int, const sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1346:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(int, const sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1344:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1343:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long int, const sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1342:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1341:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(long long int, const sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1339:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, unsigned int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1337:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1335:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, long unsigned
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1334:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, long int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1333:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

unsigned int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1332:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, long long int)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:1331:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1206:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_signed&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsigned&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1205:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_unsigned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signed&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_uint_base.h:715:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_uint_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_base&)
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/include/systemc/datatypes/int/sc_int_base.h:717:

/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

bool sc_dt::eek:perator<(const sc_dt::sc_int_base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_base&)




I am a total newbie to this any any help would be greatly appreciated.
Thank you so much.
Mona
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,535
Members
45,007
Latest member
obedient dusk

Latest Threads

Top