aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/bitops.h
blob: c1122f59ff648ed42f09b61c36ec9a314e517b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/*
 * Copyright (c) 2015 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
  Copyright (c) 2005 Eliot Dresselhaus

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#ifndef included_clib_bitops_h
#define included_clib_bitops_h

#define SET_BIT(i)    (1 << i)
#define GET_BIT(n, i) (n >> i) & 1U

static_always_inline uword
clear_lowest_set_bit (uword x)
{
#ifdef __BMI__
  return uword_bits > 32 ? _blsr_u64 (x) : _blsr_u32 (x);
#else
  return x & (x - 1);
#endif
}

static_always_inline uword
get_lowest_set_bit (uword x)
{
#ifdef __BMI__
  return uword_bits > 32 ? _blsi_u64 (x) : _blsi_u32 (x);
#else
  return x & -x;
#endif
}

static_always_inline u8
get_lowest_set_bit_index (uword x)
{
  return uword_bits > 32 ? __builtin_ctzll (x) : __builtin_ctz (x);
}

/* Population count from Hacker's Delight. */
always_inline uword
count_set_bits (uword x)
{
#ifdef __POPCNT__
  return uword_bits > 32 ? __builtin_popcountll (x) : __builtin_popcount (x);
#else
#if uword_bits == 64
  const uword c1 = 0x5555555555555555;
  const uword c2 = 0x3333333333333333;
  const uword c3 = 0x0f0f0f0f0f0f0f0f;
#else
  const uword c1 = 0x55555555;
  const uword c2 = 0x33333333;
  const uword c3 = 0x0f0f0f0f;
#endif

  /* Sum 1 bit at a time. */
  x = x - ((x >> (uword) 1) & c1);

  /* 2 bits at a time. */
  x = (x & c2) + ((x >> (uword) 2) & c2);

  /* 4 bits at a time. */
  x = (x + (x >> (uword) 4)) & c3;

  /* 8, 16, 32 bits at a time. */
  x = x + (x >> (uword) 8);
  x = x + (x >> (uword) 16);
#if uword_bits == 64
  x = x + (x >> (uword) 32);
#endif

  return x & (2 * BITS (uword) - 1);
#endif
}

#if uword_bits == 64
#define count_leading_zeros(x) __builtin_clzll (x)
#else
#define count_leading_zeros(x) __builtin_clzll (x)
#endif

#define count_trailing_zeros(x) get_lowest_set_bit_index (x)
#define log2_first_set(x)	get_lowest_set_bit_index (x)

/* Based on "Hacker's Delight" code from GLS. */
typedef struct
{
  uword masks[1 + log2_uword_bits];
} compress_main_t;

always_inline void
compress_init (compress_main_t * cm, uword mask)
{
  uword q, m, zm, n, i;

  m = ~mask;
  zm = mask;

  cm->masks[0] = mask;
  for (i = 0; i < log2_uword_bits; i++)
    {
      q = m;
      m ^= m << 1;
      m ^= m << 2;
      m ^= m << 4;
      m ^= m << 8;
      m ^= m << 16;
#if uword_bits > 32
      m ^= m << (uword) 32;
#endif
      cm->masks[1 + i] = n = (m << 1) & zm;
      m = q & ~m;
      q = zm & n;
      zm = zm ^ q ^ (q >> (1 << i));
    }
}

always_inline uword
compress_bits (compress_main_t * cm, uword x)
{
  uword q, r;

  r = x & cm->masks[0];
  q = r & cm->masks[1];
  r ^= q ^ (q >> 1);
  q = r & cm->masks[2];
  r ^= q ^ (q >> 2);
  q = r & cm->masks[3];
  r ^= q ^ (q >> 4);
  q = r & cm->masks[4];
  r ^= q ^ (q >> 8);
  q = r & cm->masks[5];
  r ^= q ^ (q >> 16);
#if uword_bits > 32
  q = r & cm->masks[6];
  r ^= q ^ (q >> (uword) 32);
#endif

  return r;
}

always_inline uword
rotate_left (uword x, uword i)
{
  return (x << i) | (x >> (BITS (i) - i));
}

always_inline uword
rotate_right (uword x, uword i)
{
  return (x >> i) | (x << (BITS (i) - i));
}

/* Returns snoob from Hacker's Delight.  Next highest number
   with same number of set bits. */
