2012-08-07 13:20:36 +00:00
|
|
|
#ifndef _LINUX_PERF_REGS_H
|
|
|
|
#define _LINUX_PERF_REGS_H
|
|
|
|
|
2015-01-04 18:36:19 +00:00
|
|
|
struct perf_regs {
|
|
|
|
__u64 abi;
|
|
|
|
struct pt_regs *regs;
|
|
|
|
};
|
|
|
|
|
2012-08-07 13:20:36 +00:00
|
|
|
#ifdef CONFIG_HAVE_PERF_REGS
|
|
|
|
#include <asm/perf_regs.h>
|
|
|
|
u64 perf_reg_value(struct pt_regs *regs, int idx);
|
|
|
|
int perf_reg_validate(u64 mask);
|
2012-08-07 13:20:37 +00:00
|
|
|
u64 perf_reg_abi(struct task_struct *task);
|
2015-01-04 18:36:19 +00:00
|
|
|
void perf_get_regs_user(struct perf_regs *regs_user,
|
|
|
|
struct pt_regs *regs,
|
|
|
|
struct pt_regs *regs_user_copy);
|
2012-08-07 13:20:36 +00:00
|
|
|
#else
|
|
|
|
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 13:20:37 +00:00
|
|
|
|
|
|
|
static inline u64 perf_reg_abi(struct task_struct *task)
|
|
|
|
{
|
|
|
|
return PERF_SAMPLE_REGS_ABI_NONE;
|
|
|
|
}
|
2015-01-04 18:36:19 +00:00
|
|
|
|
|
|
|
static inline void perf_get_regs_user(struct perf_regs *regs_user,
|
|
|
|
struct pt_regs *regs,
|
|
|
|
struct pt_regs *regs_user_copy)
|
|
|
|
{
|
|
|
|
regs_user->regs = task_pt_regs(current);
|
|
|
|
regs_user->abi = perf_reg_abi(current);
|
|
|
|
}
|
2012-08-07 13:20:36 +00:00
|
|
|
#endif /* CONFIG_HAVE_PERF_REGS */
|
|
|
|
#endif /* _LINUX_PERF_REGS_H */
|