Ignore:
Timestamp:
Oct 14, 2021, 7:24:50 AM (4 years ago)
Author:
[email protected]
Message:

Unreviewed, reverting r284151.
https://bugs.webkit.org/show_bug.cgi?id=231740

WTR

Reverted changeset:

"Test coverage for JSC shadow realms implementation"
https://bugs.webkit.org/show_bug.cgi?id=230602
https://commits.webkit.org/r284151

Location:
trunk/Source/JavaScriptCore/bytecompiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h

    r284151 r284159  
    886886        RegisterID* emitIsMap(RegisterID* dst, RegisterID* src) { return emitIsCellWithType(dst, src, JSMapType); }
    887887        RegisterID* emitIsSet(RegisterID* dst, RegisterID* src) { return emitIsCellWithType(dst, src, JSSetType); }
    888         RegisterID* emitIsShadowRealm(RegisterID* dst, RegisterID* src) { return emitIsCellWithType(dst, src, ShadowRealmType); }
    889888        RegisterID* emitIsStringIterator(RegisterID* dst, RegisterID* src) { return emitIsCellWithType(dst, src, JSStringIteratorType); }
    890889        RegisterID* emitIsArrayIterator(RegisterID* dst, RegisterID* src) { return emitIsCellWithType(dst, src, JSArrayIteratorType); }
  • trunk/Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp

    r284151 r284159  
    18951895CREATE_INTRINSIC_FOR_BRAND_CHECK(isMap, IsMap)
    18961896CREATE_INTRINSIC_FOR_BRAND_CHECK(isSet, IsSet)
    1897 CREATE_INTRINSIC_FOR_BRAND_CHECK(isShadowRealm, IsShadowRealm)
    18981897CREATE_INTRINSIC_FOR_BRAND_CHECK(isStringIterator, IsStringIterator)
    18991898CREATE_INTRINSIC_FOR_BRAND_CHECK(isArrayIterator, IsArrayIterator)
Note: See TracChangeset for help on using the changeset viewer.