2010-03-26 18:12:56 +00:00
|
|
|
/* Copyright (C) 1998, 2000, 2003, 2005, 2009 Free Software Foundation, Inc.
|
1998-04-30 16:57:14 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1998-04-30 16:57:14 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1998-04-30 16:57:14 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1998-04-30 16:57:14 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
2003-09-14 19:54:40 +00:00
|
|
|
#include <kernel-features.h>
|
|
|
|
|
|
|
|
#define EINVAL 22
|
1998-04-30 16:57:14 +00:00
|
|
|
|
|
|
|
.text
|
|
|
|
|
|
|
|
ENTRY (__mmap)
|
2003-09-14 19:54:40 +00:00
|
|
|
# ifdef __ASSUME_MMAP2_SYSCALL
|
|
|
|
/* This code is actually a couple of cycles slower than the
|
|
|
|
sys_mmap version below, so it might seem like a loss. But the
|
|
|
|
code path inside the kernel is sufficiently much shorter to
|
|
|
|
make it a net gain to use mmap2 when it's known to be
|
|
|
|
available. */
|
|
|
|
|
|
|
|
/* shuffle args */
|
|
|
|
str r5, [sp, #-4]!
|
2010-03-26 18:12:56 +00:00
|
|
|
cfi_adjust_cfa_offset (4)
|
|
|
|
cfi_rel_offset (r5, 0)
|
2003-09-14 19:54:40 +00:00
|
|
|
ldr r5, [sp, #8]
|
|
|
|
str r4, [sp, #-4]!
|
2010-03-26 18:12:56 +00:00
|
|
|
cfi_adjust_cfa_offset (4)
|
|
|
|
cfi_rel_offset (r4, 0)
|
|
|
|
cfi_remember_state
|
2003-09-14 19:54:40 +00:00
|
|
|
ldr r4, [sp, #8]
|
|
|
|
|
|
|
|
/* convert offset to pages */
|
|
|
|
movs ip, r5, lsl #20
|
|
|
|
bne .Linval
|
|
|
|
mov r5, r5, lsr #12
|
|
|
|
|
|
|
|
/* do the syscall */
|
* sysdeps/arm/dl-machine.h (CLEAR_CACHE): Use INTERNAL_SYSCALL_ARM.
* sysdeps/unix/sysv/linux/arm/brk.c (__brk): Use INLINE_SYSCALL.
* sysdeps/unix/sysv/linux/arm/clone.S (__clone): Use DO_CALL.
* sysdeps/unix/sysv/linux/arm/eabi/configure.in: Bump
arch_minimum_kernel.
* sysdeps/unix/sysv/linux/arm/eabi/configure: Regenerated.
* sysdeps/unix/sysv/linux/arm/eabi/epoll_ctl.c,
sysdeps/unix/sysv/linux/arm/eabi/epoll_wait.c,
sysdeps/unix/sysv/linux/arm/eabi/fcntl.c,
sysdeps/unix/sysv/linux/arm/eabi/fstatfs64.c,
sysdeps/unix/sysv/linux/arm/eabi/ftruncate64.c,
sysdeps/unix/sysv/linux/arm/eabi/fxstat64.c,
sysdeps/unix/sysv/linux/arm/eabi/kernel_epoll.h,
sysdeps/unix/sysv/linux/arm/eabi/kernel_stat.h,
sysdeps/unix/sysv/linux/arm/eabi/lockf64.c,
sysdeps/unix/sysv/linux/arm/eabi/lxstat64.c,
sysdeps/unix/sysv/linux/arm/eabi/semop.c,
sysdeps/unix/sysv/linux/arm/eabi/semtimedop.c,
sysdeps/unix/sysv/linux/arm/eabi/statfs64.c,
sysdeps/unix/sysv/linux/arm/eabi/syscalls.list,
sysdeps/unix/sysv/linux/arm/eabi/uname.c,
sysdeps/unix/sysv/linux/arm/eabi/xstat64.c,
sysdeps/unix/sysv/linux/arm/eabi/xstatconv.c,
sysdeps/unix/sysv/linux/arm/eabi/xstatconv.h: Removed.
* sysdeps/unix/sysv/linux/arm/eabi/linuxthreads/sysdep-cancel.h,
sysdeps/unix/sysv/linux/arm/eabi/mmap64.S,
sysdeps/unix/sysv/linux/arm/eabi/pread.c,
sysdeps/unix/sysv/linux/arm/eabi/pread64.c,
sysdeps/unix/sysv/linux/arm/eabi/pwrite.c,
sysdeps/unix/sysv/linux/arm/eabi/pwrite64.c,
sysdeps/unix/sysv/linux/arm/eabi/readahead.c,
sysdeps/unix/sysv/linux/arm/eabi/sigrestorer.S,
sysdeps/unix/sysv/linux/arm/eabi/socket.S,
sysdeps/unix/sysv/linux/arm/eabi/syscall.S,
sysdeps/unix/sysv/linux/arm/eabi/sysdep.h,
sysdeps/unix/sysv/linux/arm/eabi/truncate64.c: New files.
* sysdeps/unix/sysv/linux/arm/linuxthreads/sysdep-cancel.h
(SINGLE_THREAD_P_INT, SINGLE_THREAD_P_PIC): Removed.
(SINGLE_THREAD_P): Rewritten to use only ip.
* sysdeps/unix/sysv/linux/arm/linuxthreads/vfork.S (__vfork): Use
DO_CALL.
* sysdeps/unix/sysv/linux/arm/mmap.S (__mmap): Use DO_CALL.
* sysdeps/unix/sysv/linux/arm/mmap64.S (__mmap64): Use DO_CALL.
Don't handle EABI here.
* sysdeps/unix/sysv/linux/arm/socket.S (__socket): Use
SINGLE_THREAD_P.
* sysdeps/unix/sysv/linux/arm/vfork.S (__vfork): Use DO_CALL.
2005-11-16 18:08:53 +00:00
|
|
|
DO_CALL (mmap2, 0)
|
2003-09-14 19:54:40 +00:00
|
|
|
|
|
|
|
/* restore registers */
|
|
|
|
2:
|
|
|
|
ldr r4, [sp], #4
|
2010-03-26 18:12:56 +00:00
|
|
|
cfi_adjust_cfa_offset (-4)
|
|
|
|
cfi_restore (r4)
|
2003-09-14 19:54:40 +00:00
|
|
|
ldr r5, [sp], #4
|
2010-03-26 18:12:56 +00:00
|
|
|
cfi_adjust_cfa_offset (-4)
|
|
|
|
cfi_restore (r5)
|
2003-09-14 19:54:40 +00:00
|
|
|
|
|
|
|
cmn r0, $4096
|
2004-12-04 21:20:17 +00:00
|
|
|
RETINSTR(cc, lr)
|
2003-09-14 19:54:40 +00:00
|
|
|
b PLTJMP(syscall_error)
|
1998-04-30 16:57:14 +00:00
|
|
|
|
2010-03-26 18:12:56 +00:00
|
|
|
cfi_restore_state
|
2003-09-14 19:54:40 +00:00
|
|
|
.Linval:
|
|
|
|
mov r0, #-EINVAL
|
|
|
|
b 2b
|
|
|
|
# else
|
1998-04-30 16:57:14 +00:00
|
|
|
/* Because we can only get five args through the syscall interface, and
|
2000-01-03 23:20:42 +00:00
|
|
|
mmap() takes six, we need to build a parameter block and pass its
|
1998-04-30 16:57:14 +00:00
|
|
|
address instead. The 386 port does a similar trick. */
|
|
|
|
|
1999-04-14 13:42:16 +00:00
|
|
|
/* This code previously moved sp into ip and stored the args using
|
2000-01-03 23:20:42 +00:00
|
|
|
stmdb ip!, {a1-a4}. It did not modify sp, so the stack never had
|
|
|
|
to be restored after the syscall completed. It saved an
|
1999-04-14 13:42:16 +00:00
|
|
|
instruction and meant no stack cleanup work was required.
|
|
|
|
|
|
|
|
This will not work in the case of a mmap call being interrupted
|
|
|
|
by a signal. If the signal handler uses any stack the arguments
|
|
|
|
to mmap will be trashed. The results of a restart of mmap are
|
|
|
|
then unpredictable. */
|
|
|
|
|
|
|
|
/* store args on the stack */
|
|
|
|
stmdb sp!, {a1-a4}
|
2010-03-26 18:12:56 +00:00
|
|
|
cfi_adjust_cfa_offset (16)
|
1999-04-14 13:42:16 +00:00
|
|
|
|
|
|
|
/* do the syscall */
|
|
|
|
mov a1, sp
|
* sysdeps/arm/dl-machine.h (CLEAR_CACHE): Use INTERNAL_SYSCALL_ARM.
* sysdeps/unix/sysv/linux/arm/brk.c (__brk): Use INLINE_SYSCALL.
* sysdeps/unix/sysv/linux/arm/clone.S (__clone): Use DO_CALL.
* sysdeps/unix/sysv/linux/arm/eabi/configure.in: Bump
arch_minimum_kernel.
* sysdeps/unix/sysv/linux/arm/eabi/configure: Regenerated.
* sysdeps/unix/sysv/linux/arm/eabi/epoll_ctl.c,
sysdeps/unix/sysv/linux/arm/eabi/epoll_wait.c,
sysdeps/unix/sysv/linux/arm/eabi/fcntl.c,
sysdeps/unix/sysv/linux/arm/eabi/fstatfs64.c,
sysdeps/unix/sysv/linux/arm/eabi/ftruncate64.c,
sysdeps/unix/sysv/linux/arm/eabi/fxstat64.c,
sysdeps/unix/sysv/linux/arm/eabi/kernel_epoll.h,
sysdeps/unix/sysv/linux/arm/eabi/kernel_stat.h,
sysdeps/unix/sysv/linux/arm/eabi/lockf64.c,
sysdeps/unix/sysv/linux/arm/eabi/lxstat64.c,
sysdeps/unix/sysv/linux/arm/eabi/semop.c,
sysdeps/unix/sysv/linux/arm/eabi/semtimedop.c,
sysdeps/unix/sysv/linux/arm/eabi/statfs64.c,
sysdeps/unix/sysv/linux/arm/eabi/syscalls.list,
sysdeps/unix/sysv/linux/arm/eabi/uname.c,
sysdeps/unix/sysv/linux/arm/eabi/xstat64.c,
sysdeps/unix/sysv/linux/arm/eabi/xstatconv.c,
sysdeps/unix/sysv/linux/arm/eabi/xstatconv.h: Removed.
* sysdeps/unix/sysv/linux/arm/eabi/linuxthreads/sysdep-cancel.h,
sysdeps/unix/sysv/linux/arm/eabi/mmap64.S,
sysdeps/unix/sysv/linux/arm/eabi/pread.c,
sysdeps/unix/sysv/linux/arm/eabi/pread64.c,
sysdeps/unix/sysv/linux/arm/eabi/pwrite.c,
sysdeps/unix/sysv/linux/arm/eabi/pwrite64.c,
sysdeps/unix/sysv/linux/arm/eabi/readahead.c,
sysdeps/unix/sysv/linux/arm/eabi/sigrestorer.S,
sysdeps/unix/sysv/linux/arm/eabi/socket.S,
sysdeps/unix/sysv/linux/arm/eabi/syscall.S,
sysdeps/unix/sysv/linux/arm/eabi/sysdep.h,
sysdeps/unix/sysv/linux/arm/eabi/truncate64.c: New files.
* sysdeps/unix/sysv/linux/arm/linuxthreads/sysdep-cancel.h
(SINGLE_THREAD_P_INT, SINGLE_THREAD_P_PIC): Removed.
(SINGLE_THREAD_P): Rewritten to use only ip.
* sysdeps/unix/sysv/linux/arm/linuxthreads/vfork.S (__vfork): Use
DO_CALL.
* sysdeps/unix/sysv/linux/arm/mmap.S (__mmap): Use DO_CALL.
* sysdeps/unix/sysv/linux/arm/mmap64.S (__mmap64): Use DO_CALL.
Don't handle EABI here.
* sysdeps/unix/sysv/linux/arm/socket.S (__socket): Use
SINGLE_THREAD_P.
* sysdeps/unix/sysv/linux/arm/vfork.S (__vfork): Use DO_CALL.
2005-11-16 18:08:53 +00:00
|
|
|
DO_CALL (mmap, 0)
|
1999-04-14 13:42:16 +00:00
|
|
|
|
|
|
|
/* pop args off the stack. */
|
|
|
|
add sp, sp, #16
|
2010-03-26 18:12:56 +00:00
|
|
|
cfi_adjust_cfa_offset (-16)
|
1999-04-14 13:42:16 +00:00
|
|
|
|
1998-04-30 16:57:14 +00:00
|
|
|
cmn r0, $4096
|
2004-12-04 21:20:17 +00:00
|
|
|
RETINSTR(cc, lr)
|
2000-01-03 23:20:42 +00:00
|
|
|
b PLTJMP(syscall_error);
|
2003-09-14 19:54:40 +00:00
|
|
|
#endif
|
1998-04-30 16:57:14 +00:00
|
|
|
|
|
|
|
PSEUDO_END (__mmap)
|
|
|
|
|
|
|
|
weak_alias (__mmap, mmap)
|