| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Generally lgtm
+haraken for owners and more advice on how to structure the layering here. Should we add type aliases for just one use here?
cppgc::StackStartMarker cppgc_stack_start_marker;I think this needs a comment saying roughly what we do here. (E.g., narrow down the native stack that is interesting to cppgc).
Since we enter the runloop below. Wouldn't right before the init be a better place?
'cppgc::StackStartMarker',This should have a comment saying that we need to set the stack marker from outside.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
'cppgc::StackStartMarker',This should have a comment saying that we need to set the stack marker from outside.
Adding this here LGTM
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
I think this needs a comment saying roughly what we do here. (E.g., narrow down the native stack that is interesting to cppgc).
Done
Since we enter the runloop below. Wouldn't right before the init be a better place?
Done
Kentaro HaraThis should have a comment saying that we need to set the stack marker from outside.
Adding this here LGTM
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
Thanks a lot for the reviews!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
blink: Pass StackStartMarker to cppgc
Set up cppgc::StackStartMarker in RendererMain and pass it to
v8::CppHeap::Create. We use that as marker for the stack start, so
that we don't need to scan the stack frames above that during
conservative stack scanning. So far we were using the actual stack
start provided by the system. But that includes potentially large
stack frames like _start on Darwin. This reduces false positives
in conservative stack scanning in Jetstream.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |