Skip to content

Commit b9e65f9

Browse files
committedAug 30, 2024
8337662: Improve os::print_hex_dump for printing Instructions sections
Reviewed-by: stuefe, lucy
1 parent f927c12 commit b9e65f9

File tree

3 files changed

+47
-6
lines changed

3 files changed

+47
-6
lines changed
 

‎src/hotspot/share/runtime/os.cpp

+10-3
Original file line numberDiff line numberDiff line change
@@ -1016,11 +1016,14 @@ static void print_hex_location(outputStream* st, const_address p, int unitsize,
10161016
}
10171017

10181018
void os::print_hex_dump(outputStream* st, const_address start, const_address end, int unitsize,
1019-
bool print_ascii, int bytes_per_line, const_address logical_start) {
1019+
bool print_ascii, int bytes_per_line, const_address logical_start, const_address highlight_address) {
10201020
constexpr int max_bytes_per_line = 64;
10211021
assert(unitsize == 1 || unitsize == 2 || unitsize == 4 || unitsize == 8, "just checking");
10221022
assert(bytes_per_line > 0 && bytes_per_line <= max_bytes_per_line &&
10231023
is_power_of_2(bytes_per_line), "invalid bytes_per_line");
1024+
assert(highlight_address == nullptr || (highlight_address >= start && highlight_address < end),
1025+
"address %p to highlight not in range %p - %p", highlight_address, start, end);
1026+
10241027

10251028
start = align_down(start, unitsize);
10261029
logical_start = align_down(logical_start, unitsize);
@@ -1037,7 +1040,11 @@ void os::print_hex_dump(outputStream* st, const_address start, const_address end
10371040
// Print out the addresses as if we were starting from logical_start.
10381041
while (p < end) {
10391042
if (cols == 0) {
1040-
st->print(PTR_FORMAT ": ", p2i(logical_p));
1043+
// highlight start of line if address of interest is located in the line
1044+
const bool should_highlight = (highlight_address >= p && highlight_address < p + bytes_per_line);
1045+
const char* const prefix =
1046+
(highlight_address != nullptr) ? (should_highlight ? "=>" : " ") : "";
1047+
st->print("%s" PTR_FORMAT ": ", prefix, p2i(logical_p));
10411048
}
10421049
print_hex_location(st, p, unitsize, ascii_form);
10431050
p += unitsize;
@@ -1082,7 +1089,7 @@ void os::print_tos(outputStream* st, address sp) {
10821089

10831090
void os::print_instructions(outputStream* st, address pc, int unitsize) {
10841091
st->print_cr("Instructions: (pc=" PTR_FORMAT ")", p2i(pc));
1085-
print_hex_dump(st, pc - 256, pc + 256, unitsize, /* print_ascii=*/false);
1092+
print_hex_dump(st, pc - 256, pc + 256, unitsize, /* print_ascii=*/false, pc);
10861093
}
10871094

10881095
void os::print_environment_variables(outputStream* st, const char** env_list) {

‎src/hotspot/share/runtime/os.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -857,9 +857,9 @@ class os: AllStatic {
857857
static frame current_frame();
858858

859859
static void print_hex_dump(outputStream* st, const_address start, const_address end, int unitsize, bool print_ascii,
860-
int bytes_per_line, const_address logical_start);
861-
static void print_hex_dump(outputStream* st, const_address start, const_address end, int unitsize, bool print_ascii = true) {
862-
print_hex_dump(st, start, end, unitsize, print_ascii, /*bytes_per_line=*/16, /*logical_start=*/start);
860+
int bytes_per_line, const_address logical_start, const_address highlight_address = nullptr);
861+
static void print_hex_dump(outputStream* st, const_address start, const_address end, int unitsize, bool print_ascii = true, const_address highlight_address = nullptr) {
862+
print_hex_dump(st, start, end, unitsize, print_ascii, /*bytes_per_line=*/16, /*logical_start=*/start, highlight_address);
863863
}
864864

865865
// returns a string to describe the exception/signal;

‎test/hotspot/gtest/runtime/test_os.cpp

+34
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,16 @@ static void do_test_print_hex_dump(const_address from, const_address to, int uni
178178
EXPECT_STREQ(buf, expected);
179179
}
180180

181+
// version with a highlighted pc location
182+
static void do_test_print_hex_dump_highlighted(const_address from, const_address to, int unitsize, int bytes_per_line,
183+
const_address logical_start, const char* expected, const_address highlight) {
184+
char buf[2048];
185+
buf[0] = '\0';
186+
stringStream ss(buf, sizeof(buf));
187+
os::print_hex_dump(&ss, from, to, unitsize, /* print_ascii=*/true, bytes_per_line, logical_start, highlight);
188+
EXPECT_STREQ(buf, expected);
189+
}
190+
181191
TEST_VM(os, test_print_hex_dump) {
182192

183193
#ifdef _LP64
@@ -197,6 +207,24 @@ TEST_VM(os, test_print_hex_dump) {
197207
ADDRESS2 ": ff ff e0 dc 23 00 6a 64 6b 2f 69 6e 74 65 72 6e 61 6c 2f 6c 6f 61 64 65 72 2f 4e 61 74 69 76 65 " ASCII_1 "\n" \
198208
ADDRESS3 ": 4c 69 62 72 61 72 69 65 73 00 00 00 00 00 00 00 " ASCII_2 "\n"
199209

210+
#define PAT_HL_1A "=>" ADDRESS1 ": ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??\n" \
211+
" " ADDRESS2 ": ff ff e0 dc 23 00 6a 64 6b 2f 69 6e 74 65 72 6e 61 6c 2f 6c 6f 61 64 65 72 2f 4e 61 74 69 76 65 " ASCII_1 "\n" \
212+
" " ADDRESS3 ": 4c 69 62 72 61 72 69 65 73 00 00 00 00 00 00 00 " ASCII_2 "\n"
213+
214+
#define PAT_HL_1B " " ADDRESS1 ": ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??\n" \
215+
"=>" ADDRESS2 ": ff ff e0 dc 23 00 6a 64 6b 2f 69 6e 74 65 72 6e 61 6c 2f 6c 6f 61 64 65 72 2f 4e 61 74 69 76 65 " ASCII_1 "\n" \
216+
" " ADDRESS3 ": 4c 69 62 72 61 72 69 65 73 00 00 00 00 00 00 00 " ASCII_2 "\n"
217+
218+
#ifdef VM_LITTLE_ENDIAN
219+
#define PAT_HL_1C " " ADDRESS1 ": ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ????\n" \
220+
"=>" ADDRESS2 ": ffff dce0 0023 646a 2f6b 6e69 6574 6e72 6c61 6c2f 616f 6564 2f72 614e 6974 6576 " ASCII_1 "\n" \
221+
" " ADDRESS3 ": 694c 7262 7261 6569 0073 0000 0000 0000 " ASCII_2 "\n"
222+
#else
223+
#define PAT_HL_1C " " ADDRESS1 ": ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ????\n" \
224+
"=>" ADDRESS2 ": ffff e0dc 2300 6a64 6b2f 696e 7465 726e 616c 2f6c 6f61 6465 722f 4e61 7469 7665 " ASCII_1 "\n" \
225+
" " ADDRESS3 ": 4c69 6272 6172 6965 7300 0000 0000 0000 " ASCII_2 "\n"
226+
#endif
227+
200228
#ifdef VM_LITTLE_ENDIAN
201229
#define PAT_2 ADDRESS1 ": ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ????\n" \
202230
ADDRESS2 ": ffff dce0 0023 646a 2f6b 6e69 6574 6e72 6c61 6c2f 616f 6564 2f72 614e 6974 6576 " ASCII_1 "\n" \
@@ -252,6 +280,12 @@ TEST_VM(os, test_print_hex_dump) {
252280
do_test_print_hex_dump(from + 1, to, 4, 32, logical_start, PAT_4);
253281
do_test_print_hex_dump(from + 1, to, 8, 32, logical_start, PAT_8);
254282

283+
// print with highlighted address
284+
do_test_print_hex_dump_highlighted(from, to, 1, 32, logical_start, PAT_HL_1A, from+5);
285+
do_test_print_hex_dump_highlighted(from, to, 1, 32, logical_start, PAT_HL_1B, from+32);
286+
do_test_print_hex_dump_highlighted(from, to, 1, 32, logical_start, PAT_HL_1B, from+60);
287+
do_test_print_hex_dump_highlighted(from, to, 2, 32, logical_start, PAT_HL_1C, from+60);
288+
255289
os::release_memory(two_pages, ps * 2);
256290
}
257291
#endif // not AIX

0 commit comments

Comments
 (0)
Please sign in to comment.