Changeset 288761 in webkit


Ignore:
Timestamp:
Jan 28, 2022 3:06:19 PM (6 months ago)
Author:
ysuzuki@apple.com
Message:

[JSC] Enable wasm branch hinting
https://bugs.webkit.org/show_bug.cgi?id=235832

Reviewed by Saam Barati.

https://github.com/WebAssembly/branch-hinting is stage-3 wasm feature.
Flip the flag to enable it.

  • runtime/OptionsList.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r288758 r288761  
     12022-01-28  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        [JSC] Enable wasm branch hinting
     4        https://bugs.webkit.org/show_bug.cgi?id=235832
     5
     6        Reviewed by Saam Barati.
     7
     8        https://github.com/WebAssembly/branch-hinting is stage-3 wasm feature.
     9        Flip the flag to enable it.
     10
     11        * runtime/OptionsList.h:
     12
    1132022-01-28  Tom Tartarin  <tom@leaningtech.com>
    214
  • trunk/Source/JavaScriptCore/runtime/OptionsList.h

    r288758 r288761  
    551551    v(Bool, useWebAssemblyTypedFunctionReferences, false, Normal, "Allow function types from the wasm typed function references spec.") \
    552552    v(Bool, useWebAssemblyExceptions, true, Normal, "Allow the new section and instructions from the wasm exception handling spec.") \
    553     v(Bool, useWebAssemblyBranchHints, false, Normal, "Allow the new section from the wasm branch hinting spec.") \
     553    v(Bool, useWebAssemblyBranchHints, true, Normal, "Allow the new section from the wasm branch hinting spec.") \
    554554
    555555
Note: See TracChangeset for help on using the changeset viewer.