1. 04 Aug, 2017 5 commits
  2. 03 Aug, 2017 10 commits
  3. 02 Aug, 2017 11 commits
    • Deepti Gandluri's avatar
      [wasm] Implement atomic add/sub operations. · ac774a36
      Deepti Gandluri authored
       - Decode logic for atomic operations
       - Implementations for I32AtomicAdd, I32AtomicAdd8U, I32AtomicAdd16U,
      I32AtomicSub, I32AtomicSub8U, I32AtomicSub16U
       - cctest value helpers for Uint16/Uint8 types
      
      R=binji@chromium.org, bbudge@chromium.org, bradnelson@chromium.org
      
      BUG=v8:6532
      
      Change-Id: I710ee8ef566c5e33866afdf5b47375c2ea6fdbe6
      Reviewed-on: https://chromium-review.googlesource.com/595241Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
      Reviewed-by: 's avatarBrad Nelson <bradnelson@chromium.org>
      Reviewed-by: 's avatarBen Smith <binji@chromium.org>
      Commit-Queue: Deepti Gandluri <gdeepti@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47102}
      ac774a36
    • Ulan Degenbaev's avatar
      Disable mjsunit/wasm/js-api on GC stress bots. · 5a506a9a
      Ulan Degenbaev authored
      Bug: chromium:751825
      No-Tree-Checks: true
      Change-Id: I8e9e5c030dca001a8dc881d8fdeefa5c140f3792
      Reviewed-on: https://chromium-review.googlesource.com/599047Reviewed-by: 's avatarAdam Klein <adamk@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47101}
      5a506a9a
    • Karl Schimpf's avatar
      Reland "Start migration of try/throw/catch to match proposal." · ad49b7b4
      Karl Schimpf authored
      This is a reland of 470a1001
      Original change's description:
      > Start migration of try/throw/catch to match proposal.
      > 
      > This CL does the first baby steps on moving the current (experimental)
      > exception handling to match that of the WebAssembly proposal.
      > 
      > It does the following:
      > 
      > 1) Use exception tags instead of integers.
      > 
      > 2) Only handle empty exception signatures (i.e. no values associated
      >    with the exception tag.
      > 
      > 3) Only handle one catch clause.
      > 
      > 4) Be sure to rethrow the exception if the exception tag does not match.
      > 
      > Note: There are many things that need to be fixed, and are too
      > numerous to list here. However, the code should have TODO's on each
      > missing parts of the implementation.
      > 
      > Also note that the code currently doesn't handle nested catch blocks,
      > nor does it change the throw value being an integer. Rather, the
      > integer value is still being thrown, and currently is the exception
      > tag. Therefore, we don't build an exception object. This is the reason
      > why this CL doesn't handle exceptions that pass values.
      > 
      > Also, the current implementation still can't handle multiple modules
      > because tag resolution (between) modules has not be implemented yet.
      > 
      > Bug: v8:6577
      > Change-Id: Id6d08b641b3c42d1eec7d4db582f2dab35406114
      > Reviewed-on: https://chromium-review.googlesource.com/591910
      > Reviewed-by: Brad Nelson <bradnelson@chromium.org>
      > Commit-Queue: Karl Schimpf <kschimpf@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#47087}
      
      Bug: v8:6577
      Change-Id: I41c3309827c292cb787681a95aaef7cf9b931835
      Reviewed-on: https://chromium-review.googlesource.com/598968Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
      Reviewed-by: 's avatarBrad Nelson <bradnelson@chromium.org>
      Commit-Queue: Brad Nelson <bradnelson@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47100}
      ad49b7b4
    • Adam Klein's avatar
      Enable --harmony-strict-legacy-accessor-builtins by default · 74edfccd
      Adam Klein authored
      This behavior has been staged successfully without a bug report, and
      has been shipped in the latest versions of Firefox and Safari.
      
      Bug: v8:5070
      Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel
      Change-Id: I084cae2cc303d6a213bd6789297b91656e162d6b
      Reviewed-on: https://chromium-review.googlesource.com/595129Reviewed-by: 's avatarDaniel Ehrenberg <littledan@chromium.org>
      Commit-Queue: Adam Klein <adamk@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47098}
      74edfccd
    • Ulan Degenbaev's avatar
      Revert "Start migration of try/throw/catch to match proposal." · 41daf8a5
      Ulan Degenbaev authored
      This reverts commit 470a1001.
      
      Reason for revert: GC stress bot failures.
      https://uberchromegw.corp.google.com/i/client.v8/builders/V8%20Mac%20GC%20Stress/builds/14522
      
      
      Original change's description:
      > Start migration of try/throw/catch to match proposal.
      > 
      > This CL does the first baby steps on moving the current (experimental)
      > exception handling to match that of the WebAssembly proposal.
      > 
      > It does the following:
      > 
      > 1) Use exception tags instead of integers.
      > 
      > 2) Only handle empty exception signatures (i.e. no values associated
      >    with the exception tag.
      > 
      > 3) Only handle one catch clause.
      > 
      > 4) Be sure to rethrow the exception if the exception tag does not match.
      > 
      > Note: There are many things that need to be fixed, and are too
      > numerous to list here. However, the code should have TODO's on each
      > missing parts of the implementation.
      > 
      > Also note that the code currently doesn't handle nested catch blocks,
      > nor does it change the throw value being an integer. Rather, the
      > integer value is still being thrown, and currently is the exception
      > tag. Therefore, we don't build an exception object. This is the reason
      > why this CL doesn't handle exceptions that pass values.
      > 
      > Also, the current implementation still can't handle multiple modules
      > because tag resolution (between) modules has not be implemented yet.
      > 
      > Bug: v8:6577
      > Change-Id: Id6d08b641b3c42d1eec7d4db582f2dab35406114
      > Reviewed-on: https://chromium-review.googlesource.com/591910
      > Reviewed-by: Brad Nelson <bradnelson@chromium.org>
      > Commit-Queue: Karl Schimpf <kschimpf@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#47087}
      
      TBR=bradnelson@chromium.org,eholk@chromium.org,kschimpf@chromium.org
      
      Change-Id: I01dc8c40cc1057333a988c1d275ce5f457b0cb64
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: v8:6577
      Reviewed-on: https://chromium-review.googlesource.com/598847Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
      Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47090}
      41daf8a5
    • Deepti Gandluri's avatar
      [wasm] Memory.grow(0) should return a new ArrayBuffer when the buffer is empty · 201bcba2
      Deepti Gandluri authored
      R=ahaas@chromium.org
      
      BUG=v8:6546
      
      Change-Id: I2808b78cd047d875d4530c86cc079488a78e5ea1
      Reviewed-on: https://chromium-review.googlesource.com/557355
      Commit-Queue: Deepti Gandluri <gdeepti@chromium.org>
      Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47088}
      201bcba2
    • Karl Schimpf's avatar
      Start migration of try/throw/catch to match proposal. · 470a1001
      Karl Schimpf authored
      This CL does the first baby steps on moving the current (experimental)
      exception handling to match that of the WebAssembly proposal.
      
      It does the following:
      
      1) Use exception tags instead of integers.
      
      2) Only handle empty exception signatures (i.e. no values associated
         with the exception tag.
      
      3) Only handle one catch clause.
      
      4) Be sure to rethrow the exception if the exception tag does not match.
      
      Note: There are many things that need to be fixed, and are too
      numerous to list here. However, the code should have TODO's on each
      missing parts of the implementation.
      
      Also note that the code currently doesn't handle nested catch blocks,
      nor does it change the throw value being an integer. Rather, the
      integer value is still being thrown, and currently is the exception
      tag. Therefore, we don't build an exception object. This is the reason
      why this CL doesn't handle exceptions that pass values.
      
      Also, the current implementation still can't handle multiple modules
      because tag resolution (between) modules has not be implemented yet.
      
      Bug: v8:6577
      Change-Id: Id6d08b641b3c42d1eec7d4db582f2dab35406114
      Reviewed-on: https://chromium-review.googlesource.com/591910Reviewed-by: 's avatarBrad Nelson <bradnelson@chromium.org>
      Commit-Queue: Karl Schimpf <kschimpf@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47087}
      470a1001
    • jgruber's avatar
      [coverage] Ensure that closing braces of functions are never uncovered · 7ac416ca
      jgruber authored
      Consider:
      
      function f() {
        return;
      }
      
      This CL ensures that the closing brace is considered as covered by
      introducing a special case for open-ended range rewrites when the
      parent range is the function range itself.
      
      Bug: v8:6000, v8:6661
      Change-Id: I0be307759967e9f4df245a4f367326a37dda86fd
      Reviewed-on: https://chromium-review.googlesource.com/597651Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Commit-Queue: Jakob Gruber <jgruber@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47079}
      7ac416ca
    • Benedikt Meurer's avatar
      [runtime] Properly forward the "interesting symbol" bit. · 71012480
      Benedikt Meurer authored
      This fixes a corner case of rewriting the transition trees, where the
      "interesting symbols" bit was not properly forwarded.
      
      Drive-by-fix: Introduce additional checking in Map::ConnectTransition to
      make it easier for clusterfuzz to detect cases we might have missed.
      
      R=mstarzinger@chromium.org
      
      Bug: chromium:751109
      Change-Id: I3f1a1e6232db9b3694064b3d4e9f37255b018acc
      Reviewed-on: https://chromium-review.googlesource.com/597669Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
      Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47075}
      71012480
    • Julien Brianceau's avatar
      Fix common misspellings · b41f857b
      Julien Brianceau authored
      Bug: chromium:750830
      Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_chromium_rel_ng;master.tryserver.v8:v8_linux_noi18n_rel_ng
      Change-Id: Icab7b5a1c469d5e77d04df8bfca8319784e92af4
      Reviewed-on: https://chromium-review.googlesource.com/595655
      Commit-Queue: Julien Brianceau <jbriance@cisco.com>
      Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
      Reviewed-by: 's avatarClemens Hammacher <clemensh@chromium.org>
      Reviewed-by: 's avatarDaniel Ehrenberg <littledan@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47072}
      b41f857b
    • Michael Starzinger's avatar
      [deoptimizer] Support materialization in frame summary. · 54bee830
      Michael Starzinger authored
      This adds support to materialize objects when generating a frame summary
      for an optimized frame via {OptimizedFrame::Summarize}. Note that this
      means each summary might re-materialize objects and hence produce new
      object identities every time. All use sites need to be able to cope with
      such semantics.
      
      R=jarin@chromium.org
      BUG=v8:6586
      
      Change-Id: I85c66ad3e7d247cd40f37a0a6e4391c0ee279706
      Reviewed-on: https://chromium-review.googlesource.com/595745Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
      Commit-Queue: Michael Starzinger <mstarzinger@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47067}
      54bee830
  4. 01 Aug, 2017 2 commits
  5. 31 Jul, 2017 8 commits
  6. 28 Jul, 2017 4 commits