1 | /* $Id: tstDBGCStubs.cpp 41565 2012-06-04 14:07:38Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * DBGC Testcase - Command Parser, VMM Stub Functions.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2011 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #include <VBox/err.h>
|
---|
19 | #include <VBox/vmm/vm.h>
|
---|
20 | #include <iprt/string.h>
|
---|
21 |
|
---|
22 |
|
---|
23 |
|
---|
24 | #include <VBox/vmm/dbgf.h>
|
---|
25 | VMMR3DECL(PDBGFADDRESS) DBGFR3AddrFromFlat(PVM pVM, PDBGFADDRESS pAddress, RTGCUINTPTR FlatPtr)
|
---|
26 | {
|
---|
27 | return NULL;
|
---|
28 | }
|
---|
29 |
|
---|
30 | VMMR3DECL(int) DBGFR3AddrFromSelOff(PVM pVM, VMCPUID idCpu, PDBGFADDRESS pAddress, RTSEL Sel, RTUINTPTR off)
|
---|
31 | {
|
---|
32 | /* bad:bad -> provke error during parsing. */
|
---|
33 | if (Sel == 0xbad && off == 0xbad)
|
---|
34 | return VERR_OUT_OF_SELECTOR_BOUNDS;
|
---|
35 |
|
---|
36 | /* real mode conversion. */
|
---|
37 | pAddress->FlatPtr = (uint32_t)(Sel << 4) | off;
|
---|
38 | pAddress->fFlags |= DBGFADDRESS_FLAGS_FLAT;
|
---|
39 | pAddress->Sel = DBGF_SEL_FLAT;
|
---|
40 | pAddress->off = pAddress->FlatPtr;
|
---|
41 | return VINF_SUCCESS;
|
---|
42 | }
|
---|
43 |
|
---|
44 | VMMR3DECL(int) DBGFR3AddrToPhys(PVM pVM, VMCPUID idCpu, PDBGFADDRESS pAddress, PRTGCPHYS pGCPhys)
|
---|
45 | {
|
---|
46 | return VERR_INTERNAL_ERROR;
|
---|
47 | }
|
---|
48 |
|
---|
49 | VMMR3DECL(int) DBGFR3AddrToHostPhys(PVMCPU pVCpu, PDBGFADDRESS pAddress, PRTHCPHYS pHCPhys)
|
---|
50 | {
|
---|
51 | return VERR_INTERNAL_ERROR;
|
---|
52 | }
|
---|
53 |
|
---|
54 | VMMR3DECL(int) DBGFR3AddrToVolatileR3Ptr(PVMCPU pVCpu, PDBGFADDRESS pAddress, bool fReadOnly, void **ppvR3Ptr)
|
---|
55 | {
|
---|
56 | return VERR_INTERNAL_ERROR;
|
---|
57 | }
|
---|
58 |
|
---|
59 | VMMR3DECL(int) DBGFR3Attach(PVM pVM)
|
---|
60 | {
|
---|
61 | return VERR_INTERNAL_ERROR;
|
---|
62 | }
|
---|
63 |
|
---|
64 | VMMR3DECL(int) DBGFR3BpClear(PVM pVM, RTUINT iBp)
|
---|
65 | {
|
---|
66 | return VERR_INTERNAL_ERROR;
|
---|
67 | }
|
---|
68 | VMMR3DECL(int) DBGFR3BpDisable(PVM pVM, RTUINT iBp)
|
---|
69 | {
|
---|
70 | return VERR_INTERNAL_ERROR;
|
---|
71 | }
|
---|
72 | VMMR3DECL(int) DBGFR3BpEnable(PVM pVM, RTUINT iBp)
|
---|
73 | {
|
---|
74 | return VERR_INTERNAL_ERROR;
|
---|
75 | }
|
---|
76 | VMMR3DECL(int) DBGFR3BpEnum(PVM pVM, PFNDBGFBPENUM pfnCallback, void *pvUser)
|
---|
77 | {
|
---|
78 | return VERR_INTERNAL_ERROR;
|
---|
79 | }
|
---|
80 | VMMR3DECL(int) DBGFR3BpSet(PVM pVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, PRTUINT piBp)
|
---|
81 | {
|
---|
82 | return VERR_INTERNAL_ERROR;
|
---|
83 | }
|
---|
84 | VMMR3DECL(int) DBGFR3BpSetReg(PVM pVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable,
|
---|
85 | uint8_t fType, uint8_t cb, PRTUINT piBp)
|
---|
86 | {
|
---|
87 | return VERR_INTERNAL_ERROR;
|
---|
88 | }
|
---|
89 | VMMR3DECL(int) DBGFR3BpSetREM(PVM pVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, PRTUINT piBp)
|
---|
90 | {
|
---|
91 | return VERR_INTERNAL_ERROR;
|
---|
92 | }
|
---|
93 | VMMR3DECL(bool) DBGFR3CanWait(PVM pVM)
|
---|
94 | {
|
---|
95 | return true;
|
---|
96 | }
|
---|
97 | VMMR3DECL(int) DBGFR3Detach(PVM pVM)
|
---|
98 | {
|
---|
99 | return VERR_INTERNAL_ERROR;
|
---|
100 | }
|
---|
101 | VMMR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, VMCPUID idCpu, RTSEL Sel, RTGCPTR GCPtr, uint32_t fFlags,
|
---|
102 | char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr)
|
---|
103 | {
|
---|
104 | return VERR_INTERNAL_ERROR;
|
---|
105 | }
|
---|
106 | VMMR3DECL(int) DBGFR3EventWait(PVM pVM, RTMSINTERVAL cMillies, PCDBGFEVENT *ppEvent)
|
---|
107 | {
|
---|
108 | return VERR_INTERNAL_ERROR;
|
---|
109 | }
|
---|
110 | VMMR3DECL(int) DBGFR3Halt(PVM pVM)
|
---|
111 | {
|
---|
112 | return VERR_INTERNAL_ERROR;
|
---|
113 | }
|
---|
114 | VMMR3DECL(int) DBGFR3Info(PVM pVM, const char *pszName, const char *pszArgs, PCDBGFINFOHLP pHlp)
|
---|
115 | {
|
---|
116 | return VERR_INTERNAL_ERROR;
|
---|
117 | }
|
---|
118 | VMMR3DECL(int) DBGFR3InfoEx(PVM pVM, VMCPUID idCpu, const char *pszName, const char *pszArgs, PCDBGFINFOHLP pHlp)
|
---|
119 | {
|
---|
120 | return VERR_INTERNAL_ERROR;
|
---|
121 | }
|
---|
122 | VMMR3DECL(bool) DBGFR3IsHalted(PVM pVM)
|
---|
123 | {
|
---|
124 | return true;
|
---|
125 | }
|
---|
126 | VMMR3DECL(int) DBGFR3LineByAddr(PVM pVM, RTGCUINTPTR Address, PRTGCINTPTR poffDisplacement, PDBGFLINE pLine)
|
---|
127 | {
|
---|
128 | return VERR_INTERNAL_ERROR;
|
---|
129 | }
|
---|
130 | VMMR3DECL(int) DBGFR3LogModifyDestinations(PVM pVM, const char *pszDestSettings)
|
---|
131 | {
|
---|
132 | return VERR_INTERNAL_ERROR;
|
---|
133 | }
|
---|
134 | VMMR3DECL(int) DBGFR3LogModifyFlags(PVM pVM, const char *pszFlagSettings)
|
---|
135 | {
|
---|
136 | return VERR_INTERNAL_ERROR;
|
---|
137 | }
|
---|
138 | VMMR3DECL(int) DBGFR3LogModifyGroups(PVM pVM, const char *pszGroupSettings)
|
---|
139 | {
|
---|
140 | return VERR_INTERNAL_ERROR;
|
---|
141 | }
|
---|
142 | VMMR3DECL(int) DBGFR3ModuleLoad(PVM pVM, const char *pszFilename, RTGCUINTPTR AddressDelta, const char *pszName, RTGCUINTPTR ModuleAddress, unsigned cbImage)
|
---|
143 | {
|
---|
144 | return VERR_INTERNAL_ERROR;
|
---|
145 | }
|
---|
146 | VMMR3DECL(int) DBGFR3AsLoadImage(PVM pVM, RTDBGAS hAS, const char *pszFilename, const char *pszModName, PCDBGFADDRESS pModAddress, RTDBGSEGIDX iModSeg, uint32_t fFlags)
|
---|
147 | {
|
---|
148 | return VERR_INTERNAL_ERROR;
|
---|
149 | }
|
---|
150 | VMMR3DECL(int) DBGFR3AsLoadMap(PVM pVM, RTDBGAS hAS, const char *pszFilename, const char *pszModName, PCDBGFADDRESS pModAddress, RTDBGSEGIDX iModSeg, RTGCUINTPTR uSubtrahend, uint32_t fFlags)
|
---|
151 | {
|
---|
152 | return VERR_INTERNAL_ERROR;
|
---|
153 | }
|
---|
154 | VMMR3DECL(RTDBGAS) DBGFR3AsResolveAndRetain(PVM pVM, RTDBGAS hAlias)
|
---|
155 | {
|
---|
156 | return NIL_RTDBGAS;
|
---|
157 | }
|
---|
158 | VMMR3DECL(int) DBGFR3Resume(PVM pVM)
|
---|
159 | {
|
---|
160 | return VERR_INTERNAL_ERROR;
|
---|
161 | }
|
---|
162 | VMMR3DECL(int) DBGFR3StackWalkBegin(PVM pVM, VMCPUID idCpu, DBGFCODETYPE enmCodeType, PCDBGFSTACKFRAME *ppFirstFrame)
|
---|
163 | {
|
---|
164 | return VERR_INTERNAL_ERROR;
|
---|
165 | }
|
---|
166 | VMMR3DECL(PCDBGFSTACKFRAME) DBGFR3StackWalkNext(PCDBGFSTACKFRAME pCurrent)
|
---|
167 | {
|
---|
168 | return NULL;
|
---|
169 | }
|
---|
170 | VMMR3DECL(void) DBGFR3StackWalkEnd(PCDBGFSTACKFRAME pFirstFrame)
|
---|
171 | {
|
---|
172 | }
|
---|
173 | VMMR3DECL(int) DBGFR3Step(PVM pVM, VMCPUID idCpu)
|
---|
174 | {
|
---|
175 | return VERR_INTERNAL_ERROR;
|
---|
176 | }
|
---|
177 | VMMR3DECL(int) DBGFR3AsSymbolByAddr(PVM pVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, PRTGCINTPTR poffDisplacement, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod)
|
---|
178 | {
|
---|
179 | return VERR_INTERNAL_ERROR;
|
---|
180 | }
|
---|
181 | VMMR3DECL(int) DBGFR3AsSymbolByName(PVM pVM, RTDBGAS hDbgAs, const char *pszSymbol, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod)
|
---|
182 | {
|
---|
183 | return VERR_INTERNAL_ERROR;
|
---|
184 | }
|
---|
185 | VMMR3DECL(int) DBGFR3MemScan(PVM pVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, RTGCUINTPTR cbRange, RTGCUINTPTR uAlign, const void *pabNeedle, size_t cbNeedle, PDBGFADDRESS pHitAddress)
|
---|
186 | {
|
---|
187 | return VERR_INTERNAL_ERROR;
|
---|
188 | }
|
---|
189 | VMMR3DECL(int) DBGFR3MemRead(PVM pVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, void *pvBuf, size_t cbRead)
|
---|
190 | {
|
---|
191 | return VERR_INTERNAL_ERROR;
|
---|
192 | }
|
---|
193 | VMMR3DECL(int) DBGFR3MemReadString(PVM pVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, char *pszBuf, size_t cchBuf)
|
---|
194 | {
|
---|
195 | return VERR_INTERNAL_ERROR;
|
---|
196 | }
|
---|
197 | VMMR3DECL(int) DBGFR3MemWrite(PVM pVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, const void *pvBuf, size_t cbRead)
|
---|
198 | {
|
---|
199 | return VERR_INTERNAL_ERROR;
|
---|
200 | }
|
---|
201 | VMMDECL(int) DBGFR3PagingDumpEx(PVM pVM, VMCPUID idCpu, uint32_t fFlags, uint64_t cr3, uint64_t u64FirstAddr,
|
---|
202 | uint64_t u64LastAddr, uint32_t cMaxDepth, PCDBGFINFOHLP pHlp)
|
---|
203 | {
|
---|
204 | return VERR_INTERNAL_ERROR;
|
---|
205 | }
|
---|
206 | VMMR3DECL(int) DBGFR3RegNmValidate(PVM pVM, VMCPUID idDefCpu, const char *pszReg)
|
---|
207 | {
|
---|
208 | if ( !strcmp(pszReg, "ah")
|
---|
209 | || !strcmp(pszReg, "ax")
|
---|
210 | || !strcmp(pszReg, "eax")
|
---|
211 | || !strcmp(pszReg, "rax"))
|
---|
212 | return VINF_SUCCESS;
|
---|
213 | return VERR_DBGF_REGISTER_NOT_FOUND;
|
---|
214 | }
|
---|
215 | VMMR3DECL(int) DBGFR3RegCpuQueryU8( PVM pVM, VMCPUID idCpu, DBGFREG enmReg, uint8_t *pu8)
|
---|
216 | {
|
---|
217 | return VERR_INTERNAL_ERROR;
|
---|
218 | }
|
---|
219 | VMMR3DECL(int) DBGFR3RegCpuQueryU16( PVM pVM, VMCPUID idCpu, DBGFREG enmReg, uint16_t *pu16)
|
---|
220 | {
|
---|
221 | return VERR_INTERNAL_ERROR;
|
---|
222 | }
|
---|
223 | VMMR3DECL(int) DBGFR3RegCpuQueryU32( PVM pVM, VMCPUID idCpu, DBGFREG enmReg, uint32_t *pu32)
|
---|
224 | {
|
---|
225 | return VERR_INTERNAL_ERROR;
|
---|
226 | }
|
---|
227 | VMMR3DECL(int) DBGFR3RegCpuQueryU64( PVM pVM, VMCPUID idCpu, DBGFREG enmReg, uint64_t *pu64)
|
---|
228 | {
|
---|
229 | return VERR_INTERNAL_ERROR;
|
---|
230 | }
|
---|
231 | VMMR3DECL(int) DBGFR3RegNmQuery(PVM pVM, VMCPUID idDefCpu, const char *pszReg, PDBGFREGVAL pValue, PDBGFREGVALTYPE penmType)
|
---|
232 | {
|
---|
233 | if (idDefCpu == 0 || idDefCpu == DBGFREG_HYPER_VMCPUID)
|
---|
234 | {
|
---|
235 | if (!strcmp(pszReg, "ah"))
|
---|
236 | {
|
---|
237 | pValue->u16 = 0xf0;
|
---|
238 | *penmType = DBGFREGVALTYPE_U8;
|
---|
239 | return VINF_SUCCESS;
|
---|
240 | }
|
---|
241 | if (!strcmp(pszReg, "ax"))
|
---|
242 | {
|
---|
243 | pValue->u16 = 0xbabe;
|
---|
244 | *penmType = DBGFREGVALTYPE_U16;
|
---|
245 | return VINF_SUCCESS;
|
---|
246 | }
|
---|
247 | if (!strcmp(pszReg, "eax"))
|
---|
248 | {
|
---|
249 | pValue->u32 = 0xcafebabe;
|
---|
250 | *penmType = DBGFREGVALTYPE_U32;
|
---|
251 | return VINF_SUCCESS;
|
---|
252 | }
|
---|
253 | if (!strcmp(pszReg, "rax"))
|
---|
254 | {
|
---|
255 | pValue->u64 = UINT64_C(0x00beef00feedface);
|
---|
256 | *penmType = DBGFREGVALTYPE_U32;
|
---|
257 | return VINF_SUCCESS;
|
---|
258 | }
|
---|
259 | }
|
---|
260 | return VERR_DBGF_REGISTER_NOT_FOUND;
|
---|
261 | }
|
---|
262 | VMMR3DECL(int) DBGFR3RegPrintf(PVM pVM, VMCPUID idCpu, char *pszBuf, size_t cbBuf, const char *pszFormat, ...)
|
---|
263 | {
|
---|
264 | return VERR_INTERNAL_ERROR;
|
---|
265 | }
|
---|
266 | VMMDECL(ssize_t) DBGFR3RegFormatValue(char *pszBuf, size_t cbBuf, PCDBGFREGVAL pValue, DBGFREGVALTYPE enmType, bool fSpecial)
|
---|
267 | {
|
---|
268 | return VERR_INTERNAL_ERROR;
|
---|
269 | }
|
---|
270 | VMMR3DECL(int) DBGFR3RegNmSet(PVM pVM, VMCPUID idDefCpu, const char *pszReg, PCDBGFREGVAL pValue, DBGFREGVALTYPE enmType)
|
---|
271 | {
|
---|
272 | return VERR_INTERNAL_ERROR;
|
---|
273 | }
|
---|
274 |
|
---|
275 | VMMR3DECL(PDBGFADDRESS) DBGFR3AddrFromPhys(PVM pVM, PDBGFADDRESS pAddress, RTGCPHYS PhysAddr)
|
---|
276 | {
|
---|
277 | return NULL;
|
---|
278 | }
|
---|
279 | VMMR3DECL(int) DBGFR3AddrToHostPhys(PVM pVM, VMCPUID idCpu, PDBGFADDRESS pAddress, PRTHCPHYS pHCPhys)
|
---|
280 | {
|
---|
281 | return VERR_INTERNAL_ERROR;
|
---|
282 | }
|
---|
283 | VMMR3DECL(int) DBGFR3AddrToVolatileR3Ptr(PVM pVM, VMCPUID idCpu, PDBGFADDRESS pAddress, bool fReadOnly, void **ppvR3Ptr)
|
---|
284 | {
|
---|
285 | return VERR_INTERNAL_ERROR;
|
---|
286 | }
|
---|
287 |
|
---|
288 | VMMR3DECL(int) DBGFR3OSRegister(PVM pVM, PCDBGFOSREG pReg)
|
---|
289 | {
|
---|
290 | return VERR_INTERNAL_ERROR;
|
---|
291 | }
|
---|
292 | VMMR3DECL(int) DBGFR3OSDetect(PVM pVM, char *pszName, size_t cchName)
|
---|
293 | {
|
---|
294 | return VERR_INTERNAL_ERROR;
|
---|
295 | }
|
---|
296 | VMMR3DECL(int) DBGFR3OSQueryNameAndVersion(PVM pVM, char *pszName, size_t cchName, char *pszVersion, size_t cchVersion)
|
---|
297 | {
|
---|
298 | return VERR_INTERNAL_ERROR;
|
---|
299 | }
|
---|
300 |
|
---|
301 | VMMR3DECL(int) DBGFR3SelQueryInfo(PVM pVM, VMCPUID idCpu, RTSEL Sel, uint32_t fFlags, PDBGFSELINFO pSelInfo)
|
---|
302 | {
|
---|
303 | return VERR_INTERNAL_ERROR;
|
---|
304 | }
|
---|
305 |
|
---|
306 | VMMR3DECL(CPUMMODE) DBGFR3CpuGetMode(PVM pVM, VMCPUID idCpu)
|
---|
307 | {
|
---|
308 | return CPUMMODE_INVALID;
|
---|
309 | }
|
---|
310 |
|
---|
311 | VMMR3DECL(int) DBGFR3CoreWrite(PVM pVM, const char *pszFilename, bool fReplaceFile)
|
---|
312 | {
|
---|
313 | return VERR_INTERNAL_ERROR;
|
---|
314 | }
|
---|
315 |
|
---|
316 |
|
---|
317 | //////////////////////////////////////////////////////////////////////////
|
---|
318 | // The rest should eventually be replaced by DBGF calls and eliminated. //
|
---|
319 | /////////////////////////////////////////////////////////////////////////
|
---|
320 |
|
---|
321 | #include <VBox/vmm/cpum.h>
|
---|
322 |
|
---|
323 | VMMDECL(uint64_t) CPUMGetGuestCR3(PVMCPU pVCpu)
|
---|
324 | {
|
---|
325 | return 0;
|
---|
326 | }
|
---|
327 |
|
---|
328 | VMMDECL(uint64_t) CPUMGetGuestCR4(PVMCPU pVCpu)
|
---|
329 | {
|
---|
330 | return 0;
|
---|
331 | }
|
---|
332 |
|
---|
333 | VMMDECL(RTSEL) CPUMGetGuestCS(PVMCPU pVCpu)
|
---|
334 | {
|
---|
335 | return 0;
|
---|
336 | }
|
---|
337 |
|
---|
338 | VMMDECL(PCCPUMCTXCORE) CPUMGetGuestCtxCore(PVMCPU pVCpu)
|
---|
339 | {
|
---|
340 | return NULL;
|
---|
341 | }
|
---|
342 |
|
---|
343 | VMMDECL(uint32_t) CPUMGetGuestEIP(PVMCPU pVCpu)
|
---|
344 | {
|
---|
345 | return 0;
|
---|
346 | }
|
---|
347 |
|
---|
348 | VMMDECL(uint64_t) CPUMGetGuestRIP(PVMCPU pVCpu)
|
---|
349 | {
|
---|
350 | return 0;
|
---|
351 | }
|
---|
352 |
|
---|
353 | VMMDECL(RTGCPTR) CPUMGetGuestIDTR(PVMCPU pVCpu, uint16_t *pcbLimit)
|
---|
354 | {
|
---|
355 | return 0;
|
---|
356 | }
|
---|
357 |
|
---|
358 | VMMDECL(CPUMMODE) CPUMGetGuestMode(PVMCPU pVCpu)
|
---|
359 | {
|
---|
360 | return CPUMMODE_INVALID;
|
---|
361 | }
|
---|
362 |
|
---|
363 | VMMDECL(RTSEL) CPUMGetHyperCS(PVMCPU pVCpu)
|
---|
364 | {
|
---|
365 | return 0xfff8;
|
---|
366 | }
|
---|
367 |
|
---|
368 | VMMDECL(PCCPUMCTXCORE) CPUMGetHyperCtxCore(PVMCPU pVCpu)
|
---|
369 | {
|
---|
370 | return NULL;
|
---|
371 | }
|
---|
372 |
|
---|
373 | VMMDECL(uint32_t) CPUMGetHyperEIP(PVMCPU pVCpu)
|
---|
374 | {
|
---|
375 | return 0;
|
---|
376 | }
|
---|
377 |
|
---|
378 | VMMDECL(PCPUMCTX) CPUMQueryGuestCtxPtr(PVMCPU pVCpu)
|
---|
379 | {
|
---|
380 | return NULL;
|
---|
381 | }
|
---|
382 |
|
---|
383 | VMMDECL(int) CPUMQueryHyperCtxPtr(PVMCPU pVCpu, PCPUMCTX *ppCtx)
|
---|
384 | {
|
---|
385 | return VERR_INTERNAL_ERROR;
|
---|
386 | }
|
---|
387 |
|
---|
388 |
|
---|
389 |
|
---|
390 | #include <VBox/vmm/mm.h>
|
---|
391 |
|
---|
392 | VMMR3DECL(int) MMR3HCPhys2HCVirt(PVM pVM, RTHCPHYS HCPhys, void **ppv)
|
---|
393 | {
|
---|
394 | return VERR_INTERNAL_ERROR;
|
---|
395 | }
|
---|
396 |
|
---|
397 |
|
---|
398 |
|
---|
399 |
|
---|
400 | #include <VBox/vmm/pgm.h>
|
---|
401 |
|
---|
402 | VMMDECL(RTHCPHYS) PGMGetHyperCR3(PVMCPU pVCpu)
|
---|
403 | {
|
---|
404 | return 0;
|
---|
405 | }
|
---|
406 |
|
---|
407 | VMMDECL(PGMMODE) PGMGetShadowMode(PVMCPU pVCpu)
|
---|
408 | {
|
---|
409 | return PGMMODE_INVALID;
|
---|
410 | }
|
---|
411 |
|
---|
412 | VMMR3DECL(int) PGMR3DbgR3Ptr2GCPhys(PVM pVM, RTR3PTR R3Ptr, PRTGCPHYS pGCPhys)
|
---|
413 | {
|
---|
414 | return VERR_INTERNAL_ERROR;
|
---|
415 | }
|
---|
416 |
|
---|
417 | VMMR3DECL(int) PGMR3DbgR3Ptr2HCPhys(PVM pVM, RTR3PTR R3Ptr, PRTHCPHYS pHCPhys)
|
---|
418 | {
|
---|
419 | return VERR_INTERNAL_ERROR;
|
---|
420 | }
|
---|
421 | VMMR3DECL(int) PGMR3DbgHCPhys2GCPhys(PVM pVM, RTHCPHYS HCPhys, PRTGCPHYS pGCPhys)
|
---|
422 | {
|
---|
423 | return VERR_INTERNAL_ERROR;
|
---|
424 | }
|
---|
425 |
|
---|
426 |
|
---|
427 | #include <VBox/vmm/vmm.h>
|
---|
428 |
|
---|
429 | VMMDECL(PVMCPU) VMMGetCpuById(PVM pVM, RTCPUID idCpu)
|
---|
430 | {
|
---|
431 | return NULL;
|
---|
432 | }
|
---|
433 |
|
---|