P4C
The P4 Compiler
Loading...
Searching...
No Matches
bitops.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef LIB_BITOPS_H_
18#define LIB_BITOPS_H_
19
20#include <limits.h>
21
22#include "bitvec.h"
23
24static inline unsigned bitcount(unsigned v) {
25#if defined(__GNUC__) || defined(__clang__)
26 unsigned rv = __builtin_popcount(v);
27#else
28 unsigned rv = 0;
29 while (v) {
30 v &= v - 1;
31 ++rv;
32 }
33#endif
34 return rv;
35}
36
37static inline int floor_log2(unsigned v) {
38 int rv = -1;
39#if defined(__GNUC__) || defined(__clang__)
40 if (v) rv = CHAR_BIT * sizeof(unsigned) - __builtin_clz(v) - 1;
41#else
42 while (v) {
43 rv++;
44 v >>= 1;
45 }
46#endif
47 return rv;
48}
49
50static inline int ceil_log2(unsigned v) { return v ? floor_log2(v - 1) + 1 : -1; }
51
52static inline unsigned bitmask2bytemask(const bitvec &a) {
53 int max = a.max().index();
54 if (max < 0) return 0;
55 unsigned rv = 0;
56 for (unsigned i = 0; i <= max / 8U; i++)
57 if (a.getrange(i * 8, 8)) rv |= 1 << i;
58 return rv;
59}
60
61#endif /* LIB_BITOPS_H_ */
Definition bitvec.h:119