1 /* Copyright (C) 2000 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/>. */
20 #include <bits/errno.h>
21 #include <sys/syscall.h>
22 #include <bits/arm_asm.h>
23 #include <bits/arm_bx.h>
27 /* The mmap2 system call takes six arguments, all in registers. */
30 .type mmap64,%function
34 #if defined(THUMB1_ONLY)
38 /* Offsets are after pushing 3 words. */
39 # define LOW_OFFSET 12 + 8 + 4
40 # define HIGH_OFFSET 12 + 8 + 0
42 # define LOW_OFFSET 12 + 8 + 0
43 # define HIGH_OFFSET 12 + 8 + 4
46 ldr r6, [sp, $LOW_OFFSET]
47 ldr r5, [sp, $HIGH_OFFSET]
48 lsl r4, r6, #20 @ check that offset is page-aligned
50 lsr r4, r5, #12 @ check for overflow
56 ldr r4, [sp, #8] @ load fd
70 #else /* !THUMB1_ONLY */
73 # define LOW_OFFSET 8 + 4
74 /* The initial + 4 is for the stack postdecrement. */
75 # define HIGH_OFFSET 4 + 8 + 0
77 # define LOW_OFFSET 8 + 0
78 # define HIGH_OFFSET 4 + 8 + 4
80 ldr ip, [sp, $LOW_OFFSET]
82 ldr r5, [sp, $HIGH_OFFSET]
84 movs r4, ip, lsl $20 @ check that offset is page-aligned
87 moveqs r4, r5, lsr $12 @ check for overflow
89 ldr r4, [sp, $8] @ load fd
90 orr r5, ip, r5, lsl $20 @ compose page offset
102 #else /* !__ARM_EABI__ */
104 stmfd sp!, {r4, r5, lr}
107 movs ip, r5, lsl $20 @ check that offset is page-aligned
111 orr r5, r5, ip, lsl $20 @ compose page offset
113 bne .Linval @ check for overflow
117 ldmccfd sp!, {r4, r5, pc}
119 ldmnefd sp!, {r4, r5, lr}
121 /* The current kernel does not support mmap2. Fall back to plain
122 mmap if the offset is small enough. */
124 mov r0, ip @ first arg was clobbered
126 ldmeqfd sp!, {r4, r5, lr}
127 beq HIDDEN_JUMPTARGET(mmap)
130 ldmfd sp!, {r4, r5, lr}
136 .size mmap64,.-mmap64