Changeset 49480 in vbox for trunk/src/VBox/Disassembler
- Timestamp:
- Nov 14, 2013 3:13:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmCore.cpp
r46949 r49480 227 227 { 228 228 #ifdef IN_RING0 229 NOREF(cbMinRead); 229 230 AssertMsgFailed(("disReadWord with no read callback in ring 0!!\n")); 230 231 RT_BZERO(&pDis->abInstr[offInstr], cbMaxRead); … … 807 808 NOREF(pOp); NOREF(pDis); 808 809 809 unsigned mod = pDis->ModRM.Bits.Mod;810 811 810 unsigned type = OP_PARM_VTYPE(pParam->fParam); 812 811 unsigned subtype = OP_PARM_VSUBTYPE(pParam->fParam); … … 1563 1562 static size_t ParseImmAddr(size_t offInstr, PCDISOPCODE pOp, PDISSTATE pDis, PDISOPPARAM pParam) 1564 1563 { 1564 NOREF(pOp); 1565 1565 if (pDis->uAddrMode == DISCPUMODE_32BIT) 1566 1566 { … … 1645 1645 static size_t ParseImmAddrF(size_t offInstr, PCDISOPCODE pOp, PDISSTATE pDis, PDISOPPARAM pParam) 1646 1646 { 1647 NOREF(pOp); 1647 1648 // immediate far pointers - only 16:16 or 16:32; determined by operand, *not* address size! 1648 1649 Assert(pDis->uOpMode == DISCPUMODE_16BIT || pDis->uOpMode == DISCPUMODE_32BIT); … … 1882 1883 static size_t ParseInvOpModRm(size_t offInstr, PCDISOPCODE pOp, PDISSTATE pDis, PDISOPPARAM pParam) 1883 1884 { 1885 NOREF(pOp); NOREF(pDis); NOREF(pParam); 1884 1886 /* This is used to avoid a bunch of special hacks to get the ModRM byte 1885 1887 included when encountering invalid opcodes in groups. */
Note:
See TracChangeset
for help on using the changeset viewer.