perf_regs.h (367B)
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#define PERF_REG_IP PERF_REG_MIPS_PC 11#define PERF_REG_SP PERF_REG_MIPS_R29 12 13#define PERF_REGS_MASK ((1ULL << PERF_REG_MIPS_MAX) - 1) 14 15#endif /* ARCH_PERF_REGS_H */