1. 29 May, 2017 3 commits
  2. 26 May, 2017 1 commit
  3. 24 May, 2017 3 commits
  4. 23 May, 2017 6 commits
  5. 22 May, 2017 5 commits
  6. 19 May, 2017 3 commits
  7. 18 May, 2017 1 commit
    • Mircea Trofin's avatar
      [wasm] {compile|instantiate}Streaming · 47702c53
      Mircea Trofin authored
      As per spec, (https://github.com/WebAssembly/design/pull/1068), we
      don't have compile/instantiate overloads anymore, instead, we
      have explicitly named members.
      
      This change introduces the new APIs, implements instantiateStreaming
      based on compileStreaming, and uses the existing embedder mechanism.
      It does not yet remove the functionality from compile/instantiate -
      we do that after we adopt the new APIs on the blink side.
      
      Also, it temporarily handles exceptions on the v8 side, which is also
      something we'll move to the blink side.
      
      Bug: 
      Change-Id: I77673b1c0d395dfcf13b2f25464fd5dfd99c8d82
      Reviewed-on: https://chromium-review.googlesource.com/508852
      Commit-Queue: Brad Nelson <bradnelson@chromium.org>
      Reviewed-by: 's avatarBrad Nelson <bradnelson@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45411}
      47702c53
  8. 17 May, 2017 4 commits
    • Andreas Haas's avatar
      [wasm] Refactor the module decoder to work with section bytes · a8424d59
      Andreas Haas authored
      This CL refactors the module decoder so that it can process a list of
      section buffers instead of one module buffer. This change is needed for
      streaming compilation. Streaming compilation may require additional
      changes.
      
      This CL introduces the following interface to the module decoder:
      StartDecoding -- starts the decoding
      DecodeModuleHeader -- decodes the module header
      DecodeSection -- decodes the section
      FinishDecoding -- finishes the decoding and returns the WasmModule
      
      Aside from the different interface the biggest change to the module
      decoder is the introduction of a buffer_offset, which is the offset
      of the current section buffer of the module decoder in the module bytes.
      This buffer_offset is used to translate from section offsets to module
      offsets and back.
      
      Another nice change is that the module decoder does not have a zone
      anymore. Instead the zone is stored directly in the WasmModule where
      it belongs. Zone ownership is also more obvious now.
      
      R=mtrofin@chromium.org, clemensh@chromium.org
      
      Change-Id: I815d777ec380f4c617c39e828ea0c9746c0bae20
      Reviewed-on: https://chromium-review.googlesource.com/505490
      Commit-Queue: Andreas Haas <ahaas@chromium.org>
      Reviewed-by: 's avatarClemens Hammacher <clemensh@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45374}
      a8424d59
    • Michael Starzinger's avatar
      [asm.js] Remove unused --trace-wasm-encoder flag. · 4bbe2167
      Michael Starzinger authored
      R=ahaas@chromium.org
      
      Change-Id: If0001d1b829540d76a3cef54a495322ca624d030
      Reviewed-on: https://chromium-review.googlesource.com/507227Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Commit-Queue: Michael Starzinger <mstarzinger@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45373}
      4bbe2167
    • Clemens Hammacher's avatar
      [wasm] Check for illegal br table count · 74519c43
      Clemens Hammacher authored
      The underlying issue is that TF Nodes cannot handle input counts
      outside the integer range. On an illegal br_table instruction, we
      generated a switch node with a control output count >kMaxInt.
      Operator::ControlOutputCount turned this into a negative integer later,
      leading to a failing DCHECK.
      Since such large numbers cannot occur in any valid wasm function anyway,
      we just add an additional check to the br table count. There is already
      a TODO in the code to change Operator::ControlOutputCount to size_t.
      
      R=ahaas@chromium.org
      BUG=chromium:722445
      
      Change-Id: I1975072226e073dee6c8da3b9fa9a050a4695917
      Reviewed-on: https://chromium-review.googlesource.com/505496Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45365}
      74519c43
    • Clemens Hammacher's avatar
      [wasm] Don't try to interpret asm.js modules · a68b75d0
      Clemens Hammacher authored
      The interpreter does not implement all asm.js specific opcodes. Thus
      the combination of --validate-asm and --wasm-interpret-all might crash.
      The interpreter does not need to execute asm.js  modules, as they are
      debugged by executing them in turbofan instead of the wasm interpreter.
      This CL thus excludes asm.js modules from --wasm-interpret-all.
      
      R=ahaas@chromium.org
      BUG=chromium:719175
      
      Change-Id: I14228ea11ee3ea8a229cfa6e4179338a442b6cca
      Reviewed-on: https://chromium-review.googlesource.com/506160
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45364}
      a68b75d0
  9. 15 May, 2017 1 commit
    • Clemens Hammacher's avatar
      [wasm] Speed up LEB decoding · 79b075be
      Clemens Hammacher authored
      Speed up LEB decoding by forcing the decoding loop to be unrolled.
      Even though the compiler was free to unroll the loop before, clang did
      not do so. We now manually unroll by using a template function which
      calls itself recursively, passing the byte index to be decoded next.
      For efficient execution, we still depend on the compiler to inline the
      recursive calls (which clang does).
      
      This optimization speeds up interpreted execution of the Jetstream
      benchmarks by 15 percent.
      Speedup on module decoding is negligible though.
      
      Drive-by: Change "unsigned" to "uint32_t".
      
      R=ahaas@chromium.org
      BUG=v8:5822
      
      Change-Id: I06d4230f92bfb2a80cdc5029d965fc3bf84ca1cc
      Reviewed-on: https://chromium-review.googlesource.com/506188
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45308}
      79b075be
  10. 12 May, 2017 4 commits
  11. 11 May, 2017 4 commits
  12. 10 May, 2017 1 commit
    • gdeepti's avatar
      [wasm] Do not unregister an ArrayBuffer if it is already external · e2fc979e
      gdeepti authored
       - Currently if GrowMemory is called with pages = 0, an attempt is made to
         unregister the ArrayBuffer even if it is external. Cleanup so all Detaching
         of ArrayBuffer is centralized to one method, and can only be called fromJS.
       - Gate creating WeakHandles to the memory on the buffer having guard pages
         enabled. Currently creating a WeakHandle is gated only on if the buffer
         is_external true. If a buffer is marked is_external = true to begin with,
         the WeakHandle is created and the Finalizer is run causing the program to
         crash.
      
      BUG=chromium:717647
      
      Review-Url: https://codereview.chromium.org/2867233002
      Cr-Commit-Position: refs/heads/master@{#45238}
      e2fc979e
  13. 09 May, 2017 1 commit
  14. 08 May, 2017 3 commits
    • kschimpf's avatar
      Only turn on UMA WASM metric when synchronous. · aad342d5
      kschimpf authored
      The code for UMA stats (in counters.h) is not thread safe, and can
      lead to using pointers with uninitialized values.
      
      Therefore, this CL turns them off when compiling asynchronously.
      
      It also turns back on several UMA stats that were previously turned
      off, but no longer need to because the code now knows if it is
      running synchronously.
      
      BUG=v8:6361
      
      Review-Url: https://codereview.chromium.org/2864583004
      Cr-Commit-Position: refs/heads/master@{#45168}
      aad342d5
    • Clemens Hammacher's avatar
      [wasm] Make CompilationHelper own the WasmModule · 4d81f7f0
      Clemens Hammacher authored
      Another fix for more explicit management of ownership. The
      CompilationHelper now always owns the WasmModule, and transfers
      ownership to the generated WasmModuleWrapper (a Managed<WasmModule>)
      once that object is created. Since the stored uniqe_ptr cannot be
      accessed any more after this transfer, the creation of the
      WasmModuleWrapper is delayed until it is really needed (step 5 in async
      compilation).
      
      R=ahaas@chromium.org
      
      Change-Id: I22dea2e14a364ddf76751d97bd0d736a4c0ceff4
      Reviewed-on: https://chromium-review.googlesource.com/498507Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45164}
      4d81f7f0
    • Clemens Hammacher's avatar
      [wasm] Assert that lazy compilation does not fail · 612471c8
      Clemens Hammacher authored
      Since the wasm module is verified before starting execution with lazy
      compilation, the compilation of individual functions should not fail
      later.
      This CL changes the implementation to check this condition earlier
      and removes unused error paths.
      
      R=ahaas@chromium.org, mstarzinger@chromium.org
      BUG=chromium:719286
      
      Change-Id: If4bab457a47f214b457b2e2bc8570cba8c8bbcfd
      Reviewed-on: https://chromium-review.googlesource.com/497755Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#45161}
      612471c8