Home | History | Annotate | Download | only in src

Lines Matching refs:heap_

178   mark_compact_collector_.heap_ = this;
179 external_string_table_.heap_ = this;
963 explicit ScavengeVisitor(Heap* heap) : heap_(heap) {}
975 if (!heap_->InNewSpace(object)) return;
980 Heap* heap_;
1103 limit_ = reinterpret_cast<intptr_t*>(heap_->new_space()->ToSpaceStart());
1105 reinterpret_cast<intptr_t*>(heap_->new_space()->ToSpaceEnd());
5705 heap_(heap) {
5851 Heap* heap_;
6631 heap_(heap),
6636 start_object_size_ = heap_->SizeOfObjects();
6637 start_memory_size_ = heap_->isolate()->memory_allocator()->Size();
6646 heap_->SizeOfObjects() - heap_->alive_after_last_gc_;
6648 if (heap_->last_gc_end_timestamp_ > 0) {
6649 spent_in_mutator_ = Max(start_time_ - heap_->last_gc_end_timestamp_, 0.0);
6652 steps_count_ = heap_->incremental_marking()->steps_count();
6653 steps_took_ = heap_->incremental_marking()->steps_took();
6654 longest_step_ = heap_->incremental_marking()->longest_step();
6656 heap_->incremental_marking()->steps_count_since_last_gc();
6658 heap_->incremental_marking()->steps_took_since_last_gc();
6666 bool first_gc = (heap_->last_gc_end_timestamp_ == 0);
6668 heap_->alive_after_last_gc_ = heap_->SizeOfObjects();
6669 heap_->last_gc_end_timestamp_ = OS::TimeCurrentMillis();
6671 int time = static_cast<int>(heap_->last_gc_end_timestamp_ - start_time_);
6675 heap_->max_gc_pause_ = Max(heap_->max_gc_pause_, time);
6676 heap_->max_alive_after_gc_ = Max(heap_->max_alive_after_gc_,
6677 heap_->alive_after_last_gc_);
6679 heap_->min_in_mutator_ = Min(heap_->min_in_mutator_,
6684 PrintF("%8.0f ms: ", heap_->isolate()->time_millis_since_init());
6690 static_cast<double>(heap_->isolate()->memory_allocator()->Size()) / MB;
6761 PrintF("total_size_after=%" V8_PTR_PREFIX "d ", heap_->SizeOfObjects());
6780 heap_->PrintShortHeapStatistics();
6895 if (new_space_strings_[i] == heap_->raw_unchecked_the_hole_value()) {
6898 if (heap_->InNewSpace(new_space_strings_[i])) {
6907 if (old_space_strings_[i] == heap_->raw_unchecked_the_hole_value()) {
6910 ASSERT(!heap_->InNewSpace(old_space_strings_[i]));