Ignore:
Timestamp:
Oct 23, 2017, 7:33:13 PM (8 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r223866.
https://bugs.webkit.org/show_bug.cgi?id=178699

Probably broke the windows build (Requested by keith_miller on
#webkit).

Reverted changeset:

"WebAssembly: topEntryFrame on Wasm::Instance"
https://bugs.webkit.org/show_bug.cgi?id=178690
https://trac.webkit.org/changeset/223866

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/VM.cpp

    r223866 r223874  
    997997#endif
    998998
     999#if ENABLE(JIT)
     1000RegisterAtOffsetList* VM::getAllCalleeSaveRegisterOffsets()
     1001{
     1002    static RegisterAtOffsetList* result;
     1003
     1004    static std::once_flag calleeSavesFlag;
     1005    std::call_once(calleeSavesFlag, [] () {
     1006        result = new RegisterAtOffsetList(RegisterSet::vmCalleeSaveRegisters(), RegisterAtOffsetList::ZeroBased);
     1007    });
     1008
     1009    return result;
     1010}
     1011#endif // ENABLE(JIT)
     1012
    9991013#if USE(CF)
    10001014void VM::registerRunLoopTimer(JSRunLoopTimer* timer)
Note: See TracChangeset for help on using the changeset viewer.