1. 04 Jan, 2016 1 commit
  2. 05 Nov, 2015 1 commit
  3. 13 Oct, 2015 1 commit
    • mstarzinger's avatar
      Move builtin JavaScript sources into own directory. · e5320d8a
      mstarzinger authored
      This moves JavaScript source files that are bundled with V8 into a
      separate directory. The goal is to improve code readability and also
      being able to formalize ideal reviewers by subsequently adding the
      OWNERS file. These files almost exclusively contain implementations
      of methods fully specified by ES6.
      
      Note that files in the "debug" directory as well as the "d8.js" file
      aren't affected by this change.
      
      R=rossberg@chromium.org
      
      Review URL: https://codereview.chromium.org/1398733002
      
      Cr-Commit-Position: refs/heads/master@{#31230}
      e5320d8a
  4. 26 Aug, 2015 1 commit
  5. 21 May, 2015 1 commit
  6. 20 May, 2015 2 commits
  7. 12 May, 2015 3 commits
  8. 11 May, 2015 1 commit
  9. 16 Apr, 2015 1 commit
  10. 07 Apr, 2015 2 commits
    • adamk's avatar
      Simplify collections.js now that it's wrapped in an IIFE · f089e5c8
      adamk authored
      Also wrap templates.js in an IIFE to avoid unnecessary pollution
      of the builtins object.
      
      Review URL: https://codereview.chromium.org/1067903004
      
      Cr-Commit-Position: refs/heads/master@{#27638}
      f089e5c8
    • adamk's avatar
      Reimplement Maps and Sets in JS · 909500aa
      adamk authored
      Previously, the only optimized code path for Maps and Sets was for String keys.
      This was achieved through an implementation of various complex operations
      in Hydrogen. This approach was neither scalable nor forward-compatible.
      
      This patch adds the necessary intrinsics to implement Maps and Sets almost entirely
      in JS. The added intrinsics are:
      
        %_FixedArrayGet
        %_FixedArraySet
        %_TheHole
        %_JSCollectionGetTable
        %_StringGetRawHashField
      
      With these additions, as well as a few changes to what's exposed as runtime functions,
      most of the C++ code backing Maps and Sets is gone (including both runtime code in
      objects.cc and Crankshaft in hydrogen.cc).
      
      Review URL: https://codereview.chromium.org/947683002
      
      Cr-Commit-Position: refs/heads/master@{#27605}
      909500aa
  11. 23 Mar, 2015 1 commit
  12. 10 Dec, 2014 1 commit
  13. 20 Nov, 2014 1 commit
  14. 19 Nov, 2014 1 commit
  15. 14 Nov, 2014 1 commit