Teach V8 heap layout information to the inspector. Set the first old space page by passing any pointer into that page.
(self, address)
| 3985 | return self.do_known_oldspace(address) |
| 3986 | |
| 3987 | def do_known_oldspace(self, address): |
| 3988 | """ |
| 3989 | Teach V8 heap layout information to the inspector. |
| 3990 | |
| 3991 | Set the first old space page by passing any pointer into that page. |
| 3992 | """ |
| 3993 | address = self.ParseAddressExpr(address) |
| 3994 | page_address = address & ~self.heap.PageAlignmentMask() |
| 3995 | self.padawan.known_first_old_page = page_address |
| 3996 | |
| 3997 | def do_km(self, address): |
| 3998 | """ see known_map """ |
no test coverage detected