-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.h
96 lines (76 loc) · 2.6 KB
/
stats.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* Copyright (C) 2021-2022 ETH Zurich and University of Bologna
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _STATS_H
#define _STATS_H
#ifdef BOARD
#define INIT_STATS()
unsigned long _cycles = 0; \
int id = 0;
#define PRE_START_STATS() \
pi_perf_conf((1<<PI_PERF_CYCLES));
#define START_STATS() \
pi_perf_stop(); \
pi_perf_reset(); \
pi_perf_start();
#define STOP_STATS() \
pi_perf_stop(); \
_cycles = pi_perf_read (PI_PERF_CYCLES); \
id = pi_core_id(); \
printf("\n"); \
printf("[%d] cycles = %lu\n", id, _cycles);
#else
#ifdef STATS
#define INIT_STATS()
unsigned long _cycles = 0; \
unsigned long _instr = 0; \
unsigned long _active = 0; \
unsigned long _ldext = 0; \
unsigned long _tcdmcont = 0; \
unsigned long _ldstall = 0; \
unsigned long _imiss = 0; \
int id = 0;
#define PRE_START_STATS() \
pi_perf_conf((1<<PI_PERF_CYCLES) | (1<<PI_PERF_INSTR) | (1<<PI_PERF_ACTIVE_CYCLES) | (1<<PI_PERF_LD_EXT) | (1<<PI_PERF_TCDM_CONT) | (1<<PI_PERF_LD_STALL) | (1<<PI_PERF_IMISS) );
#define START_STATS() \
pi_perf_stop(); \
pi_perf_reset(); \
pi_perf_start();
#define STOP_STATS() \
pi_perf_stop(); \
_cycles = pi_perf_read (PI_PERF_CYCLES); \
_instr = pi_perf_read (PI_PERF_INSTR); \
_active = pi_perf_read (PI_PERF_ACTIVE_CYCLES); \
_ldext = pi_perf_read (PI_PERF_LD_EXT); \
_tcdmcont = pi_perf_read (PI_PERF_TCDM_CONT); \
_ldstall = pi_perf_read (PI_PERF_LD_STALL); \
_imiss = pi_perf_read (PI_PERF_IMISS); \
id = pi_core_id(); \
printf("\n"); \
printf("[%d] cycles = %lu\n", id, _cycles); \
printf("[%d] instr = %lu\n", id, _instr); \
printf("[%d] active cycles = %lu\n", id, _active); \
printf("[%d] ext load = %lu\n", id, _ldext); \
printf("[%d] TCDM cont = %lu\n", id, _tcdmcont); \
printf("[%d] ld stall = %lu\n", id, _ldstall); \
printf("[%d] imiss = %lu\n", id, _imiss);
#else // STATS
#define INIT_STATS()
#define PRE_START_STATS()
#define START_STATS()
#define STOP_STATS()
#endif // STATS
#endif
#endif