Go to the documentation of this file. 1 #ifndef _ASM_X86_DIV64_H
2 #define _ASM_X86_DIV64_H
6 #include <linux/types.h>
21 #define do_div(n, base) \
23 unsigned long __upper, __low, __high, __mod, __base; \
25 if (__builtin_constant_p(__base) && is_power_of_2(__base)) { \
26 __mod = n & (__base - 1); \
27 n >>= ilog2(__base); \
29 asm("" : "=a" (__low), "=d" (__high) : "A" (n));\
32 __upper = __high % (__base); \
33 __high = __high / (__base); \
35 asm("divl %2" : "=a" (__low), "=d" (__mod) \
36 : "rm" (__base), "0" (__low), "1" (__upper)); \
37 asm("" : "=A" (n) : "a" (__low), "d" (__high)); \
52 if (upper >= divisor) {
56 asm (
"divl %2" :
"=a" (
d.v32[0]),
"=d" (*remainder) :
57 "rm" (
divisor),
"0" (
d.v32[0]),
"1" (upper));
60 #define div_u64_rem div_u64_rem