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