VirtualBox

source: vbox/trunk/src/recompiler/VBoxREMWrapper.cpp@ 22112

Last change on this file since 22112 was 22112, checked in by vboxsync, 16 years ago

DBGF,REM,Diggers: Converted more of the code dealing with debug symbol to use the DBGFR3As API. Not prefect yet, but we're slowly getting there.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 116.3 KB
Line 
1/* $Id: VBoxREMWrapper.cpp 22112 2009-08-09 20:14:32Z vboxsync $ */
2/** @file
3 *
4 * VBoxREM Win64 DLL Wrapper.
5 */
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/** @page pg_vboxrem_amd64 VBoxREM Hacks on AMD64
24 *
25 * There are problems with building BoxREM both on WIN64 and 64-bit linux.
26 *
27 * On linux binutils refuses to link shared objects without -fPIC compiled code
28 * (bitches about some fixup types). But when trying to build with -fPIC dyngen
29 * doesn't like the code anymore. Sweet. The current solution is to build the
30 * VBoxREM code as a relocatable module and use our ELF loader to load it.
31 *
32 * On WIN64 we're not aware of any GCC port which can emit code using the MSC
33 * calling convention. So, we're in for some real fun here. The choice is between
34 * porting GCC to AMD64 WIN64 and comming up with some kind of wrapper around
35 * either the win32 build or the 64-bit linux build.
36 *
37 * -# Porting GCC will be a lot of work. For one thing the calling convention differs
38 * and messing with such stuff can easily create ugly bugs. We would also have to
39 * do some binutils changes, but I think those are rather small compared to GCC.
40 * (That said, the MSC calling convention is far simpler than the linux one, it
41 * reminds me of _Optlink which we have working already.)
42 * -# Wrapping win32 code will work, but addresses outside the first 4GB are
43 * inaccessible and we will have to create 32-64 thunks for all imported functions.
44 * (To switch between 32-bit and 64-bit is load the right CS using far jmps (32->64)
45 * or far returns (both).)
46 * -# Wrapping 64-bit linux code might be the easier solution. The requirements here
47 * are:
48 * - Remove all CRT references we possibly, either by using intrinsics or using
49 * IPRT. Part of IPRT will be linked into VBoxREM2.rel, this will be yet another
50 * IPRT mode which I've dubbed 'no-crt'. The no-crt mode provide basic non-system
51 * dependent stuff.
52 * - Compile and link it into a relocatable object (include the gcc intrinsics
53 * in libgcc). Call this VBoxREM2.rel.
54 * - Write a wrapper dll, VBoxREM.dll, for which during REMR3Init() will load
55 * VBoxREM2.rel (using IPRT) and generate calling convention wrappers
56 * for all IPRT functions and VBoxVMM functions that it uses. All exports
57 * will be wrapped vice versa.
58 * - For building on windows hosts, we will use a mingw32 hosted cross compiler.
59 * and add a 'no-crt' mode to IPRT where it provides the necessary CRT headers
60 * and function implementations.
61 *
62 * The 3rd solution will be tried out first since it requires the least effort and
63 * will let us make use of the full 64-bit register set.
64 *
65 *
66 *
67 * @section sec_vboxrem_amd64_compare Comparing the GCC and MSC calling conventions
68 *
69 * GCC expects the following (cut & past from page 20 in the ABI draft 0.96):
70 *
71 * @verbatim
72 %rax temporary register; with variable arguments passes information about the
73 number of SSE registers used; 1st return register.
74 [Not preserved]
75 %rbx callee-saved register; optionally used as base pointer.
76 [Preserved]
77 %rcx used to pass 4th integer argument to functions.
78 [Not preserved]
79 %rdx used to pass 3rd argument to functions; 2nd return register
80 [Not preserved]
81 %rsp stack pointer
82 [Preserved]
83 %rbp callee-saved register; optionally used as frame pointer
84 [Preserved]
85 %rsi used to pass 2nd argument to functions
86 [Not preserved]
87 %rdi used to pass 1st argument to functions
88 [Not preserved]
89 %r8 used to pass 5th argument to functions
90 [Not preserved]
91 %r9 used to pass 6th argument to functions
92 [Not preserved]
93 %r10 temporary register, used for passing a function's static chain
94 pointer [Not preserved]
95 %r11 temporary register
96 [Not preserved]
97 %r12-r15 callee-saved registers
98 [Preserved]
99 %xmm0-%xmm1 used to pass and return floating point arguments
100 [Not preserved]
101 %xmm2-%xmm7 used to pass floating point arguments
102 [Not preserved]
103 %xmm8-%xmm15 temporary registers
104 [Not preserved]
105 %mmx0-%mmx7 temporary registers
106 [Not preserved]
107 %st0 temporary register; used to return long double arguments
108 [Not preserved]
109 %st1 temporary registers; used to return long double arguments
110 [Not preserved]
111 %st2-%st7 temporary registers
112 [Not preserved]
113 %fs Reserved for system use (as thread specific data register)
114 [Not preserved]
115 @endverbatim
116 *
117 * Direction flag is preserved as cleared.
118 * The stack must be aligned on a 16-byte boundrary before the 'call/jmp' instruction.
119 *
120 *
121 *
122 * MSC expects the following:
123 * @verbatim
124 rax return value, not preserved.
125 rbx preserved.
126 rcx 1st argument, integer, not preserved.
127 rdx 2nd argument, integer, not preserved.
128 rbp preserved.
129 rsp preserved.
130 rsi preserved.
131 rdi preserved.
132 r8 3rd argument, integer, not preserved.
133 r9 4th argument, integer, not preserved.
134 r10 scratch register, not preserved.
135 r11 scratch register, not preserved.
136 r12-r15 preserved.
137 xmm0 1st argument, fp, return value, not preserved.
138 xmm1 2st argument, fp, not preserved.
139 xmm2 3st argument, fp, not preserved.
140 xmm3 4st argument, fp, not preserved.
141 xmm4-xmm5 scratch, not preserved.
142 xmm6-xmm15 preserved.
143 @endverbatim
144 *
145 * Dunno what the direction flag is...
146 * The stack must be aligned on a 16-byte boundrary before the 'call/jmp' instruction.
147 *
148 *
149 * Thus, When GCC code is calling MSC code we don't really have to preserve
150 * anything. But but MSC code is calling GCC code, we'll have to save esi and edi.
151 *
152 */
153
154
155/*******************************************************************************
156* Defined Constants And Macros *
157*******************************************************************************/
158/** @def USE_REM_STUBS
159 * Define USE_REM_STUBS to stub the entire REM stuff. This is useful during
160 * early porting (before we start running stuff).
161 */
162#if defined(__DOXYGEN__)
163# define USE_REM_STUBS
164#endif
165
166/** @def USE_REM_CALLING_CONVENTION_GLUE
167 * Define USE_REM_CALLING_CONVENTION_GLUE for platforms where it's necessary to
168 * use calling convention wrappers.
169 */
170#if (defined(RT_ARCH_AMD64) && defined(RT_OS_WINDOWS)) || defined(__DOXYGEN__)
171# define USE_REM_CALLING_CONVENTION_GLUE
172#endif
173
174/** @def USE_REM_IMPORT_JUMP_GLUE
175 * Define USE_REM_IMPORT_JUMP_GLUE for platforms where we need to
176 * emit some jump glue to deal with big addresses.
177 */
178#if (defined(RT_ARCH_AMD64) && !defined(USE_REM_CALLING_CONVENTION_GLUE) && !defined(RT_OS_DARWIN)) || defined(__DOXYGEN__)
179# define USE_REM_IMPORT_JUMP_GLUE
180#endif
181
182
183/*******************************************************************************
184* Header Files *
185*******************************************************************************/
186#define LOG_GROUP LOG_GROUP_REM
187#include <VBox/rem.h>
188#include <VBox/vmm.h>
189#include <VBox/dbgf.h>
190#include <VBox/dbg.h>
191#include <VBox/csam.h>
192#include <VBox/mm.h>
193#include <VBox/em.h>
194#include <VBox/ssm.h>
195#include <VBox/hwaccm.h>
196#include <VBox/patm.h>
197#ifdef VBOX_WITH_VMI
198# include <VBox/parav.h>
199#endif
200#include <VBox/pdm.h>
201#include <VBox/pdmcritsect.h>
202#include <VBox/pgm.h>
203#include <VBox/iom.h>
204#include <VBox/vm.h>
205#include <VBox/err.h>
206#include <VBox/log.h>
207#include <VBox/dis.h>
208
209#include <iprt/alloc.h>
210#include <iprt/assert.h>
211#include <iprt/ldr.h>
212#include <iprt/param.h>
213#include <iprt/path.h>
214#include <iprt/string.h>
215#include <iprt/stream.h>
216
217
218/*******************************************************************************
219* Structures and Typedefs *
220*******************************************************************************/
221/**
222 * Parameter descriptor.
223 */
224typedef struct REMPARMDESC
225{
226 /** Parameter flags (REMPARMDESC_FLAGS_*). */
227 uint8_t fFlags;
228 /** The parameter size if REMPARMDESC_FLAGS_SIZE is set. */
229 uint8_t cb;
230 /** Pointer to additional data.
231 * For REMPARMDESC_FLAGS_PFN this is a PREMFNDESC. */
232 void *pvExtra;
233
234} REMPARMDESC, *PREMPARMDESC;
235/** Pointer to a constant parameter descriptor. */
236typedef const REMPARMDESC *PCREMPARMDESC;
237
238/** @name Parameter descriptor flags.
239 * @{ */
240/** The parameter type is a kind of integer which could fit in a register. This includes pointers. */
241#define REMPARMDESC_FLAGS_INT 0
242/** The parameter is a GC pointer. */
243#define REMPARMDESC_FLAGS_GCPTR 1
244/** The parameter is a GC physical address. */
245#define REMPARMDESC_FLAGS_GCPHYS 2
246/** The parameter is a HC physical address. */
247#define REMPARMDESC_FLAGS_HCPHYS 3
248/** The parameter type is a kind of floating point. */
249#define REMPARMDESC_FLAGS_FLOAT 4
250/** The parameter value is a struct. This type takes a size. */
251#define REMPARMDESC_FLAGS_STRUCT 5
252/** The parameter is an elipsis. */
253#define REMPARMDESC_FLAGS_ELLIPSIS 6
254/** The parameter is a va_list. */
255#define REMPARMDESC_FLAGS_VALIST 7
256/** The parameter is a function pointer. pvExtra is a PREMFNDESC. */
257#define REMPARMDESC_FLAGS_PFN 8
258/** The parameter type mask. */
259#define REMPARMDESC_FLAGS_TYPE_MASK 15
260/** The parameter size field is valid. */
261#define REMPARMDESC_FLAGS_SIZE RT_BIT(7)
262/** @} */
263
264/**
265 * Function descriptor.
266 */
267typedef struct REMFNDESC
268{
269 /** The function name. */
270 const char *pszName;
271 /** Exports: Pointer to the function pointer.
272 * Imports: Pointer to the function. */
273 void *pv;
274 /** Array of parameter descriptors. */
275 PCREMPARMDESC paParams;
276 /** The number of parameter descriptors pointed to by paParams. */
277 uint8_t cParams;
278 /** Function flags (REMFNDESC_FLAGS_*). */
279 uint8_t fFlags;
280 /** The size of the return value. */
281 uint8_t cbReturn;
282 /** Pointer to the wrapper code for imports. */
283 void *pvWrapper;
284} REMFNDESC, *PREMFNDESC;
285/** Pointer to a constant function descriptor. */
286typedef const REMFNDESC *PCREMFNDESC;
287
288/** @name Function descriptor flags.
289 * @{ */
290/** The return type is void. */
291#define REMFNDESC_FLAGS_RET_VOID 0
292/** The return type is a kind of integer passed in rax/eax. This includes pointers. */
293#define REMFNDESC_FLAGS_RET_INT 1
294/** The return type is a kind of floating point. */
295#define REMFNDESC_FLAGS_RET_FLOAT 2
296/** The return value is a struct. This type take a size. */
297#define REMFNDESC_FLAGS_RET_STRUCT 3
298/** The return type mask. */
299#define REMFNDESC_FLAGS_RET_TYPE_MASK 7
300/** The argument list contains one or more va_list arguments (i.e. problems). */
301#define REMFNDESC_FLAGS_VALIST RT_BIT(6)
302/** The function has an ellipsis (i.e. a problem). */
303#define REMFNDESC_FLAGS_ELLIPSIS RT_BIT(7)
304/** @} */
305
306/**
307 * Chunk of read-write-executable memory.
308 */
309typedef struct REMEXECMEM
310{
311 /** The number of bytes left. */
312 struct REMEXECMEM *pNext;
313 /** The size of this chunk. */
314 uint32_t cb;
315 /** The offset of the next code block. */
316 uint32_t off;
317#if ARCH_BITS == 32
318 uint32_t padding;
319#endif
320} REMEXECMEM, *PREMEXECMEM;
321
322
323/*******************************************************************************
324* Global Variables *
325*******************************************************************************/
326#ifndef USE_REM_STUBS
327/** Loader handle of the REM object/DLL. */
328static RTLDRMOD g_ModREM2;
329/** Pointer to the memory containing the loaded REM2 object/DLL. */
330static void *g_pvREM2;
331
332/** Linux object export addresses.
333 * These are references from the assembly wrapper code.
334 * @{ */
335static DECLCALLBACKPTR(int, pfnREMR3Init)(PVM);
336static DECLCALLBACKPTR(int, pfnREMR3InitFinalize)(PVM);
337static DECLCALLBACKPTR(int, pfnREMR3Term)(PVM);
338static DECLCALLBACKPTR(void, pfnREMR3Reset)(PVM);
339static DECLCALLBACKPTR(int, pfnREMR3Step)(PVM, PVMCPU);
340static DECLCALLBACKPTR(int, pfnREMR3BreakpointSet)(PVM, RTGCUINTPTR);
341static DECLCALLBACKPTR(int, pfnREMR3BreakpointClear)(PVM, RTGCUINTPTR);
342static DECLCALLBACKPTR(int, pfnREMR3EmulateInstruction)(PVM, PVMCPU);
343static DECLCALLBACKPTR(int, pfnREMR3Run)(PVM, PVMCPU);
344static DECLCALLBACKPTR(int, pfnREMR3State)(PVM, PVMCPU);
345static DECLCALLBACKPTR(int, pfnREMR3StateBack)(PVM, PVMCPU);
346static DECLCALLBACKPTR(void, pfnREMR3StateUpdate)(PVM, PVMCPU);
347static DECLCALLBACKPTR(void, pfnREMR3A20Set)(PVM, PVMCPU, bool);
348static DECLCALLBACKPTR(void, pfnREMR3ReplayHandlerNotifications)(PVM pVM);
349static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysRamRegister)(PVM, RTGCPHYS, RTGCPHYS, unsigned);
350static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysRamDeregister)(PVM, RTGCPHYS, RTUINT);
351static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysRomRegister)(PVM, RTGCPHYS, RTUINT, void *, bool);
352static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalModify)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, RTGCPHYS, bool, bool);
353static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalRegister)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, bool);
354static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalDeregister)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, bool, bool);
355static DECLCALLBACKPTR(void, pfnREMR3NotifyInterruptSet)(PVM, PVMCPU);
356static DECLCALLBACKPTR(void, pfnREMR3NotifyInterruptClear)(PVM, PVMCPU);
357static DECLCALLBACKPTR(void, pfnREMR3NotifyTimerPending)(PVM, PVMCPU);
358static DECLCALLBACKPTR(void, pfnREMR3NotifyDmaPending)(PVM);
359static DECLCALLBACKPTR(void, pfnREMR3NotifyQueuePending)(PVM);
360static DECLCALLBACKPTR(void, pfnREMR3NotifyFF)(PVM);
361static DECLCALLBACKPTR(int, pfnREMR3NotifyCodePageChanged)(PVM, PVMCPU, RTGCPTR);
362static DECLCALLBACKPTR(void, pfnREMR3NotifyPendingInterrupt)(PVM, PVMCPU, uint8_t);
363static DECLCALLBACKPTR(uint32_t, pfnREMR3QueryPendingInterrupt)(PVM, PVMCPU);
364static DECLCALLBACKPTR(int, pfnREMR3DisasEnableStepping)(PVM, bool);
365static DECLCALLBACKPTR(bool, pfnREMR3IsPageAccessHandled)(PVM, RTGCPHYS);
366/** @} */
367
368/** Export and import parameter descriptors.
369 * @{
370 */
371/* Common args. */
372static const REMPARMDESC g_aArgsSIZE_T[] =
373{
374 { REMPARMDESC_FLAGS_INT, sizeof(size_t) }
375};
376static const REMPARMDESC g_aArgsPTR[] =
377{
378 { REMPARMDESC_FLAGS_INT, sizeof(void *) }
379};
380static const REMPARMDESC g_aArgsVM[] =
381{
382 { REMPARMDESC_FLAGS_INT, sizeof(PVM) }
383};
384static const REMPARMDESC g_aArgsVMCPU[] =
385{
386 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU) }
387};
388
389static const REMPARMDESC g_aArgsVMandVMCPU[] =
390{
391 { REMPARMDESC_FLAGS_INT, sizeof(PVM) },
392 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU) }
393};
394
395/* REM args */
396static const REMPARMDESC g_aArgsBreakpoint[] =
397{
398 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
399 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCUINTPTR), NULL }
400};
401static const REMPARMDESC g_aArgsA20Set[] =
402{
403 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
404 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
405 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }
406};
407static const REMPARMDESC g_aArgsNotifyPhysRamRegister[] =
408{
409 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
410 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
411 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
412 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
413 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL }
414};
415static const REMPARMDESC g_aArgsNotifyPhysRamChunkRegister[] =
416{
417 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
418 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
419 { REMPARMDESC_FLAGS_INT, sizeof(RTUINT), NULL },
420 { REMPARMDESC_FLAGS_INT, sizeof(RTHCUINTPTR), NULL },
421 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL }
422};
423static const REMPARMDESC g_aArgsNotifyPhysRamDeregister[] =
424{
425 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
426 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
427 { REMPARMDESC_FLAGS_INT, sizeof(RTUINT), NULL }
428};
429static const REMPARMDESC g_aArgsNotifyPhysRomRegister[] =
430{
431 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
432 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
433 { REMPARMDESC_FLAGS_INT, sizeof(RTUINT), NULL },
434 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
435 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }
436};
437static const REMPARMDESC g_aArgsNotifyHandlerPhysicalModify[] =
438{
439 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
440 { REMPARMDESC_FLAGS_INT, sizeof(PGMPHYSHANDLERTYPE), NULL },
441 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
442 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
443 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
444 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL },
445 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }
446};
447static const REMPARMDESC g_aArgsNotifyHandlerPhysicalRegister[] =
448{
449 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
450 { REMPARMDESC_FLAGS_INT, sizeof(PGMPHYSHANDLERTYPE), NULL },
451 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
452 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
453 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }
454};
455static const REMPARMDESC g_aArgsNotifyHandlerPhysicalDeregister[] =
456{
457 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
458 { REMPARMDESC_FLAGS_INT, sizeof(PGMPHYSHANDLERTYPE), NULL },
459 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
460 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
461 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL },
462 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }
463};
464static const REMPARMDESC g_aArgsNotifyCodePageChanged[] =
465{
466 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
467 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
468 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCUINTPTR), NULL }
469};
470static const REMPARMDESC g_aArgsNotifyPendingInterrupt[] =
471{
472 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
473 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
474 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL }
475};
476static const REMPARMDESC g_aArgsDisasEnableStepping[] =
477{
478 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
479 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }
480};
481static const REMPARMDESC g_aArgsIsPageAccessHandled[] =
482{
483 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
484 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL }
485};
486
487
488/* VMM args */
489static const REMPARMDESC g_aArgsCPUMGetGuestCpl[] =
490{
491 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
492 { REMPARMDESC_FLAGS_INT, sizeof(PCPUMCTXCORE), NULL },
493};
494
495/* CPUMGetGuestMsr args */
496static const REMPARMDESC g_aArgsCPUMGetGuestMsr[] =
497{
498 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
499 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
500};
501
502/* CPUMGetGuestMsr args */
503static const REMPARMDESC g_aArgsCPUMSetGuestMsr[] =
504{
505 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
506 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
507 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL },
508};
509
510static const REMPARMDESC g_aArgsCPUMGetGuestCpuId[] =
511{
512 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
513 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
514 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL },
515 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL },
516 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL },
517 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL }
518};
519
520static const REMPARMDESC g_aArgsCPUMSetChangedFlags[] =
521{
522 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
523 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
524};
525
526static const REMPARMDESC g_aArgsCPUMQueryGuestCtxPtr[] =
527{
528 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL }
529};
530static const REMPARMDESC g_aArgsCSAMR3MonitorPage[] =
531{
532 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
533 { REMPARMDESC_FLAGS_INT, sizeof(RTRCPTR), NULL },
534 { REMPARMDESC_FLAGS_INT, sizeof(CSAMTAG), NULL }
535};
536static const REMPARMDESC g_aArgsCSAMR3UnmonitorPage[] =
537{
538 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
539 { REMPARMDESC_FLAGS_INT, sizeof(RTRCPTR), NULL },
540 { REMPARMDESC_FLAGS_INT, sizeof(CSAMTAG), NULL }
541};
542
543static const REMPARMDESC g_aArgsCSAMR3RecordCallAddress[] =
544{
545 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
546 { REMPARMDESC_FLAGS_INT, sizeof(RTRCPTR), NULL }
547};
548
549#if defined(VBOX_WITH_DEBUGGER) && !(defined(RT_OS_WINDOWS) && defined(RT_ARCH_AMD64)) /* the callbacks are problematic */
550static const REMPARMDESC g_aArgsDBGCRegisterCommands[] =
551{
552 { REMPARMDESC_FLAGS_INT, sizeof(PCDBGCCMD), NULL },
553 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL }
554};
555#endif
556static const REMPARMDESC g_aArgsDBGFR3DisasInstrEx[] =
557{
558 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
559 { REMPARMDESC_FLAGS_INT, sizeof(VMCPUID), NULL },
560 { REMPARMDESC_FLAGS_INT, sizeof(RTSEL), NULL },
561 { REMPARMDESC_FLAGS_INT, sizeof(RTGCPTR), NULL },
562 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
563 { REMPARMDESC_FLAGS_INT, sizeof(char *), NULL },
564 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
565 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL }
566};
567static const REMPARMDESC g_aArgsDBGFR3DisasInstrCurrentLogInternal[] =
568{
569 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
570 { REMPARMDESC_FLAGS_INT, sizeof(char *), NULL }
571};
572static const REMPARMDESC g_aArgsDBGFR3Info[] =
573{
574 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
575 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
576 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
577 { REMPARMDESC_FLAGS_INT, sizeof(PCDBGFINFOHLP), NULL }
578};
579static const REMPARMDESC g_aArgsDBGFR3AsSymbolByAddr[] =
580{
581 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
582 { REMPARMDESC_FLAGS_INT, sizeof(RTDBGAS), NULL },
583 { REMPARMDESC_FLAGS_INT, sizeof(PCDBGFADDRESS), NULL },
584 { REMPARMDESC_FLAGS_GCPTR, sizeof(PRTGCINTPTR), NULL },
585 { REMPARMDESC_FLAGS_INT, sizeof(PRTDBGSYMBOL), NULL },
586 { REMPARMDESC_FLAGS_INT, sizeof(PRTDBGMOD), NULL }
587};
588static const REMPARMDESC g_aArgsDISInstr[] =
589{
590 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
591 { REMPARMDESC_FLAGS_INT, sizeof(RTUINTPTR), NULL },
592 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
593 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL },
594 { REMPARMDESC_FLAGS_INT, sizeof(char *), NULL }
595};
596static const REMPARMDESC g_aArgsEMR3FatalError[] =
597{
598 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
599 { REMPARMDESC_FLAGS_INT, sizeof(int), NULL }
600};
601static const REMPARMDESC g_aArgsHWACCMR3CanExecuteGuest[] =
602{
603 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
604 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
605 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
606 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
607};
608static const REMPARMDESC g_aArgsIOMIOPortRead[] =
609{
610 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
611 { REMPARMDESC_FLAGS_INT, sizeof(RTIOPORT), NULL },
612 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL },
613 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
614};
615static const REMPARMDESC g_aArgsIOMIOPortWrite[] =
616{
617 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
618 { REMPARMDESC_FLAGS_INT, sizeof(RTIOPORT), NULL },
619 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
620 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
621};
622static const REMPARMDESC g_aArgsIOMMMIORead[] =
623{
624 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
625 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
626 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL },
627 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
628};
629static const REMPARMDESC g_aArgsIOMMMIOWrite[] =
630{
631 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
632 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
633 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
634 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
635};
636static const REMPARMDESC g_aArgsMMR3HeapAlloc[] =
637{
638 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
639 { REMPARMDESC_FLAGS_INT, sizeof(MMTAG), NULL },
640 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
641};
642static const REMPARMDESC g_aArgsMMR3HeapAllocZ[] =
643{
644 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
645 { REMPARMDESC_FLAGS_INT, sizeof(MMTAG), NULL },
646 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
647};
648static const REMPARMDESC g_aArgsPATMIsPatchGCAddr[] =
649{
650 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
651 { REMPARMDESC_FLAGS_INT, sizeof(RTRCPTR), NULL }
652};
653static const REMPARMDESC g_aArgsPATMR3QueryOpcode[] =
654{
655 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
656 { REMPARMDESC_FLAGS_INT, sizeof(RTRCPTR), NULL },
657 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t *), NULL }
658};
659static const REMPARMDESC g_aArgsPATMR3QueryPatchMem[] =
660{
661 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
662 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL }
663};
664#ifdef VBOX_WITH_VMI
665static const REMPARMDESC g_aArgsPARAVIsBiosCall[] =
666{
667 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
668 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCPTR), NULL },
669 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
670};
671#endif
672static const REMPARMDESC g_aArgsPDMApicGetBase[] =
673{
674 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
675 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t *), NULL }
676};
677static const REMPARMDESC g_aArgsPDMApicGetTPR[] =
678{
679 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
680 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t *), NULL },
681 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t *), NULL }
682};
683static const REMPARMDESC g_aArgsPDMApicSetBase[] =
684{
685 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
686 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL }
687};
688static const REMPARMDESC g_aArgsPDMApicSetTPR[] =
689{
690 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
691 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL }
692};
693static const REMPARMDESC g_aArgsPDMApicWriteMSR[] =
694{
695 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
696 { REMPARMDESC_FLAGS_INT, sizeof(VMCPUID), NULL },
697 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
698 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL }
699};
700static const REMPARMDESC g_aArgsPDMApicReadMSR[] =
701{
702 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
703 { REMPARMDESC_FLAGS_INT, sizeof(VMCPUID), NULL },
704 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
705 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t *), NULL }
706};
707static const REMPARMDESC g_aArgsPDMGetInterrupt[] =
708{
709 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
710 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t *), NULL }
711};
712static const REMPARMDESC g_aArgsPDMIsaSetIrq[] =
713{
714 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
715 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL },
716 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL }
717};
718static const REMPARMDESC g_aArgsPDMR3CritSectInit[] =
719{
720 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
721 { REMPARMDESC_FLAGS_INT, sizeof(PPDMCRITSECT), NULL },
722 { REMPARMDESC_FLAGS_INT, sizeof(char *), NULL }
723};
724static const REMPARMDESC g_aArgsPDMCritSectEnter[] =
725{
726 { REMPARMDESC_FLAGS_INT, sizeof(PPDMCRITSECT), NULL },
727 { REMPARMDESC_FLAGS_INT, sizeof(int), NULL }
728};
729static const REMPARMDESC g_aArgsPGMGetGuestMode[] =
730{
731 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
732};
733static const REMPARMDESC g_aArgsPGMGstGetPage[] =
734{
735 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
736 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCPTR), NULL },
737 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t *), NULL },
738 { REMPARMDESC_FLAGS_INT, sizeof(PRTGCPHYS), NULL }
739};
740static const REMPARMDESC g_aArgsPGMInvalidatePage[] =
741{
742 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
743 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCPTR), NULL }
744};
745static const REMPARMDESC g_aArgsPGMR3PhysTlbGCPhys2Ptr[] =
746{
747 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
748 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
749 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL },
750 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL }
751};
752static const REMPARMDESC g_aArgsPGM3PhysGrowRange[] =
753{
754 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
755 { REMPARMDESC_FLAGS_INT, sizeof(PCRTGCPHYS), NULL }
756};
757static const REMPARMDESC g_aArgsPGMPhysIsGCPhysValid[] =
758{
759 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
760 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL }
761};
762static const REMPARMDESC g_aArgsPGMPhysRead[] =
763{
764 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
765 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
766 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
767 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL }
768};
769static const REMPARMDESC g_aArgsPGMPhysSimpleReadGCPtr[] =
770{
771 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
772 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
773 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCPTR), NULL },
774 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL }
775};
776static const REMPARMDESC g_aArgsPGMPhysWrite[] =
777{
778 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
779 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
780 { REMPARMDESC_FLAGS_INT, sizeof(const void *), NULL },
781 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL }
782};
783static const REMPARMDESC g_aArgsPGMChangeMode[] =
784{
785 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
786 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL },
787 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL },
788 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL }
789};
790static const REMPARMDESC g_aArgsPGMFlushTLB[] =
791{
792 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
793 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL },
794 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }
795};
796static const REMPARMDESC g_aArgsPGMR3PhysReadUxx[] =
797{
798 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
799 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL }
800};
801static const REMPARMDESC g_aArgsPGMR3PhysWriteU8[] =
802{
803 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
804 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
805 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL }
806};
807static const REMPARMDESC g_aArgsPGMR3PhysWriteU16[] =
808{
809 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
810 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
811 { REMPARMDESC_FLAGS_INT, sizeof(uint16_t), NULL }
812};
813static const REMPARMDESC g_aArgsPGMR3PhysWriteU32[] =
814{
815 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
816 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
817 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }
818};
819static const REMPARMDESC g_aArgsPGMR3PhysWriteU64[] =
820{
821 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
822 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL },
823 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL }
824};
825static const REMPARMDESC g_aArgsRTMemRealloc[] =
826{
827 { REMPARMDESC_FLAGS_INT, sizeof(void*), NULL },
828 { REMPARMDESC_FLAGS_INT, sizeof(size_t) }
829};
830static const REMPARMDESC g_aArgsSSMR3GetGCPtr[] =
831{
832 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
833 { REMPARMDESC_FLAGS_INT, sizeof(PRTGCPTR), NULL }
834};
835static const REMPARMDESC g_aArgsSSMR3GetMem[] =
836{
837 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
838 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
839 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL }
840};
841static const REMPARMDESC g_aArgsSSMR3GetU32[] =
842{
843 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
844 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t *), NULL }
845};
846static const REMPARMDESC g_aArgsSSMR3GetUInt[] =
847{
848 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
849 { REMPARMDESC_FLAGS_INT, sizeof(PRTUINT), NULL }
850};
851static const REMPARMDESC g_aArgsSSMR3PutGCPtr[] =
852{
853 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
854 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCPTR), NULL }
855};
856static const REMPARMDESC g_aArgsSSMR3PutMem[] =
857{
858 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
859 { REMPARMDESC_FLAGS_INT, sizeof(const void *), NULL },
860 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL }
861};
862static const REMPARMDESC g_aArgsSSMR3PutU32[] =
863{
864 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
865 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
866};
867static const REMPARMDESC g_aArgsSSMR3PutUInt[] =
868{
869 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
870 { REMPARMDESC_FLAGS_INT, sizeof(RTUINT), NULL },
871};
872
873static const REMPARMDESC g_aArgsSSMIntCallback[] =
874{
875 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
876 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
877};
878static REMFNDESC g_SSMIntCallback =
879{
880 "SSMIntCallback", NULL, &g_aArgsSSMIntCallback[0], RT_ELEMENTS(g_aArgsSSMIntCallback), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL
881};
882
883static const REMPARMDESC g_aArgsSSMIntLoadExecCallback[] =
884{
885 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
886 { REMPARMDESC_FLAGS_INT, sizeof(PSSMHANDLE), NULL },
887 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
888};
889static REMFNDESC g_SSMIntLoadExecCallback =
890{
891 "SSMIntLoadExecCallback", NULL, &g_aArgsSSMIntLoadExecCallback[0], RT_ELEMENTS(g_aArgsSSMIntLoadExecCallback), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL
892};
893static const REMPARMDESC g_aArgsSSMR3RegisterInternal[] =
894{
895 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
896 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
897 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
898 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL },
899 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL },
900 { REMPARMDESC_FLAGS_PFN, sizeof(PFNSSMINTSAVEPREP), &g_SSMIntCallback },
901 { REMPARMDESC_FLAGS_PFN, sizeof(PFNSSMINTSAVEEXEC), &g_SSMIntCallback },
902 { REMPARMDESC_FLAGS_PFN, sizeof(PFNSSMINTSAVEDONE), &g_SSMIntCallback },
903 { REMPARMDESC_FLAGS_PFN, sizeof(PFNSSMINTLOADPREP), &g_SSMIntCallback },
904 { REMPARMDESC_FLAGS_PFN, sizeof(PFNSSMINTLOADEXEC), &g_SSMIntLoadExecCallback },
905 { REMPARMDESC_FLAGS_PFN, sizeof(PFNSSMINTLOADDONE), &g_SSMIntCallback },
906};
907
908static const REMPARMDESC g_aArgsSTAMR3Register[] =
909{
910 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
911 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
912 { REMPARMDESC_FLAGS_INT, sizeof(STAMTYPE), NULL },
913 { REMPARMDESC_FLAGS_INT, sizeof(STAMVISIBILITY), NULL },
914 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
915 { REMPARMDESC_FLAGS_INT, sizeof(STAMUNIT), NULL },
916 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL }
917};
918static const REMPARMDESC g_aArgsSTAMR3Deregister[] =
919{
920 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
921 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
922};
923static const REMPARMDESC g_aArgsTRPMAssertTrap[] =
924{
925 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
926 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL },
927 { REMPARMDESC_FLAGS_INT, sizeof(TRPMEVENT), NULL }
928};
929static const REMPARMDESC g_aArgsTRPMQueryTrap[] =
930{
931 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
932 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t *), NULL },
933 { REMPARMDESC_FLAGS_INT, sizeof(TRPMEVENT *), NULL }
934};
935static const REMPARMDESC g_aArgsTRPMSetErrorCode[] =
936{
937 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
938 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCUINT), NULL }
939};
940static const REMPARMDESC g_aArgsTRPMSetFaultAddress[] =
941{
942 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL },
943 { REMPARMDESC_FLAGS_GCPTR, sizeof(RTGCUINT), NULL }
944};
945static const REMPARMDESC g_aArgsVMR3ReqCall[] =
946{
947 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },
948 { REMPARMDESC_FLAGS_INT, sizeof(VMCPUID), NULL },
949 { REMPARMDESC_FLAGS_INT, sizeof(PVMREQ *), NULL },
950 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
951 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
952 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
953 { REMPARMDESC_FLAGS_ELLIPSIS, 0 }
954};
955static const REMPARMDESC g_aArgsVMR3ReqFree[] =
956{
957 { REMPARMDESC_FLAGS_INT, sizeof(PVMREQ), NULL }
958};
959
960/* IPRT args */
961static const REMPARMDESC g_aArgsAssertMsg1[] =
962{
963 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
964 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
965 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
966 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL }
967};
968static const REMPARMDESC g_aArgsAssertMsg2[] =
969{
970 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
971 { REMPARMDESC_FLAGS_ELLIPSIS, 0 }
972};
973static const REMPARMDESC g_aArgsRTLogFlags[] =
974{
975 { REMPARMDESC_FLAGS_INT, sizeof(PRTLOGGER), NULL },
976 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL }
977};
978static const REMPARMDESC g_aArgsRTLogFlush[] =
979{
980 { REMPARMDESC_FLAGS_INT, sizeof(PRTLOGGER), NULL }
981};
982static const REMPARMDESC g_aArgsRTLogLoggerEx[] =
983{
984 { REMPARMDESC_FLAGS_INT, sizeof(PRTLOGGER), NULL },
985 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
986 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
987 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
988 { REMPARMDESC_FLAGS_ELLIPSIS, 0 }
989};
990static const REMPARMDESC g_aArgsRTLogLoggerExV[] =
991{
992 { REMPARMDESC_FLAGS_INT, sizeof(PRTLOGGER), NULL },
993 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
994 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL },
995 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
996 { REMPARMDESC_FLAGS_VALIST, 0 }
997};
998static const REMPARMDESC g_aArgsRTLogPrintf[] =
999{
1000 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
1001 { REMPARMDESC_FLAGS_ELLIPSIS, 0 }
1002};
1003static const REMPARMDESC g_aArgsRTMemProtect[] =
1004{
1005 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
1006 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL },
1007 { REMPARMDESC_FLAGS_INT, sizeof(unsigned), NULL }
1008};
1009static const REMPARMDESC g_aArgsRTStrPrintf[] =
1010{
1011 { REMPARMDESC_FLAGS_INT, sizeof(char *), NULL },
1012 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL },
1013 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
1014 { REMPARMDESC_FLAGS_ELLIPSIS, 0 }
1015};
1016static const REMPARMDESC g_aArgsRTStrPrintfV[] =
1017{
1018 { REMPARMDESC_FLAGS_INT, sizeof(char *), NULL },
1019 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL },
1020 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL },
1021 { REMPARMDESC_FLAGS_VALIST, 0 }
1022};
1023static const REMPARMDESC g_aArgsThread[] =
1024{
1025 { REMPARMDESC_FLAGS_INT, sizeof(RTTHREAD), NULL }
1026};
1027
1028
1029/* CRT args */
1030static const REMPARMDESC g_aArgsmemcpy[] =
1031{
1032 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
1033 { REMPARMDESC_FLAGS_INT, sizeof(const void *), NULL },
1034 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL }
1035};
1036static const REMPARMDESC g_aArgsmemset[] =
1037{
1038 { REMPARMDESC_FLAGS_INT, sizeof(void *), NULL },
1039 { REMPARMDESC_FLAGS_INT, sizeof(int), NULL },
1040 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL }
1041};
1042
1043/** @} */
1044
1045/**
1046 * Descriptors for the exported functions.
1047 */
1048static const REMFNDESC g_aExports[] =
1049{ /* pszName, (void *)pv, pParams, cParams, fFlags, cb, pvWrapper. */
1050 { "REMR3Init", (void *)&pfnREMR3Init, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1051 { "REMR3InitFinalize", (void *)&pfnREMR3InitFinalize, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1052 { "REMR3Term", (void *)&pfnREMR3Term, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1053 { "REMR3Reset", (void *)&pfnREMR3Reset, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1054 { "REMR3Step", (void *)&pfnREMR3Step, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1055 { "REMR3BreakpointSet", (void *)&pfnREMR3BreakpointSet, &g_aArgsBreakpoint[0], RT_ELEMENTS(g_aArgsBreakpoint), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1056 { "REMR3BreakpointClear", (void *)&pfnREMR3BreakpointClear, &g_aArgsBreakpoint[0], RT_ELEMENTS(g_aArgsBreakpoint), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1057 { "REMR3EmulateInstruction", (void *)&pfnREMR3EmulateInstruction, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1058 { "REMR3Run", (void *)&pfnREMR3Run, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1059 { "REMR3State", (void *)&pfnREMR3State, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1060 { "REMR3StateBack", (void *)&pfnREMR3StateBack, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1061 { "REMR3StateUpdate", (void *)&pfnREMR3StateUpdate, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1062 { "REMR3A20Set", (void *)&pfnREMR3A20Set, &g_aArgsA20Set[0], RT_ELEMENTS(g_aArgsA20Set), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1063 { "REMR3ReplayHandlerNotifications", (void *)&pfnREMR3ReplayHandlerNotifications, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1064 { "REMR3NotifyPhysRamRegister", (void *)&pfnREMR3NotifyPhysRamRegister, &g_aArgsNotifyPhysRamRegister[0], RT_ELEMENTS(g_aArgsNotifyPhysRamRegister), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1065 { "REMR3NotifyPhysRamDeregister", (void *)&pfnREMR3NotifyPhysRamDeregister, &g_aArgsNotifyPhysRamDeregister[0], RT_ELEMENTS(g_aArgsNotifyPhysRamDeregister), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1066 { "REMR3NotifyPhysRomRegister", (void *)&pfnREMR3NotifyPhysRomRegister, &g_aArgsNotifyPhysRomRegister[0], RT_ELEMENTS(g_aArgsNotifyPhysRomRegister), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1067 { "REMR3NotifyHandlerPhysicalModify", (void *)&pfnREMR3NotifyHandlerPhysicalModify, &g_aArgsNotifyHandlerPhysicalModify[0], RT_ELEMENTS(g_aArgsNotifyHandlerPhysicalModify), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1068 { "REMR3NotifyHandlerPhysicalRegister", (void *)&pfnREMR3NotifyHandlerPhysicalRegister, &g_aArgsNotifyHandlerPhysicalRegister[0], RT_ELEMENTS(g_aArgsNotifyHandlerPhysicalRegister), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1069 { "REMR3NotifyHandlerPhysicalDeregister", (void *)&pfnREMR3NotifyHandlerPhysicalDeregister, &g_aArgsNotifyHandlerPhysicalDeregister[0], RT_ELEMENTS(g_aArgsNotifyHandlerPhysicalDeregister), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1070 { "REMR3NotifyInterruptSet", (void *)&pfnREMR3NotifyInterruptSet, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1071 { "REMR3NotifyInterruptClear", (void *)&pfnREMR3NotifyInterruptClear, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1072 { "REMR3NotifyTimerPending", (void *)&pfnREMR3NotifyTimerPending, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1073 { "REMR3NotifyDmaPending", (void *)&pfnREMR3NotifyDmaPending, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1074 { "REMR3NotifyQueuePending", (void *)&pfnREMR3NotifyQueuePending, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1075 { "REMR3NotifyFF", (void *)&pfnREMR3NotifyFF, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1076 { "REMR3NotifyCodePageChanged", (void *)&pfnREMR3NotifyCodePageChanged, &g_aArgsNotifyCodePageChanged[0], RT_ELEMENTS(g_aArgsNotifyCodePageChanged), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1077 { "REMR3NotifyPendingInterrupt", (void *)&pfnREMR3NotifyPendingInterrupt, &g_aArgsNotifyPendingInterrupt[0], RT_ELEMENTS(g_aArgsNotifyPendingInterrupt), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1078 { "REMR3QueryPendingInterrupt", (void *)&pfnREMR3QueryPendingInterrupt, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1079 { "REMR3DisasEnableStepping", (void *)&pfnREMR3DisasEnableStepping, &g_aArgsDisasEnableStepping[0], RT_ELEMENTS(g_aArgsDisasEnableStepping), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1080 { "REMR3IsPageAccessHandled", (void *)&pfnREMR3IsPageAccessHandled, &g_aArgsIsPageAccessHandled[0], RT_ELEMENTS(g_aArgsIsPageAccessHandled), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL }
1081};
1082
1083
1084/**
1085 * Descriptors for the functions imported from VBoxVMM.
1086 */
1087static REMFNDESC g_aVMMImports[] =
1088{
1089 { "CPUMAreHiddenSelRegsValid", (void *)(uintptr_t)&CPUMAreHiddenSelRegsValid, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1090 { "CPUMGetAndClearChangedFlagsREM", (void *)(uintptr_t)&CPUMGetAndClearChangedFlagsREM, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(unsigned), NULL },
1091 { "CPUMSetChangedFlags", (void *)(uintptr_t)&CPUMSetChangedFlags, &g_aArgsCPUMSetChangedFlags[0], RT_ELEMENTS(g_aArgsCPUMSetChangedFlags), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1092 { "CPUMGetGuestCPL", (void *)(uintptr_t)&CPUMGetGuestCPL, &g_aArgsCPUMGetGuestCpl[0], RT_ELEMENTS(g_aArgsCPUMGetGuestCpl), REMFNDESC_FLAGS_RET_INT, sizeof(unsigned), NULL },
1093 { "CPUMGetGuestMsr", (void *)(uintptr_t)&CPUMGetGuestMsr, &g_aArgsCPUMGetGuestMsr[0], RT_ELEMENTS(g_aArgsCPUMGetGuestMsr), REMFNDESC_FLAGS_RET_INT, sizeof(uint64_t), NULL },
1094 { "CPUMSetGuestMsr", (void *)(uintptr_t)&CPUMSetGuestMsr, &g_aArgsCPUMSetGuestMsr[0], RT_ELEMENTS(g_aArgsCPUMSetGuestMsr), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1095 { "CPUMGetGuestCpuId", (void *)(uintptr_t)&CPUMGetGuestCpuId, &g_aArgsCPUMGetGuestCpuId[0], RT_ELEMENTS(g_aArgsCPUMGetGuestCpuId), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1096 { "CPUMGetGuestEAX", (void *)(uintptr_t)&CPUMGetGuestEAX, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1097 { "CPUMGetGuestEBP", (void *)(uintptr_t)&CPUMGetGuestEBP, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1098 { "CPUMGetGuestEBX", (void *)(uintptr_t)&CPUMGetGuestEBX, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1099 { "CPUMGetGuestECX", (void *)(uintptr_t)&CPUMGetGuestECX, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1100 { "CPUMGetGuestEDI", (void *)(uintptr_t)&CPUMGetGuestEDI, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1101 { "CPUMGetGuestEDX", (void *)(uintptr_t)&CPUMGetGuestEDX, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1102 { "CPUMGetGuestEIP", (void *)(uintptr_t)&CPUMGetGuestEIP, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1103 { "CPUMGetGuestESI", (void *)(uintptr_t)&CPUMGetGuestESI, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1104 { "CPUMGetGuestESP", (void *)(uintptr_t)&CPUMGetGuestESP, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1105 { "CPUMGetGuestCS", (void *)(uintptr_t)&CPUMGetGuestCS, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(RTSEL), NULL },
1106 { "CPUMGetGuestSS", (void *)(uintptr_t)&CPUMGetGuestSS, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(RTSEL), NULL },
1107 { "CPUMQueryGuestCtxPtr", (void *)(uintptr_t)&CPUMQueryGuestCtxPtr, &g_aArgsCPUMQueryGuestCtxPtr[0], RT_ELEMENTS(g_aArgsCPUMQueryGuestCtxPtr), REMFNDESC_FLAGS_RET_INT, sizeof(PCPUMCTX), NULL },
1108 { "CSAMR3MonitorPage", (void *)(uintptr_t)&CSAMR3MonitorPage, &g_aArgsCSAMR3MonitorPage[0], RT_ELEMENTS(g_aArgsCSAMR3MonitorPage), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1109 { "CSAMR3UnmonitorPage", (void *)(uintptr_t)&CSAMR3UnmonitorPage, &g_aArgsCSAMR3UnmonitorPage[0], RT_ELEMENTS(g_aArgsCSAMR3UnmonitorPage), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1110 { "CSAMR3RecordCallAddress", (void *)(uintptr_t)&CSAMR3RecordCallAddress, &g_aArgsCSAMR3RecordCallAddress[0], RT_ELEMENTS(g_aArgsCSAMR3RecordCallAddress), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1111#if defined(VBOX_WITH_DEBUGGER) && !(defined(RT_OS_WINDOWS) && defined(RT_ARCH_AMD64)) /* the callbacks are problematic */
1112 { "DBGCRegisterCommands", (void *)(uintptr_t)&DBGCRegisterCommands, &g_aArgsDBGCRegisterCommands[0], RT_ELEMENTS(g_aArgsDBGCRegisterCommands), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1113#endif
1114 { "DBGFR3DisasInstrEx", (void *)(uintptr_t)&DBGFR3DisasInstrEx, &g_aArgsDBGFR3DisasInstrEx[0], RT_ELEMENTS(g_aArgsDBGFR3DisasInstrEx), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1115 { "DBGFR3DisasInstrCurrentLogInternal", (void *)(uintptr_t)&DBGFR3DisasInstrCurrentLogInternal, &g_aArgsDBGFR3DisasInstrCurrentLogInternal[0], RT_ELEMENTS(g_aArgsDBGFR3DisasInstrCurrentLogInternal),REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1116 { "DBGFR3Info", (void *)(uintptr_t)&DBGFR3Info, &g_aArgsDBGFR3Info[0], RT_ELEMENTS(g_aArgsDBGFR3Info), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1117 { "DBGFR3InfoLogRelHlp", (void *)(uintptr_t)&DBGFR3InfoLogRelHlp, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1118 { "DBGFR3AsSymbolByAddr", (void *)(uintptr_t)&DBGFR3AsSymbolByAddr, &g_aArgsDBGFR3AsSymbolByAddr[0], RT_ELEMENTS(g_aArgsDBGFR3AsSymbolByAddr), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1119 { "DISInstr", (void *)(uintptr_t)&DISInstr, &g_aArgsDISInstr[0], RT_ELEMENTS(g_aArgsDISInstr), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1120 { "EMR3FatalError", (void *)(uintptr_t)&EMR3FatalError, &g_aArgsEMR3FatalError[0], RT_ELEMENTS(g_aArgsEMR3FatalError), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1121 { "EMRemLock", (void *)(uintptr_t)&EMRemLock, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1122 { "EMRemUnlock", (void *)(uintptr_t)&EMRemUnlock, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1123 { "EMRemIsLockOwner", (void *)(uintptr_t)&EMRemIsLockOwner, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, sizeof(bool), NULL },
1124 { "HWACCMR3CanExecuteGuest", (void *)(uintptr_t)&HWACCMR3CanExecuteGuest, &g_aArgsHWACCMR3CanExecuteGuest[0], RT_ELEMENTS(g_aArgsHWACCMR3CanExecuteGuest), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1125 { "IOMIOPortRead", (void *)(uintptr_t)&IOMIOPortRead, &g_aArgsIOMIOPortRead[0], RT_ELEMENTS(g_aArgsIOMIOPortRead), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1126 { "IOMIOPortWrite", (void *)(uintptr_t)&IOMIOPortWrite, &g_aArgsIOMIOPortWrite[0], RT_ELEMENTS(g_aArgsIOMIOPortWrite), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1127 { "IOMMMIORead", (void *)(uintptr_t)&IOMMMIORead, &g_aArgsIOMMMIORead[0], RT_ELEMENTS(g_aArgsIOMMMIORead), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1128 { "IOMMMIOWrite", (void *)(uintptr_t)&IOMMMIOWrite, &g_aArgsIOMMMIOWrite[0], RT_ELEMENTS(g_aArgsIOMMMIOWrite), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1129 { "MMR3HeapAlloc", (void *)(uintptr_t)&MMR3HeapAlloc, &g_aArgsMMR3HeapAlloc[0], RT_ELEMENTS(g_aArgsMMR3HeapAlloc), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1130 { "MMR3HeapAllocZ", (void *)(uintptr_t)&MMR3HeapAllocZ, &g_aArgsMMR3HeapAllocZ[0], RT_ELEMENTS(g_aArgsMMR3HeapAllocZ), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1131 { "MMR3PhysGetRamSize", (void *)(uintptr_t)&MMR3PhysGetRamSize, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(uint64_t), NULL },
1132 { "PATMIsPatchGCAddr", (void *)(uintptr_t)&PATMIsPatchGCAddr, &g_aArgsPATMIsPatchGCAddr[0], RT_ELEMENTS(g_aArgsPATMIsPatchGCAddr), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1133 { "PATMR3QueryOpcode", (void *)(uintptr_t)&PATMR3QueryOpcode, &g_aArgsPATMR3QueryOpcode[0], RT_ELEMENTS(g_aArgsPATMR3QueryOpcode), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1134 { "PATMR3QueryPatchMemGC", (void *)(uintptr_t)&PATMR3QueryPatchMemGC, &g_aArgsPATMR3QueryPatchMem[0], RT_ELEMENTS(g_aArgsPATMR3QueryPatchMem), REMFNDESC_FLAGS_RET_INT, sizeof(RTGCPTR), NULL },
1135 { "PATMR3QueryPatchMemHC", (void *)(uintptr_t)&PATMR3QueryPatchMemHC, &g_aArgsPATMR3QueryPatchMem[0], RT_ELEMENTS(g_aArgsPATMR3QueryPatchMem), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1136#ifdef VBOX_WITH_VMI
1137 { "PARAVIsBiosCall", (void *)(uintptr_t)&PARAVIsBiosCall, &g_aArgsPARAVIsBiosCall[0], RT_ELEMENTS(g_aArgsPARAVIsBiosCall), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1138#endif
1139 { "PDMApicGetBase", (void *)(uintptr_t)&PDMApicGetBase, &g_aArgsPDMApicGetBase[0], RT_ELEMENTS(g_aArgsPDMApicGetBase), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1140 { "PDMApicGetTPR", (void *)(uintptr_t)&PDMApicGetTPR, &g_aArgsPDMApicGetTPR[0], RT_ELEMENTS(g_aArgsPDMApicGetTPR), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1141 { "PDMApicSetBase", (void *)(uintptr_t)&PDMApicSetBase, &g_aArgsPDMApicSetBase[0], RT_ELEMENTS(g_aArgsPDMApicSetBase), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1142 { "PDMApicSetTPR", (void *)(uintptr_t)&PDMApicSetTPR, &g_aArgsPDMApicSetTPR[0], RT_ELEMENTS(g_aArgsPDMApicSetTPR), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1143 { "PDMApicWriteMSR", (void *)(uintptr_t)&PDMApicWriteMSR, &g_aArgsPDMApicWriteMSR[0], RT_ELEMENTS(g_aArgsPDMApicWriteMSR), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1144 { "PDMApicReadMSR", (void *)(uintptr_t)&PDMApicReadMSR, &g_aArgsPDMApicReadMSR[0], RT_ELEMENTS(g_aArgsPDMApicReadMSR), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1145 { "PDMR3DmaRun", (void *)(uintptr_t)&PDMR3DmaRun, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1146 { "PDMR3CritSectInit", (void *)(uintptr_t)&PDMR3CritSectInit, &g_aArgsPDMR3CritSectInit[0], RT_ELEMENTS(g_aArgsPDMR3CritSectInit), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1147 { "PDMCritSectEnter", (void *)(uintptr_t)&PDMCritSectEnter, &g_aArgsPDMCritSectEnter[0], RT_ELEMENTS(g_aArgsPDMCritSectEnter), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1148 { "PDMCritSectLeave", (void *)(uintptr_t)&PDMCritSectLeave, &g_aArgsPTR[0], RT_ELEMENTS(g_aArgsPTR), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1149
1150 { "PDMGetInterrupt", (void *)(uintptr_t)&PDMGetInterrupt, &g_aArgsPDMGetInterrupt[0], RT_ELEMENTS(g_aArgsPDMGetInterrupt), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1151 { "PDMIsaSetIrq", (void *)(uintptr_t)&PDMIsaSetIrq, &g_aArgsPDMIsaSetIrq[0], RT_ELEMENTS(g_aArgsPDMIsaSetIrq), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1152 { "PGMGetGuestMode", (void *)(uintptr_t)&PGMGetGuestMode, &g_aArgsPGMGetGuestMode[0], RT_ELEMENTS(g_aArgsPGMGetGuestMode), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1153 { "PGMGstGetPage", (void *)(uintptr_t)&PGMGstGetPage, &g_aArgsPGMGstGetPage[0], RT_ELEMENTS(g_aArgsPGMGstGetPage), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1154 { "PGMInvalidatePage", (void *)(uintptr_t)&PGMInvalidatePage, &g_aArgsPGMInvalidatePage[0], RT_ELEMENTS(g_aArgsPGMInvalidatePage), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1155 { "PGMPhysIsGCPhysValid", (void *)(uintptr_t)&PGMPhysIsGCPhysValid, &g_aArgsPGMPhysIsGCPhysValid[0], RT_ELEMENTS(g_aArgsPGMPhysIsGCPhysValid), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1156 { "PGMPhysIsA20Enabled", (void *)(uintptr_t)&PGMPhysIsA20Enabled, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1157 { "PGMPhysRead", (void *)(uintptr_t)&PGMPhysRead, &g_aArgsPGMPhysRead[0], RT_ELEMENTS(g_aArgsPGMPhysRead), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1158 { "PGMPhysSimpleReadGCPtr", (void *)(uintptr_t)&PGMPhysSimpleReadGCPtr, &g_aArgsPGMPhysSimpleReadGCPtr[0], RT_ELEMENTS(g_aArgsPGMPhysSimpleReadGCPtr), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1159 { "PGMPhysWrite", (void *)(uintptr_t)&PGMPhysWrite, &g_aArgsPGMPhysWrite[0], RT_ELEMENTS(g_aArgsPGMPhysWrite), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1160 { "PGMChangeMode", (void *)(uintptr_t)&PGMChangeMode, &g_aArgsPGMChangeMode[0], RT_ELEMENTS(g_aArgsPGMChangeMode), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1161 { "PGMFlushTLB", (void *)(uintptr_t)&PGMFlushTLB, &g_aArgsPGMFlushTLB[0], RT_ELEMENTS(g_aArgsPGMFlushTLB), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1162 { "PGMR3PhysReadU8", (void *)(uintptr_t)&PGMR3PhysReadU8, &g_aArgsPGMR3PhysReadUxx[0], RT_ELEMENTS(g_aArgsPGMR3PhysReadUxx), REMFNDESC_FLAGS_RET_INT, sizeof(uint8_t), NULL },
1163 { "PGMR3PhysReadU16", (void *)(uintptr_t)&PGMR3PhysReadU16, &g_aArgsPGMR3PhysReadUxx[0], RT_ELEMENTS(g_aArgsPGMR3PhysReadUxx), REMFNDESC_FLAGS_RET_INT, sizeof(uint16_t), NULL },
1164 { "PGMR3PhysReadU32", (void *)(uintptr_t)&PGMR3PhysReadU32, &g_aArgsPGMR3PhysReadUxx[0], RT_ELEMENTS(g_aArgsPGMR3PhysReadUxx), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL },
1165 { "PGMR3PhysReadU64", (void *)(uintptr_t)&PGMR3PhysReadU64, &g_aArgsPGMR3PhysReadUxx[0], RT_ELEMENTS(g_aArgsPGMR3PhysReadUxx), REMFNDESC_FLAGS_RET_INT, sizeof(uint64_t), NULL },
1166 { "PGMR3PhysWriteU8", (void *)(uintptr_t)&PGMR3PhysWriteU8, &g_aArgsPGMR3PhysWriteU8[0], RT_ELEMENTS(g_aArgsPGMR3PhysWriteU8), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1167 { "PGMR3PhysWriteU16", (void *)(uintptr_t)&PGMR3PhysWriteU16, &g_aArgsPGMR3PhysWriteU16[0], RT_ELEMENTS(g_aArgsPGMR3PhysWriteU16), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1168 { "PGMR3PhysWriteU32", (void *)(uintptr_t)&PGMR3PhysWriteU32, &g_aArgsPGMR3PhysWriteU32[0], RT_ELEMENTS(g_aArgsPGMR3PhysWriteU32), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1169 { "PGMR3PhysWriteU64", (void *)(uintptr_t)&PGMR3PhysWriteU64, &g_aArgsPGMR3PhysWriteU64[0], RT_ELEMENTS(g_aArgsPGMR3PhysWriteU32), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1170 { "PGMR3PhysTlbGCPhys2Ptr", (void *)(uintptr_t)&PGMR3PhysTlbGCPhys2Ptr, &g_aArgsPGMR3PhysTlbGCPhys2Ptr[0], RT_ELEMENTS(g_aArgsPGMR3PhysTlbGCPhys2Ptr), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1171 { "PGMIsLockOwner", (void *)(uintptr_t)&PGMIsLockOwner, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1172 { "SSMR3GetGCPtr", (void *)(uintptr_t)&SSMR3GetGCPtr, &g_aArgsSSMR3GetGCPtr[0], RT_ELEMENTS(g_aArgsSSMR3GetGCPtr), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1173 { "SSMR3GetMem", (void *)(uintptr_t)&SSMR3GetMem, &g_aArgsSSMR3GetMem[0], RT_ELEMENTS(g_aArgsSSMR3GetMem), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1174 { "SSMR3GetU32", (void *)(uintptr_t)&SSMR3GetU32, &g_aArgsSSMR3GetU32[0], RT_ELEMENTS(g_aArgsSSMR3GetU32), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1175 { "SSMR3GetUInt", (void *)(uintptr_t)&SSMR3GetUInt, &g_aArgsSSMR3GetUInt[0], RT_ELEMENTS(g_aArgsSSMR3GetUInt), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1176 { "SSMR3PutGCPtr", (void *)(uintptr_t)&SSMR3PutGCPtr, &g_aArgsSSMR3PutGCPtr[0], RT_ELEMENTS(g_aArgsSSMR3PutGCPtr), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1177 { "SSMR3PutMem", (void *)(uintptr_t)&SSMR3PutMem, &g_aArgsSSMR3PutMem[0], RT_ELEMENTS(g_aArgsSSMR3PutMem), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1178 { "SSMR3PutU32", (void *)(uintptr_t)&SSMR3PutU32, &g_aArgsSSMR3PutU32[0], RT_ELEMENTS(g_aArgsSSMR3PutU32), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1179 { "SSMR3PutUInt", (void *)(uintptr_t)&SSMR3PutUInt, &g_aArgsSSMR3PutUInt[0], RT_ELEMENTS(g_aArgsSSMR3PutUInt), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1180 { "SSMR3RegisterInternal", (void *)(uintptr_t)&SSMR3RegisterInternal, &g_aArgsSSMR3RegisterInternal[0], RT_ELEMENTS(g_aArgsSSMR3RegisterInternal), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1181 { "STAMR3Register", (void *)(uintptr_t)&STAMR3Register, &g_aArgsSTAMR3Register[0], RT_ELEMENTS(g_aArgsSTAMR3Register), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1182 { "STAMR3Deregister", (void *)(uintptr_t)&STAMR3Deregister, &g_aArgsSTAMR3Deregister[0], RT_ELEMENTS(g_aArgsSTAMR3Deregister), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1183 { "TMCpuTickGet", (void *)(uintptr_t)&TMCpuTickGet, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(uint64_t), NULL },
1184 { "TMR3NotifySuspend", (void *)(uintptr_t)&TMR3NotifySuspend, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1185 { "TMR3NotifyResume", (void *)(uintptr_t)&TMR3NotifyResume, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1186 { "TMNotifyEndOfExecution", (void *)(uintptr_t)&TMNotifyEndOfExecution, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1187 { "TMNotifyStartOfExecution", (void *)(uintptr_t)&TMNotifyStartOfExecution, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1188 { "TMTimerPollBool", (void *)(uintptr_t)&TMTimerPollBool, &g_aArgsVMandVMCPU[0], RT_ELEMENTS(g_aArgsVMandVMCPU), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1189 { "TMR3TimerQueuesDo", (void *)(uintptr_t)&TMR3TimerQueuesDo, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1190 { "TRPMAssertTrap", (void *)(uintptr_t)&TRPMAssertTrap, &g_aArgsTRPMAssertTrap[0], RT_ELEMENTS(g_aArgsTRPMAssertTrap), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1191 { "TRPMGetErrorCode", (void *)(uintptr_t)&TRPMGetErrorCode, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(RTGCUINT), NULL },
1192 { "TRPMGetFaultAddress", (void *)(uintptr_t)&TRPMGetFaultAddress, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(RTGCUINTPTR),NULL },
1193 { "TRPMQueryTrap", (void *)(uintptr_t)&TRPMQueryTrap, &g_aArgsTRPMQueryTrap[0], RT_ELEMENTS(g_aArgsTRPMQueryTrap), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1194 { "TRPMResetTrap", (void *)(uintptr_t)&TRPMResetTrap, &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1195 { "TRPMSetErrorCode", (void *)(uintptr_t)&TRPMSetErrorCode, &g_aArgsTRPMSetErrorCode[0], RT_ELEMENTS(g_aArgsTRPMSetErrorCode), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1196 { "TRPMSetFaultAddress", (void *)(uintptr_t)&TRPMSetFaultAddress, &g_aArgsTRPMSetFaultAddress[0], RT_ELEMENTS(g_aArgsTRPMSetFaultAddress), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1197 { "VMMGetCpu", (void *)(uintptr_t)&VMMGetCpu, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(PVMCPU), NULL },
1198 { "VMR3ReqCall", (void *)(uintptr_t)&VMR3ReqCall, &g_aArgsVMR3ReqCall[0], RT_ELEMENTS(g_aArgsVMR3ReqCall), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1199 { "VMR3ReqFree", (void *)(uintptr_t)&VMR3ReqFree, &g_aArgsVMR3ReqFree[0], RT_ELEMENTS(g_aArgsVMR3ReqFree), REMFNDESC_FLAGS_RET_INT | REMFNDESC_FLAGS_ELLIPSIS, sizeof(int), NULL },
1200 { "VMR3GetVMCPUId", (void *)(uintptr_t)&VMR3GetVMCPUId, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1201 { "VMR3GetVMCPUNativeThread", (void *)(uintptr_t)&VMR3GetVMCPUNativeThread, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1202// { "", (void *)(uintptr_t)&, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1203};
1204
1205
1206/**
1207 * Descriptors for the functions imported from VBoxRT.
1208 */
1209static REMFNDESC g_aRTImports[] =
1210{
1211 { "AssertMsg1", (void *)(uintptr_t)&AssertMsg1, &g_aArgsAssertMsg1[0], RT_ELEMENTS(g_aArgsAssertMsg1), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1212 { "AssertMsg2", (void *)(uintptr_t)&AssertMsg2, &g_aArgsAssertMsg2[0], RT_ELEMENTS(g_aArgsAssertMsg2), REMFNDESC_FLAGS_RET_VOID | REMFNDESC_FLAGS_ELLIPSIS, 0, NULL },
1213 { "RTAssertShouldPanic", (void *)(uintptr_t)&RTAssertShouldPanic, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL },
1214 { "RTLogDefaultInstance", (void *)(uintptr_t)&RTLogDefaultInstance, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(PRTLOGGER), NULL },
1215 { "RTLogRelDefaultInstance", (void *)(uintptr_t)&RTLogRelDefaultInstance, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(PRTLOGGER), NULL },
1216 { "RTLogFlags", (void *)(uintptr_t)&RTLogFlags, &g_aArgsRTLogFlags[0], RT_ELEMENTS(g_aArgsRTLogFlags), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1217 { "RTLogFlush", (void *)(uintptr_t)&RTLogFlush, &g_aArgsRTLogFlush[0], RT_ELEMENTS(g_aArgsRTLogFlush), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1218 { "RTLogLoggerEx", (void *)(uintptr_t)&RTLogLoggerEx, &g_aArgsRTLogLoggerEx[0], RT_ELEMENTS(g_aArgsRTLogLoggerEx), REMFNDESC_FLAGS_RET_VOID | REMFNDESC_FLAGS_ELLIPSIS, 0, NULL },
1219 { "RTLogLoggerExV", (void *)(uintptr_t)&RTLogLoggerExV, &g_aArgsRTLogLoggerExV[0], RT_ELEMENTS(g_aArgsRTLogLoggerExV), REMFNDESC_FLAGS_RET_VOID | REMFNDESC_FLAGS_VALIST, 0, NULL },
1220 { "RTLogPrintf", (void *)(uintptr_t)&RTLogPrintf, &g_aArgsRTLogPrintf[0], RT_ELEMENTS(g_aArgsRTLogPrintf), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1221 { "RTLogRelPrintf", (void *)(uintptr_t)&RTLogRelPrintf, &g_aArgsRTLogPrintf[0], RT_ELEMENTS(g_aArgsRTLogPrintf), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1222 { "RTMemAlloc", (void *)(uintptr_t)&RTMemAlloc, &g_aArgsSIZE_T[0], RT_ELEMENTS(g_aArgsSIZE_T), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1223 { "RTMemAllocZ", (void *)(uintptr_t)&RTMemAllocZ, &g_aArgsSIZE_T[0], RT_ELEMENTS(g_aArgsSIZE_T), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1224 { "RTMemRealloc", (void *)(uintptr_t)&RTMemRealloc, &g_aArgsRTMemRealloc[0], RT_ELEMENTS(g_aArgsRTMemRealloc), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1225 { "RTMemExecAlloc", (void *)(uintptr_t)&RTMemExecAlloc, &g_aArgsSIZE_T[0], RT_ELEMENTS(g_aArgsSIZE_T), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1226 { "RTMemExecFree", (void *)(uintptr_t)&RTMemExecFree, &g_aArgsPTR[0], RT_ELEMENTS(g_aArgsPTR), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1227 { "RTMemFree", (void *)(uintptr_t)&RTMemFree, &g_aArgsPTR[0], RT_ELEMENTS(g_aArgsPTR), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1228 { "RTMemPageAlloc", (void *)(uintptr_t)&RTMemPageAlloc, &g_aArgsSIZE_T[0], RT_ELEMENTS(g_aArgsSIZE_T), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1229 { "RTMemPageFree", (void *)(uintptr_t)&RTMemPageFree, &g_aArgsPTR[0], RT_ELEMENTS(g_aArgsPTR), REMFNDESC_FLAGS_RET_VOID, 0, NULL },
1230 { "RTMemProtect", (void *)(uintptr_t)&RTMemProtect, &g_aArgsRTMemProtect[0], RT_ELEMENTS(g_aArgsRTMemProtect), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
1231 { "RTStrPrintf", (void *)(uintptr_t)&RTStrPrintf, &g_aArgsRTStrPrintf[0], RT_ELEMENTS(g_aArgsRTStrPrintf), REMFNDESC_FLAGS_RET_INT | REMFNDESC_FLAGS_ELLIPSIS, sizeof(size_t), NULL },
1232 { "RTStrPrintfV", (void *)(uintptr_t)&RTStrPrintfV, &g_aArgsRTStrPrintfV[0], RT_ELEMENTS(g_aArgsRTStrPrintfV), REMFNDESC_FLAGS_RET_INT | REMFNDESC_FLAGS_VALIST, sizeof(size_t), NULL },
1233 { "RTThreadSelf", (void *)(uintptr_t)&RTThreadSelf, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(RTTHREAD), NULL },
1234 { "RTThreadNativeSelf", (void *)(uintptr_t)&RTThreadNativeSelf, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(RTNATIVETHREAD), NULL },
1235 { "RTThreadGetWriteLockCount", (void *)(uintptr_t)&RTThreadGetWriteLockCount, &g_aArgsThread[0], 0, REMFNDESC_FLAGS_RET_INT, sizeof(int32_t), NULL },
1236};
1237
1238
1239/**
1240 * Descriptors for the functions imported from VBoxRT.
1241 */
1242static REMFNDESC g_aCRTImports[] =
1243{
1244 { "memcpy", (void *)(uintptr_t)&memcpy, &g_aArgsmemcpy[0], RT_ELEMENTS(g_aArgsmemcpy), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL },
1245 { "memset", (void *)(uintptr_t)&memset, &g_aArgsmemset[0], RT_ELEMENTS(g_aArgsmemset), REMFNDESC_FLAGS_RET_INT, sizeof(void *), NULL }
1246/*
1247floor floor
1248memcpy memcpy
1249sqrt sqrt
1250sqrtf sqrtf
1251*/
1252};
1253
1254
1255# if defined(USE_REM_CALLING_CONVENTION_GLUE) || defined(USE_REM_IMPORT_JUMP_GLUE)
1256/** LIFO of read-write-executable memory chunks used for wrappers. */
1257static PREMEXECMEM g_pExecMemHead;
1258# endif
1259
1260
1261/*******************************************************************************
1262* Internal Functions *
1263*******************************************************************************/
1264static int remGenerateExportGlue(PRTUINTPTR pValue, PCREMFNDESC pDesc);
1265
1266# ifdef USE_REM_CALLING_CONVENTION_GLUE
1267DECLASM(int) WrapGCC2MSC0Int(void); DECLASM(int) WrapGCC2MSC0Int_EndProc(void);
1268DECLASM(int) WrapGCC2MSC1Int(void); DECLASM(int) WrapGCC2MSC1Int_EndProc(void);
1269DECLASM(int) WrapGCC2MSC2Int(void); DECLASM(int) WrapGCC2MSC2Int_EndProc(void);
1270DECLASM(int) WrapGCC2MSC3Int(void); DECLASM(int) WrapGCC2MSC3Int_EndProc(void);
1271DECLASM(int) WrapGCC2MSC4Int(void); DECLASM(int) WrapGCC2MSC4Int_EndProc(void);
1272DECLASM(int) WrapGCC2MSC5Int(void); DECLASM(int) WrapGCC2MSC5Int_EndProc(void);
1273DECLASM(int) WrapGCC2MSC6Int(void); DECLASM(int) WrapGCC2MSC6Int_EndProc(void);
1274DECLASM(int) WrapGCC2MSC7Int(void); DECLASM(int) WrapGCC2MSC7Int_EndProc(void);
1275DECLASM(int) WrapGCC2MSC8Int(void); DECLASM(int) WrapGCC2MSC8Int_EndProc(void);
1276DECLASM(int) WrapGCC2MSC9Int(void); DECLASM(int) WrapGCC2MSC9Int_EndProc(void);
1277DECLASM(int) WrapGCC2MSC10Int(void); DECLASM(int) WrapGCC2MSC10Int_EndProc(void);
1278DECLASM(int) WrapGCC2MSC11Int(void); DECLASM(int) WrapGCC2MSC11Int_EndProc(void);
1279DECLASM(int) WrapGCC2MSC12Int(void); DECLASM(int) WrapGCC2MSC12Int_EndProc(void);
1280DECLASM(int) WrapGCC2MSCVariadictInt(void); DECLASM(int) WrapGCC2MSCVariadictInt_EndProc(void);
1281DECLASM(int) WrapGCC2MSC_SSMR3RegisterInternal(void); DECLASM(int) WrapGCC2MSC_SSMR3RegisterInternal_EndProc(void);
1282
1283DECLASM(int) WrapMSC2GCC0Int(void); DECLASM(int) WrapMSC2GCC0Int_EndProc(void);
1284DECLASM(int) WrapMSC2GCC1Int(void); DECLASM(int) WrapMSC2GCC1Int_EndProc(void);
1285DECLASM(int) WrapMSC2GCC2Int(void); DECLASM(int) WrapMSC2GCC2Int_EndProc(void);
1286DECLASM(int) WrapMSC2GCC3Int(void); DECLASM(int) WrapMSC2GCC3Int_EndProc(void);
1287DECLASM(int) WrapMSC2GCC4Int(void); DECLASM(int) WrapMSC2GCC4Int_EndProc(void);
1288DECLASM(int) WrapMSC2GCC5Int(void); DECLASM(int) WrapMSC2GCC5Int_EndProc(void);
1289DECLASM(int) WrapMSC2GCC6Int(void); DECLASM(int) WrapMSC2GCC6Int_EndProc(void);
1290DECLASM(int) WrapMSC2GCC7Int(void); DECLASM(int) WrapMSC2GCC7Int_EndProc(void);
1291DECLASM(int) WrapMSC2GCC8Int(void); DECLASM(int) WrapMSC2GCC8Int_EndProc(void);
1292DECLASM(int) WrapMSC2GCC9Int(void); DECLASM(int) WrapMSC2GCC9Int_EndProc(void);
1293# endif
1294
1295
1296# if defined(USE_REM_CALLING_CONVENTION_GLUE) || defined(USE_REM_IMPORT_JUMP_GLUE)
1297/**
1298 * Allocates a block of memory for glue code.
1299 *
1300 * The returned memory is padded with INT3s.
1301 *
1302 * @returns Pointer to the allocated memory.
1303 * @param The amount of memory to allocate.
1304 */
1305static void *remAllocGlue(size_t cb)
1306{
1307 PREMEXECMEM pCur = g_pExecMemHead;
1308 uint32_t cbAligned = (uint32_t)RT_ALIGN_32(cb, 32);
1309 while (pCur)
1310 {
1311 if (pCur->cb - pCur->off >= cbAligned)
1312 {
1313 void *pv = (uint8_t *)pCur + pCur->off;
1314 pCur->off += cbAligned;
1315 return memset(pv, 0xcc, cbAligned);
1316 }
1317 pCur = pCur->pNext;
1318 }
1319
1320 /* add a new chunk */
1321 AssertReturn(_64K - RT_ALIGN_Z(sizeof(*pCur), 32) > cbAligned, NULL);
1322 pCur = (PREMEXECMEM)RTMemExecAlloc(_64K);
1323 AssertReturn(pCur, NULL);
1324 pCur->cb = _64K;
1325 pCur->off = RT_ALIGN_32(sizeof(*pCur), 32) + cbAligned;
1326 pCur->pNext = g_pExecMemHead;
1327 g_pExecMemHead = pCur;
1328 return memset((uint8_t *)pCur + RT_ALIGN_Z(sizeof(*pCur), 32), 0xcc, cbAligned);
1329}
1330# endif /* USE_REM_CALLING_CONVENTION_GLUE || USE_REM_IMPORT_JUMP_GLUE */
1331
1332
1333# ifdef USE_REM_CALLING_CONVENTION_GLUE
1334/**
1335 * Checks if a function is all straight forward integers.
1336 *
1337 * @returns True if it's simple, false if it's bothersome.
1338 * @param pDesc The function descriptor.
1339 */
1340static bool remIsFunctionAllInts(PCREMFNDESC pDesc)
1341{
1342 if ( ( (pDesc->fFlags & REMFNDESC_FLAGS_RET_TYPE_MASK) != REMFNDESC_FLAGS_RET_INT
1343 || pDesc->cbReturn > sizeof(uint64_t))
1344 && (pDesc->fFlags & REMFNDESC_FLAGS_RET_TYPE_MASK) != REMFNDESC_FLAGS_RET_VOID)
1345 return false;
1346 unsigned i = pDesc->cParams;
1347 while (i-- > 0)
1348 switch (pDesc->paParams[i].fFlags & REMPARMDESC_FLAGS_TYPE_MASK)
1349 {
1350 case REMPARMDESC_FLAGS_INT:
1351 case REMPARMDESC_FLAGS_GCPTR:
1352 case REMPARMDESC_FLAGS_GCPHYS:
1353 case REMPARMDESC_FLAGS_HCPHYS:
1354 break;
1355
1356 default:
1357 AssertReleaseMsgFailed(("Invalid param flags %#x for #%d of %s!\n", pDesc->paParams[i].fFlags, i, pDesc->pszName));
1358 case REMPARMDESC_FLAGS_VALIST:
1359 case REMPARMDESC_FLAGS_ELLIPSIS:
1360 case REMPARMDESC_FLAGS_FLOAT:
1361 case REMPARMDESC_FLAGS_STRUCT:
1362 case REMPARMDESC_FLAGS_PFN:
1363 return false;
1364 }
1365 return true;
1366}
1367
1368
1369/**
1370 * Checks if the function has an ellipsis (...) argument.
1371 *
1372 * @returns true if it has an ellipsis, otherwise false.
1373 * @param pDesc The function descriptor.
1374 */
1375static bool remHasFunctionEllipsis(PCREMFNDESC pDesc)
1376{
1377 unsigned i = pDesc->cParams;
1378 while (i-- > 0)
1379 if ((pDesc->paParams[i].fFlags & REMPARMDESC_FLAGS_TYPE_MASK) == REMPARMDESC_FLAGS_ELLIPSIS)
1380 return true;
1381 return false;
1382}
1383
1384
1385/**
1386 * Checks if the function uses floating point (FP) arguments or return value.
1387 *
1388 * @returns true if it uses floating point, otherwise false.
1389 * @param pDesc The function descriptor.
1390 */
1391static bool remIsFunctionUsingFP(PCREMFNDESC pDesc)
1392{
1393 if ((pDesc->fFlags & REMFNDESC_FLAGS_RET_TYPE_MASK) == REMFNDESC_FLAGS_RET_FLOAT)
1394 return true;
1395 unsigned i = pDesc->cParams;
1396 while (i-- > 0)
1397 if ((pDesc->paParams[i].fFlags & REMPARMDESC_FLAGS_TYPE_MASK) == REMPARMDESC_FLAGS_FLOAT)
1398 return true;
1399 return false;
1400}
1401
1402
1403/** @name The export and import fixups.
1404 * @{ */
1405#define REM_FIXUP_32_REAL_STUFF UINT32_C(0xdeadbeef)
1406#define REM_FIXUP_64_REAL_STUFF UINT64_C(0xdeadf00df00ddead)
1407#define REM_FIXUP_64_DESC UINT64_C(0xdead00010001dead)
1408#define REM_FIXUP_64_LOG_ENTRY UINT64_C(0xdead00020002dead)
1409#define REM_FIXUP_64_LOG_EXIT UINT64_C(0xdead00030003dead)
1410#define REM_FIXUP_64_WRAP_GCC_CB UINT64_C(0xdead00040004dead)
1411/** @} */
1412
1413
1414/**
1415 * Entry logger function.
1416 *
1417 * @param pDesc The description.
1418 */
1419DECLASM(void) remLogEntry(PCREMFNDESC pDesc)
1420{
1421 RTPrintf("calling %s\n", pDesc->pszName);
1422}
1423
1424
1425/**
1426 * Exit logger function.
1427 *
1428 * @param pDesc The description.
1429 * @param pvRet The return code.
1430 */
1431DECLASM(void) remLogExit(PCREMFNDESC pDesc, void *pvRet)
1432{
1433 RTPrintf("returning %p from %s\n", pvRet, pDesc->pszName);
1434}
1435
1436
1437/**
1438 * Creates a wrapper for the specified callback function at run time.
1439 *
1440 * @param pDesc The function descriptor.
1441 * @param pValue Upon entry *pValue contains the address of the function to be wrapped.
1442 * Upon return *pValue contains the address of the wrapper glue function.
1443 * @param iParam The parameter index in the function descriptor (0 based).
1444 * If UINT32_MAX pDesc is the descriptor for *pValue.
1445 */
1446DECLASM(void) remWrapGCCCallback(PCREMFNDESC pDesc, PRTUINTPTR pValue, uint32_t iParam)
1447{
1448 AssertPtr(pDesc);
1449 AssertPtr(pValue);
1450
1451 /*
1452 * Simple?
1453 */
1454 if (!*pValue)
1455 return;
1456
1457 /*
1458 * Locate the right function descriptor.
1459 */
1460 if (iParam != UINT32_MAX)
1461 {
1462 AssertRelease(iParam < pDesc->cParams);
1463 pDesc = (PCREMFNDESC)pDesc->paParams[iParam].pvExtra;
1464 AssertPtr(pDesc);
1465 }
1466
1467 /*
1468 * When we get serious, here is where to insert the hash table lookup.
1469 */
1470
1471 /*
1472 * Create a new glue patch.
1473 */
1474#ifdef RT_OS_WINDOWS
1475 int rc = remGenerateExportGlue(pValue, pDesc);
1476#else
1477#error "port me"
1478#endif
1479 AssertReleaseRC(rc);
1480
1481 /*
1482 * Add it to the hash (later)
1483 */
1484}
1485
1486
1487/**
1488 * Fixes export glue.
1489 *
1490 * @param pvGlue The glue code.
1491 * @param cb The size of the glue code.
1492 * @param pvExport The address of the export we're wrapping.
1493 * @param pDesc The export descriptor.
1494 */
1495static void remGenerateExportGlueFixup(void *pvGlue, size_t cb, uintptr_t uExport, PCREMFNDESC pDesc)
1496{
1497 union
1498 {
1499 uint8_t *pu8;
1500 int32_t *pi32;
1501 uint32_t *pu32;
1502 uint64_t *pu64;
1503 void *pv;
1504 } u;
1505 u.pv = pvGlue;
1506
1507 while (cb >= 4)
1508 {
1509 /** @todo add defines for the fixup constants... */
1510 if (*u.pu32 == REM_FIXUP_32_REAL_STUFF)
1511 {
1512 /* 32-bit rel jmp/call to real export. */
1513 *u.pi32 = uExport - (uintptr_t)(u.pi32 + 1);
1514 Assert((uintptr_t)(u.pi32 + 1) + *u.pi32 == uExport);
1515 u.pi32++;
1516 cb -= 4;
1517 continue;
1518 }
1519 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_REAL_STUFF)
1520 {
1521 /* 64-bit address to the real export. */
1522 *u.pu64++ = uExport;
1523 cb -= 8;
1524 continue;
1525 }
1526 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_DESC)
1527 {
1528 /* 64-bit address to the descriptor. */
1529 *u.pu64++ = (uintptr_t)pDesc;
1530 cb -= 8;
1531 continue;
1532 }
1533 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_WRAP_GCC_CB)
1534 {
1535 /* 64-bit address to the entry logger function. */
1536 *u.pu64++ = (uintptr_t)remWrapGCCCallback;
1537 cb -= 8;
1538 continue;
1539 }
1540 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_LOG_ENTRY)
1541 {
1542 /* 64-bit address to the entry logger function. */
1543 *u.pu64++ = (uintptr_t)remLogEntry;
1544 cb -= 8;
1545 continue;
1546 }
1547 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_LOG_EXIT)
1548 {
1549 /* 64-bit address to the entry logger function. */
1550 *u.pu64++ = (uintptr_t)remLogExit;
1551 cb -= 8;
1552 continue;
1553 }
1554
1555 /* move on. */
1556 u.pu8++;
1557 cb--;
1558 }
1559}
1560
1561
1562/**
1563 * Fixes import glue.
1564 *
1565 * @param pvGlue The glue code.
1566 * @param cb The size of the glue code.
1567 * @param pDesc The import descriptor.
1568 */
1569static void remGenerateImportGlueFixup(void *pvGlue, size_t cb, PCREMFNDESC pDesc)
1570{
1571 union
1572 {
1573 uint8_t *pu8;
1574 int32_t *pi32;
1575 uint32_t *pu32;
1576 uint64_t *pu64;
1577 void *pv;
1578 } u;
1579 u.pv = pvGlue;
1580
1581 while (cb >= 4)
1582 {
1583 if (*u.pu32 == REM_FIXUP_32_REAL_STUFF)
1584 {
1585 /* 32-bit rel jmp/call to real function. */
1586 *u.pi32 = (uintptr_t)pDesc->pv - (uintptr_t)(u.pi32 + 1);
1587 Assert((uintptr_t)(u.pi32 + 1) + *u.pi32 == (uintptr_t)pDesc->pv);
1588 u.pi32++;
1589 cb -= 4;
1590 continue;
1591 }
1592 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_REAL_STUFF)
1593 {
1594 /* 64-bit address to the real function. */
1595 *u.pu64++ = (uintptr_t)pDesc->pv;
1596 cb -= 8;
1597 continue;
1598 }
1599 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_DESC)
1600 {
1601 /* 64-bit address to the descriptor. */
1602 *u.pu64++ = (uintptr_t)pDesc;
1603 cb -= 8;
1604 continue;
1605 }
1606 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_WRAP_GCC_CB)
1607 {
1608 /* 64-bit address to the entry logger function. */
1609 *u.pu64++ = (uintptr_t)remWrapGCCCallback;
1610 cb -= 8;
1611 continue;
1612 }
1613 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_LOG_ENTRY)
1614 {
1615 /* 64-bit address to the entry logger function. */
1616 *u.pu64++ = (uintptr_t)remLogEntry;
1617 cb -= 8;
1618 continue;
1619 }
1620 if (cb >= 8 && *u.pu64 == REM_FIXUP_64_LOG_EXIT)
1621 {
1622 /* 64-bit address to the entry logger function. */
1623 *u.pu64++ = (uintptr_t)remLogExit;
1624 cb -= 8;
1625 continue;
1626 }
1627
1628 /* move on. */
1629 u.pu8++;
1630 cb--;
1631 }
1632}
1633
1634# endif /* USE_REM_CALLING_CONVENTION_GLUE */
1635
1636
1637/**
1638 * Generate wrapper glue code for an export.
1639 *
1640 * This is only used on win64 when loading a 64-bit linux module. So, on other
1641 * platforms it will not do anything.
1642 *
1643 * @returns VBox status code.
1644 * @param pValue IN: Where to get the address of the function to wrap.
1645 * OUT: Where to store the glue address.
1646 * @param pDesc The export descriptor.
1647 */
1648static int remGenerateExportGlue(PRTUINTPTR pValue, PCREMFNDESC pDesc)
1649{
1650# ifdef USE_REM_CALLING_CONVENTION_GLUE
1651 uintptr_t *ppfn = (uintptr_t *)pDesc->pv;
1652
1653 uintptr_t pfn = 0; /* a little hack for the callback glue */
1654 if (!ppfn)
1655 ppfn = &pfn;
1656
1657 if (!*ppfn)
1658 {
1659 if (remIsFunctionAllInts(pDesc))
1660 {
1661 static const struct { void *pvStart, *pvEnd; } s_aTemplates[] =
1662 {
1663 { (void *)&WrapMSC2GCC0Int, (void *)&WrapMSC2GCC0Int_EndProc },
1664 { (void *)&WrapMSC2GCC1Int, (void *)&WrapMSC2GCC1Int_EndProc },
1665 { (void *)&WrapMSC2GCC2Int, (void *)&WrapMSC2GCC2Int_EndProc },
1666 { (void *)&WrapMSC2GCC3Int, (void *)&WrapMSC2GCC3Int_EndProc },
1667 { (void *)&WrapMSC2GCC4Int, (void *)&WrapMSC2GCC4Int_EndProc },
1668 { (void *)&WrapMSC2GCC5Int, (void *)&WrapMSC2GCC5Int_EndProc },
1669 { (void *)&WrapMSC2GCC6Int, (void *)&WrapMSC2GCC6Int_EndProc },
1670 { (void *)&WrapMSC2GCC7Int, (void *)&WrapMSC2GCC7Int_EndProc },
1671 { (void *)&WrapMSC2GCC8Int, (void *)&WrapMSC2GCC8Int_EndProc },
1672 { (void *)&WrapMSC2GCC9Int, (void *)&WrapMSC2GCC9Int_EndProc },
1673 };
1674 const unsigned i = pDesc->cParams;
1675 AssertReleaseMsg(i < RT_ELEMENTS(s_aTemplates), ("%d (%s)\n", i, pDesc->pszName));
1676
1677 /* duplicate the patch. */
1678 const size_t cb = (uintptr_t)s_aTemplates[i].pvEnd - (uintptr_t)s_aTemplates[i].pvStart;
1679 uint8_t *pb = (uint8_t *)remAllocGlue(cb);
1680 AssertReturn(pb, VERR_NO_MEMORY);
1681 memcpy(pb, s_aTemplates[i].pvStart, cb);
1682
1683 /* fix it up. */
1684 remGenerateExportGlueFixup(pb, cb, *pValue, pDesc);
1685 *ppfn = (uintptr_t)pb;
1686 }
1687 else
1688 {
1689 /* custom hacks - it's simpler to make assembly templates than writing a more generic code generator... */
1690 static const struct { const char *pszName; PFNRT pvStart, pvEnd; } s_aTemplates[] =
1691 {
1692 { "somefunction", (PFNRT)&WrapMSC2GCC9Int, (PFNRT)&WrapMSC2GCC9Int_EndProc },
1693 };
1694 unsigned i;
1695 for (i = 0; i < RT_ELEMENTS(s_aTemplates); i++)
1696 if (!strcmp(pDesc->pszName, s_aTemplates[i].pszName))
1697 break;
1698 AssertReleaseMsgReturn(i < RT_ELEMENTS(s_aTemplates), ("Not implemented! %s\n", pDesc->pszName), VERR_NOT_IMPLEMENTED);
1699
1700 /* duplicate the patch. */
1701 const size_t cb = (uintptr_t)s_aTemplates[i].pvEnd - (uintptr_t)s_aTemplates[i].pvStart;
1702 uint8_t *pb = (uint8_t *)remAllocGlue(cb);
1703 AssertReturn(pb, VERR_NO_MEMORY);
1704 memcpy(pb, s_aTemplates[i].pvStart, cb);
1705
1706 /* fix it up. */
1707 remGenerateExportGlueFixup(pb, cb, *pValue, pDesc);
1708 *ppfn = (uintptr_t)pb;
1709 }
1710 }
1711 *pValue = *ppfn;
1712 return VINF_SUCCESS;
1713# else /* !USE_REM_CALLING_CONVENTION_GLUE */
1714 return VINF_SUCCESS;
1715# endif /* !USE_REM_CALLING_CONVENTION_GLUE */
1716}
1717
1718
1719/**
1720 * Generate wrapper glue code for an import.
1721 *
1722 * This is only used on win64 when loading a 64-bit linux module. So, on other
1723 * platforms it will simply return the address of the imported function
1724 * without generating any glue code.
1725 *
1726 * @returns VBox status code.
1727 * @param pValue Where to store the glue address.
1728 * @param pDesc The export descriptor.
1729 */
1730static int remGenerateImportGlue(PRTUINTPTR pValue, PREMFNDESC pDesc)
1731{
1732# if defined(USE_REM_CALLING_CONVENTION_GLUE) || defined(USE_REM_IMPORT_JUMP_GLUE)
1733 if (!pDesc->pvWrapper)
1734 {
1735# ifdef USE_REM_CALLING_CONVENTION_GLUE
1736 if (remIsFunctionAllInts(pDesc))
1737 {
1738 static const struct { void *pvStart, *pvEnd; } s_aTemplates[] =
1739 {
1740 { (void *)&WrapGCC2MSC0Int, (void *)&WrapGCC2MSC0Int_EndProc },
1741 { (void *)&WrapGCC2MSC1Int, (void *)&WrapGCC2MSC1Int_EndProc },
1742 { (void *)&WrapGCC2MSC2Int, (void *)&WrapGCC2MSC2Int_EndProc },
1743 { (void *)&WrapGCC2MSC3Int, (void *)&WrapGCC2MSC3Int_EndProc },
1744 { (void *)&WrapGCC2MSC4Int, (void *)&WrapGCC2MSC4Int_EndProc },
1745 { (void *)&WrapGCC2MSC5Int, (void *)&WrapGCC2MSC5Int_EndProc },
1746 { (void *)&WrapGCC2MSC6Int, (void *)&WrapGCC2MSC6Int_EndProc },
1747 { (void *)&WrapGCC2MSC7Int, (void *)&WrapGCC2MSC7Int_EndProc },
1748 { (void *)&WrapGCC2MSC8Int, (void *)&WrapGCC2MSC8Int_EndProc },
1749 { (void *)&WrapGCC2MSC9Int, (void *)&WrapGCC2MSC9Int_EndProc },
1750 { (void *)&WrapGCC2MSC10Int, (void *)&WrapGCC2MSC10Int_EndProc },
1751 { (void *)&WrapGCC2MSC11Int, (void *)&WrapGCC2MSC11Int_EndProc },
1752 { (void *)&WrapGCC2MSC12Int, (void *)&WrapGCC2MSC12Int_EndProc }
1753 };
1754 const unsigned i = pDesc->cParams;
1755 AssertReleaseMsg(i < RT_ELEMENTS(s_aTemplates), ("%d (%s)\n", i, pDesc->pszName));
1756
1757 /* duplicate the patch. */
1758 const size_t cb = (uintptr_t)s_aTemplates[i].pvEnd - (uintptr_t)s_aTemplates[i].pvStart;
1759 pDesc->pvWrapper = remAllocGlue(cb);
1760 AssertReturn(pDesc->pvWrapper, VERR_NO_MEMORY);
1761 memcpy(pDesc->pvWrapper, s_aTemplates[i].pvStart, cb);
1762
1763 /* fix it up. */
1764 remGenerateImportGlueFixup((uint8_t *)pDesc->pvWrapper, cb, pDesc);
1765 }
1766 else if ( remHasFunctionEllipsis(pDesc)
1767 && !remIsFunctionUsingFP(pDesc))
1768 {
1769 /* duplicate the patch. */
1770 const size_t cb = (uintptr_t)&WrapGCC2MSCVariadictInt_EndProc - (uintptr_t)&WrapGCC2MSCVariadictInt;
1771 pDesc->pvWrapper = remAllocGlue(cb);
1772 AssertReturn(pDesc->pvWrapper, VERR_NO_MEMORY);
1773 memcpy(pDesc->pvWrapper, (void *)&WrapGCC2MSCVariadictInt, cb);
1774
1775 /* fix it up. */
1776 remGenerateImportGlueFixup((uint8_t *)pDesc->pvWrapper, cb, pDesc);
1777 }
1778 else
1779 {
1780 /* custom hacks - it's simpler to make assembly templates than writing a more generic code generator... */
1781 static const struct { const char *pszName; PFNRT pvStart, pvEnd; } s_aTemplates[] =
1782 {
1783 { "SSMR3RegisterInternal", (PFNRT)&WrapGCC2MSC_SSMR3RegisterInternal, (PFNRT)&WrapGCC2MSC_SSMR3RegisterInternal_EndProc },
1784 };
1785 unsigned i;
1786 for (i = 0; i < RT_ELEMENTS(s_aTemplates); i++)
1787 if (!strcmp(pDesc->pszName, s_aTemplates[i].pszName))
1788 break;
1789 AssertReleaseMsgReturn(i < RT_ELEMENTS(s_aTemplates), ("Not implemented! %s\n", pDesc->pszName), VERR_NOT_IMPLEMENTED);
1790
1791 /* duplicate the patch. */
1792 const size_t cb = (uintptr_t)s_aTemplates[i].pvEnd - (uintptr_t)s_aTemplates[i].pvStart;
1793 pDesc->pvWrapper = remAllocGlue(cb);
1794 AssertReturn(pDesc->pvWrapper, VERR_NO_MEMORY);
1795 memcpy(pDesc->pvWrapper, s_aTemplates[i].pvStart, cb);
1796
1797 /* fix it up. */
1798 remGenerateImportGlueFixup((uint8_t *)pDesc->pvWrapper, cb, pDesc);
1799 }
1800# else /* !USE_REM_CALLING_CONVENTION_GLUE */
1801
1802 /*
1803 * Generate a jump patch.
1804 */
1805 uint8_t *pb;
1806# ifdef RT_ARCH_AMD64
1807 pDesc->pvWrapper = pb = (uint8_t *)remAllocGlue(32);
1808 AssertReturn(pDesc->pvWrapper, VERR_NO_MEMORY);
1809 /**pb++ = 0xcc;*/
1810 *pb++ = 0xff;
1811 *pb++ = 0x24;
1812 *pb++ = 0x25;
1813 *(uint32_t *)pb = (uintptr_t)pb + 5;
1814 pb += 5;
1815 *(uint64_t *)pb = (uint64_t)pDesc->pv;
1816# else
1817 pDesc->pvWrapper = pb = (uint8_t *)remAllocGlue(8);
1818 AssertReturn(pDesc->pvWrapper, VERR_NO_MEMORY);
1819 *pb++ = 0xea;
1820 *(uint32_t *)pb = (uint32_t)pDesc->pv;
1821# endif
1822# endif /* !USE_REM_CALLING_CONVENTION_GLUE */
1823 }
1824 *pValue = (uintptr_t)pDesc->pvWrapper;
1825# else /* !USE_REM_CALLING_CONVENTION_GLUE */
1826 *pValue = (uintptr_t)pDesc->pv;
1827# endif /* !USE_REM_CALLING_CONVENTION_GLUE */
1828 return VINF_SUCCESS;
1829}
1830
1831
1832/**
1833 * Resolve an external symbol during RTLdrGetBits().
1834 *
1835 * @returns iprt status code.
1836 * @param hLdrMod The loader module handle.
1837 * @param pszModule Module name.
1838 * @param pszSymbol Symbol name, NULL if uSymbol should be used.
1839 * @param uSymbol Symbol ordinal, ~0 if pszSymbol should be used.
1840 * @param pValue Where to store the symbol value (address).
1841 * @param pvUser User argument.
1842 */
1843static DECLCALLBACK(int) remGetImport(RTLDRMOD hLdrMod, const char *pszModule, const char *pszSymbol, unsigned uSymbol, RTUINTPTR *pValue, void *pvUser)
1844{
1845 unsigned i;
1846 for (i = 0; i < RT_ELEMENTS(g_aVMMImports); i++)
1847 if (!strcmp(g_aVMMImports[i].pszName, pszSymbol))
1848 return remGenerateImportGlue(pValue, &g_aVMMImports[i]);
1849 for (i = 0; i < RT_ELEMENTS(g_aRTImports); i++)
1850 if (!strcmp(g_aRTImports[i].pszName, pszSymbol))
1851 return remGenerateImportGlue(pValue, &g_aRTImports[i]);
1852 for (i = 0; i < RT_ELEMENTS(g_aCRTImports); i++)
1853 if (!strcmp(g_aCRTImports[i].pszName, pszSymbol))
1854 return remGenerateImportGlue(pValue, &g_aCRTImports[i]);
1855 LogRel(("Missing REM Import: %s\n", pszSymbol));
1856#if 1
1857 *pValue = 0;
1858 AssertMsgFailed(("%s.%s\n", pszModule, pszSymbol));
1859 return VERR_SYMBOL_NOT_FOUND;
1860#else
1861 return remGenerateImportGlue(pValue, &g_aCRTImports[0]);
1862#endif
1863}
1864
1865/**
1866 * Loads the linux object, resolves all imports and exports.
1867 *
1868 * @returns VBox status code.
1869 */
1870static int remLoadLinuxObj(void)
1871{
1872 size_t offFilename;
1873 char szPath[RTPATH_MAX];
1874 int rc = RTPathAppPrivateArch(szPath, sizeof(szPath) - 32);
1875 AssertRCReturn(rc, rc);
1876 offFilename = strlen(szPath);
1877
1878 /*
1879 * Load the VBoxREM2.rel object/DLL.
1880 */
1881 strcpy(&szPath[offFilename], "/VBoxREM2.rel");
1882 rc = RTLdrOpen(szPath, 0, RTLDRARCH_HOST, &g_ModREM2);
1883 if (RT_SUCCESS(rc))
1884 {
1885 g_pvREM2 = RTMemExecAlloc(RTLdrSize(g_ModREM2));
1886 if (g_pvREM2)
1887 {
1888#ifdef DEBUG /* How to load the VBoxREM2.rel symbols into the GNU debugger. */
1889 RTPrintf("VBoxREMWrapper: (gdb) add-symbol-file %s 0x%p\n", szPath, g_pvREM2);
1890#endif
1891 LogRel(("REM: Loading %s at 0x%p (%d bytes)\n"
1892 "REM: (gdb) add-symbol-file %s 0x%p\n",
1893 szPath, g_pvREM2, RTLdrSize(g_ModREM2), szPath, g_pvREM2));
1894 rc = RTLdrGetBits(g_ModREM2, g_pvREM2, (RTUINTPTR)g_pvREM2, remGetImport, NULL);
1895 if (RT_SUCCESS(rc))
1896 {
1897 /*
1898 * Resolve exports.
1899 */
1900 unsigned i;
1901 for (i = 0; i < RT_ELEMENTS(g_aExports); i++)
1902 {
1903 RTUINTPTR Value;
1904 rc = RTLdrGetSymbolEx(g_ModREM2, g_pvREM2, (RTUINTPTR)g_pvREM2, g_aExports[i].pszName, &Value);
1905 AssertMsgRC(rc, ("%s rc=%Rrc\n", g_aExports[i].pszName, rc));
1906 if (RT_FAILURE(rc))
1907 break;
1908 rc = remGenerateExportGlue(&Value, &g_aExports[i]);
1909 if (RT_FAILURE(rc))
1910 break;
1911 *(void **)g_aExports[i].pv = (void *)(uintptr_t)Value;
1912 }
1913 return rc;
1914 }
1915 RTMemExecFree(g_pvREM2);
1916 }
1917 RTLdrClose(g_ModREM2);
1918 g_ModREM2 = NIL_RTLDRMOD;
1919 }
1920 LogRel(("REM: failed loading '%s', rc=%Rrc\n", szPath, rc));
1921 return rc;
1922}
1923
1924
1925/**
1926 * Unloads the linux object, freeing up all resources (dlls and
1927 * import glue) we allocated during remLoadLinuxObj().
1928 */
1929static void remUnloadLinuxObj(void)
1930{
1931 unsigned i;
1932
1933 /* close modules. */
1934 RTLdrClose(g_ModREM2);
1935 g_ModREM2 = NIL_RTLDRMOD;
1936 RTMemExecFree(g_pvREM2);
1937 g_pvREM2 = NULL;
1938
1939 /* clear the pointers. */
1940 for (i = 0; i < RT_ELEMENTS(g_aExports); i++)
1941 *(void **)g_aExports[i].pv = NULL;
1942# if defined(USE_REM_CALLING_CONVENTION_GLUE) || defined(USE_REM_IMPORT_JUMP_GLUE)
1943 for (i = 0; i < RT_ELEMENTS(g_aVMMImports); i++)
1944 g_aVMMImports[i].pvWrapper = NULL;
1945 for (i = 0; i < RT_ELEMENTS(g_aRTImports); i++)
1946 g_aRTImports[i].pvWrapper = NULL;
1947 for (i = 0; i < RT_ELEMENTS(g_aCRTImports); i++)
1948 g_aCRTImports[i].pvWrapper = NULL;
1949
1950 /* free wrapper memory. */
1951 while (g_pExecMemHead)
1952 {
1953 PREMEXECMEM pCur = g_pExecMemHead;
1954 g_pExecMemHead = pCur->pNext;
1955 memset(pCur, 0xcc, pCur->cb);
1956 RTMemExecFree(pCur);
1957 }
1958# endif
1959}
1960
1961#endif /* USE_REM_STUBS */
1962#ifdef VBOX_USE_BITNESS_SELECTOR
1963
1964/**
1965 * Checks if 64-bit support is enabled.
1966 *
1967 * @returns true / false.
1968 * @param pVM Pointer to the shared VM structure.
1969 */
1970static bool remIs64bitEnabled(PVM pVM)
1971{
1972 bool f;
1973 int rc = CFGMR3QueryBoolDef(CFGMR3GetChild(CFGMR3GetRoot(pVM), "REM"), "64bitEnabled", &f, false);
1974 AssertRCReturn(rc, false);
1975 return f;
1976}
1977
1978
1979/**
1980 * Loads real REM object, resolves all exports (imports are done by native loader).
1981 *
1982 * @returns VBox status code.
1983 */
1984static int remLoadProperObj(PVM pVM)
1985{
1986 /*
1987 * Load the VBoxREM32/64 object/DLL.
1988 */
1989 const char *pszModule = remIs64bitEnabled(pVM) ? "VBoxREM64" : "VBoxREM32";
1990 int rc = SUPR3HardenedLdrLoadAppPriv(pszModule, &g_ModREM2);
1991 if (RT_SUCCESS(rc))
1992 {
1993 LogRel(("REM: %s\n", pszModule));
1994
1995 /*
1996 * Resolve exports.
1997 */
1998 unsigned i;
1999 for (i = 0; i < RT_ELEMENTS(g_aExports); i++)
2000 {
2001 void *pvValue;
2002 rc = RTLdrGetSymbol(g_ModREM2, g_aExports[i].pszName, &pvValue);
2003 AssertLogRelMsgRCBreak(rc, ("%s rc=%Rrc\n", g_aExports[i].pszName, rc));
2004 *(void **)g_aExports[i].pv = pvValue;
2005 }
2006 }
2007
2008 return rc;
2009}
2010
2011
2012/**
2013 * Unloads the real REM object.
2014 */
2015static void remUnloadProperObj(void)
2016{
2017 /* close module. */
2018 RTLdrClose(g_ModREM2);
2019 g_ModREM2 = NIL_RTLDRMOD;
2020}
2021
2022#endif /* VBOX_USE_BITNESS_SELECTOR */
2023
2024REMR3DECL(int) REMR3Init(PVM pVM)
2025{
2026#ifdef USE_REM_STUBS
2027 return VINF_SUCCESS;
2028
2029#elif defined(VBOX_USE_BITNESS_SELECTOR)
2030 if (!pfnREMR3Init)
2031 {
2032 int rc = remLoadProperObj(pVM);
2033 if (RT_FAILURE(rc))
2034 return rc;
2035 }
2036 return pfnREMR3Init(pVM);
2037
2038#else
2039 if (!pfnREMR3Init)
2040 {
2041 int rc = remLoadLinuxObj();
2042 if (RT_FAILURE(rc))
2043 return rc;
2044 }
2045 return pfnREMR3Init(pVM);
2046#endif
2047}
2048
2049REMR3DECL(int) REMR3InitFinalize(PVM pVM)
2050{
2051#ifndef USE_REM_STUBS
2052 Assert(VALID_PTR(pfnREMR3InitFinalize));
2053 return pfnREMR3InitFinalize(pVM);
2054#endif
2055}
2056
2057REMR3DECL(int) REMR3Term(PVM pVM)
2058{
2059#ifdef USE_REM_STUBS
2060 return VINF_SUCCESS;
2061
2062#elif defined(VBOX_USE_BITNESS_SELECTOR)
2063 int rc;
2064 Assert(VALID_PTR(pfnREMR3Term));
2065 rc = pfnREMR3Term(pVM);
2066 remUnloadProperObj();
2067 return rc;
2068
2069#else
2070 int rc;
2071 Assert(VALID_PTR(pfnREMR3Term));
2072 rc = pfnREMR3Term(pVM);
2073 remUnloadLinuxObj();
2074 return rc;
2075#endif
2076}
2077
2078REMR3DECL(void) REMR3Reset(PVM pVM)
2079{
2080#ifndef USE_REM_STUBS
2081 Assert(VALID_PTR(pfnREMR3Reset));
2082 pfnREMR3Reset(pVM);
2083#endif
2084}
2085
2086REMR3DECL(int) REMR3Step(PVM pVM, PVMCPU pVCpu)
2087{
2088#ifdef USE_REM_STUBS
2089 return VERR_NOT_IMPLEMENTED;
2090#else
2091 Assert(VALID_PTR(pfnREMR3Step));
2092 return pfnREMR3Step(pVM, pVCpu);
2093#endif
2094}
2095
2096REMR3DECL(int) REMR3BreakpointSet(PVM pVM, RTGCUINTPTR Address)
2097{
2098#ifdef USE_REM_STUBS
2099 return VERR_REM_NO_MORE_BP_SLOTS;
2100#else
2101 Assert(VALID_PTR(pfnREMR3BreakpointSet));
2102 return pfnREMR3BreakpointSet(pVM, Address);
2103#endif
2104}
2105
2106REMR3DECL(int) REMR3BreakpointClear(PVM pVM, RTGCUINTPTR Address)
2107{
2108#ifdef USE_REM_STUBS
2109 return VERR_NOT_IMPLEMENTED;
2110#else
2111 Assert(VALID_PTR(pfnREMR3BreakpointClear));
2112 return pfnREMR3BreakpointClear(pVM, Address);
2113#endif
2114}
2115
2116REMR3DECL(int) REMR3EmulateInstruction(PVM pVM, PVMCPU pVCpu)
2117{
2118#ifdef USE_REM_STUBS
2119 return VERR_NOT_IMPLEMENTED;
2120#else
2121 Assert(VALID_PTR(pfnREMR3EmulateInstruction));
2122 return pfnREMR3EmulateInstruction(pVM, pVCpu);
2123#endif
2124}
2125
2126REMR3DECL(int) REMR3Run(PVM pVM, PVMCPU pVCpu)
2127{
2128#ifdef USE_REM_STUBS
2129 return VERR_NOT_IMPLEMENTED;
2130#else
2131 Assert(VALID_PTR(pfnREMR3Run));
2132 return pfnREMR3Run(pVM, pVCpu);
2133#endif
2134}
2135
2136REMR3DECL(int) REMR3State(PVM pVM, PVMCPU pVCpu)
2137{
2138#ifdef USE_REM_STUBS
2139 return VERR_NOT_IMPLEMENTED;
2140#else
2141 Assert(VALID_PTR(pfnREMR3State));
2142 return pfnREMR3State(pVM, pVCpu);
2143#endif
2144}
2145
2146REMR3DECL(int) REMR3StateBack(PVM pVM, PVMCPU pVCpu)
2147{
2148#ifdef USE_REM_STUBS
2149 return VERR_NOT_IMPLEMENTED;
2150#else
2151 Assert(VALID_PTR(pfnREMR3StateBack));
2152 return pfnREMR3StateBack(pVM, pVCpu);
2153#endif
2154}
2155
2156REMR3DECL(void) REMR3StateUpdate(PVM pVM, PVMCPU pVCpu)
2157{
2158#ifndef USE_REM_STUBS
2159 Assert(VALID_PTR(pfnREMR3StateUpdate));
2160 pfnREMR3StateUpdate(pVM, pVCpu);
2161#endif
2162}
2163
2164REMR3DECL(void) REMR3A20Set(PVM pVM, PVMCPU pVCpu, bool fEnable)
2165{
2166#ifndef USE_REM_STUBS
2167 Assert(VALID_PTR(pfnREMR3A20Set));
2168 pfnREMR3A20Set(pVM, pVCpu, fEnable);
2169#endif
2170}
2171
2172REMR3DECL(void) REMR3ReplayHandlerNotifications(PVM pVM)
2173{
2174#ifndef USE_REM_STUBS
2175 Assert(VALID_PTR(pfnREMR3ReplayHandlerNotifications));
2176 pfnREMR3ReplayHandlerNotifications(pVM);
2177#endif
2178}
2179
2180REMR3DECL(int) REMR3NotifyCodePageChanged(PVM pVM, PVMCPU pVCpu, RTGCPTR pvCodePage)
2181{
2182#ifdef USE_REM_STUBS
2183 return VINF_SUCCESS;
2184#else
2185 Assert(VALID_PTR(pfnREMR3NotifyCodePageChanged));
2186 return pfnREMR3NotifyCodePageChanged(pVM, pVCpu, pvCodePage);
2187#endif
2188}
2189
2190REMR3DECL(void) REMR3NotifyPhysRamRegister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, unsigned fFlags)
2191{
2192#ifndef USE_REM_STUBS
2193 Assert(VALID_PTR(pfnREMR3NotifyPhysRamRegister));
2194 pfnREMR3NotifyPhysRamRegister(pVM, GCPhys, cb, fFlags);
2195#endif
2196}
2197
2198REMR3DECL(void) REMR3NotifyPhysRomRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, void *pvCopy, bool fShadow)
2199{
2200#ifndef USE_REM_STUBS
2201 Assert(VALID_PTR(pfnREMR3NotifyPhysRomRegister));
2202 pfnREMR3NotifyPhysRomRegister(pVM, GCPhys, cb, pvCopy, fShadow);
2203#endif
2204}
2205
2206REMR3DECL(void) REMR3NotifyPhysRamDeregister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb)
2207{
2208#ifndef USE_REM_STUBS
2209 Assert(VALID_PTR(pfnREMR3NotifyPhysRamDeregister));
2210 pfnREMR3NotifyPhysRamDeregister(pVM, GCPhys, cb);
2211#endif
2212}
2213
2214REMR3DECL(void) REMR3NotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler)
2215{
2216#ifndef USE_REM_STUBS
2217 Assert(VALID_PTR(pfnREMR3NotifyHandlerPhysicalRegister));
2218 pfnREMR3NotifyHandlerPhysicalRegister(pVM, enmType, GCPhys, cb, fHasHCHandler);
2219#endif
2220}
2221
2222REMR3DECL(void) REMR3NotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
2223{
2224#ifndef USE_REM_STUBS
2225 Assert(VALID_PTR(pfnREMR3NotifyHandlerPhysicalDeregister));
2226 pfnREMR3NotifyHandlerPhysicalDeregister(pVM, enmType, GCPhys, cb, fHasHCHandler, fRestoreAsRAM);
2227#endif
2228}
2229
2230REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
2231{
2232#ifndef USE_REM_STUBS
2233 Assert(VALID_PTR(pfnREMR3NotifyHandlerPhysicalModify));
2234 pfnREMR3NotifyHandlerPhysicalModify(pVM, enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, fRestoreAsRAM);
2235#endif
2236}
2237
2238REMR3DECL(bool) REMR3IsPageAccessHandled(PVM pVM, RTGCPHYS GCPhys)
2239{
2240#ifdef USE_REM_STUBS
2241 return false;
2242#else
2243 Assert(VALID_PTR(pfnREMR3IsPageAccessHandled));
2244 return pfnREMR3IsPageAccessHandled(pVM, GCPhys);
2245#endif
2246}
2247
2248REMR3DECL(int) REMR3DisasEnableStepping(PVM pVM, bool fEnable)
2249{
2250#ifdef USE_REM_STUBS
2251 return VERR_NOT_IMPLEMENTED;
2252#else
2253 Assert(VALID_PTR(pfnREMR3DisasEnableStepping));
2254 return pfnREMR3DisasEnableStepping(pVM, fEnable);
2255#endif
2256}
2257
2258REMR3DECL(void) REMR3NotifyPendingInterrupt(PVM pVM, PVMCPU pVCpu, uint8_t u8Interrupt)
2259{
2260#ifndef USE_REM_STUBS
2261 Assert(VALID_PTR(pfnREMR3NotifyPendingInterrupt));
2262 pfnREMR3NotifyPendingInterrupt(pVM, pVCpu, u8Interrupt);
2263#endif
2264}
2265
2266REMR3DECL(uint32_t) REMR3QueryPendingInterrupt(PVM pVM, PVMCPU pVCpu)
2267{
2268#ifdef USE_REM_STUBS
2269 return REM_NO_PENDING_IRQ;
2270#else
2271 Assert(VALID_PTR(pfnREMR3QueryPendingInterrupt));
2272 return pfnREMR3QueryPendingInterrupt(pVM, pVCpu);
2273#endif
2274}
2275
2276REMR3DECL(void) REMR3NotifyInterruptSet(PVM pVM, PVMCPU pVCpu)
2277{
2278#ifndef USE_REM_STUBS
2279 Assert(VALID_PTR(pfnREMR3NotifyInterruptSet));
2280 pfnREMR3NotifyInterruptSet(pVM, pVCpu);
2281#endif
2282}
2283
2284REMR3DECL(void) REMR3NotifyInterruptClear(PVM pVM, PVMCPU pVCpu)
2285{
2286#ifndef USE_REM_STUBS
2287 Assert(VALID_PTR(pfnREMR3NotifyInterruptClear));
2288 pfnREMR3NotifyInterruptClear(pVM, pVCpu);
2289#endif
2290}
2291
2292REMR3DECL(void) REMR3NotifyTimerPending(PVM pVM, PVMCPU pVCpuDst)
2293{
2294#ifndef USE_REM_STUBS
2295 Assert(VALID_PTR(pfnREMR3NotifyTimerPending));
2296 pfnREMR3NotifyTimerPending(pVM, pVCpuDst);
2297#endif
2298}
2299
2300REMR3DECL(void) REMR3NotifyDmaPending(PVM pVM)
2301{
2302#ifndef USE_REM_STUBS
2303 Assert(VALID_PTR(pfnREMR3NotifyDmaPending));
2304 pfnREMR3NotifyDmaPending(pVM);
2305#endif
2306}
2307
2308REMR3DECL(void) REMR3NotifyQueuePending(PVM pVM)
2309{
2310#ifndef USE_REM_STUBS
2311 Assert(VALID_PTR(pfnREMR3NotifyQueuePending));
2312 pfnREMR3NotifyQueuePending(pVM);
2313#endif
2314}
2315
2316REMR3DECL(void) REMR3NotifyFF(PVM pVM)
2317{
2318#ifndef USE_REM_STUBS
2319 /* the timer can call this early on, so don't be picky. */
2320 if (pfnREMR3NotifyFF)
2321 pfnREMR3NotifyFF(pVM);
2322#endif
2323}
2324
Note: See TracBrowser for help on using the repository browser.

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