Sha256: bf3a27dd9af8ee0f9dfc051d1d6c45cbb62301217371f353665b9403f77629f9

Contents?: true

Size: 1.33 KB

Versions: 28

Compression:

Stored size: 1.33 KB

Contents

// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef INCLUDE_CPPGC_LIVENESS_BROKER_H_
#define INCLUDE_CPPGC_LIVENESS_BROKER_H_

#include "cppgc/heap.h"
#include "cppgc/member.h"
#include "cppgc/trace-trait.h"
#include "v8config.h"  // NOLINT(build/include_directory)

namespace cppgc {

namespace internal {
class LivenessBrokerFactory;
}  // namespace internal

class V8_EXPORT LivenessBroker final {
 public:
  template <typename T>
  bool IsHeapObjectAlive(const T* object) const {
    return object &&
           IsHeapObjectAliveImpl(
               TraceTrait<T>::GetTraceDescriptor(object).base_object_payload);
  }

  template <typename T>
  bool IsHeapObjectAlive(const WeakMember<T>& weak_member) const {
    return (weak_member != kSentinelPointer) &&
           IsHeapObjectAlive<T>(weak_member.Get());
  }

  template <typename T>
  bool IsHeapObjectAlive(const UntracedMember<T>& untraced_member) const {
    return (untraced_member != kSentinelPointer) &&
           IsHeapObjectAlive<T>(untraced_member.Get());
  }

 private:
  LivenessBroker() = default;

  bool IsHeapObjectAliveImpl(const void*) const;

  friend class internal::LivenessBrokerFactory;
};

}  // namespace cppgc

#endif  // INCLUDE_CPPGC_LIVENESS_BROKER_H_

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
libv8-8.4.255.0.1-x86_64-linux vendor/v8/include/cppgc/liveness-broker.h
libv8-8.4.255.0.1-x86_64-darwin vendor/v8/include/cppgc/liveness-broker.h
libv8-8.4.255.0.1-universal-darwin vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta3-x86_64-linux vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta3-x86_64-linux-musl vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta3-x86_64-darwin-19 vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta2-x86_64-darwin-18 vendor/v8/include/cppgc/liveness-broker.h
libv8-8.4.255.0-x86_64-darwin-20 vendor/v8/include/cppgc/liveness-broker.h
libv8-8.4.255.0-universal-darwin-20 vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta2-x86_64-darwin-20 vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta2-x86_64-solaris-2.11 vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta2-x86_64-linux vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta2-x86_64-linux-musl vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta2-x86_64-darwin-19 vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta1-x86_64-linux vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta1-x86_64-linux-musl vendor/v8/include/cppgc/liveness-broker.h
libv8-node-14.14.0.0.beta1-x86_64-darwin-19 vendor/v8/include/cppgc/liveness-broker.h
libv8-8.4.255.0-x86_64-darwin-18 vendor/v8/include/cppgc/liveness-broker.h
libv8-8.4.255.0-x86_64-darwin-17 vendor/v8/include/cppgc/liveness-broker.h
libv8-8.4.255.0-x86_64-linux vendor/v8/include/cppgc/liveness-broker.h