VirtualBox

source: vbox/trunk/src/VBox/VMM/DBGFDisas.cpp@ 9411

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

DBGDisas: distinguish between 32 & 64 bits modes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 19.6 KB
Line 
1/* $Id: DBGFDisas.cpp 9292 2008-06-02 12:09:25Z vboxsync $ */
2/** @file
3 * VMM DBGF - Debugger Facility, Disassembler.
4 */
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* Header Files *
24*******************************************************************************/
25#define LOG_GROUP LOG_GROUP_DBGF
26#include <VBox/dbgf.h>
27#include <VBox/selm.h>
28#include <VBox/mm.h>
29#include <VBox/pgm.h>
30#include <VBox/cpum.h>
31#include "DBGFInternal.h"
32#include <VBox/dis.h>
33#include <VBox/err.h>
34#include <VBox/param.h>
35
36#include <VBox/log.h>
37#include <iprt/assert.h>
38#include <iprt/string.h>
39#include <iprt/alloca.h>
40#include <iprt/ctype.h>
41
42
43/*******************************************************************************
44* Internal Functions *
45*******************************************************************************/
46static DECLCALLBACK(int) dbgfR3DisasInstrRead(RTUINTPTR pSrc, uint8_t *pDest, uint32_t size, void *pvUserdata);
47
48
49/**
50 * Structure used when disassembling and instructions in DBGF.
51 * This is used so the reader function can get the stuff it needs.
52 */
53typedef struct
54{
55 /** The core structure. */
56 DISCPUSTATE Cpu;
57 /** The VM handle. */
58 PVM pVM;
59 /** Pointer to the first byte in the segemnt. */
60 RTGCUINTPTR GCPtrSegBase;
61 /** Pointer to the byte after the end of the segment. (might have wrapped!) */
62 RTGCUINTPTR GCPtrSegEnd;
63 /** The size of the segment minus 1. */
64 RTGCUINTPTR cbSegLimit;
65 /** The guest paging mode. */
66 PGMMODE enmMode;
67 /** Pointer to the current page - HC Ptr. */
68 void const *pvPageHC;
69 /** Pointer to the current page - GC Ptr. */
70 RTGCPTR pvPageGC;
71 /** Pointer to the next instruction (relative to GCPtrSegBase). */
72 RTGCUINTPTR GCPtrNext;
73 /** The lock information that PGMPhysReleasePageMappingLock needs. */
74 PGMPAGEMAPLOCK PageMapLock;
75 /** Whether the PageMapLock is valid or not. */
76 bool fLocked;
77} DBGFDISASSTATE, *PDBGFDISASSTATE;
78
79
80
81/**
82 * Calls the dissassembler with the proper reader functions and such for disa
83 *
84 * @returns VBox status code.
85 * @param pVM VM handle
86 * @param pSelInfo The selector info.
87 * @param enmMode The guest paging mode.
88 * @param GCPtr The GC pointer (selector offset).
89 * @param pState The disas CPU state.
90 */
91static int dbgfR3DisasInstrFirst(PVM pVM, PSELMSELINFO pSelInfo, PGMMODE enmMode, RTGCPTR GCPtr, PDBGFDISASSTATE pState)
92{
93 pState->GCPtrSegBase = pSelInfo->GCPtrBase;
94 pState->GCPtrSegEnd = pSelInfo->cbLimit + 1 + (RTGCUINTPTR)pSelInfo->GCPtrBase;
95 pState->cbSegLimit = pSelInfo->cbLimit;
96 pState->enmMode = enmMode;
97 pState->pvPageGC = 0;
98 pState->pvPageHC = NULL;
99 pState->pVM = pVM;
100 pState->fLocked = false;
101 Assert((uintptr_t)GCPtr == GCPtr);
102 uint32_t cbInstr;
103 int rc = DISCoreOneEx(GCPtr,
104 pSelInfo->Raw.Gen.u1DefBig
105 ? enmMode >= PGMMODE_AMD64 && pSelInfo->Raw.Gen.u1Reserved
106 ? CPUMODE_64BIT
107 : CPUMODE_32BIT
108 : CPUMODE_16BIT,
109 dbgfR3DisasInstrRead,
110 &pState->Cpu,
111 &pState->Cpu,
112 &cbInstr);
113 if (VBOX_SUCCESS(rc))
114 {
115 pState->GCPtrNext = GCPtr + cbInstr;
116 return VINF_SUCCESS;
117 }
118
119 /* cleanup */
120 if (pState->fLocked)
121 {
122 PGMPhysReleasePageMappingLock(pVM, &pState->PageMapLock);
123 pState->fLocked = false;
124 }
125 return rc;
126}
127
128
129#if 0
130/**
131 * Calls the dissassembler for disassembling the next instruction.
132 *
133 * @returns VBox status code.
134 * @param pState The disas CPU state.
135 */
136static int dbgfR3DisasInstrNext(PDBGFDISASSTATE pState)
137{
138 uint32_t cbInstr;
139 int rc = DISInstr(&pState->Cpu, (void *)pState->GCPtrNext, 0, &cbInstr, NULL);
140 if (VBOX_SUCCESS(rc))
141 {
142 pState->GCPtrNext = GCPtr + cbInstr;
143 return VINF_SUCCESS;
144 }
145 return rc;
146}
147#endif
148
149
150/**
151 * Done with the dissassembler state, free associated resources.
152 *
153 * @param pState The disas CPU state ++.
154 */
155static void dbgfR3DisasInstrDone(PDBGFDISASSTATE pState)
156{
157 if (pState->fLocked)
158 {
159 PGMPhysReleasePageMappingLock(pState->pVM, &pState->PageMapLock);
160 pState->fLocked = false;
161 }
162}
163
164
165/**
166 * Instruction reader.
167 *
168 * @returns VBox status code. (Why this is a int32_t and not just an int is also beyond me.)
169 * @param PtrSrc Address to read from.
170 * In our case this is relative to the selector pointed to by the 2nd user argument of uDisCpu.
171 * @param pu8Dst Where to store the bytes.
172 * @param cbRead Number of bytes to read.
173 * @param uDisCpu Pointer to the disassembler cpu state. (Why this is a VBOXHUINTPTR is beyond me...)
174 * In this context it's always pointer to the Core of a DBGFDISASSTATE.
175 */
176static DECLCALLBACK(int) dbgfR3DisasInstrRead(RTUINTPTR PtrSrc, uint8_t *pu8Dst, uint32_t cbRead, void *pvDisCpu)
177{
178 PDBGFDISASSTATE pState = (PDBGFDISASSTATE)pvDisCpu;
179 Assert(cbRead > 0);
180 for (;;)
181 {
182 RTGCUINTPTR GCPtr = PtrSrc + pState->GCPtrSegBase;
183
184 /* Need to update the page translation? */
185 if ( !pState->pvPageHC
186 || (GCPtr >> PAGE_SHIFT) != (pState->pvPageGC >> PAGE_SHIFT))
187 {
188 int rc = VINF_SUCCESS;
189
190 /* translate the address */
191 pState->pvPageGC = GCPtr & PAGE_BASE_GC_MASK;
192 if (MMHyperIsInsideArea(pState->pVM, pState->pvPageGC))
193 {
194 pState->pvPageHC = MMHyperGC2HC(pState->pVM, pState->pvPageGC);
195 if (!pState->pvPageHC)
196 rc = VERR_INVALID_POINTER;
197 }
198 else
199 {
200 if (pState->fLocked)
201 PGMPhysReleasePageMappingLock(pState->pVM, &pState->PageMapLock);
202
203 if (pState->enmMode <= PGMMODE_PROTECTED)
204 rc = PGMPhysGCPhys2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageHC, &pState->PageMapLock);
205 else
206 rc = PGMPhysGCPtr2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageHC, &pState->PageMapLock);
207 pState->fLocked = RT_SUCCESS_NP(rc);
208 }
209 if (VBOX_FAILURE(rc))
210 {
211 pState->pvPageHC = NULL;
212 return rc;
213 }
214 }
215
216 /* check the segemnt limit */
217 if (PtrSrc > pState->cbSegLimit)
218 return VERR_OUT_OF_SELECTOR_BOUNDS;
219
220 /* calc how much we can read */
221 uint32_t cb = PAGE_SIZE - (GCPtr & PAGE_OFFSET_MASK);
222 RTGCUINTPTR cbSeg = pState->GCPtrSegEnd - GCPtr;
223 if (cb > cbSeg && cbSeg)
224 cb = cbSeg;
225 if (cb > cbRead)
226 cb = cbRead;
227
228 /* read and advance */
229 memcpy(pu8Dst, (char *)pState->pvPageHC + (GCPtr & PAGE_OFFSET_MASK), cb);
230 cbRead -= cb;
231 if (!cbRead)
232 return VINF_SUCCESS;
233 pu8Dst += cb;
234 PtrSrc += cb;
235 }
236}
237
238
239/**
240 * @copydoc FNDISGETSYMBOL
241 */
242static DECLCALLBACK(int) dbgfR3DisasGetSymbol(PCDISCPUSTATE pCpu, uint32_t u32Sel, RTUINTPTR uAddress, char *pszBuf, size_t cchBuf, RTINTPTR *poff, void *pvUser)
243{
244 PDBGFDISASSTATE pState = (PDBGFDISASSTATE)pCpu;
245 PCSELMSELINFO pSelInfo = (PCSELMSELINFO)pvUser;
246 DBGFSYMBOL Sym;
247 RTGCINTPTR off;
248 int rc;
249
250 if (DIS_FMT_SEL_IS_REG(u32Sel))
251 {
252 if (DIS_FMT_SEL_GET_REG(u32Sel) == USE_REG_CS)
253 rc = DBGFR3SymbolByAddr(pState->pVM, uAddress + pSelInfo->GCPtrBase, &off, &Sym);
254 else
255 rc = VERR_SYMBOL_NOT_FOUND; /** @todo implement this */
256 }
257 else
258 {
259 if (pSelInfo->Sel == DIS_FMT_SEL_GET_VALUE(u32Sel))
260 rc = DBGFR3SymbolByAddr(pState->pVM, uAddress + pSelInfo->GCPtrBase, &off, &Sym);
261 else
262 rc = VERR_SYMBOL_NOT_FOUND; /** @todo implement this */
263 }
264
265 if (RT_SUCCESS(rc))
266 {
267 size_t cchName = strlen(Sym.szName);
268 if (cchName >= cchBuf)
269 cchName = cchBuf - 1;
270 memcpy(pszBuf, Sym.szName, cchName);
271 pszBuf[cchName] = '\0';
272
273 *poff = off;
274 }
275
276 return rc;
277}
278
279
280/**
281 * Disassembles the one instruction according to the specified flags and address.
282 *
283 * @returns VBox status code.
284 * @param pVM VM handle.
285 * @param Sel The code selector. This used to determin the 32/16 bit ness and
286 * calculation of the actual instruction address.
287 * @param GCPtr The code address relative to the base of Sel.
288 * @param fFlags Flags controlling where to start and how to format.
289 * A combination of the DBGF_DISAS_FLAGS_* \#defines.
290 * @param pszOutput Output buffer.
291 * @param cchOutput Size of the output buffer.
292 * @param pcbInstr Where to return the size of the instruction.
293 */
294DBGFR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, RTSEL Sel, RTGCPTR GCPtr, unsigned fFlags, char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr)
295{
296 /*
297 * Get the Sel and GCPtr if fFlags requests that.
298 */
299 PCCPUMCTXCORE pCtxCore = NULL;
300 CPUMSELREGHID *pHiddenSel = NULL;
301 int rc;
302 if (fFlags & (DBGF_DISAS_FLAGS_CURRENT_GUEST | DBGF_DISAS_FLAGS_CURRENT_HYPER))
303 {
304 if (fFlags & DBGF_DISAS_FLAGS_CURRENT_GUEST)
305 pCtxCore = CPUMGetGuestCtxCore(pVM);
306 else
307 pCtxCore = CPUMGetHyperCtxCore(pVM);
308 Sel = pCtxCore->cs;
309 pHiddenSel = (CPUMSELREGHID *)&pCtxCore->csHid;
310 GCPtr = pCtxCore->eip;
311 }
312
313 /*
314 * Read the selector info - assume no stale selectors and nasty stuff like that.
315 * Since the selector flags in the CPUMCTX structures aren't up to date unless
316 * we recently visited REM, we'll not search for the selector there.
317 */
318 SELMSELINFO SelInfo;
319 const PGMMODE enmMode = PGMGetGuestMode(pVM);
320 bool fRealModeAddress = false;
321
322 if ( pHiddenSel
323 && CPUMAreHiddenSelRegsValid(pVM))
324 {
325 SelInfo.GCPtrBase = pHiddenSel->u32Base;
326 SelInfo.cbLimit = pHiddenSel->u32Limit;
327 SelInfo.fHyper = false;
328 SelInfo.fRealMode = !!((pCtxCore && pCtxCore->eflags.Bits.u1VM) || enmMode == PGMMODE_REAL);
329 SelInfo.Raw.au32[0] = 0;
330 SelInfo.Raw.au32[1] = 0;
331 SelInfo.Raw.Gen.u16LimitLow = ~0;
332 SelInfo.Raw.Gen.u4LimitHigh = ~0;
333 SelInfo.Raw.Gen.u1Present = pHiddenSel->Attr.n.u1Present;
334 SelInfo.Raw.Gen.u1Granularity = pHiddenSel->Attr.n.u1Granularity;;
335 SelInfo.Raw.Gen.u1DefBig = pHiddenSel->Attr.n.u1DefBig;
336 SelInfo.Raw.Gen.u1DescType = pHiddenSel->Attr.n.u1DescType;
337 SelInfo.Raw.Gen.u4Type = pHiddenSel->Attr.n.u4Type;
338 fRealModeAddress = SelInfo.fRealMode;
339 }
340 else if (Sel == DBGF_SEL_FLAT)
341 {
342 SelInfo.GCPtrBase = 0;
343 SelInfo.cbLimit = ~0;
344 SelInfo.fHyper = false;
345 SelInfo.fRealMode = false;
346 SelInfo.Raw.au32[0] = 0;
347 SelInfo.Raw.au32[1] = 0;
348 SelInfo.Raw.Gen.u16LimitLow = ~0;
349 SelInfo.Raw.Gen.u4LimitHigh = ~0;
350 SelInfo.Raw.Gen.u1Present = 1;
351 SelInfo.Raw.Gen.u1Granularity = 1;
352 SelInfo.Raw.Gen.u1DefBig = 1;
353 SelInfo.Raw.Gen.u1DescType = 1;
354 SelInfo.Raw.Gen.u4Type = X86_SEL_TYPE_EO;
355 }
356 else if ( !(fFlags & DBGF_DISAS_FLAGS_CURRENT_HYPER)
357 && ( (pCtxCore && pCtxCore->eflags.Bits.u1VM)
358 || enmMode == PGMMODE_REAL) )
359 { /* V86 mode or real mode - real mode addressing */
360 SelInfo.GCPtrBase = Sel * 16;
361 SelInfo.cbLimit = ~0;
362 SelInfo.fHyper = false;
363 SelInfo.fRealMode = true;
364 SelInfo.Raw.au32[0] = 0;
365 SelInfo.Raw.au32[1] = 0;
366 SelInfo.Raw.Gen.u16LimitLow = ~0;
367 SelInfo.Raw.Gen.u4LimitHigh = ~0;
368 SelInfo.Raw.Gen.u1Present = 1;
369 SelInfo.Raw.Gen.u1Granularity = 1;
370 SelInfo.Raw.Gen.u1DefBig = 0; /* 16 bits */
371 SelInfo.Raw.Gen.u1DescType = 1;
372 SelInfo.Raw.Gen.u4Type = X86_SEL_TYPE_EO;
373 fRealModeAddress = true;
374 }
375 else
376 {
377 rc = SELMR3GetSelectorInfo(pVM, Sel, &SelInfo);
378 if (VBOX_FAILURE(rc))
379 {
380 RTStrPrintf(pszOutput, cchOutput, "Sel=%04x -> %Vrc\n", Sel, rc);
381 return rc;
382 }
383 }
384
385 /*
386 * Disassemble it.
387 */
388 DBGFDISASSTATE State;
389 rc = dbgfR3DisasInstrFirst(pVM, &SelInfo, enmMode, GCPtr, &State);
390 if (VBOX_FAILURE(rc))
391 {
392 RTStrPrintf(pszOutput, cchOutput, "Disas -> %Vrc\n", rc);
393 return rc;
394 }
395
396 /*
397 * Format it.
398 */
399 char szBuf[512];
400 DISFormatYasmEx(&State.Cpu, szBuf, sizeof(szBuf),
401 DIS_FMT_FLAGS_RELATIVE_BRANCH,
402 fFlags & DBGF_DISAS_FLAGS_NO_SYMBOLS ? NULL : dbgfR3DisasGetSymbol,
403 &SelInfo);
404
405 /*
406 * Print it to the user specified buffer.
407 */
408 if (fFlags & DBGF_DISAS_FLAGS_NO_BYTES)
409 {
410 if (fFlags & DBGF_DISAS_FLAGS_NO_ADDRESS)
411 RTStrPrintf(pszOutput, cchOutput, "%s", szBuf);
412 else if (fRealModeAddress)
413 RTStrPrintf(pszOutput, cchOutput, "%04x:%04x %s", Sel, (unsigned)GCPtr, szBuf);
414 else if (Sel == DBGF_SEL_FLAT)
415 {
416 if (enmMode >= PGMMODE_AMD64)
417 RTStrPrintf(pszOutput, cchOutput, "%VGv %s", GCPtr, szBuf);
418 else
419 RTStrPrintf(pszOutput, cchOutput, "%VRv %s", (RTRCPTR)GCPtr, szBuf);
420 }
421 else
422 {
423 if (enmMode >= PGMMODE_AMD64)
424 RTStrPrintf(pszOutput, cchOutput, "%04x:%VGv %s", Sel, GCPtr, szBuf);
425 else
426 RTStrPrintf(pszOutput, cchOutput, "%04x:%VRv %s", Sel, (RTRCPTR)GCPtr, szBuf);
427 }
428 }
429 else
430 {
431 uint32_t cbBits = State.Cpu.opsize;
432 uint8_t *pau8Bits = (uint8_t *)alloca(cbBits);
433 rc = dbgfR3DisasInstrRead(GCPtr, pau8Bits, cbBits, &State);
434 AssertRC(rc);
435 if (fFlags & DBGF_DISAS_FLAGS_NO_ADDRESS)
436 RTStrPrintf(pszOutput, cchOutput, "%.*Vhxs%*s %s",
437 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
438 szBuf);
439 else if (fRealModeAddress)
440 RTStrPrintf(pszOutput, cchOutput, "%04x:%04x %.*Vhxs%*s %s",
441 Sel, (unsigned)GCPtr,
442 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
443 szBuf);
444 else if (Sel == DBGF_SEL_FLAT)
445 {
446 if (enmMode >= PGMMODE_AMD64)
447 RTStrPrintf(pszOutput, cchOutput, "%VGv %.*Vhxs%*s %s",
448 GCPtr,
449 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
450 szBuf);
451 else
452 RTStrPrintf(pszOutput, cchOutput, "%VRv %.*Vhxs%*s %s",
453 (RTRCPTR)GCPtr,
454 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
455 szBuf);
456 }
457 else
458 {
459 if (enmMode >= PGMMODE_AMD64)
460 RTStrPrintf(pszOutput, cchOutput, "%04x:%VGv %.*Vhxs%*s %s",
461 Sel, GCPtr,
462 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
463 szBuf);
464 else
465 RTStrPrintf(pszOutput, cchOutput, "%04x:%VRv %.*Vhxs%*s %s",
466 Sel, (RTRCPTR)GCPtr,
467 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
468 szBuf);
469 }
470 }
471
472 if (pcbInstr)
473 *pcbInstr = State.Cpu.opsize;
474
475 dbgfR3DisasInstrDone(&State);
476 return VINF_SUCCESS;
477}
478
479
480/**
481 * Disassembles an instruction.
482 * Addresses will be tried resolved to symbols
483 *
484 * @returns VBox status code.
485 * @param pVM VM handle.
486 * @param Sel The code selector. This used to determin the 32/16 bit ness and
487 * calculation of the actual instruction address.
488 * @param GCPtr The code address relative to the base of Sel.
489 * @param pszOutput Output buffer.
490 * @param cchOutput Size of the output buffer.
491 */
492DBGFR3DECL(int) DBGFR3DisasInstr(PVM pVM, RTSEL Sel, RTGCPTR GCPtr, char *pszOutput, uint32_t cchOutput)
493{
494 return DBGFR3DisasInstrEx(pVM, Sel, GCPtr, 0, pszOutput, cchOutput, NULL);
495}
496
497
498/**
499 * Disassembles the current guest context instruction.
500 * All registers and data will be displayed. Addresses will be attempted resolved to symbols.
501 *
502 * @returns VBox status code.
503 * @param pVM VM handle.
504 * @param pszOutput Output buffer.
505 * @param cchOutput Size of the output buffer.
506 */
507DBGFR3DECL(int) DBGFR3DisasInstrCurrent(PVM pVM, char *pszOutput, uint32_t cchOutput)
508{
509 return DBGFR3DisasInstrEx(pVM, 0, 0, DBGF_DISAS_FLAGS_CURRENT_GUEST, pszOutput, cchOutput, NULL);
510}
511
512
513/**
514 * Disassembles the current guest context instruction and writes it to the log.
515 * All registers and data will be displayed. Addresses will be attempted resolved to symbols.
516 *
517 * @returns VBox status code.
518 * @param pVM VM handle.
519 * @param pszPrefix Short prefix string to the dissassembly string. (optional)
520 */
521DBGFR3DECL(int) DBGFR3DisasInstrCurrentLogInternal(PVM pVM, const char *pszPrefix)
522{
523 char szBuf[256];
524 szBuf[0] = '\0';
525 int rc = DBGFR3DisasInstrCurrent(pVM, &szBuf[0], sizeof(szBuf));
526 if (VBOX_FAILURE(rc))
527 RTStrPrintf(szBuf, sizeof(szBuf), "DBGFR3DisasInstrCurrentLog failed with rc=%Vrc\n", rc);
528 if (pszPrefix && *pszPrefix)
529 RTLogPrintf("%s: %s\n", pszPrefix, szBuf);
530 else
531 RTLogPrintf("%s\n", szBuf);
532 return rc;
533}
534
535
536
537/**
538 * Disassembles the specified guest context instruction and writes it to the log.
539 * Addresses will be attempted resolved to symbols.
540 *
541 * @returns VBox status code.
542 * @param pVM VM handle.
543 * @param Sel The code selector. This used to determin the 32/16 bit-ness and
544 * calculation of the actual instruction address.
545 * @param GCPtr The code address relative to the base of Sel.
546 */
547DBGFR3DECL(int) DBGFR3DisasInstrLogInternal(PVM pVM, RTSEL Sel, RTGCPTR GCPtr)
548{
549 char szBuf[256];
550 szBuf[0] = '\0';
551 int rc = DBGFR3DisasInstr(pVM, Sel, GCPtr, &szBuf[0], sizeof(szBuf));
552 if (VBOX_FAILURE(rc))
553 RTStrPrintf(szBuf, sizeof(szBuf), "DBGFR3DisasInstrLog(, %RTsel, %RGv) failed with rc=%Vrc\n", Sel, GCPtr, rc);
554 RTLogPrintf("%s\n", szBuf);
555 return rc;
556}
557
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