Searched refs:GCInfoTable (Results 1 – 3 of 3) sorted by relevance
33 GCInfoTable* GlobalGCInfoTable::global_table_ = nullptr;34 constexpr GCInfoIndex GCInfoTable::kMaxIndex;35 constexpr GCInfoIndex GCInfoTable::kMinIndex;36 constexpr GCInfoIndex GCInfoTable::kInitialWantedLimit;39 static v8::base::LeakyObject<GCInfoTable> table(page_allocator); in Create()45 GCInfoTable::GCInfoTable(PageAllocator* page_allocator) in GCInfoTable() function in cppgc::internal::GCInfoTable55 GCInfoTable::~GCInfoTable() { in ~GCInfoTable()59 size_t GCInfoTable::MaxTableSize() const { in MaxTableSize()60 return RoundUp(GCInfoTable::kMaxIndex * kEntrySize, in MaxTableSize()64 GCInfoIndex GCInfoTable::InitialTableLimit() const { in InitialTableLimit()[all …]
30 class V8_EXPORT GCInfoTable final {52 explicit GCInfoTable(PageAllocator* page_allocator);53 ~GCInfoTable();88 DISALLOW_COPY_AND_ASSIGN(GCInfoTable);97 static GCInfoTable& GetMutable() { return *global_table_; } in GetMutable()98 static const GCInfoTable& Get() { return *global_table_; } in Get()106 static GCInfoTable* global_table_;
158 DCHECK_LT(gc_info_index, GCInfoTable::kMaxIndex); in HeapObjectHeader()