1 | /* $Id: CPUMAllRegs.cpp 9212 2008-05-29 09:38:38Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * CPUM - CPU Monitor(/Manager) - Gets and Sets.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #define LOG_GROUP LOG_GROUP_CPUM
|
---|
27 | #include <VBox/cpum.h>
|
---|
28 | #include <VBox/patm.h>
|
---|
29 | #include <VBox/dbgf.h>
|
---|
30 | #include <VBox/mm.h>
|
---|
31 | #include "CPUMInternal.h"
|
---|
32 | #include <VBox/vm.h>
|
---|
33 | #include <VBox/err.h>
|
---|
34 | #include <VBox/dis.h>
|
---|
35 | #include <VBox/log.h>
|
---|
36 | #include <iprt/assert.h>
|
---|
37 | #include <iprt/asm.h>
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 | /** Disable stack frame pointer generation here. */
|
---|
42 | #if defined(_MSC_VER) && !defined(DEBUG)
|
---|
43 | # pragma optimize("y", off)
|
---|
44 | #endif
|
---|
45 |
|
---|
46 |
|
---|
47 | /**
|
---|
48 | * Sets or resets an alternative hypervisor context core.
|
---|
49 | *
|
---|
50 | * This is called when we get a hypervisor trap set switch the context
|
---|
51 | * core with the trap frame on the stack. It is called again to reset
|
---|
52 | * back to the default context core when resuming hypervisor execution.
|
---|
53 | *
|
---|
54 | * @param pVM The VM handle.
|
---|
55 | * @param pCtxCore Pointer to the alternative context core or NULL
|
---|
56 | * to go back to the default context core.
|
---|
57 | */
|
---|
58 | CPUMDECL(void) CPUMHyperSetCtxCore(PVM pVM, PCPUMCTXCORE pCtxCore)
|
---|
59 | {
|
---|
60 | LogFlow(("CPUMHyperSetCtxCore: %p/%p/%p -> %p\n", pVM->cpum.s.CTXALLSUFF(pHyperCore), pCtxCore));
|
---|
61 | if (!pCtxCore)
|
---|
62 | {
|
---|
63 | pCtxCore = CPUMCTX2CORE(&pVM->cpum.s.Hyper);
|
---|
64 | pVM->cpum.s.pHyperCoreR3 = (R3PTRTYPE(PCPUMCTXCORE))VM_R3_ADDR(pVM, pCtxCore);
|
---|
65 | pVM->cpum.s.pHyperCoreR0 = (R0PTRTYPE(PCPUMCTXCORE))VM_R0_ADDR(pVM, pCtxCore);
|
---|
66 | pVM->cpum.s.pHyperCoreGC = (RCPTRTYPE(PCPUMCTXCORE))VM_GUEST_ADDR(pVM, pCtxCore);
|
---|
67 | }
|
---|
68 | else
|
---|
69 | {
|
---|
70 | pVM->cpum.s.pHyperCoreR3 = (R3PTRTYPE(PCPUMCTXCORE))MMHyperCCToR3(pVM, pCtxCore);
|
---|
71 | pVM->cpum.s.pHyperCoreR0 = (R0PTRTYPE(PCPUMCTXCORE))MMHyperCCToR0(pVM, pCtxCore);
|
---|
72 | pVM->cpum.s.pHyperCoreGC = (RCPTRTYPE(PCPUMCTXCORE))MMHyperCCToGC(pVM, pCtxCore);
|
---|
73 | }
|
---|
74 | }
|
---|
75 |
|
---|
76 |
|
---|
77 | /**
|
---|
78 | * Gets the pointer to the internal CPUMCTXCORE structure for the hypervisor.
|
---|
79 | * This is only for reading in order to save a few calls.
|
---|
80 | *
|
---|
81 | * @param pVM Handle to the virtual machine.
|
---|
82 | */
|
---|
83 | CPUMDECL(PCCPUMCTXCORE) CPUMGetHyperCtxCore(PVM pVM)
|
---|
84 | {
|
---|
85 | return pVM->cpum.s.CTXALLSUFF(pHyperCore);
|
---|
86 | }
|
---|
87 |
|
---|
88 |
|
---|
89 | /**
|
---|
90 | * Queries the pointer to the internal CPUMCTX structure for the hypervisor.
|
---|
91 | *
|
---|
92 | * @returns VBox status code.
|
---|
93 | * @param pVM Handle to the virtual machine.
|
---|
94 | * @param ppCtx Receives the hyper CPUMCTX pointer when successful.
|
---|
95 | *
|
---|
96 | * @deprecated This will *not* (and has never) given the right picture of the
|
---|
97 | * hypervisor register state. With CPUMHyperSetCtxCore() this is
|
---|
98 | * getting much worse. So, use the individual functions for getting
|
---|
99 | * and esp. setting the hypervisor registers.
|
---|
100 | */
|
---|
101 | CPUMDECL(int) CPUMQueryHyperCtxPtr(PVM pVM, PCPUMCTX *ppCtx)
|
---|
102 | {
|
---|
103 | *ppCtx = &pVM->cpum.s.Hyper;
|
---|
104 | return VINF_SUCCESS;
|
---|
105 | }
|
---|
106 |
|
---|
107 | CPUMDECL(void) CPUMSetHyperGDTR(PVM pVM, uint32_t addr, uint16_t limit)
|
---|
108 | {
|
---|
109 | pVM->cpum.s.Hyper.gdtr.cbGdt = limit;
|
---|
110 | pVM->cpum.s.Hyper.gdtr.pGdt = addr;
|
---|
111 | pVM->cpum.s.Hyper.gdtrPadding = 0;
|
---|
112 | pVM->cpum.s.Hyper.gdtrPadding64 = 0;
|
---|
113 | }
|
---|
114 |
|
---|
115 | CPUMDECL(void) CPUMSetHyperIDTR(PVM pVM, uint32_t addr, uint16_t limit)
|
---|
116 | {
|
---|
117 | pVM->cpum.s.Hyper.idtr.cbIdt = limit;
|
---|
118 | pVM->cpum.s.Hyper.idtr.pIdt = addr;
|
---|
119 | pVM->cpum.s.Hyper.idtrPadding = 0;
|
---|
120 | pVM->cpum.s.Hyper.idtrPadding64 = 0;
|
---|
121 | }
|
---|
122 |
|
---|
123 | CPUMDECL(void) CPUMSetHyperCR3(PVM pVM, uint32_t cr3)
|
---|
124 | {
|
---|
125 | pVM->cpum.s.Hyper.cr3 = cr3;
|
---|
126 | }
|
---|
127 |
|
---|
128 | CPUMDECL(void) CPUMSetHyperCS(PVM pVM, RTSEL SelCS)
|
---|
129 | {
|
---|
130 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->cs = SelCS;
|
---|
131 | }
|
---|
132 |
|
---|
133 | CPUMDECL(void) CPUMSetHyperDS(PVM pVM, RTSEL SelDS)
|
---|
134 | {
|
---|
135 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->ds = SelDS;
|
---|
136 | }
|
---|
137 |
|
---|
138 | CPUMDECL(void) CPUMSetHyperES(PVM pVM, RTSEL SelES)
|
---|
139 | {
|
---|
140 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->es = SelES;
|
---|
141 | }
|
---|
142 |
|
---|
143 | CPUMDECL(void) CPUMSetHyperFS(PVM pVM, RTSEL SelFS)
|
---|
144 | {
|
---|
145 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->fs = SelFS;
|
---|
146 | }
|
---|
147 |
|
---|
148 | CPUMDECL(void) CPUMSetHyperGS(PVM pVM, RTSEL SelGS)
|
---|
149 | {
|
---|
150 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->gs = SelGS;
|
---|
151 | }
|
---|
152 |
|
---|
153 | CPUMDECL(void) CPUMSetHyperSS(PVM pVM, RTSEL SelSS)
|
---|
154 | {
|
---|
155 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->ss = SelSS;
|
---|
156 | }
|
---|
157 |
|
---|
158 | CPUMDECL(void) CPUMSetHyperESP(PVM pVM, uint32_t u32ESP)
|
---|
159 | {
|
---|
160 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->esp = u32ESP;
|
---|
161 | }
|
---|
162 |
|
---|
163 | CPUMDECL(int) CPUMSetHyperEFlags(PVM pVM, uint32_t Efl)
|
---|
164 | {
|
---|
165 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->eflags.u32 = Efl;
|
---|
166 | return VINF_SUCCESS;
|
---|
167 | }
|
---|
168 |
|
---|
169 | CPUMDECL(void) CPUMSetHyperEIP(PVM pVM, uint32_t u32EIP)
|
---|
170 | {
|
---|
171 | pVM->cpum.s.CTXALLSUFF(pHyperCore)->eip = u32EIP;
|
---|
172 | }
|
---|
173 |
|
---|
174 | CPUMDECL(void) CPUMSetHyperTR(PVM pVM, RTSEL SelTR)
|
---|
175 | {
|
---|
176 | pVM->cpum.s.Hyper.tr = SelTR;
|
---|
177 | }
|
---|
178 |
|
---|
179 | CPUMDECL(void) CPUMSetHyperLDTR(PVM pVM, RTSEL SelLDTR)
|
---|
180 | {
|
---|
181 | pVM->cpum.s.Hyper.ldtr = SelLDTR;
|
---|
182 | }
|
---|
183 |
|
---|
184 | CPUMDECL(void) CPUMSetHyperDR0(PVM pVM, RTGCUINTREG uDr0)
|
---|
185 | {
|
---|
186 | pVM->cpum.s.Hyper.dr0 = uDr0;
|
---|
187 | /** @todo in GC we must load it! */
|
---|
188 | }
|
---|
189 |
|
---|
190 | CPUMDECL(void) CPUMSetHyperDR1(PVM pVM, RTGCUINTREG uDr1)
|
---|
191 | {
|
---|
192 | pVM->cpum.s.Hyper.dr1 = uDr1;
|
---|
193 | /** @todo in GC we must load it! */
|
---|
194 | }
|
---|
195 |
|
---|
196 | CPUMDECL(void) CPUMSetHyperDR2(PVM pVM, RTGCUINTREG uDr2)
|
---|
197 | {
|
---|
198 | pVM->cpum.s.Hyper.dr2 = uDr2;
|
---|
199 | /** @todo in GC we must load it! */
|
---|
200 | }
|
---|
201 |
|
---|
202 | CPUMDECL(void) CPUMSetHyperDR3(PVM pVM, RTGCUINTREG uDr3)
|
---|
203 | {
|
---|
204 | pVM->cpum.s.Hyper.dr3 = uDr3;
|
---|
205 | /** @todo in GC we must load it! */
|
---|
206 | }
|
---|
207 |
|
---|
208 | CPUMDECL(void) CPUMSetHyperDR6(PVM pVM, RTGCUINTREG uDr6)
|
---|
209 | {
|
---|
210 | pVM->cpum.s.Hyper.dr6 = uDr6;
|
---|
211 | /** @todo in GC we must load it! */
|
---|
212 | }
|
---|
213 |
|
---|
214 | CPUMDECL(void) CPUMSetHyperDR7(PVM pVM, RTGCUINTREG uDr7)
|
---|
215 | {
|
---|
216 | pVM->cpum.s.Hyper.dr7 = uDr7;
|
---|
217 | /** @todo in GC we must load it! */
|
---|
218 | }
|
---|
219 |
|
---|
220 |
|
---|
221 | CPUMDECL(RTSEL) CPUMGetHyperCS(PVM pVM)
|
---|
222 | {
|
---|
223 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->cs;
|
---|
224 | }
|
---|
225 |
|
---|
226 | CPUMDECL(RTSEL) CPUMGetHyperDS(PVM pVM)
|
---|
227 | {
|
---|
228 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->ds;
|
---|
229 | }
|
---|
230 |
|
---|
231 | CPUMDECL(RTSEL) CPUMGetHyperES(PVM pVM)
|
---|
232 | {
|
---|
233 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->es;
|
---|
234 | }
|
---|
235 |
|
---|
236 | CPUMDECL(RTSEL) CPUMGetHyperFS(PVM pVM)
|
---|
237 | {
|
---|
238 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->fs;
|
---|
239 | }
|
---|
240 |
|
---|
241 | CPUMDECL(RTSEL) CPUMGetHyperGS(PVM pVM)
|
---|
242 | {
|
---|
243 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->gs;
|
---|
244 | }
|
---|
245 |
|
---|
246 | CPUMDECL(RTSEL) CPUMGetHyperSS(PVM pVM)
|
---|
247 | {
|
---|
248 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->ss;
|
---|
249 | }
|
---|
250 |
|
---|
251 | #if 0 /* these are not correct. */
|
---|
252 |
|
---|
253 | CPUMDECL(uint32_t) CPUMGetHyperCR0(PVM pVM)
|
---|
254 | {
|
---|
255 | return pVM->cpum.s.Hyper.cr0;
|
---|
256 | }
|
---|
257 |
|
---|
258 | CPUMDECL(uint32_t) CPUMGetHyperCR2(PVM pVM)
|
---|
259 | {
|
---|
260 | return pVM->cpum.s.Hyper.cr2;
|
---|
261 | }
|
---|
262 |
|
---|
263 | CPUMDECL(uint32_t) CPUMGetHyperCR3(PVM pVM)
|
---|
264 | {
|
---|
265 | return pVM->cpum.s.Hyper.cr3;
|
---|
266 | }
|
---|
267 |
|
---|
268 | CPUMDECL(uint32_t) CPUMGetHyperCR4(PVM pVM)
|
---|
269 | {
|
---|
270 | return pVM->cpum.s.Hyper.cr4;
|
---|
271 | }
|
---|
272 |
|
---|
273 | #endif /* not correct */
|
---|
274 |
|
---|
275 | CPUMDECL(uint32_t) CPUMGetHyperEAX(PVM pVM)
|
---|
276 | {
|
---|
277 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->eax;
|
---|
278 | }
|
---|
279 |
|
---|
280 | CPUMDECL(uint32_t) CPUMGetHyperEBX(PVM pVM)
|
---|
281 | {
|
---|
282 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->ebx;
|
---|
283 | }
|
---|
284 |
|
---|
285 | CPUMDECL(uint32_t) CPUMGetHyperECX(PVM pVM)
|
---|
286 | {
|
---|
287 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->ecx;
|
---|
288 | }
|
---|
289 |
|
---|
290 | CPUMDECL(uint32_t) CPUMGetHyperEDX(PVM pVM)
|
---|
291 | {
|
---|
292 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->edx;
|
---|
293 | }
|
---|
294 |
|
---|
295 | CPUMDECL(uint32_t) CPUMGetHyperESI(PVM pVM)
|
---|
296 | {
|
---|
297 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->esi;
|
---|
298 | }
|
---|
299 |
|
---|
300 | CPUMDECL(uint32_t) CPUMGetHyperEDI(PVM pVM)
|
---|
301 | {
|
---|
302 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->edi;
|
---|
303 | }
|
---|
304 |
|
---|
305 | CPUMDECL(uint32_t) CPUMGetHyperEBP(PVM pVM)
|
---|
306 | {
|
---|
307 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->ebp;
|
---|
308 | }
|
---|
309 |
|
---|
310 | CPUMDECL(uint32_t) CPUMGetHyperESP(PVM pVM)
|
---|
311 | {
|
---|
312 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->esp;
|
---|
313 | }
|
---|
314 |
|
---|
315 | CPUMDECL(uint32_t) CPUMGetHyperEFlags(PVM pVM)
|
---|
316 | {
|
---|
317 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->eflags.u32;
|
---|
318 | }
|
---|
319 |
|
---|
320 | CPUMDECL(uint32_t) CPUMGetHyperEIP(PVM pVM)
|
---|
321 | {
|
---|
322 | return pVM->cpum.s.CTXALLSUFF(pHyperCore)->eip;
|
---|
323 | }
|
---|
324 |
|
---|
325 | CPUMDECL(uint32_t) CPUMGetHyperIDTR(PVM pVM, uint16_t *pcbLimit)
|
---|
326 | {
|
---|
327 | if (pcbLimit)
|
---|
328 | *pcbLimit = pVM->cpum.s.Hyper.idtr.cbIdt;
|
---|
329 | return pVM->cpum.s.Hyper.idtr.pIdt;
|
---|
330 | }
|
---|
331 |
|
---|
332 | CPUMDECL(uint32_t) CPUMGetHyperGDTR(PVM pVM, uint16_t *pcbLimit)
|
---|
333 | {
|
---|
334 | if (pcbLimit)
|
---|
335 | *pcbLimit = pVM->cpum.s.Hyper.gdtr.cbGdt;
|
---|
336 | return pVM->cpum.s.Hyper.gdtr.pGdt;
|
---|
337 | }
|
---|
338 |
|
---|
339 | CPUMDECL(RTSEL) CPUMGetHyperLDTR(PVM pVM)
|
---|
340 | {
|
---|
341 | return pVM->cpum.s.Hyper.ldtr;
|
---|
342 | }
|
---|
343 |
|
---|
344 | CPUMDECL(RTGCUINTREG) CPUMGetHyperDR0(PVM pVM)
|
---|
345 | {
|
---|
346 | return pVM->cpum.s.Hyper.dr0;
|
---|
347 | }
|
---|
348 |
|
---|
349 | CPUMDECL(RTGCUINTREG) CPUMGetHyperDR1(PVM pVM)
|
---|
350 | {
|
---|
351 | return pVM->cpum.s.Hyper.dr1;
|
---|
352 | }
|
---|
353 |
|
---|
354 | CPUMDECL(RTGCUINTREG) CPUMGetHyperDR2(PVM pVM)
|
---|
355 | {
|
---|
356 | return pVM->cpum.s.Hyper.dr2;
|
---|
357 | }
|
---|
358 |
|
---|
359 | CPUMDECL(RTGCUINTREG) CPUMGetHyperDR3(PVM pVM)
|
---|
360 | {
|
---|
361 | return pVM->cpum.s.Hyper.dr3;
|
---|
362 | }
|
---|
363 |
|
---|
364 | CPUMDECL(RTGCUINTREG) CPUMGetHyperDR6(PVM pVM)
|
---|
365 | {
|
---|
366 | return pVM->cpum.s.Hyper.dr6;
|
---|
367 | }
|
---|
368 |
|
---|
369 | CPUMDECL(RTGCUINTREG) CPUMGetHyperDR7(PVM pVM)
|
---|
370 | {
|
---|
371 | return pVM->cpum.s.Hyper.dr7;
|
---|
372 | }
|
---|
373 |
|
---|
374 |
|
---|
375 | /**
|
---|
376 | * Gets the pointer to the internal CPUMCTXCORE structure.
|
---|
377 | * This is only for reading in order to save a few calls.
|
---|
378 | *
|
---|
379 | * @param pVM Handle to the virtual machine.
|
---|
380 | */
|
---|
381 | CPUMDECL(PCCPUMCTXCORE) CPUMGetGuestCtxCore(PVM pVM)
|
---|
382 | {
|
---|
383 | return CPUMCTX2CORE(&pVM->cpum.s.Guest);
|
---|
384 | }
|
---|
385 |
|
---|
386 |
|
---|
387 | /**
|
---|
388 | * Sets the guest context core registers.
|
---|
389 | *
|
---|
390 | * @param pVM Handle to the virtual machine.
|
---|
391 | * @param pCtxCore The new context core values.
|
---|
392 | */
|
---|
393 | CPUMDECL(void) CPUMSetGuestCtxCore(PVM pVM, PCCPUMCTXCORE pCtxCore)
|
---|
394 | {
|
---|
395 | /** @todo #1410 requires selectors to be checked. */
|
---|
396 |
|
---|
397 | PCPUMCTXCORE pCtxCoreDst CPUMCTX2CORE(&pVM->cpum.s.Guest);
|
---|
398 | *pCtxCoreDst = *pCtxCore;
|
---|
399 | }
|
---|
400 |
|
---|
401 |
|
---|
402 | /**
|
---|
403 | * Queries the pointer to the internal CPUMCTX structure
|
---|
404 | *
|
---|
405 | * @returns VBox status code.
|
---|
406 | * @param pVM Handle to the virtual machine.
|
---|
407 | * @param ppCtx Receives the CPUMCTX pointer when successful.
|
---|
408 | */
|
---|
409 | CPUMDECL(int) CPUMQueryGuestCtxPtr(PVM pVM, PCPUMCTX *ppCtx)
|
---|
410 | {
|
---|
411 | *ppCtx = &pVM->cpum.s.Guest;
|
---|
412 | return VINF_SUCCESS;
|
---|
413 | }
|
---|
414 |
|
---|
415 |
|
---|
416 | CPUMDECL(int) CPUMSetGuestGDTR(PVM pVM, uint32_t addr, uint16_t limit)
|
---|
417 | {
|
---|
418 | pVM->cpum.s.Guest.gdtr.cbGdt = limit;
|
---|
419 | pVM->cpum.s.Guest.gdtr.pGdt = addr;
|
---|
420 | pVM->cpum.s.fChanged |= CPUM_CHANGED_GDTR;
|
---|
421 | return VINF_SUCCESS;
|
---|
422 | }
|
---|
423 |
|
---|
424 | CPUMDECL(int) CPUMSetGuestIDTR(PVM pVM, uint32_t addr, uint16_t limit)
|
---|
425 | {
|
---|
426 | pVM->cpum.s.Guest.idtr.cbIdt = limit;
|
---|
427 | pVM->cpum.s.Guest.idtr.pIdt = addr;
|
---|
428 | pVM->cpum.s.fChanged |= CPUM_CHANGED_IDTR;
|
---|
429 | return VINF_SUCCESS;
|
---|
430 | }
|
---|
431 |
|
---|
432 | CPUMDECL(int) CPUMSetGuestTR(PVM pVM, uint16_t tr)
|
---|
433 | {
|
---|
434 | pVM->cpum.s.Guest.tr = tr;
|
---|
435 | pVM->cpum.s.fChanged |= CPUM_CHANGED_TR;
|
---|
436 | return VINF_SUCCESS;
|
---|
437 | }
|
---|
438 |
|
---|
439 | CPUMDECL(int) CPUMSetGuestLDTR(PVM pVM, uint16_t ldtr)
|
---|
440 | {
|
---|
441 | pVM->cpum.s.Guest.ldtr = ldtr;
|
---|
442 | pVM->cpum.s.fChanged |= CPUM_CHANGED_LDTR;
|
---|
443 | return VINF_SUCCESS;
|
---|
444 | }
|
---|
445 |
|
---|
446 |
|
---|
447 | /**
|
---|
448 | * Set the guest CR0.
|
---|
449 | *
|
---|
450 | * When called in GC, the hyper CR0 may be updated if that is
|
---|
451 | * required. The caller only has to take special action if AM,
|
---|
452 | * WP, PG or PE changes.
|
---|
453 | *
|
---|
454 | * @returns VINF_SUCCESS (consider it void).
|
---|
455 | * @param pVM Pointer to the shared VM structure.
|
---|
456 | * @param cr0 The new CR0 value.
|
---|
457 | */
|
---|
458 | CPUMDECL(int) CPUMSetGuestCR0(PVM pVM, uint64_t cr0)
|
---|
459 | {
|
---|
460 | #ifdef IN_GC
|
---|
461 | /*
|
---|
462 | * Check if we need to change hypervisor CR0 because
|
---|
463 | * of math stuff.
|
---|
464 | */
|
---|
465 | if ( (cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP))
|
---|
466 | != (pVM->cpum.s.Guest.cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP)))
|
---|
467 | {
|
---|
468 | if (!(pVM->cpum.s.fUseFlags & CPUM_USED_FPU))
|
---|
469 | {
|
---|
470 | /*
|
---|
471 | * We haven't saved the host FPU state yet, so TS and MT are both set
|
---|
472 | * and EM should be reflecting the guest EM (it always does this).
|
---|
473 | */
|
---|
474 | if ((cr0 & X86_CR0_EM) != (pVM->cpum.s.Guest.cr0 & X86_CR0_EM))
|
---|
475 | {
|
---|
476 | uint32_t HyperCR0 = ASMGetCR0();
|
---|
477 | AssertMsg((HyperCR0 & (X86_CR0_TS | X86_CR0_MP)) == (X86_CR0_TS | X86_CR0_MP), ("%#x\n", HyperCR0));
|
---|
478 | AssertMsg((HyperCR0 & X86_CR0_EM) == (pVM->cpum.s.Guest.cr0 & X86_CR0_EM), ("%#x\n", HyperCR0));
|
---|
479 | HyperCR0 &= ~X86_CR0_EM;
|
---|
480 | HyperCR0 |= cr0 & X86_CR0_EM;
|
---|
481 | Log(("CPUM New HyperCR0=%#x\n", HyperCR0));
|
---|
482 | ASMSetCR0(HyperCR0);
|
---|
483 | }
|
---|
484 | #ifdef VBOX_STRICT
|
---|
485 | else
|
---|
486 | {
|
---|
487 | uint32_t HyperCR0 = ASMGetCR0();
|
---|
488 | AssertMsg((HyperCR0 & (X86_CR0_TS | X86_CR0_MP)) == (X86_CR0_TS | X86_CR0_MP), ("%#x\n", HyperCR0));
|
---|
489 | AssertMsg((HyperCR0 & X86_CR0_EM) == (pVM->cpum.s.Guest.cr0 & X86_CR0_EM), ("%#x\n", HyperCR0));
|
---|
490 | }
|
---|
491 | #endif
|
---|
492 | }
|
---|
493 | else
|
---|
494 | {
|
---|
495 | /*
|
---|
496 | * Already saved the state, so we're just mirroring
|
---|
497 | * the guest flags.
|
---|
498 | */
|
---|
499 | uint32_t HyperCR0 = ASMGetCR0();
|
---|
500 | AssertMsg( (HyperCR0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP))
|
---|
501 | == (pVM->cpum.s.Guest.cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP)),
|
---|
502 | ("%#x %#x\n", HyperCR0, pVM->cpum.s.Guest.cr0));
|
---|
503 | HyperCR0 &= ~(X86_CR0_TS | X86_CR0_EM | X86_CR0_MP);
|
---|
504 | HyperCR0 |= cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP);
|
---|
505 | Log(("CPUM New HyperCR0=%#x\n", HyperCR0));
|
---|
506 | ASMSetCR0(HyperCR0);
|
---|
507 | }
|
---|
508 | }
|
---|
509 | #endif
|
---|
510 |
|
---|
511 | /*
|
---|
512 | * Check for changes causing TLB flushes (for REM).
|
---|
513 | * The caller is responsible for calling PGM when appropriate.
|
---|
514 | */
|
---|
515 | if ( (cr0 & (X86_CR0_PG | X86_CR0_WP | X86_CR0_PE))
|
---|
516 | != (pVM->cpum.s.Guest.cr0 & (X86_CR0_PG | X86_CR0_WP | X86_CR0_PE)))
|
---|
517 | pVM->cpum.s.fChanged |= CPUM_CHANGED_GLOBAL_TLB_FLUSH;
|
---|
518 | pVM->cpum.s.fChanged |= CPUM_CHANGED_CR0;
|
---|
519 |
|
---|
520 | pVM->cpum.s.Guest.cr0 = cr0 | X86_CR0_ET;
|
---|
521 | return VINF_SUCCESS;
|
---|
522 | }
|
---|
523 |
|
---|
524 | CPUMDECL(int) CPUMSetGuestCR2(PVM pVM, uint64_t cr2)
|
---|
525 | {
|
---|
526 | pVM->cpum.s.Guest.cr2 = cr2;
|
---|
527 | return VINF_SUCCESS;
|
---|
528 | }
|
---|
529 |
|
---|
530 | CPUMDECL(int) CPUMSetGuestCR3(PVM pVM, uint64_t cr3)
|
---|
531 | {
|
---|
532 | pVM->cpum.s.Guest.cr3 = cr3;
|
---|
533 | pVM->cpum.s.fChanged |= CPUM_CHANGED_CR3;
|
---|
534 | return VINF_SUCCESS;
|
---|
535 | }
|
---|
536 |
|
---|
537 | CPUMDECL(int) CPUMSetGuestCR4(PVM pVM, uint64_t cr4)
|
---|
538 | {
|
---|
539 | if ( (cr4 & (X86_CR4_PGE | X86_CR4_PAE | X86_CR4_PSE))
|
---|
540 | != (pVM->cpum.s.Guest.cr4 & (X86_CR4_PGE | X86_CR4_PAE | X86_CR4_PSE)))
|
---|
541 | pVM->cpum.s.fChanged |= CPUM_CHANGED_GLOBAL_TLB_FLUSH;
|
---|
542 | pVM->cpum.s.fChanged |= CPUM_CHANGED_CR4;
|
---|
543 | if (!CPUMSupportsFXSR(pVM))
|
---|
544 | cr4 &= ~X86_CR4_OSFSXR;
|
---|
545 | pVM->cpum.s.Guest.cr4 = cr4;
|
---|
546 | return VINF_SUCCESS;
|
---|
547 | }
|
---|
548 |
|
---|
549 | CPUMDECL(int) CPUMSetGuestEFlags(PVM pVM, uint32_t eflags)
|
---|
550 | {
|
---|
551 | pVM->cpum.s.Guest.eflags.u32 = eflags;
|
---|
552 | return VINF_SUCCESS;
|
---|
553 | }
|
---|
554 |
|
---|
555 | CPUMDECL(int) CPUMSetGuestEIP(PVM pVM, uint32_t eip)
|
---|
556 | {
|
---|
557 | pVM->cpum.s.Guest.eip = eip;
|
---|
558 | return VINF_SUCCESS;
|
---|
559 | }
|
---|
560 |
|
---|
561 | CPUMDECL(int) CPUMSetGuestEAX(PVM pVM, uint32_t eax)
|
---|
562 | {
|
---|
563 | pVM->cpum.s.Guest.eax = eax;
|
---|
564 | return VINF_SUCCESS;
|
---|
565 | }
|
---|
566 |
|
---|
567 | CPUMDECL(int) CPUMSetGuestEBX(PVM pVM, uint32_t ebx)
|
---|
568 | {
|
---|
569 | pVM->cpum.s.Guest.ebx = ebx;
|
---|
570 | return VINF_SUCCESS;
|
---|
571 | }
|
---|
572 |
|
---|
573 | CPUMDECL(int) CPUMSetGuestECX(PVM pVM, uint32_t ecx)
|
---|
574 | {
|
---|
575 | pVM->cpum.s.Guest.ecx = ecx;
|
---|
576 | return VINF_SUCCESS;
|
---|
577 | }
|
---|
578 |
|
---|
579 | CPUMDECL(int) CPUMSetGuestEDX(PVM pVM, uint32_t edx)
|
---|
580 | {
|
---|
581 | pVM->cpum.s.Guest.edx = edx;
|
---|
582 | return VINF_SUCCESS;
|
---|
583 | }
|
---|
584 |
|
---|
585 | CPUMDECL(int) CPUMSetGuestESP(PVM pVM, uint32_t esp)
|
---|
586 | {
|
---|
587 | pVM->cpum.s.Guest.esp = esp;
|
---|
588 | return VINF_SUCCESS;
|
---|
589 | }
|
---|
590 |
|
---|
591 | CPUMDECL(int) CPUMSetGuestEBP(PVM pVM, uint32_t ebp)
|
---|
592 | {
|
---|
593 | pVM->cpum.s.Guest.ebp = ebp;
|
---|
594 | return VINF_SUCCESS;
|
---|
595 | }
|
---|
596 |
|
---|
597 | CPUMDECL(int) CPUMSetGuestESI(PVM pVM, uint32_t esi)
|
---|
598 | {
|
---|
599 | pVM->cpum.s.Guest.esi = esi;
|
---|
600 | return VINF_SUCCESS;
|
---|
601 | }
|
---|
602 |
|
---|
603 | CPUMDECL(int) CPUMSetGuestEDI(PVM pVM, uint32_t edi)
|
---|
604 | {
|
---|
605 | pVM->cpum.s.Guest.edi = edi;
|
---|
606 | return VINF_SUCCESS;
|
---|
607 | }
|
---|
608 |
|
---|
609 | CPUMDECL(int) CPUMSetGuestSS(PVM pVM, uint16_t ss)
|
---|
610 | {
|
---|
611 | pVM->cpum.s.Guest.ss = ss;
|
---|
612 | return VINF_SUCCESS;
|
---|
613 | }
|
---|
614 |
|
---|
615 | CPUMDECL(int) CPUMSetGuestCS(PVM pVM, uint16_t cs)
|
---|
616 | {
|
---|
617 | pVM->cpum.s.Guest.cs = cs;
|
---|
618 | return VINF_SUCCESS;
|
---|
619 | }
|
---|
620 |
|
---|
621 | CPUMDECL(int) CPUMSetGuestDS(PVM pVM, uint16_t ds)
|
---|
622 | {
|
---|
623 | pVM->cpum.s.Guest.ds = ds;
|
---|
624 | return VINF_SUCCESS;
|
---|
625 | }
|
---|
626 |
|
---|
627 | CPUMDECL(int) CPUMSetGuestES(PVM pVM, uint16_t es)
|
---|
628 | {
|
---|
629 | pVM->cpum.s.Guest.es = es;
|
---|
630 | return VINF_SUCCESS;
|
---|
631 | }
|
---|
632 |
|
---|
633 | CPUMDECL(int) CPUMSetGuestFS(PVM pVM, uint16_t fs)
|
---|
634 | {
|
---|
635 | pVM->cpum.s.Guest.fs = fs;
|
---|
636 | return VINF_SUCCESS;
|
---|
637 | }
|
---|
638 |
|
---|
639 | CPUMDECL(int) CPUMSetGuestGS(PVM pVM, uint16_t gs)
|
---|
640 | {
|
---|
641 | pVM->cpum.s.Guest.gs = gs;
|
---|
642 | return VINF_SUCCESS;
|
---|
643 | }
|
---|
644 |
|
---|
645 | CPUMDECL(void) CPUMSetGuestEFER(PVM pVM, uint64_t val)
|
---|
646 | {
|
---|
647 | pVM->cpum.s.Guest.msrEFER = val;
|
---|
648 | }
|
---|
649 |
|
---|
650 | CPUMDECL(uint32_t) CPUMGetGuestIDTR(PVM pVM, uint16_t *pcbLimit)
|
---|
651 | {
|
---|
652 | if (pcbLimit)
|
---|
653 | *pcbLimit = pVM->cpum.s.Guest.idtr.cbIdt;
|
---|
654 | return pVM->cpum.s.Guest.idtr.pIdt;
|
---|
655 | }
|
---|
656 |
|
---|
657 | CPUMDECL(RTSEL) CPUMGetGuestTR(PVM pVM)
|
---|
658 | {
|
---|
659 | return pVM->cpum.s.Guest.tr;
|
---|
660 | }
|
---|
661 |
|
---|
662 | CPUMDECL(RTSEL) CPUMGetGuestCS(PVM pVM)
|
---|
663 | {
|
---|
664 | return pVM->cpum.s.Guest.cs;
|
---|
665 | }
|
---|
666 |
|
---|
667 | CPUMDECL(RTSEL) CPUMGetGuestDS(PVM pVM)
|
---|
668 | {
|
---|
669 | return pVM->cpum.s.Guest.ds;
|
---|
670 | }
|
---|
671 |
|
---|
672 | CPUMDECL(RTSEL) CPUMGetGuestES(PVM pVM)
|
---|
673 | {
|
---|
674 | return pVM->cpum.s.Guest.es;
|
---|
675 | }
|
---|
676 |
|
---|
677 | CPUMDECL(RTSEL) CPUMGetGuestFS(PVM pVM)
|
---|
678 | {
|
---|
679 | return pVM->cpum.s.Guest.fs;
|
---|
680 | }
|
---|
681 |
|
---|
682 | CPUMDECL(RTSEL) CPUMGetGuestGS(PVM pVM)
|
---|
683 | {
|
---|
684 | return pVM->cpum.s.Guest.gs;
|
---|
685 | }
|
---|
686 |
|
---|
687 | CPUMDECL(RTSEL) CPUMGetGuestSS(PVM pVM)
|
---|
688 | {
|
---|
689 | return pVM->cpum.s.Guest.ss;
|
---|
690 | }
|
---|
691 |
|
---|
692 | CPUMDECL(RTSEL) CPUMGetGuestLDTR(PVM pVM)
|
---|
693 | {
|
---|
694 | return pVM->cpum.s.Guest.ldtr;
|
---|
695 | }
|
---|
696 |
|
---|
697 | CPUMDECL(uint64_t) CPUMGetGuestCR0(PVM pVM)
|
---|
698 | {
|
---|
699 | return pVM->cpum.s.Guest.cr0;
|
---|
700 | }
|
---|
701 |
|
---|
702 | CPUMDECL(uint64_t) CPUMGetGuestCR2(PVM pVM)
|
---|
703 | {
|
---|
704 | return pVM->cpum.s.Guest.cr2;
|
---|
705 | }
|
---|
706 |
|
---|
707 | CPUMDECL(uint64_t) CPUMGetGuestCR3(PVM pVM)
|
---|
708 | {
|
---|
709 | return pVM->cpum.s.Guest.cr3;
|
---|
710 | }
|
---|
711 |
|
---|
712 | CPUMDECL(uint64_t) CPUMGetGuestCR4(PVM pVM)
|
---|
713 | {
|
---|
714 | return pVM->cpum.s.Guest.cr4;
|
---|
715 | }
|
---|
716 |
|
---|
717 | CPUMDECL(void) CPUMGetGuestGDTR(PVM pVM, PVBOXGDTR pGDTR)
|
---|
718 | {
|
---|
719 | *pGDTR = pVM->cpum.s.Guest.gdtr;
|
---|
720 | }
|
---|
721 |
|
---|
722 | CPUMDECL(uint32_t) CPUMGetGuestEIP(PVM pVM)
|
---|
723 | {
|
---|
724 | return pVM->cpum.s.Guest.eip;
|
---|
725 | }
|
---|
726 |
|
---|
727 | CPUMDECL(uint32_t) CPUMGetGuestEAX(PVM pVM)
|
---|
728 | {
|
---|
729 | return pVM->cpum.s.Guest.eax;
|
---|
730 | }
|
---|
731 |
|
---|
732 | CPUMDECL(uint32_t) CPUMGetGuestEBX(PVM pVM)
|
---|
733 | {
|
---|
734 | return pVM->cpum.s.Guest.ebx;
|
---|
735 | }
|
---|
736 |
|
---|
737 | CPUMDECL(uint32_t) CPUMGetGuestECX(PVM pVM)
|
---|
738 | {
|
---|
739 | return pVM->cpum.s.Guest.ecx;
|
---|
740 | }
|
---|
741 |
|
---|
742 | CPUMDECL(uint32_t) CPUMGetGuestEDX(PVM pVM)
|
---|
743 | {
|
---|
744 | return pVM->cpum.s.Guest.edx;
|
---|
745 | }
|
---|
746 |
|
---|
747 | CPUMDECL(uint32_t) CPUMGetGuestESI(PVM pVM)
|
---|
748 | {
|
---|
749 | return pVM->cpum.s.Guest.esi;
|
---|
750 | }
|
---|
751 |
|
---|
752 | CPUMDECL(uint32_t) CPUMGetGuestEDI(PVM pVM)
|
---|
753 | {
|
---|
754 | return pVM->cpum.s.Guest.edi;
|
---|
755 | }
|
---|
756 |
|
---|
757 | CPUMDECL(uint32_t) CPUMGetGuestESP(PVM pVM)
|
---|
758 | {
|
---|
759 | return pVM->cpum.s.Guest.esp;
|
---|
760 | }
|
---|
761 |
|
---|
762 | CPUMDECL(uint32_t) CPUMGetGuestEBP(PVM pVM)
|
---|
763 | {
|
---|
764 | return pVM->cpum.s.Guest.ebp;
|
---|
765 | }
|
---|
766 |
|
---|
767 | CPUMDECL(uint32_t) CPUMGetGuestEFlags(PVM pVM)
|
---|
768 | {
|
---|
769 | return pVM->cpum.s.Guest.eflags.u32;
|
---|
770 | }
|
---|
771 |
|
---|
772 | CPUMDECL(CPUMSELREGHID *) CPUMGetGuestTRHid(PVM pVM)
|
---|
773 | {
|
---|
774 | return &pVM->cpum.s.Guest.trHid;
|
---|
775 | }
|
---|
776 |
|
---|
777 | //@todo: crx should be an array
|
---|
778 | CPUMDECL(int) CPUMGetGuestCRx(PVM pVM, unsigned iReg, uint64_t *pValue)
|
---|
779 | {
|
---|
780 | switch (iReg)
|
---|
781 | {
|
---|
782 | case USE_REG_CR0:
|
---|
783 | *pValue = pVM->cpum.s.Guest.cr0;
|
---|
784 | break;
|
---|
785 | case USE_REG_CR2:
|
---|
786 | *pValue = pVM->cpum.s.Guest.cr2;
|
---|
787 | break;
|
---|
788 | case USE_REG_CR3:
|
---|
789 | *pValue = pVM->cpum.s.Guest.cr3;
|
---|
790 | break;
|
---|
791 | case USE_REG_CR4:
|
---|
792 | *pValue = pVM->cpum.s.Guest.cr4;
|
---|
793 | break;
|
---|
794 | default:
|
---|
795 | return VERR_INVALID_PARAMETER;
|
---|
796 | }
|
---|
797 | return VINF_SUCCESS;
|
---|
798 | }
|
---|
799 |
|
---|
800 | CPUMDECL(RTGCUINTREG) CPUMGetGuestDR0(PVM pVM)
|
---|
801 | {
|
---|
802 | return pVM->cpum.s.Guest.dr0;
|
---|
803 | }
|
---|
804 |
|
---|
805 | CPUMDECL(RTGCUINTREG) CPUMGetGuestDR1(PVM pVM)
|
---|
806 | {
|
---|
807 | return pVM->cpum.s.Guest.dr1;
|
---|
808 | }
|
---|
809 |
|
---|
810 | CPUMDECL(RTGCUINTREG) CPUMGetGuestDR2(PVM pVM)
|
---|
811 | {
|
---|
812 | return pVM->cpum.s.Guest.dr2;
|
---|
813 | }
|
---|
814 |
|
---|
815 | CPUMDECL(RTGCUINTREG) CPUMGetGuestDR3(PVM pVM)
|
---|
816 | {
|
---|
817 | return pVM->cpum.s.Guest.dr3;
|
---|
818 | }
|
---|
819 |
|
---|
820 | CPUMDECL(RTGCUINTREG) CPUMGetGuestDR6(PVM pVM)
|
---|
821 | {
|
---|
822 | return pVM->cpum.s.Guest.dr6;
|
---|
823 | }
|
---|
824 |
|
---|
825 | CPUMDECL(RTGCUINTREG) CPUMGetGuestDR7(PVM pVM)
|
---|
826 | {
|
---|
827 | return pVM->cpum.s.Guest.dr7;
|
---|
828 | }
|
---|
829 |
|
---|
830 | /** @todo drx should be an array */
|
---|
831 | CPUMDECL(int) CPUMGetGuestDRx(PVM pVM, uint32_t iReg, uint32_t *pValue)
|
---|
832 | {
|
---|
833 | switch (iReg)
|
---|
834 | {
|
---|
835 | case USE_REG_DR0:
|
---|
836 | *pValue = pVM->cpum.s.Guest.dr0;
|
---|
837 | break;
|
---|
838 | case USE_REG_DR1:
|
---|
839 | *pValue = pVM->cpum.s.Guest.dr1;
|
---|
840 | break;
|
---|
841 | case USE_REG_DR2:
|
---|
842 | *pValue = pVM->cpum.s.Guest.dr2;
|
---|
843 | break;
|
---|
844 | case USE_REG_DR3:
|
---|
845 | *pValue = pVM->cpum.s.Guest.dr3;
|
---|
846 | break;
|
---|
847 | case USE_REG_DR4:
|
---|
848 | case USE_REG_DR6:
|
---|
849 | *pValue = pVM->cpum.s.Guest.dr6;
|
---|
850 | break;
|
---|
851 | case USE_REG_DR5:
|
---|
852 | case USE_REG_DR7:
|
---|
853 | *pValue = pVM->cpum.s.Guest.dr7;
|
---|
854 | break;
|
---|
855 |
|
---|
856 | default:
|
---|
857 | return VERR_INVALID_PARAMETER;
|
---|
858 | }
|
---|
859 | return VINF_SUCCESS;
|
---|
860 | }
|
---|
861 |
|
---|
862 | CPUMDECL(uint64_t) CPUMGetGuestEFER(PVM pVM)
|
---|
863 | {
|
---|
864 | return pVM->cpum.s.Guest.msrEFER;
|
---|
865 | }
|
---|
866 |
|
---|
867 | /**
|
---|
868 | * Gets a CpuId leaf.
|
---|
869 | *
|
---|
870 | * @param pVM The VM handle.
|
---|
871 | * @param iLeaf The CPUID leaf to get.
|
---|
872 | * @param pEax Where to store the EAX value.
|
---|
873 | * @param pEbx Where to store the EBX value.
|
---|
874 | * @param pEcx Where to store the ECX value.
|
---|
875 | * @param pEdx Where to store the EDX value.
|
---|
876 | */
|
---|
877 | CPUMDECL(void) CPUMGetGuestCpuId(PVM pVM, uint32_t iLeaf, uint32_t *pEax, uint32_t *pEbx, uint32_t *pEcx, uint32_t *pEdx)
|
---|
878 | {
|
---|
879 | PCCPUMCPUID pCpuId;
|
---|
880 | if (iLeaf < ELEMENTS(pVM->cpum.s.aGuestCpuIdStd))
|
---|
881 | pCpuId = &pVM->cpum.s.aGuestCpuIdStd[iLeaf];
|
---|
882 | else if (iLeaf - UINT32_C(0x80000000) < RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdExt))
|
---|
883 | pCpuId = &pVM->cpum.s.aGuestCpuIdExt[iLeaf - UINT32_C(0x80000000)];
|
---|
884 | else if (iLeaf - UINT32_C(0xc0000000) < RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdCentaur))
|
---|
885 | pCpuId = &pVM->cpum.s.aGuestCpuIdCentaur[iLeaf - UINT32_C(0xc0000000)];
|
---|
886 | else
|
---|
887 | pCpuId = &pVM->cpum.s.GuestCpuIdDef;
|
---|
888 |
|
---|
889 | *pEax = pCpuId->eax;
|
---|
890 | *pEbx = pCpuId->ebx;
|
---|
891 | *pEcx = pCpuId->ecx;
|
---|
892 | *pEdx = pCpuId->edx;
|
---|
893 | Log2(("CPUMGetGuestCpuId: iLeaf=%#010x %RX32 %RX32 %RX32 %RX32\n", iLeaf, *pEax, *pEbx, *pEcx, *pEdx));
|
---|
894 | }
|
---|
895 |
|
---|
896 | /**
|
---|
897 | * Gets a pointer to the array of standard CPUID leafs.
|
---|
898 | *
|
---|
899 | * CPUMGetGuestCpuIdStdMax() give the size of the array.
|
---|
900 | *
|
---|
901 | * @returns Pointer to the standard CPUID leafs (read-only).
|
---|
902 | * @param pVM The VM handle.
|
---|
903 | * @remark Intended for PATM.
|
---|
904 | */
|
---|
905 | CPUMDECL(RCPTRTYPE(PCCPUMCPUID)) CPUMGetGuestCpuIdStdGCPtr(PVM pVM)
|
---|
906 | {
|
---|
907 | return RCPTRTYPE(PCCPUMCPUID)VM_GUEST_ADDR(pVM, &pVM->cpum.s.aGuestCpuIdStd[0]);
|
---|
908 | }
|
---|
909 |
|
---|
910 | /**
|
---|
911 | * Gets a pointer to the array of extended CPUID leafs.
|
---|
912 | *
|
---|
913 | * CPUMGetGuestCpuIdExtMax() give the size of the array.
|
---|
914 | *
|
---|
915 | * @returns Pointer to the extended CPUID leafs (read-only).
|
---|
916 | * @param pVM The VM handle.
|
---|
917 | * @remark Intended for PATM.
|
---|
918 | */
|
---|
919 | CPUMDECL(RCPTRTYPE(PCCPUMCPUID)) CPUMGetGuestCpuIdExtGCPtr(PVM pVM)
|
---|
920 | {
|
---|
921 | return RCPTRTYPE(PCCPUMCPUID)VM_GUEST_ADDR(pVM, &pVM->cpum.s.aGuestCpuIdExt[0]);
|
---|
922 | }
|
---|
923 |
|
---|
924 | /**
|
---|
925 | * Gets a pointer to the array of centaur CPUID leafs.
|
---|
926 | *
|
---|
927 | * CPUMGetGuestCpuIdCentaurMax() give the size of the array.
|
---|
928 | *
|
---|
929 | * @returns Pointer to the centaur CPUID leafs (read-only).
|
---|
930 | * @param pVM The VM handle.
|
---|
931 | * @remark Intended for PATM.
|
---|
932 | */
|
---|
933 | CPUMDECL(RCPTRTYPE(PCCPUMCPUID)) CPUMGetGuestCpuIdCentaurGCPtr(PVM pVM)
|
---|
934 | {
|
---|
935 | return RCPTRTYPE(PCCPUMCPUID)VM_GUEST_ADDR(pVM, &pVM->cpum.s.aGuestCpuIdCentaur[0]);
|
---|
936 | }
|
---|
937 |
|
---|
938 | /**
|
---|
939 | * Gets a pointer to the default CPUID leaf.
|
---|
940 | *
|
---|
941 | * @returns Pointer to the default CPUID leaf (read-only).
|
---|
942 | * @param pVM The VM handle.
|
---|
943 | * @remark Intended for PATM.
|
---|
944 | */
|
---|
945 | CPUMDECL(RCPTRTYPE(PCCPUMCPUID)) CPUMGetGuestCpuIdDefGCPtr(PVM pVM)
|
---|
946 | {
|
---|
947 | return RCPTRTYPE(PCCPUMCPUID)VM_GUEST_ADDR(pVM, &pVM->cpum.s.GuestCpuIdDef);
|
---|
948 | }
|
---|
949 |
|
---|
950 | /**
|
---|
951 | * Gets a number of standard CPUID leafs.
|
---|
952 | *
|
---|
953 | * @returns Number of leafs.
|
---|
954 | * @param pVM The VM handle.
|
---|
955 | * @remark Intended for PATM.
|
---|
956 | */
|
---|
957 | CPUMDECL(uint32_t) CPUMGetGuestCpuIdStdMax(PVM pVM)
|
---|
958 | {
|
---|
959 | return RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdStd);
|
---|
960 | }
|
---|
961 |
|
---|
962 | /**
|
---|
963 | * Gets a number of extended CPUID leafs.
|
---|
964 | *
|
---|
965 | * @returns Number of leafs.
|
---|
966 | * @param pVM The VM handle.
|
---|
967 | * @remark Intended for PATM.
|
---|
968 | */
|
---|
969 | CPUMDECL(uint32_t) CPUMGetGuestCpuIdExtMax(PVM pVM)
|
---|
970 | {
|
---|
971 | return RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdExt);
|
---|
972 | }
|
---|
973 |
|
---|
974 | /**
|
---|
975 | * Gets a number of centaur CPUID leafs.
|
---|
976 | *
|
---|
977 | * @returns Number of leafs.
|
---|
978 | * @param pVM The VM handle.
|
---|
979 | * @remark Intended for PATM.
|
---|
980 | */
|
---|
981 | CPUMDECL(uint32_t) CPUMGetGuestCpuIdCentaurMax(PVM pVM)
|
---|
982 | {
|
---|
983 | return RT_ELEMENTS(pVM->cpum.s.aGuestCpuIdCentaur);
|
---|
984 | }
|
---|
985 |
|
---|
986 | /**
|
---|
987 | * Sets a CPUID feature bit.
|
---|
988 | *
|
---|
989 | * @param pVM The VM Handle.
|
---|
990 | * @param enmFeature The feature to set.
|
---|
991 | */
|
---|
992 | CPUMDECL(void) CPUMSetGuestCpuIdFeature(PVM pVM, CPUMCPUIDFEATURE enmFeature)
|
---|
993 | {
|
---|
994 | switch (enmFeature)
|
---|
995 | {
|
---|
996 | /*
|
---|
997 | * Set the APIC bit in both feature masks.
|
---|
998 | */
|
---|
999 | case CPUMCPUIDFEATURE_APIC:
|
---|
1000 | if (pVM->cpum.s.aGuestCpuIdStd[0].eax >= 1)
|
---|
1001 | pVM->cpum.s.aGuestCpuIdStd[1].edx |= X86_CPUID_FEATURE_EDX_APIC;
|
---|
1002 | if ( pVM->cpum.s.aGuestCpuIdExt[0].eax >= 0x80000001
|
---|
1003 | && pVM->cpum.s.aGuestCpuIdExt[1].edx)
|
---|
1004 | pVM->cpum.s.aGuestCpuIdExt[1].edx |= X86_CPUID_AMD_FEATURE_EDX_APIC;
|
---|
1005 | Log(("CPUMSetGuestCpuIdFeature: Enabled APIC\n"));
|
---|
1006 | break;
|
---|
1007 |
|
---|
1008 | /*
|
---|
1009 | * Set the sysenter/sysexit bit in both feature masks.
|
---|
1010 | * Assumes the caller knows what it's doing! (host must support these)
|
---|
1011 | */
|
---|
1012 | case CPUMCPUIDFEATURE_SEP:
|
---|
1013 | {
|
---|
1014 | if (!(ASMCpuId_EDX(1) & X86_CPUID_FEATURE_EDX_SEP))
|
---|
1015 | {
|
---|
1016 | AssertMsgFailed(("ERROR: Can't turn on SEP when the host doesn't support it!!\n"));
|
---|
1017 | return;
|
---|
1018 | }
|
---|
1019 |
|
---|
1020 | if (pVM->cpum.s.aGuestCpuIdStd[0].eax >= 1)
|
---|
1021 | pVM->cpum.s.aGuestCpuIdStd[1].edx |= X86_CPUID_FEATURE_EDX_SEP;
|
---|
1022 | if ( pVM->cpum.s.aGuestCpuIdExt[0].eax >= 0x80000001
|
---|
1023 | && pVM->cpum.s.aGuestCpuIdExt[1].edx)
|
---|
1024 | pVM->cpum.s.aGuestCpuIdExt[1].edx |= X86_CPUID_AMD_FEATURE_EDX_SEP;
|
---|
1025 | Log(("CPUMSetGuestCpuIdFeature: Enabled sysenter/exit\n"));
|
---|
1026 | break;
|
---|
1027 | }
|
---|
1028 |
|
---|
1029 | /*
|
---|
1030 | * Set the PAE bit in both feature masks.
|
---|
1031 | * Assumes the caller knows what it's doing! (host must support these)
|
---|
1032 | */
|
---|
1033 | case CPUMCPUIDFEATURE_PAE:
|
---|
1034 | {
|
---|
1035 | if (!(ASMCpuId_EDX(1) & X86_CPUID_FEATURE_EDX_PAE))
|
---|
1036 | {
|
---|
1037 | LogRel(("WARNING: Can't turn on PAE when the host doesn't support it!!\n"));
|
---|
1038 | return;
|
---|
1039 | }
|
---|
1040 |
|
---|
1041 | if (pVM->cpum.s.aGuestCpuIdStd[0].eax >= 1)
|
---|
1042 | pVM->cpum.s.aGuestCpuIdStd[1].edx |= X86_CPUID_FEATURE_EDX_PAE;
|
---|
1043 | if ( pVM->cpum.s.aGuestCpuIdExt[0].eax >= 0x80000001
|
---|
1044 | && pVM->cpum.s.aGuestCpuIdExt[1].edx)
|
---|
1045 | pVM->cpum.s.aGuestCpuIdExt[1].edx |= X86_CPUID_AMD_FEATURE_EDX_PAE;
|
---|
1046 | Log(("CPUMSetGuestCpuIdFeature: Enabled PAE\n"));
|
---|
1047 | break;
|
---|
1048 | }
|
---|
1049 |
|
---|
1050 | /*
|
---|
1051 | * Set the LONG MODE bit in the extended feature mask.
|
---|
1052 | * Assumes the caller knows what it's doing! (host must support these)
|
---|
1053 | */
|
---|
1054 | case CPUMCPUIDFEATURE_LONG_MODE:
|
---|
1055 | {
|
---|
1056 | if ( pVM->cpum.s.aGuestCpuIdExt[0].eax < 0x80000001
|
---|
1057 | || !(ASMCpuId_EDX(0x80000001) & X86_CPUID_AMD_FEATURE_EDX_LONG_MODE))
|
---|
1058 | {
|
---|
1059 | AssertMsgFailed(("ERROR: Can't turn on LONG MODE when the host doesn't support it!!\n"));
|
---|
1060 | return;
|
---|
1061 | }
|
---|
1062 |
|
---|
1063 | if ( pVM->cpum.s.aGuestCpuIdExt[0].eax >= 0x80000001
|
---|
1064 | && pVM->cpum.s.aGuestCpuIdExt[1].edx)
|
---|
1065 | pVM->cpum.s.aGuestCpuIdExt[1].edx |= X86_CPUID_AMD_FEATURE_EDX_LONG_MODE;
|
---|
1066 | Log(("CPUMSetGuestCpuIdFeature: Enabled LONG MODE\n"));
|
---|
1067 | break;
|
---|
1068 | }
|
---|
1069 |
|
---|
1070 | default:
|
---|
1071 | AssertMsgFailed(("enmFeature=%d\n", enmFeature));
|
---|
1072 | break;
|
---|
1073 | }
|
---|
1074 | pVM->cpum.s.fChanged |= CPUM_CHANGED_CPUID;
|
---|
1075 | }
|
---|
1076 |
|
---|
1077 | /**
|
---|
1078 | * Queries a CPUID feature bit.
|
---|
1079 | *
|
---|
1080 | * @returns boolean for feature presence
|
---|
1081 | * @param pVM The VM Handle.
|
---|
1082 | * @param enmFeature The feature to query.
|
---|
1083 | */
|
---|
1084 | CPUMDECL(bool) CPUMGetGuestCpuIdFeature(PVM pVM, CPUMCPUIDFEATURE enmFeature)
|
---|
1085 | {
|
---|
1086 | switch (enmFeature)
|
---|
1087 | {
|
---|
1088 | case CPUMCPUIDFEATURE_PAE:
|
---|
1089 | {
|
---|
1090 | if (pVM->cpum.s.aGuestCpuIdStd[0].eax >= 1)
|
---|
1091 | return !!(pVM->cpum.s.aGuestCpuIdStd[1].edx & X86_CPUID_FEATURE_EDX_PAE);
|
---|
1092 | break;
|
---|
1093 | }
|
---|
1094 |
|
---|
1095 | default:
|
---|
1096 | AssertMsgFailed(("enmFeature=%d\n", enmFeature));
|
---|
1097 | break;
|
---|
1098 | }
|
---|
1099 | return false;
|
---|
1100 | }
|
---|
1101 |
|
---|
1102 | /**
|
---|
1103 | * Clears a CPUID feature bit.
|
---|
1104 | *
|
---|
1105 | * @param pVM The VM Handle.
|
---|
1106 | * @param enmFeature The feature to clear.
|
---|
1107 | */
|
---|
1108 | CPUMDECL(void) CPUMClearGuestCpuIdFeature(PVM pVM, CPUMCPUIDFEATURE enmFeature)
|
---|
1109 | {
|
---|
1110 | switch (enmFeature)
|
---|
1111 | {
|
---|
1112 | /*
|
---|
1113 | * Set the APIC bit in both feature masks.
|
---|
1114 | */
|
---|
1115 | case CPUMCPUIDFEATURE_APIC:
|
---|
1116 | if (pVM->cpum.s.aGuestCpuIdStd[0].eax >= 1)
|
---|
1117 | pVM->cpum.s.aGuestCpuIdStd[1].edx &= ~X86_CPUID_FEATURE_EDX_APIC;
|
---|
1118 | if (pVM->cpum.s.aGuestCpuIdExt[0].eax >= 0x80000001)
|
---|
1119 | pVM->cpum.s.aGuestCpuIdExt[1].edx &= ~X86_CPUID_AMD_FEATURE_EDX_APIC;
|
---|
1120 | Log(("CPUMSetGuestCpuIdFeature: Disabled APIC\n"));
|
---|
1121 | break;
|
---|
1122 |
|
---|
1123 | case CPUMCPUIDFEATURE_PAE:
|
---|
1124 | {
|
---|
1125 | if (pVM->cpum.s.aGuestCpuIdStd[0].eax >= 1)
|
---|
1126 | pVM->cpum.s.aGuestCpuIdStd[1].edx &= ~X86_CPUID_FEATURE_EDX_PAE;
|
---|
1127 | if ( pVM->cpum.s.aGuestCpuIdExt[0].eax >= 0x80000001
|
---|
1128 | && pVM->cpum.s.aGuestCpuIdExt[1].edx)
|
---|
1129 | pVM->cpum.s.aGuestCpuIdExt[1].edx &= ~X86_CPUID_AMD_FEATURE_EDX_PAE;
|
---|
1130 | LogRel(("CPUMClearGuestCpuIdFeature: Disabled PAE!\n"));
|
---|
1131 | break;
|
---|
1132 | }
|
---|
1133 |
|
---|
1134 | default:
|
---|
1135 | AssertMsgFailed(("enmFeature=%d\n", enmFeature));
|
---|
1136 | break;
|
---|
1137 | }
|
---|
1138 | pVM->cpum.s.fChanged |= CPUM_CHANGED_CPUID;
|
---|
1139 | }
|
---|
1140 |
|
---|
1141 |
|
---|
1142 |
|
---|
1143 | CPUMDECL(int) CPUMSetGuestDR0(PVM pVM, RTGCUINTREG uDr0)
|
---|
1144 | {
|
---|
1145 | pVM->cpum.s.Guest.dr0 = uDr0;
|
---|
1146 | return CPUMRecalcHyperDRx(pVM);
|
---|
1147 | }
|
---|
1148 |
|
---|
1149 | CPUMDECL(int) CPUMSetGuestDR1(PVM pVM, RTGCUINTREG uDr1)
|
---|
1150 | {
|
---|
1151 | pVM->cpum.s.Guest.dr1 = uDr1;
|
---|
1152 | return CPUMRecalcHyperDRx(pVM);
|
---|
1153 | }
|
---|
1154 |
|
---|
1155 | CPUMDECL(int) CPUMSetGuestDR2(PVM pVM, RTGCUINTREG uDr2)
|
---|
1156 | {
|
---|
1157 | pVM->cpum.s.Guest.dr2 = uDr2;
|
---|
1158 | return CPUMRecalcHyperDRx(pVM);
|
---|
1159 | }
|
---|
1160 |
|
---|
1161 | CPUMDECL(int) CPUMSetGuestDR3(PVM pVM, RTGCUINTREG uDr3)
|
---|
1162 | {
|
---|
1163 | pVM->cpum.s.Guest.dr3 = uDr3;
|
---|
1164 | return CPUMRecalcHyperDRx(pVM);
|
---|
1165 | }
|
---|
1166 |
|
---|
1167 | CPUMDECL(int) CPUMSetGuestDR6(PVM pVM, RTGCUINTREG uDr6)
|
---|
1168 | {
|
---|
1169 | pVM->cpum.s.Guest.dr6 = uDr6;
|
---|
1170 | return CPUMRecalcHyperDRx(pVM);
|
---|
1171 | }
|
---|
1172 |
|
---|
1173 | CPUMDECL(int) CPUMSetGuestDR7(PVM pVM, RTGCUINTREG uDr7)
|
---|
1174 | {
|
---|
1175 | pVM->cpum.s.Guest.dr7 = uDr7;
|
---|
1176 | return CPUMRecalcHyperDRx(pVM);
|
---|
1177 | }
|
---|
1178 |
|
---|
1179 | /** @todo drx should be an array */
|
---|
1180 | CPUMDECL(int) CPUMSetGuestDRx(PVM pVM, uint32_t iReg, uint32_t Value)
|
---|
1181 | {
|
---|
1182 | switch (iReg)
|
---|
1183 | {
|
---|
1184 | case USE_REG_DR0:
|
---|
1185 | pVM->cpum.s.Guest.dr0 = Value;
|
---|
1186 | break;
|
---|
1187 | case USE_REG_DR1:
|
---|
1188 | pVM->cpum.s.Guest.dr1 = Value;
|
---|
1189 | break;
|
---|
1190 | case USE_REG_DR2:
|
---|
1191 | pVM->cpum.s.Guest.dr2 = Value;
|
---|
1192 | break;
|
---|
1193 | case USE_REG_DR3:
|
---|
1194 | pVM->cpum.s.Guest.dr3 = Value;
|
---|
1195 | break;
|
---|
1196 | case USE_REG_DR4:
|
---|
1197 | case USE_REG_DR6:
|
---|
1198 | pVM->cpum.s.Guest.dr6 = Value;
|
---|
1199 | break;
|
---|
1200 | case USE_REG_DR5:
|
---|
1201 | case USE_REG_DR7:
|
---|
1202 | pVM->cpum.s.Guest.dr7 = Value;
|
---|
1203 | break;
|
---|
1204 |
|
---|
1205 | default:
|
---|
1206 | return VERR_INVALID_PARAMETER;
|
---|
1207 | }
|
---|
1208 | return CPUMRecalcHyperDRx(pVM);
|
---|
1209 | }
|
---|
1210 |
|
---|
1211 |
|
---|
1212 | /**
|
---|
1213 | * Recalculates the hypvervisor DRx register values based on
|
---|
1214 | * current guest registers and DBGF breakpoints.
|
---|
1215 | *
|
---|
1216 | * This is called whenever a guest DRx register is modified and when DBGF
|
---|
1217 | * sets a hardware breakpoint. In guest context this function will reload
|
---|
1218 | * any (hyper) DRx registers which comes out with a different value.
|
---|
1219 | *
|
---|
1220 | * @returns VINF_SUCCESS.
|
---|
1221 | * @param pVM The VM handle.
|
---|
1222 | */
|
---|
1223 | CPUMDECL(int) CPUMRecalcHyperDRx(PVM pVM)
|
---|
1224 | {
|
---|
1225 | /*
|
---|
1226 | * Compare the DR7s first.
|
---|
1227 | *
|
---|
1228 | * We only care about the enabled flags. The GE and LE flags are always
|
---|
1229 | * set and we don't care if the guest doesn't set them. GD is virtualized
|
---|
1230 | * when we dispatch #DB, we never enable it.
|
---|
1231 | */
|
---|
1232 | const RTGCUINTREG uDbgfDr7 = DBGFBpGetDR7(pVM);
|
---|
1233 | #ifdef CPUM_VIRTUALIZE_DRX
|
---|
1234 | const RTGCUINTREG uGstDr7 = CPUMGetGuestDR7(pVM);
|
---|
1235 | #else
|
---|
1236 | const RTGCUINTREG uGstDr7 = 0;
|
---|
1237 | #endif
|
---|
1238 | if ((uGstDr7 | uDbgfDr7) & X86_DR7_ENABLED_MASK)
|
---|
1239 | {
|
---|
1240 | /*
|
---|
1241 | * Ok, something is enabled. Recalc each of the breakpoints.
|
---|
1242 | * Straight forward code, not optimized/minimized in any way.
|
---|
1243 | */
|
---|
1244 | RTGCUINTREG uNewDr7 = X86_DR7_GE | X86_DR7_LE | X86_DR7_MB1_MASK;
|
---|
1245 |
|
---|
1246 | /* bp 0 */
|
---|
1247 | RTGCUINTREG uNewDr0;
|
---|
1248 | if (uDbgfDr7 & (X86_DR7_L0 | X86_DR7_G0))
|
---|
1249 | {
|
---|
1250 | uNewDr7 |= uDbgfDr7 & (X86_DR7_L0 | X86_DR7_G0 | X86_DR7_RW0_MASK | X86_DR7_LEN0_MASK);
|
---|
1251 | uNewDr0 = DBGFBpGetDR0(pVM);
|
---|
1252 | }
|
---|
1253 | else if (uGstDr7 & (X86_DR7_L0 | X86_DR7_G0))
|
---|
1254 | {
|
---|
1255 | uNewDr7 |= uGstDr7 & (X86_DR7_L0 | X86_DR7_G0 | X86_DR7_RW0_MASK | X86_DR7_LEN0_MASK);
|
---|
1256 | uNewDr0 = CPUMGetGuestDR0(pVM);
|
---|
1257 | }
|
---|
1258 | else
|
---|
1259 | uNewDr0 = pVM->cpum.s.Hyper.dr0;
|
---|
1260 |
|
---|
1261 | /* bp 1 */
|
---|
1262 | RTGCUINTREG uNewDr1;
|
---|
1263 | if (uDbgfDr7 & (X86_DR7_L1 | X86_DR7_G1))
|
---|
1264 | {
|
---|
1265 | uNewDr7 |= uDbgfDr7 & (X86_DR7_L1 | X86_DR7_G1 | X86_DR7_RW1_MASK | X86_DR7_LEN1_MASK);
|
---|
1266 | uNewDr1 = DBGFBpGetDR1(pVM);
|
---|
1267 | }
|
---|
1268 | else if (uGstDr7 & (X86_DR7_L1 | X86_DR7_G1))
|
---|
1269 | {
|
---|
1270 | uNewDr7 |= uGstDr7 & (X86_DR7_L1 | X86_DR7_G1 | X86_DR7_RW1_MASK | X86_DR7_LEN1_MASK);
|
---|
1271 | uNewDr1 = CPUMGetGuestDR1(pVM);
|
---|
1272 | }
|
---|
1273 | else
|
---|
1274 | uNewDr1 = pVM->cpum.s.Hyper.dr1;
|
---|
1275 |
|
---|
1276 | /* bp 2 */
|
---|
1277 | RTGCUINTREG uNewDr2;
|
---|
1278 | if (uDbgfDr7 & (X86_DR7_L2 | X86_DR7_G2))
|
---|
1279 | {
|
---|
1280 | uNewDr7 |= uDbgfDr7 & (X86_DR7_L2 | X86_DR7_G2 | X86_DR7_RW2_MASK | X86_DR7_LEN2_MASK);
|
---|
1281 | uNewDr2 = DBGFBpGetDR2(pVM);
|
---|
1282 | }
|
---|
1283 | else if (uGstDr7 & (X86_DR7_L2 | X86_DR7_G2))
|
---|
1284 | {
|
---|
1285 | uNewDr7 |= uGstDr7 & (X86_DR7_L2 | X86_DR7_G2 | X86_DR7_RW2_MASK | X86_DR7_LEN2_MASK);
|
---|
1286 | uNewDr2 = CPUMGetGuestDR2(pVM);
|
---|
1287 | }
|
---|
1288 | else
|
---|
1289 | uNewDr2 = pVM->cpum.s.Hyper.dr2;
|
---|
1290 |
|
---|
1291 | /* bp 3 */
|
---|
1292 | RTGCUINTREG uNewDr3;
|
---|
1293 | if (uDbgfDr7 & (X86_DR7_L3 | X86_DR7_G3))
|
---|
1294 | {
|
---|
1295 | uNewDr7 |= uDbgfDr7 & (X86_DR7_L3 | X86_DR7_G3 | X86_DR7_RW3_MASK | X86_DR7_LEN3_MASK);
|
---|
1296 | uNewDr3 = DBGFBpGetDR3(pVM);
|
---|
1297 | }
|
---|
1298 | else if (uGstDr7 & (X86_DR7_L3 | X86_DR7_G3))
|
---|
1299 | {
|
---|
1300 | uNewDr7 |= uGstDr7 & (X86_DR7_L3 | X86_DR7_G3 | X86_DR7_RW3_MASK | X86_DR7_LEN3_MASK);
|
---|
1301 | uNewDr3 = CPUMGetGuestDR3(pVM);
|
---|
1302 | }
|
---|
1303 | else
|
---|
1304 | uNewDr3 = pVM->cpum.s.Hyper.dr3;
|
---|
1305 |
|
---|
1306 | /*
|
---|
1307 | * Apply the updates.
|
---|
1308 | */
|
---|
1309 | #ifdef IN_GC
|
---|
1310 | if (!(pVM->cpum.s.fUseFlags & CPUM_USE_DEBUG_REGS))
|
---|
1311 | {
|
---|
1312 | /** @todo save host DBx registers. */
|
---|
1313 | }
|
---|
1314 | #endif
|
---|
1315 | pVM->cpum.s.fUseFlags |= CPUM_USE_DEBUG_REGS;
|
---|
1316 | if (uNewDr3 != pVM->cpum.s.Hyper.dr3)
|
---|
1317 | CPUMSetHyperDR3(pVM, uNewDr3);
|
---|
1318 | if (uNewDr2 != pVM->cpum.s.Hyper.dr2)
|
---|
1319 | CPUMSetHyperDR2(pVM, uNewDr2);
|
---|
1320 | if (uNewDr1 != pVM->cpum.s.Hyper.dr1)
|
---|
1321 | CPUMSetHyperDR1(pVM, uNewDr1);
|
---|
1322 | if (uNewDr0 != pVM->cpum.s.Hyper.dr0)
|
---|
1323 | CPUMSetHyperDR0(pVM, uNewDr0);
|
---|
1324 | if (uNewDr7 != pVM->cpum.s.Hyper.dr7)
|
---|
1325 | CPUMSetHyperDR7(pVM, uNewDr7);
|
---|
1326 | }
|
---|
1327 | else
|
---|
1328 | {
|
---|
1329 | #ifdef IN_GC
|
---|
1330 | if (pVM->cpum.s.fUseFlags & CPUM_USE_DEBUG_REGS)
|
---|
1331 | {
|
---|
1332 | /** @todo restore host DBx registers. */
|
---|
1333 | }
|
---|
1334 | #endif
|
---|
1335 | pVM->cpum.s.fUseFlags &= ~CPUM_USE_DEBUG_REGS;
|
---|
1336 | }
|
---|
1337 | Log2(("CPUMRecalcHyperDRx: fUseFlags=%#x %RGr %RGr %RGr %RGr %RGr %RGr\n",
|
---|
1338 | pVM->cpum.s.fUseFlags, pVM->cpum.s.Hyper.dr0, pVM->cpum.s.Hyper.dr1,
|
---|
1339 | pVM->cpum.s.Hyper.dr2, pVM->cpum.s.Hyper.dr3, pVM->cpum.s.Hyper.dr6,
|
---|
1340 | pVM->cpum.s.Hyper.dr7));
|
---|
1341 |
|
---|
1342 | return VINF_SUCCESS;
|
---|
1343 | }
|
---|
1344 |
|
---|
1345 | #ifndef IN_RING0 /** @todo I don't think we need this in R0, so move it to CPUMAll.cpp? */
|
---|
1346 |
|
---|
1347 | /**
|
---|
1348 | * Transforms the guest CPU state to raw-ring mode.
|
---|
1349 | *
|
---|
1350 | * This function will change the any of the cs and ss register with DPL=0 to DPL=1.
|
---|
1351 | *
|
---|
1352 | * @returns VBox status. (recompiler failure)
|
---|
1353 | * @param pVM VM handle.
|
---|
1354 | * @param pCtxCore The context core (for trap usage).
|
---|
1355 | * @see @ref pg_raw
|
---|
1356 | */
|
---|
1357 | CPUMDECL(int) CPUMRawEnter(PVM pVM, PCPUMCTXCORE pCtxCore)
|
---|
1358 | {
|
---|
1359 | Assert(!pVM->cpum.s.fRawEntered);
|
---|
1360 | if (!pCtxCore)
|
---|
1361 | pCtxCore = CPUMCTX2CORE(&pVM->cpum.s.Guest);
|
---|
1362 |
|
---|
1363 | /*
|
---|
1364 | * Are we in Ring-0?
|
---|
1365 | */
|
---|
1366 | if ( pCtxCore->ss && (pCtxCore->ss & X86_SEL_RPL) == 0
|
---|
1367 | && !pCtxCore->eflags.Bits.u1VM)
|
---|
1368 | {
|
---|
1369 | /*
|
---|
1370 | * Enter execution mode.
|
---|
1371 | */
|
---|
1372 | PATMRawEnter(pVM, pCtxCore);
|
---|
1373 |
|
---|
1374 | /*
|
---|
1375 | * Set CPL to Ring-1.
|
---|
1376 | */
|
---|
1377 | pCtxCore->ss |= 1;
|
---|
1378 | if (pCtxCore->cs && (pCtxCore->cs & X86_SEL_RPL) == 0)
|
---|
1379 | pCtxCore->cs |= 1;
|
---|
1380 | }
|
---|
1381 | else
|
---|
1382 | {
|
---|
1383 | AssertMsg((pCtxCore->ss & X86_SEL_RPL) >= 2 || pCtxCore->eflags.Bits.u1VM,
|
---|
1384 | ("ring-1 code not supported\n"));
|
---|
1385 | /*
|
---|
1386 | * PATM takes care of IOPL and IF flags for Ring-3 and Ring-2 code as well.
|
---|
1387 | */
|
---|
1388 | PATMRawEnter(pVM, pCtxCore);
|
---|
1389 | }
|
---|
1390 |
|
---|
1391 | /*
|
---|
1392 | * Assert sanity.
|
---|
1393 | */
|
---|
1394 | AssertMsg((pCtxCore->eflags.u32 & X86_EFL_IF), ("X86_EFL_IF is clear\n"));
|
---|
1395 | AssertReleaseMsg( pCtxCore->eflags.Bits.u2IOPL < (unsigned)(pCtxCore->ss & X86_SEL_RPL)
|
---|
1396 | || pCtxCore->eflags.Bits.u1VM,
|
---|
1397 | ("X86_EFL_IOPL=%d CPL=%d\n", pCtxCore->eflags.Bits.u2IOPL, pCtxCore->ss & X86_SEL_RPL));
|
---|
1398 | Assert((pVM->cpum.s.Guest.cr0 & (X86_CR0_PG | X86_CR0_WP | X86_CR0_PE)) == (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP));
|
---|
1399 | pCtxCore->eflags.u32 |= X86_EFL_IF; /* paranoia */
|
---|
1400 |
|
---|
1401 | pVM->cpum.s.fRawEntered = true;
|
---|
1402 | return VINF_SUCCESS;
|
---|
1403 | }
|
---|
1404 |
|
---|
1405 |
|
---|
1406 | /**
|
---|
1407 | * Transforms the guest CPU state from raw-ring mode to correct values.
|
---|
1408 | *
|
---|
1409 | * This function will change any selector registers with DPL=1 to DPL=0.
|
---|
1410 | *
|
---|
1411 | * @returns Adjusted rc.
|
---|
1412 | * @param pVM VM handle.
|
---|
1413 | * @param rc Raw mode return code
|
---|
1414 | * @param pCtxCore The context core (for trap usage).
|
---|
1415 | * @see @ref pg_raw
|
---|
1416 | */
|
---|
1417 | CPUMDECL(int) CPUMRawLeave(PVM pVM, PCPUMCTXCORE pCtxCore, int rc)
|
---|
1418 | {
|
---|
1419 | /*
|
---|
1420 | * Don't leave if we've already left (in GC).
|
---|
1421 | */
|
---|
1422 | Assert(pVM->cpum.s.fRawEntered);
|
---|
1423 | if (!pVM->cpum.s.fRawEntered)
|
---|
1424 | return rc;
|
---|
1425 | pVM->cpum.s.fRawEntered = false;
|
---|
1426 |
|
---|
1427 | PCPUMCTX pCtx = &pVM->cpum.s.Guest;
|
---|
1428 | if (!pCtxCore)
|
---|
1429 | pCtxCore = CPUMCTX2CORE(pCtx);
|
---|
1430 | Assert(pCtxCore->eflags.Bits.u1VM || (pCtxCore->ss & X86_SEL_RPL));
|
---|
1431 | AssertMsg(pCtxCore->eflags.Bits.u1VM || pCtxCore->eflags.Bits.u2IOPL < (unsigned)(pCtxCore->ss & X86_SEL_RPL),
|
---|
1432 | ("X86_EFL_IOPL=%d CPL=%d\n", pCtxCore->eflags.Bits.u2IOPL, pCtxCore->ss & X86_SEL_RPL));
|
---|
1433 |
|
---|
1434 | /*
|
---|
1435 | * Are we executing in raw ring-1?
|
---|
1436 | */
|
---|
1437 | if ( (pCtxCore->ss & X86_SEL_RPL) == 1
|
---|
1438 | && !pCtxCore->eflags.Bits.u1VM)
|
---|
1439 | {
|
---|
1440 | /*
|
---|
1441 | * Leave execution mode.
|
---|
1442 | */
|
---|
1443 | PATMRawLeave(pVM, pCtxCore, rc);
|
---|
1444 | /* Not quite sure if this is really required, but shouldn't harm (too much anyways). */
|
---|
1445 | /** @todo See what happens if we remove this. */
|
---|
1446 | if ((pCtxCore->ds & X86_SEL_RPL) == 1)
|
---|
1447 | pCtxCore->ds &= ~X86_SEL_RPL;
|
---|
1448 | if ((pCtxCore->es & X86_SEL_RPL) == 1)
|
---|
1449 | pCtxCore->es &= ~X86_SEL_RPL;
|
---|
1450 | if ((pCtxCore->fs & X86_SEL_RPL) == 1)
|
---|
1451 | pCtxCore->fs &= ~X86_SEL_RPL;
|
---|
1452 | if ((pCtxCore->gs & X86_SEL_RPL) == 1)
|
---|
1453 | pCtxCore->gs &= ~X86_SEL_RPL;
|
---|
1454 |
|
---|
1455 | /*
|
---|
1456 | * Ring-1 selector => Ring-0.
|
---|
1457 | */
|
---|
1458 | pCtxCore->ss &= ~X86_SEL_RPL;
|
---|
1459 | if ((pCtxCore->cs & X86_SEL_RPL) == 1)
|
---|
1460 | pCtxCore->cs &= ~X86_SEL_RPL;
|
---|
1461 | }
|
---|
1462 | else
|
---|
1463 | {
|
---|
1464 | /*
|
---|
1465 | * PATM is taking care of the IOPL and IF flags for us.
|
---|
1466 | */
|
---|
1467 | PATMRawLeave(pVM, pCtxCore, rc);
|
---|
1468 | if (!pCtxCore->eflags.Bits.u1VM)
|
---|
1469 | {
|
---|
1470 | /** @todo See what happens if we remove this. */
|
---|
1471 | if ((pCtxCore->ds & X86_SEL_RPL) == 1)
|
---|
1472 | pCtxCore->ds &= ~X86_SEL_RPL;
|
---|
1473 | if ((pCtxCore->es & X86_SEL_RPL) == 1)
|
---|
1474 | pCtxCore->es &= ~X86_SEL_RPL;
|
---|
1475 | if ((pCtxCore->fs & X86_SEL_RPL) == 1)
|
---|
1476 | pCtxCore->fs &= ~X86_SEL_RPL;
|
---|
1477 | if ((pCtxCore->gs & X86_SEL_RPL) == 1)
|
---|
1478 | pCtxCore->gs &= ~X86_SEL_RPL;
|
---|
1479 | }
|
---|
1480 | }
|
---|
1481 |
|
---|
1482 | return rc;
|
---|
1483 | }
|
---|
1484 |
|
---|
1485 | /**
|
---|
1486 | * Updates the EFLAGS while we're in raw-mode.
|
---|
1487 | *
|
---|
1488 | * @param pVM The VM handle.
|
---|
1489 | * @param pCtxCore The context core.
|
---|
1490 | * @param eflags The new EFLAGS value.
|
---|
1491 | */
|
---|
1492 | CPUMDECL(void) CPUMRawSetEFlags(PVM pVM, PCPUMCTXCORE pCtxCore, uint32_t eflags)
|
---|
1493 | {
|
---|
1494 | if (!pVM->cpum.s.fRawEntered)
|
---|
1495 | {
|
---|
1496 | pCtxCore->eflags.u32 = eflags;
|
---|
1497 | return;
|
---|
1498 | }
|
---|
1499 | PATMRawSetEFlags(pVM, pCtxCore, eflags);
|
---|
1500 | }
|
---|
1501 |
|
---|
1502 | #endif /* !IN_RING0 */
|
---|
1503 |
|
---|
1504 | /**
|
---|
1505 | * Gets the EFLAGS while we're in raw-mode.
|
---|
1506 | *
|
---|
1507 | * @returns The eflags.
|
---|
1508 | * @param pVM The VM handle.
|
---|
1509 | * @param pCtxCore The context core.
|
---|
1510 | */
|
---|
1511 | CPUMDECL(uint32_t) CPUMRawGetEFlags(PVM pVM, PCPUMCTXCORE pCtxCore)
|
---|
1512 | {
|
---|
1513 | #ifdef IN_RING0
|
---|
1514 | return pCtxCore->eflags.u32;
|
---|
1515 | #else
|
---|
1516 | if (!pVM->cpum.s.fRawEntered)
|
---|
1517 | return pCtxCore->eflags.u32;
|
---|
1518 | return PATMRawGetEFlags(pVM, pCtxCore);
|
---|
1519 | #endif
|
---|
1520 | }
|
---|
1521 |
|
---|
1522 |
|
---|
1523 |
|
---|
1524 |
|
---|
1525 | /**
|
---|
1526 | * Gets and resets the changed flags (CPUM_CHANGED_*).
|
---|
1527 | * Only REM should call this function.
|
---|
1528 | *
|
---|
1529 | * @returns The changed flags.
|
---|
1530 | * @param pVM The VM handle.
|
---|
1531 | */
|
---|
1532 | CPUMDECL(unsigned) CPUMGetAndClearChangedFlagsREM(PVM pVM)
|
---|
1533 | {
|
---|
1534 | unsigned fFlags = pVM->cpum.s.fChanged;
|
---|
1535 | pVM->cpum.s.fChanged = 0;
|
---|
1536 | /** @todo change the switcher to use the fChanged flags. */
|
---|
1537 | if (pVM->cpum.s.fUseFlags & CPUM_USED_FPU_SINCE_REM)
|
---|
1538 | {
|
---|
1539 | fFlags |= CPUM_CHANGED_FPU_REM;
|
---|
1540 | pVM->cpum.s.fUseFlags &= ~CPUM_USED_FPU_SINCE_REM;
|
---|
1541 | }
|
---|
1542 | return fFlags;
|
---|
1543 | }
|
---|
1544 |
|
---|
1545 | /**
|
---|
1546 | * Sets the specified changed flags (CPUM_CHANGED_*).
|
---|
1547 | *
|
---|
1548 | * @param pVM The VM handle.
|
---|
1549 | */
|
---|
1550 | CPUMDECL(void) CPUMSetChangedFlags(PVM pVM, uint32_t fChangedFlags)
|
---|
1551 | {
|
---|
1552 | pVM->cpum.s.fChanged |= fChangedFlags;
|
---|
1553 | }
|
---|
1554 |
|
---|
1555 | /**
|
---|
1556 | * Checks if the CPU supports the FXSAVE and FXRSTOR instruction.
|
---|
1557 | * @returns true if supported.
|
---|
1558 | * @returns false if not supported.
|
---|
1559 | * @param pVM The VM handle.
|
---|
1560 | */
|
---|
1561 | CPUMDECL(bool) CPUMSupportsFXSR(PVM pVM)
|
---|
1562 | {
|
---|
1563 | return pVM->cpum.s.CPUFeatures.edx.u1FXSR != 0;
|
---|
1564 | }
|
---|
1565 |
|
---|
1566 |
|
---|
1567 | /**
|
---|
1568 | * Checks if the host OS uses the SYSENTER / SYSEXIT instructions.
|
---|
1569 | * @returns true if used.
|
---|
1570 | * @returns false if not used.
|
---|
1571 | * @param pVM The VM handle.
|
---|
1572 | */
|
---|
1573 | CPUMDECL(bool) CPUMIsHostUsingSysEnter(PVM pVM)
|
---|
1574 | {
|
---|
1575 | return (pVM->cpum.s.fUseFlags & CPUM_USE_SYSENTER) != 0;
|
---|
1576 | }
|
---|
1577 |
|
---|
1578 |
|
---|
1579 | /**
|
---|
1580 | * Checks if the host OS uses the SYSCALL / SYSRET instructions.
|
---|
1581 | * @returns true if used.
|
---|
1582 | * @returns false if not used.
|
---|
1583 | * @param pVM The VM handle.
|
---|
1584 | */
|
---|
1585 | CPUMDECL(bool) CPUMIsHostUsingSysCall(PVM pVM)
|
---|
1586 | {
|
---|
1587 | return (pVM->cpum.s.fUseFlags & CPUM_USE_SYSCALL) != 0;
|
---|
1588 | }
|
---|
1589 |
|
---|
1590 |
|
---|
1591 | #ifndef IN_RING3
|
---|
1592 | /**
|
---|
1593 | * Lazily sync in the FPU/XMM state
|
---|
1594 | *
|
---|
1595 | * @returns VBox status code.
|
---|
1596 | * @param pVM VM handle.
|
---|
1597 | */
|
---|
1598 | CPUMDECL(int) CPUMHandleLazyFPU(PVM pVM)
|
---|
1599 | {
|
---|
1600 | return CPUMHandleLazyFPUAsm(&pVM->cpum.s);
|
---|
1601 | }
|
---|
1602 |
|
---|
1603 |
|
---|
1604 | /**
|
---|
1605 | * Restore host FPU/XMM state
|
---|
1606 | *
|
---|
1607 | * @returns VBox status code.
|
---|
1608 | * @param pVM VM handle.
|
---|
1609 | */
|
---|
1610 | CPUMDECL(int) CPUMRestoreHostFPUState(PVM pVM)
|
---|
1611 | {
|
---|
1612 | Assert(pVM->cpum.s.CPUFeatures.edx.u1FXSR);
|
---|
1613 | return CPUMRestoreHostFPUStateAsm(&pVM->cpum.s);
|
---|
1614 | }
|
---|
1615 | #endif /* !IN_RING3 */
|
---|
1616 |
|
---|
1617 |
|
---|
1618 | /**
|
---|
1619 | * Checks if we activated the FPU/XMM state of the guest OS
|
---|
1620 | * @returns true if we did.
|
---|
1621 | * @returns false if not.
|
---|
1622 | * @param pVM The VM handle.
|
---|
1623 | */
|
---|
1624 | CPUMDECL(bool) CPUMIsGuestFPUStateActive(PVM pVM)
|
---|
1625 | {
|
---|
1626 | return (pVM->cpum.s.fUseFlags & CPUM_USED_FPU) != 0;
|
---|
1627 | }
|
---|
1628 |
|
---|
1629 |
|
---|
1630 | /**
|
---|
1631 | * Deactivate the FPU/XMM state of the guest OS
|
---|
1632 | * @param pVM The VM handle.
|
---|
1633 | */
|
---|
1634 | CPUMDECL(void) CPUMDeactivateGuestFPUState(PVM pVM)
|
---|
1635 | {
|
---|
1636 | pVM->cpum.s.fUseFlags &= ~CPUM_USED_FPU;
|
---|
1637 | }
|
---|
1638 |
|
---|
1639 |
|
---|
1640 | /**
|
---|
1641 | * Checks if the hidden selector registers are valid
|
---|
1642 | * @returns true if they are.
|
---|
1643 | * @returns false if not.
|
---|
1644 | * @param pVM The VM handle.
|
---|
1645 | */
|
---|
1646 | CPUMDECL(bool) CPUMAreHiddenSelRegsValid(PVM pVM)
|
---|
1647 | {
|
---|
1648 | return !!pVM->cpum.s.fValidHiddenSelRegs; /** @todo change fValidHiddenSelRegs to bool! */
|
---|
1649 | }
|
---|
1650 |
|
---|
1651 |
|
---|
1652 | /**
|
---|
1653 | * Checks if the hidden selector registers are valid
|
---|
1654 | * @param pVM The VM handle.
|
---|
1655 | * @param fValid Valid or not
|
---|
1656 | */
|
---|
1657 | CPUMDECL(void) CPUMSetHiddenSelRegsValid(PVM pVM, bool fValid)
|
---|
1658 | {
|
---|
1659 | pVM->cpum.s.fValidHiddenSelRegs = fValid;
|
---|
1660 | }
|
---|
1661 |
|
---|
1662 |
|
---|
1663 | /**
|
---|
1664 | * Get the current privilege level of the guest.
|
---|
1665 | *
|
---|
1666 | * @returns cpl
|
---|
1667 | * @param pVM VM Handle.
|
---|
1668 | * @param pRegFrame Trap register frame.
|
---|
1669 | */
|
---|
1670 | CPUMDECL(uint32_t) CPUMGetGuestCPL(PVM pVM, PCPUMCTXCORE pCtxCore)
|
---|
1671 | {
|
---|
1672 | uint32_t cpl;
|
---|
1673 |
|
---|
1674 | if (CPUMAreHiddenSelRegsValid(pVM))
|
---|
1675 | cpl = pCtxCore->ssHid.Attr.n.u2Dpl;
|
---|
1676 | else if (RT_LIKELY(pVM->cpum.s.Guest.cr0 & X86_CR0_PE))
|
---|
1677 | {
|
---|
1678 | if (RT_LIKELY(!pCtxCore->eflags.Bits.u1VM))
|
---|
1679 | {
|
---|
1680 | cpl = (pCtxCore->ss & X86_SEL_RPL);
|
---|
1681 | #ifndef IN_RING0
|
---|
1682 | if (cpl == 1)
|
---|
1683 | cpl = 0;
|
---|
1684 | #endif
|
---|
1685 | }
|
---|
1686 | else
|
---|
1687 | cpl = 3;
|
---|
1688 | }
|
---|
1689 | else
|
---|
1690 | cpl = 0; /* real mode; cpl is zero */
|
---|
1691 |
|
---|
1692 | return cpl;
|
---|
1693 | }
|
---|
1694 |
|
---|
1695 |
|
---|
1696 | /**
|
---|
1697 | * Gets the current guest CPU mode.
|
---|
1698 | *
|
---|
1699 | * If paging mode is what you need, check out PGMGetGuestMode().
|
---|
1700 | *
|
---|
1701 | * @returns The CPU mode.
|
---|
1702 | * @param pVM The VM handle.
|
---|
1703 | */
|
---|
1704 | CPUMDECL(CPUMMODE) CPUMGetGuestMode(PVM pVM)
|
---|
1705 | {
|
---|
1706 | CPUMMODE enmMode;
|
---|
1707 | if (!(pVM->cpum.s.Guest.cr0 & X86_CR0_PE))
|
---|
1708 | enmMode = CPUMMODE_REAL;
|
---|
1709 | else //GUEST64 if (!(pVM->cpum.s.Guest.efer & MSR_K6_EFER_LMA)
|
---|
1710 | enmMode = CPUMMODE_PROTECTED;
|
---|
1711 | //GUEST64 else
|
---|
1712 | //GUEST64 enmMode = CPUMMODE_LONG;
|
---|
1713 |
|
---|
1714 | return enmMode;
|
---|
1715 | }
|
---|
1716 |
|
---|