1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 * Reusable template meta-functions on types and compile-time values. Meta-
9 * functions are placed inside the 'tl' namespace to avoid conflict with non-
10 * meta functions of the same name (e.g., mozilla::tl::FloorLog2 vs.
11 * mozilla::FloorLog2).
13 * When constexpr support becomes universal, we should probably use that instead
14 * of some of these templates, for simplicity.
17 #ifndef mozilla_TemplateLib_h
18 #define mozilla_TemplateLib_h
22 #include <type_traits>
28 /** Compute min/max. */
29 template <size_t Size
, size_t... Rest
>
31 static constexpr size_t value
=
32 Size
< Min
<Rest
...>::value
? Size
: Min
<Rest
...>::value
;
35 template <size_t Size
>
37 static constexpr size_t value
= Size
;
40 template <size_t Size
, size_t... Rest
>
42 static constexpr size_t value
=
43 Size
> Max
<Rest
...>::value
? Size
: Max
<Rest
...>::value
;
46 template <size_t Size
>
48 static constexpr size_t value
= Size
;
51 /** Compute floor(log2(i)). */
54 static const size_t value
= 1 + FloorLog2
<I
/ 2>::value
;
57 struct FloorLog2
<0> { /* Error */
61 static const size_t value
= 0;
64 /** Compute ceiling(log2(i)). */
67 static const size_t value
= FloorLog2
<2 * I
- 1>::value
;
70 /** Round up to the nearest power of 2. */
73 static const size_t value
= size_t(1) << CeilingLog2
<I
>::value
;
76 struct RoundUpPow2
<0> {
77 static const size_t value
= 1;
80 /** Compute the number of bits in the given unsigned type. */
83 static const size_t value
= sizeof(T
) * CHAR_BIT
;
87 * Produce an N-bit mask, where N <= BitSize<size_t>::value. Handle the
88 * language-undefined edge case when N = BitSize<size_t>::value.
92 // Assert the precondition. On success this evaluates to 0. Otherwise it
93 // triggers divide-by-zero at compile time: a guaranteed compile error in
94 // C++11, and usually one in C++98. Add this value to |value| to assure
96 static const size_t checkPrecondition
=
97 0 / size_t(N
< BitSize
<size_t>::value
);
98 static const size_t value
= (size_t(1) << N
) - 1 + checkPrecondition
;
101 struct NBitMask
<BitSize
<size_t>::value
> {
102 static const size_t value
= size_t(-1);
106 * For the unsigned integral type size_t, compute a mask M for N such that
107 * for all X, !(X & M) implies X * N will not overflow (w.r.t size_t)
110 struct MulOverflowMask
{
111 static const size_t value
=
112 ~NBitMask
<BitSize
<size_t>::value
- CeilingLog2
<N
>::value
>::value
;
115 struct MulOverflowMask
<0> { /* Error */
118 struct MulOverflowMask
<1> {
119 static const size_t value
= 0;
123 * And<bool...> computes the logical 'and' of its argument booleans.
126 * mozilla::t1::And<true, true>::value is true.
127 * mozilla::t1::And<true, false>::value is false.
128 * mozilla::t1::And<>::value is true.
132 struct And
: std::integral_constant
<bool, (C
&& ...)> {};
136 } // namespace mozilla
138 #endif /* mozilla_TemplateLib_h */