1. 04 May, 2016 1 commit
  2. 03 May, 2016 4 commits
  3. 02 May, 2016 2 commits
  4. 29 Apr, 2016 5 commits
  5. 28 Apr, 2016 1 commit
    • ahaas's avatar
      [wasm] Generated the framework in wasm-module for parallel compilation. · e51323de
      ahaas authored
      I introduced a new flag, --wasm-parallel-compilation, which turns on
      parallel compilation of wasm modules. If parallel compilation is turned
      on, then the compilation of wasm functions is split into three phases,
      initialization, execution, and finalization. The execution phase is the
      phase which is going to contain all the code that can be executed in
      parallel. At the moment the execution phase is still empty.
      
      R=titzer@chromium.org
      
      Review-Url: https://codereview.chromium.org/1928933002
      Cr-Commit-Position: refs/heads/master@{#35875}
      e51323de
  6. 26 Apr, 2016 3 commits
  7. 21 Apr, 2016 4 commits
  8. 19 Apr, 2016 1 commit
  9. 18 Apr, 2016 1 commit
  10. 14 Apr, 2016 1 commit
  11. 13 Apr, 2016 1 commit
  12. 12 Apr, 2016 1 commit
  13. 11 Apr, 2016 2 commits
  14. 08 Apr, 2016 2 commits
    • jfb's avatar
      Revert of Fix printf formats (patchset #8 id:140001 of... · 4c4fdc2d
      jfb authored
      Revert of Fix printf formats (patchset #8 id:140001 of https://codereview.chromium.org/1869433004/ )
      
      Reason for revert:
      One small issue easily fixed here: https://codereview.chromium.org/1867333003/
      
      But it looks like MSVS 2013 doesn't like some of the formats and exists with the unhelpful:
      Stderr:
      f:\dd\vctools\crt\crtw32\stdio\output.c(1125) : Assertion failed: ("Incorrect
      format specifier", 0)
      
      It's easier to revert for now, I'll dig more into the docs:
      https://msdn.microsoft.com/en-us/library/56e442dc(v=vs.120).aspx
      https://msdn.microsoft.com/en-us/library/tcxf1dw6(v=vs.120).aspx
      
      And then resubmit, making sure I run these bots.
      
      Original issue's description:
      > Fix printf formats
      >
      > The usage of __attribute__((format(x, y)) was either wrong or missing from multiple functions, leading to erroneous formats. This CL:
      >
      >  - Imports PRINTF_FORMAT macro from Chrome's src/base/compiler-specific.h.
      >  - Uses it appropriately.
      >  - Imports Chrome's base/format_macros.h mainly to fix size_t formats (further cleanup could be done).
      >  - Fixes a bunch of incorrect formats.
      >
      > R= jochen@chromium.org, bmeurer@chromium.org, yangguo@chromium.org, ahaas@chromium.org
      >
      > Committed: https://crrev.com/6ebf9fbb93d31f9be41156a3325d58704ed4933d
      > Cr-Commit-Position: refs/heads/master@{#35365}
      
      TBR=jochen@chromium.org,bmeurer@chromium.org,yangguo@chromium.org,ahaas@chromium.org
      # Skipping CQ checks because original CL landed less than 1 days ago.
      NOPRESUBMIT=true
      NOTREECHECKS=true
      NOTRY=true
      
      Review URL: https://codereview.chromium.org/1867383002
      
      Cr-Commit-Position: refs/heads/master@{#35366}
      4c4fdc2d
    • jfb's avatar
      Fix printf formats · 6ebf9fbb
      jfb authored
      The usage of __attribute__((format(x, y)) was either wrong or missing from multiple functions, leading to erroneous formats. This CL:
      
       - Imports PRINTF_FORMAT macro from Chrome's src/base/compiler-specific.h.
       - Uses it appropriately.
       - Imports Chrome's base/format_macros.h mainly to fix size_t formats (further cleanup could be done).
       - Fixes a bunch of incorrect formats.
      
      R= jochen@chromium.org, bmeurer@chromium.org, yangguo@chromium.org, ahaas@chromium.org
      
      Review URL: https://codereview.chromium.org/1869433004
      
      Cr-Commit-Position: refs/heads/master@{#35365}
      6ebf9fbb
  15. 06 Apr, 2016 2 commits
    • ahaas's avatar
      [wasm] Refactoring of wasm-external-refs. · a7d3e24f
      ahaas authored
      1) I moved the implementations of the wrapper functions into a new cc
      file so that I can use these wrapper functions in tests.
      
      2) I made a generic test for all tests in
      test-run-calls-to-external-references.cc. In the new test we only
      compare the result of a function call through an external reference with
      the result of a direct function call. This is sufficient because we only
      want to test function calls through external references work here.
      The implementation of these functions are tested somewhere else.
      
      R=titzer@chromium.org
      
      Review URL: https://codereview.chromium.org/1853123002
      
      Cr-Commit-Position: refs/heads/master@{#35289}
      a7d3e24f
    • titzer's avatar
      [wasm] Local decl parsing tweak. · e00a0c62
      titzer authored
      R=ahaas@chromium.org
      BUG=
      
      Review URL: https://codereview.chromium.org/1860103002
      
      Cr-Commit-Position: refs/heads/master@{#35286}
      e00a0c62
  16. 05 Apr, 2016 2 commits
  17. 04 Apr, 2016 1 commit
  18. 01 Apr, 2016 1 commit
  19. 30 Mar, 2016 1 commit
  20. 23 Mar, 2016 1 commit
  21. 21 Mar, 2016 2 commits
    • jfb's avatar
      wasm: add flag to dump modules · ed76b66a
      jfb authored
      Flags --dump_wasm_module and --dump_wasm_module_path=/path/to/folder allow us to run a bunch of tests and capture all of the wasm module files including the ones that come from the .js and .cc tests which are built on the fly, as well as the asm2wasm tests.
      
      The files are all uniquely named `HASH.{ok,failed}.wasm`.
      
      This will be especilly useful for fuzz testing, but could also be used for other tests including non-V8 tests.
      
      For now I manually hacked tools/testrunner/local/execution.py so that tools/run-tests.py can output the modules. We may want to ad a flag to run-tests.py proper if this turns out to be useful.
      
      R=bradnelson@chromium.org, titzer@chromium.org, kcc@chromium.org
      
      Review URL: https://codereview.chromium.org/1816583003
      
      Cr-Commit-Position: refs/heads/master@{#34968}
      ed76b66a
    • bradnelson's avatar
      Fix conversion to float32, typing issue, split apart asm-wasm tests. · cca5c3f6
      bradnelson authored
      Add missing conversions from other types to f32 in fround.
      Restrict fround() to only float, double, signed, unsigned (no unions / intish).
      Restrict Bitwise operations to intish, particularly |0, when not applied to a foreign function.
      
      Adding more exhaustive tests of stdlib Math, move to a separate file.
      Adding tests of interesting values for the stdlib asm.js functions.
      
      BUG= https://bugs.chromium.org/p/v8/issues/detail?id=4203
      TEST=test-asm-validator,asm-wasm
      R=titzer@chromium.org,rossberg@chromium.org
      LOG=N
      
      Review URL: https://codereview.chromium.org/1804243003
      
      Cr-Commit-Position: refs/heads/master@{#34967}
      cca5c3f6
  22. 17 Mar, 2016 1 commit