Line data Source code
1 : //===--- TrailingObjects.h - Variable-length classes ------------*- C++ -*-===//
2 : //
3 : // The LLVM Compiler Infrastructure
4 : //
5 : // This file is distributed under the University of Illinois Open Source
6 : // License. See LICENSE.TXT for details.
7 : //
8 : //===----------------------------------------------------------------------===//
9 : ///
10 : /// \file
11 : /// This header defines support for implementing classes that have
12 : /// some trailing object (or arrays of objects) appended to them. The
13 : /// main purpose is to make it obvious where this idiom is being used,
14 : /// and to make the usage more idiomatic and more difficult to get
15 : /// wrong.
16 : ///
17 : /// The TrailingObject template abstracts away the reinterpret_cast,
18 : /// pointer arithmetic, and size calculations used for the allocation
19 : /// and access of appended arrays of objects, and takes care that they
20 : /// are all allocated at their required alignment. Additionally, it
21 : /// ensures that the base type is final -- deriving from a class that
22 : /// expects data appended immediately after it is typically not safe.
23 : ///
24 : /// Users are expected to derive from this template, and provide
25 : /// numTrailingObjects implementations for each trailing type except
26 : /// the last, e.g. like this sample:
27 : ///
28 : /// \code
29 : /// class VarLengthObj : private TrailingObjects<VarLengthObj, int, double> {
30 : /// friend TrailingObjects;
31 : ///
32 : /// unsigned NumInts, NumDoubles;
33 : /// size_t numTrailingObjects(OverloadToken<int>) const { return NumInts; }
34 : /// };
35 : /// \endcode
36 : ///
37 : /// You can access the appended arrays via 'getTrailingObjects', and
38 : /// determine the size needed for allocation via
39 : /// 'additionalSizeToAlloc' and 'totalSizeToAlloc'.
40 : ///
41 : /// All the methods implemented by this class are are intended for use
42 : /// by the implementation of the class, not as part of its interface
43 : /// (thus, private inheritance is suggested).
44 : ///
45 : //===----------------------------------------------------------------------===//
46 :
47 : #ifndef LLVM_SUPPORT_TRAILINGOBJECTS_H
48 : #define LLVM_SUPPORT_TRAILINGOBJECTS_H
49 :
50 : #include "llvm/Support/AlignOf.h"
51 : #include "llvm/Support/Compiler.h"
52 : #include "llvm/Support/MathExtras.h"
53 : #include "llvm/Support/type_traits.h"
54 : #include <new>
55 : #include <type_traits>
56 :
57 : namespace llvm {
58 :
59 : namespace trailing_objects_internal {
60 : /// Helper template to calculate the max alignment requirement for a set of
61 : /// objects.
62 : template <typename First, typename... Rest> class AlignmentCalcHelper {
63 : private:
64 : enum {
65 : FirstAlignment = alignof(First),
66 : RestAlignment = AlignmentCalcHelper<Rest...>::Alignment,
67 : };
68 :
69 : public:
70 : enum {
71 : Alignment = FirstAlignment > RestAlignment ? FirstAlignment : RestAlignment
72 : };
73 : };
74 :
75 : template <typename First> class AlignmentCalcHelper<First> {
76 : public:
77 : enum { Alignment = alignof(First) };
78 : };
79 :
80 : /// The base class for TrailingObjects* classes.
81 : class TrailingObjectsBase {
82 : protected:
83 : /// OverloadToken's purpose is to allow specifying function overloads
84 : /// for different types, without actually taking the types as
85 : /// parameters. (Necessary because member function templates cannot
86 : /// be specialized, so overloads must be used instead of
87 : /// specialization.)
88 : template <typename T> struct OverloadToken {};
89 : };
90 :
91 : /// This helper template works-around MSVC 2013's lack of useful
92 : /// alignas() support. The argument to alignas(), in MSVC, is
93 : /// required to be a literal integer. But, you *can* use template
94 : /// specialization to select between a bunch of different alignas()
95 : /// expressions...
96 : template <int Align>
97 : class TrailingObjectsAligner : public TrailingObjectsBase {};
98 : template <>
99 : class alignas(1) TrailingObjectsAligner<1> : public TrailingObjectsBase {};
100 : template <>
101 : class alignas(2) TrailingObjectsAligner<2> : public TrailingObjectsBase {};
102 : template <>
103 : class alignas(4) TrailingObjectsAligner<4> : public TrailingObjectsBase {};
104 : template <>
105 : class alignas(8) TrailingObjectsAligner<8> : public TrailingObjectsBase {};
106 : template <>
107 : class alignas(16) TrailingObjectsAligner<16> : public TrailingObjectsBase {
108 : };
109 : template <>
110 : class alignas(32) TrailingObjectsAligner<32> : public TrailingObjectsBase {
111 : };
112 :
113 : // Just a little helper for transforming a type pack into the same
114 : // number of a different type. e.g.:
115 : // ExtractSecondType<Foo..., int>::type
116 : template <typename Ty1, typename Ty2> struct ExtractSecondType {
117 : typedef Ty2 type;
118 : };
119 :
120 : // TrailingObjectsImpl is somewhat complicated, because it is a
121 : // recursively inheriting template, in order to handle the template
122 : // varargs. Each level of inheritance picks off a single trailing type
123 : // then recurses on the rest. The "Align", "BaseTy", and
124 : // "TopTrailingObj" arguments are passed through unchanged through the
125 : // recursion. "PrevTy" is, at each level, the type handled by the
126 : // level right above it.
127 :
128 : template <int Align, typename BaseTy, typename TopTrailingObj, typename PrevTy,
129 : typename... MoreTys>
130 : class TrailingObjectsImpl {
131 : // The main template definition is never used -- the two
132 : // specializations cover all possibilities.
133 : };
134 :
135 : template <int Align, typename BaseTy, typename TopTrailingObj, typename PrevTy,
136 : typename NextTy, typename... MoreTys>
137 : class TrailingObjectsImpl<Align, BaseTy, TopTrailingObj, PrevTy, NextTy,
138 : MoreTys...>
139 : : public TrailingObjectsImpl<Align, BaseTy, TopTrailingObj, NextTy,
140 : MoreTys...> {
141 :
142 : typedef TrailingObjectsImpl<Align, BaseTy, TopTrailingObj, NextTy, MoreTys...>
143 : ParentType;
144 :
145 : struct RequiresRealignment {
146 : static const bool value = alignof(PrevTy) < alignof(NextTy);
147 : };
148 :
149 : static constexpr bool requiresRealignment() {
150 : return RequiresRealignment::value;
151 : }
152 :
153 : protected:
154 : // Ensure the inherited getTrailingObjectsImpl is not hidden.
155 : using ParentType::getTrailingObjectsImpl;
156 :
157 : // These two functions are helper functions for
158 : // TrailingObjects::getTrailingObjects. They recurse to the left --
159 : // the result for each type in the list of trailing types depends on
160 : // the result of calling the function on the type to the
161 : // left. However, the function for the type to the left is
162 : // implemented by a *subclass* of this class, so we invoke it via
163 : // the TopTrailingObj, which is, via the
164 : // curiously-recurring-template-pattern, the most-derived type in
165 : // this recursion, and thus, contains all the overloads.
166 : static const NextTy *
167 0 : getTrailingObjectsImpl(const BaseTy *Obj,
168 : TrailingObjectsBase::OverloadToken<NextTy>) {
169 755404483 : auto *Ptr = TopTrailingObj::getTrailingObjectsImpl(
170 18780754 : Obj, TrailingObjectsBase::OverloadToken<PrevTy>()) +
171 : TopTrailingObj::callNumTrailingObjects(
172 : Obj, TrailingObjectsBase::OverloadToken<PrevTy>());
173 :
174 : if (requiresRealignment())
175 : return reinterpret_cast<const NextTy *>(
176 6442 : llvm::alignAddr(Ptr, alignof(NextTy)));
177 : else
178 0 : return reinterpret_cast<const NextTy *>(Ptr);
179 : }
180 0 :
181 : static NextTy *
182 0 : getTrailingObjectsImpl(BaseTy *Obj,
183 0 : TrailingObjectsBase::OverloadToken<NextTy>) {
184 93872531 : auto *Ptr = TopTrailingObj::getTrailingObjectsImpl(
185 5378840 : Obj, TrailingObjectsBase::OverloadToken<PrevTy>()) +
186 : TopTrailingObj::callNumTrailingObjects(
187 : Obj, TrailingObjectsBase::OverloadToken<PrevTy>());
188 :
189 : if (requiresRealignment())
190 9286 : return reinterpret_cast<NextTy *>(llvm::alignAddr(Ptr, alignof(NextTy)));
191 0 : else
192 0 : return reinterpret_cast<NextTy *>(Ptr);
193 0 : }
194 0 :
195 0 : // Helper function for TrailingObjects::additionalSizeToAlloc: this
196 0 : // function recurses to superclasses, each of which requires one
197 0 : // fewer size_t argument, and adds its own size.
198 : static constexpr size_t additionalSizeToAllocImpl(
199 : size_t SizeSoFar, size_t Count1,
200 : typename ExtractSecondType<MoreTys, size_t>::type... MoreCounts) {
201 : return ParentType::additionalSizeToAllocImpl(
202 0 : (requiresRealignment() ? llvm::alignTo<alignof(NextTy)>(SizeSoFar)
203 : : SizeSoFar) +
204 30706518 : sizeof(NextTy) * Count1,
205 : MoreCounts...);
206 0 : }
207 : };
208 0 :
209 0 : // The base case of the TrailingObjectsImpl inheritance recursion,
210 38495790 : // when there's no more trailing types.
211 33244 : template <int Align, typename BaseTy, typename TopTrailingObj, typename PrevTy>
212 : class TrailingObjectsImpl<Align, BaseTy, TopTrailingObj, PrevTy>
213 : : public TrailingObjectsAligner<Align> {
214 : protected:
215 : // This is a dummy method, only here so the "using" doesn't fail --
216 16364 : // it will never be called, because this function recurses backwards
217 0 : // up the inheritance chain to subclasses.
218 0 : static void getTrailingObjectsImpl();
219 0 :
220 0 : static constexpr size_t additionalSizeToAllocImpl(size_t SizeSoFar) {
221 0 : return SizeSoFar;
222 0 : }
223 242 :
224 0 : template <bool CheckAlignment> static void verifyTrailingObjectsAlignment() {}
225 : };
226 :
227 : } // end namespace trailing_objects_internal
228 393913 :
229 0 : // Finally, the main type defined in this file, the one intended for users...
230 0 :
231 0 : /// See the file comment for details on the usage of the
232 0 : /// TrailingObjects type.
233 0 : template <typename BaseTy, typename... TrailingTys>
234 0 : class TrailingObjects : private trailing_objects_internal::TrailingObjectsImpl<
235 0 : trailing_objects_internal::AlignmentCalcHelper<
236 0 : TrailingTys...>::Alignment,
237 : BaseTy, TrailingObjects<BaseTy, TrailingTys...>,
238 : BaseTy, TrailingTys...> {
239 :
240 5794885 : template <int A, typename B, typename T, typename P, typename... M>
241 0 : friend class trailing_objects_internal::TrailingObjectsImpl;
242 0 :
243 0 : template <typename... Tys> class Foo {};
244 0 :
245 0 : typedef trailing_objects_internal::TrailingObjectsImpl<
246 0 : trailing_objects_internal::AlignmentCalcHelper<TrailingTys...>::Alignment,
247 0 : BaseTy, TrailingObjects<BaseTy, TrailingTys...>, BaseTy, TrailingTys...>
248 0 : ParentType;
249 786 : using TrailingObjectsBase = trailing_objects_internal::TrailingObjectsBase;
250 13363 :
251 : using ParentType::getTrailingObjectsImpl;
252 0 :
253 : // This function contains only a static_assert BaseTy is final. The
254 1325254 : // static_assert must be in a function, and not at class-level
255 0 : // because BaseTy isn't complete at class instantiation time, but
256 0 : // will be by the time this function is instantiated.
257 0 : static void verifyTrailingObjectsAssertions() {
258 0 : #ifdef LLVM_IS_FINAL
259 0 : static_assert(LLVM_IS_FINAL(BaseTy), "BaseTy must be final.");
260 0 : #endif
261 0 : }
262 25708279 :
263 1866006 : // These two methods are the base of the recursion for this method.
264 27524738 : static const BaseTy *
265 0 : getTrailingObjectsImpl(const BaseTy *Obj,
266 0 : TrailingObjectsBase::OverloadToken<BaseTy>) {
267 0 : return Obj;
268 0 : }
269 0 :
270 0 : static BaseTy *
271 0 : getTrailingObjectsImpl(BaseTy *Obj,
272 0 : TrailingObjectsBase::OverloadToken<BaseTy>) {
273 0 : return Obj;
274 0 : }
275 56193759 :
276 14658 : // callNumTrailingObjects simply calls numTrailingObjects on the
277 : // provided Obj -- except when the type being queried is BaseTy
278 0 : // itself. There is always only one of the base object, so that case
279 0 : // is handled here. (An additional benefit of indirecting through
280 0 : // this function is that consumers only say "friend
281 2094 : // TrailingObjects", and thus, only this class itself can call the
282 0 : // numTrailingObjects function.)
283 0 : static size_t
284 0 : callNumTrailingObjects(const BaseTy *Obj,
285 0 : TrailingObjectsBase::OverloadToken<BaseTy>) {
286 0 : return 1;
287 17373622 : }
288 45 :
289 0 : template <typename T>
290 12915 : static size_t callNumTrailingObjects(const BaseTy *Obj,
291 0 : TrailingObjectsBase::OverloadToken<T>) {
292 0 : return Obj->numTrailingObjects(TrailingObjectsBase::OverloadToken<T>());
293 0 : }
294 0 :
295 29843321 : public:
296 0 : // Make this (privately inherited) member public.
297 0 : #ifndef _MSC_VER
298 0 : using ParentType::OverloadToken;
299 0 : #else
300 0 : // MSVC bug prevents the above from working, at least up through CL
301 0 : // 19.10.24629.
302 0 : template <typename T>
303 0 : using OverloadToken = typename ParentType::template OverloadToken<T>;
304 0 : #endif
305 0 :
306 0 : /// Returns a pointer to the trailing object array of the given type
307 0 : /// (which must be one of those specified in the class template). The
308 0 : /// array may have zero or more elements in it.
309 0 : template <typename T> const T *getTrailingObjects() const {
310 0 : verifyTrailingObjectsAssertions();
311 0 : // Forwards to an impl function with overloads, since member
312 0 : // function templates can't be specialized.
313 0 : return this->getTrailingObjectsImpl(
314 769938 : static_cast<const BaseTy *>(this),
315 5592019 : TrailingObjectsBase::OverloadToken<T>());
316 1 : }
317 0 :
318 228 : /// Returns a pointer to the trailing object array of the given type
319 0 : /// (which must be one of those specified in the class template). The
320 1684929 : /// array may have zero or more elements in it.
321 0 : template <typename T> T *getTrailingObjects() {
322 0 : verifyTrailingObjectsAssertions();
323 0 : // Forwards to an impl function with overloads, since member
324 0 : // function templates can't be specialized.
325 0 : return this->getTrailingObjectsImpl(
326 13363 : static_cast<BaseTy *>(this), TrailingObjectsBase::OverloadToken<T>());
327 0 : }
328 0 :
329 312654 : /// Returns the size of the trailing data, if an object were
330 0 : /// allocated with the given counts (The counts are in the same order
331 0 : /// as the template arguments). This does not include the size of the
332 411 : /// base object. The template arguments must be the same as those
333 0 : /// used in the class; they are supplied here redundantly only so
334 0 : /// that it's clear what the counts are counting in callers.
335 0 : template <typename... Tys>
336 0 : static constexpr typename std::enable_if<
337 0 : std::is_same<Foo<TrailingTys...>, Foo<Tys...>>::value, size_t>::type
338 0 : additionalSizeToAlloc(typename trailing_objects_internal::ExtractSecondType<
339 1 : TrailingTys, size_t>::type... Counts) {
340 211 : return ParentType::additionalSizeToAllocImpl(0, Counts...);
341 0 : }
342 660635 :
343 0 : /// Returns the total size of an object if it were allocated with the
344 0 : /// given trailing object counts. This is the same as
345 660635 : /// additionalSizeToAlloc, except it *does* include the size of the base
346 0 : /// object.
347 3389155 : template <typename... Tys>
348 0 : static constexpr typename std::enable_if<
349 0 : std::is_same<Foo<TrailingTys...>, Foo<Tys...>>::value, size_t>::type
350 0 : totalSizeToAlloc(typename trailing_objects_internal::ExtractSecondType<
351 1863770 : TrailingTys, size_t>::type... Counts) {
352 30149593 : return sizeof(BaseTy) + ParentType::additionalSizeToAllocImpl(0, Counts...);
353 0 : }
354 2362052 :
355 0 : /// A type where its ::with_counts template member has a ::type member
356 0 : /// suitable for use as uninitialized storage for an object with the given
357 0 : /// trailing object counts. The template arguments are similar to those
358 0 : /// of additionalSizeToAlloc.
359 0 : ///
360 75 : /// Use with FixedSizeStorageOwner, e.g.:
361 0 : ///
362 0 : /// \code{.cpp}
363 0 : ///
364 0 : /// MyObj::FixedSizeStorage<void *>::with_counts<1u>::type myStackObjStorage;
365 0 : /// MyObj::FixedSizeStorageOwner
366 2775253 : /// myStackObjOwner(new ((void *)&myStackObjStorage) MyObj);
367 0 : /// MyObj *const myStackObjPtr = myStackObjOwner.get();
368 5280 : ///
369 0 : /// \endcode
370 0 : template <typename... Tys> struct FixedSizeStorage {
371 0 : template <size_t... Counts> struct with_counts {
372 0 : enum { Size = totalSizeToAlloc<Tys...>(Counts...) };
373 0 : typedef llvm::AlignedCharArray<alignof(BaseTy), Size> type;
374 0 : };
375 0 : };
376 368564 :
377 0 : /// A type that acts as the owner for an object placed into fixed storage.
378 0 : class FixedSizeStorageOwner {
379 0 : public:
380 0 : FixedSizeStorageOwner(BaseTy *p) : p(p) {}
381 0 : ~FixedSizeStorageOwner() {
382 0 : assert(p && "FixedSizeStorageOwner owns null?");
383 0 : p->~BaseTy();
384 0 : }
385 0 :
386 0 : BaseTy *get() { return p; }
387 2 : const BaseTy *get() const { return p; }
388 0 :
389 0 : private:
390 0 : FixedSizeStorageOwner(const FixedSizeStorageOwner &) = delete;
391 0 : FixedSizeStorageOwner(FixedSizeStorageOwner &&) = delete;
392 392320 : FixedSizeStorageOwner &operator=(const FixedSizeStorageOwner &) = delete;
393 0 : FixedSizeStorageOwner &operator=(FixedSizeStorageOwner &&) = delete;
394 0 :
395 0 : BaseTy *const p;
396 0 : };
397 0 : };
398 0 :
399 5319 : } // end namespace llvm
400 0 :
401 0 : #endif
|