2016-05-31 03:52:14 +02:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
;
|
2016-11-16 23:37:15 +01:00
|
|
|
; Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:00 +02:00
|
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
2016-05-31 03:52:14 +02:00
|
|
|
;
|
|
|
|
; Module Name:
|
|
|
|
;
|
|
|
|
; InterlockedIncrement.Asm
|
|
|
|
;
|
|
|
|
; Abstract:
|
|
|
|
;
|
|
|
|
; InterlockedIncrement function
|
|
|
|
;
|
|
|
|
; Notes:
|
|
|
|
;
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
SECTION .text
|
|
|
|
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; UINT32
|
|
|
|
; EFIAPI
|
|
|
|
; InternalSyncIncrement (
|
2016-11-16 23:37:15 +01:00
|
|
|
; IN volatile UINT32 *Value
|
2016-05-31 03:52:14 +02:00
|
|
|
; );
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
global ASM_PFX(InternalSyncIncrement)
|
|
|
|
ASM_PFX(InternalSyncIncrement):
|
2018-09-07 11:26:14 +02:00
|
|
|
mov ecx, [esp + 4]
|
|
|
|
mov eax, 1
|
|
|
|
lock xadd dword [ecx], eax
|
|
|
|
inc eax
|
2016-05-31 03:52:14 +02:00
|
|
|
ret
|
|
|
|
|