Searched refs:eflag (Results 1 – 3 of 3) sorted by relevance
216 static inline int record_exception(unsigned long *pfsr, int eflag) in record_exception() argument222 would_trap = (fsr & ((long)eflag << FSR_TEM_SHIFT)) != 0UL; in record_exception()226 eflag &= ((fsr & FSR_TEM_MASK) >> FSR_TEM_SHIFT); in record_exception()227 if ((eflag & (eflag - 1)) != 0) { in record_exception()228 if (eflag & FP_EX_INVALID) in record_exception()229 eflag = FP_EX_INVALID; in record_exception()230 else if (eflag & FP_EX_OVERFLOW) in record_exception()231 eflag = FP_EX_OVERFLOW; in record_exception()232 else if (eflag & FP_EX_UNDERFLOW) in record_exception()233 eflag = FP_EX_UNDERFLOW; in record_exception()[all …]
100 static inline int record_exception(struct pt_regs *regs, int eflag) in record_exception() argument106 would_trap = (fsr & ((long)eflag << FSR_TEM_SHIFT)) != 0UL; in record_exception()110 eflag &= ((fsr & FSR_TEM_MASK) >> FSR_TEM_SHIFT); in record_exception()111 if((eflag & (eflag - 1)) != 0) { in record_exception()112 if(eflag & FP_EX_INVALID) in record_exception()113 eflag = FP_EX_INVALID; in record_exception()114 else if(eflag & FP_EX_OVERFLOW) in record_exception()115 eflag = FP_EX_OVERFLOW; in record_exception()116 else if(eflag & FP_EX_UNDERFLOW) in record_exception()117 eflag = FP_EX_UNDERFLOW; in record_exception()[all …]
167 record_exception(struct pt_regs *regs, int eflag) in record_exception() argument173 if (eflag) { in record_exception()175 if (eflag & EFLAG_OVERFLOW) in record_exception()177 if (eflag & EFLAG_UNDERFLOW) in record_exception()179 if (eflag & EFLAG_DIVZERO) in record_exception()181 if (eflag & EFLAG_INEXACT) in record_exception()183 if (eflag & EFLAG_INVALID) in record_exception()185 if (eflag & EFLAG_VXSNAN) in record_exception()187 if (eflag & EFLAG_VXISI) in record_exception()189 if (eflag & EFLAG_VXIDI) in record_exception()[all …]