Title: [180515] trunk/Source/_javascript_Core
Revision
180515
Author
[email protected]
Date
2015-02-23 13:56:54 -0800 (Mon, 23 Feb 2015)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (180514 => 180515)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-23 21:54:15 UTC (rev 180514)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-23 21:56:54 UTC (rev 180515)
@@ -1,3 +1,13 @@
+2015-02-23  Csaba Osztrogonác  <[email protected]>
+
+        [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):
+
 2015-02-23  Filip Pizlo  <[email protected]>
 
         Scopes should always be created with a previously-created symbol table rather than creating one on the fly

Modified: trunk/Source/_javascript_Core/jit/CCallHelpers.h (180514 => 180515)


--- trunk/Source/_javascript_Core/jit/CCallHelpers.h	2015-02-23 21:54:15 UTC (rev 180514)
+++ trunk/Source/_javascript_Core/jit/CCallHelpers.h	2015-02-23 21:56:54 UTC (rev 180515)
@@ -1642,6 +1642,13 @@
         setupArgumentsWithExecState(arg1, arg2, arg3);
     }
 
+    ALWAYS_INLINE void setupArgumentsWithExecState(TrustedImm32 arg1, TrustedImmPtr arg2, TrustedImm32 arg3, GPRReg arg4, GPRReg arg5)
+    {
+        poke(arg5, POKE_ARGUMENT_OFFSET + 1);
+        poke(arg4, POKE_ARGUMENT_OFFSET);
+        setupArgumentsWithExecState(arg1, arg2, arg3);
+    }
+
     ALWAYS_INLINE void setupArgumentsWithExecState(TrustedImm32 arg1, TrustedImm32 arg2, TrustedImm32 arg3, GPRReg arg4, GPRReg arg5)
     {
         poke(arg5, POKE_ARGUMENT_OFFSET + 1);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to