Searched refs:fpstate (Results 1 - 5 of 5) sorted by last modified time

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLinux_x86_64.cpp66 FXSAVE *fpstate; // Location of FPR's. member in struct:UserArea
H A DRegisterContextLinux_i386.cpp72 uint32_t fpstate; // Location of FPR's. Should be a FXSTATE *, but this member in struct:UserArea
/freebsd-11-stable/sys/amd64/amd64/
H A Dptrace_machdep.c165 struct savefpu *fpstate; local
174 sizeof(*fpstate));
179 fpstate = get_pcb_user_save_td(td);
180 error = copyin(addr, fpstate, sizeof(*fpstate));
181 fpstate->sv_env.en_mxcsr &= cpu_mxcsr_mask;
/freebsd-11-stable/sys/i386/i386/
H A Dptrace_machdep.c116 struct savexmm *fpstate; local
122 fpstate = &get_pcb_user_save_td(td)->sv_xmm;
126 error = copyout(fpstate, addr, sizeof(*fpstate));
131 error = copyin(addr, fpstate, sizeof(*fpstate));
132 fpstate->sv_env.en_mxcsr &= cpu_mxcsr_mask;
/freebsd-11-stable/contrib/gdb/gdb/
H A Di386v-nat.c87 CORE_ADDR fpstate;
93 fpstate = blockend + ((char *) &u.u_fps.u_fpstate - (char *) &u);
94 return (fpstate + 0x1c + 10 * (regnum - FP0_REGNUM));
96 fpstate = blockend + ((char *) &u.i387.st_space - (char *) &u);
97 return (fpstate + 10 * (regnum - FP0_REGNUM));
86 CORE_ADDR fpstate; local

Completed in 95 milliseconds