crt0.S 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If
  13. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  14. Cambridge, MA 02139, USA. */
  15. /* Based on the code from GNU libc, but hacked up by John Beppu and Erik Andersen */
  16. /*
  17. When we enter this piece of code, the program stack looks like this:
  18. argc argument counter (integer)
  19. argv[0] program name (pointer)
  20. argv[1...N] program args (pointers)
  21. argv[argc-1] end of args (integer)
  22. env[0...N] environment variables (pointers)
  23. NULL
  24. */
  25. .global __environ
  26. .global _start
  27. .global exit
  28. .global main
  29. .global __stdio_close_all
  30. .global _void_void_null_func
  31. .global _start_exit
  32. .text
  33. _start:
  34. /* First locate the start of the environment variables */
  35. popl %ecx /* Store argc into %ecx */
  36. movl %esp,%ebx /* Store argv into ebx */
  37. movl %esp,%eax /* Store argv into eax as well*/
  38. movl %ecx,%edx /* Stick argc into %edx so we can do some math in a sec */
  39. leal 4(%eax,%edx,4),%eax
  40. /* [ register layout ]
  41. sizeof(char*) == 4
  42. %ecx = argc ; 0(esp)
  43. %ebx = argv ; 4(esp)
  44. %eax = env ; argv + (argc * 4) + 4
  45. */
  46. /* Set up an invalid (NULL return address, NULL frame pointer)
  47. callers stack frame so anybody unrolling the stack knows where
  48. to stop */
  49. xorl %ebp,%ebp /* NULL */
  50. pushl %ebp /* callers %cs */
  51. pushl %ebp /* callers %eip (return address) */
  52. pushl %ebp /* callers %ebp (frame pointer) */
  53. movl %esp,%ebp /* mark callers stack frame as invalid */
  54. /* Now set the environment, argc, and argv where the app can get to them */
  55. pushl %eax /* Environment pointer */
  56. pushl %ebx /* Argument pointer */
  57. pushl %ecx /* And the argument count */
  58. /* Make sure we are not using iBCS2 personality. (i.e. force linux). */
  59. movl $136,%eax
  60. sub %ebx,%ebx
  61. int $0x80
  62. /* set up __environ */
  63. movl 8(%esp),%eax
  64. movl %eax,__environ
  65. /* Tell libc to initialize anything it needs to do */
  66. call __libc_init
  67. /* call __malloc_init */
  68. call __init_stdio
  69. /* Ok, now run main() */
  70. call main
  71. pushl %eax
  72. call exit
  73. /* Just in case _exit fails... We use int $0x80 for __exit(). */
  74. popl %ebx
  75. .align 4,0x90
  76. _start_exit:
  77. movl $1,%eax
  78. int $0x80
  79. jmp _start_exit
  80. .align 4,0x90
  81. _void_void_null_func:
  82. ret
  83. .weak __libc_init
  84. __libc_init = _void_void_null_func
  85. /*
  86. .weak __malloc_init
  87. __malloc_init = _void_void_null_func
  88. */
  89. .weak __init_stdio
  90. __init_stdio = _void_void_null_func
  91. .weak __stdio_close_all
  92. __stdio_close_all = _void_void_null_func
  93. .data
  94. __environ:
  95. .long 0
  96. .weak environ
  97. .align 4
  98. environ = __environ