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/ftl/FTLLowerDFGToB3.cpp

    r220368 r220404  
    1161711617    LValue caged(Gigacage::Kind kind, LValue ptr)
    1161811618    {
    11619         if (!Gigacage::shouldBeEnabled())
    11620             return ptr;
    11621        
    11622         if (kind == Gigacage::Primitive && Gigacage::canPrimitiveGigacageBeDisabled()) {
     11619        if (kind == Gigacage::Primitive) {
    1162311620            if (vm().primitiveGigacageEnabled().isStillValid())
    1162411621                m_graph.watchpoints().addLazily(vm().primitiveGigacageEnabled());
Note: See TracChangeset for help on using the changeset viewer.