All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
conditional-stack-allocated.h
Go to the documentation of this file.
1// Copyright 2025 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef INCLUDE_CPPGC_INTERNAL_CONDITIONAL_STACK_ALLOCATED_H_
6#define INCLUDE_CPPGC_INTERNAL_CONDITIONAL_STACK_ALLOCATED_H_
7
8#include <type_traits>
9
10#include "cppgc/macros.h" // NOLINT(build/include_directory)
11#include "cppgc/type-traits.h" // NOLINT(build/include_directory)
12
13namespace cppgc {
14namespace internal {
15
16// Base class that is marked as stack allocated if T is either marked as stack
17// allocated or a traceable type.
18template <typename T>
20
21template <typename T>
23 !std::is_void_v<T> &&
24 (cppgc::IsStackAllocatedType<T> || cppgc::internal::IsTraceableV<T> ||
25 cppgc::IsGarbageCollectedOrMixinTypeV<T>);
26
27template <typename T>
30 public:
32};
33
34template <typename T>
37
38} // namespace internal
39} // namespace cppgc
40
41#endif // INCLUDE_CPPGC_INTERNAL_CONDITIONAL_STACK_ALLOCATED_H_
Definition: conditional-stack-allocated.h:19
Definition: macros.h:51
Definition: conditional-stack-allocated.h:22
#define CPPGC_STACK_ALLOCATED()
Definition: macros.h:44
Definition: allocation.h:38