1. 14 Oct, 2016 1 commit
    • jgruber's avatar
      [regexp] Turn last match info into a simple FixedArray · f60a7c4f
      jgruber authored
      Now that all accesses to the last match info are in C++ and TF code, we can
      finally turn the last match info into a FixedArray. Similar to the ArrayList,
      it uses its first field to store its length and grows dynamically in amortized
      O(1) time.
      
      Unlike previously, this means that the last match info pointer stored on the
      context can actually change (in case the FixedArray needs to grow).
      
      BUG=v8:5339
      
      Review-Url: https://codereview.chromium.org/2415103002
      Cr-Commit-Position: refs/heads/master@{#40308}
      f60a7c4f
  2. 12 Aug, 2016 1 commit
    • jkummerow's avatar
      [regexp][liveedit] Fix inconsistent JSArrays · bb9707c8
      jkummerow authored
      The hand-written KeyedLoadIC_Megamorphic stub didn't care about JSArray
      lengths, which made it lenient towards said lengths being wrong, but it
      will soon fix that bug and thereby become more strict.
      
      LiveEdit: factory->NewJSArray(capacity) doesn't set a length, so set it
      manually.
      RegExp: to avoid having to take care of array length updating in the
      RegExpExecStub, just use a JSObject instead.
      
      Review-Url: https://codereview.chromium.org/2244673002
      Cr-Commit-Position: refs/heads/master@{#38624}
      bb9707c8
  3. 10 Aug, 2016 1 commit
  4. 09 Aug, 2016 1 commit
  5. 12 Jul, 2016 1 commit
  6. 05 Jul, 2016 3 commits
  7. 30 Jun, 2016 1 commit
    • adamk's avatar
      [intl] Clean up function name handling in AddBoundMethod · 54ce1935
      adamk authored
      AddBoundMethod, in i18n.js, returns functions all of which share the
      same backing SharedFunctionInfo, which means that its calls to
      InstallGetter were causing all such functions to have a single name
      (that of the last caller, "get breakType").
      
      This patch skips calling InstallGetter and instead directly calls
      %DefineGetterPropertyUnchecked, which itself sets the name property
      on the JSFunction instance (it knows how to do this in order to handle
      getters that have computed property names).
      
      Also takes care of a TODO having to do with the inner boundMethod:
      its name is now made empty, by using a new macro that gets around
      ES2015's function name inference.
      
      Finally, removes a redundant %FunctionRemovePrototype: arrow functions
      have no prototypes to begin with.
      
      R=littledan@chromium.org
      BUG=v8:4778
      
      Review-Url: https://codereview.chromium.org/2109223002
      Cr-Commit-Position: refs/heads/master@{#37459}
      54ce1935
  8. 03 Jun, 2016 1 commit
  9. 30 May, 2016 1 commit
  10. 27 May, 2016 1 commit
    • bmeurer's avatar
      [runtime] Kill the %NumberToIntegerMapMinusZero runtime entry. · 4b235ade
      bmeurer authored
      This was initially used to special case some weird date.js behavior, but
      has since been abused in other areas. In case of the string character
      access, everything that is outside the Smi range cannot be a valid
      string index anyways, so %NumberToSmi is perfect here in either case,
      and for ToPositiveInteger it's better to just use ToInteger adding +0 to
      turn -0 into +0.
      
      R=ishell@chromium.org
      BUG=v8:5049
      
      Review-Url: https://codereview.chromium.org/2010183003
      Cr-Commit-Position: refs/heads/master@{#36545}
      4b235ade
  11. 04 May, 2016 1 commit
  12. 29 Apr, 2016 2 commits
  13. 28 Apr, 2016 1 commit
  14. 06 Apr, 2016 1 commit
    • bmeurer's avatar
      [generators] Decouple generator resume from fullcodegen. · 974721c6
      bmeurer authored
      Introduce a ResumeGeneratorTrampoline, which does the actual stack state
      reconstruction (currently always restores a fullcodegen frame), and
      introduce appropriate TurboFan builtins for %GeneratorPrototype%.next,
      %GeneratorPrototype%.return and %GeneratorPrototype%.throw based on
      this native builtin.
      
      Also unify the flooding in case of step-in to always work based on
      JSFunction and remove the special casing for JSGeneratorObject.
      
      R=mstarzinger@chromium.org, neis@chromium.org
      TBR=rossberg@chromium.org
      BUG=chromium:513471
      LOG=n
      
      Review URL: https://codereview.chromium.org/1865833002
      
      Cr-Commit-Position: refs/heads/master@{#35283}
      974721c6
  15. 10 Mar, 2016 1 commit
  16. 08 Mar, 2016 1 commit
  17. 02 Mar, 2016 1 commit
    • littledan's avatar
      Implement TypedArray(typedarray) constructor · 2fa1c884
      littledan authored
      The ES2016 draft spec defines a sort of fast path for constructing
      a TypedArray based on another TypedArray. This patch implements that
      alternative path in TypedArray construction. It is verified by
      test262 tests, which now pass. This patch also has a slight cleanup
      of TypedArray code by using a macro for TypedArray type checks, as
      is done for other types.
      
      This patch includes a minor spec violation: In the same-type case, the
      spec indicates that the underlying ArrayBuffer should be copied until
      the end, and this is fixed up by making the [[ArrayLength]] shorter.
      This is observable with the buffer getter. This patch just copies the
      used part of the underlying ArrayBuffer.
      
      R=adamk
      BUG=v8:4726
      LOG=Y
      
      Review URL: https://codereview.chromium.org/1754593003
      
      Cr-Commit-Position: refs/heads/master@{#34443}
      2fa1c884
  18. 01 Mar, 2016 1 commit
  19. 29 Feb, 2016 1 commit
  20. 25 Feb, 2016 1 commit
  21. 17 Feb, 2016 2 commits
  22. 03 Feb, 2016 1 commit
  23. 02 Feb, 2016 1 commit
  24. 12 Jan, 2016 3 commits
  25. 11 Jan, 2016 1 commit
  26. 07 Jan, 2016 1 commit
  27. 22 Dec, 2015 2 commits
  28. 21 Dec, 2015 1 commit
    • cbruni's avatar
      [proxies] Better print for proxies in d8 · 8bfb7189
      cbruni authored
      Function proxies would not be printed so far since they ended up in Function.prototype.toString which only works with Function as a receiver but no Proxy. Additionally added support for more gracefully dealing with recursive __proto__ structures introduced by proxies.
      
      BUG=v8:1543
      LOG=n
      
      Review URL: https://codereview.chromium.org/1530293004
      
      Cr-Commit-Position: refs/heads/master@{#32985}
      8bfb7189
  29. 17 Dec, 2015 1 commit
  30. 04 Dec, 2015 1 commit
  31. 02 Dec, 2015 1 commit
  32. 30 Nov, 2015 1 commit
  33. 26 Nov, 2015 1 commit