fcmpu.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.fcmpu.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. fcmpu(u32 *ccr, int crfD, void *frA, void *frB)
  11. {
  12. FP_DECL_D(A);
  13. FP_DECL_D(B);
  14. int code[4] = { (1 << 3), (1 << 1), (1 << 2), (1 << 0) };
  15. long cmp;
  16. #ifdef DEBUG
  17. printk("%s: %p (%08x) %d %p %pn", __FUNCTION__, ccr, *ccr, crfD, 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. FP_CMP_D(cmp, A, B, 2);
  26. cmp = code[(cmp + 1) & 3];
  27. __FPU_FPSCR &= ~(0x1f000);
  28. __FPU_FPSCR |= (cmp << 12);
  29. *ccr &= ~(15 << ((7 - crfD) << 2));
  30. *ccr |= (cmp << ((7 - crfD) << 2));
  31. #ifdef DEBUG
  32. printk("CR: %08xn", *ccr);
  33. #endif
  34. return 0;
  35. }