crt1.S 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. */
  47. #include <features.h>
  48. .text
  49. .type _init,%function
  50. .type _fini,%function
  51. #ifndef __UCLIBC_CTOR_DTOR__
  52. .weak _init
  53. .weak _fini
  54. #endif
  55. .globl _start
  56. .type _start,@function
  57. _start:
  58. /* Clear the frame pointer. The ABI suggests this be done, to mark
  59. the outermost frame obviously. */
  60. sub.l %fp, %fp
  61. /* Extract the arguments as encoded on the stack and set up the
  62. arguments for `main': argc, argv. envp will be determined
  63. later in __libc_start_main. */
  64. move.l (%sp)+, %d0 /* Pop the argument count. */
  65. move.l %sp, %a0 /* The argument vector starts just at the
  66. current stack top. */
  67. /* Provide the highest stack address to the user code (for stacks
  68. which grow downward). */
  69. pea (%sp)
  70. pea (%a1) /* Push address of the shared library
  71. termination function. */
  72. /* Push the address of our own entry points to `.fini' and
  73. `.init'. */
  74. pea _fini
  75. pea _init
  76. pea (%a0) /* Push second argument: argv. */
  77. move.l %d0, -(%sp) /* Push first argument: argc. */
  78. pea main
  79. /* Call the user's main function, and exit with its value. But
  80. let the libc call main. */
  81. jbsr __uClibc_main
  82. illegal /* Crash if somehow `exit' does return. */
  83. /* Define a symbol for the first piece of initialized data. */
  84. .data
  85. .globl __data_start
  86. __data_start:
  87. .long 0
  88. .weak data_start
  89. data_start = __data_start