• Simon Zünd's avatar
    [debug] Fix source position around class literals · 6a8b90c3
    Simon Zünd authored
    This CL builds upon https://crrev.com/c/3284887 (and partly reverts it).
    
    Class literals are a bit iffy when it comes to source position and
    debugging. Mainly the debugger assumes the following invariant:
    When we are paused inside a class scope, then we expect the class's
    BlockContext to be pushed already. On the other hand, when we are
    paused outside a class scope in a function, we don't expect to find
    the class's BlockContext.
    
    The problem is that there are cases where we can either pause
    "inside" or "outside" the class scope. E.g.:
    
      * `var x = class {};` will break on `class` which is inside
        the class scope, so we expect the BlockContext to be pushed
    
      * `new class x {};` will break on `new` which is outside the
        class scope, so we expect the BlockContext to not be pushed
        yet.
    
    The issue with the fix in https://crrev.com/c/3284887 is that it
    adjusted the break position for the bytecode of class literals to
    ALWAYS be after the BlockContext is pushed. This breaks the
    second example above. We need to tighten the fix a bit and only
    defer the break position if the "current source position" is
    inside the class's scope. This way we always guarantee that the
    BlockContext is pushed or not, depending if the source position
    that corresponds to the break position is inside or outside the
    class's scope.
    
    Note 1: The CL updates a lot of the bytecode expectations. This
    is because the class literals are often the first statement in
    the snippet so we don't need to defer the break position.
    
    Note 2: We add a mirrored debugger test to the inspector test so
    the fuzzer can have some more fun.
    
    Fixed: chromim:1350842
    Change-Id: I9b5a409f77be80db674217a685a3fc9f8a0a71cf
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3827871Reviewed-by: 's avatarShu-yu Guo <syg@chromium.org>
    Reviewed-by: 's avatarKim-Anh Tran <kimanh@chromium.org>
    Commit-Queue: Simon Zünd <szuend@chromium.org>
    Reviewed-by: 's avatarMarja Hölttä <marja@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#82473}
    6a8b90c3
Name
Last commit
Last update
.github Loading commit data...
bazel Loading commit data...
build_overrides Loading commit data...
custom_deps Loading commit data...
docs Loading commit data...
gni 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 Loading commit data...
tools Loading commit data...
.bazelrc Loading commit data...
.clang-format Loading commit data...
.clang-tidy Loading commit data...
.editorconfig Loading commit data...
.flake8 Loading commit data...
.git-blame-ignore-revs Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.mailmap Loading commit data...
.style.yapf Loading commit data...
.vpython Loading commit data...
.vpython3 Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.bazel Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
COMMON_OWNERS Loading commit data...
DEPS Loading commit data...
DIR_METADATA Loading commit data...
ENG_REVIEW_OWNERS Loading commit data...
INFRA_OWNERS Loading commit data...
INTL_OWNERS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LOONG_OWNERS Loading commit data...
MIPS_OWNERS Loading commit data...
OWNERS Loading commit data...
PPC_OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
RISCV_OWNERS Loading commit data...
S390_OWNERS Loading commit data...
WATCHLISTS Loading commit data...
WORKSPACE Loading commit data...
codereview.settings Loading commit data...