2 Copyright (C) 1997-2014 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>
27 PTR_MANGLE_LOAD (a3, ip)
31 /* setjmp probe expects sigsetjmp first argument (4@r0), second
32 argument (-4@r1), and target address (4@r14), respectively. */
33 LIBC_PROBE (setjmp, 3, 4@r0, -4@r1, 4@r14)
38 PTR_MANGLE2 (a4, a4, a3)
41 PTR_MANGLE2 (a4, lr, a3)
52 stmia \B!, JMP_BUF_REGLIST
54 #if !defined ARM_ASSUME_NO_IWMMXT || defined __SOFTFP__
59 /* Check if we have a VFP unit. */
61 LDST_PCREL (ldr, a3, a4, \
62 C_SYMBOL_NAME(_rtld_local_ro) \
63 + RTLD_GLOBAL_RO_DL_HWCAP_OFFSET)
66 LDR_GLOBAL (a3, a4, C_SYMBOL_NAME(_rtld_global_ro), \
67 RTLD_GLOBAL_RO_DL_HWCAP_OFFSET)
69 LDR_GLOBAL (a3, a4, C_SYMBOL_NAME(_dl_hwcap), 0)
75 tst a3, #HWCAP_ARM_VFP
79 /* Store the VFP registers.
80 Don't use VFP instructions directly because this code
81 is used in non-VFP multilibs. */
82 /* Following instruction is vstmia ip!, {d8-d15}. */
84 stc p11, cr8, [\B], #64
87 #ifndef ARM_ASSUME_NO_IWMMXT
88 tst a3, #HWCAP_ARM_IWMMXT
91 /* Save the call-preserved iWMMXt registers. */
92 /* Following instructions are wstrd wr10, [ip], #8 (etc.) */
94 stcl p1, cr10, [\B], #8
96 stcl p1, cr11, [\B], #8
98 stcl p1, cr12, [\B], #8
100 stcl p1, cr13, [\B], #8
102 stcl p1, cr14, [\B], #8
104 stcl p1, cr15, [\B], #8
108 /* Make a tail call to __sigjmp_save; it takes the same args. */
109 B PLTJMP(C_SYMBOL_NAME(__sigjmp_save))
113 hidden_def (__sigsetjmp)