| * Copyright (C) 2000, 2004 Maciej W. Rozycki |
| * Copyright (C) 2003, 07 Ralf Baechle (ralf@linux-mips.org) |
| * This file is subject to the terms and conditions of the GNU General Public |
| * License. See the file "COPYING" in the main directory of this archive |
| #include <asm-generic/div64.h> |
| * No traps on overflows for any of these... |
| #define __div64_32(n, base) \ |
| unsigned long __cf, __tmp, __tmp2, __i; \ |
| unsigned long __quot32, __mod32; \ |
| unsigned long __high, __low; \ |
| unsigned long long __n; \ |
| " srl %5, %1, 0x1f\n\t" \ |
| : "=&r" (__mod32), "=&r" (__tmp), \ |
| "=&r" (__quot32), "=&r" (__cf), \ |
| "=&r" (__i), "=&r" (__tmp2) \ |
| : "Jr" (base), "0" (__high), "1" (__low)); \ |
| #endif /* BITS_PER_LONG == 64 */ |
| #endif /* __ASM_DIV64_H */ |