aboutsummaryrefslogtreecommitdiff
path: root/include/tcg/perf.h
blob: c96b5920a3fdf6349bbecc4edc428dac7c07dc27 (plain)
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
/*
 * Linux perf perf-<pid>.map and jit-<pid>.dump integration.
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef TCG_PERF_H
#define TCG_PERF_H

#if defined(CONFIG_TCG) && defined(CONFIG_LINUX)
/* Start writing perf-<pid>.map. */
void perf_enable_perfmap(void);

/* Start writing jit-<pid>.dump. */
void perf_enable_jitdump(void);

/* Add information about TCG prologue to profiler maps. */
void perf_report_prologue(const void *start, size_t size);

/* Add information about JITted guest code to profiler maps. */
void perf_report_code(uint64_t guest_pc, TranslationBlock *tb,
                      const void *start);

/* Stop writing perf-<pid>.map and/or jit-<pid>.dump. */
void perf_exit(void);
#else
static inline void perf_enable_perfmap(void)
{
}

static inline void perf_enable_jitdump(void)
{
}

static inline void perf_report_prologue(const void *start, size_t size)
{
}

static inline void perf_report_code(uint64_t guest_pc, TranslationBlock *tb,
                                    const void *start)
{
}

static inline void perf_exit(void)
{
}
#endif

#endif