thunk_64.S 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Save registers before calling assembly functions. This avoids
  3. * disturbance of register allocation in some inline assembly constructs.
  4. * Copyright 2001,2002 by Andi Kleen, SuSE Labs.
  5. * Added trace_hardirqs callers - Copyright 2007 Steven Rostedt, Red Hat, Inc.
  6. * Subject to the GNU public license, v.2. No warranty of any kind.
  7. */
  8. #include <linux/linkage.h>
  9. #include "calling.h"
  10. #include <asm/asm.h>
  11. /* rdi: arg1 ... normal C conventions. rax is saved/restored. */
  12. .macro THUNK name, func, put_ret_addr_in_rdi=0
  13. .globl \name
  14. .type \name, @function
  15. \name:
  16. pushq %rbp
  17. movq %rsp, %rbp
  18. pushq %rdi
  19. pushq %rsi
  20. pushq %rdx
  21. pushq %rcx
  22. pushq %rax
  23. pushq %r8
  24. pushq %r9
  25. pushq %r10
  26. pushq %r11
  27. .if \put_ret_addr_in_rdi
  28. /* 8(%rbp) is return addr on stack */
  29. movq 8(%rbp), %rdi
  30. .endif
  31. call \func
  32. jmp .L_restore
  33. _ASM_NOKPROBE(\name)
  34. .endm
  35. #ifdef CONFIG_TRACE_IRQFLAGS
  36. THUNK trace_hardirqs_on_thunk,trace_hardirqs_on_caller,1
  37. THUNK trace_hardirqs_off_thunk,trace_hardirqs_off_caller,1
  38. #endif
  39. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  40. THUNK lockdep_sys_exit_thunk,lockdep_sys_exit
  41. #endif
  42. #ifdef CONFIG_PREEMPT
  43. THUNK ___preempt_schedule, preempt_schedule
  44. THUNK ___preempt_schedule_notrace, preempt_schedule_notrace
  45. #endif
  46. #if defined(CONFIG_TRACE_IRQFLAGS) \
  47. || defined(CONFIG_DEBUG_LOCK_ALLOC) \
  48. || defined(CONFIG_PREEMPT)
  49. .L_restore:
  50. popq %r11
  51. popq %r10
  52. popq %r9
  53. popq %r8
  54. popq %rax
  55. popq %rcx
  56. popq %rdx
  57. popq %rsi
  58. popq %rdi
  59. popq %rbp
  60. ret
  61. _ASM_NOKPROBE(.L_restore)
  62. #endif