| /src/sys/arch/sparc64/sparc64/ |
| db_trace.c | 451 struct fpstate64 *fpstate; local 454 fpstate = DDB_FP; 457 fpstate = (struct fpstate64 *)(uintptr_t)addr; 459 db_printf("fpstate %p: fsr = %llx gsr = %lx\nfpregs:\n", 460 fpstate, (unsigned long long)fpstate->fs_fsr, 461 (unsigned long)fpstate->fs_gsr); 463 (unsigned int)fpstate->fs_regs[0], 464 (unsigned int)fpstate->fs_regs[1], 465 (unsigned int)fpstate->fs_regs[2] [all...] |
| cpu.c | 402 struct fpstate64 *fpstate; local 406 fpstate = ALIGNFPSTATE(&fps[1]); 414 fpstate->fs_fsr = 7 << FSR_VER_SHIFT; /* 7 is reserved for "none" */ 415 savefpstate(fpstate); 509 SPARC64_BLOCK_SIZE, 0, 0, "fpstate",
|
| netbsd32_machdep.c | 450 struct fpstate *fsp; 536 struct fpstate *fsp;
|
| /src/sys/arch/sparc/include/ |
| pcb.h | 117 struct fpstate md_fpstate;
|
| proc.h | 51 struct fpstate *md_fpstate; /* fpu state, if any; always resident */
|
| reg.h | 111 struct fpstate { struct 126 * fact that `fpreg' is a prefix of `fpstate'.
|
| cpu.h | 543 struct fpstate; 544 void ipi_savefpstate(struct fpstate *); 545 void savefpstate(struct fpstate *); 546 void loadfpstate(struct fpstate *);
|
| trap.h | 138 extern struct fpstate initfpstate;
|
| /src/sys/arch/sparc/fpu/ |
| fpu_extern.h | 38 struct fpstate; 50 int fpu_cleanup(struct lwp *, struct fpstate *); 51 int fpu_emulate(struct lwp *, struct trapframe *, struct fpstate *);
|
| fpu_emu.h | 143 struct fpstate *fe_fpstate; /* registers, etc */
|
| fpu.c | 132 struct fpstate *fs 251 struct fpstate *fs; 306 struct fpstate *fs;
|
| /src/sys/arch/powerpc/powerpc/ |
| core_machdep.c | 83 md_core.fpstate = pcb->pcb_fpu; 85 memset(&md_core.fpstate, 0, sizeof(md_core.fpstate));
|
| /src/sys/arch/powerpc/include/ |
| pcb.h | 67 struct fpreg fpstate; member in struct:md_coredump
|
| /src/sys/arch/sparc64/include/ |
| reg.h | 184 * fact that `fpreg' is a prefix of `fpstate'. 222 #define fpstate fpstate64 macro 228 #define fpstate fpstate32 macro
|
| /src/sys/arch/sparc/sparc/ |
| process_machdep.c | 159 struct fpstate *fs; 171 struct fpstate *fs; 177 /* Reset FP queue in this process `fpstate' */
|
| vm_machdep.c | 223 kmem_alloc(sizeof(struct fpstate), KM_SLEEP); 239 sizeof(struct fpstate)); 295 struct fpstate *fs; 322 struct fpstate *fs; 325 kmem_free(fs, sizeof(struct fpstate));
|
| core_machdep.c | 100 memset((void *)&md_core.md_fpstate, 0, sizeof(struct fpstate));
|
| trap.c | 107 struct fpstate initfpstate = { 396 struct fpstate *fs = l->l_md.md_fpstate; 408 fs = kmem_alloc(sizeof(struct fpstate), KM_SLEEP);
|
| cpu.c | 365 * struct fpstate * bug is fixed. 1035 struct fpstate fpstate; local 1049 fpstate.fs_fsr = 7 << FSR_VER_SHIFT; 1050 savefpstate(&fpstate); 1052 (fpstate.fs_fsr >> FSR_VER_SHIFT) & (FSR_VER >> FSR_VER_SHIFT);
|
| machdep.c | 348 struct fpstate *fs; 385 kmem_free(fs, sizeof(struct fpstate)); 606 struct fpstate *fps = l->l_md.md_fpstate; 717 struct fpstate *fps = l->l_md.md_fpstate;
|
| /src/sys/compat/linux/arch/amd64/ |
| linux_machdep.h | 88 struct linux__fpstate *fpstate; member in struct:linux_sigcontext
|
| linux_machdep.c | 217 sigframe.uc.luc_mcontext.fpstate = fpsp; 343 if (lsigctx->fpstate != NULL) 385 if (lsigctx->fpstate != NULL) { 387 error = copyin(lsigctx->fpstate, fxarea, sizeof(*fxarea));
|
| /src/common/lib/libc/arch/sparc64/string/ |
| memset.S | 142 * fplwp->l_md.md_fpstate is the current fpstate. If that's not 145 * Next, allocate an aligned fpstate on the stack. We will properly 149 * lwp0). We stash its existing fpstate in a local register and 150 * put our new fpstate in curlwp->p_md.md_fpstate. We point 154 * fpstate. Then, when we're resumed and we take an FPDISABLED 211 * We've saved our possible fpstate, now disable the fpu
|
| memcpy.S | 494 * fplwp->l_md.md_fpstate is the current fpstate. If that's not 497 * Next, allocate an aligned fpstate on the stack. We will properly 501 * lwp0). We stash its existing fpstate in a local register and 502 * put our new fpstate in curlwp->p_md.md_fpstate. We point 506 * fpstate. Then, when we're resumed and we take an FPDISABLED 521 * %l0 XXXX DEBUG old fpstate 524 * %l3 orig fpstate 526 * %l6 old fpstate 1609 * Weve saved our possible fpstate, now disable the fpu
|