473,396 Members | 1,722 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Using STL map

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>::operator()(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
=
std::pair<const sc_dt::sc_lv<22>, cur_transactions_p>, _KeyOfValue =
std::_Select1st<std::pair<const sc_dt::sc_lv<22>, cur_transactions_p>
, _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 =
cur_transactions_p, _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++:

/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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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::operator<(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

Mar 23 '06 #1
0 2043

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Enos Meroka | last post by:
Hallo, I am a student doing my project in the university.. I have been trying to compile the program using HP -UX aCC compiler, however I keep on getting the following errors. ...
3
by: Mike L | last post by:
Should the command call "using" be before or after my namespace? **AFTER** namespace DataGridBrowser { using System; using System.Drawing; using System.Drawing.Drawing2D; using...
3
by: xzzy | last post by:
I was wondering why we have to have using System.Data using System.Configuration using etc.... why are they not all lumped into one 'using'? In other words, is there a best way to use...
14
by: pmud | last post by:
Hi, I need to use an Excel Sheet in ASP.NET application so that the users can enter (copy, paste ) large number of rows in this Excel Sheet. Also, Whatever the USER ENETRS needs to go to the...
8
by: acb | last post by:
Hi, I wrote a DLL Component (using Visual Studio 2005) and managed to include it into a C# Console application. I am now trying to include this component into a Web project. I copy the DLL...
0
by: Metal2You | last post by:
I'm working on an ASP.NET 2.0 application in Visual Studio 2005 that accesses a Sybase database back end. We're using Sybase SQL Anywhere 9.0.2.3228. I have installed and registered the Sybase...
10
by: mg | last post by:
I'm migrating from VB6 and have a question about using 'Using' and the best way to use it. Here is a example of a small bit of code: dbConx("open") Using CN Dim CMD As New OleDbCommand(sSQL,...
0
by: Eugene Anthony | last post by:
The problem with my coding is that despite removing the records stored in the array list, the rptPages repeater control is still visible. The rptPages repeater control displayes the navigation...
3
by: JDeats | last post by:
I have some .NET 1.1 code that utilizes this technique for encrypting and decrypting a file. http://support.microsoft.com/kb/307010 In .NET 2.0 this approach is not fully supported (a .NET 2.0...
6
by: =?Utf-8?B?U2hhd24gU2VzbmE=?= | last post by:
Greetings! I was researching AJAX to provide a solution to displaying status messages while a long process executed. I found several examples online and was able to use their code to get a quick...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.