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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [sysdeps/] [linux/] [v850/] [syscall.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
/*
2
 * libc/sysdeps/linux/v850/syscall.c -- generic syscall function for linux/v850
3
 *
4
 *  Copyright (C) 2002  NEC Corporation
5
 *  Copyright (C) 2002  Miles Bader <miles@gnu.org>
6
 *
7
 * This file is subject to the terms and conditions of the GNU Lesser
8
 * General Public License.  See the file COPYING.LIB in the main
9
 * directory of this archive for more details.
10
 *
11
 * Written by Miles Bader <miles@gnu.org>
12
 */
13
 
14
#include <errno.h>
15
#include <sys/syscall.h>
16
 
17
typedef unsigned long arg_t;
18
 
19
/* Invoke `system call' NUM, passing it the remaining arguments.
20
   This is completely system-dependent, and not often useful.  */
21
long
22
syscall (long num, arg_t a1, arg_t a2, arg_t a3, arg_t a4, arg_t a5, arg_t a6)
23
{
24
  /* We don't know how many arguments are valid, so A5 and A6 are fetched
25
     off the stack even for (the majority of) system calls with fewer
26
     arguments; hopefully this won't cause any problems.  A1-A4 are in
27
     registers, so they're OK.  */
28
  register arg_t a asm (SYSCALL_ARG0) = a1;
29
  register arg_t b asm (SYSCALL_ARG1) = a2;
30
  register arg_t c asm (SYSCALL_ARG2) = a3;
31
  register arg_t d asm (SYSCALL_ARG3) = a4;
32
  register arg_t e asm (SYSCALL_ARG4) = a5;
33
  register arg_t f asm (SYSCALL_ARG5) = a6;
34
  register unsigned long syscall asm (SYSCALL_NUM) = num;
35
  register unsigned long ret asm (SYSCALL_RET);
36
 
37
  asm ("trap " SYSCALL_LONG_TRAP
38
       : "=r" (ret)
39
       : "r" (syscall), "r" (a), "r" (b), "r" (c), "r" (d), "r" (e), "r" (f)
40
       : SYSCALL_CLOBBERS);
41
 
42
  __syscall_return (long, ret);
43
}

powered by: WebSVN 2.1.0

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