< prev index next >

src/hotspot/share/gc/g1/sparsePRT.hpp

Print this page
rev 52572 : imported patch 8213996-remove-sparseprt-table
rev 52573 : [mq]: 8213996-remove-sparseprt-table-more-cleanup

*** 150,161 **** // Otherwise, returns "false" to indicate that the addition would // overflow the entry for the region. The caller must transfer these // entries to a larger-capacity representation. bool add_card(RegionIdx_t region_id, CardIdx_t card_index); - bool get_cards(RegionIdx_t region_id, CardIdx_t* cards); - bool delete_entry(RegionIdx_t region_id); bool contains_card(RegionIdx_t region_id, CardIdx_t card_index) const; void add_entry(SparsePRTEntry* e); --- 150,159 ----
*** 257,267 **** }; class SparsePRTIter: public RSHashTableIter { public: SparsePRTIter(const SparsePRT* sprt) : ! RSHashTableIter(sprt->_table) {} bool has_next(size_t& card_index) { return RSHashTableIter::has_next(card_index); } }; --- 255,265 ---- }; class SparsePRTIter: public RSHashTableIter { public: SparsePRTIter(const SparsePRT* sprt) : ! RSHashTableIter(sprt->_table) { } bool has_next(size_t& card_index) { return RSHashTableIter::has_next(card_index); } };
< prev index next >