1. 22 Jan, 2020 5 commits
  2. 21 Jan, 2020 1 commit
  3. 17 Jan, 2020 1 commit
    • Peter Marshall's avatar
      [tests] Filter out non-existent methods in inspector tests · 5eb5015e
      Peter Marshall authored
      Previously these would silently fail unless the caller checked the
      .error property of the return value. There are no tests that check
      iteractions with non-existent methods so this should always be an
      error at the test runner level, rather than relying on clients to
      check the error.
      
      1. Fix the tests that accidentally call methods that don't exist.
      2. Change the test runner so that it prints an error and ends the test.
      3. Add a test that the test runner does #2.
      
      Bug: v8:10134
      Change-Id: Idd619950a057290c565d58fba6db3ddbcaf2c5eb
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2006093
      Commit-Queue: Peter Marshall <petermarshall@chromium.org>
      Reviewed-by: 's avatarSimon Zünd <szuend@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#65835}
      5eb5015e
  4. 16 Jan, 2020 3 commits
  5. 15 Jan, 2020 1 commit
  6. 14 Jan, 2020 1 commit
    • Clemens Backes's avatar
      [wasm][debug] Fix index-named locals · 4d69c548
      Clemens Backes authored
      This fixes local names that are the string representation of a valid
      element index.
      Even though both the Liftoff and the interpreter-based test are changed,
      only the latter needs to be fixed right now since Liftoff does not use
      the names currently. Modifying the test just ensures that we implement
      this correctly once we use the name.
      
      R=jkummerow@chromium.org
      
      Bug: v8:10019
      Change-Id: Ib7f7d6e244a344a85ab540b6c2c67f98b1f3078e
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1998079
      Commit-Queue: Clemens Backes <clemensb@chromium.org>
      Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#65751}
      4d69c548
  7. 13 Jan, 2020 2 commits
  8. 10 Jan, 2020 2 commits
  9. 09 Jan, 2020 1 commit
  10. 27 Dec, 2019 1 commit
  11. 20 Dec, 2019 1 commit
  12. 18 Dec, 2019 3 commits
  13. 04 Dec, 2019 1 commit
    • Joyee Cheung's avatar
      [class] implement inspector support for private instance methods · 963ff849
      Joyee Cheung authored
      This patch implements inspector support for private instance methods:
      
      - Previously to implement brand checking for instances with private
        instance methods we store the brand both as the value with the brand
        itself as the key in the stances. Now we make the value the context
        associated with the class instead.
      - To retrieve the private instance methods and accessors from the
        instances at runtime, we look into the contexts stored with the
        brands, and analyze the scope info to get the names as well as
        context slot indices of them.
      - This patch extends the `PrivatePropertyDescriptor` in the inspector
        protocol to include optional `get` and `set` fields, and make the
        `value` field optional (similar to `PropertyDescriptor`s).
        Private fields or private instance methods are returned in the
        `value` field while private accessors are returned in the `get`
        and/or `set` field. Property previews for the instaces containing
        private instance methods and accessors are also updated similarly,
        although no additional protocol change is necessary since the
        `PropertyPreview` type can already be used to display accessors.
      
      Design doc: https://docs.google.com/document/d/1N91LObhQexnB0eE7EvGe57HsvNMFX16CaWu-XCTnnmY/edit
      
      Bug: v8:9839, v8:8330
      Change-Id: If37090bd23833a18f75deb1249ca5c4405ca2bf2
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1934407
      Commit-Queue: Joyee Cheung <joyee@igalia.com>
      Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Reviewed-by: 's avatarRoss McIlroy <rmcilroy@chromium.org>
      Reviewed-by: 's avatarToon Verwaest <verwaest@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#65337}
      963ff849
  14. 28 Nov, 2019 1 commit
  15. 22 Nov, 2019 2 commits
  16. 21 Nov, 2019 1 commit
    • Clemens Backes's avatar
      Reland "[wasm] Prevent breakpoints on nonbreakable positions" · 5cf61684
      Clemens Backes authored
      This is an unmodified reland of 3c98a2a3.
      The actual issue was fixed in https://crrev.com/c/1926769.
      
      Original change's description:
      > [wasm] Prevent breakpoints on nonbreakable positions
      >
      > If a breakpoint is set on a non-breakable position, the wasm interpreter
      > just stores the value 0xFF (kInternalBreakpoint) in the function body
      > (actually, a copy of the function body). This might overwrite immediates
      > and cause subsequent failures in the wasm interpreter.
      >
      > In JavaScript, breakpoints are just forwarded to the next breakable
      > position. This CL implements the same for WebAssembly.
      > A cctest tests this behavior, and the existing
      > wasm-stepping-byte-offsets.js inspector test is extended to also set the
      > breakpoint within an i32 constant immediate.
      >
      > R=leese@chromium.org, mstarzinger@chromium.org
      > CC=​bmeurer@chromium.org
      >
      > Bug: chromium:1025184
      > Change-Id: Ia2706f8f1c3d686cbbe8e1e7339d9ee86247bb4a
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1925152
      > Commit-Queue: Clemens Backes <clemensb@chromium.org>
      > Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
      > Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#65070}
      
      Bug: chromium:1025184
      Change-Id: I5e16df645bbacf039b7a5e55a0c2a64cdb4c6a32
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1926152
      Commit-Queue: Clemens Backes <clemensb@chromium.org>
      Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#65093}
      5cf61684
  17. 20 Nov, 2019 2 commits
    • Clemens Backes's avatar
      Revert "[wasm] Prevent breakpoints on nonbreakable positions" · d1462a56
      Clemens Backes authored
      This reverts commit 3c98a2a3.
      
      Reason for revert: Fails on arm: https://ci.chromium.org/p/v8/builders/ci/V8%20Arm%20-%20debug/12134
      
      Original change's description:
      > [wasm] Prevent breakpoints on nonbreakable positions
      > 
      > If a breakpoint is set on a non-breakable position, the wasm interpreter
      > just stores the value 0xFF (kInternalBreakpoint) in the function body
      > (actually, a copy of the function body). This might overwrite immediates
      > and cause subsequent failures in the wasm interpreter.
      > 
      > In JavaScript, breakpoints are just forwarded to the next breakable
      > position. This CL implements the same for WebAssembly.
      > A cctest tests this behavior, and the existing
      > wasm-stepping-byte-offsets.js inspector test is extended to also set the
      > breakpoint within an i32 constant immediate.
      > 
      > R=​leese@chromium.org, mstarzinger@chromium.org
      > CC=​​bmeurer@chromium.org
      > 
      > Bug: chromium:1025184
      > Change-Id: Ia2706f8f1c3d686cbbe8e1e7339d9ee86247bb4a
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1925152
      > Commit-Queue: Clemens Backes <clemensb@chromium.org>
      > Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
      > Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#65070}
      
      TBR=mstarzinger@chromium.org,clemensb@chromium.org,bmeurer@chromium.org,leese@chromium.org
      
      Change-Id: I7468ea3b15fecccdea521308325cf4851e0a0396
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: chromium:1025184
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1926032Reviewed-by: 's avatarClemens Backes <clemensb@chromium.org>
      Commit-Queue: Clemens Backes <clemensb@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#65074}
      d1462a56
    • Clemens Backes's avatar
      [wasm] Prevent breakpoints on nonbreakable positions · 3c98a2a3
      Clemens Backes authored
      If a breakpoint is set on a non-breakable position, the wasm interpreter
      just stores the value 0xFF (kInternalBreakpoint) in the function body
      (actually, a copy of the function body). This might overwrite immediates
      and cause subsequent failures in the wasm interpreter.
      
      In JavaScript, breakpoints are just forwarded to the next breakable
      position. This CL implements the same for WebAssembly.
      A cctest tests this behavior, and the existing
      wasm-stepping-byte-offsets.js inspector test is extended to also set the
      breakpoint within an i32 constant immediate.
      
      R=leese@chromium.org, mstarzinger@chromium.org
      CC=​bmeurer@chromium.org
      
      Bug: chromium:1025184
      Change-Id: Ia2706f8f1c3d686cbbe8e1e7339d9ee86247bb4a
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1925152
      Commit-Queue: Clemens Backes <clemensb@chromium.org>
      Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#65070}
      3c98a2a3
  18. 18 Nov, 2019 1 commit
  19. 15 Nov, 2019 1 commit
    • Eric Leese's avatar
      Report real module in addition to fake scripts · 6ec6ed9c
      Eric Leese authored
      Currently the inspector reports Wasm in one of two ways:
       - If there is a source map, report one script per Wasm script, with
         bytecode but no source.
       - If there is no source map, report one script per Wasm function, with
         source (Wasm disassembly) but no bytecode.
      
      With this change, behavior with source map is same, but without source
      map it will report both ways. This will allow us to change the frontend
      to do its own disassembly, allowing us to remove the per-function scripts
      in a future change.
      
      Bug: chromium:1013527
      Change-Id: I0c559ad08896e8d0da419e3c6ad8d1edff3976fc
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1899782Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
      Commit-Queue: Eric Leese <leese@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#64980}
      6ec6ed9c
  20. 11 Nov, 2019 1 commit
  21. 06 Nov, 2019 1 commit
  22. 05 Nov, 2019 1 commit
  23. 31 Oct, 2019 1 commit
  24. 30 Oct, 2019 2 commits
  25. 25 Oct, 2019 1 commit
  26. 24 Oct, 2019 2 commits