Searched refs:fpu (Results 1 - 25 of 93) sorted by relevance

1234

/freebsd-11-stable/sys/amd64/include/
H A Dnpx.h6 #include <x86/fpu.h>
/freebsd-11-stable/lib/libc/sparc64/fpu/
H A DMakefile.inc3 .PATH: ${LIBC_SRCTOP}/sparc64/fpu
7 SRCS+= fpu.c fpu_add.c fpu_compare.c fpu_div.c fpu_explode.c fpu_implode.c \
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_extern.h34 struct fpu;
40 /* fpu.c */
41 int fpu_emulate(struct trapframe *, struct fpu *);
H A Dfpu_compare.c56 #include <machine/fpu.h>
59 #include <powerpc/fpu/fpu_arith.h>
60 #include <powerpc/fpu/fpu_emu.h>
H A Dfpu_explode.c54 #include <machine/fpu.h>
58 #include <powerpc/fpu/fpu_arith.h>
59 #include <powerpc/fpu/fpu_emu.h>
60 #include <powerpc/fpu/fpu_extern.h>
61 #include <powerpc/fpu/fpu_instr.h>
H A Dfpu_mul.c53 #include <machine/fpu.h>
56 #include <powerpc/fpu/fpu_arith.h>
57 #include <powerpc/fpu/fpu_emu.h>
H A Dfpu_add.c55 #include <machine/fpu.h>
59 #include <powerpc/fpu/fpu_arith.h>
60 #include <powerpc/fpu/fpu_emu.h>
H A Dfpu_div.c53 #include <machine/fpu.h>
56 #include <powerpc/fpu/fpu_arith.h>
57 #include <powerpc/fpu/fpu_emu.h>
H A Dfpu_subr.c53 #include <machine/fpu.h>
56 #include <powerpc/fpu/fpu_arith.h>
57 #include <powerpc/fpu/fpu_emu.h>
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_fpu.c125 ATF_TC(fpu); variable
126 ATF_TC_HEAD(fpu, tc)
132 ATF_TC_BODY(fpu, tc)
149 ATF_TP_ADD_TC(tp, fpu);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMach_i386.cpp29 int RegisterContextMach_i386::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { argument
31 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
47 const FPU &fpu) {
49 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)),
46 DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) argument
H A DRegisterContextMach_x86_64.cpp31 FPU &fpu) {
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
50 const FPU &fpu) {
52 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)),
30 DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) argument
49 DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) argument
H A DRegisterContextMach_arm.h25 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu);
33 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu);
H A DRegisterContextMach_i386.h24 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu);
30 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu);
H A DRegisterContextMach_x86_64.h25 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu);
31 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu);
H A DRegisterContextMach_arm.cpp31 int RegisterContextMach_arm::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { argument
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
54 const FPU &fpu) {
56 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)),
53 DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) argument
H A DRegisterContextDarwin_i386.cpp399 : RegisterContext(thread, concrete_frame_idx), gpr(), fpu(), exc() {
464 {"Floating Point Registers", "fpu", k_num_fpu_registers, g_fpu_regnums},
513 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu));
543 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu));
622 value = fpu.fcw;
626 value = fpu.fsw;
630 value = fpu.ftw;
634 value = fpu.fop;
638 value = fpu.ip;
642 value = fpu
[all...]
H A DRegisterContextDarwin_x86_64.cpp461 : RegisterContext(thread, concrete_frame_idx), gpr(), fpu(), exc() {
525 {"Floating Point Registers", "fpu", k_num_fpu_registers, g_fpu_regnums},
562 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu));
592 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu));
673 value = fpu.fcw;
677 value = fpu.fsw;
681 value = fpu.ftw;
685 value = fpu.fop;
689 value = fpu.ip;
693 value = fpu
[all...]
H A DRegisterContextDarwin_i386.h114 FPU fpu; member in class:RegisterContextDarwin_i386
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 DRegisterContextDarwin_x86_64.h119 FPU fpu; member in class:RegisterContextDarwin_x86_64
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;
/freebsd-11-stable/tools/test/testfloat/sparc64/
H A DMakefile29 EMUFLOAT_DIR= ${LIBC_DIR}/sparc64/fpu
40 SRCS3= fpu.c fpu_add.c fpu_compare.c fpu_div.c fpu_emul.S fpu_explode.c \
57 CFLAGS+= -I. -I${.CURDIR} -I${.CURDIR}/.. -I${LIBC_DIR}/sparc64/fpu \
61 CLEANFILES+= fpu.c fpu_add.c fpu_compare.c fpu_div.c fpu_emu.h \
82 fpu.c: ${EMUFLOAT_DIR}/fpu.c
/freebsd-11-stable/lib/libc/sparc64/sys/
H A DMakefile.inc13 CFLAGS+= -I${LIBC_SRCTOP}/sparc64/fpu
/freebsd-11-stable/sys/powerpc/include/
H A Dpcb.h55 struct fpu { struct in struct:pcb
/freebsd-11-stable/sys/arm/arm/
H A Dswtch.S91 .fpu vfp /* allow VFP instructions */
/freebsd-11-stable/contrib/gdb/gdb/
H A Dsun3-nat.c128 #define fpustruct ((struct fpu *) core_reg_sect)
130 if (core_reg_size >= sizeof (struct fpu))

Completed in 95 milliseconds

1234