Changeset 19293 in vbox for trunk/src/VBox/VMM/DBGFDisas.cpp
- Timestamp:
- May 1, 2009 4:11:18 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46745
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGFDisas.cpp
r19181 r19293 312 312 char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr) 313 313 { 314 VMCPU_ASSERT_EMT(pVCpu); 314 315 RTGCPTR GCPtr = *pGCPtr; 315 316 … … 520 521 * @returns VBox status code. 521 522 * @param pVM VM handle. 522 * @param pVCpu The virtual CPU handle, defaults to CPU 0 if NULL.523 * @param idCpu The ID of virtual CPU. 523 524 * @param Sel The code selector. This used to determin the 32/16 bit ness and 524 525 * calculation of the actual instruction address. … … 533 534 * address conversion. 534 535 */ 535 VMMR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr, unsigned fFlags,536 VMMR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, VMCPUID idCpu, RTSEL Sel, RTGCPTR GCPtr, unsigned fFlags, 536 537 char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr) 537 538 { 538 /* If not specified, assume CPU 0. */ 539 if (!pVCpu) 540 pVCpu = &pVM->aCpus[0]; 541 542 int rc; 543 if (VMCPU_IS_EMT(pVCpu)) /* not necessary, but it's faster. */ 539 VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE); 540 AssertReturn(idCpu < pVM->cCPUs, VERR_INVALID_CPU_ID); 541 542 int rc; 543 PVMCPU pVCpu = VMMGetCpu(pVM); 544 if ( pVCpu 545 && pVCpu->idCpu == idCpu) /* not necessary, but it's faster. */ 544 546 rc = dbgfR3DisasInstrExOnVCpu(pVM, pVCpu, Sel, &GCPtr, fFlags, pszOutput, cchOutput, pcbInstr); 545 547 else 546 548 { 547 549 PVMREQ pReq = NULL; 548 rc = VMR3ReqCall(pV Cpu->pVMR3, VMREQDEST_FROM_VMCPU(pVCpu), &pReq, RT_INDEFINITE_WAIT,550 rc = VMR3ReqCall(pVM, VMREQDEST_FROM_ID(idCpu), &pReq, RT_INDEFINITE_WAIT, 549 551 (PFNRT)dbgfR3DisasInstrExOnVCpu, 8, 550 pVM, pVCpu, Sel, &GCPtr, fFlags, pszOutput, cchOutput, pcbInstr);552 pVM, VMMGetCpuById(pVM, idCpu), Sel, &GCPtr, fFlags, pszOutput, cchOutput, pcbInstr); 551 553 if (RT_SUCCESS(rc)) 552 554 { … … 556 558 } 557 559 return rc; 558 }559 560 561 /**562 * Disassembles an instruction.563 * Addresses will be tried resolved to symbols564 *565 * @returns VBox status code.566 * @param pVM VM handle.567 * @param pVCpu The virtual CPU handle, defaults to CPU 0 if NULL.568 * @param Sel The code selector. This used to determin the 32/16 bit ness and569 * calculation of the actual instruction address.570 * @param GCPtr The code address relative to the base of Sel.571 * @param pszOutput Output buffer.572 * @param cchOutput Size of the output buffer.573 */574 VMMR3DECL(int) DBGFR3DisasInstr(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr, char *pszOutput, uint32_t cchOutput)575 {576 return DBGFR3DisasInstrEx(pVM, pVCpu, Sel, GCPtr, 0, pszOutput, cchOutput, NULL);577 560 } 578 561 … … 589 572 VMMR3DECL(int) DBGFR3DisasInstrCurrent(PVM pVM, char *pszOutput, uint32_t cchOutput) 590 573 { 591 return DBGFR3DisasInstrEx(pVM, VMMGetCpu(pVM), 0, 0, DBGF_DISAS_FLAGS_CURRENT_GUEST, pszOutput, cchOutput, NULL); 574 *pszOutput = '\0'; 575 PVMCPU pVCpu = VMMGetCpu(pVM); 576 AssertReturn(pVCpu, VERR_INVALID_CONTEXT); 577 return DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, 0, 0, DBGF_DISAS_FLAGS_CURRENT_GUEST, 578 pszOutput, cchOutput, NULL); 592 579 } 593 580 … … 628 615 * @param GCPtr The code address relative to the base of Sel. 629 616 */ 630 VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr) 631 { 617 VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVM pVM, RTSEL Sel, RTGCPTR GCPtr) 618 { 619 PVMCPU pVCpu = VMMGetCpu(pVM); 620 AssertReturn(pVCpu, VERR_INVALID_CONTEXT); 621 632 622 char szBuf[256]; 633 623 szBuf[0] = '\0'; 634 int rc = DBGFR3DisasInstr (pVM, pVCpu, Sel, GCPtr, &szBuf[0], sizeof(szBuf));624 int rc = DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, Sel, GCPtr, 0, &szBuf[0], sizeof(szBuf), NULL); 635 625 if (RT_FAILURE(rc)) 636 626 RTStrPrintf(szBuf, sizeof(szBuf), "DBGFR3DisasInstrLog(, %RTsel, %RGv) failed with rc=%Rrc\n", Sel, GCPtr, rc);
Note:
See TracChangeset
for help on using the changeset viewer.