e963b636a5
Adds testing API that can only be used after enabling it on a heap. The call that enables testing is only provided via v8_for_testing or cppgc_for_testing build targets which protects against misusing from production code. Change-Id: I24a8f5543a2bb479481384e2c555d231383e5d12 Bug: chromium:1056170 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2667513 Reviewed-by: Hannes Payer <hpayer@chromium.org> Reviewed-by: Ulan Degenbaev <ulan@chromium.org> Reviewed-by: Omer Katz <omerkatz@chromium.org> Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#72503}
27 lines
866 B
C++
27 lines
866 B
C++
// 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_MACROS_H_
|
|
#define INCLUDE_CPPGC_MACROS_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "cppgc/internal/compiler-specific.h"
|
|
|
|
namespace cppgc {
|
|
|
|
// Use if the object is only stack allocated.
|
|
#define CPPGC_STACK_ALLOCATED() \
|
|
public: \
|
|
using IsStackAllocatedTypeMarker CPPGC_UNUSED = int; \
|
|
\
|
|
private: \
|
|
void* operator new(size_t) = delete; \
|
|
void* operator new(size_t, void*) = delete; \
|
|
static_assert(true, "Force semicolon.")
|
|
|
|
} // namespace cppgc
|
|
|
|
#endif // INCLUDE_CPPGC_MACROS_H_
|