Ignore:
Timestamp:
Aug 8, 2017, 9:00:06 AM (8 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r220368.

This change caused WK1 tests to exit early with crashes.

Reverted changeset:

"Baseline JIT should do caging"
https://bugs.webkit.org/show_bug.cgi?id=175037
http://trac.webkit.org/changeset/220368

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r220368 r220404  
    38033803}
    38043804
     3805static void primitiveGigacageDisabled(void*)
     3806{
     3807    dataLog("Primitive gigacage disabled! Aborting.\n");
     3808    UNREACHABLE_FOR_PLATFORM();
     3809}
     3810
    38053811int jscmain(int argc, char** argv)
    38063812{
     
    38213827    JSC::Wasm::enableFastMemory();
    38223828#endif
    3823     Gigacage::disableDisablingPrimitiveGigacageIfShouldBeEnabled();
     3829    if (Gigacage::shouldBeEnabled())
     3830        Gigacage::addPrimitiveDisableCallback(primitiveGigacageDisabled, nullptr);
    38243831
    38253832    int result;
Note: See TracChangeset for help on using the changeset viewer.