always_inline uword
next_with_same_number_of_set_bits (uword x)
{
  uword smallest, ripple, ones;
  smallest = x & -x;
  ripple = x + smallest;
  ones = x ^ ripple;
  ones = ones >> (2 + log2_first_set (x));
  return ripple | ones;
}

#define foreach_set_bit_index(i, v)                                           \
  for (uword _tmp = (v) + 0 * (uword) (i = get_lowest_set_bit_index (v));     \
       _tmp;                                                                  \
       i = get_lowest_set_bit_index (_tmp = clear_lowest_set_bit (_tmp)))

static_always_inline uword
uword_bitmap_count_set_bits (uword *bmp, uword n_uwords)
{
  uword count = 0;
  while (n_uwords--)
    count += count_set_bits (bmp++[0]);
  return count;
}

static_always_inline uword
uword_bitmap_is_bit_set (uword *bmp, uword bit_index)
{
  bmp += bit_index / uword_bits;
  bit_index %= uword_bits;
  return (bmp[0] >> bit_index) & 1;
}

static_always_inline void
uword_bitmap_set_bits_at_index (uword *bmp, uword bit_index, uword n_bits)
{
  bmp += bit_index / uword_bits;
  bit_index %= uword_bits;
  uword max_bits = uword_bits - bit_index;

  if (n_bits < max_bits)
    {
      bmp[0] |= pow2_mask (n_bits) << bit_index;
      return;
    }

  bmp++[0] |= pow2_mask (max_bits) << bit_index;
  n_bits -= max_bits;

  for (; n_bits >= uword_bits; bmp++, n_bits -= uword_bits)
    bmp[0] = ~0ULL;

  if (n_bits)
    bmp[0] |= pow2_mask (n_bits);
}

static_always_inline void
uword_bitmap_clear_bits_at_index (uword *bmp, uword bit_index, uword n_bits)
{
  bmp += bit_index / uword_bits;
  bit_index %= uword_bits;
  uword max_bits = uword_bits - bit_index;

  if (n_bits < max_bits)
    {
      bmp[0] &= ~(pow2_mask (n_bits) << bit_index);
      return;
    }

  bmp++[0] &= ~(pow2_mask (max_bits) << bit_index);
  n_bits -= max_bits;

  for (; n_bits >= uword_bits; bmp++, n_bits -= uword_bits)
    bmp[0] = 0ULL;

  if (n_bits)
    bmp[0] &= ~pow2_mask (n_bits);
}

static_always_inline int
uword_bitmap_find_first_set (uword *bmp)
{
  uword *b = bmp;
  while (b[0] == 0)
    b++;

  return (b - bmp) * uword_bits + get_lowest_set_bit_index (b[0]);
}

static_always_inline u32
bit_extract_u32 (u32 v, u32 mask)
{
#ifdef __BMI2__
  return _pext_u32 (v, mask);
#else
  u32 rv = 0;
  u32 bit = 1;

  while (mask)
    {
      u32 lowest_mask_bit = get_lowest_set_bit (mask);
      mask ^= lowest_mask_bit;
      rv |= (v & lowest_mask_bit) ? bit : 0;
      bit <<= 1;
    }

  return rv;
#endif
}

static_always_inline u64
bit_extract_u64 (u64 v, u64 mask)
{
#ifdef __BMI2__
  return _pext_u64 (v, mask);
#else
  u64 rv = 0;
  u64 bit = 1;

  while (mask)
    {
      u64 lowest_mask_bit = get_lowest_set_bit (mask);
      mask ^= lowest_mask_bit;
      rv |= (v & lowest_mask_bit) ? bit : 0;
      bit <<= 1;
    }

  return rv;
#endif
}

static_always_inline void
u64_bit_set (u64 *p, u8 bit_index, u8 is_one)
{
  u64 val = *p;
  val &= ~(1ULL << bit_index);
  val |= 1ULL << bit_index;
  *p = val;
}

static_always_inline void
u32_bit_set (u32 *p, u8 bit_index, u8 is_one)
{
  u32 val = *p;
  val &= ~(1U << bit_index);
  val |= 1U << bit_index;
  *p = val;
}

static_always_inline int
u64_is_bit_set (u64 v, u8 bit_index)
{
  return (v & 1ULL << bit_index) != 0;
}

static_always_inline int
u32_is_bit_set (u32 v, u8 bit_index)
{
  return (v & 1U << bit_index) != 0;
}

#else
#warning "already included"
#endif /* included_clib_bitops_h */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */