| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
class V8_EXPORT StackStartMarker {Can you add a test that shows how this should be used? There should be cppgc unittests that can just be extended.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Can you add a test that shows how this should be used? There should be cppgc unittests that can just be extended.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
TEST_F(CppHeapStackStartMarkerTest, StackStartMarkerIsUsed) {Nice!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[heap] Add StackStartMarker for cppgc
For conservative stack scanning we currently scan for references up
until the stack top. But this includes stack frames like that of
_start which definitely do not have pointers into the cppgc heap.
This CL adds a StackStartMarker class which embedders can optionally
use to decrease the stack height considered during conservative
stack scanning. This reduces the chance of false positives.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |