RESOLVED FIXED Bug 149619
[ARM] REGRESSION(r190289): It made 374 tests crash on 32 bit ARM Linux
https://bugs.webkit.org/show_bug.cgi?id=149619
Summary [ARM] REGRESSION(r190289): It made 374 tests crash on 32 bit ARM Linux
Csaba Osztrogonác
Reported 2015-09-29 02:29:48 PDT
Attachments
Patch (1.41 KB, patch)
2015-09-30 14:34 PDT, Michael Saboff
fpizlo: review+
Alexey Proskuryakov
Comment 1 2015-09-29 14:41:54 PDT
Should this be duped to bug 149647 now (the rollout bug)?
Michael Saboff
Comment 2 2015-09-30 14:16:47 PDT
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.
Michael Saboff
Comment 3 2015-09-30 14:34:15 PDT
Michael Saboff
Comment 4 2015-09-30 15:30:05 PDT
Landed as part of change set r190370: <http://trac.webkit.org/changeset/190370>.
Note You need to log in before you can comment on or make changes to this bug.