~vcs-imports/eglibc/trunk

« back to all changes in this revision

Viewing changes to libc/sysdeps/s390/s390-64/setjmp.S

  • Committer: joseph
  • Date: 2014-01-22 02:56:41 UTC
  • Revision ID: svn-v4:7b3dc134-2b1b-0410-93df-9e9f96275f8d:trunk:25088
Merge changes between r24941 and r25087 from /fsf/trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* setjmp for 64 bit S/390, ELF version.
2
 
   Copyright (C) 2001-2014 Free Software Foundation, Inc.
3
 
   Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
4
 
   This file is part of the GNU C Library.
5
 
 
6
 
   The GNU C Library is free software; you can redistribute it and/or
7
 
   modify it under the terms of the GNU Lesser General Public
8
 
   License as published by the Free Software Foundation; either
9
 
   version 2.1 of the License, or (at your option) any later version.
10
 
 
11
 
   The GNU C Library is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
   Lesser General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU Lesser General Public
17
 
   License along with the GNU C Library; if not, see
18
 
   <http://www.gnu.org/licenses/>.  */
19
 
 
20
 
#include <sysdep.h>
21
 
#define _ASM
22
 
#define _SETJMP_H
23
 
#include <bits/setjmp.h>
24
 
 
25
 
        /* We include the BSD entry points here as well but we make
26
 
           them weak.  */
27
 
ENTRY (setjmp)
28
 
        .weak C_SYMBOL_NAME (setjmp)
29
 
        lghi   %r3,1                /* Second argument of one.  */
30
 
        j      .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp.  */
31
 
END (setjmp)
32
 
 
33
 
        /* Binary compatibility entry point.  */
34
 
ENTRY(_setjmp)
35
 
        .weak  C_SYMBOL_NAME (_setjmp)
36
 
        slgr   %r3,%r3              /* Second argument of zero.  */
37
 
        j      .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp.  */
38
 
END (setjmp)
39
 
libc_hidden_def (_setjmp)
40
 
 
41
 
ENTRY(__setjmp)
42
 
        slgr   %r3,%r3              /* Second argument of zero.  */
43
 
        j      .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp.  */
44
 
END (setjmp)
45
 
 
46
 
ENTRY(__sigsetjmp)
47
 
.Linternal_sigsetjmp:
48
 
#ifdef PTR_MANGLE
49
 
        stmg   %r6,%r13,0(%r2)      /* Store registers in jmp_buf.  */
50
 
        lgr    %r4,%r14
51
 
        lgr    %r5,%r15
52
 
        PTR_MANGLE (%r4, %r1)
53
 
        PTR_MANGLE2 (%r5, %r1)
54
 
        stmg   %r4,%r5,64(%r2)
55
 
#else
56
 
        stmg   %r6,%r15,0(%r2)      /* Store registers in jmp_buf.  */
57
 
#endif
58
 
        std    %f8,80(%r2)
59
 
        std    %f9,88(%r2)
60
 
        std    %f10,96(%r2)
61
 
        std    %f11,104(%r2)
62
 
        std    %f12,112(%r2)
63
 
        std    %f13,120(%r2)
64
 
        std    %f14,128(%r2)
65
 
        std    %f15,136(%r2)
66
 
#if defined NOT_IN_libc && defined IS_IN_rtld
67
 
        /* In ld.so we never save the signal mask.  */
68
 
        lghi   %r2,0
69
 
        br     %r14
70
 
#elif defined PIC
71
 
        jg     __sigjmp_save@PLT    /* Branch to PLT of __sigsetjmp.  */
72
 
#else
73
 
        jg     __sigjmp_save
74
 
#endif
75
 
END (__sigsetjmp)