VirtualBox

Changeset 66104 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Mar 15, 2017 10:06:21 AM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
113985
Message:

VMM: trailing spaces

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/HMAll.cpp

    r66000 r66104  
    560560/**
    561561 * VMX nested-guest VM-exit handler.
    562  * 
    563  * @param   pVCpu              The cross context virtual CPU structure. 
    564  * @param   uBasicExitReason   The basic exit reason. 
     562 *
     563 * @param   pVCpu              The cross context virtual CPU structure.
     564 * @param   uBasicExitReason   The basic exit reason.
    565565 */
    566566VMM_INT_DECL(void) HMNstGstVmxVmExit(PVMCPU pVCpu, uint16_t uBasicExitReason)
  • trunk/src/VBox/VMM/VMMAll/IEMAll.cpp

    r66000 r66104  
    396396/**
    397397 * Check if an SVM control/instruction intercept is set.
    398  */ 
     398 */
    399399#define IEM_IS_SVM_CTRL_INTERCEPT_SET(a_pVCpu, a_Intercept) (CPUMIsGuestSvmCtrlInterceptSet(IEM_GET_CTX(a_pVCpu), (a_Intercept)))
    400400
    401 /** 
     401/**
    402402 * Check if an SVM read CRx intercept is set.
    403  */ 
     403 */
    404404#define IEM_IS_SVM_READ_CR_INTERCEPT_SET(a_pVCpu, a_uCr)    (CPUMIsGuestSvmCtrlInterceptSet(IEM_GET_CTX(a_pVCpu), (a_uCr)))
    405405
    406 /** 
     406/**
    407407 * Check if an SVM write CRx intercept is set.
    408  */ 
     408 */
    409409#define IEM_IS_SVM_WRITE_CR_INTERCEPT_SET(a_pVCpu, a_uCr)   (CPUMIsGuestSvmCtrlInterceptSet(IEM_GET_CTX(a_pVCpu), (a_uCr)))
    410410
    411 /** 
     411/**
    412412 * Check if an SVM read DRx intercept is set.
    413  */ 
     413 */
    414414#define IEM_IS_SVM_READ_DR_INTERCEPT_SET(a_pVCpu, a_uDr)    (CPUMIsGuestSvmCtrlInterceptSet(IEM_GET_CTX(a_pVCpu), (a_uDr)))
    415415
    416 /** 
     416/**
    417417 * Check if an SVM write DRx intercept is set.
    418  */ 
     418 */
    419419#define IEM_IS_SVM_WRITE_DR_INTERCEPT_SET(a_pVCpu, a_uDr)   (CPUMIsGuestSvmWriteDRxInterceptSet(IEM_GET_CTX(a_pVCpu), (a_uDr)))
    420420
    421 /** 
     421/**
    422422 * Check if an SVM exception intercept is set.
    423  */ 
     423 */
    424424#define IEM_IS_SVM_XCPT_INTERCEPT_SET(a_pVCpu, a_enmXcpt)   (CPUMIsGuestSvmXcptInterceptSet(IEM_GET_CTX(a_pVCpu), (a_enmXcpt)))
    425425#endif /* VBOX_WITH_NESTED_HWVIRT */
     
    1496814968/**
    1496914969 * Interface for HM and EM to emulate the STGI instruction.
    14970  * 
    14971  * @returns Strict VBox status code. 
     14970 *
     14971 * @returns Strict VBox status code.
    1497214972 * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
    14973  * @param   cbInstr     The instruction length in bytes. 
    14974  * @thread  EMT(pVCpu) 
     14973 * @param   cbInstr     The instruction length in bytes.
     14974 * @thread  EMT(pVCpu)
    1497514975 */
    1497614976VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedClgi(PVMCPU pVCpu, uint8_t cbInstr)
     
    1498614986/**
    1498714987 * Interface for HM and EM to emulate the STGI instruction.
    14988  * 
    14989  * @returns Strict VBox status code. 
     14988 *
     14989 * @returns Strict VBox status code.
    1499014990 * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
    14991  * @param   cbInstr     The instruction length in bytes. 
    14992  * @thread  EMT(pVCpu) 
     14991 * @param   cbInstr     The instruction length in bytes.
     14992 * @thread  EMT(pVCpu)
    1499314993 */
    1499414994VMM_INT_DECL(VBOXSTRICTRC) IEMExecDecodedStgi(PVMCPU pVCpu, uint8_t cbInstr)
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