crt1.S 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. /* This is the canonical entry point, usually the first thing in the text
  32. segment. The SVR4/m68k ABI says that when the entry point runs,
  33. most registers' values are unspecified, except for:
  34. %a1 Contains a function pointer to be registered with `atexit'.
  35. This is how the dynamic linker arranges to have DT_FINI
  36. functions called for shared libraries that have been loaded
  37. before this code runs.
  38. %sp The stack contains the arguments and environment:
  39. 0(%sp) argc
  40. 4(%sp) argv[0]
  41. ...
  42. (4*argc)(%sp) NULL
  43. (4*(argc+1))(%sp) envp[0]
  44. ...
  45. NULL
  46. The uclinux conventions are different. %a1 is not defined on entry
  47. and the stack is laid out as follows:
  48. 0(%sp) argc
  49. 4(%sp) argv
  50. 8(%sp) envp
  51. */
  52. #include <features.h>
  53. .text
  54. .type _init,%function
  55. .type _fini,%function
  56. #ifndef __UCLIBC_CTOR_DTOR__
  57. .weak _init
  58. .weak _fini
  59. #endif
  60. .globl _start
  61. .type _start,@function
  62. _start:
  63. /* Clear the frame pointer. The ABI suggests this be done, to mark
  64. the outermost frame obviously. */
  65. sub.l %fp, %fp
  66. /* Extract the arguments as encoded on the stack and set up the
  67. arguments for `main': argc, argv. envp will be determined
  68. later in __libc_start_main. */
  69. move.l (%sp)+, %d0 /* Pop the argument count. */
  70. #ifndef __ARCH_USE_MMU__
  71. move.l (%sp)+, %a0
  72. #else
  73. move.l %sp, %a0 /* The argument vector starts just at the
  74. current stack top. */
  75. #endif
  76. /* Provide the highest stack address to the user code (for stacks
  77. which grow downward). */
  78. pea (%sp)
  79. #ifndef __ARCH_USE_MMU__
  80. clr.l -(%sp)
  81. #else
  82. pea (%a1) /* Push address of the shared library
  83. termination function. */
  84. #endif
  85. /* Push the address of our own entry points to `.fini' and
  86. `.init'. */
  87. pea _fini
  88. pea _init
  89. pea (%a0) /* Push second argument: argv. */
  90. move.l %d0, -(%sp) /* Push first argument: argc. */
  91. pea main
  92. /* Call the user's main function, and exit with its value. But
  93. let the libc call main. */
  94. jbsr __uClibc_main
  95. illegal /* Crash if somehow `exit' does return. */
  96. /* Define a symbol for the first piece of initialized data. */
  97. .data
  98. .globl __data_start
  99. __data_start:
  100. .long 0
  101. .weak data_start
  102. data_start = __data_start