1. 17 Dec, 2015 1 commit
  2. 22 Oct, 2015 1 commit
  3. 16 Oct, 2015 1 commit
  4. 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
  5. 23 Sep, 2015 1 commit
    • bmeurer's avatar
      [runtime] Replace %to_string_fun with %_ToString. · 7a7b692b
      bmeurer authored
      Introduce a new macro TO_STRING that maps to %_ToString and use that
      instead of calling into any of the ToString/NonStringToString JavaScript
      builtins. Also remove the TO_STRING_INLINE macro, which is basically
      obsolete with %_ToString. We still have a few uses of ToString left (via
      the utils export mechanism), where we need to investigate whether we
      will tank badly if we replace them with TO_STRING as well.
      
      CQ_INCLUDE_TRYBOTS=tryserver.v8:v8_linux_layout_dbg,v8_linux_nosnap_dbg
      R=yangguo@chromium.org
      BUG=v8:4307
      LOG=n
      
      Review URL: https://codereview.chromium.org/1323543002
      
      Cr-Commit-Position: refs/heads/master@{#30895}
      7a7b692b
  6. 03 Sep, 2015 1 commit
    • bmeurer's avatar
      [es6] Introduce a dedicated JSIteratorResult type. · 72bc4b5c
      bmeurer authored
      Use a single JSIteratorResult type for all implementation provided
      iterator results (i.e. the String, Array and collection iterators,
      and also for generators).  This removes one source of unnecessary
      polymorphism in for-of loops.  It is accomplished by a new intrinsic
      %_CreateIterResultObject() that should be used to create iterator
      result objects from JavaScript builtins (there's a matching factory
      method for C++ code).
      
      Also restructure the %StringIteratorPrototype%.next() and
      %ArrayIteratorPrototype%.next() functions to be a bit more friendly
      to optimizing compilers.
      
      R=ishell@chromium.org
      
      Review URL: https://codereview.chromium.org/1302173007
      
      Cr-Commit-Position: refs/heads/master@{#30557}
      72bc4b5c
  7. 02 Sep, 2015 1 commit
  8. 28 Aug, 2015 1 commit
  9. 21 Aug, 2015 1 commit
    • yangguo's avatar
      Unify symbols sharing across native scripts and runtime. · eaba98d9
      yangguo authored
      We currently have several ways to share symbols that are used in
      both native scripts and the runtime. This change unifies this.
      We do not use the symbols registry since we don't need the
      registry any longer after bootstrapping, but the registry stays
      alive afterwards.
      
      R=mlippautz@chromium.org, rossberg@chromium.org
      
      Review URL: https://codereview.chromium.org/1293493004
      
      Cr-Commit-Position: refs/heads/master@{#30280}
      eaba98d9
  10. 31 Jul, 2015 1 commit
    • bmeurer's avatar
      [stubs] Unify (and optimize) implementation of ToObject. · 4fc6f547
      bmeurer authored
      This is the initial (big) step towards a more uniform implementation of
      the ToObject abstract operation (ES6 7.1.13), where we have a fallback
      implementation in JSReceiver::ToObject() and a fast (hydrogen) CodeStub
      to deal with the fast case (we should be able to do more cleanup on this
      in a followup CL).  For natives we expose the abstract operation via a
      %_ToObject intrinsic, also exposed via a macro TO_OBJECT, that unifies
      the previous confusion with TO_OBJECT_INLINE, ToObject, TO_OBJECT,
      $toObject and %$toObject.  Now the whole implementation of the abstract
      operation is context independent, meaning we don't need any magic in the
      builtins object nor the native context.
      
      R=mvstanton@chromium.org,yangguo@chromium.org
      
      Review URL: https://codereview.chromium.org/1266013006
      
      Cr-Commit-Position: refs/heads/master@{#29953}
      4fc6f547
  11. 26 May, 2015 1 commit
  12. 22 May, 2015 4 commits
  13. 21 May, 2015 1 commit
  14. 20 May, 2015 2 commits
  15. 15 May, 2015 1 commit
  16. 11 May, 2015 1 commit
  17. 07 May, 2015 1 commit
  18. 06 May, 2015 2 commits
  19. 05 May, 2015 1 commit
  20. 04 May, 2015 2 commits
  21. 30 Apr, 2015 2 commits
  22. 24 Apr, 2015 1 commit
  23. 17 Apr, 2015 1 commit
  24. 16 Apr, 2015 2 commits
  25. 15 Apr, 2015 1 commit
  26. 14 Apr, 2015 2 commits
  27. 13 Apr, 2015 2 commits
  28. 10 Apr, 2015 1 commit
  29. 12 Mar, 2015 1 commit
  30. 10 Dec, 2014 1 commit