@@ -178,6 +178,16 @@ static void do_test_print_hex_dump(const_address from, const_address to, int uni
178
178
EXPECT_STREQ (buf, expected);
179
179
}
180
180
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
+
181
191
TEST_VM (os, test_print_hex_dump) {
182
192
183
193
#ifdef _LP64
@@ -197,6 +207,24 @@ TEST_VM(os, test_print_hex_dump) {
197
207
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 " \
198
208
ADDRESS3 " : 4c 69 62 72 61 72 69 65 73 00 00 00 00 00 00 00 " ASCII_2 " \n "
199
209
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
+
200
228
#ifdef VM_LITTLE_ENDIAN
201
229
#define PAT_2 ADDRESS1 " : ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ???? ????\n " \
202
230
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) {
252
280
do_test_print_hex_dump (from + 1 , to, 4 , 32 , logical_start, PAT_4);
253
281
do_test_print_hex_dump (from + 1 , to, 8 , 32 , logical_start, PAT_8);
254
282
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
+
255
289
os::release_memory (two_pages, ps * 2 );
256
290
}
257
291
#endif // not AIX
0 commit comments