1 /* Specialized bits of code needed to support construction and
2 destruction of file-scope objects in C++ code.
3 Copyright (C) 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
4 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011
5 Free Software Foundation, Inc.
6 Contributed by Ron Guilmette (rfg@monkeys.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 Under Section 7 of GPL version 3, you are granted additional
21 permissions described in the GCC Runtime Library Exception, version
22 3.1, as published by the Free Software Foundation.
24 You should have received a copy of the GNU General Public License and
25 a copy of the GCC Runtime Library Exception along with this program;
26 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
27 <http://www.gnu.org/licenses/>. */
29 /* This file is a bit like libgcc2.c in that it is compiled
30 multiple times and yields multiple .o files.
32 This file is useful on target machines where the object file format
33 supports multiple "user-defined" sections (e.g. COFF, ELF, ROSE). On
34 such systems, this file allows us to avoid running collect (or any
35 other such slow and painful kludge). Additionally, if the target
36 system supports a .init section, this file allows us to support the
37 linking of C++ code with a non-C++ main program.
39 Note that if INIT_SECTION_ASM_OP is defined in the tm.h file, then
40 this file *will* make use of the .init section. If that symbol is
41 not defined however, then the .init section will not be used.
43 Currently, only ELF and COFF are supported. It is likely however that
44 ROSE could also be supported, if someone was willing to do the work to
45 make whatever (small?) adaptations are needed. (Some work may be
46 needed on the ROSE assembler and linker also.)
48 This file must be compiled with gcc. */
50 /* Target machine header files require this define. */
53 /* FIXME: Including auto-host is incorrect, but until we have
54 identified the set of defines that need to go into auto-target.h,
55 this will have to do. */
56 #include "auto-host.h"
63 #include "coretypes.h"
65 #include "libgcc_tm.h"
66 #include "unwind-dw2-fde.h"
68 #ifndef FORCE_CODE_SECTION_ALIGN
69 # define FORCE_CODE_SECTION_ALIGN
72 #ifndef CRT_CALL_STATIC_FUNCTION
73 # define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
74 static void __attribute__((__used__)) \
75 call_ ## FUNC (void) \
79 FORCE_CODE_SECTION_ALIGN \
80 asm (TEXT_SECTION_ASM_OP); \
84 #if defined(OBJECT_FORMAT_ELF) \
85 && !defined(OBJECT_FORMAT_FLAT) \
86 && defined(HAVE_LD_EH_FRAME_HDR) \
87 && !defined(inhibit_libc) && !defined(CRTSTUFFT_O) \
88 && defined(__FreeBSD__) && __FreeBSD__ >= 7
90 # define USE_PT_GNU_EH_FRAME
93 #if defined(OBJECT_FORMAT_ELF) \
94 && !defined(OBJECT_FORMAT_FLAT) \
95 && defined(HAVE_LD_EH_FRAME_HDR) && defined(TARGET_DL_ITERATE_PHDR) \
96 && !defined(inhibit_libc) && !defined(CRTSTUFFT_O) \
97 && defined(__sun__) && defined(__svr4__)
99 # define USE_PT_GNU_EH_FRAME
102 #if defined(OBJECT_FORMAT_ELF) \
103 && !defined(OBJECT_FORMAT_FLAT) \
104 && defined(HAVE_LD_EH_FRAME_HDR) \
105 && !defined(inhibit_libc) && !defined(CRTSTUFFT_O) \
106 && defined(__GLIBC__) && __GLIBC__ >= 2
108 /* uClibc pretends to be glibc 2.2 and DT_CONFIG is defined in its link.h.
109 But it doesn't use PT_GNU_EH_FRAME ELF segment currently. */
110 # if !defined(__UCLIBC__) \
111 && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) \
112 || (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2 && defined(DT_CONFIG)))
113 # define USE_PT_GNU_EH_FRAME
116 #if defined(EH_FRAME_SECTION_NAME) && !defined(USE_PT_GNU_EH_FRAME)
117 # define USE_EH_FRAME_REGISTRY
119 #if defined(EH_FRAME_SECTION_NAME) && EH_TABLES_CAN_BE_READ_ONLY
120 # define EH_FRAME_SECTION_CONST const
122 # define EH_FRAME_SECTION_CONST
125 #if !defined(DTOR_LIST_END) && defined(OBJECT_FORMAT_ELF) \
126 && defined(HAVE_GAS_HIDDEN) && !defined(FINI_ARRAY_SECTION_ASM_OP)
127 # define HIDDEN_DTOR_LIST_END
130 #if !defined(USE_TM_CLONE_REGISTRY) && defined(OBJECT_FORMAT_ELF)
131 # define USE_TM_CLONE_REGISTRY 1
134 /* We do not want to add the weak attribute to the declarations of these
135 routines in unwind-dw2-fde.h because that will cause the definition of
136 these symbols to be weak as well.
138 This exposes a core issue, how to handle creating weak references vs
139 how to create weak definitions. Either we have to have the definition
140 of TARGET_WEAK_ATTRIBUTE be conditional in the shared header files or
141 have a second declaration if we want a function's references to be weak,
142 but not its definition.
144 Making TARGET_WEAK_ATTRIBUTE conditional seems like a good solution until
145 one thinks about scaling to larger problems -- i.e., the condition under
146 which TARGET_WEAK_ATTRIBUTE is active will eventually get far too
149 So, we take an approach similar to #pragma weak -- we have a second
150 declaration for functions that we want to have weak references.
152 Neither way is particularly good. */
154 /* References to __register_frame_info and __deregister_frame_info should
155 be weak in this file if at all possible. */
156 extern void __register_frame_info (const void *, struct object
*)
157 TARGET_ATTRIBUTE_WEAK
;
158 extern void __register_frame_info_bases (const void *, struct object
*,
160 TARGET_ATTRIBUTE_WEAK
;
161 extern void *__deregister_frame_info (const void *)
162 TARGET_ATTRIBUTE_WEAK
;
163 extern void *__deregister_frame_info_bases (const void *)
164 TARGET_ATTRIBUTE_WEAK
;
165 extern void __do_global_ctors_1 (void);
167 /* Likewise for _Jv_RegisterClasses. */
168 extern void _Jv_RegisterClasses (void *) TARGET_ATTRIBUTE_WEAK
;
170 /* Likewise for transactional memory clone tables. */
171 extern void _ITM_registerTMCloneTable (void *, size_t) TARGET_ATTRIBUTE_WEAK
;
172 extern void _ITM_deregisterTMCloneTable (void *) TARGET_ATTRIBUTE_WEAK
;
174 #ifdef OBJECT_FORMAT_ELF
176 /* Declare a pointer to void function type. */
177 typedef void (*func_ptr
) (void);
178 #define STATIC static
180 #else /* OBJECT_FORMAT_ELF */
182 #include "gbl-ctors.h"
186 #endif /* OBJECT_FORMAT_ELF */
190 /* NOTE: In order to be able to support SVR4 shared libraries, we arrange
191 to have one set of symbols { __CTOR_LIST__, __DTOR_LIST__, __CTOR_END__,
192 __DTOR_END__ } per root executable and also one set of these symbols
193 per shared library. So in any given whole process image, we may have
194 multiple definitions of each of these symbols. In order to prevent
195 these definitions from conflicting with one another, and in order to
196 ensure that the proper lists are used for the initialization/finalization
197 of each individual shared library (respectively), we give these symbols
198 only internal (i.e. `static') linkage, and we also make it a point to
199 refer to only the __CTOR_END__ symbol in crtend.o and the __DTOR_LIST__
200 symbol in crtbegin.o, where they are defined. */
202 /* No need for .ctors/.dtors section if linker can place them in
203 .init_array/.fini_array section. */
204 #ifndef USE_INITFINI_ARRAY
205 /* The -1 is a flag to __do_global_[cd]tors indicating that this table
206 does not start with a count of elements. */
207 #ifdef CTOR_LIST_BEGIN
209 #elif defined(CTORS_SECTION_ASM_OP)
210 /* Hack: force cc1 to switch to .data section early, so that assembling
211 __CTOR_LIST__ does not undo our behind-the-back change to .ctors. */
212 static func_ptr force_to_data
[1] __attribute__ ((__used__
)) = { };
213 asm (CTORS_SECTION_ASM_OP
);
214 STATIC func_ptr __CTOR_LIST__
[1]
215 __attribute__ ((__used__
, aligned(sizeof(func_ptr
))))
216 = { (func_ptr
) (-1) };
218 STATIC func_ptr __CTOR_LIST__
[1]
219 __attribute__ ((__used__
, section(".ctors"), aligned(sizeof(func_ptr
))))
220 = { (func_ptr
) (-1) };
221 #endif /* __CTOR_LIST__ alternatives */
223 #ifdef DTOR_LIST_BEGIN
225 #elif defined(DTORS_SECTION_ASM_OP)
226 asm (DTORS_SECTION_ASM_OP
);
227 STATIC func_ptr __DTOR_LIST__
[1]
228 __attribute__ ((aligned(sizeof(func_ptr
))))
229 = { (func_ptr
) (-1) };
231 STATIC func_ptr __DTOR_LIST__
[1]
232 __attribute__((section(".dtors"), aligned(sizeof(func_ptr
))))
233 = { (func_ptr
) (-1) };
234 #endif /* __DTOR_LIST__ alternatives */
235 #endif /* USE_INITFINI_ARRAY */
237 #ifdef USE_EH_FRAME_REGISTRY
238 /* Stick a label at the beginning of the frame unwind info so we can register
239 and deregister it with the exception handling library code. */
240 STATIC EH_FRAME_SECTION_CONST
char __EH_FRAME_BEGIN__
[]
241 __attribute__((section(EH_FRAME_SECTION_NAME
), aligned(4)))
243 #endif /* USE_EH_FRAME_REGISTRY */
245 #ifdef JCR_SECTION_NAME
246 /* Stick a label at the beginning of the java class registration info
247 so we can register them properly. */
248 STATIC
void *__JCR_LIST__
[]
249 __attribute__ ((used
, section(JCR_SECTION_NAME
), aligned(sizeof(void*))))
251 #endif /* JCR_SECTION_NAME */
253 #if USE_TM_CLONE_REGISTRY
254 STATIC func_ptr __TMC_LIST__
[]
255 __attribute__((used
, section(".tm_clone_table"), aligned(sizeof(void*))))
257 # ifdef HAVE_GAS_HIDDEN
258 extern func_ptr __TMC_END__
[] __attribute__((__visibility__ ("hidden")));
262 deregister_tm_clones (void)
266 #ifdef HAVE_GAS_HIDDEN
267 if (__TMC_END__
- __TMC_LIST__
== 0)
270 if (__TMC_LIST__
[0] == NULL
)
274 fn
= _ITM_deregisterTMCloneTable
;
275 __asm ("" : "+r" (fn
));
281 register_tm_clones (void)
283 void (*fn
) (void *, size_t);
286 #ifdef HAVE_GAS_HIDDEN
287 size
= (__TMC_END__
- __TMC_LIST__
) / 2;
289 for (size
= 0; __TMC_LIST__
[size
* 2] != NULL
; size
++)
295 fn
= _ITM_registerTMCloneTable
;
296 __asm ("" : "+r" (fn
));
298 fn (__TMC_LIST__
, size
);
300 #endif /* USE_TM_CLONE_REGISTRY */
302 #if defined(INIT_SECTION_ASM_OP) || defined(INIT_ARRAY_SECTION_ASM_OP)
304 #ifdef OBJECT_FORMAT_ELF
306 /* Declare the __dso_handle variable. It should have a unique value
307 in every shared-object; in a main program its value is zero. The
308 object should in any case be protected. This means the instance
309 in one DSO or the main program is not used in another object. The
310 dynamic linker takes care of this. */
312 #ifdef TARGET_LIBGCC_SDATA_SECTION
313 extern void *__dso_handle
__attribute__ ((__section__ (TARGET_LIBGCC_SDATA_SECTION
)));
315 #ifdef HAVE_GAS_HIDDEN
316 extern void *__dso_handle
__attribute__ ((__visibility__ ("hidden")));
319 void *__dso_handle
= &__dso_handle
;
321 void *__dso_handle
= 0;
324 /* The __cxa_finalize function may not be available so we use only a
326 extern void __cxa_finalize (void *) TARGET_ATTRIBUTE_WEAK
;
328 /* Run all the global destructors on exit from the program. */
330 /* Some systems place the number of pointers in the first word of the
331 table. On SVR4 however, that word is -1. In all cases, the table is
332 null-terminated. On SVR4, we start from the beginning of the list and
333 invoke each per-compilation-unit destructor routine in order
334 until we find that null.
336 Note that this function MUST be static. There will be one of these
337 functions in each root executable and one in each shared library, but
338 although they all have the same code, each one is unique in that it
339 refers to one particular associated `__DTOR_LIST__' which belongs to the
340 same particular root executable or shared library file.
342 On some systems, this routine is run more than once from the .fini,
343 when exit is called recursively, so we arrange to remember where in
344 the list we left off processing, and we resume at that point,
345 should we be re-invoked. */
347 static void __attribute__((used
))
348 __do_global_dtors_aux (void)
350 static _Bool completed
;
352 if (__builtin_expect (completed
, 0))
357 __cxa_finalize (__dso_handle
);
360 #ifdef FINI_ARRAY_SECTION_ASM_OP
361 /* If we are using .fini_array then destructors will be run via that
363 #elif defined(HIDDEN_DTOR_LIST_END)
365 /* Safer version that makes sure only .dtors function pointers are
366 called even if the static variable is maliciously changed. */
367 extern func_ptr __DTOR_END__
[] __attribute__((visibility ("hidden")));
368 static size_t dtor_idx
;
369 const size_t max_idx
= __DTOR_END__
- __DTOR_LIST__
- 1;
372 while (dtor_idx
< max_idx
)
374 f
= __DTOR_LIST__
[++dtor_idx
];
378 #else /* !defined (FINI_ARRAY_SECTION_ASM_OP) */
380 static func_ptr
*p
= __DTOR_LIST__
+ 1;
389 #endif /* !defined(FINI_ARRAY_SECTION_ASM_OP) */
391 #if USE_TM_CLONE_REGISTRY
392 deregister_tm_clones ();
393 #endif /* USE_TM_CLONE_REGISTRY */
395 #ifdef USE_EH_FRAME_REGISTRY
396 #ifdef CRT_GET_RFIB_DATA
397 /* If we used the new __register_frame_info_bases interface,
398 make sure that we deregister from the same place. */
399 if (__deregister_frame_info_bases
)
400 __deregister_frame_info_bases (__EH_FRAME_BEGIN__
);
402 if (__deregister_frame_info
)
403 __deregister_frame_info (__EH_FRAME_BEGIN__
);
410 /* Stick a call to __do_global_dtors_aux into the .fini section. */
411 #ifdef FINI_SECTION_ASM_OP
412 CRT_CALL_STATIC_FUNCTION (FINI_SECTION_ASM_OP
, __do_global_dtors_aux
)
413 #elif defined (FINI_ARRAY_SECTION_ASM_OP)
414 static func_ptr __do_global_dtors_aux_fini_array_entry
[]
415 __attribute__ ((__used__
, section(".fini_array"), aligned(sizeof(func_ptr
))))
416 = { __do_global_dtors_aux
};
417 #else /* !FINI_SECTION_ASM_OP && !FINI_ARRAY_SECTION_ASM_OP */
418 static void __attribute__((used
))
419 __do_global_dtors_aux_1 (void)
421 atexit (__do_global_dtors_aux
);
423 CRT_CALL_STATIC_FUNCTION (INIT_SECTION_ASM_OP
, __do_global_dtors_aux_1
)
426 #if defined(USE_EH_FRAME_REGISTRY) \
427 || defined(JCR_SECTION_NAME) \
428 || defined(USE_TM_CLONE_REGISTRY)
429 /* Stick a call to __register_frame_info into the .init section. For some
430 reason calls with no arguments work more reliably in .init, so stick the
431 call in another function. */
433 static void __attribute__((used
))
436 #ifdef USE_EH_FRAME_REGISTRY
437 static struct object object
;
438 #ifdef CRT_GET_RFIB_DATA
441 CRT_GET_RFIB_DATA (dbase
);
442 if (__register_frame_info_bases
)
443 __register_frame_info_bases (__EH_FRAME_BEGIN__
, &object
, tbase
, dbase
);
445 if (__register_frame_info
)
446 __register_frame_info (__EH_FRAME_BEGIN__
, &object
);
447 #endif /* CRT_GET_RFIB_DATA */
448 #endif /* USE_EH_FRAME_REGISTRY */
450 #ifdef JCR_SECTION_NAME
453 void (*register_classes
) (void *) = _Jv_RegisterClasses
;
454 __asm ("" : "+r" (register_classes
));
455 if (register_classes
)
456 register_classes (__JCR_LIST__
);
458 #endif /* JCR_SECTION_NAME */
460 #if USE_TM_CLONE_REGISTRY
461 register_tm_clones ();
462 #endif /* USE_TM_CLONE_REGISTRY */
465 #ifdef INIT_SECTION_ASM_OP
466 CRT_CALL_STATIC_FUNCTION (INIT_SECTION_ASM_OP
, frame_dummy
)
467 #else /* defined(INIT_SECTION_ASM_OP) */
468 static func_ptr __frame_dummy_init_array_entry
[]
469 __attribute__ ((__used__
, section(".init_array"), aligned(sizeof(func_ptr
))))
471 #endif /* !defined(INIT_SECTION_ASM_OP) */
472 #endif /* USE_EH_FRAME_REGISTRY || JCR_SECTION_NAME || USE_TM_CLONE_REGISTRY */
474 #else /* OBJECT_FORMAT_ELF */
476 /* The function __do_global_ctors_aux is compiled twice (once in crtbegin.o
477 and once in crtend.o). It must be declared static to avoid a link
478 error. Here, we define __do_global_ctors as an externally callable
479 function. It is externally callable so that __main can invoke it when
480 INVOKE__main is defined. This has the additional effect of forcing cc1
481 to switch to the .text section. */
483 static void __do_global_ctors_aux (void);
485 __do_global_ctors (void)
488 /* If __main won't actually call __do_global_ctors then it doesn't matter
489 what's inside the function. The inside of __do_global_ctors_aux is
490 called automatically in that case. And the Alliant fx2800 linker
491 crashes on this reference. So prevent the crash. */
492 __do_global_ctors_aux ();
496 asm (INIT_SECTION_ASM_OP
); /* cc1 doesn't know that we are switching! */
498 /* A routine to invoke all of the global constructors upon entry to the
499 program. We put this into the .init section (for systems that have
500 such a thing) so that we can properly perform the construction of
501 file-scope static-storage C++ objects within shared libraries. */
503 static void __attribute__((used
))
504 __do_global_ctors_aux (void) /* prologue goes in .init section */
506 FORCE_CODE_SECTION_ALIGN
/* explicit align before switch to .text */
507 asm (TEXT_SECTION_ASM_OP
); /* don't put epilogue and body in .init */
508 DO_GLOBAL_CTORS_BODY
;
509 atexit (__do_global_dtors
);
512 #endif /* OBJECT_FORMAT_ELF */
514 #elif defined(HAS_INIT_SECTION) /* ! INIT_SECTION_ASM_OP */
516 extern void __do_global_dtors (void);
518 /* This case is used by the Irix 6 port, which supports named sections but
519 not an SVR4-style .fini section. __do_global_dtors can be non-static
520 in this case because we protect it with -hidden_symbol. */
523 __do_global_dtors (void)
526 for (p
= __DTOR_LIST__
+ 1; (f
= *p
); p
++)
529 #if USE_TM_CLONE_REGISTRY
530 deregister_tm_clones ();
531 #endif /* USE_TM_CLONE_REGISTRY */
533 #ifdef USE_EH_FRAME_REGISTRY
534 if (__deregister_frame_info
)
535 __deregister_frame_info (__EH_FRAME_BEGIN__
);
539 #if defined(USE_EH_FRAME_REGISTRY) \
540 || defined(JCR_SECTION_NAME) \
541 || defined(USE_TM_CLONE_REGISTRY)
542 /* A helper function for __do_global_ctors, which is in crtend.o. Here
543 in crtbegin.o, we can reference a couple of symbols not visible there.
544 Plus, since we're before libgcc.a, we have no problems referencing
545 functions from there. */
547 __do_global_ctors_1(void)
549 #ifdef USE_EH_FRAME_REGISTRY
550 static struct object object
;
551 if (__register_frame_info
)
552 __register_frame_info (__EH_FRAME_BEGIN__
, &object
);
555 #ifdef JCR_SECTION_NAME
558 void (*register_classes
) (void *) = _Jv_RegisterClasses
;
559 __asm ("" : "+r" (register_classes
));
560 if (register_classes
)
561 register_classes (__JCR_LIST__
);
565 #if USE_TM_CLONE_REGISTRY
566 register_tm_clones ();
567 #endif /* USE_TM_CLONE_REGISTRY */
569 #endif /* USE_EH_FRAME_REGISTRY || JCR_SECTION_NAME || USE_TM_CLONE_REGISTRY */
571 #else /* ! INIT_SECTION_ASM_OP && ! HAS_INIT_SECTION */
572 #error "What are you doing with crtstuff.c, then?"
575 #elif defined(CRT_END) /* ! CRT_BEGIN */
577 /* No need for .ctors/.dtors section if linker can place them in
578 .init_array/.fini_array section. */
579 #ifndef USE_INITFINI_ARRAY
580 /* Put a word containing zero at the end of each of our two lists of function
581 addresses. Note that the words defined here go into the .ctors and .dtors
582 sections of the crtend.o file, and since that file is always linked in
583 last, these words naturally end up at the very ends of the two lists
584 contained in these two sections. */
588 #elif defined(CTORS_SECTION_ASM_OP)
589 /* Hack: force cc1 to switch to .data section early, so that assembling
590 __CTOR_LIST__ does not undo our behind-the-back change to .ctors. */
591 static func_ptr force_to_data
[1] __attribute__ ((__used__
)) = { };
592 asm (CTORS_SECTION_ASM_OP
);
593 STATIC func_ptr __CTOR_END__
[1]
594 __attribute__((aligned(sizeof(func_ptr
))))
597 STATIC func_ptr __CTOR_END__
[1]
598 __attribute__((section(".ctors"), aligned(sizeof(func_ptr
))))
604 #elif defined(HIDDEN_DTOR_LIST_END)
605 #ifdef DTORS_SECTION_ASM_OP
606 asm (DTORS_SECTION_ASM_OP
);
608 func_ptr __DTOR_END__
[1]
609 __attribute__ ((used
,
610 #ifndef DTORS_SECTION_ASM_OP
613 aligned(sizeof(func_ptr
)), visibility ("hidden")))
615 #elif defined(DTORS_SECTION_ASM_OP)
616 asm (DTORS_SECTION_ASM_OP
);
617 STATIC func_ptr __DTOR_END__
[1]
618 __attribute__ ((used
, aligned(sizeof(func_ptr
))))
621 STATIC func_ptr __DTOR_END__
[1]
622 __attribute__((used
, section(".dtors"), aligned(sizeof(func_ptr
))))
625 #endif /* USE_INITFINI_ARRAY */
627 #ifdef EH_FRAME_SECTION_NAME
628 /* Terminate the frame unwind info section with a 4byte 0 as a sentinel;
629 this would be the 'length' field in a real FDE. */
630 # if __INT_MAX__ == 2147483647
632 # elif __LONG_MAX__ == 2147483647
634 # elif __SHRT_MAX__ == 2147483647
637 # error "Missing a 4 byte integer"
639 STATIC EH_FRAME_SECTION_CONST int32 __FRAME_END__
[]
640 __attribute__ ((used
, section(EH_FRAME_SECTION_NAME
),
641 aligned(sizeof(int32
))))
643 #endif /* EH_FRAME_SECTION_NAME */
645 #ifdef JCR_SECTION_NAME
646 /* Null terminate the .jcr section array. */
647 STATIC
void *__JCR_END__
[1]
648 __attribute__ ((used
, section(JCR_SECTION_NAME
),
649 aligned(sizeof(void *))))
651 #endif /* JCR_SECTION_NAME */
653 #if USE_TM_CLONE_REGISTRY
654 # ifndef HAVE_GAS_HIDDEN
657 func_ptr __TMC_END__
[]
658 __attribute__((used
, section(".tm_clone_table"), aligned(sizeof(void *))))
659 # ifdef HAVE_GAS_HIDDEN
660 __attribute__((__visibility__ ("hidden"))) = { };
664 #endif /* USE_TM_CLONE_REGISTRY */
666 #ifdef INIT_ARRAY_SECTION_ASM_OP
668 /* If we are using .init_array, there is nothing to do. */
670 #elif defined(INIT_SECTION_ASM_OP)
672 #ifdef OBJECT_FORMAT_ELF
673 static void __attribute__((used
))
674 __do_global_ctors_aux (void)
677 for (p
= __CTOR_END__
- 1; *p
!= (func_ptr
) -1; p
--)
681 /* Stick a call to __do_global_ctors_aux into the .init section. */
682 CRT_CALL_STATIC_FUNCTION (INIT_SECTION_ASM_OP
, __do_global_ctors_aux
)
683 #else /* OBJECT_FORMAT_ELF */
685 /* Stick the real initialization code, followed by a normal sort of
686 function epilogue at the very end of the .init section for this
687 entire root executable file or for this entire shared library file.
689 Note that we use some tricks here to get *just* the body and just
690 a function epilogue (but no function prologue) into the .init
691 section of the crtend.o file. Specifically, we switch to the .text
692 section, start to define a function, and then we switch to the .init
693 section just before the body code.
695 Earlier on, we put the corresponding function prologue into the .init
696 section of the crtbegin.o file (which will be linked in first).
698 Note that we want to invoke all constructors for C++ file-scope static-
699 storage objects AFTER any other possible initialization actions which
700 may be performed by the code in the .init section contributions made by
701 other libraries, etc. That's because those other initializations may
702 include setup operations for very primitive things (e.g. initializing
703 the state of the floating-point coprocessor, etc.) which should be done
704 before we start to execute any of the user's code. */
707 __do_global_ctors_aux (void) /* prologue goes in .text section */
709 asm (INIT_SECTION_ASM_OP
);
710 DO_GLOBAL_CTORS_BODY
;
711 atexit (__do_global_dtors
);
712 } /* epilogue and body go in .init section */
714 FORCE_CODE_SECTION_ALIGN
715 asm (TEXT_SECTION_ASM_OP
);
717 #endif /* OBJECT_FORMAT_ELF */
719 #elif defined(HAS_INIT_SECTION) /* ! INIT_SECTION_ASM_OP */
721 extern void __do_global_ctors (void);
723 /* This case is used by the Irix 6 port, which supports named sections but
724 not an SVR4-style .init section. __do_global_ctors can be non-static
725 in this case because we protect it with -hidden_symbol. */
727 __do_global_ctors (void)
730 #if defined(USE_EH_FRAME_REGISTRY) \
731 || defined(JCR_SECTION_NAME) \
732 || defined(USE_TM_CLONE_REGISTRY)
733 __do_global_ctors_1();
735 for (p
= __CTOR_END__
- 1; *p
!= (func_ptr
) -1; p
--)
739 #else /* ! INIT_SECTION_ASM_OP && ! HAS_INIT_SECTION */
740 #error "What are you doing with crtstuff.c, then?"
743 #else /* ! CRT_BEGIN && ! CRT_END */
744 #error "One of CRT_BEGIN or CRT_END must be defined."