Kit Barton | 8246f28 | 2015-03-25 19:41:41 +0000 | [diff] [blame^] | 1 | /*===---- htmxlintrin.h - XL compiler HTM execution intrinsics-------------===*\ |
| 2 | * |
| 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4 | * of this software and associated documentation files (the "Software"), to deal |
| 5 | * in the Software without restriction, including without limitation the rights |
| 6 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 7 | * copies of the Software, and to permit persons to whom the Software is |
| 8 | * furnished to do so, subject to the following conditions: |
| 9 | * |
| 10 | * The above copyright notice and this permission notice shall be included in |
| 11 | * all copies or substantial portions of the Software. |
| 12 | * |
| 13 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 14 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 15 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 16 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 17 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 18 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 19 | * THE SOFTWARE. |
| 20 | * |
| 21 | \*===----------------------------------------------------------------------===*/ |
| 22 | |
| 23 | #ifndef __HTMXLINTRIN_H |
| 24 | #define __HTMXLINTRIN_H |
| 25 | |
| 26 | #ifndef __HTM__ |
| 27 | #error "HTM instruction set not enabled" |
| 28 | #endif |
| 29 | |
| 30 | #include <htmintrin.h> |
| 31 | |
| 32 | #ifdef __powerpc__ |
| 33 | |
| 34 | #ifdef __cplusplus |
| 35 | extern "C" { |
| 36 | #endif |
| 37 | |
| 38 | #define _TEXASR_PTR(TM_BUF) \ |
| 39 | ((texasr_t *)((TM_BUF)+0)) |
| 40 | #define _TEXASRU_PTR(TM_BUF) \ |
| 41 | ((texasru_t *)((TM_BUF)+0)) |
| 42 | #define _TEXASRL_PTR(TM_BUF) \ |
| 43 | ((texasrl_t *)((TM_BUF)+4)) |
| 44 | #define _TFIAR_PTR(TM_BUF) \ |
| 45 | ((tfiar_t *)((TM_BUF)+8)) |
| 46 | |
| 47 | typedef char TM_buff_type[16]; |
| 48 | |
| 49 | /* This macro can be used to determine whether a transaction was successfully |
| 50 | started from the __TM_begin() and __TM_simple_begin() intrinsic functions |
| 51 | below. */ |
| 52 | #define _HTM_TBEGIN_STARTED 1 |
| 53 | |
| 54 | extern __inline long |
| 55 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 56 | __TM_simple_begin (void) |
| 57 | { |
| 58 | if (__builtin_expect (__builtin_tbegin (0), 1)) |
| 59 | return _HTM_TBEGIN_STARTED; |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | extern __inline long |
| 64 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 65 | __TM_begin (void* const TM_buff) |
| 66 | { |
| 67 | *_TEXASRL_PTR (TM_buff) = 0; |
| 68 | if (__builtin_expect (__builtin_tbegin (0), 1)) |
| 69 | return _HTM_TBEGIN_STARTED; |
| 70 | #ifdef __powerpc64__ |
| 71 | *_TEXASR_PTR (TM_buff) = __builtin_get_texasr (); |
| 72 | #else |
| 73 | *_TEXASRU_PTR (TM_buff) = __builtin_get_texasru (); |
| 74 | *_TEXASRL_PTR (TM_buff) = __builtin_get_texasr (); |
| 75 | #endif |
| 76 | *_TFIAR_PTR (TM_buff) = __builtin_get_tfiar (); |
| 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | extern __inline long |
| 81 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 82 | __TM_end (void) |
| 83 | { |
| 84 | if (__builtin_expect (__builtin_tend (0), 1)) |
| 85 | return 1; |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | extern __inline void |
| 90 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 91 | __TM_abort (void) |
| 92 | { |
| 93 | __builtin_tabort (0); |
| 94 | } |
| 95 | |
| 96 | extern __inline void |
| 97 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 98 | __TM_named_abort (unsigned char const code) |
| 99 | { |
| 100 | __builtin_tabort (code); |
| 101 | } |
| 102 | |
| 103 | extern __inline void |
| 104 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 105 | __TM_resume (void) |
| 106 | { |
| 107 | __builtin_tresume (); |
| 108 | } |
| 109 | |
| 110 | extern __inline void |
| 111 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 112 | __TM_suspend (void) |
| 113 | { |
| 114 | __builtin_tsuspend (); |
| 115 | } |
| 116 | |
| 117 | extern __inline long |
| 118 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 119 | __TM_is_user_abort (void* const TM_buff) |
| 120 | { |
| 121 | texasru_t texasru = *_TEXASRU_PTR (TM_buff); |
| 122 | return _TEXASRU_ABORT (texasru); |
| 123 | } |
| 124 | |
| 125 | extern __inline long |
| 126 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 127 | __TM_is_named_user_abort (void* const TM_buff, unsigned char *code) |
| 128 | { |
| 129 | texasru_t texasru = *_TEXASRU_PTR (TM_buff); |
| 130 | |
| 131 | *code = _TEXASRU_FAILURE_CODE (texasru); |
| 132 | return _TEXASRU_ABORT (texasru); |
| 133 | } |
| 134 | |
| 135 | extern __inline long |
| 136 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 137 | __TM_is_illegal (void* const TM_buff) |
| 138 | { |
| 139 | texasru_t texasru = *_TEXASRU_PTR (TM_buff); |
| 140 | return _TEXASRU_DISALLOWED (texasru); |
| 141 | } |
| 142 | |
| 143 | extern __inline long |
| 144 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 145 | __TM_is_footprint_exceeded (void* const TM_buff) |
| 146 | { |
| 147 | texasru_t texasru = *_TEXASRU_PTR (TM_buff); |
| 148 | return _TEXASRU_FOOTPRINT_OVERFLOW (texasru); |
| 149 | } |
| 150 | |
| 151 | extern __inline long |
| 152 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 153 | __TM_nesting_depth (void* const TM_buff) |
| 154 | { |
| 155 | texasrl_t texasrl; |
| 156 | |
| 157 | if (_HTM_STATE (__builtin_ttest ()) == _HTM_NONTRANSACTIONAL) |
| 158 | { |
| 159 | texasrl = *_TEXASRL_PTR (TM_buff); |
| 160 | if (!_TEXASR_FAILURE_SUMMARY (texasrl)) |
| 161 | texasrl = 0; |
| 162 | } |
| 163 | else |
| 164 | texasrl = (texasrl_t) __builtin_get_texasr (); |
| 165 | |
| 166 | return _TEXASR_TRANSACTION_LEVEL (texasrl); |
| 167 | } |
| 168 | |
| 169 | extern __inline long |
| 170 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 171 | __TM_is_nested_too_deep(void* const TM_buff) |
| 172 | { |
| 173 | texasru_t texasru = *_TEXASRU_PTR (TM_buff); |
| 174 | return _TEXASRU_NESTING_OVERFLOW (texasru); |
| 175 | } |
| 176 | |
| 177 | extern __inline long |
| 178 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 179 | __TM_is_conflict(void* const TM_buff) |
| 180 | { |
| 181 | texasru_t texasru = *_TEXASRU_PTR (TM_buff); |
| 182 | /* Return TEXASR bits 11 (Self-Induced Conflict) through |
| 183 | 14 (Translation Invalidation Conflict). */ |
| 184 | return (_TEXASRU_EXTRACT_BITS (texasru, 14, 4)) ? 1 : 0; |
| 185 | } |
| 186 | |
| 187 | extern __inline long |
| 188 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 189 | __TM_is_failure_persistent(void* const TM_buff) |
| 190 | { |
| 191 | texasru_t texasru = *_TEXASRU_PTR (TM_buff); |
| 192 | return _TEXASRU_FAILURE_PERSISTENT (texasru); |
| 193 | } |
| 194 | |
| 195 | extern __inline long |
| 196 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 197 | __TM_failure_address(void* const TM_buff) |
| 198 | { |
| 199 | return *_TFIAR_PTR (TM_buff); |
| 200 | } |
| 201 | |
| 202 | extern __inline long long |
| 203 | __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) |
| 204 | __TM_failure_code(void* const TM_buff) |
| 205 | { |
| 206 | return *_TEXASR_PTR (TM_buff); |
| 207 | } |
| 208 | |
| 209 | #ifdef __cplusplus |
| 210 | } |
| 211 | #endif |
| 212 | |
| 213 | #endif /* __powerpc__ */ |
| 214 | |
| 215 | #endif /* __HTMXLINTRIN_H */ |