Searched refs:bOpCode (Results 1 - 7 of 7) sorted by relevance
/vbox/src/VBox/Disassembler/ |
H A D | DisasmCore.cpp | 644 uint8_t index = pDis->bOpCode - 0xD8; 1984 pDis->bOpCode = disReadByte(pDis, offInstr); 1988 PCDISOPCODE pOpcode = &g_aTwoByteMapX86[pDis->bOpCode]; 1997 if (g_aTwoByteMapX86_PF66[pDis->bOpCode].uOpcode != OP_INVALID) 2000 pOpcode = &g_aTwoByteMapX86_PF66[pDis->bOpCode]; 2015 if (g_aTwoByteMapX86_PFF2[pDis->bOpCode].uOpcode != OP_INVALID) 2018 pOpcode = &g_aTwoByteMapX86_PFF2[pDis->bOpCode]; 2026 if (g_aTwoByteMapX86_PFF3[pDis->bOpCode].uOpcode != OP_INVALID) 2029 pOpcode = &g_aTwoByteMapX86_PFF3[pDis->bOpCode]; 2047 pDis->bOpCode [all...] |
H A D | DisasmFormatYasm.cpp | 559 if (pDis->bOpCode == 0x90) 563 else if (pDis->bOpCode == 0x1f) 634 if (pDis->bOpCode == 0xdb) /* m80fp workaround. */ 1585 if (pDis->bOpCode == 0x82) 1596 Assert(pDis->bOpCode == 0x8f); 1600 if ( pDis->bOpCode == 0x8a 1601 || pDis->bOpCode == 0x8b) 1628 if (pDis->bOpCode == 0x82) 1668 AssertMsg(pDis->bOpCode >= 0x90 && pDis->bOpCode < [all...] |
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstLdrDisasmTest.cpp | 104 MY_PRINTF(("DISCoreOneEx -> rc=%d cb=%d Cpu: bOpCode=%#x pCurInstr=%p (42=%d)\n", \ 105 rc, cb, pCpu->bOpCode, pCpu->pCurInstr, 42)); \
|
/vbox/src/VBox/Disassembler/testcase/ |
H A D | tstDisasm-2.cpp | 146 if ( pDis->bOpCode == 0x8f 153 if ( ( pDis->bOpCode == 0xc6 154 || pDis->bOpCode == 0xc7)
|
/vbox/src/VBox/Runtime/common/dbg/ |
H A D | dbgmoddwarf.cpp | 2440 uint8_t bOpCode = rtDwarfCursor_GetUByte(pCursor, DW_LNS_extended); local 2441 if (bOpCode >= pLnState->Hdr.u8OpcodeBase) 2446 uint8_t const bLogOpCode = bOpCode; NOREF(bLogOpCode); 2447 bOpCode -= pLnState->Hdr.u8OpcodeBase; 2449 int32_t const cLineDelta = bOpCode % pLnState->Hdr.u8LineRange + (int32_t)pLnState->Hdr.s8LineBase; 2450 bOpCode /= pLnState->Hdr.u8LineRange; 2452 uint64_t uTmp = bOpCode + pLnState->Regs.idxOp; 2467 switch (bOpCode) 2545 unsigned cOpsToSkip = pLnState->Hdr.pacStdOperands[bOpCode - 1]; 2546 Log(("rtDwarfLine_RunProgram: Unknown standard opcode %#x, %#x operands, at %08x.\n", bOpCode, cOpsToSki [all...] |
/vbox/include/VBox/ |
H A D | dis.h | 593 uint8_t bOpCode; member in struct:DISSTATE
|
/vbox/src/VBox/VMM/VMMAll/ |
H A D | PGMAllPhys.cpp | 112 switch (pDis->bOpCode)
|
Completed in 191 milliseconds