| Auto-Submit | +1 |
| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM!
auto& target_map =
(offset == Context::OffsetOfElementAt(Context::PREVIOUS_INDEX))
? loaded_context_constants_
: loaded_context_slots_;
Idea: we could have kInitialzingToContextConstant or something, and then if Context::PREVIOUS_INDEX, use constant?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
auto& target_map =
(offset == Context::OffsetOfElementAt(Context::PREVIOUS_INDEX))
? loaded_context_constants_
: loaded_context_slots_;
Idea: we could have kInitialzingToContextConstant or something, and then if Context::PREVIOUS_INDEX, use constant?
Let's try this later; and by extension look at the scope-info to see which slots are immutable. That makes the change a bit more complex though, so I prefer to land this separately.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[maglev] Track initializing context stores
This will allow the maglev optimizer to find parent contexts and other
values in allocated contexts.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |