mirror of https://github.com/acidanthera/audk.git
MdePkg/BaseRngLib AARCH64: Make asm files BTI compatible
Add the BTI instructions and the associated note to make the AArch64 asm objects compatible with BTI enforcement. Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com> Reviewed-by: Oliver Smith-Denny <osd@smith-denny.com>
This commit is contained in:
parent
35318c2eb9
commit
f8b1854b92
|
@ -25,7 +25,6 @@ GCC_ASM_EXPORT(ArmReadIdIsar0)
|
|||
# );
|
||||
#
|
||||
ASM_PFX(ArmReadIdIsar0):
|
||||
AARCH64_BTI(c)
|
||||
mrs x0, id_aa64isar0_el1 // Read ID_AA64ISAR0 Register
|
||||
ret
|
||||
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@ GCC_ASM_EXPORT(ArmRndr)
|
|||
# );
|
||||
#
|
||||
ASM_PFX(ArmRndr):
|
||||
AARCH64_BTI(c)
|
||||
mrs x1, RNDR
|
||||
str x1, [x0]
|
||||
cset x0, ne // RNDR sets NZCV to 0b0100 on failure
|
||||
|
|
Loading…
Reference in New Issue