Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: 46d43293638baf000be11d67dbef1f508df9f8f4
https://github.com/WebKit/WebKit/commit/46d43293638baf000be11d67dbef1f508df9f8f4
Author: Nathan Solomon <[email protected]>
Date: 2025-11-25 (Tue, 25 Nov 2025)
Changed paths:
M Source/WebKit/GPUProcess/graphics/RemoteRenderingBackend.messages.in
Log Message:
-----------
Add StreamBatched to ReleaseDisplayList IPC Message
https://bugs.webkit.org/show_bug.cgi?id=302715
rdar://164971094
Reviewed by Kimmo Kinnunen.
Add StreamBatched to ReleaseDisplayList IPC message.
This batches ReleaseDisplayList IPC messages, accumulating 100
messages on the WebContent process client side
before calling semaphore_signal_trap() to wake
the GPU process to delete a GlyphDisplayList cache
entry.
This is a performance optomization that reduces
the number semaphore signals. This is a
bottleneck seen in LayoutIntegration::InlineContent::~InlineContent()
which calls GlyphDisplayListCache::remove() frequently.
StreamBatched was previously used for ReleaseDecomposedGlyphs
(see https://commits.webkit.org/292098@main) but was
not added to the replacement ReleaseDisplayList message in
https://commits.webkit.org/299747@main. This restores
the batching optimization.
* Source/WebKit/GPUProcess/graphics/RemoteRenderingBackend.messages.in:
Canonical link: https://commits.webkit.org/303551@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications