2023-04-27 02:56:41 -07:00
|
|
|
#if !defined _IMMINTRIN_H_INCLUDED
|
|
|
|
#error "Never use <cetintrin.h> directly; include <x86intrin.h> instead."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _CETINTRIN_H_INCLUDED
|
|
|
|
#define _CETINTRIN_H_INCLUDED
|
|
|
|
|
|
|
|
#ifndef __SHSTK__
|
|
|
|
#pragma GCC push_options
|
|
|
|
#pragma GCC target("shstk")
|
|
|
|
#define __DISABLE_SHSTK__
|
|
|
|
#endif /* __SHSTK__ */
|
|
|
|
|
|
|
|
#ifdef __x86_64__
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline unsigned long long _get_ssp(void) {
|
2023-04-27 02:56:41 -07:00
|
|
|
return __builtin_ia32_rdsspq();
|
|
|
|
}
|
|
|
|
#else
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline unsigned int _get_ssp(void) {
|
2023-04-27 02:56:41 -07:00
|
|
|
return __builtin_ia32_rdsspd();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _inc_ssp(unsigned int __B) {
|
2023-04-27 02:56:41 -07:00
|
|
|
#ifdef __x86_64__
|
|
|
|
__builtin_ia32_incsspq((unsigned long long)__B);
|
|
|
|
#else
|
|
|
|
__builtin_ia32_incsspd(__B);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _saveprevssp(void) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_saveprevssp();
|
|
|
|
}
|
|
|
|
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _rstorssp(void *__B) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_rstorssp(__B);
|
|
|
|
}
|
|
|
|
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _wrssd(unsigned int __B, void *__C) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_wrssd(__B, __C);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __x86_64__
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _wrssq(unsigned long long __B, void *__C) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_wrssq(__B, __C);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _wrussd(unsigned int __B, void *__C) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_wrussd(__B, __C);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __x86_64__
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _wrussq(unsigned long long __B, void *__C) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_wrussq(__B, __C);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _setssbsy(void) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_setssbsy();
|
|
|
|
}
|
|
|
|
|
2023-05-15 23:11:47 -07:00
|
|
|
__funline void _clrssbsy(void *__B) {
|
2023-04-27 02:56:41 -07:00
|
|
|
__builtin_ia32_clrssbsy(__B);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __DISABLE_SHSTK__
|
|
|
|
#undef __DISABLE_SHSTK__
|
|
|
|
#pragma GCC pop_options
|
|
|
|
#endif /* __DISABLE_SHSTK__ */
|
|
|
|
|
|
|
|
#endif /* _CETINTRIN_H_INCLUDED. */
|