Skip to content

Commit 983e24f

Browse files
committedJan 15, 2025
8347727: Replace SIZE_FORMAT in shared gc
Reviewed-by: kbarrett, dholmes, tschatzl
1 parent a6be907 commit 983e24f

21 files changed

+109
-110
lines changed
 

‎src/hotspot/share/gc/shared/adaptiveSizePolicy.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -337,11 +337,11 @@ class AdaptiveSizePolicySpaceOverheadTester: public GCOverheadTester {
337337

338338
log_trace(gc, ergo)(
339339
"AdaptiveSizePolicySpaceOverheadTester::is_exceeded:"
340-
" promo_limit: " SIZE_FORMAT
341-
" total_free_limit: " SIZE_FORMAT
342-
" max_old_gen_size: " SIZE_FORMAT
343-
" max_eden_size: " SIZE_FORMAT
344-
" mem_free_limit: " SIZE_FORMAT,
340+
" promo_limit: %zu"
341+
" total_free_limit: %zu"
342+
" max_old_gen_size: %zu"
343+
" max_eden_size: %zu"
344+
" mem_free_limit: %zu",
345345
promo_limit, total_free_limit,
346346
_max_old_gen_size, _max_eden_size,
347347
(size_t)mem_free_limit);

‎src/hotspot/share/gc/shared/ageTable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void AgeTable::print_on(outputStream* st) {
131131
size_t word_size = sizes[age];
132132
total += word_size;
133133
if (word_size > 0) {
134-
st->print_cr("- age %3u: " SIZE_FORMAT_W(10) " bytes, " SIZE_FORMAT_W(10) " total",
134+
st->print_cr("- age %3u: %10zu bytes, %10zu total",
135135
age, word_size * oopSize, total * oopSize);
136136
}
137137
AgeTableTracer::send_tenuring_distribution_event(age, word_size * oopSize);

‎src/hotspot/share/gc/shared/collectedHeap.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -405,7 +405,7 @@ MetaWord* CollectedHeap::satisfy_failed_metadata_allocation(ClassLoaderData* loa
405405
if ((QueuedAllocationWarningCount > 0) &&
406406
(loop_count % QueuedAllocationWarningCount == 0)) {
407407
log_warning(gc, ergo)("satisfy_failed_metadata_allocation() retries %d times,"
408-
" size=" SIZE_FORMAT, loop_count, word_size);
408+
" size=%zu", loop_count, word_size);
409409
}
410410
} while (true); // Until a GC is done
411411
}
@@ -481,7 +481,7 @@ CollectedHeap::fill_with_array(HeapWord* start, size_t words, bool zap)
481481

482482
const size_t payload_size = words - filler_array_hdr_size();
483483
const size_t len = payload_size * HeapWordSize / sizeof(jint);
484-
assert((int)len >= 0, "size too large " SIZE_FORMAT " becomes %d", words, (int)len);
484+
assert((int)len >= 0, "size too large %zu becomes %d", words, (int)len);
485485

486486
ObjArrayAllocator allocator(Universe::fillerArrayKlass(), words, (int)len, /* do_zero */ false);
487487
allocator.initialize(start);

‎src/hotspot/share/gc/shared/fullGCForwarding.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ void FullGCForwarding::initialize_flags(size_t max_heap_size) {
3434
#ifdef _LP64
3535
size_t max_narrow_heap_size = right_n_bits(NumLowBitsNarrow - Shift);
3636
if (UseCompactObjectHeaders && max_heap_size > max_narrow_heap_size * HeapWordSize) {
37-
warning("Compact object headers require a java heap size smaller than " SIZE_FORMAT
38-
"%s (given: " SIZE_FORMAT "%s). Disabling compact object headers.",
37+
warning("Compact object headers require a java heap size smaller than %zu"
38+
"%s (given: %zu%s). Disabling compact object headers.",
3939
byte_size_in_proper_unit(max_narrow_heap_size * HeapWordSize),
4040
proper_unit_for_byte_size(max_narrow_heap_size * HeapWordSize),
4141
byte_size_in_proper_unit(max_heap_size),

‎src/hotspot/share/gc/shared/gcArguments.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2017, Red Hat, Inc. and/or its affiliates.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -99,7 +99,7 @@ void GCArguments::assert_size_info() {
9999
#endif // ASSERT
100100

101101
void GCArguments::initialize_size_info() {
102-
log_debug(gc, heap)("Minimum heap " SIZE_FORMAT " Initial heap " SIZE_FORMAT " Maximum heap " SIZE_FORMAT,
102+
log_debug(gc, heap)("Minimum heap %zu Initial heap %zu Maximum heap %zu",
103103
MinHeapSize, InitialHeapSize, MaxHeapSize);
104104

105105
DEBUG_ONLY(assert_size_info();)
@@ -109,10 +109,10 @@ void GCArguments::initialize_heap_flags_and_sizes() {
109109
assert(SpaceAlignment != 0, "Space alignment not set up properly");
110110
assert(HeapAlignment != 0, "Heap alignment not set up properly");
111111
assert(HeapAlignment >= SpaceAlignment,
112-
"HeapAlignment: " SIZE_FORMAT " less than SpaceAlignment: " SIZE_FORMAT,
112+
"HeapAlignment: %zu less than SpaceAlignment: %zu",
113113
HeapAlignment, SpaceAlignment);
114114
assert(HeapAlignment % SpaceAlignment == 0,
115-
"HeapAlignment: " SIZE_FORMAT " not aligned by SpaceAlignment: " SIZE_FORMAT,
115+
"HeapAlignment: %zu not aligned by SpaceAlignment: %zu",
116116
HeapAlignment, SpaceAlignment);
117117

118118
if (FLAG_IS_CMDLINE(MaxHeapSize)) {

‎src/hotspot/share/gc/shared/gcInitLogger.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -75,7 +75,7 @@ void GCInitLogger::print_large_pages() {
7575
void GCInitLogger::print_numa() {
7676
if (UseNUMA) {
7777
log_info_p(gc, init)("NUMA Support: Enabled");
78-
log_info_p(gc, init)("NUMA Nodes: " SIZE_FORMAT, os::numa_get_groups_num());
78+
log_info_p(gc, init)("NUMA Nodes: %zu", os::numa_get_groups_num());
7979
} else {
8080
log_info_p(gc, init)("NUMA Support: Disabled");
8181
}
@@ -91,11 +91,11 @@ void GCInitLogger::print_compressed_oops() {
9191
}
9292

9393
void GCInitLogger::print_heap() {
94-
log_info_p(gc, init)("Heap Min Capacity: " SIZE_FORMAT "%s",
94+
log_info_p(gc, init)("Heap Min Capacity: %zu%s",
9595
byte_size_in_exact_unit(MinHeapSize), exact_unit_for_byte_size(MinHeapSize));
96-
log_info_p(gc, init)("Heap Initial Capacity: " SIZE_FORMAT "%s",
96+
log_info_p(gc, init)("Heap Initial Capacity: %zu%s",
9797
byte_size_in_exact_unit(InitialHeapSize), exact_unit_for_byte_size(InitialHeapSize));
98-
log_info_p(gc, init)("Heap Max Capacity: " SIZE_FORMAT "%s",
98+
log_info_p(gc, init)("Heap Max Capacity: %zu%s",
9999
byte_size_in_exact_unit(MaxHeapSize), exact_unit_for_byte_size(MaxHeapSize));
100100

101101
log_info_p(gc, init)("Pre-touch: %s", AlwaysPreTouch ? "Enabled" : "Disabled");

‎src/hotspot/share/gc/shared/gcTraceTime.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -63,7 +63,7 @@ void GCTraceTimeLoggerImpl::log_end(Ticks end) {
6363
size_t used_before_m = _heap_usage_before / M;
6464
size_t used_m = heap->used() / M;
6565
size_t capacity_m = heap->capacity() / M;
66-
out.print(" " SIZE_FORMAT "M->" SIZE_FORMAT "M(" SIZE_FORMAT "M)", used_before_m, used_m, capacity_m);
66+
out.print(" %zuM->%zuM(%zuM)", used_before_m, used_m, capacity_m);
6767
}
6868

6969
out.print_cr(" %.3fms", duration_in_ms);

‎src/hotspot/share/gc/shared/gcVMOperations.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -110,7 +110,7 @@ bool VM_GC_Operation::doit_prologue() {
110110
if (!is_init_completed()) {
111111
vm_exit_during_initialization(
112112
err_msg("GC triggered before VM initialization completed. Try increasing "
113-
"NewSize, current value " SIZE_FORMAT "%s.",
113+
"NewSize, current value %zu%s.",
114114
byte_size_in_proper_unit(NewSize),
115115
proper_unit_for_byte_size(NewSize)));
116116
}
@@ -259,7 +259,7 @@ void VM_CollectForMetadataAllocation::doit() {
259259
return;
260260
}
261261

262-
log_debug(gc)("After Metaspace GC failed to allocate size " SIZE_FORMAT, _size);
262+
log_debug(gc)("After Metaspace GC failed to allocate size %zu", _size);
263263

264264
if (GCLocker::is_active_and_needs_gc()) {
265265
set_gc_locked();

‎src/hotspot/share/gc/shared/genArguments.cpp

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -79,13 +79,13 @@ void GenArguments::initialize_heap_flags_and_sizes() {
7979

8080
assert(GenAlignment != 0, "Generation alignment not set up properly");
8181
assert(HeapAlignment >= GenAlignment,
82-
"HeapAlignment: " SIZE_FORMAT " less than GenAlignment: " SIZE_FORMAT,
82+
"HeapAlignment: %zu less than GenAlignment: %zu",
8383
HeapAlignment, GenAlignment);
8484
assert(GenAlignment % SpaceAlignment == 0,
85-
"GenAlignment: " SIZE_FORMAT " not aligned by SpaceAlignment: " SIZE_FORMAT,
85+
"GenAlignment: %zu not aligned by SpaceAlignment: %zu",
8686
GenAlignment, SpaceAlignment);
8787
assert(HeapAlignment % GenAlignment == 0,
88-
"HeapAlignment: " SIZE_FORMAT " not aligned by GenAlignment: " SIZE_FORMAT,
88+
"HeapAlignment: %zu not aligned by GenAlignment: %zu",
8989
HeapAlignment, GenAlignment);
9090

9191
// All generational heaps have a young gen; handle those flags here
@@ -128,8 +128,8 @@ void GenArguments::initialize_heap_flags_and_sizes() {
128128
// Make sure there is room for an old generation
129129
size_t smaller_max_new_size = MaxHeapSize - GenAlignment;
130130
if (FLAG_IS_CMDLINE(MaxNewSize)) {
131-
log_warning(gc, ergo)("MaxNewSize (" SIZE_FORMAT "k) is equal to or greater than the entire "
132-
"heap (" SIZE_FORMAT "k). A new max generation size of " SIZE_FORMAT "k will be used.",
131+
log_warning(gc, ergo)("MaxNewSize (%zuk) is equal to or greater than the entire "
132+
"heap (%zuk). A new max generation size of %zuk will be used.",
133133
MaxNewSize/K, MaxHeapSize/K, smaller_max_new_size/K);
134134
}
135135
FLAG_SET_ERGO(MaxNewSize, smaller_max_new_size);
@@ -147,8 +147,8 @@ void GenArguments::initialize_heap_flags_and_sizes() {
147147
// At this point this should only happen if the user specifies a large NewSize and/or
148148
// a small (but not too small) MaxNewSize.
149149
if (FLAG_IS_CMDLINE(MaxNewSize)) {
150-
log_warning(gc, ergo)("NewSize (" SIZE_FORMAT "k) is greater than the MaxNewSize (" SIZE_FORMAT "k). "
151-
"A new max generation size of " SIZE_FORMAT "k will be used.",
150+
log_warning(gc, ergo)("NewSize (%zuk) is greater than the MaxNewSize (%zuk). "
151+
"A new max generation size of %zuk will be used.",
152152
NewSize/K, MaxNewSize/K, NewSize/K);
153153
}
154154
FLAG_SET_ERGO(MaxNewSize, NewSize);
@@ -245,7 +245,7 @@ void GenArguments::initialize_size_info() {
245245
}
246246
}
247247

248-
log_trace(gc, heap)("1: Minimum young " SIZE_FORMAT " Initial young " SIZE_FORMAT " Maximum young " SIZE_FORMAT,
248+
log_trace(gc, heap)("1: Minimum young %zu Initial young %zu Maximum young %zu",
249249
MinNewSize, initial_young_size, max_young_size);
250250

251251
// At this point the minimum, initial and maximum sizes
@@ -287,7 +287,7 @@ void GenArguments::initialize_size_info() {
287287
initial_young_size = desired_young_size;
288288
}
289289

290-
log_trace(gc, heap)("2: Minimum young " SIZE_FORMAT " Initial young " SIZE_FORMAT " Maximum young " SIZE_FORMAT,
290+
log_trace(gc, heap)("2: Minimum young %zu Initial young %zu Maximum young %zu",
291291
MinNewSize, initial_young_size, max_young_size);
292292
}
293293

@@ -304,7 +304,7 @@ void GenArguments::initialize_size_info() {
304304
OldSize = initial_old_size;
305305
}
306306

307-
log_trace(gc, heap)("Minimum old " SIZE_FORMAT " Initial old " SIZE_FORMAT " Maximum old " SIZE_FORMAT,
307+
log_trace(gc, heap)("Minimum old %zu Initial old %zu Maximum old %zu",
308308
MinOldSize, OldSize, MaxOldSize);
309309

310310
DEBUG_ONLY(assert_size_info();)

‎src/hotspot/share/gc/shared/jvmFlagConstraintsGC.cpp

+25-25
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ static JVMFlag::Error MinPLABSizeBounds(const char* name, size_t value, bool ver
5757
if ((GCConfig::is_gc_selected(CollectedHeap::G1) || GCConfig::is_gc_selected(CollectedHeap::Parallel)) &&
5858
(value < PLAB::min_size())) {
5959
JVMFlag::printError(verbose,
60-
"%s (" SIZE_FORMAT ") must be "
61-
"greater than or equal to ergonomic PLAB minimum size (" SIZE_FORMAT ")\n",
60+
"%s (%zu) must be "
61+
"greater than or equal to ergonomic PLAB minimum size (%zu)\n",
6262
name, value, PLAB::min_size());
6363
return JVMFlag::VIOLATES_CONSTRAINT;
6464
}
@@ -70,8 +70,8 @@ JVMFlag::Error MaxPLABSizeBounds(const char* name, size_t value, bool verbose) {
7070
if ((GCConfig::is_gc_selected(CollectedHeap::G1) ||
7171
GCConfig::is_gc_selected(CollectedHeap::Parallel)) && (value > PLAB::max_size())) {
7272
JVMFlag::printError(verbose,
73-
"%s (" SIZE_FORMAT ") must be "
74-
"less than or equal to ergonomic PLAB maximum size (" SIZE_FORMAT ")\n",
73+
"%s (%zu) must be "
74+
"less than or equal to ergonomic PLAB maximum size (%zu)\n",
7575
name, value, PLAB::max_size());
7676
return JVMFlag::VIOLATES_CONSTRAINT;
7777
}
@@ -124,7 +124,7 @@ static JVMFlag::Error CheckMaxHeapSizeAndSoftRefLRUPolicyMSPerMB(size_t maxHeap,
124124
if ((softRef > 0) && ((maxHeap / M) > (max_uintx / softRef))) {
125125
JVMFlag::printError(verbose,
126126
"Desired lifetime of SoftReferences cannot be expressed correctly. "
127-
"MaxHeapSize (" SIZE_FORMAT ") or SoftRefLRUPolicyMSPerMB "
127+
"MaxHeapSize (%zu) or SoftRefLRUPolicyMSPerMB "
128128
"(%zd) is too large\n",
129129
maxHeap, softRef);
130130
return JVMFlag::VIOLATES_CONSTRAINT;
@@ -141,8 +141,8 @@ JVMFlag::Error MarkStackSizeConstraintFunc(size_t value, bool verbose) {
141141
// value == 0 is handled by the range constraint.
142142
if (value > MarkStackSizeMax) {
143143
JVMFlag::printError(verbose,
144-
"MarkStackSize (" SIZE_FORMAT ") must be "
145-
"less than or equal to MarkStackSizeMax (" SIZE_FORMAT ")\n",
144+
"MarkStackSize (%zu) must be "
145+
"less than or equal to MarkStackSizeMax (%zu)\n",
146146
value, MarkStackSizeMax);
147147
return JVMFlag::VIOLATES_CONSTRAINT;
148148
} else {
@@ -233,8 +233,8 @@ static JVMFlag::Error MaxSizeForAlignment(const char* name, size_t value, size_t
233233
size_t aligned_max = ((max_uintx - alignment) & ~(alignment-1));
234234
if (value > aligned_max) {
235235
JVMFlag::printError(verbose,
236-
"%s (" SIZE_FORMAT ") must be "
237-
"less than or equal to aligned maximum value (" SIZE_FORMAT ")\n",
236+
"%s (%zu) must be "
237+
"less than or equal to aligned maximum value (%zu)\n",
238238
name, value, aligned_max);
239239
return JVMFlag::VIOLATES_CONSTRAINT;
240240
}
@@ -288,8 +288,8 @@ JVMFlag::Error HeapBaseMinAddressConstraintFunc(size_t value, bool verbose) {
288288
// Check for this by ensuring that MaxHeapSize plus the requested min base address still fit within max_uintx.
289289
if (UseCompressedOops && FLAG_IS_ERGO(MaxHeapSize) && (value > (max_uintx - MaxHeapSize))) {
290290
JVMFlag::printError(verbose,
291-
"HeapBaseMinAddress (" SIZE_FORMAT ") or MaxHeapSize (" SIZE_FORMAT ") is too large. "
292-
"Sum of them must be less than or equal to maximum of size_t (" SIZE_FORMAT ")\n",
291+
"HeapBaseMinAddress (%zu) or MaxHeapSize (%zu) is too large. "
292+
"Sum of them must be less than or equal to maximum of size_t (%zu)\n",
293293
value, MaxHeapSize, max_uintx);
294294
return JVMFlag::VIOLATES_CONSTRAINT;
295295
}
@@ -312,15 +312,15 @@ JVMFlag::Error MinTLABSizeConstraintFunc(size_t value, bool verbose) {
312312
// At least, alignment reserve area is needed.
313313
if (value < ThreadLocalAllocBuffer::alignment_reserve_in_bytes()) {
314314
JVMFlag::printError(verbose,
315-
"MinTLABSize (" SIZE_FORMAT ") must be "
316-
"greater than or equal to reserved area in TLAB (" SIZE_FORMAT ")\n",
315+
"MinTLABSize (%zu) must be "
316+
"greater than or equal to reserved area in TLAB (%zu)\n",
317317
value, ThreadLocalAllocBuffer::alignment_reserve_in_bytes());
318318
return JVMFlag::VIOLATES_CONSTRAINT;
319319
}
320320
if (value > (ThreadLocalAllocBuffer::max_size() * HeapWordSize)) {
321321
JVMFlag::printError(verbose,
322-
"MinTLABSize (" SIZE_FORMAT ") must be "
323-
"less than or equal to ergonomic TLAB maximum (" SIZE_FORMAT ")\n",
322+
"MinTLABSize (%zu) must be "
323+
"less than or equal to ergonomic TLAB maximum (%zu)\n",
324324
value, ThreadLocalAllocBuffer::max_size() * HeapWordSize);
325325
return JVMFlag::VIOLATES_CONSTRAINT;
326326
}
@@ -332,15 +332,15 @@ JVMFlag::Error TLABSizeConstraintFunc(size_t value, bool verbose) {
332332
if (FLAG_IS_CMDLINE(TLABSize)) {
333333
if (value < MinTLABSize) {
334334
JVMFlag::printError(verbose,
335-
"TLABSize (" SIZE_FORMAT ") must be "
336-
"greater than or equal to MinTLABSize (" SIZE_FORMAT ")\n",
335+
"TLABSize (%zu) must be "
336+
"greater than or equal to MinTLABSize (%zu)\n",
337337
value, MinTLABSize);
338338
return JVMFlag::VIOLATES_CONSTRAINT;
339339
}
340340
if (value > (ThreadLocalAllocBuffer::max_size() * HeapWordSize)) {
341341
JVMFlag::printError(verbose,
342-
"TLABSize (" SIZE_FORMAT ") must be "
343-
"less than or equal to ergonomic TLAB maximum size (" SIZE_FORMAT ")\n",
342+
"TLABSize (%zu) must be "
343+
"less than or equal to ergonomic TLAB maximum size (%zu)\n",
344344
value, (ThreadLocalAllocBuffer::max_size() * HeapWordSize));
345345
return JVMFlag::VIOLATES_CONSTRAINT;
346346
}
@@ -358,7 +358,7 @@ JVMFlag::Error TLABWasteIncrementConstraintFunc(uintx value, bool verbose) {
358358
if (refill_waste_limit > (max_uintx - value)) {
359359
JVMFlag::printError(verbose,
360360
"TLABWasteIncrement (%zu) must be "
361-
"less than or equal to ergonomic TLAB waste increment maximum size(" SIZE_FORMAT ")\n",
361+
"less than or equal to ergonomic TLAB waste increment maximum size(%zu)\n",
362362
value, (max_uintx - refill_waste_limit));
363363
return JVMFlag::VIOLATES_CONSTRAINT;
364364
}
@@ -371,7 +371,7 @@ JVMFlag::Error SurvivorRatioConstraintFunc(uintx value, bool verbose) {
371371
(value > (MaxHeapSize / SpaceAlignment))) {
372372
JVMFlag::printError(verbose,
373373
"SurvivorRatio (%zu) must be "
374-
"less than or equal to ergonomic SurvivorRatio maximum (" SIZE_FORMAT ")\n",
374+
"less than or equal to ergonomic SurvivorRatio maximum (%zu)\n",
375375
value,
376376
(MaxHeapSize / SpaceAlignment));
377377
return JVMFlag::VIOLATES_CONSTRAINT;
@@ -383,8 +383,8 @@ JVMFlag::Error SurvivorRatioConstraintFunc(uintx value, bool verbose) {
383383
JVMFlag::Error MetaspaceSizeConstraintFunc(size_t value, bool verbose) {
384384
if (value > MaxMetaspaceSize) {
385385
JVMFlag::printError(verbose,
386-
"MetaspaceSize (" SIZE_FORMAT ") must be "
387-
"less than or equal to MaxMetaspaceSize (" SIZE_FORMAT ")\n",
386+
"MetaspaceSize (%zu) must be "
387+
"less than or equal to MaxMetaspaceSize (%zu)\n",
388388
value, MaxMetaspaceSize);
389389
return JVMFlag::VIOLATES_CONSTRAINT;
390390
} else {
@@ -395,8 +395,8 @@ JVMFlag::Error MetaspaceSizeConstraintFunc(size_t value, bool verbose) {
395395
JVMFlag::Error MaxMetaspaceSizeConstraintFunc(size_t value, bool verbose) {
396396
if (value < MetaspaceSize) {
397397
JVMFlag::printError(verbose,
398-
"MaxMetaspaceSize (" SIZE_FORMAT ") must be "
399-
"greater than or equal to MetaspaceSize (" SIZE_FORMAT ")\n",
398+
"MaxMetaspaceSize (%zu) must be "
399+
"greater than or equal to MetaspaceSize (%zu)\n",
400400
value, MaxMetaspaceSize);
401401
return JVMFlag::VIOLATES_CONSTRAINT;
402402
} else {

‎src/hotspot/share/gc/shared/memAllocator.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -294,13 +294,13 @@ HeapWord* MemAllocator::mem_allocate_inside_tlab_slow(Allocation& allocation) co
294294
mem = Universe::heap()->allocate_new_tlab(min_tlab_size, new_tlab_size, &allocation._allocated_tlab_size);
295295
if (mem == nullptr) {
296296
assert(allocation._allocated_tlab_size == 0,
297-
"Allocation failed, but actual size was updated. min: " SIZE_FORMAT
298-
", desired: " SIZE_FORMAT ", actual: " SIZE_FORMAT,
297+
"Allocation failed, but actual size was updated. min: %zu"
298+
", desired: %zu, actual: %zu",
299299
min_tlab_size, new_tlab_size, allocation._allocated_tlab_size);
300300
return nullptr;
301301
}
302302
assert(allocation._allocated_tlab_size != 0, "Allocation succeeded but actual size not updated. mem at: "
303-
PTR_FORMAT " min: " SIZE_FORMAT ", desired: " SIZE_FORMAT,
303+
PTR_FORMAT " min: %zu, desired: %zu",
304304
p2i(mem), min_tlab_size, new_tlab_size);
305305

306306
// ...and clear or zap just allocated TLAB, if needed.

‎src/hotspot/share/gc/shared/oopStorage.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ bool OopStorage::expand_active_array() {
579579
assert_lock_strong(_allocation_mutex);
580580
ActiveArray* old_array = _active_array;
581581
size_t new_size = 2 * old_array->size();
582-
log_debug(oopstorage, blocks)("%s: expand active array " SIZE_FORMAT,
582+
log_debug(oopstorage, blocks)("%s: expand active array %zu",
583583
name(), new_size);
584584
ActiveArray* new_array = ActiveArray::create(new_size,
585585
mem_tag(),
@@ -1121,8 +1121,8 @@ bool OopStorage::BasicParState::claim_next_segment(IterationData* data) {
11211121

11221122
bool OopStorage::BasicParState::finish_iteration(const IterationData* data) const {
11231123
log_info(oopstorage, blocks, stats)
1124-
("Parallel iteration on %s: blocks = " SIZE_FORMAT
1125-
", processed = " SIZE_FORMAT " (%2.f%%)",
1124+
("Parallel iteration on %s: blocks = %zu"
1125+
", processed = %zu (%2.f%%)",
11261126
_storage->name(), _block_count, data->_processed,
11271127
percent_of(data->_processed, _block_count));
11281128
return false;
@@ -1171,7 +1171,7 @@ void OopStorage::print_on(outputStream* st) const {
11711171
double data_size = section_size * section_count;
11721172
double alloc_percentage = percent_of((double)allocations, blocks * data_size);
11731173

1174-
st->print("%s: " SIZE_FORMAT " entries in " SIZE_FORMAT " blocks (%.F%%), " SIZE_FORMAT " bytes",
1174+
st->print("%s: %zu entries in %zu blocks (%.F%%), %zu bytes",
11751175
name(), allocations, blocks, alloc_percentage, total_memory_usage());
11761176
if (_concurrent_iteration_count > 0) {
11771177
st->print(", concurrent iteration active");

‎src/hotspot/share/gc/shared/plab.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -65,7 +65,7 @@ PLAB::PLAB(size_t desired_plab_sz_) :
6565
_end(nullptr), _hard_end(nullptr), _allocated(0), _wasted(0), _undo_wasted(0)
6666
{
6767
assert(min_size() > CollectedHeap::lab_alignment_reserve(),
68-
"Minimum PLAB size " SIZE_FORMAT " must be larger than alignment reserve " SIZE_FORMAT " "
68+
"Minimum PLAB size %zu must be larger than alignment reserve %zu "
6969
"to be able to contain objects", min_size(), CollectedHeap::lab_alignment_reserve());
7070
}
7171

‎src/hotspot/share/gc/shared/preservedMarks.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -67,10 +67,10 @@ void PreservedMarks::restore_and_increment(volatile size_t* const total_size_add
6767

6868
#ifndef PRODUCT
6969
void PreservedMarks::assert_empty() {
70-
assert(_stack.is_empty(), "stack expected to be empty, size = " SIZE_FORMAT,
70+
assert(_stack.is_empty(), "stack expected to be empty, size = %zu",
7171
_stack.size());
7272
assert(_stack.cache_size() == 0,
73-
"stack expected to have no cached segments, cache size = " SIZE_FORMAT,
73+
"stack expected to have no cached segments, cache size = %zu",
7474
_stack.cache_size());
7575
}
7676
#endif // ndef PRODUCT

‎src/hotspot/share/gc/shared/pretouchTask.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -43,7 +43,7 @@ PretouchTask::PretouchTask(const char* task_name,
4343
_chunk_size(chunk_size) {
4444

4545
assert(chunk_size >= page_size,
46-
"Chunk size " SIZE_FORMAT " is smaller than page size " SIZE_FORMAT,
46+
"Chunk size %zu is smaller than page size %zu",
4747
chunk_size, page_size);
4848
}
4949

@@ -79,12 +79,12 @@ void PretouchTask::pretouch(const char* task_name, char* start_address, char* en
7979
size_t num_chunks = ((total_bytes - 1) / chunk_size) + 1;
8080

8181
uint num_workers = (uint)MIN2(num_chunks, (size_t)pretouch_workers->max_workers());
82-
log_debug(gc, heap)("Running %s with %u workers for " SIZE_FORMAT " work units pre-touching " SIZE_FORMAT "B.",
82+
log_debug(gc, heap)("Running %s with %u workers for %zu work units pre-touching %zuB.",
8383
task.name(), num_workers, num_chunks, total_bytes);
8484

8585
pretouch_workers->run_task(&task, num_workers);
8686
} else {
87-
log_debug(gc, heap)("Running %s pre-touching " SIZE_FORMAT "B.",
87+
log_debug(gc, heap)("Running %s pre-touching %zuB.",
8888
task.name(), total_bytes);
8989
task.work(0);
9090
}

‎src/hotspot/share/gc/shared/referenceProcessor.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -175,7 +175,7 @@ size_t ReferenceProcessor::total_count(DiscoveredList lists[]) const {
175175
#ifdef ASSERT
176176
void ReferenceProcessor::verify_total_count_zero(DiscoveredList lists[], const char* type) {
177177
size_t count = total_count(lists);
178-
assert(count == 0, "%ss must be empty but has " SIZE_FORMAT " elements", type, count);
178+
assert(count == 0, "%ss must be empty but has %zu elements", type, count);
179179
}
180180
#endif
181181

@@ -365,7 +365,7 @@ size_t ReferenceProcessor::process_discovered_list_work(DiscoveredList& refs_
365365
refs_list.clear();
366366
}
367367

368-
log_develop_trace(gc, ref)(" Dropped " SIZE_FORMAT " active Refs out of " SIZE_FORMAT
368+
log_develop_trace(gc, ref)(" Dropped %zu active Refs out of %zu"
369369
" Refs in discovered list " PTR_FORMAT,
370370
iter.removed(), iter.processed(), p2i(&refs_list));
371371
return iter.removed();
@@ -559,10 +559,10 @@ void ReferenceProcessor::log_reflist(const char* prefix, DiscoveredList list[],
559559
LogStream ls(lt);
560560
ls.print("%s", prefix);
561561
for (uint i = 0; i < num_active_queues; i++) {
562-
ls.print(SIZE_FORMAT " ", list[i].length());
562+
ls.print("%zu ", list[i].length());
563563
total += list[i].length();
564564
}
565-
ls.print_cr("(" SIZE_FORMAT ")", total);
565+
ls.print_cr("(%zu)", total);
566566
}
567567

568568
#ifndef PRODUCT
@@ -574,7 +574,7 @@ void ReferenceProcessor::log_reflist_counts(DiscoveredList ref_lists[], uint num
574574
log_reflist("", ref_lists, num_active_queues);
575575
#ifdef ASSERT
576576
for (uint i = num_active_queues; i < _max_num_queues; i++) {
577-
assert(ref_lists[i].length() == 0, SIZE_FORMAT " unexpected References in %u",
577+
assert(ref_lists[i].length() == 0, "%zu unexpected References in %u",
578578
ref_lists[i].length(), i);
579579
}
580580
#endif
@@ -1095,7 +1095,7 @@ bool ReferenceProcessor::preclean_discovered_reflist(DiscoveredList& refs_lis
10951095
}
10961096

10971097
if (iter.processed() > 0) {
1098-
log_develop_trace(gc, ref)(" Dropped " SIZE_FORMAT " Refs out of " SIZE_FORMAT " Refs in discovered list " PTR_FORMAT,
1098+
log_develop_trace(gc, ref)(" Dropped %zu Refs out of %zu Refs in discovered list " PTR_FORMAT,
10991099
iter.removed(), iter.processed(), p2i(&refs_list));
11001100
}
11011101
return false;

‎src/hotspot/share/gc/shared/satbMarkQueue.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -54,8 +54,8 @@ static void print_satb_buffer(const char* name,
5454
void** buf,
5555
size_t index,
5656
size_t capacity) {
57-
tty->print_cr(" SATB BUFFER [%s] buf: " PTR_FORMAT " index: " SIZE_FORMAT
58-
" capacity: " SIZE_FORMAT,
57+
tty->print_cr(" SATB BUFFER [%s] buf: " PTR_FORMAT " index: %zu"
58+
" capacity: %zu",
5959
name, p2i(buf), index, capacity);
6060
}
6161

‎src/hotspot/share/gc/shared/taskqueue.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -75,10 +75,9 @@ void TaskQueueStats::print_header(unsigned int line, outputStream* const stream,
7575

7676
void TaskQueueStats::print(outputStream* stream, unsigned int width) const
7777
{
78-
#define FMT SIZE_FORMAT_W(*)
79-
stream->print(FMT, width, _stats[0]);
78+
stream->print("%*zu", width, _stats[0]);
8079
for (unsigned int i = 1; i < last_stat_id; ++i) {
81-
stream->print(" " FMT, width, _stats[i]);
80+
stream->print(" %*zu", width, _stats[i]);
8281
}
8382
#undef FMT
8483
}

‎src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -164,7 +164,7 @@ void ThreadLocalAllocBuffer::resize() {
164164
size_t aligned_new_size = align_object_size(new_size);
165165

166166
log_trace(gc, tlab)("TLAB new size: thread: " PTR_FORMAT " [id: %2d]"
167-
" refills %d alloc: %8.6f desired_size: " SIZE_FORMAT " -> " SIZE_FORMAT,
167+
" refills %d alloc: %8.6f desired_size: %zu -> %zu",
168168
p2i(thread()), thread()->osthread()->thread_id(),
169169
_target_refills, _allocation_fraction.average(), desired_size(), aligned_new_size);
170170

@@ -263,7 +263,7 @@ void ThreadLocalAllocBuffer::startup_initialization() {
263263
guarantee(Thread::current()->is_Java_thread(), "tlab initialization thread not Java thread");
264264
Thread::current()->tlab().initialize();
265265

266-
log_develop_trace(gc, tlab)("TLAB min: " SIZE_FORMAT " initial: " SIZE_FORMAT " max: " SIZE_FORMAT,
266+
log_develop_trace(gc, tlab)("TLAB min: %zu initial: %zu max: %zu",
267267
min_size(), Thread::current()->tlab().initial_desired_size(), max_size());
268268
}
269269

@@ -299,8 +299,8 @@ void ThreadLocalAllocBuffer::print_stats(const char* tag) {
299299
double waste_percent = percent_of(waste, _allocated_size);
300300
size_t tlab_used = Universe::heap()->tlab_used(thrd);
301301
log.trace("TLAB: %s thread: " PTR_FORMAT " [id: %2d]"
302-
" desired_size: " SIZE_FORMAT "KB"
303-
" slow allocs: %d refill waste: " SIZE_FORMAT "B"
302+
" desired_size: %zuKB"
303+
" slow allocs: %d refill waste: %zuB"
304304
" alloc:%8.5f %8.0fKB refills: %d waste %4.1f%% gc: %dB"
305305
" slow: %dB",
306306
tag, p2i(thrd), thrd->osthread()->thread_id(),
@@ -451,8 +451,8 @@ void ThreadLocalAllocStats::publish() {
451451
const double waste_percent = percent_of(waste, _total_allocations);
452452
log_debug(gc, tlab)("TLAB totals: thrds: %d refills: %d max: %d"
453453
" slow allocs: %d max %d waste: %4.1f%%"
454-
" gc: " SIZE_FORMAT "B max: " SIZE_FORMAT "B"
455-
" slow: " SIZE_FORMAT "B max: " SIZE_FORMAT "B",
454+
" gc: %zuB max: %zuB"
455+
" slow: %zuB max: %zuB",
456456
_allocating_threads, _total_refills, _max_refills,
457457
_total_slow_allocations, _max_slow_allocations, waste_percent,
458458
_total_gc_waste * HeapWordSize, _max_gc_waste * HeapWordSize,

‎src/hotspot/share/gc/shared/threadLocalAllocBuffer.inline.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -61,11 +61,11 @@ inline size_t ThreadLocalAllocBuffer::compute_size(size_t obj_size) {
6161
// Make sure there's enough room for object and filler int[].
6262
if (new_tlab_size < compute_min_size(obj_size)) {
6363
// If there isn't enough room for the allocation, return failure.
64-
log_trace(gc, tlab)("ThreadLocalAllocBuffer::compute_size(" SIZE_FORMAT ") returns failure",
64+
log_trace(gc, tlab)("ThreadLocalAllocBuffer::compute_size(%zu) returns failure",
6565
obj_size);
6666
return 0;
6767
}
68-
log_trace(gc, tlab)("ThreadLocalAllocBuffer::compute_size(" SIZE_FORMAT ") returns " SIZE_FORMAT,
68+
log_trace(gc, tlab)("ThreadLocalAllocBuffer::compute_size(%zu) returns %zu",
6969
obj_size, new_tlab_size);
7070
return new_tlab_size;
7171
}
@@ -86,9 +86,9 @@ void ThreadLocalAllocBuffer::record_slow_allocation(size_t obj_size) {
8686
_slow_allocations++;
8787

8888
log_develop_trace(gc, tlab)("TLAB: %s thread: " PTR_FORMAT " [id: %2d]"
89-
" obj: " SIZE_FORMAT
90-
" free: " SIZE_FORMAT
91-
" waste: " SIZE_FORMAT,
89+
" obj: %zu"
90+
" free: %zu"
91+
" waste: %zu",
9292
"slow", p2i(thread()), thread()->osthread()->thread_id(),
9393
obj_size, free(), refill_waste_limit());
9494
}

‎src/hotspot/share/gc/shared/workerDataArray.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,9 +49,9 @@ void WorkerDataArray<double>::WDAPrinter::summary(outputStream* out, double min,
4949

5050
template <>
5151
void WorkerDataArray<size_t>::WDAPrinter::summary(outputStream* out, size_t min, double avg, size_t max, size_t diff, size_t sum, bool print_sum) {
52-
out->print(" Min: " SIZE_FORMAT ", Avg: %4.1lf, Max: " SIZE_FORMAT ", Diff: " SIZE_FORMAT, min, avg, max, diff);
52+
out->print(" Min: %zu, Avg: %4.1lf, Max: %zu, Diff: %zu", min, avg, max, diff);
5353
if (print_sum) {
54-
out->print(", Sum: " SIZE_FORMAT, sum);
54+
out->print(", Sum: %zu", sum);
5555
}
5656
}
5757

@@ -75,7 +75,7 @@ void WorkerDataArray<size_t>::WDAPrinter::details(const WorkerDataArray<size_t>*
7575
for (uint i = 0; i < phase->_length; ++i) {
7676
size_t value = phase->get(i);
7777
if (value != phase->uninitialized()) {
78-
out->print(" " SIZE_FORMAT, phase->get(i));
78+
out->print(" %zu", phase->get(i));
7979
} else {
8080
out->print(" -");
8181
}

0 commit comments

Comments
 (0)
Please sign in to comment.