@@ -79,36 +79,6 @@ inline HeapWord* HeapRegion::par_allocate_impl(size_t min_word_size,
79
79
} while (true );
80
80
}
81
81
82
- inline HeapWord* HeapRegion::allocate (size_t min_word_size,
83
- size_t desired_word_size,
84
- size_t * actual_size) {
85
- HeapWord* res = allocate_impl (min_word_size, desired_word_size, actual_size);
86
- if (res != NULL ) {
87
- _bot_part.alloc_block (res, *actual_size);
88
- }
89
- return res;
90
- }
91
-
92
- inline HeapWord* HeapRegion::allocate (size_t word_size) {
93
- size_t temp;
94
- return allocate (word_size, word_size, &temp);
95
- }
96
-
97
- inline HeapWord* HeapRegion::par_allocate (size_t word_size) {
98
- size_t temp;
99
- return par_allocate (word_size, word_size, &temp);
100
- }
101
-
102
- // Because of the requirement of keeping "_offsets" up to date with the
103
- // allocations, we sequentialize these with a lock. Therefore, best if
104
- // this is used for larger LAB allocations only.
105
- inline HeapWord* HeapRegion::par_allocate (size_t min_word_size,
106
- size_t desired_word_size,
107
- size_t * actual_size) {
108
- MutexLocker x (&_par_alloc_lock, Mutex::_no_safepoint_check_flag);
109
- return allocate (min_word_size, desired_word_size, actual_size);
110
- }
111
-
112
82
inline HeapWord* HeapRegion::block_start (const void * p) {
113
83
return _bot_part.block_start (p);
114
84
}
@@ -252,25 +222,52 @@ inline void HeapRegion::apply_to_marked_objects(G1CMBitMap* bitmap, ApplyToMarke
252
222
assert (next_addr == limit, " Should stop the scan at the limit." );
253
223
}
254
224
255
- inline HeapWord* HeapRegion::par_allocate_no_bot_updates (size_t min_word_size,
256
- size_t desired_word_size,
257
- size_t * actual_word_size) {
258
- assert (is_young (), " we can only skip BOT updates on young regions" );
225
+ inline HeapWord* HeapRegion::par_allocate (size_t min_word_size,
226
+ size_t desired_word_size,
227
+ size_t * actual_word_size) {
259
228
return par_allocate_impl (min_word_size, desired_word_size, actual_word_size);
260
229
}
261
230
262
- inline HeapWord* HeapRegion::allocate_no_bot_updates (size_t word_size) {
231
+ inline HeapWord* HeapRegion::allocate (size_t word_size) {
263
232
size_t temp;
264
- return allocate_no_bot_updates (word_size, word_size, &temp);
233
+ return allocate (word_size, word_size, &temp);
265
234
}
266
235
267
- inline HeapWord* HeapRegion::allocate_no_bot_updates (size_t min_word_size,
268
- size_t desired_word_size,
269
- size_t * actual_word_size) {
270
- assert (is_young (), " we can only skip BOT updates on young regions" );
236
+ inline HeapWord* HeapRegion::allocate (size_t min_word_size,
237
+ size_t desired_word_size,
238
+ size_t * actual_word_size) {
271
239
return allocate_impl (min_word_size, desired_word_size, actual_word_size);
272
240
}
273
241
242
+ inline HeapWord* HeapRegion::bot_threshold_for_addr (const void * addr) {
243
+ HeapWord* threshold = _bot_part.threshold_for_addr (addr);
244
+ assert (threshold >= addr,
245
+ " threshold must be at or after given address. " PTR_FORMAT " >= " PTR_FORMAT,
246
+ p2i (threshold), p2i (addr));
247
+ assert (is_old (),
248
+ " Should only calculate BOT threshold for old regions. addr: " PTR_FORMAT " region:" HR_FORMAT,
249
+ p2i (addr), HR_FORMAT_PARAMS (this ));
250
+ return threshold;
251
+ }
252
+
253
+ inline void HeapRegion::update_bot_crossing_threshold (HeapWord** threshold, HeapWord* obj_start, HeapWord* obj_end) {
254
+ assert (is_old (), " should only do BOT updates for old regions" );
255
+ assert (is_in (obj_start), " obj_start must be in this region: " HR_FORMAT
256
+ " obj_start " PTR_FORMAT " obj_end " PTR_FORMAT " threshold " PTR_FORMAT,
257
+ HR_FORMAT_PARAMS (this ),
258
+ p2i (obj_start), p2i (obj_end), p2i (*threshold));
259
+ _bot_part.alloc_block_work (threshold, obj_start, obj_end);
260
+ }
261
+
262
+ inline void HeapRegion::update_bot_at (HeapWord* obj_start, size_t obj_size) {
263
+ HeapWord* threshold = bot_threshold_for_addr (obj_start);
264
+ HeapWord* obj_end = obj_start + obj_size;
265
+
266
+ if (obj_end > threshold) {
267
+ update_bot_crossing_threshold (&threshold, obj_start, obj_end);
268
+ }
269
+ }
270
+
274
271
inline void HeapRegion::note_start_of_marking () {
275
272
_next_marked_bytes = 0 ;
276
273
_next_top_at_mark_start = top ();
0 commit comments