From: Jan Beulich Date: Tue, 21 May 2019 06:21:45 +0000 (+0200) Subject: x86/cpuid: adjust dependencies of post-SSE ISA extensions X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2210 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b9f6395590e5cf1ee9339db592fa5dae933e857f;p=xen.git x86/cpuid: adjust dependencies of post-SSE ISA extensions Move AESNI, PCLMULQDQ, and SHA to SSE2, as all of them act on vectors of integers, whereas plain SSE supports vectors of single precision floats only. This is in line with how e.g. binutils and gcc treat them. Signed-off-by: Jan Beulich Acked-by: Andrew Cooper --- diff --git a/xen/tools/gen-cpuid.py b/xen/tools/gen-cpuid.py index 6fbe129b3c..f8bd686852 100755 --- a/xen/tools/gen-cpuid.py +++ b/xen/tools/gen-cpuid.py @@ -196,11 +196,12 @@ def crunch_numbers(state): # instructions. Several futher instruction sets are built on core # %XMM support, without specific inter-dependencies. Additionally # AMD has a special mis-alignment sub-mode. - SSE: [SSE2, SSE3, SSSE3, SSE4A, MISALIGNSSE, - AESNI, PCLMULQDQ, SHA], + SSE: [SSE2, SSE3, SSSE3, SSE4A, MISALIGNSSE], - # SSE2 was re-specified as core instructions for 64bit. - SSE2: [LM], + # SSE2 was re-specified as core instructions for 64bit. Also ISA + # extensions dealing with vectors of integers are added here rather + # than to SSE. + SSE2: [LM, AESNI, PCLMULQDQ, SHA], # SSE4.1 explicitly depends on SSE3 and SSSE3 SSE3: [SSE4_1],