start.S 4.0 KB

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