0896586083
Goal of this CL: explicit return from non-async function has position after return expression as return position (will unblock [1]). BytecodeArrayBuilder has SetStatementPosition and SetExpressionPosition methods. If one of these methods is called then next generated bytecode will get passed position. It's general treatment for most cases. Unfortunately it doesn't work for Returns: - debugger requires source positions exactly on kReturn bytecode in stepping implementation, - BytecodeGenerator::BuildReturn and BytecodeGenerator::BuildAsyncReturn generates more then one bytecode and general solution will put return position on first generated bytecode, - it's not easy to split BuildReturn function into two parts to allow something like following in BytecodeGenerator::VisitReturnStatement since generated bytecodes are actually controlled by execution_control(). ..->BuildReturnPrologue(); ..->SetReturnPosition(stmt); ..->Return(); In this CL we pass ReturnStatement through ExecutionControl and use it for position when we emit return bytecode right here. So this CL only will improve return position for returns inside of non-async functions, I'll address async functions later. [1] https://chromium-review.googlesource.com/c/543161/ Change-Id: Iede512c120b00c209990bf50c20e7d23dc0d65db Reviewed-on: https://chromium-review.googlesource.com/560738 Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Reviewed-by: Adam Klein <adamk@chromium.org> Reviewed-by: Michael Starzinger <mstarzinger@chromium.org> Reviewed-by: Ross McIlroy <rmcilroy@chromium.org> Reviewed-by: Jakob Gruber <jgruber@chromium.org> Cr-Commit-Position: refs/heads/master@{#46687}
55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
// Copyright 2015 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.
|
|
|
|
|
|
Debug = debug.Debug
|
|
var exception = null;
|
|
var break_count = 0;
|
|
const expected_breaks = 8;
|
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
try {
|
|
if (event == Debug.DebugEvent.Break) {
|
|
assertTrue(exec_state.frameCount() != 0, "FAIL: Empty stack trace");
|
|
var frameMirror = exec_state.frame(0);
|
|
|
|
frameMirror.allScopes();
|
|
var source = frameMirror.sourceLineText();
|
|
print("paused at: " + source);
|
|
assertTrue(source.indexOf("// Break " + break_count + ".") > 0,
|
|
"Unexpected pause at: " + source + "\n" +
|
|
"Expected: // Break " + break_count + ".");
|
|
++break_count;
|
|
|
|
if (break_count !== expected_breaks) {
|
|
exec_state.prepareStep(Debug.StepAction.StepIn);
|
|
print("Next step prepared");
|
|
}
|
|
}
|
|
} catch(e) {
|
|
exception = e;
|
|
print(e, e.stack);
|
|
}
|
|
};
|
|
|
|
Debug.setListener(listener);
|
|
|
|
var sum = 0;
|
|
(function (){
|
|
'use strict';
|
|
|
|
debugger; // Break 0.
|
|
var i = 0; // Break 1.
|
|
i++; // Break 2.
|
|
i++; // Break 3.
|
|
debugger; // Break 4.
|
|
return i // Break 5.
|
|
; // Break 6.
|
|
}());
|
|
|
|
assertNull(exception); // Break 7.
|
|
assertEquals(expected_breaks, break_count);
|
|
|
|
Debug.setListener(null);
|