1. 11 Dec, 2017 3 commits
    • cjihrig's avatar
      Fix SmartOS compilation errors · c8ffe744
      cjihrig authored
      Change-Id: I12f67d79c11a209b02262c282a27cc7ef6afc14b
      Reviewed-on: https://chromium-review.googlesource.com/806774Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
      Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Commit-Queue: Yang Guo <yangguo@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49983}
      c8ffe744
    • Jaroslav Sevcik's avatar
      Reland "[deoptimizer] Staged materialization of objects." · 1da91b83
      Jaroslav Sevcik authored
      This relands commit e71b8022.
      
      This can now back in as the fix for chromium:787301 had enough time to
      be tested in Canary.
      
      Original change's description:
      > [deoptimizer] Staged materialization of objects.
      >
      > The existing object materialization in the deoptimizer has the following problems:
      >
      > - Objects do not necessarily verify during materialization (because during the
      >   depth first walk we might have inconsistent objects).
      >
      > - Stack can overflow (because we just materialize using recursive calls).
      >
      > - We generalize object fields.
      >
      >
      > This CL re-implements the materialization algorithm to solve this problem. The
      > new implementation creates the objects in two steps:
      >
      > 1. We allocate space for all the objects. In general, we allocate ByteArrays
      >    of the right size. For leaf objects that cannot participate in cycles,
      >    we build and initialize the materialized objects completely.
      >
      >    For JS objects, we insert markers into the byte array at the positions
      >    where unboxed doubles are expected.
      >
      > 2. We initialize all the objects with the proper field values and change the
      >    map from the ByteArray map to the correct map. This requires some sync
      >    with the concurrent marker (Heap::NotifyObjectLayoutChange).
      >
      >    When initializing the JS object fields, we make sure that we respect
      >    the unboxed double marker.
      >
      > Bug: chromium:770106, v8:3836
      > Change-Id: I1ec466a9d19db9538df4ba915516d4c3ca825632
      > Reviewed-on: https://chromium-review.googlesource.com/777559
      > Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
      > Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
      > Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#49821}
      
      Bug: chromium:770106, v8:3836
      Change-Id: Ied6c4e0fbae52713e55ae6dc13794a7521dbb8a5
      Reviewed-on: https://chromium-review.googlesource.com/817745Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49982}
      1da91b83
    • jing.bao's avatar
      [ia32][wasm] Enable more SIMD tests on IA32 · 6ed2690e
      jing.bao authored
      Implement IA32Movdqu
      Add vmovdqu and Movdqu macro
      
      Bug: 
      Change-Id: Idc2b5c99adf38d6120ff451bde40d4ad8f2046de
      Reviewed-on: https://chromium-review.googlesource.com/815944Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
      Commit-Queue: Jing Bao <jing.bao@intel.com>
      Cr-Commit-Position: refs/heads/master@{#49981}
      6ed2690e
  2. 10 Dec, 2017 3 commits
  3. 09 Dec, 2017 3 commits
  4. 08 Dec, 2017 29 commits
  5. 07 Dec, 2017 2 commits
    • Bill Budge's avatar
      Reland "[D8] Clean up ArrayBuffer Allocators in shell." · 5679ab10
      Bill Budge authored
      This is a reland of 0c2faa06
      Original change's description:
      > [D8] Clean up ArrayBuffer Allocators in shell.
      >
      > - Reworks the class hierarchy in d8.cc to conform to the allocator API.
      >   In particular, allocators should malloc/free or equivalent unless
      >   v8::ArrayBuffer::Allocator::Reserve is called.
      > - Modifies ExternalizedContents to remember the allocation mode.
      > - ArrayAllocatorBase now tracks its allocations to make sure it doesn't
      >   call Free on externalized array buffers it didn't allocate.
      >
      > Bug: chromium:756050
      > Change-Id: Ic2d07d36358f1b4fa542bea27f93d1d51a1757e1
      > Reviewed-on: https://chromium-review.googlesource.com/807355
      > Commit-Queue: Bill Budge <bbudge@chromium.org>
      > Reviewed-by: Ben Titzer <titzer@chromium.org>
      > Reviewed-by: Eric Holk <eholk@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#49893}
      
      Bug: chromium:756050,v8:7146
      Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng
      Change-Id: I8fe3a9d9af43196e16d02342a47347a76c0a1341
      Reviewed-on: https://chromium-review.googlesource.com/811724Reviewed-by: 's avatarEric Holk <eholk@chromium.org>
      Commit-Queue: Bill Budge <bbudge@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49945}
      5679ab10
    • Ali Ijaz Sheikh's avatar
      [heap] make {New,Paged}Space::PauseAllocationObserver more consistent · 08688f6f
      Ali Ijaz Sheikh authored
      Bring the two functions closer together in implementation. Avoid
      unnecessary assignment to top_on_previous_step_.
      
      Bug: 
      Change-Id: I0b6881b02ab08a48bc2051e6786e22a7b25a4948
      Reviewed-on: https://chromium-review.googlesource.com/815196Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
      Commit-Queue: Ali Ijaz Sheikh <ofrobots@google.com>
      Cr-Commit-Position: refs/heads/master@{#49944}
      08688f6f