2 Copyright (C) 1997-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
20 #include <stap-probe.h>
21 #include <bits/setjmp.h>
22 #include <rtld-global-offsets.h>
23 #include <arm-features.h>
25 /* __longjmp(jmpbuf, val) */
31 ldr r4, [ip] /* jmpbuf's sp */
34 PTR_DEMANGLE (r4, r4, a3, a4)
41 PTR_DEMANGLE (a4, a4, a3, r4)
44 PTR_DEMANGLE2 (r4, r4, a3)
50 /* longjmp probe expects longjmp first argument (4@r0), second
51 argument (-4@r1), and target address (4@r4), respectively. */
52 LIBC_PROBE (longjmp, 3, 4@r0, -4@r1, 4@r4)
55 ldmia ip!, JMP_BUF_REGLIST
67 #if !defined ARM_ASSUME_NO_IWMMXT || defined __SOFTFP__
73 LDST_PCREL (ldr, a4, a3, \
74 C_SYMBOL_NAME(_rtld_local_ro) \
75 + RTLD_GLOBAL_RO_DL_HWCAP_OFFSET)
78 LDR_GLOBAL (a4, a3, C_SYMBOL_NAME(_rtld_global_ro), \
79 RTLD_GLOBAL_RO_DL_HWCAP_OFFSET)
81 LDR_GLOBAL (a4, a3, C_SYMBOL_NAME(_dl_hwcap), 0)
87 tst a4, #HWCAP_ARM_VFP
91 /* Restore the VFP registers. */
92 /* Following instruction is vldmia ip!, {d8-d15}. */
93 ldc p11, cr8, [r12], #64
96 #ifndef ARM_ASSUME_NO_IWMMXT
97 tst a4, #HWCAP_ARM_IWMMXT
100 /* Restore the call-preserved iWMMXt registers. */
101 /* Following instructions are wldrd wr10, [ip], #8 (etc.) */
102 ldcl p1, cr10, [r12], #8
103 ldcl p1, cr11, [r12], #8
104 ldcl p1, cr12, [r12], #8
105 ldcl p1, cr13, [r12], #8
106 ldcl p1, cr14, [r12], #8
107 ldcl p1, cr15, [r12], #8
111 /* longjmp_target probe expects longjmp first argument (4@r0), second
112 argument (-4@r1), and target address (4@r14), respectively. */
113 LIBC_PROBE (longjmp_target, 3, 4@r0, -4@r1, 4@r14)
115 movs r0, r1 /* get the return value in place */
117 moveq r0, #1 /* can't let setjmp() return zero! */