Changeset 194713 in webkit


Ignore:
Timestamp:
Jan 7, 2016 1:13:26 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[mips] Make repatchCall public to fix compilation.
https://bugs.webkit.org/show_bug.cgi?id=152843

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-07
Reviewed by Michael Saboff.

  • assembler/MacroAssemblerMIPS.h:

(JSC::MacroAssemblerMIPS::repatchCall):
(JSC::MacroAssemblerMIPS::linkCall): Deleted.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r194712 r194713  
     12016-01-07  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [mips] Make repatchCall public to fix compilation.
     4        https://bugs.webkit.org/show_bug.cgi?id=152843
     5
     6        Reviewed by Michael Saboff.
     7
     8        * assembler/MacroAssemblerMIPS.h:
     9        (JSC::MacroAssemblerMIPS::repatchCall):
     10        (JSC::MacroAssemblerMIPS::linkCall): Deleted.
     11
    1122016-01-07  Konstantin Tokarev  <annulen@yandex.ru>
    213
  • trunk/Source/JavaScriptCore/assembler/MacroAssemblerMIPS.h

    r194699 r194713  
    28272827    }
    28282828
     2829    static void repatchCall(CodeLocationCall call, CodeLocationLabel destination)
     2830    {
     2831        MIPSAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
     2832    }
     2833
     2834    static void repatchCall(CodeLocationCall call, FunctionPtr destination)
     2835    {
     2836        MIPSAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
     2837    }
    28292838
    28302839private:
     
    28432852    }
    28442853
    2845     static void repatchCall(CodeLocationCall call, CodeLocationLabel destination)
    2846     {
    2847         MIPSAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
    2848     }
    2849 
    2850     static void repatchCall(CodeLocationCall call, FunctionPtr destination)
    2851     {
    2852         MIPSAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
    2853     }
    2854 
    28552854};
    28562855
Note: See TracChangeset for help on using the changeset viewer.