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

  /external/v8/test/cctest/
test-mark-compact.cc 313 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
319 global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
321 global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
323 global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
324 global_handles->MakeWeak(g1s1.location(),
327 global_handles->MakeWeak(g1s2.location(),
330 global_handles->MakeWeak(g1c1.location(),
335 global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
337 global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked())
441 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
    [all...]
test-weakmaps.cc 71 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
79 key = global_handles->Create(*object);
81 CHECK(!global_handles->IsWeak(key.location()));
100 global_handles->MakeWeak(key.location(),
104 CHECK(global_handles->IsWeak(key.location()));
test-heap.cc 295 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
308 h1 = global_handles->Create(*i);
309 h2 = global_handles->Create(*u);
310 h3 = global_handles->Create(*i);
311 h4 = global_handles->Create(*u);
323 global_handles->Destroy(h1.location());
324 global_handles->Destroy(h3.location());
327 global_handles->Destroy(h2.location());
328 global_handles->Destroy(h4.location())
343 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
381 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
420 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
    [all...]
test-heap-profiler.cc 1273 const v8::HeapGraphNode* global_handles = GetNode( local
1308 const v8::HeapGraphNode* global_handles = GetNode( local
    [all...]
  /external/v8/src/
global-handles.cc 87 void Acquire(Object* object, GlobalHandles* global_handles) {
95 IncreaseBlockUses(global_handles);
98 void Release(GlobalHandles* global_handles) {
101 global_handles->number_of_weak_handles_--;
103 global_handles->number_of_global_object_weak_handles_--;
107 parameter_or_next_free_.next_free = global_handles->first_free_;
108 global_handles->first_free_ = this;
109 DecreaseBlockUses(global_handles);
184 void MakeWeak(GlobalHandles* global_handles,
189 global_handles->number_of_weak_handles_++
    [all...]
debug.cc 601 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
615 (global_handles->Create(*script)));
616 global_handles->MakeWeak(
648 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
654 global_handles->ClearWeakness(location);
655 global_handles->Destroy(location);
716 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
2969 GlobalHandles* global_handles = isolate_->global_handles(); local
    [all...]
deoptimizer.cc 1472 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
1482 GlobalHandles* global_handles = Isolate::Current()->global_handles(); local
    [all...]
handles.cc 361 isolate->global_handles()->Destroy(cache.location());
383 Handle<Object> handle = isolate->global_handles()->Create(*result);
384 isolate->global_handles()->MakeWeak(handle.location(), NULL,
    [all...]
v8-counters.h 60 SC(global_handles, V8.GlobalHandles) \
profile-generator.cc 52 isolate->global_handles()->ClearWeakness(token_locations_[i]);
53 isolate->global_handles()->Destroy(token_locations_[i]);
65 Handle<Object> handle = isolate->global_handles()->Create(token);
68 isolate->global_handles()->MakeWeak(handle.location(), this,
    [all...]
mark-compact.cc     [all...]
heap.cc 423 if (FLAG_print_global_handles) isolate_->global_handles()->Print();
875 isolate_->global_handles()->PostGarbageCollectionProcessing(collector);
    [all...]
isolate.h 851 GlobalHandles* global_handles() { return global_handles_; } function in class:v8::internal::Isolate
    [all...]
api.cc 610 isolate->global_handles()->Create(*obj);
619 isolate->global_handles()->MakeWeak(object, parameters,
627 isolate->global_handles()->ClearWeakness(obj);
634 isolate->global_handles()->MarkIndependent(object);
658 isolate->global_handles()->Destroy(obj);
    [all...]
bootstrapper.cc 683 global_context_ = Handle<Context>::cast(isolate()->global_handles()->Create(
    [all...]
liveobjectlist.cc     [all...]
serialize.cc     [all...]
runtime.cc     [all...]

Completed in 821 milliseconds