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

MySQL数据库

开发平台:

Visual C++

  1. #include <machine/asm.h>
  2. #define CHMK() call_pal 0x83
  3. #define COMPAT_43
  4. #include <sys/syscall.h>
  5. #ifndef __CONCAT
  6. #include <sys/cdefs.h>
  7. #endif
  8. #define CONCAT __CONCAT
  9. #undef SYSCALL
  10. /* Kernel syscall interface:
  11.    Input:
  12. v0 - system call number
  13. a* - arguments, as in C
  14.    Output:
  15. a3 - zero iff successful
  16. v0 - errno value on failure, else result
  17.    This macro is similar to SYSCALL in asm.h, but not completely.
  18.    There's room for optimization, if we assume this will continue to
  19.    be assembled as one file.
  20.    This macro expansions does not include the return instruction.
  21.    If there's no other work to be done, use something like:
  22. SYSCALL(foo) ; ret
  23.    If there is other work to do (in fork, maybe?), do it after the
  24.    SYSCALL invocation.  */
  25. #define SYSCALL(x) 
  26. .align 4 ;
  27. .globl CONCAT(machdep_sys_,x) ;
  28. .ent CONCAT(machdep_sys_,x), 0 ;
  29. CONCAT(machdep_sys_,x): ;
  30. .frame sp,0,ra ;
  31. ldiq v0, CONCAT(SYS_,x) ;
  32. CHMK() ;
  33. beq a3, CONCAT(Lsys_noerr_,x) ;
  34. br gp, CONCAT(Lsys_err_,x) ;
  35. CONCAT(Lsys_err_,x): ;
  36. /* Load gp so we can find cerror to jump to.  */;
  37. ldgp gp, 0(gp) ;
  38. jmp zero, machdep_cerror ;
  39. CONCAT(Lsys_noerr_,x):
  40. #define XSYSCALL(x) SYSCALL(x) ; RET ; .end CONCAT(machdep_sys_,x)
  41. .globl machdep_cerror 
  42. machdep_cerror:
  43. br t0, Lmachdep_cerror_setgp
  44. Lmachdep_cerror_setgp:
  45. ldgp gp, 0(t0)
  46. stl v0, errno
  47. #if 0
  48. ldiq v0, -1
  49. #else
  50. subq zero, v0, v0
  51. #endif
  52. RET
  53. /* The fork system call is special...  */
  54. SYSCALL(fork)
  55. cmovne a4, 0, v0
  56. RET
  57. .end machdep_sys_fork
  58. /* The pipe system call is special... */
  59. SYSCALL(pipe)
  60. stl v0, 0(a0)
  61. stl a4, 4(a0)
  62. mov zero, v0
  63. RET
  64. .end machdep_sys_pipe
  65. /* The sigsuspend system call is special... */
  66. .align 4
  67. .globl machdep_sys_sigsuspend
  68. .ent machdep_sys_sigsuspend, 0
  69. machdep_sys_sigsuspend:
  70. ldl a0, 0(a0) /* pass *mask instead of mask */
  71. ldiq v0, SYS_sigsuspend
  72. CHMK()
  73. mov zero, v0 /* shouldn't need; just in case... */
  74. RET
  75. .end  machdep_sys_sigsuspend
  76. /* The sigprocmask system call is special... */
  77. .align 4
  78. .globl machdep_sys_sigprocmask
  79. .ent machdep_sys_sigprocmask, 0
  80. machdep_sys_sigprocmask:
  81. mov a2, a5 /* safe */
  82. cmoveq a1, 1, a0 /* if set == NULL, how = SIG_BLOCK */
  83. beq a1, Ldoit /* and set = 0, and do it. */
  84. ldl a1, 0(a1) /* load the set from *set */
  85. Ldoit: ldiq v0, SYS_sigprocmask
  86. CHMK()
  87. beq a5, Lret /* if they don't want old mask, done */
  88. stl v0, 0(a5) /* otherwise, give it to them. */
  89. Lret: mov zero, v0
  90. RET
  91. .end machdep_sys_sigprocmask
  92. /* More stuff ... */
  93. .align 4
  94. .global __machdep_save_int_state
  95. .ent __machdep_save_int_state, 0
  96. __machdep_save_int_state:
  97. .frame sp, 16, ra
  98. ldgp gp, 0(t12)
  99. lda sp, -16(sp)
  100. stq ra, 0(sp)
  101. /* save integer registers */
  102. stq ra, ( 0 * 8)(a0) /* return address */
  103. stq s0, ( 1 * 8)(a0) /* callee-saved registers */
  104. stq s1, ( 2 * 8)(a0)
  105. stq s2, ( 3 * 8)(a0)
  106. stq s3, ( 4 * 8)(a0)
  107. stq s4, ( 5 * 8)(a0)
  108. stq s5, ( 6 * 8)(a0)
  109. stq s6, ( 7 * 8)(a0)
  110. stq sp, ( 9 * 8)(a0)
  111. stq ra, ( 8 * 8)(a0) /* RA on return */
  112. stq pv, (10 * 8)(a0) /* and PV; we restore it */
  113. mov zero, v0
  114. lda sp, 16(sp)
  115. RET
  116. .end __machdep_save_int_state
  117. .align 4
  118. .global __machdep_restore_int_state
  119. .ent __machdep_restore_int_state, 0
  120. __machdep_restore_int_state:
  121. .frame sp, 16, ra
  122. ldgp gp, 0(t12)
  123. lda sp, -16(sp)
  124. stq ra, 0(sp)
  125. /* restore integer registers */
  126. ldq t0, ( 0 * 8)(a0) /* return address */
  127. ldq s0, ( 1 * 8)(a0) /* callee-saved registers */
  128. ldq s1, ( 2 * 8)(a0)
  129. ldq s2, ( 3 * 8)(a0)
  130. ldq s3, ( 4 * 8)(a0)
  131. ldq s4, ( 5 * 8)(a0)
  132. ldq s5, ( 6 * 8)(a0)
  133. ldq s6, ( 7 * 8)(a0)
  134. ldq ra, ( 8 * 8)(a0) /* RA after return */
  135. ldq sp, ( 9 * 8)(a0)
  136. ldq pv, (10 * 8)(a0) /* and PV; we restore it */
  137. ldiq    v0, 1
  138. ret     zero,(t0),1
  139. .end __machdep_restore_int_state
  140. .align 4
  141. .global __machdep_save_fp_state
  142. .ent __machdep_save_fp_state, 0
  143. __machdep_save_fp_state:
  144. .frame sp, 16, ra
  145. ldgp gp, 0(t12)
  146. lda sp, -16(sp)
  147. stq ra, 0(sp)
  148. /* save FP registers */
  149. stt fs0, (0 * 8)(a0) /* callee-saved registers */
  150. stt fs1, (1 * 8)(a0)
  151. stt fs2, (2 * 8)(a0)
  152. stt fs3, (3 * 8)(a0)
  153. stt fs4, (4 * 8)(a0)
  154. stt fs5, (5 * 8)(a0)
  155. stt fs6, (6 * 8)(a0)
  156. stt fs7, (7 * 8)(a0)
  157. mf_fpcr ft0  /* and FP control reg */
  158. stt ft0, (8 * 8)(a0)
  159. lda sp, 16(sp)
  160. RET
  161. .end __machdep_save_fp_state
  162. .align 4
  163. .global __machdep_restore_fp_state
  164. .ent __machdep_restore_fp_state, 0
  165. __machdep_restore_fp_state:
  166. .frame sp, 16, ra
  167. ldgp gp, 0(t12)
  168. lda sp, -16(sp)
  169. stq ra, 0(sp)
  170. /* restore FP registers */
  171. ldt fs0, (0 * 8)(a0) /* callee-saved registers */
  172. ldt fs1, (1 * 8)(a0)
  173. ldt fs2, (2 * 8)(a0)
  174. ldt fs3, (3 * 8)(a0)
  175. ldt fs4, (4 * 8)(a0)
  176. ldt fs5, (5 * 8)(a0)
  177. ldt fs6, (6 * 8)(a0)
  178. ldt fs7, (7 * 8)(a0)
  179. ldt ft0, (8 * 8)(a0)
  180. mt_fpcr ft0  /* and FP control reg */
  181. lda sp, 16(sp)
  182. RET
  183. .end __machdep_restore_fp_state