]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/i386/bmiintrin.h
Update copyright years.
[thirdparty/gcc.git] / gcc / config / i386 / bmiintrin.h
CommitLineData
a5544970 1/* Copyright (C) 2010-2019 Free Software Foundation, Inc.
91afcfa3
QN
2
3 This file is part of GCC.
4
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
8 any later version.
9
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 Under Section 7 of GPL version 3, you are granted additional
16 permissions described in the GCC Runtime Library Exception, version
17 3.1, as published by the Free Software Foundation.
18
19 You should have received a copy of the GNU General Public License and
20 a copy of the GCC Runtime Library Exception along with this program;
21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
22 <http://www.gnu.org/licenses/>. */
23
f13677ba 24#if !defined _X86INTRIN_H_INCLUDED && !defined _IMMINTRIN_H_INCLUDED
91afcfa3
QN
25# error "Never use <bmiintrin.h> directly; include <x86intrin.h> instead."
26#endif
27
91afcfa3
QN
28#ifndef _BMIINTRIN_H_INCLUDED
29#define _BMIINTRIN_H_INCLUDED
30
97db2bf7
ST
31#ifndef __BMI__
32#pragma GCC push_options
33#pragma GCC target("bmi")
34#define __DISABLE_BMI__
35#endif /* __BMI__ */
36
91afcfa3
QN
37extern __inline unsigned short __attribute__((__gnu_inline__, __always_inline__, __artificial__))
38__tzcnt_u16 (unsigned short __X)
39{
f56ea76e 40 return __builtin_ia32_tzcnt_u16 (__X);
91afcfa3
QN
41}
42
91afcfa3
QN
43extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
44__andn_u32 (unsigned int __X, unsigned int __Y)
45{
e0cdd8d4 46 return ~__X & __Y;
91afcfa3
QN
47}
48
49extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
50__bextr_u32 (unsigned int __X, unsigned int __Y)
51{
52 return __builtin_ia32_bextr_u32 (__X, __Y);
53}
54
ebf8f0ea
KY
55extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
56_bextr_u32 (unsigned int __X, unsigned int __Y, unsigned __Z)
57{
58 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
59}
60
91afcfa3
QN
61extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
62__blsi_u32 (unsigned int __X)
63{
e0cdd8d4 64 return __X & -__X;
91afcfa3
QN
65}
66
5a65129e
JJ
67extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
68_blsi_u32 (unsigned int __X)
69{
70 return __blsi_u32 (__X);
71}
72
91afcfa3
QN
73extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
74__blsmsk_u32 (unsigned int __X)
75{
e0cdd8d4 76 return __X ^ (__X - 1);
91afcfa3
QN
77}
78
5a65129e
JJ
79extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
80_blsmsk_u32 (unsigned int __X)
81{
82 return __blsmsk_u32 (__X);
83}
84
91afcfa3
QN
85extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
86__blsr_u32 (unsigned int __X)
87{
e0cdd8d4 88 return __X & (__X - 1);
91afcfa3
QN
89}
90
5a65129e
JJ
91extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
92_blsr_u32 (unsigned int __X)
93{
94 return __blsr_u32 (__X);
95}
91afcfa3
QN
96
97extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
98__tzcnt_u32 (unsigned int __X)
99{
f56ea76e 100 return __builtin_ia32_tzcnt_u32 (__X);
91afcfa3
QN
101}
102
5a65129e
JJ
103extern __inline unsigned int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
104_tzcnt_u32 (unsigned int __X)
105{
f56ea76e 106 return __builtin_ia32_tzcnt_u32 (__X);
5a65129e
JJ
107}
108
91afcfa3
QN
109
110#ifdef __x86_64__
111extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
112__andn_u64 (unsigned long long __X, unsigned long long __Y)
113{
e0cdd8d4 114 return ~__X & __Y;
91afcfa3
QN
115}
116
117extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
118__bextr_u64 (unsigned long long __X, unsigned long long __Y)
119{
120 return __builtin_ia32_bextr_u64 (__X, __Y);
121}
122
ebf8f0ea
KY
123extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
124_bextr_u64 (unsigned long long __X, unsigned int __Y, unsigned int __Z)
125{
126 return __builtin_ia32_bextr_u64 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
127}
128
91afcfa3
QN
129extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
130__blsi_u64 (unsigned long long __X)
131{
e0cdd8d4 132 return __X & -__X;
91afcfa3
QN
133}
134
5a65129e
JJ
135extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
136_blsi_u64 (unsigned long long __X)
137{
138 return __blsi_u64 (__X);
139}
140
91afcfa3
QN
141extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
142__blsmsk_u64 (unsigned long long __X)
143{
e0cdd8d4 144 return __X ^ (__X - 1);
91afcfa3
QN
145}
146
5a65129e
JJ
147extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
148_blsmsk_u64 (unsigned long long __X)
149{
150 return __blsmsk_u64 (__X);
151}
152
91afcfa3
QN
153extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
154__blsr_u64 (unsigned long long __X)
155{
e0cdd8d4 156 return __X & (__X - 1);
91afcfa3
QN
157}
158
5a65129e
JJ
159extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
160_blsr_u64 (unsigned long long __X)
161{
162 return __blsr_u64 (__X);
163}
164
91afcfa3
QN
165extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
166__tzcnt_u64 (unsigned long long __X)
167{
f56ea76e 168 return __builtin_ia32_tzcnt_u64 (__X);
91afcfa3
QN
169}
170
5a65129e
JJ
171extern __inline unsigned long long __attribute__((__gnu_inline__, __always_inline__, __artificial__))
172_tzcnt_u64 (unsigned long long __X)
173{
f56ea76e 174 return __builtin_ia32_tzcnt_u64 (__X);
5a65129e
JJ
175}
176
91afcfa3
QN
177#endif /* __x86_64__ */
178
97db2bf7
ST
179#ifdef __DISABLE_BMI__
180#undef __DISABLE_BMI__
181#pragma GCC pop_options
182#endif /* __DISABLE_BMI__ */
183
91afcfa3 184#endif /* _BMIINTRIN_H_INCLUDED */