/* Copyright (C) 2018 David Robillard Copyright (C) 2006-2007 Chris Hamilton This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef _OPERATIONS_HPP_ #define _OPERATIONS_HPP_ #include #include #include #include namespace chilbert { /// IntegralIndex only exists if T is integral template using IntegralIndex = std::enable_if_t::value, int>; /// BitsetIndex only exists if T is not integral (must be a bitset) template using BitsetIndex = std::enable_if_t::value, int>; /// Return the `index`th bit in `field` template bool testBit(const T& field, const IntegralIndex index) { assert(size_t(index) < sizeof(field) * CHAR_BIT); return field & (((T)1) << index); } /// Return the `index`th bit in `field` template bool testBit(const T& field, const BitsetIndex index) { return field.test(index); } /// Set the `index`th bit in `field` to `value` template void setBit(T& field, const IntegralIndex index, const bool value) { assert(size_t(index) < sizeof(field) * CHAR_BIT); field ^= (-value ^ field) & ((T)1 << index); assert(testBit(field, index) == value); } /// Set the `index`th bit in `field` to `value` template void setBit(T& field, const BitsetIndex index, const bool value) { field.set(index, value); } /// Return 1 + the index of the least significant 1-bit of `field`, or zero template int ffs(const T field); template <> int ffs(const unsigned long field) { return __builtin_ffsl(field); } template <> int ffs(const unsigned long long field) { return __builtin_ffsll(field); } } // namespace chilbert #endif