Changeset 101548 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Oct 23, 2023 1:30:06 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompiler.cpp
r101547 r101548 4217 4217 * @param fFlags The flags. 4218 4218 * @param pszBuf The output buffer. 4219 * @param c chBuf The output buffer length. At least 32 bytes.4219 * @param cbBuf The output buffer size. At least 32 bytes. 4220 4220 */ 4221 4221 const char *iemTbFlagsToString(uint32_t fFlags, char *pszBuf, size_t cbBuf) … … 4368 4368 { 4369 4369 /* Did the exec flag change? */ 4370 if (fExec == pDbgInfo->aEntries[iDbgEntry].GuestInstruction.fExec) 4371 {} //pHlp->pfnPrintf(pHlp, "\n"); 4372 else 4370 if (fExec != pDbgInfo->aEntries[iDbgEntry].GuestInstruction.fExec) 4373 4371 { 4374 4372 pHlp->pfnPrintf(pHlp, … … 4512 4510 if (RT_SUCCESS(rc)) 4513 4511 { 4514 # 4512 # if defined(RT_ARCH_AMD64) 4515 4513 if (Dis.pCurInstr->uOpcode == OP_NOP && cbInstr == 7) /* iemNativeEmitMarker */ 4516 4514 { … … 4524 4522 } 4525 4523 else 4526 # 4524 # endif 4527 4525 { 4528 4526 DISFormatYasmEx(&Dis, szDisBuf, sizeof(szDisBuf), … … 4535 4533 else 4536 4534 { 4537 # 4535 # if defined(RT_ARCH_AMD64) 4538 4536 pHlp->pfnPrintf(pHlp, " %p: %.*Rhxs - disassembly failure %Rrc\n", 4539 4537 &paNative[offNative], RT_MIN(cNative - offNative, 16), &paNative[offNative], rc); 4540 # 4538 # elif defined(RT_ARCH_ARM64) 4541 4539 pHlp->pfnPrintf(pHlp, " %p: %#010RX32 - disassembly failure %Rrc\n", 4542 4540 &paNative[offNative], paNative[offNative], rc); 4543 # 4544 # 4541 # else 4542 # error "Port me" 4545 4543 # endif 4546 4544 cbInstr = sizeof(paNative[0]);
Note:
See TracChangeset
for help on using the changeset viewer.