VirtualBox

source: vbox/trunk/src/recompiler/VBoxRecompiler.c@ 8113

Last change on this file since 8113 was 8113, checked in by vboxsync, 17 years ago

The recompiler must refresh its cpuid cache when we change a cpuid feature.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 150.9 KB
Line 
1/* $Id: VBoxRecompiler.c 8113 2008-04-17 16:31:58Z vboxsync $ */
2/** @file
3 * VBox Recompiler - QEMU.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP LOG_GROUP_REM
23#include "vl.h"
24#include "exec-all.h"
25
26#include <VBox/rem.h>
27#include <VBox/vmapi.h>
28#include <VBox/tm.h>
29#include <VBox/ssm.h>
30#include <VBox/em.h>
31#include <VBox/trpm.h>
32#include <VBox/iom.h>
33#include <VBox/mm.h>
34#include <VBox/pgm.h>
35#include <VBox/pdm.h>
36#include <VBox/dbgf.h>
37#include <VBox/dbg.h>
38#include <VBox/hwaccm.h>
39#include <VBox/patm.h>
40#include <VBox/csam.h>
41#include "REMInternal.h"
42#include <VBox/vm.h>
43#include <VBox/param.h>
44#include <VBox/err.h>
45
46#include <VBox/log.h>
47#include <iprt/semaphore.h>
48#include <iprt/asm.h>
49#include <iprt/assert.h>
50#include <iprt/thread.h>
51#include <iprt/string.h>
52
53/* Don't wanna include everything. */
54extern void cpu_x86_update_cr3(CPUX86State *env, target_ulong new_cr3);
55extern void cpu_x86_update_cr0(CPUX86State *env, uint32_t new_cr0);
56extern void cpu_x86_update_cr4(CPUX86State *env, uint32_t new_cr4);
57extern void tlb_flush_page(CPUX86State *env, uint32_t addr);
58extern void tlb_flush(CPUState *env, int flush_global);
59extern void sync_seg(CPUX86State *env1, int seg_reg, int selector);
60extern void sync_ldtr(CPUX86State *env1, int selector);
61extern int sync_tr(CPUX86State *env1, int selector);
62
63#ifdef VBOX_STRICT
64unsigned long get_phys_page_offset(target_ulong addr);
65#endif
66
67
68/*******************************************************************************
69* Defined Constants And Macros *
70*******************************************************************************/
71
72/** Copy 80-bit fpu register at pSrc to pDst.
73 * This is probably faster than *calling* memcpy.
74 */
75#define REM_COPY_FPU_REG(pDst, pSrc) \
76 do { *(PX86FPUMMX)(pDst) = *(const X86FPUMMX *)(pSrc); } while (0)
77
78
79/*******************************************************************************
80* Internal Functions *
81*******************************************************************************/
82static DECLCALLBACK(int) remR3Save(PVM pVM, PSSMHANDLE pSSM);
83static DECLCALLBACK(int) remR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version);
84static void remR3StateUpdate(PVM pVM);
85
86static uint32_t remR3MMIOReadU8(void *pvVM, target_phys_addr_t GCPhys);
87static uint32_t remR3MMIOReadU16(void *pvVM, target_phys_addr_t GCPhys);
88static uint32_t remR3MMIOReadU32(void *pvVM, target_phys_addr_t GCPhys);
89static void remR3MMIOWriteU8(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32);
90static void remR3MMIOWriteU16(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32);
91static void remR3MMIOWriteU32(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32);
92
93static uint32_t remR3HandlerReadU8(void *pvVM, target_phys_addr_t GCPhys);
94static uint32_t remR3HandlerReadU16(void *pvVM, target_phys_addr_t GCPhys);
95static uint32_t remR3HandlerReadU32(void *pvVM, target_phys_addr_t GCPhys);
96static void remR3HandlerWriteU8(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32);
97static void remR3HandlerWriteU16(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32);
98static void remR3HandlerWriteU32(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32);
99
100
101/*******************************************************************************
102* Global Variables *
103*******************************************************************************/
104
105/** @todo Move stats to REM::s some rainy day we have nothing do to. */
106#ifdef VBOX_WITH_STATISTICS
107static STAMPROFILEADV gStatExecuteSingleInstr;
108static STAMPROFILEADV gStatCompilationQEmu;
109static STAMPROFILEADV gStatRunCodeQEmu;
110static STAMPROFILEADV gStatTotalTimeQEmu;
111static STAMPROFILEADV gStatTimers;
112static STAMPROFILEADV gStatTBLookup;
113static STAMPROFILEADV gStatIRQ;
114static STAMPROFILEADV gStatRawCheck;
115static STAMPROFILEADV gStatMemRead;
116static STAMPROFILEADV gStatMemWrite;
117static STAMPROFILE gStatGCPhys2HCVirt;
118static STAMPROFILE gStatHCVirt2GCPhys;
119static STAMCOUNTER gStatCpuGetTSC;
120static STAMCOUNTER gStatRefuseTFInhibit;
121static STAMCOUNTER gStatRefuseVM86;
122static STAMCOUNTER gStatRefusePaging;
123static STAMCOUNTER gStatRefusePAE;
124static STAMCOUNTER gStatRefuseIOPLNot0;
125static STAMCOUNTER gStatRefuseIF0;
126static STAMCOUNTER gStatRefuseCode16;
127static STAMCOUNTER gStatRefuseWP0;
128static STAMCOUNTER gStatRefuseRing1or2;
129static STAMCOUNTER gStatRefuseCanExecute;
130static STAMCOUNTER gStatREMGDTChange;
131static STAMCOUNTER gStatREMIDTChange;
132static STAMCOUNTER gStatREMLDTRChange;
133static STAMCOUNTER gStatREMTRChange;
134static STAMCOUNTER gStatSelOutOfSync[6];
135static STAMCOUNTER gStatSelOutOfSyncStateBack[6];
136#endif
137
138/*
139 * Global stuff.
140 */
141
142/** MMIO read callbacks. */
143CPUReadMemoryFunc *g_apfnMMIORead[3] =
144{
145 remR3MMIOReadU8,
146 remR3MMIOReadU16,
147 remR3MMIOReadU32
148};
149
150/** MMIO write callbacks. */
151CPUWriteMemoryFunc *g_apfnMMIOWrite[3] =
152{
153 remR3MMIOWriteU8,
154 remR3MMIOWriteU16,
155 remR3MMIOWriteU32
156};
157
158/** Handler read callbacks. */
159CPUReadMemoryFunc *g_apfnHandlerRead[3] =
160{
161 remR3HandlerReadU8,
162 remR3HandlerReadU16,
163 remR3HandlerReadU32
164};
165
166/** Handler write callbacks. */
167CPUWriteMemoryFunc *g_apfnHandlerWrite[3] =
168{
169 remR3HandlerWriteU8,
170 remR3HandlerWriteU16,
171 remR3HandlerWriteU32
172};
173
174
175#if defined(VBOX_WITH_DEBUGGER) && !(defined(RT_OS_WINDWS) && defined(RT_ARCH_AMD64))
176/*
177 * Debugger commands.
178 */
179static DECLCALLBACK(int) remR3CmdDisasEnableStepping(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PVM pVM, PCDBGCVAR paArgs, unsigned cArgs, PDBGCVAR pResult);
180
181/** '.remstep' arguments. */
182static const DBGCVARDESC g_aArgRemStep[] =
183{
184 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */
185 { 0, ~0, DBGCVAR_CAT_NUMBER, 0, "on/off", "Boolean value/mnemonic indicating the new state." },
186};
187
188/** Command descriptors. */
189static const DBGCCMD g_aCmds[] =
190{
191 {
192 .pszCmd ="remstep",
193 .cArgsMin = 0,
194 .cArgsMax = 1,
195 .paArgDescs = &g_aArgRemStep[0],
196 .cArgDescs = ELEMENTS(g_aArgRemStep),
197 .pResultDesc = NULL,
198 .fFlags = 0,
199 .pfnHandler = remR3CmdDisasEnableStepping,
200 .pszSyntax = "[on/off]",
201 .pszDescription = "Enable or disable the single stepping with logged disassembly. "
202 "If no arguments show the current state."
203 }
204};
205#endif
206
207
208/* Instantiate the structure signatures. */
209#define REM_STRUCT_OP 0
210#include "InnoTek/structs.h"
211
212
213
214/*******************************************************************************
215* Internal Functions *
216*******************************************************************************/
217static void remAbort(int rc, const char *pszTip);
218extern int testmath(void);
219
220/* Put them here to avoid unused variable warning. */
221AssertCompile(RT_SIZEOFMEMB(VM, rem.padding) >= RT_SIZEOFMEMB(VM, rem.s));
222#if !defined(IPRT_NO_CRT) && (defined(RT_OS_LINUX) || defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS))
223AssertCompileMemberSize(REM, Env, REM_ENV_SIZE);
224#else
225AssertCompile(RT_SIZEOFMEMB(REM, Env) <= REM_ENV_SIZE);
226#endif
227
228
229/**
230 * Initializes the REM.
231 *
232 * @returns VBox status code.
233 * @param pVM The VM to operate on.
234 */
235REMR3DECL(int) REMR3Init(PVM pVM)
236{
237 uint32_t u32Dummy;
238 unsigned i;
239
240 /*
241 * Assert sanity.
242 */
243 AssertReleaseMsg(sizeof(pVM->rem.padding) >= sizeof(pVM->rem.s), ("%#x >= %#x; sizeof(Env)=%#x\n", sizeof(pVM->rem.padding), sizeof(pVM->rem.s), sizeof(pVM->rem.s.Env)));
244 AssertReleaseMsg(sizeof(pVM->rem.s.Env) <= REM_ENV_SIZE, ("%#x == %#x\n", sizeof(pVM->rem.s.Env), REM_ENV_SIZE));
245 AssertReleaseMsg(!(RT_OFFSETOF(VM, rem) & 31), ("off=%#x\n", RT_OFFSETOF(VM, rem)));
246#if defined(DEBUG) && !defined(RT_OS_SOLARIS) /// @todo fix the solaris math stuff.
247 Assert(!testmath());
248#endif
249 ASSERT_STRUCT_TABLE(Misc);
250 ASSERT_STRUCT_TABLE(TLB);
251 ASSERT_STRUCT_TABLE(SegmentCache);
252 ASSERT_STRUCT_TABLE(XMMReg);
253 ASSERT_STRUCT_TABLE(MMXReg);
254 ASSERT_STRUCT_TABLE(float_status);
255 ASSERT_STRUCT_TABLE(float32u);
256 ASSERT_STRUCT_TABLE(float64u);
257 ASSERT_STRUCT_TABLE(floatx80u);
258 ASSERT_STRUCT_TABLE(CPUState);
259
260 /*
261 * Init some internal data members.
262 */
263 pVM->rem.s.offVM = RT_OFFSETOF(VM, rem.s);
264 pVM->rem.s.Env.pVM = pVM;
265#ifdef CPU_RAW_MODE_INIT
266 pVM->rem.s.state |= CPU_RAW_MODE_INIT;
267#endif
268
269 /* ctx. */
270 int rc = CPUMQueryGuestCtxPtr(pVM, &pVM->rem.s.pCtx);
271 if (VBOX_FAILURE(rc))
272 {
273 AssertMsgFailed(("Failed to obtain guest ctx pointer. rc=%Vrc\n", rc));
274 return rc;
275 }
276 AssertMsg(MMR3PhysGetRamSize(pVM) == 0, ("Init order have changed! REM depends on notification about ALL physical memory registrations\n"));
277
278 /* ignore all notifications */
279 pVM->rem.s.fIgnoreAll = true;
280
281 /*
282 * Init the recompiler.
283 */
284 if (!cpu_x86_init(&pVM->rem.s.Env))
285 {
286 AssertMsgFailed(("cpu_x86_init failed - impossible!\n"));
287 return VERR_GENERAL_FAILURE;
288 }
289 CPUMGetGuestCpuId(pVM, 1, &u32Dummy, &u32Dummy, &pVM->rem.s.Env.cpuid_ext_features, &pVM->rem.s.Env.cpuid_features);
290 CPUMGetGuestCpuId(pVM, 0x80000001, &u32Dummy, &u32Dummy, &u32Dummy, &pVM->rem.s.Env.cpuid_ext2_features);
291
292 /* allocate code buffer for single instruction emulation. */
293 pVM->rem.s.Env.cbCodeBuffer = 4096;
294 pVM->rem.s.Env.pvCodeBuffer = RTMemExecAlloc(pVM->rem.s.Env.cbCodeBuffer);
295 AssertMsgReturn(pVM->rem.s.Env.pvCodeBuffer, ("Failed to allocate code buffer!\n"), VERR_NO_MEMORY);
296
297 /* finally, set the cpu_single_env global. */
298 cpu_single_env = &pVM->rem.s.Env;
299
300 /* Nothing is pending by default */
301 pVM->rem.s.u32PendingInterrupt = REM_NO_PENDING_IRQ;
302
303 /*
304 * Register ram types.
305 */
306 pVM->rem.s.iMMIOMemType = cpu_register_io_memory(-1, g_apfnMMIORead, g_apfnMMIOWrite, pVM);
307 AssertReleaseMsg(pVM->rem.s.iMMIOMemType >= 0, ("pVM->rem.s.iMMIOMemType=%d\n", pVM->rem.s.iMMIOMemType));
308 pVM->rem.s.iHandlerMemType = cpu_register_io_memory(-1, g_apfnHandlerRead, g_apfnHandlerWrite, pVM);
309 AssertReleaseMsg(pVM->rem.s.iHandlerMemType >= 0, ("pVM->rem.s.iHandlerMemType=%d\n", pVM->rem.s.iHandlerMemType));
310 Log2(("REM: iMMIOMemType=%d iHandlerMemType=%d\n", pVM->rem.s.iMMIOMemType, pVM->rem.s.iHandlerMemType));
311
312 /* stop ignoring. */
313 pVM->rem.s.fIgnoreAll = false;
314
315 /*
316 * Register the saved state data unit.
317 */
318 rc = SSMR3RegisterInternal(pVM, "rem", 1, REM_SAVED_STATE_VERSION, sizeof(uint32_t) * 10,
319 NULL, remR3Save, NULL,
320 NULL, remR3Load, NULL);
321 if (VBOX_FAILURE(rc))
322 return rc;
323
324#if defined(VBOX_WITH_DEBUGGER) && !(defined(RT_OS_WINDOWS) && defined(RT_ARCH_AMD64))
325 /*
326 * Debugger commands.
327 */
328 static bool fRegisteredCmds = false;
329 if (!fRegisteredCmds)
330 {
331 int rc = DBGCRegisterCommands(&g_aCmds[0], ELEMENTS(g_aCmds));
332 if (VBOX_SUCCESS(rc))
333 fRegisteredCmds = true;
334 }
335#endif
336
337#ifdef VBOX_WITH_STATISTICS
338 /*
339 * Statistics.
340 */
341 STAM_REG(pVM, &gStatExecuteSingleInstr, STAMTYPE_PROFILE, "/PROF/REM/SingleInstr",STAMUNIT_TICKS_PER_CALL, "Profiling single instruction emulation.");
342 STAM_REG(pVM, &gStatCompilationQEmu, STAMTYPE_PROFILE, "/PROF/REM/Compile", STAMUNIT_TICKS_PER_CALL, "Profiling QEmu compilation.");
343 STAM_REG(pVM, &gStatRunCodeQEmu, STAMTYPE_PROFILE, "/PROF/REM/Runcode", STAMUNIT_TICKS_PER_CALL, "Profiling QEmu code execution.");
344 STAM_REG(pVM, &gStatTotalTimeQEmu, STAMTYPE_PROFILE, "/PROF/REM/Emulate", STAMUNIT_TICKS_PER_CALL, "Profiling code emulation.");
345 STAM_REG(pVM, &gStatTimers, STAMTYPE_PROFILE, "/PROF/REM/Timers", STAMUNIT_TICKS_PER_CALL, "Profiling timer scheduling.");
346 STAM_REG(pVM, &gStatTBLookup, STAMTYPE_PROFILE, "/PROF/REM/TBLookup", STAMUNIT_TICKS_PER_CALL, "Profiling timer scheduling.");
347 STAM_REG(pVM, &gStatIRQ, STAMTYPE_PROFILE, "/PROF/REM/IRQ", STAMUNIT_TICKS_PER_CALL, "Profiling timer scheduling.");
348 STAM_REG(pVM, &gStatRawCheck, STAMTYPE_PROFILE, "/PROF/REM/RawCheck", STAMUNIT_TICKS_PER_CALL, "Profiling timer scheduling.");
349 STAM_REG(pVM, &gStatMemRead, STAMTYPE_PROFILE, "/PROF/REM/MemRead", STAMUNIT_TICKS_PER_CALL, "Profiling memory access.");
350 STAM_REG(pVM, &gStatMemWrite, STAMTYPE_PROFILE, "/PROF/REM/MemWrite", STAMUNIT_TICKS_PER_CALL, "Profiling memory access.");
351 STAM_REG(pVM, &gStatHCVirt2GCPhys, STAMTYPE_PROFILE, "/PROF/REM/HCVirt2GCPhys", STAMUNIT_TICKS_PER_CALL, "Profiling memory convertion.");
352 STAM_REG(pVM, &gStatGCPhys2HCVirt, STAMTYPE_PROFILE, "/PROF/REM/GCPhys2HCVirt", STAMUNIT_TICKS_PER_CALL, "Profiling memory convertion.");
353
354 STAM_REG(pVM, &gStatCpuGetTSC, STAMTYPE_COUNTER, "/REM/CpuGetTSC", STAMUNIT_OCCURENCES, "cpu_get_tsc calls");
355
356 STAM_REG(pVM, &gStatRefuseTFInhibit, STAMTYPE_COUNTER, "/REM/Refuse/TFInibit", STAMUNIT_OCCURENCES, "Raw mode refused because of TF or irq inhibit");
357 STAM_REG(pVM, &gStatRefuseVM86, STAMTYPE_COUNTER, "/REM/Refuse/VM86", STAMUNIT_OCCURENCES, "Raw mode refused because of VM86");
358 STAM_REG(pVM, &gStatRefusePaging, STAMTYPE_COUNTER, "/REM/Refuse/Paging", STAMUNIT_OCCURENCES, "Raw mode refused because of disabled paging/pm");
359 STAM_REG(pVM, &gStatRefusePAE, STAMTYPE_COUNTER, "/REM/Refuse/PAE", STAMUNIT_OCCURENCES, "Raw mode refused because of PAE");
360 STAM_REG(pVM, &gStatRefuseIOPLNot0, STAMTYPE_COUNTER, "/REM/Refuse/IOPLNot0", STAMUNIT_OCCURENCES, "Raw mode refused because of IOPL != 0");
361 STAM_REG(pVM, &gStatRefuseIF0, STAMTYPE_COUNTER, "/REM/Refuse/IF0", STAMUNIT_OCCURENCES, "Raw mode refused because of IF=0");
362 STAM_REG(pVM, &gStatRefuseCode16, STAMTYPE_COUNTER, "/REM/Refuse/Code16", STAMUNIT_OCCURENCES, "Raw mode refused because of 16 bit code");
363 STAM_REG(pVM, &gStatRefuseWP0, STAMTYPE_COUNTER, "/REM/Refuse/WP0", STAMUNIT_OCCURENCES, "Raw mode refused because of WP=0");
364 STAM_REG(pVM, &gStatRefuseRing1or2, STAMTYPE_COUNTER, "/REM/Refuse/Ring1or2", STAMUNIT_OCCURENCES, "Raw mode refused because of ring 1/2 execution");
365 STAM_REG(pVM, &gStatRefuseCanExecute, STAMTYPE_COUNTER, "/REM/Refuse/CanExecuteRaw", STAMUNIT_OCCURENCES, "Raw mode refused because of cCanExecuteRaw");
366
367 STAM_REG(pVM, &gStatREMGDTChange, STAMTYPE_COUNTER, "/REM/Change/GDTBase", STAMUNIT_OCCURENCES, "GDT base changes");
368 STAM_REG(pVM, &gStatREMLDTRChange, STAMTYPE_COUNTER, "/REM/Change/LDTR", STAMUNIT_OCCURENCES, "LDTR changes");
369 STAM_REG(pVM, &gStatREMIDTChange, STAMTYPE_COUNTER, "/REM/Change/IDTBase", STAMUNIT_OCCURENCES, "IDT base changes");
370 STAM_REG(pVM, &gStatREMTRChange, STAMTYPE_COUNTER, "/REM/Change/TR", STAMUNIT_OCCURENCES, "TR selector changes");
371
372 STAM_REG(pVM, &gStatSelOutOfSync[0], STAMTYPE_COUNTER, "/REM/State/SelOutOfSync/ES", STAMUNIT_OCCURENCES, "ES out of sync");
373 STAM_REG(pVM, &gStatSelOutOfSync[1], STAMTYPE_COUNTER, "/REM/State/SelOutOfSync/CS", STAMUNIT_OCCURENCES, "CS out of sync");
374 STAM_REG(pVM, &gStatSelOutOfSync[2], STAMTYPE_COUNTER, "/REM/State/SelOutOfSync/SS", STAMUNIT_OCCURENCES, "SS out of sync");
375 STAM_REG(pVM, &gStatSelOutOfSync[3], STAMTYPE_COUNTER, "/REM/State/SelOutOfSync/DS", STAMUNIT_OCCURENCES, "DS out of sync");
376 STAM_REG(pVM, &gStatSelOutOfSync[4], STAMTYPE_COUNTER, "/REM/State/SelOutOfSync/FS", STAMUNIT_OCCURENCES, "FS out of sync");
377 STAM_REG(pVM, &gStatSelOutOfSync[5], STAMTYPE_COUNTER, "/REM/State/SelOutOfSync/GS", STAMUNIT_OCCURENCES, "GS out of sync");
378
379 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[0], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/ES", STAMUNIT_OCCURENCES, "ES out of sync");
380 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[1], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/CS", STAMUNIT_OCCURENCES, "CS out of sync");
381 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[2], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/SS", STAMUNIT_OCCURENCES, "SS out of sync");
382 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[3], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/DS", STAMUNIT_OCCURENCES, "DS out of sync");
383 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[4], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/FS", STAMUNIT_OCCURENCES, "FS out of sync");
384 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[5], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/GS", STAMUNIT_OCCURENCES, "GS out of sync");
385
386
387#endif
388
389#ifdef DEBUG_ALL_LOGGING
390 loglevel = ~0;
391#endif
392
393 return rc;
394}
395
396
397/**
398 * Terminates the REM.
399 *
400 * Termination means cleaning up and freeing all resources,
401 * the VM it self is at this point powered off or suspended.
402 *
403 * @returns VBox status code.
404 * @param pVM The VM to operate on.
405 */
406REMR3DECL(int) REMR3Term(PVM pVM)
407{
408 return VINF_SUCCESS;
409}
410
411
412/**
413 * The VM is being reset.
414 *
415 * For the REM component this means to call the cpu_reset() and
416 * reinitialize some state variables.
417 *
418 * @param pVM VM handle.
419 */
420REMR3DECL(void) REMR3Reset(PVM pVM)
421{
422 /*
423 * Reset the REM cpu.
424 */
425 pVM->rem.s.fIgnoreAll = true;
426 cpu_reset(&pVM->rem.s.Env);
427 pVM->rem.s.cInvalidatedPages = 0;
428 pVM->rem.s.fIgnoreAll = false;
429
430 /* Clear raw ring 0 init state */
431 pVM->rem.s.Env.state &= ~CPU_RAW_RING0;
432}
433
434
435/**
436 * Execute state save operation.
437 *
438 * @returns VBox status code.
439 * @param pVM VM Handle.
440 * @param pSSM SSM operation handle.
441 */
442static DECLCALLBACK(int) remR3Save(PVM pVM, PSSMHANDLE pSSM)
443{
444 LogFlow(("remR3Save:\n"));
445
446 /*
447 * Save the required CPU Env bits.
448 * (Not much because we're never in REM when doing the save.)
449 */
450 PREM pRem = &pVM->rem.s;
451 Assert(!pRem->fInREM);
452 SSMR3PutU32(pSSM, pRem->Env.hflags);
453 SSMR3PutMem(pSSM, &pRem->Env, RT_OFFSETOF(CPUState, jmp_env));
454 SSMR3PutU32(pSSM, ~0); /* separator */
455
456 /* Remember if we've entered raw mode (vital for ring 1 checks in e.g. iret emulation). */
457 SSMR3PutU32(pSSM, !!(pRem->Env.state & CPU_RAW_RING0));
458
459 /*
460 * Save the REM stuff.
461 */
462 SSMR3PutUInt(pSSM, pRem->cInvalidatedPages);
463 unsigned i;
464 for (i = 0; i < pRem->cInvalidatedPages; i++)
465 SSMR3PutGCPtr(pSSM, pRem->aGCPtrInvalidatedPages[i]);
466
467 SSMR3PutUInt(pSSM, pVM->rem.s.u32PendingInterrupt);
468
469 return SSMR3PutU32(pSSM, ~0); /* terminator */
470}
471
472
473/**
474 * Execute state load operation.
475 *
476 * @returns VBox status code.
477 * @param pVM VM Handle.
478 * @param pSSM SSM operation handle.
479 * @param u32Version Data layout version.
480 */
481static DECLCALLBACK(int) remR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version)
482{
483 uint32_t u32Dummy;
484 uint32_t fRawRing0 = false;
485 LogFlow(("remR3Load:\n"));
486
487 /*
488 * Validate version.
489 */
490 if (u32Version != REM_SAVED_STATE_VERSION)
491 {
492 Log(("remR3Load: Invalid version u32Version=%d!\n", u32Version));
493 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
494 }
495
496 /*
497 * Do a reset to be on the safe side...
498 */
499 REMR3Reset(pVM);
500
501 /*
502 * Ignore all ignorable notifications.
503 * (Not doing this will cause serious trouble.)
504 */
505 pVM->rem.s.fIgnoreAll = true;
506
507 /*
508 * Load the required CPU Env bits.
509 * (Not much because we're never in REM when doing the save.)
510 */
511 PREM pRem = &pVM->rem.s;
512 Assert(!pRem->fInREM);
513 SSMR3GetU32(pSSM, &pRem->Env.hflags);
514 SSMR3GetMem(pSSM, &pRem->Env, RT_OFFSETOF(CPUState, jmp_env));
515 uint32_t u32Sep;
516 int rc = SSMR3GetU32(pSSM, &u32Sep); /* separator */
517 if (VBOX_FAILURE(rc))
518 return rc;
519 if (u32Sep != ~0)
520 {
521 AssertMsgFailed(("u32Sep=%#x\n", u32Sep));
522 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
523 }
524
525 /* Remember if we've entered raw mode (vital for ring 1 checks in e.g. iret emulation). */
526 SSMR3GetUInt(pSSM, &fRawRing0);
527 if (fRawRing0)
528 pRem->Env.state |= CPU_RAW_RING0;
529
530 /*
531 * Load the REM stuff.
532 */
533 rc = SSMR3GetUInt(pSSM, &pRem->cInvalidatedPages);
534 if (VBOX_FAILURE(rc))
535 return rc;
536 if (pRem->cInvalidatedPages > ELEMENTS(pRem->aGCPtrInvalidatedPages))
537 {
538 AssertMsgFailed(("cInvalidatedPages=%#x\n", pRem->cInvalidatedPages));
539 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
540 }
541 unsigned i;
542 for (i = 0; i < pRem->cInvalidatedPages; i++)
543 SSMR3GetGCPtr(pSSM, &pRem->aGCPtrInvalidatedPages[i]);
544
545 rc = SSMR3GetUInt(pSSM, &pVM->rem.s.u32PendingInterrupt);
546 if (VBOX_FAILURE(rc))
547 return rc;
548
549 /* check the terminator. */
550 rc = SSMR3GetU32(pSSM, &u32Sep);
551 if (VBOX_FAILURE(rc))
552 return rc;
553 if (u32Sep != ~0)
554 {
555 AssertMsgFailed(("u32Sep=%#x (term)\n", u32Sep));
556 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
557 }
558
559 /*
560 * Get the CPUID features.
561 */
562 CPUMGetGuestCpuId(pVM, 1, &u32Dummy, &u32Dummy, &pVM->rem.s.Env.cpuid_ext_features, &pVM->rem.s.Env.cpuid_features);
563 CPUMGetGuestCpuId(pVM, 0x80000001, &u32Dummy, &u32Dummy, &u32Dummy, &pVM->rem.s.Env.cpuid_ext2_features);
564
565 /*
566 * Sync the Load Flush the TLB
567 */
568 tlb_flush(&pRem->Env, 1);
569
570#if 0 /** @todo r=bird: this doesn't make sense. WHY? */
571 /*
572 * Clear all lazy flags (only FPU sync for now).
573 */
574 CPUMGetAndClearFPUUsedREM(pVM);
575#endif
576
577 /*
578 * Stop ignoring ignornable notifications.
579 */
580 pVM->rem.s.fIgnoreAll = false;
581
582 return VINF_SUCCESS;
583}
584
585
586
587#undef LOG_GROUP
588#define LOG_GROUP LOG_GROUP_REM_RUN
589
590/**
591 * Single steps an instruction in recompiled mode.
592 *
593 * Before calling this function the REM state needs to be in sync with
594 * the VM. Call REMR3State() to perform the sync. It's only necessary
595 * (and permitted) to sync at the first call to REMR3Step()/REMR3Run()
596 * and after calling REMR3StateBack().
597 *
598 * @returns VBox status code.
599 *
600 * @param pVM VM Handle.
601 */
602REMR3DECL(int) REMR3Step(PVM pVM)
603{
604 /*
605 * Lock the REM - we don't wanna have anyone interrupting us
606 * while stepping - and enabled single stepping. We also ignore
607 * pending interrupts and suchlike.
608 */
609 int interrupt_request = pVM->rem.s.Env.interrupt_request;
610 Assert(!(interrupt_request & ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXIT | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER | CPU_INTERRUPT_EXTERNAL_HARD | CPU_INTERRUPT_EXTERNAL_EXIT | CPU_INTERRUPT_EXTERNAL_TIMER)));
611 pVM->rem.s.Env.interrupt_request = 0;
612 cpu_single_step(&pVM->rem.s.Env, 1);
613
614 /*
615 * If we're standing at a breakpoint, that have to be disabled before we start stepping.
616 */
617 RTGCPTR GCPtrPC = pVM->rem.s.Env.eip + pVM->rem.s.Env.segs[R_CS].base;
618 bool fBp = !cpu_breakpoint_remove(&pVM->rem.s.Env, GCPtrPC);
619
620 /*
621 * Execute and handle the return code.
622 * We execute without enabling the cpu tick, so on success we'll
623 * just flip it on and off to make sure it moves
624 */
625 int rc = cpu_exec(&pVM->rem.s.Env);
626 if (rc == EXCP_DEBUG)
627 {
628 TMCpuTickResume(pVM);
629 TMCpuTickPause(pVM);
630 TMVirtualResume(pVM);
631 TMVirtualPause(pVM);
632 rc = VINF_EM_DBG_STEPPED;
633 }
634 else
635 {
636 AssertMsgFailed(("Damn, this shouldn't happen! cpu_exec returned %d while singlestepping\n", rc));
637 switch (rc)
638 {
639 case EXCP_INTERRUPT: rc = VINF_SUCCESS; break;
640 case EXCP_HLT:
641 case EXCP_HALTED: rc = VINF_EM_HALT; break;
642 case EXCP_RC:
643 rc = pVM->rem.s.rc;
644 pVM->rem.s.rc = VERR_INTERNAL_ERROR;
645 break;
646 default:
647 AssertReleaseMsgFailed(("This really shouldn't happen, rc=%d!\n", rc));
648 rc = VERR_INTERNAL_ERROR;
649 break;
650 }
651 }
652
653 /*
654 * Restore the stuff we changed to prevent interruption.
655 * Unlock the REM.
656 */
657 if (fBp)
658 {
659 int rc2 = cpu_breakpoint_insert(&pVM->rem.s.Env, GCPtrPC);
660 Assert(rc2 == 0); NOREF(rc2);
661 }
662 cpu_single_step(&pVM->rem.s.Env, 0);
663 pVM->rem.s.Env.interrupt_request = interrupt_request;
664
665 return rc;
666}
667
668
669/**
670 * Set a breakpoint using the REM facilities.
671 *
672 * @returns VBox status code.
673 * @param pVM The VM handle.
674 * @param Address The breakpoint address.
675 * @thread The emulation thread.
676 */
677REMR3DECL(int) REMR3BreakpointSet(PVM pVM, RTGCUINTPTR Address)
678{
679 VM_ASSERT_EMT(pVM);
680 if (!cpu_breakpoint_insert(&pVM->rem.s.Env, Address))
681 {
682 LogFlow(("REMR3BreakpointSet: Address=%VGv\n", Address));
683 return VINF_SUCCESS;
684 }
685 LogFlow(("REMR3BreakpointSet: Address=%VGv - failed!\n", Address));
686 return VERR_REM_NO_MORE_BP_SLOTS;
687}
688
689
690/**
691 * Clears a breakpoint set by REMR3BreakpointSet().
692 *
693 * @returns VBox status code.
694 * @param pVM The VM handle.
695 * @param Address The breakpoint address.
696 * @thread The emulation thread.
697 */
698REMR3DECL(int) REMR3BreakpointClear(PVM pVM, RTGCUINTPTR Address)
699{
700 VM_ASSERT_EMT(pVM);
701 if (!cpu_breakpoint_remove(&pVM->rem.s.Env, Address))
702 {
703 LogFlow(("REMR3BreakpointClear: Address=%VGv\n", Address));
704 return VINF_SUCCESS;
705 }
706 LogFlow(("REMR3BreakpointClear: Address=%VGv - not found!\n", Address));
707 return VERR_REM_BP_NOT_FOUND;
708}
709
710
711/**
712 * Emulate an instruction.
713 *
714 * This function executes one instruction without letting anyone
715 * interrupt it. This is intended for being called while being in
716 * raw mode and thus will take care of all the state syncing between
717 * REM and the rest.
718 *
719 * @returns VBox status code.
720 * @param pVM VM handle.
721 */
722REMR3DECL(int) REMR3EmulateInstruction(PVM pVM)
723{
724 Log2(("REMR3EmulateInstruction: (cs:eip=%04x:%08x)\n", pVM->rem.s.pCtx->cs, pVM->rem.s.pCtx->eip));
725
726 /*
727 * Sync the state and enable single instruction / single stepping.
728 */
729 int rc = REMR3State(pVM);
730 if (VBOX_SUCCESS(rc))
731 {
732 int interrupt_request = pVM->rem.s.Env.interrupt_request;
733 Assert(!(interrupt_request & ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXIT | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER | CPU_INTERRUPT_EXTERNAL_HARD | CPU_INTERRUPT_EXTERNAL_EXIT | CPU_INTERRUPT_EXTERNAL_TIMER)));
734 Assert(!pVM->rem.s.Env.singlestep_enabled);
735#if 1
736
737 /*
738 * Now we set the execute single instruction flag and enter the cpu_exec loop.
739 */
740 pVM->rem.s.Env.interrupt_request = CPU_INTERRUPT_SINGLE_INSTR;
741 rc = cpu_exec(&pVM->rem.s.Env);
742 switch (rc)
743 {
744 /*
745 * Executed without anything out of the way happening.
746 */
747 case EXCP_SINGLE_INSTR:
748 rc = VINF_EM_RESCHEDULE;
749 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_SINGLE_INSTR\n"));
750 break;
751
752 /*
753 * If we take a trap or start servicing a pending interrupt, we might end up here.
754 * (Timer thread or some other thread wishing EMT's attention.)
755 */
756 case EXCP_INTERRUPT:
757 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_INTERRUPT\n"));
758 rc = VINF_EM_RESCHEDULE;
759 break;
760
761 /*
762 * Single step, we assume!
763 * If there was a breakpoint there we're fucked now.
764 */
765 case EXCP_DEBUG:
766 {
767 /* breakpoint or single step? */
768 RTGCPTR GCPtrPC = pVM->rem.s.Env.eip + pVM->rem.s.Env.segs[R_CS].base;
769 int iBP;
770 rc = VINF_EM_DBG_STEPPED;
771 for (iBP = 0; iBP < pVM->rem.s.Env.nb_breakpoints; iBP++)
772 if (pVM->rem.s.Env.breakpoints[iBP] == GCPtrPC)
773 {
774 rc = VINF_EM_DBG_BREAKPOINT;
775 break;
776 }
777 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_DEBUG rc=%Vrc iBP=%d GCPtrPC=%VGv\n", rc, iBP, GCPtrPC));
778 break;
779 }
780
781 /*
782 * hlt instruction.
783 */
784 case EXCP_HLT:
785 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_HLT\n"));
786 rc = VINF_EM_HALT;
787 break;
788
789 /*
790 * The VM has halted.
791 */
792 case EXCP_HALTED:
793 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_HALTED\n"));
794 rc = VINF_EM_HALT;
795 break;
796
797 /*
798 * Switch to RAW-mode.
799 */
800 case EXCP_EXECUTE_RAW:
801 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_EXECUTE_RAW\n"));
802 rc = VINF_EM_RESCHEDULE_RAW;
803 break;
804
805 /*
806 * Switch to hardware accelerated RAW-mode.
807 */
808 case EXCP_EXECUTE_HWACC:
809 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_EXECUTE_HWACC\n"));
810 rc = VINF_EM_RESCHEDULE_HWACC;
811 break;
812
813 /*
814 * An EM RC was raised (VMR3Reset/Suspend/PowerOff/some-fatal-error).
815 */
816 case EXCP_RC:
817 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_RC\n"));
818 rc = pVM->rem.s.rc;
819 pVM->rem.s.rc = VERR_INTERNAL_ERROR;
820 break;
821
822 /*
823 * Figure out the rest when they arrive....
824 */
825 default:
826 AssertMsgFailed(("rc=%d\n", rc));
827 Log2(("REMR3EmulateInstruction: cpu_exec -> %d\n", rc));
828 rc = VINF_EM_RESCHEDULE;
829 break;
830 }
831
832 /*
833 * Switch back the state.
834 */
835#else
836 pVM->rem.s.Env.interrupt_request = 0;
837 cpu_single_step(&pVM->rem.s.Env, 1);
838
839 /*
840 * Execute and handle the return code.
841 * We execute without enabling the cpu tick, so on success we'll
842 * just flip it on and off to make sure it moves.
843 *
844 * (We do not use emulate_single_instr() because that doesn't enter the
845 * right way in will cause serious trouble if a longjmp was attempted.)
846 */
847# ifdef DEBUG_bird
848 remR3DisasInstr(&pVM->rem.s.Env, 1, "REMR3EmulateInstruction");
849# endif
850 int cTimesMax = 16384;
851 uint32_t eip = pVM->rem.s.Env.eip;
852 do
853 {
854 rc = cpu_exec(&pVM->rem.s.Env);
855
856 } while ( eip == pVM->rem.s.Env.eip
857 && (rc == EXCP_DEBUG || rc == EXCP_EXECUTE_RAW)
858 && --cTimesMax > 0);
859 switch (rc)
860 {
861 /*
862 * Single step, we assume!
863 * If there was a breakpoint there we're fucked now.
864 */
865 case EXCP_DEBUG:
866 {
867 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_DEBUG\n"));
868 rc = VINF_EM_RESCHEDULE;
869 break;
870 }
871
872 /*
873 * We cannot be interrupted!
874 */
875 case EXCP_INTERRUPT:
876 AssertMsgFailed(("Shouldn't happen! Everything was locked!\n"));
877 rc = VERR_INTERNAL_ERROR;
878 break;
879
880 /*
881 * hlt instruction.
882 */
883 case EXCP_HLT:
884 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_HLT\n"));
885 rc = VINF_EM_HALT;
886 break;
887
888 /*
889 * The VM has halted.
890 */
891 case EXCP_HALTED:
892 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_HALTED\n"));
893 rc = VINF_EM_HALT;
894 break;
895
896 /*
897 * Switch to RAW-mode.
898 */
899 case EXCP_EXECUTE_RAW:
900 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_EXECUTE_RAW\n"));
901 rc = VINF_EM_RESCHEDULE_RAW;
902 break;
903
904 /*
905 * Switch to hardware accelerated RAW-mode.
906 */
907 case EXCP_EXECUTE_HWACC:
908 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_EXECUTE_HWACC\n"));
909 rc = VINF_EM_RESCHEDULE_HWACC;
910 break;
911
912 /*
913 * An EM RC was raised (VMR3Reset/Suspend/PowerOff/some-fatal-error).
914 */
915 case EXCP_RC:
916 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_RC rc=%Vrc\n", pVM->rem.s.rc));
917 rc = pVM->rem.s.rc;
918 pVM->rem.s.rc = VERR_INTERNAL_ERROR;
919 break;
920
921 /*
922 * Figure out the rest when they arrive....
923 */
924 default:
925 AssertMsgFailed(("rc=%d\n", rc));
926 Log2(("REMR3EmulateInstruction: cpu_exec -> %d\n", rc));
927 rc = VINF_SUCCESS;
928 break;
929 }
930
931 /*
932 * Switch back the state.
933 */
934 cpu_single_step(&pVM->rem.s.Env, 0);
935#endif
936 pVM->rem.s.Env.interrupt_request = interrupt_request;
937 int rc2 = REMR3StateBack(pVM);
938 AssertRC(rc2);
939 }
940
941 Log2(("REMR3EmulateInstruction: returns %Vrc (cs:eip=%04x:%08x)\n",
942 rc, pVM->rem.s.Env.segs[R_CS].selector, pVM->rem.s.Env.eip));
943 return rc;
944}
945
946
947/**
948 * Runs code in recompiled mode.
949 *
950 * Before calling this function the REM state needs to be in sync with
951 * the VM. Call REMR3State() to perform the sync. It's only necessary
952 * (and permitted) to sync at the first call to REMR3Step()/REMR3Run()
953 * and after calling REMR3StateBack().
954 *
955 * @returns VBox status code.
956 *
957 * @param pVM VM Handle.
958 */
959REMR3DECL(int) REMR3Run(PVM pVM)
960{
961 Log2(("REMR3Run: (cs:eip=%04x:%08x)\n", pVM->rem.s.Env.segs[R_CS].selector, pVM->rem.s.Env.eip));
962 Assert(pVM->rem.s.fInREM);
963////Keyboard / tb stuff:
964//if ( pVM->rem.s.Env.segs[R_CS].selector == 0xf000
965// && pVM->rem.s.Env.eip >= 0xe860
966// && pVM->rem.s.Env.eip <= 0xe880)
967// pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
968////A20:
969//if ( pVM->rem.s.Env.segs[R_CS].selector == 0x9020
970// && pVM->rem.s.Env.eip >= 0x970
971// && pVM->rem.s.Env.eip <= 0x9a0)
972// pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
973////Speaker (port 61h)
974//if ( pVM->rem.s.Env.segs[R_CS].selector == 0x0010
975// && ( (pVM->rem.s.Env.eip >= 0x90278c10 && pVM->rem.s.Env.eip <= 0x90278c30)
976// || (pVM->rem.s.Env.eip >= 0x9010e250 && pVM->rem.s.Env.eip <= 0x9010e260)
977// )
978// )
979// pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
980//DBGFR3InfoLog(pVM, "timers", NULL);
981
982
983 int rc = cpu_exec(&pVM->rem.s.Env);
984 switch (rc)
985 {
986 /*
987 * This happens when the execution was interrupted
988 * by an external event, like pending timers.
989 */
990 case EXCP_INTERRUPT:
991 Log2(("REMR3Run: cpu_exec -> EXCP_INTERRUPT\n"));
992 rc = VINF_SUCCESS;
993 break;
994
995 /*
996 * hlt instruction.
997 */
998 case EXCP_HLT:
999 Log2(("REMR3Run: cpu_exec -> EXCP_HLT\n"));
1000 rc = VINF_EM_HALT;
1001 break;
1002
1003 /*
1004 * The VM has halted.
1005 */
1006 case EXCP_HALTED:
1007 Log2(("REMR3Run: cpu_exec -> EXCP_HALTED\n"));
1008 rc = VINF_EM_HALT;
1009 break;
1010
1011 /*
1012 * Breakpoint/single step.
1013 */
1014 case EXCP_DEBUG:
1015 {
1016#if 0//def DEBUG_bird
1017 static int iBP = 0;
1018 printf("howdy, breakpoint! iBP=%d\n", iBP);
1019 switch (iBP)
1020 {
1021 case 0:
1022 cpu_breakpoint_remove(&pVM->rem.s.Env, pVM->rem.s.Env.eip + pVM->rem.s.Env.segs[R_CS].base);
1023 pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
1024 //pVM->rem.s.Env.interrupt_request = 0;
1025 //pVM->rem.s.Env.exception_index = -1;
1026 //g_fInterruptDisabled = 1;
1027 rc = VINF_SUCCESS;
1028 asm("int3");
1029 break;
1030 default:
1031 asm("int3");
1032 break;
1033 }
1034 iBP++;
1035#else
1036 /* breakpoint or single step? */
1037 RTGCPTR GCPtrPC = pVM->rem.s.Env.eip + pVM->rem.s.Env.segs[R_CS].base;
1038 int iBP;
1039 rc = VINF_EM_DBG_STEPPED;
1040 for (iBP = 0; iBP < pVM->rem.s.Env.nb_breakpoints; iBP++)
1041 if (pVM->rem.s.Env.breakpoints[iBP] == GCPtrPC)
1042 {
1043 rc = VINF_EM_DBG_BREAKPOINT;
1044 break;
1045 }
1046 Log2(("REMR3Run: cpu_exec -> EXCP_DEBUG rc=%Vrc iBP=%d GCPtrPC=%VGv\n", rc, iBP, GCPtrPC));
1047#endif
1048 break;
1049 }
1050
1051 /*
1052 * Switch to RAW-mode.
1053 */
1054 case EXCP_EXECUTE_RAW:
1055 Log2(("REMR3Run: cpu_exec -> EXCP_EXECUTE_RAW\n"));
1056 rc = VINF_EM_RESCHEDULE_RAW;
1057 break;
1058
1059 /*
1060 * Switch to hardware accelerated RAW-mode.
1061 */
1062 case EXCP_EXECUTE_HWACC:
1063 Log2(("REMR3Run: cpu_exec -> EXCP_EXECUTE_HWACC\n"));
1064 rc = VINF_EM_RESCHEDULE_HWACC;
1065 break;
1066
1067 /*
1068 * An EM RC was raised (VMR3Reset/Suspend/PowerOff/some-fatal-error).
1069 */
1070 case EXCP_RC:
1071 Log2(("REMR3Run: cpu_exec -> EXCP_RC rc=%Vrc\n", pVM->rem.s.rc));
1072 rc = pVM->rem.s.rc;
1073 pVM->rem.s.rc = VERR_INTERNAL_ERROR;
1074 break;
1075
1076 /*
1077 * Figure out the rest when they arrive....
1078 */
1079 default:
1080 AssertMsgFailed(("rc=%d\n", rc));
1081 Log2(("REMR3Run: cpu_exec -> %d\n", rc));
1082 rc = VINF_SUCCESS;
1083 break;
1084 }
1085
1086 Log2(("REMR3Run: returns %Vrc (cs:eip=%04x:%08x)\n", rc, pVM->rem.s.Env.segs[R_CS].selector, pVM->rem.s.Env.eip));
1087 return rc;
1088}
1089
1090
1091/**
1092 * Check if the cpu state is suitable for Raw execution.
1093 *
1094 * @returns boolean
1095 * @param env The CPU env struct.
1096 * @param eip The EIP to check this for (might differ from env->eip).
1097 * @param fFlags hflags OR'ed with IOPL, TF and VM from eflags.
1098 * @param piException Stores EXCP_EXECUTE_RAW/HWACC in case raw mode is supported in this context
1099 *
1100 * @remark This function must be kept in perfect sync with the scheduler in EM.cpp!
1101 */
1102bool remR3CanExecuteRaw(CPUState *env, RTGCPTR eip, unsigned fFlags, int *piException)
1103{
1104 /* !!! THIS MUST BE IN SYNC WITH emR3Reschedule !!! */
1105 /* !!! THIS MUST BE IN SYNC WITH emR3Reschedule !!! */
1106 /* !!! THIS MUST BE IN SYNC WITH emR3Reschedule !!! */
1107
1108 /* Update counter. */
1109 env->pVM->rem.s.cCanExecuteRaw++;
1110
1111 if (HWACCMIsEnabled(env->pVM))
1112 {
1113 env->state |= CPU_RAW_HWACC;
1114
1115 /*
1116 * Create partial context for HWACCMR3CanExecuteGuest
1117 */
1118 CPUMCTX Ctx;
1119 Ctx.cr0 = env->cr[0];
1120 Ctx.cr3 = env->cr[3];
1121 Ctx.cr4 = env->cr[4];
1122
1123 Ctx.tr = env->tr.selector;
1124 Ctx.trHid.u32Base = (uint32_t)env->tr.base;
1125 Ctx.trHid.u32Limit = env->tr.limit;
1126 Ctx.trHid.Attr.u = (env->tr.flags >> 8) & 0xF0FF;
1127
1128 Ctx.idtr.cbIdt = env->idt.limit;
1129 Ctx.idtr.pIdt = (uint32_t)env->idt.base;
1130
1131 Ctx.eflags.u32 = env->eflags;
1132
1133 Ctx.cs = env->segs[R_CS].selector;
1134 Ctx.csHid.u32Base = (uint32_t)env->segs[R_CS].base;
1135 Ctx.csHid.u32Limit = env->segs[R_CS].limit;
1136 Ctx.csHid.Attr.u = (env->segs[R_CS].flags >> 8) & 0xF0FF;
1137
1138 Ctx.ss = env->segs[R_SS].selector;
1139 Ctx.ssHid.u32Base = (uint32_t)env->segs[R_SS].base;
1140 Ctx.ssHid.u32Limit = env->segs[R_SS].limit;
1141 Ctx.ssHid.Attr.u = (env->segs[R_SS].flags >> 8) & 0xF0FF;
1142
1143 /* Hardware accelerated raw-mode:
1144 *
1145 * Typically only 32-bits protected mode, with paging enabled, code is allowed here.
1146 */
1147 if (HWACCMR3CanExecuteGuest(env->pVM, &Ctx) == true)
1148 {
1149 *piException = EXCP_EXECUTE_HWACC;
1150 return true;
1151 }
1152 return false;
1153 }
1154
1155 /*
1156 * Here we only support 16 & 32 bits protected mode ring 3 code that has no IO privileges
1157 * or 32 bits protected mode ring 0 code
1158 *
1159 * The tests are ordered by the likelyhood of being true during normal execution.
1160 */
1161 if (fFlags & (HF_TF_MASK | HF_INHIBIT_IRQ_MASK))
1162 {
1163 STAM_COUNTER_INC(&gStatRefuseTFInhibit);
1164 Log2(("raw mode refused: fFlags=%#x\n", fFlags));
1165 return false;
1166 }
1167
1168#ifndef VBOX_RAW_V86
1169 if (fFlags & VM_MASK) {
1170 STAM_COUNTER_INC(&gStatRefuseVM86);
1171 Log2(("raw mode refused: VM_MASK\n"));
1172 return false;
1173 }
1174#endif
1175
1176 if (env->state & CPU_EMULATE_SINGLE_INSTR)
1177 {
1178#ifndef DEBUG_bird
1179 Log2(("raw mode refused: CPU_EMULATE_SINGLE_INSTR\n"));
1180#endif
1181 return false;
1182 }
1183
1184 if (env->singlestep_enabled)
1185 {
1186 //Log2(("raw mode refused: Single step\n"));
1187 return false;
1188 }
1189
1190 if (env->nb_breakpoints > 0)
1191 {
1192 //Log2(("raw mode refused: Breakpoints\n"));
1193 return false;
1194 }
1195
1196 uint32_t u32CR0 = env->cr[0];
1197 if ((u32CR0 & (X86_CR0_PG | X86_CR0_PE)) != (X86_CR0_PG | X86_CR0_PE))
1198 {
1199 STAM_COUNTER_INC(&gStatRefusePaging);
1200 //Log2(("raw mode refused: %s%s%s\n", (u32CR0 & X86_CR0_PG) ? "" : " !PG", (u32CR0 & X86_CR0_PE) ? "" : " !PE", (u32CR0 & X86_CR0_AM) ? "" : " !AM"));
1201 return false;
1202 }
1203
1204 if (env->cr[4] & CR4_PAE_MASK)
1205 {
1206 if (!(env->cpuid_features & X86_CPUID_FEATURE_EDX_PAE))
1207 {
1208 STAM_COUNTER_INC(&gStatRefusePAE);
1209 return false;
1210 }
1211 }
1212
1213 if (((fFlags >> HF_CPL_SHIFT) & 3) == 3)
1214 {
1215 if (!EMIsRawRing3Enabled(env->pVM))
1216 return false;
1217
1218 if (!(env->eflags & IF_MASK))
1219 {
1220 STAM_COUNTER_INC(&gStatRefuseIF0);
1221 Log2(("raw mode refused: IF (RawR3)\n"));
1222 return false;
1223 }
1224
1225 if (!(u32CR0 & CR0_WP_MASK) && EMIsRawRing0Enabled(env->pVM))
1226 {
1227 STAM_COUNTER_INC(&gStatRefuseWP0);
1228 Log2(("raw mode refused: CR0.WP + RawR0\n"));
1229 return false;
1230 }
1231 }
1232 else
1233 {
1234 if (!EMIsRawRing0Enabled(env->pVM))
1235 return false;
1236
1237 // Let's start with pure 32 bits ring 0 code first
1238 if ((fFlags & (HF_SS32_MASK | HF_CS32_MASK)) != (HF_SS32_MASK | HF_CS32_MASK))
1239 {
1240 STAM_COUNTER_INC(&gStatRefuseCode16);
1241 Log2(("raw r0 mode refused: HF_[S|C]S32_MASK fFlags=%#x\n", fFlags));
1242 return false;
1243 }
1244
1245 // Only R0
1246 if (((fFlags >> HF_CPL_SHIFT) & 3) != 0)
1247 {
1248 STAM_COUNTER_INC(&gStatRefuseRing1or2);
1249 Log2(("raw r0 mode refused: CPL %d\n", ((fFlags >> HF_CPL_SHIFT) & 3) ));
1250 return false;
1251 }
1252
1253 if (!(u32CR0 & CR0_WP_MASK))
1254 {
1255 STAM_COUNTER_INC(&gStatRefuseWP0);
1256 Log2(("raw r0 mode refused: CR0.WP=0!\n"));
1257 return false;
1258 }
1259
1260 if (PATMIsPatchGCAddr(env->pVM, eip))
1261 {
1262 Log2(("raw r0 mode forced: patch code\n"));
1263 *piException = EXCP_EXECUTE_RAW;
1264 return true;
1265 }
1266
1267#if !defined(VBOX_ALLOW_IF0) && !defined(VBOX_RUN_INTERRUPT_GATE_HANDLERS)
1268 if (!(env->eflags & IF_MASK))
1269 {
1270 STAM_COUNTER_INC(&gStatRefuseIF0);
1271 ////Log2(("R0: IF=0 VIF=%d %08X\n", eip, *env->pVMeflags));
1272 //Log2(("RR0: Interrupts turned off; fall back to emulation\n"));
1273 return false;
1274 }
1275#endif
1276
1277 env->state |= CPU_RAW_RING0;
1278 }
1279
1280 /*
1281 * Don't reschedule the first time we're called, because there might be
1282 * special reasons why we're here that is not covered by the above checks.
1283 */
1284 if (env->pVM->rem.s.cCanExecuteRaw == 1)
1285 {
1286 Log2(("raw mode refused: first scheduling\n"));
1287 STAM_COUNTER_INC(&gStatRefuseCanExecute);
1288 return false;
1289 }
1290
1291 Assert(PGMPhysIsA20Enabled(env->pVM));
1292 *piException = EXCP_EXECUTE_RAW;
1293 return true;
1294}
1295
1296
1297/**
1298 * Fetches a code byte.
1299 *
1300 * @returns Success indicator (bool) for ease of use.
1301 * @param env The CPU environment structure.
1302 * @param GCPtrInstr Where to fetch code.
1303 * @param pu8Byte Where to store the byte on success
1304 */
1305bool remR3GetOpcode(CPUState *env, RTGCPTR GCPtrInstr, uint8_t *pu8Byte)
1306{
1307 int rc = PATMR3QueryOpcode(env->pVM, GCPtrInstr, pu8Byte);
1308 if (VBOX_SUCCESS(rc))
1309 return true;
1310 return false;
1311}
1312
1313
1314/**
1315 * Flush (or invalidate if you like) page table/dir entry.
1316 *
1317 * (invlpg instruction; tlb_flush_page)
1318 *
1319 * @param env Pointer to cpu environment.
1320 * @param GCPtr The virtual address which page table/dir entry should be invalidated.
1321 */
1322void remR3FlushPage(CPUState *env, RTGCPTR GCPtr)
1323{
1324 PVM pVM = env->pVM;
1325
1326 /*
1327 * When we're replaying invlpg instructions or restoring a saved
1328 * state we disable this path.
1329 */
1330 if (pVM->rem.s.fIgnoreInvlPg || pVM->rem.s.fIgnoreAll)
1331 return;
1332 Log(("remR3FlushPage: GCPtr=%VGv\n", GCPtr));
1333 Assert(pVM->rem.s.fInREM || pVM->rem.s.fInStateSync);
1334
1335 //RAWEx_ProfileStop(env, STATS_QEMU_TOTAL);
1336
1337 /*
1338 * Update the control registers before calling PGMFlushPage.
1339 */
1340 PCPUMCTX pCtx = (PCPUMCTX)pVM->rem.s.pCtx;
1341 pCtx->cr0 = env->cr[0];
1342 pCtx->cr3 = env->cr[3];
1343 pCtx->cr4 = env->cr[4];
1344
1345 /*
1346 * Let PGM do the rest.
1347 */
1348 int rc = PGMInvalidatePage(pVM, GCPtr);
1349 if (VBOX_FAILURE(rc))
1350 {
1351 AssertMsgFailed(("remR3FlushPage %x %x %x %d failed!!\n", GCPtr));
1352 VM_FF_SET(pVM, VM_FF_PGM_SYNC_CR3);
1353 }
1354 //RAWEx_ProfileStart(env, STATS_QEMU_TOTAL);
1355}
1356
1357
1358/**
1359 * Called from tlb_protect_code in order to write monitor a code page.
1360 *
1361 * @param env Pointer to the CPU environment.
1362 * @param GCPtr Code page to monitor
1363 */
1364void remR3ProtectCode(CPUState *env, RTGCPTR GCPtr)
1365{
1366 Assert(env->pVM->rem.s.fInREM);
1367 if ( (env->cr[0] & X86_CR0_PG) /* paging must be enabled */
1368 && !(env->state & CPU_EMULATE_SINGLE_INSTR) /* ignore during single instruction execution */
1369 && (((env->hflags >> HF_CPL_SHIFT) & 3) == 0) /* supervisor mode only */
1370 && !(env->eflags & VM_MASK) /* no V86 mode */
1371 && !HWACCMIsEnabled(env->pVM))
1372 CSAMR3MonitorPage(env->pVM, GCPtr, CSAM_TAG_REM);
1373}
1374
1375
1376/**
1377 * Called when the CPU is initialized, any of the CRx registers are changed or
1378 * when the A20 line is modified.
1379 *
1380 * @param env Pointer to the CPU environment.
1381 * @param fGlobal Set if the flush is global.
1382 */
1383void remR3FlushTLB(CPUState *env, bool fGlobal)
1384{
1385 PVM pVM = env->pVM;
1386
1387 /*
1388 * When we're replaying invlpg instructions or restoring a saved
1389 * state we disable this path.
1390 */
1391 if (pVM->rem.s.fIgnoreCR3Load || pVM->rem.s.fIgnoreAll)
1392 return;
1393 Assert(pVM->rem.s.fInREM);
1394
1395 /*
1396 * The caller doesn't check cr4, so we have to do that for ourselves.
1397 */
1398 if (!fGlobal && !(env->cr[4] & X86_CR4_PGE))
1399 fGlobal = true;
1400 Log(("remR3FlushTLB: CR0=%VGp CR3=%VGp CR4=%VGp %s\n", env->cr[0], env->cr[3], env->cr[4], fGlobal ? " global" : ""));
1401
1402 /*
1403 * Update the control registers before calling PGMR3FlushTLB.
1404 */
1405 PCPUMCTX pCtx = (PCPUMCTX)pVM->rem.s.pCtx;
1406 pCtx->cr0 = env->cr[0];
1407 pCtx->cr3 = env->cr[3];
1408 pCtx->cr4 = env->cr[4];
1409
1410 /*
1411 * Let PGM do the rest.
1412 */
1413 PGMFlushTLB(pVM, env->cr[3], fGlobal);
1414}
1415
1416
1417/**
1418 * Called when any of the cr0, cr4 or efer registers is updated.
1419 *
1420 * @param env Pointer to the CPU environment.
1421 */
1422void remR3ChangeCpuMode(CPUState *env)
1423{
1424 int rc;
1425 PVM pVM = env->pVM;
1426
1427 /*
1428 * When we're replaying loads or restoring a saved
1429 * state this path is disabled.
1430 */
1431 if (pVM->rem.s.fIgnoreCpuMode || pVM->rem.s.fIgnoreAll)
1432 return;
1433 Assert(pVM->rem.s.fInREM);
1434
1435 /*
1436 * Update the control registers before calling PGMR3ChangeMode()
1437 * as it may need to map whatever cr3 is pointing to.
1438 */
1439 PCPUMCTX pCtx = (PCPUMCTX)pVM->rem.s.pCtx;
1440 pCtx->cr0 = env->cr[0];
1441 pCtx->cr3 = env->cr[3];
1442 pCtx->cr4 = env->cr[4];
1443
1444#ifdef TARGET_X86_64
1445 rc = PGMChangeMode(pVM, env->cr[0], env->cr[4], env->efer);
1446 if (rc != VINF_SUCCESS)
1447 cpu_abort(env, "PGMChangeMode(, %08x, %08x, %016llx) -> %Vrc\n", env->cr[0], env->cr[4], env->efer, rc);
1448#else
1449 rc = PGMChangeMode(pVM, env->cr[0], env->cr[4], 0);
1450 if (rc != VINF_SUCCESS)
1451 cpu_abort(env, "PGMChangeMode(, %08x, %08x, %016llx) -> %Vrc\n", env->cr[0], env->cr[4], 0LL, rc);
1452#endif
1453}
1454
1455
1456/**
1457 * Called from compiled code to run dma.
1458 *
1459 * @param env Pointer to the CPU environment.
1460 */
1461void remR3DmaRun(CPUState *env)
1462{
1463 remR3ProfileStop(STATS_QEMU_RUN_EMULATED_CODE);
1464 PDMR3DmaRun(env->pVM);
1465 remR3ProfileStart(STATS_QEMU_RUN_EMULATED_CODE);
1466}
1467
1468
1469/**
1470 * Called from compiled code to schedule pending timers in VMM
1471 *
1472 * @param env Pointer to the CPU environment.
1473 */
1474void remR3TimersRun(CPUState *env)
1475{
1476 remR3ProfileStop(STATS_QEMU_RUN_EMULATED_CODE);
1477 remR3ProfileStart(STATS_QEMU_RUN_TIMERS);
1478 TMR3TimerQueuesDo(env->pVM);
1479 remR3ProfileStop(STATS_QEMU_RUN_TIMERS);
1480 remR3ProfileStart(STATS_QEMU_RUN_EMULATED_CODE);
1481}
1482
1483
1484/**
1485 * Record trap occurance
1486 *
1487 * @returns VBox status code
1488 * @param env Pointer to the CPU environment.
1489 * @param uTrap Trap nr
1490 * @param uErrorCode Error code
1491 * @param pvNextEIP Next EIP
1492 */
1493int remR3NotifyTrap(CPUState *env, uint32_t uTrap, uint32_t uErrorCode, uint32_t pvNextEIP)
1494{
1495 PVM pVM = env->pVM;
1496#ifdef VBOX_WITH_STATISTICS
1497 static STAMCOUNTER s_aStatTrap[255];
1498 static bool s_aRegisters[RT_ELEMENTS(s_aStatTrap)];
1499#endif
1500
1501#ifdef VBOX_WITH_STATISTICS
1502 if (uTrap < 255)
1503 {
1504 if (!s_aRegisters[uTrap])
1505 {
1506 s_aRegisters[uTrap] = true;
1507 char szStatName[64];
1508 RTStrPrintf(szStatName, sizeof(szStatName), "/REM/Trap/0x%02X", uTrap);
1509 STAM_REG(env->pVM, &s_aStatTrap[uTrap], STAMTYPE_COUNTER, szStatName, STAMUNIT_OCCURENCES, "Trap stats.");
1510 }
1511 STAM_COUNTER_INC(&s_aStatTrap[uTrap]);
1512 }
1513#endif
1514 Log(("remR3NotifyTrap: uTrap=%x error=%x next_eip=%VGv eip=%VGv cr2=%08x\n", uTrap, uErrorCode, pvNextEIP, env->eip, env->cr[2]));
1515 if( uTrap < 0x20
1516 && (env->cr[0] & X86_CR0_PE)
1517 && !(env->eflags & X86_EFL_VM))
1518 {
1519#ifdef DEBUG
1520 remR3DisasInstr(env, 1, "remR3NotifyTrap: ");
1521#endif
1522 if(pVM->rem.s.uPendingException == uTrap && ++pVM->rem.s.cPendingExceptions > 512)
1523 {
1524 LogRel(("VERR_REM_TOO_MANY_TRAPS -> uTrap=%x error=%x next_eip=%VGv eip=%VGv cr2=%08x\n", uTrap, uErrorCode, pvNextEIP, env->eip, env->cr[2]));
1525 remR3RaiseRC(env->pVM, VERR_REM_TOO_MANY_TRAPS);
1526 return VERR_REM_TOO_MANY_TRAPS;
1527 }
1528 if(pVM->rem.s.uPendingException != uTrap || pVM->rem.s.uPendingExcptEIP != env->eip || pVM->rem.s.uPendingExcptCR2 != env->cr[2])
1529 pVM->rem.s.cPendingExceptions = 1;
1530 pVM->rem.s.uPendingException = uTrap;
1531 pVM->rem.s.uPendingExcptEIP = env->eip;
1532 pVM->rem.s.uPendingExcptCR2 = env->cr[2];
1533 }
1534 else
1535 {
1536 pVM->rem.s.cPendingExceptions = 0;
1537 pVM->rem.s.uPendingException = uTrap;
1538 pVM->rem.s.uPendingExcptEIP = env->eip;
1539 pVM->rem.s.uPendingExcptCR2 = env->cr[2];
1540 }
1541 return VINF_SUCCESS;
1542}
1543
1544
1545/*
1546 * Clear current active trap
1547 *
1548 * @param pVM VM Handle.
1549 */
1550void remR3TrapClear(PVM pVM)
1551{
1552 pVM->rem.s.cPendingExceptions = 0;
1553 pVM->rem.s.uPendingException = 0;
1554 pVM->rem.s.uPendingExcptEIP = 0;
1555 pVM->rem.s.uPendingExcptCR2 = 0;
1556}
1557
1558
1559/*
1560 * Record previous call instruction addresses
1561 *
1562 * @param env Pointer to the CPU environment.
1563 */
1564void remR3RecordCall(CPUState *env)
1565{
1566 CSAMR3RecordCallAddress(env->pVM, env->eip);
1567}
1568
1569
1570/**
1571 * Syncs the internal REM state with the VM.
1572 *
1573 * This must be called before REMR3Run() is invoked whenever when the REM
1574 * state is not up to date. Calling it several times in a row is not
1575 * permitted.
1576 *
1577 * @returns VBox status code.
1578 *
1579 * @param pVM VM Handle.
1580 *
1581 * @remark The caller has to check for important FFs before calling REMR3Run. REMR3State will
1582 * no do this since the majority of the callers don't want any unnecessary of events
1583 * pending that would immediatly interrupt execution.
1584 */
1585REMR3DECL(int) REMR3State(PVM pVM)
1586{
1587 Log2(("REMR3State:\n"));
1588 STAM_PROFILE_START(&pVM->rem.s.StatsState, a);
1589 register const CPUMCTX *pCtx = pVM->rem.s.pCtx;
1590 register unsigned fFlags;
1591 bool fHiddenSelRegsValid = CPUMAreHiddenSelRegsValid(pVM);
1592
1593 Assert(!pVM->rem.s.fInREM);
1594 pVM->rem.s.fInStateSync = true;
1595
1596 /*
1597 * Copy the registers which requires no special handling.
1598 */
1599 Assert(R_EAX == 0);
1600 pVM->rem.s.Env.regs[R_EAX] = pCtx->eax;
1601 Assert(R_ECX == 1);
1602 pVM->rem.s.Env.regs[R_ECX] = pCtx->ecx;
1603 Assert(R_EDX == 2);
1604 pVM->rem.s.Env.regs[R_EDX] = pCtx->edx;
1605 Assert(R_EBX == 3);
1606 pVM->rem.s.Env.regs[R_EBX] = pCtx->ebx;
1607 Assert(R_ESP == 4);
1608 pVM->rem.s.Env.regs[R_ESP] = pCtx->esp;
1609 Assert(R_EBP == 5);
1610 pVM->rem.s.Env.regs[R_EBP] = pCtx->ebp;
1611 Assert(R_ESI == 6);
1612 pVM->rem.s.Env.regs[R_ESI] = pCtx->esi;
1613 Assert(R_EDI == 7);
1614 pVM->rem.s.Env.regs[R_EDI] = pCtx->edi;
1615 pVM->rem.s.Env.eip = pCtx->eip;
1616
1617 pVM->rem.s.Env.eflags = pCtx->eflags.u32;
1618
1619 pVM->rem.s.Env.cr[2] = pCtx->cr2;
1620
1621 /** @todo we could probably benefit from using a CPUM_CHANGED_DRx flag too! */
1622 pVM->rem.s.Env.dr[0] = pCtx->dr0;
1623 pVM->rem.s.Env.dr[1] = pCtx->dr1;
1624 pVM->rem.s.Env.dr[2] = pCtx->dr2;
1625 pVM->rem.s.Env.dr[3] = pCtx->dr3;
1626 pVM->rem.s.Env.dr[4] = pCtx->dr4;
1627 pVM->rem.s.Env.dr[5] = pCtx->dr5;
1628 pVM->rem.s.Env.dr[6] = pCtx->dr6;
1629 pVM->rem.s.Env.dr[7] = pCtx->dr7;
1630
1631 /*
1632 * Clear the halted hidden flag (the interrupt waking up the CPU can
1633 * have been dispatched in raw mode).
1634 */
1635 pVM->rem.s.Env.hflags &= ~HF_HALTED_MASK;
1636
1637 /*
1638 * Replay invlpg?
1639 */
1640 if (pVM->rem.s.cInvalidatedPages)
1641 {
1642 pVM->rem.s.fIgnoreInvlPg = true;
1643 RTUINT i;
1644 for (i = 0; i < pVM->rem.s.cInvalidatedPages; i++)
1645 {
1646 Log2(("REMR3State: invlpg %VGv\n", pVM->rem.s.aGCPtrInvalidatedPages[i]));
1647 tlb_flush_page(&pVM->rem.s.Env, pVM->rem.s.aGCPtrInvalidatedPages[i]);
1648 }
1649 pVM->rem.s.fIgnoreInvlPg = false;
1650 pVM->rem.s.cInvalidatedPages = 0;
1651 }
1652
1653 /*
1654 * Registers which are rarely changed and require special handling / order when changed.
1655 */
1656 fFlags = CPUMGetAndClearChangedFlagsREM(pVM);
1657 if (fFlags & ( CPUM_CHANGED_CR4 | CPUM_CHANGED_CR3 | CPUM_CHANGED_CR0
1658 | CPUM_CHANGED_GDTR | CPUM_CHANGED_IDTR | CPUM_CHANGED_LDTR | CPUM_CHANGED_TR
1659 | CPUM_CHANGED_FPU_REM | CPUM_CHANGED_SYSENTER_MSR | CPUM_CHANGED_CPUID))
1660 {
1661 if (fFlags & CPUM_CHANGED_FPU_REM)
1662 save_raw_fp_state(&pVM->rem.s.Env, (uint8_t *)&pCtx->fpu); /* 'save' is an excellent name. */
1663
1664 if (fFlags & CPUM_CHANGED_GLOBAL_TLB_FLUSH)
1665 {
1666 pVM->rem.s.fIgnoreCR3Load = true;
1667 tlb_flush(&pVM->rem.s.Env, true);
1668 pVM->rem.s.fIgnoreCR3Load = false;
1669 }
1670
1671 if (fFlags & CPUM_CHANGED_CR4)
1672 {
1673 pVM->rem.s.fIgnoreCR3Load = true;
1674 pVM->rem.s.fIgnoreCpuMode = true;
1675 cpu_x86_update_cr4(&pVM->rem.s.Env, pCtx->cr4);
1676 pVM->rem.s.fIgnoreCpuMode = false;
1677 pVM->rem.s.fIgnoreCR3Load = false;
1678 }
1679
1680 if (fFlags & CPUM_CHANGED_CR0)
1681 {
1682 pVM->rem.s.fIgnoreCR3Load = true;
1683 pVM->rem.s.fIgnoreCpuMode = true;
1684 cpu_x86_update_cr0(&pVM->rem.s.Env, pCtx->cr0);
1685 pVM->rem.s.fIgnoreCpuMode = false;
1686 pVM->rem.s.fIgnoreCR3Load = false;
1687 }
1688
1689 if (fFlags & CPUM_CHANGED_CR3)
1690 {
1691 pVM->rem.s.fIgnoreCR3Load = true;
1692 cpu_x86_update_cr3(&pVM->rem.s.Env, pCtx->cr3);
1693 pVM->rem.s.fIgnoreCR3Load = false;
1694 }
1695
1696 if (fFlags & CPUM_CHANGED_GDTR)
1697 {
1698 pVM->rem.s.Env.gdt.base = pCtx->gdtr.pGdt;
1699 pVM->rem.s.Env.gdt.limit = pCtx->gdtr.cbGdt;
1700 }
1701
1702 if (fFlags & CPUM_CHANGED_IDTR)
1703 {
1704 pVM->rem.s.Env.idt.base = pCtx->idtr.pIdt;
1705 pVM->rem.s.Env.idt.limit = pCtx->idtr.cbIdt;
1706 }
1707
1708 if (fFlags & CPUM_CHANGED_SYSENTER_MSR)
1709 {
1710 pVM->rem.s.Env.sysenter_cs = pCtx->SysEnter.cs;
1711 pVM->rem.s.Env.sysenter_eip = pCtx->SysEnter.eip;
1712 pVM->rem.s.Env.sysenter_esp = pCtx->SysEnter.esp;
1713 }
1714
1715 if (fFlags & CPUM_CHANGED_LDTR)
1716 {
1717 if (fHiddenSelRegsValid)
1718 {
1719 pVM->rem.s.Env.ldt.selector = pCtx->ldtr;
1720 pVM->rem.s.Env.ldt.base = pCtx->ldtrHid.u32Base;
1721 pVM->rem.s.Env.ldt.limit = pCtx->ldtrHid.u32Limit;
1722 pVM->rem.s.Env.ldt.flags = (pCtx->ldtrHid.Attr.u << 8) & 0xFFFFFF;;
1723 }
1724 else
1725 sync_ldtr(&pVM->rem.s.Env, pCtx->ldtr);
1726 }
1727
1728 if (fFlags & CPUM_CHANGED_TR)
1729 {
1730 if (fHiddenSelRegsValid)
1731 {
1732 pVM->rem.s.Env.tr.selector = pCtx->tr;
1733 pVM->rem.s.Env.tr.base = pCtx->trHid.u32Base;
1734 pVM->rem.s.Env.tr.limit = pCtx->trHid.u32Limit;
1735 pVM->rem.s.Env.tr.flags = (pCtx->trHid.Attr.u << 8) & 0xFFFFFF;;
1736 }
1737 else
1738 sync_tr(&pVM->rem.s.Env, pCtx->tr);
1739
1740 /** @note do_interrupt will fault if the busy flag is still set.... */
1741 pVM->rem.s.Env.tr.flags &= ~DESC_TSS_BUSY_MASK;
1742 }
1743
1744 if (fFlags & CPUM_CHANGED_CPUID)
1745 {
1746 uint32_t u32Dummy;
1747
1748 /*
1749 * Get the CPUID features.
1750 */
1751 CPUMGetGuestCpuId(pVM, 1, &u32Dummy, &u32Dummy, &pVM->rem.s.Env.cpuid_ext_features, &pVM->rem.s.Env.cpuid_features);
1752 CPUMGetGuestCpuId(pVM, 0x80000001, &u32Dummy, &u32Dummy, &u32Dummy, &pVM->rem.s.Env.cpuid_ext2_features);
1753 }
1754 }
1755
1756 /*
1757 * Update selector registers.
1758 * This must be done *after* we've synced gdt, ldt and crX registers
1759 * since we're reading the GDT/LDT om sync_seg. This will happen with
1760 * saved state which takes a quick dip into rawmode for instance.
1761 */
1762 /*
1763 * Stack; Note first check this one as the CPL might have changed. The
1764 * wrong CPL can cause QEmu to raise an exception in sync_seg!!
1765 */
1766
1767 if (fHiddenSelRegsValid)
1768 {
1769 /* The hidden selector registers are valid in the CPU context. */
1770 /** @note QEmu saves the 2nd dword of the descriptor; we should convert the attribute word back! */
1771
1772 /* Set current CPL */
1773 cpu_x86_set_cpl(&pVM->rem.s.Env, CPUMGetGuestCPL(pVM, CPUMCTX2CORE(pCtx)));
1774
1775 cpu_x86_load_seg_cache(&pVM->rem.s.Env, R_CS, pCtx->cs, pCtx->csHid.u32Base, pCtx->csHid.u32Limit, (pCtx->csHid.Attr.u << 8) & 0xFFFFFF);
1776 cpu_x86_load_seg_cache(&pVM->rem.s.Env, R_SS, pCtx->ss, pCtx->ssHid.u32Base, pCtx->ssHid.u32Limit, (pCtx->ssHid.Attr.u << 8) & 0xFFFFFF);
1777 cpu_x86_load_seg_cache(&pVM->rem.s.Env, R_DS, pCtx->ds, pCtx->dsHid.u32Base, pCtx->dsHid.u32Limit, (pCtx->dsHid.Attr.u << 8) & 0xFFFFFF);
1778 cpu_x86_load_seg_cache(&pVM->rem.s.Env, R_ES, pCtx->es, pCtx->esHid.u32Base, pCtx->esHid.u32Limit, (pCtx->esHid.Attr.u << 8) & 0xFFFFFF);
1779 cpu_x86_load_seg_cache(&pVM->rem.s.Env, R_FS, pCtx->fs, pCtx->fsHid.u32Base, pCtx->fsHid.u32Limit, (pCtx->fsHid.Attr.u << 8) & 0xFFFFFF);
1780 cpu_x86_load_seg_cache(&pVM->rem.s.Env, R_GS, pCtx->gs, pCtx->gsHid.u32Base, pCtx->gsHid.u32Limit, (pCtx->gsHid.Attr.u << 8) & 0xFFFFFF);
1781 }
1782 else
1783 {
1784 /* In 'normal' raw mode we don't have access to the hidden selector registers. */
1785 if (pVM->rem.s.Env.segs[R_SS].selector != (uint16_t)pCtx->ss)
1786 {
1787 Log2(("REMR3State: SS changed from %04x to %04x!\n", pVM->rem.s.Env.segs[R_SS].selector, pCtx->ss));
1788
1789 cpu_x86_set_cpl(&pVM->rem.s.Env, (pCtx->eflags.Bits.u1VM) ? 3 : (pCtx->ss & 3));
1790 sync_seg(&pVM->rem.s.Env, R_SS, pCtx->ss);
1791#ifdef VBOX_WITH_STATISTICS
1792 if (pVM->rem.s.Env.segs[R_SS].newselector)
1793 {
1794 STAM_COUNTER_INC(&gStatSelOutOfSync[R_SS]);
1795 }
1796#endif
1797 }
1798 else
1799 pVM->rem.s.Env.segs[R_SS].newselector = 0;
1800
1801 if (pVM->rem.s.Env.segs[R_ES].selector != pCtx->es)
1802 {
1803 Log2(("REMR3State: ES changed from %04x to %04x!\n", pVM->rem.s.Env.segs[R_ES].selector, pCtx->es));
1804 sync_seg(&pVM->rem.s.Env, R_ES, pCtx->es);
1805#ifdef VBOX_WITH_STATISTICS
1806 if (pVM->rem.s.Env.segs[R_ES].newselector)
1807 {
1808 STAM_COUNTER_INC(&gStatSelOutOfSync[R_ES]);
1809 }
1810#endif
1811 }
1812 else
1813 pVM->rem.s.Env.segs[R_ES].newselector = 0;
1814
1815 if (pVM->rem.s.Env.segs[R_CS].selector != pCtx->cs)
1816 {
1817 Log2(("REMR3State: CS changed from %04x to %04x!\n", pVM->rem.s.Env.segs[R_CS].selector, pCtx->cs));
1818 sync_seg(&pVM->rem.s.Env, R_CS, pCtx->cs);
1819#ifdef VBOX_WITH_STATISTICS
1820 if (pVM->rem.s.Env.segs[R_CS].newselector)
1821 {
1822 STAM_COUNTER_INC(&gStatSelOutOfSync[R_CS]);
1823 }
1824#endif
1825 }
1826 else
1827 pVM->rem.s.Env.segs[R_CS].newselector = 0;
1828
1829 if (pVM->rem.s.Env.segs[R_DS].selector != pCtx->ds)
1830 {
1831 Log2(("REMR3State: DS changed from %04x to %04x!\n", pVM->rem.s.Env.segs[R_DS].selector, pCtx->ds));
1832 sync_seg(&pVM->rem.s.Env, R_DS, pCtx->ds);
1833#ifdef VBOX_WITH_STATISTICS
1834 if (pVM->rem.s.Env.segs[R_DS].newselector)
1835 {
1836 STAM_COUNTER_INC(&gStatSelOutOfSync[R_DS]);
1837 }
1838#endif
1839 }
1840 else
1841 pVM->rem.s.Env.segs[R_DS].newselector = 0;
1842
1843 /** @todo need to find a way to communicate potential GDT/LDT changes and thread switches. The selector might
1844 * be the same but not the base/limit. */
1845 if (pVM->rem.s.Env.segs[R_FS].selector != pCtx->fs)
1846 {
1847 Log2(("REMR3State: FS changed from %04x to %04x!\n", pVM->rem.s.Env.segs[R_FS].selector, pCtx->fs));
1848 sync_seg(&pVM->rem.s.Env, R_FS, pCtx->fs);
1849#ifdef VBOX_WITH_STATISTICS
1850 if (pVM->rem.s.Env.segs[R_FS].newselector)
1851 {
1852 STAM_COUNTER_INC(&gStatSelOutOfSync[R_FS]);
1853 }
1854#endif
1855 }
1856 else
1857 pVM->rem.s.Env.segs[R_FS].newselector = 0;
1858
1859 if (pVM->rem.s.Env.segs[R_GS].selector != pCtx->gs)
1860 {
1861 Log2(("REMR3State: GS changed from %04x to %04x!\n", pVM->rem.s.Env.segs[R_GS].selector, pCtx->gs));
1862 sync_seg(&pVM->rem.s.Env, R_GS, pCtx->gs);
1863#ifdef VBOX_WITH_STATISTICS
1864 if (pVM->rem.s.Env.segs[R_GS].newselector)
1865 {
1866 STAM_COUNTER_INC(&gStatSelOutOfSync[R_GS]);
1867 }
1868#endif
1869 }
1870 else
1871 pVM->rem.s.Env.segs[R_GS].newselector = 0;
1872 }
1873
1874 /* Update MSRs. */
1875 pVM->rem.s.Env.efer = pCtx->msrEFER;
1876 pVM->rem.s.Env.star = pCtx->msrSTAR;
1877 pVM->rem.s.Env.pat = pCtx->msrPAT;
1878#ifdef TARGET_X86_64
1879 pVM->rem.s.Env.lstar = pCtx->msrLSTAR;
1880 pVM->rem.s.Env.cstar = pCtx->msrCSTAR;
1881 pVM->rem.s.Env.fmask = pCtx->msrSFMASK;
1882 pVM->rem.s.Env.kernelgsbase = pCtx->msrKERNELGSBASE;
1883#endif
1884 /* Note that FS_BASE & GS_BASE are already synced; QEmu keeps them in the hidden selector registers.
1885 * So we basically assume the hidden registers are in sync with these MSRs (vt-x & amd-v). Correct??
1886 */
1887
1888 /*
1889 * Check for traps.
1890 */
1891 pVM->rem.s.Env.exception_index = -1; /** @todo this won't work :/ */
1892 TRPMEVENT enmType;
1893 uint8_t u8TrapNo;
1894 int rc = TRPMQueryTrap(pVM, &u8TrapNo, &enmType);
1895 if (VBOX_SUCCESS(rc))
1896 {
1897#ifdef DEBUG
1898 if (u8TrapNo == 0x80)
1899 {
1900 remR3DumpLnxSyscall(pVM);
1901 remR3DumpOBsdSyscall(pVM);
1902 }
1903#endif
1904
1905 pVM->rem.s.Env.exception_index = u8TrapNo;
1906 if (enmType != TRPM_SOFTWARE_INT)
1907 {
1908 pVM->rem.s.Env.exception_is_int = 0;
1909 pVM->rem.s.Env.exception_next_eip = pVM->rem.s.Env.eip;
1910 }
1911 else
1912 {
1913 /*
1914 * The there are two 1 byte opcodes and one 2 byte opcode for software interrupts.
1915 * We ASSUME that there are no prefixes and sets the default to 2 byte, and checks
1916 * for int03 and into.
1917 */
1918 pVM->rem.s.Env.exception_is_int = 1;
1919 pVM->rem.s.Env.exception_next_eip = pCtx->eip + 2;
1920 /* int 3 may be generated by one-byte 0xcc */
1921 if (u8TrapNo == 3)
1922 {
1923 if (read_byte(&pVM->rem.s.Env, pVM->rem.s.Env.segs[R_CS].base + pCtx->eip) == 0xcc)
1924 pVM->rem.s.Env.exception_next_eip = pCtx->eip + 1;
1925 }
1926 /* int 4 may be generated by one-byte 0xce */
1927 else if (u8TrapNo == 4)
1928 {
1929 if (read_byte(&pVM->rem.s.Env, pVM->rem.s.Env.segs[R_CS].base + pCtx->eip) == 0xce)
1930 pVM->rem.s.Env.exception_next_eip = pCtx->eip + 1;
1931 }
1932 }
1933
1934 /* get error code and cr2 if needed. */
1935 switch (u8TrapNo)
1936 {
1937 case 0x0e:
1938 pVM->rem.s.Env.cr[2] = TRPMGetFaultAddress(pVM);
1939 /* fallthru */
1940 case 0x0a: case 0x0b: case 0x0c: case 0x0d:
1941 pVM->rem.s.Env.error_code = TRPMGetErrorCode(pVM);
1942 break;
1943
1944 case 0x11: case 0x08:
1945 default:
1946 pVM->rem.s.Env.error_code = 0;
1947 break;
1948 }
1949
1950 /*
1951 * We can now reset the active trap since the recompiler is gonna have a go at it.
1952 */
1953 rc = TRPMResetTrap(pVM);
1954 AssertRC(rc);
1955 Log2(("REMR3State: trap=%02x errcd=%VGv cr2=%VGv nexteip=%VGv%s\n", pVM->rem.s.Env.exception_index, pVM->rem.s.Env.error_code,
1956 pVM->rem.s.Env.cr[2], pVM->rem.s.Env.exception_next_eip, pVM->rem.s.Env.exception_is_int ? " software" : ""));
1957 }
1958
1959 /*
1960 * Clear old interrupt request flags; Check for pending hardware interrupts.
1961 * (See @remark for why we don't check for other FFs.)
1962 */
1963 pVM->rem.s.Env.interrupt_request &= ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXIT | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER);
1964 if ( pVM->rem.s.u32PendingInterrupt != REM_NO_PENDING_IRQ
1965 || VM_FF_ISPENDING(pVM, VM_FF_INTERRUPT_APIC | VM_FF_INTERRUPT_PIC))
1966 pVM->rem.s.Env.interrupt_request |= CPU_INTERRUPT_HARD;
1967
1968 /*
1969 * We're now in REM mode.
1970 */
1971 pVM->rem.s.fInREM = true;
1972 pVM->rem.s.fInStateSync = false;
1973 pVM->rem.s.cCanExecuteRaw = 0;
1974 STAM_PROFILE_STOP(&pVM->rem.s.StatsState, a);
1975 Log2(("REMR3State: returns VINF_SUCCESS\n"));
1976 return VINF_SUCCESS;
1977}
1978
1979
1980/**
1981 * Syncs back changes in the REM state to the the VM state.
1982 *
1983 * This must be called after invoking REMR3Run().
1984 * Calling it several times in a row is not permitted.
1985 *
1986 * @returns VBox status code.
1987 *
1988 * @param pVM VM Handle.
1989 */
1990REMR3DECL(int) REMR3StateBack(PVM pVM)
1991{
1992 Log2(("REMR3StateBack:\n"));
1993 Assert(pVM->rem.s.fInREM);
1994 STAM_PROFILE_START(&pVM->rem.s.StatsStateBack, a);
1995 register PCPUMCTX pCtx = pVM->rem.s.pCtx;
1996
1997 /*
1998 * Copy back the registers.
1999 * This is done in the order they are declared in the CPUMCTX structure.
2000 */
2001
2002 /** @todo FOP */
2003 /** @todo FPUIP */
2004 /** @todo CS */
2005 /** @todo FPUDP */
2006 /** @todo DS */
2007 /** @todo Fix MXCSR support in QEMU so we don't overwrite MXCSR with 0 when we shouldn't! */
2008 pCtx->fpu.MXCSR = 0;
2009 pCtx->fpu.MXCSR_MASK = 0;
2010
2011 /** @todo check if FPU/XMM was actually used in the recompiler */
2012 restore_raw_fp_state(&pVM->rem.s.Env, (uint8_t *)&pCtx->fpu);
2013//// dprintf2(("FPU state CW=%04X TT=%04X SW=%04X (%04X)\n", env->fpuc, env->fpstt, env->fpus, pVMCtx->fpu.FSW));
2014
2015 pCtx->edi = pVM->rem.s.Env.regs[R_EDI];
2016 pCtx->esi = pVM->rem.s.Env.regs[R_ESI];
2017 pCtx->ebp = pVM->rem.s.Env.regs[R_EBP];
2018 pCtx->eax = pVM->rem.s.Env.regs[R_EAX];
2019 pCtx->ebx = pVM->rem.s.Env.regs[R_EBX];
2020 pCtx->edx = pVM->rem.s.Env.regs[R_EDX];
2021 pCtx->ecx = pVM->rem.s.Env.regs[R_ECX];
2022
2023 pCtx->esp = pVM->rem.s.Env.regs[R_ESP];
2024 pCtx->ss = pVM->rem.s.Env.segs[R_SS].selector;
2025
2026#ifdef VBOX_WITH_STATISTICS
2027 if (pVM->rem.s.Env.segs[R_SS].newselector)
2028 {
2029 STAM_COUNTER_INC(&gStatSelOutOfSyncStateBack[R_SS]);
2030 }
2031 if (pVM->rem.s.Env.segs[R_GS].newselector)
2032 {
2033 STAM_COUNTER_INC(&gStatSelOutOfSyncStateBack[R_GS]);
2034 }
2035 if (pVM->rem.s.Env.segs[R_FS].newselector)
2036 {
2037 STAM_COUNTER_INC(&gStatSelOutOfSyncStateBack[R_FS]);
2038 }
2039 if (pVM->rem.s.Env.segs[R_ES].newselector)
2040 {
2041 STAM_COUNTER_INC(&gStatSelOutOfSyncStateBack[R_ES]);
2042 }
2043 if (pVM->rem.s.Env.segs[R_DS].newselector)
2044 {
2045 STAM_COUNTER_INC(&gStatSelOutOfSyncStateBack[R_DS]);
2046 }
2047 if (pVM->rem.s.Env.segs[R_CS].newselector)
2048 {
2049 STAM_COUNTER_INC(&gStatSelOutOfSyncStateBack[R_CS]);
2050 }
2051#endif
2052 pCtx->gs = pVM->rem.s.Env.segs[R_GS].selector;
2053 pCtx->fs = pVM->rem.s.Env.segs[R_FS].selector;
2054 pCtx->es = pVM->rem.s.Env.segs[R_ES].selector;
2055 pCtx->ds = pVM->rem.s.Env.segs[R_DS].selector;
2056 pCtx->cs = pVM->rem.s.Env.segs[R_CS].selector;
2057
2058 pCtx->eip = pVM->rem.s.Env.eip;
2059 pCtx->eflags.u32 = pVM->rem.s.Env.eflags;
2060
2061 pCtx->cr0 = pVM->rem.s.Env.cr[0];
2062 pCtx->cr2 = pVM->rem.s.Env.cr[2];
2063 pCtx->cr3 = pVM->rem.s.Env.cr[3];
2064 pCtx->cr4 = pVM->rem.s.Env.cr[4];
2065
2066 pCtx->dr0 = pVM->rem.s.Env.dr[0];
2067 pCtx->dr1 = pVM->rem.s.Env.dr[1];
2068 pCtx->dr2 = pVM->rem.s.Env.dr[2];
2069 pCtx->dr3 = pVM->rem.s.Env.dr[3];
2070 pCtx->dr4 = pVM->rem.s.Env.dr[4];
2071 pCtx->dr5 = pVM->rem.s.Env.dr[5];
2072 pCtx->dr6 = pVM->rem.s.Env.dr[6];
2073 pCtx->dr7 = pVM->rem.s.Env.dr[7];
2074
2075 pCtx->gdtr.cbGdt = pVM->rem.s.Env.gdt.limit;
2076 if (pCtx->gdtr.pGdt != (uint32_t)pVM->rem.s.Env.gdt.base)
2077 {
2078 pCtx->gdtr.pGdt = (uint32_t)pVM->rem.s.Env.gdt.base;
2079 STAM_COUNTER_INC(&gStatREMGDTChange);
2080 VM_FF_SET(pVM, VM_FF_SELM_SYNC_GDT);
2081 }
2082
2083 pCtx->idtr.cbIdt = pVM->rem.s.Env.idt.limit;
2084 if (pCtx->idtr.pIdt != (uint32_t)pVM->rem.s.Env.idt.base)
2085 {
2086 pCtx->idtr.pIdt = (uint32_t)pVM->rem.s.Env.idt.base;
2087 STAM_COUNTER_INC(&gStatREMIDTChange);
2088 VM_FF_SET(pVM, VM_FF_TRPM_SYNC_IDT);
2089 }
2090
2091 if (pCtx->ldtr != pVM->rem.s.Env.ldt.selector)
2092 {
2093 pCtx->ldtr = pVM->rem.s.Env.ldt.selector;
2094 STAM_COUNTER_INC(&gStatREMLDTRChange);
2095 VM_FF_SET(pVM, VM_FF_SELM_SYNC_LDT);
2096 }
2097 if (pCtx->tr != pVM->rem.s.Env.tr.selector)
2098 {
2099 pCtx->tr = pVM->rem.s.Env.tr.selector;
2100 STAM_COUNTER_INC(&gStatREMTRChange);
2101 VM_FF_SET(pVM, VM_FF_SELM_SYNC_TSS);
2102 }
2103
2104 /** @todo These values could still be out of sync! */
2105 pCtx->csHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_CS].base;
2106 pCtx->csHid.u32Limit = pVM->rem.s.Env.segs[R_CS].limit;
2107 /** @note QEmu saves the 2nd dword of the descriptor; we should store the attribute word only! */
2108 pCtx->csHid.Attr.u = (pVM->rem.s.Env.segs[R_CS].flags >> 8) & 0xF0FF;
2109
2110 pCtx->dsHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_DS].base;
2111 pCtx->dsHid.u32Limit = pVM->rem.s.Env.segs[R_DS].limit;
2112 pCtx->dsHid.Attr.u = (pVM->rem.s.Env.segs[R_DS].flags >> 8) & 0xF0FF;
2113
2114 pCtx->esHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_ES].base;
2115 pCtx->esHid.u32Limit = pVM->rem.s.Env.segs[R_ES].limit;
2116 pCtx->esHid.Attr.u = (pVM->rem.s.Env.segs[R_ES].flags >> 8) & 0xF0FF;
2117
2118 pCtx->fsHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_FS].base;
2119 pCtx->fsHid.u32Limit = pVM->rem.s.Env.segs[R_FS].limit;
2120 pCtx->fsHid.Attr.u = (pVM->rem.s.Env.segs[R_FS].flags >> 8) & 0xF0FF;
2121
2122 pCtx->gsHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_GS].base;
2123 pCtx->gsHid.u32Limit = pVM->rem.s.Env.segs[R_GS].limit;
2124 pCtx->gsHid.Attr.u = (pVM->rem.s.Env.segs[R_GS].flags >> 8) & 0xF0FF;
2125
2126 pCtx->ssHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_SS].base;
2127 pCtx->ssHid.u32Limit = pVM->rem.s.Env.segs[R_SS].limit;
2128 pCtx->ssHid.Attr.u = (pVM->rem.s.Env.segs[R_SS].flags >> 8) & 0xF0FF;
2129
2130 pCtx->ldtrHid.u32Base = (uint32_t)pVM->rem.s.Env.ldt.base;
2131 pCtx->ldtrHid.u32Limit = pVM->rem.s.Env.ldt.limit;
2132 pCtx->ldtrHid.Attr.u = (pVM->rem.s.Env.ldt.flags >> 8) & 0xF0FF;
2133
2134 pCtx->trHid.u32Base = (uint32_t)pVM->rem.s.Env.tr.base;
2135 pCtx->trHid.u32Limit = pVM->rem.s.Env.tr.limit;
2136 pCtx->trHid.Attr.u = (pVM->rem.s.Env.tr.flags >> 8) & 0xF0FF;
2137
2138 /* Sysenter MSR */
2139 pCtx->SysEnter.cs = pVM->rem.s.Env.sysenter_cs;
2140 pCtx->SysEnter.eip = pVM->rem.s.Env.sysenter_eip;
2141 pCtx->SysEnter.esp = pVM->rem.s.Env.sysenter_esp;
2142
2143 /* System MSRs. */
2144 pCtx->msrEFER = pVM->rem.s.Env.efer;
2145 pCtx->msrSTAR = pVM->rem.s.Env.star;
2146 pCtx->msrPAT = pVM->rem.s.Env.pat;
2147#ifdef TARGET_X86_64
2148 pCtx->msrLSTAR = pVM->rem.s.Env.lstar;
2149 pCtx->msrCSTAR = pVM->rem.s.Env.cstar;
2150 pCtx->msrSFMASK = pVM->rem.s.Env.fmask;
2151 pCtx->msrFSBASE = pVM->rem.s.Env.segs[R_FS].base;
2152 pCtx->msrGSBASE = pVM->rem.s.Env.segs[R_GS].base;
2153 pCtx->msrKERNELGSBASE = pVM->rem.s.Env.kernelgsbase;
2154#endif
2155
2156 remR3TrapClear(pVM);
2157
2158 /*
2159 * Check for traps.
2160 */
2161 if ( pVM->rem.s.Env.exception_index >= 0
2162 && pVM->rem.s.Env.exception_index < 256)
2163 {
2164 Log(("REMR3StateBack: Pending trap %x %d\n", pVM->rem.s.Env.exception_index, pVM->rem.s.Env.exception_is_int));
2165 int rc = TRPMAssertTrap(pVM, pVM->rem.s.Env.exception_index, (pVM->rem.s.Env.exception_is_int) ? TRPM_SOFTWARE_INT : TRPM_HARDWARE_INT);
2166 AssertRC(rc);
2167 switch (pVM->rem.s.Env.exception_index)
2168 {
2169 case 0x0e:
2170 TRPMSetFaultAddress(pVM, pCtx->cr2);
2171 /* fallthru */
2172 case 0x0a: case 0x0b: case 0x0c: case 0x0d:
2173 case 0x11: case 0x08: /* 0 */
2174 TRPMSetErrorCode(pVM, pVM->rem.s.Env.error_code);
2175 break;
2176 }
2177
2178 }
2179
2180 /*
2181 * We're not longer in REM mode.
2182 */
2183 pVM->rem.s.fInREM = false;
2184 STAM_PROFILE_STOP(&pVM->rem.s.StatsStateBack, a);
2185 Log2(("REMR3StateBack: returns VINF_SUCCESS\n"));
2186 return VINF_SUCCESS;
2187}
2188
2189
2190/**
2191 * This is called by the disassembler when it wants to update the cpu state
2192 * before for instance doing a register dump.
2193 */
2194static void remR3StateUpdate(PVM pVM)
2195{
2196 Assert(pVM->rem.s.fInREM);
2197 register PCPUMCTX pCtx = pVM->rem.s.pCtx;
2198
2199 /*
2200 * Copy back the registers.
2201 * This is done in the order they are declared in the CPUMCTX structure.
2202 */
2203
2204 /** @todo FOP */
2205 /** @todo FPUIP */
2206 /** @todo CS */
2207 /** @todo FPUDP */
2208 /** @todo DS */
2209 /** @todo Fix MXCSR support in QEMU so we don't overwrite MXCSR with 0 when we shouldn't! */
2210 pCtx->fpu.MXCSR = 0;
2211 pCtx->fpu.MXCSR_MASK = 0;
2212
2213 /** @todo check if FPU/XMM was actually used in the recompiler */
2214 restore_raw_fp_state(&pVM->rem.s.Env, (uint8_t *)&pCtx->fpu);
2215//// dprintf2(("FPU state CW=%04X TT=%04X SW=%04X (%04X)\n", env->fpuc, env->fpstt, env->fpus, pVMCtx->fpu.FSW));
2216
2217 pCtx->edi = pVM->rem.s.Env.regs[R_EDI];
2218 pCtx->esi = pVM->rem.s.Env.regs[R_ESI];
2219 pCtx->ebp = pVM->rem.s.Env.regs[R_EBP];
2220 pCtx->eax = pVM->rem.s.Env.regs[R_EAX];
2221 pCtx->ebx = pVM->rem.s.Env.regs[R_EBX];
2222 pCtx->edx = pVM->rem.s.Env.regs[R_EDX];
2223 pCtx->ecx = pVM->rem.s.Env.regs[R_ECX];
2224
2225 pCtx->esp = pVM->rem.s.Env.regs[R_ESP];
2226 pCtx->ss = pVM->rem.s.Env.segs[R_SS].selector;
2227
2228 pCtx->gs = pVM->rem.s.Env.segs[R_GS].selector;
2229 pCtx->fs = pVM->rem.s.Env.segs[R_FS].selector;
2230 pCtx->es = pVM->rem.s.Env.segs[R_ES].selector;
2231 pCtx->ds = pVM->rem.s.Env.segs[R_DS].selector;
2232 pCtx->cs = pVM->rem.s.Env.segs[R_CS].selector;
2233
2234 pCtx->eip = pVM->rem.s.Env.eip;
2235 pCtx->eflags.u32 = pVM->rem.s.Env.eflags;
2236
2237 pCtx->cr0 = pVM->rem.s.Env.cr[0];
2238 pCtx->cr2 = pVM->rem.s.Env.cr[2];
2239 pCtx->cr3 = pVM->rem.s.Env.cr[3];
2240 pCtx->cr4 = pVM->rem.s.Env.cr[4];
2241
2242 pCtx->dr0 = pVM->rem.s.Env.dr[0];
2243 pCtx->dr1 = pVM->rem.s.Env.dr[1];
2244 pCtx->dr2 = pVM->rem.s.Env.dr[2];
2245 pCtx->dr3 = pVM->rem.s.Env.dr[3];
2246 pCtx->dr4 = pVM->rem.s.Env.dr[4];
2247 pCtx->dr5 = pVM->rem.s.Env.dr[5];
2248 pCtx->dr6 = pVM->rem.s.Env.dr[6];
2249 pCtx->dr7 = pVM->rem.s.Env.dr[7];
2250
2251 pCtx->gdtr.cbGdt = pVM->rem.s.Env.gdt.limit;
2252 if (pCtx->gdtr.pGdt != (uint32_t)pVM->rem.s.Env.gdt.base)
2253 {
2254 pCtx->gdtr.pGdt = (uint32_t)pVM->rem.s.Env.gdt.base;
2255 STAM_COUNTER_INC(&gStatREMGDTChange);
2256 VM_FF_SET(pVM, VM_FF_SELM_SYNC_GDT);
2257 }
2258
2259 pCtx->idtr.cbIdt = pVM->rem.s.Env.idt.limit;
2260 if (pCtx->idtr.pIdt != (uint32_t)pVM->rem.s.Env.idt.base)
2261 {
2262 pCtx->idtr.pIdt = (uint32_t)pVM->rem.s.Env.idt.base;
2263 STAM_COUNTER_INC(&gStatREMIDTChange);
2264 VM_FF_SET(pVM, VM_FF_TRPM_SYNC_IDT);
2265 }
2266
2267 if (pCtx->ldtr != pVM->rem.s.Env.ldt.selector)
2268 {
2269 pCtx->ldtr = pVM->rem.s.Env.ldt.selector;
2270 STAM_COUNTER_INC(&gStatREMLDTRChange);
2271 VM_FF_SET(pVM, VM_FF_SELM_SYNC_LDT);
2272 }
2273 if (pCtx->tr != pVM->rem.s.Env.tr.selector)
2274 {
2275 pCtx->tr = pVM->rem.s.Env.tr.selector;
2276 STAM_COUNTER_INC(&gStatREMTRChange);
2277 VM_FF_SET(pVM, VM_FF_SELM_SYNC_TSS);
2278 }
2279
2280 /** @todo These values could still be out of sync! */
2281 pCtx->csHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_CS].base;
2282 pCtx->csHid.u32Limit = pVM->rem.s.Env.segs[R_CS].limit;
2283 /** @note QEmu saves the 2nd dword of the descriptor; we should store the attribute word only! */
2284 pCtx->csHid.Attr.u = (pVM->rem.s.Env.segs[R_CS].flags >> 8) & 0xFFFF;
2285
2286 pCtx->dsHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_DS].base;
2287 pCtx->dsHid.u32Limit = pVM->rem.s.Env.segs[R_DS].limit;
2288 pCtx->dsHid.Attr.u = (pVM->rem.s.Env.segs[R_DS].flags >> 8) & 0xFFFF;
2289
2290 pCtx->esHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_ES].base;
2291 pCtx->esHid.u32Limit = pVM->rem.s.Env.segs[R_ES].limit;
2292 pCtx->esHid.Attr.u = (pVM->rem.s.Env.segs[R_ES].flags >> 8) & 0xFFFF;
2293
2294 pCtx->fsHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_FS].base;
2295 pCtx->fsHid.u32Limit = pVM->rem.s.Env.segs[R_FS].limit;
2296 pCtx->fsHid.Attr.u = (pVM->rem.s.Env.segs[R_FS].flags >> 8) & 0xFFFF;
2297
2298 pCtx->gsHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_GS].base;
2299 pCtx->gsHid.u32Limit = pVM->rem.s.Env.segs[R_GS].limit;
2300 pCtx->gsHid.Attr.u = (pVM->rem.s.Env.segs[R_GS].flags >> 8) & 0xFFFF;
2301
2302 pCtx->ssHid.u32Base = (uint32_t)pVM->rem.s.Env.segs[R_SS].base;
2303 pCtx->ssHid.u32Limit = pVM->rem.s.Env.segs[R_SS].limit;
2304 pCtx->ssHid.Attr.u = (pVM->rem.s.Env.segs[R_SS].flags >> 8) & 0xFFFF;
2305
2306 pCtx->ldtrHid.u32Base = (uint32_t)pVM->rem.s.Env.ldt.base;
2307 pCtx->ldtrHid.u32Limit = pVM->rem.s.Env.ldt.limit;
2308 pCtx->ldtrHid.Attr.u = (pVM->rem.s.Env.ldt.flags >> 8) & 0xFFFF;
2309
2310 pCtx->trHid.u32Base = (uint32_t)pVM->rem.s.Env.tr.base;
2311 pCtx->trHid.u32Limit = pVM->rem.s.Env.tr.limit;
2312 pCtx->trHid.Attr.u = (pVM->rem.s.Env.tr.flags >> 8) & 0xFFFF;
2313
2314 /* Sysenter MSR */
2315 pCtx->SysEnter.cs = pVM->rem.s.Env.sysenter_cs;
2316 pCtx->SysEnter.eip = pVM->rem.s.Env.sysenter_eip;
2317 pCtx->SysEnter.esp = pVM->rem.s.Env.sysenter_esp;
2318}
2319
2320
2321/**
2322 * Update the VMM state information if we're currently in REM.
2323 *
2324 * This method is used by the DBGF and PDMDevice when there is any uncertainty of whether
2325 * we're currently executing in REM and the VMM state is invalid. This method will of
2326 * course check that we're executing in REM before syncing any data over to the VMM.
2327 *
2328 * @param pVM The VM handle.
2329 */
2330REMR3DECL(void) REMR3StateUpdate(PVM pVM)
2331{
2332 if (pVM->rem.s.fInREM)
2333 remR3StateUpdate(pVM);
2334}
2335
2336
2337#undef LOG_GROUP
2338#define LOG_GROUP LOG_GROUP_REM
2339
2340
2341/**
2342 * Notify the recompiler about Address Gate 20 state change.
2343 *
2344 * This notification is required since A20 gate changes are
2345 * initialized from a device driver and the VM might just as
2346 * well be in REM mode as in RAW mode.
2347 *
2348 * @param pVM VM handle.
2349 * @param fEnable True if the gate should be enabled.
2350 * False if the gate should be disabled.
2351 */
2352REMR3DECL(void) REMR3A20Set(PVM pVM, bool fEnable)
2353{
2354 LogFlow(("REMR3A20Set: fEnable=%d\n", fEnable));
2355 VM_ASSERT_EMT(pVM);
2356 cpu_x86_set_a20(&pVM->rem.s.Env, fEnable);
2357}
2358
2359
2360/**
2361 * Replays the invalidated recorded pages.
2362 * Called in response to VERR_REM_FLUSHED_PAGES_OVERFLOW from the RAW execution loop.
2363 *
2364 * @param pVM VM handle.
2365 */
2366REMR3DECL(void) REMR3ReplayInvalidatedPages(PVM pVM)
2367{
2368 VM_ASSERT_EMT(pVM);
2369
2370 /*
2371 * Sync the required registers.
2372 */
2373 pVM->rem.s.Env.cr[0] = pVM->rem.s.pCtx->cr0;
2374 pVM->rem.s.Env.cr[2] = pVM->rem.s.pCtx->cr2;
2375 pVM->rem.s.Env.cr[3] = pVM->rem.s.pCtx->cr3;
2376 pVM->rem.s.Env.cr[4] = pVM->rem.s.pCtx->cr4;
2377
2378 /*
2379 * Replay the flushes.
2380 */
2381 pVM->rem.s.fIgnoreInvlPg = true;
2382 RTUINT i;
2383 for (i = 0; i < pVM->rem.s.cInvalidatedPages; i++)
2384 {
2385 Log2(("REMR3ReplayInvalidatedPages: invlpg %VGv\n", pVM->rem.s.aGCPtrInvalidatedPages[i]));
2386 tlb_flush_page(&pVM->rem.s.Env, pVM->rem.s.aGCPtrInvalidatedPages[i]);
2387 }
2388 pVM->rem.s.fIgnoreInvlPg = false;
2389 pVM->rem.s.cInvalidatedPages = 0;
2390}
2391
2392
2393/**
2394 * Replays the invalidated recorded pages.
2395 * Called in response to VERR_REM_FLUSHED_PAGES_OVERFLOW from the RAW execution loop.
2396 *
2397 * @param pVM VM handle.
2398 */
2399REMR3DECL(void) REMR3ReplayHandlerNotifications(PVM pVM)
2400{
2401 LogFlow(("REMR3ReplayInvalidatedPages:\n"));
2402 VM_ASSERT_EMT(pVM);
2403
2404 /*
2405 * Replay the flushes.
2406 */
2407 RTUINT i;
2408 const RTUINT c = pVM->rem.s.cHandlerNotifications;
2409 pVM->rem.s.cHandlerNotifications = 0;
2410 for (i = 0; i < c; i++)
2411 {
2412 PREMHANDLERNOTIFICATION pRec = &pVM->rem.s.aHandlerNotifications[i];
2413 switch (pRec->enmKind)
2414 {
2415 case REMHANDLERNOTIFICATIONKIND_PHYSICAL_REGISTER:
2416 REMR3NotifyHandlerPhysicalRegister(pVM,
2417 pRec->u.PhysicalRegister.enmType,
2418 pRec->u.PhysicalRegister.GCPhys,
2419 pRec->u.PhysicalRegister.cb,
2420 pRec->u.PhysicalRegister.fHasHCHandler);
2421 break;
2422
2423 case REMHANDLERNOTIFICATIONKIND_PHYSICAL_DEREGISTER:
2424 REMR3NotifyHandlerPhysicalDeregister(pVM,
2425 pRec->u.PhysicalDeregister.enmType,
2426 pRec->u.PhysicalDeregister.GCPhys,
2427 pRec->u.PhysicalDeregister.cb,
2428 pRec->u.PhysicalDeregister.fHasHCHandler,
2429 pRec->u.PhysicalDeregister.fRestoreAsRAM);
2430 break;
2431
2432 case REMHANDLERNOTIFICATIONKIND_PHYSICAL_MODIFY:
2433 REMR3NotifyHandlerPhysicalModify(pVM,
2434 pRec->u.PhysicalModify.enmType,
2435 pRec->u.PhysicalModify.GCPhysOld,
2436 pRec->u.PhysicalModify.GCPhysNew,
2437 pRec->u.PhysicalModify.cb,
2438 pRec->u.PhysicalModify.fHasHCHandler,
2439 pRec->u.PhysicalModify.fRestoreAsRAM);
2440 break;
2441
2442 default:
2443 AssertReleaseMsgFailed(("enmKind=%d\n", pRec->enmKind));
2444 break;
2445 }
2446 }
2447}
2448
2449
2450/**
2451 * Notify REM about changed code page.
2452 *
2453 * @returns VBox status code.
2454 * @param pVM VM handle.
2455 * @param pvCodePage Code page address
2456 */
2457REMR3DECL(int) REMR3NotifyCodePageChanged(PVM pVM, RTGCPTR pvCodePage)
2458{
2459 int rc;
2460 RTGCPHYS PhysGC;
2461 uint64_t flags;
2462
2463 VM_ASSERT_EMT(pVM);
2464
2465 /*
2466 * Get the physical page address.
2467 */
2468 rc = PGMGstGetPage(pVM, pvCodePage, &flags, &PhysGC);
2469 if (rc == VINF_SUCCESS)
2470 {
2471 /*
2472 * Sync the required registers and flush the whole page.
2473 * (Easier to do the whole page than notifying it about each physical
2474 * byte that was changed.
2475 */
2476 pVM->rem.s.Env.cr[0] = pVM->rem.s.pCtx->cr0;
2477 pVM->rem.s.Env.cr[2] = pVM->rem.s.pCtx->cr2;
2478 pVM->rem.s.Env.cr[3] = pVM->rem.s.pCtx->cr3;
2479 pVM->rem.s.Env.cr[4] = pVM->rem.s.pCtx->cr4;
2480
2481 tb_invalidate_phys_page_range(PhysGC, PhysGC + PAGE_SIZE - 1, 0);
2482 }
2483 return VINF_SUCCESS;
2484}
2485
2486
2487/**
2488 * Notification about a successful MMR3PhysRegister() call.
2489 *
2490 * @param pVM VM handle.
2491 * @param GCPhys The physical address the RAM.
2492 * @param cb Size of the memory.
2493 * @param fFlags Flags of the MM_RAM_FLAGS_* defines.
2494 */
2495REMR3DECL(void) REMR3NotifyPhysRamRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, unsigned fFlags)
2496{
2497 Log(("REMR3NotifyPhysRamRegister: GCPhys=%VGp cb=%d fFlags=%d\n", GCPhys, cb, fFlags));
2498 VM_ASSERT_EMT(pVM);
2499
2500 /*
2501 * Validate input - we trust the caller.
2502 */
2503 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
2504 Assert(cb);
2505 Assert(RT_ALIGN_Z(cb, PAGE_SIZE) == cb);
2506
2507 /*
2508 * Base ram?
2509 */
2510 if (!GCPhys)
2511 {
2512 phys_ram_size = cb;
2513 phys_ram_dirty_size = cb >> PAGE_SHIFT;
2514#ifndef VBOX_STRICT
2515 phys_ram_dirty = MMR3HeapAlloc(pVM, MM_TAG_REM, phys_ram_dirty_size);
2516 AssertReleaseMsg(phys_ram_dirty, ("failed to allocate %d bytes of dirty bytes\n", phys_ram_dirty_size));
2517#else /* VBOX_STRICT: allocate a full map and make the out of bounds pages invalid. */
2518 phys_ram_dirty = RTMemPageAlloc(_4G >> PAGE_SHIFT);
2519 AssertReleaseMsg(phys_ram_dirty, ("failed to allocate %d bytes of dirty bytes\n", _4G >> PAGE_SHIFT));
2520 uint32_t cbBitmap = RT_ALIGN_32(phys_ram_dirty_size, PAGE_SIZE);
2521 int rc = RTMemProtect(phys_ram_dirty + cbBitmap, (_4G >> PAGE_SHIFT) - cbBitmap, RTMEM_PROT_NONE);
2522 AssertRC(rc);
2523 phys_ram_dirty += cbBitmap - phys_ram_dirty_size;
2524#endif
2525 memset(phys_ram_dirty, 0xff, phys_ram_dirty_size);
2526 }
2527
2528 /*
2529 * Register the ram.
2530 */
2531 Assert(!pVM->rem.s.fIgnoreAll);
2532 pVM->rem.s.fIgnoreAll = true;
2533
2534#ifdef VBOX_WITH_NEW_PHYS_CODE
2535 if (fFlags & MM_RAM_FLAGS_RESERVED)
2536 cpu_register_physical_memory(GCPhys, cb, IO_MEM_UNASSIGNED);
2537 else
2538 cpu_register_physical_memory(GCPhys, cb, GCPhys);
2539#else
2540 if (!GCPhys)
2541 cpu_register_physical_memory(GCPhys, cb, GCPhys | IO_MEM_RAM_MISSING);
2542 else
2543 {
2544 if (fFlags & MM_RAM_FLAGS_RESERVED)
2545 cpu_register_physical_memory(GCPhys, cb, IO_MEM_UNASSIGNED);
2546 else
2547 cpu_register_physical_memory(GCPhys, cb, GCPhys);
2548 }
2549#endif
2550 Assert(pVM->rem.s.fIgnoreAll);
2551 pVM->rem.s.fIgnoreAll = false;
2552}
2553
2554#ifndef VBOX_WITH_NEW_PHYS_CODE
2555
2556/**
2557 * Notification about a successful PGMR3PhysRegisterChunk() call.
2558 *
2559 * @param pVM VM handle.
2560 * @param GCPhys The physical address the RAM.
2561 * @param cb Size of the memory.
2562 * @param pvRam The HC address of the RAM.
2563 * @param fFlags Flags of the MM_RAM_FLAGS_* defines.
2564 */
2565REMR3DECL(void) REMR3NotifyPhysRamChunkRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, RTHCUINTPTR pvRam, unsigned fFlags)
2566{
2567 Log(("REMR3NotifyPhysRamChunkRegister: GCPhys=%VGp cb=%d pvRam=%p fFlags=%d\n", GCPhys, cb, pvRam, fFlags));
2568 VM_ASSERT_EMT(pVM);
2569
2570 /*
2571 * Validate input - we trust the caller.
2572 */
2573 Assert(pvRam);
2574 Assert(RT_ALIGN(pvRam, PAGE_SIZE) == pvRam);
2575 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
2576 Assert(cb == PGM_DYNAMIC_CHUNK_SIZE);
2577 Assert(fFlags == 0 /* normal RAM */);
2578 Assert(!pVM->rem.s.fIgnoreAll);
2579 pVM->rem.s.fIgnoreAll = true;
2580
2581 cpu_register_physical_memory(GCPhys, cb, GCPhys);
2582
2583 Assert(pVM->rem.s.fIgnoreAll);
2584 pVM->rem.s.fIgnoreAll = false;
2585}
2586
2587
2588/**
2589 * Grows dynamically allocated guest RAM.
2590 * Will raise a fatal error if the operation fails.
2591 *
2592 * @param physaddr The physical address.
2593 */
2594void remR3GrowDynRange(unsigned long physaddr)
2595{
2596 int rc;
2597 PVM pVM = cpu_single_env->pVM;
2598
2599 Log(("remR3GrowDynRange %VGp\n", physaddr));
2600 const RTGCPHYS GCPhys = physaddr;
2601 rc = PGM3PhysGrowRange(pVM, &GCPhys);
2602 if (VBOX_SUCCESS(rc))
2603 return;
2604
2605 LogRel(("\nUnable to allocate guest RAM chunk at %VGp\n", physaddr));
2606 cpu_abort(cpu_single_env, "Unable to allocate guest RAM chunk at %VGp\n", physaddr);
2607 AssertFatalFailed();
2608}
2609
2610#endif /* !VBOX_WITH_NEW_PHYS_CODE */
2611
2612/**
2613 * Notification about a successful MMR3PhysRomRegister() call.
2614 *
2615 * @param pVM VM handle.
2616 * @param GCPhys The physical address of the ROM.
2617 * @param cb The size of the ROM.
2618 * @param pvCopy Pointer to the ROM copy.
2619 * @param fShadow Whether it's currently writable shadow ROM or normal readonly ROM.
2620 * This function will be called when ever the protection of the
2621 * shadow ROM changes (at reset and end of POST).
2622 */
2623REMR3DECL(void) REMR3NotifyPhysRomRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, void *pvCopy, bool fShadow)
2624{
2625 Log(("REMR3NotifyPhysRomRegister: GCPhys=%VGp cb=%d pvCopy=%p fShadow=%RTbool\n", GCPhys, cb, pvCopy, fShadow));
2626 VM_ASSERT_EMT(pVM);
2627
2628 /*
2629 * Validate input - we trust the caller.
2630 */
2631 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
2632 Assert(cb);
2633 Assert(RT_ALIGN_Z(cb, PAGE_SIZE) == cb);
2634 Assert(pvCopy);
2635 Assert(RT_ALIGN_P(pvCopy, PAGE_SIZE) == pvCopy);
2636
2637 /*
2638 * Register the rom.
2639 */
2640 Assert(!pVM->rem.s.fIgnoreAll);
2641 pVM->rem.s.fIgnoreAll = true;
2642
2643 cpu_register_physical_memory(GCPhys, cb, GCPhys | (fShadow ? 0 : IO_MEM_ROM));
2644
2645 Log2(("%.64Vhxd\n", (char *)pvCopy + cb - 64));
2646
2647 Assert(pVM->rem.s.fIgnoreAll);
2648 pVM->rem.s.fIgnoreAll = false;
2649}
2650
2651
2652/**
2653 * Notification about a successful memory deregistration or reservation.
2654 *
2655 * @param pVM VM Handle.
2656 * @param GCPhys Start physical address.
2657 * @param cb The size of the range.
2658 * @todo Rename to REMR3NotifyPhysRamDeregister (for MMIO2) as we won't
2659 * reserve any memory soon.
2660 */
2661REMR3DECL(void) REMR3NotifyPhysReserve(PVM pVM, RTGCPHYS GCPhys, RTUINT cb)
2662{
2663 Log(("REMR3NotifyPhysReserve: GCPhys=%VGp cb=%d\n", GCPhys, cb));
2664 VM_ASSERT_EMT(pVM);
2665
2666 /*
2667 * Validate input - we trust the caller.
2668 */
2669 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
2670 Assert(cb);
2671 Assert(RT_ALIGN_Z(cb, PAGE_SIZE) == cb);
2672
2673 /*
2674 * Unassigning the memory.
2675 */
2676 Assert(!pVM->rem.s.fIgnoreAll);
2677 pVM->rem.s.fIgnoreAll = true;
2678
2679 cpu_register_physical_memory(GCPhys, cb, IO_MEM_UNASSIGNED);
2680
2681 Assert(pVM->rem.s.fIgnoreAll);
2682 pVM->rem.s.fIgnoreAll = false;
2683}
2684
2685
2686/**
2687 * Notification about a successful PGMR3HandlerPhysicalRegister() call.
2688 *
2689 * @param pVM VM Handle.
2690 * @param enmType Handler type.
2691 * @param GCPhys Handler range address.
2692 * @param cb Size of the handler range.
2693 * @param fHasHCHandler Set if the handler has a HC callback function.
2694 *
2695 * @remark MMR3PhysRomRegister assumes that this function will not apply the
2696 * Handler memory type to memory which has no HC handler.
2697 */
2698REMR3DECL(void) REMR3NotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler)
2699{
2700 Log(("REMR3NotifyHandlerPhysicalRegister: enmType=%d GCPhys=%VGp cb=%d fHasHCHandler=%d\n",
2701 enmType, GCPhys, cb, fHasHCHandler));
2702 VM_ASSERT_EMT(pVM);
2703 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
2704 Assert(RT_ALIGN_T(cb, PAGE_SIZE, RTGCPHYS) == cb);
2705
2706 if (pVM->rem.s.cHandlerNotifications)
2707 REMR3ReplayHandlerNotifications(pVM);
2708
2709 Assert(!pVM->rem.s.fIgnoreAll);
2710 pVM->rem.s.fIgnoreAll = true;
2711
2712 if (enmType == PGMPHYSHANDLERTYPE_MMIO)
2713 cpu_register_physical_memory(GCPhys, cb, pVM->rem.s.iMMIOMemType);
2714 else if (fHasHCHandler)
2715 cpu_register_physical_memory(GCPhys, cb, pVM->rem.s.iHandlerMemType);
2716
2717 Assert(pVM->rem.s.fIgnoreAll);
2718 pVM->rem.s.fIgnoreAll = false;
2719}
2720
2721
2722/**
2723 * Notification about a successful PGMR3HandlerPhysicalDeregister() operation.
2724 *
2725 * @param pVM VM Handle.
2726 * @param enmType Handler type.
2727 * @param GCPhys Handler range address.
2728 * @param cb Size of the handler range.
2729 * @param fHasHCHandler Set if the handler has a HC callback function.
2730 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
2731 */
2732REMR3DECL(void) REMR3NotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
2733{
2734 Log(("REMR3NotifyHandlerPhysicalDeregister: enmType=%d GCPhys=%VGp cb=%VGp fHasHCHandler=%RTbool fRestoreAsRAM=%RTbool RAM=%08x\n",
2735 enmType, GCPhys, cb, fHasHCHandler, fRestoreAsRAM, MMR3PhysGetRamSize(pVM)));
2736 VM_ASSERT_EMT(pVM);
2737
2738 if (pVM->rem.s.cHandlerNotifications)
2739 REMR3ReplayHandlerNotifications(pVM);
2740
2741 Assert(!pVM->rem.s.fIgnoreAll);
2742 pVM->rem.s.fIgnoreAll = true;
2743
2744/** @todo this isn't right, MMIO can (in theory) be restored as RAM. */
2745 if (enmType == PGMPHYSHANDLERTYPE_MMIO)
2746 cpu_register_physical_memory(GCPhys, cb, IO_MEM_UNASSIGNED);
2747 else if (fHasHCHandler)
2748 {
2749 if (!fRestoreAsRAM)
2750 {
2751 Assert(GCPhys > MMR3PhysGetRamSize(pVM));
2752 cpu_register_physical_memory(GCPhys, cb, IO_MEM_UNASSIGNED);
2753 }
2754 else
2755 {
2756 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
2757 Assert(RT_ALIGN_T(cb, PAGE_SIZE, RTGCPHYS) == cb);
2758 cpu_register_physical_memory(GCPhys, cb, GCPhys);
2759 }
2760 }
2761
2762 Assert(pVM->rem.s.fIgnoreAll);
2763 pVM->rem.s.fIgnoreAll = false;
2764}
2765
2766
2767/**
2768 * Notification about a successful PGMR3HandlerPhysicalModify() call.
2769 *
2770 * @param pVM VM Handle.
2771 * @param enmType Handler type.
2772 * @param GCPhysOld Old handler range address.
2773 * @param GCPhysNew New handler range address.
2774 * @param cb Size of the handler range.
2775 * @param fHasHCHandler Set if the handler has a HC callback function.
2776 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
2777 */
2778REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
2779{
2780 Log(("REMR3NotifyHandlerPhysicalModify: enmType=%d GCPhysOld=%VGp GCPhysNew=%VGp cb=%d fHasHCHandler=%RTbool fRestoreAsRAM=%RTbool\n",
2781 enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, fRestoreAsRAM));
2782 VM_ASSERT_EMT(pVM);
2783 AssertReleaseMsg(enmType != PGMPHYSHANDLERTYPE_MMIO, ("enmType=%d\n", enmType));
2784
2785 if (pVM->rem.s.cHandlerNotifications)
2786 REMR3ReplayHandlerNotifications(pVM);
2787
2788 if (fHasHCHandler)
2789 {
2790 Assert(!pVM->rem.s.fIgnoreAll);
2791 pVM->rem.s.fIgnoreAll = true;
2792
2793 /*
2794 * Reset the old page.
2795 */
2796 if (!fRestoreAsRAM)
2797 cpu_register_physical_memory(GCPhysOld, cb, IO_MEM_UNASSIGNED);
2798 else
2799 {
2800 /* This is not perfect, but it'll do for PD monitoring... */
2801 Assert(cb == PAGE_SIZE);
2802 Assert(RT_ALIGN_T(GCPhysOld, PAGE_SIZE, RTGCPHYS) == GCPhysOld);
2803 cpu_register_physical_memory(GCPhysOld, cb, GCPhysOld);
2804 }
2805
2806 /*
2807 * Update the new page.
2808 */
2809 Assert(RT_ALIGN_T(GCPhysNew, PAGE_SIZE, RTGCPHYS) == GCPhysNew);
2810 Assert(RT_ALIGN_T(cb, PAGE_SIZE, RTGCPHYS) == cb);
2811 cpu_register_physical_memory(GCPhysNew, cb, pVM->rem.s.iHandlerMemType);
2812
2813 Assert(pVM->rem.s.fIgnoreAll);
2814 pVM->rem.s.fIgnoreAll = false;
2815 }
2816}
2817
2818
2819/**
2820 * Checks if we're handling access to this page or not.
2821 *
2822 * @returns true if we're trapping access.
2823 * @returns false if we aren't.
2824 * @param pVM The VM handle.
2825 * @param GCPhys The physical address.
2826 *
2827 * @remark This function will only work correctly in VBOX_STRICT builds!
2828 */
2829REMR3DECL(bool) REMR3IsPageAccessHandled(PVM pVM, RTGCPHYS GCPhys)
2830{
2831#ifdef VBOX_STRICT
2832 if (pVM->rem.s.cHandlerNotifications)
2833 REMR3ReplayHandlerNotifications(pVM);
2834
2835 unsigned long off = get_phys_page_offset(GCPhys);
2836 return (off & PAGE_OFFSET_MASK) == pVM->rem.s.iHandlerMemType
2837 || (off & PAGE_OFFSET_MASK) == pVM->rem.s.iMMIOMemType
2838 || (off & PAGE_OFFSET_MASK) == IO_MEM_ROM;
2839#else
2840 return false;
2841#endif
2842}
2843
2844
2845/**
2846 * Deals with a rare case in get_phys_addr_code where the code
2847 * is being monitored.
2848 *
2849 * It could also be an MMIO page, in which case we will raise a fatal error.
2850 *
2851 * @returns The physical address corresponding to addr.
2852 * @param env The cpu environment.
2853 * @param addr The virtual address.
2854 * @param pTLBEntry The TLB entry.
2855 */
2856target_ulong remR3PhysGetPhysicalAddressCode(CPUState *env, target_ulong addr, CPUTLBEntry *pTLBEntry)
2857{
2858 PVM pVM = env->pVM;
2859 if ((pTLBEntry->addr_code & ~TARGET_PAGE_MASK) == pVM->rem.s.iHandlerMemType)
2860 {
2861 target_ulong ret = pTLBEntry->addend + addr;
2862 AssertMsg2("remR3PhysGetPhysicalAddressCode: addr=%VGv addr_code=%VGv addend=%VGp ret=%VGp\n",
2863 (RTGCPTR)addr, (RTGCPTR)pTLBEntry->addr_code, (RTGCPHYS)pTLBEntry->addend, ret);
2864 return ret;
2865 }
2866 LogRel(("\nTrying to execute code with memory type addr_code=%VGv addend=%VGp at %VGv! (iHandlerMemType=%#x iMMIOMemType=%#x)\n"
2867 "*** handlers\n",
2868 (RTGCPTR)pTLBEntry->addr_code, (RTGCPHYS)pTLBEntry->addend, (RTGCPTR)addr, pVM->rem.s.iHandlerMemType, pVM->rem.s.iMMIOMemType));
2869 DBGFR3Info(pVM, "handlers", NULL, DBGFR3InfoLogRelHlp());
2870 LogRel(("*** mmio\n"));
2871 DBGFR3Info(pVM, "mmio", NULL, DBGFR3InfoLogRelHlp());
2872 LogRel(("*** phys\n"));
2873 DBGFR3Info(pVM, "phys", NULL, DBGFR3InfoLogRelHlp());
2874 cpu_abort(env, "Trying to execute code with memory type addr_code=%VGv addend=%VGp at %VGv. (iHandlerMemType=%#x iMMIOMemType=%#x)\n",
2875 (RTGCPTR)pTLBEntry->addr_code, (RTGCPHYS)pTLBEntry->addend, (RTGCPTR)addr, pVM->rem.s.iHandlerMemType, pVM->rem.s.iMMIOMemType);
2876 AssertFatalFailed();
2877}
2878
2879
2880/** Validate the physical address passed to the read functions.
2881 * Useful for finding non-guest-ram reads/writes. */
2882#if 1 /* disable if it becomes bothersome... */
2883# define VBOX_CHECK_ADDR(GCPhys) AssertMsg(PGMPhysIsGCPhysValid(cpu_single_env->pVM, (GCPhys)), ("%VGp\n", (GCPhys)))
2884#else
2885# define VBOX_CHECK_ADDR(GCPhys) do { } while (0)
2886#endif
2887
2888/**
2889 * Read guest RAM and ROM.
2890 *
2891 * @param SrcGCPhys The source address (guest physical).
2892 * @param pvDst The destination address.
2893 * @param cb Number of bytes
2894 */
2895void remR3PhysRead(RTGCPHYS SrcGCPhys, void *pvDst, unsigned cb)
2896{
2897 STAM_PROFILE_ADV_START(&gStatMemRead, a);
2898 VBOX_CHECK_ADDR(SrcGCPhys);
2899 PGMPhysRead(cpu_single_env->pVM, SrcGCPhys, pvDst, cb);
2900 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
2901}
2902
2903
2904/**
2905 * Read guest RAM and ROM, unsigned 8-bit.
2906 *
2907 * @param SrcGCPhys The source address (guest physical).
2908 */
2909uint8_t remR3PhysReadU8(RTGCPHYS SrcGCPhys)
2910{
2911 uint8_t val;
2912 STAM_PROFILE_ADV_START(&gStatMemRead, a);
2913 VBOX_CHECK_ADDR(SrcGCPhys);
2914 val = PGMR3PhysReadByte(cpu_single_env->pVM, SrcGCPhys);
2915 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
2916 return val;
2917}
2918
2919
2920/**
2921 * Read guest RAM and ROM, signed 8-bit.
2922 *
2923 * @param SrcGCPhys The source address (guest physical).
2924 */
2925int8_t remR3PhysReadS8(RTGCPHYS SrcGCPhys)
2926{
2927 int8_t val;
2928 STAM_PROFILE_ADV_START(&gStatMemRead, a);
2929 VBOX_CHECK_ADDR(SrcGCPhys);
2930 val = PGMR3PhysReadByte(cpu_single_env->pVM, SrcGCPhys);
2931 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
2932 return val;
2933}
2934
2935
2936/**
2937 * Read guest RAM and ROM, unsigned 16-bit.
2938 *
2939 * @param SrcGCPhys The source address (guest physical).
2940 */
2941uint16_t remR3PhysReadU16(RTGCPHYS SrcGCPhys)
2942{
2943 uint16_t val;
2944 STAM_PROFILE_ADV_START(&gStatMemRead, a);
2945 VBOX_CHECK_ADDR(SrcGCPhys);
2946 val = PGMR3PhysReadWord(cpu_single_env->pVM, SrcGCPhys);
2947 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
2948 return val;
2949}
2950
2951
2952/**
2953 * Read guest RAM and ROM, signed 16-bit.
2954 *
2955 * @param SrcGCPhys The source address (guest physical).
2956 */
2957int16_t remR3PhysReadS16(RTGCPHYS SrcGCPhys)
2958{
2959 uint16_t val;
2960 STAM_PROFILE_ADV_START(&gStatMemRead, a);
2961 VBOX_CHECK_ADDR(SrcGCPhys);
2962 val = PGMR3PhysReadWord(cpu_single_env->pVM, SrcGCPhys);
2963 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
2964 return val;
2965}
2966
2967
2968/**
2969 * Read guest RAM and ROM, unsigned 32-bit.
2970 *
2971 * @param SrcGCPhys The source address (guest physical).
2972 */
2973uint32_t remR3PhysReadU32(RTGCPHYS SrcGCPhys)
2974{
2975 uint32_t val;
2976 STAM_PROFILE_ADV_START(&gStatMemRead, a);
2977 VBOX_CHECK_ADDR(SrcGCPhys);
2978 val = PGMR3PhysReadDword(cpu_single_env->pVM, SrcGCPhys);
2979 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
2980 return val;
2981}
2982
2983
2984/**
2985 * Read guest RAM and ROM, signed 32-bit.
2986 *
2987 * @param SrcGCPhys The source address (guest physical).
2988 */
2989int32_t remR3PhysReadS32(RTGCPHYS SrcGCPhys)
2990{
2991 int32_t val;
2992 STAM_PROFILE_ADV_START(&gStatMemRead, a);
2993 VBOX_CHECK_ADDR(SrcGCPhys);
2994 val = PGMR3PhysReadDword(cpu_single_env->pVM, SrcGCPhys);
2995 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
2996 return val;
2997}
2998
2999
3000/**
3001 * Read guest RAM and ROM, unsigned 64-bit.
3002 *
3003 * @param SrcGCPhys The source address (guest physical).
3004 */
3005uint64_t remR3PhysReadU64(RTGCPHYS SrcGCPhys)
3006{
3007 uint64_t val;
3008 STAM_PROFILE_ADV_START(&gStatMemRead, a);
3009 VBOX_CHECK_ADDR(SrcGCPhys);
3010 val = PGMR3PhysReadDword(cpu_single_env->pVM, SrcGCPhys)
3011 | ((uint64_t)PGMR3PhysReadDword(cpu_single_env->pVM, SrcGCPhys + 4) << 32); /** @todo fix me! */
3012 STAM_PROFILE_ADV_STOP(&gStatMemRead, a);
3013 return val;
3014}
3015
3016
3017/**
3018 * Write guest RAM.
3019 *
3020 * @param DstGCPhys The destination address (guest physical).
3021 * @param pvSrc The source address.
3022 * @param cb Number of bytes to write
3023 */
3024void remR3PhysWrite(RTGCPHYS DstGCPhys, const void *pvSrc, unsigned cb)
3025{
3026 STAM_PROFILE_ADV_START(&gStatMemWrite, a);
3027 VBOX_CHECK_ADDR(DstGCPhys);
3028 PGMPhysWrite(cpu_single_env->pVM, DstGCPhys, pvSrc, cb);
3029 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
3030}
3031
3032
3033/**
3034 * Write guest RAM, unsigned 8-bit.
3035 *
3036 * @param DstGCPhys The destination address (guest physical).
3037 * @param val Value
3038 */
3039void remR3PhysWriteU8(RTGCPHYS DstGCPhys, uint8_t val)
3040{
3041 STAM_PROFILE_ADV_START(&gStatMemWrite, a);
3042 VBOX_CHECK_ADDR(DstGCPhys);
3043 PGMR3PhysWriteByte(cpu_single_env->pVM, DstGCPhys, val);
3044 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
3045}
3046
3047
3048/**
3049 * Write guest RAM, unsigned 8-bit.
3050 *
3051 * @param DstGCPhys The destination address (guest physical).
3052 * @param val Value
3053 */
3054void remR3PhysWriteU16(RTGCPHYS DstGCPhys, uint16_t val)
3055{
3056 STAM_PROFILE_ADV_START(&gStatMemWrite, a);
3057 VBOX_CHECK_ADDR(DstGCPhys);
3058 PGMR3PhysWriteWord(cpu_single_env->pVM, DstGCPhys, val);
3059 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
3060}
3061
3062
3063/**
3064 * Write guest RAM, unsigned 32-bit.
3065 *
3066 * @param DstGCPhys The destination address (guest physical).
3067 * @param val Value
3068 */
3069void remR3PhysWriteU32(RTGCPHYS DstGCPhys, uint32_t val)
3070{
3071 STAM_PROFILE_ADV_START(&gStatMemWrite, a);
3072 VBOX_CHECK_ADDR(DstGCPhys);
3073 PGMR3PhysWriteDword(cpu_single_env->pVM, DstGCPhys, val);
3074 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
3075}
3076
3077
3078/**
3079 * Write guest RAM, unsigned 64-bit.
3080 *
3081 * @param DstGCPhys The destination address (guest physical).
3082 * @param val Value
3083 */
3084void remR3PhysWriteU64(RTGCPHYS DstGCPhys, uint64_t val)
3085{
3086 STAM_PROFILE_ADV_START(&gStatMemWrite, a);
3087 VBOX_CHECK_ADDR(DstGCPhys);
3088 PGMR3PhysWriteDword(cpu_single_env->pVM, DstGCPhys, (uint32_t)val); /** @todo add U64 interface. */
3089 PGMR3PhysWriteDword(cpu_single_env->pVM, DstGCPhys + 4, val >> 32);
3090 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
3091}
3092
3093#undef LOG_GROUP
3094#define LOG_GROUP LOG_GROUP_REM_MMIO
3095
3096/** Read MMIO memory. */
3097static uint32_t remR3MMIOReadU8(void *pvVM, target_phys_addr_t GCPhys)
3098{
3099 uint32_t u32 = 0;
3100 int rc = IOMMMIORead((PVM)pvVM, GCPhys, &u32, 1);
3101 AssertMsg(rc == VINF_SUCCESS, ("rc=%Vrc\n", rc)); NOREF(rc);
3102 Log2(("remR3MMIOReadU8: GCPhys=%VGp -> %02x\n", GCPhys, u32));
3103 return u32;
3104}
3105
3106/** Read MMIO memory. */
3107static uint32_t remR3MMIOReadU16(void *pvVM, target_phys_addr_t GCPhys)
3108{
3109 uint32_t u32 = 0;
3110 int rc = IOMMMIORead((PVM)pvVM, GCPhys, &u32, 2);
3111 AssertMsg(rc == VINF_SUCCESS, ("rc=%Vrc\n", rc)); NOREF(rc);
3112 Log2(("remR3MMIOReadU16: GCPhys=%VGp -> %04x\n", GCPhys, u32));
3113 return u32;
3114}
3115
3116/** Read MMIO memory. */
3117static uint32_t remR3MMIOReadU32(void *pvVM, target_phys_addr_t GCPhys)
3118{
3119 uint32_t u32 = 0;
3120 int rc = IOMMMIORead((PVM)pvVM, GCPhys, &u32, 4);
3121 AssertMsg(rc == VINF_SUCCESS, ("rc=%Vrc\n", rc)); NOREF(rc);
3122 Log2(("remR3MMIOReadU32: GCPhys=%VGp -> %08x\n", GCPhys, u32));
3123 return u32;
3124}
3125
3126/** Write to MMIO memory. */
3127static void remR3MMIOWriteU8(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32)
3128{
3129 Log2(("remR3MMIOWriteU8: GCPhys=%VGp u32=%#x\n", GCPhys, u32));
3130 int rc = IOMMMIOWrite((PVM)pvVM, GCPhys, u32, 1);
3131 AssertMsg(rc == VINF_SUCCESS, ("rc=%Vrc\n", rc)); NOREF(rc);
3132}
3133
3134/** Write to MMIO memory. */
3135static void remR3MMIOWriteU16(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32)
3136{
3137 Log2(("remR3MMIOWriteU16: GCPhys=%VGp u32=%#x\n", GCPhys, u32));
3138 int rc = IOMMMIOWrite((PVM)pvVM, GCPhys, u32, 2);
3139 AssertMsg(rc == VINF_SUCCESS, ("rc=%Vrc\n", rc)); NOREF(rc);
3140}
3141
3142/** Write to MMIO memory. */
3143static void remR3MMIOWriteU32(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32)
3144{
3145 Log2(("remR3MMIOWriteU32: GCPhys=%VGp u32=%#x\n", GCPhys, u32));
3146 int rc = IOMMMIOWrite((PVM)pvVM, GCPhys, u32, 4);
3147 AssertMsg(rc == VINF_SUCCESS, ("rc=%Vrc\n", rc)); NOREF(rc);
3148}
3149
3150
3151#undef LOG_GROUP
3152#define LOG_GROUP LOG_GROUP_REM_HANDLER
3153
3154/* !!!WARNING!!! This is extremely hackish right now, we assume it's only for LFB access! !!!WARNING!!! */
3155
3156static uint32_t remR3HandlerReadU8(void *pvVM, target_phys_addr_t GCPhys)
3157{
3158 Log2(("remR3HandlerReadU8: GCPhys=%VGp\n", GCPhys));
3159 uint8_t u8;
3160 PGMPhysRead((PVM)pvVM, GCPhys, &u8, sizeof(u8));
3161 return u8;
3162}
3163
3164static uint32_t remR3HandlerReadU16(void *pvVM, target_phys_addr_t GCPhys)
3165{
3166 Log2(("remR3HandlerReadU16: GCPhys=%VGp\n", GCPhys));
3167 uint16_t u16;
3168 PGMPhysRead((PVM)pvVM, GCPhys, &u16, sizeof(u16));
3169 return u16;
3170}
3171
3172static uint32_t remR3HandlerReadU32(void *pvVM, target_phys_addr_t GCPhys)
3173{
3174 Log2(("remR3HandlerReadU32: GCPhys=%VGp\n", GCPhys));
3175 uint32_t u32;
3176 PGMPhysRead((PVM)pvVM, GCPhys, &u32, sizeof(u32));
3177 return u32;
3178}
3179
3180static void remR3HandlerWriteU8(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32)
3181{
3182 Log2(("remR3HandlerWriteU8: GCPhys=%VGp u32=%#x\n", GCPhys, u32));
3183 PGMPhysWrite((PVM)pvVM, GCPhys, &u32, sizeof(uint8_t));
3184}
3185
3186static void remR3HandlerWriteU16(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32)
3187{
3188 Log2(("remR3HandlerWriteU16: GCPhys=%VGp u32=%#x\n", GCPhys, u32));
3189 PGMPhysWrite((PVM)pvVM, GCPhys, &u32, sizeof(uint16_t));
3190}
3191
3192static void remR3HandlerWriteU32(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32)
3193{
3194 Log2(("remR3HandlerWriteU32: GCPhys=%VGp u32=%#x\n", GCPhys, u32));
3195 PGMPhysWrite((PVM)pvVM, GCPhys, &u32, sizeof(uint32_t));
3196}
3197
3198/* -+- disassembly -+- */
3199
3200#undef LOG_GROUP
3201#define LOG_GROUP LOG_GROUP_REM_DISAS
3202
3203
3204/**
3205 * Enables or disables singled stepped disassembly.
3206 *
3207 * @returns VBox status code.
3208 * @param pVM VM handle.
3209 * @param fEnable To enable set this flag, to disable clear it.
3210 */
3211static DECLCALLBACK(int) remR3DisasEnableStepping(PVM pVM, bool fEnable)
3212{
3213 LogFlow(("remR3DisasEnableStepping: fEnable=%d\n", fEnable));
3214 VM_ASSERT_EMT(pVM);
3215
3216 if (fEnable)
3217 pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
3218 else
3219 pVM->rem.s.Env.state &= ~CPU_EMULATE_SINGLE_STEP;
3220 return VINF_SUCCESS;
3221}
3222
3223
3224/**
3225 * Enables or disables singled stepped disassembly.
3226 *
3227 * @returns VBox status code.
3228 * @param pVM VM handle.
3229 * @param fEnable To enable set this flag, to disable clear it.
3230 */
3231REMR3DECL(int) REMR3DisasEnableStepping(PVM pVM, bool fEnable)
3232{
3233 PVMREQ pReq;
3234 int rc;
3235
3236 LogFlow(("REMR3DisasEnableStepping: fEnable=%d\n", fEnable));
3237 if (VM_IS_EMT(pVM))
3238 return remR3DisasEnableStepping(pVM, fEnable);
3239
3240 rc = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)remR3DisasEnableStepping, 2, pVM, fEnable);
3241 AssertRC(rc);
3242 if (VBOX_SUCCESS(rc))
3243 rc = pReq->iStatus;
3244 VMR3ReqFree(pReq);
3245 return rc;
3246}
3247
3248
3249#if defined(VBOX_WITH_DEBUGGER) && !(defined(RT_OS_WINDOWS) && defined(RT_ARCH_AMD64))
3250/**
3251 * External Debugger Command: .remstep [on|off|1|0]
3252 */
3253static DECLCALLBACK(int) remR3CmdDisasEnableStepping(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PVM pVM, PCDBGCVAR paArgs, unsigned cArgs, PDBGCVAR pResult)
3254{
3255 bool fEnable;
3256 int rc;
3257
3258 /* print status */
3259 if (cArgs == 0)
3260 return pCmdHlp->pfnPrintf(pCmdHlp, NULL, "DisasStepping is %s\n",
3261 pVM->rem.s.Env.state & CPU_EMULATE_SINGLE_STEP ? "enabled" : "disabled");
3262
3263 /* convert the argument and change the mode. */
3264 rc = pCmdHlp->pfnVarToBool(pCmdHlp, &paArgs[0], &fEnable);
3265 if (VBOX_FAILURE(rc))
3266 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "boolean conversion failed!\n");
3267 rc = REMR3DisasEnableStepping(pVM, fEnable);
3268 if (VBOX_FAILURE(rc))
3269 return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "REMR3DisasEnableStepping failed!\n");
3270 return rc;
3271}
3272#endif
3273
3274
3275/**
3276 * Disassembles n instructions and prints them to the log.
3277 *
3278 * @returns Success indicator.
3279 * @param env Pointer to the recompiler CPU structure.
3280 * @param f32BitCode Indicates that whether or not the code should
3281 * be disassembled as 16 or 32 bit. If -1 the CS
3282 * selector will be inspected.
3283 * @param nrInstructions Nr of instructions to disassemble
3284 * @param pszPrefix
3285 * @remark not currently used for anything but ad-hoc debugging.
3286 */
3287bool remR3DisasBlock(CPUState *env, int f32BitCode, int nrInstructions, char *pszPrefix)
3288{
3289 int i;
3290
3291 /*
3292 * Determin 16/32 bit mode.
3293 */
3294 if (f32BitCode == -1)
3295 f32BitCode = !!(env->segs[R_CS].flags & X86_DESC_DB); /** @todo is this right?!!?!?!?!? */
3296
3297 /*
3298 * Convert cs:eip to host context address.
3299 * We don't care to much about cross page correctness presently.
3300 */
3301 RTGCPTR GCPtrPC = env->segs[R_CS].base + env->eip;
3302 void *pvPC;
3303 if (f32BitCode && (env->cr[0] & (X86_CR0_PE | X86_CR0_PG)) == (X86_CR0_PE | X86_CR0_PG))
3304 {
3305 Assert(PGMGetGuestMode(env->pVM) < PGMMODE_AMD64);
3306
3307 /* convert eip to physical address. */
3308 int rc = PGMPhysGCPtr2HCPtrByGstCR3(env->pVM,
3309 GCPtrPC,
3310 env->cr[3],
3311 env->cr[4] & (X86_CR4_PSE | X86_CR4_PAE), /** @todo add longmode flag */
3312 &pvPC);
3313 if (VBOX_FAILURE(rc))
3314 {
3315 if (!PATMIsPatchGCAddr(env->pVM, GCPtrPC))
3316 return false;
3317 pvPC = (char *)PATMR3QueryPatchMemHC(env->pVM, NULL)
3318 + (GCPtrPC - PATMR3QueryPatchMemGC(env->pVM, NULL));
3319 }
3320 }
3321 else
3322 {
3323 /* physical address */
3324 int rc = PGMPhysGCPhys2HCPtr(env->pVM, (RTGCPHYS)GCPtrPC, nrInstructions * 16, &pvPC);
3325 if (VBOX_FAILURE(rc))
3326 return false;
3327 }
3328
3329 /*
3330 * Disassemble.
3331 */
3332 RTINTPTR off = env->eip - (RTINTPTR)pvPC;
3333 DISCPUSTATE Cpu;
3334 Cpu.mode = f32BitCode ? CPUMODE_32BIT : CPUMODE_16BIT;
3335 Cpu.pfnReadBytes = NULL; /** @todo make cs:eip reader for the disassembler. */
3336 //Cpu.dwUserData[0] = (uintptr_t)pVM;
3337 //Cpu.dwUserData[1] = (uintptr_t)pvPC;
3338 //Cpu.dwUserData[2] = GCPtrPC;
3339
3340 for (i=0;i<nrInstructions;i++)
3341 {
3342 char szOutput[256];
3343 uint32_t cbOp;
3344 if (RT_FAILURE(DISInstr(&Cpu, (uintptr_t)pvPC, off, &cbOp, &szOutput[0])))
3345 return false;
3346 if (pszPrefix)
3347 Log(("%s: %s", pszPrefix, szOutput));
3348 else
3349 Log(("%s", szOutput));
3350
3351 pvPC += cbOp;
3352 }
3353 return true;
3354}
3355
3356
3357/** @todo need to test the new code, using the old code in the mean while. */
3358#define USE_OLD_DUMP_AND_DISASSEMBLY
3359
3360/**
3361 * Disassembles one instruction and prints it to the log.
3362 *
3363 * @returns Success indicator.
3364 * @param env Pointer to the recompiler CPU structure.
3365 * @param f32BitCode Indicates that whether or not the code should
3366 * be disassembled as 16 or 32 bit. If -1 the CS
3367 * selector will be inspected.
3368 * @param pszPrefix
3369 */
3370bool remR3DisasInstr(CPUState *env, int f32BitCode, char *pszPrefix)
3371{
3372#ifdef USE_OLD_DUMP_AND_DISASSEMBLY
3373 PVM pVM = env->pVM;
3374
3375 /*
3376 * Determin 16/32 bit mode.
3377 */
3378 if (f32BitCode == -1)
3379 f32BitCode = !!(env->segs[R_CS].flags & X86_DESC_DB); /** @todo is this right?!!?!?!?!? */
3380
3381 /*
3382 * Log registers
3383 */
3384 if (LogIs2Enabled())
3385 {
3386 remR3StateUpdate(pVM);
3387 DBGFR3InfoLog(pVM, "cpumguest", pszPrefix);
3388 }
3389
3390 /*
3391 * Convert cs:eip to host context address.
3392 * We don't care to much about cross page correctness presently.
3393 */
3394 RTGCPTR GCPtrPC = env->segs[R_CS].base + env->eip;
3395 void *pvPC;
3396 if ((env->cr[0] & (X86_CR0_PE | X86_CR0_PG)) == (X86_CR0_PE | X86_CR0_PG))
3397 {
3398 /* convert eip to physical address. */
3399 int rc = PGMPhysGCPtr2HCPtrByGstCR3(pVM,
3400 GCPtrPC,
3401 env->cr[3],
3402 env->cr[4] & (X86_CR4_PSE | X86_CR4_PAE),
3403 &pvPC);
3404 if (VBOX_FAILURE(rc))
3405 {
3406 if (!PATMIsPatchGCAddr(pVM, GCPtrPC))
3407 return false;
3408 pvPC = (char *)PATMR3QueryPatchMemHC(pVM, NULL)
3409 + (GCPtrPC - PATMR3QueryPatchMemGC(pVM, NULL));
3410 }
3411 }
3412 else
3413 {
3414
3415 /* physical address */
3416 int rc = PGMPhysGCPhys2HCPtr(pVM, (RTGCPHYS)GCPtrPC, 16, &pvPC);
3417 if (VBOX_FAILURE(rc))
3418 return false;
3419 }
3420
3421 /*
3422 * Disassemble.
3423 */
3424 RTINTPTR off = env->eip - (RTINTPTR)pvPC;
3425 DISCPUSTATE Cpu;
3426 Cpu.mode = f32BitCode ? CPUMODE_32BIT : CPUMODE_16BIT;
3427 Cpu.pfnReadBytes = NULL; /** @todo make cs:eip reader for the disassembler. */
3428 //Cpu.dwUserData[0] = (uintptr_t)pVM;
3429 //Cpu.dwUserData[1] = (uintptr_t)pvPC;
3430 //Cpu.dwUserData[2] = GCPtrPC;
3431 char szOutput[256];
3432 uint32_t cbOp;
3433 if (RT_FAILURE(DISInstr(&Cpu, (uintptr_t)pvPC, off, &cbOp, &szOutput[0])))
3434 return false;
3435
3436 if (!f32BitCode)
3437 {
3438 if (pszPrefix)
3439 Log(("%s: %04X:%s", pszPrefix, env->segs[R_CS].selector, szOutput));
3440 else
3441 Log(("%04X:%s", env->segs[R_CS].selector, szOutput));
3442 }
3443 else
3444 {
3445 if (pszPrefix)
3446 Log(("%s: %s", pszPrefix, szOutput));
3447 else
3448 Log(("%s", szOutput));
3449 }
3450 return true;
3451
3452#else /* !USE_OLD_DUMP_AND_DISASSEMBLY */
3453 PVM pVM = env->pVM;
3454 const bool fLog = LogIsEnabled();
3455 const bool fLog2 = LogIs2Enabled();
3456 int rc = VINF_SUCCESS;
3457
3458 /*
3459 * Don't bother if there ain't any log output to do.
3460 */
3461 if (!fLog && !fLog2)
3462 return true;
3463
3464 /*
3465 * Update the state so DBGF reads the correct register values.
3466 */
3467 remR3StateUpdate(pVM);
3468
3469 /*
3470 * Log registers if requested.
3471 */
3472 if (!fLog2)
3473 DBGFR3InfoLog(pVM, "cpumguest", pszPrefix);
3474
3475 /*
3476 * Disassemble to log.
3477 */
3478 if (fLog)
3479 rc = DBGFR3DisasInstrCurrentLogInternal(pVM, pszPrefix);
3480
3481 return VBOX_SUCCESS(rc);
3482#endif
3483}
3484
3485
3486/**
3487 * Disassemble recompiled code.
3488 *
3489 * @param phFileIgnored Ignored, logfile usually.
3490 * @param pvCode Pointer to the code block.
3491 * @param cb Size of the code block.
3492 */
3493void disas(FILE *phFileIgnored, void *pvCode, unsigned long cb)
3494{
3495 if (LogIs2Enabled())
3496 {
3497 unsigned off = 0;
3498 char szOutput[256];
3499 DISCPUSTATE Cpu;
3500
3501 memset(&Cpu, 0, sizeof(Cpu));
3502#ifdef RT_ARCH_X86
3503 Cpu.mode = CPUMODE_32BIT;
3504#else
3505 Cpu.mode = CPUMODE_64BIT;
3506#endif
3507
3508 RTLogPrintf("Recompiled Code: %p %#lx (%ld) bytes\n", pvCode, cb, cb);
3509 while (off < cb)
3510 {
3511 uint32_t cbInstr;
3512 if (RT_SUCCESS(DISInstr(&Cpu, (uintptr_t)pvCode + off, 0, &cbInstr, szOutput)))
3513 RTLogPrintf("%s", szOutput);
3514 else
3515 {
3516 RTLogPrintf("disas error\n");
3517 cbInstr = 1;
3518#ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporing 64-bit code. */
3519 break;
3520#endif
3521 }
3522 off += cbInstr;
3523 }
3524 }
3525 NOREF(phFileIgnored);
3526}
3527
3528
3529/**
3530 * Disassemble guest code.
3531 *
3532 * @param phFileIgnored Ignored, logfile usually.
3533 * @param uCode The guest address of the code to disassemble. (flat?)
3534 * @param cb Number of bytes to disassemble.
3535 * @param fFlags Flags, probably something which tells if this is 16, 32 or 64 bit code.
3536 */
3537void target_disas(FILE *phFileIgnored, target_ulong uCode, target_ulong cb, int fFlags)
3538{
3539 if (LogIs2Enabled())
3540 {
3541 PVM pVM = cpu_single_env->pVM;
3542
3543 /*
3544 * Update the state so DBGF reads the correct register values (flags).
3545 */
3546 remR3StateUpdate(pVM);
3547
3548 /*
3549 * Do the disassembling.
3550 */
3551 RTLogPrintf("Guest Code: PC=%VGp #VGp (%VGp) bytes fFlags=%d\n", uCode, cb, cb, fFlags);
3552 RTSEL cs = cpu_single_env->segs[R_CS].selector;
3553 RTGCUINTPTR eip = uCode - cpu_single_env->segs[R_CS].base;
3554 for (;;)
3555 {
3556 char szBuf[256];
3557 uint32_t cbInstr;
3558 int rc = DBGFR3DisasInstrEx(pVM,
3559 cs,
3560 eip,
3561 0,
3562 szBuf, sizeof(szBuf),
3563 &cbInstr);
3564 if (VBOX_SUCCESS(rc))
3565 RTLogPrintf("%VGp %s\n", uCode, szBuf);
3566 else
3567 {
3568 RTLogPrintf("%VGp %04x:%VGp: %s\n", uCode, cs, eip, szBuf);
3569 cbInstr = 1;
3570 }
3571
3572 /* next */
3573 if (cb <= cbInstr)
3574 break;
3575 cb -= cbInstr;
3576 uCode += cbInstr;
3577 eip += cbInstr;
3578 }
3579 }
3580 NOREF(phFileIgnored);
3581}
3582
3583
3584/**
3585 * Looks up a guest symbol.
3586 *
3587 * @returns Pointer to symbol name. This is a static buffer.
3588 * @param orig_addr The address in question.
3589 */
3590const char *lookup_symbol(target_ulong orig_addr)
3591{
3592 RTGCINTPTR off = 0;
3593 DBGFSYMBOL Sym;
3594 PVM pVM = cpu_single_env->pVM;
3595 int rc = DBGFR3SymbolByAddr(pVM, orig_addr, &off, &Sym);
3596 if (VBOX_SUCCESS(rc))
3597 {
3598 static char szSym[sizeof(Sym.szName) + 48];
3599 if (!off)
3600 RTStrPrintf(szSym, sizeof(szSym), "%s\n", Sym.szName);
3601 else if (off > 0)
3602 RTStrPrintf(szSym, sizeof(szSym), "%s+%x\n", Sym.szName, off);
3603 else
3604 RTStrPrintf(szSym, sizeof(szSym), "%s-%x\n", Sym.szName, -off);
3605 return szSym;
3606 }
3607 return "<N/A>";
3608}
3609
3610
3611#undef LOG_GROUP
3612#define LOG_GROUP LOG_GROUP_REM
3613
3614
3615/* -+- FF notifications -+- */
3616
3617
3618/**
3619 * Notification about a pending interrupt.
3620 *
3621 * @param pVM VM Handle.
3622 * @param u8Interrupt Interrupt
3623 * @thread The emulation thread.
3624 */
3625REMR3DECL(void) REMR3NotifyPendingInterrupt(PVM pVM, uint8_t u8Interrupt)
3626{
3627 Assert(pVM->rem.s.u32PendingInterrupt == REM_NO_PENDING_IRQ);
3628 pVM->rem.s.u32PendingInterrupt = u8Interrupt;
3629}
3630
3631/**
3632 * Notification about a pending interrupt.
3633 *
3634 * @returns Pending interrupt or REM_NO_PENDING_IRQ
3635 * @param pVM VM Handle.
3636 * @thread The emulation thread.
3637 */
3638REMR3DECL(uint32_t) REMR3QueryPendingInterrupt(PVM pVM)
3639{
3640 return pVM->rem.s.u32PendingInterrupt;
3641}
3642
3643/**
3644 * Notification about the interrupt FF being set.
3645 *
3646 * @param pVM VM Handle.
3647 * @thread The emulation thread.
3648 */
3649REMR3DECL(void) REMR3NotifyInterruptSet(PVM pVM)
3650{
3651 LogFlow(("REMR3NotifyInterruptSet: fInRem=%d interrupts %s\n", pVM->rem.s.fInREM,
3652 (pVM->rem.s.Env.eflags & IF_MASK) && !(pVM->rem.s.Env.hflags & HF_INHIBIT_IRQ_MASK) ? "enabled" : "disabled"));
3653 if (pVM->rem.s.fInREM)
3654 {
3655 if (VM_IS_EMT(pVM))
3656 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_HARD);
3657 else
3658 ASMAtomicOrS32(&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_HARD);
3659 }
3660}
3661
3662
3663/**
3664 * Notification about the interrupt FF being set.
3665 *
3666 * @param pVM VM Handle.
3667 * @thread The emulation thread.
3668 */
3669REMR3DECL(void) REMR3NotifyInterruptClear(PVM pVM)
3670{
3671 LogFlow(("REMR3NotifyInterruptClear:\n"));
3672 VM_ASSERT_EMT(pVM);
3673 if (pVM->rem.s.fInREM)
3674 cpu_reset_interrupt(cpu_single_env, CPU_INTERRUPT_HARD);
3675}
3676
3677
3678/**
3679 * Notification about pending timer(s).
3680 *
3681 * @param pVM VM Handle.
3682 * @thread Any.
3683 */
3684REMR3DECL(void) REMR3NotifyTimerPending(PVM pVM)
3685{
3686#ifndef DEBUG_bird
3687 LogFlow(("REMR3NotifyTimerPending: fInRem=%d\n", pVM->rem.s.fInREM));
3688#endif
3689 if (pVM->rem.s.fInREM)
3690 {
3691 if (VM_IS_EMT(pVM))
3692 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3693 else
3694 ASMAtomicOrS32(&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_TIMER);
3695 }
3696}
3697
3698
3699/**
3700 * Notification about pending DMA transfers.
3701 *
3702 * @param pVM VM Handle.
3703 * @thread Any.
3704 */
3705REMR3DECL(void) REMR3NotifyDmaPending(PVM pVM)
3706{
3707 LogFlow(("REMR3NotifyDmaPending: fInRem=%d\n", pVM->rem.s.fInREM));
3708 if (pVM->rem.s.fInREM)
3709 {
3710 if (VM_IS_EMT(pVM))
3711 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3712 else
3713 ASMAtomicOrS32(&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_DMA);
3714 }
3715}
3716
3717
3718/**
3719 * Notification about pending timer(s).
3720 *
3721 * @param pVM VM Handle.
3722 * @thread Any.
3723 */
3724REMR3DECL(void) REMR3NotifyQueuePending(PVM pVM)
3725{
3726 LogFlow(("REMR3NotifyQueuePending: fInRem=%d\n", pVM->rem.s.fInREM));
3727 if (pVM->rem.s.fInREM)
3728 {
3729 if (VM_IS_EMT(pVM))
3730 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3731 else
3732 ASMAtomicOrS32(&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_EXIT);
3733 }
3734}
3735
3736
3737/**
3738 * Notification about pending FF set by an external thread.
3739 *
3740 * @param pVM VM handle.
3741 * @thread Any.
3742 */
3743REMR3DECL(void) REMR3NotifyFF(PVM pVM)
3744{
3745 LogFlow(("REMR3NotifyFF: fInRem=%d\n", pVM->rem.s.fInREM));
3746 if (pVM->rem.s.fInREM)
3747 {
3748 if (VM_IS_EMT(pVM))
3749 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3750 else
3751 ASMAtomicOrS32(&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_EXIT);
3752 }
3753}
3754
3755
3756#ifdef VBOX_WITH_STATISTICS
3757void remR3ProfileStart(int statcode)
3758{
3759 STAMPROFILEADV *pStat;
3760 switch(statcode)
3761 {
3762 case STATS_EMULATE_SINGLE_INSTR:
3763 pStat = &gStatExecuteSingleInstr;
3764 break;
3765 case STATS_QEMU_COMPILATION:
3766 pStat = &gStatCompilationQEmu;
3767 break;
3768 case STATS_QEMU_RUN_EMULATED_CODE:
3769 pStat = &gStatRunCodeQEmu;
3770 break;
3771 case STATS_QEMU_TOTAL:
3772 pStat = &gStatTotalTimeQEmu;
3773 break;
3774 case STATS_QEMU_RUN_TIMERS:
3775 pStat = &gStatTimers;
3776 break;
3777 case STATS_TLB_LOOKUP:
3778 pStat= &gStatTBLookup;
3779 break;
3780 case STATS_IRQ_HANDLING:
3781 pStat= &gStatIRQ;
3782 break;
3783 case STATS_RAW_CHECK:
3784 pStat = &gStatRawCheck;
3785 break;
3786
3787 default:
3788 AssertMsgFailed(("unknown stat %d\n", statcode));
3789 return;
3790 }
3791 STAM_PROFILE_ADV_START(pStat, a);
3792}
3793
3794
3795void remR3ProfileStop(int statcode)
3796{
3797 STAMPROFILEADV *pStat;
3798 switch(statcode)
3799 {
3800 case STATS_EMULATE_SINGLE_INSTR:
3801 pStat = &gStatExecuteSingleInstr;
3802 break;
3803 case STATS_QEMU_COMPILATION:
3804 pStat = &gStatCompilationQEmu;
3805 break;
3806 case STATS_QEMU_RUN_EMULATED_CODE:
3807 pStat = &gStatRunCodeQEmu;
3808 break;
3809 case STATS_QEMU_TOTAL:
3810 pStat = &gStatTotalTimeQEmu;
3811 break;
3812 case STATS_QEMU_RUN_TIMERS:
3813 pStat = &gStatTimers;
3814 break;
3815 case STATS_TLB_LOOKUP:
3816 pStat= &gStatTBLookup;
3817 break;
3818 case STATS_IRQ_HANDLING:
3819 pStat= &gStatIRQ;
3820 break;
3821 case STATS_RAW_CHECK:
3822 pStat = &gStatRawCheck;
3823 break;
3824 default:
3825 AssertMsgFailed(("unknown stat %d\n", statcode));
3826 return;
3827 }
3828 STAM_PROFILE_ADV_STOP(pStat, a);
3829}
3830#endif
3831
3832/**
3833 * Raise an RC, force rem exit.
3834 *
3835 * @param pVM VM handle.
3836 * @param rc The rc.
3837 */
3838void remR3RaiseRC(PVM pVM, int rc)
3839{
3840 Log(("remR3RaiseRC: rc=%Vrc\n", rc));
3841 Assert(pVM->rem.s.fInREM);
3842 VM_ASSERT_EMT(pVM);
3843 pVM->rem.s.rc = rc;
3844 cpu_interrupt(&pVM->rem.s.Env, CPU_INTERRUPT_RC);
3845}
3846
3847
3848/* -+- timers -+- */
3849
3850uint64_t cpu_get_tsc(CPUX86State *env)
3851{
3852 STAM_COUNTER_INC(&gStatCpuGetTSC);
3853 return TMCpuTickGet(env->pVM);
3854}
3855
3856
3857/* -+- interrupts -+- */
3858
3859void cpu_set_ferr(CPUX86State *env)
3860{
3861 int rc = PDMIsaSetIrq(env->pVM, 13, 1);
3862 LogFlow(("cpu_set_ferr: rc=%d\n", rc)); NOREF(rc);
3863}
3864
3865int cpu_get_pic_interrupt(CPUState *env)
3866{
3867 uint8_t u8Interrupt;
3868 int rc;
3869
3870 /* When we fail to forward interrupts directly in raw mode, we fall back to the recompiler.
3871 * In that case we can't call PDMGetInterrupt anymore, because it has already cleared the interrupt
3872 * with the (a)pic.
3873 */
3874 /** @note We assume we will go directly to the recompiler to handle the pending interrupt! */
3875 /** @todo r=bird: In the long run we should just do the interrupt handling in EM/CPUM/TRPM/somewhere and
3876 * if we cannot execute the interrupt handler in raw-mode just reschedule to REM. Once that is done we
3877 * remove this kludge. */
3878 if (env->pVM->rem.s.u32PendingInterrupt != REM_NO_PENDING_IRQ)
3879 {
3880 rc = VINF_SUCCESS;
3881 Assert(env->pVM->rem.s.u32PendingInterrupt >= 0 && env->pVM->rem.s.u32PendingInterrupt <= 255);
3882 u8Interrupt = env->pVM->rem.s.u32PendingInterrupt;
3883 env->pVM->rem.s.u32PendingInterrupt = REM_NO_PENDING_IRQ;
3884 }
3885 else
3886 rc = PDMGetInterrupt(env->pVM, &u8Interrupt);
3887
3888 LogFlow(("cpu_get_pic_interrupt: u8Interrupt=%d rc=%Vrc\n", u8Interrupt, rc));
3889 if (VBOX_SUCCESS(rc))
3890 {
3891 if (VM_FF_ISPENDING(env->pVM, VM_FF_INTERRUPT_APIC | VM_FF_INTERRUPT_PIC))
3892 env->interrupt_request |= CPU_INTERRUPT_HARD;
3893 return u8Interrupt;
3894 }
3895 return -1;
3896}
3897
3898
3899/* -+- local apic -+- */
3900
3901void cpu_set_apic_base(CPUX86State *env, uint64_t val)
3902{
3903 int rc = PDMApicSetBase(env->pVM, val);
3904 LogFlow(("cpu_set_apic_base: val=%#llx rc=%Vrc\n", val, rc)); NOREF(rc);
3905}
3906
3907uint64_t cpu_get_apic_base(CPUX86State *env)
3908{
3909 uint64_t u64;
3910 int rc = PDMApicGetBase(env->pVM, &u64);
3911 if (VBOX_SUCCESS(rc))
3912 {
3913 LogFlow(("cpu_get_apic_base: returns %#llx \n", u64));
3914 return u64;
3915 }
3916 LogFlow(("cpu_get_apic_base: returns 0 (rc=%Vrc)\n", rc));
3917 return 0;
3918}
3919
3920void cpu_set_apic_tpr(CPUX86State *env, uint8_t val)
3921{
3922 int rc = PDMApicSetTPR(env->pVM, val);
3923 LogFlow(("cpu_set_apic_tpr: val=%#x rc=%Vrc\n", val, rc)); NOREF(rc);
3924}
3925
3926uint8_t cpu_get_apic_tpr(CPUX86State *env)
3927{
3928 uint8_t u8;
3929 int rc = PDMApicGetTPR(env->pVM, &u8);
3930 if (VBOX_SUCCESS(rc))
3931 {
3932 LogFlow(("cpu_get_apic_tpr: returns %#x\n", u8));
3933 return u8;
3934 }
3935 LogFlow(("cpu_get_apic_tpr: returns 0 (rc=%Vrc)\n", rc));
3936 return 0;
3937}
3938
3939
3940/* -+- I/O Ports -+- */
3941
3942#undef LOG_GROUP
3943#define LOG_GROUP LOG_GROUP_REM_IOPORT
3944
3945void cpu_outb(CPUState *env, int addr, int val)
3946{
3947 if (addr != 0x80 && addr != 0x70 && addr != 0x61)
3948 Log2(("cpu_outb: addr=%#06x val=%#x\n", addr, val));
3949
3950 int rc = IOMIOPortWrite(env->pVM, (RTIOPORT)addr, val, 1);
3951 if (RT_LIKELY(rc == VINF_SUCCESS))
3952 return;
3953 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
3954 {
3955 Log(("cpu_outb: addr=%#06x val=%#x -> %Vrc\n", addr, val, rc));
3956 remR3RaiseRC(env->pVM, rc);
3957 return;
3958 }
3959 remAbort(rc, __FUNCTION__);
3960}
3961
3962void cpu_outw(CPUState *env, int addr, int val)
3963{
3964 //Log2(("cpu_outw: addr=%#06x val=%#x\n", addr, val));
3965 int rc = IOMIOPortWrite(env->pVM, (RTIOPORT)addr, val, 2);
3966 if (RT_LIKELY(rc == VINF_SUCCESS))
3967 return;
3968 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
3969 {
3970 Log(("cpu_outw: addr=%#06x val=%#x -> %Vrc\n", addr, val, rc));
3971 remR3RaiseRC(env->pVM, rc);
3972 return;
3973 }
3974 remAbort(rc, __FUNCTION__);
3975}
3976
3977void cpu_outl(CPUState *env, int addr, int val)
3978{
3979 Log2(("cpu_outl: addr=%#06x val=%#x\n", addr, val));
3980 int rc = IOMIOPortWrite(env->pVM, (RTIOPORT)addr, val, 4);
3981 if (RT_LIKELY(rc == VINF_SUCCESS))
3982 return;
3983 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
3984 {
3985 Log(("cpu_outl: addr=%#06x val=%#x -> %Vrc\n", addr, val, rc));
3986 remR3RaiseRC(env->pVM, rc);
3987 return;
3988 }
3989 remAbort(rc, __FUNCTION__);
3990}
3991
3992int cpu_inb(CPUState *env, int addr)
3993{
3994 uint32_t u32 = 0;
3995 int rc = IOMIOPortRead(env->pVM, (RTIOPORT)addr, &u32, 1);
3996 if (RT_LIKELY(rc == VINF_SUCCESS))
3997 {
3998 if (/*addr != 0x61 && */addr != 0x71)
3999 Log2(("cpu_inb: addr=%#06x -> %#x\n", addr, u32));
4000 return (int)u32;
4001 }
4002 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
4003 {
4004 Log(("cpu_inb: addr=%#06x -> %#x rc=%Vrc\n", addr, u32, rc));
4005 remR3RaiseRC(env->pVM, rc);
4006 return (int)u32;
4007 }
4008 remAbort(rc, __FUNCTION__);
4009 return 0xff;
4010}
4011
4012int cpu_inw(CPUState *env, int addr)
4013{
4014 uint32_t u32 = 0;
4015 int rc = IOMIOPortRead(env->pVM, (RTIOPORT)addr, &u32, 2);
4016 if (RT_LIKELY(rc == VINF_SUCCESS))
4017 {
4018 Log2(("cpu_inw: addr=%#06x -> %#x\n", addr, u32));
4019 return (int)u32;
4020 }
4021 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
4022 {
4023 Log(("cpu_inw: addr=%#06x -> %#x rc=%Vrc\n", addr, u32, rc));
4024 remR3RaiseRC(env->pVM, rc);
4025 return (int)u32;
4026 }
4027 remAbort(rc, __FUNCTION__);
4028 return 0xffff;
4029}
4030
4031int cpu_inl(CPUState *env, int addr)
4032{
4033 uint32_t u32 = 0;
4034 int rc = IOMIOPortRead(env->pVM, (RTIOPORT)addr, &u32, 4);
4035 if (RT_LIKELY(rc == VINF_SUCCESS))
4036 {
4037//if (addr==0x01f0 && u32 == 0x6b6d)
4038// loglevel = ~0;
4039 Log2(("cpu_inl: addr=%#06x -> %#x\n", addr, u32));
4040 return (int)u32;
4041 }
4042 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
4043 {
4044 Log(("cpu_inl: addr=%#06x -> %#x rc=%Vrc\n", addr, u32, rc));
4045 remR3RaiseRC(env->pVM, rc);
4046 return (int)u32;
4047 }
4048 remAbort(rc, __FUNCTION__);
4049 return 0xffffffff;
4050}
4051
4052#undef LOG_GROUP
4053#define LOG_GROUP LOG_GROUP_REM
4054
4055
4056/* -+- helpers and misc other interfaces -+- */
4057
4058/**
4059 * Perform the CPUID instruction.
4060 *
4061 * ASMCpuId cannot be invoked from some source files where this is used because of global
4062 * register allocations.
4063 *
4064 * @param env Pointer to the recompiler CPU structure.
4065 * @param uOperator CPUID operation (eax).
4066 * @param pvEAX Where to store eax.
4067 * @param pvEBX Where to store ebx.
4068 * @param pvECX Where to store ecx.
4069 * @param pvEDX Where to store edx.
4070 */
4071void remR3CpuId(CPUState *env, unsigned uOperator, void *pvEAX, void *pvEBX, void *pvECX, void *pvEDX)
4072{
4073 CPUMGetGuestCpuId(env->pVM, uOperator, (uint32_t *)pvEAX, (uint32_t *)pvEBX, (uint32_t *)pvECX, (uint32_t *)pvEDX);
4074}
4075
4076
4077#if 0 /* not used */
4078/**
4079 * Interface for qemu hardware to report back fatal errors.
4080 */
4081void hw_error(const char *pszFormat, ...)
4082{
4083 /*
4084 * Bitch about it.
4085 */
4086 /** @todo Add support for nested arg lists in the LogPrintfV routine! I've code for
4087 * this in my Odin32 tree at home! */
4088 va_list args;
4089 va_start(args, pszFormat);
4090 RTLogPrintf("fatal error in virtual hardware:");
4091 RTLogPrintfV(pszFormat, args);
4092 va_end(args);
4093 AssertReleaseMsgFailed(("fatal error in virtual hardware: %s\n", pszFormat));
4094
4095 /*
4096 * If we're in REM context we'll sync back the state before 'jumping' to
4097 * the EMs failure handling.
4098 */
4099 PVM pVM = cpu_single_env->pVM;
4100 if (pVM->rem.s.fInREM)
4101 REMR3StateBack(pVM);
4102 EMR3FatalError(pVM, VERR_REM_VIRTUAL_HARDWARE_ERROR);
4103 AssertMsgFailed(("EMR3FatalError returned!\n"));
4104}
4105#endif
4106
4107/**
4108 * Interface for the qemu cpu to report unhandled situation
4109 * raising a fatal VM error.
4110 */
4111void cpu_abort(CPUState *env, const char *pszFormat, ...)
4112{
4113 /*
4114 * Bitch about it.
4115 */
4116 RTLogFlags(NULL, "nodisabled nobuffered");
4117 va_list args;
4118 va_start(args, pszFormat);
4119 RTLogPrintf("fatal error in recompiler cpu: %N\n", pszFormat, &args);
4120 va_end(args);
4121 va_start(args, pszFormat);
4122 AssertReleaseMsgFailed(("fatal error in recompiler cpu: %N\n", pszFormat, &args));
4123 va_end(args);
4124
4125 /*
4126 * If we're in REM context we'll sync back the state before 'jumping' to
4127 * the EMs failure handling.
4128 */
4129 PVM pVM = cpu_single_env->pVM;
4130 if (pVM->rem.s.fInREM)
4131 REMR3StateBack(pVM);
4132 EMR3FatalError(pVM, VERR_REM_VIRTUAL_CPU_ERROR);
4133 AssertMsgFailed(("EMR3FatalError returned!\n"));
4134}
4135
4136
4137/**
4138 * Aborts the VM.
4139 *
4140 * @param rc VBox error code.
4141 * @param pszTip Hint about why/when this happend.
4142 */
4143static void remAbort(int rc, const char *pszTip)
4144{
4145 /*
4146 * Bitch about it.
4147 */
4148 RTLogPrintf("internal REM fatal error: rc=%Vrc %s\n", rc, pszTip);
4149 AssertReleaseMsgFailed(("internal REM fatal error: rc=%Vrc %s\n", rc, pszTip));
4150
4151 /*
4152 * Jump back to where we entered the recompiler.
4153 */
4154 PVM pVM = cpu_single_env->pVM;
4155 if (pVM->rem.s.fInREM)
4156 REMR3StateBack(pVM);
4157 EMR3FatalError(pVM, rc);
4158 AssertMsgFailed(("EMR3FatalError returned!\n"));
4159}
4160
4161
4162/**
4163 * Dumps a linux system call.
4164 * @param pVM VM handle.
4165 */
4166void remR3DumpLnxSyscall(PVM pVM)
4167{
4168 static const char *apsz[] =
4169 {
4170 "sys_restart_syscall", /* 0 - old "setup()" system call, used for restarting */
4171 "sys_exit",
4172 "sys_fork",
4173 "sys_read",
4174 "sys_write",
4175 "sys_open", /* 5 */
4176 "sys_close",
4177 "sys_waitpid",
4178 "sys_creat",
4179 "sys_link",
4180 "sys_unlink", /* 10 */
4181 "sys_execve",
4182 "sys_chdir",
4183 "sys_time",
4184 "sys_mknod",
4185 "sys_chmod", /* 15 */
4186 "sys_lchown16",
4187 "sys_ni_syscall", /* old break syscall holder */
4188 "sys_stat",
4189 "sys_lseek",
4190 "sys_getpid", /* 20 */
4191 "sys_mount",
4192 "sys_oldumount",
4193 "sys_setuid16",
4194 "sys_getuid16",
4195 "sys_stime", /* 25 */
4196 "sys_ptrace",
4197 "sys_alarm",
4198 "sys_fstat",
4199 "sys_pause",
4200 "sys_utime", /* 30 */
4201 "sys_ni_syscall", /* old stty syscall holder */
4202 "sys_ni_syscall", /* old gtty syscall holder */
4203 "sys_access",
4204 "sys_nice",
4205 "sys_ni_syscall", /* 35 - old ftime syscall holder */
4206 "sys_sync",
4207 "sys_kill",
4208 "sys_rename",
4209 "sys_mkdir",
4210 "sys_rmdir", /* 40 */
4211 "sys_dup",
4212 "sys_pipe",
4213 "sys_times",
4214 "sys_ni_syscall", /* old prof syscall holder */
4215 "sys_brk", /* 45 */
4216 "sys_setgid16",
4217 "sys_getgid16",
4218 "sys_signal",
4219 "sys_geteuid16",
4220 "sys_getegid16", /* 50 */
4221 "sys_acct",
4222 "sys_umount", /* recycled never used phys() */
4223 "sys_ni_syscall", /* old lock syscall holder */
4224 "sys_ioctl",
4225 "sys_fcntl", /* 55 */
4226 "sys_ni_syscall", /* old mpx syscall holder */
4227 "sys_setpgid",
4228 "sys_ni_syscall", /* old ulimit syscall holder */
4229 "sys_olduname",
4230 "sys_umask", /* 60 */
4231 "sys_chroot",
4232 "sys_ustat",
4233 "sys_dup2",
4234 "sys_getppid",
4235 "sys_getpgrp", /* 65 */
4236 "sys_setsid",
4237 "sys_sigaction",
4238 "sys_sgetmask",
4239 "sys_ssetmask",
4240 "sys_setreuid16", /* 70 */
4241 "sys_setregid16",
4242 "sys_sigsuspend",
4243 "sys_sigpending",
4244 "sys_sethostname",
4245 "sys_setrlimit", /* 75 */
4246 "sys_old_getrlimit",
4247 "sys_getrusage",
4248 "sys_gettimeofday",
4249 "sys_settimeofday",
4250 "sys_getgroups16", /* 80 */
4251 "sys_setgroups16",
4252 "old_select",
4253 "sys_symlink",
4254 "sys_lstat",
4255 "sys_readlink", /* 85 */
4256 "sys_uselib",
4257 "sys_swapon",
4258 "sys_reboot",
4259 "old_readdir",
4260 "old_mmap", /* 90 */
4261 "sys_munmap",
4262 "sys_truncate",
4263 "sys_ftruncate",
4264 "sys_fchmod",
4265 "sys_fchown16", /* 95 */
4266 "sys_getpriority",
4267 "sys_setpriority",
4268 "sys_ni_syscall", /* old profil syscall holder */
4269 "sys_statfs",
4270 "sys_fstatfs", /* 100 */
4271 "sys_ioperm",
4272 "sys_socketcall",
4273 "sys_syslog",
4274 "sys_setitimer",
4275 "sys_getitimer", /* 105 */
4276 "sys_newstat",
4277 "sys_newlstat",
4278 "sys_newfstat",
4279 "sys_uname",
4280 "sys_iopl", /* 110 */
4281 "sys_vhangup",
4282 "sys_ni_syscall", /* old "idle" system call */
4283 "sys_vm86old",
4284 "sys_wait4",
4285 "sys_swapoff", /* 115 */
4286 "sys_sysinfo",
4287 "sys_ipc",
4288 "sys_fsync",
4289 "sys_sigreturn",
4290 "sys_clone", /* 120 */
4291 "sys_setdomainname",
4292 "sys_newuname",
4293 "sys_modify_ldt",
4294 "sys_adjtimex",
4295 "sys_mprotect", /* 125 */
4296 "sys_sigprocmask",
4297 "sys_ni_syscall", /* old "create_module" */
4298 "sys_init_module",
4299 "sys_delete_module",
4300 "sys_ni_syscall", /* 130: old "get_kernel_syms" */
4301 "sys_quotactl",
4302 "sys_getpgid",
4303 "sys_fchdir",
4304 "sys_bdflush",
4305 "sys_sysfs", /* 135 */
4306 "sys_personality",
4307 "sys_ni_syscall", /* reserved for afs_syscall */
4308 "sys_setfsuid16",
4309 "sys_setfsgid16",
4310 "sys_llseek", /* 140 */
4311 "sys_getdents",
4312 "sys_select",
4313 "sys_flock",
4314 "sys_msync",
4315 "sys_readv", /* 145 */
4316 "sys_writev",
4317 "sys_getsid",
4318 "sys_fdatasync",
4319 "sys_sysctl",
4320 "sys_mlock", /* 150 */
4321 "sys_munlock",
4322 "sys_mlockall",
4323 "sys_munlockall",
4324 "sys_sched_setparam",
4325 "sys_sched_getparam", /* 155 */
4326 "sys_sched_setscheduler",
4327 "sys_sched_getscheduler",
4328 "sys_sched_yield",
4329 "sys_sched_get_priority_max",
4330 "sys_sched_get_priority_min", /* 160 */
4331 "sys_sched_rr_get_interval",
4332 "sys_nanosleep",
4333 "sys_mremap",
4334 "sys_setresuid16",
4335 "sys_getresuid16", /* 165 */
4336 "sys_vm86",
4337 "sys_ni_syscall", /* Old sys_query_module */
4338 "sys_poll",
4339 "sys_nfsservctl",
4340 "sys_setresgid16", /* 170 */
4341 "sys_getresgid16",
4342 "sys_prctl",
4343 "sys_rt_sigreturn",
4344 "sys_rt_sigaction",
4345 "sys_rt_sigprocmask", /* 175 */
4346 "sys_rt_sigpending",
4347 "sys_rt_sigtimedwait",
4348 "sys_rt_sigqueueinfo",
4349 "sys_rt_sigsuspend",
4350 "sys_pread64", /* 180 */
4351 "sys_pwrite64",
4352 "sys_chown16",
4353 "sys_getcwd",
4354 "sys_capget",
4355 "sys_capset", /* 185 */
4356 "sys_sigaltstack",
4357 "sys_sendfile",
4358 "sys_ni_syscall", /* reserved for streams1 */
4359 "sys_ni_syscall", /* reserved for streams2 */
4360 "sys_vfork", /* 190 */
4361 "sys_getrlimit",
4362 "sys_mmap2",
4363 "sys_truncate64",
4364 "sys_ftruncate64",
4365 "sys_stat64", /* 195 */
4366 "sys_lstat64",
4367 "sys_fstat64",
4368 "sys_lchown",
4369 "sys_getuid",
4370 "sys_getgid", /* 200 */
4371 "sys_geteuid",
4372 "sys_getegid",
4373 "sys_setreuid",
4374 "sys_setregid",
4375 "sys_getgroups", /* 205 */
4376 "sys_setgroups",
4377 "sys_fchown",
4378 "sys_setresuid",
4379 "sys_getresuid",
4380 "sys_setresgid", /* 210 */
4381 "sys_getresgid",
4382 "sys_chown",
4383 "sys_setuid",
4384 "sys_setgid",
4385 "sys_setfsuid", /* 215 */
4386 "sys_setfsgid",
4387 "sys_pivot_root",
4388 "sys_mincore",
4389 "sys_madvise",
4390 "sys_getdents64", /* 220 */
4391 "sys_fcntl64",
4392 "sys_ni_syscall", /* reserved for TUX */
4393 "sys_ni_syscall",
4394 "sys_gettid",
4395 "sys_readahead", /* 225 */
4396 "sys_setxattr",
4397 "sys_lsetxattr",
4398 "sys_fsetxattr",
4399 "sys_getxattr",
4400 "sys_lgetxattr", /* 230 */
4401 "sys_fgetxattr",
4402 "sys_listxattr",
4403 "sys_llistxattr",
4404 "sys_flistxattr",
4405 "sys_removexattr", /* 235 */
4406 "sys_lremovexattr",
4407 "sys_fremovexattr",
4408 "sys_tkill",
4409 "sys_sendfile64",
4410 "sys_futex", /* 240 */
4411 "sys_sched_setaffinity",
4412 "sys_sched_getaffinity",
4413 "sys_set_thread_area",
4414 "sys_get_thread_area",
4415 "sys_io_setup", /* 245 */
4416 "sys_io_destroy",
4417 "sys_io_getevents",
4418 "sys_io_submit",
4419 "sys_io_cancel",
4420 "sys_fadvise64", /* 250 */
4421 "sys_ni_syscall",
4422 "sys_exit_group",
4423 "sys_lookup_dcookie",
4424 "sys_epoll_create",
4425 "sys_epoll_ctl", /* 255 */
4426 "sys_epoll_wait",
4427 "sys_remap_file_pages",
4428 "sys_set_tid_address",
4429 "sys_timer_create",
4430 "sys_timer_settime", /* 260 */
4431 "sys_timer_gettime",
4432 "sys_timer_getoverrun",
4433 "sys_timer_delete",
4434 "sys_clock_settime",
4435 "sys_clock_gettime", /* 265 */
4436 "sys_clock_getres",
4437 "sys_clock_nanosleep",
4438 "sys_statfs64",
4439 "sys_fstatfs64",
4440 "sys_tgkill", /* 270 */
4441 "sys_utimes",
4442 "sys_fadvise64_64",
4443 "sys_ni_syscall" /* sys_vserver */
4444 };
4445
4446 uint32_t uEAX = CPUMGetGuestEAX(pVM);
4447 switch (uEAX)
4448 {
4449 default:
4450 if (uEAX < ELEMENTS(apsz))
4451 Log(("REM: linux syscall %3d: %s (eip=%VGv ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x ebp=%08x)\n",
4452 uEAX, apsz[uEAX], CPUMGetGuestEIP(pVM), CPUMGetGuestEBX(pVM), CPUMGetGuestECX(pVM),
4453 CPUMGetGuestEDX(pVM), CPUMGetGuestESI(pVM), CPUMGetGuestEDI(pVM), CPUMGetGuestEBP(pVM)));
4454 else
4455 Log(("eip=%08x: linux syscall %d (#%x) unknown\n", CPUMGetGuestEIP(pVM), uEAX, uEAX));
4456 break;
4457
4458 }
4459}
4460
4461
4462/**
4463 * Dumps an OpenBSD system call.
4464 * @param pVM VM handle.
4465 */
4466void remR3DumpOBsdSyscall(PVM pVM)
4467{
4468 static const char *apsz[] =
4469 {
4470 "SYS_syscall", //0
4471 "SYS_exit", //1
4472 "SYS_fork", //2
4473 "SYS_read", //3
4474 "SYS_write", //4
4475 "SYS_open", //5
4476 "SYS_close", //6
4477 "SYS_wait4", //7
4478 "SYS_8",
4479 "SYS_link", //9
4480 "SYS_unlink", //10
4481 "SYS_11",
4482 "SYS_chdir", //12
4483 "SYS_fchdir", //13
4484 "SYS_mknod", //14
4485 "SYS_chmod", //15
4486 "SYS_chown", //16
4487 "SYS_break", //17
4488 "SYS_18",
4489 "SYS_19",
4490 "SYS_getpid", //20
4491 "SYS_mount", //21
4492 "SYS_unmount", //22
4493 "SYS_setuid", //23
4494 "SYS_getuid", //24
4495 "SYS_geteuid", //25
4496 "SYS_ptrace", //26
4497 "SYS_recvmsg", //27
4498 "SYS_sendmsg", //28
4499 "SYS_recvfrom", //29
4500 "SYS_accept", //30
4501 "SYS_getpeername", //31
4502 "SYS_getsockname", //32
4503 "SYS_access", //33
4504 "SYS_chflags", //34
4505 "SYS_fchflags", //35
4506 "SYS_sync", //36
4507 "SYS_kill", //37
4508 "SYS_38",
4509 "SYS_getppid", //39
4510 "SYS_40",
4511 "SYS_dup", //41
4512 "SYS_opipe", //42
4513 "SYS_getegid", //43
4514 "SYS_profil", //44
4515 "SYS_ktrace", //45
4516 "SYS_sigaction", //46
4517 "SYS_getgid", //47
4518 "SYS_sigprocmask", //48
4519 "SYS_getlogin", //49
4520 "SYS_setlogin", //50
4521 "SYS_acct", //51
4522 "SYS_sigpending", //52
4523 "SYS_osigaltstack", //53
4524 "SYS_ioctl", //54
4525 "SYS_reboot", //55
4526 "SYS_revoke", //56
4527 "SYS_symlink", //57
4528 "SYS_readlink", //58
4529 "SYS_execve", //59
4530 "SYS_umask", //60
4531 "SYS_chroot", //61
4532 "SYS_62",
4533 "SYS_63",
4534 "SYS_64",
4535 "SYS_65",
4536 "SYS_vfork", //66
4537 "SYS_67",
4538 "SYS_68",
4539 "SYS_sbrk", //69
4540 "SYS_sstk", //70
4541 "SYS_61",
4542 "SYS_vadvise", //72
4543 "SYS_munmap", //73
4544 "SYS_mprotect", //74
4545 "SYS_madvise", //75
4546 "SYS_76",
4547 "SYS_77",
4548 "SYS_mincore", //78
4549 "SYS_getgroups", //79
4550 "SYS_setgroups", //80
4551 "SYS_getpgrp", //81
4552 "SYS_setpgid", //82
4553 "SYS_setitimer", //83
4554 "SYS_84",
4555 "SYS_85",
4556 "SYS_getitimer", //86
4557 "SYS_87",
4558 "SYS_88",
4559 "SYS_89",
4560 "SYS_dup2", //90
4561 "SYS_91",
4562 "SYS_fcntl", //92
4563 "SYS_select", //93
4564 "SYS_94",
4565 "SYS_fsync", //95
4566 "SYS_setpriority", //96
4567 "SYS_socket", //97
4568 "SYS_connect", //98
4569 "SYS_99",
4570 "SYS_getpriority", //100
4571 "SYS_101",
4572 "SYS_102",
4573 "SYS_sigreturn", //103
4574 "SYS_bind", //104
4575 "SYS_setsockopt", //105
4576 "SYS_listen", //106
4577 "SYS_107",
4578 "SYS_108",
4579 "SYS_109",
4580 "SYS_110",
4581 "SYS_sigsuspend", //111
4582 "SYS_112",
4583 "SYS_113",
4584 "SYS_114",
4585 "SYS_115",
4586 "SYS_gettimeofday", //116
4587 "SYS_getrusage", //117
4588 "SYS_getsockopt", //118
4589 "SYS_119",
4590 "SYS_readv", //120
4591 "SYS_writev", //121
4592 "SYS_settimeofday", //122
4593 "SYS_fchown", //123
4594 "SYS_fchmod", //124
4595 "SYS_125",
4596 "SYS_setreuid", //126
4597 "SYS_setregid", //127
4598 "SYS_rename", //128
4599 "SYS_129",
4600 "SYS_130",
4601 "SYS_flock", //131
4602 "SYS_mkfifo", //132
4603 "SYS_sendto", //133
4604 "SYS_shutdown", //134
4605 "SYS_socketpair", //135
4606 "SYS_mkdir", //136
4607 "SYS_rmdir", //137
4608 "SYS_utimes", //138
4609 "SYS_139",
4610 "SYS_adjtime", //140
4611 "SYS_141",
4612 "SYS_142",
4613 "SYS_143",
4614 "SYS_144",
4615 "SYS_145",
4616 "SYS_146",
4617 "SYS_setsid", //147
4618 "SYS_quotactl", //148
4619 "SYS_149",
4620 "SYS_150",
4621 "SYS_151",
4622 "SYS_152",
4623 "SYS_153",
4624 "SYS_154",
4625 "SYS_nfssvc", //155
4626 "SYS_156",
4627 "SYS_157",
4628 "SYS_158",
4629 "SYS_159",
4630 "SYS_160",
4631 "SYS_getfh", //161
4632 "SYS_162",
4633 "SYS_163",
4634 "SYS_164",
4635 "SYS_sysarch", //165
4636 "SYS_166",
4637 "SYS_167",
4638 "SYS_168",
4639 "SYS_169",
4640 "SYS_170",
4641 "SYS_171",
4642 "SYS_172",
4643 "SYS_pread", //173
4644 "SYS_pwrite", //174
4645 "SYS_175",
4646 "SYS_176",
4647 "SYS_177",
4648 "SYS_178",
4649 "SYS_179",
4650 "SYS_180",
4651 "SYS_setgid", //181
4652 "SYS_setegid", //182
4653 "SYS_seteuid", //183
4654 "SYS_lfs_bmapv", //184
4655 "SYS_lfs_markv", //185
4656 "SYS_lfs_segclean", //186
4657 "SYS_lfs_segwait", //187
4658 "SYS_188",
4659 "SYS_189",
4660 "SYS_190",
4661 "SYS_pathconf", //191
4662 "SYS_fpathconf", //192
4663 "SYS_swapctl", //193
4664 "SYS_getrlimit", //194
4665 "SYS_setrlimit", //195
4666 "SYS_getdirentries", //196
4667 "SYS_mmap", //197
4668 "SYS___syscall", //198
4669 "SYS_lseek", //199
4670 "SYS_truncate", //200
4671 "SYS_ftruncate", //201
4672 "SYS___sysctl", //202
4673 "SYS_mlock", //203
4674 "SYS_munlock", //204
4675 "SYS_205",
4676 "SYS_futimes", //206
4677 "SYS_getpgid", //207
4678 "SYS_xfspioctl", //208
4679 "SYS_209",
4680 "SYS_210",
4681 "SYS_211",
4682 "SYS_212",
4683 "SYS_213",
4684 "SYS_214",
4685 "SYS_215",
4686 "SYS_216",
4687 "SYS_217",
4688 "SYS_218",
4689 "SYS_219",
4690 "SYS_220",
4691 "SYS_semget", //221
4692 "SYS_222",
4693 "SYS_223",
4694 "SYS_224",
4695 "SYS_msgget", //225
4696 "SYS_msgsnd", //226
4697 "SYS_msgrcv", //227
4698 "SYS_shmat", //228
4699 "SYS_229",
4700 "SYS_shmdt", //230
4701 "SYS_231",
4702 "SYS_clock_gettime", //232
4703 "SYS_clock_settime", //233
4704 "SYS_clock_getres", //234
4705 "SYS_235",
4706 "SYS_236",
4707 "SYS_237",
4708 "SYS_238",
4709 "SYS_239",
4710 "SYS_nanosleep", //240
4711 "SYS_241",
4712 "SYS_242",
4713 "SYS_243",
4714 "SYS_244",
4715 "SYS_245",
4716 "SYS_246",
4717 "SYS_247",
4718 "SYS_248",
4719 "SYS_249",
4720 "SYS_minherit", //250
4721 "SYS_rfork", //251
4722 "SYS_poll", //252
4723 "SYS_issetugid", //253
4724 "SYS_lchown", //254
4725 "SYS_getsid", //255
4726 "SYS_msync", //256
4727 "SYS_257",
4728 "SYS_258",
4729 "SYS_259",
4730 "SYS_getfsstat", //260
4731 "SYS_statfs", //261
4732 "SYS_fstatfs", //262
4733 "SYS_pipe", //263
4734 "SYS_fhopen", //264
4735 "SYS_265",
4736 "SYS_fhstatfs", //266
4737 "SYS_preadv", //267
4738 "SYS_pwritev", //268
4739 "SYS_kqueue", //269
4740 "SYS_kevent", //270
4741 "SYS_mlockall", //271
4742 "SYS_munlockall", //272
4743 "SYS_getpeereid", //273
4744 "SYS_274",
4745 "SYS_275",
4746 "SYS_276",
4747 "SYS_277",
4748 "SYS_278",
4749 "SYS_279",
4750 "SYS_280",
4751 "SYS_getresuid", //281
4752 "SYS_setresuid", //282
4753 "SYS_getresgid", //283
4754 "SYS_setresgid", //284
4755 "SYS_285",
4756 "SYS_mquery", //286
4757 "SYS_closefrom", //287
4758 "SYS_sigaltstack", //288
4759 "SYS_shmget", //289
4760 "SYS_semop", //290
4761 "SYS_stat", //291
4762 "SYS_fstat", //292
4763 "SYS_lstat", //293
4764 "SYS_fhstat", //294
4765 "SYS___semctl", //295
4766 "SYS_shmctl", //296
4767 "SYS_msgctl", //297
4768 "SYS_MAXSYSCALL", //298
4769 //299
4770 //300
4771 };
4772 uint32_t uEAX;
4773 if (!LogIsEnabled())
4774 return;
4775 uEAX = CPUMGetGuestEAX(pVM);
4776 switch (uEAX)
4777 {
4778 default:
4779 if (uEAX < ELEMENTS(apsz))
4780 {
4781 uint32_t au32Args[8] = {0};
4782 PGMPhysReadGCPtr(pVM, au32Args, CPUMGetGuestESP(pVM), sizeof(au32Args));
4783 RTLogPrintf("REM: OpenBSD syscall %3d: %s (eip=%08x %08x %08x %08x %08x %08x %08x %08x %08x)\n",
4784 uEAX, apsz[uEAX], CPUMGetGuestEIP(pVM), au32Args[0], au32Args[1], au32Args[2], au32Args[3],
4785 au32Args[4], au32Args[5], au32Args[6], au32Args[7]);
4786 }
4787 else
4788 RTLogPrintf("eip=%08x: OpenBSD syscall %d (#%x) unknown!!\n", CPUMGetGuestEIP(pVM), uEAX, uEAX);
4789 break;
4790 }
4791}
4792
4793
4794#if defined(IPRT_NO_CRT) && defined(RT_OS_WINDOWS) && defined(RT_ARCH_X86)
4795/**
4796 * The Dll main entry point (stub).
4797 */
4798bool __stdcall _DllMainCRTStartup(void *hModule, uint32_t dwReason, void *pvReserved)
4799{
4800 return true;
4801}
4802
4803void *memcpy(void *dst, const void *src, size_t size)
4804{
4805 uint8_t*pbDst = dst, *pbSrc = src;
4806 while (size-- > 0)
4807 *pbDst++ = *pbSrc++;
4808 return dst;
4809}
4810
4811#endif
4812
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