473,811 Members | 2,586 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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_transaction s_p current_pkt_inf o;
sc_lv<22> current_key;
map<sc_lv<22>,c ur_transactions _p> current_working _tr_map;
map<sc_lv<22>, cur_transaction s_p>::iterator
current_working _tr_iterator;

current_key.ran ge(7,0) = am_packet.SrcSC ID;
current_key.ran ge(13,8) = am_packet.SrcFu ncID;
current_key.ran ge(21,14) = am_packet.TxnID ;

current_pkt_inf o.Req_type = am_packet.Opcod e;
current_working _tr_map.insert( make_pair( proxy_x->current_key,
proxy_x->current_pkt_in fo ) );


My cur_transctions _p class looks like this -
class cur_transaction s_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.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

member function `bool std::less<_Tp>: :operator()(con st _Tp&, const
_Tp&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

instantiated from `std::pair<std: :_Rb_tree_itera tor<_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_transaction s_p>, _KeyOfValue =
std::_Select1st <std::pair<cons t sc_dt::sc_lv<22 >, cur_transaction s_p>
, _Compare = std::less<sc_dt ::sc_lv<22> >, _Alloc = std::allocator< std::pair<const
sc_dt::sc_lv<22 >, cur_transaction s_p> >]'
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/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<cons t _Key, _Tp> >, _Compare,
_Alloc>::iterat or, bool> std::map<_Key, _Tp, _Compare,
_Alloc>::insert (const
std::pair<const _Key, _Tp>&) [with _Key = sc_dt::sc_lv<22 >, _Tp =
cur_transaction s_p, _Compare = std::less<sc_dt ::sc_lv<22> >, _Alloc =
std::allocator< std::pair<const sc_dt::sc_lv<22 >, cur_transaction s_p>]'

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/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.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

no
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/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.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

are: bool sc_dt::operator <(bool, const sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, bool)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_uint_ base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_ base&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_int_b ase&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_b ase&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(long long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

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

bool sc_dt::operator <(long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, long
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

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

bool sc_dt::operator <(unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, unsigned
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

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

bool sc_dt::operator <(long long int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

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

bool sc_dt::operator <(long int, const sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, long int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(int, const sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_conca tref&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_conca tref&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 230:

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

bool sc_dt::operator <(const sc_dt::sc_int_b ase&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 229:

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

bool sc_dt::operator <(const sc_dt::sc_uint_ base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 228:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_b ase&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 227:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_ base&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 225:

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

bool sc_dt::operator <(unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 223:

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

bool sc_dt::operator <(int, const sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 221:

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

bool sc_dt::operator <(long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 220:

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

bool sc_dt::operator <(long int, const sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 219:

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

bool sc_dt::operator <(long long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 218:

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

bool sc_dt::operator <(long long int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 216:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, unsigned
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 214:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 212:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, long
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 211:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, long int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 210:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 209:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 208:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:135 3:

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

bool sc_dt::operator <(const sc_dt::sc_uint_ base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:135 2:

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

bool sc_dt::operator <(const sc_dt::sc_int_b ase&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:135 1:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_ base&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:135 0:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_b ase&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:134 8:

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

bool sc_dt::operator <(unsigned int, const sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:134 6:

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

bool sc_dt::operator <(int, const sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:134 4:

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

bool sc_dt::operator <(long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:134 3:

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

bool sc_dt::operator <(long int, const sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:134 2:

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

bool sc_dt::operator <(long long unsigned int, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:134 1:

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

bool sc_dt::operator <(long long int, const sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:133 9:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, unsigned int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:133 7:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:133 5:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, long unsigned
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:133 4:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, long int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:133 3:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, long long
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:133 2:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, long long int)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_signed.h:133 1:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 206:

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

bool sc_dt::operator <(const sc_dt::sc_signe d&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_unsig ned&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_unsigned.h:1 205:

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

bool sc_dt::operator <(const sc_dt::sc_unsig ned&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_signe d&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

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

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

bool sc_dt::operator <(const sc_dt::sc_uint_ base&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_uint_ base&)
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/include/systemc/datatypes/int/sc_int_base.h:7 17:

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

bool sc_dt::operator <(const sc_dt::sc_int_b ase&, const
/net/tr4800a/users2/IUS56_lnx86.ISR 200603091112/tools/systemc/gcc//install/bin/g++:

sc_dt::sc_int_b ase&)


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

Mar 23 '06 #1
0 2067

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

Similar topics

5
5722
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. ================================================================= Error 19: "CORBAManagerMessages.h", line 4 # Unexpected 'std'. using std::string; ^^^
3
2167
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 System.Collections;
3
2445
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 project classes with 'using' meaning
14
5808
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 SQL DATABASE, probably by the click of a button. Is this possible? & what is the BEST APPROACH for doing this? & also if any links are there do tell those to me too coz I have no idea how to go about doing it.
8
2416
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 into the bin directory but am not able to progress. Can anyone please guide me to an online tutorial on the subject. Thanks,
0
2210
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 .NET 2.0 DataProvider (iAnywhere.Data.AsaClient.dll) into the GAC so it can be used in the ProviderName property of a SQLDataSource and loads properly at run time. The application I'm writing is a bit more complex than the example I'm about to...
10
1976
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, CN) Dim DR As OleDbDataReader = CMD.ExecuteReader()
0
2579
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 link (1,2,3 so on). The code can be found in SubscriptionCart.aspx.cs. Default.aspx ------------
3
8305
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 build with these methods, will appear to encrypt and decrypt, but the resulting decrypted file will be corrupted. I tried encrypting a .bmp file and then decrypting, the resulting decrypted file under .NET 2.0 is garbage, the .NET 1.1 build works...
6
5178
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 application working. However, when attempting to implement the solution, the AJAX calls weren't updating the screen like the examples were and seemed not to fire until after the long running process had completed. I found the only real...
0
9605
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10648
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10389
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10402
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10135
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7670
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5554
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3867
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3018
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.