rfork_thread.S 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*-
  2. * Copyright (c) 2000 Peter Wemm <peter@FreeBSD.org>
  3. * Copyright (c) 2003 Alan L. Cox <alc@cs.rice.edu>
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  16. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  21. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  25. * SUCH DAMAGE.
  26. */
  27. #include <machine/asm.h>
  28. #include <sys/syscall.h>
  29. __FBSDID("$FreeBSD: release/10.0.0/lib/libc/amd64/gen/rfork_thread.S 240178 2012-09-06 20:59:49Z jilles $");
  30. /*
  31. * With thanks to John Dyson for the original version of this.
  32. */
  33. /*
  34. * %edi %rsi %rdx %rcx
  35. * rfork_thread(flags, stack_addr, start_fnc, start_arg);
  36. *
  37. * flags: Flags to rfork system call. See rfork(2).
  38. * stack_addr: Top of stack for thread.
  39. * start_fnc: Address of thread function to call in child.
  40. * start_arg: Argument to pass to the thread function in child.
  41. */
  42. ENTRY(rfork_thread)
  43. pushq %rbx
  44. pushq %r12
  45. movq %rdx, %rbx
  46. movq %rcx, %r12
  47. /*
  48. * Prepare and execute the thread creation syscall
  49. */
  50. movq $SYS_rfork, %rax
  51. int $0x80
  52. jb 2f
  53. /*
  54. * Check to see if we are in the parent or child
  55. */
  56. cmpl $0, %edx
  57. jnz 1f
  58. popq %r12
  59. popq %rbx
  60. ret
  61. /*
  62. * If we are in the child (new thread), then
  63. * set-up the call to the internal subroutine. If it
  64. * returns, then call __exit.
  65. */
  66. 1:
  67. movq %rsi, %rsp
  68. movq %r12, %rdi
  69. call *%rbx
  70. movl %eax, %edi
  71. /*
  72. * Exit system call
  73. */
  74. #ifdef SYS_exit
  75. movq $SYS_exit, %rax
  76. #else
  77. movq $SYS_sys_exit, %rax
  78. #endif
  79. int $0x80
  80. /*
  81. * Branch here if the thread creation fails:
  82. */
  83. 2:
  84. popq %r12
  85. popq %rbx
  86. /*
  87. * Exit if error during fork
  88. */
  89. #ifdef SYS_exit
  90. movq $SYS_exit, %rax
  91. #else
  92. movq $SYS_sys_exit, %rax
  93. #endif
  94. int $0x80
  95. END(rfork_thread)
  96. .section .note.GNU-stack,"",%progbits