OSDN Git Service

0e1a5d0be41b89827e1028e83b29c1282e8e5f95
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / xtensa / syscall.S
1 /* Copyright (C) 2005, 2007 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, see
16    <http://www.gnu.org/licenses/>.  */
17
18 #include "sysdep.h"
19
20 /* The register layout upon entering the function is:
21
22    arguments    syscall number  arg0, arg1, arg2, arg3, arg4, arg5
23    ---------    --------------  ----------------------------------
24    function     a2              a3,   a4,   a5,   a6,   a7,   (sp)
25    syscall      a2              a6,   a3,   a4,   a5,   a8,   a9
26  */
27
28 ENTRY (syscall)
29         l32i    a9, a1, 16      /* load extra argument from stack */
30         mov     a8, a7
31         mov     a7, a3          /* preserve a3 in a7 */
32         mov     a3, a4
33         mov     a4, a5
34         mov     a5, a6
35         mov     a6, a7
36         syscall
37         movi    a4, -4095
38         bgeu    a2, a4, SYSCALL_ERROR_LABEL
39 .Lpseudo_end:
40         retw
41 PSEUDO_END (syscall)