2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2012-08-07 15:20:36 +02:00
|
|
|
#ifndef _LINUX_PERF_REGS_H
|
|
|
|
|
#define _LINUX_PERF_REGS_H
|
|
|
|
|
|
2017-02-08 18:51:37 +01:00
|
|
|
#include <linux/sched/task_stack.h>
|
|
|
|
|
|
2015-01-04 10:36:19 -08:00
|
|
|
struct perf_regs {
|
|
|
|
|
__u64 abi;
|
|
|
|
|
struct pt_regs *regs;
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-07 15:20:36 +02:00
|
|
|
#ifdef CONFIG_HAVE_PERF_REGS
|
|
|
|
|
#include <asm/perf_regs.h>
|
2019-05-28 15:08:30 -07:00
|
|
|
|
|
|
|
|
#ifndef PERF_REG_EXTENDED_MASK
|
|
|
|
|
#define PERF_REG_EXTENDED_MASK 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-08-07 15:20:36 +02:00
|
|
|
u64 perf_reg_value(struct pt_regs *regs, int idx);
|
|
|
|
|
int perf_reg_validate(u64 mask);
|
2012-08-07 15:20:37 +02:00
|
|
|
u64 perf_reg_abi(struct task_struct *task);
|
2015-01-04 10:36:19 -08:00
|
|
|
void perf_get_regs_user(struct perf_regs *regs_user,
|
2020-10-30 12:14:21 +01:00
|
|
|
struct pt_regs *regs);
|
2012-08-07 15:20:36 +02:00
|
|
|
#else
|
2019-05-28 15:08:30 -07:00
|
|
|
|
|
|
|
|
#define PERF_REG_EXTENDED_MASK 0
|
|
|
|
|
|
2012-08-07 15:20:36 +02:00
|
|
|
static inline u64 perf_reg_value(struct pt_regs *regs, int idx)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline int perf_reg_validate(u64 mask)
|
|
|
|
|
{
|
|
|
|
|
return mask ? -ENOSYS : 0;
|
|
|
|
|
}
|
2012-08-07 15:20:37 +02:00
|
|
|
|
|
|
|
|
static inline u64 perf_reg_abi(struct task_struct *task)
|
|
|
|
|
{
|
|
|
|
|
return PERF_SAMPLE_REGS_ABI_NONE;
|
|
|
|
|
}
|
2015-01-04 10:36:19 -08:00
|
|
|
|
|
|
|
|
static inline void perf_get_regs_user(struct perf_regs *regs_user,
|
2020-10-30 12:14:21 +01:00
|
|
|
struct pt_regs *regs)
|
2015-01-04 10:36:19 -08:00
|
|
|
{
|
|
|
|
|
regs_user->regs = task_pt_regs(current);
|
|
|
|
|
regs_user->abi = perf_reg_abi(current);
|
|
|
|
|
}
|
2012-08-07 15:20:36 +02:00
|
|
|
#endif /* CONFIG_HAVE_PERF_REGS */
|
|
|
|
|
#endif /* _LINUX_PERF_REGS_H */
|