mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-02 13:03:28 +01:00
34 lines
684 B
ArmAsm
34 lines
684 B
ArmAsm
|
##------------------------------------------------------------------------------
|
||
|
#
|
||
|
# SpeculationBarrier() for AArch64
|
||
|
#
|
||
|
# Copyright (c) 2019, Linaro Ltd. All rights reserved.
|
||
|
#
|
||
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
#
|
||
|
##------------------------------------------------------------------------------
|
||
|
|
||
|
.text
|
||
|
.p2align 2
|
||
|
|
||
|
GCC_ASM_EXPORT(SpeculationBarrier)
|
||
|
|
||
|
|
||
|
#/**
|
||
|
# Uses as a barrier to stop speculative execution.
|
||
|
#
|
||
|
# Ensures that no later instruction will execute speculatively, until all prior
|
||
|
# instructions have completed.
|
||
|
#
|
||
|
#**/
|
||
|
#VOID
|
||
|
#EFIAPI
|
||
|
#SpeculationBarrier (
|
||
|
# VOID
|
||
|
# );
|
||
|
#
|
||
|
ASM_PFX(SpeculationBarrier):
|
||
|
dsb sy
|
||
|
isb
|
||
|
ret
|