[webkit-changes] [WebKit/WebKit] f68c83: Versioning.

Alan Coon noreply at github.com
Tue Nov 29 09:09:42 PST 2022


  Branch: refs/heads/safari-7613.3.9.1-branch
  Home:   https://github.com/WebKit/WebKit
  Commit: f68c83be9c349ad8923eabe6d706c5b68592b485
      https://github.com/WebKit/WebKit/commit/f68c83be9c349ad8923eabe6d706c5b68592b485
  Author: Alan Coon <alancoon at apple.com>
  Date:   2022-08-04 (Thu, 04 Aug 2022)

  Changed paths:
    M Source/JavaScriptCore/Configurations/Version.xcconfig
    M Source/ThirdParty/ANGLE/Configurations/Version.xcconfig
    M Source/ThirdParty/libwebrtc/Configurations/Version.xcconfig
    M Source/WebCore/Configurations/Version.xcconfig
    M Source/WebCore/PAL/Configurations/Version.xcconfig
    M Source/WebGPU/Configurations/Version.xcconfig
    M Source/WebInspectorUI/Configurations/Version.xcconfig
    M Source/WebKit/Configurations/Version.xcconfig
    M Source/WebKitLegacy/mac/Configurations/Version.xcconfig

  Log Message:
  -----------
  Versioning.

WebKit-7613.3.9.1.15

Canonical link: https://commits.webkit.org/245886.790@safari-7613.3.9.1-branch


  Commit: 1a23699c2ce0b1175bf5e324a304bf2b428ef503
      https://github.com/WebKit/WebKit/commit/1a23699c2ce0b1175bf5e324a304bf2b428ef503
  Author: Yusuke Suzuki <ysuzuki at apple.com>
  Date:   2022-08-04 (Thu, 04 Aug 2022)

  Changed paths:
    A JSTests/stress/map-clear-get.js
    A JSTests/stress/set-clear-has.js
    M Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp
    M Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
    M Source/JavaScriptCore/runtime/AbstractModuleRecord.cpp
    M Source/JavaScriptCore/runtime/HashMapImpl.h
    M Source/JavaScriptCore/runtime/HashMapImplInlines.h
    M Source/JavaScriptCore/runtime/JSMap.h
    M Source/JavaScriptCore/runtime/JSModuleLoader.cpp
    M Source/JavaScriptCore/runtime/JSSet.h
    M Source/JavaScriptCore/runtime/MapConstructor.cpp
    M Source/JavaScriptCore/runtime/MapPrototype.cpp
    M Source/JavaScriptCore/runtime/SetConstructor.cpp
    M Source/JavaScriptCore/runtime/SetPrototype.cpp
    M Source/JavaScriptCore/runtime/WeakMapImplInlines.h
    M Source/WebCore/bindings/js/JSDOMMapLike.cpp
    M Source/WebCore/bindings/js/JSDOMSetLike.cpp
    M Source/WebCore/bindings/js/SerializedScriptValue.cpp

  Log Message:
  -----------
  Cherry-pick fdaaccf6d779. rdar://problem/98068082

    Cherry-pick 1ed1e4a336e1. rdar://problem/98068082

        [JSC] Make JSMap and JSSet construction more simple and efficient
        https://bugs.webkit.org/show_bug.cgi?id=243557
        rdar://98068082

        Reviewed by Mark Lam and Saam Barati.

        This patch makes the initial buffer of JSMap / JSSet nullptr so that we can make allocation of them
        simpler and efficient for non-using case. It cleans up many code in module loader etc. And it paves
        the way to allocating them from DFG and FTL efficiently. It also cleans up SerializedScriptValue
        implementation.

        * JSTests/stress/map-clear-get.js: Added.
        (shouldBe):
        (test):
        * JSTests/stress/set-clear-has.js: Added.
        (shouldBe):
        (set clear):
        (set shouldBe):
        (set new):
        * Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp:
        (JSC::DFG::SpeculativeJIT::compile):
        * Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:
        (JSC::FTL::DFG::LowerDFGToB3::compileCompareStrictEq):
        * Source/JavaScriptCore/runtime/AbstractModuleRecord.cpp:
        (JSC::AbstractModuleRecord::finishCreation):
        * Source/JavaScriptCore/runtime/HashMapImpl.h:
        (JSC::HashMapBuffer::tryCreate):
        (JSC::HashMapImpl::HashMapImpl):
        (JSC::HashMapBuffer::create): Deleted.
        (JSC::HashMapImpl::shouldRehashAfterAdd const): Deleted.
        * Source/JavaScriptCore/runtime/HashMapImplInlines.h:
        (JSC::shouldShrink):
        (JSC::shouldRehash):
        (JSC::nextCapacity):
        (JSC::HashMapImpl<HashMapBucketType>::finishCreation):
        (JSC::HashMapImpl<HashMapBucketType>::add):
        (JSC::HashMapImpl<HashMapBucketType>::addNormalized):
        (JSC::HashMapImpl<HashMapBucketType>::remove):
        (JSC::HashMapImpl<HashMapBucketType>::clear):
        (JSC::HashMapImpl<HashMapBucketType>::setUpHeadAndTail):
        (JSC::HashMapImpl<HashMapBucketType>::addNormalizedNonExistingForCloning):
        (JSC::HashMapImpl<HashMapBucketType>::addNormalizedNonExistingForCloningInternal):
        (JSC::HashMapImpl<HashMapBucketType>::addNormalizedInternal):
        (JSC::HashMapImpl<HashMapBucketType>::findBucketAlreadyHashedAndNormalized):
        (JSC::HashMapImpl<HashMapBucketType>::rehash):
        (JSC::HashMapImpl<HashMapBucketType>::makeAndSetNewBuffer):
        (JSC::HashMapImpl<HashMapBucketType>::assertBufferIsEmpty):
        (JSC::shouldRehashAfterAdd): Deleted.
        (JSC::HashMapImpl<HashMapBucketType>::assertBufferIsEmpty const): Deleted.
        * Source/JavaScriptCore/runtime/JSMap.h:
        * Source/JavaScriptCore/runtime/JSModuleLoader.cpp:
        (JSC::JSModuleLoader::finishCreation):
        * Source/JavaScriptCore/runtime/JSSet.h:
        * Source/JavaScriptCore/runtime/MapConstructor.cpp:
        (JSC::JSC_DEFINE_HOST_FUNCTION):
        * Source/JavaScriptCore/runtime/MapPrototype.cpp:
        (JSC::JSC_DEFINE_HOST_FUNCTION):
        * Source/JavaScriptCore/runtime/SetConstructor.cpp:
        (JSC::JSC_DEFINE_HOST_FUNCTION):
        * Source/JavaScriptCore/runtime/SetPrototype.cpp:
        (JSC::JSC_DEFINE_HOST_FUNCTION):
        * Source/JavaScriptCore/runtime/WeakMapImplInlines.h:
        (JSC::WeakMapImpl<WeakMapBucket>::shouldRehashAfterAdd const):
        * Source/WebCore/bindings/js/JSDOMMapLike.cpp:
        (WebCore::getBackingMap):
        * Source/WebCore/bindings/js/JSDOMSetLike.cpp:
        (WebCore::getBackingSet):
        * Source/WebCore/bindings/js/SerializedScriptValue.cpp:
        (WebCore::CloneDeserializer::deserialize):

        Canonical link: https://commits.webkit.org/253133@main

    Canonical link: https://commits.webkit.org/245886.832@safari-7613.3.9.0-branch

