mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8253909: Implement detailed map file for CDS
Reviewed-by: stuefe, ccheung
This commit is contained in:
parent
7733a0e76b
commit
d1e94eebdd
10 changed files with 377 additions and 61 deletions
|
@ -686,7 +686,11 @@ class os: AllStatic {
|
|||
// return current frame. pc() and sp() are set to NULL on failure.
|
||||
static frame current_frame();
|
||||
|
||||
static void print_hex_dump(outputStream* st, address start, address end, int unitsize);
|
||||
static void print_hex_dump(outputStream* st, address start, address end, int unitsize,
|
||||
int bytes_per_line, address logical_start);
|
||||
static void print_hex_dump(outputStream* st, address start, address end, int unitsize) {
|
||||
print_hex_dump(st, start, end, unitsize, /*bytes_per_line=*/16, /*logical_start=*/start);
|
||||
}
|
||||
|
||||
// returns a string to describe the exception/signal;
|
||||
// returns NULL if exception_code is not an OS exception/signal.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue