0001
0002 #include <linux/types.h>
0003 #include <linux/errno.h>
0004 #include <linux/uaccess.h>
0005
0006 #include <asm/sfp-machine.h>
0007 #include <math-emu/soft-fp.h>
0008 #include <math-emu/double.h>
0009
0010 int
0011 fdiv(void *frD, void *frA, void *frB)
0012 {
0013 FP_DECL_D(A);
0014 FP_DECL_D(B);
0015 FP_DECL_D(R);
0016 FP_DECL_EX;
0017
0018 #ifdef DEBUG
0019 printk("%s: %p %p %p\n", __func__, frD, frA, frB);
0020 #endif
0021
0022 FP_UNPACK_DP(A, frA);
0023 FP_UNPACK_DP(B, frB);
0024
0025 #ifdef DEBUG
0026 printk("A: %ld %lu %lu %ld (%ld)\n", A_s, A_f1, A_f0, A_e, A_c);
0027 printk("B: %ld %lu %lu %ld (%ld)\n", B_s, B_f1, B_f0, B_e, B_c);
0028 #endif
0029
0030 if (A_c == FP_CLS_ZERO && B_c == FP_CLS_ZERO) {
0031 FP_SET_EXCEPTION(EFLAG_VXZDZ);
0032 #ifdef DEBUG
0033 printk("%s: FPSCR_VXZDZ raised\n", __func__);
0034 #endif
0035 }
0036 if (A_c == FP_CLS_INF && B_c == FP_CLS_INF) {
0037 FP_SET_EXCEPTION(EFLAG_VXIDI);
0038 #ifdef DEBUG
0039 printk("%s: FPSCR_VXIDI raised\n", __func__);
0040 #endif
0041 }
0042
0043 if (B_c == FP_CLS_ZERO && A_c != FP_CLS_ZERO) {
0044 FP_SET_EXCEPTION(EFLAG_DIVZERO);
0045 if (__FPU_TRAP_P(EFLAG_DIVZERO))
0046 return FP_CUR_EXCEPTIONS;
0047 }
0048 FP_DIV_D(R, A, B);
0049
0050 #ifdef DEBUG
0051 printk("D: %ld %lu %lu %ld (%ld)\n", R_s, R_f1, R_f0, R_e, R_c);
0052 #endif
0053
0054 __FP_PACK_D(frD, R);
0055
0056 return FP_CUR_EXCEPTIONS;
0057 }