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