syscall-i386-netbsd-1.1.S
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== syscall.S ============================================================
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * Copyright (c) 1993 Chris Provenzano, proven@mit.edu
  4.  * All rights reserved.
  5.  *
  6.  * This code is derived from software contributed to Berkeley by
  7.  * William Jolitz.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  * 3. All advertising materials mentioning features or use of this software
  18.  *    must display the following acknowledgement:
  19.  * This product includes software developed by the University of
  20.  * California, Berkeley and its contributors.
  21.  * 4. Neither the name of the University nor the names of its contributors
  22.  *    may be used to endorse or promote products derived from this software
  23.  *    without specific prior written permission.
  24.  *
  25.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  26.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  31.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  33.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  34.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  35.  * SUCH DAMAGE.
  36.  *
  37.  * Description : Machine dependent syscalls for i386/i486/i586
  38.  *
  39.  *  1.00 93/08/26 proven
  40.  *      -Started coding this file.
  41.  *
  42.  * 1.01 93/11/13 proven
  43.  * -The functions readv() and writev() added.
  44.  */
  45. #ifndef lint
  46. .text
  47. .asciz "$Id$";
  48. #endif
  49.  
  50. #if defined(SYSLIBC_SCCS) && !defined(lint)
  51.         .asciz "@(#)syscall.s   5.1 (Berkeley) 4/23/90"
  52. #endif /* SYSLIBC_SCCS and not lint */
  53. #include <machine/asm.h>
  54. #include <sys/syscall.h>
  55. /*
  56.  * Initial asm stuff for all functions.
  57.  */
  58. .text
  59. .align 2
  60. /* ==========================================================================
  61.  * machdep_sys_fork()
  62.  */
  63. .globl _machdep_sys_fork;
  64. _machdep_sys_fork:;
  65. movl $(SYS_fork), %eax;
  66. .byte 0x9a; .long 0; .word 7;
  67. cmpl $0, %edx
  68. je 2f
  69. movl $0, %eax
  70. 2:
  71. ret;
  72. /* ==========================================================================
  73.  * machdep_sys___syscall()
  74.  */
  75. _machdep_sys___syscall:;
  76. movl $(SYS___syscall), %eax;
  77. int $0x80;
  78. jb 3f;
  79. ret
  80. /* ==========================================================================
  81.  * machdep_sys_sigsuspend()
  82.  */
  83. .globl _machdep_sys_sigsuspend;
  84. _machdep_sys_sigsuspend:;
  85. movl    4(%esp),%eax            # fetch mask arg
  86.     movl    (%eax),%eax             # indirect to mask arg
  87.     movl    %eax,4(%esp)
  88. movl $(SYS_sigsuspend), %eax;
  89. int $0x80;
  90. jb 3f;
  91. ret
  92. 3:
  93. neg %eax
  94. movl $0xffffffff,%edx
  95. ret
  96. /* ==========================================================================
  97.  * machdep_sys_lseek()
  98.  */
  99. .globl _machdep_sys_lseek;
  100. _machdep_sys_lseek:;
  101. pushl  %ebp;
  102. movl   %esp,%ebp;
  103. pushl  0x14(%ebp);
  104. pushl  0x10(%ebp);
  105. pushl  0xc(%ebp);
  106. pushl  $0x0;
  107. pushl  0x8(%ebp);
  108. pushl  $0x0;
  109. pushl $(SYS_lseek);
  110. call _machdep_sys___syscall;
  111. leave
  112. ret
  113. /* ==========================================================================
  114.  * machdep_sys_ftruncate() ; Added by Monty
  115.  */
  116.         .globl _machdep_sys_ftruncate;
  117.  
  118. _machdep_sys_ftruncate:;
  119.  
  120.         pushl  %ebp; 
  121.         movl   %esp,%ebp;
  122.         pushl  0x10(%ebp);
  123.         pushl  0xc(%ebp);
  124.         pushl  $0x0; # Why this?
  125.         pushl  0x8(%ebp);
  126.         pushl  $0x0; # And this?
  127.         pushl $(SYS_ftruncate);
  128.         call _machdep_sys___syscall;
  129.         leave
  130.         ret  
  131. /* ==========================================================================
  132.  * machdep_sys_sigprocmask()
  133.  */
  134. .globl _machdep_sys_sigprocmask;
  135. _machdep_sys_sigprocmask:;
  136. movl 8(%esp),%ecx
  137. movl (%ecx),%ecx
  138.     movl %ecx,8(%esp)
  139. movl $(SYS_sigprocmask), %eax;
  140. int  $0x80;
  141. jb   3b;
  142. ret
  143. /* ==========================================================================
  144.  * machdep_sys_pipe()
  145.  */
  146. .globl _machdep_sys_pipe;
  147. _machdep_sys_pipe:;
  148. movl $(SYS_pipe), %eax;
  149. int  $0x80;
  150. jb   3b;
  151. movl 4(%esp),%ecx
  152. movl %eax,(%ecx)
  153. movl %edx,4(%ecx)
  154. xorl %eax,%eax
  155. ret