Symbol: fsave
arch/m68k/fpsp040/fpsp.h
122
| fsave offsets and bit definitions
arch/m68k/fpsp040/fpsp.h
124
| Offsets are defined from the end of an fsave because the last 10
arch/m68k/fpsp040/fpsp.h
13
| These equates are used to access the exception frame, the fsave
arch/m68k/fpsp040/fpsp.h
19
| fsave -(a7)
arch/m68k/fpsp040/fpsp.h
28
| | FPU fsave area |
arch/m68k/fpsp040/fpsp.h
322
| fsave sizes and formats
arch/m68k/fpsp040/fpsp.h
45
| offsets refer to the Local Variable area and the fsave area.
arch/m68k/fpsp040/fpsp.h
46
| The fsave frame is also accessible from the top via A7.
arch/m68k/fpsp040/fpsp.h
62
| Sometimes the exception handler will transform the fsave area
arch/m68k/fpsp040/fpsp.h
66
| a second fsave frame can be pushed onto the stack and the
arch/x86/include/asm/fpu/types.h
370
struct fregs_state fsave;
arch/x86/kernel/fpu/core.c
158
asm volatile("fnsave %[fp]; fwait" : [fp] "=m" (fpu->fpstate->regs.fsave));
arch/x86/kernel/fpu/core.c
159
frstor(&fpu->fpstate->regs.fsave);
arch/x86/kernel/fpu/core.c
212
frstor(&fpstate->regs.fsave);
arch/x86/kernel/fpu/core.c
548
fpstate->regs.fsave.cwd = 0xffff037fu;
arch/x86/kernel/fpu/core.c
549
fpstate->regs.fsave.swd = 0xffff0000u;
arch/x86/kernel/fpu/core.c
550
fpstate->regs.fsave.twd = 0xffffffffu;
arch/x86/kernel/fpu/core.c
551
fpstate->regs.fsave.fos = 0xffff0000u;
arch/x86/kernel/fpu/core.c
799
frstor(&init_fpstate.regs.fsave);
arch/x86/kernel/fpu/core.c
958
cwd = (unsigned short)fpu->fpstate->regs.fsave.cwd;
arch/x86/kernel/fpu/core.c
959
swd = (unsigned short)fpu->fpstate->regs.fsave.swd;
arch/x86/kernel/fpu/regset.c
414
return membuf_write(&to, &fpu->fpstate->regs.fsave,
arch/x86/kernel/fpu/regset.c
456
memcpy(&fpu->fpstate->regs.fsave, &env, sizeof(env));
arch/x86/math-emu/fpu_proto.h
149
extern void fsave(fpu_addr_modes addr_modes, u_char __user *data_address);
arch/x86/math-emu/load_store.c
283
fsave(addr_modes, (u_char __user *) data_address);