Home
last modified time | relevance | path

Searched refs:_fex (Results 1 – 7 of 7) sorted by relevance

/linux-2.6.39/arch/alpha/math-emu/
Dmath.c272 if ((_fex & FP_EX_UNDERFLOW) && (swcr & IEEE_MAP_UMZ)) in alpha_fp_emul()
279 if ((_fex & FP_EX_UNDERFLOW) && (swcr & IEEE_MAP_UMZ)) in alpha_fp_emul()
298 if (_fex) { in alpha_fp_emul()
300 swcr |= (_fex << IEEE_STATUS_TO_EXCSUM_SHIFT); in alpha_fp_emul()
302 |= (_fex << IEEE_STATUS_TO_EXCSUM_SHIFT); in alpha_fp_emul()
310 _fex = _fex & swcr & IEEE_TRAP_ENABLE_MASK; in alpha_fp_emul()
312 if (_fex) { in alpha_fp_emul()
313 if (_fex & IEEE_TRAP_ENABLE_DNO) si_code = FPE_FLTUND; in alpha_fp_emul()
314 if (_fex & IEEE_TRAP_ENABLE_INE) si_code = FPE_FLTRES; in alpha_fp_emul()
315 if (_fex & IEEE_TRAP_ENABLE_UNF) si_code = FPE_FLTUND; in alpha_fp_emul()
[all …]
/linux-2.6.39/arch/s390/math-emu/
Dmath.c164 return _fex; in emu_axbr()
179 return _fex; in emu_adbr()
194 return _fex; in emu_adb()
209 return _fex; in emu_aebr()
224 return _fex; in emu_aeb()
333 return _fex; in emu_kxbr()
352 return _fex; in emu_kdbr()
371 return _fex; in emu_kdb()
390 return _fex; in emu_kebr()
409 return _fex; in emu_keb()
[all …]
/linux-2.6.39/include/math-emu/
Dsoft-fp.h91 int _fex = 0; \
94 #define FP_DECL_EX int _fex = 0
124 _fex |= (ex)
127 _fex &= ~(ex)
130 (_fex)
133 _fex = 0
/linux-2.6.39/arch/sparc/include/asm/
Dsfp-machine_64.h87 #define FP_HANDLE_EXCEPTIONS return _fex
89 #define FP_INHIBIT_RESULTS ((current_thread_info()->xfsr[0] >> 23) & _fex)
Dsfp-machine_32.h198 #define FP_HANDLE_EXCEPTIONS return _fex
201 #define FP_INHIBIT_RESULTS ((current->thread.fsr >> 23) & _fex)
203 #define FP_INHIBIT_RESULTS ((last_task_used_math->thread.fsr >> 23) & _fex)
/linux-2.6.39/arch/sparc/math-emu/
Dmath_32.c511 if (_fex == 0) in do_one_mathemu()
513 return record_exception(pfsr, _fex); in do_one_mathemu()
Dmath_64.c505 if(_fex != 0) in do_mathemu()
506 return record_exception(regs, _fex); in do_mathemu()