Changeset 180515 in webkit


Ignore:
Timestamp:
Feb 23, 2015 1:56:54 PM (9 years ago)
Author:
Csaba Osztrogonác
Message:

[ARM] Add the necessary setupArgumentsWithExecState after bug141915
https://bugs.webkit.org/show_bug.cgi?id=141921

Reviewed by Michael Saboff.

  • jit/CCallHelpers.h:

(JSC::CCallHelpers::setupArgumentsWithExecState):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r180514 r180515  
     12015-02-23  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [ARM] Add the necessary setupArgumentsWithExecState after bug141915
     4        https://bugs.webkit.org/show_bug.cgi?id=141921
     5
     6        Reviewed by Michael Saboff.
     7
     8        * jit/CCallHelpers.h:
     9        (JSC::CCallHelpers::setupArgumentsWithExecState):
     10
    1112015-02-23  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Source/JavaScriptCore/jit/CCallHelpers.h

    r180514 r180515  
    16431643    }
    16441644
     1645    ALWAYS_INLINE void setupArgumentsWithExecState(TrustedImm32 arg1, TrustedImmPtr arg2, TrustedImm32 arg3, GPRReg arg4, GPRReg arg5)
     1646    {
     1647        poke(arg5, POKE_ARGUMENT_OFFSET + 1);
     1648        poke(arg4, POKE_ARGUMENT_OFFSET);
     1649        setupArgumentsWithExecState(arg1, arg2, arg3);
     1650    }
     1651
    16451652    ALWAYS_INLINE void setupArgumentsWithExecState(TrustedImm32 arg1, TrustedImm32 arg2, TrustedImm32 arg3, GPRReg arg4, GPRReg arg5)
    16461653    {
Note: See TracChangeset for help on using the changeset viewer.