2018-05-05 05:45:25 +08:00
|
|
|
/*===---- pkuintrin.h - PKU intrinsics -------------------------------------===
|
2015-12-31 22:14:07 +08:00
|
|
|
*
|
|
|
|
*
|
2019-04-09 04:51:30 +08:00
|
|
|
* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
* See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-12-31 22:14:07 +08:00
|
|
|
*
|
|
|
|
*===-----------------------------------------------------------------------===
|
|
|
|
*/
|
|
|
|
#ifndef __IMMINTRIN_H
|
|
|
|
#error "Never use <pkuintrin.h> directly; include <immintrin.h> instead."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __PKUINTRIN_H
|
|
|
|
#define __PKUINTRIN_H
|
|
|
|
|
|
|
|
/* Define the default attributes for the functions in this file. */
|
|
|
|
#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("pku")))
|
|
|
|
|
|
|
|
static __inline__ unsigned int __DEFAULT_FN_ATTRS
|
|
|
|
_rdpkru_u32(void)
|
|
|
|
{
|
|
|
|
return __builtin_ia32_rdpkru();
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ void __DEFAULT_FN_ATTRS
|
2016-02-12 10:22:53 +08:00
|
|
|
_wrpkru(unsigned int __val)
|
2015-12-31 22:14:07 +08:00
|
|
|
{
|
2018-05-31 01:23:45 +08:00
|
|
|
__builtin_ia32_wrpkru(__val);
|
2015-12-31 22:14:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef __DEFAULT_FN_ATTRS
|
|
|
|
|
|
|
|
#endif
|