* src/vm/cycles-stats.c (cycles_stats_print_percentile): Better extrapolation.
[cacao.git] / src / vm / cycles-stats.h
1 /* src/vm/cycles-stats.h - macros for cycle count statistics
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Edwin Steiner
28
29    Changes:
30
31    $Id$
32
33 */
34
35 #ifndef _CYCLES_STATS_H
36 #define _CYCLES_STATS_H
37
38 #include "config.h"
39 #include "vm/types.h"
40
41 #if defined(ENABLE_CYCLES_STATS)
42
43 #include <stdio.h>
44
45 #define CYCLES_STATS_DECLARE(name,nbins,divisor)                            \
46     static const int CYCLES_STATS_##name##_MAX = (nbins);                   \
47     static const int CYCLES_STATS_##name##_DIV = (divisor);                 \
48     static u4 cycles_stats_##name##_bins[(nbins) + 1] = { 0 };              \
49     static u4 cycles_stats_##name##_count = 0;                              \
50     static u8 cycles_stats_##name##_total = 0;                              \
51     static u8 cycles_stats_##name##_max = 0;                                \
52     static u8 cycles_stats_##name##_min = 1000000000;
53
54 #define CYCLES_STATS_GET(var)                                               \
55         (var) = asm_get_cycle_count()                                           \
56
57 #define CYCLES_STATS_COUNT(name,cyclesexpr)                                 \
58     do {                                                                    \
59         u8 cyc = (cyclesexpr);                                              \
60                 cycles_stats_##name##_total += cyc;                                 \
61         if (cyc > cycles_stats_##name##_max)                                \
62             cycles_stats_##name##_max = cyc;                                \
63         if (cyc < cycles_stats_##name##_min)                                \
64             cycles_stats_##name##_min = cyc;                                \
65         cyc /= CYCLES_STATS_##name##_DIV;                                   \
66         if (cyc < CYCLES_STATS_##name##_MAX)                                \
67             cycles_stats_##name##_bins[cyc]++;                              \
68         else                                                                \
69             cycles_stats_##name##_bins[CYCLES_STATS_##name##_MAX]++;        \
70         cycles_stats_##name##_count++;                                      \
71     } while (0)
72
73 #define CYCLES_STATS_PRINT(name,file)                                       \
74     do {                                                                    \
75         cycles_stats_print((file), #name,                                   \
76             CYCLES_STATS_##name##_MAX, CYCLES_STATS_##name##_DIV,           \
77             cycles_stats_##name##_bins, cycles_stats_##name##_count,        \
78             cycles_stats_##name##_total,                                    \
79             cycles_stats_##name##_min, cycles_stats_##name##_max, 0);       \
80     } while (0)
81
82 #define CYCLES_STATS_PRINT_OVERHEAD(name,file)                              \
83     do {                                                                    \
84         cycles_stats_print((file), #name,                                   \
85             CYCLES_STATS_##name##_MAX, CYCLES_STATS_##name##_DIV,           \
86             cycles_stats_##name##_bins, cycles_stats_##name##_count,        \
87             cycles_stats_##name##_total,                                    \
88             cycles_stats_##name##_min, cycles_stats_##name##_max, 1);       \
89     } while (0)
90
91 void cycles_stats_print(FILE *file,
92                                             const char *name, int nbins, int div,
93                                             u4 *bins, u8 count, u8 total, u8 min, u8 max,
94                                                 int overhead);
95
96
97 #else /* !defined(ENABLE_CYCLES_STATS) */
98
99 #define CYCLES_STATS_DECLARE(name,nbins,divisor)
100 #define CYCLES_STATS_GET(var)
101 #define CYCLES_STATS_COUNT(name,cyclesexpr)
102 #define CYCLES_STATS_PRINT(name,file)
103 #define CYCLES_STATS_PRINT_OVERHEAD(name,file)
104
105 #endif /* defined(ENABLE_CYCLES_STATS) */
106
107 #endif /* _CYCLES_STATS_H */
108
109 /*
110  * These are local overrides for various environment variables in Emacs.
111  * Please do not remove this and leave it at the end of the file, where
112  * Emacs will automagically detect them.
113  * ---------------------------------------------------------------------
114  * Local variables:
115  * mode: c
116  * indent-tabs-mode: t
117  * c-basic-offset: 4
118  * tab-width: 4
119  * End:
120  * vim:noexpandtab:sw=4:ts=4:
121  */