Branch: refs/heads/safari-7613.3.9.2-branch
  Home:   https://github.com/WebKit/WebKit
  Commit: e20180ba34c3ef6d8e760a7a4756fe5ace5df4b3
      
https://github.com/WebKit/WebKit/commit/e20180ba34c3ef6d8e760a7a4756fe5ace5df4b3
  Author: Alan Coon <[email protected]>
  Date:   2022-08-05 (Fri, 05 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.2.15

Canonical link: https://commits.webkit.org/[email protected]


  Commit: 6f9e9210b277886828db79b2d4a79ee0ff450bef
      
https://github.com/WebKit/WebKit/commit/6f9e9210b277886828db79b2d4a79ee0ff450bef
  Author: Yusuke Suzuki <[email protected]>
  Date:   2022-08-05 (Fri, 05 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/[email protected]

Canonical link: https://commits.webkit.org/[email protected]


Compare: https://github.com/WebKit/WebKit/compare/1b6bd90535cb...6f9e9210b277
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to