blob: e9acf5f4fc923caa2bd71cfa175462617130ed89 [file] [log] [blame]
Steven Rostedt81d68a92008-05-12 21:20:42 +02001/*
2 * Trampoline to trace irqs off. (otherwise CALLER_ADDR1 might crash)
3 * Copyright 2008 by Steven Rostedt, Red Hat, Inc
4 * (inspired by Andi Kleen's thunk_64.S)
5 * Subject to the GNU public license, v.2. No warranty of any kind.
6 */
Steven Rostedt81d68a92008-05-12 21:20:42 +02007 #include <linux/linkage.h>
Masami Hiramatsu98def1d2014-04-17 17:17:26 +09008 #include <asm/asm.h>
Steven Rostedt81d68a92008-05-12 21:20:42 +02009
Steven Rostedt81d68a92008-05-12 21:20:42 +020010 /* put return address in eax (arg1) */
Oleg Nesterov0ad6e3c2014-09-21 20:41:53 +020011 .macro THUNK name, func, put_ret_addr_in_eax=0
Steven Rostedt81d68a92008-05-12 21:20:42 +020012 .globl \name
13\name:
14 pushl %eax
15 pushl %ecx
16 pushl %edx
Oleg Nesterov0ad6e3c2014-09-21 20:41:53 +020017
18 .if \put_ret_addr_in_eax
Steven Rostedt81d68a92008-05-12 21:20:42 +020019 /* Place EIP in the arg1 */
20 movl 3*4(%esp), %eax
Oleg Nesterov0ad6e3c2014-09-21 20:41:53 +020021 .endif
22
Steven Rostedt81d68a92008-05-12 21:20:42 +020023 call \func
24 popl %edx
25 popl %ecx
26 popl %eax
27 ret
Masami Hiramatsu98def1d2014-04-17 17:17:26 +090028 _ASM_NOKPROBE(\name)
Steven Rostedt81d68a92008-05-12 21:20:42 +020029 .endm
30
Oleg Nesterov0ad6e3c2014-09-21 20:41:53 +020031#ifdef CONFIG_TRACE_IRQFLAGS
32 THUNK trace_hardirqs_on_thunk,trace_hardirqs_on_caller,1
33 THUNK trace_hardirqs_off_thunk,trace_hardirqs_off_caller,1
Steven Rostedt81d68a92008-05-12 21:20:42 +020034#endif
Oleg Nesterov0ad6e3c2014-09-21 20:41:53 +020035
36#ifdef CONFIG_PREEMPT
37 THUNK ___preempt_schedule, preempt_schedule
38#ifdef CONFIG_CONTEXT_TRACKING
39 THUNK ___preempt_schedule_context, preempt_schedule_context
40#endif
41#endif
42