Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / sparc / sparc64 / ____longjmp_chk.S
blob5885d84770c6835ab35ff784991e7c858e843b5a
1 /* Copyright (C) 2009-2014 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, see
16    <http://www.gnu.org/licenses/>.  */
18 /* longjmp is implemented in terms of the setcontext trap on Linux/Sparc64.  */
20 #include <sysdep.h>
22 /* Offsets into the jmp_buf structure.  */
24 #define O_mask_was_saved        512
25 #define O_gregs                 32
26 #define O_g1                    (O_gregs + 4*8)
27 #define O_sp                    (O_gregs + 17*8)
29 .section .rodata.str1.1,"aMS",@progbits,1
30         .type   longjmp_msg,@object
31 longjmp_msg:
32         .string "longjmp causes uninitialized stack frame"
33         .size   longjmp_msg, .-longjmp_msg
35         .text
36 ENTRY (____longjmp_chk)
37         ldx     [%o0 + O_sp], %o2
38         cmp     %sp, %o2
39         bleu,pt %xcc, .Lok
40          nop
42         save    %sp, -208, %sp
43         cfi_remember_state
44         cfi_def_cfa_register(%fp)
45         cfi_window_save
46         cfi_register(%o7, %i7)
47         add     %fp, 2023, %o1
48         clr     %o0
49         LOADSYSCALL(sigaltstack)
50         ta      0x6d
51         bcs,pn  %xcc, .Lok2
52          lduw   [%fp + 2031], %l2
53         andcc   %l2, 0x1, %g0
54         be,pn   %xcc, .Lfail
55          ldx    [%fp + 2023], %l0
56         ldx     [%fp + 2039], %l1
57         sub     %l0, STACK_BIAS, %l0
58         add     %l0, %l1, %l0
59         sub     %l0, %i2, %l0
60         cmp     %l0, %l1
61         bgeu,pt %xcc, .Lok2
62          nop
64 .Lfail:
65 #ifndef PIC
66         sethi   %hi(longjmp_msg), %o0
67         or      %o0, %lo(longjmp_msg), %o0
68 #else
69         SETUP_PIC_REG(l7)
70         sethi   %gdop_hix22(longjmp_msg), %o0
71         xor     %o0, %gdop_lox10(longjmp_msg), %o0
72         ldx     [%l7 + %o0], %o0, %gdop(longjmp_msg)
73 #endif
74         call    HIDDEN_JUMPTARGET(__fortify_fail)
75          nop
77 .Lok2:  restore
78         cfi_restore_state
80 .Lok:
81         /* Modify the context with the value we want to return.  */
82         movre   %o1, 1, %o1
83         stx     %o1, [%o0 + O_g1]
85         /* Let setcontext know if we want to modify the current sigmask. */
86         ld      [%o0 + O_mask_was_saved], %o1
88         /* And bamf back to where we belong!  */
89         ta      0x6f
90 END(____longjmp_chk)