VirtualBox

Changeset 79386 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Jun 27, 2019 11:47:09 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
131625
Message:

VMM/HMVMXR0: Nested VMX: bugref:9180 Spaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp

    r79384 r79386  
    212212*********************************************************************************************************************************/
    213213/**
    214  * VMX transient state.
     214 * VMX per-VCPU transient state.
    215215 *
    216216 * A state structure for holding miscellaneous information across
     
    295295/** Pointer to a const VMX transient state. */
    296296typedef const VMXTRANSIENT *PCVMXTRANSIENT;
    297 
    298297
    299298/**
     
    974973 *
    975974 * @returns @c true if it's different, @c false otherwise.
    976  * @param   pVmcsInfo       The VMCS info. object.
     975 * @param   pVmcsInfo   The VMCS info. object.
    977976 */
    978977DECL_FORCE_INLINE(bool) hmR0VmxIsSeparateExitMsrStoreAreaVmcs(PCVMXVMCSINFO pVmcsInfo)
     
    12371236 *
    12381237 * @returns VBox status code.
    1239  * @param   pVmcsInfo       The VMCS info. object.
     1238 * @param   pVmcsInfo   The VMCS info. object.
    12401239 *
    12411240 * @remarks Can be called with interrupts disabled.
     
    12581257 *
    12591258 * @returns VBox status code.
    1260  * @param   pVmcsInfo       The VMCS info. object.
     1259 * @param   pVmcsInfo   The VMCS info. object.
    12611260 *
    12621261 * @remarks Can be called with interrupts disabled.
     
    12781277 *
    12791278 * @returns VBox status code.
    1280  * @param   pVmcsInfo       The VMCS info. object.
     1279 * @param   pVmcsInfo   The VMCS info. object.
    12811280 *
    12821281 * @remarks Can be called with interrupts disabled.
     
    16631662 *
    16641663 * @returns IPRT status code.
    1665  * @param   pMemObj         Pointer to the ring-0 memory object.
    1666  * @param   ppVirt          Where to store the virtual address of the
    1667  *                          allocation.
    1668  * @param   pHCPhys         Where to store the physical address of the
    1669  *                          allocation.
     1664 * @param   pMemObj     Pointer to the ring-0 memory object.
     1665 * @param   ppVirt      Where to store the virtual address of the allocation.
     1666 * @param   pHCPhys     Where to store the physical address of the allocation.
    16701667 */
    16711668static int hmR0VmxPageAllocZ(PRTR0MEMOBJ pMemObj, PRTR0PTR ppVirt, PRTHCPHYS pHCPhys)
     
    16871684 * Frees and unmaps an allocated, physical page.
    16881685 *
    1689  * @param   pMemObj         Pointer to the ring-0 memory object.
    1690  * @param   ppVirt          Where to re-initialize the virtual address of
    1691  *                          allocation as 0.
    1692  * @param   pHCPhys         Where to re-initialize the physical address of the
    1693  *                          allocation as 0.
     1686 * @param   pMemObj     Pointer to the ring-0 memory object.
     1687 * @param   ppVirt      Where to re-initialize the virtual address of allocation as
     1688 *                      0.
     1689 * @param   pHCPhys     Where to re-initialize the physical address of the
     1690 *                      allocation as 0.
    16941691 */
    16951692static void hmR0VmxPageFree(PRTR0MEMOBJ pMemObj, PRTR0PTR ppVirt, PRTHCPHYS pHCPhys)
     
    18631860 *
    18641861 * @returns IPRT status code.
    1865  * @param   pVM             The cross context VM structure.
     1862 * @param   pVM     The cross context VM structure.
    18661863 */
    18671864static void hmR0VmxStructsFree(PVM pVM)
     
    19021899 *
    19031900 * @returns IPRT status code.
    1904  * @param   pVM             The cross context VM structure.
     1901 * @param   pVM     The cross context VM structure.
    19051902 */
    19061903static int hmR0VmxStructsAlloc(PVM pVM)
     
    21912188 *
    21922189 * @returns VBox status code.
    2193  * @param   pVCpu               The cross context virtual CPU structure.
    2194  * @param   pVmxTransient       The VMX-transient structure.
    2195  * @param   idMsr               The MSR.
    2196  * @param   uGuestMsrValue      Value of the guest MSR.
    2197  * @param   fSetReadWrite       Whether to set the guest read/write access of this
    2198  *                              MSR (thus not causing a VM-exit).
    2199  * @param   fUpdateHostMsr      Whether to update the value of the host MSR if
    2200  *                              necessary.
     2190 * @param   pVCpu           The cross context virtual CPU structure.
     2191 * @param   pVmxTransient   The VMX-transient structure.
     2192 * @param   idMsr           The MSR.
     2193 * @param   uGuestMsrValue  Value of the guest MSR.
     2194 * @param   fSetReadWrite   Whether to set the guest read/write access of this
     2195 *                          MSR (thus not causing a VM-exit).
     2196 * @param   fUpdateHostMsr  Whether to update the value of the host MSR if
     2197 *                          necessary.
    22012198 */
    22022199static int hmR0VmxAddAutoLoadStoreMsr(PVMCPU pVCpu, PVMXTRANSIENT pVmxTransient, uint32_t idMsr, uint64_t uGuestMsrValue,
     
    24112408 * perform lazy restoration of the host MSRs while leaving VT-x.
    24122409 *
    2413  * @param   pVCpu       The cross context virtual CPU structure.
     2410 * @param   pVCpu   The cross context virtual CPU structure.
    24142411 *
    24152412 * @remarks No-long-jump zone!!!
     
    24442441 *
    24452442 * @returns true if it does, false otherwise.
    2446  * @param   pVCpu       The cross context virtual CPU structure.
    2447  * @param   idMsr       The MSR to check.
     2443 * @param   pVCpu   The cross context virtual CPU structure.
     2444 * @param   idMsr   The MSR to check.
    24482445 */
    24492446static bool hmR0VmxIsLazyGuestMsr(PCVMCPU pVCpu, uint32_t idMsr)
     
    24772474 * MSRs.
    24782475 *
    2479  * @param   pVCpu       The cross context virtual CPU structure.
     2476 * @param   pVCpu   The cross context virtual CPU structure.
    24802477 *
    24812478 * @remarks No-long-jump zone!!!
     
    25312528 * loaded with guest MSR values.
    25322529 *
    2533  * @param   pVCpu       The cross context virtual CPU structure.
     2530 * @param   pVCpu   The cross context virtual CPU structure.
    25342531 *
    25352532 * @remarks No-long-jump zone!!!
     
    28502847 *
    28512848 * @returns VBox status code.
    2852  * @param   pVCpu       The cross context virtual CPU structure.
    2853  * @param   GCVirt      Guest virtual address of the page to invalidate.
     2849 * @param   pVCpu   The cross context virtual CPU structure.
     2850 * @param   GCVirt  Guest virtual address of the page to invalidate.
    28542851 */
    28552852VMMR0DECL(int) VMXR0InvalidatePage(PVMCPU pVCpu, RTGCPTR GCVirt)
     
    31923189 *
    31933190 * @returns VBox status code.
    3194  * @param   pVM         The cross context VM structure.
     3191 * @param   pVM     The cross context VM structure.
    31953192 */
    31963193static int hmR0VmxSetupTaggedTlb(PVM pVM)
     
    34503447 *
    34513448 * @returns VBox status code.
    3452  * @param   pVCpu       The cross context virtual CPU structure.
     3449 * @param   pVCpu   The cross context virtual CPU structure.
    34533450 */
    34543451DECLINLINE(int) hmR0VmxSetupVmcsApicAccessAddr(PVMCPU pVCpu)
     
    34663463 *
    34673464 * @returns VBox status code.
    3468  * @param   pVCpu       The cross context virtual CPU structure.
     3465 * @param   pVCpu   The cross context virtual CPU structure.
    34693466 */
    34703467DECLINLINE(int) hmR0VmxSetupVmcsVmreadBitmapAddr(PVMCPU pVCpu)
     
    34813478 *
    34823479 * @returns VBox status code.
    3483  * @param   pVCpu       The cross context virtual CPU structure.
     3480 * @param   pVCpu   The cross context virtual CPU structure.
    34843481 */
    34853482DECLINLINE(int) hmR0VmxSetupVmcsVmwriteBitmapAddr(PVMCPU pVCpu)
     
    35923589 *
    35933590 * @returns VBox status code.
    3594  * @param   pVCpu           The cross context virtual CPU structure.
    3595  * @param   pVmcsInfo       The VMCS info. object.
     3591 * @param   pVCpu       The cross context virtual CPU structure.
     3592 * @param   pVmcsInfo   The VMCS info. object.
    35963593 */
    35973594static int hmR0VmxSetupVmcsPinCtls(PVMCPU pVCpu, PVMXVMCSINFO pVmcsInfo)
     
    36453642 *
    36463643 * @returns VBox status code.
    3647  * @param   pVCpu           The cross context virtual CPU structure.
    3648  * @param   pVmcsInfo       The VMCS info. object.
     3644 * @param   pVCpu       The cross context virtual CPU structure.
     3645 * @param   pVmcsInfo   The VMCS info. object.
    36493646 */
    36503647static int hmR0VmxSetupVmcsProcCtls2(PVMCPU pVCpu, PVMXVMCSINFO pVmcsInfo)
     
    37393736 *
    37403737 * @returns VBox status code.
    3741  * @param   pVCpu           The cross context virtual CPU structure.
    3742  * @param   pVmcsInfo       The VMCS info. object.
     3738 * @param   pVCpu       The cross context virtual CPU structure.
     3739 * @param   pVmcsInfo   The VMCS info. object.
    37433740 */
    37443741static int hmR0VmxSetupVmcsProcCtls(PVMCPU pVCpu, PVMXVMCSINFO pVmcsInfo)
     
    38483845 *
    38493846 * @returns VBox status code.
    3850  * @param   pVCpu           The cross context virtual CPU structure.
    3851  * @param   pVmcsInfo       The VMCS info. object.
     3847 * @param   pVCpu       The cross context virtual CPU structure.
     3848 * @param   pVmcsInfo   The VMCS info. object.
    38523849 */
    38533850static int hmR0VmxSetupVmcsMiscCtls(PVMCPU pVCpu, PVMXVMCSINFO pVmcsInfo)
     
    39033900 *
    39043901 * @returns VBox status code.
    3905  * @param   pVCpu           The cross context virtual CPU structure.
    3906  * @param   pVmcsInfo       The VMCS info. object.
     3902 * @param   pVCpu       The cross context virtual CPU structure.
     3903 * @param   pVmcsInfo   The VMCS info. object.
    39073904 */
    39083905static int hmR0VmxSetupVmcsXcptBitmap(PVMCPU pVCpu, PVMXVMCSINFO pVmcsInfo)
     
    39363933 *
    39373934 * @returns VBox status code.
    3938  * @param   pVCpu           The cross context virtual CPU structure.
    3939  * @param   pVmcsInfo       The VMCS info. object.
     3935 * @param   pVCpu       The cross context virtual CPU structure.
     3936 * @param   pVmcsInfo   The VMCS info. object.
    39403937 */
    39413938static int hmR0VmxSetupVmcsCtlsNested(PVMCPU pVCpu, PVMXVMCSINFO pVmcsInfo)
     
    42114208 *
    42124209 * @returns VBox status code.
    4213  * @param   pVM         The cross context VM structure.
     4210 * @param   pVM     The cross context VM structure.
    42144211 */
    42154212VMMR0DECL(int) VMXR0TermVM(PVM pVM)
     
    42354232 *
    42364233 * @returns VBox status code.
    4237  * @param   pVM         The cross context VM structure.
     4234 * @param   pVM     The cross context VM structure.
    42384235 */
    42394236VMMR0DECL(int) VMXR0SetupVM(PVM pVM)
     
    45904587 *
    45914588 * @returns VBox status code.
    4592  * @param   pVCpu       The cross context virtual CPU structure.
     4589 * @param   pVCpu   The cross context virtual CPU structure.
    45934590 */
    45944591static int hmR0VmxExportHostSegmentRegs(PVMCPU pVCpu)
     
    48304827 *
    48314828 * @returns VBox status code.
    4832  * @param   pVCpu       The cross context virtual CPU structure.
     4829 * @param   pVCpu   The cross context virtual CPU structure.
    48334830 *
    48344831 * @remarks No-long-jump zone!!!
     
    48844881 *
    48854882 * @returns true if we need to load guest EFER, false otherwise.
    4886  * @param   pVCpu       The cross context virtual CPU structure.
     4883 * @param   pVCpu   The cross context virtual CPU structure.
    48874884 *
    48884885 * @remarks Requires EFER, CR4.
     
    52975294 *
    52985295 * @returns VBox status code.
    5299  * @param   pVCpu           The cross context virtual CPU structure.
     5296 * @param   pVCpu   The cross context virtual CPU structure.
    53005297 *
    53015298 * @remarks No-long-jump zone!!!
     
    53215318 *
    53225319 * @returns VBox status code.
    5323  * @param   pVCpu           The cross context virtual CPU structure.
     5320 * @param   pVCpu   The cross context virtual CPU structure.
    53245321 *
    53255322 * @remarks No-long-jump zone!!!
     
    55215518 * Enables VMCS shadowing for the given VMCS info. object.
    55225519 *
    5523  * @param   pVCpu           The cross context virtual CPU structure.
    5524  * @param   pVmcsInfo       The VMCS info. object.
     5520 * @param   pVCpu       The cross context virtual CPU structure.
     5521 * @param   pVmcsInfo   The VMCS info. object.
    55255522 *
    55265523 * @remarks No-long-jump zone!!!
     
    55495546 * Disables VMCS shadowing for the given VMCS info. object.
    55505547 *
    5551  * @param   pVCpu           The cross context virtual CPU structure.
    5552  * @param   pVmcsInfo       The VMCS info. object.
     5548 * @param   pVCpu       The cross context virtual CPU structure.
     5549 * @param   pVmcsInfo   The VMCS info. object.
    55535550 *
    55545551 * @remarks No-long-jump zone!!!
     
    64396436 *
    64406437 * @returns VBox status code.
    6441  * @param   pVCpu           The cross context virtual CPU structure.
    6442  * @param   pVmcsInfo       The VMCS info. object.
    6443  * @param   iSegReg         The segment register number (X86_SREG_XXX).
    6444  * @param   pSelReg         Pointer to the segment selector.
     6438 * @param   pVCpu       The cross context virtual CPU structure.
     6439 * @param   pVmcsInfo   The VMCS info. object.
     6440 * @param   iSegReg     The segment register number (X86_SREG_XXX).
     6441 * @param   pSelReg     Pointer to the segment selector.
    64456442 *
    64466443 * @remarks No-long-jump zone!!!
     
    72577254 * (those that have a 32-bit FULL & HIGH part).
    72587255 *
    7259  * @param   pVCpu       The cross context virtual CPU structure.
     7256 * @param   pVCpu   The cross context virtual CPU structure.
    72607257 */
    72617258static void hmR0VmxInitVmcsReadCache(PVMCPU pVCpu)
     
    73447341 *
    73457342 * @returns VBox status code.
    7346  * @param   pVCpu           The cross context virtual CPU structure.
    7347  * @param   idxField        The VMCS field encoding.
    7348  * @param   u64Val          16, 32 or 64-bit value.
     7343 * @param   pVCpu       The cross context virtual CPU structure.
     7344 * @param   idxField    The VMCS field encoding.
     7345 * @param   u64Val      16, 32 or 64-bit value.
    73497346 */
    73507347VMMR0DECL(int) VMXWriteVmcs64Ex(PVMCPU pVCpu, uint32_t idxField, uint64_t u64Val)
     
    76627659 * Sets an NMI (\#NMI) exception as pending-for-injection into the VM.
    76637660 *
    7664  * @param   pVCpu           The cross context virtual CPU structure.
     7661 * @param   pVCpu   The cross context virtual CPU structure.
    76657662 */
    76667663DECLINLINE(void) hmR0VmxSetPendingXcptNmi(PVMCPU pVCpu)
     
    76777674 * Sets a double-fault (\#DF) exception as pending-for-injection into the VM.
    76787675 *
    7679  * @param   pVCpu           The cross context virtual CPU structure.
     7676 * @param   pVCpu   The cross context virtual CPU structure.
    76807677 */
    76817678DECLINLINE(void) hmR0VmxSetPendingXcptDF(PVMCPU pVCpu)
     
    76927689 * Sets an invalid-opcode (\#UD) exception as pending-for-injection into the VM.
    76937690 *
    7694  * @param   pVCpu           The cross context virtual CPU structure.
     7691 * @param   pVCpu   The cross context virtual CPU structure.
    76957692 */
    76967693DECLINLINE(void) hmR0VmxSetPendingXcptUD(PVMCPU pVCpu)
     
    77077704 * Sets a debug (\#DB) exception as pending-for-injection into the VM.
    77087705 *
    7709  * @param   pVCpu           The cross context virtual CPU structure.
     7706 * @param   pVCpu   The cross context virtual CPU structure.
    77107707 */
    77117708DECLINLINE(void) hmR0VmxSetPendingXcptDB(PVMCPU pVCpu)
     
    77237720 * Sets a general-protection (\#GP) exception as pending-for-injection into the VM.
    77247721 *
    7725  * @param   pVCpu           The cross context virtual CPU structure.
    7726  * @param   u32ErrCode      The error code for the general-protection exception.
     7722 * @param   pVCpu       The cross context virtual CPU structure.
     7723 * @param   u32ErrCode  The error code for the general-protection exception.
    77277724 */
    77287725DECLINLINE(void) hmR0VmxSetPendingXcptGP(PVMCPU pVCpu, uint32_t u32ErrCode)
     
    77397736 * Sets a stack (\#SS) exception as pending-for-injection into the VM.
    77407737 *
    7741  * @param   pVCpu           The cross context virtual CPU structure.
    7742  * @param   u32ErrCode      The error code for the stack exception.
     7738 * @param   pVCpu       The cross context virtual CPU structure.
     7739 * @param   u32ErrCode  The error code for the stack exception.
    77437740 */
    77447741DECLINLINE(void) hmR0VmxSetPendingXcptSS(PVMCPU pVCpu, uint32_t u32ErrCode)
     
    81018098 *
    81028099 * @returns VBox status code.
    8103  * @param   pVCpu       The cross context virtual CPU structure.
     8100 * @param   pVCpu   The cross context virtual CPU structure.
    81048101 *
    81058102 * @remarks Called with interrupts and/or preemption disabled, try not to assert and
     
    81338130 *
    81348131 * @returns VBox status code.
    8135  * @param   pVCpu       The cross context virtual CPU structure.
     8132 * @param   pVCpu   The cross context virtual CPU structure.
    81368133 *
    81378134 * @remarks Called with interrupts and/or preemption disabled, try not to assert and
     
    87648761 *         to the EM loop.
    87658762 *
    8766  * @param   pVCpu           The cross context virtual CPU structure.
    8767  * @param   fStepping       Whether we are single-stepping the guest using the
    8768  *                          hypervisor debugger.
     8763 * @param   pVCpu       The cross context virtual CPU structure.
     8764 * @param   fStepping   Whether we are single-stepping the guest using the
     8765 *                      hypervisor debugger.
    87698766 */
    87708767static VBOXSTRICTRC hmR0VmxCheckForceFlags(PVMCPU pVCpu, bool fStepping)
     
    88448841 * entering from ring-3 (not longjmp returns).
    88458842 *
    8846  * @param   pVCpu           The cross context virtual CPU structure.
     8843 * @param   pVCpu   The cross context virtual CPU structure.
    88478844 */
    88488845static void hmR0VmxTrpmTrapToPendingEvent(PVMCPU pVCpu)
     
    91869183 *
    91879184 * @returns VBox status code.
    9188  * @param   pVCpu       The cross context virtual CPU structure.
     9185 * @param   pVCpu   The cross context virtual CPU structure.
    91899186 *
    91909187 * @remarks No-long-jmp zone!!!
     
    92309227 *
    92319228 * @returns VBox status code.
    9232  * @param   pVCpu       The cross context virtual CPU structure.
     9229 * @param   pVCpu   The cross context virtual CPU structure.
    92339230 *
    92349231 * @remarks No-long-jmp zone!!!
     
    92499246 *
    92509247 * @returns VBox status code.
    9251  * @param   pVCpu       The cross context virtual CPU structure.
    9252  * @param   rcExit      The reason for exiting to ring-3. Can be
    9253  *                      VINF_VMM_UNKNOWN_RING3_CALL.
     9248 * @param   pVCpu   The cross context virtual CPU structure.
     9249 * @param   rcExit  The reason for exiting to ring-3. Can be
     9250 *                  VINF_VMM_UNKNOWN_RING3_CALL.
    92549251 */
    92559252static int hmR0VmxExitToRing3(PVMCPU pVCpu, VBOXSTRICTRC rcExit)
     
    94459442 * @returns Strict VBox status code (i.e. informational status codes too).
    94469443 * @retval  VINF_EM_RESET if pushing a value to the stack caused a triple-fault.
    9447  * @param   pVCpu       The cross context virtual CPU structure.
    9448  * @param   uValue      The value to push to the guest stack.
     9444 * @param   pVCpu   The cross context virtual CPU structure.
     9445 * @param   uValue  The value to push to the guest stack.
    94499446 */
    94509447static VBOXSTRICTRC hmR0VmxRealModeGuestStackPush(PVMCPU pVCpu, uint16_t uValue)
     
    94739470 * @retval  VINF_EM_RESET if event injection resulted in a triple-fault.
    94749471 *
    9475  * @param   pVCpu               The cross context virtual CPU structure.
    9476  * @param   pVmxTransient       The VMX-transient structure.
    9477  * @param   pEvent              The event being injected.
    9478  * @param   pfIntrState         Pointer to the VT-x guest-interruptibility-state.
    9479  *                              This will be updated if necessary. This cannot not
    9480  *                              be NULL.
    9481  * @param   fStepping           Whether we're single-stepping guest execution and
    9482  *                              should return VINF_EM_DBG_STEPPED if the event is
    9483  *                              injected directly (registers modified by us, not by
    9484  *                              hardware on VM-entry).
     9472 * @param   pVCpu           The cross context virtual CPU structure.
     9473 * @param   pVmxTransient   The VMX-transient structure.
     9474 * @param   pEvent          The event being injected.
     9475 * @param   pfIntrState     Pointer to the VT-x guest-interruptibility-state. This
     9476 *                          will be updated if necessary. This cannot not be NULL.
     9477 * @param   fStepping       Whether we're single-stepping guest execution and should
     9478 *                          return VINF_EM_DBG_STEPPED if the event is injected
     9479 *                          directly (registers modified by us, not by hardware on
     9480 *                          VM-entry).
    94859481 */
    94869482static VBOXSTRICTRC hmR0VmxInjectEventVmcs(PVMCPU pVCpu, PVMXTRANSIENT pVmxTransient, PCHMEVENT pEvent, bool fStepping,
     
    99289924 *
    99299925 * @returns VBox status code.
    9930  * @param   pVCpu       The cross context virtual CPU structure.
     9926 * @param   pVCpu   The cross context virtual CPU structure.
    99319927 */
    99329928VMMR0DECL(int) VMXR0Enter(PVMCPU pVCpu)
     
    1007010066 *
    1007110067 * @returns VBox status code.
    10072  * @param   pVCpu       The cross context virtual CPU structure.
     10068 * @param   pVCpu   The cross context virtual CPU structure.
    1007310069 *
    1007410070 * @remarks No-long-jump zone!!!
     
    1010010096 *
    1010110097 * @returns VBox status code.
    10102  * @param   pVCpu       The cross context virtual CPU structure.
     10098 * @param   pVCpu   The cross context virtual CPU structure.
    1010310099 *
    1010410100 * @remarks No-long-jump zone!!!
     
    1094810944 *
    1094910945 * @returns VBox status code.
    10950  * @param   pVCpu           The cross context virtual CPU structure.
     10946 * @param   pVCpu   The cross context virtual CPU structure.
    1095110947 */
    1095210948static int hmR0VmxMapHCApicAccessPage(PVMCPU pVCpu)
     
    1103411030 *
    1103511031 * @returns VBox status code.
    11036  * @param   pVCpu       The cross context virtual CPU structure.
     11032 * @param   pVCpu   The cross context virtual CPU structure.
    1103711033 */
    1103811034static int hmR0VmxMergeVmcsNested(PVMCPU pVCpu)
     
    1340813404 *
    1340913405 * @returns Strict VBox status code (i.e. informational status codes too).
    13410  * @param   pVCpu       The cross context virtual CPU structure.
     13406 * @param   pVCpu   The cross context virtual CPU structure.
    1341113407 */
    1341213408VMMR0DECL(VBOXSTRICTRC) VMXR0RunGuestCode(PVMCPU pVCpu)
     
    1375913755 * Advances the guest RIP by the specified number of bytes.
    1376013756 *
    13761  * @param   pVCpu           The cross context virtual CPU structure.
    13762  * @param   cbInstr         Number of bytes to advance the RIP by.
     13757 * @param   pVCpu       The cross context virtual CPU structure.
     13758 * @param   cbInstr     Number of bytes to advance the RIP by.
    1376313759 *
    1376413760 * @remarks No-long-jump zone!!!
     
    1698816984        VMXVEXITINFO ExitInfo;
    1698916985        RT_ZERO(ExitInfo);
    16990         ExitInfo.uReason   = pVmxTransient->uExitReason;
    16991         ExitInfo.cbInstr   = pVmxTransient->cbInstr;
    16992         ExitInfo.u64Qual   = pVmxTransient->uExitQual;
     16986        ExitInfo.uReason = pVmxTransient->uExitReason;
     16987        ExitInfo.cbInstr = pVmxTransient->cbInstr;
     16988        ExitInfo.u64Qual = pVmxTransient->uExitQual;
    1699316989        return IEMExecVmxVmexitInstrWithInfo(pVCpu, &ExitInfo);
    1699416990    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette