Home
last modified time | relevance | path

Searched refs:fpu_fcw (Results 1 – 9 of 9) sorted by relevance

/external/lldb/source/Plugins/Process/Utility/
DRegisterContextDarwin_i386.cpp55 fpu_fcw, enumerator
89 fpu_fctrl = fpu_fcw,
252 … , LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM , gdb_fcw , fpu_fcw }, NULL…
348 fpu_fcw,
427 if (reg_num < fpu_fcw) in GetSetForNativeRegNum()
593 case fpu_fcw: in ReadRegister()
713 case fpu_fcw: in WriteRegister()
DRegisterContextDarwin_x86_64.cpp61 fpu_fcw, enumerator
103 fpu_fctrl = fpu_fcw,
280 …UM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM , gdb_fpu_fcw , fpu_fcw }, NU…
389 fpu_fcw,
470 if (reg_num < fpu_fcw) in GetSetForNativeRegNum()
640 case fpu_fcw: in ReadRegister()
768 case fpu_fcw: in WriteRegister()
/external/lldb/source/Plugins/Process/POSIX/
DRegisterContext_i386.cpp49 fpu_fcw = k_first_fpr, enumerator
114 fpu_fcw,
463 case gdb_fcw : return fpu_fcw; in ConvertRegisterKindToRegisterNumber()
DRegisterContext_x86_64.cpp220 fpu_fcw,
738 case fpu_fcw: in ReadRegister()
831 case fpu_fcw: in WriteRegister()
1004 case gdb_fcw : return fpu_fcw; in ConvertRegisterKindToRegisterNumber()
1151 case gdb_fpu_fcw : return fpu_fcw; in ConvertRegisterKindToRegisterNumber()
DRegisterContext_x86_64.h61 fpu_fcw = k_first_fpr, enumerator
/external/lldb/tools/debugserver/source/MacOSX/i386/
DDNBArchImplI386.cpp110 fpu_fcw, enumerator
147 fpu_fctrl = fpu_fcw,
1107 { e_regSetFPU, fpu_fcw , "fctrl" , NULL, Uint, Hex, FPU_SIZE_UINT(fcw) , FPU_OFFSE…
1140 { e_regSetFPU, fpu_fcw , "fctrl" , NULL, Uint, Hex, FPU_SIZE_UINT(fcw) , AVX_OFFSE…
1318 …case fpu_fcw: value->value.uint16 = *((uint16_t *)(&m_state.context.fpu.avx.__fpu_fcw)); … in GetRegisterValue()
1365 …case fpu_fcw: value->value.uint16 = *((uint16_t *)(&m_state.context.fpu.no_avx.__fpu_fcw)); … in GetRegisterValue()
1465 …case fpu_fcw: *((uint16_t *)(&m_state.context.fpu.avx.__fpu_fcw)) = value->value.uint16; … in SetRegisterValue()
1512 …case fpu_fcw: *((uint16_t *)(&m_state.context.fpu.no_avx.__fpu_fcw)) = value->value.uint16; … in SetRegisterValue()
/external/lldb/tools/debugserver/source/MacOSX/x86_64/
DDNBArchImplX86_64.cpp1047 fpu_fcw, enumerator
1100 fpu_fctrl = fpu_fcw,
1407 …{ e_regSetFPU, fpu_fcw , "fctrl" , NULL, Uint, Hex, FPU_SIZE_UINT(fcw) , FPU_OFFS…
1448 …{ e_regSetFPU, fpu_fcw , "fctrl" , NULL, Uint, Hex, FPU_SIZE_UINT(fcw) , AVX_OFFS…
1645 …case fpu_fcw: value->value.uint16 = *((uint16_t *)(&m_state.context.fpu.avx.__fpu_fcw)); … in GetRegisterValue()
1711 …case fpu_fcw: value->value.uint16 = *((uint16_t *)(&m_state.context.fpu.no_avx.__fpu_fcw)); … in GetRegisterValue()
1824 …case fpu_fcw: *((uint16_t *)(&m_state.context.fpu.avx.__fpu_fcw)) = value->value.uint16; … in SetRegisterValue()
1892 …case fpu_fcw: *((uint16_t *)(&m_state.context.fpu.no_avx.__fpu_fcw)) = value->value.uint16; … in SetRegisterValue()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp7983 outs() << "\t control: invalid " << fpu.fpu_fcw.invalid; in Print_x86_float_state_t()
7984 outs() << " denorm " << fpu.fpu_fcw.denorm; in Print_x86_float_state_t()
7985 outs() << " zdiv " << fpu.fpu_fcw.zdiv; in Print_x86_float_state_t()
7986 outs() << " ovrfl " << fpu.fpu_fcw.ovrfl; in Print_x86_float_state_t()
7987 outs() << " undfl " << fpu.fpu_fcw.undfl; in Print_x86_float_state_t()
7988 outs() << " precis " << fpu.fpu_fcw.precis << "\n"; in Print_x86_float_state_t()
7990 if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_24B) in Print_x86_float_state_t()
7992 else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_53B) in Print_x86_float_state_t()
7994 else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_64B) in Print_x86_float_state_t()
7997 outs() << fpu.fpu_fcw.pc << " "; in Print_x86_float_state_t()
[all …]
/external/llvm/include/llvm/Support/
DMachO.h1503 fp_control_t fpu_fcw; member