OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [sparc/] [kernel/] [sunos_asm.S] - Rev 1765

Go to most recent revision | Compare with Previous | Blame | View Log

/* $Id: sunos_asm.S,v 1.1 2005-12-20 09:50:43 jcastillo Exp $
 * sunos_asm.S: SunOS system calls which must have a low-level
 *              entry point to operate correctly.
 *
 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
 *
 * Based upon preliminary work which is:
 *
 * Copyright (C) 1995 Adrian M. Rodriguez (adrian@remus.rutgers.edu)
 */

#include <asm/cprefix.h>
#include <asm/ptrace.h>

        .text
        .align 4

        /* SunOS getpid() returns pid in %o0 and ppid in %o1 */
        .globl  C_LABEL(sunos_getpid)
C_LABEL(sunos_getpid):
        call    C_LABEL(sys_getpid)
         nop

        st      %o0, [%sp + REGWIN_SZ + PT_I0]

        call    C_LABEL(sys_getppid)
         nop    

        st      %o0, [%sp + REGWIN_SZ + PT_I1]

        b       C_LABEL(ret_sys_call)
         nop

        /* SunOS getuid() returns uid in %o0 and euid in %o1 */
        .globl  C_LABEL(sunos_getuid)
C_LABEL(sunos_getuid):
        call    C_LABEL(sys_getuid)
         nop

        st      %o0, [%sp + REGWIN_SZ + PT_I0]

        call    C_LABEL(sys_geteuid)
         nop

        st      %o0, [%sp + REGWIN_SZ + PT_I1]

        b       C_LABEL(ret_sys_call)
         nop

        /* SunOS getgid() returns gid in %o0 and egid in %o1 */
        .globl  C_LABEL(sunos_getgid)
C_LABEL(sunos_getgid):
        call    C_LABEL(sys_getgid)
         nop

        st      %o0, [%sp + REGWIN_SZ + PT_I0]

        call    C_LABEL(sys_getegid)
         nop

        st      %o0, [%sp + REGWIN_SZ + PT_I1]

        b       C_LABEL(ret_sys_call)
         nop

        /* SunOS's execv() call only specifies the argv argument, the
         * environment settings are the same as the calling processes.
         */
        .globl  C_LABEL(sunos_execv)
C_LABEL(sunos_execv):
        st      %g0, [%sp + REGWIN_SZ + PT_I2]

        call    C_LABEL(sparc_execve)
         add    %sp, REGWIN_SZ, %o0

        b       C_LABEL(ret_sys_call)
         nop

         

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.