Changeset 81202 in vbox
- Timestamp:
- Oct 10, 2019 6:46:47 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r81201 r81202 4811 4811 * @param pszInstr The VMX instruction name (for logging purposes). 4812 4812 */ 4813 IEM_STATIC intiemVmxVmentryCheckGuestControlRegsMsrs(PVMCPUCC pVCpu, const char *pszInstr)4813 DECLINLINE(int) iemVmxVmentryCheckGuestControlRegsMsrs(PVMCPUCC pVCpu, const char *pszInstr) 4814 4814 { 4815 4815 /* … … 4958 4958 * @param pszInstr The VMX instruction name (for logging purposes). 4959 4959 */ 4960 IEM_STATIC intiemVmxVmentryCheckGuestSegRegs(PVMCPUCC pVCpu, const char *pszInstr)4960 DECLINLINE(int) iemVmxVmentryCheckGuestSegRegs(PVMCPUCC pVCpu, const char *pszInstr) 4961 4961 { 4962 4962 /* … … 5346 5346 * @param pszInstr The VMX instruction name (for logging purposes). 5347 5347 */ 5348 IEM_STATIC intiemVmxVmentryCheckGuestGdtrIdtr(PVMCPUCC pVCpu, const char *pszInstr)5348 DECLINLINE(int) iemVmxVmentryCheckGuestGdtrIdtr(PVMCPUCC pVCpu, const char *pszInstr) 5349 5349 { 5350 5350 /* … … 5392 5392 * @param pszInstr The VMX instruction name (for logging purposes). 5393 5393 */ 5394 IEM_STATIC intiemVmxVmentryCheckGuestRipRFlags(PVMCPUCC pVCpu, const char *pszInstr)5394 DECLINLINE(int) iemVmxVmentryCheckGuestRipRFlags(PVMCPUCC pVCpu, const char *pszInstr) 5395 5395 { 5396 5396 /* … … 5466 5466 * @param pszInstr The VMX instruction name (for logging purposes). 5467 5467 */ 5468 IEM_STATIC intiemVmxVmentryCheckGuestNonRegState(PVMCPUCC pVCpu, const char *pszInstr)5468 DECLINLINE(int) iemVmxVmentryCheckGuestNonRegState(PVMCPUCC pVCpu, const char *pszInstr) 5469 5469 { 5470 5470 /* … … 5724 5724 * @param pszInstr The VMX instruction name (for logging purposes). 5725 5725 */ 5726 IEM_STATIC intiemVmxVmentryCheckGuestPdptes(PVMCPUCC pVCpu, const char *pszInstr)5726 DECLINLINE(int) iemVmxVmentryCheckGuestPdptes(PVMCPUCC pVCpu, const char *pszInstr) 5727 5727 { 5728 5728 /* … … 7398 7398 if (RT_SUCCESS(rc)) 7399 7399 { 7400 /* Initialize read-only VMCS fields before VM-entry since we don't update all of them for every VM-exit. */ 7400 /* 7401 * Initialize read-only VMCS fields before VM-entry since we don't update all of them 7402 * for every VM-exit. This needs to be done before invoking a VM-exit (even those 7403 * ones that may occur during VM-entry below). 7404 */ 7401 7405 iemVmxVmentryInitReadOnlyFields(pVCpu); 7402 7406
Note:
See TracChangeset
for help on using the changeset viewer.