syscall-i386-netbsd-1.3.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 _C_LABEL(machdep_sys_fork);
  64. _C_LABEL(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. #ifndef SYS___sigsuspend14
  81. /* ==========================================================================
  82.  * machdep_sys_sigsuspend()
  83.  */
  84. .globl _C_LABEL(machdep_sys_sigsuspend);
  85. _C_LABEL(machdep_sys_sigsuspend):;
  86. movl    4(%esp),%eax            # fetch mask arg
  87. movl    (%eax),%eax             # indirect to mask arg
  88. movl    %eax,4(%esp)
  89. movl $(SYS_sigsuspend), %eax;
  90. int $0x80;
  91. jb 3f;
  92. ret
  93. #endif
  94. 3:
  95. neg %eax
  96. movl $0xffffffff,%edx
  97. ret
  98. /* ==========================================================================
  99.  * machdep_sys_lseek()
  100.  */
  101. .globl _C_LABEL(machdep_sys_lseek);
  102. _C_LABEL(machdep_sys_lseek):;
  103. pushl  %ebp;
  104. movl   %esp,%ebp;
  105. pushl  0x14(%ebp);
  106. pushl  0x10(%ebp);
  107. pushl  0xc(%ebp);
  108. pushl  $0x0;
  109. pushl  0x8(%ebp);
  110. pushl  $0x0;
  111. pushl $(SYS_lseek);
  112. call _machdep_sys___syscall;
  113. leave
  114. ret
  115. /* ==========================================================================
  116.  * machdep_sys_ftruncate() ; Added by Monty
  117.  */
  118.         .globl _C_LABEL(machdep_sys_ftruncate);
  119.  
  120. _C_LABEL(machdep_sys_ftruncate):;
  121.  
  122.         pushl  %ebp; 
  123.         movl   %esp,%ebp;
  124.         pushl  0x10(%ebp);
  125.         pushl  0xc(%ebp);
  126.         pushl  $0x0; # Why this?
  127.         pushl  0x8(%ebp);
  128.         pushl  $0x0; # And this?
  129.         pushl $(SYS_ftruncate);
  130.         call _machdep_sys___syscall;
  131.         leave
  132.         ret  
  133. #ifndef SYS___sigprocmask14
  134. /* ==========================================================================
  135.  * machdep_sys_sigprocmask()
  136.  */
  137. .globl _C_LABEL(machdep_sys_sigprocmask);
  138. _C_LABEL(machdep_sys_sigprocmask):;
  139. movl 8(%esp),%ecx
  140. movl (%ecx),%ecx
  141. movl %ecx,8(%esp)
  142. movl $(SYS_sigprocmask), %eax;
  143. int  $0x80;
  144. jb   3b;
  145. ret
  146. #endif
  147. /* ==========================================================================
  148.  * machdep_sys_pipe()
  149.  */
  150. .globl _C_LABEL(machdep_sys_pipe);
  151. _C_LABEL(machdep_sys_pipe):;
  152. movl $(SYS_pipe), %eax;
  153. int  $0x80;
  154. jb   3b;
  155. movl 4(%esp),%ecx
  156. movl %eax,(%ecx)
  157. movl %edx,4(%ecx)
  158. xorl %eax,%eax
  159. ret
  160. /* ==========================================================================
  161.  * machdep_sys_fstat()
  162.  */
  163. .globl _C_LABEL(machdep_sys_fstat);
  164. _C_LABEL(machdep_sys_fstat):;
  165. movl $(SYS___fstat13), %eax;
  166. int $0x80;
  167. jb 4f;
  168. ret
  169. 4:
  170. neg %eax
  171. movl $0xffffffff,%edx
  172. ret