-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Original commit message: [runtime] Clear array join stack when throwing uncatchable ... exception. Array#join depends array_join_stack to avoid infinite loop and ensures symmetric pushes/pops through catch blocks to correctly maintain the elements in the join stack. However, the stack does not pop the elements and leaves in an invalid state when throwing the uncatchable termination exception. And the invalid join stack state will affect subsequent Array#join calls. Because all the terminate exception will be handled by Isolate::UnwindAndFindHandler, we could clear the array join stack when unwinding the terminate exception. Bug: v8:13259 Change-Id: I23823e823c5fe0b089528c5cf654864cea78ebeb Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3878451 Reviewed-by: Jakob Linke <jgruber@chromium.org> Commit-Queue: 王澳 <wangao.james@bytedance.com> Cr-Commit-Position: refs/heads/main@{#83465} Refs: v8/v8@031b98b Closes: #44417 PR-URL: #45375 Fixes: #44417 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
- Loading branch information
Showing
4 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
deps/v8/test/inspector/runtime/evaluate-repl-mode-side-effecting-array-join-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Tests that Runtime.evaluate with REPL mode correctly handles Array.prototype.join. | ||
{ | ||
id : <messageId> | ||
result : { | ||
result : { | ||
className : Array | ||
description : Array(1) | ||
objectId : <objectId> | ||
subtype : array | ||
type : object | ||
} | ||
} | ||
} | ||
{ | ||
id : <messageId> | ||
result : { | ||
exceptionDetails : { | ||
columnNumber : -1 | ||
exception : { | ||
className : EvalError | ||
description : EvalError: Possible side-effect in debug-evaluate | ||
objectId : <objectId> | ||
subtype : error | ||
type : object | ||
} | ||
exceptionId : <exceptionId> | ||
lineNumber : -1 | ||
scriptId : <scriptId> | ||
text : Uncaught | ||
} | ||
result : { | ||
className : EvalError | ||
description : EvalError: Possible side-effect in debug-evaluate | ||
objectId : <objectId> | ||
subtype : error | ||
type : object | ||
} | ||
} | ||
} | ||
{ | ||
id : <messageId> | ||
result : { | ||
result : { | ||
type : string | ||
value : /a/ | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
deps/v8/test/inspector/runtime/evaluate-repl-mode-side-effecting-array-join.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Copyright 2022 the V8 project authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
let {Protocol} = InspectorTest.start( | ||
'Tests that Runtime.evaluate with REPL mode correctly handles \ | ||
Array.prototype.join.'); | ||
|
||
Protocol.Runtime.enable(); | ||
(async function () { | ||
await evaluateReplWithSideEffects('a=[/a/]') | ||
await evaluateRepl('a.toString()'); | ||
await evaluateReplWithSideEffects('a.toString()'); | ||
|
||
InspectorTest.completeTest(); | ||
})(); | ||
|
||
async function evaluateRepl(expression) { | ||
InspectorTest.logMessage(await Protocol.Runtime.evaluate({ | ||
expression: expression, | ||
replMode: true, | ||
throwOnSideEffect: true | ||
})); | ||
} | ||
|
||
async function evaluateReplWithSideEffects(expression) { | ||
InspectorTest.logMessage(await Protocol.Runtime.evaluate({ | ||
expression: expression, | ||
replMode: true, | ||
throwOnSideEffect: false | ||
})); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters