Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/perf/arch/mips/util/perf_regs.c
26289 views
1
// SPDX-License-Identifier: GPL-2.0
2
#include "perf_regs.h"
3
#include "../../util/perf_regs.h"
4
5
static const struct sample_reg sample_reg_masks[] = {
6
SMPL_REG_END
7
};
8
9
uint64_t arch__intr_reg_mask(void)
10
{
11
return PERF_REGS_MASK;
12
}
13
14
uint64_t arch__user_reg_mask(void)
15
{
16
return PERF_REGS_MASK;
17
}
18
19
const struct sample_reg *arch__sample_reg_masks(void)
20
{
21
return sample_reg_masks;
22
}
23
24