9 #ifndef __HTMXLINTRIN_H
10 #define __HTMXLINTRIN_H
13 #error "HTM instruction set not enabled"
24 #define _TEXASR_PTR(TM_BUF) ((texasr_t *)((char *)(TM_BUF) + 0))
25 #define _TEXASRU_PTR(TM_BUF) ((texasru_t *)((char *)(TM_BUF) + 0))
26 #define _TEXASRL_PTR(TM_BUF) ((texasrl_t *)((char *)(TM_BUF) + 4))
27 #define _TFIAR_PTR(TM_BUF) ((tfiar_t *)((char *)(TM_BUF) + 8))
29 typedef char TM_buff_type[16];
34 #define _HTM_TBEGIN_STARTED 1
37 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
38 __TM_simple_begin (
void)
40 if (__builtin_expect (__builtin_tbegin (0), 1))
41 return _HTM_TBEGIN_STARTED;
46 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
47 __TM_begin (
void*
const __TM_buff)
49 *_TEXASRL_PTR (__TM_buff) = 0;
50 if (__builtin_expect (__builtin_tbegin (0), 1))
51 return _HTM_TBEGIN_STARTED;
53 *_TEXASR_PTR (__TM_buff) = __builtin_get_texasr ();
55 *_TEXASRU_PTR (__TM_buff) = __builtin_get_texasru ();
56 *_TEXASRL_PTR (__TM_buff) = __builtin_get_texasr ();
58 *_TFIAR_PTR (__TM_buff) = __builtin_get_tfiar ();
63 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
66 if (__builtin_expect (__builtin_tend (0), 1))
72 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
79 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
80 __TM_named_abort (
unsigned char const __code)
82 __builtin_tabort (__code);
86 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
93 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
96 __builtin_tsuspend ();
100 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
101 __TM_is_user_abort (
void*
const __TM_buff)
103 texasru_t texasru = *_TEXASRU_PTR (__TM_buff);
104 return _TEXASRU_ABORT (texasru);
108 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
109 __TM_is_named_user_abort (
void*
const __TM_buff,
unsigned char *__code)
111 texasru_t texasru = *_TEXASRU_PTR (__TM_buff);
113 *__code = _TEXASRU_FAILURE_CODE (texasru);
114 return _TEXASRU_ABORT (texasru);
118 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
119 __TM_is_illegal (
void*
const __TM_buff)
121 texasru_t texasru = *_TEXASRU_PTR (__TM_buff);
122 return _TEXASRU_DISALLOWED (texasru);
126 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
127 __TM_is_footprint_exceeded (
void*
const __TM_buff)
129 texasru_t texasru = *_TEXASRU_PTR (__TM_buff);
130 return _TEXASRU_FOOTPRINT_OVERFLOW (texasru);
134 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
135 __TM_nesting_depth (
void*
const __TM_buff)
139 if (_HTM_STATE (__builtin_ttest ()) == _HTM_NONTRANSACTIONAL)
141 texasrl = *_TEXASRL_PTR (__TM_buff);
142 if (!_TEXASR_FAILURE_SUMMARY (texasrl))
146 texasrl = (texasrl_t) __builtin_get_texasr ();
148 return _TEXASR_TRANSACTION_LEVEL (texasrl);
152 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
153 __TM_is_nested_too_deep(
void*
const __TM_buff)
155 texasru_t texasru = *_TEXASRU_PTR (__TM_buff);
156 return _TEXASRU_NESTING_OVERFLOW (texasru);
160 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
161 __TM_is_conflict(
void*
const __TM_buff)
163 texasru_t texasru = *_TEXASRU_PTR (__TM_buff);
166 return (_TEXASRU_EXTRACT_BITS (texasru, 14, 4)) ? 1 : 0;
170 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
171 __TM_is_failure_persistent(
void*
const __TM_buff)
173 texasru_t texasru = *_TEXASRU_PTR (__TM_buff);
174 return _TEXASRU_FAILURE_PERSISTENT (texasru);
178 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
179 __TM_failure_address(
void*
const __TM_buff)
181 return *_TFIAR_PTR (__TM_buff);
184 extern __inline
long long
185 __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
186 __TM_failure_code(
void*
const __TM_buff)
188 return *_TEXASR_PTR (__TM_buff);
205 static __inline
long __attribute__((__always_inline__, __nodebug__))
208 return __builtin_tbegin_nofloat (0);
211 static __inline
long __attribute__((__always_inline__, __nodebug__))
212 __TM_begin (
void*
const __tdb)
214 return __builtin_tbegin_nofloat (__tdb);
217 static __inline
long __attribute__((__always_inline__, __nodebug__))
220 return __builtin_tend ();
226 return __builtin_tabort (_HTM_FIRST_USER_ABORT_CODE);
229 static __inline
void __attribute__((__always_inline__, __nodebug__))
230 __TM_named_abort (
unsigned char const __code)
232 return __builtin_tabort ((
int)_HTM_FIRST_USER_ABORT_CODE + __code);
235 static __inline
void __attribute__((__always_inline__, __nodebug__))
236 __TM_non_transactional_store (
void*
const __addr,
long long const __value)
241 static __inline
long __attribute__((__always_inline__, __nodebug__))
242 __TM_nesting_depth (
void*
const __tdb_ptr)
244 int depth = __builtin_tx_nesting_depth ();
245 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
250 if (tdb->format != 1)
252 return tdb->nesting_depth;
257 static __inline
long __attribute__((__always_inline__, __nodebug__))
258 __TM_is_user_abort (
void*
const __tdb_ptr)
260 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
262 if (tdb->format != 1)
265 return !!(tdb->abort_code >= _HTM_FIRST_USER_ABORT_CODE);
268 static __inline
long __attribute__((__always_inline__, __nodebug__))
269 __TM_is_named_user_abort (
void*
const __tdb_ptr,
unsigned char* __code)
271 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
273 if (tdb->format != 1)
276 if (tdb->abort_code >= _HTM_FIRST_USER_ABORT_CODE)
278 *__code = tdb->abort_code - _HTM_FIRST_USER_ABORT_CODE;
284 static __inline
long __attribute__((__always_inline__, __nodebug__))
285 __TM_is_illegal (
void*
const __tdb_ptr)
287 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
289 return (tdb->format == 1
290 && (tdb->abort_code == 4
291 || tdb->abort_code == 11 ));
294 static __inline
long __attribute__((__always_inline__, __nodebug__))
295 __TM_is_footprint_exceeded (
void*
const __tdb_ptr)
297 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
299 return (tdb->format == 1
300 && (tdb->abort_code == 7
301 || tdb->abort_code == 8 ));
304 static __inline
long __attribute__((__always_inline__, __nodebug__))
305 __TM_is_nested_too_deep (
void*
const __tdb_ptr)
307 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
309 return tdb->format == 1 && tdb->abort_code == 13;
312 static __inline
long __attribute__((__always_inline__, __nodebug__))
313 __TM_is_conflict (
void*
const __tdb_ptr)
315 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
317 return (tdb->format == 1
318 && (tdb->abort_code == 9
319 || tdb->abort_code == 10 ));
322 static __inline
long __attribute__((__always_inline__, __nodebug__))
323 __TM_is_failure_persistent (
long const __result)
325 return __result == _HTM_TBEGIN_PERSISTENT;
328 static __inline
long __attribute__((__always_inline__, __nodebug__))
329 __TM_failure_address (
void*
const __tdb_ptr)
331 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
335 static __inline
long __attribute__((__always_inline__, __nodebug__))
336 __TM_failure_code (
void*
const __tdb_ptr)
338 struct __htm_tdb *tdb = (
struct __htm_tdb*)__tdb_ptr;
340 return tdb->abort_code;
_Float16 __2f16 __attribute__((ext_vector_type(2)))
Zeroes the upper 128 bits (bits 255:128) of all YMM registers.
static __inline__ uint64_t
static __inline__ void unsigned int __value
static std::string depth(Dot::Node *node)