2005-10-10 17:29:32 +02:00
|
|
|
/* longjmp for ARM.
|
2014-01-01 12:03:15 +01:00
|
|
|
Copyright (C) 1997-2014 Free Software Foundation, Inc.
|
2005-10-10 17:29:32 +02:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
2011-03-21 16:40:37 +01:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-10 00:56:38 +01:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2005-10-10 17:29:32 +02:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
2014-01-27 10:01:03 +01:00
|
|
|
#include <stap-probe.h>
|
2005-10-10 17:29:32 +02:00
|
|
|
#include <bits/setjmp.h>
|
|
|
|
#include <rtld-global-offsets.h>
|
2012-08-10 01:17:14 +02:00
|
|
|
#include <arm-features.h>
|
2005-10-10 17:29:32 +02:00
|
|
|
|
|
|
|
/* __longjmp(jmpbuf, val) */
|
|
|
|
|
|
|
|
ENTRY (__longjmp)
|
|
|
|
mov ip, r0
|
|
|
|
|
2009-05-17 00:20:23 +02:00
|
|
|
#ifdef CHECK_SP
|
2013-03-15 17:31:56 +01:00
|
|
|
sfi_breg ip, \
|
2014-01-27 10:01:03 +01:00
|
|
|
ldr r4, [\B] /* jmpbuf's sp */
|
2010-03-26 19:12:56 +01:00
|
|
|
cfi_undefined (r4)
|
2013-08-07 14:55:30 +02:00
|
|
|
#ifdef PTR_DEMANGLE
|
|
|
|
PTR_DEMANGLE (r4, r4, a3, a4)
|
|
|
|
#endif
|
2009-08-06 18:53:09 +02:00
|
|
|
CHECK_SP (r4)
|
2009-05-17 00:20:23 +02:00
|
|
|
#endif
|
2014-01-27 10:01:03 +01:00
|
|
|
|
2013-08-07 14:55:30 +02:00
|
|
|
#ifdef PTR_DEMANGLE
|
2014-03-11 18:59:01 +01:00
|
|
|
sfi_breg ip, \
|
|
|
|
ldr a4, [\B], #4
|
2014-01-27 10:01:03 +01:00
|
|
|
PTR_DEMANGLE (a4, a4, a3, r4)
|
|
|
|
cfi_undefined (r4)
|
2014-03-11 18:59:01 +01:00
|
|
|
sfi_breg ip, \
|
|
|
|
ldr r4, [\B], #4
|
2014-01-27 10:01:03 +01:00
|
|
|
PTR_DEMANGLE2 (r4, r4, a3)
|
2013-08-07 14:55:30 +02:00
|
|
|
#else
|
2014-03-11 18:59:01 +01:00
|
|
|
sfi_breg ip, \
|
|
|
|
ldr a4, [\B], #4
|
|
|
|
sfi_breg ip, \
|
|
|
|
ldr r4, [\B], #4
|
2014-01-27 10:01:03 +01:00
|
|
|
cfi_undefined (r4)
|
2013-08-07 14:55:30 +02:00
|
|
|
#endif
|
2014-01-27 10:01:03 +01:00
|
|
|
/* longjmp probe expects longjmp first argument (4@r0), second
|
|
|
|
argument (-4@r1), and target address (4@r4), respectively. */
|
|
|
|
LIBC_PROBE (longjmp, 3, 4@r0, -4@r1, 4@r4)
|
2014-03-11 18:59:01 +01:00
|
|
|
sfi_sp \
|
2014-01-27 10:01:03 +01:00
|
|
|
mov sp, a4
|
|
|
|
mov lr, r4
|
2014-03-11 18:59:01 +01:00
|
|
|
sfi_breg ip, \
|
2014-01-27 10:01:03 +01:00
|
|
|
ldmia \B!, JMP_BUF_REGLIST
|
2010-03-26 19:12:56 +01:00
|
|
|
cfi_restore (v1)
|
|
|
|
cfi_restore (v2)
|
|
|
|
cfi_restore (v3)
|
|
|
|
cfi_restore (v4)
|
|
|
|
cfi_restore (v5)
|
|
|
|
cfi_restore (v6)
|
|
|
|
cfi_restore (sl)
|
|
|
|
cfi_restore (fp)
|
|
|
|
cfi_restore (sp)
|
|
|
|
cfi_restore (lr)
|
2005-10-10 17:29:32 +02:00
|
|
|
|
2012-08-10 01:17:14 +02:00
|
|
|
#if !defined ARM_ASSUME_NO_IWMMXT || defined __SOFTFP__
|
|
|
|
# define NEED_HWCAP 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NEED_HWCAP
|
|
|
|
# ifdef IS_IN_rtld
|
2014-01-27 10:01:03 +01:00
|
|
|
ldr a4, 1f
|
2012-08-09 20:51:05 +02:00
|
|
|
ldr a3, .Lrtld_local_ro
|
2014-01-27 10:01:03 +01:00
|
|
|
0: add a4, pc, a4
|
|
|
|
add a4, a4, a3
|
|
|
|
ldr a4, [a4, #RTLD_GLOBAL_RO_DL_HWCAP_OFFSET]
|
2012-08-10 01:17:14 +02:00
|
|
|
# else
|
|
|
|
# ifdef PIC
|
2014-01-27 10:01:03 +01:00
|
|
|
ldr a4, 1f
|
2012-08-09 20:51:05 +02:00
|
|
|
ldr a3, .Lrtld_global_ro
|
2014-01-27 10:01:03 +01:00
|
|
|
0: add a4, pc, a4
|
|
|
|
ldr a4, [a4, a3]
|
|
|
|
ldr a4, [a4, #RTLD_GLOBAL_RO_DL_HWCAP_OFFSET]
|
2012-08-10 01:17:14 +02:00
|
|
|
# else
|
2014-01-27 10:01:03 +01:00
|
|
|
ldr a4, .Lhwcap
|
|
|
|
ldr a4, [a4, #0]
|
2012-08-10 01:17:14 +02:00
|
|
|
# endif
|
|
|
|
# endif
|
2005-10-10 17:29:32 +02:00
|
|
|
#endif
|
|
|
|
|
2012-08-09 20:51:05 +02:00
|
|
|
#ifdef __SOFTFP__
|
2014-01-27 10:01:03 +01:00
|
|
|
tst a4, #HWCAP_ARM_VFP
|
2012-08-09 20:51:05 +02:00
|
|
|
beq .Lno_vfp
|
|
|
|
#endif
|
2005-10-10 17:29:32 +02:00
|
|
|
|
|
|
|
/* Restore the VFP registers. */
|
2009-10-22 21:35:53 +02:00
|
|
|
/* Following instruction is vldmia ip!, {d8-d15}. */
|
2013-03-15 17:31:56 +01:00
|
|
|
sfi_breg r12, \
|
|
|
|
ldc p11, cr8, [\B], #64
|
2012-08-09 20:51:05 +02:00
|
|
|
.Lno_vfp:
|
2005-10-10 17:29:32 +02:00
|
|
|
|
2012-08-10 01:17:14 +02:00
|
|
|
#ifndef ARM_ASSUME_NO_IWMMXT
|
2014-01-27 10:01:03 +01:00
|
|
|
tst a4, #HWCAP_ARM_IWMMXT
|
2012-08-09 20:51:05 +02:00
|
|
|
beq .Lno_iwmmxt
|
2006-09-21 20:39:51 +02:00
|
|
|
|
|
|
|
/* Restore the call-preserved iWMMXt registers. */
|
|
|
|
/* Following instructions are wldrd wr10, [ip], #8 (etc.) */
|
2013-03-15 17:31:56 +01:00
|
|
|
sfi_breg r12, \
|
|
|
|
ldcl p1, cr10, [\B], #8
|
|
|
|
sfi_breg r12, \
|
|
|
|
ldcl p1, cr11, [\B], #8
|
|
|
|
sfi_breg r12, \
|
|
|
|
ldcl p1, cr12, [\B], #8
|
|
|
|
sfi_breg r12, \
|
|
|
|
ldcl p1, cr13, [\B], #8
|
|
|
|
sfi_breg r12, \
|
|
|
|
ldcl p1, cr14, [\B], #8
|
|
|
|
sfi_breg r12, \
|
|
|
|
ldcl p1, cr15, [\B], #8
|
2012-08-09 20:51:05 +02:00
|
|
|
.Lno_iwmmxt:
|
2012-08-10 01:17:14 +02:00
|
|
|
#endif
|
2006-09-21 20:39:51 +02:00
|
|
|
|
2014-01-27 10:01:03 +01:00
|
|
|
/* longjmp_target probe expects longjmp first argument (4@r0), second
|
|
|
|
argument (-4@r1), and target address (4@r14), respectively. */
|
|
|
|
LIBC_PROBE (longjmp_target, 3, 4@r0, -4@r1, 4@r14)
|
|
|
|
|
|
|
|
movs r0, r1 /* get the return value in place */
|
|
|
|
it eq
|
|
|
|
moveq r0, #1 /* can't let setjmp() return zero! */
|
|
|
|
|
2005-10-10 17:29:32 +02:00
|
|
|
DO_RET(lr)
|
|
|
|
|
2012-08-10 01:17:14 +02:00
|
|
|
#ifdef NEED_HWCAP
|
|
|
|
# ifdef IS_IN_rtld
|
2013-02-13 02:15:52 +01:00
|
|
|
1: .long _GLOBAL_OFFSET_TABLE_ - 0b - PC_OFS
|
2012-08-09 20:51:05 +02:00
|
|
|
.Lrtld_local_ro:
|
2005-10-10 17:29:32 +02:00
|
|
|
.long C_SYMBOL_NAME(_rtld_local_ro)(GOTOFF)
|
2012-08-10 01:17:14 +02:00
|
|
|
# else
|
|
|
|
# ifdef PIC
|
2013-02-13 02:15:52 +01:00
|
|
|
1: .long _GLOBAL_OFFSET_TABLE_ - 0b - PC_OFS
|
2012-08-09 20:51:05 +02:00
|
|
|
.Lrtld_global_ro:
|
2005-10-10 17:29:32 +02:00
|
|
|
.long C_SYMBOL_NAME(_rtld_global_ro)(GOT)
|
2012-08-10 01:17:14 +02:00
|
|
|
# else
|
2012-08-09 20:51:05 +02:00
|
|
|
.Lhwcap:
|
2005-10-10 17:29:32 +02:00
|
|
|
.long C_SYMBOL_NAME(_dl_hwcap)
|
2012-08-10 01:17:14 +02:00
|
|
|
# endif
|
|
|
|
# endif
|
2005-10-10 17:29:32 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
END (__longjmp)
|