1. 07 Jun, 2019 2 commits
  2. 06 Jun, 2019 35 commits
  3. 05 Jun, 2019 3 commits
    • Ulan Degenbaev's avatar
      Reland "[heap] Clean up Heap::ConfigureHeap" · a208d749
      Ulan Degenbaev authored
      This reverts commit ce23fd64.
      
      Original change's description:
      > [heap] Clean up Heap::ConfigureHeap
      >
      > This re-arranges the implementation of the function to make it more
      > consistent. The only functional change is replacement of RoundUp with
      > RoundDown, which makes more sense for the limits.
      >
      > Bug: v8:9306
      > Change-Id: Id1d4bc6cc414e3618c3878de8cb87a9ed59711f5
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1643432
      > Reviewed-by: Jakob Gruber <jgruber@chromium.org>
      > Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
      > Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#61997}
      
      TBR=mlippautz@chromium.org,jgruber@chromium.org
      
      
      Change-Id: I2352c1305ea3e617b32951e4b1aa871271800478
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1645330
      Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
      Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
      Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#62008}
      a208d749
    • Toon Verwaest's avatar
      Reland "[zone] Use 32kb instead of 1MB as high zone page size" · 2d441185
      Toon Verwaest authored
      This is a reland of a0486202.
      It turns out that this gives ~2x speedup on highly parallel WebAssembly
      compilation, so let's try again landing this in isolation.
      
      Original change's description:
      > [zone] Use 32kb instead of 1MB as high zone page size
      >
      > It seems that allocating smaller pages is actually quite a bit faster than
      > larger pages, probably because they can be cached by malloc. Let's see what the
      > bots say.
      >
      > In a follow-up I'll check whether the segment-pool is actually beneficial or
      > whether we should just remove it.
      >
      > This also drops SegmentSize::kLarge as a way to make compilation deterministic.
      > Turns out that by now we need >8mb anyway, and the previous 1mb wasn't enough.
      > At the same time the compiler was fixed to not rely on virtual addresses of
      > zone objects anymore, and there's a bot checking whether the snapshot is
      > determistic.
      >
      > Change-Id: I38cbb0d209d68b3671fd38763b42714811f4223e
      > Reviewed-on: https://chromium-review.googlesource.com/c/1346370
      > Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
      > Commit-Queue: Toon Verwaest <verwaest@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#57683}
      
      Change-Id: I243ba741f0968879b4cfe9f366d81ddc53a9bf27
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1645326Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#62007}
      2d441185
    • Z Nguyen-Huu's avatar
      Add fast path for proxy with isExtensible trap · 3167b3b6
      Z Nguyen-Huu authored
      ObjectIsExtensible is now a Torque builtin (previously CPP) and the Proxy path is implemented completely in Torque while everything else calls into runtime (and is thus a bit slower than previously).
      
      Improvement in micro-benchmark
      Before:
      IsExtensibleWithoutTrap-Proxies(Score): 2228
      IsExtensibleWithTrap-Proxies(Score): 917
      
      After:
      IsExtensibleWithoutTrap-Proxies(Score): 3683
      IsExtensibleWithTrap-Proxies(Score): 3310
      
      Bug: v8:6664
      Change-Id: I1fbe1c51cb724a23d7a59fc8231bb3d1461a6add
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1637444
      Commit-Queue: Z Nguyen-Huu <duongn@microsoft.com>
      Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
      Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
      Reviewed-by: 's avatarMaya Lekova <mslekova@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#62006}
      3167b3b6