mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 11:53:39 +08:00
performance boost (on P4 hosts at least, rdtsc is a _very_ bad random generator)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1892 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
e553272d75
commit
f5d2a381d1
@ -27,11 +27,14 @@ void cpu_mips_irqctrl_init (void)
|
||||
{
|
||||
}
|
||||
|
||||
/* XXX: do not use a global */
|
||||
uint32_t cpu_mips_get_random (CPUState *env)
|
||||
{
|
||||
uint32_t now = qemu_get_clock(vm_clock);
|
||||
|
||||
return now % (MIPS_TLB_NB - env->CP0_Wired) + env->CP0_Wired;
|
||||
static uint32_t seed = 0;
|
||||
uint32_t idx;
|
||||
seed = seed * 314159 + 1;
|
||||
idx = (seed >> 16) % (MIPS_TLB_NB - env->CP0_Wired) + env->CP0_Wired;
|
||||
return idx;
|
||||
}
|
||||
|
||||
/* MIPS R4K timer */
|
||||
|
Loading…
Reference in New Issue
Block a user