aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/include/asm/ptrace.h
diff options
context:
space:
mode:
authorJean Pihet <jean.pihet@linaro.org>2014-02-03 19:18:27 +0100
committerCatalin Marinas <catalin.marinas@arm.com>2014-03-13 11:22:37 +0000
commit2ee0d7fd36a3f87bc5b29b1ec54ad6728deedb41 (patch)
treeee61e586396af7ebf753a03fee22f268fc91312d /arch/arm64/include/asm/ptrace.h
parentarm64: Add boot time configuration of Intermediate Physical Address size (diff)
downloadlinux-dev-2ee0d7fd36a3f87bc5b29b1ec54ad6728deedb41.tar.xz
linux-dev-2ee0d7fd36a3f87bc5b29b1ec54ad6728deedb41.zip
ARM64: 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. Compat mode is also supported. Only the general purpose user space registers are exported, i.e.: PERF_REG_ARM_X0, ... PERF_REG_ARM_X28, PERF_REG_ARM_FP, PERF_REG_ARM_LR, PERF_REG_ARM_SP, PERF_REG_ARM_PC and not the PERF_REG_ARM_V* registers. Signed-off-by: Jean Pihet <jean.pihet@linaro.org> Acked-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/include/asm/ptrace.h')
-rw-r--r--arch/arm64/include/asm/ptrace.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/ptrace.h b/arch/arm64/include/asm/ptrace.h
index 5233966fba3d..35ff2f9de072 100644
--- a/arch/arm64/include/asm/ptrace.h
+++ b/arch/arm64/include/asm/ptrace.h
@@ -68,6 +68,7 @@
/* Architecturally defined mapping between AArch32 and AArch64 registers */
#define compat_usr(x) regs[(x)]
+#define compat_fp regs[11]
#define compat_sp regs[13]
#define compat_lr regs[14]
#define compat_sp_hyp regs[15]