1. 01 Jul, 2021 1 commit
  2. 17 May, 2021 1 commit
  3. 03 May, 2021 1 commit
  4. 08 Mar, 2021 1 commit
  5. 25 Feb, 2021 1 commit
  6. 19 Feb, 2021 1 commit
  7. 20 Nov, 2020 1 commit
  8. 12 Nov, 2020 1 commit
  9. 10 Nov, 2020 1 commit
  10. 09 Nov, 2020 1 commit
  11. 07 Nov, 2020 1 commit
  12. 16 Oct, 2020 1 commit
  13. 05 Oct, 2020 1 commit
  14. 01 Jul, 2020 1 commit
  15. 22 Jun, 2020 1 commit
  16. 19 Jun, 2020 1 commit
  17. 18 Jun, 2020 1 commit
  18. 16 Jun, 2020 1 commit
  19. 11 Oct, 2019 1 commit
  20. 12 Sep, 2019 1 commit
  21. 03 Jul, 2019 1 commit
  22. 23 May, 2019 3 commits
  23. 20 May, 2019 1 commit
  24. 06 May, 2019 1 commit
  25. 03 May, 2019 1 commit
    • Sigurd Schneider's avatar
      Revert "Reland "[json] Speed up json parsing"" · 47fccbfd
      Sigurd Schneider authored
      This reverts commit bbd740f0.
      
      Reason for revert: blocks lkgr due to layout test failure:
      https://ci.chromium.org/p/v8/builders/ci/V8-Blink%20Linux%2064/31607
      
      Original change's description:
      > Reland "[json] Speed up json parsing"
      > 
      > This is a reland of b0c4a876
      > 
      > Original change's description:
      > > [json] Speed up json parsing
      > >
      > > - scan using raw data pointers + GC callback
      > > - scan using scanner tables
      > > - cap internalizing large string values
      > > - inline fast transitioning logic
      > >
      > > Fixes previous CL by moving AllowHeapAllocation to callers of
      > > ReportUnexpectedCharacter where needed to make it clear we need to exit.
      > >
      > > Tbr: ulan@chromium.org
      > > Change-Id: Icfbb7cd536e0fbe153f34acca5d0fab6b5453d71
      > > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1591778
      > > Reviewed-by: Igor Sheludko <ishell@chromium.org>
      > > Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
      > > Commit-Queue: Toon Verwaest <verwaest@chromium.org>
      > > Cr-Commit-Position: refs/heads/master@{#61159}
      > 
      > Tbr: verwaest@chromium.org
      > Cq-Include-Trybots: luci.v8.try:v8_linux64_msan_rel
      > Change-Id: Ic7d0057178c649fc45b8c8f4587ee9128e351515
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1593292
      > Commit-Queue: Igor Sheludko <ishell@chromium.org>
      > Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
      > Reviewed-by: Igor Sheludko <ishell@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#61179}
      
      TBR=ulan@chromium.org,ishell@google.com,verwaest@google.com,ishell@chromium.org,verwaest@chromium.org
      
      Change-Id: I3ae8f9ce8214bebe7fab9d87c5daf8cdfdb94199
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Cq-Include-Trybots: luci.v8.try:v8_linux64_msan_rel
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1594438
      Commit-Queue: Sigurd Schneider <sigurds@chromium.org>
      Reviewed-by: 's avatarSigurd Schneider <sigurds@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#61194}
      47fccbfd
  26. 02 May, 2019 3 commits
  27. 30 Apr, 2019 4 commits
  28. 12 Mar, 2019 1 commit
  29. 20 Feb, 2019 1 commit
    • Jaroslav Sevcik's avatar
      Reland "Fix accessor update of non-extensible maps." · 0a069d94
      Jaroslav Sevcik authored
      This is a reland of 1a3a2bc3,
      fixed an infinite loop in Map::TryUpdateSlow and added
      a relevant test.
      
      Original change's description:
      > Fix accessor update of non-extensible maps.
      >
      > When installing getter/setter of non-extensible map with existing
      > setter/getter of the same name, we introduce a new transition
      > (so we have two transitions with the same name!). This triggers
      > an assertion in map updater.
      >
      > This fix carefully checks that on the back-pointer path from
      > non-extensible map to the extensible map there are only
      > integrity level transitions. Otherwise, we just bail out.
      >
      > Bug: chromium:932953
      > Change-Id: I02e91c3b652428a84a9f5c58b6691ea9b1fc44d6
      > Reviewed-on: https://chromium-review.googlesource.com/c/1477067
      > Reviewed-by: Igor Sheludko <ishell@chromium.org>
      > Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#59667}
      
      Bug: chromium:932953
      Change-Id: I015ee3795f816c8eabb5b5c5cb0ee30f365cc972
      Reviewed-on: https://chromium-review.googlesource.com/c/1477675Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
      Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59715}
      0a069d94
  30. 19 Feb, 2019 2 commits
    • Leszek Swirski's avatar
      Revert "Fix accessor update of non-extensible maps." · 4cbdf97d
      Leszek Swirski authored
      This reverts commit 1a3a2bc3.
      
      Reason for revert: Only CL in a reverted roll (https://chromium-review.googlesource.com/c/chromium/src/+/1477147)
      
      Original change's description:
      > Fix accessor update of non-extensible maps.
      > 
      > When installing getter/setter of non-extensible map with existing
      > setter/getter of the same name, we introduce a new transition
      > (so we have two transitions with the same name!). This triggers
      > an assertion in map updater.
      > 
      > This fix carefully checks that on the back-pointer path from
      > non-extensible map to the extensible map there are only
      > integrity level transitions. Otherwise, we just bail out.
      > 
      > Bug: chromium:932953
      > Change-Id: I02e91c3b652428a84a9f5c58b6691ea9b1fc44d6
      > Reviewed-on: https://chromium-review.googlesource.com/c/1477067
      > Reviewed-by: Igor Sheludko <ishell@chromium.org>
      > Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#59667}
      
      TBR=jarin@chromium.org,ishell@chromium.org
      
      Change-Id: I9264423c605cebef87beb6c0f066e90b59faae48
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: chromium:932953
      Reviewed-on: https://chromium-review.googlesource.com/c/1477219Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
      Commit-Queue: Leszek Swirski <leszeks@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59680}
      4cbdf97d
    • Jaroslav Sevcik's avatar
      Fix accessor update of non-extensible maps. · 1a3a2bc3
      Jaroslav Sevcik authored
      When installing getter/setter of non-extensible map with existing
      setter/getter of the same name, we introduce a new transition
      (so we have two transitions with the same name!). This triggers
      an assertion in map updater.
      
      This fix carefully checks that on the back-pointer path from
      non-extensible map to the extensible map there are only
      integrity level transitions. Otherwise, we just bail out.
      
      Bug: chromium:932953
      Change-Id: I02e91c3b652428a84a9f5c58b6691ea9b1fc44d6
      Reviewed-on: https://chromium-review.googlesource.com/c/1477067Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
      Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59667}
      1a3a2bc3
  31. 26 Dec, 2018 1 commit
  32. 20 Dec, 2018 1 commit