Canonical link: https://commits.webkit.org/245886.791@safari-7613.3.9.1-branch


  Commit: 676ec7e287c0d024626e6fde1c7c4ac26963b585
      https://github.com/WebKit/WebKit/commit/676ec7e287c0d024626e6fde1c7c4ac26963b585
  Author: Alan Coon <alancoon at apple.com>
  Date:   2022-08-09 (Tue, 09 Aug 2022)

  Changed paths:
    M Source/JavaScriptCore/Configurations/Version.xcconfig
    M Source/ThirdParty/ANGLE/Configurations/Version.xcconfig
    M Source/ThirdParty/libwebrtc/Configurations/Version.xcconfig
    M Source/WebCore/Configurations/Version.xcconfig
    M Source/WebCore/PAL/Configurations/Version.xcconfig
    M Source/WebGPU/Configurations/Version.xcconfig
    M Source/WebInspectorUI/Configurations/Version.xcconfig
    M Source/WebKit/Configurations/Version.xcconfig
    M Source/WebKitLegacy/mac/Configurations/Version.xcconfig

  Log Message:
  -----------
  Versioning.

WebKit-7613.3.9.1.16

Canonical link: https://commits.webkit.org/245886.792@safari-7613.3.9.1-branch


Compare: https://github.com/WebKit/WebKit/compare/37e8fc704252...676ec7e287c0


More information about the webkit-changes mailing list