VirtualBox

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

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

The Big Sun Rebranding Header Change

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

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