mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
469169803d
Some instructions are only available on the 64-bit architecture.
Bi-arch compilers that default to -m32 need the explicit -m64 option
to evaluate them properly.
Fixes: 18e66b695e
("x86/shstk: Add Kconfig option for shadow stack")
Closes: https://lore.kernel.org/all/20240612-as-instr-opt-wrussq-v2-1-bd950f7eead7@gmail.com/
Reported-by: Dmitry Safonov <0x7f454c46@gmail.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Tested-by: Dmitry Safonov <0x7f454c46@gmail.com>
Link: https://lore.kernel.org/r/20240612050257.3670768-1-masahiroy@kernel.org
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
|
|
|
config AS_AVX512
|
|
def_bool $(as-instr,vpmovm2b %k1$(comma)%zmm5)
|
|
help
|
|
Supported by binutils >= 2.25 and LLVM integrated assembler
|
|
|
|
config AS_SHA1_NI
|
|
def_bool $(as-instr,sha1msg1 %xmm0$(comma)%xmm1)
|
|
help
|
|
Supported by binutils >= 2.24 and LLVM integrated assembler
|
|
|
|
config AS_SHA256_NI
|
|
def_bool $(as-instr,sha256msg1 %xmm0$(comma)%xmm1)
|
|
help
|
|
Supported by binutils >= 2.24 and LLVM integrated assembler
|
|
config AS_TPAUSE
|
|
def_bool $(as-instr,tpause %ecx)
|
|
help
|
|
Supported by binutils >= 2.31.1 and LLVM integrated assembler >= V7
|
|
|
|
config AS_GFNI
|
|
def_bool $(as-instr,vgf2p8mulb %xmm0$(comma)%xmm1$(comma)%xmm2)
|
|
help
|
|
Supported by binutils >= 2.30 and LLVM integrated assembler
|
|
|
|
config AS_VAES
|
|
def_bool $(as-instr,vaesenc %ymm0$(comma)%ymm1$(comma)%ymm2)
|
|
help
|
|
Supported by binutils >= 2.30 and LLVM integrated assembler
|
|
|
|
config AS_VPCLMULQDQ
|
|
def_bool $(as-instr,vpclmulqdq \$0x10$(comma)%ymm0$(comma)%ymm1$(comma)%ymm2)
|
|
help
|
|
Supported by binutils >= 2.30 and LLVM integrated assembler
|
|
|
|
config AS_WRUSS
|
|
def_bool $(as-instr64,wrussq %rax$(comma)(%rbx))
|
|
help
|
|
Supported by binutils >= 2.31 and LLVM integrated assembler
|