Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/arch/or1k The OpenRISC calling standard only passes...



details:   https://anonhg.NetBSD.org/src/rev/78e0552c4c1d
branches:  trunk
changeset: 332066:78e0552c4c1d
user:      matt <matt%NetBSD.org@localhost>
date:      Fri Sep 05 18:09:37 2014 +0000

description:
The OpenRISC calling standard only passes 6 parameters by register.  Any
others are passed on the stack.  NetBSD syscalls use up to 8 parameters
so that could mean two left on the stack for the kernel to access.  It's
easier for the kernel if userland could fetch into registers beforehand.
So we generate sysassym.h which contains the number of arguments for each
syscall and then use that to determine how many arguments need to be fetched
from the stack.

diffstat:

 lib/libc/arch/or1k/Makefile.inc    |  19 +++++++++++-
 lib/libc/arch/or1k/SYS.h           |  50 +++++++++++++++++++++++++++------
 lib/libc/arch/or1k/syscallargs.awk |  56 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 113 insertions(+), 12 deletions(-)

diffs (157 lines):

diff -r d1e546399348 -r 78e0552c4c1d lib/libc/arch/or1k/Makefile.inc
--- a/lib/libc/arch/or1k/Makefile.inc   Fri Sep 05 15:39:18 2014 +0000
+++ b/lib/libc/arch/or1k/Makefile.inc   Fri Sep 05 18:09:37 2014 +0000
@@ -1,9 +1,24 @@
-#      $NetBSD: Makefile.inc,v 1.1 2014/09/03 19:34:25 matt Exp $
+#      $NetBSD: Makefile.inc,v 1.2 2014/09/05 18:09:37 matt Exp $
 
 SRCS+=         __sigaction14_sigtramp.c __sigtramp2.S
 SRCS+=         mulsi3.S
 
-CPPFLAGS+=     -I. -isystem ${DESTDIR}/usr/include/c++
+CPPFLAGS+=     -I.
+
+DPSRCS+=       sysassym.h
+CLEANFILES+=   sysassym.h sysassym.h.tmp
+
+sysassym.h: ${DESTDIR}/usr/include/sys/syscall.h \
+       ${DESTDIR}/usr/include/sys/syscallargs.h ${ARCHDIR}/syscallargs.awk
+       ${_MKTARGET_CREATE}
+       ${TOOL_CAT} \
+               ${DESTDIR}/usr/include/sys/syscall.h \
+               ${DESTDIR}/usr/include/sys/syscallargs.h | \
+       ${TOOL_AWK} -f ${ARCHDIR}/syscallargs.awk | \
+       ${TOOL_GENASSYM} -- ${CC} -ffreestanding ${CFLAGS:N-Wa,*} \
+               ${CPPFLAGS:N-D*} -D_KMEMUSER \
+               ${GENASSYM_CPPFLAGS} > $@.tmp && \
+       mv -f $@.tmp $@
 
 .if ${MKSOFTFLOAT} != "no"
 .include <softfloat/Makefile.inc>
diff -r d1e546399348 -r 78e0552c4c1d lib/libc/arch/or1k/SYS.h
--- a/lib/libc/arch/or1k/SYS.h  Fri Sep 05 15:39:18 2014 +0000
+++ b/lib/libc/arch/or1k/SYS.h  Fri Sep 05 18:09:37 2014 +0000
@@ -1,23 +1,53 @@
-/*     $NetBSD: SYS.h,v 1.1 2014/09/03 19:34:25 matt Exp $     */
+/*     $NetBSD: SYS.h,v 1.2 2014/09/05 18:09:37 matt Exp $     */
+
+/*-
+ * Copyright (c) 2014 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Matt Thomas of 3am Software Foundry.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
 
 #include <machine/asm.h>
 #include <sys/syscall.h>
+#include "sysassym.h"
 
 #define        _DOSYSCALL(x)           l.addi  r13,r0,(SYS_ ## x)      ;\
                                l.sys   0                       ;\
                                l.nop
 
-#define        _SYSCALL_NOERROR(x,y)   .text                           ;\
-                               .p2align 2                      ;\
-                       ENTRY(x)                                ;\
+#define        _SYSCALL_NOERROR(x,y)   ENTRY(x)                        ;\
+                               .if NSYSARGS_##y > 6            ;\
+                               l.lwz   r11, 0(r1)              ;\
+                               .endif                          ;\
+                               .if NSYSARGS_##y > 7            ;\
+                               l.lwz   r12, 4(r1)              ;\
+                               .endif                          ;\
                                _DOSYSCALL(y)
 
-#define _SYSCALL(x,y)          .text                           ;\
-                               .align  2                       ;\
-                       2:      l.j     _C_LABEL(__cerror)      ;\
-                               l.nop                           ;\
-                               _SYSCALL_NOERROR(x,y)           ;\
-                               l.bf    2b                      ;\
+#define _SYSCALL(x,y)          _SYSCALL_NOERROR(x,y)           ;\
+                               l.bf    _C_LABEL(__cerror)      ;\
                                l.nop
 
 #define SYSCALL_NOERROR(x)     _SYSCALL_NOERROR(x,x)
diff -r d1e546399348 -r 78e0552c4c1d lib/libc/arch/or1k/syscallargs.awk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/libc/arch/or1k/syscallargs.awk        Fri Sep 05 18:09:37 2014 +0000
@@ -0,0 +1,56 @@
+# $NetBSD: syscallargs.awk,v 1.1 2014/09/05 18:09:37 matt Exp $
+#
+# Copyright (c) 2014 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# This code is derived from software contributed to The NetBSD Foundation
+# by Matt Thomas of 3am Software Foundry.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+
+BEGIN {
+}
+
+/#define.SYS_MAXSYS.*/ { next; }
+
+/#define.SYS_.*/ {
+       x = substr($2, 5);
+       syscall[x] = "0";
+}
+
+/^check_syscall_args/ {
+       l = length() - 20;
+       x = substr($0, 20, l);
+       y = gensub("sys_", "", 1, x);
+       syscall[y] = sprintf("sizeof(struct %s_args) / sizeof(register_t)", x);
+}
+
+END {
+       print "include <sys/types.h>"
+       print "include <sys/lwp.h>"
+       print "include <sys/ucontext.h>"
+       print "include <sys/syscallargs.h>"
+       print;
+       for (i in syscall) {
+               printf "define NSYSARGS_%s %s\n", i, syscall[i];
+       }
+}



Home | Main Index | Thread Index | Old Index