Home
last modified time | relevance | path

Searched refs:global_handles (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/
Dglobal-handles.cc382 explicit NodeBlock(GlobalHandles* global_handles, NodeBlock* next) in NodeBlock() argument
387 global_handles_(global_handles) {} in NodeBlock()
423 GlobalHandles* global_handles() { return global_handles_; } in global_handles() function in v8::internal::GlobalHandles::NodeBlock
443 return FindBlock()->global_handles(); in GetGlobalHandles()
459 GlobalHandles* global_handles = node_block->global_handles(); in IncreaseBlockUses() local
460 global_handles->isolate()->counters()->global_handles()->Increment(); in IncreaseBlockUses()
461 global_handles->number_of_global_handles_++; in IncreaseBlockUses()
467 GlobalHandles* global_handles = node_block->global_handles(); in DecreaseBlockUses() local
468 data_.next_free = global_handles->first_free_; in DecreaseBlockUses()
469 global_handles->first_free_ = this; in DecreaseBlockUses()
[all …]
Dvalue-serializer.cc1007 id_map_(isolate->global_handles()->Create( in ValueDeserializer()
1137 array_buffer_transfer_map_ = isolate_->global_handles()->Create( in TransferArrayBuffer()
1147 isolate_->global_handles()->Create(*new_dictionary); in TransferArrayBuffer()
2057 id_map_ = isolate_->global_handles()->Create(*new_array); in AddObjectWithID()
Dcounters.h1300 SC(global_handles, V8.GlobalHandles) \
Disolate.h1053 GlobalHandles* global_handles() { return global_handles_; } in global_handles() function
Disolate.cc2038 Handle<JSObject> global_promise = global_handles()->Create(*promise); in Throw()
2050 global_handles()->Destroy(global_promise.location()); in Throw()
Dapi.cc980 i::Handle<i::Object> result = isolate->global_handles()->Create(*obj); in GlobalizeReference()
7528 reinterpret_cast<i::Isolate*>(isolate)->global_handles()->Create( in AsyncCompilationResolver()
8580 size_t result = isolate->global_handles()->NumberOfPhantomHandleResets(); in NumberOfPhantomHandleResetsSinceLastCall()
8581 isolate->global_handles()->ResetNumberOfPhantomHandleResets(); in NumberOfPhantomHandleResetsSinceLastCall()
8946 isolate->global_handles()->IterateAllRootsWithClassIds(visitor); in VisitHandlesWithClassIds()
8954 isolate->global_handles()->IterateAllRootsInNewSpaceWithClassIds(visitor); in VisitHandlesForPartialDependence()
8961 isolate->global_handles()->IterateWeakRootsInNewSpaceWithClassIds(visitor); in VisitWeakHandles()
/external/v8/src/compiler-dispatcher/
Dunoptimized-compile-job.cc74 context_(isolate->global_handles()->Create(isolate->context())), in UnoptimizedCompileJob()
75 shared_(isolate->global_handles()->Create(*shared)), in UnoptimizedCompileJob()
150 source_ = isolate->global_handles()->Create(*source); in PrepareOnMainThread()
193 wrapper_ = isolate->global_handles()->Create(*wrapper); in PrepareOnMainThread()
/external/v8/src/objects/
Dmanaged.h99 Handle<Object> global_handle = isolate->global_handles()->Create(*handle); in FromSharedPtr()
Dintl-objects.cc1887 Handle<Object> wrapper = isolate->global_handles()->Create(*local_object); in CreateNumberFormat()
/external/v8/src/heap/
Dmark-compact.cc1818 heap()->isolate()->global_handles()->IdentifyWeakHandles( in MarkLiveObjects()
1828 heap()->isolate()->global_handles()->IterateWeakRootsForFinalizers( in MarkLiveObjects()
1845 heap()->isolate()->global_handles()->IterateWeakRootsForPhantomHandles( in MarkLiveObjects()
3051 GlobalHandlesUpdatingItem(Heap* heap, GlobalHandles* global_handles, in GlobalHandlesUpdatingItem() argument
3054 global_handles_(global_handles), in GlobalHandlesUpdatingItem()
3537 void SeedGlobalHandles(Heap* heap, GlobalHandles* global_handles, in SeedGlobalHandles() argument
3541 const size_t new_space_nodes = global_handles->NumberOfNewSpaceNodes(); in SeedGlobalHandles()
3546 job->AddItem(new ParallelItem(heap, global_handles, start, end)); in SeedGlobalHandles()
3726 heap(), isolate()->global_handles(), &updating_job); in UpdatePointersAfterEvacuation()
4172 GlobalHandlesMarkingItem(Heap* heap, GlobalHandles* global_handles, in GlobalHandlesMarkingItem() argument
[all …]
Dheap.cc972 if (FLAG_print_global_handles) isolate_->global_handles()->Print(); in GarbageCollectionEpilogue()
1327 isolate()->global_handles()->InvokeSecondPassPhantomCallbacks(); in CollectGarbage()
1769 isolate_->global_handles()->PostGarbageCollectionProcessing( in PerformGarbageCollection()
2147 isolate()->global_handles()->IdentifyWeakUnmodifiedObjects( in Scavenge()
2166 isolate()->global_handles()->MarkNewSpaceWeakUnmodifiedObjectsPending( in Scavenge()
2169 ->global_handles() in Scavenge()
2177 ->global_handles() in Scavenge()
4195 isolate_->global_handles()->IterateStrongRoots(v); in IterateStrongRoots()
4198 isolate_->global_handles()->IterateNewSpaceStrongAndDependentRoots(v); in IterateStrongRoots()
4208 isolate_->global_handles()->IterateAllRoots(v); in IterateStrongRoots()
[all …]
/external/v8/src/snapshot/
Dstartup-serializer.cc197 isolate_->global_handles()->IterateAllRoots(this); in CheckGlobalAndEternalHandles()
/external/v8/src/runtime/
Druntime-intl.cc225 Handle<Object> wrapper = isolate->global_handles()->Create(*local_object); in RUNTIME_FUNCTION()
370 Handle<Object> wrapper = isolate->global_handles()->Create(*local_object); in RUNTIME_FUNCTION()
/external/v8/src/wasm/
Dwasm-js.cc213 : promise_(isolate->global_handles()->Create(*promise)) {} in AsyncCompilationResolver()
249 : promise_(isolate->global_handles()->Create(*promise)) {} in InstantiateModuleResultResolver()
284 promise_(isolate_->global_handles()->Create(*promise)), in InstantiateBytesResultResolver()
285 module_(isolate_->global_handles()->Create(*module)) {} in InstantiateBytesResultResolver()
346 promise_(isolate_->global_handles()->Create(*promise)), in AsyncInstantiateCompileResultResolver()
349 : isolate_->global_handles()->Create( in AsyncInstantiateCompileResultResolver()
Dwasm-objects.cc1333 Handle<Object> global_handle = isolate->global_handles()->Create(*instance); in InstallFinalizer()
Dwasm-interpreter.cc3101 Handle<Object> handle = isolate->global_handles()->Create(*instance_object); in MakeWeak()
/external/v8/src/profiler/
Dallocation-tracker.cc290 script_ = script->GetIsolate()->global_handles()->Create(script); in UnresolvedLocation()
Dheap-snapshot-generator.cc1985 isolate->global_handles()->IterateAllRoots(&enumerator); in TagGlobalObjects()
2240 isolate_->global_handles()->IterateAllRootsWithClassIds(&extractor); in FillRetainedObjects()
/external/v8/src/builtins/
Dbuiltins-array.cc614 storage_(isolate->global_handles()->Create(*storage)), in ArrayConcatVisitor()
756 storage_ = isolate_->global_handles()->Create(storage); in set_storage()
/external/v8/src/debug/
Ddebug.cc392 GlobalHandles* global_handles = isolate->global_handles(); in DebugInfoListNode() local
393 debug_info_ = global_handles->Create(debug_info).location(); in DebugInfoListNode()