ftrace.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * arch/arm64/include/asm/ftrace.h
  3. *
  4. * Copyright (C) 2013 Linaro Limited
  5. * Author: AKASHI Takahiro <takahiro.akashi@linaro.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef __ASM_FTRACE_H
  12. #define __ASM_FTRACE_H
  13. #include <asm/insn.h>
  14. #define MCOUNT_ADDR ((unsigned long)_mcount)
  15. #define MCOUNT_INSN_SIZE AARCH64_INSN_SIZE
  16. #ifndef __ASSEMBLY__
  17. #include <linux/compat.h>
  18. extern void _mcount(unsigned long);
  19. extern void *return_address(unsigned int);
  20. struct dyn_arch_ftrace {
  21. /* No extra data needed for arm64 */
  22. };
  23. extern unsigned long ftrace_graph_call;
  24. extern void return_to_handler(void);
  25. static inline unsigned long ftrace_call_adjust(unsigned long addr)
  26. {
  27. /*
  28. * addr is the address of the mcount call instruction.
  29. * recordmcount does the necessary offset calculation.
  30. */
  31. return addr;
  32. }
  33. #define ftrace_return_address(n) return_address(n)
  34. /*
  35. * Because AArch32 mode does not share the same syscall table with AArch64,
  36. * tracing compat syscalls may result in reporting bogus syscalls or even
  37. * hang-up, so just do not trace them.
  38. * See kernel/trace/trace_syscalls.c
  39. *
  40. * x86 code says:
  41. * If the user really wants these, then they should use the
  42. * raw syscall tracepoints with filtering.
  43. */
  44. #define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS
  45. static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs)
  46. {
  47. return is_compat_task();
  48. }
  49. #define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
  50. static inline bool arch_syscall_match_sym_name(const char *sym,
  51. const char *name)
  52. {
  53. /*
  54. * Since all syscall functions have __arm64_ prefix, we must skip it.
  55. * However, as we described above, we decided to ignore compat
  56. * syscalls, so we don't care about __arm64_compat_ prefix here.
  57. */
  58. return !strcmp(sym + 8, name);
  59. }
  60. #endif /* ifndef __ASSEMBLY__ */
  61. #endif /* __ASM_FTRACE_H */