(self, tagged_address)
| 2110 | return page_address == self.known_first_old_page |
| 2111 | |
| 2112 | def ContainingKnownOldSpaceName(self, tagged_address): |
| 2113 | page_address = tagged_address & ~self.heap.PageAlignmentMask() |
| 2114 | if page_address == self.known_first_old_page: return "OLD_SPACE" |
| 2115 | return None |
| 2116 | |
| 2117 | def FrameMarkerName(self, value): |
| 2118 | # The frame marker is Smi-tagged but not Smi encoded and 0 is not a valid |
no test coverage detected