@@ -80,7 +80,7 @@ typedef enum {
80
80
} Vg_CallgrindClientRequest ;
81
81
82
82
/* Dump current state of cost centers, and zero them afterwards */
83
- #define CALLGRIND_DUMP_STATS \
83
+ #define CALLGRIND_DUMP_STATS \
84
84
VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__DUMP_STATS, 0, 0, 0, 0, 0)
85
85
86
86
/* Dump current state of cost centers, and zero them afterwards.
@@ -92,22 +92,22 @@ typedef enum {
92
92
0)
93
93
94
94
/* Zero cost centers */
95
- #define CALLGRIND_ZERO_STATS \
95
+ #define CALLGRIND_ZERO_STATS \
96
96
VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__ZERO_STATS, 0, 0, 0, 0, 0)
97
97
98
98
/* Toggles collection state.
99
99
The collection state specifies whether the happening of events
100
100
should be noted or if they are to be ignored. Events are noted
101
101
by increment of counters in a cost center */
102
- #define CALLGRIND_TOGGLE_COLLECT \
102
+ #define CALLGRIND_TOGGLE_COLLECT \
103
103
VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__TOGGLE_COLLECT, 0, 0, 0, 0, 0)
104
104
105
105
/* Start full callgrind instrumentation if not already switched on.
106
106
When cache simulation is done, it will flush the simulated cache;
107
107
this will lead to an artificial cache warmup phase afterwards with
108
108
cache misses which would not have happened in reality. */
109
- #define CALLGRIND_START_INSTRUMENTATION \
110
- VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__START_INSTRUMENTATION, 0, 0, 0, \
109
+ #define CALLGRIND_START_INSTRUMENTATION \
110
+ VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__START_INSTRUMENTATION, 0, 0, 0, \
111
111
0, 0)
112
112
113
113
/* Stop full callgrind instrumentation if not already switched off.
@@ -117,8 +117,8 @@ typedef enum {
117
117
Use this to bypass Callgrind aggregation for uninteresting code parts.
118
118
To start Callgrind in this mode to ignore the setup phase, use
119
119
the option "--instr-atstart=no". */
120
- #define CALLGRIND_STOP_INSTRUMENTATION \
121
- VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__STOP_INSTRUMENTATION, 0, 0, 0, \
120
+ #define CALLGRIND_STOP_INSTRUMENTATION \
121
+ VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__STOP_INSTRUMENTATION, 0, 0, 0, \
122
122
0, 0)
123
123
124
124
#endif /* __CALLGRIND_H */
0 commit comments