From 0225eb434cb8792d362923bf2c2e3607be4efcb9 Mon Sep 17 00:00:00 2001 From: Thomas Schatzl Date: Mon, 11 Jul 2022 07:59:00 +0000 Subject: [PATCH] 8290018: Remove dead declarations in G1BlockOffsetTablePart Reviewed-by: ayang --- src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp b/src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp index 195fe293688..fc9423a1160 100644 --- a/src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp +++ b/src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp @@ -120,18 +120,6 @@ private: // at "end" to point back to the card before "start"; [start, end] void set_remainder_to_point_to_start_incl(size_t start, size_t end); - inline size_t block_size(const HeapWord* p) const; - - // Returns the address of a block whose start is at most "addr". - inline HeapWord* block_at_or_preceding(const void* addr) const; - - // Return the address of the beginning of the block that contains "addr". - // "q" is a block boundary that is <= "addr"; "n" is the address of the - // next block (or the end of the space.) - inline HeapWord* forward_to_block_containing_addr(HeapWord* q, HeapWord* n, - const void* addr, - HeapWord* pb) const; - // Update BOT entries corresponding to the mem range [blk_start, blk_end). void update_for_block_work(HeapWord* blk_start, HeapWord* blk_end);