Rename folly/detail/Malloc.h to folly/detail/MallocImpl.h
[folly.git] / folly / detail / BitsDetail.h
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 namespace folly {
20 namespace detail {
21
22 // If we're targeting an architecture with popcnt support, use
23 // __builtin_popcount directly, as it's presumably inlined.
24 // If not, use runtime detection using __attribute__((__ifunc__))
25 // (see Bits.cpp)
26 #ifdef _MSC_VER
27 inline int popcount(unsigned int x) {
28   return int(__popcnt(x));
29 }
30 inline int popcountll(unsigned long long x) {
31   return int(__popcnt64(x));
32 }
33 #elif defined(__POPCNT__)
34
35 inline int popcount(unsigned int x) {
36   return __builtin_popcount(x);
37 }
38 inline int popcountll(unsigned long long x) {
39   return __builtin_popcountll(x);
40 }
41
42 #else   /* !__POPCNT__ */
43
44 int popcount(unsigned int x);
45 int popcountll(unsigned long long x);
46
47 #endif  /* !__POPCNT__ */
48
49 }  // namespace detail
50 }  // namespace folly