]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
Remove trailing whitespace.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / s390 / s390-64 / syscall.S
1 /* Copyright (C) 2001-2013 Free Software Foundation, Inc.
2 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
3 This file is part of the GNU C Library.
4
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.
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
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #include <sysdep.h>
20
21 /* Please consult the file sysdeps/unix/sysv/linux/s390/sysdep.h for
22 more information about the value -4095 used below.*/
23
24 ENTRY (syscall)
25 /* Save registers and setup stack. */
26 stmg %r6,%r15,48(%r15) /* Save registers. */
27 cfi_offset (%r15,-40)
28 cfi_offset (%r14,-48)
29 cfi_offset (%r13,-56)
30 cfi_offset (%r12,-64)
31 cfi_offset (%r11,-72)
32 cfi_offset (%r10,-80)
33 cfi_offset (%r9,-88)
34 cfi_offset (%r8,-96)
35 cfi_offset (%r7,-104)
36 cfi_offset (%r6,-112)
37 lgr %r1,%r15
38 lg %r0,8(%r15) /* Load eos. */
39 aghi %r15,-160 /* Buy stack space. */
40 cfi_adjust_cfa_offset (160)
41 stg %r1,0(%r15) /* Store back chain. */
42 stg %r0,8(%r15) /* Store eos. */
43
44 lgr %r1,%r2 /* Move syscall number. */
45 lgr %r2,%r3 /* First parameter. */
46 lgr %r3,%r4 /* Second parameter. */
47 lgr %r4,%r5 /* Third parameter. */
48 lgr %r5,%r6 /* Fourth parameter. */
49 lg %r6,320(%r15) /* Fifth parameter. */
50 lg %r7,328(%r15) /* Sixth parameter. */
51
52 basr %r8,0
53 0: clg %r1,4f-0b(%r8) /* svc number < 256? */
54 jl 2f
55 1: svc 0
56 j 3f
57 2: ex %r1,1b-0b(%r8) /* lsb of R1 is subsituted as SVC number */
58 3: lg %r15,0(%r15) /* load back chain */
59 cfi_adjust_cfa_offset (-160)
60 lmg %r6,15,48(%r15) /* Load registers. */
61
62 lghi %r0,-4095
63 clgr %r2,%r0 /* Check R2 for error. */
64 jgnl SYSCALL_ERROR_LABEL
65 br %r14 /* Return to caller. */
66 4: .quad 256
67 PSEUDO_END (syscall)
68