perf_regs.c 948 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include <linux/errno.h>
  2. #include <linux/kernel.h>
  3. #include <linux/perf_event.h>
  4. #include <linux/bug.h>
  5. #include <asm/compat.h>
  6. #include <asm/perf_regs.h>
  7. #include <asm/ptrace.h>
  8. u64 perf_reg_value(struct pt_regs *regs, int idx)
  9. {
  10. if (WARN_ON_ONCE((u32)idx >= PERF_REG_ARM64_MAX))
  11. return 0;
  12. /*
  13. * Compat (i.e. 32 bit) mode:
  14. * - PC has been set in the pt_regs struct in kernel_entry,
  15. * - Handle SP and LR here.
  16. */
  17. if (compat_user_mode(regs)) {
  18. if ((u32)idx == PERF_REG_ARM64_SP)
  19. return regs->compat_sp;
  20. if ((u32)idx == PERF_REG_ARM64_LR)
  21. return regs->compat_lr;
  22. }
  23. return regs->regs[idx];
  24. }
  25. #define REG_RESERVED (~((1ULL << PERF_REG_ARM64_MAX) - 1))
  26. int perf_reg_validate(u64 mask)
  27. {
  28. if (!mask || mask & REG_RESERVED)
  29. return -EINVAL;
  30. return 0;
  31. }
  32. u64 perf_reg_abi(struct task_struct *task)
  33. {
  34. if (is_compat_thread(task_thread_info(task)))
  35. return PERF_SAMPLE_REGS_ABI_32;
  36. else
  37. return PERF_SAMPLE_REGS_ABI_64;
  38. }