cmpxchg8b_emu.S 957 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; version 2
 *	of the License.
 *
 */

#include <linux/linkage.h>
#include <asm/dwarf2.h>

.text

/*
 * Inputs:
 * %esi : memory location to compare
 * %eax : low 32 bits of old value
 * %edx : high 32 bits of old value
 * %ebx : low 32 bits of new value
 * %ecx : high 32 bits of new value
 */
ENTRY(cmpxchg8b_emu)
CFI_STARTPROC

#
# Emulate 'cmpxchg8b (%esi)' on UP except we don't
# set the whole ZF thing (caller will just compare
# eax:edx with the expected value)
#
J
Jan Beulich 已提交
30
	pushfl_cfi
31 32 33
	cli

	cmpl  (%esi), %eax
J
Jan Beulich 已提交
34
	jne .Lnot_same
35
	cmpl 4(%esi), %edx
J
Jan Beulich 已提交
36
	jne .Lhalf_same
37 38 39 40

	movl %ebx,  (%esi)
	movl %ecx, 4(%esi)

J
Jan Beulich 已提交
41 42
	CFI_REMEMBER_STATE
	popfl_cfi
43 44
	ret

J
Jan Beulich 已提交
45 46
	CFI_RESTORE_STATE
.Lnot_same:
47
	movl  (%esi), %eax
J
Jan Beulich 已提交
48
.Lhalf_same:
49 50
	movl 4(%esi), %edx

J
Jan Beulich 已提交
51
	popfl_cfi
52 53 54 55
	ret

CFI_ENDPROC
ENDPROC(cmpxchg8b_emu)