From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Calvin Watford Date: Wed, 17 Jul 2024 12:52:10 -0600 Subject: fix: disable scope reuse & associated dchecks This change was introduced in https://crrev.com/c/5630974 which reuses scope info objects across allocations. Unfortunately, this change seems to be not yet fully cooked and causes crashes with normal usage of V8. In particular, Node.js call's V8's `v8::ScriptCompiler::CompileFunction` method. This ends up wrapping the source code in a function, which this code is not yet prepared to handle. The generated function wrapper (created by V8) has no source position, so it reports being at the start of the source, which may overlap with other scopes that are in the original source. This new feature adds a "UniqueIdInScript" concept that is derived from the source position of a scope, along with the invariant that inner scopes have a higher ID than outer scopes, which does not hold for the above situation. This patch is not intended to remain indefinitely. Once the upstream feature stabilizes, we can remove this patch. Unfortunately, there is no public tracking bug for this feature nor the crashes its been causing, so we'll have to keep an eye on this for the time being. diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc index c35d96502797a3ff9b6c2a9f898c6f0853f7ad46..d8c9d1444d2765b9e62e05094733ebdc42a20581 100644 --- a/src/ast/scopes.cc +++ b/src/ast/scopes.cc @@ -2724,10 +2724,10 @@ void Scope::AllocateScopeInfosRecursively( for (Scope* scope = inner_scope_; scope != nullptr; scope = scope->sibling_) { #ifdef DEBUG if (!scope->is_hidden_catch_scope()) { - DCHECK_GT(scope->UniqueIdInScript(), UniqueIdInScript()); - DCHECK_IMPLIES( - scope->sibling_ && !scope->sibling_->is_hidden_catch_scope(), - scope->sibling_->UniqueIdInScript() != scope->UniqueIdInScript()); + // DCHECK_GT(scope->UniqueIdInScript(), UniqueIdInScript()); + // DCHECK_IMPLIES( + // scope->sibling_ && !scope->sibling_->is_hidden_catch_scope(), + // scope->sibling_->UniqueIdInScript() != scope->UniqueIdInScript()); } #endif if (!scope->is_function_scope() || diff --git a/src/flags/flag-definitions.h b/src/flags/flag-definitions.h index 08794fa907ca7a204e4a1422d160af599d9239b8..cdfed6943a8ca224234cc86596091c7ea162cbfb 100644 --- a/src/flags/flag-definitions.h +++ b/src/flags/flag-definitions.h @@ -981,7 +981,12 @@ DEFINE_BOOL(trace_track_allocation_sites, false, DEFINE_BOOL(trace_migration, false, "trace object migration") DEFINE_BOOL(trace_generalization, false, "trace map generalization") -DEFINE_BOOL(reuse_scope_infos, true, "reuse scope infos from previous compiles") +// ELECTRON: The following flag should remain false by default until we can +// remove `fix_disable_scope_reuse_associated_dchecks.patch` +DEFINE_BOOL(reuse_scope_infos, false, + "reuse scope infos from previous compiles") + +DEFINE_IMPLICATION(fuzzing, reuse_scope_infos) // Flags for Sparkplug #undef FLAG