VirtualBox

Changeset 41662 in vbox for trunk/include/VBox/dis.h


Ignore:
Timestamp:
Jun 12, 2012 8:29:07 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78469
Message:

DIS,CSAM: Combine the displacement members of OP_PARAMETER into a union to save a little bit of space.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/dis.h

    r41658 r41662  
    372372    uint64_t        parval;
    373373    uint64_t        flags;
    374     int64_t         disp64;
    375     int32_t         disp32;
    376     int32_t         disp16;
    377     int32_t         disp8;
     374    union
     375    {
     376        int64_t     i64;
     377        int32_t     i32;
     378        int32_t     i16;
     379        int32_t     i8;
     380        uint64_t    u64;
     381        uint32_t    u32;
     382        uint32_t    u16;
     383        uint32_t    u8;
     384    } uDisp;
    378385    uint32_t        size;
    379386    int32_t         param;
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