Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/perf/arch/mips/include/perf_regs.h
26289 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef ARCH_PERF_REGS_H
3
#define ARCH_PERF_REGS_H
4
5
#include <stdlib.h>
6
#include <linux/types.h>
7
#include <asm/perf_regs.h>
8
9
#define PERF_REGS_MAX PERF_REG_MIPS_MAX
10
11
#define PERF_REGS_MASK ((1ULL << PERF_REG_MIPS_MAX) - 1)
12
13
#endif /* ARCH_PERF_REGS_H */
14
15