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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  */
  6. #ifndef _ASM_DIV64_H
  7. #define _ASM_DIV64_H
  8. /*
  9.  * Don't use this one in new code
  10.  */
  11. #define do_div64_32(res, high, low, base) ({ 
  12. unsigned long __quot, __mod; 
  13. unsigned long __cf, __tmp, __tmp2, __i; 
  14. __asm__(".set pushnt" 
  15. ".set noatnt" 
  16. ".set noreordernt" 
  17. "move %2, $0nt" 
  18. "move %3, $0nt" 
  19. "b 1fnt" 
  20. " li %4, 0x21n" 
  21. "0:nt" 
  22. "sll $1, %0, 0x1nt" 
  23. "srl %3, %0, 0x1fnt" 
  24. "or %0, $1, %5nt" 
  25. "sll %1, %1, 0x1nt" 
  26. "sll %2, %2, 0x1n" 
  27. "1:nt" 
  28. "bnez %3, 2fnt" 
  29. "sltu %5, %0, %z6nt" 
  30. "bnez %5, 3fnt" 
  31. "2:nt" 
  32. " addiu %4,%4,-1nt" 
  33. "subu %0, %0, %z6nt" 
  34. "addiu %2, %2, 1n" 
  35. "3:nt" 
  36. "bnez %4, 0bnt" 
  37. " srl %5, %1, 0x1fnt" 
  38. ".set pop" 
  39. : "=&r" (__mod), "=&r" (__tmp), "=&r" (__quot), "=&r" (__cf), 
  40.   "=&r" (__i), "=&r" (__tmp2) 
  41. : "Jr" (base), "0" (high), "1" (low)); 
  42. (res) = __quot; 
  43. __mod; })
  44. /*
  45.  * Hey, we're already 64-bit, no
  46.  * need to play games..
  47.  */
  48. #define do_div(n,base) ({ 
  49. int __res; 
  50. __res = ((unsigned long) n) % (unsigned) base; 
  51. n = ((unsigned long) n) / (unsigned) base; 
  52. __res; })
  53. #endif /* _ASM_DIV64_H */