From 3de88be5accc28cf94f7ce9036572286d59daa9b Mon Sep 17 00:00:00 2001 From: Stanislav Shwartsman Date: Sun, 20 Oct 2024 10:49:29 +0300 Subject: [PATCH] comment out avx512pf and avx512er ISA extensions which not supported by Bochs --- bochs/cpu/decoder/features.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/cpu/decoder/features.h b/bochs/cpu/decoder/features.h index 68b9e7dbc..163e315e5 100644 --- a/bochs/cpu/decoder/features.h +++ b/bochs/cpu/decoder/features.h @@ -96,8 +96,8 @@ x86_feature(BX_ISA_AVX512, "avx512") /* AVX-5 x86_feature(BX_ISA_AVX512_DQ, "avx512dq") /* AVX-512DQ instruction */ x86_feature(BX_ISA_AVX512_BW, "avx512bw") /* AVX-512 Byte/Word instruction */ x86_feature(BX_ISA_AVX512_CD, "avx512cd") /* AVX-512 Conflict Detection instruction */ -x86_feature(BX_ISA_AVX512_PF, "avx512pf") /* AVX-512 Sparse Prefetch instruction */ -x86_feature(BX_ISA_AVX512_ER, "avx512er") /* AVX-512 Exponential/Reciprocal instruction */ +//x86_feature(BX_ISA_AVX512_PF, "avx512pf") /* AVX-512 Sparse Prefetch instruction */ +//x86_feature(BX_ISA_AVX512_ER, "avx512er") /* AVX-512 Exponential/Reciprocal instruction */ x86_feature(BX_ISA_AVX512_VBMI, "avx512vbmi") /* AVX-512 VBMI : Vector Bit Manipulation Instructions */ x86_feature(BX_ISA_AVX512_VBMI2, "avx512vbmi2") /* AVX-512 VBMI2 : Vector Bit Manipulation Instructions */ x86_feature(BX_ISA_AVX512_IFMA52, "avx512ifma52") /* AVX-512 IFMA52 Instructions */