Re: how to generate x86 "narrowing" divide instruction

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 7 March 2011 18:32, Ian Lance Taylor <iant@xxxxxxxxxx> wrote:
>> $ cat rand.c
>> #include <stdint.h>
>> uint32_t rand(uint32_t x) { return (uint64_t)x * 16807 % 0x7FFFFFFF; }

> The div instruction is difficult for gcc to use for 64->32 division
> because it generates an exception if the quotient is too large. ÂFor
> code like the above gcc would have to insert runtime checks to make sure
> that the division did not overflow, even though the code only cares
> about the remainder.

I should have said explicitly: the division above can't overflow,
because the dividend can't be bigger than about 2^31 * 16807 (in
absolute value), so the quotient won't be bigger than about 16807. I
was hoping that value range propagation could work that out, so that
the compiler would know it's safe to use div.

Thanks,
Jay.



[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux