Home
last modified time | relevance | path

Searched refs:GlobalHandles (Results 1 – 19 of 19) sorted by relevance

/external/v8/src/handles/
Dglobal-handles.cc40 class GlobalHandles::NodeBlock final {
48 NodeBlock(GlobalHandles* global_handles, in NodeBlock()
49 GlobalHandles::NodeSpace<NodeType>* space, in NodeBlock()
56 GlobalHandles::NodeSpace<NodeType>* space() const { return space_; } in space()
57 GlobalHandles* global_handles() const { return global_handles_; } in global_handles()
71 GlobalHandles* const global_handles_;
72 GlobalHandles::NodeSpace<NodeType>* const space_;
81 const GlobalHandles::NodeBlock<NodeType>*
82 GlobalHandles::NodeBlock<NodeType>::From(const NodeType* node) { in From()
90 GlobalHandles::NodeBlock<NodeType>* GlobalHandles::NodeBlock<NodeType>::From( in From()
[all …]
Dglobal-handles.h43 class V8_EXPORT_PRIVATE GlobalHandles final {
92 explicit GlobalHandles(Isolate* isolate);
93 ~GlobalHandles();
212 static GlobalHandles* From(const TracedNode*);
256 DISALLOW_COPY_AND_ASSIGN(GlobalHandles);
259 class GlobalHandles::PendingPhantomCallback final {
/external/v8/src/profiler/
Dallocation-tracker.cc282 GlobalHandles::MakeWeak(script_.location(), this, &HandleWeakScript, in UnresolvedLocation()
288 GlobalHandles::Destroy(script_.location()); in ~UnresolvedLocation()
304 GlobalHandles::Destroy(loc->script_.location()); in HandleWeakScript()
/external/v8/src/objects/
Dmanaged.cc30 GlobalHandles::Destroy(destructor->global_handle_location_); in ManagedObjectFinalizer()
Dmanaged.h105 GlobalHandles::MakeWeak(destructor->global_handle_location_, destructor, in FromSharedPtr()
Dvalue-serializer.cc1088 GlobalHandles::Destroy(id_map_.location()); in ~ValueDeserializer()
1092 GlobalHandles::Destroy(transfer_map_handle.location()); in ~ValueDeserializer()
1222 GlobalHandles::Destroy(dictionary.location()); in TransferArrayBuffer()
2160 GlobalHandles::Destroy(id_map_.location()); in AddObjectWithID()
/external/v8/tools/cfi/
Dblacklist.txt24 fun:*GlobalHandles*PostGarbageCollectionProcessing*
/external/v8/src/wasm/
Dwasm-js.cc251 i::GlobalHandles::AnnotateStrongRetainer(promise_.location(), in AsyncCompilationResolver()
256 i::GlobalHandles::Destroy(promise_.location()); in ~AsyncCompilationResolver()
294 i::GlobalHandles::AnnotateStrongRetainer(promise_.location(), in InstantiateModuleResultResolver()
299 i::GlobalHandles::Destroy(promise_.location()); in ~InstantiateModuleResultResolver()
337 i::GlobalHandles::AnnotateStrongRetainer(promise_.location(), in InstantiateBytesResultResolver()
339 i::GlobalHandles::AnnotateStrongRetainer(module_.location(), in InstantiateBytesResultResolver()
344 i::GlobalHandles::Destroy(promise_.location()); in ~InstantiateBytesResultResolver()
345 i::GlobalHandles::Destroy(module_.location()); in ~InstantiateBytesResultResolver()
404 i::GlobalHandles::AnnotateStrongRetainer(promise_.location(), in AsyncInstantiateCompileResultResolver()
407 i::GlobalHandles::AnnotateStrongRetainer( in AsyncInstantiateCompileResultResolver()
[all …]
Dwasm-engine.cc135 GlobalHandles::MakeWeak(location_.get()); in WeakScriptHandle()
Dc-api.cc753 ~RefImpl() { i::GlobalHandles::Destroy(location()); } in ~RefImpl()
/external/v8/src/compiler-dispatcher/
Dcompiler-dispatcher.cc375 GlobalHandles::Destroy(function.location()); in RemoveJob()
/external/v8/src/logging/
Dcounters-definitions.h243 SC(global_handles, V8.GlobalHandles) \
/external/v8/src/execution/
Disolate.h1098 GlobalHandles* global_handles() { return global_handles_; } in global_handles()
1777 GlobalHandles* global_handles_ = nullptr;
Disolate.cc3506 global_handles_ = new GlobalHandles(this); in ThrowInternal()
/external/v8/src/debug/
Ddebug.cc409 GlobalHandles* global_handles = isolate->global_handles(); in DebugInfoListNode()
415 GlobalHandles::Destroy(debug_info_); in ~DebugInfoListNode()
/external/v8/src/api/
Dapi.cc998 i::Handle<i::Object> result = i::GlobalHandles::CopyGlobal(from); in CopyGlobalReference()
1003 i::GlobalHandles::MoveGlobal(from, to); in MoveGlobalReference()
1008 i::GlobalHandles::MoveTracedGlobal(from, to); in MoveTracedGlobalReference()
1013 i::GlobalHandles::CopyTracedGlobal(from, to); in CopyTracedGlobalReference()
1019 i::GlobalHandles::MakeWeak(location, parameter, weak_callback, type); in MakeWeak()
1023 i::GlobalHandles::MakeWeak(location_addr); in MakeWeak()
1027 return i::GlobalHandles::ClearWeakness(location); in ClearWeak()
1031 i::GlobalHandles::AnnotateStrongRetainer(location, label); in AnnotateStrongRetainer()
1035 i::GlobalHandles::Destroy(location); in DisposeGlobal()
1039 i::GlobalHandles::DestroyTraced(location); in DisposeTracedGlobal()
[all …]
/external/v8/src/builtins/
Dbuiltins-array.cc785 inline void clear_storage() { GlobalHandles::Destroy(storage_.location()); } in clear_storage()
/external/v8/src/heap/
Dheap.cc5315 GlobalHandles::MarkTraced(location); in RegisterExternallyReferencedObject()
/external/v8/include/
Dv8.h135 class GlobalHandles; variable