VirtualBox

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


Ignore:
Timestamp:
Jul 20, 2016 5:31:42 PM (9 years ago)
Author:
vboxsync
Message:

IEMAllAImplC.cpp: Basic 64-bit division and multiplication for 32-bit hosts. Needs testing and EFLAGS work.

File:
1 edited

Legend:

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

    r62371 r62373  
    12211221        RTUINT128U Remainder;
    12221222        RTUINT128U Quotient;
     1223# ifdef __GNUC__ /* GCC maybe really annoying in function. */
     1224        Quotient.s.Lo = 0;
     1225        Quotient.s.Hi = 0;
     1226# endif
    12231227        RTUInt128DivRem(&Quotient, &Remainder, &Dividend, &Divisor);
    12241228        Assert(Quotient.s.Hi == 0);
     
    12651269        RTUINT128U Remainder;
    12661270        RTUINT128U Quotient;
     1271# ifdef __GNUC__ /* GCC maybe really annoying in function. */
     1272        Quotient.s.Lo = 0;
     1273        Quotient.s.Hi = 0;
     1274# endif
    12671275        RTUInt128DivRem(&Quotient, &Remainder, &Dividend, &Divisor);
    12681276
Note: See TracChangeset for help on using the changeset viewer.

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