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
23 #include "mozilla/TypeTraits.h"
29 /** Compute min/max. */
30 template <size_t Size
, size_t... Rest
>
32 static constexpr size_t value
=
33 Size
< Min
<Rest
...>::value
? Size
: Min
<Rest
...>::value
;
36 template <size_t Size
>
38 static constexpr size_t value
= Size
;
41 template <size_t Size
, size_t... Rest
>
43 static constexpr size_t value
=
44 Size
> Max
<Rest
...>::value
? Size
: Max
<Rest
...>::value
;
47 template <size_t Size
>
49 static constexpr size_t value
= Size
;
52 /** Compute floor(log2(i)). */
55 static const size_t value
= 1 + FloorLog2
<I
/ 2>::value
;
58 struct FloorLog2
<0> { /* Error */
62 static const size_t value
= 0;
65 /** Compute ceiling(log2(i)). */
68 static const size_t value
= FloorLog2
<2 * I
- 1>::value
;
71 /** Round up to the nearest power of 2. */
74 static const size_t value
= size_t(1) << CeilingLog2
<I
>::value
;
77 struct RoundUpPow2
<0> {
78 static const size_t value
= 1;
81 /** Compute the number of bits in the given unsigned type. */
84 static const size_t value
= sizeof(T
) * CHAR_BIT
;
88 * Produce an N-bit mask, where N <= BitSize<size_t>::value. Handle the
89 * language-undefined edge case when N = BitSize<size_t>::value.
93 // Assert the precondition. On success this evaluates to 0. Otherwise it
94 // triggers divide-by-zero at compile time: a guaranteed compile error in
95 // C++11, and usually one in C++98. Add this value to |value| to assure
97 static const size_t checkPrecondition
=
98 0 / size_t(N
< BitSize
<size_t>::value
);
99 static const size_t value
= (size_t(1) << N
) - 1 + checkPrecondition
;
102 struct NBitMask
<BitSize
<size_t>::value
> {
103 static const size_t value
= size_t(-1);
107 * For the unsigned integral type size_t, compute a mask M for N such that
108 * for all X, !(X & M) implies X * N will not overflow (w.r.t size_t)
111 struct MulOverflowMask
{
112 static const size_t value
=
113 ~NBitMask
<BitSize
<size_t>::value
- CeilingLog2
<N
>::value
>::value
;
116 struct MulOverflowMask
<0> { /* Error */
119 struct MulOverflowMask
<1> {
120 static const size_t value
= 0;
124 * And<bool...> computes the logical 'and' of its argument booleans.
127 * mozilla::t1::And<true, true>::value is true.
128 * mozilla::t1::And<true, false>::value is false.
129 * mozilla::t1::And<>::value is true.
136 struct And
<> : public TrueType
{};
138 template <bool C1
, bool... Cn
>
139 struct And
<C1
, Cn
...> : public Conditional
<C1
, And
<Cn
...>, FalseType
>::Type
{};
143 } // namespace mozilla
145 #endif /* mozilla_TemplateLib_h */