VirtualBox

Changeset 74785 in vbox for trunk/include


Ignore:
Timestamp:
Oct 12, 2018 10:14:19 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
125729
Message:

vm.h,VMM: Use VMCPU_FF_IS_SET instead of VMCPU_FF_IS_PENDING when checking a single flag. Added compile time assertion on single flag. bugref:9180

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm/vm.h

    r74783 r74785  
    673673#define VM_FF_IS_SET(pVM, fFlag)            (((pVM)->fGlobalForcedActions & (fFlag)) == (fFlag))
    674674
     675
    675676/** @def VMCPU_FF_IS_SET
    676677 * Checks if a force action flag is set for the given VCPU.
     
    679680 * @param   fFlag   The flag to check.
    680681 */
    681 #define VMCPU_FF_IS_SET(pVCpu, fFlag)       (((pVCpu)->fLocalForcedActions & (fFlag)) == (fFlag))
     682#if !defined(VBOX_STRICT) || !defined(RT_COMPILER_SUPPORTS_LAMBDA)
     683# define VMCPU_FF_IS_SET(pVCpu, fFlag)      (((pVCpu)->fLocalForcedActions & (fFlag)) == (fFlag))
     684#else
     685# define VMCPU_FF_IS_SET(pVCpu, fFlag) \
     686                   ([](PVMCPU a_pVCpu) -> bool \
     687                   { \
     688                       AssertCompile(RT_IS_POWER_OF_TWO(fFlag)); \
     689                       return (a_pVCpu->fLocalForcedActions & (fFlag)) == (fFlag); \
     690                   }(pVCpu))
     691#endif
    682692
    683693/** @def VM_FF_IS_PENDING
     
    688698 */
    689699#define VM_FF_IS_PENDING(pVM, fFlags)       RT_BOOL((pVM)->fGlobalForcedActions & (fFlags))
     700
     701/** @def VMCPU_FF_IS_PENDING
     702 * Checks if one or more force action in the specified set is pending for the given VCPU.
     703 *
     704 * @param   pVCpu   The cross context virtual CPU structure.
     705 * @param   fFlags  The flags to check for.
     706 */
     707#define VMCPU_FF_IS_PENDING(pVCpu, fFlags)  RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags))
    690708
    691709/** @def VM_FF_TEST_AND_CLEAR
     
    709727#define VMCPU_FF_TEST_AND_CLEAR(pVCpu, iBit) (ASMAtomicBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT))
    710728
    711 /** @def VMCPU_FF_IS_PENDING
    712  * Checks if one or more force action in the specified set is pending for the given VCPU.
    713  *
    714  * @param   pVCpu   The cross context virtual CPU structure.
    715  * @param   fFlags  The flags to check for.
    716  */
    717 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags)  RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags))
    718 
    719729/** @def VM_FF_IS_PENDING_EXCEPT
    720730 * Checks if one or more force action in the specified set is pending while one
     
    725735 * @param   fExcpt  The flags that should not be set.
    726736 */
    727 #define VM_FF_IS_PENDING_EXCEPT(pVM, fFlags, fExcpt)      ( ((pVM)->fGlobalForcedActions & (fFlags)) && !((pVM)->fGlobalForcedActions & (fExcpt)) )
     737#define VM_FF_IS_PENDING_EXCEPT(pVM, fFlags, fExcpt) ( ((pVM)->fGlobalForcedActions & (fFlags)) && !((pVM)->fGlobalForcedActions & (fExcpt)) )
    728738
    729739/** @def VM_IS_EMT
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