1. 15 Sep, 2017 2 commits
  2. 11 Sep, 2017 1 commit
  3. 08 Sep, 2017 1 commit
  4. 07 Sep, 2017 2 commits
  5. 05 Sep, 2017 2 commits
  6. 04 Sep, 2017 5 commits
  7. 03 Sep, 2017 1 commit
  8. 31 Aug, 2017 2 commits
  9. 30 Aug, 2017 2 commits
  10. 29 Aug, 2017 1 commit
  11. 28 Aug, 2017 1 commit
  12. 24 Aug, 2017 1 commit
  13. 23 Aug, 2017 1 commit
  14. 22 Aug, 2017 5 commits
    • Marja Hölttä's avatar
      Revert "[parser] Tentative: turn on FLAG_preparser_scope_analysis." · 3710fd4a
      Marja Hölttä authored
      This reverts commit fe50e817.
      
      Reason for revert: Too close to branch point
      
      Original change's description:
      > [parser] Tentative: turn on FLAG_preparser_scope_analysis.
      > 
      > The main motivation is to get bug reports / crashes from Canary.
      > 
      > This commit is expected to break all kinds of things! The most typical failure
      > modes are crashes, CHECK failures and JavaScript executing incorrectly.
      > 
      > BUG=v8:5516
      > 
      > Change-Id: Ifa02b420ad4e8eda46002b334bed2665c8ceeeb2
      > Reviewed-on: https://chromium-review.googlesource.com/623751
      > Reviewed-by: Camillo Bruni <cbruni@chromium.org>
      > Commit-Queue: Marja Hölttä <marja@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#47502}
      
      TBR=adamk@chromium.org,marja@chromium.org,cbruni@chromium.org
      
      Change-Id: I98d2d186cbde6e185b05ef0d3460115a654b6b45
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: v8:5516
      Reviewed-on: https://chromium-review.googlesource.com/626796Reviewed-by: 's avatarMarja Hölttä <marja@chromium.org>
      Commit-Queue: Marja Hölttä <marja@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47519}
      3710fd4a
    • Leszek Swirski's avatar
      [d8] Allow reading files from a TCP socket · 4c54a218
      Leszek Swirski authored
      Reland of https://chromium-review.googlesource.com/c/v8/v8/+/623790
      
      Add a --read-from-tcp flag to d8, which makes file reads (including
      reading files from arguments, and the load and read builtins) read the
      file contents off a TCP socket using a simple request/response protocol.
      
      On top of this, add a script for transparently running d8 on an android
      device using adb. The script loads d8 onto the device, starts a file
      server providing the above protocol, and uses the above flag to run a d8
      which loads javascript sources off the computer rather than off the
      device.
      
      Change-Id: I82a25be900c7608ed4c3a35828757a870ca2e115
      Reviewed-on: https://chromium-review.googlesource.com/626396Reviewed-by: 's avatarRoss McIlroy <rmcilroy@chromium.org>
      Commit-Queue: Leszek Swirski <leszeks@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47513}
      4c54a218
    • Leszek Swirski's avatar
      Revert "[d8] Allow reading files from a TCP socket" · de87b879
      Leszek Swirski authored
      This reverts commit 29ad1235.
      
      Reason for revert: https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20shared/builds/19576
      
      Original change's description:
      > [d8] Allow reading files from a TCP socket
      > 
      > Add a --read-from-tcp flag to d8, which makes file reads (including
      > reading files from arguments, and the load and read builtins) read the
      > file contents off a TCP socket using a simple request/response protocol.
      > 
      > On top of this, add a script for transparently running d8 on an android
      > device using adb. The script loads d8 onto the device, starts a file
      > server providing the above protocol, and uses the above flag to run a d8
      > which loads javascript sources off the computer rather than off the
      > device.
      > 
      > Change-Id: Icaa0577beb9bcd4f93476faa3ad8fb8b0a165e6e
      > Reviewed-on: https://chromium-review.googlesource.com/623790
      > Commit-Queue: Leszek Swirski <leszeks@chromium.org>
      > Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#47511}
      
      TBR=rmcilroy@chromium.org,leszeks@chromium.org
      
      Change-Id: I2de4a12aa8cb0d228df3e5793d997b9145f4da42
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Reviewed-on: https://chromium-review.googlesource.com/626017Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
      Commit-Queue: Leszek Swirski <leszeks@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47512}
      de87b879
    • Leszek Swirski's avatar
      [d8] Allow reading files from a TCP socket · 29ad1235
      Leszek Swirski authored
      Add a --read-from-tcp flag to d8, which makes file reads (including
      reading files from arguments, and the load and read builtins) read the
      file contents off a TCP socket using a simple request/response protocol.
      
      On top of this, add a script for transparently running d8 on an android
      device using adb. The script loads d8 onto the device, starts a file
      server providing the above protocol, and uses the above flag to run a d8
      which loads javascript sources off the computer rather than off the
      device.
      
      Change-Id: Icaa0577beb9bcd4f93476faa3ad8fb8b0a165e6e
      Reviewed-on: https://chromium-review.googlesource.com/623790
      Commit-Queue: Leszek Swirski <leszeks@chromium.org>
      Reviewed-by: 's avatarRoss McIlroy <rmcilroy@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47511}
      29ad1235
    • Marja Hölttä's avatar
      [parser] Tentative: turn on FLAG_preparser_scope_analysis. · fe50e817
      Marja Hölttä authored
      The main motivation is to get bug reports / crashes from Canary.
      
      This commit is expected to break all kinds of things! The most typical failure
      modes are crashes, CHECK failures and JavaScript executing incorrectly.
      
      BUG=v8:5516
      
      Change-Id: Ifa02b420ad4e8eda46002b334bed2665c8ceeeb2
      Reviewed-on: https://chromium-review.googlesource.com/623751Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
      Commit-Queue: Marja Hölttä <marja@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47502}
      fe50e817
  15. 11 Aug, 2017 1 commit
  16. 10 Aug, 2017 4 commits
  17. 09 Aug, 2017 2 commits
  18. 07 Aug, 2017 1 commit
    • Clemens Hammacher's avatar
      [wasm] [debug] Implement calling imported wasm functions · c39c6eba
      Clemens Hammacher authored
      The interpreter was not able to call imported wasm functions (hitting
      UNIMPLEMENTED). This CL fixes this by creating a "CWasmEntry", which is
      signature-specific. It has JS linkage and receives the wasm code object
      to call and a buffer containing all arguments (similar to the
      interpreter entry). It loads all arguments from the buffer and calls the
      given code object.
      The c-wasm-entry code objects are cached per instance, such that we
      only create them once per signature.
      
      These wasm entry stubs will also allow us to call back to compiled code
      from the interpreter, which we might want to do to reduce the slowdown
      of executing wasm for debugging.
      
      R=titzer@chromium.org
      
      Bug: chromium:735792
      Change-Id: I7fecec3a7bec62a9de40fff115b684759b12a28b
      Reviewed-on: https://chromium-review.googlesource.com/600308
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Reviewed-by: 's avatarBen Titzer <titzer@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47195}
      c39c6eba
  19. 03 Aug, 2017 1 commit
  20. 02 Aug, 2017 2 commits
  21. 01 Aug, 2017 1 commit
  22. 31 Jul, 2017 1 commit