blob: a63efd6bb6a5a24e9553abc8aef18e198be0953f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Borislav Petkov38e6b752011-05-31 22:21:54 +020012 /* rdi: arg1 ... normal C conventions. rax is saved/restored. */
13 .macro THUNK name, func, put_ret_addr_in_rdi=0
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 .globl \name
Borislav Petkov38e6b752011-05-31 22:21:54 +020015\name:
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 CFI_STARTPROC
Borislav Petkov38e6b752011-05-31 22:21:54 +020017
18 /* this one pushes 9 elems, the next one would be %rIP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 SAVE_ARGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020020
21 .if \put_ret_addr_in_rdi
22 movq_cfi_restore 9*8, rdi
23 .endif
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 call \func
26 jmp restore
27 CFI_ENDPROC
28 .endm
29
Ingo Molnar6375e2b2006-07-03 00:24:45 -070030#ifdef CONFIG_TRACE_IRQFLAGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020031 THUNK trace_hardirqs_on_thunk,trace_hardirqs_on_caller,1
32 THUNK trace_hardirqs_off_thunk,trace_hardirqs_off_caller,1
Ingo Molnar6375e2b2006-07-03 00:24:45 -070033#endif
Peter Zijlstra10cd7062007-10-11 22:11:12 +020034
35#ifdef CONFIG_DEBUG_LOCK_ALLOC
Borislav Petkov38e6b752011-05-31 22:21:54 +020036 THUNK lockdep_sys_exit_thunk,lockdep_sys_exit
Peter Zijlstra10cd7062007-10-11 22:11:12 +020037#endif
Borislav Petkov38e6b752011-05-31 22:21:54 +020038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 /* SAVE_ARGS below is used only for the .cfi directives it contains. */
40 CFI_STARTPROC
41 SAVE_ARGS
42restore:
43 RESTORE_ARGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020044 ret
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 CFI_ENDPROC