2013-06-03 15:32:22 +00:00
|
|
|
// Copyright 2013 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2013-06-03 15:32:22 +00:00
|
|
|
|
2019-05-24 13:51:59 +00:00
|
|
|
#ifndef V8_COMMON_ASSERT_SCOPE_H_
|
|
|
|
#define V8_COMMON_ASSERT_SCOPE_H_
|
2013-06-03 15:32:22 +00:00
|
|
|
|
2014-10-21 08:25:14 +00:00
|
|
|
#include <stdint.h>
|
2018-10-17 09:37:12 +00:00
|
|
|
|
2014-09-29 09:39:22 +00:00
|
|
|
#include "src/base/macros.h"
|
2019-03-06 12:38:08 +00:00
|
|
|
#include "src/base/optional.h"
|
2019-05-24 13:51:59 +00:00
|
|
|
#include "src/common/globals.h"
|
2019-05-23 13:27:57 +00:00
|
|
|
#include "src/utils/pointer-with-payload.h"
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2014-09-29 09:39:22 +00:00
|
|
|
// Forward declarations.
|
2013-06-03 15:32:22 +00:00
|
|
|
class Isolate;
|
2014-09-29 09:39:22 +00:00
|
|
|
class PerThreadAssertData;
|
|
|
|
|
2018-10-17 09:37:12 +00:00
|
|
|
template <>
|
|
|
|
struct PointerWithPayloadTraits<PerThreadAssertData> {
|
|
|
|
static constexpr int value = 1;
|
|
|
|
};
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
enum PerThreadAssertType {
|
|
|
|
HEAP_ALLOCATION_ASSERT,
|
|
|
|
HANDLE_ALLOCATION_ASSERT,
|
|
|
|
HANDLE_DEREFERENCE_ASSERT,
|
|
|
|
DEFERRED_HANDLE_DEREFERENCE_ASSERT,
|
2013-08-12 14:10:25 +00:00
|
|
|
CODE_DEPENDENCY_CHANGE_ASSERT,
|
2013-06-03 15:32:22 +00:00
|
|
|
LAST_PER_THREAD_ASSERT_TYPE
|
|
|
|
};
|
|
|
|
|
2014-03-19 11:31:43 +00:00
|
|
|
enum PerIsolateAssertType {
|
|
|
|
JAVASCRIPT_EXECUTION_ASSERT,
|
2014-03-19 13:06:53 +00:00
|
|
|
JAVASCRIPT_EXECUTION_THROWS,
|
2018-10-15 12:13:54 +00:00
|
|
|
JAVASCRIPT_EXECUTION_DUMP,
|
2014-07-16 06:59:14 +00:00
|
|
|
DEOPTIMIZATION_ASSERT,
|
2017-01-17 13:01:03 +00:00
|
|
|
COMPILATION_ASSERT,
|
|
|
|
NO_EXCEPTION_ASSERT
|
2014-03-19 11:31:43 +00:00
|
|
|
};
|
|
|
|
|
2014-09-29 09:39:22 +00:00
|
|
|
template <PerThreadAssertType kType, bool kAllow>
|
|
|
|
class PerThreadAssertScope {
|
2013-06-03 15:32:22 +00:00
|
|
|
public:
|
2016-09-26 07:40:24 +00:00
|
|
|
V8_EXPORT_PRIVATE PerThreadAssertScope();
|
|
|
|
V8_EXPORT_PRIVATE ~PerThreadAssertScope();
|
2013-06-03 15:32:22 +00:00
|
|
|
|
2016-09-26 07:40:24 +00:00
|
|
|
V8_EXPORT_PRIVATE static bool IsAllowed();
|
2013-06-05 09:41:24 +00:00
|
|
|
|
2017-01-17 12:46:02 +00:00
|
|
|
void Release();
|
|
|
|
|
2013-06-03 15:32:22 +00:00
|
|
|
private:
|
2018-10-17 09:37:12 +00:00
|
|
|
PointerWithPayload<PerThreadAssertData, bool, 1> data_and_old_state_;
|
|
|
|
|
|
|
|
V8_INLINE void set_data(PerThreadAssertData* data) {
|
|
|
|
data_and_old_state_.SetPointer(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
V8_INLINE PerThreadAssertData* data() const {
|
|
|
|
return data_and_old_state_.GetPointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
V8_INLINE void set_old_state(bool old_state) {
|
|
|
|
return data_and_old_state_.SetPayload(old_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
V8_INLINE bool old_state() const { return data_and_old_state_.GetPayload(); }
|
2014-03-19 11:31:43 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(PerThreadAssertScope);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <PerIsolateAssertType type, bool allow>
|
2014-09-29 09:39:22 +00:00
|
|
|
class PerIsolateAssertScope {
|
2014-03-19 11:31:43 +00:00
|
|
|
public:
|
2019-04-04 08:46:51 +00:00
|
|
|
V8_EXPORT_PRIVATE explicit PerIsolateAssertScope(Isolate* isolate);
|
|
|
|
V8_EXPORT_PRIVATE ~PerIsolateAssertScope();
|
2014-03-19 11:31:43 +00:00
|
|
|
|
2014-09-29 09:39:22 +00:00
|
|
|
static bool IsAllowed(Isolate* isolate);
|
2014-03-19 11:31:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Isolate* isolate_;
|
2014-09-29 09:39:22 +00:00
|
|
|
uint32_t old_data_;
|
2014-03-19 11:31:43 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(PerIsolateAssertScope);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <PerThreadAssertType type, bool allow>
|
|
|
|
#ifdef DEBUG
|
2019-05-24 13:51:59 +00:00
|
|
|
class PerThreadAssertScopeDebugOnly : public PerThreadAssertScope<type, allow> {
|
2014-03-19 11:31:43 +00:00
|
|
|
#else
|
|
|
|
class PerThreadAssertScopeDebugOnly {
|
|
|
|
public:
|
2018-09-21 09:44:22 +00:00
|
|
|
PerThreadAssertScopeDebugOnly() { // NOLINT (modernize-use-equals-default)
|
2018-09-19 17:03:08 +00:00
|
|
|
// Define a constructor to avoid unused variable warnings.
|
|
|
|
}
|
2017-01-17 12:46:02 +00:00
|
|
|
void Release() {}
|
2014-03-19 11:31:43 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
template <PerIsolateAssertType type, bool allow>
|
|
|
|
#ifdef DEBUG
|
2019-05-24 13:51:59 +00:00
|
|
|
class PerIsolateAssertScopeDebugOnly
|
|
|
|
: public PerIsolateAssertScope<type, allow> {
|
2014-03-19 11:31:43 +00:00
|
|
|
public:
|
|
|
|
explicit PerIsolateAssertScopeDebugOnly(Isolate* isolate)
|
2019-05-24 13:51:59 +00:00
|
|
|
: PerIsolateAssertScope<type, allow>(isolate) {}
|
2014-03-19 11:31:43 +00:00
|
|
|
#else
|
|
|
|
class PerIsolateAssertScopeDebugOnly {
|
|
|
|
public:
|
2019-05-24 13:51:59 +00:00
|
|
|
explicit PerIsolateAssertScopeDebugOnly(Isolate* isolate) {}
|
2013-06-03 15:32:22 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2014-03-19 11:31:43 +00:00
|
|
|
// Per-thread assert scopes.
|
|
|
|
|
2013-06-03 15:32:22 +00:00
|
|
|
// Scope to document where we do not expect handles to be created.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowHandleAllocation =
|
|
|
|
PerThreadAssertScopeDebugOnly<HANDLE_ALLOCATION_ASSERT, false>;
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowHandleAllocation.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowHandleAllocation =
|
|
|
|
PerThreadAssertScopeDebugOnly<HANDLE_ALLOCATION_ASSERT, true>;
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
// Scope to document where we do not expect any allocation and GC.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowHeapAllocation =
|
|
|
|
PerThreadAssertScopeDebugOnly<HEAP_ALLOCATION_ASSERT, false>;
|
2018-10-15 08:41:39 +00:00
|
|
|
#ifdef DEBUG
|
2019-02-13 00:33:17 +00:00
|
|
|
#define DISALLOW_HEAP_ALLOCATION(name) DisallowHeapAllocation name;
|
2018-10-15 08:41:39 +00:00
|
|
|
#else
|
|
|
|
#define DISALLOW_HEAP_ALLOCATION(name)
|
|
|
|
#endif
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowHeapAllocation.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowHeapAllocation =
|
|
|
|
PerThreadAssertScopeDebugOnly<HEAP_ALLOCATION_ASSERT, true>;
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
// Scope to document where we do not expect any handle dereferences.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowHandleDereference =
|
|
|
|
PerThreadAssertScopeDebugOnly<HANDLE_DEREFERENCE_ASSERT, false>;
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowHandleDereference.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowHandleDereference =
|
|
|
|
PerThreadAssertScopeDebugOnly<HANDLE_DEREFERENCE_ASSERT, true>;
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
// Scope to document where we do not expect deferred handles to be dereferenced.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowDeferredHandleDereference =
|
|
|
|
PerThreadAssertScopeDebugOnly<DEFERRED_HANDLE_DEREFERENCE_ASSERT, false>;
|
2013-06-03 15:32:22 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowDeferredHandleDereference.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowDeferredHandleDereference =
|
|
|
|
PerThreadAssertScopeDebugOnly<DEFERRED_HANDLE_DEREFERENCE_ASSERT, true>;
|
2013-06-03 15:32:22 +00:00
|
|
|
|
2013-08-12 14:10:25 +00:00
|
|
|
// Scope to document where we do not expect deferred handles to be dereferenced.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowCodeDependencyChange =
|
|
|
|
PerThreadAssertScopeDebugOnly<CODE_DEPENDENCY_CHANGE_ASSERT, false>;
|
2013-08-12 14:10:25 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowDeferredHandleDereference.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowCodeDependencyChange =
|
|
|
|
PerThreadAssertScopeDebugOnly<CODE_DEPENDENCY_CHANGE_ASSERT, true>;
|
2013-08-12 14:10:25 +00:00
|
|
|
|
2018-07-25 06:38:06 +00:00
|
|
|
class DisallowHeapAccess {
|
2019-03-06 12:38:08 +00:00
|
|
|
DisallowCodeDependencyChange no_dependency_change_;
|
2018-07-25 06:38:06 +00:00
|
|
|
DisallowHandleAllocation no_handle_allocation_;
|
|
|
|
DisallowHandleDereference no_handle_dereference_;
|
2019-03-06 12:38:08 +00:00
|
|
|
DisallowHeapAllocation no_heap_allocation_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DisallowHeapAccessIf {
|
|
|
|
public:
|
|
|
|
explicit DisallowHeapAccessIf(bool condition) {
|
|
|
|
if (condition) maybe_disallow_.emplace();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
base::Optional<DisallowHeapAccess> maybe_disallow_;
|
2018-07-25 06:38:06 +00:00
|
|
|
};
|
2014-03-19 11:31:43 +00:00
|
|
|
|
|
|
|
// Per-isolate assert scopes.
|
|
|
|
|
|
|
|
// Scope to document where we do not expect javascript execution.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowJavascriptExecution =
|
|
|
|
PerIsolateAssertScope<JAVASCRIPT_EXECUTION_ASSERT, false>;
|
2014-03-19 11:31:43 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowJavascriptExecution.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowJavascriptExecution =
|
|
|
|
PerIsolateAssertScope<JAVASCRIPT_EXECUTION_ASSERT, true>;
|
2014-03-19 11:31:43 +00:00
|
|
|
|
2017-01-17 13:01:03 +00:00
|
|
|
// Scope to document where we do not expect javascript execution (debug only)
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowJavascriptExecutionDebugOnly =
|
|
|
|
PerIsolateAssertScopeDebugOnly<JAVASCRIPT_EXECUTION_ASSERT, false>;
|
2017-01-17 13:01:03 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowJavascriptExecutionDebugOnly.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowJavascriptExecutionDebugOnly =
|
|
|
|
PerIsolateAssertScopeDebugOnly<JAVASCRIPT_EXECUTION_ASSERT, true>;
|
2017-01-17 13:01:03 +00:00
|
|
|
|
2014-03-19 13:06:53 +00:00
|
|
|
// Scope in which javascript execution leads to exception being thrown.
|
2019-05-27 11:31:49 +00:00
|
|
|
using ThrowOnJavascriptExecution =
|
|
|
|
PerIsolateAssertScope<JAVASCRIPT_EXECUTION_THROWS, false>;
|
2014-03-19 13:06:53 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to ThrowOnJavascriptExecution.
|
2019-05-27 11:31:49 +00:00
|
|
|
using NoThrowOnJavascriptExecution =
|
|
|
|
PerIsolateAssertScope<JAVASCRIPT_EXECUTION_THROWS, true>;
|
2014-03-19 13:06:53 +00:00
|
|
|
|
2018-10-15 12:13:54 +00:00
|
|
|
// Scope in which javascript execution causes dumps.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DumpOnJavascriptExecution =
|
|
|
|
PerIsolateAssertScope<JAVASCRIPT_EXECUTION_DUMP, false>;
|
2018-10-15 12:13:54 +00:00
|
|
|
|
|
|
|
// Scope in which javascript execution causes dumps.
|
2019-05-27 11:31:49 +00:00
|
|
|
using NoDumpOnJavascriptExecution =
|
|
|
|
PerIsolateAssertScope<JAVASCRIPT_EXECUTION_DUMP, true>;
|
2018-10-15 12:13:54 +00:00
|
|
|
|
2014-04-28 06:47:05 +00:00
|
|
|
// Scope to document where we do not expect deoptimization.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowDeoptimization =
|
|
|
|
PerIsolateAssertScopeDebugOnly<DEOPTIMIZATION_ASSERT, false>;
|
2014-04-28 06:47:05 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowDeoptimization.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowDeoptimization =
|
|
|
|
PerIsolateAssertScopeDebugOnly<DEOPTIMIZATION_ASSERT, true>;
|
2014-04-28 06:47:05 +00:00
|
|
|
|
2014-07-16 06:59:14 +00:00
|
|
|
// Scope to document where we do not expect deoptimization.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowCompilation =
|
|
|
|
PerIsolateAssertScopeDebugOnly<COMPILATION_ASSERT, false>;
|
2014-07-16 06:59:14 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowDeoptimization.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowCompilation =
|
|
|
|
PerIsolateAssertScopeDebugOnly<COMPILATION_ASSERT, true>;
|
2017-01-17 13:01:03 +00:00
|
|
|
|
|
|
|
// Scope to document where we do not expect exceptions.
|
2019-05-27 11:31:49 +00:00
|
|
|
using DisallowExceptions =
|
|
|
|
PerIsolateAssertScopeDebugOnly<NO_EXCEPTION_ASSERT, false>;
|
2017-01-17 13:01:03 +00:00
|
|
|
|
|
|
|
// Scope to introduce an exception to DisallowExceptions.
|
2019-05-27 11:31:49 +00:00
|
|
|
using AllowExceptions =
|
|
|
|
PerIsolateAssertScopeDebugOnly<NO_EXCEPTION_ASSERT, true>;
|
2019-02-23 22:09:41 +00:00
|
|
|
|
|
|
|
// Explicit instantiation declarations.
|
|
|
|
extern template class PerThreadAssertScope<HEAP_ALLOCATION_ASSERT, false>;
|
|
|
|
extern template class PerThreadAssertScope<HEAP_ALLOCATION_ASSERT, true>;
|
|
|
|
extern template class PerThreadAssertScope<HANDLE_ALLOCATION_ASSERT, false>;
|
|
|
|
extern template class PerThreadAssertScope<HANDLE_ALLOCATION_ASSERT, true>;
|
|
|
|
extern template class PerThreadAssertScope<HANDLE_DEREFERENCE_ASSERT, false>;
|
|
|
|
extern template class PerThreadAssertScope<HANDLE_DEREFERENCE_ASSERT, true>;
|
|
|
|
extern template class PerThreadAssertScope<DEFERRED_HANDLE_DEREFERENCE_ASSERT,
|
|
|
|
false>;
|
|
|
|
extern template class PerThreadAssertScope<DEFERRED_HANDLE_DEREFERENCE_ASSERT,
|
|
|
|
true>;
|
|
|
|
extern template class PerThreadAssertScope<CODE_DEPENDENCY_CHANGE_ASSERT,
|
|
|
|
false>;
|
|
|
|
extern template class PerThreadAssertScope<CODE_DEPENDENCY_CHANGE_ASSERT, true>;
|
|
|
|
|
|
|
|
extern template class PerIsolateAssertScope<JAVASCRIPT_EXECUTION_ASSERT, false>;
|
|
|
|
extern template class PerIsolateAssertScope<JAVASCRIPT_EXECUTION_ASSERT, true>;
|
|
|
|
extern template class PerIsolateAssertScope<JAVASCRIPT_EXECUTION_THROWS, false>;
|
|
|
|
extern template class PerIsolateAssertScope<JAVASCRIPT_EXECUTION_THROWS, true>;
|
|
|
|
extern template class PerIsolateAssertScope<JAVASCRIPT_EXECUTION_DUMP, false>;
|
|
|
|
extern template class PerIsolateAssertScope<JAVASCRIPT_EXECUTION_DUMP, true>;
|
|
|
|
extern template class PerIsolateAssertScope<DEOPTIMIZATION_ASSERT, false>;
|
|
|
|
extern template class PerIsolateAssertScope<DEOPTIMIZATION_ASSERT, true>;
|
|
|
|
extern template class PerIsolateAssertScope<COMPILATION_ASSERT, false>;
|
|
|
|
extern template class PerIsolateAssertScope<COMPILATION_ASSERT, true>;
|
|
|
|
extern template class PerIsolateAssertScope<NO_EXCEPTION_ASSERT, false>;
|
|
|
|
extern template class PerIsolateAssertScope<NO_EXCEPTION_ASSERT, true>;
|
|
|
|
|
2015-09-30 13:46:56 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|
2013-06-03 15:32:22 +00:00
|
|
|
|
2019-05-24 13:51:59 +00:00
|
|
|
#endif // V8_COMMON_ASSERT_SCOPE_H_
|