@@ -313,29 +313,31 @@ bool DefNewGeneration::expand(size_t bytes) {
313
313
return success;
314
314
}
315
315
316
+ size_t DefNewGeneration::calculate_thread_increase_size (int threads_count) const {
317
+ size_t thread_increase_size = 0 ;
318
+ // Check an overflow at 'threads_count * NewSizeThreadIncrease'.
319
+ if (threads_count > 0 && NewSizeThreadIncrease <= max_uintx / threads_count) {
320
+ thread_increase_size = threads_count * NewSizeThreadIncrease;
321
+ }
322
+ return thread_increase_size;
323
+ }
324
+
316
325
size_t DefNewGeneration::adjust_for_thread_increase (size_t new_size_candidate,
317
326
size_t new_size_before,
318
- size_t alignment) const {
327
+ size_t alignment,
328
+ size_t thread_increase_size) const {
319
329
size_t desired_new_size = new_size_before;
320
330
321
- if (NewSizeThreadIncrease > 0 ) {
322
- int threads_count;
323
- size_t thread_increase_size = 0 ;
324
-
325
- // 1. Check an overflow at 'threads_count * NewSizeThreadIncrease'.
326
- threads_count = Threads::number_of_non_daemon_threads ();
327
- if (threads_count > 0 && NewSizeThreadIncrease <= max_uintx / threads_count) {
328
- thread_increase_size = threads_count * NewSizeThreadIncrease;
331
+ if (NewSizeThreadIncrease > 0 && thread_increase_size > 0 ) {
329
332
330
- // 2 . Check an overflow at 'new_size_candidate + thread_increase_size'.
331
- if (new_size_candidate <= max_uintx - thread_increase_size) {
332
- new_size_candidate += thread_increase_size;
333
+ // 1 . Check an overflow at 'new_size_candidate + thread_increase_size'.
334
+ if (new_size_candidate <= max_uintx - thread_increase_size) {
335
+ new_size_candidate += thread_increase_size;
333
336
334
- // 3. Check an overflow at 'align_up'.
335
- size_t aligned_max = ((max_uintx - alignment) & ~(alignment-1 ));
336
- if (new_size_candidate <= aligned_max) {
337
- desired_new_size = align_up (new_size_candidate, alignment);
338
- }
337
+ // 2. Check an overflow at 'align_up'.
338
+ size_t aligned_max = ((max_uintx - alignment) & ~(alignment-1 ));
339
+ if (new_size_candidate <= aligned_max) {
340
+ desired_new_size = align_up (new_size_candidate, alignment);
339
341
}
340
342
}
341
343
}
@@ -364,13 +366,14 @@ void DefNewGeneration::compute_new_size() {
364
366
// All space sizes must be multiples of Generation::GenGrain.
365
367
size_t alignment = Generation::GenGrain;
366
368
367
- int threads_count = 0 ;
368
- size_t thread_increase_size = 0 ;
369
+ int threads_count = Threads::number_of_non_daemon_threads () ;
370
+ size_t thread_increase_size = calculate_thread_increase_size (threads_count) ;
369
371
370
372
size_t new_size_candidate = old_size / NewRatio;
371
373
// Compute desired new generation size based on NewRatio and NewSizeThreadIncrease
372
374
// and reverts to previous value if any overflow happens
373
- size_t desired_new_size = adjust_for_thread_increase (new_size_candidate, new_size_before, alignment);
375
+ size_t desired_new_size = adjust_for_thread_increase (new_size_candidate, new_size_before,
376
+ alignment, thread_increase_size);
374
377
375
378
// Adjust new generation size
376
379
desired_new_size = clamp (desired_new_size, min_new_size, max_new_size);
0 commit comments