chromium/third_party/blink/renderer/platform/heap/thread_state_scopes.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_THREAD_STATE_SCOPES_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_THREAD_STATE_SCOPES_H_

#include "third_party/blink/renderer/platform/heap/thread_state.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "v8/include/cppgc/heap-consistency.h"

#if defined(LEAK_SANITIZER)
#include <sanitizer/lsan_interface.h>
#endif

namespace blink {

// The NoAllocationScope class is used in debug mode to catch unwanted
// allocations. E.g. allocations during GC.
class ThreadState::NoAllocationScope final {};

// The GCForbiddenScope class is used to prevent GC finalization
// when it is not safe to do so.
class ThreadState::GCForbiddenScope final {};

#if defined(LEAK_SANITIZER)
class LsanDisabledScope final {
  STACK_ALLOCATED();

 public:
  explicit LsanDisabledScope() { __lsan_disable(); }

  ~LsanDisabledScope() { __lsan_enable(); }

  LsanDisabledScope(const LsanDisabledScope&) = delete;
  LsanDisabledScope& operator=(const LsanDisabledScope&) = delete;
};

#define LEAK_SANITIZER_DISABLED_SCOPE
#else
#define LEAK_SANITIZER_DISABLED_SCOPE
#endif

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_THREAD_STATE_SCOPES_H_