blob: 92d9feaff42b04fa0dd42f1c1f686cf3a43e7636 [file] [log] [blame]
Andi Kleencc1e6842006-09-26 10:52:29 +02001/*
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.
Steven Rostedt81d68a92008-05-12 21:20:42 +02005 * Added trace_hardirqs callers - Copyright 2007 Steven Rostedt, Red Hat, Inc.
Andi Kleencc1e6842006-09-26 10:52:29 +02006 * Subject to the GNU public license, v.2. No warranty of any kind.
7 */
Borislav Petkov38e6b752011-05-31 22:21:54 +02008#include <linux/linkage.h>
9#include <asm/dwarf2.h>
10#include <asm/calling.h>
Masami Hiramatsu98def1d2014-04-17 17:17:26 +090011#include <asm/asm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Borislav Petkov38e6b752011-05-31 22:21:54 +020013 /* rdi: arg1 ... normal C conventions. rax is saved/restored. */
14 .macro THUNK name, func, put_ret_addr_in_rdi=0
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 .globl \name
Borislav Petkov38e6b752011-05-31 22:21:54 +020016\name:
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 CFI_STARTPROC
Borislav Petkov38e6b752011-05-31 22:21:54 +020018
19 /* this one pushes 9 elems, the next one would be %rIP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 SAVE_ARGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020021
22 .if \put_ret_addr_in_rdi
23 movq_cfi_restore 9*8, rdi
24 .endif
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 call \func
27 jmp restore
28 CFI_ENDPROC
Masami Hiramatsu98def1d2014-04-17 17:17:26 +090029 _ASM_NOKPROBE(\name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .endm
31
Ingo Molnar6375e2b2006-07-03 00:24:45 -070032#ifdef CONFIG_TRACE_IRQFLAGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020033 THUNK trace_hardirqs_on_thunk,trace_hardirqs_on_caller,1
34 THUNK trace_hardirqs_off_thunk,trace_hardirqs_off_caller,1
Ingo Molnar6375e2b2006-07-03 00:24:45 -070035#endif
Peter Zijlstra10cd7062007-10-11 22:11:12 +020036
37#ifdef CONFIG_DEBUG_LOCK_ALLOC
Borislav Petkov38e6b752011-05-31 22:21:54 +020038 THUNK lockdep_sys_exit_thunk,lockdep_sys_exit
Peter Zijlstra10cd7062007-10-11 22:11:12 +020039#endif
Borislav Petkov38e6b752011-05-31 22:21:54 +020040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 /* SAVE_ARGS below is used only for the .cfi directives it contains. */
42 CFI_STARTPROC
43 SAVE_ARGS
44restore:
45 RESTORE_ARGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020046 ret
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 CFI_ENDPROC
Masami Hiramatsu98def1d2014-04-17 17:17:26 +090048 _ASM_NOKPROBE(restore)