fba03abcfa
{JavaScriptFrame::GetParameters} allocates a new {FixedArray}, hence all object references need to be handified to survive that allocation. R=mstarzinger@chromium.org Bug: chromium:1000635 Change-Id: I76df5ac109bdb6999fe897bdafaf2175344ecca4 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1787429 Reviewed-by: Michael Starzinger <mstarzinger@chromium.org> Commit-Queue: Clemens Hammacher <clemensh@chromium.org> Cr-Commit-Position: refs/heads/master@{#63583}
16 lines
367 B
JavaScript
16 lines
367 B
JavaScript
// Copyright 2019 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.
|
|
//
|
|
// Flags: --stress-compaction --detailed-error-stack-trace --gc-interval=1
|
|
|
|
function add(a, b) {
|
|
throw new Error();
|
|
}
|
|
for (let i = 0; i < 100; ++i) {
|
|
try {
|
|
add(1, 2);
|
|
} catch (e) {
|
|
}
|
|
}
|