1. 14 Apr, 2018 1 commit
    • Jakob Kummerow's avatar
      [ubsan] Change Address typedef to uintptr_t · 2459046c
      Jakob Kummerow authored
      The "Address" type is V8's general-purpose type for manipulating memory
      addresses. Per the C++ spec, pointer arithmetic and pointer comparisons
      are undefined behavior except within the same array; since we generally
      don't operate within a C++ array, our general-purpose type shouldn't be
      a pointer type.
      
      Bug: v8:3770
      Cq-Include-Trybots: luci.chromium.try:linux_chromium_rel_ng;master.tryserver.blink:linux_trusty_blink_rel
      Change-Id: Ib96016c24a0f18bcdba916dabd83e3f24a1b5779
      Reviewed-on: https://chromium-review.googlesource.com/988657
      Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
      Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#52601}
      2459046c
  2. 19 Jan, 2017 1 commit
    • krasin's avatar
      Fix unused lambda captures. · 5ccc719a
      krasin authored
      Clang just got more strict about unused lambda captures,
      and that requires us to clean all places with this issue
      across all the Chromium code base. This CL fixes all such
      cases in V8.
      
      BUG=chromium:681136
      
      Review-Url: https://codereview.chromium.org/2646553002
      Cr-Commit-Position: refs/heads/master@{#42523}
      5ccc719a
  3. 11 Nov, 2016 1 commit
  4. 10 Nov, 2016 1 commit
  5. 21 Oct, 2016 1 commit
  6. 18 Oct, 2016 1 commit
  7. 14 Oct, 2016 1 commit
  8. 13 Oct, 2016 1 commit
  9. 07 Oct, 2016 1 commit
  10. 05 Oct, 2016 1 commit
  11. 26 Sep, 2016 1 commit
  12. 22 Sep, 2016 2 commits
  13. 21 Sep, 2016 3 commits
  14. 03 Jun, 2016 1 commit
  15. 25 Feb, 2016 1 commit
  16. 24 Feb, 2016 1 commit
    • ulan's avatar
      Revert of Replace slots buffer with remembered set. (patchset #14 id:250001 of... · 9146bc5e
      ulan authored
      Revert of Replace slots buffer with remembered set. (patchset #14 id:250001 of https://codereview.chromium.org/1703823002/ )
      
      Reason for revert:
      Revert because of canary crashes: crbug.com/589413
      
      Original issue's description:
      > Replace slots buffer with remembered set.
      >
      > Slots pointing to evacuation candidates are now recorded in the new RememberedSet<OLD_TO_OLD>.
      >
      > The remembered set is extended to support typed slots.
      >
      > During parallel evacuation all migration slots are recorded in local slots buffers.
      > After evacuation all local slots are added to the remembered set.
      >
      > BUG=chromium:578883
      > LOG=NO
      >
      > Committed: https://crrev.com/2285a99ef6f7d52f4f0c4d88a7db4224443ee152
      > Cr-Commit-Position: refs/heads/master@{#34212}
      
      TBR=jochen@chromium.org,hpayer@chromium.org,mlippautz@chromium.org
      # Skipping CQ checks because original CL landed less than 1 days ago.
      NOPRESUBMIT=true
      NOTREECHECKS=true
      NOTRY=true
      BUG=chromium:578883
      
      Review URL: https://codereview.chromium.org/1725073003
      
      Cr-Commit-Position: refs/heads/master@{#34238}
      9146bc5e
  17. 23 Feb, 2016 1 commit
    • ulan's avatar
      Replace slots buffer with remembered set. · 2285a99e
      ulan authored
      Slots pointing to evacuation candidates are now recorded in the new RememberedSet<OLD_TO_OLD>.
      
      The remembered set is extended to support typed slots.
      
      During parallel evacuation all migration slots are recorded in local slots buffers.
      After evacuation all local slots are added to the remembered set.
      
      BUG=chromium:578883
      LOG=NO
      
      Review URL: https://codereview.chromium.org/1703823002
      
      Cr-Commit-Position: refs/heads/master@{#34212}
      2285a99e
  18. 17 Feb, 2016 1 commit
    • ulan's avatar
      Filter invalid slots after array trimming. · 017d128b
      ulan authored
      If sweeping is in progress then we need to filter out slots in free space after
      array trimming, because the sweeper will add the free space into free list.
      
      This CL also fixes a bug in SlotSet::RemoveRange.
      
      BUG=chromium:587004
      LOG=NO
      TBR=hpayer@chromium.org
      
      Review URL: https://codereview.chromium.org/1701963003
      
      Cr-Commit-Position: refs/heads/master@{#34071}
      017d128b
  19. 08 Feb, 2016 1 commit
    • ulan's avatar
      New page local store buffer. · bb883395
      ulan authored
      This replaces the global remembered set with per-page remembered sets.
      
      Each page in the old space, map space, and large object space keeps track of
      the set of slots in the page pointing to the new space.
      
      The data structure for storing slot sets is a two-level bitmap, which allows
      us to remove the store buffer overflow and SCAN_ON_SCAVENGE logic.
      
      Design doc: https://goo.gl/sMKCf7
      
      BUG=chromium:578883
      LOG=NO
      
      Review URL: https://codereview.chromium.org/1608583002
      
      Cr-Commit-Position: refs/heads/master@{#33806}
      bb883395