Reland "[sparkplug] Enable concurrent Sparkplug on desktop"
This is a reland of commit 3a946583e2
The issue was in a Chromium test which was fixed here:
https://crrev.com/c/4061562
Original change's description:
> [sparkplug] Enable concurrent Sparkplug on desktop
>
> Bug: v8:12054
> Change-Id: Iffeedc6d33483d86d95169aaf45c214e32c8bc83
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4061312
> Auto-Submit: Igor Sheludko <ishell@chromium.org>
> Commit-Queue: Toon Verwaest <verwaest@chromium.org>
> Commit-Queue: Igor Sheludko <ishell@chromium.org>
> Reviewed-by: Toon Verwaest <verwaest@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#84531}
Bug: v8:12054
Change-Id: I77399aca2945a4a0f64a533ca72b1d629c591f96
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4064462
Reviewed-by: Toon Verwaest <verwaest@chromium.org>
Commit-Queue: Igor Sheludko <ishell@chromium.org>
Cr-Commit-Position: refs/heads/main@{#84595}
This commit is contained in:
parent
1d6bccd6aa
commit
b8bef82b1a
@ -694,7 +694,7 @@ DEFINE_BOOL(baseline_batch_compilation, true, "batch compile Sparkplug code")
|
||||
DEFINE_BOOL_READONLY(concurrent_sparkplug, false,
|
||||
"compile Sparkplug code in a background thread")
|
||||
#else
|
||||
DEFINE_BOOL(concurrent_sparkplug, false,
|
||||
DEFINE_BOOL(concurrent_sparkplug, ENABLE_SPARKPLUG_BY_DEFAULT,
|
||||
"compile Sparkplug code in a background thread")
|
||||
DEFINE_WEAK_IMPLICATION(future, concurrent_sparkplug)
|
||||
DEFINE_NEG_IMPLICATION(predictable, concurrent_sparkplug)
|
||||
@ -702,7 +702,7 @@ DEFINE_NEG_IMPLICATION(single_threaded, concurrent_sparkplug)
|
||||
DEFINE_NEG_IMPLICATION(jitless, concurrent_sparkplug)
|
||||
#endif
|
||||
DEFINE_UINT(
|
||||
concurrent_sparkplug_max_threads, 0,
|
||||
concurrent_sparkplug_max_threads, 1,
|
||||
"max number of threads that concurrent Sparkplug can use (0 for unbounded)")
|
||||
DEFINE_BOOL(concurrent_sparkplug_high_priority_threads, false,
|
||||
"use high priority compiler threads for concurrent Sparkplug")
|
||||
|
Loading…
Reference in New Issue
Block a user