Skip to content

Commit a01e92c

Browse files
committedJan 14, 2025
8347724: Replace SIZE_FORMAT in jfr directory
Reviewed-by: egahlin
1 parent d002933 commit a01e92c

File tree

9 files changed

+28
-28
lines changed

9 files changed

+28
-28
lines changed
 

‎src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.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
@@ -1322,7 +1322,7 @@ static u1* schema_extend_event_subklass_bytes(const InstanceKlass* ik,
13221322
const jint new_buffer_size = extra_stream_bytes + orig_stream_size;
13231323
u1* const new_buffer = NEW_RESOURCE_ARRAY_IN_THREAD_RETURN_NULL(THREAD, u1, new_buffer_size);
13241324
if (new_buffer == nullptr) {
1325-
log_error(jfr, system) ("Thread local allocation (native) for " SIZE_FORMAT
1325+
log_error(jfr, system) ("Thread local allocation (native) for %zu"
13261326
" bytes failed in JfrEventClassTransformer::on_klass_creation", static_cast<size_t>(new_buffer_size));
13271327
return nullptr;
13281328
}
@@ -1563,7 +1563,7 @@ static void cache_class_file_data(InstanceKlass* new_ik, const ClassFileStream*
15631563
JvmtiCachedClassFileData* p =
15641564
(JvmtiCachedClassFileData*)NEW_C_HEAP_ARRAY_RETURN_NULL(u1, offset_of(JvmtiCachedClassFileData, data) + stream_len, mtInternal);
15651565
if (p == nullptr) {
1566-
log_error(jfr, system)("Allocation using C_HEAP_ARRAY for " SIZE_FORMAT " bytes failed in JfrEventClassTransformer::cache_class_file_data",
1566+
log_error(jfr, system)("Allocation using C_HEAP_ARRAY for %zu bytes failed in JfrEventClassTransformer::cache_class_file_data",
15671567
static_cast<size_t>(offset_of(JvmtiCachedClassFileData, data) + stream_len));
15681568
return;
15691569
}

‎src/hotspot/share/jfr/instrumentation/jfrJvmtiAgent.cpp

+2-2
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
@@ -103,7 +103,7 @@ static jclass* create_classes_array(jint classes_count, TRAPS) {
103103
if (nullptr == classes) {
104104
char error_buffer[ERROR_MSG_BUFFER_SIZE];
105105
jio_snprintf(error_buffer, ERROR_MSG_BUFFER_SIZE,
106-
"Thread local allocation (native) of " SIZE_FORMAT " bytes failed "
106+
"Thread local allocation (native) of %zu bytes failed "
107107
"in retransform classes", sizeof(jclass) * classes_count);
108108
log_error(jfr, system)("%s", error_buffer);
109109
JfrJavaSupport::throw_out_of_memory_error(error_buffer, CHECK_NULL);

‎src/hotspot/share/jfr/jni/jfrUpcalls.cpp

+2-2
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
@@ -107,7 +107,7 @@ static const size_t ERROR_MSG_BUFFER_SIZE = 256;
107107
static void log_error_and_throw_oom(jint new_bytes_length, TRAPS) {
108108
char error_buffer[ERROR_MSG_BUFFER_SIZE];
109109
jio_snprintf(error_buffer, ERROR_MSG_BUFFER_SIZE,
110-
"Thread local allocation (native) for " SIZE_FORMAT " bytes failed in JfrUpcalls", (size_t)new_bytes_length);
110+
"Thread local allocation (native) for %zu bytes failed in JfrUpcalls", (size_t)new_bytes_length);
111111
log_error(jfr, system)("%s", error_buffer);
112112
JfrJavaSupport::throw_out_of_memory_error(error_buffer, CHECK);
113113
}

‎src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 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
@@ -55,7 +55,7 @@ static void log_frontier_level_summary(size_t level,
5555
size_t edge_size) {
5656
const size_t nof_edges_in_frontier = high_idx - low_idx;
5757
log_trace(jfr, system)(
58-
"BFS front: " SIZE_FORMAT " edges: " SIZE_FORMAT " size: " SIZE_FORMAT " [KB]",
58+
"BFS front: %zu edges: %zu size: %zu [KB]",
5959
level,
6060
nof_edges_in_frontier,
6161
(nof_edges_in_frontier * edge_size) / K
@@ -85,14 +85,14 @@ void BFSClosure::log_dfs_fallback() const {
8585

8686
// additional information about DFS fallover
8787
log_trace(jfr, system)(
88-
"BFS front: " SIZE_FORMAT " filled edge queue at edge: " SIZE_FORMAT,
88+
"BFS front: %zu filled edge queue at edge: %zu",
8989
_current_frontier_level,
9090
_dfs_fallback_idx
9191
);
9292

9393
const size_t nof_dfs_completed_edges = _edge_queue->bottom() - _dfs_fallback_idx;
9494
log_trace(jfr, system)(
95-
"DFS to complete " SIZE_FORMAT " edges size: " SIZE_FORMAT " [KB]",
95+
"DFS to complete %zu edges size: %zu [KB]",
9696
nof_dfs_completed_edges,
9797
(nof_dfs_completed_edges * edge_size) / K
9898
);

‎src/hotspot/share/jfr/leakprofiler/chains/pathToGcRootsOperation.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 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
@@ -70,9 +70,9 @@ static size_t edge_queue_memory_commit_size(size_t memory_reservation_bytes) {
7070
}
7171

7272
static void log_edge_queue_summary(const EdgeQueue& edge_queue) {
73-
log_trace(jfr, system)("EdgeQueue reserved size total: " SIZE_FORMAT " [KB]", edge_queue.reserved_size() / K);
74-
log_trace(jfr, system)("EdgeQueue edges total: " SIZE_FORMAT, edge_queue.top());
75-
log_trace(jfr, system)("EdgeQueue liveset total: " SIZE_FORMAT " [KB]", edge_queue.live_set() / K);
73+
log_trace(jfr, system)("EdgeQueue reserved size total: %zu [KB]", edge_queue.reserved_size() / K);
74+
log_trace(jfr, system)("EdgeQueue edges total: %zu", edge_queue.top());
75+
log_trace(jfr, system)("EdgeQueue liveset total: %zu [KB]", edge_queue.live_set() / K);
7676
if (edge_queue.reserved_size() > 0) {
7777
log_trace(jfr, system)("EdgeQueue commit reserve ratio: %f\n",
7878
((double)edge_queue.live_set() / (double)edge_queue.reserved_size()));

‎src/hotspot/share/jfr/recorder/storage/jfrEpochStorage.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2023, 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
@@ -52,7 +52,7 @@ template <typename NodeType, template <typename> class RetrievalPolicy, bool Eag
5252
inline NodeType* JfrEpochStorageHost<NodeType, RetrievalPolicy, EagerReclaim>::acquire(size_t size, Thread* thread) {
5353
BufferPtr buffer = mspace_acquire_to_live_list(size, _mspace, thread);
5454
if (buffer == nullptr) {
55-
log_warning(jfr)("Unable to allocate " SIZE_FORMAT " bytes of %s.", _mspace->min_element_size(), "epoch storage");
55+
log_warning(jfr)("Unable to allocate %zu bytes of %s.", _mspace->min_element_size(), "epoch storage");
5656
return nullptr;
5757
}
5858
assert(buffer->acquired_by_self(), "invariant");

‎src/hotspot/share/jfr/recorder/storage/jfrMemorySpace.inline.hpp

+2-2
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
@@ -203,7 +203,7 @@ inline bool JfrMemorySpace< Client, RetrievalPolicy, FreeListType, FullListType,
203203
// allocations are even multiples of the mspace min size
204204
static inline size_t align_allocation_size(size_t requested_size, size_t min_element_size) {
205205
if (requested_size > static_cast<size_t>(min_intx)) {
206-
assert(false, "requested size: " SIZE_FORMAT " is too large", requested_size);
206+
assert(false, "requested size: %zu is too large", requested_size);
207207
return 0;
208208
}
209209
u8 alloc_size_bytes = min_element_size;

‎src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2024, 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
@@ -137,7 +137,7 @@ JfrStorageControl& JfrStorage::control() {
137137
}
138138

139139
static void log_allocation_failure(const char* msg, size_t size) {
140-
log_warning(jfr)("Unable to allocate " SIZE_FORMAT " bytes of %s.", size, msg);
140+
log_warning(jfr)("Unable to allocate %zu bytes of %s.", size, msg);
141141
}
142142

143143
BufferPtr JfrStorage::acquire_thread_local(Thread* thread, size_t size /* 0 */) {
@@ -327,8 +327,8 @@ static void log_discard(size_t pre_full_count, size_t post_full_count, size_t am
327327
if (log_is_enabled(Debug, jfr, system)) {
328328
const size_t number_of_discards = pre_full_count - post_full_count;
329329
if (number_of_discards > 0) {
330-
log_debug(jfr, system)("Cleared " SIZE_FORMAT " full buffer(s) of " SIZE_FORMAT" bytes.", number_of_discards, amount);
331-
log_debug(jfr, system)("Current number of full buffers " SIZE_FORMAT "", number_of_discards);
330+
log_debug(jfr, system)("Cleared %zu full buffer(s) of %zu bytes.", number_of_discards, amount);
331+
log_debug(jfr, system)("Current number of full buffers %zu", number_of_discards);
332332
}
333333
}
334334
}
@@ -566,7 +566,7 @@ static size_t process_full(Processor& processor, JfrFullList* list, JfrStorageCo
566566
static void log(size_t count, size_t amount, bool clear = false) {
567567
if (log_is_enabled(Debug, jfr, system)) {
568568
if (count > 0) {
569-
log_debug(jfr, system)("%s " SIZE_FORMAT " full buffer(s) of " SIZE_FORMAT" B of data%s",
569+
log_debug(jfr, system)("%s %zu full buffer(s) of %zu B of data%s",
570570
clear ? "Discarded" : "Wrote", count, amount, clear ? "." : " to chunk.");
571571
}
572572
}

‎src/hotspot/share/jfr/utilities/jfrAllocation.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 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
@@ -53,7 +53,7 @@ static void add(size_t alloc_size) {
5353
if (!JfrRecorder::is_created()) {
5454
const jlong total_allocated = atomic_add_jlong((jlong)alloc_size, &_allocated_bytes);
5555
const jlong current_live_set = atomic_add_jlong((jlong)alloc_size, &_live_set_bytes);
56-
log_trace(jfr, system)("Allocation: [" SIZE_FORMAT "] bytes", alloc_size);
56+
log_trace(jfr, system)("Allocation: [%zu] bytes", alloc_size);
5757
log_trace(jfr, system)("Total alloc [" JLONG_FORMAT "] bytes", total_allocated);
5858
log_trace(jfr, system)("Liveset: [" JLONG_FORMAT "] bytes", current_live_set);
5959
}
@@ -63,7 +63,7 @@ static void subtract(size_t dealloc_size) {
6363
if (!JfrRecorder::is_created()) {
6464
const jlong total_deallocated = atomic_add_jlong((jlong)dealloc_size, &_deallocated_bytes);
6565
const jlong current_live_set = atomic_add_jlong(((jlong)dealloc_size * -1), &_live_set_bytes);
66-
log_trace(jfr, system)("Deallocation: [" SIZE_FORMAT "] bytes", dealloc_size);
66+
log_trace(jfr, system)("Deallocation: [%zu] bytes", dealloc_size);
6767
log_trace(jfr, system)("Total dealloc [" JLONG_FORMAT "] bytes", total_deallocated);
6868
log_trace(jfr, system)("Liveset: [" JLONG_FORMAT "] bytes", current_live_set);
6969
}
@@ -77,7 +77,7 @@ static void hook_memory_deallocation(size_t dealloc_size) {
7777
static void hook_memory_allocation(const char* allocation, size_t alloc_size) {
7878
if (nullptr == allocation) {
7979
if (!JfrRecorder::is_created()) {
80-
log_warning(jfr, system)("Memory allocation failed for size [" SIZE_FORMAT "] bytes", alloc_size);
80+
log_warning(jfr, system)("Memory allocation failed for size [%zu] bytes", alloc_size);
8181
return;
8282
} else {
8383
// after critical startup, fail as by default

0 commit comments

Comments
 (0)
Please sign in to comment.