v8/test/debugger/debug/wasm
Clemens Backes 5fcb414ac2 [wasm][debug] Support multi-threaded breakpoints
This adds support for multiple isolates sharing the same module but
setting different breakpoints. This is simulated by having a debugger
test that runs in the "--isolates" variant, i.e. two isolates running
the same test at the same time. Both isolates will set and remove
breakpoints.

The DebugInfo will keep a separate list of breakpoints per isolate, and
when recompiling a function for debugging it will respect all
breakpoints in all isolates.
In order to ensure consistency if multiple isolates are setting or
removing breakpoints simultaneously, we go back to a more coarse-grained
locking scheme, where the DebugInfo lock is held while re-compiling
Liftoff functions.

While recompilation will install the code in the module-global code
table and jump table (and hence all isolates will use it for future
calls), only the stack of the requesting isolate is rewritten to
immediately use new code. This is OK, because other isolates are not
interested in the new breakpoint(s) anyway.
On {SetBreakpoint}, we always need to rewrite the stack of the
requesting isolate though, even if the breakpoint was set before by
another isolate.

Drive-by: Some fixes in SharedFunctionInfo in order to support setting
breakpoints via the Debug mirror.

R=thibaudm@chromium.org

Bug: v8:10359
Change-Id: If659afb273260fc5e8124b4b617fb4322de473c7
Cq-Include-Trybots: luci.v8.try:v8_linux64_tsan_rel
Cq-Include-Trybots: luci.v8.try:v8_linux64_tsan_isolates_rel_ng
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2218059
Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
Reviewed-by: Thibaud Michaud <thibaudm@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68096}
2020-06-02 10:27:17 +00:00
..
asm-debug.js [asm.js] Fix debugger test to check listener exception. 2017-03-29 10:46:45 +00:00
breakpoints.js [wasm][debug] Support multi-threaded breakpoints 2020-06-02 10:27:17 +00:00
debug-enabled-tier-down-wasm-streaming.js Reland "[wasm][debug] Fix tier down during streaming compilation" 2020-05-19 12:37:00 +00:00
debug-enabled-tier-down-wasm-unsupported-liftoff.js [wasm] Store whether code was generated for debugging 2020-04-14 14:51:39 +00:00
debug-enabled-tier-down-wasm.js [wasm][debug] Add more tests for async compilation 2020-05-18 13:49:50 +00:00
debug-step-into-wasm.js [wasm][debug] Reenable skipped debug-step-into-wasm test 2020-04-15 09:23:07 +00:00
frame-inspection.js Remove fake wasm scripts from V8 backend 2020-01-09 13:21:01 +00:00
stepping-from-js.js [wasm][debug] Support multi-threaded stepping 2020-05-28 15:28:26 +00:00