| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
const size_t unusable_red_zone_size =Isn't `unusable_red_zone_size` exactly the same as `offset_to_allocatable_start`? I guess we could just use the latter below as well?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
const size_t unusable_red_zone_size =Isn't `unusable_red_zone_size` exactly the same as `offset_to_allocatable_start`? I guess we could just use the latter below as well?
It also rounds up to `kPageSize` (Oilpan cage size), so it may be a bit more, depending on how the constants align up.
With the way the constants are set right now, I think it should be the same (because 32M aligns nicely with everything) but in order to stay generic, we'd probably should just keep it this way.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[cppgc] Add unmapped redzone to CagedHeap
In addition to the red zone of CagedHeapLocalData we reserve up to 32M
of unmapped memory. This aids conservative stack scanning in allowing us
to filter out more false positives.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |