1. 31 Jan, 2018 1 commit
  2. 26 Jan, 2018 1 commit
    • Georg Neis's avatar
      Reland "[ic] Improve performance of KeyedStoreIC on literal-based arrays." · 024d3499
      Georg Neis authored
      This is a reland of 181ac2b0 that fixes
      the issue with load elimination.
      
      Original change's description:
      > [ic] Improve performance of KeyedStoreIC on literal-based arrays.
      >
      > In mode STORE_AND_GROW_NO_TRANSITION, the handler for elements stores
      > used to bail out when seeing a COW array, even if the store that
      > installed the handler had been operating on the very same array.
      >
      > This CL adds support for COW arrays to the mode (and renames it to
      > STORE_AND_GROW_NO_TRANSITION_HANDLE_COW).
      >
      > Bug: v8:7334
      > Change-Id: I6a15e8c1ff8d4ad4d5b8fc447745dce5d146c67c
      > Reviewed-on: https://chromium-review.googlesource.com/876014
      > Commit-Queue: Georg Neis <neis@chromium.org>
      > Reviewed-by: Igor Sheludko <ishell@chromium.org>
      > Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#50840}
      
      TBR=bmeurer@chromium.org
      
      Bug: v8:7334, chromium:805768
      Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng
      Change-Id: I3d9c1b08583e08d68a1d30242a25e4a2190c8c55
      Reviewed-on: https://chromium-review.googlesource.com/886261
      Commit-Queue: Georg Neis <neis@chromium.org>
      Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
      Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#50885}
      024d3499
  3. 25 Jan, 2018 1 commit
    • Georg Neis's avatar
      Revert "[ic] Improve performance of KeyedStoreIC on literal-based arrays." · 0eb64190
      Georg Neis authored
      This reverts commit 181ac2b0.
      
      Reason for revert: TF changes break load elimination.
      
      Original change's description:
      > [ic] Improve performance of KeyedStoreIC on literal-based arrays.
      > 
      > In mode STORE_AND_GROW_NO_TRANSITION, the handler for elements stores
      > used to bail out when seeing a COW array, even if the store that
      > installed the handler had been operating on the very same array.
      > 
      > This CL adds support for COW arrays to the mode (and renames it to
      > STORE_AND_GROW_NO_TRANSITION_HANDLE_COW).
      > 
      > Bug: v8:7334
      > Change-Id: I6a15e8c1ff8d4ad4d5b8fc447745dce5d146c67c
      > Reviewed-on: https://chromium-review.googlesource.com/876014
      > Commit-Queue: Georg Neis <neis@chromium.org>
      > Reviewed-by: Igor Sheludko <ishell@chromium.org>
      > Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#50840}
      
      TBR=neis@chromium.org,ishell@chromium.org,bmeurer@chromium.org
      
      Change-Id: Id841d91b12d199045e0a9c4ddae2c2ead20b5e21
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: v8:7334
      Reviewed-on: https://chromium-review.googlesource.com/885814Reviewed-by: 's avatarGeorg Neis <neis@chromium.org>
      Commit-Queue: Georg Neis <neis@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#50860}
      0eb64190
  4. 24 Jan, 2018 1 commit
  5. 12 Jan, 2018 1 commit
  6. 21 Dec, 2017 1 commit
  7. 19 Dec, 2017 1 commit
  8. 18 Dec, 2017 2 commits
  9. 14 Dec, 2017 5 commits
  10. 13 Dec, 2017 1 commit
  11. 11 Dec, 2017 1 commit
  12. 08 Dec, 2017 1 commit
  13. 07 Dec, 2017 1 commit
  14. 06 Dec, 2017 2 commits
  15. 05 Dec, 2017 1 commit
  16. 01 Dec, 2017 1 commit
    • Shiyu Zhang's avatar
      [ic] Do not convert undefined key to undefined_string. · ffcb51b2
      Shiyu Zhang authored
      In the special case of KeyedLoadIC, where the key is always undefined,
      LowerCheckEqualsInternalizedString fails and triggers deoptimization
      loops. It's because {exp}, which is undefined_string, does not match
      {val}, which is undefined_value.
      
      This patch drops the convertion from undefined_value to undefined_string
      for undefined key in KeyedLoadIC. It makes undefined key be able to pass
      LowerCheckEqualsInternalizedString and avoids the deoptimization loops.
      
      Bug: 
      Change-Id: Ie15358e705490fb2e4907f4d37a3ef7921f74844
      Reviewed-on: https://chromium-review.googlesource.com/789613
      Commit-Queue: Igor Sheludko <ishell@chromium.org>
      Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49779}
      ffcb51b2
  17. 29 Nov, 2017 1 commit
    • Georg Neis's avatar
      No longer desugar the exponentiation (**) operator. · b97567a9
      Georg Neis authored
      Prior to this change, the exponentiation operator was rewritten by the
      parser to a call of the Math.pow builtin. However, Math.pow does not
      accept BigInt arguments, while the exponentiation operator must accept
      them.
      
      This CL
      - removes the parser's special treatment of ** and **=, treating them
        like any other binary op instead.
      - adds a TFC builtin Exponentiate that does the right thing for
        all inputs.
      - adds interpreter bytecodes Exp and ExpSmi whose handlers call the
        Exponentiate builtin. For simplicity, they currently always collect
        kAny feedback.
      - adds a Turbofan operator JSExponentiate with a typed-lowering to
        the existing NumberPow and a generic-lowering to the Exponentiate
        builtin. There is currently no speculative lowering.
      
      Note that exponentiation for BigInts is actually not implemented yet,
      so we can't yet test it.
      
      Bug: v8:6791
      Change-Id: Id90914c9c3fce310ce01e715c09eaa9f294f4f8a
      Reviewed-on: https://chromium-review.googlesource.com/785694Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
      Reviewed-by: 's avatarSathya Gunasekaran <gsathya@chromium.org>
      Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Reviewed-by: 's avatarMythri Alle <mythria@chromium.org>
      Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
      Commit-Queue: Georg Neis <neis@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49696}
      b97567a9
  18. 23 Nov, 2017 1 commit
  19. 21 Nov, 2017 1 commit
  20. 20 Nov, 2017 1 commit
  21. 18 Nov, 2017 1 commit
  22. 17 Nov, 2017 1 commit
    • Ulan Degenbaev's avatar
      [runtime] Make layout descriptor helper safe for concurrent marking. · 61bf2cc6
      Ulan Degenbaev authored
      The layout descriptor helper computes the object header size using
      map->instance_size() and map->GetInObjectProperties().
      
      It races with finalization of slack tracking, which changes both
      the instance size and the in-object properties count.
      
      This patch replaces the in-object properties count byte in the map
      with the byte that stores the start offset of in-object properties.
      
      The new byte can be used in the layout descriptor to compute the
      object header size and it is immutable.
      
      This patch also renames InstanceSize to InstanceSizeInWords where
      the instance size is represented in words.
      
      Bug: chromium:786069, chromium:694255
      Change-Id: I4b48c6944d3fe8a950bd7b0ba43d75216b177a78
      Reviewed-on: https://chromium-review.googlesource.com/776720
      Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
      Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49461}
      61bf2cc6
  23. 16 Nov, 2017 1 commit
  24. 15 Nov, 2017 1 commit
  25. 14 Nov, 2017 1 commit
  26. 07 Nov, 2017 5 commits
  27. 06 Nov, 2017 4 commits