fcmpo.c 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/types.h>
  3. #include <linux/errno.h>
  4. #include <linux/uaccess.h>
  5. #include <asm/sfp-machine.h>
  6. #include <math-emu/soft-fp.h>
  7. #include <math-emu/double.h>
  8. int
  9. fcmpo(u32 *ccr, int crfD, void *frA, void *frB)
  10. {
  11. FP_DECL_D(A);
  12. FP_DECL_D(B);
  13. FP_DECL_EX;
  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 %p\n", __func__, ccr, *ccr, crfD, frA, frB);
  18. #endif
  19. FP_UNPACK_DP(A, frA);
  20. FP_UNPACK_DP(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_NAN || B_c == FP_CLS_NAN)
  26. FP_SET_EXCEPTION(EFLAG_VXVC);
  27. FP_CMP_D(cmp, A, B, 2);
  28. cmp = code[(cmp + 1) & 3];
  29. __FPU_FPSCR &= ~(0x1f000);
  30. __FPU_FPSCR |= (cmp << 12);
  31. *ccr &= ~(15 << ((7 - crfD) << 2));
  32. *ccr |= (cmp << ((7 - crfD) << 2));
  33. #ifdef DEBUG
  34. printk("CR: %08x\n", *ccr);
  35. #endif
  36. return FP_CUR_EXCEPTIONS;
  37. }