crt1.S 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* Startup code compliant to the ELF m68k ABI.
  2. Copyright (C) 1996, 1997, 1998, 2001, 2002 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  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. In addition to the permissions in the GNU Lesser General Public
  9. License, the Free Software Foundation gives you unlimited
  10. permission to link the compiled version of this file with other
  11. programs, and to distribute those programs without any restriction
  12. coming from the use of this file. (The GNU Lesser General Public
  13. License restrictions do apply in other respects; for example, they
  14. cover modification of the file, and distribution when not linked
  15. into another program.)
  16. Note that people who make modified versions of this file are not
  17. obligated to grant this special exception for their modified
  18. versions; it is their choice whether to do so. The GNU Lesser
  19. General Public License gives permission to release a modified
  20. version without this exception; this exception also makes it
  21. possible to release a modified version which carries forward this
  22. exception.
  23. The GNU C Library is distributed in the hope that it will be useful,
  24. but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  26. Lesser General Public License for more details.
  27. You should have received a copy of the GNU Lesser General Public
  28. License along with the GNU C Library; if not, write to the Free
  29. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  30. 02111-1307 USA. */
  31. #include <features.h>
  32. #include "m68k_pic.S"
  33. #ifndef L_Scrt1
  34. /* This is the canonical entry point, usually the first thing in the text
  35. segment. The SVR4/m68k ABI says that when the entry point runs,
  36. most registers' values are unspecified, except for:
  37. %a1 Contains a function pointer to be registered with `atexit'.
  38. This is how the dynamic linker arranges to have DT_FINI
  39. functions called for shared libraries that have been loaded
  40. before this code runs.
  41. %sp The stack contains the arguments and environment:
  42. 0(%sp) argc
  43. 4(%sp) argv[0]
  44. ...
  45. (4*argc)(%sp) NULL
  46. (4*(argc+1))(%sp) envp[0]
  47. ...
  48. NULL
  49. The uclinux conventions are different. %a1 is not defined on entry
  50. and the stack is laid out as follows:
  51. 0(%sp) argc
  52. 4(%sp) argv
  53. 8(%sp) envp
  54. */
  55. .text
  56. .type _init,%function
  57. .type _fini,%function
  58. #ifndef __UCLIBC_CTOR_DTOR__
  59. .weak _init
  60. .weak _fini
  61. #endif
  62. .globl _start
  63. .type _start,@function
  64. _start:
  65. /* Clear the frame pointer. The ABI suggests this be done, to mark
  66. the outermost frame obviously. */
  67. sub.l %fp, %fp
  68. #if !defined __ARCH_USE_MMU__ && defined __PIC__
  69. /* Set up the global pointer. The GOT is at the beginning of the
  70. data segment, whose address is in %d5. */
  71. move.l %d5,%a5
  72. .equ have_current_got, 1
  73. #endif
  74. #ifdef __HAVE_SHARED_FLAT__
  75. CALL __shared_flat_add_library,%a1
  76. #endif
  77. /* Extract the arguments as encoded on the stack and set up the
  78. arguments for `main': argc, argv. envp will be determined
  79. later in __libc_start_main. */
  80. move.l (%sp)+, %d0 /* Pop the argument count. */
  81. #ifndef __ARCH_USE_MMU__
  82. move.l (%sp)+, %a0
  83. #else
  84. move.l %sp, %a0 /* The argument vector starts just at the
  85. current stack top. */
  86. #endif
  87. /* Provide the highest stack address to the user code (for stacks
  88. which grow downward). */
  89. pea (%sp)
  90. #ifndef __ARCH_USE_MMU__
  91. clr.l -(%sp)
  92. #else
  93. pea (%a1) /* Push address of the shared library
  94. termination function. */
  95. #endif
  96. /* Push the address of our own entry points to `.fini' and
  97. `.init'. */
  98. #if defined __HAVE_SHARED_FLAT__
  99. PEA_TEXT __shared_flat_fini,%a1
  100. PEA_TEXT __shared_flat_init,%a1
  101. #else
  102. PEA_TEXT _fini,%a1
  103. PEA_TEXT _init,%a1
  104. #endif
  105. pea (%a0) /* Push second argument: argv. */
  106. move.l %d0, -(%sp) /* Push first argument: argc. */
  107. PEA_TEXT main,%a1
  108. /* Call the user's main function, and exit with its value. But
  109. let the libc call main. */
  110. CALL __uClibc_main,%a1
  111. illegal /* Crash if somehow `exit' does return. */
  112. #else
  113. .text
  114. .globl lib_main
  115. .hidden lib_main
  116. .type lib_main,@function
  117. lib_main:
  118. move.l %d5,%a5
  119. JUMP __shared_flat_add_library,%a0
  120. .hidden _current_shared_library_a5_offset_
  121. #endif
  122. /* Define a symbol for the first piece of initialized data. */
  123. .data
  124. .globl __data_start
  125. __data_start:
  126. .long 0
  127. .weak data_start
  128. data_start = __data_start