start.S 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* Copyright (C) 1999-2019 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Written by Jes Sorensen, <Jes.Sorensen@cern.ch>, April 1999.
  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. #include <sysdep.h>
  31. #include <asm/unistd.h>
  32. #include <asm/fpu.h>
  33. /*
  34. * Arguments for __libc_start_main:
  35. * out0: main
  36. * out1: argc
  37. * out2: argv
  38. * out3: init
  39. * out4: fini
  40. * out5: rtld_fini
  41. * out6: stack_end
  42. */
  43. .align 32
  44. .global _start
  45. .proc _start
  46. .type _start,@function
  47. _start:
  48. .prologue
  49. .save rp, r0
  50. .body
  51. .prologue
  52. { .mlx
  53. alloc r2 = ar.pfs,0,0,7,0
  54. movl r3 = FPSR_DEFAULT
  55. }
  56. { .mlx
  57. adds out2 = 16, sp /* get address of argc value */
  58. movl gp = @gprel(0f)
  59. ;;
  60. }
  61. 0: { .mmi
  62. ld8 out1 = [out2], 8 /* load argc and move out2 to become argv */
  63. mov.m r10 = ar.bsp /* fetch rbs base address */
  64. mov r9 = ip
  65. ;;
  66. }
  67. { .mii
  68. mov ar.fpsr = r3
  69. sub gp = r9, gp /* back-compute gp value */
  70. adds out6 = 16, sp /* highest non-environment stack address */
  71. ;;
  72. }
  73. {
  74. addl r11 = @ltoff(__libc_ia64_register_backing_store_base), gp
  75. addl out0 = @ltoff(@fptr(main)), gp
  76. addl out3 = @ltoff(@fptr(__libc_csu_init)), gp
  77. ;;
  78. }
  79. { .mmi
  80. ld8 r3 = [r11] /* pointer to __libc_ia64_register_backing_store_base */
  81. ld8 out0 = [out0] /* pointer to `main' function descriptor */
  82. addl out4 = @ltoff(@fptr(__libc_csu_fini)), gp
  83. ;;
  84. }
  85. { .mmi
  86. ld8 out3 = [out3] /* pointer to `init' function descriptor */
  87. ld8 out4 = [out4] /* pointer to `fini' function descriptor */
  88. nop 0
  89. }
  90. .body
  91. { .mib
  92. st8 [r3] = r10
  93. mov out5 = ret0 /* dynamic linker destructor */
  94. br.call.sptk.few rp = __libc_start_main
  95. }
  96. { .mib
  97. break 0 /* break miserably if we ever return */
  98. }
  99. .endp _start
  100. /* Define a symbol for the first piece of initialized data. */
  101. .data
  102. .globl __data_start
  103. __data_start:
  104. .long 0
  105. .weak data_start
  106. data_start = __data_start
  107. .common __libc_ia64_register_backing_store_base, 8, 8