Ignore:
Timestamp:
Apr 16, 2020, 2:40:23 PM (5 years ago)
Author:
[email protected]
Message:

Rolling out r259897: Causing crashes on iOS.
https://bugs.webkit.org/show_bug.cgi?id=210252

Not reviewed.

  • assembler/MacroAssembler.cpp:

(JSC::MacroAssembler::probe):

  • assembler/MacroAssemblerARM64.cpp:

(JSC::MacroAssembler::probe):

  • assembler/MacroAssemblerPrinter.h:

(JSC::MacroAssembler::print):

  • assembler/ProbeContext.h:
  • runtime/JSCPtrTag.h:
  • tools/JSDollarVM.cpp:

(JSC::callWithStackSizeProbeFunction):

  • wasm/WasmAirIRGenerator.cpp:

(JSC::Wasm::AirIRGenerator::emitLoopTierUpCheck):

  • wasm/WasmB3IRGenerator.cpp:

(JSC::Wasm::B3IRGenerator::emitLoopTierUpCheck):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/assembler/MacroAssembler.cpp

    r259897 r260222  
    2929#if ENABLE(ASSEMBLER)
    3030
    31 #include "JSCPtrTag.h"
    3231#include "Options.h"
    3332#include "ProbeContext.h"
     
    5756void MacroAssembler::probe(Function<void(Probe::Context&)> func)
    5857{
    59     probe(tagCFunction<JITProbePtrTag>(stdFunctionCallback), new Function<void(Probe::Context&)>(WTFMove(func)));
     58    probe(stdFunctionCallback, new Function<void(Probe::Context&)>(WTFMove(func)));
    6059}
    61 
    6260#endif // ENABLE(MASM_PROBE)
    6361
Note: See TracChangeset for help on using the changeset viewer.