v8/test/debugger/debug/es6/debug-promises
Alexey Kozyatinskiy 0896586083 [inspector] improve return position of explicit return in non-async function
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}
2017-07-14 19:10:13 +00:00
..
evaluate-across-microtasks.js [debugger] Migrate more debugger tests to inspector 2016-11-08 10:39:08 +00:00
promise-all-caught.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
promise-all-uncaught.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
promise-race-caught.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
promise-race-uncaught.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
reentry.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
reject-after-resolve.js [debugger] Stepping and break-related functions in wrapper 2016-11-08 13:54:37 +00:00
reject-caught-all.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
reject-caught-by-default-reject-handler.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
reject-caught-late.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
reject-caught-uncaught.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
reject-in-constructor.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
reject-uncaught-all.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
reject-uncaught-late.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
reject-uncaught-uncaught.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
reject-with-invalid-reject.js [debug-wrapper] Adapt tests, breakpoint.actual_location 2016-11-21 09:29:17 +00:00
reject-with-throw-in-reject.js [debug-wrapper] Adapt tests, breakpoint.actual_location 2016-11-21 09:29:17 +00:00
reject-with-undefined-reject.js [debug-wrapper] Adapt tests, breakpoint.actual_location 2016-11-21 09:29:17 +00:00
stepin-constructor.js [debugger] Migrate more debugger tests to inspector 2016-11-08 10:39:08 +00:00
stepin-handler.js [inspector] improve return position of explicit return in non-async function 2017-07-14 19:10:13 +00:00
throw-caught-all.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
throw-caught-by-default-reject-handler.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
throw-caught-late.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
throw-caught-uncaught.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
throw-eventually-caught.js [debugger] Basic scope functionality and exception events in wrapper 2016-11-08 14:54:10 +00:00
throw-finally-caught-all.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
throw-in-constructor.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
throw-uncaught-all.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
throw-uncaught-uncaught.js [debug-wrapper] AsyncTaskEvent event type 2016-11-28 09:31:50 +00:00
throw-with-throw-in-reject.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
try-reject-in-constructor.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00
try-throw-reject-in-constructor.js [debug-wrapper] Further extend the debug wrapper 2016-11-16 08:34:44 +00:00