Changeset 191389 in webkit


Ignore:
Timestamp:
Oct 21, 2015 10:08:17 AM (9 years ago)
Author:
commit-queue@webkit.org
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 <guijemont@igalia.com> on 2015-10-21
Reviewed by Michael Saboff.

  • llint/LowLevelInterpreter32_64.asm:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r191364 r191389  
     12015-10-21  Guillaume Emont  <guijemont@igalia.com>
     2
     3        llint: align stack pointer on mips too
     4
     5        [MIPS] LLInt: align stack pointer on MIPS too
     6        https://bugs.webkit.org/show_bug.cgi?id=150380
     7
     8        Reviewed by Michael Saboff.
     9
     10        * llint/LowLevelInterpreter32_64.asm:
     11
    1122015-10-20  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm

    r190916 r191389  
    130130
    131131    # Align stack pointer
    132     if X86_WIN
     132    if X86_WIN or MIPS
    133133        addp CallFrameAlignSlots * SlotSize, sp, t3
    134134        andp ~StackAlignmentMask, t3
Note: See TracChangeset for help on using the changeset viewer.