Changeset 108298 in vbox
- Timestamp:
- Feb 19, 2025 3:17:42 PM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167642
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/target-x86/IEMInternal-x86.h
r108278 r108298 2383 2383 /** @name Misc Helpers 2384 2384 * @{ */ 2385 2386 /** @def IEM_GET_INSTR_LEN 2387 * Gets the instruction length. */ 2388 #ifdef IEM_WITH_CODE_TLB 2389 # define IEM_GET_INSTR_LEN(a_pVCpu) ((a_pVCpu)->iem.s.offInstrNextByte - (uint32_t)(int32_t)(a_pVCpu)->iem.s.offCurInstrStart) 2390 #else 2391 # define IEM_GET_INSTR_LEN(a_pVCpu) ((a_pVCpu)->iem.s.offOpcode) 2392 #endif 2385 2393 2386 2394 /** -
trunk/src/VBox/VMM/include/IEMInternal.h
r108278 r108298 2484 2484 #endif 2485 2485 2486 /** @def IEM_GET_INSTR_LEN2487 * Gets the instruction length.2488 * @note x86 specific */2489 #ifdef IEM_WITH_CODE_TLB2490 # define IEM_GET_INSTR_LEN(a_pVCpu) ((a_pVCpu)->iem.s.offInstrNextByte - (uint32_t)(int32_t)(a_pVCpu)->iem.s.offCurInstrStart)2491 #else2492 # define IEM_GET_INSTR_LEN(a_pVCpu) ((a_pVCpu)->iem.s.offOpcode)2493 #endif2494 2486 2495 2487 /** @def IEM_TRY_SETJMP
Note:
See TracChangeset
for help on using the changeset viewer.