1 /*===---- fxsrintrin.h - FXSR intrinsic ------------------------------------===
3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 * See https://llvm.org/LICENSE.txt for license information.
5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 *===-----------------------------------------------------------------------===
11 #error "Never use <fxsrintrin.h> directly; include <immintrin.h> instead."
14 #ifndef __FXSRINTRIN_H
15 #define __FXSRINTRIN_H
17 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("fxsr")))
19 /// Saves the XMM, MMX, MXCSR and x87 FPU registers into a 512-byte
20 /// memory region pointed to by the input parameter \a __p.
22 /// \headerfile <x86intrin.h>
24 /// This intrinsic corresponds to the <c> FXSAVE </c> instruction.
27 /// A pointer to a 512-byte memory region. The beginning of this memory
28 /// region should be aligned on a 16-byte boundary.
29 static __inline__
void __DEFAULT_FN_ATTRS
32 __builtin_ia32_fxsave(__p
);
35 /// Restores the XMM, MMX, MXCSR and x87 FPU registers from the 512-byte
36 /// memory region pointed to by the input parameter \a __p. The contents of
37 /// this memory region should have been written to by a previous \c _fxsave
38 /// or \c _fxsave64 intrinsic.
40 /// \headerfile <x86intrin.h>
42 /// This intrinsic corresponds to the <c> FXRSTOR </c> instruction.
45 /// A pointer to a 512-byte memory region. The beginning of this memory
46 /// region should be aligned on a 16-byte boundary.
47 static __inline__
void __DEFAULT_FN_ATTRS
50 __builtin_ia32_fxrstor(__p
);
54 /// Saves the XMM, MMX, MXCSR and x87 FPU registers into a 512-byte
55 /// memory region pointed to by the input parameter \a __p.
57 /// \headerfile <x86intrin.h>
59 /// This intrinsic corresponds to the <c> FXSAVE64 </c> instruction.
62 /// A pointer to a 512-byte memory region. The beginning of this memory
63 /// region should be aligned on a 16-byte boundary.
64 static __inline__
void __DEFAULT_FN_ATTRS
67 __builtin_ia32_fxsave64(__p
);
70 /// Restores the XMM, MMX, MXCSR and x87 FPU registers from the 512-byte
71 /// memory region pointed to by the input parameter \a __p. The contents of
72 /// this memory region should have been written to by a previous \c _fxsave
73 /// or \c _fxsave64 intrinsic.
75 /// \headerfile <x86intrin.h>
77 /// This intrinsic corresponds to the <c> FXRSTOR64 </c> instruction.
80 /// A pointer to a 512-byte memory region. The beginning of this memory
81 /// region should be aligned on a 16-byte boundary.
82 static __inline__
void __DEFAULT_FN_ATTRS
85 __builtin_ia32_fxrstor64(__p
);
89 #undef __DEFAULT_FN_ATTRS