syscall.S 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* Copyright (C) 1996 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by David Mosberger <davidm@azstarnet.com>, 1996.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <features.h>
  16. #include <sys/regdef.h>
  17. #include <asm/pal.h>
  18. /*
  19. * This is for COMPATIBILITY with Linux/x86 only. Linux/Alpha system
  20. * calls return an error indication in a3. This allows arbitrary 64bit
  21. * values to be returned in v0 (because negative values are not
  22. * mistaken as error numbers). However, C allows only one value to
  23. * be returned, so the interface below folds the error indication passed in
  24. * a3 back into v0: it sets v0 to -errno if an error occurs. Thus,
  25. * no negative 64bit numbers can be returned. To avoid this problem,
  26. * use assembly stubs wherever possible/convenient.
  27. *
  28. * Usage:
  29. *
  30. * long syscall(syscall_number, arg1, arg2, arg3, arg4, arg5)
  31. *
  32. * syscall_number = the index of the system call we're invoking
  33. * arg1-arg5 = up to 5 integer arguments to the system call
  34. *
  35. * We need to do some arg shifting: the kernel expects the
  36. * syscall number in v0 and the first five args in a0-a4.
  37. *
  38. */
  39. .globl __syscall;
  40. .align 4;
  41. .ent __syscall, 0;
  42. __syscall:
  43. .frame sp, 0, ra
  44. .prologue 0
  45. mov a0, v0 /* Syscall number -> v0 */
  46. mov a1, a0 /* arg1-arg5 -> a0-a4 */
  47. mov a2, a1
  48. mov a3, a2
  49. mov a4, a3
  50. mov a5, a4
  51. call_pal PAL_callsys /* Invoke system call */
  52. bne a3, $error
  53. ret
  54. $error:
  55. br gp, 2f
  56. 2: ldgp gp, 0(gp)
  57. jmp zero,__syscall_error
  58. .end __syscall
  59. weak_alias (__syscall, syscall)