(space_tag, front, chunks)
| 564 | ['old', 'new_to', 'new_from', 'ro', 'map', 'code', 'lo', 'nlo']; |
| 565 | |
| 566 | function get_chunks_space(space_tag, front, chunks) { |
| 567 | let cur = front; |
| 568 | while (!cur.isNull) { |
| 569 | chunks.push({ |
| 570 | 'address':cur.address, |
| 571 | 'area_start_':cur.area_start_, |
| 572 | 'area_end_':cur.area_end_, |
| 573 | 'space':space_tag}); |
| 574 | cur = cur.list_node_.next_; |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | function get_chunks() { |
| 579 | let iso = cast(isolate_address, "v8::internal::Isolate"); |
no test coverage detected