1. 08 Mar, 2016 3 commits
    • v8-autoroll's avatar
      Update V8 DEPS. · 3293c486
      v8-autoroll authored
      Rolling v8/build/gyp to 61259d585ce99d9de8b35188cd0025bdbcb58411
      
      Rolling v8/tools/clang to 7f949627a42e2b8b229522ab74de5b1b6a1ced3e
      
      TBR=machenbach@chromium.org,vogelheim@chromium.org,hablich@chromium.org
      
      Review URL: https://codereview.chromium.org/1768263003
      
      Cr-Commit-Position: refs/heads/master@{#34568}
      3293c486
    • caitpotter88's avatar
      [esnext] use map instance_descriptors() when possible in Object.values/entries() · cee0dca2
      caitpotter88 authored
      When possible (non-Proxy receiver, expecting only String-names), walk the instance_descriptors() array rather than performing [[OwnPropertyKeys]]. If the map changes during a call to an accessor property, resort to a slower property lookup.
      
      For now, the fast path is not taken if the object contains any element keys.
      
      Offers a measurable improvement over the existing version, in select situations.
      
      BUG=v8:4663
      LOG=N
      R=cbruni@chromium.org, verwaest@chromium.org, adamk@chromium.org
      
      Review URL: https://codereview.chromium.org/1751643003
      
      Cr-Commit-Position: refs/heads/master@{#34567}
      cee0dca2
    • ishell's avatar
      [turbofan] Further fixing ES6 tail call elimination in Turbofan. · 2aae579c
      ishell authored
      In case when F tail calls G we should also remove the potential arguments adaptor frame for F.
      
      This CL introduces two new machine instructions ArchTailCallCodeObjectFromJSFunction and ArchTailCallJSFunctionFromJSFunction which (unlike existing ArchTailCallCodeObject and ArchTailCallJSFunction) also drop arguments adaptor frame if it exists right before jumping to the target function.
      
      BUG=v8:4698
      LOG=N
      
      Review URL: https://codereview.chromium.org/1702423002
      
      Cr-Commit-Position: refs/heads/master@{#34566}
      2aae579c
  2. 07 Mar, 2016 37 commits