[Webkit-unassigned] [Bug 149619] [ARM] REGRESSION(r190289): It made 374 tests crash on 32 bit ARM Linux

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 30 14:16:47 PDT 2015


https://bugs.webkit.org/show_bug.cgi?id=149619

Michael Saboff <msaboff at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |msaboff at apple.com
           Assignee|webkit-unassigned at lists.web |msaboff at apple.com
                   |kit.org                     |

--- Comment #2 from Michael Saboff <msaboff at apple.com> ---
I think I found the issue.  In LowLevelAssembler.asm, the macro prepareForTailCall had the following construct:

    if ARM or SH4 or ARM64 or C_LOOP or MIPS
        addp 2 * PtrSize, sp
        subi 2 * PtrSize, temp2
        loadp PtrSize[cfr], lr
    else
        addp PtrSize, sp
        subi PtrSize, temp2
        loadp PtrSize[cfr], temp3
        storep temp3, [sp]
    end

The "if ARM or SH4 ..." case accounts for having a link register.  The problem is that this if should also take into account the other ARM variants.  It should read:
    if ARM or ARMv7_TRADITIONAL or ARMv7 or SH4 or ARM64 or C_LOOP or MIPS

Running all JSC regression tests now.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150930/ea79f86c/attachment-0001.html>


More information about the webkit-unassigned mailing list