(address)
| 661 | } |
| 662 | |
| 663 | function print_owning_space(address) { |
| 664 | if (isolate_address == 0) { |
| 665 | print("Please call !set_iso(isolate_address) first."); |
| 666 | return; |
| 667 | } |
| 668 | |
| 669 | address = decomp(address); |
| 670 | let c = find_chunk(address); |
| 671 | if (c) { |
| 672 | print(`${hex(address)} is in ${c.space} (chunk: ${hex(c.address)})`); |
| 673 | } |
| 674 | else { |
| 675 | print(`Address ${hex(address)} is not in managed heap`); |
| 676 | } |
| 677 | } |
| 678 | |
| 679 | /*----------------------------------------------------------------------------- |
| 680 | Handles |
nothing calls this directly
no test coverage detected