Revert "[baseline] Enable concurrent sparkplug on future"
This reverts commit 0e4554b484
.
Reason for revert: Breaks due to read-only flags https://ci.chromium.org/ui/p/v8/builders/ci/V8%20Mac%20-%20arm64%20-%20debug%20builder/3926/overview
Original change's description:
> [baseline] Enable concurrent sparkplug on future
>
> Bug: v8:12054
> Change-Id: I9d5040c806232ecbe71c26b7d65acbc8005bbd00
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3233139
> Commit-Queue: Victor Gomes <victorgomes@chromium.org>
> Reviewed-by: Leszek Swirski <leszeks@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#77842}
TBR=leszeks@chromium.org,v8-scoped@luci-project-accounts.iam.gserviceaccount.com,victorgomes@chromium.org
Change-Id: I25bbe7f38d87fcc13931782d26cd6b75bba50848
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: v8:12054
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3275555
Reviewed-by: Leszek Swirski <leszeks@chromium.org>
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Cr-Commit-Position: refs/heads/main@{#77843}
This commit is contained in:
parent
0e4554b484
commit
8d494873b9
@ -518,7 +518,6 @@ DEFINE_BOOL(future, FUTURE_BOOL,
|
||||
#if ENABLE_SPARKPLUG
|
||||
DEFINE_WEAK_IMPLICATION(future, sparkplug)
|
||||
DEFINE_WEAK_IMPLICATION(future, flush_baseline_code)
|
||||
DEFINE_WEAK_IMPLICATION(future, concurrent_sparkplug)
|
||||
#endif
|
||||
#if V8_SHORT_BUILTIN_CALLS
|
||||
DEFINE_WEAK_IMPLICATION(future, short_builtin_calls)
|
||||
|
@ -1373,10 +1373,6 @@ static const char* call_function_test_source =
|
||||
// 1 1 bar [-1] #7
|
||||
// 19 19 (program) [-1] #2
|
||||
TEST(FunctionCallSample) {
|
||||
// Skip test if concurrent sparkplug is enabled. The test becomes flaky,
|
||||
// since it requires a precise trace.
|
||||
if (i::FLAG_concurrent_sparkplug) return;
|
||||
|
||||
i::FLAG_allow_natives_syntax = true;
|
||||
LocalContext env;
|
||||
v8::HandleScope scope(env->GetIsolate());
|
||||
@ -1434,10 +1430,6 @@ static const char* function_apply_test_source =
|
||||
// 2 2 bar [-1] #16 6
|
||||
// 10 10 (program) [-1] #0 2
|
||||
TEST(FunctionApplySample) {
|
||||
// Skip test if concurrent sparkplug is enabled. The test becomes flaky,
|
||||
// since it requires a precise trace.
|
||||
if (i::FLAG_concurrent_sparkplug) return;
|
||||
|
||||
i::FLAG_allow_natives_syntax = true;
|
||||
LocalContext env;
|
||||
v8::HandleScope scope(env->GetIsolate());
|
||||
@ -1917,10 +1909,6 @@ static const char* inlining_test_source2 = R"(
|
||||
// bailed out due to 'Optimization is always disabled'
|
||||
// 2 (program):0 0 #2
|
||||
TEST(Inlining2) {
|
||||
// Skip test if concurrent sparkplug is enabled. The test becomes flaky,
|
||||
// since it requires a precise trace.
|
||||
if (FLAG_concurrent_sparkplug) return;
|
||||
|
||||
FLAG_allow_natives_syntax = true;
|
||||
v8::Isolate* isolate = CcTest::isolate();
|
||||
LocalContext env;
|
||||
@ -2009,10 +1997,6 @@ static const char* cross_script_source_b = R"(
|
||||
)";
|
||||
|
||||
TEST(CrossScriptInliningCallerLineNumbers) {
|
||||
// Skip test if concurrent sparkplug is enabled. The test becomes flaky,
|
||||
// since it requires a precise trace.
|
||||
if (i::FLAG_concurrent_sparkplug) return;
|
||||
|
||||
i::FLAG_allow_natives_syntax = true;
|
||||
v8::Isolate* isolate = CcTest::isolate();
|
||||
LocalContext env;
|
||||
|
Loading…
Reference in New Issue
Block a user