VirtualBox

Ignore:
Timestamp:
Feb 20, 2025 3:41:00 PM (3 weeks ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
167657
Message:

VMM/IEM: s/IEM_MC_IF_EFL_/IEM_MC_IF_FLAGS_/g. jiraref:VBP-1531

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/IEMMc.h

    r108312 r108313  
    14411441 * arm: EFL == NZCV.
    14421442 */
    1443 /** @todo s/IEM_MC_IF_EFL_/IEM_MC_IF_FLAGS_/ */
    14441443
    14451444/** @note x86: Not for IOPL or IF testing. */
    1446 #define IEM_MC_IF_EFL_BIT_SET(a_fBit)                   if (pVCpu->cpum.GstCtx.eflags.u & (a_fBit)) {
     1445#define IEM_MC_IF_FLAGS_BIT_SET(a_fBit)                   if (pVCpu->cpum.GstCtx.eflags.u & (a_fBit)) {
    14471446/** @note x86: Not for IOPL or IF testing. */
    1448 #define IEM_MC_IF_EFL_BIT_NOT_SET(a_fBit)               if (!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit))) {
     1447#define IEM_MC_IF_FLAGS_BIT_NOT_SET(a_fBit)               if (!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit))) {
    14491448/** @note x86: Not for IOPL or IF testing. */
    1450 #define IEM_MC_IF_EFL_ANY_BITS_SET(a_fBits)             if (pVCpu->cpum.GstCtx.eflags.u & (a_fBits)) {
     1449#define IEM_MC_IF_FLAGS_ANY_BITS_SET(a_fBits)             if (pVCpu->cpum.GstCtx.eflags.u & (a_fBits)) {
    14511450/** @note x86: Not for IOPL or IF testing. */
    1452 #define IEM_MC_IF_EFL_NO_BITS_SET(a_fBits)              if (!(pVCpu->cpum.GstCtx.eflags.u & (a_fBits))) {
     1451#define IEM_MC_IF_FLAGS_NO_BITS_SET(a_fBits)              if (!(pVCpu->cpum.GstCtx.eflags.u & (a_fBits))) {
    14531452/** @note x86: Not for IOPL or IF testing. */
    1454 #define IEM_MC_IF_EFL_BITS_NE(a_fBit1, a_fBit2)         \
     1453#define IEM_MC_IF_FLAGS_BITS_NE(a_fBit1, a_fBit2)         \
    14551454    if (   !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit1)) \
    14561455        != !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit2)) ) {
    14571456/** @note x86: Not for IOPL or IF testing. */
    1458 #define IEM_MC_IF_EFL_BITS_EQ(a_fBit1, a_fBit2)         \
     1457#define IEM_MC_IF_FLAGS_BITS_EQ(a_fBit1, a_fBit2)         \
    14591458    if (   !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit1)) \
    14601459        == !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit2)) ) {
    14611460/** @note x86: Not for IOPL or IF testing. */
    1462 #define IEM_MC_IF_EFL_BIT_SET_OR_BITS_NE(a_fBit, a_fBit1, a_fBit2) \
     1461#define IEM_MC_IF_FLAGS_BIT_SET_OR_BITS_NE(a_fBit, a_fBit1, a_fBit2) \
    14631462    if (   (pVCpu->cpum.GstCtx.eflags.u & (a_fBit)) \
    14641463        ||    !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit1)) \
    14651464           != !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit2)) ) {
    14661465/** @note x86: Not for IOPL or IF testing. */
    1467 #define IEM_MC_IF_EFL_BIT_NOT_SET_AND_BITS_EQ(a_fBit, a_fBit1, a_fBit2) \
     1466#define IEM_MC_IF_FLAGS_BIT_NOT_SET_AND_BITS_EQ(a_fBit, a_fBit1, a_fBit2) \
    14681467    if (   !(pVCpu->cpum.GstCtx.eflags.u & (a_fBit)) \
    14691468        &&    !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit1)) \
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