123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- #ifndef count_h
- #define count_h "$Id $"
- #define MAXCOUNTERS 256
- int getCounterId(char *objectName);
- void setCounter(int counterId);
- void Init_WMOPS_counter (void);
- void Reset_WMOPS_counter (void);
- void WMOPS_output (Word16 notPrintWorstWorstCase);
- Word32 fwc (void);
- void move16 (void);
- void move32 (void);
- void logic16 (void);
- void logic32 (void);
- void test (void);
- typedef struct
- {
- Word32 add_ex;
- Word32 sub_ex;
- Word32 abs_s_ex;
- Word32 shl_ex;
- Word32 shr_ex;
- Word32 extract_h_ex;
- Word32 extract_l;
- Word32 mult_ex;
- Word32 L_mult_ex;
- Word32 negate_ex;
- Word32 round;
- Word32 L_mac_ex;
- Word32 L_msu_ex;
- Word32 L_macNs;
- Word32 L_msuNs;
- Word32 L_add_ex;
- Word32 L_sub_ex;
- Word32 L_add_c;
- Word32 L_sub_c;
- Word32 L_negate_ex;
- Word32 L_shl_ex;
- Word32 L_shr_ex;
- Word32 mult_r_ex;
- Word32 shr_r;
- Word32 shift_r;
- Word32 mac_r_ex;
- Word32 msu_r_ex;
- Word32 L_deposit_h_ex;
- Word32 L_deposit_l_ex;
- Word32 L_shr_r;
- Word32 L_shift_r;
- Word32 L_abs_ex;
- Word32 L_sat;
- Word32 norm_s_ex;
- Word32 div_s;
- Word32 norm_l_ex;
- Word32 DataMove16;
- Word32 DataMove32;
- Word32 Logic16;
- Word32 Logic32;
- Word32 Test;
- }
- BASIC_OP;
- #endif
|