29
29
#include " oops/oop.hpp"
30
30
#include " utilities/bitMap.hpp"
31
31
32
- class ParMarkBitMapClosure ;
33
32
class PSVirtualSpace ;
34
- class ParCompactionManager ;
35
33
36
34
class ParMarkBitMap : public CHeapObj <mtGC>
37
35
{
@@ -54,35 +52,15 @@ class ParMarkBitMap: public CHeapObj<mtGC>
54
52
inline bool is_marked (HeapWord* addr) const ;
55
53
inline bool is_marked (oop obj) const ;
56
54
57
- inline bool is_unmarked (idx_t bit) const ;
58
55
inline bool is_unmarked (HeapWord* addr) const ;
59
56
inline bool is_unmarked (oop obj) const ;
60
57
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
-
72
58
size_t reserved_byte_size () const { return _reserved_byte_size; }
73
59
74
60
// Convert a heap address to/from a bit index.
75
61
inline idx_t addr_to_bit (HeapWord* addr) const ;
76
62
inline HeapWord* bit_to_addr (idx_t bit) const ;
77
63
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
-
86
64
inline HeapWord* find_obj_beg (HeapWord* beg, HeapWord* end) const ;
87
65
88
66
// Return the address of the last obj-start in the range [beg, end). If no
@@ -92,35 +70,51 @@ class ParMarkBitMap: public CHeapObj<mtGC>
92
70
// cleared).
93
71
inline void clear_range (idx_t beg, idx_t end);
94
72
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
73
void print_on_error (outputStream* st) const {
101
74
st->print_cr (" Marking Bits: (ParMarkBitMap*) " PTR_FORMAT, p2i (this ));
102
75
_beg_bits.print_on_error (st, " Begin Bits: " );
103
76
}
104
77
105
78
#ifdef ASSERT
106
79
void verify_clear () const ;
107
- inline void verify_bit (idx_t bit) const ;
108
- inline void verify_addr (HeapWord* addr) const ;
109
80
#endif // #ifdef ASSERT
110
81
111
82
private:
112
83
113
84
// Each bit in the bitmap represents one unit of 'object granularity.' Objects
114
85
// are double-word aligned in 32-bit VMs, but not in 64-bit VMs, so the 32-bit
115
86
// granularity is 2, 64-bit is 1.
116
- static inline size_t obj_granularity () { return size_t (MinObjAlignment); }
117
87
static inline int obj_granularity_shift () { return LogMinObjAlignment; }
118
88
119
89
HeapWord* _region_start;
120
90
size_t _region_size;
121
91
BitMapView _beg_bits;
122
92
PSVirtualSpace* _virtual_space;
123
93
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
124
118
};
125
119
126
120
#endif // SHARE_GC_PARALLEL_PARMARKBITMAP_HPP
0 commit comments