Android O SDK.
[android_tools.git] / sdk / build-tools / 26.0.0 / renderscript / clang-include / tbmintrin.h
blob1d0d746a824ab69f94949c05a1869e52c9e17b08
1 /*===---- tbmintrin.h - TBM intrinsics -------------------------------------===
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:
10 * The above copyright notice and this permission notice shall be included in
11 * all copies or substantial portions of the Software.
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.
21 *===-----------------------------------------------------------------------===
24 #ifndef __X86INTRIN_H
25 #error "Never use <tbmintrin.h> directly; include <x86intrin.h> instead."
26 #endif
28 #ifndef __TBMINTRIN_H
29 #define __TBMINTRIN_H
31 /* Define the default attributes for the functions in this file. */
32 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("tbm")))
34 #define __bextri_u32(a, b) \
35 ((unsigned int)__builtin_ia32_bextri_u32((unsigned int)(a), \
36 (unsigned int)(b)))
38 static __inline__ unsigned int __DEFAULT_FN_ATTRS
39 __blcfill_u32(unsigned int __a)
41 return __a & (__a + 1);
44 static __inline__ unsigned int __DEFAULT_FN_ATTRS
45 __blci_u32(unsigned int __a)
47 return __a | ~(__a + 1);
50 static __inline__ unsigned int __DEFAULT_FN_ATTRS
51 __blcic_u32(unsigned int __a)
53 return ~__a & (__a + 1);
56 static __inline__ unsigned int __DEFAULT_FN_ATTRS
57 __blcmsk_u32(unsigned int __a)
59 return __a ^ (__a + 1);
62 static __inline__ unsigned int __DEFAULT_FN_ATTRS
63 __blcs_u32(unsigned int __a)
65 return __a | (__a + 1);
68 static __inline__ unsigned int __DEFAULT_FN_ATTRS
69 __blsfill_u32(unsigned int __a)
71 return __a | (__a - 1);
74 static __inline__ unsigned int __DEFAULT_FN_ATTRS
75 __blsic_u32(unsigned int __a)
77 return ~__a | (__a - 1);
80 static __inline__ unsigned int __DEFAULT_FN_ATTRS
81 __t1mskc_u32(unsigned int __a)
83 return ~__a | (__a + 1);
86 static __inline__ unsigned int __DEFAULT_FN_ATTRS
87 __tzmsk_u32(unsigned int __a)
89 return ~__a & (__a - 1);
92 #ifdef __x86_64__
93 #define __bextri_u64(a, b) \
94 ((unsigned long long)__builtin_ia32_bextri_u64((unsigned long long)(a), \
95 (unsigned long long)(b)))
97 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
98 __blcfill_u64(unsigned long long __a)
100 return __a & (__a + 1);
103 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
104 __blci_u64(unsigned long long __a)
106 return __a | ~(__a + 1);
109 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
110 __blcic_u64(unsigned long long __a)
112 return ~__a & (__a + 1);
115 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
116 __blcmsk_u64(unsigned long long __a)
118 return __a ^ (__a + 1);
121 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
122 __blcs_u64(unsigned long long __a)
124 return __a | (__a + 1);
127 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
128 __blsfill_u64(unsigned long long __a)
130 return __a | (__a - 1);
133 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
134 __blsic_u64(unsigned long long __a)
136 return ~__a | (__a - 1);
139 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
140 __t1mskc_u64(unsigned long long __a)
142 return ~__a | (__a + 1);
145 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
146 __tzmsk_u64(unsigned long long __a)
148 return ~__a & (__a - 1);
150 #endif
152 #undef __DEFAULT_FN_ATTRS
154 #endif /* __TBMINTRIN_H */