diff options
author | Will Deacon <will.deacon@arm.com> | 2013-09-26 12:36:35 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2013-09-30 16:41:50 +0100 |
commit | 49863894db3ed7bd41541b1c17733273966cea71 (patch) | |
tree | 11ae0ce6aadc67d797ae15ce4951c610ef1edcd0 /arch/arm/kernel/perf_regs.c | |
parent | 15c03dd4859ab16f9212238f29dd315654aa94f6 (diff) | |
download | lwn-49863894db3ed7bd41541b1c17733273966cea71.tar.gz lwn-49863894db3ed7bd41541b1c17733273966cea71.zip |
ARM: perf: add support for perf registers API
This patch implements the functions required for the perf registers API,
allowing the perf tool to interface kernel register dumps with libunwind
in order to provide userspace backtracing.
Cc: Jean Pihet <jean.pihet@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm/kernel/perf_regs.c')
-rw-r--r-- | arch/arm/kernel/perf_regs.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/kernel/perf_regs.c b/arch/arm/kernel/perf_regs.c new file mode 100644 index 000000000000..6e4379c67cbc --- /dev/null +++ b/arch/arm/kernel/perf_regs.c @@ -0,0 +1,30 @@ + +#include <linux/errno.h> +#include <linux/kernel.h> +#include <linux/perf_event.h> +#include <linux/bug.h> +#include <asm/perf_regs.h> +#include <asm/ptrace.h> + +u64 perf_reg_value(struct pt_regs *regs, int idx) +{ + if (WARN_ON_ONCE((u32)idx >= PERF_REG_ARM_MAX)) + return 0; + + return regs->uregs[idx]; +} + +#define REG_RESERVED (~((1ULL << PERF_REG_ARM_MAX) - 1)) + +int perf_reg_validate(u64 mask) +{ + if (!mask || mask & REG_RESERVED) + return -EINVAL; + + return 0; +} + +u64 perf_reg_abi(struct task_struct *task) +{ + return PERF_SAMPLE_REGS_ABI_32; +} |