Update copyright notices with scripts/update-copyrights
[glibc.git] / ports / sysdeps / unix / sysv / linux / arm / libc-do-syscall.S
blobd42a94a560ee4de8da256863bea95422e65f2620
1 /* Copyright (C) 2010-2014 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
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.
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.
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/>.  */
18 #include <sysdep.h>
20 /* Out-of-line syscall stub.  We expect the system call number in ip
21    and return the raw result in r0.  No registers are clobbered.
22    We could avoid using the stack for this, but the goal is accurate
23    unwind information - and while there is a reserved prefix in the
24    ARM unwind tables for register to register moves, the actual opcodes
25    are not defined.  */
27 #if defined(__thumb__)
28         .thumb
29         .syntax unified
30         .hidden __libc_do_syscall
32 #undef CALL_MCOUNT
33 #define CALL_MCOUNT
35 ENTRY (__libc_do_syscall)
36         .fnstart
37         push    {r7, lr}
38         .save   {r7, lr}
39         cfi_adjust_cfa_offset (8)
40         cfi_rel_offset (r7, 0)
41         cfi_rel_offset (lr, 4)
42         mov     r7, ip
43         swi     0x0
44         pop     {r7, pc}
45         .fnend
46 END (__libc_do_syscall)
48 #endif /* __thumb__ */