1464 lines
44 KiB
Diff
1464 lines
44 KiB
Diff
From 6d67e39ed491074df0ff8829278d119f4cd7a77d Mon Sep 17 00:00:00 2001
|
|
Message-Id: <6d67e39ed491074df0ff8829278d119f4cd7a77d@dist-git>
|
|
From: Jiri Denemark <jdenemar@redhat.com>
|
|
Date: Tue, 26 May 2020 10:59:36 +0200
|
|
Subject: [PATCH] cputest: Add data for Intel(R) Xeon(R) Gold 6130 CPU
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Skylake-Server with family 6, model 85, stepping 4, which is currently
|
|
mis-detected as Cascadelake-Server CPU model.
|
|
|
|
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
(cherry picked from commit 3714779b15e594a14de4e6fe49c2e3eafe39b161)
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1840010
|
|
|
|
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
|
|
Message-Id: <b78268d7c67fc7fd7e8ff3e0a441c37d5d80f600.1590483392.git.jdenemar@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
---
|
|
tests/cputest.c | 1 +
|
|
.../x86_64-cpuid-Xeon-Gold-6130-disabled.xml | 7 +
|
|
.../x86_64-cpuid-Xeon-Gold-6130-enabled.xml | 9 +
|
|
.../x86_64-cpuid-Xeon-Gold-6130-guest.xml | 33 +
|
|
.../x86_64-cpuid-Xeon-Gold-6130-host.xml | 35 +
|
|
.../x86_64-cpuid-Xeon-Gold-6130-json.xml | 16 +
|
|
.../x86_64-cpuid-Xeon-Gold-6130.json | 1201 +++++++++++++++++
|
|
.../x86_64-cpuid-Xeon-Gold-6130.sig | 4 +
|
|
.../x86_64-cpuid-Xeon-Gold-6130.xml | 54 +
|
|
9 files changed, 1360 insertions(+)
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-disabled.xml
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-enabled.xml
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-guest.xml
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-host.xml
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-json.xml
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.json
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.sig
|
|
create mode 100644 tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.xml
|
|
|
|
diff --git a/tests/cputest.c b/tests/cputest.c
|
|
index f9f1ca74ff..869d016ffc 100644
|
|
--- a/tests/cputest.c
|
|
+++ b/tests/cputest.c
|
|
@@ -1265,6 +1265,7 @@ mymain(void)
|
|
DO_TEST_CPUID(VIR_ARCH_X86_64, "Xeon-E7-8890-v3", JSON_MODELS);
|
|
DO_TEST_CPUID(VIR_ARCH_X86_64, "Xeon-E7540", JSON_MODELS);
|
|
DO_TEST_CPUID(VIR_ARCH_X86_64, "Xeon-Gold-5115", JSON_MODELS);
|
|
+ DO_TEST_CPUID(VIR_ARCH_X86_64, "Xeon-Gold-6130", JSON_MODELS);
|
|
DO_TEST_CPUID(VIR_ARCH_X86_64, "Xeon-Gold-6148", JSON_HOST);
|
|
DO_TEST_CPUID(VIR_ARCH_X86_64, "Xeon-Platinum-8268", JSON_HOST);
|
|
DO_TEST_CPUID(VIR_ARCH_X86_64, "Xeon-Platinum-9242", JSON_MODELS);
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-disabled.xml b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-disabled.xml
|
|
new file mode 100644
|
|
index 0000000000..e7c59cef1e
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-disabled.xml
|
|
@@ -0,0 +1,7 @@
|
|
+<!-- Features disabled by QEMU -->
|
|
+<cpudata arch='x86'>
|
|
+ <cpuid eax_in='0x00000001' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x0804c1dc' edx='0xb0600000'/>
|
|
+ <cpuid eax_in='0x00000007' ecx_in='0x00' eax='0x00000000' ebx='0x02001000' ecx='0x00000010' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000f' ecx_in='0x01' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000006'/>
|
|
+ <cpuid eax_in='0x80000007' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000100'/>
|
|
+</cpudata>
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-enabled.xml b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-enabled.xml
|
|
new file mode 100644
|
|
index 0000000000..8610577479
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-enabled.xml
|
|
@@ -0,0 +1,9 @@
|
|
+<!-- Features enabled by QEMU -->
|
|
+<cpudata arch='x86'>
|
|
+ <cpuid eax_in='0x00000001' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0xf7fa3223' edx='0x0f8bfbff'/>
|
|
+ <cpuid eax_in='0x00000006' ecx_in='0x00' eax='0x00000004' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000007' ecx_in='0x00' eax='0x00000000' ebx='0xd19f4fbb' ecx='0x0000000c' edx='0xac000400'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x01' eax='0x0000000f' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x80000001' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000121' edx='0x2c100800'/>
|
|
+ <msr index='0x10a' edx='0x00000000' eax='0x00000008'/>
|
|
+</cpudata>
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-guest.xml b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-guest.xml
|
|
new file mode 100644
|
|
index 0000000000..cfb0eb982d
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-guest.xml
|
|
@@ -0,0 +1,33 @@
|
|
+<cpu mode='custom' match='exact'>
|
|
+ <model fallback='forbid'>Cascadelake-Server</model>
|
|
+ <vendor>Intel</vendor>
|
|
+ <feature policy='require' name='ds'/>
|
|
+ <feature policy='require' name='acpi'/>
|
|
+ <feature policy='require' name='ss'/>
|
|
+ <feature policy='require' name='ht'/>
|
|
+ <feature policy='require' name='tm'/>
|
|
+ <feature policy='require' name='pbe'/>
|
|
+ <feature policy='require' name='dtes64'/>
|
|
+ <feature policy='require' name='monitor'/>
|
|
+ <feature policy='require' name='ds_cpl'/>
|
|
+ <feature policy='require' name='vmx'/>
|
|
+ <feature policy='require' name='smx'/>
|
|
+ <feature policy='require' name='est'/>
|
|
+ <feature policy='require' name='tm2'/>
|
|
+ <feature policy='require' name='xtpr'/>
|
|
+ <feature policy='require' name='pdcm'/>
|
|
+ <feature policy='require' name='dca'/>
|
|
+ <feature policy='require' name='osxsave'/>
|
|
+ <feature policy='require' name='tsc_adjust'/>
|
|
+ <feature policy='require' name='cmt'/>
|
|
+ <feature policy='require' name='intel-pt'/>
|
|
+ <feature policy='require' name='pku'/>
|
|
+ <feature policy='require' name='ospke'/>
|
|
+ <feature policy='require' name='md-clear'/>
|
|
+ <feature policy='require' name='stibp'/>
|
|
+ <feature policy='require' name='xsaves'/>
|
|
+ <feature policy='require' name='mbm_total'/>
|
|
+ <feature policy='require' name='mbm_local'/>
|
|
+ <feature policy='require' name='invtsc'/>
|
|
+ <feature policy='disable' name='avx512vnni'/>
|
|
+</cpu>
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-host.xml b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-host.xml
|
|
new file mode 100644
|
|
index 0000000000..207e9e0ee4
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-host.xml
|
|
@@ -0,0 +1,35 @@
|
|
+<cpu>
|
|
+ <arch>x86_64</arch>
|
|
+ <model>Skylake-Server-IBRS</model>
|
|
+ <vendor>Intel</vendor>
|
|
+ <feature name='ds'/>
|
|
+ <feature name='acpi'/>
|
|
+ <feature name='ss'/>
|
|
+ <feature name='ht'/>
|
|
+ <feature name='tm'/>
|
|
+ <feature name='pbe'/>
|
|
+ <feature name='dtes64'/>
|
|
+ <feature name='monitor'/>
|
|
+ <feature name='ds_cpl'/>
|
|
+ <feature name='vmx'/>
|
|
+ <feature name='smx'/>
|
|
+ <feature name='est'/>
|
|
+ <feature name='tm2'/>
|
|
+ <feature name='xtpr'/>
|
|
+ <feature name='pdcm'/>
|
|
+ <feature name='dca'/>
|
|
+ <feature name='osxsave'/>
|
|
+ <feature name='tsc_adjust'/>
|
|
+ <feature name='cmt'/>
|
|
+ <feature name='clflushopt'/>
|
|
+ <feature name='intel-pt'/>
|
|
+ <feature name='pku'/>
|
|
+ <feature name='ospke'/>
|
|
+ <feature name='md-clear'/>
|
|
+ <feature name='stibp'/>
|
|
+ <feature name='ssbd'/>
|
|
+ <feature name='xsaves'/>
|
|
+ <feature name='mbm_total'/>
|
|
+ <feature name='mbm_local'/>
|
|
+ <feature name='invtsc'/>
|
|
+</cpu>
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-json.xml b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-json.xml
|
|
new file mode 100644
|
|
index 0000000000..968d904557
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130-json.xml
|
|
@@ -0,0 +1,16 @@
|
|
+<cpu mode='custom' match='exact'>
|
|
+ <model fallback='forbid'>Cascadelake-Server</model>
|
|
+ <vendor>Intel</vendor>
|
|
+ <feature policy='require' name='ss'/>
|
|
+ <feature policy='require' name='vmx'/>
|
|
+ <feature policy='require' name='hypervisor'/>
|
|
+ <feature policy='require' name='tsc_adjust'/>
|
|
+ <feature policy='require' name='umip'/>
|
|
+ <feature policy='require' name='pku'/>
|
|
+ <feature policy='require' name='md-clear'/>
|
|
+ <feature policy='require' name='stibp'/>
|
|
+ <feature policy='require' name='arch-capabilities'/>
|
|
+ <feature policy='require' name='xsaves'/>
|
|
+ <feature policy='require' name='skip-l1dfl-vmentry'/>
|
|
+ <feature policy='disable' name='avx512vnni'/>
|
|
+</cpu>
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.json b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.json
|
|
new file mode 100644
|
|
index 0000000000..1a22387617
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.json
|
|
@@ -0,0 +1,1201 @@
|
|
+{
|
|
+ "return": {
|
|
+ "model": {
|
|
+ "name": "base",
|
|
+ "props": {
|
|
+ "phys-bits": 0,
|
|
+ "core-id": -1,
|
|
+ "xlevel": 2147483656,
|
|
+ "cmov": true,
|
|
+ "ia64": false,
|
|
+ "ssb-no": false,
|
|
+ "aes": true,
|
|
+ "mmx": true,
|
|
+ "rdpid": false,
|
|
+ "arat": true,
|
|
+ "gfni": false,
|
|
+ "ibrs-all": false,
|
|
+ "pause-filter": false,
|
|
+ "xsavec": true,
|
|
+ "intel-pt": false,
|
|
+ "hv-frequencies": false,
|
|
+ "tsc-frequency": 0,
|
|
+ "xd": true,
|
|
+ "x-intel-pt-auto-level": false,
|
|
+ "hv-vendor-id": "",
|
|
+ "kvm-asyncpf": true,
|
|
+ "kvm_asyncpf": true,
|
|
+ "perfctr_core": false,
|
|
+ "perfctr-core": false,
|
|
+ "mpx": true,
|
|
+ "pbe": false,
|
|
+ "decodeassists": false,
|
|
+ "avx512cd": true,
|
|
+ "sse4_1": true,
|
|
+ "sse4.1": true,
|
|
+ "sse4-1": true,
|
|
+ "family": 6,
|
|
+ "legacy-cache": true,
|
|
+ "host-phys-bits-limit": 48,
|
|
+ "vmware-cpuid-freq": true,
|
|
+ "wbnoinvd": false,
|
|
+ "avx512f": true,
|
|
+ "hv-stimer-direct": false,
|
|
+ "msr": true,
|
|
+ "mce": true,
|
|
+ "mca": true,
|
|
+ "hv-runtime": false,
|
|
+ "xcrypt": false,
|
|
+ "thread-id": -1,
|
|
+ "min-level": 13,
|
|
+ "xgetbv1": true,
|
|
+ "cid": false,
|
|
+ "hv-relaxed": false,
|
|
+ "hv-crash": false,
|
|
+ "ds": false,
|
|
+ "fxsr": true,
|
|
+ "xsaveopt": true,
|
|
+ "xtpr": false,
|
|
+ "hv-evmcs": false,
|
|
+ "avx512vl": true,
|
|
+ "avx512-vpopcntdq": false,
|
|
+ "phe": false,
|
|
+ "extapic": false,
|
|
+ "3dnowprefetch": true,
|
|
+ "avx512vbmi2": false,
|
|
+ "cr8legacy": false,
|
|
+ "stibp": true,
|
|
+ "cpuid-0xb": true,
|
|
+ "xcrypt-en": false,
|
|
+ "kvm_pv_eoi": true,
|
|
+ "apic-id": 4294967295,
|
|
+ "rsba": false,
|
|
+ "pn": false,
|
|
+ "dca": false,
|
|
+ "vendor": "GenuineIntel",
|
|
+ "hv-ipi": false,
|
|
+ "pku": true,
|
|
+ "smx": false,
|
|
+ "cmp_legacy": false,
|
|
+ "cmp-legacy": false,
|
|
+ "node-id": -1,
|
|
+ "avx512-4fmaps": false,
|
|
+ "vmcb_clean": false,
|
|
+ "vmcb-clean": false,
|
|
+ "3dnowext": false,
|
|
+ "amd-no-ssb": false,
|
|
+ "hle": true,
|
|
+ "npt": false,
|
|
+ "rdctl-no": false,
|
|
+ "memory": "/machine/unattached/system[0]",
|
|
+ "clwb": true,
|
|
+ "lbrv": false,
|
|
+ "adx": true,
|
|
+ "ss": true,
|
|
+ "pni": true,
|
|
+ "svm_lock": false,
|
|
+ "svm-lock": false,
|
|
+ "pfthreshold": false,
|
|
+ "smep": true,
|
|
+ "smap": true,
|
|
+ "x2apic": true,
|
|
+ "avx512vbmi": false,
|
|
+ "avx512vnni": false,
|
|
+ "hv-stimer": false,
|
|
+ "x-hv-synic-kvm-only": true,
|
|
+ "i64": true,
|
|
+ "flushbyasid": false,
|
|
+ "f16c": true,
|
|
+ "ace2-en": false,
|
|
+ "pat": true,
|
|
+ "pae": true,
|
|
+ "sse": true,
|
|
+ "die-id": -1,
|
|
+ "phe-en": false,
|
|
+ "kvm_nopiodelay": true,
|
|
+ "kvm-nopiodelay": true,
|
|
+ "tm": false,
|
|
+ "kvmclock-stable-bit": true,
|
|
+ "hypervisor": true,
|
|
+ "socket-id": -1,
|
|
+ "mds-no": false,
|
|
+ "pcommit": false,
|
|
+ "syscall": true,
|
|
+ "level": 13,
|
|
+ "avx512dq": true,
|
|
+ "x-migrate-smi-count": false,
|
|
+ "svm": false,
|
|
+ "full-cpuid-auto-level": true,
|
|
+ "hv-reset": false,
|
|
+ "invtsc": false,
|
|
+ "sse3": true,
|
|
+ "sse2": true,
|
|
+ "ssbd": true,
|
|
+ "est": false,
|
|
+ "avx512ifma": false,
|
|
+ "tm2": false,
|
|
+ "kvm-pv-ipi": true,
|
|
+ "kvm-pv-eoi": true,
|
|
+ "cx8": true,
|
|
+ "cldemote": false,
|
|
+ "hv-reenlightenment": false,
|
|
+ "kvm_mmu": false,
|
|
+ "kvm-mmu": false,
|
|
+ "sse4_2": true,
|
|
+ "sse4.2": true,
|
|
+ "sse4-2": true,
|
|
+ "pge": true,
|
|
+ "fill-mtrr-mask": true,
|
|
+ "avx512bitalg": false,
|
|
+ "nodeid_msr": false,
|
|
+ "pdcm": false,
|
|
+ "movbe": true,
|
|
+ "model": 85,
|
|
+ "nrip_save": false,
|
|
+ "nrip-save": false,
|
|
+ "kvm_pv_unhalt": true,
|
|
+ "ssse3": true,
|
|
+ "sse4a": false,
|
|
+ "invpcid": true,
|
|
+ "pdpe1gb": true,
|
|
+ "tsc-deadline": true,
|
|
+ "skip-l1dfl-vmentry": true,
|
|
+ "fma": true,
|
|
+ "cx16": true,
|
|
+ "de": true,
|
|
+ "enforce": false,
|
|
+ "stepping": 4,
|
|
+ "xsave": true,
|
|
+ "clflush": true,
|
|
+ "skinit": false,
|
|
+ "tsc": true,
|
|
+ "tce": false,
|
|
+ "fpu": true,
|
|
+ "ibs": false,
|
|
+ "ds_cpl": false,
|
|
+ "ds-cpl": false,
|
|
+ "host-phys-bits": true,
|
|
+ "fma4": false,
|
|
+ "la57": false,
|
|
+ "osvw": false,
|
|
+ "check": true,
|
|
+ "hv-spinlocks": 4294967295,
|
|
+ "pmu": false,
|
|
+ "pmm": false,
|
|
+ "apic": true,
|
|
+ "spec-ctrl": true,
|
|
+ "min-xlevel2": 0,
|
|
+ "tsc-adjust": true,
|
|
+ "tsc_adjust": true,
|
|
+ "kvm-steal-time": true,
|
|
+ "kvm_steal_time": true,
|
|
+ "kvmclock": true,
|
|
+ "l3-cache": true,
|
|
+ "lwp": false,
|
|
+ "hv-passthrough": false,
|
|
+ "amd-ssbd": false,
|
|
+ "ibpb": false,
|
|
+ "xop": false,
|
|
+ "avx": true,
|
|
+ "core-capability": false,
|
|
+ "movdiri": false,
|
|
+ "ace2": false,
|
|
+ "avx512bw": true,
|
|
+ "acpi": false,
|
|
+ "hv-vapic": false,
|
|
+ "fsgsbase": true,
|
|
+ "ht": false,
|
|
+ "nx": true,
|
|
+ "pclmulqdq": true,
|
|
+ "mmxext": false,
|
|
+ "vaes": false,
|
|
+ "popcnt": true,
|
|
+ "xsaves": true,
|
|
+ "movdir64b": false,
|
|
+ "tcg-cpuid": true,
|
|
+ "lm": true,
|
|
+ "umip": true,
|
|
+ "pse": true,
|
|
+ "avx2": true,
|
|
+ "sep": true,
|
|
+ "pclmuldq": true,
|
|
+ "virt-ssbd": false,
|
|
+ "x-hv-max-vps": -1,
|
|
+ "nodeid-msr": false,
|
|
+ "md-clear": true,
|
|
+ "split-lock-detect": false,
|
|
+ "kvm": true,
|
|
+ "misalignsse": false,
|
|
+ "min-xlevel": 2147483656,
|
|
+ "kvm-pv-unhalt": true,
|
|
+ "bmi2": true,
|
|
+ "bmi1": true,
|
|
+ "realized": false,
|
|
+ "tsc_scale": false,
|
|
+ "tsc-scale": false,
|
|
+ "topoext": false,
|
|
+ "hv-vpindex": false,
|
|
+ "xlevel2": 0,
|
|
+ "clflushopt": true,
|
|
+ "kvm-no-smi-migration": false,
|
|
+ "monitor": false,
|
|
+ "avx512er": false,
|
|
+ "pmm-en": false,
|
|
+ "pcid": true,
|
|
+ "arch-capabilities": true,
|
|
+ "3dnow": false,
|
|
+ "erms": true,
|
|
+ "x-force-features": false,
|
|
+ "lahf-lm": true,
|
|
+ "lahf_lm": true,
|
|
+ "vpclmulqdq": false,
|
|
+ "fxsr-opt": false,
|
|
+ "hv-synic": false,
|
|
+ "xstore": false,
|
|
+ "fxsr_opt": false,
|
|
+ "kvm-hint-dedicated": false,
|
|
+ "rtm": true,
|
|
+ "lmce": true,
|
|
+ "hv-time": false,
|
|
+ "perfctr-nb": false,
|
|
+ "perfctr_nb": false,
|
|
+ "ffxsr": false,
|
|
+ "hv-tlbflush": false,
|
|
+ "rdrand": true,
|
|
+ "rdseed": true,
|
|
+ "avx512-4vnniw": false,
|
|
+ "vmx": true,
|
|
+ "vme": true,
|
|
+ "dtes64": false,
|
|
+ "mtrr": true,
|
|
+ "rdtscp": true,
|
|
+ "pse36": true,
|
|
+ "kvm-pv-tlb-flush": true,
|
|
+ "tbm": false,
|
|
+ "wdt": false,
|
|
+ "pause_filter": false,
|
|
+ "sha-ni": false,
|
|
+ "model-id": "Intel(R) Xeon(R) Gold 6130 CPU @ 2.10GHz",
|
|
+ "abm": true,
|
|
+ "avx512pf": false,
|
|
+ "xstore-en": false
|
|
+ }
|
|
+ }
|
|
+ },
|
|
+ "id": "model-expansion"
|
|
+}
|
|
+
|
|
+{
|
|
+ "return": [
|
|
+ {
|
|
+ "name": "max",
|
|
+ "typename": "max-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": false
|
|
+ },
|
|
+ {
|
|
+ "name": "host",
|
|
+ "typename": "host-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": false
|
|
+ },
|
|
+ {
|
|
+ "name": "base",
|
|
+ "typename": "base-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": true,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "qemu64-v1",
|
|
+ "typename": "qemu64-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "qemu64",
|
|
+ "typename": "qemu64-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "qemu32-v1",
|
|
+ "typename": "qemu32-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "qemu32",
|
|
+ "typename": "qemu32-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "phenom-v1",
|
|
+ "typename": "phenom-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "3dnowext",
|
|
+ "3dnow",
|
|
+ "sse4a",
|
|
+ "npt"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "phenom",
|
|
+ "typename": "phenom-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "3dnowext",
|
|
+ "3dnow",
|
|
+ "sse4a",
|
|
+ "npt"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "pentium3-v1",
|
|
+ "typename": "pentium3-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "pentium3",
|
|
+ "typename": "pentium3-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "pentium2-v1",
|
|
+ "typename": "pentium2-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "pentium2",
|
|
+ "typename": "pentium2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "pentium-v1",
|
|
+ "typename": "pentium-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "pentium",
|
|
+ "typename": "pentium-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "n270-v1",
|
|
+ "typename": "n270-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "n270",
|
|
+ "typename": "n270-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "kvm64-v1",
|
|
+ "typename": "kvm64-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "kvm64",
|
|
+ "typename": "kvm64-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "kvm32-v1",
|
|
+ "typename": "kvm32-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "kvm32",
|
|
+ "typename": "kvm32-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "cpu64-rhel6-v1",
|
|
+ "typename": "cpu64-rhel6-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "cpu64-rhel6",
|
|
+ "typename": "cpu64-rhel6-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "coreduo-v1",
|
|
+ "typename": "coreduo-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "coreduo",
|
|
+ "typename": "coreduo-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "core2duo-v1",
|
|
+ "typename": "core2duo-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "core2duo",
|
|
+ "typename": "core2duo-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "athlon-v1",
|
|
+ "typename": "athlon-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "mmxext",
|
|
+ "3dnowext",
|
|
+ "3dnow"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "athlon",
|
|
+ "typename": "athlon-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "mmxext",
|
|
+ "3dnowext",
|
|
+ "3dnow"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Westmere-v2",
|
|
+ "typename": "Westmere-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Westmere-v1",
|
|
+ "typename": "Westmere-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Westmere-IBRS",
|
|
+ "typename": "Westmere-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Westmere",
|
|
+ "typename": "Westmere-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Snowridge-v1",
|
|
+ "typename": "Snowridge-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sha-ni",
|
|
+ "gfni",
|
|
+ "cldemote",
|
|
+ "movdiri",
|
|
+ "movdir64b",
|
|
+ "core-capability",
|
|
+ "split-lock-detect"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Snowridge",
|
|
+ "typename": "Snowridge-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sha-ni",
|
|
+ "gfni",
|
|
+ "cldemote",
|
|
+ "movdiri",
|
|
+ "movdir64b",
|
|
+ "core-capability",
|
|
+ "split-lock-detect"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Server-v2",
|
|
+ "typename": "Skylake-Server-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Server-v1",
|
|
+ "typename": "Skylake-Server-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Server-IBRS",
|
|
+ "typename": "Skylake-Server-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Server",
|
|
+ "typename": "Skylake-Server-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Client-v2",
|
|
+ "typename": "Skylake-Client-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Client-v1",
|
|
+ "typename": "Skylake-Client-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Client-IBRS",
|
|
+ "typename": "Skylake-Client-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Skylake-Client",
|
|
+ "typename": "Skylake-Client-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "SandyBridge-v2",
|
|
+ "typename": "SandyBridge-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "SandyBridge-v1",
|
|
+ "typename": "SandyBridge-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "SandyBridge-IBRS",
|
|
+ "typename": "SandyBridge-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "SandyBridge",
|
|
+ "typename": "SandyBridge-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Penryn-v1",
|
|
+ "typename": "Penryn-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Penryn",
|
|
+ "typename": "Penryn-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G5-v1",
|
|
+ "typename": "Opteron_G5-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "xop",
|
|
+ "fma4",
|
|
+ "tbm",
|
|
+ "npt",
|
|
+ "nrip-save"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G5",
|
|
+ "typename": "Opteron_G5-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "xop",
|
|
+ "fma4",
|
|
+ "tbm"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G4-v1",
|
|
+ "typename": "Opteron_G4-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "xop",
|
|
+ "fma4",
|
|
+ "npt",
|
|
+ "nrip-save"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G4",
|
|
+ "typename": "Opteron_G4-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "xop",
|
|
+ "fma4"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G3-v1",
|
|
+ "typename": "Opteron_G3-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a",
|
|
+ "misalignsse"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G3",
|
|
+ "typename": "Opteron_G3-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sse4a",
|
|
+ "misalignsse"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G2-v1",
|
|
+ "typename": "Opteron_G2-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G2",
|
|
+ "typename": "Opteron_G2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G1-v1",
|
|
+ "typename": "Opteron_G1-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Opteron_G1",
|
|
+ "typename": "Opteron_G1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Nehalem-v2",
|
|
+ "typename": "Nehalem-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Nehalem-v1",
|
|
+ "typename": "Nehalem-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Nehalem-IBRS",
|
|
+ "typename": "Nehalem-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Nehalem",
|
|
+ "typename": "Nehalem-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "KnightsMill-v1",
|
|
+ "typename": "KnightsMill-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512pf",
|
|
+ "avx512er",
|
|
+ "avx512-vpopcntdq",
|
|
+ "avx512-4vnniw",
|
|
+ "avx512-4fmaps"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "KnightsMill",
|
|
+ "typename": "KnightsMill-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512pf",
|
|
+ "avx512er",
|
|
+ "avx512-vpopcntdq",
|
|
+ "avx512-4vnniw",
|
|
+ "avx512-4fmaps"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "IvyBridge-v2",
|
|
+ "typename": "IvyBridge-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "IvyBridge-v1",
|
|
+ "typename": "IvyBridge-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "IvyBridge-IBRS",
|
|
+ "typename": "IvyBridge-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "IvyBridge",
|
|
+ "typename": "IvyBridge-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Icelake-Server-v1",
|
|
+ "typename": "Icelake-Server-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512vbmi",
|
|
+ "avx512vbmi2",
|
|
+ "gfni",
|
|
+ "vaes",
|
|
+ "vpclmulqdq",
|
|
+ "avx512vnni",
|
|
+ "avx512bitalg",
|
|
+ "avx512-vpopcntdq",
|
|
+ "la57",
|
|
+ "wbnoinvd"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Icelake-Server",
|
|
+ "typename": "Icelake-Server-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512vbmi",
|
|
+ "avx512vbmi2",
|
|
+ "gfni",
|
|
+ "vaes",
|
|
+ "vpclmulqdq",
|
|
+ "avx512vnni",
|
|
+ "avx512bitalg",
|
|
+ "avx512-vpopcntdq",
|
|
+ "la57",
|
|
+ "wbnoinvd"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Icelake-Client-v1",
|
|
+ "typename": "Icelake-Client-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512vbmi",
|
|
+ "avx512vbmi2",
|
|
+ "gfni",
|
|
+ "vaes",
|
|
+ "vpclmulqdq",
|
|
+ "avx512vnni",
|
|
+ "avx512bitalg",
|
|
+ "avx512-vpopcntdq",
|
|
+ "wbnoinvd"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Icelake-Client",
|
|
+ "typename": "Icelake-Client-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512vbmi",
|
|
+ "avx512vbmi2",
|
|
+ "gfni",
|
|
+ "vaes",
|
|
+ "vpclmulqdq",
|
|
+ "avx512vnni",
|
|
+ "avx512bitalg",
|
|
+ "avx512-vpopcntdq",
|
|
+ "wbnoinvd"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell-v4",
|
|
+ "typename": "Haswell-v4-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell-v3",
|
|
+ "typename": "Haswell-v3-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell-v2",
|
|
+ "typename": "Haswell-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell-v1",
|
|
+ "typename": "Haswell-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell-noTSX-IBRS",
|
|
+ "typename": "Haswell-noTSX-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell-noTSX",
|
|
+ "typename": "Haswell-noTSX-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell-IBRS",
|
|
+ "typename": "Haswell-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Haswell",
|
|
+ "typename": "Haswell-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "EPYC-v2",
|
|
+ "typename": "EPYC-v2-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sha-ni",
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "cr8legacy",
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "osvw",
|
|
+ "ibpb",
|
|
+ "npt",
|
|
+ "nrip-save"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "EPYC-v1",
|
|
+ "typename": "EPYC-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sha-ni",
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "cr8legacy",
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "osvw",
|
|
+ "npt",
|
|
+ "nrip-save"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "EPYC-IBPB",
|
|
+ "typename": "EPYC-IBPB-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sha-ni",
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "cr8legacy",
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "osvw",
|
|
+ "ibpb"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "EPYC",
|
|
+ "typename": "EPYC-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "sha-ni",
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "cr8legacy",
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "osvw"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Dhyana-v1",
|
|
+ "typename": "Dhyana-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "cr8legacy",
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "osvw",
|
|
+ "ibpb",
|
|
+ "npt",
|
|
+ "nrip-save"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Dhyana",
|
|
+ "typename": "Dhyana-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "mmxext",
|
|
+ "fxsr-opt",
|
|
+ "cr8legacy",
|
|
+ "sse4a",
|
|
+ "misalignsse",
|
|
+ "osvw",
|
|
+ "ibpb",
|
|
+ "npt",
|
|
+ "nrip-save"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Conroe-v1",
|
|
+ "typename": "Conroe-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Conroe",
|
|
+ "typename": "Conroe-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Cascadelake-Server-v2",
|
|
+ "typename": "Cascadelake-Server-v2-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512vnni",
|
|
+ "rdctl-no",
|
|
+ "ibrs-all",
|
|
+ "mds-no"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Cascadelake-Server-v1",
|
|
+ "typename": "Cascadelake-Server-v1-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512vnni"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Cascadelake-Server",
|
|
+ "typename": "Cascadelake-Server-x86_64-cpu",
|
|
+ "unavailable-features": [
|
|
+ "avx512vnni"
|
|
+ ],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell-v4",
|
|
+ "typename": "Broadwell-v4-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell-v3",
|
|
+ "typename": "Broadwell-v3-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell-v2",
|
|
+ "typename": "Broadwell-v2-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell-v1",
|
|
+ "typename": "Broadwell-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell-noTSX-IBRS",
|
|
+ "typename": "Broadwell-noTSX-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell-noTSX",
|
|
+ "typename": "Broadwell-noTSX-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell-IBRS",
|
|
+ "typename": "Broadwell-IBRS-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "Broadwell",
|
|
+ "typename": "Broadwell-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "486-v1",
|
|
+ "typename": "486-v1-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ },
|
|
+ {
|
|
+ "name": "486",
|
|
+ "typename": "486-x86_64-cpu",
|
|
+ "unavailable-features": [],
|
|
+ "static": false,
|
|
+ "migration-safe": true
|
|
+ }
|
|
+ ],
|
|
+ "id": "definitions"
|
|
+}
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.sig b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.sig
|
|
new file mode 100644
|
|
index 0000000000..1a3f3449f0
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.sig
|
|
@@ -0,0 +1,4 @@
|
|
+050654
|
|
+family: 6 (0x06)
|
|
+model: 85 (0x55)
|
|
+stepping: 4 (0x04)
|
|
diff --git a/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.xml b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.xml
|
|
new file mode 100644
|
|
index 0000000000..cb9233ee22
|
|
--- /dev/null
|
|
+++ b/tests/cputestdata/x86_64-cpuid-Xeon-Gold-6130.xml
|
|
@@ -0,0 +1,54 @@
|
|
+<!-- Intel(R) Xeon(R) Gold 6130 CPU @ 2.10GHz -->
|
|
+<cpudata arch='x86'>
|
|
+ <cpuid eax_in='0x00000000' ecx_in='0x00' eax='0x00000016' ebx='0x756e6547' ecx='0x6c65746e' edx='0x49656e69'/>
|
|
+ <cpuid eax_in='0x00000001' ecx_in='0x00' eax='0x00050654' ebx='0x29200800' ecx='0x7ffefbff' edx='0xbfebfbff'/>
|
|
+ <cpuid eax_in='0x00000002' ecx_in='0x00' eax='0x76036301' ebx='0x00f0b5ff' ecx='0x00000000' edx='0x00c30000'/>
|
|
+ <cpuid eax_in='0x00000003' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000004' ecx_in='0x00' eax='0x3c004121' ebx='0x01c0003f' ecx='0x0000003f' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000004' ecx_in='0x01' eax='0x3c004122' ebx='0x01c0003f' ecx='0x0000003f' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000004' ecx_in='0x02' eax='0x3c004143' ebx='0x03c0003f' ecx='0x000003ff' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000004' ecx_in='0x03' eax='0x3c07c163' ebx='0x0280003f' ecx='0x00007fff' edx='0x00000004'/>
|
|
+ <cpuid eax_in='0x00000005' ecx_in='0x00' eax='0x00000040' ebx='0x00000040' ecx='0x00000003' edx='0x00002020'/>
|
|
+ <cpuid eax_in='0x00000006' ecx_in='0x00' eax='0x00000077' ebx='0x00000002' ecx='0x00000009' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000007' ecx_in='0x00' eax='0x00000000' ebx='0xd39ffffb' ecx='0x00000018' edx='0x9c002400'/>
|
|
+ <cpuid eax_in='0x00000008' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000009' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000a' ecx_in='0x00' eax='0x07300404' ebx='0x00000000' ecx='0x00000000' edx='0x00000603'/>
|
|
+ <cpuid eax_in='0x0000000b' ecx_in='0x00' eax='0x00000001' ebx='0x00000002' ecx='0x00000100' edx='0x00000029'/>
|
|
+ <cpuid eax_in='0x0000000b' ecx_in='0x01' eax='0x00000005' ebx='0x00000020' ecx='0x00000201' edx='0x00000029'/>
|
|
+ <cpuid eax_in='0x0000000c' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x00' eax='0x000002ff' ebx='0x00000a88' ecx='0x00000a88' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x01' eax='0x0000000f' ebx='0x00000a08' ecx='0x00000100' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x02' eax='0x00000100' ebx='0x00000240' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x03' eax='0x00000040' ebx='0x000003c0' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x04' eax='0x00000040' ebx='0x00000400' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x05' eax='0x00000040' ebx='0x00000440' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x06' eax='0x00000200' ebx='0x00000480' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x07' eax='0x00000400' ebx='0x00000680' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x08' eax='0x00000080' ebx='0x00000000' ecx='0x00000001' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000d' ecx_in='0x09' eax='0x00000008' ebx='0x00000a80' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000e' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x0000000f' ecx_in='0x00' eax='0x00000000' ebx='0x0000007f' ecx='0x00000000' edx='0x00000002'/>
|
|
+ <cpuid eax_in='0x0000000f' ecx_in='0x01' eax='0x00000000' ebx='0x00010000' ecx='0x0000007f' edx='0x00000007'/>
|
|
+ <cpuid eax_in='0x00000010' ecx_in='0x00' eax='0x00000000' ebx='0x0000000a' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000010' ecx_in='0x01' eax='0x0000000a' ebx='0x00000600' ecx='0x00000004' edx='0x0000000f'/>
|
|
+ <cpuid eax_in='0x00000010' ecx_in='0x03' eax='0x00000059' ebx='0x00000000' ecx='0x00000004' edx='0x00000007'/>
|
|
+ <cpuid eax_in='0x00000011' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000012' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000013' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000014' ecx_in='0x00' eax='0x00000001' ebx='0x0000000f' ecx='0x00000007' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000014' ecx_in='0x01' eax='0x02490002' ebx='0x003f3fff' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000015' ecx_in='0x00' eax='0x00000002' ebx='0x000000a8' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x00000016' ecx_in='0x00' eax='0x00000834' ebx='0x00000e74' ecx='0x00000064' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x80000000' ecx_in='0x00' eax='0x80000008' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x80000001' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000121' edx='0x2c100800'/>
|
|
+ <cpuid eax_in='0x80000002' ecx_in='0x00' eax='0x65746e49' ebx='0x2952286c' ecx='0x6f655820' edx='0x2952286e'/>
|
|
+ <cpuid eax_in='0x80000003' ecx_in='0x00' eax='0x6c6f4720' ebx='0x31362064' ecx='0x43203033' edx='0x40205550'/>
|
|
+ <cpuid eax_in='0x80000004' ecx_in='0x00' eax='0x312e3220' ebx='0x7a484730' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x80000005' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x80000006' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x01006040' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x80000007' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000100'/>
|
|
+ <cpuid eax_in='0x80000008' ecx_in='0x00' eax='0x0000302e' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0x80860000' ecx_in='0x00' eax='0x00000834' ebx='0x00000e74' ecx='0x00000064' edx='0x00000000'/>
|
|
+ <cpuid eax_in='0xc0000000' ecx_in='0x00' eax='0x00000834' ebx='0x00000e74' ecx='0x00000064' edx='0x00000000'/>
|
|
+</cpudata>
|
|
--
|
|
2.26.2
|
|
|