Home
last modified time | relevance | path

Searched refs:HandleScopeImplementer (Results 1 – 16 of 16) sorted by relevance

/third_party/node/deps/v8/src/api/
Dapi.h330 class HandleScopeImplementer {
334 explicit EnteredContextRewindScope(HandleScopeImplementer* hsi) in EnteredContextRewindScope()
344 HandleScopeImplementer* hsi_;
348 explicit HandleScopeImplementer(Isolate* isolate) in HandleScopeImplementer() function
353 ~HandleScopeImplementer() { DeleteArray(spare_); } in ~HandleScopeImplementer()
355 HandleScopeImplementer(const HandleScopeImplementer&) = delete;
356 HandleScopeImplementer& operator=(const HandleScopeImplementer&) = delete;
458 void HandleScopeImplementer::SaveContext(Context context) { in SaveContext()
462 Context HandleScopeImplementer::RestoreContext() { in RestoreContext()
468 bool HandleScopeImplementer::HasSavedContexts() { in HasSavedContexts()
[all …]
Dapi-inl.h157 i::HandleScopeImplementer* impl = isolate->handle_scope_implementer();
171 i::HandleScopeImplementer* impl = isolate_->handle_scope_implementer();
319 void HandleScopeImplementer::EnterContext(Context context) { in EnterContext()
327 void HandleScopeImplementer::EnterMicrotaskContext(Context context) { in EnterMicrotaskContext()
335 Handle<Context> HandleScopeImplementer::LastEnteredContext() { in LastEnteredContext()
349 Handle<Context> HandleScopeImplementer::LastEnteredOrMicrotaskContext() { in LastEnteredOrMicrotaskContext()
Dapi.cc1040 i::HandleScopeImplementer* impl = isolate->handle_scope_implementer(); in Enter()
1050 i::HandleScopeImplementer* impl = isolate->handle_scope_implementer(); in Exit()
10482 const size_t HandleScopeImplementer::kEnteredContextsOffset =
10483 offsetof(HandleScopeImplementer, entered_contexts_);
10484 const size_t HandleScopeImplementer::kIsMicrotaskContextOffset =
10485 offsetof(HandleScopeImplementer, is_microtask_context_);
10487 void HandleScopeImplementer::FreeThreadResources() { Free(); } in FreeThreadResources()
10489 char* HandleScopeImplementer::ArchiveThread(char* storage) { in ArchiveThread()
10500 int HandleScopeImplementer::ArchiveSpacePerThread() { in ArchiveSpacePerThread()
10501 return sizeof(HandleScopeImplementer); in ArchiveSpacePerThread()
[all …]
/third_party/node/deps/v8/src/builtins/
Dbuiltins-microtask-queue-gen.cc374 IntPtrConstant(HandleScopeImplementer::kEnteredContextsOffset + in GetEnteredContextCount()
388 IntPtrConstant(HandleScopeImplementer::kEnteredContextsOffset + in EnterMicrotaskContext()
391 IntPtrConstant(HandleScopeImplementer::kEnteredContextsOffset + in EnterMicrotaskContext()
402 IntPtrConstant(HandleScopeImplementer::kEnteredContextsOffset + in EnterMicrotaskContext()
414 IntPtrConstant(HandleScopeImplementer::kIsMicrotaskContextOffset + in EnterMicrotaskContext()
417 IntPtrConstant(HandleScopeImplementer::kIsMicrotaskContextOffset + in EnterMicrotaskContext()
420 IntPtrConstant(HandleScopeImplementer::kIsMicrotaskContextOffset + in EnterMicrotaskContext()
458 IntPtrConstant(HandleScopeImplementer::kEnteredContextsOffset + in RewindEnteredContext()
473 IntPtrConstant(HandleScopeImplementer::kIsMicrotaskContextOffset + in RewindEnteredContext()
Dbuiltins-function.cc37 HandleScopeImplementer* impl = isolate->handle_scope_implementer(); in CreateDynamicFunction()
Dbuiltins.cc477 HandleScopeImplementer* impl = isolate->handle_scope_implementer(); in AllowDynamicFunction()
/third_party/node/deps/v8/src/handles/
Dpersistent-handles.h81 friend class HandleScopeImplementer; variable
117 HandleScopeImplementer* const impl_;
Dhandles.cc84 HandleScopeImplementer* impl = isolate->handle_scope_implementer(); in NumberOfHandles()
105 HandleScopeImplementer* impl = isolate->handle_scope_implementer(); in Extend()
Dhandles.h23 class HandleScopeImplementer; variable
268 friend class HandleScopeImplementer; variable
/third_party/node/deps/v8/src/execution/
Dv8threads.cc165 return HandleScopeImplementer::ArchiveSpacePerThread() + in ArchiveSpacePerThread()
307 data = HandleScopeImplementer::Iterate(v, data); in Iterate()
319 data += HandleScopeImplementer::ArchiveSpacePerThread(); in IterateArchivedThreads()
Dmicrotask-queue.cc168 HandleScopeImplementer::EnteredContextRewindScope rewind_scope( in RunMicrotasks()
Disolate.h112 class HandleScopeImplementer; variable
1256 HandleScopeImplementer* handle_scope_implementer() const { in handle_scope_implementer()
2113 HandleScopeImplementer* handle_scope_implementer_ = nullptr;
Disolate.cc3918 handle_scope_implementer_ = new HandleScopeImplementer(this); in ThrowInternal()
/third_party/node/deps/v8/src/runtime/
Druntime-internal.cc306 HandleScopeImplementer* impl = isolate->handle_scope_implementer(); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/codegen/
Dexternal-reference.cc1369 static int EnterMicrotaskContextWrapper(HandleScopeImplementer* hsi, in IF_TSAN()
/third_party/node/deps/v8/src/wasm/
Dmodule-instantiate.cc821 HandleScopeImplementer* hsi = isolate_->handle_scope_implementer(); in ExecuteStartFunction()