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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.fdiv.c 1.6 05/17/01 18:14:22 cort
  3.  */
  4. #include <linux/types.h>
  5. #include <linux/errno.h>
  6. #include <asm/uaccess.h>
  7. #include "soft-fp.h"
  8. #include "double.h"
  9. int
  10. fdiv(void *frD, void *frA, void *frB)
  11. {
  12. FP_DECL_D(A);
  13. FP_DECL_D(B);
  14. FP_DECL_D(R);
  15. int ret = 0;
  16. #ifdef DEBUG
  17. printk("%s: %p %p %pn", __FUNCTION__, frD, frA, frB);
  18. #endif
  19. __FP_UNPACK_D(A, frA);
  20. __FP_UNPACK_D(B, frB);
  21. #ifdef DEBUG
  22. printk("A: %ld %lu %lu %ld (%ld)n", A_s, A_f1, A_f0, A_e, A_c);
  23. printk("B: %ld %lu %lu %ld (%ld)n", B_s, B_f1, B_f0, B_e, B_c);
  24. #endif
  25. if (A_c == FP_CLS_ZERO && B_c == FP_CLS_ZERO) {
  26. ret |= EFLAG_VXZDZ;
  27. #ifdef DEBUG
  28. printk("%s: FPSCR_VXZDZ raisedn", __FUNCTION__);
  29. #endif
  30. }
  31. if (A_c == FP_CLS_INF && B_c == FP_CLS_INF) {
  32. ret |= EFLAG_VXIDI;
  33. #ifdef DEBUG
  34. printk("%s: FPSCR_VXIDI raisedn", __FUNCTION__);
  35. #endif
  36. }
  37. if (B_c == FP_CLS_ZERO && A_c != FP_CLS_ZERO) {
  38. ret |= EFLAG_DIVZERO;
  39. if (__FPU_TRAP_P(EFLAG_DIVZERO))
  40. return ret;
  41. }
  42. FP_DIV_D(R, A, B);
  43. #ifdef DEBUG
  44. printk("D: %ld %lu %lu %ld (%ld)n", R_s, R_f1, R_f0, R_e, R_c);
  45. #endif
  46. return (ret | __FP_PACK_D(frD, R));
  47. }