Lines Matching refs:fsr
75 int fsr, int addr) in full_exception() argument
83 type, user_mode(regs) ? "user" : "kernel", fsr, in full_exception()
128 if (fsr & FSR_IO) in full_exception()
129 fsr = FPE_FLTINV; in full_exception()
130 else if (fsr & FSR_OF) in full_exception()
131 fsr = FPE_FLTOVF; in full_exception()
132 else if (fsr & FSR_UF) in full_exception()
133 fsr = FPE_FLTUND; in full_exception()
134 else if (fsr & FSR_DZ) in full_exception()
135 fsr = FPE_FLTDIV; in full_exception()
136 else if (fsr & FSR_DO) in full_exception()
137 fsr = FPE_FLTRES; in full_exception()
138 _exception(SIGFPE, regs, fsr, addr); in full_exception()