Add CFI statements to ARM's assembly code.
[glibc.git] / sysdeps / unix / sysv / linux / arm / mmap.S
blobabac9e0669b6cb2c2a0ec5a88ea334768420d6f7
1 /* Copyright (C) 1998, 2000, 2003, 2005, 2009 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, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
19 #include <sysdep.h>
20 #include <kernel-features.h>
22 #define EINVAL          22
24         .text
26 ENTRY (__mmap)
27 # ifdef __ASSUME_MMAP2_SYSCALL
28         /* This code is actually a couple of cycles slower than the
29            sys_mmap version below, so it might seem like a loss.  But the
30            code path inside the kernel is sufficiently much shorter to
31            make it a net gain to use mmap2 when it's known to be
32            available.  */
34         /* shuffle args */
35         str     r5, [sp, #-4]!
36         cfi_adjust_cfa_offset (4)
37         cfi_rel_offset (r5, 0)
38         ldr     r5, [sp, #8]
39         str     r4, [sp, #-4]!
40         cfi_adjust_cfa_offset (4)
41         cfi_rel_offset (r4, 0)
42         cfi_remember_state
43         ldr     r4, [sp, #8]
45         /* convert offset to pages */
46         movs    ip, r5, lsl #20
47         bne     .Linval
48         mov     r5, r5, lsr #12
49         
50         /* do the syscall */
51         DO_CALL (mmap2, 0)
53         /* restore registers */
55         ldr     r4, [sp], #4
56         cfi_adjust_cfa_offset (-4)
57         cfi_restore (r4)
58         ldr     r5, [sp], #4
59         cfi_adjust_cfa_offset (-4)
60         cfi_restore (r5)
62         cmn     r0, $4096
63         RETINSTR(cc, lr)
64         b       PLTJMP(syscall_error)
66         cfi_restore_state
67 .Linval:
68         mov     r0, #-EINVAL
69         b       2b
70 # else
71         /* Because we can only get five args through the syscall interface, and
72            mmap() takes six, we need to build a parameter block and pass its
73            address instead.  The 386 port does a similar trick.  */
75         /* This code previously moved sp into ip and stored the args using
76            stmdb ip!, {a1-a4}.  It did not modify sp, so the stack never had
77            to be restored after the syscall completed.  It saved an
78            instruction and meant no stack cleanup work was required.
80            This will not work in the case of a mmap call being interrupted
81            by a signal.  If the signal handler uses any stack the arguments
82            to mmap will be trashed.  The results of a restart of mmap are
83            then unpredictable. */
85         /* store args on the stack */
86         stmdb   sp!, {a1-a4}
87         cfi_adjust_cfa_offset (16)
89         /* do the syscall */
90         mov     a1, sp
91         DO_CALL (mmap, 0)
93         /* pop args off the stack. */
94         add     sp, sp, #16
95         cfi_adjust_cfa_offset (-16)
97         cmn     r0, $4096
98         RETINSTR(cc, lr)
99         b       PLTJMP(syscall_error);
100 #endif
102 PSEUDO_END (__mmap)
104 weak_alias (__mmap, mmap)