Lines Matching refs:fsr
70 int fsr, int addr) in full_exception() argument
76 type, user_mode(regs) ? "user" : "kernel", fsr, in full_exception()
121 if (fsr & FSR_IO) in full_exception()
122 fsr = FPE_FLTINV; in full_exception()
123 else if (fsr & FSR_OF) in full_exception()
124 fsr = FPE_FLTOVF; in full_exception()
125 else if (fsr & FSR_UF) in full_exception()
126 fsr = FPE_FLTUND; in full_exception()
127 else if (fsr & FSR_DZ) in full_exception()
128 fsr = FPE_FLTDIV; in full_exception()
129 else if (fsr & FSR_DO) in full_exception()
130 fsr = FPE_FLTRES; in full_exception()
131 _exception(SIGFPE, regs, fsr, addr); in full_exception()