2009-01-30 00:45:13 +00:00
|
|
|
/** @file
|
2009-01-30 01:25:06 +00:00
|
|
|
Declaration of internal functions in BaseSynchronizationLib.
|
2009-01-30 00:45:13 +00:00
|
|
|
|
2018-06-27 21:11:33 +08:00
|
|
|
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-03 16:06:00 -07:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2009-01-30 00:45:13 +00:00
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
MdePkg: Replace include guards with #pragma once
Replace traditional `#ifndef`/`#define`/`#endif` include guards with
`#pragma` once.
`#pragma once` is a widely supported preprocessor directive that
prevents header files from being included multiple times. It is
supported by all toolchains used to build edk2: GCC, Clang/LLVM, and
MSVC.
Compared to macro-based include guards, `#pragma once`:
- Eliminates the risk of macro name collisions or copy/paste errors
where two headers inadvertently use the same guard macro.
- Eliminate inconsistency in the way include guard macros are named
(e.g., some files use `__FILE_H__`, others use `FILE_H_`, etc.).
- Reduces boilerplate (three lines replaced by one).
- Avoids polluting the macro namespace with guard symbols.
- Can improve build times as the preprocessor can skip re-opening the
file entirely, rather than re-reading it to find the matching
`#endif` ("multiple-include optimization").
- Note that some compilers may already optimize traditional include
guards, by recognzining the idiomatic pattern.
This change is made acknowledging that overall portability of the
code will technically be reduced, as `#pragma once` is not part of the
C/C++ standards.
However, this is considered acceptable given:
1. edk2 already defines a subset of supported compilers in
BaseTools/Conf/tools_def.template, all of which have supported
`#pragma once` for over two decades.
2. There have been concerns raised to the project about inconsistent
include guard naming and potential macro collisions.
Approximate compiler support dates:
- MSVC: Supported since Visual C++ 4.2 (1996)
- GCC: Supported since 3.4 (2004)
(http://gnu.ist.utl.pt/software/gcc/gcc-3.4/changes.html)
- Clang (LLVM based): Since initial release in 2007
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
2026-02-03 13:54:32 -05:00
|
|
|
#pragma once
|
2009-01-30 00:45:13 +00:00
|
|
|
|
|
|
|
|
#include <Base.h>
|
|
|
|
|
#include <Library/SynchronizationLib.h>
|
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
|
#include <Library/TimerLib.h>
|
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Performs an atomic increment of an 32-bit unsigned integer.
|
|
|
|
|
|
|
|
|
|
Performs an atomic increment of the 32-bit unsigned integer specified by
|
|
|
|
|
Value and returns the incremented value. The increment operation must be
|
2018-09-07 17:26:14 +08:00
|
|
|
performed using MP safe mechanisms.
|
2009-01-30 00:45:13 +00:00
|
|
|
|
|
|
|
|
@param Value A pointer to the 32-bit value to increment.
|
|
|
|
|
|
|
|
|
|
@return The incremented value.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
UINT32
|
|
|
|
|
EFIAPI
|
|
|
|
|
InternalSyncIncrement (
|
|
|
|
|
IN volatile UINT32 *Value
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Performs an atomic decrement of an 32-bit unsigned integer.
|
|
|
|
|
|
|
|
|
|
Performs an atomic decrement of the 32-bit unsigned integer specified by
|
|
|
|
|
Value and returns the decrement value. The decrement operation must be
|
2018-09-07 17:26:14 +08:00
|
|
|
performed using MP safe mechanisms.
|
2009-01-30 00:45:13 +00:00
|
|
|
|
|
|
|
|
@param Value A pointer to the 32-bit value to decrement.
|
|
|
|
|
|
|
|
|
|
@return The decrement value.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
UINT32
|
|
|
|
|
EFIAPI
|
|
|
|
|
InternalSyncDecrement (
|
|
|
|
|
IN volatile UINT32 *Value
|
|
|
|
|
);
|
|
|
|
|
|
2015-02-28 20:31:54 +00:00
|
|
|
/**
|
|
|
|
|
Performs an atomic compare exchange operation on a 16-bit unsigned integer.
|
|
|
|
|
|
|
|
|
|
Performs an atomic compare exchange operation on the 16-bit unsigned integer
|
|
|
|
|
specified by Value. If Value is equal to CompareValue, then Value is set to
|
|
|
|
|
ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
|
|
|
|
|
then Value is returned. The compare exchange operation must be performed using
|
|
|
|
|
MP safe mechanisms.
|
|
|
|
|
|
|
|
|
|
@param Value A pointer to the 16-bit value for the compare exchange
|
|
|
|
|
operation.
|
|
|
|
|
@param CompareValue A 16-bit value used in compare operation.
|
|
|
|
|
@param ExchangeValue A 16-bit value used in exchange operation.
|
|
|
|
|
|
|
|
|
|
@return The original *Value before exchange.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
UINT16
|
|
|
|
|
EFIAPI
|
|
|
|
|
InternalSyncCompareExchange16 (
|
|
|
|
|
IN volatile UINT16 *Value,
|
|
|
|
|
IN UINT16 CompareValue,
|
|
|
|
|
IN UINT16 ExchangeValue
|
|
|
|
|
);
|
|
|
|
|
|
2009-01-30 00:45:13 +00:00
|
|
|
/**
|
|
|
|
|
Performs an atomic compare exchange operation on a 32-bit unsigned integer.
|
|
|
|
|
|
|
|
|
|
Performs an atomic compare exchange operation on the 32-bit unsigned integer
|
|
|
|
|
specified by Value. If Value is equal to CompareValue, then Value is set to
|
|
|
|
|
ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
|
|
|
|
|
then Value is returned. The compare exchange operation must be performed using
|
|
|
|
|
MP safe mechanisms.
|
|
|
|
|
|
|
|
|
|
@param Value A pointer to the 32-bit value for the compare exchange
|
|
|
|
|
operation.
|
2010-06-25 21:56:02 +00:00
|
|
|
@param CompareValue A 32-bit value used in compare operation.
|
|
|
|
|
@param ExchangeValue A 32-bit value used in exchange operation.
|
2009-01-30 00:45:13 +00:00
|
|
|
|
|
|
|
|
@return The original *Value before exchange.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
UINT32
|
|
|
|
|
EFIAPI
|
|
|
|
|
InternalSyncCompareExchange32 (
|
|
|
|
|
IN volatile UINT32 *Value,
|
|
|
|
|
IN UINT32 CompareValue,
|
|
|
|
|
IN UINT32 ExchangeValue
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Performs an atomic compare exchange operation on a 64-bit unsigned integer.
|
|
|
|
|
|
|
|
|
|
Performs an atomic compare exchange operation on the 64-bit unsigned integer specified
|
|
|
|
|
by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and
|
|
|
|
|
CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.
|
|
|
|
|
The compare exchange operation must be performed using MP safe mechanisms.
|
|
|
|
|
|
|
|
|
|
@param Value A pointer to the 64-bit value for the compare exchange
|
|
|
|
|
operation.
|
2010-06-25 21:56:02 +00:00
|
|
|
@param CompareValue A 64-bit value used in compare operation.
|
|
|
|
|
@param ExchangeValue A 64-bit value used in exchange operation.
|
2009-01-30 00:45:13 +00:00
|
|
|
|
|
|
|
|
@return The original *Value before exchange.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
UINT64
|
|
|
|
|
EFIAPI
|
|
|
|
|
InternalSyncCompareExchange64 (
|
|
|
|
|
IN volatile UINT64 *Value,
|
|
|
|
|
IN UINT64 CompareValue,
|
|
|
|
|
IN UINT64 ExchangeValue
|
|
|
|
|
);
|
|
|
|
|
|
2016-03-21 13:36:50 +08:00
|
|
|
/**
|
|
|
|
|
Internal function to retrieve the architecture specific spin lock alignment
|
|
|
|
|
requirements for optimal spin lock performance.
|
|
|
|
|
|
|
|
|
|
@return The architecture specific spin lock alignment.
|
2018-06-27 21:11:33 +08:00
|
|
|
|
2016-03-21 13:36:50 +08:00
|
|
|
**/
|
|
|
|
|
UINTN
|
|
|
|
|
InternalGetSpinLockProperties (
|
|
|
|
|
VOID
|
|
|
|
|
);
|