blob: 3b3662bb4f225d0ea65fbe4bd5593db168bc9486 [file] [log] [blame]
Craig Topperf2855ad2011-12-25 06:25:37 +00001/*===---- bmiintrin.h - BMI 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#if !defined __X86INTRIN_H && !defined __IMMINTRIN_H
25#error "Never use <bmiintrin.h> directly; include <x86intrin.h> instead."
26#endif
27
Craig Topperf2855ad2011-12-25 06:25:37 +000028#ifndef __BMIINTRIN_H
29#define __BMIINTRIN_H
30
Ekaterina Romanovac8976d52016-03-08 01:36:59 +000031/// \brief Counts the number of trailing zero bits in the operand.
32///
33/// \headerfile <x86intrin.h>
34///
35/// \code
36/// unsigned short _tzcnt_u16(unsigned short a);
37/// \endcode
38///
39/// This intrinsic corresponds to the \c TZCNT instruction.
40///
41/// \param a
42/// An unsigned 16-bit integer whose trailing zeros are to be counted.
43/// \returns An unsigned 16-bit integer containing the number of trailing zero
44/// bits in the operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +000045#define _tzcnt_u16(a) (__tzcnt_u16((a)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +000046
47/// \brief Performs a bitwise AND of the second operand with the one's
48/// complement of the first operand.
49///
50/// \headerfile <x86intrin.h>
51///
52/// \code
53/// unsigned int _andn_u32(unsigned int a, unsigned int b);
54/// \endcode
55///
56/// This intrinsic corresponds to the \c ANDN instruction.
57///
58/// \param a
59/// An unsigned integer containing one of the operands.
60/// \param b
61/// An unsigned integer containing one of the operands.
62/// \returns An unsigned integer containing the bitwise AND of the second
63/// operand with the one's complement of the first operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +000064#define _andn_u32(a, b) (__andn_u32((a), (b)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +000065
Sanjay Patel1585fb92014-05-28 20:26:57 +000066/* _bextr_u32 != __bextr_u32 */
Ekaterina Romanovac8976d52016-03-08 01:36:59 +000067/// \brief Clears all bits in the source except for the least significant bit
68/// containing a value of 1 and returns the result.
69///
70/// \headerfile <x86intrin.h>
71///
72/// \code
73/// unsigned int _blsi_u32(unsigned int a);
74/// \endcode
75///
76/// This intrinsic corresponds to the \c BLSI instruction.
77///
78/// \parama a
79/// An unsigned integer whose bits are to be cleared.
80/// \returns An unsigned integer containing the result of clearing the bits from
81/// the source operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +000082#define _blsi_u32(a) (__blsi_u32((a)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +000083
84/// \brief Creates a mask whose bits are set to 1, using bit 0 up to and
85/// including the least siginificant bit that is set to 1 in the source
86/// operand and returns the result.
87///
88/// \headerfile <x86intrin.h>
89///
90/// \code
91/// unsigned int _blsmsk_u32(unsigned int a);
92/// \endcode
93///
94/// This intrinsic corresponds to the \c BLSMSK instruction.
95///
96/// \param a
97/// An unsigned integer used to create the mask.
98/// \returns An unsigned integer containing the newly created mask.
Sanjay Patel1585fb92014-05-28 20:26:57 +000099#define _blsmsk_u32(a) (__blsmsk_u32((a)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000100
101/// \brief Clears the least siginificant bit that is set to 1 in the source
102/// operand and returns the result.
103///
104/// \headerfile <x86intrin.h>
105///
106/// \code
107/// unsigned int _blsr_u32(unsigned int a);
108/// \endcode
109///
110/// This intrinsic corresponds to the \c BLSR instruction.
111///
112/// \param a
113/// An unsigned integer containing the operand to be cleared.
114/// \returns An unsigned integer containing the result of clearing the source
115/// operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +0000116#define _blsr_u32(a) (__blsr_u32((a)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000117
118/// \brief Counts the number of trailing zero bits in the operand.
119///
120/// \headerfile <x86intrin.h>
121///
122/// \code
123/// unsigned int _tzcnt_u32(unsigned int a);
124/// \endcode
125///
126/// This intrinsic corresponds to the \c TZCNT instruction.
127///
128/// \param a
129/// An unsigned 32-bit integer whose trailing zeros are to be counted.
130/// \returns An unsigned 32-bit integer containing the number of trailing zero
131/// bits in the operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +0000132#define _tzcnt_u32(a) (__tzcnt_u32((a)))
133
Eric Christopher4d1851682015-06-17 07:09:20 +0000134/* Define the default attributes for the functions in this file. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000135#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("bmi")))
Eric Christopher4d1851682015-06-17 07:09:20 +0000136
Hans Wennborg1acf9552015-11-17 18:46:48 +0000137/* Allow using the tzcnt intrinsics even for non-BMI targets. Since the TZCNT
138 instruction behaves as BSF on non-BMI targets, there is code that expects
139 to use it as a potentially faster version of BSF. */
140#define __RELAXED_FN_ATTRS __attribute__((__always_inline__, __nodebug__))
141
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000142/// \brief Counts the number of trailing zero bits in the operand.
143///
144/// \headerfile <x86intrin.h>
145///
146/// This intrinsic corresponds to the \c TZCNT instruction.
147///
148/// \param __X
149/// An unsigned 16-bit integer whose trailing zeros are to be counted.
150/// \returns An unsigned 16-bit integer containing the number of trailing zero
151/// bits in the operand.
Hans Wennborg1acf9552015-11-17 18:46:48 +0000152static __inline__ unsigned short __RELAXED_FN_ATTRS
Craig Topper6490bdc2012-07-02 06:52:51 +0000153__tzcnt_u16(unsigned short __X)
Craig Topperf2855ad2011-12-25 06:25:37 +0000154{
Craig Toppera52e0d72014-11-01 22:50:54 +0000155 return __X ? __builtin_ctzs(__X) : 16;
Craig Topperf2855ad2011-12-25 06:25:37 +0000156}
157
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000158/// \brief Performs a bitwise AND of the second operand with the one's
159/// complement of the first operand.
160///
161/// \headerfile <x86intrin.h>
162///
163/// This intrinsic corresponds to the \c ANDN instruction.
164///
165/// \param __X
166/// An unsigned integer containing one of the operands.
167/// \param __Y
168/// An unsigned integer containing one of the operands.
169/// \returns An unsigned integer containing the bitwise AND of the second
170/// operand with the one's complement of the first operand.
Michael Kupersteine45af542015-06-30 13:36:19 +0000171static __inline__ unsigned int __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000172__andn_u32(unsigned int __X, unsigned int __Y)
173{
174 return ~__X & __Y;
175}
176
Sanjay Patel1585fb92014-05-28 20:26:57 +0000177/* AMD-specified, double-leading-underscore version of BEXTR */
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000178/// \brief Extracts the specified bits from the first operand and returns them
179/// in the least significant bits of the result.
180///
181/// \headerfile <x86intrin.h>
182///
183/// This intrinsic corresponds to the \c BEXTR instruction.
184///
185/// \param __X
186/// An unsigned integer whose bits are to be extracted.
187/// \param __Y
188/// An unsigned integer used to specify which bits are extracted. Bits [7:0]
189/// specify the index of the least significant bit. Bits [15:8] specify the
190/// number of bits to be extracted.
191/// \returns An unsigned integer whose least significant bits contain the
192/// extracted bits.
Michael Kupersteine45af542015-06-30 13:36:19 +0000193static __inline__ unsigned int __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000194__bextr_u32(unsigned int __X, unsigned int __Y)
195{
196 return __builtin_ia32_bextr_u32(__X, __Y);
197}
198
Sanjay Patel1585fb92014-05-28 20:26:57 +0000199/* Intel-specified, single-leading-underscore version of BEXTR */
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000200/// \brief Extracts the specified bits from the first operand and returns them
201/// in the least significant bits of the result.
202///
203/// \headerfile <x86intrin.h>
204///
205/// This intrinsic corresponds to the \c BEXTR instruction.
206///
207/// \param __X
208/// An unsigned integer whose bits are to be extracted.
209/// \param __Y
210/// An unsigned integer used to specify the index of the least significant
211/// bit for the bits to be extracted. Bits [7:0] specify the index.
212/// \param __Z
213/// An unsigned integer used to specify the number of bits to be extracted.
214/// Bits [7:0] specify the number of bits.
215/// \returns An unsigned integer whose least significant bits contain the
216/// extracted bits.
Michael Kupersteine45af542015-06-30 13:36:19 +0000217static __inline__ unsigned int __DEFAULT_FN_ATTRS
Sanjay Patel1585fb92014-05-28 20:26:57 +0000218_bextr_u32(unsigned int __X, unsigned int __Y, unsigned int __Z)
219{
220 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
221}
222
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000223/// \brief Clears all bits in the source except for the least significant bit
224/// containing a value of 1 and returns the result.
225///
226/// \headerfile <x86intrin.h>
227///
228/// This intrinsic corresponds to the \c BLSI instruction.
229///
230/// \param __X
231/// An unsigned integer whose bits are to be cleared.
232/// \returns An unsigned integer containing the result of clearing the bits from
233/// the source operand.
Michael Kupersteine45af542015-06-30 13:36:19 +0000234static __inline__ unsigned int __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000235__blsi_u32(unsigned int __X)
236{
237 return __X & -__X;
238}
239
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000240/// \brief Creates a mask whose bits are set to 1, using bit 0 up to and
241/// including the least siginificant bit that is set to 1 in the source
242/// operand and returns the result.
243///
244/// \headerfile <x86intrin.h>
245///
246/// This intrinsic corresponds to the \c BLSMSK instruction.
247///
248/// \param __X
249/// An unsigned integer used to create the mask.
250/// \returns An unsigned integer containing the newly created mask.
Michael Kupersteine45af542015-06-30 13:36:19 +0000251static __inline__ unsigned int __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000252__blsmsk_u32(unsigned int __X)
253{
254 return __X ^ (__X - 1);
255}
256
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000257/// \brief Clears the least siginificant bit that is set to 1 in the source
258/// operand and returns the result.
259///
260/// \headerfile <x86intrin.h>
261///
262/// This intrinsic corresponds to the \c BLSR instruction.
263///
264/// \param __X
265/// An unsigned integer containing the operand to be cleared.
266/// \returns An unsigned integer containing the result of clearing the source
267/// operand.
Michael Kupersteine45af542015-06-30 13:36:19 +0000268static __inline__ unsigned int __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000269__blsr_u32(unsigned int __X)
270{
271 return __X & (__X - 1);
272}
273
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000274/// \brief Counts the number of trailing zero bits in the operand.
275///
276/// \headerfile <x86intrin.h>
277///
278/// This intrinsic corresponds to the \c TZCNT instruction.
279///
280/// \param __X
281/// An unsigned 32-bit integer whose trailing zeros are to be counted.
282/// \returns An unsigned 32-bit integer containing the number of trailing zero
283/// bits in the operand.
Hans Wennborg1acf9552015-11-17 18:46:48 +0000284static __inline__ unsigned int __RELAXED_FN_ATTRS
Craig Topper6490bdc2012-07-02 06:52:51 +0000285__tzcnt_u32(unsigned int __X)
Craig Topperf2855ad2011-12-25 06:25:37 +0000286{
Craig Toppera52e0d72014-11-01 22:50:54 +0000287 return __X ? __builtin_ctz(__X) : 32;
Craig Topperf2855ad2011-12-25 06:25:37 +0000288}
289
290#ifdef __x86_64__
Sanjay Patel1585fb92014-05-28 20:26:57 +0000291
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000292/// \brief Performs a bitwise AND of the second operand with the one's
293/// complement of the first operand.
294///
295/// \headerfile <x86intrin.h>
296///
297/// \code
298/// unsigned long long _andn_u64 (unsigned long long a, unsigned long long b);
299/// \endcode
300///
301/// This intrinsic corresponds to the \c ANDN instruction.
302///
303/// \param a
304/// An unsigned 64-bit integer containing one of the operands.
305/// \param b
306/// An unsigned 64-bit integer containing one of the operands.
307/// \returns An unsigned 64-bit integer containing the bitwise AND of the second
308/// operand with the one's complement of the first operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +0000309#define _andn_u64(a, b) (__andn_u64((a), (b)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000310
Sanjay Patel1585fb92014-05-28 20:26:57 +0000311/* _bextr_u64 != __bextr_u64 */
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000312/// \brief Clears all bits in the source except for the least significant bit
313/// containing a value of 1 and returns the result.
314///
315/// \headerfile <x86intrin.h>
316///
317/// \code
318/// unsigned long long _blsi_u64(unsigned long long a);
319/// \endcode
320///
321/// This intrinsic corresponds to the \c BLSI instruction.
322///
323/// \param a
324/// An unsigned 64-bit integer whose bits are to be cleared.
325/// \returns An unsigned 64-bit integer containing the result of clearing the
326/// bits from the source operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +0000327#define _blsi_u64(a) (__blsi_u64((a)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000328
329/// \brief Creates a mask whose bits are set to 1, using bit 0 up to and
330/// including the least siginificant bit that is set to 1 in the source
331/// operand and returns the result.
332///
333/// \headerfile <x86intrin.h>
334///
335/// \code
336/// unsigned long long _blsmsk_u64(unsigned long long a);
337/// \endcode
338///
339/// This intrinsic corresponds to the \c BLSMSK instruction.
340///
341/// \param a
342/// An unsigned 64-bit integer used to create the mask.
343/// \returns A unsigned 64-bit integer containing the newly created mask.
Sanjay Patel1585fb92014-05-28 20:26:57 +0000344#define _blsmsk_u64(a) (__blsmsk_u64((a)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000345
346/// \brief Clears the least siginificant bit that is set to 1 in the source
347/// operand and returns the result.
348///
349/// \headerfile <x86intrin.h>
350///
351/// \code
352/// unsigned long long _blsr_u64(unsigned long long a);
353/// \endcode
354///
355/// This intrinsic corresponds to the \c BLSR instruction.
356///
357/// \param a
358/// An unsigned 64-bit integer containing the operand to be cleared.
359/// \returns An unsigned 64-bit integer containing the result of clearing the
360/// source operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +0000361#define _blsr_u64(a) (__blsr_u64((a)))
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000362
363/// \brief Counts the number of trailing zero bits in the operand.
364///
365/// \headerfile <x86intrin.h>
366///
367/// \code
368/// unsigned long long _tzcnt_u64(unsigned long long a);
369/// \endcode
370///
371/// This intrinsic corresponds to the \c TZCNT instruction.
372///
373/// \param a
374/// An unsigned 64-bit integer whose trailing zeros are to be counted.
375/// \returns An unsigned 64-bit integer containing the number of trailing zero
376/// bits in the operand.
Sanjay Patel1585fb92014-05-28 20:26:57 +0000377#define _tzcnt_u64(a) (__tzcnt_u64((a)))
378
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000379/// \brief Performs a bitwise AND of the second operand with the one's
380/// complement of the first operand.
381///
382/// \headerfile <x86intrin.h>
383///
384/// This intrinsic corresponds to the \c ANDN instruction.
385///
386/// \param __X
387/// An unsigned 64-bit integer containing one of the operands.
388/// \param __Y
389/// An unsigned 64-bit integer containing one of the operands.
390/// \returns An unsigned 64-bit integer containing the bitwise AND of the second
391/// operand with the one's complement of the first operand.
Michael Kupersteine45af542015-06-30 13:36:19 +0000392static __inline__ unsigned long long __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000393__andn_u64 (unsigned long long __X, unsigned long long __Y)
394{
395 return ~__X & __Y;
396}
397
Sanjay Patel1585fb92014-05-28 20:26:57 +0000398/* AMD-specified, double-leading-underscore version of BEXTR */
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000399/// \brief Extracts the specified bits from the first operand and returns them
400/// in the least significant bits of the result.
401///
402/// \headerfile <x86intrin.h>
403///
404/// This intrinsic corresponds to the \c BEXTR instruction.
405///
406/// \param __X
407/// An unsigned 64-bit integer whose bits are to be extracted.
408/// \param __Y
409/// An unsigned 64-bit integer used to specify which bits are extracted. Bits
410/// [7:0] specify the index of the least significant bit. Bits [15:8] specify
411/// the number of bits to be extracted.
412/// \returns An unsigned 64-bit integer whose least significant bits contain the
413/// extracted bits.
Michael Kupersteine45af542015-06-30 13:36:19 +0000414static __inline__ unsigned long long __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000415__bextr_u64(unsigned long long __X, unsigned long long __Y)
416{
417 return __builtin_ia32_bextr_u64(__X, __Y);
418}
419
Sanjay Patel1585fb92014-05-28 20:26:57 +0000420/* Intel-specified, single-leading-underscore version of BEXTR */
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000421/// \brief Extracts the specified bits from the first operand and returns them
422/// in the least significant bits of the result.
423///
424/// \headerfile <x86intrin.h>
425///
426/// This intrinsic corresponds to the \c BEXTR instruction.
427///
428/// \param __X
429/// An unsigned 64-bit integer whose bits are to be extracted.
430/// \param __Y
431/// An unsigned integer used to specify the index of the least significant
432/// bit for the bits to be extracted. Bits [7:0] specify the index.
433/// \param __Z
434/// An unsigned integer used to specify the number of bits to be extracted.
435/// Bits [7:0] specify the number of bits.
436/// \returns An unsigned 64-bit integer whose least significant bits contain the
437/// extracted bits.
Michael Kupersteine45af542015-06-30 13:36:19 +0000438static __inline__ unsigned long long __DEFAULT_FN_ATTRS
Sanjay Patel1585fb92014-05-28 20:26:57 +0000439_bextr_u64(unsigned long long __X, unsigned int __Y, unsigned int __Z)
440{
441 return __builtin_ia32_bextr_u64 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
442}
443
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000444/// \brief Clears all bits in the source except for the least significant bit
445/// containing a value of 1 and returns the result.
446///
447/// \headerfile <x86intrin.h>
448///
449/// This intrinsic corresponds to the \c BLSI instruction.
450///
451/// \param __X
452/// An unsigned 64-bit integer whose bits are to be cleared.
453/// \returns An unsigned 64-bit integer containing the result of clearing the
454/// bits from the source operand.
Michael Kupersteine45af542015-06-30 13:36:19 +0000455static __inline__ unsigned long long __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000456__blsi_u64(unsigned long long __X)
457{
458 return __X & -__X;
459}
460
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000461/// \brief Creates a mask whose bits are set to 1, using bit 0 up to and
462/// including the least siginificant bit that is set to 1 in the source
463/// operand and returns the result.
464///
465/// \headerfile <x86intrin.h>
466///
467/// This intrinsic corresponds to the \c BLSMSK instruction.
468///
469/// \param __X
470/// An unsigned 64-bit integer used to create the mask.
471/// \returns A unsigned 64-bit integer containing the newly created mask.
Michael Kupersteine45af542015-06-30 13:36:19 +0000472static __inline__ unsigned long long __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000473__blsmsk_u64(unsigned long long __X)
474{
475 return __X ^ (__X - 1);
476}
477
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000478/// \brief Clears the least siginificant bit that is set to 1 in the source
479/// operand and returns the result.
480///
481/// \headerfile <x86intrin.h>
482///
483/// This intrinsic corresponds to the \c BLSR instruction.
484///
485/// \param __X
486/// An unsigned 64-bit integer containing the operand to be cleared.
487/// \returns An unsigned 64-bit integer containing the result of clearing the
488/// source operand.
Michael Kupersteine45af542015-06-30 13:36:19 +0000489static __inline__ unsigned long long __DEFAULT_FN_ATTRS
Craig Toppera06d4a12011-12-25 07:27:12 +0000490__blsr_u64(unsigned long long __X)
491{
492 return __X & (__X - 1);
493}
494
Ekaterina Romanovac8976d52016-03-08 01:36:59 +0000495/// \brief Counts the number of trailing zero bits in the operand.
496///
497/// \headerfile <x86intrin.h>
498///
499/// This intrinsic corresponds to the \c TZCNT instruction.
500///
501/// \param __X
502/// An unsigned 64-bit integer whose trailing zeros are to be counted.
503/// \returns An unsigned 64-bit integer containing the number of trailing zero
504/// bits in the operand.
Hans Wennborg1acf9552015-11-17 18:46:48 +0000505static __inline__ unsigned long long __RELAXED_FN_ATTRS
Craig Topper6490bdc2012-07-02 06:52:51 +0000506__tzcnt_u64(unsigned long long __X)
Craig Topperf2855ad2011-12-25 06:25:37 +0000507{
Craig Toppera52e0d72014-11-01 22:50:54 +0000508 return __X ? __builtin_ctzll(__X) : 64;
Craig Topperf2855ad2011-12-25 06:25:37 +0000509}
Sanjay Patel1585fb92014-05-28 20:26:57 +0000510
511#endif /* __x86_64__ */
Craig Topperf2855ad2011-12-25 06:25:37 +0000512
Michael Kupersteine45af542015-06-30 13:36:19 +0000513#undef __DEFAULT_FN_ATTRS
Hans Wennborg1acf9552015-11-17 18:46:48 +0000514#undef __RELAXED_FN_ATTRS
Eric Christopher4d1851682015-06-17 07:09:20 +0000515
Craig Topperf2855ad2011-12-25 06:25:37 +0000516#endif /* __BMIINTRIN_H */