crt0.S 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* Startup code for SH & ELF.
  2. Copyright (C) 1999 Free Software Foundation, Inc.
  3. Copyright (C) 2001 Hewlett-Packard Australia
  4. This program is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU Library General Public License as published by the Free
  6. Software Foundation; either version 2 of the License, or (at your option) any
  7. later version.
  8. This program is distributed in the hope that it will be useful, but WITHOUT
  9. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  10. FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  11. details.
  12. You should have received a copy of the GNU Library General Public License
  13. along with this program; if not, write to the Free Software Foundation, Inc.,
  14. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  15. Derived in part from the Linux-8086 C library, the GNU C Library, and several
  16. other sundry sources. Files within this library are copyright by their
  17. respective copyright holders.
  18. */
  19. /* This is the canonical entry point, usually the first thing in the text
  20. segment.
  21. At this entry point, most registers' values are unspecified, except:
  22. r4 Contains a function pointer to be registered with `atexit'.
  23. This is how the dynamic linker arranges to have DT_FINI
  24. functions called for shared libraries that have been loaded
  25. before this code runs.
  26. WARNING: At that stage only static linker is supported. For
  27. uCLinux we won't bother with r4.
  28. sp The stack contains the arguments and environment:
  29. 0(sp) argc
  30. 4(sp) argv[0]
  31. ...
  32. (4*argc)(sp) NULL
  33. (4*(argc+1))(sp) envp[0]
  34. ...
  35. NULL
  36. */
  37. .text
  38. .globl _start
  39. .type _start,@function
  40. .size _start,_start_end - _start
  41. _start:
  42. /* Clear the frame pointer since this is the outermost frame. (in delay slot) */
  43. mov #0, r14
  44. /* Pop argc off the stack and save a pointer to argv */
  45. mov.l @r15+,r4
  46. mov r15, r5
  47. /*
  48. * Setup the value for the environment pointer:
  49. * r6 = (argc + 1) * 4
  50. * r6 += argv (in delay slot)
  51. */
  52. mov r4,r6
  53. add #1,r6
  54. shll2 r6
  55. add r5,r6
  56. /* call main */
  57. mov.l L_main, r0
  58. jsr @r0
  59. nop /* delay slot */
  60. /* We should not get here. */
  61. mov.l L_abort, r0
  62. jsr @r0
  63. nop /* delay slot */
  64. _start_end:
  65. .align 2
  66. L_main:
  67. .long __uClibc_main
  68. L_abort:
  69. .long abort
  70. /* Stick in a dummy reference to main(), so that if an application
  71. * is linking when the main() function is in a static library (.a)
  72. * we can be sure that main() actually gets linked in */
  73. L_dummy_main_reference:
  74. .long main
  75. .data