Changeset 99208 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 29, 2023 2:13:56 PM (22 months ago)
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/EMInternal.h
r98103 r99208 211 211 /** For saving stack space, the disassembler state is allocated here instead of 212 212 * on the stack. */ 213 DIS CPUSTATE DisState;213 DISSTATE Dis; 214 214 215 215 /** @name Execution profiling. -
trunk/src/VBox/VMM/include/GIMHvInternal.h
r98980 r99208 1367 1367 VMM_INT_DECL(bool) gimHvAreHypercallsEnabled(PCVM pVM); 1368 1368 VMM_INT_DECL(bool) gimHvShouldTrapXcptUD(PVMCPU pVCpu); 1369 VMM_INT_DECL(VBOXSTRICTRC) gimHvXcptUD(PVMCPUCC pVCpu, PCPUMCTX pCtx, PDIS CPUSTATE pDis, uint8_t *pcbInstr);1369 VMM_INT_DECL(VBOXSTRICTRC) gimHvXcptUD(PVMCPUCC pVCpu, PCPUMCTX pCtx, PDISSTATE pDis, uint8_t *pcbInstr); 1370 1370 VMM_INT_DECL(VBOXSTRICTRC) gimHvHypercall(PVMCPUCC pVCpu, PCPUMCTX pCtx); 1371 1371 VMM_INT_DECL(VBOXSTRICTRC) gimHvHypercallEx(PVMCPUCC pVCpu, PCPUMCTX pCtx, unsigned uDisOpcode, uint8_t cbInstr); -
trunk/src/VBox/VMM/include/GIMKvmInternal.h
r98980 r99208 276 276 #endif 277 277 VMM_INT_DECL(bool) gimKvmShouldTrapXcptUD(PVM pVM); 278 VMM_INT_DECL(VBOXSTRICTRC) gimKvmXcptUD(PVMCC pVM, PVMCPUCC pVCpu, PCPUMCTX pCtx, PDIS CPUSTATE pDis, uint8_t *pcbInstr);278 VMM_INT_DECL(VBOXSTRICTRC) gimKvmXcptUD(PVMCC pVM, PVMCPUCC pVCpu, PCPUMCTX pCtx, PDISSTATE pDis, uint8_t *pcbInstr); 279 279 VMM_INT_DECL(VBOXSTRICTRC) gimKvmHypercallEx(PVMCPUCC pVCpu, PCPUMCTX pCtx, unsigned uDisOpcode, uint8_t cbInstr); 280 280 -
trunk/src/VBox/VMM/include/HMInternal.h
r98103 r99208 1145 1145 /** For saving stack space, the disassembler state is allocated here 1146 1146 * instead of on the stack. */ 1147 DIS CPUSTATE DisState;1147 DISSTATE Dis; 1148 1148 } svm; 1149 1149 } HMR0PERVCPU; -
trunk/src/VBox/VMM/include/PGMInternal.h
r99051 r99208 3594 3594 /** For saving stack space, the disassembler state is allocated here instead of 3595 3595 * on the stack. */ 3596 DIS CPUSTATE DisState;3596 DISSTATE Dis; 3597 3597 3598 3598 /** Counts the number of times the netware WP0+RO+US hack has been applied. */
Note:
See TracChangeset
for help on using the changeset viewer.