| 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. |
| 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. |
[heap] Record GrowingMode in GC Cycle UKM
Growing mode informs on heap limit heuristics.
Following https://chromium-review.git.corp.google.com/c/v8/v8/+/7957808
| 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. |
.SetGrowingMode(event.growing_mode)I'm not sure, but...this looks...
```
v8::metrics::GarbageCollectionFullCycle event;
event.reason = static_cast<int>(current_.gc_reason);
event.incremental_marking_reason =
static_cast<int>(current_.incremental_marking_reason);
event.growing_mode = static_cast<int>(current_.growing_mode); // current_.growing_mode is sometimes uninitialized?
event.priority = current_.priority;
event.reduce_memory = current_.reduce_memory;
```
(v8/src/heap/gc-tracer.cc)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |