HomeSort by relevance Sort by last modified time
    Searched refs:GlobalHandles (Results 1 - 13 of 13) sorted by null

  /external/v8/src/
global-handles.cc 36 class GlobalHandles::Node : public Malloced {
69 GlobalHandles::number_of_weak_handles_--;
71 GlobalHandles::number_of_global_object_weak_handles_--;
106 GlobalHandles::number_of_weak_handles_++;
108 GlobalHandles::number_of_global_object_weak_handles_++;
120 GlobalHandles::number_of_weak_handles_--;
122 GlobalHandles::number_of_global_object_weak_handles_--;
212 TRACK_MEMORY("GlobalHandles::Node")
216 class GlobalHandles::Pool BASE_EMBEDDED {
268 static GlobalHandles::Pool pool_
    [all...]
global-handles.h 60 class GlobalHandles : public AllStatic {
debug.cc 571 Handle<Script>::cast((GlobalHandles::Create(*script)));
572 GlobalHandles::MakeWeak(reinterpret_cast<Object**>(script_.location()),
606 GlobalHandles::ClearWeakness(location);
607 GlobalHandles::Destroy(location);
658 debug_info_ = Handle<DebugInfo>::cast((GlobalHandles::Create(debug_info)));
659 GlobalHandles::MakeWeak(reinterpret_cast<Object**>(debug_info_.location()),
665 GlobalHandles::Destroy(reinterpret_cast<Object**>(debug_info_.location()));
773 debug_context_ = Handle<Context>::cast(GlobalHandles::Create(*context));
789 GlobalHandles::Destroy(reinterpret_cast<Object**>(debug_context_.location()));
    [all...]
heap-profiler.cc 656 GlobalHandles::IterateWeakRoots(PrintProducerStackTrace,
684 Handle<Object> handle = GlobalHandles::Create(obj);
685 GlobalHandles::MakeWeak(handle.location(),
mark-compact.cc 558 List<ObjectGroup*>* object_groups = GlobalHandles::ObjectGroups();
707 GlobalHandles::IdentifyWeakHandles(&IsUnmarkedHeapObject);
709 GlobalHandles::IterateWeakRoots(&root_visitor);
730 GlobalHandles::RemoveObjectGroups();
    [all...]
v8-counters.h 65 SC(global_handles, V8.GlobalHandles) \
handles.cc 416 GlobalHandles::Destroy(cache.location());
438 Handle<Object> handle = GlobalHandles::Create(*result);
439 GlobalHandles::MakeWeak(handle.location(), NULL, &ClearWrapperCache);
heap.cc 345 if (FLAG_print_global_handles) GlobalHandles::Print();
580 GlobalHandles::PostGarbageCollectionProcessing();
    [all...]
api.cc 407 i::GlobalHandles::Create(*obj);
415 i::GlobalHandles::MakeWeak(object, parameters, callback);
421 i::GlobalHandles::ClearWeakness(obj);
428 return i::GlobalHandles::IsNearDeath(obj);
435 return i::GlobalHandles::IsWeak(obj);
443 i::GlobalHandles::Destroy(obj);
    [all...]
bootstrapper.cc 482 GlobalHandles::Create(*Factory::NewGlobalContext()));
    [all...]
serialize.cc 921 CHECK_EQ(0, GlobalHandles::NumberOfWeakHandles());
    [all...]
  /external/v8/test/cctest/
test-mark-compact.cc 285 GlobalHandles::Create(Heap::AllocateFixedArray(1));
287 GlobalHandles::Create(Heap::AllocateFixedArray(1));
288 GlobalHandles::MakeWeak(g1s1.location(),
291 GlobalHandles::MakeWeak(g1s2.location(),
296 GlobalHandles::Create(Heap::AllocateFixedArray(1));
298 GlobalHandles::Create(Heap::AllocateFixedArray(1));
299 GlobalHandles::MakeWeak(g2s1.location(),
302 GlobalHandles::MakeWeak(g2s2.location(),
306 Handle<Object> root = GlobalHandles::Create(*g1s1); // make a root.
315 GlobalHandles::AddGroup(g1_objects, 2)
    [all...]
test-heap.cc 291 TEST(GlobalHandles) {
297 Handle<Object> h1 = GlobalHandles::Create(i);
298 Handle<Object> h2 = GlobalHandles::Create(u);
299 Handle<Object> h3 = GlobalHandles::Create(i);
300 Handle<Object> h4 = GlobalHandles::Create(u);
311 GlobalHandles::Destroy(h1.location());
312 GlobalHandles::Destroy(h3.location());
315 GlobalHandles::Destroy(h2.location());
316 GlobalHandles::Destroy(h4.location());
337 Handle<Object> h1 = GlobalHandles::Create(i)
    [all...]

Completed in 196 milliseconds