fcmpo.c 907 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include <linux/types.h>
  2. #include <linux/errno.h>
  3. #include <asm/uaccess.h>
  4. #include "soft-fp.h"
  5. #include "double.h"
  6. int
  7. fcmpo(u32 *ccr, int crfD, void *frA, void *frB)
  8. {
  9. FP_DECL_D(A);
  10. FP_DECL_D(B);
  11. int code[4] = { (1 << 3), (1 << 1), (1 << 2), (1 << 0) };
  12. long cmp;
  13. int ret = 0;
  14. #ifdef DEBUG
  15. printk("%s: %p (%08x) %d %p %p\n", __FUNCTION__, ccr, *ccr, crfD, frA, frB);
  16. #endif
  17. __FP_UNPACK_D(A, frA);
  18. __FP_UNPACK_D(B, frB);
  19. #ifdef DEBUG
  20. printk("A: %ld %lu %lu %ld (%ld)\n", A_s, A_f1, A_f0, A_e, A_c);
  21. printk("B: %ld %lu %lu %ld (%ld)\n", B_s, B_f1, B_f0, B_e, B_c);
  22. #endif
  23. if (A_c == FP_CLS_NAN || B_c == FP_CLS_NAN)
  24. ret |= EFLAG_VXVC;
  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: %08x\n", *ccr);
  33. #endif
  34. return ret;
  35. }