Add mean calculation in debug tools

Another simple performance counter...

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2008-10-11 19:25:16 +02:00
parent 6a15df1d82
commit a6017aa728
3 changed files with 23 additions and 1 deletions

View File

@@ -61,7 +61,6 @@ extern int Bioskey();
////
extern long dbg_cnt0;
extern long dbg_cnt1;
extern void dbg_print_hit_rate();
inline void dbg_hit_on(bool b) { dbg_cnt0++; if (b) dbg_cnt1++; }
inline void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
@@ -69,4 +68,12 @@ inline void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
inline void dbg_before() { dbg_cnt0++; }
inline void dbg_after() { dbg_cnt1++; }
inline void dbg_mean_of(int v) { dbg_cnt0++; dbg_cnt1 += v; }
extern void dbg_print_hit_rate();
extern void dbg_print_mean();
extern bool dbg_show_mean;
extern bool dbg_show_hit_rate;
#endif // !defined(MISC_H_INCLUDED)