Home
last modified time | relevance | path

Searched refs:age_table (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/include/cppgc/internal/
Dwrite-barrier.h127 const AgeTable& age_table,
405 const AgeTable& age_table = local_data.age_table;
408 if (V8_LIKELY(age_table.GetAge(params.slot_offset) == AgeTable::Age::kYoung))
411 GenerationalBarrierSlow(local_data, age_table, slot, params.value_offset);
420 const AgeTable& age_table = local_data.age_table;
424 if (V8_LIKELY(age_table.GetAge(params.slot_offset) == AgeTable::Age::kYoung))
Dcaged-heap-local-data.h72 AgeTable age_table; member
/third_party/node/deps/v8/src/heap/cppgc/
Dobject-allocator.cc45 auto& age_table = page->heap().caged_heap().local_data().age_table; in MarkRangeAsYoung() local
48 age_table.SetAge(offset, AgeTable::Age::kYoung); in MarkRangeAsYoung()
54 age_table.SetAge(offset_begin, AgeTable::Age::kMixed); in MarkRangeAsYoung()
56 age_table.SetAge(offset_end, AgeTable::Age::kMixed); in MarkRangeAsYoung()
Dwrite-barrier.cc129 const AgeTable& age_table, in GenerationalBarrierSlow() argument
138 if (value_offset > 0 && age_table.GetAge(value_offset) == AgeTable::Age::kOld) in GenerationalBarrierSlow()
Dcaged-heap-local-data.cc20 age_table.Reset(&allocator); in CagedHeapLocalData()
Dmarking-verifier.cc109 const auto age = heap_.caged_heap().local_data().age_table.GetAge( in VisitHeapObjectHeader()
Dheap-base.cc143 caged_heap().local_data().age_table.Reset(&caged_heap().allocator()); in ResetRememberedSet()