/
snap
/
node
/
11782
/
include
/
node
/
/snap/node/11782/include/node
mkdir
upload
Name
Size
Mode
Actions
cppgc/
-
0755
rm
libplatform/
-
0755
rm
openssl/
-
0755
rm
uv/
-
0755
rm
common.gypi
26973
0644
edit
dl
rm
config.gypi
18657
0644
edit
dl
rm
js_native_api.h
31770
0644
edit
dl
rm
js_native_api_types.h
7603
0644
edit
dl
rm
node.h
69595
0644
edit
dl
rm
node_api.h
10370
0644
edit
dl
rm
node_api_types.h
1825
0644
edit
dl
rm
node_buffer.h
3684
0644
edit
dl
rm
node_object_wrap.h
3867
0644
edit
dl
rm
node_version.h
4243
0644
edit
dl
rm
uv.h
72810
0644
edit
dl
rm
v8-array-buffer.h
18316
0644
edit
dl
rm
v8-callbacks.h
16993
0644
edit
dl
rm
v8-container.h
5959
0644
edit
dl
rm
v8-context.h
18184
0644
edit
dl
rm
v8-cppgc.h
7641
0644
edit
dl
rm
v8-data.h
1623
0644
edit
dl
rm
v8-date.h
1218
0644
edit
dl
rm
v8-debug.h
5161
0644
edit
dl
rm
v8-embedder-heap.h
2775
0644
edit
dl
rm
v8-embedder-state-scope.h
1493
0644
edit
dl
rm
v8-exception.h
7589
0644
edit
dl
rm
v8-extension.h
1870
0644
edit
dl
rm
v8-external.h
924
0644
edit
dl
rm
v8-forward.h
1688
0644
edit
dl
rm
v8-function-callback.h
19648
0644
edit
dl
rm
v8-function.h
4530
0644
edit
dl
rm
v8-handle-base.h
4404
0644
edit
dl
rm
v8-initialization.h
10478
0644
edit
dl
rm
v8-internal.h
58594
0644
edit
dl
rm
v8-isolate.h
64906
0644
edit
dl
rm
v8-json.h
1356
0644
edit
dl
rm
v8-local-handle.h
24162
0644
edit
dl
rm
v8-locker.h
3956
0644
edit
dl
rm
v8-maybe.h
4574
0644
edit
dl
rm
v8-memory-span.h
6421
0644
edit
dl
rm
v8-message.h
7418
0644
edit
dl
rm
v8-microtask-queue.h
5069
0644
edit
dl
rm
v8-microtask.h
861
0644
edit
dl
rm
v8-object.h
30261
0644
edit
dl
rm
v8-persistent-handle.h
18239
0644
edit
dl
rm
v8-platform.h
49052
0644
edit
dl
rm
v8-primitive-object.h
2591
0644
edit
dl
rm
v8-primitive.h
28358
0644
edit
dl
rm
v8-profiler.h
42101
0644
edit
dl
rm
v8-promise.h
5294
0644
edit
dl
rm
v8-proxy.h
1255
0644
edit
dl
rm
v8-regexp.h
3171
0644
edit
dl
rm
v8-script.h
31327
0644
edit
dl
rm
v8-snapshot.h
10389
0644
edit
dl
rm
v8-source-location.h
2597
0644
edit
dl
rm
v8-statistics.h
7627
0644
edit
dl
rm
v8-template.h
51569
0644
edit
dl
rm
v8-traced-handle.h
12700
0644
edit
dl
rm
v8-typed-array.h
11571
0644
edit
dl
rm
v8-unwinder.h
4751
0644
edit
dl
rm
v8-value-serializer.h
10815
0644
edit
dl
rm
v8-value.h
17107
0644
edit
dl
rm
v8-version.h
773
0644
edit
dl
rm
v8-wasm.h
6148
0644
edit
dl
rm
v8-weak-callback-info.h
2471
0644
edit
dl
rm
v8.h
3775
0644
edit
dl
rm
v8config.h
33641
0644
edit
dl
rm
zconf.h
16995
0644
edit
dl
rm
zlib.h
97454
0644
edit
dl
rm
Edit:
/snap/node/11782/include/node/v8-embedder-heap.h
(2775B)
// Copyright 2021 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_V8_EMBEDDER_HEAP_H_ #define INCLUDE_V8_EMBEDDER_HEAP_H_ #include "v8-traced-handle.h" // NOLINT(build/include_directory) #include "v8config.h" // NOLINT(build/include_directory) namespace v8 { namespace internal { class TracedHandles; } // namespace internal class Isolate; class Value; /** * Handler for embedder roots on non-unified heap garbage collections. */ class V8_EXPORT EmbedderRootsHandler { public: enum class RootHandling { kQueryEmbedderForNonDroppableReferences, kDontQueryEmbedderForAnyReference, }; virtual ~EmbedderRootsHandler() = default; EmbedderRootsHandler() = default; explicit EmbedderRootsHandler(RootHandling default_traced_reference_handling) : default_traced_reference_handling_(default_traced_reference_handling) {} /** * Returns true if the |TracedReference| handle should be considered as root * for the currently running non-tracing garbage collection and false * otherwise. The default implementation will keep all |TracedReference| * references as roots. * * If this returns false, then V8 may decide that the object referred to by * such a handle is reclaimed. In that case, V8 calls |ResetRoot()| for the * |TracedReference|. * * Note that the `handle` is different from the handle that the embedder holds * for retaining the object. * * The concrete implementations must be thread-safe. */ virtual bool IsRoot(const v8::TracedReference<v8::Value>& handle) = 0; /** * Used in combination with |IsRoot|. Called by V8 when an * object that is backed by a handle is reclaimed by a non-tracing garbage * collection. It is up to the embedder to reset the original handle. * * Note that the |handle| is different from the handle that the embedder holds * for retaining the object. It is up to the embedder to find the original * handle via the object or class id. */ virtual void ResetRoot(const v8::TracedReference<v8::Value>& handle) = 0; /** * Similar to |ResetRoot()|, but opportunistic. The function is called in * parallel for different handles and as such must be thread-safe. In case, * |false| is returned, |ResetRoot()| will be recalled for the same handle. */ virtual bool TryResetRoot(const v8::TracedReference<v8::Value>& handle) { ResetRoot(handle); return true; } private: const RootHandling default_traced_reference_handling_ = RootHandling::kQueryEmbedderForNonDroppableReferences; friend class internal::TracedHandles; }; } // namespace v8 #endif // INCLUDE_V8_EMBEDDER_HEAP_H_
Save
cmd:
run