Changeset 159935 in webkit


Ignore:
Timestamp:
Dec 2, 2013 8:41:33 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[MIPS] Small stack frame causes regressions.
https://bugs.webkit.org/show_bug.cgi?id=124945

Patch by Balazs Kilvady <kilvadyb@homejinni.com> on 2013-12-02
Reviewed by Michael Saboff.

Fix stack space for LLInt on MIPS.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r159934 r159935  
     12013-12-02  Balazs Kilvady  <kilvadyb@homejinni.com>
     2
     3        [MIPS] Small stack frame causes regressions.
     4        https://bugs.webkit.org/show_bug.cgi?id=124945
     5
     6        Reviewed by Michael Saboff.
     7
     8        Fix stack space for LLInt on MIPS.
     9
     10        * llint/LowLevelInterpreter32_64.asm:
     11
    1122013-12-02  Brian J. Burg  <burg@cs.washington.edu>
    213
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm

    r159834 r159935  
    191191        const newCallFrame = a1
    192192    elsif MIPS
    193         const extraStackSpace = 20
    194         const previousCFR = t2 
     193        const extraStackSpace = 36
     194        const previousCFR = t2
    195195        const previousPC = lr
    196196        const entry = a0
Note: See TracChangeset for help on using the changeset viewer.