HomeSort by: relevance | last modified time | path
    Searched refs:xstate (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/arch/amd64/include/
ptrace.h 120 struct xstate xstate; /* XXX FIXME big stack object */ \
121 memset(&xstate, 0, sizeof(xstate)); \
122 if (!process_read_xstate(l, &xstate)) \
126 &xstate, sizeof(xstate)); \
  /src/sys/arch/i386/include/
ptrace.h 165 struct xstate xstate; /* XXX FIXME big stack object */ \
166 memset(&xstate, 0, sizeof(xstate)); \
167 if (!process_read_xstate(l, &xstate)) \
171 &xstate, sizeof(xstate)); \
  /src/sys/arch/x86/include/
fpu.h 45 int process_read_xstate(struct lwp *, struct xstate *);
46 int process_verify_xstate(const struct xstate *);
47 int process_write_xstate(struct lwp *, const struct xstate *);
cpu_extended_state.h 181 struct xstate { struct
200 * XSAVE/XRSTOR xstate header.
  /src/sys/arch/x86/x86/
fpu.c 748 fpu_xstate_reload(union savefpu *fpu_save, uint64_t xstate)
751 * Force a reload of the given xstate during the next XRSTOR.
754 fpu_save->sv_xsave_hdr.xsh_xstate_bv |= xstate;
893 process_read_xstate(struct lwp *l, struct xstate *xstate)
899 memset(&xstate->xs_fxsave, 0, sizeof(xstate->xs_fxsave));
900 process_s87_to_xmm(&fpu_save->sv_87, &xstate->xs_fxsave);
903 xstate->xs_rfbm = XCR0_X87;
904 xstate->xs_xstate_bv = XCR0_X87
    [all...]
  /src/sys/arch/i386/i386/
process_machdep.c 237 process_machdep_read_xstate(struct lwp *l, struct xstate *regs)
252 process_machdep_write_xstate(struct lwp *l, const struct xstate *regs)
336 if (iov.iov_len > sizeof(struct xstate))
337 iov.iov_len = sizeof(struct xstate);
411 struct xstate r; /* XXX FIXME big stack object */
  /src/sys/arch/amd64/amd64/
process_machdep.c 290 process_machdep_read_xstate(struct lwp *l, struct xstate *regs)
296 process_machdep_write_xstate(struct lwp *l, const struct xstate *regs)
357 if (iov.iov_len > sizeof(struct xstate))
358 iov.iov_len = sizeof(struct xstate);
399 struct xstate r; /* XXX FIXME big stack object */
  /src/tests/lib/libc/sys/
t_ptrace_x86_wait.h 2938 struct xstate xst;
4331 "Test reading base FPU registers from core dump via XSTATE note.");
4339 "Test reading mm0..mm7 registers from core dump via XSTATE note.");
4347 "Test reading xmm0..xmm15 (..xmm7 on i386) from coredump via XSTATE note.");
4355 "Test reading ymm0..ymm15 (..ymm7 on i386) from coredump via XSTATE note.");
4364 "via XSTATE note.");

Completed in 17 milliseconds