M7350/kernel/arch/x86/lib/thunk_32.S

52 lines
1.1 KiB
ArmAsm
Raw Permalink Normal View History

2024-09-09 08:52:07 +00:00
/*
* Trampoline to trace irqs off. (otherwise CALLER_ADDR1 might crash)
* Copyright 2008 by Steven Rostedt, Red Hat, Inc
* (inspired by Andi Kleen's thunk_64.S)
* Subject to the GNU public license, v.2. No warranty of any kind.
*/
#include <linux/linkage.h>
2024-09-09 08:57:42 +00:00
#include <asm/asm.h>
#include <asm/dwarf2.h>
2024-09-09 08:52:07 +00:00
/* put return address in eax (arg1) */
2024-09-09 08:57:42 +00:00
.macro THUNK name, func, put_ret_addr_in_eax=0
2024-09-09 08:52:07 +00:00
.globl \name
\name:
2024-09-09 08:57:42 +00:00
CFI_STARTPROC
pushl_cfi %eax
CFI_REL_OFFSET eax, 0
pushl_cfi %ecx
CFI_REL_OFFSET ecx, 0
pushl_cfi %edx
CFI_REL_OFFSET edx, 0
.if \put_ret_addr_in_eax
2024-09-09 08:52:07 +00:00
/* Place EIP in the arg1 */
movl 3*4(%esp), %eax
2024-09-09 08:57:42 +00:00
.endif
2024-09-09 08:52:07 +00:00
call \func
2024-09-09 08:57:42 +00:00
popl_cfi %edx
CFI_RESTORE edx
popl_cfi %ecx
CFI_RESTORE ecx
popl_cfi %eax
CFI_RESTORE eax
2024-09-09 08:52:07 +00:00
ret
2024-09-09 08:57:42 +00:00
CFI_ENDPROC
_ASM_NOKPROBE(\name)
2024-09-09 08:52:07 +00:00
.endm
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_TRACE_IRQFLAGS
THUNK trace_hardirqs_on_thunk,trace_hardirqs_on_caller,1
THUNK trace_hardirqs_off_thunk,trace_hardirqs_off_caller,1
2024-09-09 08:52:07 +00:00
#endif
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_PREEMPT
THUNK ___preempt_schedule, preempt_schedule
#ifdef CONFIG_CONTEXT_TRACKING
THUNK ___preempt_schedule_context, preempt_schedule_context
#endif
#endif