Skip to content

Commit b0353ad

Browse files
committedAug 31, 2023
8315242: G1: Fix -Wconversion warnings around GCDrainStackTargetSize
Reviewed-by: tschatzl, mli
1 parent b594f01 commit b0353ad

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed
 

‎src/hotspot/share/gc/g1/g1ConcurrentMark.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2317,9 +2317,9 @@ void G1CMTask::drain_local_queue(bool partially) {
23172317
// Decide what the target size is, depending whether we're going to
23182318
// drain it partially (so that other tasks can steal if they run out
23192319
// of things to do) or totally (at the very end).
2320-
size_t target_size;
2320+
uint target_size;
23212321
if (partially) {
2322-
target_size = MIN2((size_t)_task_queue->max_elems()/3, GCDrainStackTargetSize);
2322+
target_size = MIN2(_task_queue->max_elems() / 3, GCDrainStackTargetSize);
23232323
} else {
23242324
target_size = 0;
23252325
}

‎src/hotspot/share/gc/parallel/psPromotionManager.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,13 @@ PSPromotionManager::PSPromotionManager() {
178178
// We set the old lab's start array.
179179
_old_lab.set_start_array(old_gen()->start_array());
180180

181-
uint queue_size;
182-
queue_size = claimed_stack_depth()->max_elems();
181+
uint queue_size = claimed_stack_depth()->max_elems();
183182

184183
if (ParallelGCThreads == 1) {
185184
_target_stack_size = 0;
186185
} else {
187186
// don't let the target stack size to be more than 1/4 of the entries
188-
_target_stack_size = (uint) MIN2((uint) GCDrainStackTargetSize,
189-
(uint) (queue_size / 4));
187+
_target_stack_size = MIN2(GCDrainStackTargetSize, (queue_size / 4));
190188
}
191189

192190
_array_chunk_size = ParGCArrayScanChunk;

‎src/hotspot/share/gc/shared/gc_globals.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -684,10 +684,10 @@
684684
develop(uintx, GCExpandToAllocateDelayMillis, 0, \
685685
"Delay between expansion and allocation (in milliseconds)") \
686686
\
687-
product(uintx, GCDrainStackTargetSize, 64, \
687+
product(uint, GCDrainStackTargetSize, 64, \
688688
"Number of entries we will try to leave on the stack " \
689689
"during parallel gc") \
690-
range(0, max_juint) \
690+
range(0, (UINT_MAX - 1) / 2) \
691691
\
692692
product(uint, GCCardSizeInBytes, 512, \
693693
"Card table entry size (in bytes) for card based collectors") \

‎src/hotspot/share/utilities/globalDefinitions.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1044,7 +1044,7 @@ const int badCodeHeapFreeVal = 0xDD; // value used to zap
10441044
#define badHeapWord (::badHeapWordVal)
10451045

10461046
// Default TaskQueue size is 16K (32-bit) or 128K (64-bit)
1047-
const size_t TASKQUEUE_SIZE = (NOT_LP64(1<<14) LP64_ONLY(1<<17));
1047+
const uint TASKQUEUE_SIZE = (NOT_LP64(1<<14) LP64_ONLY(1<<17));
10481048

10491049
//----------------------------------------------------------------------------------------------------
10501050
// Utility functions for bitfield manipulations

0 commit comments

Comments
 (0)
Please sign in to comment.