Changeset 73959 in vbox for trunk/include/VBox
- Timestamp:
- Aug 29, 2018 3:24:49 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/iem.h
r73756 r73959 29 29 #include <VBox/types.h> 30 30 #include <VBox/vmm/trpm.h> 31 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 32 # include <VBox/vmm/hm_vmx.h> 33 #endif 31 34 #include <iprt/assert.h> 32 35 … … 320 323 321 324 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 322 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmptrld(PVMCPU pVCpu, uint8_t cbInstr, RTGCPHYS GCPtrVmcs, uint32_t uExitInstrInfo,323 RTGCPTR GCPtrDisp);324 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmptrst(PVMCPU pVCpu, uint8_t cbInstr, RTGCPHYS GCPtrVmcs, uint32_t uExitInstrInfo,325 RTGCPTR GCPtrDisp);326 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmclear(PVMCPU pVCpu, uint8_t cbInstr, RTGCPHYS GCPtrVmcs, uint32_t uExitInstrInfo,327 RTGCPTR GCPtrDisp);328 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmxon(PVMCPU pVCpu, uint8_t cbInstr, RTGCPTR GCPtrVmxon, uint32_t uExitInstrInfo,329 RTGCPTR GCPtrDisp);325 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmptrld(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmcs, 326 PCVMXVEXITINFO pExitInfo); 327 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmptrst(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmcs, 328 PCVMXVEXITINFO pExitInfo); 329 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmclear(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmcs, 330 PCVMXVEXITINFO pExitInfo); 331 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmxon(PVMCPU pVCpu, uint8_t cbInstr, uint8_t iEffSeg, RTGCPHYS GCPtrVmxon, 332 PCVMXVEXITINFO pExitInfo); 330 333 VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedVmxoff(PVMCPU pVCpu, uint8_t cbInstr); 331 334 #endif
Note:
See TracChangeset
for help on using the changeset viewer.