Changeset 80015 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jul 26, 2019 4:46:49 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132450
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/TRPMInternal.h
r76585 r80015 37 37 */ 38 38 39 40 #ifdef VBOX_WITH_RAW_MODE41 /** Enable or disable tracking of Guest's IDT. */42 # define TRPM_TRACK_GUEST_IDT_CHANGES43 /** Enable or disable tracking of Shadow IDT. */44 # define TRPM_TRACK_SHADOW_IDT_CHANGES45 #endif46 47 48 /** Enable to allow trap forwarding in GC. */49 #ifdef VBOX_WITH_RAW_MODE50 # define TRPM_FORWARD_TRAPS_IN_GC51 #endif52 53 39 /** First interrupt handler. Used for validating input. */ 54 40 #define TRPM_HANDLER_INT_BASE 0x20 … … 75 61 76 62 77 #if 0 /* not used */78 /**79 * Converts a TRPM pointer into a VM pointer.80 * @returns Pointer to the VM structure the TRPM is part of.81 * @param pTRPM Pointer to TRPM instance data.82 */83 #define TRPM_2_VM(pTRPM) ( (PVM)((uint8_t *)(pTRPM) - (pTRPM)->offVM) )84 #endif85 86 /**87 * Converts a TRPM pointer into a TRPMCPU pointer.88 * @returns Pointer to the VM structure the TRPMCPU is part of.89 * @param pTrpmCpu Pointer to TRPMCPU instance data.90 * @remarks Raw-mode only, not SMP safe.91 */92 #define TRPM_2_TRPMCPU(pTrpmCpu) ( (PTRPMCPU)((uint8_t *)(pTrpmCpu) + (pTrpmCpu)->offTRPMCPU) )93 94 95 63 /** 96 64 * TRPM Data (part of VM) 97 65 * 98 * IMPORTANT! Keep the nasm version of this struct up-to-date.66 * @note This used to be a big deal when we had raw-mode, now it's a dud. :-) 99 67 */ 100 68 typedef struct TRPM 101 69 { 102 /** Offset to the VM structure.103 * See TRPM_2_VM(). */104 RTINT offVM;105 /** Offset to the TRPMCPU structure.106 * See TRPM2TRPMCPU(). */107 RTINT offTRPMCPU;108 109 /** Whether monitoring of the guest IDT is enabled or not.110 *111 * This configuration option is provided for speeding up guest like Solaris112 * that put the IDT on the same page as a whole lot of other data that is113 * frequently updated. The updates will cause \#PFs and have to be interpreted114 * by PGMInterpretInstruction which is slow compared to raw execution.115 *116 * If the guest is well behaved and doesn't change the IDT after loading it,117 * there is no problem with dropping the IDT monitoring.118 *119 * @cfgm{/TRPM/SafeToDropGuestIDTMonitoring, boolean, defaults to false.}120 */121 bool fSafeToDropGuestIDTMonitoring;122 123 /** Padding to get the IDTs at a 16 byte alignment. */124 uint8_t abPadding1[7];125 /** IDTs. Aligned at 16 byte offset for speed. */126 VBOXIDTE aIdt[256];127 128 /** Bitmap for IDTEs that contain PATM handlers. (needed for relocation) */129 uint32_t au32IdtPatched[8];130 131 /** Temporary Hypervisor trap handlers.132 * NULL means default action. */133 RCPTRTYPE(void *) aTmpTrapHandlers[256];134 135 /** RC Pointer to the IDT shadow area (aIdt) in HMA. */136 RCPTRTYPE(void *) pvMonShwIdtRC;137 /** padding. */138 uint8_t au8Padding[2];139 /** Current (last) Guest's IDTR. */140 VBOXIDTR GuestIdtr;141 /** Shadow IDT virtual write access handler type. */142 PGMVIRTHANDLERTYPE hShadowIdtWriteHandlerType;143 /** Guest IDT virtual write access handler type. */144 PGMVIRTHANDLERTYPE hGuestIdtWriteHandlerType;145 146 /** Checked trap & interrupt handler array */147 RCPTRTYPE(void *) aGuestTrapHandler[256];148 149 /** RC: The number of times writes to the Guest IDT were detected. */150 STAMCOUNTER StatRCWriteGuestIDTFault;151 STAMCOUNTER StatRCWriteGuestIDTHandled;152 153 /** HC: Profiling of the TRPMR3SyncIDT() method. */154 STAMPROFILE StatSyncIDT;155 /** GC: Statistics for the trap handlers. */156 STAMPROFILEADV aStatGCTraps[0x14];157 158 STAMPROFILEADV StatForwardProfR3;159 STAMPROFILEADV StatForwardProfRZ;160 STAMCOUNTER StatForwardFailNoHandler;161 STAMCOUNTER StatForwardFailPatchAddr;162 STAMCOUNTER StatForwardFailR3;163 STAMCOUNTER StatForwardFailRZ;164 165 STAMPROFILE StatTrap0dDisasm;166 STAMCOUNTER StatTrap0dRdTsc; /**< Number of RDTSC \#GPs. */167 168 70 #ifdef VBOX_WITH_STATISTICS 169 71 /** Statistics for interrupt handlers (allocated on the hypervisor heap) - R3 170 72 * pointer. */ 171 73 R3PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR3; 172 /** Statistics for interrupt handlers - RC pointer. */173 RCPTRTYPE(PSTAMCOUNTER) paStatForwardedIRQRC;174 175 /** Host interrupt statistics (allocated on the hypervisor heap) - RC ptr. */176 RCPTRTYPE(PSTAMCOUNTER) paStatHostIrqRC;177 /** Host interrupt statistics (allocated on the hypervisor heap) - R3 ptr. */178 R3PTRTYPE(PSTAMCOUNTER) paStatHostIrqR3;179 74 #endif 75 uint64_t u64Dummy; 180 76 } TRPM; 181 AssertCompileMemberAlignment(TRPM, GuestIdtr.pIdt, 8);182 77 183 78 /** Pointer to TRPM Data. */ 184 79 typedef TRPM *PTRPM; 185 186 187 /**188 * Converts a TRPMCPU pointer into a VM pointer.189 * @returns Pointer to the VM structure the TRPMCPU is part of.190 * @param pTrpmCpu Pointer to TRPMCPU instance data.191 */192 #define TRPMCPU_2_VM(pTrpmCpu) ( (PVM)((uint8_t *)(pTrpmCpu) - (pTrpmCpu)->offVM) )193 194 /**195 * Converts a TRPMCPU pointer into a VMCPU pointer.196 * @returns Pointer to the VMCPU structure the TRPMCPU is part of.197 * @param pTrpmCpu Pointer to TRPMCPU instance data.198 */199 #define TRPMCPU_2_VMCPU(pTrpmCpu) ( (PVMCPU)((uint8_t *)(pTrpmCpu) - (pTrpmCpu)->offVMCpu) )200 80 201 81 … … 205 85 typedef struct TRPMCPU 206 86 { 207 /** Offset into the VM structure.208 * See TRPMCPU_2_VM(). */209 uint32_t offVM;210 /** Offset into the VMCPU structure.211 * See TRPMCPU_2_VMCPU(). */212 uint32_t offVMCpu;213 214 87 /** Active Interrupt or trap vector number. 215 88 * If not UINT32_MAX this indicates that we're currently processing a … … 258 131 259 132 260 PGM_ALL_CB2_PROTO(FNPGMVIRTHANDLER) trpmGuestIDTWriteHandler;261 DECLEXPORT(FNPGMRCVIRTPFHANDLER) trpmRCGuestIDTWritePfHandler;262 DECLEXPORT(FNPGMRCVIRTPFHANDLER) trpmRCShadowIDTWritePfHandler;263 264 /**265 * Clear guest trap/interrupt gate handler266 *267 * @returns VBox status code.268 * @param pVM The cross context VM structure.269 * @param iTrap Interrupt/trap number.270 */271 VMMDECL(int) trpmClearGuestTrapHandler(PVM pVM, unsigned iTrap);272 273 274 #ifdef IN_RING3275 int trpmR3ClearPassThroughHandler(PVM pVM, unsigned iTrap);276 #endif277 278 279 133 #ifdef IN_RING0 280 134 -
trunk/src/VBox/VMM/include/TRPMInternal.mac
r76553 r80015 28 28 29 29 struc TRPM 30 .offVM resd 131 .offTRPMCPU resd 132 .fSafeToDropGuestIDTMonitoring resb 133 .abPadding1 resb 734 .aIdt resd 51235 .au32IdtPatched resd 836 .aTmpTrapHandlers RTRCPTR_RES 25637 38 .pvMonShwIdtRC RTRCPTR_RES 139 .au8Padding resb 240 .GuestIdtr resb 1041 .hShadowIdtWriteHandlerType resd 142 .hGuestIdtWriteHandlerType resd 143 44 .aGuestTrapHandler RTRCPTR_RES 25645 46 alignb 847 .StatRCWriteGuestIDTFault resb STAMCOUNTER_size48 .StatRCWriteGuestIDTHandled resb STAMCOUNTER_size49 .StatSyncIDT resb STAMPROFILE_size50 .aStatGCTraps resb STAMPROFILEADV_size * 0x1451 52 .StatForwardProfR3 resb STAMPROFILEADV_size53 .StatForwardProfRZ resb STAMPROFILEADV_size54 .StatForwardFailNoHandler resb STAMCOUNTER_size55 .StatForwardFailPatchAddr resb STAMCOUNTER_size56 .StatForwardFailR3 resb STAMCOUNTER_size57 .StatForwardFailRZ resb STAMCOUNTER_size58 59 .StatTrap0dDisasm resb STAMPROFILE_size60 .StatTrap0dRdTsc resb STAMCOUNTER_size61 62 30 %ifdef VBOX_WITH_STATISTICS 63 31 .paStatForwardedIRQR3 RTR3PTR_RES 1 64 .paStatForwardedIRQRC RTRCPTR_RES 165 .paStatHostIrqRC RTRCPTR_RES 166 .paStatHostIrqR3 RTR3PTR_RES 167 32 %endif 33 .u64Dummy resq 1 68 34 endstruc 69 35 70 36 struc TRPMCPU 71 .offVM resd 172 .offVMCpu resd 173 37 .uActiveVector resd 1 74 38 .enmActiveType resd 1
Note:
See TracChangeset
for help on using the changeset viewer.