initfini.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. #undef GMON_SUPPORT
  32. /* We use embedded asm for .section unconditionally, as this makes it
  33. easier to insert the necessary directives into crtn.S. */
  34. #define SECTION(x) asm (".section " x )
  35. /* The initial common code ends here. */
  36. asm ("\n/*@HEADER_ENDS*/");
  37. /* To determine whether we need .end and .align: */
  38. //asm ("\n/*@TESTS_BEGIN*/");
  39. extern void dummy (void (*foo) (void));
  40. void
  41. dummy (void (*foo) (void))
  42. {
  43. if (foo)
  44. (*foo) ();
  45. }
  46. //asm ("\n/*@TESTS_END*/");
  47. /* The beginning of _init: */
  48. asm ("\n/*@_init_PROLOG_BEGINS*/");
  49. #ifdef GMON_SUPPORT
  50. static void
  51. call_gmon_start(void)
  52. {
  53. extern void __gmon_start__ (void) __attribute__ ((weak)); /*weak_extern (__gmon_start__);*/
  54. void (*gmon_start) (void) = __gmon_start__;
  55. if (gmon_start)
  56. gmon_start ();
  57. }
  58. #endif
  59. SECTION (".init");
  60. extern void _init (void);
  61. void
  62. _init (void)
  63. {
  64. #ifdef GMON_SUPPORT
  65. /* We cannot use the normal constructor mechanism in gcrt1.o because it
  66. appears before crtbegin.o in the link, so the header elt of .ctors
  67. would come after the elt for __gmon_start__. One approach is for
  68. gcrt1.o to reference a symbol which would be defined by some library
  69. module which has a constructor; but then user code's constructors
  70. would come first, and not be profiled. */
  71. call_gmon_start ();
  72. #else
  73. asm ("\n/*@_init_PROLOG_PAUSES*/");
  74. {
  75. /* Let GCC know that _init is not a leaf function by having a dummy
  76. * function call here. We arrange for this call to be omitted from
  77. * either crt file. */
  78. extern void i_am_not_a_leaf (void);
  79. i_am_not_a_leaf ();
  80. }
  81. asm ("\n/*@_init_PROLOG_UNPAUSES*/");
  82. #endif
  83. asm ("ALIGN");
  84. asm("END_INIT");
  85. /* Now the epilog. */
  86. asm ("\n/*@_init_PROLOG_ENDS*/");
  87. asm ("\n/*@_init_EPILOG_BEGINS*/");
  88. }
  89. /* End of the _init epilog, beginning of the _fini prolog. */
  90. asm ("\n/*@_init_EPILOG_ENDS*/");
  91. asm ("\n/*@_fini_PROLOG_BEGINS*/");
  92. SECTION (".fini");
  93. extern void _fini (void);
  94. void
  95. _fini (void)
  96. {
  97. /* End of the _fini prolog. */
  98. asm ("ALIGN");
  99. asm ("END_FINI");
  100. asm ("\n/*@_fini_PROLOG_ENDS*/");
  101. {
  102. /* Let GCC know that _fini is not a leaf function by having a dummy
  103. function call here. We arrange for this call to be omitted from
  104. either crt file. */
  105. extern void i_am_not_a_leaf (void);
  106. i_am_not_a_leaf ();
  107. }
  108. /* Beginning of the _fini epilog. */
  109. asm ("\n/*@_fini_EPILOG_BEGINS*/");
  110. }
  111. /* End of the _fini epilog. Any further generated assembly (e.g. .ident)
  112. is shared between both crt files. */
  113. asm ("\n/*@_fini_EPILOG_ENDS*/");
  114. asm ("\n/*@TRAILER_BEGINS*/");
  115. /* End of file. */