summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/RiscV64/SpeculationBarrier.S
blob: 581a7653996f7b22c1fee7936aeebf190a9a4b41 (plain)
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
30
31
32
33
34
##------------------------------------------------------------------------------
#
# SpeculationBarrier() for RISCV64
#
# Copyright (c) 2023, Intel Corporation. All rights reserved.
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##------------------------------------------------------------------------------

.text
.p2align 2

ASM_GLOBAL ASM_PFX(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):
    fence rw,rw
    fence.i
    fence r,r
    ret