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