source: mainline/uspace/libc/arch/mips32/src/syscall.c@ d7baee6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d7baee6 was 0166e99, checked in by jermar <jermar@…>, 17 years ago

Merge the uspace branch.

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[b861b58]1/*
2 * Copyright (C) 2005 Martin Decky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[846848a6]29 /** @addtogroup libcmips32
[e209fc96]30 * @{
31 */
32/** @file
[846848a6]33 * @ingroup libcmips32eb
[e209fc96]34 */
35
[b861b58]36#include <libc.h>
37
[b419162]38sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2,
[7fc78da]39 const sysarg_t p3, const sysarg_t p4,
40 const syscall_t id)
[b861b58]41{
[3a6d6656]42 register sysarg_t __mips_reg_a0 asm("$4") = p1;
43 register sysarg_t __mips_reg_a1 asm("$5") = p2;
44 register sysarg_t __mips_reg_a2 asm("$6") = p3;
[7fc78da]45 register sysarg_t __mips_reg_a3 asm("$7") = p4;
[29c1282]46 register sysarg_t __mips_reg_v0 asm("$2") = id;
[b861b58]47
48 asm volatile (
49 "syscall\n"
[cc6f688]50 : "=r" (__mips_reg_v0)
[b861b58]51 : "r" (__mips_reg_a0),
52 "r" (__mips_reg_a1),
53 "r" (__mips_reg_a2),
[7fc78da]54 "r" (__mips_reg_a3),
[29c1282]55 "r" (__mips_reg_v0)
[255ec35]56 : "%ra" /* We are a function call, although C does not
57 * know it */
[b861b58]58 );
[cc6f688]59
60 return __mips_reg_v0;
[b861b58]61}
[e209fc96]62
63 /** @}
64 */
65
Note: See TracBrowser for help on using the repository browser.