thunk_64.S 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 <asm/dwarf2.h>
  10. #include <asm/calling.h>
  11. #include <asm/rwlock.h>
  12. /* rdi: arg1 ... normal C conventions. rax is saved/restored. */
  13. .macro THUNK name, func, put_ret_addr_in_rdi=0
  14. .globl \name
  15. \name:
  16. CFI_STARTPROC
  17. /* this one pushes 9 elems, the next one would be %rIP */
  18. SAVE_ARGS
  19. .if \put_ret_addr_in_rdi
  20. movq_cfi_restore 9*8, rdi
  21. .endif
  22. call \func
  23. jmp restore
  24. CFI_ENDPROC
  25. .endm
  26. #ifdef CONFIG_TRACE_IRQFLAGS
  27. THUNK trace_hardirqs_on_thunk,trace_hardirqs_on_caller,1
  28. THUNK trace_hardirqs_off_thunk,trace_hardirqs_off_caller,1
  29. #endif
  30. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  31. THUNK lockdep_sys_exit_thunk,lockdep_sys_exit
  32. #endif
  33. /* SAVE_ARGS below is used only for the .cfi directives it contains. */
  34. CFI_STARTPROC
  35. SAVE_ARGS
  36. restore:
  37. RESTORE_ARGS
  38. ret
  39. CFI_ENDPROC