VirtualBox

Ignore:
Timestamp:
Mar 18, 2024 11:07:41 AM (13 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
162259
Message:

iprt/asm-math.h,ValKit/bs3-cpu-instr-3: 32-bit watcom implementation of asm-math.h so bs3CpuInstr3_SimpleRand can make use of it. bugref:10370

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-instr-3.c32

    r103879 r103887  
    585585#else
    586586# include <iprt/asm-amd64-x86.h>
    587 /** @todo port to 32-bit watcom: iprt/asm-math.h */
     587# include <iprt/asm-math.h>
    588588
    589589DECLINLINE(uint32_t) bs3CpuInstr3_SimpleRand(void)
     
    598598     * It produces numbers in the range [1..INT32_MAX-1] and is
    599599     * more chaotic in the higher bits.
     600     *
     601     * Note! Runtime/common/rand/randparkmiller.cpp is also use this algorithm,
     602     *       though the zero handling is different.
    600603     */
    601604    static uint32_t s_uSeedMemory = 0;
    602     if (!s_uSeedMemory)
    603         s_uSeedMemory = (uint32_t)ASMReadTSC();
    604 
    605 # if 0 /* see Runtime/common/rand/randparkmiller.cpp - unfortunately the two mul+div wrappers haven't been ported to watcom speak */
    606     s_uSeedMemory = ASMModU64ByU32RetU32(ASMMult2xU32RetU64(s_uSeedMemory, 16807), INT32_MAX);
    607 # else
    608     {
    609         RTUINT64U uProduct;
    610         uint32_t uHiMod, uLoMod;
    611         uProduct.u = (uint64_t)s_uSeedMemory * 16807;
    612         /*
    613          * This piece-wise modulus operation is vastly faster
    614          * than openwatcom's built-in 64-div-32 routine!
    615          *
    616          * Math:    high longword's effect % INT32_MAX
    617          *       = (high longword * 2^32) % INT32_MAX
    618          *       = (high longword * (2^32 - 2 * INT32_MAX)) % INT32_MAX
    619          *       = (high longword * 2) % INT32_MAX
    620          *       = (high longword * 2), since uProduct is a 'small' 64-bit value
    621          *              (high longword of a 32-bit-value * 16807, a 15-bit value)
    622          */
    623         uHiMod = uProduct.au32[1] * 2;
    624         uLoMod = uProduct.au32[0] % INT32_MAX;
    625         s_uSeedMemory = (uHiMod + uLoMod) % INT32_MAX;
    626     }
    627 # endif
    628     return s_uSeedMemory;
     605    uint32_t uVal = s_uSeedMemory;
     606    if (!uVal)
     607        uVal = (uint32_t)ASMReadTSC();
     608    uVal = ASMModU64ByU32RetU32(ASMMult2xU32RetU64(uVal, 16807), INT32_MAX);
     609    s_uSeedMemory = uVal;
     610    return uVal;
    629611}
    630612
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