/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-fpu.m4 | 5 dnl # 5.19: The asm/fpu/internal.h header was removed, it has been 25 AC_MSG_CHECKING([whether fpu headers are available]) 28 #include <asm/fpu/api.h> 32 [kernel has asm/fpu/api.h]) 36 #include <asm/fpu/internal.h> 40 [kernel has asm/fpu/internal.h]) 41 AC_MSG_RESULT([asm/fpu/api.h asm/fpu/internal.h]) 43 AC_MSG_RESULT([asm/fpu/api.h]) 55 #include <asm/fpu/api.h> 57 #include <asm/fpu/internal.h> [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextDarwin_i386.cpp | 399 : RegisterContext(thread, concrete_frame_idx), gpr(), fpu(), exc() { in RegisterContextDarwin_i386() 513 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 543 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 622 value = fpu.fcw; in ReadRegister() 626 value = fpu.fsw; in ReadRegister() 630 value = fpu.ftw; in ReadRegister() 634 value = fpu.fop; in ReadRegister() 638 value = fpu.ip; in ReadRegister() 642 value = fpu.cs; in ReadRegister() 646 value = fpu.dp; in ReadRegister() [all …]
|
H A D | RegisterContextDarwin_x86_64.cpp | 461 : RegisterContext(thread, concrete_frame_idx), gpr(), fpu(), exc() { in RegisterContextDarwin_x86_64() 562 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 592 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 673 value = fpu.fcw; in ReadRegister() 677 value = fpu.fsw; in ReadRegister() 681 value = fpu.ftw; in ReadRegister() 685 value = fpu.fop; in ReadRegister() 689 value = fpu.ip; in ReadRegister() 693 value = fpu.cs; in ReadRegister() 697 value = fpu.dp; in ReadRegister() [all …]
|
H A D | RegisterContextMach_i386.cpp | 29 int RegisterContextMach_i386::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { in DoReadFPU() argument 31 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU() 47 const FPU &fpu) { in DoWriteFPU() argument 49 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
|
H A D | RegisterContextMach_x86_64.cpp | 31 FPU &fpu) { in DoReadFPU() argument 33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU() 50 const FPU &fpu) { in DoWriteFPU() argument 52 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
|
H A D | RegisterContextMach_arm.cpp | 31 int RegisterContextMach_arm::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { in DoReadFPU() argument 33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU() 54 const FPU &fpu) { in DoWriteFPU() argument 56 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
|
H A D | RegisterContextDarwin_arm64.cpp | 97 : RegisterContext(thread, concrete_frame_idx), gpr(), fpu(), exc(), dbg() { in RegisterContextDarwin_arm64() 182 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 220 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 424 value.SetBytes(fpu.v[reg - fpu_v0].bytes, reg_info->byte_size, in ReadRegister() 462 DataExtractor regdata(&fpu.v[reg - fpu_s0], 4, process_sp->GetByteOrder(), in ReadRegister() 503 DataExtractor regdata(&fpu.v[reg - fpu_d0], 8, process_sp->GetByteOrder(), in ReadRegister() 511 value.SetUInt32(fpu.fpsr); in ReadRegister() 515 value.SetUInt32(fpu.fpcr); in ReadRegister() 616 ::memcpy(fpu.v[reg - fpu_v0].bytes, value.GetBytes(), in WriteRegister() 621 fpu.fpsr = value.GetAsUInt32(); in WriteRegister() [all …]
|
H A D | RegisterContextMach_i386.h | 24 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) override; 30 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) override;
|
H A D | RegisterContextMach_x86_64.h | 25 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) override; 31 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) override;
|
H A D | RegisterContextMach_arm.h | 24 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) override; 32 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) override;
|
H A D | RegisterContextDarwin_arm64.h | 123 FPU fpu; variable 204 virtual int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) = 0; 212 virtual int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) = 0;
|
H A D | RegisterContextDarwin_i386.h | 114 FPU fpu; variable 185 virtual int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) = 0; 191 virtual int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) = 0;
|
H A D | RegisterContextDarwin_x86_64.h | 119 FPU fpu; variable 190 virtual int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) = 0; 196 virtual int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) = 0;
|
H A D | RegisterContextDarwin_arm.cpp | 916 : RegisterContext(thread, concrete_frame_idx), gpr(), fpu(), exc() { in RegisterContextDarwin_arm() 1001 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 1039 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU() 1180 value.SetUInt32(fpu.floats.s[reg], RegisterValue::eTypeFloat); in ReadRegister() 1184 value.SetUInt32(fpu.fpscr); in ReadRegister() 1268 fpu.floats.s[reg] = value.GetAsUInt32(); in WriteRegister() 1272 fpu.fpscr = value.GetAsUInt32(); in WriteRegister() 1300 ::memcpy(dst, &fpu, sizeof(fpu)); in ReadAllRegisterValues() 1316 ::memcpy(&fpu, src, sizeof(fpu)); in WriteAllRegisterValues()
|
H A D | RegisterContextDarwin_arm.h | 156 FPU fpu; variable 237 virtual int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) = 0; 245 virtual int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) = 0;
|
/freebsd/tools/test/stress2/misc/ |
H A D | fpu.sh | 35 sed '1,/^EOF/d' < $here/$0 > fpu.c 36 mycc -o fpu -Wall -O2 fpu.c 37 rm -f fpu.c 41 r=`/tmp/fpu` 45 rm -f /tmp/fpu
|
/freebsd/contrib/netbsd-tests/lib/libpthread/ |
H A D | t_fpu.c | 125 ATF_TC(fpu); 126 ATF_TC_HEAD(fpu, tc) in ATF_TC_HEAD() argument 132 ATF_TC_BODY(fpu, tc) in ATF_TC_BODY() argument 149 ATF_TP_ADD_TC(tp, fpu); in ATF_TP_ADD_TCS()
|
/freebsd/sys/powerpc/fpu/ |
H A D | fpu_extern.h | 35 struct fpu; 42 int fpu_emulate(struct trapframe *, struct fpu *);
|
H A D | fpu_emu.h | 140 struct fpu *fe_fpstate; /* registers, etc */
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 9451 static void Print_x86_float_state_t(MachO::x86_float_state64_t &fpu) { in Print_x86_float_state_t() argument 9452 outs() << "\t fpu_reserved[0] " << fpu.fpu_reserved[0]; in Print_x86_float_state_t() 9453 outs() << " fpu_reserved[1] " << fpu.fpu_reserved[1] << "\n"; in Print_x86_float_state_t() 9454 outs() << "\t control: invalid " << fpu.fpu_fcw.invalid; in Print_x86_float_state_t() 9455 outs() << " denorm " << fpu.fpu_fcw.denorm; in Print_x86_float_state_t() 9456 outs() << " zdiv " << fpu.fpu_fcw.zdiv; in Print_x86_float_state_t() 9457 outs() << " ovrfl " << fpu.fpu_fcw.ovrfl; in Print_x86_float_state_t() 9458 outs() << " undfl " << fpu.fpu_fcw.undfl; in Print_x86_float_state_t() 9459 outs() << " precis " << fpu.fpu_fcw.precis << "\n"; in Print_x86_float_state_t() 9461 if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_24B) in Print_x86_float_state_t() [all …]
|
/freebsd/sys/conf/ |
H A D | files.powerpc | 268 powerpc/fpu/fpu_add.c optional fpu_emu | powerpcspe 269 powerpc/fpu/fpu_compare.c optional fpu_emu | powerpcspe 270 powerpc/fpu/fpu_div.c optional fpu_emu | powerpcspe 271 powerpc/fpu/fpu_emu.c optional fpu_emu 272 powerpc/fpu/fpu_explode.c optional fpu_emu | powerpcspe 273 powerpc/fpu/fpu_implode.c optional fpu_emu | powerpcspe 274 powerpc/fpu/fpu_mul.c optional fpu_emu | powerpcspe 275 powerpc/fpu/fpu_sqrt.c optional fpu_emu 276 powerpc/fpu/fpu_subr.c optional fpu_emu | powerpcspe 365 powerpc/powerpc/fpu [all...] |
/freebsd/sys/arm/arm/ |
H A D | swtch.S | 88 .fpu vfp /* allow VFP instructions */
|
/freebsd/sys/powerpc/include/ |
H A D | pcb.h | 67 struct fpu { struct
|
/freebsd/crypto/openssl/crypto/perlasm/ |
H A D | arm-xlate.pl | 27 my $fpu = sub {
|
/freebsd/lib/libc/arm/gen/ |
H A D | _setjmp.S | 40 .fpu vfp
|