(self, tagged_address)
| 2099 | return tagged_address & ~self.heap.PageAlignmentMask() |
| 2100 | |
| 2101 | def GetPageOffset(self, tagged_address): |
| 2102 | return tagged_address & self.heap.PageAlignmentMask() |
| 2103 | |
| 2104 | def IsInKnownMapSpace(self, tagged_address): |
| 2105 | page_address = tagged_address & ~self.heap.PageAlignmentMask() |
no test coverage detected