blob: d5b088b3ab81dbb010b51f236a5745aab4535d08 [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>
11#include <asm/rwlock.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
29 .endm
30
Ingo Molnar6375e2b2006-07-03 00:24:45 -070031#ifdef CONFIG_TRACE_IRQFLAGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020032 THUNK trace_hardirqs_on_thunk,trace_hardirqs_on_caller,1
33 THUNK trace_hardirqs_off_thunk,trace_hardirqs_off_caller,1
Ingo Molnar6375e2b2006-07-03 00:24:45 -070034#endif
Peter Zijlstra10cd7062007-10-11 22:11:12 +020035
36#ifdef CONFIG_DEBUG_LOCK_ALLOC
Borislav Petkov38e6b752011-05-31 22:21:54 +020037 THUNK lockdep_sys_exit_thunk,lockdep_sys_exit
Peter Zijlstra10cd7062007-10-11 22:11:12 +020038#endif
Borislav Petkov38e6b752011-05-31 22:21:54 +020039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 /* SAVE_ARGS below is used only for the .cfi directives it contains. */
41 CFI_STARTPROC
42 SAVE_ARGS
43restore:
44 RESTORE_ARGS
Borislav Petkov38e6b752011-05-31 22:21:54 +020045 ret
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 CFI_ENDPROC