blob: 1a8cca33b736a83823b87dbc94f108f0231651a9 [file] [log] [blame]
Roland McGrath1eeaed72008-01-30 13:31:51 +01001/*
2 * Copyright (C) 1994 Linus Torvalds
3 *
4 * Pentium III FXSR, SSE support
5 * General FPU state handling cleanups
6 * Gareth Hughes <gareth@valinux.com>, May 2000
7 * x86-64 work by Andi Kleen 2002
8 */
9
H. Peter Anvin1965aae2008-10-22 22:26:29 -070010#ifndef _ASM_X86_I387_H
11#define _ASM_X86_I387_H
Roland McGrath1eeaed72008-01-30 13:31:51 +010012
Herbert Xu3b0d6592009-11-03 09:11:15 -050013#ifndef __ASSEMBLY__
14
Roland McGrath1eeaed72008-01-30 13:31:51 +010015#include <linux/sched.h>
16#include <linux/kernel_stat.h>
17#include <linux/regset.h>
Suresh Siddhae4914012008-08-13 22:02:26 +100018#include <linux/hardirq.h>
Avi Kivity86603282010-05-06 11:45:46 +030019#include <linux/slab.h>
H. Peter Anvin92c37fa2008-02-04 16:47:58 +010020#include <asm/asm.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010021#include <asm/processor.h>
22#include <asm/sigcontext.h>
23#include <asm/user.h>
24#include <asm/uaccess.h>
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070025#include <asm/xsave.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010026
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070027extern unsigned int sig_xstate_size;
Roland McGrath1eeaed72008-01-30 13:31:51 +010028extern void fpu_init(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010029extern void mxcsr_feature_mask_init(void);
Suresh Siddhaaa283f42008-03-10 15:28:05 -070030extern int init_fpu(struct task_struct *child);
Roland McGrath1eeaed72008-01-30 13:31:51 +010031extern asmlinkage void math_state_restore(void);
Jeremy Fitzhardingee6e9cac2009-04-24 00:40:59 -070032extern void __math_state_restore(void);
Suresh Siddha61c46282008-03-10 15:28:04 -070033extern void init_thread_xstate(void);
Jaswinder Singh36454932008-07-21 22:31:57 +053034extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);
Roland McGrath1eeaed72008-01-30 13:31:51 +010035
36extern user_regset_active_fn fpregs_active, xfpregs_active;
Suresh Siddha5b3efd52010-02-11 11:50:59 -080037extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
38 xstateregs_get;
39extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
40 xstateregs_set;
41
42/*
43 * xstateregs_active == fpregs_active. Please refer to the comment
44 * at the definition of fpregs_active.
45 */
46#define xstateregs_active fpregs_active
Roland McGrath1eeaed72008-01-30 13:31:51 +010047
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070048extern struct _fpx_sw_bytes fx_sw_reserved;
Roland McGrath1eeaed72008-01-30 13:31:51 +010049#ifdef CONFIG_IA32_EMULATION
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070050extern unsigned int sig_xstate_ia32_size;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070051extern struct _fpx_sw_bytes fx_sw_reserved_ia32;
Roland McGrath1eeaed72008-01-30 13:31:51 +010052struct _fpstate_ia32;
Suresh Siddhaab513702008-07-29 10:29:22 -070053struct _xstate_ia32;
54extern int save_i387_xstate_ia32(void __user *buf);
55extern int restore_i387_xstate_ia32(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +010056#endif
57
Suresh Siddhab359e8a2008-07-29 10:29:20 -070058#define X87_FSW_ES (1 << 7) /* Exception Summary */
59
Avi Kivityc9ad4882010-05-06 11:45:45 +030060static inline bool use_xsave(void)
61{
62 u8 has_xsave;
63
64 alternative_io("mov $0, %0",
65 "mov $1, %0",
66 X86_FEATURE_XSAVE,
67 "=g"(has_xsave));
68
69 return has_xsave;
70}
71
Roland McGrath1eeaed72008-01-30 13:31:51 +010072#ifdef CONFIG_X86_64
73
74/* Ignore delayed exceptions from user space */
75static inline void tolerant_fwait(void)
76{
77 asm volatile("1: fwait\n"
78 "2:\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070079 _ASM_EXTABLE(1b, 2b));
Roland McGrath1eeaed72008-01-30 13:31:51 +010080}
81
Suresh Siddhab359e8a2008-07-29 10:29:20 -070082static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +010083{
84 int err;
85
86 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
87 "2:\n"
88 ".section .fixup,\"ax\"\n"
89 "3: movl $-1,%[err]\n"
90 " jmp 2b\n"
91 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070092 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +010093 : [err] "=r" (err)
Jiri Slaby4ecf4582009-04-08 13:32:00 +020094#if 0 /* See comment in fxsave() below. */
Roland McGrath1eeaed72008-01-30 13:31:51 +010095 : [fx] "r" (fx), "m" (*fx), "0" (0));
96#else
97 : [fx] "cdaSDb" (fx), "m" (*fx), "0" (0));
98#endif
Roland McGrath1eeaed72008-01-30 13:31:51 +010099 return err;
100}
101
Roland McGrath1eeaed72008-01-30 13:31:51 +0100102/* AMD CPUs don't save/restore FDP/FIP/FOP unless an exception
103 is pending. Clear the x87 state here by setting it to fixed
104 values. The kernel data segment can be sometimes 0 and sometimes
105 new user value. Both should be ok.
106 Use the PDA as safe address because it should be already in L1. */
Avi Kivity86603282010-05-06 11:45:46 +0300107static inline void fpu_clear(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100108{
Avi Kivity86603282010-05-06 11:45:46 +0300109 struct xsave_struct *xstate = &fpu->state->xsave;
110 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700111
112 /*
113 * xsave header may indicate the init state of the FP.
114 */
Avi Kivityc9ad4882010-05-06 11:45:45 +0300115 if (use_xsave() &&
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700116 !(xstate->xsave_hdr.xstate_bv & XSTATE_FP))
117 return;
118
Roland McGrath1eeaed72008-01-30 13:31:51 +0100119 if (unlikely(fx->swd & X87_FSW_ES))
Joe Perchesaffe6632008-03-23 01:02:18 -0700120 asm volatile("fnclex");
Roland McGrath1eeaed72008-01-30 13:31:51 +0100121 alternative_input(ASM_NOP8 ASM_NOP2,
Joe Perchesaffe6632008-03-23 01:02:18 -0700122 " emms\n" /* clear stack tags */
123 " fildl %%gs:0", /* load to clear state */
124 X86_FEATURE_FXSAVE_LEAK);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100125}
126
Avi Kivity86603282010-05-06 11:45:46 +0300127static inline void clear_fpu_state(struct task_struct *tsk)
128{
129 fpu_clear(&tsk->thread.fpu);
130}
131
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700132static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100133{
134 int err;
135
136 asm volatile("1: rex64/fxsave (%[fx])\n\t"
137 "2:\n"
138 ".section .fixup,\"ax\"\n"
139 "3: movl $-1,%[err]\n"
140 " jmp 2b\n"
141 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700142 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100143 : [err] "=r" (err), "=m" (*fx)
Jiri Slaby4ecf4582009-04-08 13:32:00 +0200144#if 0 /* See comment in fxsave() below. */
Roland McGrath1eeaed72008-01-30 13:31:51 +0100145 : [fx] "r" (fx), "0" (0));
146#else
147 : [fx] "cdaSDb" (fx), "0" (0));
148#endif
Joe Perchesaffe6632008-03-23 01:02:18 -0700149 if (unlikely(err) &&
150 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100151 err = -EFAULT;
152 /* No need to clear here because the caller clears USED_MATH */
153 return err;
154}
155
Avi Kivity86603282010-05-06 11:45:46 +0300156static inline void fpu_fxsave(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100157{
158 /* Using "rex64; fxsave %0" is broken because, if the memory operand
159 uses any extended registers for addressing, a second REX prefix
160 will be generated (to the assembler, rex64 followed by semicolon
161 is a separate instruction), and hence the 64-bitness is lost. */
162#if 0
163 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
164 starting with gas 2.16. */
165 __asm__ __volatile__("fxsaveq %0"
Avi Kivity86603282010-05-06 11:45:46 +0300166 : "=m" (fpu->state->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100167#elif 0
168 /* Using, as a workaround, the properly prefixed form below isn't
169 accepted by any binutils version so far released, complaining that
170 the same type of prefix is used twice if an extended register is
171 needed for addressing (fix submitted to mainline 2005-11-21). */
172 __asm__ __volatile__("rex64/fxsave %0"
Avi Kivity86603282010-05-06 11:45:46 +0300173 : "=m" (fpu->state->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100174#else
175 /* This, however, we can work around by forcing the compiler to select
176 an addressing mode that doesn't require extended registers. */
Suresh Siddha61c46282008-03-10 15:28:04 -0700177 __asm__ __volatile__("rex64/fxsave (%1)"
Avi Kivity86603282010-05-06 11:45:46 +0300178 : "=m" (fpu->state->fxsave)
179 : "cdaSDb" (&fpu->state->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100180#endif
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700181}
182
Avi Kivity86603282010-05-06 11:45:46 +0300183static inline void fpu_save_init(struct fpu *fpu)
184{
185 if (use_xsave())
186 fpu_xsave(fpu);
187 else
188 fpu_fxsave(fpu);
189
190 fpu_clear(fpu);
191}
192
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700193static inline void __save_init_fpu(struct task_struct *tsk)
194{
Avi Kivity86603282010-05-06 11:45:46 +0300195 fpu_save_init(&tsk->thread.fpu);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100196 task_thread_info(tsk)->status &= ~TS_USEDFPU;
197}
198
Roland McGrath1eeaed72008-01-30 13:31:51 +0100199#else /* CONFIG_X86_32 */
200
Daniel Glöcknerab9e1852009-03-04 19:42:27 +0100201#ifdef CONFIG_MATH_EMULATION
Avi Kivity86603282010-05-06 11:45:46 +0300202extern void finit_soft_fpu(struct i387_soft_struct *soft);
Daniel Glöcknerab9e1852009-03-04 19:42:27 +0100203#else
Avi Kivity86603282010-05-06 11:45:46 +0300204static inline void finit_soft_fpu(struct i387_soft_struct *soft) {}
Daniel Glöcknerab9e1852009-03-04 19:42:27 +0100205#endif
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700206
Roland McGrath1eeaed72008-01-30 13:31:51 +0100207static inline void tolerant_fwait(void)
208{
209 asm volatile("fnclex ; fwait");
210}
211
Jiri Slaby34ba4762009-04-08 13:31:59 +0200212/* perform fxrstor iff the processor has extended states, otherwise frstor */
213static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100214{
215 /*
216 * The "nop" is needed to make the instructions the same
217 * length.
218 */
219 alternative_input(
220 "nop ; frstor %1",
221 "fxrstor %1",
222 X86_FEATURE_FXSR,
Jiri Slaby34ba4762009-04-08 13:31:59 +0200223 "m" (*fx));
224
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200225 return 0;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100226}
227
228/* We need a safe address that is cheap to find and that is already
229 in L1 during context switch. The best choices are unfortunately
230 different for UP and SMP */
231#ifdef CONFIG_SMP
232#define safe_address (__per_cpu_offset[0])
233#else
234#define safe_address (kstat_cpu(0).cpustat.user)
235#endif
236
237/*
238 * These must be called with preempt disabled
239 */
Avi Kivity86603282010-05-06 11:45:46 +0300240static inline void fpu_save_init(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100241{
Avi Kivityc9ad4882010-05-06 11:45:45 +0300242 if (use_xsave()) {
Avi Kivity86603282010-05-06 11:45:46 +0300243 struct xsave_struct *xstate = &fpu->state->xsave;
244 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700245
Avi Kivity86603282010-05-06 11:45:46 +0300246 fpu_xsave(fpu);
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700247
248 /*
249 * xsave header may indicate the init state of the FP.
250 */
251 if (!(xstate->xsave_hdr.xstate_bv & XSTATE_FP))
252 goto end;
253
254 if (unlikely(fx->swd & X87_FSW_ES))
255 asm volatile("fnclex");
256
257 /*
258 * we can do a simple return here or be paranoid :)
259 */
260 goto clear_state;
261 }
262
Roland McGrath1eeaed72008-01-30 13:31:51 +0100263 /* Use more nops than strictly needed in case the compiler
264 varies code */
265 alternative_input(
266 "fnsave %[fx] ;fwait;" GENERIC_NOP8 GENERIC_NOP4,
267 "fxsave %[fx]\n"
268 "bt $7,%[fsw] ; jnc 1f ; fnclex\n1:",
269 X86_FEATURE_FXSR,
Avi Kivity86603282010-05-06 11:45:46 +0300270 [fx] "m" (fpu->state->fxsave),
271 [fsw] "m" (fpu->state->fxsave.swd) : "memory");
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700272clear_state:
Roland McGrath1eeaed72008-01-30 13:31:51 +0100273 /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
274 is pending. Clear the x87 state here by setting it to fixed
275 values. safe_address is a random variable that should be in L1 */
276 alternative_input(
277 GENERIC_NOP8 GENERIC_NOP2,
278 "emms\n\t" /* clear stack tags */
279 "fildl %[addr]", /* set F?P to defined value */
280 X86_FEATURE_FXSAVE_LEAK,
281 [addr] "m" (safe_address));
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700282end:
Avi Kivity86603282010-05-06 11:45:46 +0300283 ;
284}
285
286static inline void __save_init_fpu(struct task_struct *tsk)
287{
288 fpu_save_init(&tsk->thread.fpu);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100289 task_thread_info(tsk)->status &= ~TS_USEDFPU;
290}
291
Avi Kivity86603282010-05-06 11:45:46 +0300292
Suresh Siddhaab513702008-07-29 10:29:22 -0700293#endif /* CONFIG_X86_64 */
294
Avi Kivity86603282010-05-06 11:45:46 +0300295static inline int fpu_fxrstor_checking(struct fpu *fpu)
296{
297 return fxrstor_checking(&fpu->state->fxsave);
298}
299
300static inline int fpu_restore_checking(struct fpu *fpu)
301{
302 if (use_xsave())
303 return fpu_xrstor_checking(fpu);
304 else
305 return fpu_fxrstor_checking(fpu);
306}
307
Jiri Slaby34ba4762009-04-08 13:31:59 +0200308static inline int restore_fpu_checking(struct task_struct *tsk)
309{
Avi Kivity86603282010-05-06 11:45:46 +0300310 return fpu_restore_checking(&tsk->thread.fpu);
Jiri Slaby34ba4762009-04-08 13:31:59 +0200311}
312
Roland McGrath1eeaed72008-01-30 13:31:51 +0100313/*
314 * Signal frame handlers...
315 */
Suresh Siddhaab513702008-07-29 10:29:22 -0700316extern int save_i387_xstate(void __user *buf);
317extern int restore_i387_xstate(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100318
319static inline void __unlazy_fpu(struct task_struct *tsk)
320{
321 if (task_thread_info(tsk)->status & TS_USEDFPU) {
322 __save_init_fpu(tsk);
323 stts();
324 } else
325 tsk->fpu_counter = 0;
326}
327
328static inline void __clear_fpu(struct task_struct *tsk)
329{
330 if (task_thread_info(tsk)->status & TS_USEDFPU) {
331 tolerant_fwait();
332 task_thread_info(tsk)->status &= ~TS_USEDFPU;
333 stts();
334 }
335}
336
337static inline void kernel_fpu_begin(void)
338{
339 struct thread_info *me = current_thread_info();
340 preempt_disable();
341 if (me->status & TS_USEDFPU)
342 __save_init_fpu(me->task);
343 else
344 clts();
345}
346
347static inline void kernel_fpu_end(void)
348{
349 stts();
350 preempt_enable();
351}
352
Huang Yingae4b6882009-08-31 13:11:54 +0800353static inline bool irq_fpu_usable(void)
354{
355 struct pt_regs *regs;
356
357 return !in_interrupt() || !(regs = get_irq_regs()) || \
358 user_mode(regs) || (read_cr0() & X86_CR0_TS);
359}
360
Suresh Siddhae4914012008-08-13 22:02:26 +1000361/*
362 * Some instructions like VIA's padlock instructions generate a spurious
363 * DNA fault but don't modify SSE registers. And these instructions
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400364 * get used from interrupt context as well. To prevent these kernel instructions
365 * in interrupt context interacting wrongly with other user/kernel fpu usage, we
Suresh Siddhae4914012008-08-13 22:02:26 +1000366 * should use them only in the context of irq_ts_save/restore()
367 */
368static inline int irq_ts_save(void)
369{
370 /*
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400371 * If in process context and not atomic, we can take a spurious DNA fault.
372 * Otherwise, doing clts() in process context requires disabling preemption
373 * or some heavy lifting like kernel_fpu_begin()
Suresh Siddhae4914012008-08-13 22:02:26 +1000374 */
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400375 if (!in_atomic())
Suresh Siddhae4914012008-08-13 22:02:26 +1000376 return 0;
377
378 if (read_cr0() & X86_CR0_TS) {
379 clts();
380 return 1;
381 }
382
383 return 0;
384}
385
386static inline void irq_ts_restore(int TS_state)
387{
388 if (TS_state)
389 stts();
390}
391
Roland McGrath1eeaed72008-01-30 13:31:51 +0100392#ifdef CONFIG_X86_64
393
394static inline void save_init_fpu(struct task_struct *tsk)
395{
396 __save_init_fpu(tsk);
397 stts();
398}
399
400#define unlazy_fpu __unlazy_fpu
401#define clear_fpu __clear_fpu
402
403#else /* CONFIG_X86_32 */
404
405/*
406 * These disable preemption on their own and are safe
407 */
408static inline void save_init_fpu(struct task_struct *tsk)
409{
410 preempt_disable();
411 __save_init_fpu(tsk);
412 stts();
413 preempt_enable();
414}
415
416static inline void unlazy_fpu(struct task_struct *tsk)
417{
418 preempt_disable();
419 __unlazy_fpu(tsk);
420 preempt_enable();
421}
422
423static inline void clear_fpu(struct task_struct *tsk)
424{
425 preempt_disable();
426 __clear_fpu(tsk);
427 preempt_enable();
428}
429
430#endif /* CONFIG_X86_64 */
431
432/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100433 * i387 state interaction
434 */
435static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
436{
437 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300438 return tsk->thread.fpu.state->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100439 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300440 return (unsigned short)tsk->thread.fpu.state->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100441 }
442}
443
444static inline unsigned short get_fpu_swd(struct task_struct *tsk)
445{
446 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300447 return tsk->thread.fpu.state->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100448 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300449 return (unsigned short)tsk->thread.fpu.state->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100450 }
451}
452
453static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
454{
455 if (cpu_has_xmm) {
Avi Kivity86603282010-05-06 11:45:46 +0300456 return tsk->thread.fpu.state->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100457 } else {
458 return MXCSR_DEFAULT;
459 }
460}
461
Avi Kivity86603282010-05-06 11:45:46 +0300462static bool fpu_allocated(struct fpu *fpu)
463{
464 return fpu->state != NULL;
465}
466
467static inline int fpu_alloc(struct fpu *fpu)
468{
469 if (fpu_allocated(fpu))
470 return 0;
471 fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL);
472 if (!fpu->state)
473 return -ENOMEM;
474 WARN_ON((unsigned long)fpu->state & 15);
475 return 0;
476}
477
478static inline void fpu_free(struct fpu *fpu)
479{
480 if (fpu->state) {
481 kmem_cache_free(task_xstate_cachep, fpu->state);
482 fpu->state = NULL;
483 }
484}
485
486static inline void fpu_copy(struct fpu *dst, struct fpu *src)
487{
488 memcpy(dst->state, src->state, xstate_size);
489}
490
Herbert Xu3b0d6592009-11-03 09:11:15 -0500491#endif /* __ASSEMBLY__ */
492
493#define PSHUFB_XMM5_XMM0 .byte 0x66, 0x0f, 0x38, 0x00, 0xc5
494#define PSHUFB_XMM5_XMM6 .byte 0x66, 0x0f, 0x38, 0x00, 0xf5
495
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700496#endif /* _ASM_X86_I387_H */