1 #ifndef __ASM_X86_XSAVE_H
2 #define __ASM_X86_XSAVE_H
4 #include <asm/processor.h>
10 #define XSTATE_FPSSE (XSTATE_FP | XSTATE_SSE)
12 #define FXSAVE_SIZE 512
15 * These are the features that the OS can handle currently.
17 #define XCNTXT_LMASK (XSTATE_FP | XSTATE_SSE)
18 #define XCNTXT_HMASK 0x0
21 #define REX_PREFIX "0x48, "
26 extern unsigned int xstate_size, pcntxt_hmask, pcntxt_lmask;
27 extern struct xsave_struct *init_xstate_buf;
29 extern void xsave_cntxt_init(void);
30 extern void xsave_init(void);
31 extern int init_fpu(struct task_struct *child);
32 extern int check_for_xstate(struct i387_fxsave_struct __user *buf,
34 struct _fpx_sw_bytes *sw);
36 static inline int xrstor_checking(struct xsave_struct *fx)
40 asm volatile("1: .byte " REX_PREFIX "0x0f,0xae,0x2f\n\t"
42 ".section .fixup,\"ax\"\n"
43 "3: movl $-1,%[err]\n"
48 : "D" (fx), "m" (*fx), "a" (-1), "d" (-1), "0" (0)
54 static inline int xsave_user(struct xsave_struct __user *buf)
57 __asm__ __volatile__("1: .byte " REX_PREFIX "0x0f,0xae,0x27\n"
59 ".section .fixup,\"ax\"\n"
60 "3: movl $-1,%[err]\n"
63 ".section __ex_table,\"a\"\n"
68 : "D" (buf), "a" (-1), "d" (-1), "0" (0)
70 if (unlikely(err) && __clear_user(buf, xstate_size))
72 /* No need to clear here because the caller clears USED_MATH */
76 static inline int xrestore_user(struct xsave_struct __user *buf,
81 struct xsave_struct *xstate = ((__force struct xsave_struct *)buf);
83 __asm__ __volatile__("1: .byte " REX_PREFIX "0x0f,0xae,0x2f\n"
85 ".section .fixup,\"ax\"\n"
86 "3: movl $-1,%[err]\n"
89 ".section __ex_table,\"a\"\n"
94 : "D" (xstate), "a" (lmask), "d" (hmask), "0" (0)
95 : "memory"); /* memory required? */
99 static inline void xrstor_state(struct xsave_struct *fx, int lmask, int hmask)
101 asm volatile(".byte " REX_PREFIX "0x0f,0xae,0x2f\n\t"
102 : : "D" (fx), "m" (*fx), "a" (lmask), "d" (hmask)
106 static inline void xsave(struct task_struct *tsk)
108 /* This, however, we can work around by forcing the compiler to select
109 an addressing mode that doesn't require extended registers. */
110 __asm__ __volatile__(".byte " REX_PREFIX "0x0f,0xae,0x27"
111 : : "D" (&(tsk->thread.xstate->xsave)),
112 "a" (-1), "d"(-1) : "memory");