MCPcopy Index your code
hub / github.com/nodejs/node / print_object_prev

Function print_object_prev

deps/v8/tools/windbg.js:438–448  ·  view source on GitHub ↗
(addr, max_slots = 100)

Source from the content-addressed store, hash-verified

436}
437
438function print_object_prev(addr, max_slots = 100) {
439 let obj_addr = find_object_prev(addr, max_slots);
440 if (!obj_addr) {
441 print(
442 `No object found within ${max_slots} slots prior to ${hex(addr)}`);
443 }
444 else {
445 print(
446 `found object: ${hex(obj_addr + 1)} : ${hex(poim(obj_addr))}`);
447 }
448}
449
450function print_object_next(addr, max_slots = 100) {
451 let obj_addr = find_object_next(addr, max_slots);

Callers

nothing calls this directly

Calls 4

find_object_prevFunction · 0.85
poimFunction · 0.85
printFunction · 0.70
hexFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…