Title: [191389] trunk/Source/_javascript_Core
Revision
191389
Author
commit-qu...@webkit.org
Date
2015-10-21 10:08:17 -0700 (Wed, 21 Oct 2015)

Log Message

llint: align stack pointer on mips too

[MIPS] LLInt: align stack pointer on MIPS too
https://bugs.webkit.org/show_bug.cgi?id=150380

Patch by Guillaume Emont <guijem...@igalia.com> on 2015-10-21
Reviewed by Michael Saboff.

* llint/LowLevelInterpreter32_64.asm:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (191388 => 191389)


--- trunk/Source/_javascript_Core/ChangeLog	2015-10-21 17:00:18 UTC (rev 191388)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-10-21 17:08:17 UTC (rev 191389)
@@ -1,3 +1,14 @@
+2015-10-21  Guillaume Emont  <guijem...@igalia.com>
+
+        llint: align stack pointer on mips too
+
+        [MIPS] LLInt: align stack pointer on MIPS too
+        https://bugs.webkit.org/show_bug.cgi?id=150380
+
+        Reviewed by Michael Saboff.
+
+        * llint/LowLevelInterpreter32_64.asm:
+
 2015-10-20  Mark Lam  <mark....@apple.com>
 
         YarrPatternConstructor::containsCapturingTerms() should not assume that its terms.size() is greater than 0.

Modified: trunk/Source/_javascript_Core/llint/LowLevelInterpreter32_64.asm (191388 => 191389)


--- trunk/Source/_javascript_Core/llint/LowLevelInterpreter32_64.asm	2015-10-21 17:00:18 UTC (rev 191388)
+++ trunk/Source/_javascript_Core/llint/LowLevelInterpreter32_64.asm	2015-10-21 17:08:17 UTC (rev 191389)
@@ -129,7 +129,7 @@
     storep t4, VMEntryRecord::m_prevTopVMEntryFrame[sp]
 
     # Align stack pointer
-    if X86_WIN
+    if X86_WIN or MIPS
         addp CallFrameAlignSlots * SlotSize, sp, t3
         andp ~StackAlignmentMask, t3
         subp t3, CallFrameAlignSlots * SlotSize, sp
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to