• mythria's avatar
    [Interpreter] Adds support to fetch return value on break at return. · fb65527b
    mythria authored
    Debugger fetches the return value of a function when we break at return.
    Interpreter holds the return value in accumulator. This is not stored in a
    specified location on stack and hence it is not possible to look it up from
    stack similar to full-codegen or optimized frames. This cl adds support to
    store the value of accumulator on debug breaks. The value of accumulator is
    passed to the runtime function and is then stored in thread local data.
    
    Also changes full-codegen implementation to match that of ignition.
    The return value from full-codegen is also stored in thread local data.
    The return value is fetched directly thread local data instead of
    finding it by iterating over frames.
    
    BUG=v8:4280, v8:4690
    LOG=N
    
    Review URL: https://codereview.chromium.org/1818873003
    
    Cr-Commit-Position: refs/heads/master@{#35060}
    fb65527b
Name
Last commit
Last update
benchmarks Loading commit data...
build Loading commit data...
docs Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party/binutils Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.gitignore Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
ChangeLog Loading commit data...
DEPS Loading commit data...
LICENSE Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
Makefile Loading commit data...
Makefile.android Loading commit data...
Makefile.nacl Loading commit data...
OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...
snapshot_toolchain.gni Loading commit data...