Floored division is when the result is always floored down (towards −∞), not towards 0:

Is it possible to efficiently implement floored or euclidean integer division in C/C++?
(the obvious solution is to check the dividend's sign)
|
Floored division is when the result is always floored down (towards −∞), not towards 0:
Is it possible to efficiently implement floored or euclidean integer division in C/C++? (the obvious solution is to check the dividend's sign) |
||||
|
|
|
I've written a test program to benchmark the ideas presented here:
Results:
So, according to my results, checking the sign is the fastest:
|
|||||||||||
|
|
It could be more efficient to come up with something branch free to correct the result based on the sign, as branches are expensive. See page 20ff of Chapter 2 in Hacker's Delight on how to access the sign. |
|||||
|
Yes.
I agree completely, and would find it hard to believe there exists an alternative that is significantly faster. |
|||
|
|
|
Since IEEE-754 specifies round towards -inf as one of the required rounding modes I imagine that the answer to your question is yes. But perhaps you can explain whether you want to know how one would implement the procedure if one were writing the compiler, or to know how to use a particular compiler to perform the operation ? |
|||||||||||||
|
|
Just a note: the x86 |
|||
|
|