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

Method do_known_map

deps/v8/tools/grokdump.py:4001–4009  ·  view source on GitHub ↗

Teach V8 heap layout information to the inspector. Set the first map-space page by passing any pointer into that page.

(self, address)

Source from the content-addressed store, hash-verified

3999 return self.do_known_map(address)
4000
4001 def do_known_map(self, address):
4002 """
4003 Teach V8 heap layout information to the inspector.
4004
4005 Set the first map-space page by passing any pointer into that page.
4006 """
4007 address = self.ParseAddressExpr(address)
4008 page_address = address & ~self.heap.PageAlignmentMask()
4009 self.padawan.known_first_map_page = page_address
4010
4011 def do_list(self, smth):
4012 """

Callers 1

do_kmMethod · 0.95

Calls 2

ParseAddressExprMethod · 0.95
PageAlignmentMaskMethod · 0.80

Tested by

no test coverage detected