Changeset 103887 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Mar 18, 2024 11:07:41 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 162259
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-instr-3.c32
r103879 r103887 585 585 #else 586 586 # include <iprt/asm-amd64-x86.h> 587 /** @todo port to 32-bit watcom: iprt/asm-math.h */ 587 # include <iprt/asm-math.h> 588 588 589 589 DECLINLINE(uint32_t) bs3CpuInstr3_SimpleRand(void) … … 598 598 * It produces numbers in the range [1..INT32_MAX-1] and is 599 599 * 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. 600 603 */ 601 604 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; 629 611 } 630 612
Note:
See TracChangeset
for help on using the changeset viewer.