blob: b30b5ebd614ada18d25b3fb7403f7a32e32a96d9 [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
Oleg Nesterov0ad6e3c2014-09-21 20:41:53 +020041#ifdef CONFIG_PREEMPT
42 THUNK ___preempt_schedule, preempt_schedule
43#ifdef CONFIG_CONTEXT_TRACKING
44 THUNK ___preempt_schedule_context, preempt_schedule_context
45#endif
46#endif
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 /* SAVE_ARGS below is used only for the .cfi directives it contains. */
49 CFI_STARTPROC
50 SAVE_ARGS
51restore:
52 RESTORE_ARGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020053 ret
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 CFI_ENDPROC
Masami Hiramatsu98def1d2014-04-17 17:17:26 +090055 _ASM_NOKPROBE(restore)