Returns whether the given memory offset can be used for generating an implicit null check.
| 41 | // Returns whether the given memory offset can be used for generating |
| 42 | // an implicit null check. |
| 43 | static inline bool CanDoImplicitNullCheckOn(uintptr_t offset) { |
| 44 | return offset < kPageSize; |
| 45 | } |
| 46 | |
| 47 | // Required object alignment |
| 48 | static constexpr size_t kObjectAlignmentShift = 3; |
nothing calls this directly
no outgoing calls
no test coverage detected