2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / s390 / s390-32 / syscall.S
blobb7e173689126df285c212ee2207b7b95b62f64b0
1 /* Copyright (C) 2000, 2001, 2006 Free Software Foundation, Inc.
2    Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
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 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 <sysdep.h>
22 /* Please consult the file sysdeps/unix/sysv/linux/s390/sysdep.h for
23    more information about the value -4095 used below.*/
25 ENTRY (syscall)
26         /* Save registers and setup stack.  */
27         stm     %r6,%r15,24(%r15)  /* save registers */
28         cfi_offset (%r15, -36)
29         cfi_offset (%r14, -40)
30         cfi_offset (%r13, -44)
31         cfi_offset (%r12, -48)
32         cfi_offset (%r11, -52)
33         cfi_offset (%r10, -56)
34         cfi_offset (%r9, -60)
35         cfi_offset (%r8, -64)
36         cfi_offset (%r7, -68)
37         cfi_offset (%r6, -72)
38         lr      %r1,%r15
39         l       %r0,4(0,%r15)      /* load eos */
40         ahi     %r15,-96           /* buy stack space */
41         cfi_adjust_cfa_offset (96)
42         st      %r1,0(0,%r15)      /* store back chain */
43         st      %r0,4(0,%r15)      /* store eos */
45         lr     %r1,%r2             /* move syscall number */
46         lr     %r2,%r3             /* first parameter  */
47         lr     %r3,%r4             /* second parameter */
48         lr     %r4,%r5             /* third parameter  */
49         lr     %r5,%r6             /* fourth parameter */
50         l      %r6,192(%r15)       /* fifth parameter  */
51         l      %r7,196(%r15)       /* sixth parameter  */
53         basr   %r8,0
54 0:      cl     %r1,4f-0b(%r8)      /* svc number < 256? */
55         jl     2f
56 1:      svc    0
57         j      3f
58 2:      ex     %r1,1b-0b(%r8)      /* lsb of R1 is subsituted as SVC number */
59 3:      l      %r15,0(%r15)        /* load back chain */
60         cfi_adjust_cfa_offset (-96)
61         lm     %r6,15,24(%r15)     /* load registers */
63         lhi    %r0,-4095
64         clr    %r2,%r0             /* check R2 for error */
65         jnl    SYSCALL_ERROR_LABEL
66         br     %r14                /* return to caller */
67 4:      .long  256
68 PSEUDO_END (syscall)