@@ -57,8 +57,8 @@ static JVMFlag::Error MinPLABSizeBounds(const char* name, size_t value, bool ver
57
57
if ((GCConfig::is_gc_selected (CollectedHeap::G1) || GCConfig::is_gc_selected (CollectedHeap::Parallel)) &&
58
58
(value < PLAB::min_size ())) {
59
59
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 " ,
62
62
name, value, PLAB::min_size ());
63
63
return JVMFlag::VIOLATES_CONSTRAINT;
64
64
}
@@ -70,8 +70,8 @@ JVMFlag::Error MaxPLABSizeBounds(const char* name, size_t value, bool verbose) {
70
70
if ((GCConfig::is_gc_selected (CollectedHeap::G1) ||
71
71
GCConfig::is_gc_selected (CollectedHeap::Parallel)) && (value > PLAB::max_size ())) {
72
72
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 " ,
75
75
name, value, PLAB::max_size ());
76
76
return JVMFlag::VIOLATES_CONSTRAINT;
77
77
}
@@ -124,7 +124,7 @@ static JVMFlag::Error CheckMaxHeapSizeAndSoftRefLRUPolicyMSPerMB(size_t maxHeap,
124
124
if ((softRef > 0 ) && ((maxHeap / M) > (max_uintx / softRef))) {
125
125
JVMFlag::printError (verbose,
126
126
" Desired lifetime of SoftReferences cannot be expressed correctly. "
127
- " MaxHeapSize (" SIZE_FORMAT " ) or SoftRefLRUPolicyMSPerMB "
127
+ " MaxHeapSize (%zu ) or SoftRefLRUPolicyMSPerMB "
128
128
" (%zd) is too large\n " ,
129
129
maxHeap, softRef);
130
130
return JVMFlag::VIOLATES_CONSTRAINT;
@@ -141,8 +141,8 @@ JVMFlag::Error MarkStackSizeConstraintFunc(size_t value, bool verbose) {
141
141
// value == 0 is handled by the range constraint.
142
142
if (value > MarkStackSizeMax) {
143
143
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 " ,
146
146
value, MarkStackSizeMax);
147
147
return JVMFlag::VIOLATES_CONSTRAINT;
148
148
} else {
@@ -233,8 +233,8 @@ static JVMFlag::Error MaxSizeForAlignment(const char* name, size_t value, size_t
233
233
size_t aligned_max = ((max_uintx - alignment) & ~(alignment-1 ));
234
234
if (value > aligned_max) {
235
235
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 " ,
238
238
name, value, aligned_max);
239
239
return JVMFlag::VIOLATES_CONSTRAINT;
240
240
}
@@ -288,8 +288,8 @@ JVMFlag::Error HeapBaseMinAddressConstraintFunc(size_t value, bool verbose) {
288
288
// Check for this by ensuring that MaxHeapSize plus the requested min base address still fit within max_uintx.
289
289
if (UseCompressedOops && FLAG_IS_ERGO (MaxHeapSize) && (value > (max_uintx - MaxHeapSize))) {
290
290
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 " ,
293
293
value, MaxHeapSize, max_uintx);
294
294
return JVMFlag::VIOLATES_CONSTRAINT;
295
295
}
@@ -312,15 +312,15 @@ JVMFlag::Error MinTLABSizeConstraintFunc(size_t value, bool verbose) {
312
312
// At least, alignment reserve area is needed.
313
313
if (value < ThreadLocalAllocBuffer::alignment_reserve_in_bytes ()) {
314
314
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 " ,
317
317
value, ThreadLocalAllocBuffer::alignment_reserve_in_bytes ());
318
318
return JVMFlag::VIOLATES_CONSTRAINT;
319
319
}
320
320
if (value > (ThreadLocalAllocBuffer::max_size () * HeapWordSize)) {
321
321
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 " ,
324
324
value, ThreadLocalAllocBuffer::max_size () * HeapWordSize);
325
325
return JVMFlag::VIOLATES_CONSTRAINT;
326
326
}
@@ -332,15 +332,15 @@ JVMFlag::Error TLABSizeConstraintFunc(size_t value, bool verbose) {
332
332
if (FLAG_IS_CMDLINE (TLABSize)) {
333
333
if (value < MinTLABSize) {
334
334
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 " ,
337
337
value, MinTLABSize);
338
338
return JVMFlag::VIOLATES_CONSTRAINT;
339
339
}
340
340
if (value > (ThreadLocalAllocBuffer::max_size () * HeapWordSize)) {
341
341
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 " ,
344
344
value, (ThreadLocalAllocBuffer::max_size () * HeapWordSize));
345
345
return JVMFlag::VIOLATES_CONSTRAINT;
346
346
}
@@ -358,7 +358,7 @@ JVMFlag::Error TLABWasteIncrementConstraintFunc(uintx value, bool verbose) {
358
358
if (refill_waste_limit > (max_uintx - value)) {
359
359
JVMFlag::printError (verbose,
360
360
" 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 " ,
362
362
value, (max_uintx - refill_waste_limit));
363
363
return JVMFlag::VIOLATES_CONSTRAINT;
364
364
}
@@ -371,7 +371,7 @@ JVMFlag::Error SurvivorRatioConstraintFunc(uintx value, bool verbose) {
371
371
(value > (MaxHeapSize / SpaceAlignment))) {
372
372
JVMFlag::printError (verbose,
373
373
" 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 " ,
375
375
value,
376
376
(MaxHeapSize / SpaceAlignment));
377
377
return JVMFlag::VIOLATES_CONSTRAINT;
@@ -383,8 +383,8 @@ JVMFlag::Error SurvivorRatioConstraintFunc(uintx value, bool verbose) {
383
383
JVMFlag::Error MetaspaceSizeConstraintFunc (size_t value, bool verbose) {
384
384
if (value > MaxMetaspaceSize) {
385
385
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 " ,
388
388
value, MaxMetaspaceSize);
389
389
return JVMFlag::VIOLATES_CONSTRAINT;
390
390
} else {
@@ -395,8 +395,8 @@ JVMFlag::Error MetaspaceSizeConstraintFunc(size_t value, bool verbose) {
395
395
JVMFlag::Error MaxMetaspaceSizeConstraintFunc (size_t value, bool verbose) {
396
396
if (value < MetaspaceSize) {
397
397
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 " ,
400
400
value, MaxMetaspaceSize);
401
401
return JVMFlag::VIOLATES_CONSTRAINT;
402
402
} else {
0 commit comments