mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-28 12:25:19 +01:00
36 lines
995 B
NASM
36 lines
995 B
NASM
|
;------------------------------------------------------------------------------
|
||
|
;
|
||
|
; Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
;
|
||
|
; Module Name:
|
||
|
;
|
||
|
; InterlockedCompareExchange64.Asm
|
||
|
;
|
||
|
; Abstract:
|
||
|
;
|
||
|
; InterlockedCompareExchange64 function
|
||
|
;
|
||
|
; Notes:
|
||
|
;
|
||
|
;------------------------------------------------------------------------------
|
||
|
|
||
|
DEFAULT REL
|
||
|
SECTION .text
|
||
|
|
||
|
;------------------------------------------------------------------------------
|
||
|
; UINT64
|
||
|
; EFIAPI
|
||
|
; InternalSyncCompareExchange64 (
|
||
|
; IN volatile UINT64 *Value,
|
||
|
; IN UINT64 CompareValue,
|
||
|
; IN UINT64 ExchangeValue
|
||
|
; );
|
||
|
;------------------------------------------------------------------------------
|
||
|
global ASM_PFX(InternalSyncCompareExchange64)
|
||
|
ASM_PFX(InternalSyncCompareExchange64):
|
||
|
mov rax, rdx
|
||
|
lock cmpxchg [rcx], r8
|
||
|
ret
|
||
|
|