2 * x86 semaphore implementation.
4 * (C) Copyright 1999 Linus Torvalds
6 * Portions Copyright 1999 Red Hat, Inc.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
13 * rw semaphores implemented November 1999 by Benjamin LaHaise <bcrl@kvack.org>
16 #include <linux/linkage.h>
17 #include <asm/alternative-asm.h>
19 #define __ASM_HALF_REG(reg) __ASM_SEL(reg, e##reg)
20 #define __ASM_HALF_SIZE(inst) __ASM_SEL(inst##w, inst##l)
25 * The semaphore operations have a special calling sequence that
26 * allow us to do a simpler in-line version of them. These routines
27 * need to convert that sequence back into the C sequence when
28 * there is contention on the semaphore.
30 * %eax contains the semaphore pointer on entry. Save the C-clobbered
31 * registers (%eax, %edx and %ecx) except %eax whish is either a return
32 * value or just clobbered..
35 #define save_common_regs \
38 #define restore_common_regs \
41 /* Avoid uglifying the argument copying x86-64 needs to do. */
48 * x86-64 rwsem wrappers
50 * This interfaces the inline asm code to the slow-path
51 * C routines. We need to save the call-clobbered regs
52 * that the asm does not mark as clobbered, and move the
53 * argument from %rax to %rdi.
55 * NOTE! We don't need to save %rax, because the functions
56 * will always return the semaphore pointer in %rax (which
57 * is also the input argument to these helpers)
59 * The following can clobber %rdx because the asm clobbers it:
60 * call_rwsem_down_write_failed
62 * but %rdi, %rsi, %rcx, %r8-r11 always need saving.
65 #define save_common_regs \
74 #define restore_common_regs \
85 /* Fix up special calling conventions */
86 ENTRY(call_rwsem_down_read_failed)
88 __ASM_SIZE(push,) %__ASM_REG(dx)
90 call rwsem_down_read_failed
91 __ASM_SIZE(pop,) %__ASM_REG(dx)
94 ENDPROC(call_rwsem_down_read_failed)
96 ENTRY(call_rwsem_down_write_failed)
99 call rwsem_down_write_failed
102 ENDPROC(call_rwsem_down_write_failed)
104 ENTRY(call_rwsem_wake)
105 /* do nothing if still outstanding active readers */
106 __ASM_HALF_SIZE(dec) %__ASM_HALF_REG(dx)
113 ENDPROC(call_rwsem_wake)
115 ENTRY(call_rwsem_downgrade_wake)
117 __ASM_SIZE(push,) %__ASM_REG(dx)
119 call rwsem_downgrade_wake
120 __ASM_SIZE(pop,) %__ASM_REG(dx)
123 ENDPROC(call_rwsem_downgrade_wake)