]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/s390/s390-64/__longjmp.c
Replace FSF snail mail address with URLs.
[thirdparty/glibc.git] / sysdeps / s390 / s390-64 / __longjmp.c
CommitLineData
7291c56f 1/* Copyright (C) 2001, 2005, 2009, 2010 Free Software Foundation, Inc.
847b055c
AJ
2 This file is part of the GNU C Library.
3 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
847b055c
AJ
9
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
ffeac417 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
847b055c 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
847b055c
AJ
18
19#include <errno.h>
20#include <sysdep.h>
21#include <setjmp.h>
22#include <bits/setjmp.h>
23#include <stdlib.h>
24#include <unistd.h>
25
26/* Jump to the position specified by ENV, causing the
27 setjmp call there to return VAL, or 1 if VAL is 0. */
28void
29__longjmp (__jmp_buf env, int val)
30{
00c2b3b9 31#ifdef PTR_DEMANGLE
7291c56f 32 uintptr_t guard = THREAD_GET_POINTER_GUARD ();
b8bb339f 33# ifdef CHECK_SP
7291c56f 34 CHECK_SP (env, guard);
b8bb339f
UD
35# endif
36#elif defined CHECK_SP
37 CHECK_SP (env, 0);
7291c56f
AS
38#endif
39 register long int r2 __asm ("%r2") = val == 0 ? 1 : val;
40#ifdef PTR_DEMANGLE
41 register uintptr_t r3 __asm ("%r3") = guard;
42 register void *r1 __asm ("%r1") = (void *) env;
00c2b3b9
UD
43#endif
44 /* Restore registers and jump back. */
305bb37e 45 asm volatile ("ld %%f7,104(%1)\n\t"
00c2b3b9
UD
46 "ld %%f5,96(%1)\n\t"
47 "ld %%f3,88(%1)\n\t"
48 "ld %%f1,80(%1)\n\t"
00c2b3b9 49#ifdef PTR_DEMANGLE
305bb37e
UD
50 "lmg %%r6,%%r13,0(%1)\n\t"
51 "lmg %%r4,%%r5,64(%1)\n\t"
52 "xgr %%r4,%2\n\t"
53 "xgr %%r5,%2\n\t"
54 "lgr %%r15,%%r5\n\t"
55 "br %%r4"
56#else
57 "lmg %%r6,%%r15,0(%1)\n\t"
00c2b3b9 58 "br %%r14"
305bb37e
UD
59#endif
60 : : "r" (r2),
00c2b3b9 61#ifdef PTR_DEMANGLE
305bb37e
UD
62 "r" (r1), "r" (r3)
63#else
64 "a" (env)
00c2b3b9 65#endif
305bb37e 66 );
847b055c
AJ
67
68 /* Avoid `volatile function does return' warnings. */
69 for (;;);
70}