1. 27 Jan, 2017 1 commit
  2. 25 Jan, 2017 1 commit
    • rmcilroy's avatar
      [complier] Enable parallel eager inner function compilation with compiler dispatcher. · 6d42c450
      rmcilroy authored
      Enable enqueueing of eager inner function compilation onto the compiler
      dispatcher. This enables these tasks to be performed in parallel to
      compilation of the outer functio (only for Ignition functions).
      We currently synchronize to ensure all inner function compilations
       are complete before executing the outer function - future work will
      allow outer function execution to happenin parallel to inner function
      compilation.
      
      BUG=v8:5203,v8:5215
      
      Review-Url: https://codereview.chromium.org/2611313002
      Cr-Commit-Position: refs/heads/master@{#42667}
      6d42c450
  3. 24 Jan, 2017 3 commits
  4. 23 Jan, 2017 1 commit
  5. 20 Jan, 2017 4 commits
  6. 19 Jan, 2017 2 commits
  7. 18 Jan, 2017 4 commits
  8. 17 Jan, 2017 5 commits
  9. 16 Jan, 2017 3 commits
  10. 15 Jan, 2017 1 commit
  11. 13 Jan, 2017 4 commits
  12. 12 Jan, 2017 4 commits
  13. 11 Jan, 2017 2 commits
    • clemensh's avatar
      [compiler] Allow for StackSlots of arbitrary size · 7a3366fb
      clemensh authored
      This will be used to pass parameters of wasm functions to the wasm
      interpreter. All of them need to be packed into one buffer, which is
      then passed to the interpreter.
      
      R=ahaas@chromium.org, titzer@chromium.org
      BUG=v8:5822
      
      Review-Url: https://codereview.chromium.org/2624183002
      Cr-Commit-Position: refs/heads/master@{#42239}
      7a3366fb
    • rmcilroy's avatar
      [compiler] Collect eager inner functions for compilation during renumbering. · a3052cfe
      rmcilroy authored
      This CL modifies the ast-numbering phase to collect function literals which
      should be compiled eagerly. This is then used to eagerly compile the inner
      functions before compiling the outer function. This will be used to queue
      compilation jobs on the CompilerDispatcher in a later CL.
      
      This CL moves the compilation of eager inner functions out of the
      GetSharedFunctionInfo function and instead compiles them explicitly. This
      simplifies GetSharedFunctionInfo and also means there is no need to pass a
      LazyCompilationMode to the function, so this concept has been removed.
      
      BUG=v8:5203,v8:5215
      
      Review-Url: https://codereview.chromium.org/2618553004
      Cr-Commit-Position: refs/heads/master@{#42221}
      a3052cfe
  14. 09 Jan, 2017 5 commits