]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Headers/tbmintrin.h
Merge ^/head r286694 through r286696.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Headers / tbmintrin.h
1 /*===---- tbmintrin.h - TBM 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 __X86INTRIN_H
25 #error "Never use <tbmintrin.h> directly; include <x86intrin.h> instead."
26 #endif
27
28 #ifndef __TBMINTRIN_H
29 #define __TBMINTRIN_H
30
31 /* Define the default attributes for the functions in this file. */
32 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("tbm")))
33
34 #define __bextri_u32(a, b) (__builtin_ia32_bextri_u32((a), (b)))
35
36 static __inline__ unsigned int __DEFAULT_FN_ATTRS
37 __blcfill_u32(unsigned int a)
38 {
39   return a & (a + 1);
40 }
41
42 static __inline__ unsigned int __DEFAULT_FN_ATTRS
43 __blci_u32(unsigned int a)
44 {
45   return a | ~(a + 1);
46 }
47
48 static __inline__ unsigned int __DEFAULT_FN_ATTRS
49 __blcic_u32(unsigned int a)
50 {
51   return ~a & (a + 1);
52 }
53
54 static __inline__ unsigned int __DEFAULT_FN_ATTRS
55 __blcmsk_u32(unsigned int a)
56 {
57   return a ^ (a + 1);
58 }
59
60 static __inline__ unsigned int __DEFAULT_FN_ATTRS
61 __blcs_u32(unsigned int a)
62 {
63   return a | (a + 1);
64 }
65
66 static __inline__ unsigned int __DEFAULT_FN_ATTRS
67 __blsfill_u32(unsigned int a)
68 {
69   return a | (a - 1);
70 }
71
72 static __inline__ unsigned int __DEFAULT_FN_ATTRS
73 __blsic_u32(unsigned int a)
74 {
75   return ~a | (a - 1);
76 }
77
78 static __inline__ unsigned int __DEFAULT_FN_ATTRS
79 __t1mskc_u32(unsigned int a)
80 {
81   return ~a | (a + 1);
82 }
83
84 static __inline__ unsigned int __DEFAULT_FN_ATTRS
85 __tzmsk_u32(unsigned int a)
86 {
87   return ~a & (a - 1);
88 }
89
90 #ifdef __x86_64__
91 #define __bextri_u64(a, b) (__builtin_ia32_bextri_u64((a), (int)(b)))
92
93 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
94 __blcfill_u64(unsigned long long a)
95 {
96   return a & (a + 1);
97 }
98
99 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
100 __blci_u64(unsigned long long a)
101 {
102   return a | ~(a + 1);
103 }
104
105 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
106 __blcic_u64(unsigned long long a)
107 {
108   return ~a & (a + 1);
109 }
110
111 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
112 __blcmsk_u64(unsigned long long a)
113 {
114   return a ^ (a + 1);
115 }
116
117 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
118 __blcs_u64(unsigned long long a)
119 {
120   return a | (a + 1);
121 }
122
123 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
124 __blsfill_u64(unsigned long long a)
125 {
126   return a | (a - 1);
127 }
128
129 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
130 __blsic_u64(unsigned long long a)
131 {
132   return ~a | (a - 1);
133 }
134
135 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
136 __t1mskc_u64(unsigned long long a)
137 {
138   return ~a | (a + 1);
139 }
140
141 static __inline__ unsigned long long __DEFAULT_FN_ATTRS
142 __tzmsk_u64(unsigned long long a)
143 {
144   return ~a & (a - 1);
145 }
146 #endif
147
148 #undef __DEFAULT_FN_ATTRS
149
150 #endif /* __TBMINTRIN_H */