1. 12 Feb, 2019 2 commits
    • Georg Neis's avatar
      Reland^4 "[turbofan] Use feedback when reducing global loads/stores." · 96585c3a
      Georg Neis authored
      This is a reland of 8683116e without
      changes. The previous issues should be gone thanks to
      ba1d0f25.
      
      Original change's description:
      > Reland^3 "[turbofan] Use feedback when reducing global loads/stores."
      >
      > This is a reland of 2d2c1374 without
      > changes. Offending chromium tests have been modified.
      >
      > Original change's description:
      > > Reland^2 "[turbofan] Use feedback when reducing global loads/stores."
      > >
      > > This reverts commit ac85ab0a. A
      > > chromium test caused trouble and was taken care of in
      > > https://chromium-review.googlesource.com/c/1384064.
      > >
      > > Original change's description:
      > > > [turbofan] Use feedback when reducing global loads/stores.
      > > >
      > > > We already record the script context location or the property cell
      > > > as feedback of the global load/store IC, so Turbofan doesn't need
      > > > to do the lookups again.
      > >
      > > TBR=sigurds@chromium.org
      > >
      > > Change-Id: I58bcd9bceec2f9cf401f7b0fc4460a6da6cd0abc
      > > Reviewed-on: https://chromium-review.googlesource.com/c/1386404
      > > Commit-Queue: Georg Neis <neis@chromium.org>
      > > Reviewed-by: Georg Neis <neis@chromium.org>
      > > Cr-Commit-Position: refs/heads/master@{#58393}
      >
      > Change-Id: Ic6734201a6c45f2752488ab44b16859776802f51
      > Reviewed-on: https://chromium-review.googlesource.com/c/1408252
      > Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
      > Commit-Queue: Georg Neis <neis@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#58769}
      
      TBR=bmeurer@chromium.org
      
      Change-Id: I80890e2605711045ec6997843d031b61ea27d5e4
      Reviewed-on: https://chromium-review.googlesource.com/c/1463779
      Commit-Queue: Georg Neis <neis@chromium.org>
      Reviewed-by: 's avatarSigurd Schneider <sigurds@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59518}
      96585c3a
    • tzik's avatar
      Move MicrotasksPolicy management to MicrotaskQueue · df95cff9
      tzik authored
      This CL moves MicrotasksPolicy from Isolate's HandleScopeImplementer
      to MicrotaskQueue for better non-default MicrotaskQueue support.
      
      After this:
       * MicrotaskPolicy is per-MicrotaskQueue rather than single global one.
       * ENTER_V8 runs MicrotaskQueue associated to the current Context, rather
         than the default_microtask_queue().
       * SuppressMicrotaskExecutionScope and MicrotasksScope are ready to
         take MicrotaskQueue parameter, rather than using the default one.
      
      Note that there's no way to use a non-default microtask queue until we
      expose it as a V8 API.
      
      Bug: v8:8124
      Change-Id: I79cbc53d26d9f3f4cfb7c64d303b12e395b76815
      Reviewed-on: https://chromium-review.googlesource.com/c/1429720Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Commit-Queue: Taiju Tsuiki <tzik@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59517}
      df95cff9
  2. 11 Feb, 2019 30 commits
  3. 09 Feb, 2019 8 commits
    • Z Duong Nguyen-Huu's avatar
      add micro-benchmark for object freeze with tagged template · cc7ac98b
      Z Duong Nguyen-Huu authored
      Bug: v8:6831
      Change-Id: I67e4d9f39576a4067dad59b18b3b4bf04bcdcb99
      Reviewed-on: https://chromium-review.googlesource.com/c/1461166
      Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
      Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59486}
      cc7ac98b
    • Mike Stanton's avatar
      Reland "Reland "Introduce a PREMONOMORPHIC state to StoreGlobalIC"" · ba1d0f25
      Mike Stanton authored
      This is a reland of 7179cdb1
      
      The node integration build failure appears to be constant.
      
      Original change's description:
      > Reland "Introduce a PREMONOMORPHIC state to StoreGlobalIC"
      >
      > (Fixed test failure in lite-mode)
      >
      > Introduce a PREMONOMORPHIC state to StoreGlobalIC
      >
      > It's used rather narrowly for now -- only when we run into an
      > interceptor during the lookup. After the call to SetProperty, we know
      > more. That is, the interceptor was only there because it's a new
      > property, and the call to SetProperty ends up creating it.
      >
      > By delaying the initialization of the IC, we recognize the (now)
      > created property, and can provide good feedback downstream to
      > TurboFan.
      >
      > TBR=ishell@chromium.org
      >
      > Bug: v8:8712
      > Change-Id: Ieb79dcf1354ee294ad0f479a4a6c41a77f389850
      > Reviewed-on: https://chromium-review.googlesource.com/c/1460955
      > Reviewed-by: Michael Stanton <mvstanton@chromium.org>
      > Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#59483}
      
      TBR=ishell@chromium.org
      
      Bug: v8:8712
      Change-Id: I31aa4c066ff46cb39187eed392313d2e524f4445
      Reviewed-on: https://chromium-review.googlesource.com/c/1461998Reviewed-by: 's avatarMichael Stanton <mvstanton@chromium.org>
      Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59485}
      ba1d0f25
    • Michael Stanton's avatar
      Revert "Reland "Introduce a PREMONOMORPHIC state to StoreGlobalIC"" · e986f440
      Michael Stanton authored
      This reverts commit 7179cdb1.
      
      Reason for revert: Breaks node integration build.
      
      Original change's description:
      > Reland "Introduce a PREMONOMORPHIC state to StoreGlobalIC"
      > 
      > (Fixed test failure in lite-mode)
      > 
      > Introduce a PREMONOMORPHIC state to StoreGlobalIC
      > 
      > It's used rather narrowly for now -- only when we run into an
      > interceptor during the lookup. After the call to SetProperty, we know
      > more. That is, the interceptor was only there because it's a new
      > property, and the call to SetProperty ends up creating it.
      > 
      > By delaying the initialization of the IC, we recognize the (now)
      > created property, and can provide good feedback downstream to
      > TurboFan.
      > 
      > TBR=ishell@chromium.org
      > 
      > Bug: v8:8712
      > Change-Id: Ieb79dcf1354ee294ad0f479a4a6c41a77f389850
      > Reviewed-on: https://chromium-review.googlesource.com/c/1460955
      > Reviewed-by: Michael Stanton <mvstanton@chromium.org>
      > Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#59483}
      
      TBR=mvstanton@chromium.org,ishell@chromium.org
      
      Change-Id: Ifd45908ee66760ef9199d9722b7e558c31f77830
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: v8:8712
      Reviewed-on: https://chromium-review.googlesource.com/c/1461997Reviewed-by: 's avatarMichael Stanton <mvstanton@chromium.org>
      Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59484}
      e986f440
    • Mike Stanton's avatar
      Reland "Introduce a PREMONOMORPHIC state to StoreGlobalIC" · 7179cdb1
      Mike Stanton authored
      (Fixed test failure in lite-mode)
      
      Introduce a PREMONOMORPHIC state to StoreGlobalIC
      
      It's used rather narrowly for now -- only when we run into an
      interceptor during the lookup. After the call to SetProperty, we know
      more. That is, the interceptor was only there because it's a new
      property, and the call to SetProperty ends up creating it.
      
      By delaying the initialization of the IC, we recognize the (now)
      created property, and can provide good feedback downstream to
      TurboFan.
      
      TBR=ishell@chromium.org
      
      Bug: v8:8712
      Change-Id: Ieb79dcf1354ee294ad0f479a4a6c41a77f389850
      Reviewed-on: https://chromium-review.googlesource.com/c/1460955Reviewed-by: 's avatarMichael Stanton <mvstanton@chromium.org>
      Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59483}
      7179cdb1
    • Michael Stanton's avatar
      Revert "Introduce a PREMONOMORPHIC state to StoreGlobalIC" · b5003d26
      Michael Stanton authored
      This reverts commit ec06b5c4.
      
      Reason for revert: Breaks "lite" builder.
      
      Original change's description:
      > Introduce a PREMONOMORPHIC state to StoreGlobalIC
      > 
      > It's used rather narrowly for now -- only when we run into an
      > interceptor during the lookup. After the call to SetProperty, we know
      > more. That is, the interceptor was only there because it's a new
      > property, and the call to SetProperty ends up creating it.
      > 
      > By delaying the initialization of the IC, we recognize the (now)
      > created property, and can provide good feedback downstream to
      > TurboFan.
      > 
      > Bug: v8:8712
      > Change-Id: I4e10ba220c8363b393c6de84ce35fe5ef0e9c427
      > Reviewed-on: https://chromium-review.googlesource.com/c/1456090
      > Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      > Reviewed-by: Igor Sheludko <ishell@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#59481}
      
      TBR=mvstanton@chromium.org,ishell@google.com,ishell@chromium.org
      
      Change-Id: I072a55275d64315924090a68247bb430f5c4f03d
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: v8:8712
      Reviewed-on: https://chromium-review.googlesource.com/c/1460954Reviewed-by: 's avatarMichael Stanton <mvstanton@chromium.org>
      Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59482}
      b5003d26
    • Mike Stanton's avatar
      Introduce a PREMONOMORPHIC state to StoreGlobalIC · ec06b5c4
      Mike Stanton authored
      It's used rather narrowly for now -- only when we run into an
      interceptor during the lookup. After the call to SetProperty, we know
      more. That is, the interceptor was only there because it's a new
      property, and the call to SetProperty ends up creating it.
      
      By delaying the initialization of the IC, we recognize the (now)
      created property, and can provide good feedback downstream to
      TurboFan.
      
      Bug: v8:8712
      Change-Id: I4e10ba220c8363b393c6de84ce35fe5ef0e9c427
      Reviewed-on: https://chromium-review.googlesource.com/c/1456090
      Commit-Queue: Michael Stanton <mvstanton@chromium.org>
      Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59481}
      ec06b5c4
    • Jaroslav Sevcik's avatar
      Fix map updater for non-extensible maps with private symbols. · 154bb50c
      Jaroslav Sevcik authored
      Bailout from map update if there are private symbol transitions on
      non-extensible maps.
      
      Bug: chromium:930045
      Change-Id: I02fbea0ec0afde07cded688c06122d8f2bb25921
      Reviewed-on: https://chromium-review.googlesource.com/c/1460949Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
      Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59480}
      154bb50c
    • Johannes Henkel's avatar
      [DevTools] Roll inspector_protocol to 02ca2bc2bb337cb2d4143157383b554f9b75dc99. · f1c92ac1
      Johannes Henkel authored
      This brings in the CBOR_h / CBOR_cc template.
      
      Change-Id: I3d3971a5ba4c98a8b36982449e4d9a2606010f22
      Reviewed-on: https://chromium-review.googlesource.com/c/1459738Reviewed-by: 's avatarAlexei Filippov <alph@chromium.org>
      Commit-Queue: Johannes Henkel <johannes@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#59479}
      f1c92ac1