Skip to content

Commit 239c1b3

Browse files
committedMay 24, 2024
8332807: Parallel: Make some APIs in ParMarkBitMap private
Reviewed-by: tschatzl
1 parent 9b61a76 commit 239c1b3

File tree

2 files changed

+26
-39
lines changed

2 files changed

+26
-39
lines changed
 

‎src/hotspot/share/gc/parallel/parMarkBitMap.hpp

+24-30
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
#include "oops/oop.hpp"
3030
#include "utilities/bitMap.hpp"
3131

32-
class ParMarkBitMapClosure;
3332
class PSVirtualSpace;
34-
class ParCompactionManager;
3533

3634
class ParMarkBitMap: public CHeapObj<mtGC>
3735
{
@@ -54,35 +52,15 @@ class ParMarkBitMap: public CHeapObj<mtGC>
5452
inline bool is_marked(HeapWord* addr) const;
5553
inline bool is_marked(oop obj) const;
5654

57-
inline bool is_unmarked(idx_t bit) const;
5855
inline bool is_unmarked(HeapWord* addr) const;
5956
inline bool is_unmarked(oop obj) const;
6057

61-
// Convert sizes from bits to HeapWords and back. An object that is n bits
62-
// long will be bits_to_words(n) words long. An object that is m words long
63-
// will take up words_to_bits(m) bits in the bitmap.
64-
inline static size_t bits_to_words(idx_t bits);
65-
inline static idx_t words_to_bits(size_t words);
66-
67-
inline HeapWord* region_start() const;
68-
inline HeapWord* region_end() const;
69-
inline size_t region_size() const;
70-
inline size_t size() const;
71-
7258
size_t reserved_byte_size() const { return _reserved_byte_size; }
7359

7460
// Convert a heap address to/from a bit index.
7561
inline idx_t addr_to_bit(HeapWord* addr) const;
7662
inline HeapWord* bit_to_addr(idx_t bit) const;
7763

78-
// Return word-aligned up range_end, which must not be greater than size().
79-
inline idx_t align_range_end(idx_t range_end) const;
80-
81-
// Return the bit index of the first marked object that begins (or ends,
82-
// respectively) in the range [beg, end). If no object is found, return end.
83-
// end must be word-aligned.
84-
inline idx_t find_obj_beg(idx_t beg, idx_t end) const;
85-
8664
inline HeapWord* find_obj_beg(HeapWord* beg, HeapWord* end) const;
8765

8866
// Return the address of the last obj-start in the range [beg, end). If no
@@ -92,35 +70,51 @@ class ParMarkBitMap: public CHeapObj<mtGC>
9270
// cleared).
9371
inline void clear_range(idx_t beg, idx_t end);
9472

95-
// Return the number of bits required to represent the specified number of
96-
// HeapWords, or the specified region.
97-
static inline idx_t bits_required(size_t words);
98-
static inline idx_t bits_required(MemRegion covered_region);
99-
10073
void print_on_error(outputStream* st) const {
10174
st->print_cr("Marking Bits: (ParMarkBitMap*) " PTR_FORMAT, p2i(this));
10275
_beg_bits.print_on_error(st, " Begin Bits: ");
10376
}
10477

10578
#ifdef ASSERT
10679
void verify_clear() const;
107-
inline void verify_bit(idx_t bit) const;
108-
inline void verify_addr(HeapWord* addr) const;
10980
#endif // #ifdef ASSERT
11081

11182
private:
11283

11384
// Each bit in the bitmap represents one unit of 'object granularity.' Objects
11485
// are double-word aligned in 32-bit VMs, but not in 64-bit VMs, so the 32-bit
11586
// granularity is 2, 64-bit is 1.
116-
static inline size_t obj_granularity() { return size_t(MinObjAlignment); }
11787
static inline int obj_granularity_shift() { return LogMinObjAlignment; }
11888

11989
HeapWord* _region_start;
12090
size_t _region_size;
12191
BitMapView _beg_bits;
12292
PSVirtualSpace* _virtual_space;
12393
size_t _reserved_byte_size;
94+
95+
// Return the number of bits required to represent the specified number of
96+
// HeapWords, or the specified region.
97+
static inline idx_t bits_required(size_t words);
98+
static inline idx_t bits_required(MemRegion covered_region);
99+
100+
// Convert sizes from bits to HeapWords and back. An object that is n bits
101+
// long will be bits_to_words(n) words long. An object that is m words long
102+
// will take up words_to_bits(m) bits in the bitmap.
103+
inline static size_t bits_to_words(idx_t bits);
104+
inline static idx_t words_to_bits(size_t words);
105+
106+
// Return word-aligned up range_end, which must not be greater than size().
107+
inline idx_t align_range_end(idx_t range_end) const;
108+
109+
inline HeapWord* region_start() const;
110+
inline HeapWord* region_end() const;
111+
inline size_t region_size() const;
112+
inline size_t size() const;
113+
114+
#ifdef ASSERT
115+
inline void verify_bit(idx_t bit) const;
116+
inline void verify_addr(HeapWord* addr) const;
117+
#endif // #ifdef ASSERT
124118
};
125119

126120
#endif // SHARE_GC_PARALLEL_PARMARKBITMAP_HPP

‎src/hotspot/share/gc/parallel/parMarkBitMap.inline.hpp

+2-9
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,6 @@ inline bool ParMarkBitMap::is_marked(oop obj) const {
7474
return is_marked(cast_from_oop<HeapWord*>(obj));
7575
}
7676

77-
inline bool ParMarkBitMap::is_unmarked(idx_t bit) const {
78-
return !is_marked(bit);
79-
}
80-
8177
inline bool ParMarkBitMap::is_unmarked(HeapWord* addr) const {
8278
return !is_marked(addr);
8379
}
@@ -118,15 +114,12 @@ inline ParMarkBitMap::idx_t ParMarkBitMap::align_range_end(idx_t range_end) cons
118114
return align_up(range_end, BitsPerWord);
119115
}
120116

121-
inline ParMarkBitMap::idx_t ParMarkBitMap::find_obj_beg(idx_t beg, idx_t end) const {
122-
return _beg_bits.find_first_set_bit_aligned_right(beg, end);
123-
}
124-
125117
inline HeapWord* ParMarkBitMap::find_obj_beg(HeapWord* beg, HeapWord* end) const {
126118
const idx_t beg_bit = addr_to_bit(beg);
127119
const idx_t end_bit = addr_to_bit(end);
128120
const idx_t search_end = align_range_end(end_bit);
129-
const idx_t res_bit = MIN2(find_obj_beg(beg_bit, search_end), end_bit);
121+
const idx_t res_bit = MIN2(_beg_bits.find_first_set_bit_aligned_right(beg_bit, search_end),
122+
end_bit);
130123
return bit_to_addr(res_bit);
131124
}
132125

0 commit comments

Comments
 (0)
Please sign in to comment.