VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/CPUM.cpp@ 45485

Last change on this file since 45485 was 45485, checked in by vboxsync, 12 years ago
  • *: Where possible, drop the #ifdef VBOX_WITH_RAW_RING1 when EMIsRawRing1Enabled is used.
  • SELM: Don't shadow TSS.esp1/ss1 unless ring-1 compression is enabled (also fixed a log statement there).
  • SELM: selmGuestToShadowDesc should not push ring-1 selectors into ring-2 unless EMIsRawRing1Enabled() holds true.
  • REM: Don't set CPU_INTERRUPT_EXTERNAL_EXIT in helper_ltr() for now.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 214.1 KB
Line 
1/* $Id: CPUM.cpp 45485 2013-04-11 14:46:04Z vboxsync $ */
2/** @file
3 * CPUM - CPU Monitor / Manager.
4 */
5
6/*
7 * Copyright (C) 2006-2013 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/** @page pg_cpum CPUM - CPU Monitor / Manager
19 *
20 * The CPU Monitor / Manager keeps track of all the CPU registers. It is
21 * also responsible for lazy FPU handling and some of the context loading
22 * in raw mode.
23 *
24 * There are three CPU contexts, the most important one is the guest one (GC).
25 * When running in raw-mode (RC) there is a special hyper context for the VMM
26 * part that floats around inside the guest address space. When running in
27 * raw-mode, CPUM also maintains a host context for saving and restoring
28 * registers across world switches. This latter is done in cooperation with the
29 * world switcher (@see pg_vmm).
30 *
31 * @see grp_cpum
32 */
33
34/*******************************************************************************
35* Header Files *
36*******************************************************************************/
37#define LOG_GROUP LOG_GROUP_CPUM
38#include <VBox/vmm/cpum.h>
39#include <VBox/vmm/cpumdis.h>
40#include <VBox/vmm/cpumctx-v1_6.h>
41#include <VBox/vmm/pgm.h>
42#include <VBox/vmm/pdmapi.h>
43#include <VBox/vmm/mm.h>
44#include <VBox/vmm/em.h>
45#include <VBox/vmm/selm.h>
46#include <VBox/vmm/dbgf.h>
47#include <VBox/vmm/patm.h>
48#include <VBox/vmm/hm.h>
49#include <VBox/vmm/ssm.h>
50#include "CPUMInternal.h"
51#include <VBox/vmm/vm.h>
52
53#include <VBox/param.h>
54#include <VBox/dis.h>
55#include <VBox/err.h>
56#include <VBox/log.h>
57#include <iprt/assert.h>
58#include <iprt/asm-amd64-x86.h>
59#include <iprt/string.h>
60#include <iprt/mp.h>
61#include <iprt/cpuset.h>
62#include "internal/pgm.h"
63
64
65/*******************************************************************************
66* Defined Constants And Macros *
67*******************************************************************************/
68/** The current saved state version. */
69#define CPUM_SAVED_STATE_VERSION 14
70/** The current saved state version before using SSMR3PutStruct. */
71#define CPUM_SAVED_STATE_VERSION_MEM 13
72/** The saved state version before introducing the MSR size field. */
73#define CPUM_SAVED_STATE_VERSION_NO_MSR_SIZE 12
74/** The saved state version of 3.2, 3.1 and 3.3 trunk before the hidden
75 * selector register change (CPUM_CHANGED_HIDDEN_SEL_REGS_INVALID). */
76#define CPUM_SAVED_STATE_VERSION_VER3_2 11
77/** The saved state version of 3.0 and 3.1 trunk before the teleportation
78 * changes. */
79#define CPUM_SAVED_STATE_VERSION_VER3_0 10
80/** The saved state version for the 2.1 trunk before the MSR changes. */
81#define CPUM_SAVED_STATE_VERSION_VER2_1_NOMSR 9
82/** The saved state version of 2.0, used for backwards compatibility. */
83#define CPUM_SAVED_STATE_VERSION_VER2_0 8
84/** The saved state version of 1.6, used for backwards compatibility. */
85#define CPUM_SAVED_STATE_VERSION_VER1_6 6
86
87
88/**
89 * This was used in the saved state up to the early life of version 14.
90 *
91 * It indicates that we may have some out-of-sync hidden segement registers.
92 * It is only relevant for raw-mode.
93 */
94#define CPUM_CHANGED_HIDDEN_SEL_REGS_INVALID RT_BIT(12)
95
96
97/*******************************************************************************
98* Structures and Typedefs *
99*******************************************************************************/
100
101/**
102 * What kind of cpu info dump to perform.
103 */
104typedef enum CPUMDUMPTYPE
105{
106 CPUMDUMPTYPE_TERSE,
107 CPUMDUMPTYPE_DEFAULT,
108 CPUMDUMPTYPE_VERBOSE
109} CPUMDUMPTYPE;
110/** Pointer to a cpu info dump type. */
111typedef CPUMDUMPTYPE *PCPUMDUMPTYPE;
112
113
114/*******************************************************************************
115* Internal Functions *
116*******************************************************************************/
117static CPUMCPUVENDOR cpumR3DetectVendor(uint32_t uEAX, uint32_t uEBX, uint32_t uECX, uint32_t uEDX);
118static int cpumR3CpuIdInit(PVM pVM);
119static DECLCALLBACK(int) cpumR3LiveExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass);
120static DECLCALLBACK(int) cpumR3SaveExec(PVM pVM, PSSMHANDLE pSSM);
121static DECLCALLBACK(int) cpumR3LoadPrep(PVM pVM, PSSMHANDLE pSSM);
122static DECLCALLBACK(int) cpumR3LoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
123static DECLCALLBACK(int) cpumR3LoadDone(PVM pVM, PSSMHANDLE pSSM);
124static DECLCALLBACK(void) cpumR3InfoAll(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
125static DECLCALLBACK(void) cpumR3InfoGuest(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
126static DECLCALLBACK(void) cpumR3InfoGuestInstr(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
127static DECLCALLBACK(void) cpumR3InfoHyper(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
128static DECLCALLBACK(void) cpumR3InfoHost(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
129static DECLCALLBACK(void) cpumR3CpuIdInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
130
131
132/*******************************************************************************
133* Global Variables *
134*******************************************************************************/
135/** Saved state field descriptors for CPUMCTX. */
136static const SSMFIELD g_aCpumCtxFields[] =
137{
138 SSMFIELD_ENTRY( CPUMCTX, fpu.FCW),
139 SSMFIELD_ENTRY( CPUMCTX, fpu.FSW),
140 SSMFIELD_ENTRY( CPUMCTX, fpu.FTW),
141 SSMFIELD_ENTRY( CPUMCTX, fpu.FOP),
142 SSMFIELD_ENTRY( CPUMCTX, fpu.FPUIP),
143 SSMFIELD_ENTRY( CPUMCTX, fpu.CS),
144 SSMFIELD_ENTRY( CPUMCTX, fpu.Rsrvd1),
145 SSMFIELD_ENTRY( CPUMCTX, fpu.FPUDP),
146 SSMFIELD_ENTRY( CPUMCTX, fpu.DS),
147 SSMFIELD_ENTRY( CPUMCTX, fpu.Rsrvd2),
148 SSMFIELD_ENTRY( CPUMCTX, fpu.MXCSR),
149 SSMFIELD_ENTRY( CPUMCTX, fpu.MXCSR_MASK),
150 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[0]),
151 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[1]),
152 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[2]),
153 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[3]),
154 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[4]),
155 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[5]),
156 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[6]),
157 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[7]),
158 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[0]),
159 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[1]),
160 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[2]),
161 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[3]),
162 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[4]),
163 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[5]),
164 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[6]),
165 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[7]),
166 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[8]),
167 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[9]),
168 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[10]),
169 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[11]),
170 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[12]),
171 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[13]),
172 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[14]),
173 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[15]),
174 SSMFIELD_ENTRY( CPUMCTX, rdi),
175 SSMFIELD_ENTRY( CPUMCTX, rsi),
176 SSMFIELD_ENTRY( CPUMCTX, rbp),
177 SSMFIELD_ENTRY( CPUMCTX, rax),
178 SSMFIELD_ENTRY( CPUMCTX, rbx),
179 SSMFIELD_ENTRY( CPUMCTX, rdx),
180 SSMFIELD_ENTRY( CPUMCTX, rcx),
181 SSMFIELD_ENTRY( CPUMCTX, rsp),
182 SSMFIELD_ENTRY( CPUMCTX, rflags),
183 SSMFIELD_ENTRY( CPUMCTX, rip),
184 SSMFIELD_ENTRY( CPUMCTX, r8),
185 SSMFIELD_ENTRY( CPUMCTX, r9),
186 SSMFIELD_ENTRY( CPUMCTX, r10),
187 SSMFIELD_ENTRY( CPUMCTX, r11),
188 SSMFIELD_ENTRY( CPUMCTX, r12),
189 SSMFIELD_ENTRY( CPUMCTX, r13),
190 SSMFIELD_ENTRY( CPUMCTX, r14),
191 SSMFIELD_ENTRY( CPUMCTX, r15),
192 SSMFIELD_ENTRY( CPUMCTX, es.Sel),
193 SSMFIELD_ENTRY( CPUMCTX, es.ValidSel),
194 SSMFIELD_ENTRY( CPUMCTX, es.fFlags),
195 SSMFIELD_ENTRY( CPUMCTX, es.u64Base),
196 SSMFIELD_ENTRY( CPUMCTX, es.u32Limit),
197 SSMFIELD_ENTRY( CPUMCTX, es.Attr),
198 SSMFIELD_ENTRY( CPUMCTX, cs.Sel),
199 SSMFIELD_ENTRY( CPUMCTX, cs.ValidSel),
200 SSMFIELD_ENTRY( CPUMCTX, cs.fFlags),
201 SSMFIELD_ENTRY( CPUMCTX, cs.u64Base),
202 SSMFIELD_ENTRY( CPUMCTX, cs.u32Limit),
203 SSMFIELD_ENTRY( CPUMCTX, cs.Attr),
204 SSMFIELD_ENTRY( CPUMCTX, ss.Sel),
205 SSMFIELD_ENTRY( CPUMCTX, ss.ValidSel),
206 SSMFIELD_ENTRY( CPUMCTX, ss.fFlags),
207 SSMFIELD_ENTRY( CPUMCTX, ss.u64Base),
208 SSMFIELD_ENTRY( CPUMCTX, ss.u32Limit),
209 SSMFIELD_ENTRY( CPUMCTX, ss.Attr),
210 SSMFIELD_ENTRY( CPUMCTX, ds.Sel),
211 SSMFIELD_ENTRY( CPUMCTX, ds.ValidSel),
212 SSMFIELD_ENTRY( CPUMCTX, ds.fFlags),
213 SSMFIELD_ENTRY( CPUMCTX, ds.u64Base),
214 SSMFIELD_ENTRY( CPUMCTX, ds.u32Limit),
215 SSMFIELD_ENTRY( CPUMCTX, ds.Attr),
216 SSMFIELD_ENTRY( CPUMCTX, fs.Sel),
217 SSMFIELD_ENTRY( CPUMCTX, fs.ValidSel),
218 SSMFIELD_ENTRY( CPUMCTX, fs.fFlags),
219 SSMFIELD_ENTRY( CPUMCTX, fs.u64Base),
220 SSMFIELD_ENTRY( CPUMCTX, fs.u32Limit),
221 SSMFIELD_ENTRY( CPUMCTX, fs.Attr),
222 SSMFIELD_ENTRY( CPUMCTX, gs.Sel),
223 SSMFIELD_ENTRY( CPUMCTX, gs.ValidSel),
224 SSMFIELD_ENTRY( CPUMCTX, gs.fFlags),
225 SSMFIELD_ENTRY( CPUMCTX, gs.u64Base),
226 SSMFIELD_ENTRY( CPUMCTX, gs.u32Limit),
227 SSMFIELD_ENTRY( CPUMCTX, gs.Attr),
228 SSMFIELD_ENTRY( CPUMCTX, cr0),
229 SSMFIELD_ENTRY( CPUMCTX, cr2),
230 SSMFIELD_ENTRY( CPUMCTX, cr3),
231 SSMFIELD_ENTRY( CPUMCTX, cr4),
232 SSMFIELD_ENTRY( CPUMCTX, dr[0]),
233 SSMFIELD_ENTRY( CPUMCTX, dr[1]),
234 SSMFIELD_ENTRY( CPUMCTX, dr[2]),
235 SSMFIELD_ENTRY( CPUMCTX, dr[3]),
236 SSMFIELD_ENTRY( CPUMCTX, dr[6]),
237 SSMFIELD_ENTRY( CPUMCTX, dr[7]),
238 SSMFIELD_ENTRY( CPUMCTX, gdtr.cbGdt),
239 SSMFIELD_ENTRY( CPUMCTX, gdtr.pGdt),
240 SSMFIELD_ENTRY( CPUMCTX, idtr.cbIdt),
241 SSMFIELD_ENTRY( CPUMCTX, idtr.pIdt),
242 SSMFIELD_ENTRY( CPUMCTX, SysEnter.cs),
243 SSMFIELD_ENTRY( CPUMCTX, SysEnter.eip),
244 SSMFIELD_ENTRY( CPUMCTX, SysEnter.esp),
245 SSMFIELD_ENTRY( CPUMCTX, msrEFER),
246 SSMFIELD_ENTRY( CPUMCTX, msrSTAR),
247 SSMFIELD_ENTRY( CPUMCTX, msrPAT),
248 SSMFIELD_ENTRY( CPUMCTX, msrLSTAR),
249 SSMFIELD_ENTRY( CPUMCTX, msrCSTAR),
250 SSMFIELD_ENTRY( CPUMCTX, msrSFMASK),
251 SSMFIELD_ENTRY( CPUMCTX, msrKERNELGSBASE),
252 SSMFIELD_ENTRY( CPUMCTX, ldtr.Sel),
253 SSMFIELD_ENTRY( CPUMCTX, ldtr.ValidSel),
254 SSMFIELD_ENTRY( CPUMCTX, ldtr.fFlags),
255 SSMFIELD_ENTRY( CPUMCTX, ldtr.u64Base),
256 SSMFIELD_ENTRY( CPUMCTX, ldtr.u32Limit),
257 SSMFIELD_ENTRY( CPUMCTX, ldtr.Attr),
258 SSMFIELD_ENTRY( CPUMCTX, tr.Sel),
259 SSMFIELD_ENTRY( CPUMCTX, tr.ValidSel),
260 SSMFIELD_ENTRY( CPUMCTX, tr.fFlags),
261 SSMFIELD_ENTRY( CPUMCTX, tr.u64Base),
262 SSMFIELD_ENTRY( CPUMCTX, tr.u32Limit),
263 SSMFIELD_ENTRY( CPUMCTX, tr.Attr),
264 SSMFIELD_ENTRY_TERM()
265};
266
267/** Saved state field descriptors for CPUMCTX in V4.1 before the hidden selector
268 * registeres changed. */
269static const SSMFIELD g_aCpumCtxFieldsMem[] =
270{
271 SSMFIELD_ENTRY( CPUMCTX, fpu.FCW),
272 SSMFIELD_ENTRY( CPUMCTX, fpu.FSW),
273 SSMFIELD_ENTRY( CPUMCTX, fpu.FTW),
274 SSMFIELD_ENTRY( CPUMCTX, fpu.FOP),
275 SSMFIELD_ENTRY( CPUMCTX, fpu.FPUIP),
276 SSMFIELD_ENTRY( CPUMCTX, fpu.CS),
277 SSMFIELD_ENTRY( CPUMCTX, fpu.Rsrvd1),
278 SSMFIELD_ENTRY( CPUMCTX, fpu.FPUDP),
279 SSMFIELD_ENTRY( CPUMCTX, fpu.DS),
280 SSMFIELD_ENTRY( CPUMCTX, fpu.Rsrvd2),
281 SSMFIELD_ENTRY( CPUMCTX, fpu.MXCSR),
282 SSMFIELD_ENTRY( CPUMCTX, fpu.MXCSR_MASK),
283 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[0]),
284 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[1]),
285 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[2]),
286 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[3]),
287 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[4]),
288 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[5]),
289 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[6]),
290 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[7]),
291 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[0]),
292 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[1]),
293 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[2]),
294 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[3]),
295 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[4]),
296 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[5]),
297 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[6]),
298 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[7]),
299 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[8]),
300 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[9]),
301 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[10]),
302 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[11]),
303 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[12]),
304 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[13]),
305 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[14]),
306 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[15]),
307 SSMFIELD_ENTRY_IGNORE( CPUMCTX, fpu.au32RsrvdRest),
308 SSMFIELD_ENTRY( CPUMCTX, rdi),
309 SSMFIELD_ENTRY( CPUMCTX, rsi),
310 SSMFIELD_ENTRY( CPUMCTX, rbp),
311 SSMFIELD_ENTRY( CPUMCTX, rax),
312 SSMFIELD_ENTRY( CPUMCTX, rbx),
313 SSMFIELD_ENTRY( CPUMCTX, rdx),
314 SSMFIELD_ENTRY( CPUMCTX, rcx),
315 SSMFIELD_ENTRY( CPUMCTX, rsp),
316 SSMFIELD_ENTRY_OLD( lss_esp, sizeof(uint32_t)),
317 SSMFIELD_ENTRY( CPUMCTX, ss.Sel),
318 SSMFIELD_ENTRY_OLD( ssPadding, sizeof(uint16_t)),
319 SSMFIELD_ENTRY( CPUMCTX, gs.Sel),
320 SSMFIELD_ENTRY_OLD( gsPadding, sizeof(uint16_t)),
321 SSMFIELD_ENTRY( CPUMCTX, fs.Sel),
322 SSMFIELD_ENTRY_OLD( fsPadding, sizeof(uint16_t)),
323 SSMFIELD_ENTRY( CPUMCTX, es.Sel),
324 SSMFIELD_ENTRY_OLD( esPadding, sizeof(uint16_t)),
325 SSMFIELD_ENTRY( CPUMCTX, ds.Sel),
326 SSMFIELD_ENTRY_OLD( dsPadding, sizeof(uint16_t)),
327 SSMFIELD_ENTRY( CPUMCTX, cs.Sel),
328 SSMFIELD_ENTRY_OLD( csPadding, sizeof(uint16_t)*3),
329 SSMFIELD_ENTRY( CPUMCTX, rflags),
330 SSMFIELD_ENTRY( CPUMCTX, rip),
331 SSMFIELD_ENTRY( CPUMCTX, r8),
332 SSMFIELD_ENTRY( CPUMCTX, r9),
333 SSMFIELD_ENTRY( CPUMCTX, r10),
334 SSMFIELD_ENTRY( CPUMCTX, r11),
335 SSMFIELD_ENTRY( CPUMCTX, r12),
336 SSMFIELD_ENTRY( CPUMCTX, r13),
337 SSMFIELD_ENTRY( CPUMCTX, r14),
338 SSMFIELD_ENTRY( CPUMCTX, r15),
339 SSMFIELD_ENTRY( CPUMCTX, es.u64Base),
340 SSMFIELD_ENTRY( CPUMCTX, es.u32Limit),
341 SSMFIELD_ENTRY( CPUMCTX, es.Attr),
342 SSMFIELD_ENTRY( CPUMCTX, cs.u64Base),
343 SSMFIELD_ENTRY( CPUMCTX, cs.u32Limit),
344 SSMFIELD_ENTRY( CPUMCTX, cs.Attr),
345 SSMFIELD_ENTRY( CPUMCTX, ss.u64Base),
346 SSMFIELD_ENTRY( CPUMCTX, ss.u32Limit),
347 SSMFIELD_ENTRY( CPUMCTX, ss.Attr),
348 SSMFIELD_ENTRY( CPUMCTX, ds.u64Base),
349 SSMFIELD_ENTRY( CPUMCTX, ds.u32Limit),
350 SSMFIELD_ENTRY( CPUMCTX, ds.Attr),
351 SSMFIELD_ENTRY( CPUMCTX, fs.u64Base),
352 SSMFIELD_ENTRY( CPUMCTX, fs.u32Limit),
353 SSMFIELD_ENTRY( CPUMCTX, fs.Attr),
354 SSMFIELD_ENTRY( CPUMCTX, gs.u64Base),
355 SSMFIELD_ENTRY( CPUMCTX, gs.u32Limit),
356 SSMFIELD_ENTRY( CPUMCTX, gs.Attr),
357 SSMFIELD_ENTRY( CPUMCTX, cr0),
358 SSMFIELD_ENTRY( CPUMCTX, cr2),
359 SSMFIELD_ENTRY( CPUMCTX, cr3),
360 SSMFIELD_ENTRY( CPUMCTX, cr4),
361 SSMFIELD_ENTRY( CPUMCTX, dr[0]),
362 SSMFIELD_ENTRY( CPUMCTX, dr[1]),
363 SSMFIELD_ENTRY( CPUMCTX, dr[2]),
364 SSMFIELD_ENTRY( CPUMCTX, dr[3]),
365 SSMFIELD_ENTRY_OLD( dr[4], sizeof(uint64_t)),
366 SSMFIELD_ENTRY_OLD( dr[5], sizeof(uint64_t)),
367 SSMFIELD_ENTRY( CPUMCTX, dr[6]),
368 SSMFIELD_ENTRY( CPUMCTX, dr[7]),
369 SSMFIELD_ENTRY( CPUMCTX, gdtr.cbGdt),
370 SSMFIELD_ENTRY( CPUMCTX, gdtr.pGdt),
371 SSMFIELD_ENTRY_OLD( gdtrPadding, sizeof(uint16_t)),
372 SSMFIELD_ENTRY( CPUMCTX, idtr.cbIdt),
373 SSMFIELD_ENTRY( CPUMCTX, idtr.pIdt),
374 SSMFIELD_ENTRY_OLD( idtrPadding, sizeof(uint16_t)),
375 SSMFIELD_ENTRY( CPUMCTX, ldtr.Sel),
376 SSMFIELD_ENTRY_OLD( ldtrPadding, sizeof(uint16_t)),
377 SSMFIELD_ENTRY( CPUMCTX, tr.Sel),
378 SSMFIELD_ENTRY_OLD( trPadding, sizeof(uint16_t)),
379 SSMFIELD_ENTRY( CPUMCTX, SysEnter.cs),
380 SSMFIELD_ENTRY( CPUMCTX, SysEnter.eip),
381 SSMFIELD_ENTRY( CPUMCTX, SysEnter.esp),
382 SSMFIELD_ENTRY( CPUMCTX, msrEFER),
383 SSMFIELD_ENTRY( CPUMCTX, msrSTAR),
384 SSMFIELD_ENTRY( CPUMCTX, msrPAT),
385 SSMFIELD_ENTRY( CPUMCTX, msrLSTAR),
386 SSMFIELD_ENTRY( CPUMCTX, msrCSTAR),
387 SSMFIELD_ENTRY( CPUMCTX, msrSFMASK),
388 SSMFIELD_ENTRY( CPUMCTX, msrKERNELGSBASE),
389 SSMFIELD_ENTRY( CPUMCTX, ldtr.u64Base),
390 SSMFIELD_ENTRY( CPUMCTX, ldtr.u32Limit),
391 SSMFIELD_ENTRY( CPUMCTX, ldtr.Attr),
392 SSMFIELD_ENTRY( CPUMCTX, tr.u64Base),
393 SSMFIELD_ENTRY( CPUMCTX, tr.u32Limit),
394 SSMFIELD_ENTRY( CPUMCTX, tr.Attr),
395 SSMFIELD_ENTRY_TERM()
396};
397
398/** Saved state field descriptors for CPUMCTX_VER1_6. */
399static const SSMFIELD g_aCpumCtxFieldsV16[] =
400{
401 SSMFIELD_ENTRY( CPUMCTX, fpu.FCW),
402 SSMFIELD_ENTRY( CPUMCTX, fpu.FSW),
403 SSMFIELD_ENTRY( CPUMCTX, fpu.FTW),
404 SSMFIELD_ENTRY( CPUMCTX, fpu.FOP),
405 SSMFIELD_ENTRY( CPUMCTX, fpu.FPUIP),
406 SSMFIELD_ENTRY( CPUMCTX, fpu.CS),
407 SSMFIELD_ENTRY( CPUMCTX, fpu.Rsrvd1),
408 SSMFIELD_ENTRY( CPUMCTX, fpu.FPUDP),
409 SSMFIELD_ENTRY( CPUMCTX, fpu.DS),
410 SSMFIELD_ENTRY( CPUMCTX, fpu.Rsrvd2),
411 SSMFIELD_ENTRY( CPUMCTX, fpu.MXCSR),
412 SSMFIELD_ENTRY( CPUMCTX, fpu.MXCSR_MASK),
413 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[0]),
414 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[1]),
415 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[2]),
416 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[3]),
417 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[4]),
418 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[5]),
419 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[6]),
420 SSMFIELD_ENTRY( CPUMCTX, fpu.aRegs[7]),
421 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[0]),
422 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[1]),
423 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[2]),
424 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[3]),
425 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[4]),
426 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[5]),
427 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[6]),
428 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[7]),
429 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[8]),
430 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[9]),
431 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[10]),
432 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[11]),
433 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[12]),
434 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[13]),
435 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[14]),
436 SSMFIELD_ENTRY( CPUMCTX, fpu.aXMM[15]),
437 SSMFIELD_ENTRY_IGNORE( CPUMCTX, fpu.au32RsrvdRest),
438 SSMFIELD_ENTRY( CPUMCTX, rdi),
439 SSMFIELD_ENTRY( CPUMCTX, rsi),
440 SSMFIELD_ENTRY( CPUMCTX, rbp),
441 SSMFIELD_ENTRY( CPUMCTX, rax),
442 SSMFIELD_ENTRY( CPUMCTX, rbx),
443 SSMFIELD_ENTRY( CPUMCTX, rdx),
444 SSMFIELD_ENTRY( CPUMCTX, rcx),
445 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, rsp),
446 SSMFIELD_ENTRY( CPUMCTX, ss.Sel),
447 SSMFIELD_ENTRY_OLD( ssPadding, sizeof(uint16_t)),
448 SSMFIELD_ENTRY_OLD( CPUMCTX, sizeof(uint64_t) /*rsp_notused*/),
449 SSMFIELD_ENTRY( CPUMCTX, gs.Sel),
450 SSMFIELD_ENTRY_OLD( gsPadding, sizeof(uint16_t)),
451 SSMFIELD_ENTRY( CPUMCTX, fs.Sel),
452 SSMFIELD_ENTRY_OLD( fsPadding, sizeof(uint16_t)),
453 SSMFIELD_ENTRY( CPUMCTX, es.Sel),
454 SSMFIELD_ENTRY_OLD( esPadding, sizeof(uint16_t)),
455 SSMFIELD_ENTRY( CPUMCTX, ds.Sel),
456 SSMFIELD_ENTRY_OLD( dsPadding, sizeof(uint16_t)),
457 SSMFIELD_ENTRY( CPUMCTX, cs.Sel),
458 SSMFIELD_ENTRY_OLD( csPadding, sizeof(uint16_t)*3),
459 SSMFIELD_ENTRY( CPUMCTX, rflags),
460 SSMFIELD_ENTRY( CPUMCTX, rip),
461 SSMFIELD_ENTRY( CPUMCTX, r8),
462 SSMFIELD_ENTRY( CPUMCTX, r9),
463 SSMFIELD_ENTRY( CPUMCTX, r10),
464 SSMFIELD_ENTRY( CPUMCTX, r11),
465 SSMFIELD_ENTRY( CPUMCTX, r12),
466 SSMFIELD_ENTRY( CPUMCTX, r13),
467 SSMFIELD_ENTRY( CPUMCTX, r14),
468 SSMFIELD_ENTRY( CPUMCTX, r15),
469 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, es.u64Base),
470 SSMFIELD_ENTRY( CPUMCTX, es.u32Limit),
471 SSMFIELD_ENTRY( CPUMCTX, es.Attr),
472 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, cs.u64Base),
473 SSMFIELD_ENTRY( CPUMCTX, cs.u32Limit),
474 SSMFIELD_ENTRY( CPUMCTX, cs.Attr),
475 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, ss.u64Base),
476 SSMFIELD_ENTRY( CPUMCTX, ss.u32Limit),
477 SSMFIELD_ENTRY( CPUMCTX, ss.Attr),
478 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, ds.u64Base),
479 SSMFIELD_ENTRY( CPUMCTX, ds.u32Limit),
480 SSMFIELD_ENTRY( CPUMCTX, ds.Attr),
481 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, fs.u64Base),
482 SSMFIELD_ENTRY( CPUMCTX, fs.u32Limit),
483 SSMFIELD_ENTRY( CPUMCTX, fs.Attr),
484 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, gs.u64Base),
485 SSMFIELD_ENTRY( CPUMCTX, gs.u32Limit),
486 SSMFIELD_ENTRY( CPUMCTX, gs.Attr),
487 SSMFIELD_ENTRY( CPUMCTX, cr0),
488 SSMFIELD_ENTRY( CPUMCTX, cr2),
489 SSMFIELD_ENTRY( CPUMCTX, cr3),
490 SSMFIELD_ENTRY( CPUMCTX, cr4),
491 SSMFIELD_ENTRY_OLD( cr8, sizeof(uint64_t)),
492 SSMFIELD_ENTRY( CPUMCTX, dr[0]),
493 SSMFIELD_ENTRY( CPUMCTX, dr[1]),
494 SSMFIELD_ENTRY( CPUMCTX, dr[2]),
495 SSMFIELD_ENTRY( CPUMCTX, dr[3]),
496 SSMFIELD_ENTRY_OLD( dr[4], sizeof(uint64_t)),
497 SSMFIELD_ENTRY_OLD( dr[5], sizeof(uint64_t)),
498 SSMFIELD_ENTRY( CPUMCTX, dr[6]),
499 SSMFIELD_ENTRY( CPUMCTX, dr[7]),
500 SSMFIELD_ENTRY( CPUMCTX, gdtr.cbGdt),
501 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, gdtr.pGdt),
502 SSMFIELD_ENTRY_OLD( gdtrPadding, sizeof(uint16_t)),
503 SSMFIELD_ENTRY_OLD( gdtrPadding64, sizeof(uint64_t)),
504 SSMFIELD_ENTRY( CPUMCTX, idtr.cbIdt),
505 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, idtr.pIdt),
506 SSMFIELD_ENTRY_OLD( idtrPadding, sizeof(uint16_t)),
507 SSMFIELD_ENTRY_OLD( idtrPadding64, sizeof(uint64_t)),
508 SSMFIELD_ENTRY( CPUMCTX, ldtr.Sel),
509 SSMFIELD_ENTRY_OLD( ldtrPadding, sizeof(uint16_t)),
510 SSMFIELD_ENTRY( CPUMCTX, tr.Sel),
511 SSMFIELD_ENTRY_OLD( trPadding, sizeof(uint16_t)),
512 SSMFIELD_ENTRY( CPUMCTX, SysEnter.cs),
513 SSMFIELD_ENTRY( CPUMCTX, SysEnter.eip),
514 SSMFIELD_ENTRY( CPUMCTX, SysEnter.esp),
515 SSMFIELD_ENTRY( CPUMCTX, msrEFER),
516 SSMFIELD_ENTRY( CPUMCTX, msrSTAR),
517 SSMFIELD_ENTRY( CPUMCTX, msrPAT),
518 SSMFIELD_ENTRY( CPUMCTX, msrLSTAR),
519 SSMFIELD_ENTRY( CPUMCTX, msrCSTAR),
520 SSMFIELD_ENTRY( CPUMCTX, msrSFMASK),
521 SSMFIELD_ENTRY_OLD( msrFSBASE, sizeof(uint64_t)),
522 SSMFIELD_ENTRY_OLD( msrGSBASE, sizeof(uint64_t)),
523 SSMFIELD_ENTRY( CPUMCTX, msrKERNELGSBASE),
524 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, ldtr.u64Base),
525 SSMFIELD_ENTRY( CPUMCTX, ldtr.u32Limit),
526 SSMFIELD_ENTRY( CPUMCTX, ldtr.Attr),
527 SSMFIELD_ENTRY_U32_ZX_U64( CPUMCTX, tr.u64Base),
528 SSMFIELD_ENTRY( CPUMCTX, tr.u32Limit),
529 SSMFIELD_ENTRY( CPUMCTX, tr.Attr),
530 SSMFIELD_ENTRY_OLD( padding, sizeof(uint32_t)*2),
531 SSMFIELD_ENTRY_TERM()
532};
533
534
535/**
536 * Initializes the CPUM.
537 *
538 * @returns VBox status code.
539 * @param pVM Pointer to the VM.
540 */
541VMMR3DECL(int) CPUMR3Init(PVM pVM)
542{
543 LogFlow(("CPUMR3Init\n"));
544
545 /*
546 * Assert alignment and sizes.
547 */
548 AssertCompileMemberAlignment(VM, cpum.s, 32);
549 AssertCompile(sizeof(pVM->cpum.s) <= sizeof(pVM->cpum.padding));
550 AssertCompileSizeAlignment(CPUMCTX, 64);
551 AssertCompileSizeAlignment(CPUMCTXMSRS, 64);
552 AssertCompileSizeAlignment(CPUMHOSTCTX, 64);
553 AssertCompileMemberAlignment(VM, cpum, 64);
554 AssertCompileMemberAlignment(VM, aCpus, 64);
555 AssertCompileMemberAlignment(VMCPU, cpum.s, 64);
556 AssertCompileMemberSizeAlignment(VM, aCpus[0].cpum.s, 64);
557
558 /* Calculate the offset from CPUM to CPUMCPU for the first CPU. */
559 pVM->cpum.s.offCPUMCPU0 = RT_OFFSETOF(VM, aCpus[0].cpum) - RT_OFFSETOF(VM, cpum);
560 Assert((uintptr_t)&pVM->cpum + pVM->cpum.s.offCPUMCPU0 == (uintptr_t)&pVM->aCpus[0].cpum);
561
562 /* Calculate the offset from CPUMCPU to CPUM. */
563 for (VMCPUID i = 0; i < pVM->cCpus; i++)
564 {
565 PVMCPU pVCpu = &pVM->aCpus[i];
566
567 pVCpu->cpum.s.offCPUM = RT_OFFSETOF(VM, aCpus[i].cpum) - RT_OFFSETOF(VM, cpum);
568 Assert((uintptr_t)&pVCpu->cpum - pVCpu->cpum.s.offCPUM == (uintptr_t)&pVM->cpum);
569 }
570
571 /*
572 * Check that the CPU supports the minimum features we require.
573 */
574 if (!ASMHasCpuId())
575 {
576 Log(("The CPU doesn't support CPUID!\n"));
577 return VERR_UNSUPPORTED_CPU;
578 }
579 ASMCpuId_ECX_EDX(1, &pVM->cpum.s.CPUFeatures.ecx, &pVM->cpum.s.CPUFeatures.edx);
580 ASMCpuId_ECX_EDX(0x80000001, &pVM->cpum.s.CPUFeaturesExt.ecx, &pVM->cpum.s.CPUFeaturesExt.edx);
581
582 /* Setup the CR4 AND and OR masks used in the switcher */
583 /* Depends on the presence of FXSAVE(SSE) support on the host CPU */
584 if (!pVM->cpum.s.CPUFeatures.edx.u1FXSR)
585 {
586 Log(("The CPU doesn't support FXSAVE/FXRSTOR!\n"));
587 /* No FXSAVE implies no SSE */
588 pVM->cpum.s.CR4.AndMask = X86_CR4_PVI | X86_CR4_VME;
589 pVM->cpum.s.CR4.OrMask = 0;
590 }
591 else
592 {
593 pVM->cpum.s.CR4.AndMask = X86_CR4_OSXMMEEXCPT | X86_CR4_PVI | X86_CR4_VME;
594 pVM->cpum.s.CR4.OrMask = X86_CR4_OSFSXR;
595 }
596
597 if (!pVM->cpum.s.CPUFeatures.edx.u1MMX)
598 {
599 Log(("The CPU doesn't support MMX!\n"));
600 return VERR_UNSUPPORTED_CPU;
601 }
602 if (!pVM->cpum.s.CPUFeatures.edx.u1TSC)
603 {
604 Log(("The CPU doesn't support TSC!\n"));
605 return VERR_UNSUPPORTED_CPU;
606 }
607 /* Bogus on AMD? */
608 if (!pVM->cpum.s.CPUFeatures.edx.u1SEP)
609 Log(("The CPU doesn't support SYSENTER/SYSEXIT!\n"));
610
611 /*
612 * Detect the host CPU vendor.
613 * (The guest CPU vendor is re-detected later on.)
614 */
615 uint32_t uEAX, uEBX, uECX, uEDX;
616 ASMCpuId(0, &uEAX, &uEBX, &uECX, &uEDX);
617 pVM->cpum.s.enmHostCpuVendor = cpumR3DetectVendor(uEAX, uEBX, uECX, uEDX);
618 pVM->cpum.s.enmGuestCpuVendor = pVM->cpum.s.enmHostCpuVendor;
619
620 /*
621 * Setup hypervisor startup values.
622 */
623
624 /*
625 * Register saved state data item.
626 */
627 int rc = SSMR3RegisterInternal(pVM, "cpum", 1, CPUM_SAVED_STATE_VERSION, sizeof(CPUM),
628 NULL, cpumR3LiveExec, NULL,
629 NULL, cpumR3SaveExec, NULL,
630 cpumR3LoadPrep, cpumR3LoadExec, cpumR3LoadDone);
631 if (RT_FAILURE(rc))
632 return rc;
633
634 /*
635 * Register info handlers and registers with the debugger facility.
636 */
637 DBGFR3InfoRegisterInternal(pVM, "cpum", "Displays the all the cpu states.", &cpumR3InfoAll);
638 DBGFR3InfoRegisterInternal(pVM, "cpumguest", "Displays the guest cpu state.", &cpumR3InfoGuest);
639 DBGFR3InfoRegisterInternal(pVM, "cpumhyper", "Displays the hypervisor cpu state.", &cpumR3InfoHyper);
640 DBGFR3InfoRegisterInternal(pVM, "cpumhost", "Displays the host cpu state.", &cpumR3InfoHost);
641 DBGFR3InfoRegisterInternal(pVM, "cpuid", "Displays the guest cpuid leaves.", &cpumR3CpuIdInfo);
642 DBGFR3InfoRegisterInternal(pVM, "cpumguestinstr", "Displays the current guest instruction.", &cpumR3InfoGuestInstr);
643
644 rc = cpumR3DbgInit(pVM);
645 if (RT_FAILURE(rc))
646 return rc;
647
648 /*
649 * Initialize the Guest CPUID state.
650 */
651 rc = cpumR3CpuIdInit(pVM);
652 if (RT_FAILURE(rc))
653 return rc;
654 CPUMR3Reset(pVM);
655 return VINF_SUCCESS;
656}
657
658
659/**
660 * Detect the CPU vendor give n the
661 *
662 * @returns The vendor.
663 * @param uEAX EAX from CPUID(0).
664 * @param uEBX EBX from CPUID(0).
665 * @param uECX ECX from CPUID(0).
666 * @param uEDX EDX from CPUID(0).
667 */
668static CPUMCPUVENDOR cpumR3DetectVendor(uint32_t uEAX, uint32_t uEBX, uint32_t uECX, uint32_t uEDX)
669{
670 if (ASMIsValidStdRange(uEAX))
671 {
672 if (ASMIsAmdCpuEx(uEBX, uECX, uEDX))
673 return CPUMCPUVENDOR_AMD;
674
675 if (ASMIsIntelCpuEx(uEBX, uECX, uEDX))
676 return CPUMCPUVENDOR_INTEL;
677
678 if (ASMIsViaCentaurCpuEx(uEBX, uECX, uEDX))
679 return CPUMCPUVENDOR_VIA;
680
681 /** @todo detect the other buggers... */
682 }
683
684 return CPUMCPUVENDOR_UNKNOWN;
685}
686
687
688/**
689 * Fetches overrides for a CPUID leaf.
690 *
691 * @returns VBox status code.
692 * @param pLeaf The leaf to load the overrides into.
693 * @param pCfgNode The CFGM node containing the overrides
694 * (/CPUM/HostCPUID/ or /CPUM/CPUID/).
695 * @param iLeaf The CPUID leaf number.
696 */
697static int cpumR3CpuIdFetchLeafOverride(PCPUMCPUID pLeaf, PCFGMNODE pCfgNode, uint32_t iLeaf)
698{
699 PCFGMNODE pLeafNode = CFGMR3GetChildF(pCfgNode, "%RX32", iLeaf);
700 if (pLeafNode)
701 {
702 uint32_t u32;
703 int rc = CFGMR3QueryU32(pLeafNode, "eax", &u32);
704 if (RT_SUCCESS(rc))
705 pLeaf->eax = u32;
706 else
707 AssertReturn(rc == VERR_CFGM_VALUE_NOT_FOUND, rc);
708
709 rc = CFGMR3QueryU32(pLeafNode, "ebx", &u32);
710 if (RT_SUCCESS(rc))
711 pLeaf->ebx = u32;
712 else
713 AssertReturn(rc == VERR_CFGM_VALUE_NOT_FOUND, rc);
714
715 rc = CFGMR3QueryU32(pLeafNode, "ecx", &u32);
716 if (RT_SUCCESS(rc))
717 pLeaf->ecx = u32;
718 else
719 AssertReturn(rc == VERR_CFGM_VALUE_NOT_FOUND, rc);
720
721 rc = CFGMR3QueryU32(pLeafNode, "edx", &u32);
722 if (RT_SUCCESS(rc))
723 pLeaf->edx = u32;
724 else
725 AssertReturn(rc == VERR_CFGM_VALUE_NOT_FOUND, rc);
726
727 }
728 return VINF_SUCCESS;
729}
730
731
732/**
733 * Load the overrides for a set of CPUID leaves.
734 *
735 * @returns VBox status code.
736 * @param paLeaves The leaf array.
737 * @param cLeaves The number of leaves.
738 * @param uStart The start leaf number.
739 * @param pCfgNode The CFGM node containing the overrides
740 * (/CPUM/HostCPUID/ or /CPUM/CPUID/).
741 */
742static int cpumR3CpuIdInitLoadOverrideSet(uint32_t uStart, PCPUMCPUID paLeaves, uint32_t cLeaves, PCFGMNODE pCfgNode)
743{
744 for (uint32_t i = 0; i < cLeaves; i++)
745 {
746 int rc = cpumR3CpuIdFetchLeafOverride(&paLeaves[i], pCfgNode, uStart + i);
747 if (RT_FAILURE(rc))
748 return rc;
749 }
750
751 return VINF_SUCCESS;
752}
753
754/**
755 * Init a set of host CPUID leaves.
756 *
757 * @returns VBox status code.
758 * @param paLeaves The leaf array.
759 * @param cLeaves The number of leaves.
760 * @param uStart The start leaf number.
761 * @param pCfgNode The /CPUM/HostCPUID/ node.
762 */
763static int cpumR3CpuIdInitHostSet(uint32_t uStart, PCPUMCPUID paLeaves, uint32_t cLeaves, PCFGMNODE pCfgNode)
764{
765 /* Using the ECX variant for all of them can't hurt... */
766 for (uint32_t i = 0; i < cLeaves; i++)
767 ASMCpuId_Idx_ECX(uStart + i, 0, &paLeaves[i].eax, &paLeaves[i].ebx, &paLeaves[i].ecx, &paLeaves[i].edx);
768
769 /* Load CPUID leaf override; we currently don't care if the user
770 specifies features the host CPU doesn't support. */
771 return cpumR3CpuIdInitLoadOverrideSet(uStart, paLeaves, cLeaves, pCfgNode);
772}
773
774
775/**
776 * Initializes the emulated CPU's cpuid information.
777 *
778 * @returns VBox status code.
779 * @param pVM Pointer to the VM.
780 */
781static int cpumR3CpuIdInit(PVM pVM)
782{
783 PCPUM pCPUM = &pVM->cpum.s;
784 PCFGMNODE pCpumCfg = CFGMR3GetChild(CFGMR3GetRoot(pVM), "CPUM");
785 uint32_t i;
786 int rc;
787
788#define PORTABLE_CLEAR_BITS_WHEN(Lvl, LeafSuffReg, FeatNm, fMask, uValue) \
789 if (pCPUM->u8PortableCpuIdLevel >= (Lvl) && (pCPUM->aGuestCpuId##LeafSuffReg & (fMask)) == (uValue) ) \
790 { \
791 LogRel(("PortableCpuId: " #LeafSuffReg "[" #FeatNm "]: %#x -> 0\n", pCPUM->aGuestCpuId##LeafSuffReg & (fMask))); \
792 pCPUM->aGuestCpuId##LeafSuffReg &= ~(uint32_t)(fMask); \
793 }
794#define PORTABLE_DISABLE_FEATURE_BIT(Lvl, LeafSuffReg, FeatNm, fBitMask) \
795 if (pCPUM->u8PortableCpuIdLevel >= (Lvl) && (pCPUM->aGuestCpuId##LeafSuffReg & (fBitMask)) ) \
796 { \
797 LogRel(("PortableCpuId: " #LeafSuffReg "[" #FeatNm "]: 1 -> 0\n")); \
798 pCPUM->aGuestCpuId##LeafSuffReg &= ~(uint32_t)(fBitMask); \
799 }
800
801 /*
802 * Read the configuration.
803 */
804 /** @cfgm{CPUM/SyntheticCpu, boolean, false}
805 * Enables the Synthetic CPU. The Vendor ID and Processor Name are
806 * completely overridden by VirtualBox custom strings. Some
807 * CPUID information is withheld, like the cache info. */
808 rc = CFGMR3QueryBoolDef(pCpumCfg, "SyntheticCpu", &pCPUM->fSyntheticCpu, false);
809 AssertRCReturn(rc, rc);
810
811 /** @cfgm{CPUM/PortableCpuIdLevel, 8-bit, 0, 3, 0}
812 * When non-zero CPUID features that could cause portability issues will be
813 * stripped. The higher the value the more features gets stripped. Higher
814 * values should only be used when older CPUs are involved since it may
815 * harm performance and maybe also cause problems with specific guests. */
816 rc = CFGMR3QueryU8Def(pCpumCfg, "PortableCpuIdLevel", &pCPUM->u8PortableCpuIdLevel, 0);
817 AssertRCReturn(rc, rc);
818
819 AssertLogRelReturn(!pCPUM->fSyntheticCpu || !pCPUM->u8PortableCpuIdLevel, VERR_CPUM_INCOMPATIBLE_CONFIG);
820
821 /*
822 * Get the host CPUID leaves and redetect the guest CPU vendor (could've
823 * been overridden).
824 */
825 /** @cfgm{CPUM/HostCPUID/[000000xx|800000xx|c000000x]/[eax|ebx|ecx|edx],32-bit}
826 * Overrides the host CPUID leaf values used for calculating the guest CPUID
827 * leaves. This can be used to preserve the CPUID values when moving a VM to a
828 * different machine. Another use is restricting (or extending) the feature set
829 * exposed to the guest. */
830 PCFGMNODE pHostOverrideCfg = CFGMR3GetChild(pCpumCfg, "HostCPUID");
831 rc = cpumR3CpuIdInitHostSet(UINT32_C(0x00000000), &pCPUM->aGuestCpuIdStd[0], RT_ELEMENTS(pCPUM->aGuestCpuIdStd), pHostOverrideCfg);
832 AssertRCReturn(rc, rc);
833 rc = cpumR3CpuIdInitHostSet(UINT32_C(0x80000000), &pCPUM->aGuestCpuIdExt[0], RT_ELEMENTS(pCPUM->aGuestCpuIdExt), pHostOverrideCfg);
834 AssertRCReturn(rc, rc);
835 rc = cpumR3CpuIdInitHostSet(UINT32_C(0xc0000000), &pCPUM->aGuestCpuIdCentaur[0], RT_ELEMENTS(pCPUM->aGuestCpuIdCentaur), pHostOverrideCfg);
836 AssertRCReturn(rc, rc);
837
838 pCPUM->enmGuestCpuVendor = cpumR3DetectVendor(pCPUM->aGuestCpuIdStd[0].eax, pCPUM->aGuestCpuIdStd[0].ebx,
839 pCPUM->aGuestCpuIdStd[0].ecx, pCPUM->aGuestCpuIdStd[0].edx);
840
841 /*
842 * Determine the default leaf.
843 *
844 * Intel returns values of the highest standard function, while AMD
845 * returns zeros. VIA on the other hand seems to returning nothing or
846 * perhaps some random garbage, we don't try to duplicate this behavior.
847 */
848 ASMCpuId(pCPUM->aGuestCpuIdStd[0].eax + 10, /** @todo r=bird: Use the host value here in case of overrides and more than 10 leaves being stripped already. */
849 &pCPUM->GuestCpuIdDef.eax, &pCPUM->GuestCpuIdDef.ebx,
850 &pCPUM->GuestCpuIdDef.ecx, &pCPUM->GuestCpuIdDef.edx);
851
852 /** @cfgm{/CPUM/CMPXCHG16B, boolean, false}
853 * Expose CMPXCHG16B to the guest if supported by the host.
854 */
855 bool fCmpXchg16b;
856 rc = CFGMR3QueryBoolDef(pCpumCfg, "CMPXCHG16B", &fCmpXchg16b, false); AssertRCReturn(rc, rc);
857
858 bool fMonitor;
859 rc = CFGMR3QueryBoolDef(pCpumCfg, "MONITOR", &fMonitor, true); AssertRCReturn(rc, rc);
860
861 /* Cpuid 1 & 0x80000001:
862 * Only report features we can support.
863 *
864 * Note! When enabling new features the Synthetic CPU and Portable CPUID
865 * options may require adjusting (i.e. stripping what was enabled).
866 */
867 pCPUM->aGuestCpuIdStd[1].edx &= X86_CPUID_FEATURE_EDX_FPU
868 | X86_CPUID_FEATURE_EDX_VME
869 | X86_CPUID_FEATURE_EDX_DE
870 | X86_CPUID_FEATURE_EDX_PSE
871 | X86_CPUID_FEATURE_EDX_TSC
872 | X86_CPUID_FEATURE_EDX_MSR
873 //| X86_CPUID_FEATURE_EDX_PAE - set later if configured.
874 | X86_CPUID_FEATURE_EDX_MCE
875 | X86_CPUID_FEATURE_EDX_CX8
876 //| X86_CPUID_FEATURE_EDX_APIC - set by the APIC device if present.
877 /* Note! we don't report sysenter/sysexit support due to our inability to keep the IOPL part of eflags in sync while in ring 1 (see @bugref{1757}) */
878 //| X86_CPUID_FEATURE_EDX_SEP
879 | X86_CPUID_FEATURE_EDX_MTRR
880 | X86_CPUID_FEATURE_EDX_PGE
881 | X86_CPUID_FEATURE_EDX_MCA
882 | X86_CPUID_FEATURE_EDX_CMOV
883 | X86_CPUID_FEATURE_EDX_PAT
884 | X86_CPUID_FEATURE_EDX_PSE36
885 //| X86_CPUID_FEATURE_EDX_PSN - no serial number.
886 | X86_CPUID_FEATURE_EDX_CLFSH
887 //| X86_CPUID_FEATURE_EDX_DS - no debug store.
888 //| X86_CPUID_FEATURE_EDX_ACPI - not virtualized yet.
889 | X86_CPUID_FEATURE_EDX_MMX
890 | X86_CPUID_FEATURE_EDX_FXSR
891 | X86_CPUID_FEATURE_EDX_SSE
892 | X86_CPUID_FEATURE_EDX_SSE2
893 //| X86_CPUID_FEATURE_EDX_SS - no self snoop.
894 //| X86_CPUID_FEATURE_EDX_HTT - no hyperthreading.
895 //| X86_CPUID_FEATURE_EDX_TM - no thermal monitor.
896 //| X86_CPUID_FEATURE_EDX_PBE - no pending break enabled.
897 | 0;
898 pCPUM->aGuestCpuIdStd[1].ecx &= 0
899 | X86_CPUID_FEATURE_ECX_SSE3
900 /* Can't properly emulate monitor & mwait with guest SMP; force the guest to use hlt for idling VCPUs. */
901 | ((fMonitor && pVM->cCpus == 1) ? X86_CPUID_FEATURE_ECX_MONITOR : 0)
902 //| X86_CPUID_FEATURE_ECX_CPLDS - no CPL qualified debug store.
903 //| X86_CPUID_FEATURE_ECX_VMX - not virtualized.
904 //| X86_CPUID_FEATURE_ECX_EST - no extended speed step.
905 //| X86_CPUID_FEATURE_ECX_TM2 - no thermal monitor 2.
906 | X86_CPUID_FEATURE_ECX_SSSE3
907 //| X86_CPUID_FEATURE_ECX_CNTXID - no L1 context id (MSR++).
908 | (fCmpXchg16b ? X86_CPUID_FEATURE_ECX_CX16 : 0)
909 /* ECX Bit 14 - xTPR Update Control. Processor supports changing IA32_MISC_ENABLES[bit 23]. */
910 //| X86_CPUID_FEATURE_ECX_TPRUPDATE
911 /* ECX Bit 21 - x2APIC support - not yet. */
912 // | X86_CPUID_FEATURE_ECX_X2APIC
913 /* ECX Bit 23 - POPCNT instruction. */
914 //| X86_CPUID_FEATURE_ECX_POPCNT
915 | 0;
916 if (pCPUM->u8PortableCpuIdLevel > 0)
917 {
918 PORTABLE_CLEAR_BITS_WHEN(1, Std[1].eax, ProcessorType, (UINT32_C(3) << 12), (UINT32_C(2) << 12));
919 PORTABLE_DISABLE_FEATURE_BIT(1, Std[1].ecx, SSSE3, X86_CPUID_FEATURE_ECX_SSSE3);
920 PORTABLE_DISABLE_FEATURE_BIT(1, Std[1].ecx, SSE3, X86_CPUID_FEATURE_ECX_SSE3);
921 PORTABLE_DISABLE_FEATURE_BIT(1, Std[1].ecx, CX16, X86_CPUID_FEATURE_ECX_CX16);
922 PORTABLE_DISABLE_FEATURE_BIT(2, Std[1].edx, SSE2, X86_CPUID_FEATURE_EDX_SSE2);
923 PORTABLE_DISABLE_FEATURE_BIT(3, Std[1].edx, SSE, X86_CPUID_FEATURE_EDX_SSE);
924 PORTABLE_DISABLE_FEATURE_BIT(3, Std[1].edx, CLFSH, X86_CPUID_FEATURE_EDX_CLFSH);
925 PORTABLE_DISABLE_FEATURE_BIT(3, Std[1].edx, CMOV, X86_CPUID_FEATURE_EDX_CMOV);
926
927 Assert(!(pCPUM->aGuestCpuIdStd[1].edx & ( X86_CPUID_FEATURE_EDX_SEP
928 | X86_CPUID_FEATURE_EDX_PSN
929 | X86_CPUID_FEATURE_EDX_DS
930 | X86_CPUID_FEATURE_EDX_ACPI
931 | X86_CPUID_FEATURE_EDX_SS
932 | X86_CPUID_FEATURE_EDX_TM
933 | X86_CPUID_FEATURE_EDX_PBE
934 )));
935 Assert(!(pCPUM->aGuestCpuIdStd[1].ecx & ( X86_CPUID_FEATURE_ECX_PCLMUL
936 | X86_CPUID_FEATURE_ECX_DTES64
937 | X86_CPUID_FEATURE_ECX_CPLDS
938 | X86_CPUID_FEATURE_ECX_VMX
939 | X86_CPUID_FEATURE_ECX_SMX
940 | X86_CPUID_FEATURE_ECX_EST
941 | X86_CPUID_FEATURE_ECX_TM2
942 | X86_CPUID_FEATURE_ECX_CNTXID
943 | X86_CPUID_FEATURE_ECX_FMA
944 | X86_CPUID_FEATURE_ECX_CX16
945 | X86_CPUID_FEATURE_ECX_TPRUPDATE
946 | X86_CPUID_FEATURE_ECX_PDCM
947 | X86_CPUID_FEATURE_ECX_DCA
948 | X86_CPUID_FEATURE_ECX_MOVBE
949 | X86_CPUID_FEATURE_ECX_AES
950 | X86_CPUID_FEATURE_ECX_POPCNT
951 | X86_CPUID_FEATURE_ECX_XSAVE
952 | X86_CPUID_FEATURE_ECX_OSXSAVE
953 | X86_CPUID_FEATURE_ECX_AVX
954 )));
955 }
956
957 /* Cpuid 0x80000001:
958 * Only report features we can support.
959 *
960 * Note! When enabling new features the Synthetic CPU and Portable CPUID
961 * options may require adjusting (i.e. stripping what was enabled).
962 *
963 * ASSUMES that this is ALWAYS the AMD defined feature set if present.
964 */
965 pCPUM->aGuestCpuIdExt[1].edx &= X86_CPUID_AMD_FEATURE_EDX_FPU
966 | X86_CPUID_AMD_FEATURE_EDX_VME
967 | X86_CPUID_AMD_FEATURE_EDX_DE
968 | X86_CPUID_AMD_FEATURE_EDX_PSE
969 | X86_CPUID_AMD_FEATURE_EDX_TSC
970 | X86_CPUID_AMD_FEATURE_EDX_MSR //?? this means AMD MSRs..
971 //| X86_CPUID_AMD_FEATURE_EDX_PAE - not implemented yet.
972 //| X86_CPUID_AMD_FEATURE_EDX_MCE - not virtualized yet.
973 | X86_CPUID_AMD_FEATURE_EDX_CX8
974 //| X86_CPUID_AMD_FEATURE_EDX_APIC - set by the APIC device if present.
975 /* Note! we don't report sysenter/sysexit support due to our inability to keep the IOPL part of eflags in sync while in ring 1 (see @bugref{1757}) */
976 //| X86_CPUID_EXT_FEATURE_EDX_SEP
977 | X86_CPUID_AMD_FEATURE_EDX_MTRR
978 | X86_CPUID_AMD_FEATURE_EDX_PGE
979 | X86_CPUID_AMD_FEATURE_EDX_MCA
980 | X86_CPUID_AMD_FEATURE_EDX_CMOV
981 | X86_CPUID_AMD_FEATURE_EDX_PAT
982 | X86_CPUID_AMD_FEATURE_EDX_PSE36
983 //| X86_CPUID_EXT_FEATURE_EDX_NX - not virtualized, requires PAE.
984 //| X86_CPUID_AMD_FEATURE_EDX_AXMMX
985 | X86_CPUID_AMD_FEATURE_EDX_MMX
986 | X86_CPUID_AMD_FEATURE_EDX_FXSR
987 | X86_CPUID_AMD_FEATURE_EDX_FFXSR
988 //| X86_CPUID_EXT_FEATURE_EDX_PAGE1GB
989 | X86_CPUID_EXT_FEATURE_EDX_RDTSCP
990 //| X86_CPUID_EXT_FEATURE_EDX_LONG_MODE - turned on when necessary
991 | X86_CPUID_AMD_FEATURE_EDX_3DNOW_EX
992 | X86_CPUID_AMD_FEATURE_EDX_3DNOW
993 | 0;
994 pCPUM->aGuestCpuIdExt[1].ecx &= 0
995 //| X86_CPUID_EXT_FEATURE_ECX_LAHF_SAHF
996 //| X86_CPUID_AMD_FEATURE_ECX_CMPL
997 //| X86_CPUID_AMD_FEATURE_ECX_SVM - not virtualized.
998 //| X86_CPUID_AMD_FEATURE_ECX_EXT_APIC
999 /* Note: This could prevent teleporting from AMD to Intel CPUs! */
1000 | X86_CPUID_AMD_FEATURE_ECX_CR8L /* expose lock mov cr0 = mov cr8 hack for guests that can use this feature to access the TPR. */
1001 //| X86_CPUID_AMD_FEATURE_ECX_ABM
1002 //| X86_CPUID_AMD_FEATURE_ECX_SSE4A
1003 //| X86_CPUID_AMD_FEATURE_ECX_MISALNSSE
1004 //| X86_CPUID_AMD_FEATURE_ECX_3DNOWPRF
1005 //| X86_CPUID_AMD_FEATURE_ECX_OSVW
1006 //| X86_CPUID_AMD_FEATURE_ECX_IBS
1007 //| X86_CPUID_AMD_FEATURE_ECX_SSE5
1008 //| X86_CPUID_AMD_FEATURE_ECX_SKINIT
1009 //| X86_CPUID_AMD_FEATURE_ECX_WDT
1010 | 0;
1011 if (pCPUM->u8PortableCpuIdLevel > 0)
1012 {
1013 PORTABLE_DISABLE_FEATURE_BIT(1, Ext[1].ecx, CR8L, X86_CPUID_AMD_FEATURE_ECX_CR8L);
1014 PORTABLE_DISABLE_FEATURE_BIT(1, Ext[1].edx, 3DNOW, X86_CPUID_AMD_FEATURE_EDX_3DNOW);
1015 PORTABLE_DISABLE_FEATURE_BIT(1, Ext[1].edx, 3DNOW_EX, X86_CPUID_AMD_FEATURE_EDX_3DNOW_EX);
1016 PORTABLE_DISABLE_FEATURE_BIT(1, Ext[1].edx, FFXSR, X86_CPUID_AMD_FEATURE_EDX_FFXSR);
1017 PORTABLE_DISABLE_FEATURE_BIT(1, Ext[1].edx, RDTSCP, X86_CPUID_EXT_FEATURE_EDX_RDTSCP);
1018 PORTABLE_DISABLE_FEATURE_BIT(2, Ext[1].ecx, LAHF_SAHF, X86_CPUID_EXT_FEATURE_ECX_LAHF_SAHF);
1019 PORTABLE_DISABLE_FEATURE_BIT(3, Ext[1].ecx, CMOV, X86_CPUID_AMD_FEATURE_EDX_CMOV);
1020
1021 Assert(!(pCPUM->aGuestCpuIdExt[1].ecx & ( X86_CPUID_AMD_FEATURE_ECX_CMPL
1022 | X86_CPUID_AMD_FEATURE_ECX_SVM
1023 | X86_CPUID_AMD_FEATURE_ECX_EXT_APIC
1024 | X86_CPUID_AMD_FEATURE_ECX_CR8L
1025 | X86_CPUID_AMD_FEATURE_ECX_ABM
1026 | X86_CPUID_AMD_FEATURE_ECX_SSE4A
1027 | X86_CPUID_AMD_FEATURE_ECX_MISALNSSE
1028 | X86_CPUID_AMD_FEATURE_ECX_3DNOWPRF
1029 | X86_CPUID_AMD_FEATURE_ECX_OSVW
1030 | X86_CPUID_AMD_FEATURE_ECX_IBS
1031 | X86_CPUID_AMD_FEATURE_ECX_SSE5
1032 | X86_CPUID_AMD_FEATURE_ECX_SKINIT
1033 | X86_CPUID_AMD_FEATURE_ECX_WDT
1034 | UINT32_C(0xffffc000)
1035 )));
1036 Assert(!(pCPUM->aGuestCpuIdExt[1].edx & ( RT_BIT(10)
1037 | X86_CPUID_EXT_FEATURE_EDX_SYSCALL
1038 | RT_BIT(18)
1039 | RT_BIT(19)
1040 | RT_BIT(21)
1041 | X86_CPUID_AMD_FEATURE_EDX_AXMMX
1042 | X86_CPUID_EXT_FEATURE_EDX_PAGE1GB
1043 | RT_BIT(28)
1044 )));
1045 }
1046
1047 /*
1048 * Apply the Synthetic CPU modifications. (TODO: move this up)
1049 */
1050 if (pCPUM->fSyntheticCpu)
1051 {
1052 static const char s_szVendor[13] = "VirtualBox ";
1053 static const char s_szProcessor[48] = "VirtualBox SPARCx86 Processor v1000 "; /* includes null terminator */
1054
1055 pCPUM->enmGuestCpuVendor = CPUMCPUVENDOR_SYNTHETIC;
1056
1057 /* Limit the nr of standard leaves; 5 for monitor/mwait */
1058 pCPUM->aGuestCpuIdStd[0].eax = RT_MIN(pCPUM->aGuestCpuIdStd[0].eax, 5);
1059
1060 /* 0: Vendor */
1061 pCPUM->aGuestCpuIdStd[0].ebx = pCPUM->aGuestCpuIdExt[0].ebx = ((uint32_t *)s_szVendor)[0];
1062 pCPUM->aGuestCpuIdStd[0].ecx = pCPUM->aGuestCpuIdExt[0].ecx = ((uint32_t *)s_szVendor)[2];
1063 pCPUM->aGuestCpuIdStd[0].edx = pCPUM->aGuestCpuIdExt[0].edx = ((uint32_t *)s_szVendor)[1];
1064
1065 /* 1.eax: Version information. family : model : stepping */
1066 pCPUM->aGuestCpuIdStd[1].eax = (0xf << 8) + (0x1 << 4) + 1;
1067
1068 /* Leaves 2 - 4 are Intel only - zero them out */
1069 memset(&pCPUM->aGuestCpuIdStd[2], 0, sizeof(pCPUM->aGuestCpuIdStd[2]));
1070 memset(&pCPUM->aGuestCpuIdStd[3], 0, sizeof(pCPUM->aGuestCpuIdStd[3]));
1071 memset(&pCPUM->aGuestCpuIdStd[4], 0, sizeof(pCPUM->aGuestCpuIdStd[4]));
1072
1073 /* Leaf 5 = monitor/mwait */
1074
1075 /* Limit the nr of extended leaves: 0x80000008 to include the max virtual and physical address size (64 bits guests). */
1076 pCPUM->aGuestCpuIdExt[0].eax = RT_MIN(pCPUM->aGuestCpuIdExt[0].eax, 0x80000008);
1077 /* AMD only - set to zero. */
1078 pCPUM->aGuestCpuIdExt[0].ebx = pCPUM->aGuestCpuIdExt[0].ecx = pCPUM->aGuestCpuIdExt[0].edx = 0;
1079
1080 /* 0x800000001: shared feature bits are set dynamically. */
1081 memset(&pCPUM->aGuestCpuIdExt[1], 0, sizeof(pCPUM->aGuestCpuIdExt[1]));
1082
1083 /* 0x800000002-4: Processor Name String Identifier. */
1084 pCPUM->aGuestCpuIdExt[2].eax = ((uint32_t *)s_szProcessor)[0];
1085 pCPUM->aGuestCpuIdExt[2].ebx = ((uint32_t *)s_szProcessor)[1];
1086 pCPUM->aGuestCpuIdExt[2].ecx = ((uint32_t *)s_szProcessor)[2];
1087 pCPUM->aGuestCpuIdExt[2].edx = ((uint32_t *)s_szProcessor)[3];
1088 pCPUM->aGuestCpuIdExt[3].eax = ((uint32_t *)s_szProcessor)[4];
1089 pCPUM->aGuestCpuIdExt[3].ebx = ((uint32_t *)s_szProcessor)[5];
1090 pCPUM->aGuestCpuIdExt[3].ecx = ((uint32_t *)s_szProcessor)[6];
1091 pCPUM->aGuestCpuIdExt[3].edx = ((uint32_t *)s_szProcessor)[7];
1092 pCPUM->aGuestCpuIdExt[4].eax = ((uint32_t *)s_szProcessor)[8];
1093 pCPUM->aGuestCpuIdExt[4].ebx = ((uint32_t *)s_szProcessor)[9];
1094 pCPUM->aGuestCpuIdExt[4].ecx = ((uint32_t *)s_szProcessor)[10];
1095 pCPUM->aGuestCpuIdExt[4].edx = ((uint32_t *)s_szProcessor)[11];
1096
1097 /* 0x800000005-7 - reserved -> zero */
1098 memset(&pCPUM->aGuestCpuIdExt[5], 0, sizeof(pCPUM->aGuestCpuIdExt[5]));
1099 memset(&pCPUM->aGuestCpuIdExt[6], 0, sizeof(pCPUM->aGuestCpuIdExt[6]));
1100 memset(&pCPUM->aGuestCpuIdExt[7], 0, sizeof(pCPUM->aGuestCpuIdExt[7]));
1101
1102 /* 0x800000008: only the max virtual and physical address size. */
1103 pCPUM->aGuestCpuIdExt[8].ecx = pCPUM->aGuestCpuIdExt[8].ebx = pCPUM->aGuestCpuIdExt[8].edx = 0; /* reserved */
1104 }
1105
1106 /*
1107 * Hide HTT, multicode, SMP, whatever.
1108 * (APIC-ID := 0 and #LogCpus := 0)
1109 */
1110 pCPUM->aGuestCpuIdStd[1].ebx &= 0x0000ffff;
1111#ifdef VBOX_WITH_MULTI_CORE
1112 if ( pCPUM->enmGuestCpuVendor != CPUMCPUVENDOR_SYNTHETIC
1113 && pVM->cCpus > 1)
1114 {
1115 /* If CPUID Fn0000_0001_EDX[HTT] = 1 then LogicalProcessorCount is the number of threads per CPU core times the number of CPU cores per processor */
1116 pCPUM->aGuestCpuIdStd[1].ebx |= (pVM->cCpus << 16);
1117 pCPUM->aGuestCpuIdStd[1].edx |= X86_CPUID_FEATURE_EDX_HTT; /* necessary for hyper-threading *or* multi-core CPUs */
1118 }
1119#endif
1120
1121 /* Cpuid 2:
1122 * Intel: Cache and TLB information
1123 * AMD: Reserved
1124 * VIA: Reserved
1125 * Safe to expose; restrict the number of calls to 1 for the portable case.
1126 */
1127 if ( pCPUM->u8PortableCpuIdLevel > 0
1128 && pCPUM->aGuestCpuIdStd[0].eax >= 2
1129 && (pCPUM->aGuestCpuIdStd[2].eax & 0xff) > 1)
1130 {
1131 LogRel(("PortableCpuId: Std[2].al: %d -> 1\n", pCPUM->aGuestCpuIdStd[2].eax & 0xff));
1132 pCPUM->aGuestCpuIdStd[2].eax &= UINT32_C(0xfffffffe);
1133 }
1134
1135 /* Cpuid 3:
1136 * Intel: EAX, EBX - reserved (transmeta uses these)
1137 * ECX, EDX - Processor Serial Number if available, otherwise reserved
1138 * AMD: Reserved
1139 * VIA: Reserved
1140 * Safe to expose
1141 */
1142 if (!(pCPUM->aGuestCpuIdStd[1].edx & X86_CPUID_FEATURE_EDX_PSN))
1143 {
1144 pCPUM->aGuestCpuIdStd[3].ecx = pCPUM->aGuestCpuIdStd[3].edx = 0;
1145 if (pCPUM->u8PortableCpuIdLevel > 0)
1146 pCPUM->aGuestCpuIdStd[3].eax = pCPUM->aGuestCpuIdStd[3].ebx = 0;
1147 }
1148
1149 /* Cpuid 4:
1150 * Intel: Deterministic Cache Parameters Leaf
1151 * Note: Depends on the ECX input! -> Feeling rather lazy now, so we just return 0
1152 * AMD: Reserved
1153 * VIA: Reserved
1154 * Safe to expose, except for EAX:
1155 * Bits 25-14: Maximum number of addressable IDs for logical processors sharing this cache (see note)**
1156 * Bits 31-26: Maximum number of processor cores in this physical package**
1157 * Note: These SMP values are constant regardless of ECX
1158 */
1159 pCPUM->aGuestCpuIdStd[4].ecx = pCPUM->aGuestCpuIdStd[4].edx = 0;
1160 pCPUM->aGuestCpuIdStd[4].eax = pCPUM->aGuestCpuIdStd[4].ebx = 0;
1161#ifdef VBOX_WITH_MULTI_CORE
1162 if ( pVM->cCpus > 1
1163 && pVM->cpum.s.enmGuestCpuVendor == CPUMCPUVENDOR_INTEL)
1164 {
1165 AssertReturn(pVM->cCpus <= 64, VERR_TOO_MANY_CPUS);
1166 /* One logical processor with possibly multiple cores. */
1167 /* See http://www.intel.com/Assets/PDF/appnote/241618.pdf p. 29 */
1168 pCPUM->aGuestCpuIdStd[4].eax |= ((pVM->cCpus - 1) << 26); /* 6 bits only -> 64 cores! */
1169 }
1170#endif
1171
1172 /* Cpuid 5: Monitor/mwait Leaf
1173 * Intel: ECX, EDX - reserved
1174 * EAX, EBX - Smallest and largest monitor line size
1175 * AMD: EDX - reserved
1176 * EAX, EBX - Smallest and largest monitor line size
1177 * ECX - extensions (ignored for now)
1178 * VIA: Reserved
1179 * Safe to expose
1180 */
1181 if (!(pCPUM->aGuestCpuIdStd[1].ecx & X86_CPUID_FEATURE_ECX_MONITOR))
1182 pCPUM->aGuestCpuIdStd[5].eax = pCPUM->aGuestCpuIdStd[5].ebx = 0;
1183
1184 pCPUM->aGuestCpuIdStd[5].ecx = pCPUM->aGuestCpuIdStd[5].edx = 0;
1185 /** @cfgm{/CPUM/MWaitExtensions, boolean, false}
1186 * Expose MWAIT extended features to the guest. For now we expose
1187 * just MWAIT break on interrupt feature (bit 1).
1188 */
1189 bool fMWaitExtensions;
1190 rc = CFGMR3QueryBoolDef(pCpumCfg, "MWaitExtensions", &fMWaitExtensions, false); AssertRCReturn(rc, rc);
1191 if (fMWaitExtensions)
1192 {
1193 pCPUM->aGuestCpuIdStd[5].ecx = X86_CPUID_MWAIT_ECX_EXT | X86_CPUID_MWAIT_ECX_BREAKIRQIF0;
1194 /* @todo: for now we just expose host's MWAIT C-states, although conceptually
1195 it shall be part of our power management virtualization model */
1196#if 0
1197 /* MWAIT sub C-states */
1198 pCPUM->aGuestCpuIdStd[5].edx =
1199 (0 << 0) /* 0 in C0 */ |
1200 (2 << 4) /* 2 in C1 */ |
1201 (2 << 8) /* 2 in C2 */ |
1202 (2 << 12) /* 2 in C3 */ |
1203 (0 << 16) /* 0 in C4 */
1204 ;
1205#endif
1206 }
1207 else
1208 pCPUM->aGuestCpuIdStd[5].ecx = pCPUM->aGuestCpuIdStd[5].edx = 0;
1209
1210 /* Cpuid 0x800000005 & 0x800000006 contain information about L1, L2 & L3 cache and TLB identifiers.
1211 * Safe to pass on to the guest.
1212 *
1213 * Intel: 0x800000005 reserved
1214 * 0x800000006 L2 cache information
1215 * AMD: 0x800000005 L1 cache information
1216 * 0x800000006 L2/L3 cache information
1217 * VIA: 0x800000005 TLB and L1 cache information
1218 * 0x800000006 L2 cache information
1219 */
1220
1221 /* Cpuid 0x800000007:
1222 * Intel: Reserved
1223 * AMD: EAX, EBX, ECX - reserved
1224 * EDX: Advanced Power Management Information
1225 * VIA: Reserved
1226 */
1227 if (pCPUM->aGuestCpuIdExt[0].eax >= UINT32_C(0x80000007))
1228 {
1229 Assert(pVM->cpum.s.enmGuestCpuVendor != CPUMCPUVENDOR_INVALID);
1230
1231 pCPUM->aGuestCpuIdExt[7].eax = pCPUM->aGuestCpuIdExt[7].ebx = pCPUM->aGuestCpuIdExt[7].ecx = 0;
1232
1233 if (pVM->cpum.s.enmGuestCpuVendor == CPUMCPUVENDOR_AMD)
1234 {
1235 /* Only expose the TSC invariant capability bit to the guest. */
1236 pCPUM->aGuestCpuIdExt[7].edx &= 0
1237 //| X86_CPUID_AMD_ADVPOWER_EDX_TS
1238 //| X86_CPUID_AMD_ADVPOWER_EDX_FID
1239 //| X86_CPUID_AMD_ADVPOWER_EDX_VID
1240 //| X86_CPUID_AMD_ADVPOWER_EDX_TTP
1241 //| X86_CPUID_AMD_ADVPOWER_EDX_TM
1242 //| X86_CPUID_AMD_ADVPOWER_EDX_STC
1243 //| X86_CPUID_AMD_ADVPOWER_EDX_MC
1244 //| X86_CPUID_AMD_ADVPOWER_EDX_HWPSTATE
1245#if 0
1246 /*
1247 * We don't expose X86_CPUID_AMD_ADVPOWER_EDX_TSCINVAR, because newer
1248 * Linux kernels blindly assume that the AMD performance counters work
1249 * if this is set for 64 bits guests. (Can't really find a CPUID feature
1250 * bit for them though.)
1251 */
1252 | X86_CPUID_AMD_ADVPOWER_EDX_TSCINVAR
1253#endif
1254 | 0;
1255 }
1256 else
1257 pCPUM->aGuestCpuIdExt[7].edx = 0;
1258 }
1259
1260 /* Cpuid 0x800000008:
1261 * Intel: EAX: Virtual/Physical address Size
1262 * EBX, ECX, EDX - reserved
1263 * AMD: EBX, EDX - reserved
1264 * EAX: Virtual/Physical/Guest address Size
1265 * ECX: Number of cores + APICIdCoreIdSize
1266 * VIA: EAX: Virtual/Physical address Size
1267 * EBX, ECX, EDX - reserved
1268 */
1269 if (pCPUM->aGuestCpuIdExt[0].eax >= UINT32_C(0x80000008))
1270 {
1271 /* Only expose the virtual and physical address sizes to the guest. */
1272 pCPUM->aGuestCpuIdExt[8].eax &= UINT32_C(0x0000ffff);
1273 pCPUM->aGuestCpuIdExt[8].ebx = pCPUM->aGuestCpuIdExt[8].edx = 0; /* reserved */
1274 /* Set APICIdCoreIdSize to zero (use legacy method to determine the number of cores per cpu)
1275 * NC (0-7) Number of cores; 0 equals 1 core */
1276 pCPUM->aGuestCpuIdExt[8].ecx = 0;
1277#ifdef VBOX_WITH_MULTI_CORE
1278 if ( pVM->cCpus > 1
1279 && pVM->cpum.s.enmGuestCpuVendor == CPUMCPUVENDOR_AMD)
1280 {
1281 /* Legacy method to determine the number of cores. */
1282 pCPUM->aGuestCpuIdExt[1].ecx |= X86_CPUID_AMD_FEATURE_ECX_CMPL;
1283 pCPUM->aGuestCpuIdExt[8].ecx |= (pVM->cCpus - 1); /* NC: Number of CPU cores - 1; 8 bits */
1284 }
1285#endif
1286 }
1287
1288 /** @cfgm{/CPUM/NT4LeafLimit, boolean, false}
1289 * Limit the number of standard CPUID leaves to 0..3 to prevent NT4 from
1290 * bugchecking with MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED (0x3e).
1291 * This option corresponds somewhat to IA32_MISC_ENABLES.BOOT_NT4[bit 22].
1292 */
1293 bool fNt4LeafLimit;
1294 rc = CFGMR3QueryBoolDef(pCpumCfg, "NT4LeafLimit", &fNt4LeafLimit, false); AssertRCReturn(rc, rc);
1295 if (fNt4LeafLimit)
1296 pCPUM->aGuestCpuIdStd[0].eax = 3; /** @todo r=bird: shouldn't we check if pCPUM->aGuestCpuIdStd[0].eax > 3 before setting it 3 here? */
1297
1298 /*
1299 * Limit it the number of entries and fill the remaining with the defaults.
1300 *
1301 * The limits are masking off stuff about power saving and similar, this
1302 * is perhaps a bit crudely done as there is probably some relatively harmless
1303 * info too in these leaves (like words about having a constant TSC).
1304 */
1305 if (pCPUM->aGuestCpuIdStd[0].eax > 5)
1306 pCPUM->aGuestCpuIdStd[0].eax = 5;
1307 for (i = pCPUM->aGuestCpuIdStd[0].eax + 1; i < RT_ELEMENTS(pCPUM->aGuestCpuIdStd); i++)
1308 pCPUM->aGuestCpuIdStd[i] = pCPUM->GuestCpuIdDef;
1309
1310 if (pCPUM->aGuestCpuIdExt[0].eax > UINT32_C(0x80000008))
1311 pCPUM->aGuestCpuIdExt[0].eax = UINT32_C(0x80000008);
1312 for (i = pCPUM->aGuestCpuIdExt[0].eax >= UINT32_C(0x80000000)
1313 ? pCPUM->aGuestCpuIdExt[0].eax - UINT32_C(0x80000000) + 1
1314 : 0;
1315 i < RT_ELEMENTS(pCPUM->aGuestCpuIdExt);
1316 i++)
1317 pCPUM->aGuestCpuIdExt[i] = pCPUM->GuestCpuIdDef;
1318
1319 /*
1320 * Centaur stuff (VIA).
1321 *
1322 * The important part here (we think) is to make sure the 0xc0000000
1323 * function returns 0xc0000001. As for the features, we don't currently
1324 * let on about any of those... 0xc0000002 seems to be some
1325 * temperature/hz/++ stuff, include it as well (static).
1326 */
1327 if ( pCPUM->aGuestCpuIdCentaur[0].eax >= UINT32_C(0xc0000000)
1328 && pCPUM->aGuestCpuIdCentaur[0].eax <= UINT32_C(0xc0000004))
1329 {
1330 pCPUM->aGuestCpuIdCentaur[0].eax = RT_MIN(pCPUM->aGuestCpuIdCentaur[0].eax, UINT32_C(0xc0000002));
1331 pCPUM->aGuestCpuIdCentaur[1].edx = 0; /* all features hidden */
1332 for (i = pCPUM->aGuestCpuIdCentaur[0].eax - UINT32_C(0xc0000000);
1333 i < RT_ELEMENTS(pCPUM->aGuestCpuIdCentaur);
1334 i++)
1335 pCPUM->aGuestCpuIdCentaur[i] = pCPUM->GuestCpuIdDef;
1336 }
1337 else
1338 for (i = 0; i < RT_ELEMENTS(pCPUM->aGuestCpuIdCentaur); i++)
1339 pCPUM->aGuestCpuIdCentaur[i] = pCPUM->GuestCpuIdDef;
1340
1341 /*
1342 * Hypervisor identification.
1343 *
1344 * We only return minimal information, primarily ensuring that the
1345 * 0x40000000 function returns 0x40000001 and identifying ourselves.
1346 * Currently we do not support any hypervisor-specific interface.
1347 */
1348 pCPUM->aGuestCpuIdHyper[0].eax = UINT32_C(0x40000001);
1349 pCPUM->aGuestCpuIdHyper[0].ebx = pCPUM->aGuestCpuIdHyper[0].ecx
1350 = pCPUM->aGuestCpuIdHyper[0].edx = 0x786f4256; /* 'VBox' */
1351 pCPUM->aGuestCpuIdHyper[1].eax = 0x656e6f6e; /* 'none' */
1352 pCPUM->aGuestCpuIdHyper[1].ebx = pCPUM->aGuestCpuIdHyper[1].ecx
1353 = pCPUM->aGuestCpuIdHyper[1].edx = 0; /* Reserved */
1354
1355 /*
1356 * Load CPUID overrides from configuration.
1357 * Note: Kind of redundant now, but allows unchanged overrides
1358 */
1359 /** @cfgm{CPUM/CPUID/[000000xx|800000xx|c000000x]/[eax|ebx|ecx|edx],32-bit}
1360 * Overrides the CPUID leaf values. */
1361 PCFGMNODE pOverrideCfg = CFGMR3GetChild(pCpumCfg, "CPUID");
1362 rc = cpumR3CpuIdInitLoadOverrideSet(UINT32_C(0x00000000), &pCPUM->aGuestCpuIdStd[0], RT_ELEMENTS(pCPUM->aGuestCpuIdStd), pOverrideCfg);
1363 AssertRCReturn(rc, rc);
1364 rc = cpumR3CpuIdInitLoadOverrideSet(UINT32_C(0x80000000), &pCPUM->aGuestCpuIdExt[0], RT_ELEMENTS(pCPUM->aGuestCpuIdExt), pOverrideCfg);
1365 AssertRCReturn(rc, rc);
1366 rc = cpumR3CpuIdInitLoadOverrideSet(UINT32_C(0xc0000000), &pCPUM->aGuestCpuIdCentaur[0], RT_ELEMENTS(pCPUM->aGuestCpuIdCentaur), pOverrideCfg);
1367 AssertRCReturn(rc, rc);
1368
1369 /*
1370 * Check if PAE was explicitely enabled by the user.
1371 */
1372 bool fEnable;
1373 rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "EnablePAE", &fEnable, false); AssertRCReturn(rc, rc);
1374 if (fEnable)
1375 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE);
1376
1377 /*
1378 * We don't normally enable NX for raw-mode, so give the user a chance to
1379 * force it on.
1380 */
1381 rc = CFGMR3QueryBoolDef(pCpumCfg, "EnableNX", &fEnable, false); AssertRCReturn(rc, rc);
1382 if (fEnable)
1383 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_NX);
1384
1385 /*
1386 * We don't enable the Hypervisor Present bit by default, but it may
1387 * be needed by some guests.
1388 */
1389 rc = CFGMR3QueryBoolDef(pCpumCfg, "EnableHVP", &fEnable, false); AssertRCReturn(rc, rc);
1390 if (fEnable)
1391 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_HVP);
1392
1393#undef PORTABLE_DISABLE_FEATURE_BIT
1394#undef PORTABLE_CLEAR_BITS_WHEN
1395
1396 return VINF_SUCCESS;
1397}
1398
1399
1400/**
1401 * Applies relocations to data and code managed by this
1402 * component. This function will be called at init and
1403 * whenever the VMM need to relocate it self inside the GC.
1404 *
1405 * The CPUM will update the addresses used by the switcher.
1406 *
1407 * @param pVM The VM.
1408 */
1409VMMR3DECL(void) CPUMR3Relocate(PVM pVM)
1410{
1411 LogFlow(("CPUMR3Relocate\n"));
1412 /* nothing to do any more. */
1413}
1414
1415
1416/**
1417 * Apply late CPUM property changes based on the fHWVirtEx setting
1418 *
1419 * @param pVM Pointer to the VM.
1420 * @param fHWVirtExEnabled HWVirtEx enabled/disabled
1421 */
1422VMMR3DECL(void) CPUMR3SetHWVirtEx(PVM pVM, bool fHWVirtExEnabled)
1423{
1424 /*
1425 * Workaround for missing cpuid(0) patches when leaf 4 returns GuestCpuIdDef:
1426 * If we miss to patch a cpuid(0).eax then Linux tries to determine the number
1427 * of processors from (cpuid(4).eax >> 26) + 1.
1428 *
1429 * Note: this code is obsolete, but let's keep it here for reference.
1430 * Purpose is valid when we artificially cap the max std id to less than 4.
1431 */
1432 if (!fHWVirtExEnabled)
1433 {
1434 Assert( pVM->cpum.s.aGuestCpuIdStd[4].eax == 0
1435 || pVM->cpum.s.aGuestCpuIdStd[0].eax < 0x4);
1436 pVM->cpum.s.aGuestCpuIdStd[4].eax = 0;
1437 }
1438}
1439
1440/**
1441 * Terminates the CPUM.
1442 *
1443 * Termination means cleaning up and freeing all resources,
1444 * the VM it self is at this point powered off or suspended.
1445 *
1446 * @returns VBox status code.
1447 * @param pVM Pointer to the VM.
1448 */
1449VMMR3DECL(int) CPUMR3Term(PVM pVM)
1450{
1451#ifdef VBOX_WITH_CRASHDUMP_MAGIC
1452 for (VMCPUID i = 0; i < pVM->cCpus; i++)
1453 {
1454 PVMCPU pVCpu = &pVM->aCpus[i];
1455 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu);
1456
1457 memset(pVCpu->cpum.s.aMagic, 0, sizeof(pVCpu->cpum.s.aMagic));
1458 pVCpu->cpum.s.uMagic = 0;
1459 pCtx->dr[5] = 0;
1460 }
1461#else
1462 NOREF(pVM);
1463#endif
1464 return VINF_SUCCESS;
1465}
1466
1467
1468/**
1469 * Resets a virtual CPU.
1470 *
1471 * Used by CPUMR3Reset and CPU hot plugging.
1472 *
1473 * @param pVCpu Pointer to the VMCPU.
1474 */
1475VMMR3DECL(void) CPUMR3ResetCpu(PVMCPU pVCpu)
1476{
1477 /** @todo anything different for VCPU > 0? */
1478 PCPUMCTX pCtx = &pVCpu->cpum.s.Guest;
1479
1480 /*
1481 * Initialize everything to ZERO first.
1482 */
1483 uint32_t fUseFlags = pVCpu->cpum.s.fUseFlags & ~CPUM_USED_FPU_SINCE_REM;
1484 memset(pCtx, 0, sizeof(*pCtx));
1485 pVCpu->cpum.s.fUseFlags = fUseFlags;
1486
1487 pCtx->cr0 = X86_CR0_CD | X86_CR0_NW | X86_CR0_ET; //0x60000010
1488 pCtx->eip = 0x0000fff0;
1489 pCtx->edx = 0x00000600; /* P6 processor */
1490 pCtx->eflags.Bits.u1Reserved0 = 1;
1491
1492 pCtx->cs.Sel = 0xf000;
1493 pCtx->cs.ValidSel = 0xf000;
1494 pCtx->cs.fFlags = CPUMSELREG_FLAGS_VALID;
1495 pCtx->cs.u64Base = UINT64_C(0xffff0000);
1496 pCtx->cs.u32Limit = 0x0000ffff;
1497 pCtx->cs.Attr.n.u1DescType = 1; /* code/data segment */
1498 pCtx->cs.Attr.n.u1Present = 1;
1499 pCtx->cs.Attr.n.u4Type = X86_SEL_TYPE_ER_ACC;
1500
1501 pCtx->ds.fFlags = CPUMSELREG_FLAGS_VALID;
1502 pCtx->ds.u32Limit = 0x0000ffff;
1503 pCtx->ds.Attr.n.u1DescType = 1; /* code/data segment */
1504 pCtx->ds.Attr.n.u1Present = 1;
1505 pCtx->ds.Attr.n.u4Type = X86_SEL_TYPE_RW_ACC;
1506
1507 pCtx->es.fFlags = CPUMSELREG_FLAGS_VALID;
1508 pCtx->es.u32Limit = 0x0000ffff;
1509 pCtx->es.Attr.n.u1DescType = 1; /* code/data segment */
1510 pCtx->es.Attr.n.u1Present = 1;
1511 pCtx->es.Attr.n.u4Type = X86_SEL_TYPE_RW_ACC;
1512
1513 pCtx->fs.fFlags = CPUMSELREG_FLAGS_VALID;
1514 pCtx->fs.u32Limit = 0x0000ffff;
1515 pCtx->fs.Attr.n.u1DescType = 1; /* code/data segment */
1516 pCtx->fs.Attr.n.u1Present = 1;
1517 pCtx->fs.Attr.n.u4Type = X86_SEL_TYPE_RW_ACC;
1518
1519 pCtx->gs.fFlags = CPUMSELREG_FLAGS_VALID;
1520 pCtx->gs.u32Limit = 0x0000ffff;
1521 pCtx->gs.Attr.n.u1DescType = 1; /* code/data segment */
1522 pCtx->gs.Attr.n.u1Present = 1;
1523 pCtx->gs.Attr.n.u4Type = X86_SEL_TYPE_RW_ACC;
1524
1525 pCtx->ss.fFlags = CPUMSELREG_FLAGS_VALID;
1526 pCtx->ss.u32Limit = 0x0000ffff;
1527 pCtx->ss.Attr.n.u1Present = 1;
1528 pCtx->ss.Attr.n.u1DescType = 1; /* code/data segment */
1529 pCtx->ss.Attr.n.u4Type = X86_SEL_TYPE_RW_ACC;
1530
1531 pCtx->idtr.cbIdt = 0xffff;
1532 pCtx->gdtr.cbGdt = 0xffff;
1533
1534 pCtx->ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
1535 pCtx->ldtr.u32Limit = 0xffff;
1536 pCtx->ldtr.Attr.n.u1Present = 1;
1537 pCtx->ldtr.Attr.n.u4Type = X86_SEL_TYPE_SYS_LDT;
1538
1539 pCtx->tr.fFlags = CPUMSELREG_FLAGS_VALID;
1540 pCtx->tr.u32Limit = 0xffff;
1541 pCtx->tr.Attr.n.u1Present = 1;
1542 pCtx->tr.Attr.n.u4Type = X86_SEL_TYPE_SYS_386_TSS_BUSY; /* Deduction, not properly documented by Intel. */
1543
1544 pCtx->dr[6] = X86_DR6_INIT_VAL;
1545 pCtx->dr[7] = X86_DR7_INIT_VAL;
1546
1547 pCtx->fpu.FTW = 0x00; /* All empty (abbridged tag reg edition). */
1548 pCtx->fpu.FCW = 0x37f;
1549
1550 /* Intel 64 and IA-32 Architectures Software Developer's Manual Volume 3A, Table 8-1.
1551 IA-32 Processor States Following Power-up, Reset, or INIT */
1552 pCtx->fpu.MXCSR = 0x1F80;
1553 pCtx->fpu.MXCSR_MASK = 0xffff; /** @todo REM always changed this for us. Should probably check if the HW really
1554 supports all bits, since a zero value here should be read as 0xffbf. */
1555
1556 /* Init PAT MSR */
1557 pCtx->msrPAT = UINT64_C(0x0007040600070406); /** @todo correct? */
1558
1559 /* Reset EFER; see AMD64 Architecture Programmer's Manual Volume 2: Table 14-1. Initial Processor State
1560 * The Intel docs don't mention it.
1561 */
1562 pCtx->msrEFER = 0;
1563
1564 /*
1565 * Get the APIC base MSR from the APIC device. For historical reasons (saved state), the APIC base
1566 * continues to reside in the APIC device and we cache it here in the VCPU for all further accesses.
1567 */
1568 PDMApicGetBase(pVCpu, &pCtx->msrApicBase);
1569}
1570
1571
1572/**
1573 * Resets the CPU.
1574 *
1575 * @returns VINF_SUCCESS.
1576 * @param pVM Pointer to the VM.
1577 */
1578VMMR3DECL(void) CPUMR3Reset(PVM pVM)
1579{
1580 for (VMCPUID i = 0; i < pVM->cCpus; i++)
1581 {
1582 CPUMR3ResetCpu(&pVM->aCpus[i]);
1583
1584#ifdef VBOX_WITH_CRASHDUMP_MAGIC
1585 PCPUMCTX pCtx = &pVM->aCpus[i].cpum.s.Guest;
1586
1587 /* Magic marker for searching in crash dumps. */
1588 strcpy((char *)pVM->aCpus[i].cpum.s.aMagic, "CPUMCPU Magic");
1589 pVM->aCpus[i].cpum.s.uMagic = UINT64_C(0xDEADBEEFDEADBEEF);
1590 pCtx->dr[5] = UINT64_C(0xDEADBEEFDEADBEEF);
1591#endif
1592 }
1593}
1594
1595
1596/**
1597 * Called both in pass 0 and the final pass.
1598 *
1599 * @param pVM Pointer to the VM.
1600 * @param pSSM The saved state handle.
1601 */
1602static void cpumR3SaveCpuId(PVM pVM, PSSMHANDLE pSSM)
1603{
1604 /*
1605 * Save all the CPU ID leaves here so we can check them for compatibility
1606 * upon loading.
1607 */
1608 SSMR3PutU32(pSSM, RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdStd));
1609 SSMR3PutMem(pSSM, &pVM->cpum.s.aGuestCpuIdStd[0], sizeof(pVM->cpum.s.aGuestCpuIdStd));
1610
1611 SSMR3PutU32(pSSM, RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdExt));
1612 SSMR3PutMem(pSSM, &pVM->cpum.s.aGuestCpuIdExt[0], sizeof(pVM->cpum.s.aGuestCpuIdExt));
1613
1614 SSMR3PutU32(pSSM, RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdCentaur));
1615 SSMR3PutMem(pSSM, &pVM->cpum.s.aGuestCpuIdCentaur[0], sizeof(pVM->cpum.s.aGuestCpuIdCentaur));
1616
1617 SSMR3PutMem(pSSM, &pVM->cpum.s.GuestCpuIdDef, sizeof(pVM->cpum.s.GuestCpuIdDef));
1618
1619 /*
1620 * Save a good portion of the raw CPU IDs as well as they may come in
1621 * handy when validating features for raw mode.
1622 */
1623 CPUMCPUID aRawStd[16];
1624 for (unsigned i = 0; i < RT_ELEMENTS(aRawStd); i++)
1625 ASMCpuId(i, &aRawStd[i].eax, &aRawStd[i].ebx, &aRawStd[i].ecx, &aRawStd[i].edx);
1626 SSMR3PutU32(pSSM, RT_ELEMENTS(aRawStd));
1627 SSMR3PutMem(pSSM, &aRawStd[0], sizeof(aRawStd));
1628
1629 CPUMCPUID aRawExt[32];
1630 for (unsigned i = 0; i < RT_ELEMENTS(aRawExt); i++)
1631 ASMCpuId(i | UINT32_C(0x80000000), &aRawExt[i].eax, &aRawExt[i].ebx, &aRawExt[i].ecx, &aRawExt[i].edx);
1632 SSMR3PutU32(pSSM, RT_ELEMENTS(aRawExt));
1633 SSMR3PutMem(pSSM, &aRawExt[0], sizeof(aRawExt));
1634}
1635
1636
1637/**
1638 * Loads the CPU ID leaves saved by pass 0.
1639 *
1640 * @returns VBox status code.
1641 * @param pVM Pointer to the VM.
1642 * @param pSSM The saved state handle.
1643 * @param uVersion The format version.
1644 */
1645static int cpumR3LoadCpuId(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion)
1646{
1647 AssertMsgReturn(uVersion >= CPUM_SAVED_STATE_VERSION_VER3_2, ("%u\n", uVersion), VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION);
1648
1649 /*
1650 * Define a bunch of macros for simplifying the code.
1651 */
1652 /* Generic expression + failure message. */
1653#define CPUID_CHECK_RET(expr, fmt) \
1654 do { \
1655 if (!(expr)) \
1656 { \
1657 char *pszMsg = RTStrAPrintf2 fmt; /* lack of variadic macros sucks */ \
1658 if (fStrictCpuIdChecks) \
1659 { \
1660 int rcCpuid = SSMR3SetLoadError(pSSM, VERR_SSM_LOAD_CPUID_MISMATCH, RT_SRC_POS, "%s", pszMsg); \
1661 RTStrFree(pszMsg); \
1662 return rcCpuid; \
1663 } \
1664 LogRel(("CPUM: %s\n", pszMsg)); \
1665 RTStrFree(pszMsg); \
1666 } \
1667 } while (0)
1668#define CPUID_CHECK_WRN(expr, fmt) \
1669 do { \
1670 if (!(expr)) \
1671 LogRel(fmt); \
1672 } while (0)
1673
1674 /* For comparing two values and bitch if they differs. */
1675#define CPUID_CHECK2_RET(what, host, saved) \
1676 do { \
1677 if ((host) != (saved)) \
1678 { \
1679 if (fStrictCpuIdChecks) \
1680 return SSMR3SetLoadError(pSSM, VERR_SSM_LOAD_CPUID_MISMATCH, RT_SRC_POS, \
1681 N_(#what " mismatch: host=%#x saved=%#x"), (host), (saved)); \
1682 LogRel(("CPUM: " #what " differs: host=%#x saved=%#x\n", (host), (saved))); \
1683 } \
1684 } while (0)
1685#define CPUID_CHECK2_WRN(what, host, saved) \
1686 do { \
1687 if ((host) != (saved)) \
1688 LogRel(("CPUM: " #what " differs: host=%#x saved=%#x\n", (host), (saved))); \
1689 } while (0)
1690
1691 /* For checking raw cpu features (raw mode). */
1692#define CPUID_RAW_FEATURE_RET(set, reg, bit) \
1693 do { \
1694 if ((aHostRaw##set [1].reg & bit) != (aRaw##set [1].reg & bit)) \
1695 { \
1696 if (fStrictCpuIdChecks) \
1697 return SSMR3SetLoadError(pSSM, VERR_SSM_LOAD_CPUID_MISMATCH, RT_SRC_POS, \
1698 N_(#bit " mismatch: host=%d saved=%d"), \
1699 !!(aHostRaw##set [1].reg & (bit)), !!(aRaw##set [1].reg & (bit)) ); \
1700 LogRel(("CPUM: " #bit" differs: host=%d saved=%d\n", \
1701 !!(aHostRaw##set [1].reg & (bit)), !!(aRaw##set [1].reg & (bit)) )); \
1702 } \
1703 } while (0)
1704#define CPUID_RAW_FEATURE_WRN(set, reg, bit) \
1705 do { \
1706 if ((aHostRaw##set [1].reg & bit) != (aRaw##set [1].reg & bit)) \
1707 LogRel(("CPUM: " #bit" differs: host=%d saved=%d\n", \
1708 !!(aHostRaw##set [1].reg & (bit)), !!(aRaw##set [1].reg & (bit)) )); \
1709 } while (0)
1710#define CPUID_RAW_FEATURE_IGN(set, reg, bit) do { } while (0)
1711
1712 /* For checking guest features. */
1713#define CPUID_GST_FEATURE_RET(set, reg, bit) \
1714 do { \
1715 if ( (aGuestCpuId##set [1].reg & bit) \
1716 && !(aHostRaw##set [1].reg & bit) \
1717 && !(aHostOverride##set [1].reg & bit) \
1718 && !(aGuestOverride##set [1].reg & bit) \
1719 ) \
1720 { \
1721 if (fStrictCpuIdChecks) \
1722 return SSMR3SetLoadError(pSSM, VERR_SSM_LOAD_CPUID_MISMATCH, RT_SRC_POS, \
1723 N_(#bit " is not supported by the host but has already exposed to the guest")); \
1724 LogRel(("CPUM: " #bit " is not supported by the host but has already exposed to the guest\n")); \
1725 } \
1726 } while (0)
1727#define CPUID_GST_FEATURE_WRN(set, reg, bit) \
1728 do { \
1729 if ( (aGuestCpuId##set [1].reg & bit) \
1730 && !(aHostRaw##set [1].reg & bit) \
1731 && !(aHostOverride##set [1].reg & bit) \
1732 && !(aGuestOverride##set [1].reg & bit) \
1733 ) \
1734 LogRel(("CPUM: " #bit " is not supported by the host but has already exposed to the guest\n")); \
1735 } while (0)
1736#define CPUID_GST_FEATURE_EMU(set, reg, bit) \
1737 do { \
1738 if ( (aGuestCpuId##set [1].reg & bit) \
1739 && !(aHostRaw##set [1].reg & bit) \
1740 && !(aHostOverride##set [1].reg & bit) \
1741 && !(aGuestOverride##set [1].reg & bit) \
1742 ) \
1743 LogRel(("CPUM: Warning - " #bit " is not supported by the host but already exposed to the guest. This may impact performance.\n")); \
1744 } while (0)
1745#define CPUID_GST_FEATURE_IGN(set, reg, bit) do { } while (0)
1746
1747 /* For checking guest features if AMD guest CPU. */
1748#define CPUID_GST_AMD_FEATURE_RET(set, reg, bit) \
1749 do { \
1750 if ( (aGuestCpuId##set [1].reg & bit) \
1751 && fGuestAmd \
1752 && (!fGuestAmd || !(aHostRaw##set [1].reg & bit)) \
1753 && !(aHostOverride##set [1].reg & bit) \
1754 && !(aGuestOverride##set [1].reg & bit) \
1755 ) \
1756 { \
1757 if (fStrictCpuIdChecks) \
1758 return SSMR3SetLoadError(pSSM, VERR_SSM_LOAD_CPUID_MISMATCH, RT_SRC_POS, \
1759 N_(#bit " is not supported by the host but has already exposed to the guest")); \
1760 LogRel(("CPUM: " #bit " is not supported by the host but has already exposed to the guest\n")); \
1761 } \
1762 } while (0)
1763#define CPUID_GST_AMD_FEATURE_WRN(set, reg, bit) \
1764 do { \
1765 if ( (aGuestCpuId##set [1].reg & bit) \
1766 && fGuestAmd \
1767 && (!fGuestAmd || !(aHostRaw##set [1].reg & bit)) \
1768 && !(aHostOverride##set [1].reg & bit) \
1769 && !(aGuestOverride##set [1].reg & bit) \
1770 ) \
1771 LogRel(("CPUM: " #bit " is not supported by the host but has already exposed to the guest\n")); \
1772 } while (0)
1773#define CPUID_GST_AMD_FEATURE_EMU(set, reg, bit) \
1774 do { \
1775 if ( (aGuestCpuId##set [1].reg & bit) \
1776 && fGuestAmd \
1777 && (!fGuestAmd || !(aHostRaw##set [1].reg & bit)) \
1778 && !(aHostOverride##set [1].reg & bit) \
1779 && !(aGuestOverride##set [1].reg & bit) \
1780 ) \
1781 LogRel(("CPUM: Warning - " #bit " is not supported by the host but already exposed to the guest. This may impact performance.\n")); \
1782 } while (0)
1783#define CPUID_GST_AMD_FEATURE_IGN(set, reg, bit) do { } while (0)
1784
1785 /* For checking AMD features which have a corresponding bit in the standard
1786 range. (Intel defines very few bits in the extended feature sets.) */
1787#define CPUID_GST_FEATURE2_RET(reg, ExtBit, StdBit) \
1788 do { \
1789 if ( (aGuestCpuIdExt [1].reg & (ExtBit)) \
1790 && !(fHostAmd \
1791 ? aHostRawExt[1].reg & (ExtBit) \
1792 : aHostRawStd[1].reg & (StdBit)) \
1793 && !(aHostOverrideExt[1].reg & (ExtBit)) \
1794 && !(aGuestOverrideExt[1].reg & (ExtBit)) \
1795 ) \
1796 { \
1797 if (fStrictCpuIdChecks) \
1798 return SSMR3SetLoadError(pSSM, VERR_SSM_LOAD_CPUID_MISMATCH, RT_SRC_POS, \
1799 N_(#ExtBit " is not supported by the host but has already exposed to the guest")); \
1800 LogRel(("CPUM: " #ExtBit " is not supported by the host but has already exposed to the guest\n")); \
1801 } \
1802 } while (0)
1803#define CPUID_GST_FEATURE2_WRN(reg, ExtBit, StdBit) \
1804 do { \
1805 if ( (aGuestCpuIdExt [1].reg & (ExtBit)) \
1806 && !(fHostAmd \
1807 ? aHostRawExt[1].reg & (ExtBit) \
1808 : aHostRawStd[1].reg & (StdBit)) \
1809 && !(aHostOverrideExt[1].reg & (ExtBit)) \
1810 && !(aGuestOverrideExt[1].reg & (ExtBit)) \
1811 ) \
1812 LogRel(("CPUM: " #ExtBit " is not supported by the host but has already exposed to the guest\n")); \
1813 } while (0)
1814#define CPUID_GST_FEATURE2_EMU(reg, ExtBit, StdBit) \
1815 do { \
1816 if ( (aGuestCpuIdExt [1].reg & (ExtBit)) \
1817 && !(fHostAmd \
1818 ? aHostRawExt[1].reg & (ExtBit) \
1819 : aHostRawStd[1].reg & (StdBit)) \
1820 && !(aHostOverrideExt[1].reg & (ExtBit)) \
1821 && !(aGuestOverrideExt[1].reg & (ExtBit)) \
1822 ) \
1823 LogRel(("CPUM: Warning - " #ExtBit " is not supported by the host but already exposed to the guest. This may impact performance.\n")); \
1824 } while (0)
1825#define CPUID_GST_FEATURE2_IGN(reg, ExtBit, StdBit) do { } while (0)
1826
1827 /*
1828 * Load them into stack buffers first.
1829 */
1830 CPUMCPUID aGuestCpuIdStd[RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdStd)];
1831 uint32_t cGuestCpuIdStd;
1832 int rc = SSMR3GetU32(pSSM, &cGuestCpuIdStd); AssertRCReturn(rc, rc);
1833 if (cGuestCpuIdStd > RT_ELEMENTS(aGuestCpuIdStd))
1834 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1835 SSMR3GetMem(pSSM, &aGuestCpuIdStd[0], cGuestCpuIdStd * sizeof(aGuestCpuIdStd[0]));
1836
1837 CPUMCPUID aGuestCpuIdExt[RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdExt)];
1838 uint32_t cGuestCpuIdExt;
1839 rc = SSMR3GetU32(pSSM, &cGuestCpuIdExt); AssertRCReturn(rc, rc);
1840 if (cGuestCpuIdExt > RT_ELEMENTS(aGuestCpuIdExt))
1841 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1842 SSMR3GetMem(pSSM, &aGuestCpuIdExt[0], cGuestCpuIdExt * sizeof(aGuestCpuIdExt[0]));
1843
1844 CPUMCPUID aGuestCpuIdCentaur[RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdCentaur)];
1845 uint32_t cGuestCpuIdCentaur;
1846 rc = SSMR3GetU32(pSSM, &cGuestCpuIdCentaur); AssertRCReturn(rc, rc);
1847 if (cGuestCpuIdCentaur > RT_ELEMENTS(aGuestCpuIdCentaur))
1848 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1849 SSMR3GetMem(pSSM, &aGuestCpuIdCentaur[0], cGuestCpuIdCentaur * sizeof(aGuestCpuIdCentaur[0]));
1850
1851 CPUMCPUID GuestCpuIdDef;
1852 rc = SSMR3GetMem(pSSM, &GuestCpuIdDef, sizeof(GuestCpuIdDef));
1853 AssertRCReturn(rc, rc);
1854
1855 CPUMCPUID aRawStd[16];
1856 uint32_t cRawStd;
1857 rc = SSMR3GetU32(pSSM, &cRawStd); AssertRCReturn(rc, rc);
1858 if (cRawStd > RT_ELEMENTS(aRawStd))
1859 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1860 SSMR3GetMem(pSSM, &aRawStd[0], cRawStd * sizeof(aRawStd[0]));
1861
1862 CPUMCPUID aRawExt[32];
1863 uint32_t cRawExt;
1864 rc = SSMR3GetU32(pSSM, &cRawExt); AssertRCReturn(rc, rc);
1865 if (cRawExt > RT_ELEMENTS(aRawExt))
1866 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1867 rc = SSMR3GetMem(pSSM, &aRawExt[0], cRawExt * sizeof(aRawExt[0]));
1868 AssertRCReturn(rc, rc);
1869
1870 /*
1871 * Note that we support restoring less than the current amount of standard
1872 * leaves because we've been allowed more is newer version of VBox.
1873 *
1874 * So, pad new entries with the default.
1875 */
1876 for (uint32_t i = cGuestCpuIdStd; i < RT_ELEMENTS(aGuestCpuIdStd); i++)
1877 aGuestCpuIdStd[i] = GuestCpuIdDef;
1878
1879 for (uint32_t i = cGuestCpuIdExt; i < RT_ELEMENTS(aGuestCpuIdExt); i++)
1880 aGuestCpuIdExt[i] = GuestCpuIdDef;
1881
1882 for (uint32_t i = cGuestCpuIdCentaur; i < RT_ELEMENTS(aGuestCpuIdCentaur); i++)
1883 aGuestCpuIdCentaur[i] = GuestCpuIdDef;
1884
1885 for (uint32_t i = cRawStd; i < RT_ELEMENTS(aRawStd); i++)
1886 ASMCpuId(i, &aRawStd[i].eax, &aRawStd[i].ebx, &aRawStd[i].ecx, &aRawStd[i].edx);
1887
1888 for (uint32_t i = cRawExt; i < RT_ELEMENTS(aRawExt); i++)
1889 ASMCpuId(i | UINT32_C(0x80000000), &aRawExt[i].eax, &aRawExt[i].ebx, &aRawExt[i].ecx, &aRawExt[i].edx);
1890
1891 /*
1892 * Get the raw CPU IDs for the current host.
1893 */
1894 CPUMCPUID aHostRawStd[16];
1895 for (unsigned i = 0; i < RT_ELEMENTS(aHostRawStd); i++)
1896 ASMCpuId(i, &aHostRawStd[i].eax, &aHostRawStd[i].ebx, &aHostRawStd[i].ecx, &aHostRawStd[i].edx);
1897
1898 CPUMCPUID aHostRawExt[32];
1899 for (unsigned i = 0; i < RT_ELEMENTS(aHostRawExt); i++)
1900 ASMCpuId(i | UINT32_C(0x80000000), &aHostRawExt[i].eax, &aHostRawExt[i].ebx, &aHostRawExt[i].ecx, &aHostRawExt[i].edx);
1901
1902 /*
1903 * Get the host and guest overrides so we don't reject the state because
1904 * some feature was enabled thru these interfaces.
1905 * Note! We currently only need the feature leaves, so skip rest.
1906 */
1907 PCFGMNODE pOverrideCfg = CFGMR3GetChild(CFGMR3GetRoot(pVM), "CPUM/CPUID");
1908 CPUMCPUID aGuestOverrideStd[2];
1909 memcpy(&aGuestOverrideStd[0], &aHostRawStd[0], sizeof(aGuestOverrideStd));
1910 cpumR3CpuIdInitLoadOverrideSet(UINT32_C(0x00000000), &aGuestOverrideStd[0], RT_ELEMENTS(aGuestOverrideStd), pOverrideCfg);
1911
1912 CPUMCPUID aGuestOverrideExt[2];
1913 memcpy(&aGuestOverrideExt[0], &aHostRawExt[0], sizeof(aGuestOverrideExt));
1914 cpumR3CpuIdInitLoadOverrideSet(UINT32_C(0x80000000), &aGuestOverrideExt[0], RT_ELEMENTS(aGuestOverrideExt), pOverrideCfg);
1915
1916 pOverrideCfg = CFGMR3GetChild(CFGMR3GetRoot(pVM), "CPUM/HostCPUID");
1917 CPUMCPUID aHostOverrideStd[2];
1918 memcpy(&aHostOverrideStd[0], &aHostRawStd[0], sizeof(aHostOverrideStd));
1919 cpumR3CpuIdInitLoadOverrideSet(UINT32_C(0x00000000), &aHostOverrideStd[0], RT_ELEMENTS(aHostOverrideStd), pOverrideCfg);
1920
1921 CPUMCPUID aHostOverrideExt[2];
1922 memcpy(&aHostOverrideExt[0], &aHostRawExt[0], sizeof(aHostOverrideExt));
1923 cpumR3CpuIdInitLoadOverrideSet(UINT32_C(0x80000000), &aHostOverrideExt[0], RT_ELEMENTS(aHostOverrideExt), pOverrideCfg);
1924
1925 /*
1926 * This can be skipped.
1927 */
1928 bool fStrictCpuIdChecks;
1929 CFGMR3QueryBoolDef(CFGMR3GetChild(CFGMR3GetRoot(pVM), "CPUM"), "StrictCpuIdChecks", &fStrictCpuIdChecks, true);
1930
1931
1932
1933 /*
1934 * For raw-mode we'll require that the CPUs are very similar since we don't
1935 * intercept CPUID instructions for user mode applications.
1936 */
1937 if (!HMIsEnabled(pVM))
1938 {
1939 /* CPUID(0) */
1940 CPUID_CHECK_RET( aHostRawStd[0].ebx == aRawStd[0].ebx
1941 && aHostRawStd[0].ecx == aRawStd[0].ecx
1942 && aHostRawStd[0].edx == aRawStd[0].edx,
1943 (N_("CPU vendor mismatch: host='%.4s%.4s%.4s' saved='%.4s%.4s%.4s'"),
1944 &aHostRawStd[0].ebx, &aHostRawStd[0].edx, &aHostRawStd[0].ecx,
1945 &aRawStd[0].ebx, &aRawStd[0].edx, &aRawStd[0].ecx));
1946 CPUID_CHECK2_WRN("Std CPUID max leaf", aHostRawStd[0].eax, aRawStd[0].eax);
1947 CPUID_CHECK2_WRN("Reserved bits 15:14", (aHostRawExt[1].eax >> 14) & 3, (aRawExt[1].eax >> 14) & 3);
1948 CPUID_CHECK2_WRN("Reserved bits 31:28", aHostRawExt[1].eax >> 28, aRawExt[1].eax >> 28);
1949
1950 bool const fIntel = ASMIsIntelCpuEx(aRawStd[0].ebx, aRawStd[0].ecx, aRawStd[0].edx);
1951
1952 /* CPUID(1).eax */
1953 CPUID_CHECK2_RET("CPU family", ASMGetCpuFamily(aHostRawStd[1].eax), ASMGetCpuFamily(aRawStd[1].eax));
1954 CPUID_CHECK2_RET("CPU model", ASMGetCpuModel(aHostRawStd[1].eax, fIntel), ASMGetCpuModel(aRawStd[1].eax, fIntel));
1955 CPUID_CHECK2_WRN("CPU type", (aHostRawStd[1].eax >> 12) & 3, (aRawStd[1].eax >> 12) & 3 );
1956
1957 /* CPUID(1).ebx - completely ignore CPU count and APIC ID. */
1958 CPUID_CHECK2_RET("CPU brand ID", aHostRawStd[1].ebx & 0xff, aRawStd[1].ebx & 0xff);
1959 CPUID_CHECK2_WRN("CLFLUSH chunk count", (aHostRawStd[1].ebx >> 8) & 0xff, (aRawStd[1].ebx >> 8) & 0xff);
1960
1961 /* CPUID(1).ecx */
1962 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSE3);
1963 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_PCLMUL);
1964 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_DTES64);
1965 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_MONITOR);
1966 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_CPLDS);
1967 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_VMX);
1968 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_SMX);
1969 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_EST);
1970 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_TM2);
1971 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSSE3);
1972 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_CNTXID);
1973 CPUID_RAW_FEATURE_RET(Std, ecx, RT_BIT_32(11) /*reserved*/ );
1974 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_FMA);
1975 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_CX16);
1976 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_TPRUPDATE);
1977 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_PDCM);
1978 CPUID_RAW_FEATURE_RET(Std, ecx, RT_BIT_32(16) /*reserved*/);
1979 CPUID_RAW_FEATURE_RET(Std, ecx, RT_BIT_32(17) /*reserved*/);
1980 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_DCA);
1981 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSE4_1);
1982 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSE4_2);
1983 CPUID_RAW_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_X2APIC);
1984 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_MOVBE);
1985 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_POPCNT);
1986 CPUID_RAW_FEATURE_RET(Std, ecx, RT_BIT_32(24) /*reserved*/);
1987 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_AES);
1988 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_XSAVE);
1989 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_OSXSAVE);
1990 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_AVX);
1991 CPUID_RAW_FEATURE_RET(Std, ecx, RT_BIT_32(29) /*reserved*/);
1992 CPUID_RAW_FEATURE_RET(Std, ecx, RT_BIT_32(30) /*reserved*/);
1993 CPUID_RAW_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_HVP);
1994
1995 /* CPUID(1).edx */
1996 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_FPU);
1997 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_VME);
1998 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_DE);
1999 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PSE);
2000 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_TSC);
2001 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_MSR);
2002 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PAE);
2003 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_MCE);
2004 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_CX8);
2005 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_APIC);
2006 CPUID_RAW_FEATURE_RET(Std, edx, RT_BIT_32(10) /*reserved*/);
2007 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_SEP);
2008 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_MTRR);
2009 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PGE);
2010 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_MCA);
2011 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_CMOV);
2012 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PAT);
2013 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PSE36);
2014 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PSN);
2015 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_CLFSH);
2016 CPUID_RAW_FEATURE_RET(Std, edx, RT_BIT_32(20) /*reserved*/);
2017 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_DS);
2018 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_ACPI);
2019 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_MMX);
2020 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_FXSR);
2021 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_SSE);
2022 CPUID_RAW_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_SSE2);
2023 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_SS);
2024 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_HTT);
2025 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_TM);
2026 CPUID_RAW_FEATURE_RET(Std, edx, RT_BIT_32(30) /*JMPE/IA64*/);
2027 CPUID_RAW_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PBE);
2028
2029 /* CPUID(2) - config, mostly about caches. ignore. */
2030 /* CPUID(3) - processor serial number. ignore. */
2031 /* CPUID(4) - config, cache and topology - takes ECX as input. ignore. */
2032 /* CPUID(5) - mwait/monitor config. ignore. */
2033 /* CPUID(6) - power management. ignore. */
2034 /* CPUID(7) - ???. ignore. */
2035 /* CPUID(8) - ???. ignore. */
2036 /* CPUID(9) - DCA. ignore for now. */
2037 /* CPUID(a) - PeMo info. ignore for now. */
2038 /* CPUID(b) - topology info - takes ECX as input. ignore. */
2039
2040 /* CPUID(d) - XCR0 stuff - takes ECX as input. We only warn about the main level (ECX=0) for now. */
2041 CPUID_CHECK_WRN( aRawStd[0].eax < UINT32_C(0x0000000d)
2042 || aHostRawStd[0].eax >= UINT32_C(0x0000000d),
2043 ("CPUM: Standard leaf D was present on saved state host, not present on current.\n"));
2044 if ( aRawStd[0].eax >= UINT32_C(0x0000000d)
2045 && aHostRawStd[0].eax >= UINT32_C(0x0000000d))
2046 {
2047 CPUID_CHECK2_WRN("Valid low XCR0 bits", aHostRawStd[0xd].eax, aRawStd[0xd].eax);
2048 CPUID_CHECK2_WRN("Valid high XCR0 bits", aHostRawStd[0xd].edx, aRawStd[0xd].edx);
2049 CPUID_CHECK2_WRN("Current XSAVE/XRSTOR area size", aHostRawStd[0xd].ebx, aRawStd[0xd].ebx);
2050 CPUID_CHECK2_WRN("Max XSAVE/XRSTOR area size", aHostRawStd[0xd].ecx, aRawStd[0xd].ecx);
2051 }
2052
2053 /* CPUID(0x80000000) - same as CPUID(0) except for eax.
2054 Note! Intel have/is marking many of the fields here as reserved. We
2055 will verify them as if it's an AMD CPU. */
2056 CPUID_CHECK_RET( (aHostRawExt[0].eax >= UINT32_C(0x80000001) && aHostRawExt[0].eax <= UINT32_C(0x8000007f))
2057 || !(aRawExt[0].eax >= UINT32_C(0x80000001) && aRawExt[0].eax <= UINT32_C(0x8000007f)),
2058 (N_("Extended leaves was present on saved state host, but is missing on the current\n")));
2059 if (aRawExt[0].eax >= UINT32_C(0x80000001) && aRawExt[0].eax <= UINT32_C(0x8000007f))
2060 {
2061 CPUID_CHECK_RET( aHostRawExt[0].ebx == aRawExt[0].ebx
2062 && aHostRawExt[0].ecx == aRawExt[0].ecx
2063 && aHostRawExt[0].edx == aRawExt[0].edx,
2064 (N_("CPU vendor mismatch: host='%.4s%.4s%.4s' saved='%.4s%.4s%.4s'"),
2065 &aHostRawExt[0].ebx, &aHostRawExt[0].edx, &aHostRawExt[0].ecx,
2066 &aRawExt[0].ebx, &aRawExt[0].edx, &aRawExt[0].ecx));
2067 CPUID_CHECK2_WRN("Ext CPUID max leaf", aHostRawExt[0].eax, aRawExt[0].eax);
2068
2069 /* CPUID(0x80000001).eax - same as CPUID(0).eax. */
2070 CPUID_CHECK2_RET("CPU family", ASMGetCpuFamily(aHostRawExt[1].eax), ASMGetCpuFamily(aRawExt[1].eax));
2071 CPUID_CHECK2_RET("CPU model", ASMGetCpuModel(aHostRawExt[1].eax, fIntel), ASMGetCpuModel(aRawExt[1].eax, fIntel));
2072 CPUID_CHECK2_WRN("CPU type", (aHostRawExt[1].eax >> 12) & 3, (aRawExt[1].eax >> 12) & 3 );
2073 CPUID_CHECK2_WRN("Reserved bits 15:14", (aHostRawExt[1].eax >> 14) & 3, (aRawExt[1].eax >> 14) & 3 );
2074 CPUID_CHECK2_WRN("Reserved bits 31:28", aHostRawExt[1].eax >> 28, aRawExt[1].eax >> 28);
2075
2076 /* CPUID(0x80000001).ebx - Brand ID (maybe), just warn if things differs. */
2077 CPUID_CHECK2_WRN("CPU BrandID", aHostRawExt[1].ebx & 0xffff, aRawExt[1].ebx & 0xffff);
2078 CPUID_CHECK2_WRN("Reserved bits 16:27", (aHostRawExt[1].ebx >> 16) & 0xfff, (aRawExt[1].ebx >> 16) & 0xfff);
2079 CPUID_CHECK2_WRN("PkgType", (aHostRawExt[1].ebx >> 28) & 0xf, (aRawExt[1].ebx >> 28) & 0xf);
2080
2081 /* CPUID(0x80000001).ecx */
2082 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_EXT_FEATURE_ECX_LAHF_SAHF);
2083 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_CMPL);
2084 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SVM);
2085 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_EXT_APIC);
2086 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_CR8L);
2087 CPUID_RAW_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_ABM);
2088 CPUID_RAW_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SSE4A);
2089 CPUID_RAW_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_MISALNSSE);
2090 CPUID_RAW_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_3DNOWPRF);
2091 CPUID_RAW_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_OSVW);
2092 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_IBS);
2093 CPUID_RAW_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SSE5);
2094 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SKINIT);
2095 CPUID_RAW_FEATURE_IGN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_WDT);
2096 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(14));
2097 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(15));
2098 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(16));
2099 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(17));
2100 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(18));
2101 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(19));
2102 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(20));
2103 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(21));
2104 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(22));
2105 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(23));
2106 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(24));
2107 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(25));
2108 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(26));
2109 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(27));
2110 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(28));
2111 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(29));
2112 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(30));
2113 CPUID_RAW_FEATURE_WRN(Ext, ecx, RT_BIT_32(31));
2114
2115 /* CPUID(0x80000001).edx */
2116 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_FPU);
2117 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_VME);
2118 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_DE);
2119 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_PSE);
2120 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_TSC);
2121 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_MSR);
2122 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_PAE);
2123 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_MCE);
2124 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_CX8);
2125 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_APIC);
2126 CPUID_RAW_FEATURE_IGN(Ext, edx, RT_BIT_32(10) /*reserved*/);
2127 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_EXT_FEATURE_EDX_SEP);
2128 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_MTRR);
2129 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_PGE);
2130 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_MCA);
2131 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_CMOV);
2132 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_PAT);
2133 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_PSE36);
2134 CPUID_RAW_FEATURE_IGN(Ext, edx, RT_BIT_32(18) /*reserved*/);
2135 CPUID_RAW_FEATURE_IGN(Ext, edx, RT_BIT_32(19) /*reserved*/);
2136 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_EXT_FEATURE_EDX_NX);
2137 CPUID_RAW_FEATURE_IGN(Ext, edx, RT_BIT_32(21) /*reserved*/);
2138 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_AXMMX);
2139 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_MMX);
2140 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_FXSR);
2141 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_FFXSR);
2142 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_EXT_FEATURE_EDX_PAGE1GB);
2143 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_EXT_FEATURE_EDX_RDTSCP);
2144 CPUID_RAW_FEATURE_IGN(Ext, edx, RT_BIT_32(28) /*reserved*/);
2145 CPUID_RAW_FEATURE_IGN(Ext, edx, X86_CPUID_EXT_FEATURE_EDX_LONG_MODE);
2146 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_3DNOW_EX);
2147 CPUID_RAW_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_3DNOW);
2148
2149 /** @todo verify the rest as well. */
2150 }
2151 }
2152
2153
2154
2155 /*
2156 * Verify that we can support the features already exposed to the guest on
2157 * this host.
2158 *
2159 * Most of the features we're emulating requires intercepting instruction
2160 * and doing it the slow way, so there is no need to warn when they aren't
2161 * present in the host CPU. Thus we use IGN instead of EMU on these.
2162 *
2163 * Trailing comments:
2164 * "EMU" - Possible to emulate, could be lots of work and very slow.
2165 * "EMU?" - Can this be emulated?
2166 */
2167 /* CPUID(1).ecx */
2168 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSE3); // -> EMU
2169 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_PCLMUL); // -> EMU?
2170 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_DTES64); // -> EMU?
2171 CPUID_GST_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_MONITOR);
2172 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_CPLDS); // -> EMU?
2173 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_VMX); // -> EMU
2174 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SMX); // -> EMU
2175 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_EST); // -> EMU
2176 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_TM2); // -> EMU?
2177 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSSE3); // -> EMU
2178 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_CNTXID); // -> EMU
2179 CPUID_GST_FEATURE_RET(Std, ecx, RT_BIT_32(11) /*reserved*/ );
2180 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_FMA); // -> EMU? what's this?
2181 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_CX16); // -> EMU?
2182 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_TPRUPDATE);//-> EMU
2183 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_PDCM); // -> EMU
2184 CPUID_GST_FEATURE_RET(Std, ecx, RT_BIT_32(16) /*reserved*/);
2185 CPUID_GST_FEATURE_RET(Std, ecx, RT_BIT_32(17) /*reserved*/);
2186 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_DCA); // -> EMU?
2187 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSE4_1); // -> EMU
2188 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_SSE4_2); // -> EMU
2189 CPUID_GST_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_X2APIC);
2190 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_MOVBE); // -> EMU
2191 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_POPCNT); // -> EMU
2192 CPUID_GST_FEATURE_RET(Std, ecx, RT_BIT_32(24) /*reserved*/);
2193 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_AES); // -> EMU
2194 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_XSAVE); // -> EMU
2195 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_OSXSAVE); // -> EMU
2196 CPUID_GST_FEATURE_RET(Std, ecx, X86_CPUID_FEATURE_ECX_AVX); // -> EMU?
2197 CPUID_GST_FEATURE_RET(Std, ecx, RT_BIT_32(29) /*reserved*/);
2198 CPUID_GST_FEATURE_RET(Std, ecx, RT_BIT_32(30) /*reserved*/);
2199 CPUID_GST_FEATURE_IGN(Std, ecx, X86_CPUID_FEATURE_ECX_HVP); // Normally not set by host
2200
2201 /* CPUID(1).edx */
2202 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_FPU);
2203 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_VME);
2204 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_DE); // -> EMU?
2205 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PSE);
2206 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_TSC); // -> EMU
2207 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_MSR); // -> EMU
2208 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_PAE);
2209 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_MCE);
2210 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_CX8); // -> EMU?
2211 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_APIC);
2212 CPUID_GST_FEATURE_RET(Std, edx, RT_BIT_32(10) /*reserved*/);
2213 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_SEP);
2214 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_MTRR);
2215 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PGE);
2216 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_MCA);
2217 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_CMOV); // -> EMU
2218 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PAT);
2219 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PSE36);
2220 CPUID_GST_FEATURE_IGN(Std, edx, X86_CPUID_FEATURE_EDX_PSN);
2221 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_CLFSH); // -> EMU
2222 CPUID_GST_FEATURE_RET(Std, edx, RT_BIT_32(20) /*reserved*/);
2223 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_DS); // -> EMU?
2224 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_ACPI); // -> EMU?
2225 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_MMX); // -> EMU
2226 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_FXSR); // -> EMU
2227 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_SSE); // -> EMU
2228 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_SSE2); // -> EMU
2229 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_SS); // -> EMU?
2230 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_HTT); // -> EMU?
2231 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_TM); // -> EMU?
2232 CPUID_GST_FEATURE_RET(Std, edx, RT_BIT_32(30) /*JMPE/IA64*/); // -> EMU
2233 CPUID_GST_FEATURE_RET(Std, edx, X86_CPUID_FEATURE_EDX_PBE); // -> EMU?
2234
2235 /* CPUID(0x80000000). */
2236 if ( aGuestCpuIdExt[0].eax >= UINT32_C(0x80000001)
2237 && aGuestCpuIdExt[0].eax < UINT32_C(0x8000007f))
2238 {
2239 /** @todo deal with no 0x80000001 on the host. */
2240 bool const fHostAmd = ASMIsAmdCpuEx(aHostRawStd[0].ebx, aHostRawStd[0].ecx, aHostRawStd[0].edx);
2241 bool const fGuestAmd = ASMIsAmdCpuEx(aGuestCpuIdExt[0].ebx, aGuestCpuIdExt[0].ecx, aGuestCpuIdExt[0].edx);
2242
2243 /* CPUID(0x80000001).ecx */
2244 CPUID_GST_FEATURE_WRN(Ext, ecx, X86_CPUID_EXT_FEATURE_ECX_LAHF_SAHF); // -> EMU
2245 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_CMPL); // -> EMU
2246 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SVM); // -> EMU
2247 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_EXT_APIC);// ???
2248 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_CR8L); // -> EMU
2249 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_ABM); // -> EMU
2250 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SSE4A); // -> EMU
2251 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_MISALNSSE);//-> EMU
2252 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_3DNOWPRF);// -> EMU
2253 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_OSVW); // -> EMU?
2254 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_IBS); // -> EMU
2255 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SSE5); // -> EMU
2256 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_SKINIT); // -> EMU
2257 CPUID_GST_AMD_FEATURE_RET(Ext, ecx, X86_CPUID_AMD_FEATURE_ECX_WDT); // -> EMU
2258 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(14));
2259 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(15));
2260 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(16));
2261 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(17));
2262 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(18));
2263 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(19));
2264 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(20));
2265 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(21));
2266 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(22));
2267 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(23));
2268 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(24));
2269 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(25));
2270 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(26));
2271 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(27));
2272 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(28));
2273 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(29));
2274 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(30));
2275 CPUID_GST_AMD_FEATURE_WRN(Ext, ecx, RT_BIT_32(31));
2276
2277 /* CPUID(0x80000001).edx */
2278 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_FPU, X86_CPUID_FEATURE_EDX_FPU); // -> EMU
2279 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_VME, X86_CPUID_FEATURE_EDX_VME); // -> EMU
2280 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_DE, X86_CPUID_FEATURE_EDX_DE); // -> EMU
2281 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_PSE, X86_CPUID_FEATURE_EDX_PSE);
2282 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_TSC, X86_CPUID_FEATURE_EDX_TSC); // -> EMU
2283 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_MSR, X86_CPUID_FEATURE_EDX_MSR); // -> EMU
2284 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_PAE, X86_CPUID_FEATURE_EDX_PAE);
2285 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_MCE, X86_CPUID_FEATURE_EDX_MCE);
2286 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_CX8, X86_CPUID_FEATURE_EDX_CX8); // -> EMU?
2287 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_APIC, X86_CPUID_FEATURE_EDX_APIC);
2288 CPUID_GST_AMD_FEATURE_WRN(Ext, edx, RT_BIT_32(10) /*reserved*/);
2289 CPUID_GST_FEATURE_IGN( Ext, edx, X86_CPUID_EXT_FEATURE_EDX_SYSCALL); // On Intel: long mode only.
2290 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_MTRR, X86_CPUID_FEATURE_EDX_MTRR);
2291 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_PGE, X86_CPUID_FEATURE_EDX_PGE);
2292 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_MCA, X86_CPUID_FEATURE_EDX_MCA);
2293 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_CMOV, X86_CPUID_FEATURE_EDX_CMOV); // -> EMU
2294 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_PAT, X86_CPUID_FEATURE_EDX_PAT);
2295 CPUID_GST_FEATURE2_IGN( edx, X86_CPUID_AMD_FEATURE_EDX_PSE36, X86_CPUID_FEATURE_EDX_PSE36);
2296 CPUID_GST_AMD_FEATURE_WRN(Ext, edx, RT_BIT_32(18) /*reserved*/);
2297 CPUID_GST_AMD_FEATURE_WRN(Ext, edx, RT_BIT_32(19) /*reserved*/);
2298 CPUID_GST_FEATURE_RET( Ext, edx, X86_CPUID_EXT_FEATURE_EDX_NX);
2299 CPUID_GST_FEATURE_WRN( Ext, edx, RT_BIT_32(21) /*reserved*/);
2300 CPUID_GST_FEATURE_RET( Ext, edx, X86_CPUID_AMD_FEATURE_EDX_AXMMX);
2301 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_MMX, X86_CPUID_FEATURE_EDX_MMX); // -> EMU
2302 CPUID_GST_FEATURE2_RET( edx, X86_CPUID_AMD_FEATURE_EDX_FXSR, X86_CPUID_FEATURE_EDX_FXSR); // -> EMU
2303 CPUID_GST_AMD_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_FFXSR);
2304 CPUID_GST_AMD_FEATURE_RET(Ext, edx, X86_CPUID_EXT_FEATURE_EDX_PAGE1GB);
2305 CPUID_GST_AMD_FEATURE_RET(Ext, edx, X86_CPUID_EXT_FEATURE_EDX_RDTSCP);
2306 CPUID_GST_FEATURE_IGN( Ext, edx, RT_BIT_32(28) /*reserved*/);
2307 CPUID_GST_FEATURE_RET( Ext, edx, X86_CPUID_EXT_FEATURE_EDX_LONG_MODE);
2308 CPUID_GST_AMD_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_3DNOW_EX);
2309 CPUID_GST_AMD_FEATURE_RET(Ext, edx, X86_CPUID_AMD_FEATURE_EDX_3DNOW);
2310 }
2311
2312 /*
2313 * We're good, commit the CPU ID leaves.
2314 */
2315 memcpy(&pVM->cpum.s.aGuestCpuIdStd[0], &aGuestCpuIdStd[0], sizeof(aGuestCpuIdStd));
2316 memcpy(&pVM->cpum.s.aGuestCpuIdExt[0], &aGuestCpuIdExt[0], sizeof(aGuestCpuIdExt));
2317 memcpy(&pVM->cpum.s.aGuestCpuIdCentaur[0], &aGuestCpuIdCentaur[0], sizeof(aGuestCpuIdCentaur));
2318 pVM->cpum.s.GuestCpuIdDef = GuestCpuIdDef;
2319
2320#undef CPUID_CHECK_RET
2321#undef CPUID_CHECK_WRN
2322#undef CPUID_CHECK2_RET
2323#undef CPUID_CHECK2_WRN
2324#undef CPUID_RAW_FEATURE_RET
2325#undef CPUID_RAW_FEATURE_WRN
2326#undef CPUID_RAW_FEATURE_IGN
2327#undef CPUID_GST_FEATURE_RET
2328#undef CPUID_GST_FEATURE_WRN
2329#undef CPUID_GST_FEATURE_EMU
2330#undef CPUID_GST_FEATURE_IGN
2331#undef CPUID_GST_FEATURE2_RET
2332#undef CPUID_GST_FEATURE2_WRN
2333#undef CPUID_GST_FEATURE2_EMU
2334#undef CPUID_GST_FEATURE2_IGN
2335#undef CPUID_GST_AMD_FEATURE_RET
2336#undef CPUID_GST_AMD_FEATURE_WRN
2337#undef CPUID_GST_AMD_FEATURE_EMU
2338#undef CPUID_GST_AMD_FEATURE_IGN
2339
2340 return VINF_SUCCESS;
2341}
2342
2343
2344/**
2345 * Pass 0 live exec callback.
2346 *
2347 * @returns VINF_SSM_DONT_CALL_AGAIN.
2348 * @param pVM Pointer to the VM.
2349 * @param pSSM The saved state handle.
2350 * @param uPass The pass (0).
2351 */
2352static DECLCALLBACK(int) cpumR3LiveExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass)
2353{
2354 AssertReturn(uPass == 0, VERR_SSM_UNEXPECTED_PASS);
2355 cpumR3SaveCpuId(pVM, pSSM);
2356 return VINF_SSM_DONT_CALL_AGAIN;
2357}
2358
2359
2360/**
2361 * Execute state save operation.
2362 *
2363 * @returns VBox status code.
2364 * @param pVM Pointer to the VM.
2365 * @param pSSM SSM operation handle.
2366 */
2367static DECLCALLBACK(int) cpumR3SaveExec(PVM pVM, PSSMHANDLE pSSM)
2368{
2369 /*
2370 * Save.
2371 */
2372 for (VMCPUID i = 0; i < pVM->cCpus; i++)
2373 {
2374 PVMCPU pVCpu = &pVM->aCpus[i];
2375 SSMR3PutStructEx(pSSM, &pVCpu->cpum.s.Hyper, sizeof(pVCpu->cpum.s.Hyper), 0, g_aCpumCtxFields, NULL);
2376 }
2377
2378 SSMR3PutU32(pSSM, pVM->cCpus);
2379 SSMR3PutU32(pSSM, sizeof(pVM->aCpus[0].cpum.s.GuestMsrs.msr));
2380 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++)
2381 {
2382 PVMCPU pVCpu = &pVM->aCpus[iCpu];
2383
2384 SSMR3PutStructEx(pSSM, &pVCpu->cpum.s.Guest, sizeof(pVCpu->cpum.s.Guest), 0, g_aCpumCtxFields, NULL);
2385 SSMR3PutU32(pSSM, pVCpu->cpum.s.fUseFlags);
2386 SSMR3PutU32(pSSM, pVCpu->cpum.s.fChanged);
2387 AssertCompileSizeAlignment(pVCpu->cpum.s.GuestMsrs.msr, sizeof(uint64_t));
2388 SSMR3PutMem(pSSM, &pVCpu->cpum.s.GuestMsrs, sizeof(pVCpu->cpum.s.GuestMsrs.msr));
2389 }
2390
2391 cpumR3SaveCpuId(pVM, pSSM);
2392 return VINF_SUCCESS;
2393}
2394
2395
2396/**
2397 * @copydoc FNSSMINTLOADPREP
2398 */
2399static DECLCALLBACK(int) cpumR3LoadPrep(PVM pVM, PSSMHANDLE pSSM)
2400{
2401 NOREF(pSSM);
2402 pVM->cpum.s.fPendingRestore = true;
2403 return VINF_SUCCESS;
2404}
2405
2406
2407/**
2408 * @copydoc FNSSMINTLOADEXEC
2409 */
2410static DECLCALLBACK(int) cpumR3LoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
2411{
2412 /*
2413 * Validate version.
2414 */
2415 if ( uVersion != CPUM_SAVED_STATE_VERSION
2416 && uVersion != CPUM_SAVED_STATE_VERSION_MEM
2417 && uVersion != CPUM_SAVED_STATE_VERSION_NO_MSR_SIZE
2418 && uVersion != CPUM_SAVED_STATE_VERSION_VER3_2
2419 && uVersion != CPUM_SAVED_STATE_VERSION_VER3_0
2420 && uVersion != CPUM_SAVED_STATE_VERSION_VER2_1_NOMSR
2421 && uVersion != CPUM_SAVED_STATE_VERSION_VER2_0
2422 && uVersion != CPUM_SAVED_STATE_VERSION_VER1_6)
2423 {
2424 AssertMsgFailed(("cpumR3LoadExec: Invalid version uVersion=%d!\n", uVersion));
2425 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
2426 }
2427
2428 if (uPass == SSM_PASS_FINAL)
2429 {
2430 /*
2431 * Set the size of RTGCPTR for SSMR3GetGCPtr. (Only necessary for
2432 * really old SSM file versions.)
2433 */
2434 if (uVersion == CPUM_SAVED_STATE_VERSION_VER1_6)
2435 SSMR3HandleSetGCPtrSize(pSSM, sizeof(RTGCPTR32));
2436 else if (uVersion <= CPUM_SAVED_STATE_VERSION_VER3_0)
2437 SSMR3HandleSetGCPtrSize(pSSM, HC_ARCH_BITS == 32 ? sizeof(RTGCPTR32) : sizeof(RTGCPTR));
2438
2439 uint32_t const fLoad = uVersion > CPUM_SAVED_STATE_VERSION_MEM ? 0 : SSMSTRUCT_FLAGS_MEM_BAND_AID_RELAXED;
2440 PCSSMFIELD paCpumCtxFields = g_aCpumCtxFields;
2441 if (uVersion == CPUM_SAVED_STATE_VERSION_VER1_6)
2442 paCpumCtxFields = g_aCpumCtxFieldsV16;
2443 else if (uVersion <= CPUM_SAVED_STATE_VERSION_MEM)
2444 paCpumCtxFields = g_aCpumCtxFieldsMem;
2445
2446 /*
2447 * Restore.
2448 */
2449 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++)
2450 {
2451 PVMCPU pVCpu = &pVM->aCpus[iCpu];
2452 uint64_t uCR3 = pVCpu->cpum.s.Hyper.cr3;
2453 uint64_t uRSP = pVCpu->cpum.s.Hyper.rsp; /* see VMMR3Relocate(). */
2454 SSMR3GetStructEx(pSSM, &pVCpu->cpum.s.Hyper, sizeof(pVCpu->cpum.s.Hyper), fLoad, paCpumCtxFields, NULL);
2455 pVCpu->cpum.s.Hyper.cr3 = uCR3;
2456 pVCpu->cpum.s.Hyper.rsp = uRSP;
2457 }
2458
2459 if (uVersion >= CPUM_SAVED_STATE_VERSION_VER2_1_NOMSR)
2460 {
2461 uint32_t cCpus;
2462 int rc = SSMR3GetU32(pSSM, &cCpus); AssertRCReturn(rc, rc);
2463 AssertLogRelMsgReturn(cCpus == pVM->cCpus, ("Mismatching CPU counts: saved: %u; configured: %u \n", cCpus, pVM->cCpus),
2464 VERR_SSM_UNEXPECTED_DATA);
2465 }
2466 AssertLogRelMsgReturn( uVersion > CPUM_SAVED_STATE_VERSION_VER2_0
2467 || pVM->cCpus == 1,
2468 ("cCpus=%u\n", pVM->cCpus),
2469 VERR_SSM_UNEXPECTED_DATA);
2470
2471 uint32_t cbMsrs = 0;
2472 if (uVersion > CPUM_SAVED_STATE_VERSION_NO_MSR_SIZE)
2473 {
2474 int rc = SSMR3GetU32(pSSM, &cbMsrs); AssertRCReturn(rc, rc);
2475 AssertLogRelMsgReturn(RT_ALIGN(cbMsrs, sizeof(uint64_t)) == cbMsrs, ("Size of MSRs is misaligned: %#x\n", cbMsrs),
2476 VERR_SSM_UNEXPECTED_DATA);
2477 AssertLogRelMsgReturn(cbMsrs <= sizeof(CPUMCTXMSRS) && cbMsrs > 0, ("Size of MSRs is out of range: %#x\n", cbMsrs),
2478 VERR_SSM_UNEXPECTED_DATA);
2479 }
2480
2481 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++)
2482 {
2483 PVMCPU pVCpu = &pVM->aCpus[iCpu];
2484 SSMR3GetStructEx(pSSM, &pVCpu->cpum.s.Guest, sizeof(pVCpu->cpum.s.Guest), fLoad,
2485 paCpumCtxFields, NULL);
2486 SSMR3GetU32(pSSM, &pVCpu->cpum.s.fUseFlags);
2487 SSMR3GetU32(pSSM, &pVCpu->cpum.s.fChanged);
2488 if (uVersion > CPUM_SAVED_STATE_VERSION_NO_MSR_SIZE)
2489 SSMR3GetMem(pSSM, &pVCpu->cpum.s.GuestMsrs.au64[0], cbMsrs);
2490 else if (uVersion >= CPUM_SAVED_STATE_VERSION_VER3_0)
2491 {
2492 SSMR3GetMem(pSSM, &pVCpu->cpum.s.GuestMsrs.au64[0], 2 * sizeof(uint64_t)); /* Restore two MSRs. */
2493 SSMR3Skip(pSSM, 62 * sizeof(uint64_t));
2494 }
2495 }
2496
2497 /* Older states does not have the internal selector register flags
2498 and valid selector value. Supply those. */
2499 if (uVersion <= CPUM_SAVED_STATE_VERSION_MEM)
2500 {
2501 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++)
2502 {
2503 PVMCPU pVCpu = &pVM->aCpus[iCpu];
2504 bool const fValid = HMIsEnabled(pVM)
2505 || ( uVersion > CPUM_SAVED_STATE_VERSION_VER3_2
2506 && !(pVCpu->cpum.s.fChanged & CPUM_CHANGED_HIDDEN_SEL_REGS_INVALID));
2507 PCPUMSELREG paSelReg = CPUMCTX_FIRST_SREG(&pVCpu->cpum.s.Guest);
2508 if (fValid)
2509 {
2510 for (uint32_t iSelReg = 0; iSelReg < X86_SREG_COUNT; iSelReg++)
2511 {
2512 paSelReg[iSelReg].fFlags = CPUMSELREG_FLAGS_VALID;
2513 paSelReg[iSelReg].ValidSel = paSelReg[iSelReg].Sel;
2514 }
2515
2516 pVCpu->cpum.s.Guest.ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
2517 pVCpu->cpum.s.Guest.ldtr.ValidSel = pVCpu->cpum.s.Guest.ldtr.Sel;
2518 }
2519 else
2520 {
2521 for (uint32_t iSelReg = 0; iSelReg < X86_SREG_COUNT; iSelReg++)
2522 {
2523 paSelReg[iSelReg].fFlags = 0;
2524 paSelReg[iSelReg].ValidSel = 0;
2525 }
2526
2527 /* This might not be 104% correct, but I think it's close
2528 enough for all practical purposes... (REM always loaded
2529 LDTR registers.) */
2530 pVCpu->cpum.s.Guest.ldtr.fFlags = CPUMSELREG_FLAGS_VALID;
2531 pVCpu->cpum.s.Guest.ldtr.ValidSel = pVCpu->cpum.s.Guest.ldtr.Sel;
2532 }
2533 pVCpu->cpum.s.Guest.tr.fFlags = CPUMSELREG_FLAGS_VALID;
2534 pVCpu->cpum.s.Guest.tr.ValidSel = pVCpu->cpum.s.Guest.tr.Sel;
2535 }
2536 }
2537
2538 /* Clear CPUM_CHANGED_HIDDEN_SEL_REGS_INVALID. */
2539 if ( uVersion > CPUM_SAVED_STATE_VERSION_VER3_2
2540 && uVersion <= CPUM_SAVED_STATE_VERSION_MEM)
2541 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++)
2542 pVM->aCpus[iCpu].cpum.s.fChanged &= CPUM_CHANGED_HIDDEN_SEL_REGS_INVALID;
2543
2544 /*
2545 * A quick sanity check.
2546 */
2547 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++)
2548 {
2549 PVMCPU pVCpu = &pVM->aCpus[iCpu];
2550 AssertLogRelReturn(!(pVCpu->cpum.s.Guest.es.fFlags & !CPUMSELREG_FLAGS_VALID_MASK), VERR_SSM_UNEXPECTED_DATA);
2551 AssertLogRelReturn(!(pVCpu->cpum.s.Guest.cs.fFlags & !CPUMSELREG_FLAGS_VALID_MASK), VERR_SSM_UNEXPECTED_DATA);
2552 AssertLogRelReturn(!(pVCpu->cpum.s.Guest.ss.fFlags & !CPUMSELREG_FLAGS_VALID_MASK), VERR_SSM_UNEXPECTED_DATA);
2553 AssertLogRelReturn(!(pVCpu->cpum.s.Guest.ds.fFlags & !CPUMSELREG_FLAGS_VALID_MASK), VERR_SSM_UNEXPECTED_DATA);
2554 AssertLogRelReturn(!(pVCpu->cpum.s.Guest.fs.fFlags & !CPUMSELREG_FLAGS_VALID_MASK), VERR_SSM_UNEXPECTED_DATA);
2555 AssertLogRelReturn(!(pVCpu->cpum.s.Guest.gs.fFlags & !CPUMSELREG_FLAGS_VALID_MASK), VERR_SSM_UNEXPECTED_DATA);
2556 }
2557 }
2558
2559 pVM->cpum.s.fPendingRestore = false;
2560
2561 /*
2562 * Guest CPUIDs.
2563 */
2564 if (uVersion > CPUM_SAVED_STATE_VERSION_VER3_0)
2565 return cpumR3LoadCpuId(pVM, pSSM, uVersion);
2566
2567 /** @todo Merge the code below into cpumR3LoadCpuId when we've found out what is
2568 * actually required. */
2569
2570 /*
2571 * Restore the CPUID leaves.
2572 *
2573 * Note that we support restoring less than the current amount of standard
2574 * leaves because we've been allowed more is newer version of VBox.
2575 */
2576 uint32_t cElements;
2577 int rc = SSMR3GetU32(pSSM, &cElements); AssertRCReturn(rc, rc);
2578 if (cElements > RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdStd))
2579 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
2580 SSMR3GetMem(pSSM, &pVM->cpum.s.aGuestCpuIdStd[0], cElements*sizeof(pVM->cpum.s.aGuestCpuIdStd[0]));
2581
2582 rc = SSMR3GetU32(pSSM, &cElements); AssertRCReturn(rc, rc);
2583 if (cElements != RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdExt))
2584 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
2585 SSMR3GetMem(pSSM, &pVM->cpum.s.aGuestCpuIdExt[0], sizeof(pVM->cpum.s.aGuestCpuIdExt));
2586
2587 rc = SSMR3GetU32(pSSM, &cElements); AssertRCReturn(rc, rc);
2588 if (cElements != RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdCentaur))
2589 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
2590 SSMR3GetMem(pSSM, &pVM->cpum.s.aGuestCpuIdCentaur[0], sizeof(pVM->cpum.s.aGuestCpuIdCentaur));
2591
2592 SSMR3GetMem(pSSM, &pVM->cpum.s.GuestCpuIdDef, sizeof(pVM->cpum.s.GuestCpuIdDef));
2593
2594 /*
2595 * Check that the basic cpuid id information is unchanged.
2596 */
2597 /** @todo we should check the 64 bits capabilities too! */
2598 uint32_t au32CpuId[8] = {0,0,0,0, 0,0,0,0};
2599 ASMCpuId(0, &au32CpuId[0], &au32CpuId[1], &au32CpuId[2], &au32CpuId[3]);
2600 ASMCpuId(1, &au32CpuId[4], &au32CpuId[5], &au32CpuId[6], &au32CpuId[7]);
2601 uint32_t au32CpuIdSaved[8];
2602 rc = SSMR3GetMem(pSSM, &au32CpuIdSaved[0], sizeof(au32CpuIdSaved));
2603 if (RT_SUCCESS(rc))
2604 {
2605 /* Ignore CPU stepping. */
2606 au32CpuId[4] &= 0xfffffff0;
2607 au32CpuIdSaved[4] &= 0xfffffff0;
2608
2609 /* Ignore APIC ID (AMD specs). */
2610 au32CpuId[5] &= ~0xff000000;
2611 au32CpuIdSaved[5] &= ~0xff000000;
2612
2613 /* Ignore the number of Logical CPUs (AMD specs). */
2614 au32CpuId[5] &= ~0x00ff0000;
2615 au32CpuIdSaved[5] &= ~0x00ff0000;
2616
2617 /* Ignore some advanced capability bits, that we don't expose to the guest. */
2618 au32CpuId[6] &= ~( X86_CPUID_FEATURE_ECX_DTES64
2619 | X86_CPUID_FEATURE_ECX_VMX
2620 | X86_CPUID_FEATURE_ECX_SMX
2621 | X86_CPUID_FEATURE_ECX_EST
2622 | X86_CPUID_FEATURE_ECX_TM2
2623 | X86_CPUID_FEATURE_ECX_CNTXID
2624 | X86_CPUID_FEATURE_ECX_TPRUPDATE
2625 | X86_CPUID_FEATURE_ECX_PDCM
2626 | X86_CPUID_FEATURE_ECX_DCA
2627 | X86_CPUID_FEATURE_ECX_X2APIC
2628 );
2629 au32CpuIdSaved[6] &= ~( X86_CPUID_FEATURE_ECX_DTES64
2630 | X86_CPUID_FEATURE_ECX_VMX
2631 | X86_CPUID_FEATURE_ECX_SMX
2632 | X86_CPUID_FEATURE_ECX_EST
2633 | X86_CPUID_FEATURE_ECX_TM2
2634 | X86_CPUID_FEATURE_ECX_CNTXID
2635 | X86_CPUID_FEATURE_ECX_TPRUPDATE
2636 | X86_CPUID_FEATURE_ECX_PDCM
2637 | X86_CPUID_FEATURE_ECX_DCA
2638 | X86_CPUID_FEATURE_ECX_X2APIC
2639 );
2640
2641 /* Make sure we don't forget to update the masks when enabling
2642 * features in the future.
2643 */
2644 AssertRelease(!(pVM->cpum.s.aGuestCpuIdStd[1].ecx &
2645 ( X86_CPUID_FEATURE_ECX_DTES64
2646 | X86_CPUID_FEATURE_ECX_VMX
2647 | X86_CPUID_FEATURE_ECX_SMX
2648 | X86_CPUID_FEATURE_ECX_EST
2649 | X86_CPUID_FEATURE_ECX_TM2
2650 | X86_CPUID_FEATURE_ECX_CNTXID
2651 | X86_CPUID_FEATURE_ECX_TPRUPDATE
2652 | X86_CPUID_FEATURE_ECX_PDCM
2653 | X86_CPUID_FEATURE_ECX_DCA
2654 | X86_CPUID_FEATURE_ECX_X2APIC
2655 )));
2656 /* do the compare */
2657 if (memcmp(au32CpuIdSaved, au32CpuId, sizeof(au32CpuIdSaved)))
2658 {
2659 if (SSMR3HandleGetAfter(pSSM) == SSMAFTER_DEBUG_IT)
2660 LogRel(("cpumR3LoadExec: CpuId mismatch! (ignored due to SSMAFTER_DEBUG_IT)\n"
2661 "Saved=%.*Rhxs\n"
2662 "Real =%.*Rhxs\n",
2663 sizeof(au32CpuIdSaved), au32CpuIdSaved,
2664 sizeof(au32CpuId), au32CpuId));
2665 else
2666 {
2667 LogRel(("cpumR3LoadExec: CpuId mismatch!\n"
2668 "Saved=%.*Rhxs\n"
2669 "Real =%.*Rhxs\n",
2670 sizeof(au32CpuIdSaved), au32CpuIdSaved,
2671 sizeof(au32CpuId), au32CpuId));
2672 rc = VERR_SSM_LOAD_CPUID_MISMATCH;
2673 }
2674 }
2675 }
2676
2677 return rc;
2678}
2679
2680
2681/**
2682 * @copydoc FNSSMINTLOADPREP
2683 */
2684static DECLCALLBACK(int) cpumR3LoadDone(PVM pVM, PSSMHANDLE pSSM)
2685{
2686 if (RT_FAILURE(SSMR3HandleGetStatus(pSSM)))
2687 return VINF_SUCCESS;
2688
2689 /* just check this since we can. */ /** @todo Add a SSM unit flag for indicating that it's mandatory during a restore. */
2690 if (pVM->cpum.s.fPendingRestore)
2691 {
2692 LogRel(("CPUM: Missing state!\n"));
2693 return VERR_INTERNAL_ERROR_2;
2694 }
2695
2696 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++)
2697 {
2698 /* Notify PGM of the NXE states in case they've changed. */
2699 PGMNotifyNxeChanged(&pVM->aCpus[iCpu], !!(pVM->aCpus[iCpu].cpum.s.Guest.msrEFER & MSR_K6_EFER_NXE));
2700
2701 /* Cache the local APIC base from the APIC device. During init. this is done in CPUMR3ResetCpu(). */
2702 PDMApicGetBase(&pVM->aCpus[iCpu], &pVM->aCpus[iCpu].cpum.s.Guest.msrApicBase);
2703 }
2704 return VINF_SUCCESS;
2705}
2706
2707
2708/**
2709 * Checks if the CPUM state restore is still pending.
2710 *
2711 * @returns true / false.
2712 * @param pVM Pointer to the VM.
2713 */
2714VMMDECL(bool) CPUMR3IsStateRestorePending(PVM pVM)
2715{
2716 return pVM->cpum.s.fPendingRestore;
2717}
2718
2719
2720/**
2721 * Formats the EFLAGS value into mnemonics.
2722 *
2723 * @param pszEFlags Where to write the mnemonics. (Assumes sufficient buffer space.)
2724 * @param efl The EFLAGS value.
2725 */
2726static void cpumR3InfoFormatFlags(char *pszEFlags, uint32_t efl)
2727{
2728 /*
2729 * Format the flags.
2730 */
2731 static const struct
2732 {
2733 const char *pszSet; const char *pszClear; uint32_t fFlag;
2734 } s_aFlags[] =
2735 {
2736 { "vip",NULL, X86_EFL_VIP },
2737 { "vif",NULL, X86_EFL_VIF },
2738 { "ac", NULL, X86_EFL_AC },
2739 { "vm", NULL, X86_EFL_VM },
2740 { "rf", NULL, X86_EFL_RF },
2741 { "nt", NULL, X86_EFL_NT },
2742 { "ov", "nv", X86_EFL_OF },
2743 { "dn", "up", X86_EFL_DF },
2744 { "ei", "di", X86_EFL_IF },
2745 { "tf", NULL, X86_EFL_TF },
2746 { "nt", "pl", X86_EFL_SF },
2747 { "nz", "zr", X86_EFL_ZF },
2748 { "ac", "na", X86_EFL_AF },
2749 { "po", "pe", X86_EFL_PF },
2750 { "cy", "nc", X86_EFL_CF },
2751 };
2752 char *psz = pszEFlags;
2753 for (unsigned i = 0; i < RT_ELEMENTS(s_aFlags); i++)
2754 {
2755 const char *pszAdd = s_aFlags[i].fFlag & efl ? s_aFlags[i].pszSet : s_aFlags[i].pszClear;
2756 if (pszAdd)
2757 {
2758 strcpy(psz, pszAdd);
2759 psz += strlen(pszAdd);
2760 *psz++ = ' ';
2761 }
2762 }
2763 psz[-1] = '\0';
2764}
2765
2766
2767/**
2768 * Formats a full register dump.
2769 *
2770 * @param pVM Pointer to the VM.
2771 * @param pCtx The context to format.
2772 * @param pCtxCore The context core to format.
2773 * @param pHlp Output functions.
2774 * @param enmType The dump type.
2775 * @param pszPrefix Register name prefix.
2776 */
2777static void cpumR3InfoOne(PVM pVM, PCPUMCTX pCtx, PCCPUMCTXCORE pCtxCore, PCDBGFINFOHLP pHlp, CPUMDUMPTYPE enmType,
2778 const char *pszPrefix)
2779{
2780 NOREF(pVM);
2781
2782 /*
2783 * Format the EFLAGS.
2784 */
2785 uint32_t efl = pCtxCore->eflags.u32;
2786 char szEFlags[80];
2787 cpumR3InfoFormatFlags(&szEFlags[0], efl);
2788
2789 /*
2790 * Format the registers.
2791 */
2792 switch (enmType)
2793 {
2794 case CPUMDUMPTYPE_TERSE:
2795 if (CPUMIsGuestIn64BitCodeEx(pCtx))
2796 pHlp->pfnPrintf(pHlp,
2797 "%srax=%016RX64 %srbx=%016RX64 %srcx=%016RX64 %srdx=%016RX64\n"
2798 "%srsi=%016RX64 %srdi=%016RX64 %sr8 =%016RX64 %sr9 =%016RX64\n"
2799 "%sr10=%016RX64 %sr11=%016RX64 %sr12=%016RX64 %sr13=%016RX64\n"
2800 "%sr14=%016RX64 %sr15=%016RX64\n"
2801 "%srip=%016RX64 %srsp=%016RX64 %srbp=%016RX64 %siopl=%d %*s\n"
2802 "%scs=%04x %sss=%04x %sds=%04x %ses=%04x %sfs=%04x %sgs=%04x %seflags=%08x\n",
2803 pszPrefix, pCtxCore->rax, pszPrefix, pCtxCore->rbx, pszPrefix, pCtxCore->rcx, pszPrefix, pCtxCore->rdx, pszPrefix, pCtxCore->rsi, pszPrefix, pCtxCore->rdi,
2804 pszPrefix, pCtxCore->r8, pszPrefix, pCtxCore->r9, pszPrefix, pCtxCore->r10, pszPrefix, pCtxCore->r11, pszPrefix, pCtxCore->r12, pszPrefix, pCtxCore->r13,
2805 pszPrefix, pCtxCore->r14, pszPrefix, pCtxCore->r15,
2806 pszPrefix, pCtxCore->rip, pszPrefix, pCtxCore->rsp, pszPrefix, pCtxCore->rbp, pszPrefix, X86_EFL_GET_IOPL(efl), *pszPrefix ? 33 : 31, szEFlags,
2807 pszPrefix, pCtxCore->cs.Sel, pszPrefix, pCtxCore->ss.Sel, pszPrefix, pCtxCore->ds.Sel, pszPrefix, pCtxCore->es.Sel,
2808 pszPrefix, pCtxCore->fs.Sel, pszPrefix, pCtxCore->gs.Sel, pszPrefix, efl);
2809 else
2810 pHlp->pfnPrintf(pHlp,
2811 "%seax=%08x %sebx=%08x %secx=%08x %sedx=%08x %sesi=%08x %sedi=%08x\n"
2812 "%seip=%08x %sesp=%08x %sebp=%08x %siopl=%d %*s\n"
2813 "%scs=%04x %sss=%04x %sds=%04x %ses=%04x %sfs=%04x %sgs=%04x %seflags=%08x\n",
2814 pszPrefix, pCtxCore->eax, pszPrefix, pCtxCore->ebx, pszPrefix, pCtxCore->ecx, pszPrefix, pCtxCore->edx, pszPrefix, pCtxCore->esi, pszPrefix, pCtxCore->edi,
2815 pszPrefix, pCtxCore->eip, pszPrefix, pCtxCore->esp, pszPrefix, pCtxCore->ebp, pszPrefix, X86_EFL_GET_IOPL(efl), *pszPrefix ? 33 : 31, szEFlags,
2816 pszPrefix, pCtxCore->cs.Sel, pszPrefix, pCtxCore->ss.Sel, pszPrefix, pCtxCore->ds.Sel, pszPrefix, pCtxCore->es.Sel,
2817 pszPrefix, pCtxCore->fs.Sel, pszPrefix, pCtxCore->gs.Sel, pszPrefix, efl);
2818 break;
2819
2820 case CPUMDUMPTYPE_DEFAULT:
2821 if (CPUMIsGuestIn64BitCodeEx(pCtx))
2822 pHlp->pfnPrintf(pHlp,
2823 "%srax=%016RX64 %srbx=%016RX64 %srcx=%016RX64 %srdx=%016RX64\n"
2824 "%srsi=%016RX64 %srdi=%016RX64 %sr8 =%016RX64 %sr9 =%016RX64\n"
2825 "%sr10=%016RX64 %sr11=%016RX64 %sr12=%016RX64 %sr13=%016RX64\n"
2826 "%sr14=%016RX64 %sr15=%016RX64\n"
2827 "%srip=%016RX64 %srsp=%016RX64 %srbp=%016RX64 %siopl=%d %*s\n"
2828 "%scs=%04x %sss=%04x %sds=%04x %ses=%04x %sfs=%04x %sgs=%04x %str=%04x %seflags=%08x\n"
2829 "%scr0=%08RX64 %scr2=%08RX64 %scr3=%08RX64 %scr4=%08RX64 %sgdtr=%016RX64:%04x %sldtr=%04x\n"
2830 ,
2831 pszPrefix, pCtxCore->rax, pszPrefix, pCtxCore->rbx, pszPrefix, pCtxCore->rcx, pszPrefix, pCtxCore->rdx, pszPrefix, pCtxCore->rsi, pszPrefix, pCtxCore->rdi,
2832 pszPrefix, pCtxCore->r8, pszPrefix, pCtxCore->r9, pszPrefix, pCtxCore->r10, pszPrefix, pCtxCore->r11, pszPrefix, pCtxCore->r12, pszPrefix, pCtxCore->r13,
2833 pszPrefix, pCtxCore->r14, pszPrefix, pCtxCore->r15,
2834 pszPrefix, pCtxCore->rip, pszPrefix, pCtxCore->rsp, pszPrefix, pCtxCore->rbp, pszPrefix, X86_EFL_GET_IOPL(efl), *pszPrefix ? 33 : 31, szEFlags,
2835 pszPrefix, pCtxCore->cs.Sel, pszPrefix, pCtxCore->ss.Sel, pszPrefix, pCtxCore->ds.Sel, pszPrefix, pCtxCore->es.Sel,
2836 pszPrefix, pCtxCore->fs.Sel, pszPrefix, pCtxCore->gs.Sel, pszPrefix, pCtx->tr.Sel, pszPrefix, efl,
2837 pszPrefix, pCtx->cr0, pszPrefix, pCtx->cr2, pszPrefix, pCtx->cr3, pszPrefix, pCtx->cr4,
2838 pszPrefix, pCtx->gdtr.pGdt, pCtx->gdtr.cbGdt, pszPrefix, pCtx->ldtr.Sel);
2839 else
2840 pHlp->pfnPrintf(pHlp,
2841 "%seax=%08x %sebx=%08x %secx=%08x %sedx=%08x %sesi=%08x %sedi=%08x\n"
2842 "%seip=%08x %sesp=%08x %sebp=%08x %siopl=%d %*s\n"
2843 "%scs=%04x %sss=%04x %sds=%04x %ses=%04x %sfs=%04x %sgs=%04x %str=%04x %seflags=%08x\n"
2844 "%scr0=%08RX64 %scr2=%08RX64 %scr3=%08RX64 %scr4=%08RX64 %sgdtr=%08RX64:%04x %sldtr=%04x\n"
2845 ,
2846 pszPrefix, pCtxCore->eax, pszPrefix, pCtxCore->ebx, pszPrefix, pCtxCore->ecx, pszPrefix, pCtxCore->edx, pszPrefix, pCtxCore->esi, pszPrefix, pCtxCore->edi,
2847 pszPrefix, pCtxCore->eip, pszPrefix, pCtxCore->esp, pszPrefix, pCtxCore->ebp, pszPrefix, X86_EFL_GET_IOPL(efl), *pszPrefix ? 33 : 31, szEFlags,
2848 pszPrefix, pCtxCore->cs.Sel, pszPrefix, pCtxCore->ss.Sel, pszPrefix, pCtxCore->ds.Sel, pszPrefix, pCtxCore->es.Sel,
2849 pszPrefix, pCtxCore->fs.Sel, pszPrefix, pCtxCore->gs.Sel, pszPrefix, pCtx->tr.Sel, pszPrefix, efl,
2850 pszPrefix, pCtx->cr0, pszPrefix, pCtx->cr2, pszPrefix, pCtx->cr3, pszPrefix, pCtx->cr4,
2851 pszPrefix, pCtx->gdtr.pGdt, pCtx->gdtr.cbGdt, pszPrefix, pCtx->ldtr.Sel);
2852 break;
2853
2854 case CPUMDUMPTYPE_VERBOSE:
2855 if (CPUMIsGuestIn64BitCodeEx(pCtx))
2856 pHlp->pfnPrintf(pHlp,
2857 "%srax=%016RX64 %srbx=%016RX64 %srcx=%016RX64 %srdx=%016RX64\n"
2858 "%srsi=%016RX64 %srdi=%016RX64 %sr8 =%016RX64 %sr9 =%016RX64\n"
2859 "%sr10=%016RX64 %sr11=%016RX64 %sr12=%016RX64 %sr13=%016RX64\n"
2860 "%sr14=%016RX64 %sr15=%016RX64\n"
2861 "%srip=%016RX64 %srsp=%016RX64 %srbp=%016RX64 %siopl=%d %*s\n"
2862 "%scs={%04x base=%016RX64 limit=%08x flags=%08x}\n"
2863 "%sds={%04x base=%016RX64 limit=%08x flags=%08x}\n"
2864 "%ses={%04x base=%016RX64 limit=%08x flags=%08x}\n"
2865 "%sfs={%04x base=%016RX64 limit=%08x flags=%08x}\n"
2866 "%sgs={%04x base=%016RX64 limit=%08x flags=%08x}\n"
2867 "%sss={%04x base=%016RX64 limit=%08x flags=%08x}\n"
2868 "%scr0=%016RX64 %scr2=%016RX64 %scr3=%016RX64 %scr4=%016RX64\n"
2869 "%sdr0=%016RX64 %sdr1=%016RX64 %sdr2=%016RX64 %sdr3=%016RX64\n"
2870 "%sdr4=%016RX64 %sdr5=%016RX64 %sdr6=%016RX64 %sdr7=%016RX64\n"
2871 "%sgdtr=%016RX64:%04x %sidtr=%016RX64:%04x %seflags=%08x\n"
2872 "%sldtr={%04x base=%08RX64 limit=%08x flags=%08x}\n"
2873 "%str ={%04x base=%08RX64 limit=%08x flags=%08x}\n"
2874 "%sSysEnter={cs=%04llx eip=%016RX64 esp=%016RX64}\n"
2875 ,
2876 pszPrefix, pCtxCore->rax, pszPrefix, pCtxCore->rbx, pszPrefix, pCtxCore->rcx, pszPrefix, pCtxCore->rdx, pszPrefix, pCtxCore->rsi, pszPrefix, pCtxCore->rdi,
2877 pszPrefix, pCtxCore->r8, pszPrefix, pCtxCore->r9, pszPrefix, pCtxCore->r10, pszPrefix, pCtxCore->r11, pszPrefix, pCtxCore->r12, pszPrefix, pCtxCore->r13,
2878 pszPrefix, pCtxCore->r14, pszPrefix, pCtxCore->r15,
2879 pszPrefix, pCtxCore->rip, pszPrefix, pCtxCore->rsp, pszPrefix, pCtxCore->rbp, pszPrefix, X86_EFL_GET_IOPL(efl), *pszPrefix ? 33 : 31, szEFlags,
2880 pszPrefix, pCtxCore->cs.Sel, pCtx->cs.u64Base, pCtx->cs.u32Limit, pCtx->cs.Attr.u,
2881 pszPrefix, pCtxCore->ds.Sel, pCtx->ds.u64Base, pCtx->ds.u32Limit, pCtx->ds.Attr.u,
2882 pszPrefix, pCtxCore->es.Sel, pCtx->es.u64Base, pCtx->es.u32Limit, pCtx->es.Attr.u,
2883 pszPrefix, pCtxCore->fs.Sel, pCtx->fs.u64Base, pCtx->fs.u32Limit, pCtx->fs.Attr.u,
2884 pszPrefix, pCtxCore->gs.Sel, pCtx->gs.u64Base, pCtx->gs.u32Limit, pCtx->gs.Attr.u,
2885 pszPrefix, pCtxCore->ss.Sel, pCtx->ss.u64Base, pCtx->ss.u32Limit, pCtx->ss.Attr.u,
2886 pszPrefix, pCtx->cr0, pszPrefix, pCtx->cr2, pszPrefix, pCtx->cr3, pszPrefix, pCtx->cr4,
2887 pszPrefix, pCtx->dr[0], pszPrefix, pCtx->dr[1], pszPrefix, pCtx->dr[2], pszPrefix, pCtx->dr[3],
2888 pszPrefix, pCtx->dr[4], pszPrefix, pCtx->dr[5], pszPrefix, pCtx->dr[6], pszPrefix, pCtx->dr[7],
2889 pszPrefix, pCtx->gdtr.pGdt, pCtx->gdtr.cbGdt, pszPrefix, pCtx->idtr.pIdt, pCtx->idtr.cbIdt, pszPrefix, efl,
2890 pszPrefix, pCtx->ldtr.Sel, pCtx->ldtr.u64Base, pCtx->ldtr.u32Limit, pCtx->ldtr.Attr.u,
2891 pszPrefix, pCtx->tr.Sel, pCtx->tr.u64Base, pCtx->tr.u32Limit, pCtx->tr.Attr.u,
2892 pszPrefix, pCtx->SysEnter.cs, pCtx->SysEnter.eip, pCtx->SysEnter.esp);
2893 else
2894 pHlp->pfnPrintf(pHlp,
2895 "%seax=%08x %sebx=%08x %secx=%08x %sedx=%08x %sesi=%08x %sedi=%08x\n"
2896 "%seip=%08x %sesp=%08x %sebp=%08x %siopl=%d %*s\n"
2897 "%scs={%04x base=%016RX64 limit=%08x flags=%08x} %sdr0=%08RX64 %sdr1=%08RX64\n"
2898 "%sds={%04x base=%016RX64 limit=%08x flags=%08x} %sdr2=%08RX64 %sdr3=%08RX64\n"
2899 "%ses={%04x base=%016RX64 limit=%08x flags=%08x} %sdr4=%08RX64 %sdr5=%08RX64\n"
2900 "%sfs={%04x base=%016RX64 limit=%08x flags=%08x} %sdr6=%08RX64 %sdr7=%08RX64\n"
2901 "%sgs={%04x base=%016RX64 limit=%08x flags=%08x} %scr0=%08RX64 %scr2=%08RX64\n"
2902 "%sss={%04x base=%016RX64 limit=%08x flags=%08x} %scr3=%08RX64 %scr4=%08RX64\n"
2903 "%sgdtr=%016RX64:%04x %sidtr=%016RX64:%04x %seflags=%08x\n"
2904 "%sldtr={%04x base=%08RX64 limit=%08x flags=%08x}\n"
2905 "%str ={%04x base=%08RX64 limit=%08x flags=%08x}\n"
2906 "%sSysEnter={cs=%04llx eip=%08llx esp=%08llx}\n"
2907 ,
2908 pszPrefix, pCtxCore->eax, pszPrefix, pCtxCore->ebx, pszPrefix, pCtxCore->ecx, pszPrefix, pCtxCore->edx, pszPrefix, pCtxCore->esi, pszPrefix, pCtxCore->edi,
2909 pszPrefix, pCtxCore->eip, pszPrefix, pCtxCore->esp, pszPrefix, pCtxCore->ebp, pszPrefix, X86_EFL_GET_IOPL(efl), *pszPrefix ? 33 : 31, szEFlags,
2910 pszPrefix, pCtxCore->cs.Sel, pCtx->cs.u64Base, pCtx->cs.u32Limit, pCtx->cs.Attr.u, pszPrefix, pCtx->dr[0], pszPrefix, pCtx->dr[1],
2911 pszPrefix, pCtxCore->ds.Sel, pCtx->ds.u64Base, pCtx->ds.u32Limit, pCtx->ds.Attr.u, pszPrefix, pCtx->dr[2], pszPrefix, pCtx->dr[3],
2912 pszPrefix, pCtxCore->es.Sel, pCtx->es.u64Base, pCtx->es.u32Limit, pCtx->es.Attr.u, pszPrefix, pCtx->dr[4], pszPrefix, pCtx->dr[5],
2913 pszPrefix, pCtxCore->fs.Sel, pCtx->fs.u64Base, pCtx->fs.u32Limit, pCtx->fs.Attr.u, pszPrefix, pCtx->dr[6], pszPrefix, pCtx->dr[7],
2914 pszPrefix, pCtxCore->gs.Sel, pCtx->gs.u64Base, pCtx->gs.u32Limit, pCtx->gs.Attr.u, pszPrefix, pCtx->cr0, pszPrefix, pCtx->cr2,
2915 pszPrefix, pCtxCore->ss.Sel, pCtx->ss.u64Base, pCtx->ss.u32Limit, pCtx->ss.Attr.u, pszPrefix, pCtx->cr3, pszPrefix, pCtx->cr4,
2916 pszPrefix, pCtx->gdtr.pGdt, pCtx->gdtr.cbGdt, pszPrefix, pCtx->idtr.pIdt, pCtx->idtr.cbIdt, pszPrefix, efl,
2917 pszPrefix, pCtx->ldtr.Sel, pCtx->ldtr.u64Base, pCtx->ldtr.u32Limit, pCtx->ldtr.Attr.u,
2918 pszPrefix, pCtx->tr.Sel, pCtx->tr.u64Base, pCtx->tr.u32Limit, pCtx->tr.Attr.u,
2919 pszPrefix, pCtx->SysEnter.cs, pCtx->SysEnter.eip, pCtx->SysEnter.esp);
2920
2921 pHlp->pfnPrintf(pHlp,
2922 "%sFCW=%04x %sFSW=%04x %sFTW=%04x %sFOP=%04x %sMXCSR=%08x %sMXCSR_MASK=%08x\n"
2923 "%sFPUIP=%08x %sCS=%04x %sRsrvd1=%04x %sFPUDP=%08x %sDS=%04x %sRsvrd2=%04x\n"
2924 ,
2925 pszPrefix, pCtx->fpu.FCW, pszPrefix, pCtx->fpu.FSW, pszPrefix, pCtx->fpu.FTW, pszPrefix, pCtx->fpu.FOP,
2926 pszPrefix, pCtx->fpu.MXCSR, pszPrefix, pCtx->fpu.MXCSR_MASK,
2927 pszPrefix, pCtx->fpu.FPUIP, pszPrefix, pCtx->fpu.CS, pszPrefix, pCtx->fpu.Rsrvd1,
2928 pszPrefix, pCtx->fpu.FPUDP, pszPrefix, pCtx->fpu.DS, pszPrefix, pCtx->fpu.Rsrvd2
2929 );
2930 unsigned iShift = (pCtx->fpu.FSW >> 11) & 7;
2931 for (unsigned iST = 0; iST < RT_ELEMENTS(pCtx->fpu.aRegs); iST++)
2932 {
2933 unsigned iFPR = (iST + iShift) % RT_ELEMENTS(pCtx->fpu.aRegs);
2934 unsigned uTag = pCtx->fpu.FTW & (1 << iFPR) ? 1 : 0;
2935 char chSign = pCtx->fpu.aRegs[0].au16[4] & 0x8000 ? '-' : '+';
2936 unsigned iInteger = (unsigned)(pCtx->fpu.aRegs[0].au64[0] >> 63);
2937 uint64_t u64Fraction = pCtx->fpu.aRegs[0].au64[0] & UINT64_C(0x7fffffffffffffff);
2938 unsigned uExponent = pCtx->fpu.aRegs[0].au16[4] & 0x7fff;
2939 /** @todo This isn't entirenly correct and needs more work! */
2940 pHlp->pfnPrintf(pHlp,
2941 "%sST(%u)=%sFPR%u={%04RX16'%08RX32'%08RX32} t%d %c%u.%022llu ^ %u",
2942 pszPrefix, iST, pszPrefix, iFPR,
2943 pCtx->fpu.aRegs[0].au16[4], pCtx->fpu.aRegs[0].au32[1], pCtx->fpu.aRegs[0].au32[0],
2944 uTag, chSign, iInteger, u64Fraction, uExponent);
2945 if (pCtx->fpu.aRegs[0].au16[5] || pCtx->fpu.aRegs[0].au16[6] || pCtx->fpu.aRegs[0].au16[7])
2946 pHlp->pfnPrintf(pHlp, " res={%04RX16,%04RX16,%04RX16}\n",
2947 pCtx->fpu.aRegs[0].au16[5], pCtx->fpu.aRegs[0].au16[6], pCtx->fpu.aRegs[0].au16[7]);
2948 else
2949 pHlp->pfnPrintf(pHlp, "\n");
2950 }
2951 for (unsigned iXMM = 0; iXMM < RT_ELEMENTS(pCtx->fpu.aXMM); iXMM++)
2952 pHlp->pfnPrintf(pHlp,
2953 iXMM & 1
2954 ? "%sXMM%u%s=%08RX32'%08RX32'%08RX32'%08RX32\n"
2955 : "%sXMM%u%s=%08RX32'%08RX32'%08RX32'%08RX32 ",
2956 pszPrefix, iXMM, iXMM < 10 ? " " : "",
2957 pCtx->fpu.aXMM[iXMM].au32[3],
2958 pCtx->fpu.aXMM[iXMM].au32[2],
2959 pCtx->fpu.aXMM[iXMM].au32[1],
2960 pCtx->fpu.aXMM[iXMM].au32[0]);
2961 for (unsigned i = 0; i < RT_ELEMENTS(pCtx->fpu.au32RsrvdRest); i++)
2962 if (pCtx->fpu.au32RsrvdRest[i])
2963 pHlp->pfnPrintf(pHlp, "%sRsrvdRest[i]=%RX32 (offset=%#x)\n",
2964 pszPrefix, i, pCtx->fpu.au32RsrvdRest[i], RT_OFFSETOF(X86FXSTATE, au32RsrvdRest[i]) );
2965
2966 pHlp->pfnPrintf(pHlp,
2967 "%sEFER =%016RX64\n"
2968 "%sPAT =%016RX64\n"
2969 "%sSTAR =%016RX64\n"
2970 "%sCSTAR =%016RX64\n"
2971 "%sLSTAR =%016RX64\n"
2972 "%sSFMASK =%016RX64\n"
2973 "%sKERNELGSBASE =%016RX64\n",
2974 pszPrefix, pCtx->msrEFER,
2975 pszPrefix, pCtx->msrPAT,
2976 pszPrefix, pCtx->msrSTAR,
2977 pszPrefix, pCtx->msrCSTAR,
2978 pszPrefix, pCtx->msrLSTAR,
2979 pszPrefix, pCtx->msrSFMASK,
2980 pszPrefix, pCtx->msrKERNELGSBASE);
2981 break;
2982 }
2983}
2984
2985
2986/**
2987 * Display all cpu states and any other cpum info.
2988 *
2989 * @param pVM Pointer to the VM.
2990 * @param pHlp The info helper functions.
2991 * @param pszArgs Arguments, ignored.
2992 */
2993static DECLCALLBACK(void) cpumR3InfoAll(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
2994{
2995 cpumR3InfoGuest(pVM, pHlp, pszArgs);
2996 cpumR3InfoGuestInstr(pVM, pHlp, pszArgs);
2997 cpumR3InfoHyper(pVM, pHlp, pszArgs);
2998 cpumR3InfoHost(pVM, pHlp, pszArgs);
2999}
3000
3001
3002/**
3003 * Parses the info argument.
3004 *
3005 * The argument starts with 'verbose', 'terse' or 'default' and then
3006 * continues with the comment string.
3007 *
3008 * @param pszArgs The pointer to the argument string.
3009 * @param penmType Where to store the dump type request.
3010 * @param ppszComment Where to store the pointer to the comment string.
3011 */
3012static void cpumR3InfoParseArg(const char *pszArgs, CPUMDUMPTYPE *penmType, const char **ppszComment)
3013{
3014 if (!pszArgs)
3015 {
3016 *penmType = CPUMDUMPTYPE_DEFAULT;
3017 *ppszComment = "";
3018 }
3019 else
3020 {
3021 if (!strncmp(pszArgs, "verbose", sizeof("verbose") - 1))
3022 {
3023 pszArgs += 7;
3024 *penmType = CPUMDUMPTYPE_VERBOSE;
3025 }
3026 else if (!strncmp(pszArgs, "terse", sizeof("terse") - 1))
3027 {
3028 pszArgs += 5;
3029 *penmType = CPUMDUMPTYPE_TERSE;
3030 }
3031 else if (!strncmp(pszArgs, "default", sizeof("default") - 1))
3032 {
3033 pszArgs += 7;
3034 *penmType = CPUMDUMPTYPE_DEFAULT;
3035 }
3036 else
3037 *penmType = CPUMDUMPTYPE_DEFAULT;
3038 *ppszComment = RTStrStripL(pszArgs);
3039 }
3040}
3041
3042
3043/**
3044 * Display the guest cpu state.
3045 *
3046 * @param pVM Pointer to the VM.
3047 * @param pHlp The info helper functions.
3048 * @param pszArgs Arguments, ignored.
3049 */
3050static DECLCALLBACK(void) cpumR3InfoGuest(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
3051{
3052 CPUMDUMPTYPE enmType;
3053 const char *pszComment;
3054 cpumR3InfoParseArg(pszArgs, &enmType, &pszComment);
3055
3056 /* @todo SMP support! */
3057 PVMCPU pVCpu = VMMGetCpu(pVM);
3058 if (!pVCpu)
3059 pVCpu = &pVM->aCpus[0];
3060
3061 pHlp->pfnPrintf(pHlp, "Guest CPUM (VCPU %d) state: %s\n", pVCpu->idCpu, pszComment);
3062
3063 PCPUMCTX pCtx = &pVCpu->cpum.s.Guest;
3064 cpumR3InfoOne(pVM, pCtx, CPUMCTX2CORE(pCtx), pHlp, enmType, "");
3065}
3066
3067
3068/**
3069 * Display the current guest instruction
3070 *
3071 * @param pVM Pointer to the VM.
3072 * @param pHlp The info helper functions.
3073 * @param pszArgs Arguments, ignored.
3074 */
3075static DECLCALLBACK(void) cpumR3InfoGuestInstr(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
3076{
3077 NOREF(pszArgs);
3078
3079 /** @todo SMP support! */
3080 PVMCPU pVCpu = VMMGetCpu(pVM);
3081 if (!pVCpu)
3082 pVCpu = &pVM->aCpus[0];
3083
3084 char szInstruction[256];
3085 int rc = DBGFR3DisasInstrCurrent(pVCpu, szInstruction, sizeof(szInstruction));
3086 if (RT_SUCCESS(rc))
3087 pHlp->pfnPrintf(pHlp, "\nCPUM: %s\n\n", szInstruction);
3088}
3089
3090
3091/**
3092 * Display the hypervisor cpu state.
3093 *
3094 * @param pVM Pointer to the VM.
3095 * @param pHlp The info helper functions.
3096 * @param pszArgs Arguments, ignored.
3097 */
3098static DECLCALLBACK(void) cpumR3InfoHyper(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
3099{
3100 CPUMDUMPTYPE enmType;
3101 const char *pszComment;
3102 /* @todo SMP */
3103 PVMCPU pVCpu = &pVM->aCpus[0];
3104
3105 cpumR3InfoParseArg(pszArgs, &enmType, &pszComment);
3106 pHlp->pfnPrintf(pHlp, "Hypervisor CPUM state: %s\n", pszComment);
3107 cpumR3InfoOne(pVM, &pVCpu->cpum.s.Hyper, CPUMCTX2CORE(&pVCpu->cpum.s.Hyper), pHlp, enmType, ".");
3108 pHlp->pfnPrintf(pHlp, "CR4OrMask=%#x CR4AndMask=%#x\n", pVM->cpum.s.CR4.OrMask, pVM->cpum.s.CR4.AndMask);
3109}
3110
3111
3112/**
3113 * Display the host cpu state.
3114 *
3115 * @param pVM Pointer to the VM.
3116 * @param pHlp The info helper functions.
3117 * @param pszArgs Arguments, ignored.
3118 */
3119static DECLCALLBACK(void) cpumR3InfoHost(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
3120{
3121 CPUMDUMPTYPE enmType;
3122 const char *pszComment;
3123 cpumR3InfoParseArg(pszArgs, &enmType, &pszComment);
3124 pHlp->pfnPrintf(pHlp, "Host CPUM state: %s\n", pszComment);
3125
3126 /*
3127 * Format the EFLAGS.
3128 */
3129 /* @todo SMP */
3130 PCPUMHOSTCTX pCtx = &pVM->aCpus[0].cpum.s.Host;
3131#if HC_ARCH_BITS == 32
3132 uint32_t efl = pCtx->eflags.u32;
3133#else
3134 uint64_t efl = pCtx->rflags;
3135#endif
3136 char szEFlags[80];
3137 cpumR3InfoFormatFlags(&szEFlags[0], efl);
3138
3139 /*
3140 * Format the registers.
3141 */
3142#if HC_ARCH_BITS == 32
3143# ifdef VBOX_WITH_HYBRID_32BIT_KERNEL
3144 if (!(pCtx->efer & MSR_K6_EFER_LMA))
3145# endif
3146 {
3147 pHlp->pfnPrintf(pHlp,
3148 "eax=xxxxxxxx ebx=%08x ecx=xxxxxxxx edx=xxxxxxxx esi=%08x edi=%08x\n"
3149 "eip=xxxxxxxx esp=%08x ebp=%08x iopl=%d %31s\n"
3150 "cs=%04x ds=%04x es=%04x fs=%04x gs=%04x eflags=%08x\n"
3151 "cr0=%08RX64 cr2=xxxxxxxx cr3=%08RX64 cr4=%08RX64 gdtr=%08x:%04x ldtr=%04x\n"
3152 "dr[0]=%08RX64 dr[1]=%08RX64x dr[2]=%08RX64 dr[3]=%08RX64x dr[6]=%08RX64 dr[7]=%08RX64\n"
3153 "SysEnter={cs=%04x eip=%08x esp=%08x}\n"
3154 ,
3155 /*pCtx->eax,*/ pCtx->ebx, /*pCtx->ecx, pCtx->edx,*/ pCtx->esi, pCtx->edi,
3156 /*pCtx->eip,*/ pCtx->esp, pCtx->ebp, X86_EFL_GET_IOPL(efl), szEFlags,
3157 pCtx->cs, pCtx->ds, pCtx->es, pCtx->fs, pCtx->gs, efl,
3158 pCtx->cr0, /*pCtx->cr2,*/ pCtx->cr3, pCtx->cr4,
3159 pCtx->dr0, pCtx->dr1, pCtx->dr2, pCtx->dr3, pCtx->dr6, pCtx->dr7,
3160 (uint32_t)pCtx->gdtr.uAddr, pCtx->gdtr.cb, pCtx->ldtr,
3161 pCtx->SysEnter.cs, pCtx->SysEnter.eip, pCtx->SysEnter.esp);
3162 }
3163# ifdef VBOX_WITH_HYBRID_32BIT_KERNEL
3164 else
3165# endif
3166#endif
3167#if HC_ARCH_BITS == 64 || defined(VBOX_WITH_HYBRID_32BIT_KERNEL)
3168 {
3169 pHlp->pfnPrintf(pHlp,
3170 "rax=xxxxxxxxxxxxxxxx rbx=%016RX64 rcx=xxxxxxxxxxxxxxxx\n"
3171 "rdx=xxxxxxxxxxxxxxxx rsi=%016RX64 rdi=%016RX64\n"
3172 "rip=xxxxxxxxxxxxxxxx rsp=%016RX64 rbp=%016RX64\n"
3173 " r8=xxxxxxxxxxxxxxxx r9=xxxxxxxxxxxxxxxx r10=%016RX64\n"
3174 "r11=%016RX64 r12=%016RX64 r13=%016RX64\n"
3175 "r14=%016RX64 r15=%016RX64\n"
3176 "iopl=%d %31s\n"
3177 "cs=%04x ds=%04x es=%04x fs=%04x gs=%04x eflags=%08RX64\n"
3178 "cr0=%016RX64 cr2=xxxxxxxxxxxxxxxx cr3=%016RX64\n"
3179 "cr4=%016RX64 ldtr=%04x tr=%04x\n"
3180 "dr[0]=%016RX64 dr[1]=%016RX64 dr[2]=%016RX64\n"
3181 "dr[3]=%016RX64 dr[6]=%016RX64 dr[7]=%016RX64\n"
3182 "gdtr=%016RX64:%04x idtr=%016RX64:%04x\n"
3183 "SysEnter={cs=%04x eip=%08x esp=%08x}\n"
3184 "FSbase=%016RX64 GSbase=%016RX64 efer=%08RX64\n"
3185 ,
3186 /*pCtx->rax,*/ pCtx->rbx, /*pCtx->rcx,
3187 pCtx->rdx,*/ pCtx->rsi, pCtx->rdi,
3188 /*pCtx->rip,*/ pCtx->rsp, pCtx->rbp,
3189 /*pCtx->r8, pCtx->r9,*/ pCtx->r10,
3190 pCtx->r11, pCtx->r12, pCtx->r13,
3191 pCtx->r14, pCtx->r15,
3192 X86_EFL_GET_IOPL(efl), szEFlags,
3193 pCtx->cs, pCtx->ds, pCtx->es, pCtx->fs, pCtx->gs, efl,
3194 pCtx->cr0, /*pCtx->cr2,*/ pCtx->cr3,
3195 pCtx->cr4, pCtx->ldtr, pCtx->tr,
3196 pCtx->dr0, pCtx->dr1, pCtx->dr2,
3197 pCtx->dr3, pCtx->dr6, pCtx->dr7,
3198 pCtx->gdtr.uAddr, pCtx->gdtr.cb, pCtx->idtr.uAddr, pCtx->idtr.cb,
3199 pCtx->SysEnter.cs, pCtx->SysEnter.eip, pCtx->SysEnter.esp,
3200 pCtx->FSbase, pCtx->GSbase, pCtx->efer);
3201 }
3202#endif
3203}
3204
3205
3206/**
3207 * Get L1 cache / TLS associativity.
3208 */
3209static const char *getCacheAss(unsigned u, char *pszBuf)
3210{
3211 if (u == 0)
3212 return "res0 ";
3213 if (u == 1)
3214 return "direct";
3215 if (u == 255)
3216 return "fully";
3217 if (u >= 256)
3218 return "???";
3219
3220 RTStrPrintf(pszBuf, 16, "%d way", u);
3221 return pszBuf;
3222}
3223
3224
3225/**
3226 * Get L2 cache associativity.
3227 */
3228const char *getL2CacheAss(unsigned u)
3229{
3230 switch (u)
3231 {
3232 case 0: return "off ";
3233 case 1: return "direct";
3234 case 2: return "2 way ";
3235 case 3: return "res3 ";
3236 case 4: return "4 way ";
3237 case 5: return "res5 ";
3238 case 6: return "8 way ";
3239 case 7: return "res7 ";
3240 case 8: return "16 way";
3241 case 9: return "res9 ";
3242 case 10: return "res10 ";
3243 case 11: return "res11 ";
3244 case 12: return "res12 ";
3245 case 13: return "res13 ";
3246 case 14: return "res14 ";
3247 case 15: return "fully ";
3248 default: return "????";
3249 }
3250}
3251
3252
3253/**
3254 * Display the guest CpuId leaves.
3255 *
3256 * @param pVM Pointer to the VM.
3257 * @param pHlp The info helper functions.
3258 * @param pszArgs "terse", "default" or "verbose".
3259 */
3260static DECLCALLBACK(void) cpumR3CpuIdInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
3261{
3262 /*
3263 * Parse the argument.
3264 */
3265 unsigned iVerbosity = 1;
3266 if (pszArgs)
3267 {
3268 pszArgs = RTStrStripL(pszArgs);
3269 if (!strcmp(pszArgs, "terse"))
3270 iVerbosity--;
3271 else if (!strcmp(pszArgs, "verbose"))
3272 iVerbosity++;
3273 }
3274
3275 /*
3276 * Start cracking.
3277 */
3278 CPUMCPUID Host;
3279 CPUMCPUID Guest;
3280 unsigned cStdMax = pVM->cpum.s.aGuestCpuIdStd[0].eax;
3281
3282 pHlp->pfnPrintf(pHlp,
3283 " RAW Standard CPUIDs\n"
3284 " Function eax ebx ecx edx\n");
3285 for (unsigned i = 0; i < RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdStd); i++)
3286 {
3287 Guest = pVM->cpum.s.aGuestCpuIdStd[i];
3288 ASMCpuId_Idx_ECX(i, 0, &Host.eax, &Host.ebx, &Host.ecx, &Host.edx);
3289
3290 pHlp->pfnPrintf(pHlp,
3291 "Gst: %08x %08x %08x %08x %08x%s\n"
3292 "Hst: %08x %08x %08x %08x\n",
3293 i, Guest.eax, Guest.ebx, Guest.ecx, Guest.edx,
3294 i <= cStdMax ? "" : "*",
3295 Host.eax, Host.ebx, Host.ecx, Host.edx);
3296 }
3297
3298 /*
3299 * If verbose, decode it.
3300 */
3301 if (iVerbosity)
3302 {
3303 Guest = pVM->cpum.s.aGuestCpuIdStd[0];
3304 pHlp->pfnPrintf(pHlp,
3305 "Name: %.04s%.04s%.04s\n"
3306 "Supports: 0-%x\n",
3307 &Guest.ebx, &Guest.edx, &Guest.ecx, Guest.eax);
3308 }
3309
3310 /*
3311 * Get Features.
3312 */
3313 bool const fIntel = ASMIsIntelCpuEx(pVM->cpum.s.aGuestCpuIdStd[0].ebx,
3314 pVM->cpum.s.aGuestCpuIdStd[0].ecx,
3315 pVM->cpum.s.aGuestCpuIdStd[0].edx);
3316 if (cStdMax >= 1 && iVerbosity)
3317 {
3318 static const char * const s_apszTypes[4] = { "primary", "overdrive", "MP", "reserved" };
3319
3320 Guest = pVM->cpum.s.aGuestCpuIdStd[1];
3321 uint32_t uEAX = Guest.eax;
3322
3323 pHlp->pfnPrintf(pHlp,
3324 "Family: %d \tExtended: %d \tEffective: %d\n"
3325 "Model: %d \tExtended: %d \tEffective: %d\n"
3326 "Stepping: %d\n"
3327 "Type: %d (%s)\n"
3328 "APIC ID: %#04x\n"
3329 "Logical CPUs: %d\n"
3330 "CLFLUSH Size: %d\n"
3331 "Brand ID: %#04x\n",
3332 (uEAX >> 8) & 0xf, (uEAX >> 20) & 0x7f, ASMGetCpuFamily(uEAX),
3333 (uEAX >> 4) & 0xf, (uEAX >> 16) & 0x0f, ASMGetCpuModel(uEAX, fIntel),
3334 ASMGetCpuStepping(uEAX),
3335 (uEAX >> 12) & 3, s_apszTypes[(uEAX >> 12) & 3],
3336 (Guest.ebx >> 24) & 0xff,
3337 (Guest.ebx >> 16) & 0xff,
3338 (Guest.ebx >> 8) & 0xff,
3339 (Guest.ebx >> 0) & 0xff);
3340 if (iVerbosity == 1)
3341 {
3342 uint32_t uEDX = Guest.edx;
3343 pHlp->pfnPrintf(pHlp, "Features EDX: ");
3344 if (uEDX & RT_BIT(0)) pHlp->pfnPrintf(pHlp, " FPU");
3345 if (uEDX & RT_BIT(1)) pHlp->pfnPrintf(pHlp, " VME");
3346 if (uEDX & RT_BIT(2)) pHlp->pfnPrintf(pHlp, " DE");
3347 if (uEDX & RT_BIT(3)) pHlp->pfnPrintf(pHlp, " PSE");
3348 if (uEDX & RT_BIT(4)) pHlp->pfnPrintf(pHlp, " TSC");
3349 if (uEDX & RT_BIT(5)) pHlp->pfnPrintf(pHlp, " MSR");
3350 if (uEDX & RT_BIT(6)) pHlp->pfnPrintf(pHlp, " PAE");
3351 if (uEDX & RT_BIT(7)) pHlp->pfnPrintf(pHlp, " MCE");
3352 if (uEDX & RT_BIT(8)) pHlp->pfnPrintf(pHlp, " CX8");
3353 if (uEDX & RT_BIT(9)) pHlp->pfnPrintf(pHlp, " APIC");
3354 if (uEDX & RT_BIT(10)) pHlp->pfnPrintf(pHlp, " 10");
3355 if (uEDX & RT_BIT(11)) pHlp->pfnPrintf(pHlp, " SEP");
3356 if (uEDX & RT_BIT(12)) pHlp->pfnPrintf(pHlp, " MTRR");
3357 if (uEDX & RT_BIT(13)) pHlp->pfnPrintf(pHlp, " PGE");
3358 if (uEDX & RT_BIT(14)) pHlp->pfnPrintf(pHlp, " MCA");
3359 if (uEDX & RT_BIT(15)) pHlp->pfnPrintf(pHlp, " CMOV");
3360 if (uEDX & RT_BIT(16)) pHlp->pfnPrintf(pHlp, " PAT");
3361 if (uEDX & RT_BIT(17)) pHlp->pfnPrintf(pHlp, " PSE36");
3362 if (uEDX & RT_BIT(18)) pHlp->pfnPrintf(pHlp, " PSN");
3363 if (uEDX & RT_BIT(19)) pHlp->pfnPrintf(pHlp, " CLFSH");
3364 if (uEDX & RT_BIT(20)) pHlp->pfnPrintf(pHlp, " 20");
3365 if (uEDX & RT_BIT(21)) pHlp->pfnPrintf(pHlp, " DS");
3366 if (uEDX & RT_BIT(22)) pHlp->pfnPrintf(pHlp, " ACPI");
3367 if (uEDX & RT_BIT(23)) pHlp->pfnPrintf(pHlp, " MMX");
3368 if (uEDX & RT_BIT(24)) pHlp->pfnPrintf(pHlp, " FXSR");
3369 if (uEDX & RT_BIT(25)) pHlp->pfnPrintf(pHlp, " SSE");
3370 if (uEDX & RT_BIT(26)) pHlp->pfnPrintf(pHlp, " SSE2");
3371 if (uEDX & RT_BIT(27)) pHlp->pfnPrintf(pHlp, " SS");
3372 if (uEDX & RT_BIT(28)) pHlp->pfnPrintf(pHlp, " HTT");
3373 if (uEDX & RT_BIT(29)) pHlp->pfnPrintf(pHlp, " TM");
3374 if (uEDX & RT_BIT(30)) pHlp->pfnPrintf(pHlp, " 30");
3375 if (uEDX & RT_BIT(31)) pHlp->pfnPrintf(pHlp, " PBE");
3376 pHlp->pfnPrintf(pHlp, "\n");
3377
3378 uint32_t uECX = Guest.ecx;
3379 pHlp->pfnPrintf(pHlp, "Features ECX: ");
3380 if (uECX & RT_BIT(0)) pHlp->pfnPrintf(pHlp, " SSE3");
3381 if (uECX & RT_BIT(1)) pHlp->pfnPrintf(pHlp, " PCLMUL");
3382 if (uECX & RT_BIT(2)) pHlp->pfnPrintf(pHlp, " DTES64");
3383 if (uECX & RT_BIT(3)) pHlp->pfnPrintf(pHlp, " MONITOR");
3384 if (uECX & RT_BIT(4)) pHlp->pfnPrintf(pHlp, " DS-CPL");
3385 if (uECX & RT_BIT(5)) pHlp->pfnPrintf(pHlp, " VMX");
3386 if (uECX & RT_BIT(6)) pHlp->pfnPrintf(pHlp, " SMX");
3387 if (uECX & RT_BIT(7)) pHlp->pfnPrintf(pHlp, " EST");
3388 if (uECX & RT_BIT(8)) pHlp->pfnPrintf(pHlp, " TM2");
3389 if (uECX & RT_BIT(9)) pHlp->pfnPrintf(pHlp, " SSSE3");
3390 if (uECX & RT_BIT(10)) pHlp->pfnPrintf(pHlp, " CNXT-ID");
3391 if (uECX & RT_BIT(11)) pHlp->pfnPrintf(pHlp, " 11");
3392 if (uECX & RT_BIT(12)) pHlp->pfnPrintf(pHlp, " FMA");
3393 if (uECX & RT_BIT(13)) pHlp->pfnPrintf(pHlp, " CX16");
3394 if (uECX & RT_BIT(14)) pHlp->pfnPrintf(pHlp, " TPRUPDATE");
3395 if (uECX & RT_BIT(15)) pHlp->pfnPrintf(pHlp, " PDCM");
3396 if (uECX & RT_BIT(16)) pHlp->pfnPrintf(pHlp, " 16");
3397 if (uECX & RT_BIT(17)) pHlp->pfnPrintf(pHlp, " PCID");
3398 if (uECX & RT_BIT(18)) pHlp->pfnPrintf(pHlp, " DCA");
3399 if (uECX & RT_BIT(19)) pHlp->pfnPrintf(pHlp, " SSE4.1");
3400 if (uECX & RT_BIT(20)) pHlp->pfnPrintf(pHlp, " SSE4.2");
3401 if (uECX & RT_BIT(21)) pHlp->pfnPrintf(pHlp, " X2APIC");
3402 if (uECX & RT_BIT(22)) pHlp->pfnPrintf(pHlp, " MOVBE");
3403 if (uECX & RT_BIT(23)) pHlp->pfnPrintf(pHlp, " POPCNT");
3404 if (uECX & RT_BIT(24)) pHlp->pfnPrintf(pHlp, " TSCDEADL");
3405 if (uECX & RT_BIT(25)) pHlp->pfnPrintf(pHlp, " AES");
3406 if (uECX & RT_BIT(26)) pHlp->pfnPrintf(pHlp, " XSAVE");
3407 if (uECX & RT_BIT(27)) pHlp->pfnPrintf(pHlp, " OSXSAVE");
3408 if (uECX & RT_BIT(28)) pHlp->pfnPrintf(pHlp, " AVX");
3409 if (uECX & RT_BIT(29)) pHlp->pfnPrintf(pHlp, " 29");
3410 if (uECX & RT_BIT(30)) pHlp->pfnPrintf(pHlp, " 30");
3411 if (uECX & RT_BIT(31)) pHlp->pfnPrintf(pHlp, " 31");
3412 pHlp->pfnPrintf(pHlp, "\n");
3413 }
3414 else
3415 {
3416 ASMCpuId(1, &Host.eax, &Host.ebx, &Host.ecx, &Host.edx);
3417
3418 X86CPUIDFEATEDX EdxHost = *(PX86CPUIDFEATEDX)&Host.edx;
3419 X86CPUIDFEATECX EcxHost = *(PX86CPUIDFEATECX)&Host.ecx;
3420 X86CPUIDFEATEDX EdxGuest = *(PX86CPUIDFEATEDX)&Guest.edx;
3421 X86CPUIDFEATECX EcxGuest = *(PX86CPUIDFEATECX)&Guest.ecx;
3422
3423 pHlp->pfnPrintf(pHlp, "Mnemonic - Description = guest (host)\n");
3424 pHlp->pfnPrintf(pHlp, "FPU - x87 FPU on Chip = %d (%d)\n", EdxGuest.u1FPU, EdxHost.u1FPU);
3425 pHlp->pfnPrintf(pHlp, "VME - Virtual 8086 Mode Enhancements = %d (%d)\n", EdxGuest.u1VME, EdxHost.u1VME);
3426 pHlp->pfnPrintf(pHlp, "DE - Debugging extensions = %d (%d)\n", EdxGuest.u1DE, EdxHost.u1DE);
3427 pHlp->pfnPrintf(pHlp, "PSE - Page Size Extension = %d (%d)\n", EdxGuest.u1PSE, EdxHost.u1PSE);
3428 pHlp->pfnPrintf(pHlp, "TSC - Time Stamp Counter = %d (%d)\n", EdxGuest.u1TSC, EdxHost.u1TSC);
3429 pHlp->pfnPrintf(pHlp, "MSR - Model Specific Registers = %d (%d)\n", EdxGuest.u1MSR, EdxHost.u1MSR);
3430 pHlp->pfnPrintf(pHlp, "PAE - Physical Address Extension = %d (%d)\n", EdxGuest.u1PAE, EdxHost.u1PAE);
3431 pHlp->pfnPrintf(pHlp, "MCE - Machine Check Exception = %d (%d)\n", EdxGuest.u1MCE, EdxHost.u1MCE);
3432 pHlp->pfnPrintf(pHlp, "CX8 - CMPXCHG8B instruction = %d (%d)\n", EdxGuest.u1CX8, EdxHost.u1CX8);
3433 pHlp->pfnPrintf(pHlp, "APIC - APIC On-Chip = %d (%d)\n", EdxGuest.u1APIC, EdxHost.u1APIC);
3434 pHlp->pfnPrintf(pHlp, "10 - Reserved = %d (%d)\n", EdxGuest.u1Reserved1, EdxHost.u1Reserved1);
3435 pHlp->pfnPrintf(pHlp, "SEP - SYSENTER and SYSEXIT = %d (%d)\n", EdxGuest.u1SEP, EdxHost.u1SEP);
3436 pHlp->pfnPrintf(pHlp, "MTRR - Memory Type Range Registers = %d (%d)\n", EdxGuest.u1MTRR, EdxHost.u1MTRR);
3437 pHlp->pfnPrintf(pHlp, "PGE - PTE Global Bit = %d (%d)\n", EdxGuest.u1PGE, EdxHost.u1PGE);
3438 pHlp->pfnPrintf(pHlp, "MCA - Machine Check Architecture = %d (%d)\n", EdxGuest.u1MCA, EdxHost.u1MCA);
3439 pHlp->pfnPrintf(pHlp, "CMOV - Conditional Move Instructions = %d (%d)\n", EdxGuest.u1CMOV, EdxHost.u1CMOV);
3440 pHlp->pfnPrintf(pHlp, "PAT - Page Attribute Table = %d (%d)\n", EdxGuest.u1PAT, EdxHost.u1PAT);
3441 pHlp->pfnPrintf(pHlp, "PSE-36 - 36-bit Page Size Extention = %d (%d)\n", EdxGuest.u1PSE36, EdxHost.u1PSE36);
3442 pHlp->pfnPrintf(pHlp, "PSN - Processor Serial Number = %d (%d)\n", EdxGuest.u1PSN, EdxHost.u1PSN);
3443 pHlp->pfnPrintf(pHlp, "CLFSH - CLFLUSH Instruction. = %d (%d)\n", EdxGuest.u1CLFSH, EdxHost.u1CLFSH);
3444 pHlp->pfnPrintf(pHlp, "20 - Reserved = %d (%d)\n", EdxGuest.u1Reserved2, EdxHost.u1Reserved2);
3445 pHlp->pfnPrintf(pHlp, "DS - Debug Store = %d (%d)\n", EdxGuest.u1DS, EdxHost.u1DS);
3446 pHlp->pfnPrintf(pHlp, "ACPI - Thermal Mon. & Soft. Clock Ctrl.= %d (%d)\n", EdxGuest.u1ACPI, EdxHost.u1ACPI);
3447 pHlp->pfnPrintf(pHlp, "MMX - Intel MMX Technology = %d (%d)\n", EdxGuest.u1MMX, EdxHost.u1MMX);
3448 pHlp->pfnPrintf(pHlp, "FXSR - FXSAVE and FXRSTOR Instructions = %d (%d)\n", EdxGuest.u1FXSR, EdxHost.u1FXSR);
3449 pHlp->pfnPrintf(pHlp, "SSE - SSE Support = %d (%d)\n", EdxGuest.u1SSE, EdxHost.u1SSE);
3450 pHlp->pfnPrintf(pHlp, "SSE2 - SSE2 Support = %d (%d)\n", EdxGuest.u1SSE2, EdxHost.u1SSE2);
3451 pHlp->pfnPrintf(pHlp, "SS - Self Snoop = %d (%d)\n", EdxGuest.u1SS, EdxHost.u1SS);
3452 pHlp->pfnPrintf(pHlp, "HTT - Hyper-Threading Technology = %d (%d)\n", EdxGuest.u1HTT, EdxHost.u1HTT);
3453 pHlp->pfnPrintf(pHlp, "TM - Thermal Monitor = %d (%d)\n", EdxGuest.u1TM, EdxHost.u1TM);
3454 pHlp->pfnPrintf(pHlp, "30 - Reserved = %d (%d)\n", EdxGuest.u1Reserved3, EdxHost.u1Reserved3);
3455 pHlp->pfnPrintf(pHlp, "PBE - Pending Break Enable = %d (%d)\n", EdxGuest.u1PBE, EdxHost.u1PBE);
3456
3457 pHlp->pfnPrintf(pHlp, "Supports SSE3 = %d (%d)\n", EcxGuest.u1SSE3, EcxHost.u1SSE3);
3458 pHlp->pfnPrintf(pHlp, "PCLMULQDQ = %d (%d)\n", EcxGuest.u1PCLMULQDQ, EcxHost.u1PCLMULQDQ);
3459 pHlp->pfnPrintf(pHlp, "DS Area 64-bit layout = %d (%d)\n", EcxGuest.u1DTE64, EcxHost.u1DTE64);
3460 pHlp->pfnPrintf(pHlp, "Supports MONITOR/MWAIT = %d (%d)\n", EcxGuest.u1Monitor, EcxHost.u1Monitor);
3461 pHlp->pfnPrintf(pHlp, "CPL-DS - CPL Qualified Debug Store = %d (%d)\n", EcxGuest.u1CPLDS, EcxHost.u1CPLDS);
3462 pHlp->pfnPrintf(pHlp, "VMX - Virtual Machine Technology = %d (%d)\n", EcxGuest.u1VMX, EcxHost.u1VMX);
3463 pHlp->pfnPrintf(pHlp, "SMX - Safer Mode Extensions = %d (%d)\n", EcxGuest.u1SMX, EcxHost.u1SMX);
3464 pHlp->pfnPrintf(pHlp, "Enhanced SpeedStep Technology = %d (%d)\n", EcxGuest.u1EST, EcxHost.u1EST);
3465 pHlp->pfnPrintf(pHlp, "Terminal Monitor 2 = %d (%d)\n", EcxGuest.u1TM2, EcxHost.u1TM2);
3466 pHlp->pfnPrintf(pHlp, "Supplemental SSE3 instructions = %d (%d)\n", EcxGuest.u1SSSE3, EcxHost.u1SSSE3);
3467 pHlp->pfnPrintf(pHlp, "L1 Context ID = %d (%d)\n", EcxGuest.u1CNTXID, EcxHost.u1CNTXID);
3468 pHlp->pfnPrintf(pHlp, "11 - Reserved = %d (%d)\n", EcxGuest.u1Reserved1, EcxHost.u1Reserved1);
3469 pHlp->pfnPrintf(pHlp, "FMA extensions using YMM state = %d (%d)\n", EcxGuest.u1FMA, EcxHost.u1FMA);
3470 pHlp->pfnPrintf(pHlp, "CMPXCHG16B instruction = %d (%d)\n", EcxGuest.u1CX16, EcxHost.u1CX16);
3471 pHlp->pfnPrintf(pHlp, "xTPR Update Control = %d (%d)\n", EcxGuest.u1TPRUpdate, EcxHost.u1TPRUpdate);
3472 pHlp->pfnPrintf(pHlp, "Perf/Debug Capability MSR = %d (%d)\n", EcxGuest.u1PDCM, EcxHost.u1PDCM);
3473 pHlp->pfnPrintf(pHlp, "16 - Reserved = %d (%d)\n", EcxGuest.u1Reserved2, EcxHost.u1Reserved2);
3474 pHlp->pfnPrintf(pHlp, "PCID - Process-context identifiers = %d (%d)\n", EcxGuest.u1PCID, EcxHost.u1PCID);
3475 pHlp->pfnPrintf(pHlp, "DCA - Direct Cache Access = %d (%d)\n", EcxGuest.u1DCA, EcxHost.u1DCA);
3476 pHlp->pfnPrintf(pHlp, "SSE4.1 instruction extensions = %d (%d)\n", EcxGuest.u1SSE4_1, EcxHost.u1SSE4_1);
3477 pHlp->pfnPrintf(pHlp, "SSE4.2 instruction extensions = %d (%d)\n", EcxGuest.u1SSE4_2, EcxHost.u1SSE4_2);
3478 pHlp->pfnPrintf(pHlp, "Supports the x2APIC extensions = %d (%d)\n", EcxGuest.u1x2APIC, EcxHost.u1x2APIC);
3479 pHlp->pfnPrintf(pHlp, "MOVBE instruction = %d (%d)\n", EcxGuest.u1MOVBE, EcxHost.u1MOVBE);
3480 pHlp->pfnPrintf(pHlp, "POPCNT instruction = %d (%d)\n", EcxGuest.u1POPCNT, EcxHost.u1POPCNT);
3481 pHlp->pfnPrintf(pHlp, "TSC-Deadline LAPIC timer mode = %d (%d)\n", EcxGuest.u1TSCDEADLINE,EcxHost.u1TSCDEADLINE);
3482 pHlp->pfnPrintf(pHlp, "AESNI instruction extensions = %d (%d)\n", EcxGuest.u1AES, EcxHost.u1AES);
3483 pHlp->pfnPrintf(pHlp, "XSAVE/XRSTOR extended state feature = %d (%d)\n", EcxGuest.u1XSAVE, EcxHost.u1XSAVE);
3484 pHlp->pfnPrintf(pHlp, "Supports OSXSAVE = %d (%d)\n", EcxGuest.u1OSXSAVE, EcxHost.u1OSXSAVE);
3485 pHlp->pfnPrintf(pHlp, "AVX instruction extensions = %d (%d)\n", EcxGuest.u1AVX, EcxHost.u1AVX);
3486 pHlp->pfnPrintf(pHlp, "29/30 - Reserved = %#x (%#x)\n",EcxGuest.u2Reserved3, EcxHost.u2Reserved3);
3487 pHlp->pfnPrintf(pHlp, "Hypervisor Present (we're a guest) = %d (%d)\n", EcxGuest.u1HVP, EcxHost.u1HVP);
3488 }
3489 }
3490 if (cStdMax >= 2 && iVerbosity)
3491 {
3492 /** @todo */
3493 }
3494
3495 /*
3496 * Extended.
3497 * Implemented after AMD specs.
3498 */
3499 unsigned cExtMax = pVM->cpum.s.aGuestCpuIdExt[0].eax & 0xffff;
3500
3501 pHlp->pfnPrintf(pHlp,
3502 "\n"
3503 " RAW Extended CPUIDs\n"
3504 " Function eax ebx ecx edx\n");
3505 for (unsigned i = 0; i < RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdExt); i++)
3506 {
3507 Guest = pVM->cpum.s.aGuestCpuIdExt[i];
3508 ASMCpuId(0x80000000 | i, &Host.eax, &Host.ebx, &Host.ecx, &Host.edx);
3509
3510 pHlp->pfnPrintf(pHlp,
3511 "Gst: %08x %08x %08x %08x %08x%s\n"
3512 "Hst: %08x %08x %08x %08x\n",
3513 0x80000000 | i, Guest.eax, Guest.ebx, Guest.ecx, Guest.edx,
3514 i <= cExtMax ? "" : "*",
3515 Host.eax, Host.ebx, Host.ecx, Host.edx);
3516 }
3517
3518 /*
3519 * Understandable output
3520 */
3521 if (iVerbosity)
3522 {
3523 Guest = pVM->cpum.s.aGuestCpuIdExt[0];
3524 pHlp->pfnPrintf(pHlp,
3525 "Ext Name: %.4s%.4s%.4s\n"
3526 "Ext Supports: 0x80000000-%#010x\n",
3527 &Guest.ebx, &Guest.edx, &Guest.ecx, Guest.eax);
3528 }
3529
3530 if (iVerbosity && cExtMax >= 1)
3531 {
3532 Guest = pVM->cpum.s.aGuestCpuIdExt[1];
3533 uint32_t uEAX = Guest.eax;
3534 pHlp->pfnPrintf(pHlp,
3535 "Family: %d \tExtended: %d \tEffective: %d\n"
3536 "Model: %d \tExtended: %d \tEffective: %d\n"
3537 "Stepping: %d\n"
3538 "Brand ID: %#05x\n",
3539 (uEAX >> 8) & 0xf, (uEAX >> 20) & 0x7f, ASMGetCpuFamily(uEAX),
3540 (uEAX >> 4) & 0xf, (uEAX >> 16) & 0x0f, ASMGetCpuModel(uEAX, fIntel),
3541 ASMGetCpuStepping(uEAX),
3542 Guest.ebx & 0xfff);
3543
3544 if (iVerbosity == 1)
3545 {
3546 uint32_t uEDX = Guest.edx;
3547 pHlp->pfnPrintf(pHlp, "Features EDX: ");
3548 if (uEDX & RT_BIT(0)) pHlp->pfnPrintf(pHlp, " FPU");
3549 if (uEDX & RT_BIT(1)) pHlp->pfnPrintf(pHlp, " VME");
3550 if (uEDX & RT_BIT(2)) pHlp->pfnPrintf(pHlp, " DE");
3551 if (uEDX & RT_BIT(3)) pHlp->pfnPrintf(pHlp, " PSE");
3552 if (uEDX & RT_BIT(4)) pHlp->pfnPrintf(pHlp, " TSC");
3553 if (uEDX & RT_BIT(5)) pHlp->pfnPrintf(pHlp, " MSR");
3554 if (uEDX & RT_BIT(6)) pHlp->pfnPrintf(pHlp, " PAE");
3555 if (uEDX & RT_BIT(7)) pHlp->pfnPrintf(pHlp, " MCE");
3556 if (uEDX & RT_BIT(8)) pHlp->pfnPrintf(pHlp, " CX8");
3557 if (uEDX & RT_BIT(9)) pHlp->pfnPrintf(pHlp, " APIC");
3558 if (uEDX & RT_BIT(10)) pHlp->pfnPrintf(pHlp, " 10");
3559 if (uEDX & RT_BIT(11)) pHlp->pfnPrintf(pHlp, " SCR");
3560 if (uEDX & RT_BIT(12)) pHlp->pfnPrintf(pHlp, " MTRR");
3561 if (uEDX & RT_BIT(13)) pHlp->pfnPrintf(pHlp, " PGE");
3562 if (uEDX & RT_BIT(14)) pHlp->pfnPrintf(pHlp, " MCA");
3563 if (uEDX & RT_BIT(15)) pHlp->pfnPrintf(pHlp, " CMOV");
3564 if (uEDX & RT_BIT(16)) pHlp->pfnPrintf(pHlp, " PAT");
3565 if (uEDX & RT_BIT(17)) pHlp->pfnPrintf(pHlp, " PSE36");
3566 if (uEDX & RT_BIT(18)) pHlp->pfnPrintf(pHlp, " 18");
3567 if (uEDX & RT_BIT(19)) pHlp->pfnPrintf(pHlp, " 19");
3568 if (uEDX & RT_BIT(20)) pHlp->pfnPrintf(pHlp, " NX");
3569 if (uEDX & RT_BIT(21)) pHlp->pfnPrintf(pHlp, " 21");
3570 if (uEDX & RT_BIT(22)) pHlp->pfnPrintf(pHlp, " ExtMMX");
3571 if (uEDX & RT_BIT(23)) pHlp->pfnPrintf(pHlp, " MMX");
3572 if (uEDX & RT_BIT(24)) pHlp->pfnPrintf(pHlp, " FXSR");
3573 if (uEDX & RT_BIT(25)) pHlp->pfnPrintf(pHlp, " FastFXSR");
3574 if (uEDX & RT_BIT(26)) pHlp->pfnPrintf(pHlp, " Page1GB");
3575 if (uEDX & RT_BIT(27)) pHlp->pfnPrintf(pHlp, " RDTSCP");
3576 if (uEDX & RT_BIT(28)) pHlp->pfnPrintf(pHlp, " 28");
3577 if (uEDX & RT_BIT(29)) pHlp->pfnPrintf(pHlp, " LongMode");
3578 if (uEDX & RT_BIT(30)) pHlp->pfnPrintf(pHlp, " Ext3DNow");
3579 if (uEDX & RT_BIT(31)) pHlp->pfnPrintf(pHlp, " 3DNow");
3580 pHlp->pfnPrintf(pHlp, "\n");
3581
3582 uint32_t uECX = Guest.ecx;
3583 pHlp->pfnPrintf(pHlp, "Features ECX: ");
3584 if (uECX & RT_BIT(0)) pHlp->pfnPrintf(pHlp, " LAHF/SAHF");
3585 if (uECX & RT_BIT(1)) pHlp->pfnPrintf(pHlp, " CMPL");
3586 if (uECX & RT_BIT(2)) pHlp->pfnPrintf(pHlp, " SVM");
3587 if (uECX & RT_BIT(3)) pHlp->pfnPrintf(pHlp, " ExtAPIC");
3588 if (uECX & RT_BIT(4)) pHlp->pfnPrintf(pHlp, " CR8L");
3589 if (uECX & RT_BIT(5)) pHlp->pfnPrintf(pHlp, " ABM");
3590 if (uECX & RT_BIT(6)) pHlp->pfnPrintf(pHlp, " SSE4A");
3591 if (uECX & RT_BIT(7)) pHlp->pfnPrintf(pHlp, " MISALNSSE");
3592 if (uECX & RT_BIT(8)) pHlp->pfnPrintf(pHlp, " 3DNOWPRF");
3593 if (uECX & RT_BIT(9)) pHlp->pfnPrintf(pHlp, " OSVW");
3594 if (uECX & RT_BIT(10)) pHlp->pfnPrintf(pHlp, " IBS");
3595 if (uECX & RT_BIT(11)) pHlp->pfnPrintf(pHlp, " SSE5");
3596 if (uECX & RT_BIT(12)) pHlp->pfnPrintf(pHlp, " SKINIT");
3597 if (uECX & RT_BIT(13)) pHlp->pfnPrintf(pHlp, " WDT");
3598 for (unsigned iBit = 5; iBit < 32; iBit++)
3599 if (uECX & RT_BIT(iBit))
3600 pHlp->pfnPrintf(pHlp, " %d", iBit);
3601 pHlp->pfnPrintf(pHlp, "\n");
3602 }
3603 else
3604 {
3605 ASMCpuId(0x80000001, &Host.eax, &Host.ebx, &Host.ecx, &Host.edx);
3606
3607 uint32_t uEdxGst = Guest.edx;
3608 uint32_t uEdxHst = Host.edx;
3609 pHlp->pfnPrintf(pHlp, "Mnemonic - Description = guest (host)\n");
3610 pHlp->pfnPrintf(pHlp, "FPU - x87 FPU on Chip = %d (%d)\n", !!(uEdxGst & RT_BIT( 0)), !!(uEdxHst & RT_BIT( 0)));
3611 pHlp->pfnPrintf(pHlp, "VME - Virtual 8086 Mode Enhancements = %d (%d)\n", !!(uEdxGst & RT_BIT( 1)), !!(uEdxHst & RT_BIT( 1)));
3612 pHlp->pfnPrintf(pHlp, "DE - Debugging extensions = %d (%d)\n", !!(uEdxGst & RT_BIT( 2)), !!(uEdxHst & RT_BIT( 2)));
3613 pHlp->pfnPrintf(pHlp, "PSE - Page Size Extension = %d (%d)\n", !!(uEdxGst & RT_BIT( 3)), !!(uEdxHst & RT_BIT( 3)));
3614 pHlp->pfnPrintf(pHlp, "TSC - Time Stamp Counter = %d (%d)\n", !!(uEdxGst & RT_BIT( 4)), !!(uEdxHst & RT_BIT( 4)));
3615 pHlp->pfnPrintf(pHlp, "MSR - K86 Model Specific Registers = %d (%d)\n", !!(uEdxGst & RT_BIT( 5)), !!(uEdxHst & RT_BIT( 5)));
3616 pHlp->pfnPrintf(pHlp, "PAE - Physical Address Extension = %d (%d)\n", !!(uEdxGst & RT_BIT( 6)), !!(uEdxHst & RT_BIT( 6)));
3617 pHlp->pfnPrintf(pHlp, "MCE - Machine Check Exception = %d (%d)\n", !!(uEdxGst & RT_BIT( 7)), !!(uEdxHst & RT_BIT( 7)));
3618 pHlp->pfnPrintf(pHlp, "CX8 - CMPXCHG8B instruction = %d (%d)\n", !!(uEdxGst & RT_BIT( 8)), !!(uEdxHst & RT_BIT( 8)));
3619 pHlp->pfnPrintf(pHlp, "APIC - APIC On-Chip = %d (%d)\n", !!(uEdxGst & RT_BIT( 9)), !!(uEdxHst & RT_BIT( 9)));
3620 pHlp->pfnPrintf(pHlp, "10 - Reserved = %d (%d)\n", !!(uEdxGst & RT_BIT(10)), !!(uEdxHst & RT_BIT(10)));
3621 pHlp->pfnPrintf(pHlp, "SEP - SYSCALL and SYSRET = %d (%d)\n", !!(uEdxGst & RT_BIT(11)), !!(uEdxHst & RT_BIT(11)));
3622 pHlp->pfnPrintf(pHlp, "MTRR - Memory Type Range Registers = %d (%d)\n", !!(uEdxGst & RT_BIT(12)), !!(uEdxHst & RT_BIT(12)));
3623 pHlp->pfnPrintf(pHlp, "PGE - PTE Global Bit = %d (%d)\n", !!(uEdxGst & RT_BIT(13)), !!(uEdxHst & RT_BIT(13)));
3624 pHlp->pfnPrintf(pHlp, "MCA - Machine Check Architecture = %d (%d)\n", !!(uEdxGst & RT_BIT(14)), !!(uEdxHst & RT_BIT(14)));
3625 pHlp->pfnPrintf(pHlp, "CMOV - Conditional Move Instructions = %d (%d)\n", !!(uEdxGst & RT_BIT(15)), !!(uEdxHst & RT_BIT(15)));
3626 pHlp->pfnPrintf(pHlp, "PAT - Page Attribute Table = %d (%d)\n", !!(uEdxGst & RT_BIT(16)), !!(uEdxHst & RT_BIT(16)));
3627 pHlp->pfnPrintf(pHlp, "PSE-36 - 36-bit Page Size Extention = %d (%d)\n", !!(uEdxGst & RT_BIT(17)), !!(uEdxHst & RT_BIT(17)));
3628 pHlp->pfnPrintf(pHlp, "18 - Reserved = %d (%d)\n", !!(uEdxGst & RT_BIT(18)), !!(uEdxHst & RT_BIT(18)));
3629 pHlp->pfnPrintf(pHlp, "19 - Reserved = %d (%d)\n", !!(uEdxGst & RT_BIT(19)), !!(uEdxHst & RT_BIT(19)));
3630 pHlp->pfnPrintf(pHlp, "NX - No-Execute Page Protection = %d (%d)\n", !!(uEdxGst & RT_BIT(20)), !!(uEdxHst & RT_BIT(20)));
3631 pHlp->pfnPrintf(pHlp, "DS - Debug Store = %d (%d)\n", !!(uEdxGst & RT_BIT(21)), !!(uEdxHst & RT_BIT(21)));
3632 pHlp->pfnPrintf(pHlp, "AXMMX - AMD Extensions to MMX Instr. = %d (%d)\n", !!(uEdxGst & RT_BIT(22)), !!(uEdxHst & RT_BIT(22)));
3633 pHlp->pfnPrintf(pHlp, "MMX - Intel MMX Technology = %d (%d)\n", !!(uEdxGst & RT_BIT(23)), !!(uEdxHst & RT_BIT(23)));
3634 pHlp->pfnPrintf(pHlp, "FXSR - FXSAVE and FXRSTOR Instructions = %d (%d)\n", !!(uEdxGst & RT_BIT(24)), !!(uEdxHst & RT_BIT(24)));
3635 pHlp->pfnPrintf(pHlp, "25 - AMD fast FXSAVE and FXRSTOR Instr.= %d (%d)\n", !!(uEdxGst & RT_BIT(25)), !!(uEdxHst & RT_BIT(25)));
3636 pHlp->pfnPrintf(pHlp, "26 - 1 GB large page support = %d (%d)\n", !!(uEdxGst & RT_BIT(26)), !!(uEdxHst & RT_BIT(26)));
3637 pHlp->pfnPrintf(pHlp, "27 - RDTSCP instruction = %d (%d)\n", !!(uEdxGst & RT_BIT(27)), !!(uEdxHst & RT_BIT(27)));
3638 pHlp->pfnPrintf(pHlp, "28 - Reserved = %d (%d)\n", !!(uEdxGst & RT_BIT(28)), !!(uEdxHst & RT_BIT(28)));
3639 pHlp->pfnPrintf(pHlp, "29 - AMD Long Mode = %d (%d)\n", !!(uEdxGst & RT_BIT(29)), !!(uEdxHst & RT_BIT(29)));
3640 pHlp->pfnPrintf(pHlp, "30 - AMD Extensions to 3DNow! = %d (%d)\n", !!(uEdxGst & RT_BIT(30)), !!(uEdxHst & RT_BIT(30)));
3641 pHlp->pfnPrintf(pHlp, "31 - AMD 3DNow! = %d (%d)\n", !!(uEdxGst & RT_BIT(31)), !!(uEdxHst & RT_BIT(31)));
3642
3643 uint32_t uEcxGst = Guest.ecx;
3644 uint32_t uEcxHst = Host.ecx;
3645 pHlp->pfnPrintf(pHlp, "LahfSahf - LAHF/SAHF in 64-bit mode = %d (%d)\n", !!(uEcxGst & RT_BIT( 0)), !!(uEcxHst & RT_BIT( 0)));
3646 pHlp->pfnPrintf(pHlp, "CmpLegacy - Core MP legacy mode (depr) = %d (%d)\n", !!(uEcxGst & RT_BIT( 1)), !!(uEcxHst & RT_BIT( 1)));
3647 pHlp->pfnPrintf(pHlp, "SVM - AMD VM Extensions = %d (%d)\n", !!(uEcxGst & RT_BIT( 2)), !!(uEcxHst & RT_BIT( 2)));
3648 pHlp->pfnPrintf(pHlp, "APIC registers starting at 0x400 = %d (%d)\n", !!(uEcxGst & RT_BIT( 3)), !!(uEcxHst & RT_BIT( 3)));
3649 pHlp->pfnPrintf(pHlp, "AltMovCR8 - LOCK MOV CR0 means MOV CR8 = %d (%d)\n", !!(uEcxGst & RT_BIT( 4)), !!(uEcxHst & RT_BIT( 4)));
3650 pHlp->pfnPrintf(pHlp, "5 - Advanced bit manipulation = %d (%d)\n", !!(uEcxGst & RT_BIT( 5)), !!(uEcxHst & RT_BIT( 5)));
3651 pHlp->pfnPrintf(pHlp, "6 - SSE4A instruction support = %d (%d)\n", !!(uEcxGst & RT_BIT( 6)), !!(uEcxHst & RT_BIT( 6)));
3652 pHlp->pfnPrintf(pHlp, "7 - Misaligned SSE mode = %d (%d)\n", !!(uEcxGst & RT_BIT( 7)), !!(uEcxHst & RT_BIT( 7)));
3653 pHlp->pfnPrintf(pHlp, "8 - PREFETCH and PREFETCHW instruction= %d (%d)\n", !!(uEcxGst & RT_BIT( 8)), !!(uEcxHst & RT_BIT( 8)));
3654 pHlp->pfnPrintf(pHlp, "9 - OS visible workaround = %d (%d)\n", !!(uEcxGst & RT_BIT( 9)), !!(uEcxHst & RT_BIT( 9)));
3655 pHlp->pfnPrintf(pHlp, "10 - Instruction based sampling = %d (%d)\n", !!(uEcxGst & RT_BIT(10)), !!(uEcxHst & RT_BIT(10)));
3656 pHlp->pfnPrintf(pHlp, "11 - SSE5 support = %d (%d)\n", !!(uEcxGst & RT_BIT(11)), !!(uEcxHst & RT_BIT(11)));
3657 pHlp->pfnPrintf(pHlp, "12 - SKINIT, STGI, and DEV support = %d (%d)\n", !!(uEcxGst & RT_BIT(12)), !!(uEcxHst & RT_BIT(12)));
3658 pHlp->pfnPrintf(pHlp, "13 - Watchdog timer support. = %d (%d)\n", !!(uEcxGst & RT_BIT(13)), !!(uEcxHst & RT_BIT(13)));
3659 pHlp->pfnPrintf(pHlp, "31:14 - Reserved = %#x (%#x)\n", uEcxGst >> 14, uEcxHst >> 14);
3660 }
3661 }
3662
3663 if (iVerbosity && cExtMax >= 2)
3664 {
3665 char szString[4*4*3+1] = {0};
3666 uint32_t *pu32 = (uint32_t *)szString;
3667 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[2].eax;
3668 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[2].ebx;
3669 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[2].ecx;
3670 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[2].edx;
3671 if (cExtMax >= 3)
3672 {
3673 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[3].eax;
3674 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[3].ebx;
3675 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[3].ecx;
3676 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[3].edx;
3677 }
3678 if (cExtMax >= 4)
3679 {
3680 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[4].eax;
3681 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[4].ebx;
3682 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[4].ecx;
3683 *pu32++ = pVM->cpum.s.aGuestCpuIdExt[4].edx;
3684 }
3685 pHlp->pfnPrintf(pHlp, "Full Name: %s\n", szString);
3686 }
3687
3688 if (iVerbosity && cExtMax >= 5)
3689 {
3690 uint32_t uEAX = pVM->cpum.s.aGuestCpuIdExt[5].eax;
3691 uint32_t uEBX = pVM->cpum.s.aGuestCpuIdExt[5].ebx;
3692 uint32_t uECX = pVM->cpum.s.aGuestCpuIdExt[5].ecx;
3693 uint32_t uEDX = pVM->cpum.s.aGuestCpuIdExt[5].edx;
3694 char sz1[32];
3695 char sz2[32];
3696
3697 pHlp->pfnPrintf(pHlp,
3698 "TLB 2/4M Instr/Uni: %s %3d entries\n"
3699 "TLB 2/4M Data: %s %3d entries\n",
3700 getCacheAss((uEAX >> 8) & 0xff, sz1), (uEAX >> 0) & 0xff,
3701 getCacheAss((uEAX >> 24) & 0xff, sz2), (uEAX >> 16) & 0xff);
3702 pHlp->pfnPrintf(pHlp,
3703 "TLB 4K Instr/Uni: %s %3d entries\n"
3704 "TLB 4K Data: %s %3d entries\n",
3705 getCacheAss((uEBX >> 8) & 0xff, sz1), (uEBX >> 0) & 0xff,
3706 getCacheAss((uEBX >> 24) & 0xff, sz2), (uEBX >> 16) & 0xff);
3707 pHlp->pfnPrintf(pHlp, "L1 Instr Cache Line Size: %d bytes\n"
3708 "L1 Instr Cache Lines Per Tag: %d\n"
3709 "L1 Instr Cache Associativity: %s\n"
3710 "L1 Instr Cache Size: %d KB\n",
3711 (uEDX >> 0) & 0xff,
3712 (uEDX >> 8) & 0xff,
3713 getCacheAss((uEDX >> 16) & 0xff, sz1),
3714 (uEDX >> 24) & 0xff);
3715 pHlp->pfnPrintf(pHlp,
3716 "L1 Data Cache Line Size: %d bytes\n"
3717 "L1 Data Cache Lines Per Tag: %d\n"
3718 "L1 Data Cache Associativity: %s\n"
3719 "L1 Data Cache Size: %d KB\n",
3720 (uECX >> 0) & 0xff,
3721 (uECX >> 8) & 0xff,
3722 getCacheAss((uECX >> 16) & 0xff, sz1),
3723 (uECX >> 24) & 0xff);
3724 }
3725
3726 if (iVerbosity && cExtMax >= 6)
3727 {
3728 uint32_t uEAX = pVM->cpum.s.aGuestCpuIdExt[6].eax;
3729 uint32_t uEBX = pVM->cpum.s.aGuestCpuIdExt[6].ebx;
3730 uint32_t uEDX = pVM->cpum.s.aGuestCpuIdExt[6].edx;
3731
3732 pHlp->pfnPrintf(pHlp,
3733 "L2 TLB 2/4M Instr/Uni: %s %4d entries\n"
3734 "L2 TLB 2/4M Data: %s %4d entries\n",
3735 getL2CacheAss((uEAX >> 12) & 0xf), (uEAX >> 0) & 0xfff,
3736 getL2CacheAss((uEAX >> 28) & 0xf), (uEAX >> 16) & 0xfff);
3737 pHlp->pfnPrintf(pHlp,
3738 "L2 TLB 4K Instr/Uni: %s %4d entries\n"
3739 "L2 TLB 4K Data: %s %4d entries\n",
3740 getL2CacheAss((uEBX >> 12) & 0xf), (uEBX >> 0) & 0xfff,
3741 getL2CacheAss((uEBX >> 28) & 0xf), (uEBX >> 16) & 0xfff);
3742 pHlp->pfnPrintf(pHlp,
3743 "L2 Cache Line Size: %d bytes\n"
3744 "L2 Cache Lines Per Tag: %d\n"
3745 "L2 Cache Associativity: %s\n"
3746 "L2 Cache Size: %d KB\n",
3747 (uEDX >> 0) & 0xff,
3748 (uEDX >> 8) & 0xf,
3749 getL2CacheAss((uEDX >> 12) & 0xf),
3750 (uEDX >> 16) & 0xffff);
3751 }
3752
3753 if (iVerbosity && cExtMax >= 7)
3754 {
3755 uint32_t uEDX = pVM->cpum.s.aGuestCpuIdExt[7].edx;
3756
3757 pHlp->pfnPrintf(pHlp, "APM Features: ");
3758 if (uEDX & RT_BIT(0)) pHlp->pfnPrintf(pHlp, " TS");
3759 if (uEDX & RT_BIT(1)) pHlp->pfnPrintf(pHlp, " FID");
3760 if (uEDX & RT_BIT(2)) pHlp->pfnPrintf(pHlp, " VID");
3761 if (uEDX & RT_BIT(3)) pHlp->pfnPrintf(pHlp, " TTP");
3762 if (uEDX & RT_BIT(4)) pHlp->pfnPrintf(pHlp, " TM");
3763 if (uEDX & RT_BIT(5)) pHlp->pfnPrintf(pHlp, " STC");
3764 for (unsigned iBit = 6; iBit < 32; iBit++)
3765 if (uEDX & RT_BIT(iBit))
3766 pHlp->pfnPrintf(pHlp, " %d", iBit);
3767 pHlp->pfnPrintf(pHlp, "\n");
3768 }
3769
3770 if (iVerbosity && cExtMax >= 8)
3771 {
3772 uint32_t uEAX = pVM->cpum.s.aGuestCpuIdExt[8].eax;
3773 uint32_t uECX = pVM->cpum.s.aGuestCpuIdExt[8].ecx;
3774
3775 pHlp->pfnPrintf(pHlp,
3776 "Physical Address Width: %d bits\n"
3777 "Virtual Address Width: %d bits\n"
3778 "Guest Physical Address Width: %d bits\n",
3779 (uEAX >> 0) & 0xff,
3780 (uEAX >> 8) & 0xff,
3781 (uEAX >> 16) & 0xff);
3782 pHlp->pfnPrintf(pHlp,
3783 "Physical Core Count: %d\n",
3784 (uECX >> 0) & 0xff);
3785 }
3786
3787
3788 /*
3789 * Centaur.
3790 */
3791 unsigned cCentaurMax = pVM->cpum.s.aGuestCpuIdCentaur[0].eax & 0xffff;
3792
3793 pHlp->pfnPrintf(pHlp,
3794 "\n"
3795 " RAW Centaur CPUIDs\n"
3796 " Function eax ebx ecx edx\n");
3797 for (unsigned i = 0; i < RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdCentaur); i++)
3798 {
3799 Guest = pVM->cpum.s.aGuestCpuIdCentaur[i];
3800 ASMCpuId(0xc0000000 | i, &Host.eax, &Host.ebx, &Host.ecx, &Host.edx);
3801
3802 pHlp->pfnPrintf(pHlp,
3803 "Gst: %08x %08x %08x %08x %08x%s\n"
3804 "Hst: %08x %08x %08x %08x\n",
3805 0xc0000000 | i, Guest.eax, Guest.ebx, Guest.ecx, Guest.edx,
3806 i <= cCentaurMax ? "" : "*",
3807 Host.eax, Host.ebx, Host.ecx, Host.edx);
3808 }
3809
3810 /*
3811 * Understandable output
3812 */
3813 if (iVerbosity)
3814 {
3815 Guest = pVM->cpum.s.aGuestCpuIdCentaur[0];
3816 pHlp->pfnPrintf(pHlp,
3817 "Centaur Supports: 0xc0000000-%#010x\n",
3818 Guest.eax);
3819 }
3820
3821 if (iVerbosity && cCentaurMax >= 1)
3822 {
3823 ASMCpuId(0xc0000001, &Host.eax, &Host.ebx, &Host.ecx, &Host.edx);
3824 uint32_t uEdxGst = pVM->cpum.s.aGuestCpuIdExt[1].edx;
3825 uint32_t uEdxHst = Host.edx;
3826
3827 if (iVerbosity == 1)
3828 {
3829 pHlp->pfnPrintf(pHlp, "Centaur Features EDX: ");
3830 if (uEdxGst & RT_BIT(0)) pHlp->pfnPrintf(pHlp, " AIS");
3831 if (uEdxGst & RT_BIT(1)) pHlp->pfnPrintf(pHlp, " AIS-E");
3832 if (uEdxGst & RT_BIT(2)) pHlp->pfnPrintf(pHlp, " RNG");
3833 if (uEdxGst & RT_BIT(3)) pHlp->pfnPrintf(pHlp, " RNG-E");
3834 if (uEdxGst & RT_BIT(4)) pHlp->pfnPrintf(pHlp, " LH");
3835 if (uEdxGst & RT_BIT(5)) pHlp->pfnPrintf(pHlp, " FEMMS");
3836 if (uEdxGst & RT_BIT(6)) pHlp->pfnPrintf(pHlp, " ACE");
3837 if (uEdxGst & RT_BIT(7)) pHlp->pfnPrintf(pHlp, " ACE-E");
3838 /* possibly indicating MM/HE and MM/HE-E on older chips... */
3839 if (uEdxGst & RT_BIT(8)) pHlp->pfnPrintf(pHlp, " ACE2");
3840 if (uEdxGst & RT_BIT(9)) pHlp->pfnPrintf(pHlp, " ACE2-E");
3841 if (uEdxGst & RT_BIT(10)) pHlp->pfnPrintf(pHlp, " PHE");
3842 if (uEdxGst & RT_BIT(11)) pHlp->pfnPrintf(pHlp, " PHE-E");
3843 if (uEdxGst & RT_BIT(12)) pHlp->pfnPrintf(pHlp, " PMM");
3844 if (uEdxGst & RT_BIT(13)) pHlp->pfnPrintf(pHlp, " PMM-E");
3845 for (unsigned iBit = 14; iBit < 32; iBit++)
3846 if (uEdxGst & RT_BIT(iBit))
3847 pHlp->pfnPrintf(pHlp, " %d", iBit);
3848 pHlp->pfnPrintf(pHlp, "\n");
3849 }
3850 else
3851 {
3852 pHlp->pfnPrintf(pHlp, "Mnemonic - Description = guest (host)\n");
3853 pHlp->pfnPrintf(pHlp, "AIS - Alternate Instruction Set = %d (%d)\n", !!(uEdxGst & RT_BIT( 0)), !!(uEdxHst & RT_BIT( 0)));
3854 pHlp->pfnPrintf(pHlp, "AIS-E - AIS enabled = %d (%d)\n", !!(uEdxGst & RT_BIT( 1)), !!(uEdxHst & RT_BIT( 1)));
3855 pHlp->pfnPrintf(pHlp, "RNG - Random Number Generator = %d (%d)\n", !!(uEdxGst & RT_BIT( 2)), !!(uEdxHst & RT_BIT( 2)));
3856 pHlp->pfnPrintf(pHlp, "RNG-E - RNG enabled = %d (%d)\n", !!(uEdxGst & RT_BIT( 3)), !!(uEdxHst & RT_BIT( 3)));
3857 pHlp->pfnPrintf(pHlp, "LH - LongHaul MSR 0000_110Ah = %d (%d)\n", !!(uEdxGst & RT_BIT( 4)), !!(uEdxHst & RT_BIT( 4)));
3858 pHlp->pfnPrintf(pHlp, "FEMMS - FEMMS = %d (%d)\n", !!(uEdxGst & RT_BIT( 5)), !!(uEdxHst & RT_BIT( 5)));
3859 pHlp->pfnPrintf(pHlp, "ACE - Advanced Cryptography Engine = %d (%d)\n", !!(uEdxGst & RT_BIT( 6)), !!(uEdxHst & RT_BIT( 6)));
3860 pHlp->pfnPrintf(pHlp, "ACE-E - ACE enabled = %d (%d)\n", !!(uEdxGst & RT_BIT( 7)), !!(uEdxHst & RT_BIT( 7)));
3861 /* possibly indicating MM/HE and MM/HE-E on older chips... */
3862 pHlp->pfnPrintf(pHlp, "ACE2 - Advanced Cryptography Engine 2 = %d (%d)\n", !!(uEdxGst & RT_BIT( 8)), !!(uEdxHst & RT_BIT( 8)));
3863 pHlp->pfnPrintf(pHlp, "ACE2-E - ACE enabled = %d (%d)\n", !!(uEdxGst & RT_BIT( 9)), !!(uEdxHst & RT_BIT( 9)));
3864 pHlp->pfnPrintf(pHlp, "PHE - Padlock Hash Engine = %d (%d)\n", !!(uEdxGst & RT_BIT(10)), !!(uEdxHst & RT_BIT(10)));
3865 pHlp->pfnPrintf(pHlp, "PHE-E - PHE enabled = %d (%d)\n", !!(uEdxGst & RT_BIT(11)), !!(uEdxHst & RT_BIT(11)));
3866 pHlp->pfnPrintf(pHlp, "PMM - Montgomery Multiplier = %d (%d)\n", !!(uEdxGst & RT_BIT(12)), !!(uEdxHst & RT_BIT(12)));
3867 pHlp->pfnPrintf(pHlp, "PMM-E - PMM enabled = %d (%d)\n", !!(uEdxGst & RT_BIT(13)), !!(uEdxHst & RT_BIT(13)));
3868 pHlp->pfnPrintf(pHlp, "14 - Reserved = %d (%d)\n", !!(uEdxGst & RT_BIT(14)), !!(uEdxHst & RT_BIT(14)));
3869 pHlp->pfnPrintf(pHlp, "15 - Reserved = %d (%d)\n", !!(uEdxGst & RT_BIT(15)), !!(uEdxHst & RT_BIT(15)));
3870 pHlp->pfnPrintf(pHlp, "Parallax = %d (%d)\n", !!(uEdxGst & RT_BIT(16)), !!(uEdxHst & RT_BIT(16)));
3871 pHlp->pfnPrintf(pHlp, "Parallax enabled = %d (%d)\n", !!(uEdxGst & RT_BIT(17)), !!(uEdxHst & RT_BIT(17)));
3872 pHlp->pfnPrintf(pHlp, "Overstress = %d (%d)\n", !!(uEdxGst & RT_BIT(18)), !!(uEdxHst & RT_BIT(18)));
3873 pHlp->pfnPrintf(pHlp, "Overstress enabled = %d (%d)\n", !!(uEdxGst & RT_BIT(19)), !!(uEdxHst & RT_BIT(19)));
3874 pHlp->pfnPrintf(pHlp, "TM3 - Temperature Monitoring 3 = %d (%d)\n", !!(uEdxGst & RT_BIT(20)), !!(uEdxHst & RT_BIT(20)));
3875 pHlp->pfnPrintf(pHlp, "TM3-E - TM3 enabled = %d (%d)\n", !!(uEdxGst & RT_BIT(21)), !!(uEdxHst & RT_BIT(21)));
3876 pHlp->pfnPrintf(pHlp, "RNG2 - Random Number Generator 2 = %d (%d)\n", !!(uEdxGst & RT_BIT(22)), !!(uEdxHst & RT_BIT(22)));
3877 pHlp->pfnPrintf(pHlp, "RNG2-E - RNG2 enabled = %d (%d)\n", !!(uEdxGst & RT_BIT(23)), !!(uEdxHst & RT_BIT(23)));
3878 pHlp->pfnPrintf(pHlp, "24 - Reserved = %d (%d)\n", !!(uEdxGst & RT_BIT(24)), !!(uEdxHst & RT_BIT(24)));
3879 pHlp->pfnPrintf(pHlp, "PHE2 - Padlock Hash Engine 2 = %d (%d)\n", !!(uEdxGst & RT_BIT(25)), !!(uEdxHst & RT_BIT(25)));
3880 pHlp->pfnPrintf(pHlp, "PHE2-E - PHE2 enabled = %d (%d)\n", !!(uEdxGst & RT_BIT(26)), !!(uEdxHst & RT_BIT(26)));
3881 for (unsigned iBit = 27; iBit < 32; iBit++)
3882 if ((uEdxGst | uEdxHst) & RT_BIT(iBit))
3883 pHlp->pfnPrintf(pHlp, "Bit %d = %d (%d)\n", iBit, !!(uEdxGst & RT_BIT(iBit)), !!(uEdxHst & RT_BIT(iBit)));
3884 pHlp->pfnPrintf(pHlp, "\n");
3885 }
3886 }
3887}
3888
3889
3890/**
3891 * Structure used when disassembling and instructions in DBGF.
3892 * This is used so the reader function can get the stuff it needs.
3893 */
3894typedef struct CPUMDISASSTATE
3895{
3896 /** Pointer to the CPU structure. */
3897 PDISCPUSTATE pCpu;
3898 /** Pointer to the VM. */
3899 PVM pVM;
3900 /** Pointer to the VMCPU. */
3901 PVMCPU pVCpu;
3902 /** Pointer to the first byte in the segment. */
3903 RTGCUINTPTR GCPtrSegBase;
3904 /** Pointer to the byte after the end of the segment. (might have wrapped!) */
3905 RTGCUINTPTR GCPtrSegEnd;
3906 /** The size of the segment minus 1. */
3907 RTGCUINTPTR cbSegLimit;
3908 /** Pointer to the current page - R3 Ptr. */
3909 void const *pvPageR3;
3910 /** Pointer to the current page - GC Ptr. */
3911 RTGCPTR pvPageGC;
3912 /** The lock information that PGMPhysReleasePageMappingLock needs. */
3913 PGMPAGEMAPLOCK PageMapLock;
3914 /** Whether the PageMapLock is valid or not. */
3915 bool fLocked;
3916 /** 64 bits mode or not. */
3917 bool f64Bits;
3918} CPUMDISASSTATE, *PCPUMDISASSTATE;
3919
3920
3921/**
3922 * @callback_method_impl{FNDISREADBYTES}
3923 */
3924static DECLCALLBACK(int) cpumR3DisasInstrRead(PDISCPUSTATE pDis, uint8_t offInstr, uint8_t cbMinRead, uint8_t cbMaxRead)
3925{
3926 PCPUMDISASSTATE pState = (PCPUMDISASSTATE)pDis->pvUser;
3927 for (;;)
3928 {
3929 RTGCUINTPTR GCPtr = pDis->uInstrAddr + offInstr + pState->GCPtrSegBase;
3930
3931 /*
3932 * Need to update the page translation?
3933 */
3934 if ( !pState->pvPageR3
3935 || (GCPtr >> PAGE_SHIFT) != (pState->pvPageGC >> PAGE_SHIFT))
3936 {
3937 int rc = VINF_SUCCESS;
3938
3939 /* translate the address */
3940 pState->pvPageGC = GCPtr & PAGE_BASE_GC_MASK;
3941 if ( MMHyperIsInsideArea(pState->pVM, pState->pvPageGC)
3942 && !HMIsEnabled(pState->pVM))
3943 {
3944 pState->pvPageR3 = MMHyperRCToR3(pState->pVM, (RTRCPTR)pState->pvPageGC);
3945 if (!pState->pvPageR3)
3946 rc = VERR_INVALID_POINTER;
3947 }
3948 else
3949 {
3950 /* Release mapping lock previously acquired. */
3951 if (pState->fLocked)
3952 PGMPhysReleasePageMappingLock(pState->pVM, &pState->PageMapLock);
3953 rc = PGMPhysGCPtr2CCPtrReadOnly(pState->pVCpu, pState->pvPageGC, &pState->pvPageR3, &pState->PageMapLock);
3954 pState->fLocked = RT_SUCCESS_NP(rc);
3955 }
3956 if (RT_FAILURE(rc))
3957 {
3958 pState->pvPageR3 = NULL;
3959 return rc;
3960 }
3961 }
3962
3963 /*
3964 * Check the segment limit.
3965 */
3966 if (!pState->f64Bits && pDis->uInstrAddr + offInstr > pState->cbSegLimit)
3967 return VERR_OUT_OF_SELECTOR_BOUNDS;
3968
3969 /*
3970 * Calc how much we can read.
3971 */
3972 uint32_t cb = PAGE_SIZE - (GCPtr & PAGE_OFFSET_MASK);
3973 if (!pState->f64Bits)
3974 {
3975 RTGCUINTPTR cbSeg = pState->GCPtrSegEnd - GCPtr;
3976 if (cb > cbSeg && cbSeg)
3977 cb = cbSeg;
3978 }
3979 if (cb > cbMaxRead)
3980 cb = cbMaxRead;
3981
3982 /*
3983 * Read and advance or exit.
3984 */
3985 memcpy(&pDis->abInstr[offInstr], (uint8_t *)pState->pvPageR3 + (GCPtr & PAGE_OFFSET_MASK), cb);
3986 offInstr += (uint8_t)cb;
3987 if (cb >= cbMinRead)
3988 {
3989 pDis->cbCachedInstr = offInstr;
3990 return VINF_SUCCESS;
3991 }
3992 cbMinRead -= (uint8_t)cb;
3993 cbMaxRead -= (uint8_t)cb;
3994 }
3995}
3996
3997
3998/**
3999 * Disassemble an instruction and return the information in the provided structure.
4000 *
4001 * @returns VBox status code.
4002 * @param pVM Pointer to the VM.
4003 * @param pVCpu Pointer to the VMCPU.
4004 * @param pCtx Pointer to the guest CPU context.
4005 * @param GCPtrPC Program counter (relative to CS) to disassemble from.
4006 * @param pCpu Disassembly state.
4007 * @param pszPrefix String prefix for logging (debug only).
4008 *
4009 */
4010VMMR3DECL(int) CPUMR3DisasmInstrCPU(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, RTGCPTR GCPtrPC, PDISCPUSTATE pCpu, const char *pszPrefix)
4011{
4012 CPUMDISASSTATE State;
4013 int rc;
4014
4015 const PGMMODE enmMode = PGMGetGuestMode(pVCpu);
4016 State.pCpu = pCpu;
4017 State.pvPageGC = 0;
4018 State.pvPageR3 = NULL;
4019 State.pVM = pVM;
4020 State.pVCpu = pVCpu;
4021 State.fLocked = false;
4022 State.f64Bits = false;
4023
4024 /*
4025 * Get selector information.
4026 */
4027 DISCPUMODE enmDisCpuMode;
4028 if ( (pCtx->cr0 & X86_CR0_PE)
4029 && pCtx->eflags.Bits.u1VM == 0)
4030 {
4031 if (!CPUMSELREG_ARE_HIDDEN_PARTS_VALID(pVCpu, &pCtx->cs))
4032 {
4033# ifdef VBOX_WITH_RAW_MODE_NOT_R0
4034 CPUMGuestLazyLoadHiddenSelectorReg(pVCpu, &pCtx->cs);
4035# endif
4036 if (!CPUMSELREG_ARE_HIDDEN_PARTS_VALID(pVCpu, &pCtx->cs))
4037 return VERR_CPUM_HIDDEN_CS_LOAD_ERROR;
4038 }
4039 State.f64Bits = enmMode >= PGMMODE_AMD64 && pCtx->cs.Attr.n.u1Long;
4040 State.GCPtrSegBase = pCtx->cs.u64Base;
4041 State.GCPtrSegEnd = pCtx->cs.u32Limit + 1 + (RTGCUINTPTR)pCtx->cs.u64Base;
4042 State.cbSegLimit = pCtx->cs.u32Limit;
4043 enmDisCpuMode = (State.f64Bits)
4044 ? DISCPUMODE_64BIT
4045 : pCtx->cs.Attr.n.u1DefBig
4046 ? DISCPUMODE_32BIT
4047 : DISCPUMODE_16BIT;
4048 }
4049 else
4050 {
4051 /* real or V86 mode */
4052 enmDisCpuMode = DISCPUMODE_16BIT;
4053 State.GCPtrSegBase = pCtx->cs.Sel * 16;
4054 State.GCPtrSegEnd = 0xFFFFFFFF;
4055 State.cbSegLimit = 0xFFFFFFFF;
4056 }
4057
4058 /*
4059 * Disassemble the instruction.
4060 */
4061 uint32_t cbInstr;
4062#ifndef LOG_ENABLED
4063 rc = DISInstrWithReader(GCPtrPC, enmDisCpuMode, cpumR3DisasInstrRead, &State, pCpu, &cbInstr);
4064 if (RT_SUCCESS(rc))
4065 {
4066#else
4067 char szOutput[160];
4068 rc = DISInstrToStrWithReader(GCPtrPC, enmDisCpuMode, cpumR3DisasInstrRead, &State,
4069 pCpu, &cbInstr, szOutput, sizeof(szOutput));
4070 if (RT_SUCCESS(rc))
4071 {
4072 /* log it */
4073 if (pszPrefix)
4074 Log(("%s-CPU%d: %s", pszPrefix, pVCpu->idCpu, szOutput));
4075 else
4076 Log(("%s", szOutput));
4077#endif
4078 rc = VINF_SUCCESS;
4079 }
4080 else
4081 Log(("CPUMR3DisasmInstrCPU: DISInstr failed for %04X:%RGv rc=%Rrc\n", pCtx->cs.Sel, GCPtrPC, rc));
4082
4083 /* Release mapping lock acquired in cpumR3DisasInstrRead. */
4084 if (State.fLocked)
4085 PGMPhysReleasePageMappingLock(pVM, &State.PageMapLock);
4086
4087 return rc;
4088}
4089
4090
4091
4092/**
4093 * API for controlling a few of the CPU features found in CR4.
4094 *
4095 * Currently only X86_CR4_TSD is accepted as input.
4096 *
4097 * @returns VBox status code.
4098 *
4099 * @param pVM Pointer to the VM.
4100 * @param fOr The CR4 OR mask.
4101 * @param fAnd The CR4 AND mask.
4102 */
4103VMMR3DECL(int) CPUMR3SetCR4Feature(PVM pVM, RTHCUINTREG fOr, RTHCUINTREG fAnd)
4104{
4105 AssertMsgReturn(!(fOr & ~(X86_CR4_TSD)), ("%#x\n", fOr), VERR_INVALID_PARAMETER);
4106 AssertMsgReturn((fAnd & ~(X86_CR4_TSD)) == ~(X86_CR4_TSD), ("%#x\n", fAnd), VERR_INVALID_PARAMETER);
4107
4108 pVM->cpum.s.CR4.OrMask &= fAnd;
4109 pVM->cpum.s.CR4.OrMask |= fOr;
4110
4111 return VINF_SUCCESS;
4112}
4113
4114
4115/**
4116 * Gets a pointer to the array of standard CPUID leaves.
4117 *
4118 * CPUMR3GetGuestCpuIdStdMax() give the size of the array.
4119 *
4120 * @returns Pointer to the standard CPUID leaves (read-only).
4121 * @param pVM Pointer to the VM.
4122 * @remark Intended for PATM.
4123 */
4124VMMR3DECL(RCPTRTYPE(PCCPUMCPUID)) CPUMR3GetGuestCpuIdStdRCPtr(PVM pVM)
4125{
4126 return RCPTRTYPE(PCCPUMCPUID)VM_RC_ADDR(pVM, &pVM->cpum.s.aGuestCpuIdStd[0]);
4127}
4128
4129
4130/**
4131 * Gets a pointer to the array of extended CPUID leaves.
4132 *
4133 * CPUMGetGuestCpuIdExtMax() give the size of the array.
4134 *
4135 * @returns Pointer to the extended CPUID leaves (read-only).
4136 * @param pVM Pointer to the VM.
4137 * @remark Intended for PATM.
4138 */
4139VMMR3DECL(RCPTRTYPE(PCCPUMCPUID)) CPUMR3GetGuestCpuIdExtRCPtr(PVM pVM)
4140{
4141 return (RCPTRTYPE(PCCPUMCPUID))VM_RC_ADDR(pVM, &pVM->cpum.s.aGuestCpuIdExt[0]);
4142}
4143
4144
4145/**
4146 * Gets a pointer to the array of centaur CPUID leaves.
4147 *
4148 * CPUMGetGuestCpuIdCentaurMax() give the size of the array.
4149 *
4150 * @returns Pointer to the centaur CPUID leaves (read-only).
4151 * @param pVM Pointer to the VM.
4152 * @remark Intended for PATM.
4153 */
4154VMMR3DECL(RCPTRTYPE(PCCPUMCPUID)) CPUMR3GetGuestCpuIdCentaurRCPtr(PVM pVM)
4155{
4156 return (RCPTRTYPE(PCCPUMCPUID))VM_RC_ADDR(pVM, &pVM->cpum.s.aGuestCpuIdCentaur[0]);
4157}
4158
4159
4160/**
4161 * Gets a pointer to the default CPUID leaf.
4162 *
4163 * @returns Pointer to the default CPUID leaf (read-only).
4164 * @param pVM Pointer to the VM.
4165 * @remark Intended for PATM.
4166 */
4167VMMR3DECL(RCPTRTYPE(PCCPUMCPUID)) CPUMR3GetGuestCpuIdDefRCPtr(PVM pVM)
4168{
4169 return (RCPTRTYPE(PCCPUMCPUID))VM_RC_ADDR(pVM, &pVM->cpum.s.GuestCpuIdDef);
4170}
4171
4172
4173/**
4174 * Transforms the guest CPU state to raw-ring mode.
4175 *
4176 * This function will change the any of the cs and ss register with DPL=0 to DPL=1.
4177 *
4178 * @returns VBox status. (recompiler failure)
4179 * @param pVCpu Pointer to the VMCPU.
4180 * @param pCtxCore The context core (for trap usage).
4181 * @see @ref pg_raw
4182 */
4183VMMR3DECL(int) CPUMR3RawEnter(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore)
4184{
4185 PVM pVM = pVCpu->CTX_SUFF(pVM);
4186
4187 Assert(!pVCpu->cpum.s.fRawEntered);
4188 Assert(!pVCpu->cpum.s.fRemEntered);
4189 if (!pCtxCore)
4190 pCtxCore = CPUMCTX2CORE(&pVCpu->cpum.s.Guest);
4191
4192 /*
4193 * Are we in Ring-0?
4194 */
4195 if ( pCtxCore->ss.Sel
4196 && (pCtxCore->ss.Sel & X86_SEL_RPL) == 0
4197 && !pCtxCore->eflags.Bits.u1VM)
4198 {
4199 /*
4200 * Enter execution mode.
4201 */
4202 PATMRawEnter(pVM, pCtxCore);
4203
4204 /*
4205 * Set CPL to Ring-1.
4206 */
4207 pCtxCore->ss.Sel |= 1;
4208 if ( pCtxCore->cs.Sel
4209 && (pCtxCore->cs.Sel & X86_SEL_RPL) == 0)
4210 pCtxCore->cs.Sel |= 1;
4211 }
4212 else
4213 {
4214#ifdef VBOX_WITH_RAW_RING1
4215 if ( EMIsRawRing1Enabled(pVM)
4216 && !pCtxCore->eflags.Bits.u1VM
4217 && (pCtxCore->ss.Sel & X86_SEL_RPL) == 1)
4218 {
4219 /* Set CPL to Ring-2. */
4220 pCtxCore->ss.Sel = (pCtxCore->ss.Sel & ~X86_SEL_RPL) | 2;
4221 if (pCtxCore->cs.Sel && (pCtxCore->cs.Sel & X86_SEL_RPL) == 1)
4222 pCtxCore->cs.Sel = (pCtxCore->cs.Sel & ~X86_SEL_RPL) | 2;
4223 }
4224#else
4225 AssertMsg((pCtxCore->ss.Sel & X86_SEL_RPL) >= 2 || pCtxCore->eflags.Bits.u1VM,
4226 ("ring-1 code not supported\n"));
4227#endif
4228 /*
4229 * PATM takes care of IOPL and IF flags for Ring-3 and Ring-2 code as well.
4230 */
4231 PATMRawEnter(pVM, pCtxCore);
4232 }
4233
4234 /*
4235 * Assert sanity.
4236 */
4237 AssertMsg((pCtxCore->eflags.u32 & X86_EFL_IF), ("X86_EFL_IF is clear\n"));
4238 AssertReleaseMsg(pCtxCore->eflags.Bits.u2IOPL == 0,
4239 ("X86_EFL_IOPL=%d CPL=%d\n", pCtxCore->eflags.Bits.u2IOPL, pCtxCore->ss.Sel & X86_SEL_RPL));
4240 Assert((pVCpu->cpum.s.Guest.cr0 & (X86_CR0_PG | X86_CR0_WP | X86_CR0_PE)) == (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP));
4241
4242 pCtxCore->eflags.u32 |= X86_EFL_IF; /* paranoia */
4243
4244 pVCpu->cpum.s.fRawEntered = true;
4245 return VINF_SUCCESS;
4246}
4247
4248
4249/**
4250 * Transforms the guest CPU state from raw-ring mode to correct values.
4251 *
4252 * This function will change any selector registers with DPL=1 to DPL=0.
4253 *
4254 * @returns Adjusted rc.
4255 * @param pVCpu Pointer to the VMCPU.
4256 * @param rc Raw mode return code
4257 * @param pCtxCore The context core (for trap usage).
4258 * @see @ref pg_raw
4259 */
4260VMMR3DECL(int) CPUMR3RawLeave(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, int rc)
4261{
4262 PVM pVM = pVCpu->CTX_SUFF(pVM);
4263
4264 /*
4265 * Don't leave if we've already left (in GC).
4266 */
4267 Assert(pVCpu->cpum.s.fRawEntered);
4268 Assert(!pVCpu->cpum.s.fRemEntered);
4269 if (!pVCpu->cpum.s.fRawEntered)
4270 return rc;
4271 pVCpu->cpum.s.fRawEntered = false;
4272
4273 PCPUMCTX pCtx = &pVCpu->cpum.s.Guest;
4274 if (!pCtxCore)
4275 pCtxCore = CPUMCTX2CORE(pCtx);
4276 Assert(pCtxCore->eflags.Bits.u1VM || (pCtxCore->ss.Sel & X86_SEL_RPL));
4277 AssertMsg(pCtxCore->eflags.Bits.u1VM || pCtxCore->eflags.Bits.u2IOPL < (unsigned)(pCtxCore->ss.Sel & X86_SEL_RPL),
4278 ("X86_EFL_IOPL=%d CPL=%d\n", pCtxCore->eflags.Bits.u2IOPL, pCtxCore->ss.Sel & X86_SEL_RPL));
4279
4280 /*
4281 * Are we executing in raw ring-1?
4282 */
4283 if ( (pCtxCore->ss.Sel & X86_SEL_RPL) == 1
4284 && !pCtxCore->eflags.Bits.u1VM)
4285 {
4286 /*
4287 * Leave execution mode.
4288 */
4289 PATMRawLeave(pVM, pCtxCore, rc);
4290 /* Not quite sure if this is really required, but shouldn't harm (too much anyways). */
4291 /** @todo See what happens if we remove this. */
4292 if ((pCtxCore->ds.Sel & X86_SEL_RPL) == 1)
4293 pCtxCore->ds.Sel &= ~X86_SEL_RPL;
4294 if ((pCtxCore->es.Sel & X86_SEL_RPL) == 1)
4295 pCtxCore->es.Sel &= ~X86_SEL_RPL;
4296 if ((pCtxCore->fs.Sel & X86_SEL_RPL) == 1)
4297 pCtxCore->fs.Sel &= ~X86_SEL_RPL;
4298 if ((pCtxCore->gs.Sel & X86_SEL_RPL) == 1)
4299 pCtxCore->gs.Sel &= ~X86_SEL_RPL;
4300
4301 /*
4302 * Ring-1 selector => Ring-0.
4303 */
4304 pCtxCore->ss.Sel &= ~X86_SEL_RPL;
4305 if ((pCtxCore->cs.Sel & X86_SEL_RPL) == 1)
4306 pCtxCore->cs.Sel &= ~X86_SEL_RPL;
4307 }
4308 else
4309 {
4310 /*
4311 * PATM is taking care of the IOPL and IF flags for us.
4312 */
4313 PATMRawLeave(pVM, pCtxCore, rc);
4314 if (!pCtxCore->eflags.Bits.u1VM)
4315 {
4316#ifdef VBOX_WITH_RAW_RING1
4317 if ( EMIsRawRing1Enabled(pVM)
4318 && (pCtxCore->ss.Sel & X86_SEL_RPL) == 2)
4319 {
4320 /* Not quite sure if this is really required, but shouldn't harm (too much anyways). */
4321 /** @todo See what happens if we remove this. */
4322 if ((pCtxCore->ds.Sel & X86_SEL_RPL) == 2)
4323 pCtxCore->ds.Sel = (pCtxCore->ds.Sel & ~X86_SEL_RPL) | 1;
4324 if ((pCtxCore->es.Sel & X86_SEL_RPL) == 2)
4325 pCtxCore->es.Sel = (pCtxCore->es.Sel & ~X86_SEL_RPL) | 1;
4326 if ((pCtxCore->fs.Sel & X86_SEL_RPL) == 2)
4327 pCtxCore->fs.Sel = (pCtxCore->fs.Sel & ~X86_SEL_RPL) | 1;
4328 if ((pCtxCore->gs.Sel & X86_SEL_RPL) == 2)
4329 pCtxCore->gs.Sel = (pCtxCore->gs.Sel & ~X86_SEL_RPL) | 1;
4330
4331 /*
4332 * Ring-2 selector => Ring-1.
4333 */
4334 pCtxCore->ss.Sel = (pCtxCore->ss.Sel & ~X86_SEL_RPL) | 1;
4335 if ((pCtxCore->cs.Sel & X86_SEL_RPL) == 2)
4336 pCtxCore->cs.Sel = (pCtxCore->cs.Sel & ~X86_SEL_RPL) | 1;
4337 }
4338 else
4339 {
4340#endif
4341 /** @todo See what happens if we remove this. */
4342 if ((pCtxCore->ds.Sel & X86_SEL_RPL) == 1)
4343 pCtxCore->ds.Sel &= ~X86_SEL_RPL;
4344 if ((pCtxCore->es.Sel & X86_SEL_RPL) == 1)
4345 pCtxCore->es.Sel &= ~X86_SEL_RPL;
4346 if ((pCtxCore->fs.Sel & X86_SEL_RPL) == 1)
4347 pCtxCore->fs.Sel &= ~X86_SEL_RPL;
4348 if ((pCtxCore->gs.Sel & X86_SEL_RPL) == 1)
4349 pCtxCore->gs.Sel &= ~X86_SEL_RPL;
4350#ifdef VBOX_WITH_RAW_RING1
4351 }
4352#endif
4353 }
4354 }
4355
4356 return rc;
4357}
4358
4359
4360/**
4361 * Enters REM, gets and resets the changed flags (CPUM_CHANGED_*).
4362 *
4363 * Only REM should ever call this function!
4364 *
4365 * @returns The changed flags.
4366 * @param pVCpu Pointer to the VMCPU.
4367 * @param puCpl Where to return the current privilege level (CPL).
4368 */
4369VMMR3DECL(uint32_t) CPUMR3RemEnter(PVMCPU pVCpu, uint32_t *puCpl)
4370{
4371 Assert(!pVCpu->cpum.s.fRawEntered);
4372 Assert(!pVCpu->cpum.s.fRemEntered);
4373
4374 /*
4375 * Get the CPL first.
4376 */
4377 *puCpl = CPUMGetGuestCPL(pVCpu);
4378
4379 /*
4380 * Get and reset the flags.
4381 */
4382 uint32_t fFlags = pVCpu->cpum.s.fChanged;
4383 pVCpu->cpum.s.fChanged = 0;
4384
4385 /** @todo change the switcher to use the fChanged flags. */
4386 if (pVCpu->cpum.s.fUseFlags & CPUM_USED_FPU_SINCE_REM)
4387 {
4388 fFlags |= CPUM_CHANGED_FPU_REM;
4389 pVCpu->cpum.s.fUseFlags &= ~CPUM_USED_FPU_SINCE_REM;
4390 }
4391
4392 pVCpu->cpum.s.fRemEntered = true;
4393 return fFlags;
4394}
4395
4396
4397/**
4398 * Leaves REM.
4399 *
4400 * @param pVCpu Pointer to the VMCPU.
4401 * @param fNoOutOfSyncSels This is @c false if there are out of sync
4402 * registers.
4403 */
4404VMMR3DECL(void) CPUMR3RemLeave(PVMCPU pVCpu, bool fNoOutOfSyncSels)
4405{
4406 Assert(!pVCpu->cpum.s.fRawEntered);
4407 Assert(pVCpu->cpum.s.fRemEntered);
4408
4409 pVCpu->cpum.s.fRemEntered = false;
4410}
4411
4412
4413/**
4414 * Called when the ring-3 init phase completes.
4415 *
4416 * @returns VBox status code.
4417 * @param pVM Pointer to the VM.
4418 */
4419VMMR3DECL(int) CPUMR3InitCompleted(PVM pVM)
4420{
4421 for (VMCPUID i = 0; i < pVM->cCpus; i++)
4422 {
4423 /* Cache the APIC base (from the APIC device) once it has been initialized. */
4424 PDMApicGetBase(&pVM->aCpus[i], &pVM->aCpus[i].cpum.s.Guest.msrApicBase);
4425 Log(("CPUMR3InitCompleted pVM=%p APIC base[%u]=%RX64\n", pVM, (unsigned)i, pVM->aCpus[i].cpum.s.Guest.msrApicBase));
4426 }
4427 return VINF_SUCCESS;
4428}
4429
4430/**
4431 * Called when the ring-0 init phases comleted.
4432 *
4433 * @param pVM Pointer to the VM.
4434 */
4435VMMR3DECL(void) CPUMR3LogCpuIds(PVM pVM)
4436{
4437 /*
4438 * Log the cpuid.
4439 */
4440 bool fOldBuffered = RTLogRelSetBuffering(true /*fBuffered*/);
4441 RTCPUSET OnlineSet;
4442 LogRel(("Logical host processors: %u present, %u max, %u online, online mask: %016RX64\n",
4443 (unsigned)RTMpGetPresentCount(), (unsigned)RTMpGetCount(), (unsigned)RTMpGetOnlineCount(),
4444 RTCpuSetToU64(RTMpGetOnlineSet(&OnlineSet)) ));
4445 LogRel(("************************* CPUID dump ************************\n"));
4446 DBGFR3Info(pVM->pUVM, "cpuid", "verbose", DBGFR3InfoLogRelHlp());
4447 LogRel(("\n"));
4448 DBGFR3_INFO_LOG(pVM, "cpuid", "verbose"); /* macro */
4449 RTLogRelSetBuffering(fOldBuffered);
4450 LogRel(("******************** End of CPUID dump **********************\n"));
4451}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette