ETISS 0.8.0
Extendable Translating Instruction Set Simulator (version 0.8.0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
enqcmdintrin.h
Go to the documentation of this file.
1/*===------------------ enqcmdintrin.h - enqcmd intrinsics -----------------===
2 *
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
6 *
7 *===-----------------------------------------------------------------------===
8 */
9
10#ifndef __IMMINTRIN_H
11#error "Never use <enqcmdintrin.h> directly; include <immintrin.h> instead."
12#endif
13
14#ifndef __ENQCMDINTRIN_H
15#define __ENQCMDINTRIN_H
16
17/* Define the default attributes for the functions in this file */
18#define _DEFAULT_FN_ATTRS \
19 __attribute__((__always_inline__, __nodebug__, __target__("enqcmd")))
20
35static __inline__ int _DEFAULT_FN_ATTRS
36_enqcmd (void *__dst, const void *__src)
37{
38 return __builtin_ia32_enqcmd(__dst, __src);
39}
40
55static __inline__ int _DEFAULT_FN_ATTRS
56_enqcmds (void *__dst, const void *__src)
57{
58 return __builtin_ia32_enqcmds(__dst, __src);
59}
60
61#undef _DEFAULT_FN_ATTRS
62
63#endif /* __ENQCMDINTRIN_H */
#define _DEFAULT_FN_ATTRS
static __inline__ int _DEFAULT_FN_ATTRS _enqcmd(void *__dst, const void *__src)
Reads 64-byte command pointed by __src, formats 64-byte enqueue store data, and performs 64-byte enqu...
static __inline__ int _DEFAULT_FN_ATTRS _enqcmds(void *__dst, const void *__src)
Reads 64-byte command pointed by __src, formats 64-byte enqueue store data, and performs 64-byte enqu...
static __inline__ void const void * __src