Searched refs:soon_object (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/profiler/
H A Dsampling-heap-profiler.h124 void SampleObject(Address soon_object, size_t size);
169 void Step(int bytes_allocated, Address soon_object, size_t size) override {
172 DCHECK(soon_object); variable
173 profiler_->SampleObject(soon_object, size);
H A Dsampling-heap-profiler.cc96 void SamplingHeapProfiler::SampleObject(Address soon_object, size_t size) { argument
100 HeapObject* heap_object = HeapObject::FromAddress(soon_object);
105 heap()->CreateFillerObjectAt(soon_object, static_cast<int>(size),
/external/v8/src/heap/
H A Dheap.h2652 void AllocationStep(int bytes_allocated, Address soon_object, size_t size) { argument
2655 Step(static_cast<int>(step_size_ - bytes_to_next_step_), soon_object,
2667 // least step_size bytes have been allocated. soon_object is the address just
2671 // 1) soon_object will be nullptr in cases where we end up observing an
2675 // 3) soon_object may actually be the first object in an allocation-folding
2678 virtual void Step(int bytes_allocated, Address soon_object, size_t size) = 0;
H A Dspaces.cc1070 void Space::AllocationStep(Address soon_object, int size) { argument
1074 o->AllocationStep(size, soon_object, size);
1610 Address soon_object = old_top + filler_size; local
1611 InlineAllocationStep(new_top, new_top, soon_object, size_in_bytes);
1664 Address soon_object, size_t size) {
1668 (*allocation_observers_)[i]->AllocationStep(bytes_allocated, soon_object,
1663 InlineAllocationStep(Address top, Address new_top, Address soon_object, size_t size) argument
H A Dspaces.h1061 void AllocationStep(Address soon_object, int size);
2928 void InlineAllocationStep(Address top, Address new_top, Address soon_object,

Completed in 140 milliseconds