Browse Source

Add mmap function needed for ARM EABI and define thumb specific INTERNAL_SYSCALL macro which saves r7 before making the call and pops it back after return.

Khem Raj 19 năm trước cách đây
mục cha
commit
d0fa769212

+ 1 - 1
libc/sysdeps/linux/arm/Makefile.arch

@@ -5,7 +5,7 @@
 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 #
 
-CSRC := brk.c ioperm.c iopl.c sigaction.c __syscall_error.c
+CSRC := brk.c ioperm.c iopl.c mmap.c sigaction.c __syscall_error.c
 
 SSRC := \
 	__longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S \

+ 23 - 0
libc/sysdeps/linux/arm/bits/syscalls.h

@@ -112,6 +112,7 @@ return (type) (INLINE_SYSCALL(name, 7, arg1, arg2, arg3, arg4, arg5, arg6, arg7)
 
 #undef INTERNAL_SYSCALL
 #if defined(__ARM_EABI__)
+#if !defined(__thumb__)
 #define INTERNAL_SYSCALL(name, err, nr, args...)			\
   ({unsigned int _sys_result;						\
      {									\
@@ -125,6 +126,28 @@ return (type) (INLINE_SYSCALL(name, 7, arg1, arg2, arg3, arg4, arg5, arg6, arg7)
        _sys_result = _a1;						\
      }									\
      (int) _sys_result; })
+#else /* !defined(__thumb__) */
+/* So hide the use of r7 from the compiler, this would be a lot
+ * easier but for the fact that the syscalls can exceed 255.
+ * For the moment the LOAD_ARG_7 is sacrificed.
+ */
+#define INTERNAL_SYSCALL(name, err, nr, args...)                \
+  ({ unsigned int _sys_result;                                  \
+    {                                                           \
+      register int _a1 asm ("a1");                              \
+      LOAD_ARGS_##nr (args)                                     \
+        register int _v3 asm ("v3") = (int) (SYS_ify(name));    \
+      asm volatile ("push       {r7}\n"                         \
+                    "\tmov      r7, v3\n"                       \
+                    "\tswi      0       @ syscall " #name "\n"  \
+                    "\tpop      {r7}"                           \
+                   : "=r" (_a1)                                 \
+                    : "r" (_v3) ASM_ARGS_##nr                   \
+                    : "memory");                                \
+      _sys_result = _a1;                                        \
+    }                                                           \
+    (int) _sys_result; })
+#endif /*!defined(__thumb__)*/
 #else /* !defined(__ARM_EABI__) */ 
 #if !defined(__thumb__)
 #define INTERNAL_SYSCALL(name, err, nr, args...)		\