MCPcopy Create free account
hub / github.com/nodejs/node / get_chunks_space

Function get_chunks_space

deps/v8/tools/windbg.js:566–576  ·  view source on GitHub ↗
(space_tag, front, chunks)

Source from the content-addressed store, hash-verified

564 ['old', 'new_to', 'new_from', 'ro', 'map', 'code', 'lo', 'nlo'];
565
566function 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
578function get_chunks() {
579 let iso = cast(isolate_address, "v8::internal::Isolate");

Callers 2

get_chunksFunction · 0.85
print_remembered_setFunction · 0.85

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected