Commit 52ec6165 authored by Mythri A's avatar Mythri A Committed by Commit Bot

[turboprop] Increase the Turboprop interrupt budget to 20*K

Currently Turboprop interrupt budget is 14*K. From finch experiments and
from the local benchmark results it seems like we can push it
back a bit. Increasing the interrupt budget for Turboprop also pushes
the TurboFan compilations given the scale factor of 10. So this cl
increases the Turboprop budget from 14*K to 20*K and TurboFan budget
from 140*k to 200*K when turboprop is enabled. The default isn't
impacted.

Bug: v8:9684
Change-Id: I8603a215049dbc9da92f7da4b9e858624d263ae4
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2643386
Commit-Queue: Ross McIlroy <rmcilroy@chromium.org>
Reviewed-by: 's avatarRoss McIlroy <rmcilroy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#73367}
parent 8d0f5a04
......@@ -581,7 +581,7 @@ DEFINE_BOOL(
turboprop_as_toptier, false,
"enable experimental turboprop compiler without further tierup to turbofan")
DEFINE_IMPLICATION(turboprop_as_toptier, turboprop)
DEFINE_VALUE_IMPLICATION(turboprop, interrupt_budget, 14 * KB)
DEFINE_VALUE_IMPLICATION(turboprop, interrupt_budget, 20 * KB)
DEFINE_VALUE_IMPLICATION(turboprop, reuse_opt_code_count, 2)
DEFINE_UINT_READONLY(max_minimorphic_map_checks, 4,
"max number of map checks to perform in minimorphic state")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment