div64.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2000  Maciej W. Rozycki
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  */
  8. #ifndef _ASM_DIV64_H
  9. #define _ASM_DIV64_H
  10. #include <asm/sgidefs.h>
  11. /*
  12.  * No traps on overflows for any of these...
  13.  */
  14. #define do_div64_32(res, high, low, base) ({ 
  15. unsigned long __quot, __mod; 
  16. unsigned long __cf, __tmp, __tmp2, __i; 
  17. __asm__(".set pushnt" 
  18. ".set noatnt" 
  19. ".set noreordernt" 
  20. "move %2, $0nt" 
  21. "move %3, $0nt" 
  22. "b 1fnt" 
  23. " li %4, 0x21n" 
  24. "0:nt" 
  25. "sll $1, %0, 0x1nt" 
  26. "srl %3, %0, 0x1fnt" 
  27. "or %0, $1, %5nt" 
  28. "sll %1, %1, 0x1nt" 
  29. "sll %2, %2, 0x1n" 
  30. "1:nt" 
  31. "bnez %3, 2fnt" 
  32. "sltu %5, %0, %z6nt" 
  33. "bnez %5, 3fnt" 
  34. "2:nt" 
  35. " addiu %4,%4,-1nt" 
  36. "subu %0, %0, %z6nt" 
  37. "addiu %2, %2, 1n" 
  38. "3:nt" 
  39. "bnez %4, 0bnt" 
  40. " srl %5, %1, 0x1fnt" 
  41. ".set pop" 
  42. : "=&r" (__mod), "=&r" (__tmp), "=&r" (__quot), "=&r" (__cf), 
  43.   "=&r" (__i), "=&r" (__tmp2) 
  44. : "Jr" (base), "0" (high), "1" (low)); 
  45. (res) = __quot; 
  46. __mod; })
  47. #define do_div(n, base) ({ 
  48. unsigned long long __quot; 
  49. unsigned long __upper, __low, __high, __mod; 
  50. __quot = (n); 
  51. __high = __quot >> 32; 
  52. __low = __quot; 
  53. __upper = __high; 
  54. if (__high) 
  55. __asm__("divu $0,%z2,%z3" 
  56. : "=h" (__upper), "=l" (__high) 
  57. : "Jr" (__high), "Jr" (base)); 
  58. __mod = do_div64_32(__low, __upper, __low, base); 
  59. __quot = __high; 
  60. __quot = __quot << 32 | __low; 
  61. (n) = __quot; 
  62. __mod; })
  63. #endif /* _ASM_DIV64_H */