syscall-template-alpha-netbsd-1.3.S
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:

MySQL

Development Platform:

Visual C++

  1. #include <machine/asm.h>
  2. #define COMPAT_43
  3. #include <sys/syscall.h>
  4. #define CHMK() call_pal 0x83
  5. #ifdef SYS___sigsuspend14
  6. #define SYS_sigsuspend SYS___sigsuspend14
  7. #endif
  8. #ifdef SYS___sigprocmask14
  9. #define SYS_sigprocmask SYS___sigprocmask14
  10. #endif
  11. #undef SYSCALL
  12. /* Kernel syscall interface:
  13.    Input:
  14. v0 - system call number
  15. a* - arguments, as in C
  16.    Output:
  17. a3 - zero iff successful
  18. v0 - errno value on failure, else result
  19.    This macro is similar to SYSCALL in asm.h, but not completely.
  20.    There's room for optimization, if we assume this will continue to
  21.    be assembled as one file.
  22.    This macro expansions does not include the return instruction.
  23.    If there's no other work to be done, use something like:
  24. SYSCALL(foo) ; ret
  25.    If there is other work to do (in fork, maybe?), do it after the
  26.    SYSCALL invocation.  */
  27. #define SYSCALL(x) 
  28. .align 4 ;
  29. .globl machdep_sys_##x ;
  30. .ent machdep_sys_##x, 0 ;
  31. machdep_sys_##x: ;
  32. .frame sp,0,ra ;
  33. ldiq v0, SYS_##x ;
  34. CHMK() ;
  35. beq a3, Lsys_noerr_##x ;
  36. br gp, Lsys_err_##x ;
  37. Lsys_err_##x: ;
  38. /* Load gp so we can find cerror to jump to.  */;
  39. ldgp gp, 0(gp) ;
  40. jmp zero, machdep_cerror ;
  41. Lsys_noerr_##x:
  42. #define SIMPLE_SYSCALL(x) SYSCALL(x) ; ret ; .end machdep_sys_##x
  43. #define XSYSCALL(x) SIMPLE_SYSCALL(x)
  44. XSYSCALL(SYSCALL_NAME)