Hi,
Can anyone send me a c code to divide 2 64bit numbers. My compiler only supports 32/32 division.
Thanx & Regards
Mani
|
1
|
|||||
|
|
|
The code is available in linux, see div64.c. Can you copy that? |
||
|
|
|
Are you positive your compiler doesn't support 64-bit division? If your C compiler supports C99, this should work:
|
||||||||
|
|
|
A more general idea is to use a multi-precision library, like GMP.
Floating point division is handled with |
|||
|
|
|
|
More than likely, the division limitation stems from the fact that you're compiling for 32-bit instead of 64-bit. I don't recall seeing an integer division instruction that handles 64 bit for x86. It would multiply 2 32-bit integers, and split the results across 2 registers, but not division as far as I recall.. |
||||
|
|
|
Looking elsewhere in the Linux kernel: udivdi3.c This should be accurate supplies the functions used by GCC whenever it encounters a 64 bit division. |
||
|
|