Lines Matching +full:qemu +full:- +full:x86
3 # SPDX-License-Identifier: GPL-2.0-or-later
9 from qemu.qmp.legacy import QEMUMonitorProtocol
13 print("syntax: %s QMP-SOCK\n\n" % __file__ +
14 "Where QMP-SOCK points to a QEMU process such as\n\n" +
15 " # qemu-system-x86_64 -qmp unix:/tmp/qmp,server,nowait " +
16 "-display none -accel kvm", file=sys.stderr)
21 [ # x86-64 baseline
31 [ # x86-64-v2
33 "lahf-lm",
40 [ # x86-64-v3
50 [ # x86-64-v4
61 # qemu-system-x86_64 -qmp unix:/tmp/qmp,server,nowait -display none -accel kvm
72 models = shell.cmd("query-cpu-definitions")
78 "min-level",
79 "min-xlevel",
82 "model-id",
89 if "alias-of" in model:
96 cpu = shell.cmd("query-cpu-model-expansion",
112 # Whether each x86-64 ABI level is satisfied
115 # Number of extra CPUID features compared to the x86-64 ABI level
116 "distance":[-1, -1, -1, -1],
131 missing = want - got
177 delta = set(models[name]["features"].keys()) - set(commonfeatures)