Home
last modified time | relevance | path

Searched refs:FSR_TEM_SHIFT (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/arch/sparc/math-emu/
H A Dmath_32.c126 #define FSR_TEM_SHIFT 23UL macro
127 #define FSR_TEM_MASK (0x1fUL << FSR_TEM_SHIFT)
223 would_trap = (fsr & ((long)eflag << FSR_TEM_SHIFT)) != 0UL; in record_exception()
227 eflag &= ((fsr & FSR_TEM_MASK) >> FSR_TEM_SHIFT); in record_exception()
H A Dmath_64.c86 #define FSR_TEM_SHIFT 23UL macro
87 #define FSR_TEM_MASK (0x1fUL << FSR_TEM_SHIFT)
107 would_trap = (fsr & ((long)eflag << FSR_TEM_SHIFT)) != 0UL; in record_exception()
111 eflag &= ((fsr & FSR_TEM_MASK) >> FSR_TEM_SHIFT); in record_exception()
/openbmc/qemu/target/sparc/
H A Dcpu.h158 #define FSR_TEM_SHIFT 23 macro
H A Dfop_helper.c74 if (cexc & (env->fsr >> FSR_TEM_SHIFT)) { in check_ieee_exceptions()