(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / s390 / s390-64 / __longjmp.c
blob80abd3849a10f5142669d16e2f5e295eeba097a0
1 /* Copyright (C) 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <sysdep.h>
22 #include <setjmp.h>
23 #include <bits/setjmp.h>
24 #include <stdlib.h>
25 #include <unistd.h>
27 /* Jump to the position specified by ENV, causing the
28 setjmp call there to return VAL, or 1 if VAL is 0. */
29 void
30 __longjmp (__jmp_buf env, int val)
32 /* Restore registers and jump back. */
33 asm volatile ("lgr %%r2,%0\n\t" /* Put val in grp 2. */
34 "ld %%f7,104(%1)\n\t"
35 "ld %%f5,96(%1)\n\t"
36 "ld %%f3,88(%1)\n\t"
37 "ld %%f1,80(%1)\n\t"
38 "lmg %%r6,%%r15,0(%1)\n\t"
39 "br %%r14"
40 : : "r" (val == 0 ? 1 : val),
41 "a" (env) : "2" );
43 /* Avoid `volatile function does return' warnings. */
44 for (;;);