Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 1 | /*===---- arm_acle.h - ARM Non-Neon 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 | |
| 24 | #ifndef __ARM_ACLE_H |
| 25 | #define __ARM_ACLE_H |
| 26 | |
| 27 | #ifndef __ARM_ACLE |
| 28 | #error "ACLE intrinsics support not enabled." |
| 29 | #endif |
| 30 | |
| 31 | #include <stdint.h> |
| 32 | |
Saleem Abdulrasool | 60df061 | 2014-07-08 05:46:00 +0000 | [diff] [blame] | 33 | #if defined(__cplusplus) |
| 34 | extern "C" { |
| 35 | #endif |
Yi Kong | 28d7b02 | 2014-07-17 12:45:17 +0000 | [diff] [blame] | 36 | |
Yi Kong | 472e521 | 2014-07-14 15:32:29 +0000 | [diff] [blame] | 37 | /* 8 SYNCHRONIZATION, BARRIER AND HINT INTRINSICS */ |
Yi Kong | 28d7b02 | 2014-07-17 12:45:17 +0000 | [diff] [blame] | 38 | /* 8.3 Memory barriers */ |
| 39 | #if !defined(_MSC_VER) |
| 40 | #define __dmb(i) __builtin_arm_dmb(i) |
| 41 | #define __dsb(i) __builtin_arm_dsb(i) |
| 42 | #define __isb(i) __builtin_arm_isb(i) |
| 43 | #endif |
| 44 | |
Yi Kong | 472e521 | 2014-07-14 15:32:29 +0000 | [diff] [blame] | 45 | /* 8.4 Hints */ |
Saleem Abdulrasool | 07257fe | 2014-07-12 23:27:26 +0000 | [diff] [blame] | 46 | |
| 47 | #if !defined(_MSC_VER) |
| 48 | static __inline__ void __attribute__((always_inline, nodebug)) __wfi(void) { |
| 49 | __builtin_arm_wfi(); |
| 50 | } |
| 51 | |
| 52 | static __inline__ void __attribute__((always_inline, nodebug)) __wfe(void) { |
| 53 | __builtin_arm_wfe(); |
| 54 | } |
| 55 | |
| 56 | static __inline__ void __attribute__((always_inline, nodebug)) __sev(void) { |
| 57 | __builtin_arm_sev(); |
| 58 | } |
| 59 | |
| 60 | static __inline__ void __attribute__((always_inline, nodebug)) __sevl(void) { |
| 61 | __builtin_arm_sevl(); |
| 62 | } |
| 63 | |
| 64 | static __inline__ void __attribute__((always_inline, nodebug)) __yield(void) { |
| 65 | __builtin_arm_yield(); |
| 66 | } |
| 67 | #endif |
| 68 | |
Yi Kong | 6891746 | 2014-08-26 12:48:11 +0000 | [diff] [blame] | 69 | #if __ARM_32BIT_STATE |
| 70 | #define __dbg(t) __builtin_arm_dbg(t) |
| 71 | #endif |
| 72 | |
Yi Kong | 0705e00 | 2014-08-26 09:50:54 +0000 | [diff] [blame] | 73 | /* 8.5 Swap */ |
| 74 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 75 | __swp(uint32_t x, volatile uint32_t *p) { |
| 76 | uint32_t v; |
| 77 | do v = __builtin_arm_ldrex(p); while (__builtin_arm_strex(x, p)); |
| 78 | return v; |
| 79 | } |
| 80 | |
Yi Kong | 45a0931 | 2014-08-13 23:20:15 +0000 | [diff] [blame] | 81 | /* 8.6 Memory prefetch intrinsics */ |
| 82 | /* 8.6.1 Data prefetch */ |
| 83 | #define __pld(addr) __pldx(0, 0, 0, addr) |
| 84 | |
| 85 | #if __ARM_32BIT_STATE |
| 86 | #define __pldx(access_kind, cache_level, retention_policy, addr) \ |
| 87 | __builtin_arm_prefetch(addr, access_kind, 1) |
| 88 | #else |
| 89 | #define __pldx(access_kind, cache_level, retention_policy, addr) \ |
| 90 | __builtin_arm_prefetch(addr, access_kind, cache_level, retention_policy, 1) |
| 91 | #endif |
| 92 | |
| 93 | /* 8.6.2 Instruction prefetch */ |
| 94 | #define __pli(addr) __plix(0, 0, addr) |
| 95 | |
| 96 | #if __ARM_32BIT_STATE |
| 97 | #define __plix(cache_level, retention_policy, addr) \ |
| 98 | __builtin_arm_prefetch(addr, 0, 0) |
| 99 | #else |
| 100 | #define __plix(cache_level, retention_policy, addr) \ |
| 101 | __builtin_arm_prefetch(addr, 0, cache_level, retention_policy, 0) |
| 102 | #endif |
| 103 | |
Yi Kong | 472e521 | 2014-07-14 15:32:29 +0000 | [diff] [blame] | 104 | /* 8.7 NOP */ |
| 105 | static __inline__ void __attribute__((always_inline, nodebug)) __nop(void) { |
| 106 | __builtin_arm_nop(); |
| 107 | } |
| 108 | |
Yi Kong | 4e00ce7 | 2014-07-12 22:48:13 +0000 | [diff] [blame] | 109 | /* 9 DATA-PROCESSING INTRINSICS */ |
| 110 | /* 9.2 Miscellaneous data-processing intrinsics */ |
Yi Kong | 623393f | 2014-08-28 09:44:07 +0000 | [diff] [blame^] | 111 | /* ROR */ |
| 112 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 113 | __ror(uint32_t x, uint32_t y) { |
| 114 | if (y == 0) return y; |
| 115 | if (y >= 32) y %= 32; |
| 116 | return (x >> y) | (x << (32 - y)); |
| 117 | } |
| 118 | |
| 119 | static __inline__ uint64_t __attribute__((always_inline, nodebug)) |
| 120 | __rorll(uint64_t x, uint32_t y) { |
| 121 | if (y == 0) return y; |
| 122 | if (y >= 64) y %= 64; |
| 123 | return (x >> y) | (x << (64 - y)); |
| 124 | } |
| 125 | |
| 126 | static __inline__ unsigned long __attribute__((always_inline, nodebug)) |
| 127 | __rorl(unsigned long x, uint32_t y) { |
| 128 | #if __SIZEOF_LONG__ == 4 |
| 129 | return __ror(x, y); |
| 130 | #else |
| 131 | return __rorll(x, y); |
| 132 | #endif |
| 133 | } |
| 134 | |
| 135 | |
| 136 | /* CLZ */ |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 137 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 138 | __clz(uint32_t t) { |
| 139 | return __builtin_clz(t); |
| 140 | } |
| 141 | |
| 142 | static __inline__ unsigned long __attribute__((always_inline, nodebug)) |
| 143 | __clzl(unsigned long t) { |
| 144 | return __builtin_clzl(t); |
| 145 | } |
| 146 | |
| 147 | static __inline__ uint64_t __attribute__((always_inline, nodebug)) |
| 148 | __clzll(uint64_t t) { |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 149 | return __builtin_clzll(t); |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 150 | } |
| 151 | |
Yi Kong | 623393f | 2014-08-28 09:44:07 +0000 | [diff] [blame^] | 152 | /* REV */ |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 153 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 154 | __rev(uint32_t t) { |
| 155 | return __builtin_bswap32(t); |
| 156 | } |
| 157 | |
| 158 | static __inline__ unsigned long __attribute__((always_inline, nodebug)) |
| 159 | __revl(unsigned long t) { |
| 160 | #if __SIZEOF_LONG__ == 4 |
| 161 | return __builtin_bswap32(t); |
| 162 | #else |
| 163 | return __builtin_bswap64(t); |
| 164 | #endif |
| 165 | } |
| 166 | |
| 167 | static __inline__ uint64_t __attribute__((always_inline, nodebug)) |
| 168 | __revll(uint64_t t) { |
| 169 | return __builtin_bswap64(t); |
| 170 | } |
| 171 | |
Yi Kong | 623393f | 2014-08-28 09:44:07 +0000 | [diff] [blame^] | 172 | /* REV16 */ |
| 173 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 174 | __rev16(uint32_t t) { |
| 175 | return __ror(__rev(t), 16); |
| 176 | } |
| 177 | |
| 178 | static __inline__ unsigned long __attribute__((always_inline, nodebug)) |
| 179 | __rev16l(unsigned long t) { |
| 180 | return __rorl(__revl(t), sizeof(long) / 2); |
| 181 | } |
| 182 | |
| 183 | static __inline__ uint64_t __attribute__((always_inline, nodebug)) |
| 184 | __rev16ll(uint64_t t) { |
| 185 | return __rorll(__revll(t), 32); |
| 186 | } |
| 187 | |
| 188 | /* REVSH */ |
| 189 | static __inline__ int16_t __attribute__((always_inline, nodebug)) |
| 190 | __revsh(int16_t t) { |
| 191 | return __builtin_bswap16(t); |
| 192 | } |
| 193 | |
| 194 | /* RBIT */ |
| 195 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 196 | __rbit(uint32_t t) { |
| 197 | return __builtin_arm_rbit(t); |
| 198 | } |
| 199 | |
| 200 | static __inline__ uint64_t __attribute__((always_inline, nodebug)) |
| 201 | __rbitll(uint64_t t) { |
| 202 | #if __ARM_32BIT_STATE |
| 203 | return (((uint64_t) __builtin_arm_rbit(t)) << 32) | |
| 204 | __builtin_arm_rbit(t >> 32); |
| 205 | #else |
| 206 | return __builtin_arm_rbit64(t); |
| 207 | #endif |
| 208 | } |
| 209 | |
| 210 | static __inline__ unsigned long __attribute__((always_inline, nodebug)) |
| 211 | __rbitl(unsigned long t) { |
| 212 | #if __SIZEOF_LONG__ == 4 |
| 213 | return __rbit(t); |
| 214 | #else |
| 215 | return __rbitll(t); |
| 216 | #endif |
| 217 | } |
| 218 | |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 219 | /* |
Yi Kong | 4e00ce7 | 2014-07-12 22:48:13 +0000 | [diff] [blame] | 220 | * 9.4 Saturating intrinsics |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 221 | * |
| 222 | * FIXME: Change guard to their corrosponding __ARM_FEATURE flag when Q flag |
| 223 | * intrinsics are implemented and the flag is enabled. |
| 224 | */ |
Yi Kong | 4e00ce7 | 2014-07-12 22:48:13 +0000 | [diff] [blame] | 225 | /* 9.4.1 Width-specified saturation intrinsics */ |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 226 | #if __ARM_32BIT_STATE |
| 227 | #define __ssat(x, y) __builtin_arm_ssat(x, y) |
| 228 | #define __usat(x, y) __builtin_arm_usat(x, y) |
Yi Kong | 4e00ce7 | 2014-07-12 22:48:13 +0000 | [diff] [blame] | 229 | #endif |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 230 | |
Yi Kong | 4e00ce7 | 2014-07-12 22:48:13 +0000 | [diff] [blame] | 231 | /* 9.4.2 Saturating addition and subtraction intrinsics */ |
| 232 | #if __ARM_32BIT_STATE |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 233 | static __inline__ int32_t __attribute__((always_inline, nodebug)) |
| 234 | __qadd(int32_t t, int32_t v) { |
| 235 | return __builtin_arm_qadd(t, v); |
| 236 | } |
| 237 | |
| 238 | static __inline__ int32_t __attribute__((always_inline, nodebug)) |
| 239 | __qsub(int32_t t, int32_t v) { |
| 240 | return __builtin_arm_qsub(t, v); |
| 241 | } |
Renato Golin | 47843ef | 2014-07-03 10:14:52 +0000 | [diff] [blame] | 242 | |
| 243 | static __inline__ int32_t __attribute__((always_inline, nodebug)) |
| 244 | __qdbl(int32_t t) { |
| 245 | return __builtin_arm_qadd(t, t); |
| 246 | } |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 247 | #endif |
| 248 | |
Yi Kong | 4e00ce7 | 2014-07-12 22:48:13 +0000 | [diff] [blame] | 249 | /* 9.7 CRC32 intrinsics */ |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 250 | #if __ARM_FEATURE_CRC32 |
| 251 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 252 | __crc32b(uint32_t a, uint8_t b) { |
| 253 | return __builtin_arm_crc32b(a, b); |
| 254 | } |
| 255 | |
| 256 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 257 | __crc32h(uint32_t a, uint16_t b) { |
| 258 | return __builtin_arm_crc32h(a, b); |
| 259 | } |
| 260 | |
| 261 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 262 | __crc32w(uint32_t a, uint32_t b) { |
| 263 | return __builtin_arm_crc32w(a, b); |
| 264 | } |
| 265 | |
| 266 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 267 | __crc32d(uint32_t a, uint64_t b) { |
| 268 | return __builtin_arm_crc32d(a, b); |
| 269 | } |
| 270 | |
| 271 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 272 | __crc32cb(uint32_t a, uint8_t b) { |
| 273 | return __builtin_arm_crc32cb(a, b); |
| 274 | } |
| 275 | |
| 276 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 277 | __crc32ch(uint32_t a, uint16_t b) { |
| 278 | return __builtin_arm_crc32ch(a, b); |
| 279 | } |
| 280 | |
| 281 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 282 | __crc32cw(uint32_t a, uint32_t b) { |
| 283 | return __builtin_arm_crc32cw(a, b); |
| 284 | } |
| 285 | |
| 286 | static __inline__ uint32_t __attribute__((always_inline, nodebug)) |
| 287 | __crc32cd(uint32_t a, uint64_t b) { |
| 288 | return __builtin_arm_crc32cd(a, b); |
| 289 | } |
| 290 | #endif |
| 291 | |
Saleem Abdulrasool | 60df061 | 2014-07-08 05:46:00 +0000 | [diff] [blame] | 292 | #if defined(__cplusplus) |
| 293 | } |
| 294 | #endif |
| 295 | |
Yi Kong | a44c4d7 | 2014-06-27 21:25:42 +0000 | [diff] [blame] | 296 | #endif /* __ARM_ACLE_H */ |