initfini.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /* Special .init and .fini section support.
  2. Copyright (C) 1995, 1996, 1997, 2000 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. The GNU C Library is distributed in the hope that it will be useful,
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. Lesser General Public License for more details.
  20. You should have received a copy of the GNU Lesser General Public
  21. License along with the GNU C Library; if not, write to the Free
  22. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  23. 02111-1307 USA. */
  24. /* This file is compiled into assembly code which is then munged by a sed
  25. script into two files: crti.s and crtn.s.
  26. * crti.s puts a function prologue at the beginning of the
  27. .init and .fini sections and defines global symbols for
  28. those addresses, so they can be called as functions.
  29. * crtn.s puts the corresponding function epilogues
  30. in the .init and .fini sections. */
  31. #include <features.h>
  32. #undef GMON_SUPPORT
  33. /* We use embedded asm for .section unconditionally, as this makes it
  34. easier to insert the necessary directives into crtn.S. */
  35. #define SECTION(x) asm (".section " x );
  36. /* Declare symbols as hidden. Hidden symbols are only seen by
  37. * the link editor and not by the dynamic loader. */
  38. #ifdef __HAVE_DOT_HIDDEN__
  39. # define HIDDEN(func) asm (".hidden " #func );
  40. #else
  41. # define HIDDEN(func)
  42. #endif
  43. #if defined(__sh__)
  44. /* The macro insert this sh specific stuff:
  45. @_SH_GLB_BEGINS
  46. bra 1f
  47. nop
  48. ALIGN
  49. @func_SH_GLB_LABEL
  50. 1:
  51. @_SH_GLB_ENDS
  52. */
  53. #define GLB_STUFF(func) asm ("\n/*@_SH_GLB_BEGINS*/"); \
  54. asm ("\n\tbra\t1f\n\tnop\n\tALIGN\n/*@" #func"_SH_GLB_LABEL*/\n1:"); \
  55. asm ("\n/*@_SH_GLB_ENDS*/");
  56. #else
  57. #define GLB_STUFF(func)
  58. #endif
  59. /* The initial common code ends here. */
  60. asm ("\n/*@HEADER_ENDS*/");
  61. /* To determine whether we need .end and .align: */
  62. //asm ("\n/*@TESTS_BEGIN*/");
  63. extern void dummy (void (*foo) (void));
  64. void
  65. dummy (void (*foo) (void))
  66. {
  67. if (foo)
  68. (*foo) ();
  69. }
  70. //asm ("\n/*@TESTS_END*/");
  71. /* The beginning of _init: */
  72. asm ("\n/*@_init_PROLOG_BEGINS*/");
  73. #ifdef GMON_SUPPORT
  74. static void
  75. call_gmon_start(void)
  76. {
  77. extern void __gmon_start__ (void) __attribute__ ((weak)); /*weak_extern (__gmon_start__);*/
  78. void (*gmon_start) (void) = __gmon_start__;
  79. if (gmon_start)
  80. gmon_start ();
  81. }
  82. #endif
  83. SECTION (".init")
  84. HIDDEN(_init)
  85. extern void i_am_not_a_leaf (void);
  86. extern void _init (void);
  87. void _init (void)
  88. {
  89. #ifdef GMON_SUPPORT
  90. /* We cannot use the normal constructor mechanism in gcrt1.o because it
  91. appears before crtbegin.o in the link, so the header elt of .ctors
  92. would come after the elt for __gmon_start__. One approach is for
  93. gcrt1.o to reference a symbol which would be defined by some library
  94. module which has a constructor; but then user code's constructors
  95. would come first, and not be profiled. */
  96. call_gmon_start ();
  97. #else
  98. asm ("\n/*@_init_PROLOG_PAUSES*/");
  99. {
  100. /* Let GCC know that _init is not a leaf function by having a dummy
  101. * function call here. We arrange for this call to be omitted from
  102. * either crt file. */
  103. i_am_not_a_leaf ();
  104. }
  105. asm ("\n/*@_init_PROLOG_UNPAUSES*/");
  106. #endif
  107. GLB_STUFF(_init)
  108. asm ("ALIGN");
  109. asm("END_INIT");
  110. /* Now the epilog. */
  111. asm ("\n/*@_init_PROLOG_ENDS*/");
  112. asm ("\n/*@_init_EPILOG_BEGINS*/");
  113. }
  114. /* End of the _init epilog, beginning of the _fini prolog. */
  115. asm ("\n/*@_init_EPILOG_ENDS*/");
  116. asm ("\n/*@_fini_PROLOG_BEGINS*/");
  117. SECTION (".fini")
  118. HIDDEN(_fini)
  119. extern void i_am_not_a_leaf2 (void);
  120. extern void _fini (void);
  121. void _fini (void)
  122. {
  123. /* End of the _fini prolog. */
  124. GLB_STUFF(_fini)
  125. asm ("ALIGN");
  126. asm ("END_FINI");
  127. asm ("\n/*@_fini_PROLOG_ENDS*/");
  128. {
  129. /* Let GCC know that _fini is not a leaf function by having a dummy
  130. function call here. We arrange for this call to be omitted from
  131. either crt file. */
  132. i_am_not_a_leaf2 ();
  133. }
  134. /* Beginning of the _fini epilog. */
  135. asm ("\n/*@_fini_EPILOG_BEGINS*/");
  136. }
  137. /* End of the _fini epilog. Any further generated assembly (e.g. .ident)
  138. is shared between both crt files. */
  139. asm ("\n/*@_fini_EPILOG_ENDS*/");
  140. asm ("\n/*@TRAILER_BEGINS*/");
  141. /* End of file. */