2 Copyright (C) 1997, 1998, 2005, 2006, 2008 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 General Public License
16 along with GCC; see the file COPYING. If not, write to the Free
17 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
23 #include <bits/setjmp.h>
24 #include <rtld-global-offsets.h>
30 stmia ip!, {v1-v6, sl, fp, sp, lr}
32 /* Check if we have a VFP unit. */
35 ldr a4, Lrtld_local_ro
38 ldr a3, [a3, #RTLD_GLOBAL_RO_DL_HWCAP_OFFSET]
42 ldr a4, Lrtld_global_ro
45 ldr a3, [a3, #RTLD_GLOBAL_RO_DL_HWCAP_OFFSET]
52 tst a3, #HWCAP_ARM_VFP
55 /* Store the VFP registers. */
56 /* Following instruction is fstmiax ip!, {d8-d15}. */
57 stc p11, cr8, [r12], #68
58 /* Store the floating-point status register. */
59 /* Following instruction is fmrx r2, fpscr. */
60 mrc p10, 7, r2, cr1, cr0, 0
64 tst a3, #HWCAP_ARM_IWMMXT
67 /* Save the call-preserved iWMMXt registers. */
68 /* Following instructions are wstrd wr10, [ip], #8 (etc.) */
69 stcl p1, cr10, [r12], #8
70 stcl p1, cr11, [r12], #8
71 stcl p1, cr12, [r12], #8
72 stcl p1, cr13, [r12], #8
73 stcl p1, cr14, [r12], #8
74 stcl p1, cr15, [r12], #8
77 /* Make a tail call to __sigjmp_save; it takes the same args. */
78 B PLTJMP(C_SYMBOL_NAME(__sigjmp_save))
81 1: .long _GLOBAL_OFFSET_TABLE_ - 0b - 8
83 .long C_SYMBOL_NAME(_rtld_local_ro)(GOTOFF)
86 1: .long _GLOBAL_OFFSET_TABLE_ - 0b - 8
88 .long C_SYMBOL_NAME(_rtld_global_ro)(GOT)
91 .long C_SYMBOL_NAME(_dl_hwcap)
97 hidden_def (__sigsetjmp)