v8/test/mjsunit/stack-trace-cpp-function-template-2.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 KiB
JavaScript
Raw Normal View History

Reland "[stack-trace] Include API functions in Error.stack stack trace" This is a reland of 3dd5661204514ea2e9ae209a1e8ebffa9840f3f5 The reland introduces a new flag "--experimental-stack-trace-frames". The flag is disabled by default, but enabled for relevant tests. The flag stays disabled by default until API frames are eagerly symbolized to prevent leaks in blink web tests. Original change's description: > [stack-trace] Include API functions in Error.stack stack trace > > This CL extends Error.stack to include frames of functions declared > with the C++ FunctionTemplate API. For example, "print" in d8. > > Two changes are necessary: > - HandleApiCall and friends need to go through an BUILTIN_EXIT frame > instead of an EXIT frame. The existing stack-trace machinery will > then pick up FunctionTemplate frames without additional changes. > - Turbofan doesn't go through HandleApiCall, but instead uses an > ASM builtin to enter FunctionTemplate functions. A "marker" > frame state is needed to include these frames in the stack trace. > > Note: This CL only includes these frames in Error.stack, > but not (yet) in the stack-trace API (v8.h). > > Bug: v8:8742,v8:6802 > Change-Id: Ic0631af883cf56e0d0122a2e0c54e36fed324d91 > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1609835 > Commit-Queue: Simon Zünd <szuend@chromium.org> > Reviewed-by: Sigurd Schneider <sigurds@chromium.org> > Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> > Reviewed-by: Jakob Gruber <jgruber@chromium.org> > Cr-Commit-Position: refs/heads/master@{#61602} Bug: v8:8742, v8:6802 Change-Id: I1d3b79cdf0b2edcbaeff1ec15e10deeca725f017 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1621925 Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Reviewed-by: Yang Guo <yangguo@chromium.org> Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Sigurd Schneider <sigurds@chromium.org> Commit-Queue: Simon Zünd <szuend@chromium.org> Cr-Commit-Position: refs/heads/master@{#61683}
2019-05-21 07:23:02 +00:00
// 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: --allow-natives-syntax --opt --experimental-stack-trace-frames
// Verifies that "print" shows up in Error.stack when "bar" is optimized
// by Turbofan:
// Error
// at foo (...)
// at Object.toString (...)
// at print (<anonymous>)
// at bar (...)
// at (...)
let prepareStackTraceCalled = false;
Error.prepareStackTrace = (e, frames) => {
prepareStackTraceCalled = true;
assertEquals(5, frames.length);
assertEquals(foo, frames[0].getFunction());
assertEquals(object.toString, frames[1].getFunction());
assertEquals("print", frames[2].getFunctionName());
assertEquals(bar, frames[3].getFunction());
return frames;
};
function foo() { throw new Error(); }
const object = { toString: () => { return foo(); } };
function bar() {
print(object);
}
%PrepareFunctionForOptimization(bar);
try { bar(); } catch (e) {}
try { bar(); } catch (e) {}
%OptimizeFunctionOnNextCall(bar);
try { bar(); } catch(e) {
// Trigger prepareStackTrace.
e.stack;
}
assertOptimized(bar);
assertTrue(prepareStackTraceCalled);