]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/crtstuff.c
re PR fortran/31820 (Warning if case label value exceeds maximum value for type)
[thirdparty/gcc.git] / gcc / crtstuff.c
CommitLineData
dc17e9e9
RS
1/* Specialized bits of code needed to support construction and
2 destruction of file-scope objects in C++ code.
52c0e446
JM
3 Copyright (C) 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
4 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
d0f8fcea 5 Contributed by Ron Guilmette (rfg@monkeys.com).
dc17e9e9 6
1322177d 7This file is part of GCC.
dc17e9e9 8
1322177d
LB
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
748086b7 11Software Foundation; either version 3, or (at your option) any later
1322177d 12version.
dc17e9e9 13
1322177d
LB
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
dc17e9e9 18
748086b7
JJ
19Under Section 7 of GPL version 3, you are granted additional
20permissions described in the GCC Runtime Library Exception, version
213.1, as published by the Free Software Foundation.
22
23You should have received a copy of the GNU General Public License and
24a copy of the GCC Runtime Library Exception along with this program;
25see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26<http://www.gnu.org/licenses/>. */
dc17e9e9 27
7857f134 28/* This file is a bit like libgcc2.c in that it is compiled
dc17e9e9
RS
29 multiple times and yields multiple .o files.
30
31 This file is useful on target machines where the object file format
32 supports multiple "user-defined" sections (e.g. COFF, ELF, ROSE). On
33 such systems, this file allows us to avoid running collect (or any
34 other such slow and painful kludge). Additionally, if the target
35 system supports a .init section, this file allows us to support the
36 linking of C++ code with a non-C++ main program.
37
38 Note that if INIT_SECTION_ASM_OP is defined in the tm.h file, then
39 this file *will* make use of the .init section. If that symbol is
40 not defined however, then the .init section will not be used.
41
37ce5b86
CH
42 Currently, only ELF and COFF are supported. It is likely however that
43 ROSE could also be supported, if someone was willing to do the work to
44 make whatever (small?) adaptations are needed. (Some work may be
45 needed on the ROSE assembler and linker also.)
dc17e9e9
RS
46
47 This file must be compiled with gcc. */
48
56d6849d
NS
49/* Target machine header files require this define. */
50#define IN_LIBGCC2
51
9d48ad93
NS
52/* FIXME: Including auto-host is incorrect, but until we have
53 identified the set of defines that need to go into auto-target.h,
54 this will have to do. */
55#include "auto-host.h"
3bea02d1
JM
56#undef pid_t
57#undef rlim_t
58#undef ssize_t
3bea02d1 59#undef vfork
eaf4e618 60#include "tconfig.h"
2e39bdbe 61#include "tsystem.h"
4977bab6
ZW
62#include "coretypes.h"
63#include "tm.h"
52a11cbf 64#include "unwind-dw2-fde.h"
dc17e9e9 65
cea3bd3e
RH
66#ifndef FORCE_CODE_SECTION_ALIGN
67# define FORCE_CODE_SECTION_ALIGN
68#endif
69
036cfb36 70#ifndef CRT_CALL_STATIC_FUNCTION
cea3bd3e
RH
71# define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
72static void __attribute__((__used__)) \
73call_ ## FUNC (void) \
74{ \
75 asm (SECTION_OP); \
76 FUNC (); \
77 FORCE_CODE_SECTION_ALIGN \
78 asm (TEXT_SECTION_ASM_OP); \
79}
036cfb36
AO
80#endif
81
2208d2ac
LR
82#if defined(OBJECT_FORMAT_ELF) \
83 && !defined(OBJECT_FORMAT_FLAT) \
84 && defined(HAVE_LD_EH_FRAME_HDR) \
85 && !defined(inhibit_libc) && !defined(CRTSTUFFT_O) \
86 && defined(__FreeBSD__) && __FreeBSD__ >= 7
87#include <link.h>
88# define USE_PT_GNU_EH_FRAME
89#endif
90
abe92a04
RS
91#if defined(OBJECT_FORMAT_ELF) \
92 && !defined(OBJECT_FORMAT_FLAT) \
93 && defined(HAVE_LD_EH_FRAME_HDR) \
72c7c913 94 && !defined(inhibit_libc) && !defined(CRTSTUFFT_O) \
275b60d6
JJ
95 && defined(__GLIBC__) && __GLIBC__ >= 2
96#include <link.h>
212db394
JZ
97/* uClibc pretends to be glibc 2.2 and DT_CONFIG is defined in its link.h.
98 But it doesn't use PT_GNU_EH_FRAME ELF segment currently. */
99# if !defined(__UCLIBC__) \
100 && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) \
275b60d6
JJ
101 || (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2 && defined(DT_CONFIG)))
102# define USE_PT_GNU_EH_FRAME
103# endif
104#endif
105#if defined(EH_FRAME_SECTION_NAME) && !defined(USE_PT_GNU_EH_FRAME)
106# define USE_EH_FRAME_REGISTRY
107#endif
1a35e62d 108#if defined(EH_FRAME_SECTION_NAME) && EH_TABLES_CAN_BE_READ_ONLY
96d0f4dc
JJ
109# define EH_FRAME_SECTION_CONST const
110#else
111# define EH_FRAME_SECTION_CONST
112#endif
275b60d6 113
3fc95619
UD
114#if !defined(DTOR_LIST_END) && defined(OBJECT_FORMAT_ELF) \
115 && defined(HAVE_GAS_HIDDEN) && !defined(FINI_ARRAY_SECTION_ASM_OP)
116# define HIDDEN_DTOR_LIST_END
117#endif
118
8f08ea1e 119/* We do not want to add the weak attribute to the declarations of these
52a11cbf
RH
120 routines in unwind-dw2-fde.h because that will cause the definition of
121 these symbols to be weak as well.
8f08ea1e
L
122
123 This exposes a core issue, how to handle creating weak references vs
124 how to create weak definitions. Either we have to have the definition
125 of TARGET_WEAK_ATTRIBUTE be conditional in the shared header files or
126 have a second declaration if we want a function's references to be weak,
127 but not its definition.
128
129 Making TARGET_WEAK_ATTRIBUTE conditional seems like a good solution until
454ff5cb 130 one thinks about scaling to larger problems -- i.e., the condition under
8f08ea1e
L
131 which TARGET_WEAK_ATTRIBUTE is active will eventually get far too
132 complicated.
133
134 So, we take an approach similar to #pragma weak -- we have a second
135 declaration for functions that we want to have weak references.
136
137 Neither way is particularly good. */
b8698a0f 138
8f08ea1e
L
139/* References to __register_frame_info and __deregister_frame_info should
140 be weak in this file if at all possible. */
a30794da 141extern void __register_frame_info (const void *, struct object *)
8f08ea1e 142 TARGET_ATTRIBUTE_WEAK;
a30794da 143extern void __register_frame_info_bases (const void *, struct object *,
1066e2b5
RH
144 void *, void *)
145 TARGET_ATTRIBUTE_WEAK;
a30794da 146extern void *__deregister_frame_info (const void *)
8f08ea1e 147 TARGET_ATTRIBUTE_WEAK;
a30794da 148extern void *__deregister_frame_info_bases (const void *)
101fa48c 149 TARGET_ATTRIBUTE_WEAK;
525996eb 150extern void __do_global_ctors_1 (void);
8f08ea1e 151
213f974a
RH
152/* Likewise for _Jv_RegisterClasses. */
153extern void _Jv_RegisterClasses (void *) TARGET_ATTRIBUTE_WEAK;
154
68d69835
JM
155#ifdef OBJECT_FORMAT_ELF
156
157/* Declare a pointer to void function type. */
158typedef void (*func_ptr) (void);
159#define STATIC static
160
161#else /* OBJECT_FORMAT_ELF */
162
dc17e9e9
RS
163#include "gbl-ctors.h"
164
68d69835
JM
165#define STATIC
166
167#endif /* OBJECT_FORMAT_ELF */
dc17e9e9
RS
168
169#ifdef CRT_BEGIN
170
213f974a
RH
171/* NOTE: In order to be able to support SVR4 shared libraries, we arrange
172 to have one set of symbols { __CTOR_LIST__, __DTOR_LIST__, __CTOR_END__,
173 __DTOR_END__ } per root executable and also one set of these symbols
174 per shared library. So in any given whole process image, we may have
175 multiple definitions of each of these symbols. In order to prevent
176 these definitions from conflicting with one another, and in order to
177 ensure that the proper lists are used for the initialization/finalization
178 of each individual shared library (respectively), we give these symbols
179 only internal (i.e. `static') linkage, and we also make it a point to
180 refer to only the __CTOR_END__ symbol in crtend.o and the __DTOR_LIST__
181 symbol in crtbegin.o, where they are defined. */
182
183/* The -1 is a flag to __do_global_[cd]tors indicating that this table
184 does not start with a count of elements. */
185#ifdef CTOR_LIST_BEGIN
186CTOR_LIST_BEGIN;
187#elif defined(CTORS_SECTION_ASM_OP)
188/* Hack: force cc1 to switch to .data section early, so that assembling
189 __CTOR_LIST__ does not undo our behind-the-back change to .ctors. */
e4fa83d3 190static func_ptr force_to_data[1] __attribute__ ((__used__)) = { };
213f974a
RH
191asm (CTORS_SECTION_ASM_OP);
192STATIC func_ptr __CTOR_LIST__[1]
e4fa83d3 193 __attribute__ ((__used__, aligned(sizeof(func_ptr))))
213f974a
RH
194 = { (func_ptr) (-1) };
195#else
196STATIC func_ptr __CTOR_LIST__[1]
e4fa83d3 197 __attribute__ ((__used__, section(".ctors"), aligned(sizeof(func_ptr))))
213f974a
RH
198 = { (func_ptr) (-1) };
199#endif /* __CTOR_LIST__ alternatives */
200
201#ifdef DTOR_LIST_BEGIN
202DTOR_LIST_BEGIN;
203#elif defined(DTORS_SECTION_ASM_OP)
204asm (DTORS_SECTION_ASM_OP);
205STATIC func_ptr __DTOR_LIST__[1]
206 __attribute__ ((aligned(sizeof(func_ptr))))
207 = { (func_ptr) (-1) };
208#else
209STATIC func_ptr __DTOR_LIST__[1]
210 __attribute__((section(".dtors"), aligned(sizeof(func_ptr))))
211 = { (func_ptr) (-1) };
212#endif /* __DTOR_LIST__ alternatives */
213
618939de 214#ifdef USE_EH_FRAME_REGISTRY
213f974a
RH
215/* Stick a label at the beginning of the frame unwind info so we can register
216 and deregister it with the exception handling library code. */
96d0f4dc 217STATIC EH_FRAME_SECTION_CONST char __EH_FRAME_BEGIN__[]
213f974a
RH
218 __attribute__((section(EH_FRAME_SECTION_NAME), aligned(4)))
219 = { };
618939de 220#endif /* USE_EH_FRAME_REGISTRY */
213f974a
RH
221
222#ifdef JCR_SECTION_NAME
223/* Stick a label at the beginning of the java class registration info
224 so we can register them properly. */
213f974a
RH
225STATIC void *__JCR_LIST__[]
226 __attribute__ ((unused, section(JCR_SECTION_NAME), aligned(sizeof(void*))))
227 = { };
228#endif /* JCR_SECTION_NAME */
229
7abc66b1 230#if defined(INIT_SECTION_ASM_OP) || defined(INIT_ARRAY_SECTION_ASM_OP)
29d2c7a5 231
68d69835
JM
232#ifdef OBJECT_FORMAT_ELF
233
fc693822 234/* Declare the __dso_handle variable. It should have a unique value
6a9c5260
UD
235 in every shared-object; in a main program its value is zero. The
236 object should in any case be protected. This means the instance
237 in one DSO or the main program is not used in another object. The
238 dynamic linker takes care of this. */
239
a0cfeb0f
DD
240#ifdef TARGET_LIBGCC_SDATA_SECTION
241extern void *__dso_handle __attribute__ ((__section__ (TARGET_LIBGCC_SDATA_SECTION)));
242#endif
6a9c5260 243#ifdef HAVE_GAS_HIDDEN
47bd70b5 244extern void *__dso_handle __attribute__ ((__visibility__ ("hidden")));
6a9c5260 245#endif
fc693822
MM
246#ifdef CRTSTUFFS_O
247void *__dso_handle = &__dso_handle;
248#else
249void *__dso_handle = 0;
250#endif
251
252/* The __cxa_finalize function may not be available so we use only a
253 weak declaration. */
254extern void __cxa_finalize (void *) TARGET_ATTRIBUTE_WEAK;
255
68d69835 256/* Run all the global destructors on exit from the program. */
b8698a0f 257
68d69835
JM
258/* Some systems place the number of pointers in the first word of the
259 table. On SVR4 however, that word is -1. In all cases, the table is
260 null-terminated. On SVR4, we start from the beginning of the list and
261 invoke each per-compilation-unit destructor routine in order
262 until we find that null.
263
264 Note that this function MUST be static. There will be one of these
265 functions in each root executable and one in each shared library, but
266 although they all have the same code, each one is unique in that it
267 refers to one particular associated `__DTOR_LIST__' which belongs to the
b40b9d93
MS
268 same particular root executable or shared library file.
269
270 On some systems, this routine is run more than once from the .fini,
271 when exit is called recursively, so we arrange to remember where in
272 the list we left off processing, and we resume at that point,
273 should we be re-invoked. */
68d69835 274
cea3bd3e 275static void __attribute__((used))
3cc22c31 276__do_global_dtors_aux (void)
68d69835 277{
7abc66b1 278 static _Bool completed;
5041a61c 279
1066e2b5 280 if (__builtin_expect (completed, 0))
5041a61c
JL
281 return;
282
2a14e214
MM
283#ifdef CRTSTUFFS_O
284 if (__cxa_finalize)
fc693822 285 __cxa_finalize (__dso_handle);
2a14e214 286#endif
fc693822 287
7abc66b1
JB
288#ifdef FINI_ARRAY_SECTION_ASM_OP
289 /* If we are using .fini_array then destructors will be run via that
290 mechanism. */
3fc95619
UD
291#elif defined(HIDDEN_DTOR_LIST_END)
292 {
293 /* Safer version that makes sure only .dtors function pointers are
294 called even if the static variable is maliciously changed. */
295 extern func_ptr __DTOR_END__[] __attribute__((visibility ("hidden")));
296 static size_t dtor_idx;
297 const size_t max_idx = __DTOR_END__ - __DTOR_LIST__ - 1;
298 func_ptr f;
299
300 while (dtor_idx < max_idx)
301 {
302 f = __DTOR_LIST__[++dtor_idx];
303 f ();
304 }
305 }
7abc66b1 306#else /* !defined (FINI_ARRAY_SECTION_ASM_OP) */
3fc95619
UD
307 {
308 static func_ptr *p = __DTOR_LIST__ + 1;
309 func_ptr f;
310
311 while ((f = *p))
312 {
313 p++;
314 f ();
315 }
316 }
7abc66b1 317#endif /* !defined(FINI_ARRAY_SECTION_ASM_OP) */
0021b564 318
275b60d6 319#ifdef USE_EH_FRAME_REGISTRY
f691dc3b 320#ifdef CRT_GET_RFIB_DATA
101fa48c
RH
321 /* If we used the new __register_frame_info_bases interface,
322 make sure that we deregister from the same place. */
323 if (__deregister_frame_info_bases)
324 __deregister_frame_info_bases (__EH_FRAME_BEGIN__);
325#else
8f08ea1e
L
326 if (__deregister_frame_info)
327 __deregister_frame_info (__EH_FRAME_BEGIN__);
0021b564 328#endif
101fa48c
RH
329#endif
330
5041a61c 331 completed = 1;
68d69835
JM
332}
333
334/* Stick a call to __do_global_dtors_aux into the .fini section. */
7abc66b1 335#ifdef FINI_SECTION_ASM_OP
cea3bd3e 336CRT_CALL_STATIC_FUNCTION (FINI_SECTION_ASM_OP, __do_global_dtors_aux)
6d83cb32 337#elif defined (FINI_ARRAY_SECTION_ASM_OP)
7abc66b1 338static func_ptr __do_global_dtors_aux_fini_array_entry[]
e4fa83d3 339 __attribute__ ((__used__, section(".fini_array")))
7abc66b1 340 = { __do_global_dtors_aux };
6d83cb32
DR
341#else /* !FINI_SECTION_ASM_OP && !FINI_ARRAY_SECTION_ASM_OP */
342static void __attribute__((used))
343__do_global_dtors_aux_1 (void)
344{
345 atexit (__do_global_dtors_aux);
346}
347CRT_CALL_STATIC_FUNCTION (INIT_SECTION_ASM_OP, __do_global_dtors_aux_1)
348#endif
68d69835 349
275b60d6 350#if defined(USE_EH_FRAME_REGISTRY) || defined(JCR_SECTION_NAME)
6d8ccdbb
JL
351/* Stick a call to __register_frame_info into the .init section. For some
352 reason calls with no arguments work more reliably in .init, so stick the
353 call in another function. */
0021b564 354
cea3bd3e 355static void __attribute__((used))
3cc22c31 356frame_dummy (void)
0021b564 357{
275b60d6 358#ifdef USE_EH_FRAME_REGISTRY
956d6950 359 static struct object object;
f691dc3b 360#ifdef CRT_GET_RFIB_DATA
1066e2b5 361 void *tbase, *dbase;
1066e2b5 362 tbase = 0;
1066e2b5 363 CRT_GET_RFIB_DATA (dbase);
1066e2b5
RH
364 if (__register_frame_info_bases)
365 __register_frame_info_bases (__EH_FRAME_BEGIN__, &object, tbase, dbase);
366#else
8f08ea1e
L
367 if (__register_frame_info)
368 __register_frame_info (__EH_FRAME_BEGIN__, &object);
f691dc3b 369#endif /* CRT_GET_RFIB_DATA */
4505024e 370#endif /* USE_EH_FRAME_REGISTRY */
213f974a 371#ifdef JCR_SECTION_NAME
bfccaa6f
JJ
372 if (__JCR_LIST__[0])
373 {
374 void (*register_classes) (void *) = _Jv_RegisterClasses;
375 __asm ("" : "+r" (register_classes));
376 if (register_classes)
377 register_classes (__JCR_LIST__);
378 }
213f974a 379#endif /* JCR_SECTION_NAME */
0021b564
JM
380}
381
7abc66b1 382#ifdef INIT_SECTION_ASM_OP
cea3bd3e 383CRT_CALL_STATIC_FUNCTION (INIT_SECTION_ASM_OP, frame_dummy)
7abc66b1
JB
384#else /* defined(INIT_SECTION_ASM_OP) */
385static func_ptr __frame_dummy_init_array_entry[]
e4fa83d3 386 __attribute__ ((__used__, section(".init_array")))
7abc66b1
JB
387 = { frame_dummy };
388#endif /* !defined(INIT_SECTION_ASM_OP) */
4505024e 389#endif /* USE_EH_FRAME_REGISTRY || JCR_SECTION_NAME */
0021b564 390
68d69835
JM
391#else /* OBJECT_FORMAT_ELF */
392
b335c2cc 393/* The function __do_global_ctors_aux is compiled twice (once in crtbegin.o
b71a4aa9 394 and once in crtend.o). It must be declared static to avoid a link
b335c2cc
TW
395 error. Here, we define __do_global_ctors as an externally callable
396 function. It is externally callable so that __main can invoke it when
397 INVOKE__main is defined. This has the additional effect of forcing cc1
398 to switch to the .text section. */
0f41302f 399
d1e51320 400static void __do_global_ctors_aux (void);
3cc22c31
JL
401void
402__do_global_ctors (void)
329d2160 403{
29d2c7a5
RH
404#ifdef INVOKE__main
405 /* If __main won't actually call __do_global_ctors then it doesn't matter
406 what's inside the function. The inside of __do_global_ctors_aux is
407 called automatically in that case. And the Alliant fx2800 linker
408 crashes on this reference. So prevent the crash. */
329d2160
RS
409 __do_global_ctors_aux ();
410#endif
411}
dc17e9e9
RS
412
413asm (INIT_SECTION_ASM_OP); /* cc1 doesn't know that we are switching! */
414
415/* A routine to invoke all of the global constructors upon entry to the
416 program. We put this into the .init section (for systems that have
417 such a thing) so that we can properly perform the construction of
6d2f8887 418 file-scope static-storage C++ objects within shared libraries. */
dc17e9e9 419
cea3bd3e 420static void __attribute__((used))
3cc22c31 421__do_global_ctors_aux (void) /* prologue goes in .init section */
dc17e9e9 422{
cea3bd3e 423 FORCE_CODE_SECTION_ALIGN /* explicit align before switch to .text */
dc17e9e9
RS
424 asm (TEXT_SECTION_ASM_OP); /* don't put epilogue and body in .init */
425 DO_GLOBAL_CTORS_BODY;
451fbdf2 426 atexit (__do_global_dtors);
dc17e9e9
RS
427}
428
68d69835 429#endif /* OBJECT_FORMAT_ELF */
fe1fd353 430
29d2c7a5 431#elif defined(HAS_INIT_SECTION) /* ! INIT_SECTION_ASM_OP */
fe1fd353 432
af8e5a0e
RO
433extern void __do_global_dtors (void);
434
fe1fd353
JM
435/* This case is used by the Irix 6 port, which supports named sections but
436 not an SVR4-style .fini section. __do_global_dtors can be non-static
0021b564
JM
437 in this case because we protect it with -hidden_symbol. */
438
fe1fd353 439void
3cc22c31 440__do_global_dtors (void)
fe1fd353 441{
1066e2b5
RH
442 func_ptr *p, f;
443 for (p = __DTOR_LIST__ + 1; (f = *p); p++)
444 f ();
0021b564 445
275b60d6 446#ifdef USE_EH_FRAME_REGISTRY
8f08ea1e
L
447 if (__deregister_frame_info)
448 __deregister_frame_info (__EH_FRAME_BEGIN__);
0021b564 449#endif
fe1fd353 450}
35a42f5f 451
275b60d6 452#if defined(USE_EH_FRAME_REGISTRY) || defined(JCR_SECTION_NAME)
29d2c7a5
RH
453/* A helper function for __do_global_ctors, which is in crtend.o. Here
454 in crtbegin.o, we can reference a couple of symbols not visible there.
455 Plus, since we're before libgcc.a, we have no problems referencing
456 functions from there. */
35a42f5f 457void
29d2c7a5 458__do_global_ctors_1(void)
35a42f5f 459{
275b60d6 460#ifdef USE_EH_FRAME_REGISTRY
35a42f5f 461 static struct object object;
8f08ea1e
L
462 if (__register_frame_info)
463 __register_frame_info (__EH_FRAME_BEGIN__, &object);
b335c2cc 464#endif
6351543d 465#ifdef JCR_SECTION_NAME
bfccaa6f
JJ
466 if (__JCR_LIST__[0])
467 {
468 void (*register_classes) (void *) = _Jv_RegisterClasses;
469 __asm ("" : "+r" (register_classes));
470 if (register_classes)
471 register_classes (__JCR_LIST__);
472 }
213f974a
RH
473#endif
474}
4505024e 475#endif /* USE_EH_FRAME_REGISTRY || JCR_SECTION_NAME */
6351543d 476
29d2c7a5
RH
477#else /* ! INIT_SECTION_ASM_OP && ! HAS_INIT_SECTION */
478#error "What are you doing with crtstuff.c, then?"
479#endif
480
481#elif defined(CRT_END) /* ! CRT_BEGIN */
482
483/* Put a word containing zero at the end of each of our two lists of function
484 addresses. Note that the words defined here go into the .ctors and .dtors
485 sections of the crtend.o file, and since that file is always linked in
486 last, these words naturally end up at the very ends of the two lists
487 contained in these two sections. */
488
489#ifdef CTOR_LIST_END
490CTOR_LIST_END;
491#elif defined(CTORS_SECTION_ASM_OP)
492/* Hack: force cc1 to switch to .data section early, so that assembling
493 __CTOR_LIST__ does not undo our behind-the-back change to .ctors. */
e4fa83d3 494static func_ptr force_to_data[1] __attribute__ ((__used__)) = { };
29d2c7a5
RH
495asm (CTORS_SECTION_ASM_OP);
496STATIC func_ptr __CTOR_END__[1]
497 __attribute__((aligned(sizeof(func_ptr))))
498 = { (func_ptr) 0 };
499#else
500STATIC func_ptr __CTOR_END__[1]
501 __attribute__((section(".ctors"), aligned(sizeof(func_ptr))))
502 = { (func_ptr) 0 };
503#endif
504
505#ifdef DTOR_LIST_END
506DTOR_LIST_END;
3fc95619
UD
507#elif defined(HIDDEN_DTOR_LIST_END)
508#ifdef DTORS_SECTION_ASM_OP
509asm (DTORS_SECTION_ASM_OP);
510#endif
511func_ptr __DTOR_END__[1]
512 __attribute__ ((unused,
513#ifndef DTORS_SECTION_ASM_OP
514 section(".dtors"),
515#endif
516 aligned(sizeof(func_ptr)), visibility ("hidden")))
517 = { (func_ptr) 0 };
29d2c7a5
RH
518#elif defined(DTORS_SECTION_ASM_OP)
519asm (DTORS_SECTION_ASM_OP);
520STATIC func_ptr __DTOR_END__[1]
521 __attribute__ ((unused, aligned(sizeof(func_ptr))))
522 = { (func_ptr) 0 };
523#else
524STATIC func_ptr __DTOR_END__[1]
525 __attribute__((unused, section(".dtors"), aligned(sizeof(func_ptr))))
526 = { (func_ptr) 0 };
527#endif
dc17e9e9 528
29d2c7a5
RH
529#ifdef EH_FRAME_SECTION_NAME
530/* Terminate the frame unwind info section with a 4byte 0 as a sentinel;
531 this would be the 'length' field in a real FDE. */
61f03aba
RH
532# if __INT_MAX__ == 2147483647
533typedef int int32;
534# elif __LONG_MAX__ == 2147483647
535typedef long int32;
536# elif __SHRT_MAX__ == 2147483647
537typedef short int32;
538# else
539# error "Missing a 4 byte integer"
540# endif
541STATIC EH_FRAME_SECTION_CONST int32 __FRAME_END__[]
542 __attribute__ ((unused, section(EH_FRAME_SECTION_NAME),
543 aligned(sizeof(int32))))
29d2c7a5 544 = { 0 };
f3a8e4f5 545#endif /* EH_FRAME_SECTION_NAME */
29d2c7a5
RH
546
547#ifdef JCR_SECTION_NAME
548/* Null terminate the .jcr section array. */
b8698a0f 549STATIC void *__JCR_END__[1]
29d2c7a5
RH
550 __attribute__ ((unused, section(JCR_SECTION_NAME),
551 aligned(sizeof(void *))))
552 = { 0 };
553#endif /* JCR_SECTION_NAME */
dc17e9e9 554
7abc66b1
JB
555#ifdef INIT_ARRAY_SECTION_ASM_OP
556
557/* If we are using .init_array, there is nothing to do. */
558
559#elif defined(INIT_SECTION_ASM_OP)
dc17e9e9 560
68d69835 561#ifdef OBJECT_FORMAT_ELF
cea3bd3e 562static void __attribute__((used))
3cc22c31 563__do_global_ctors_aux (void)
68d69835
JM
564{
565 func_ptr *p;
566 for (p = __CTOR_END__ - 1; *p != (func_ptr) -1; p--)
567 (*p) ();
568}
569
570/* Stick a call to __do_global_ctors_aux into the .init section. */
cea3bd3e 571CRT_CALL_STATIC_FUNCTION (INIT_SECTION_ASM_OP, __do_global_ctors_aux)
68d69835
JM
572#else /* OBJECT_FORMAT_ELF */
573
574/* Stick the real initialization code, followed by a normal sort of
575 function epilogue at the very end of the .init section for this
576 entire root executable file or for this entire shared library file.
577
578 Note that we use some tricks here to get *just* the body and just
579 a function epilogue (but no function prologue) into the .init
9faa82d8 580 section of the crtend.o file. Specifically, we switch to the .text
68d69835
JM
581 section, start to define a function, and then we switch to the .init
582 section just before the body code.
583
584 Earlier on, we put the corresponding function prologue into the .init
585 section of the crtbegin.o file (which will be linked in first).
586
587 Note that we want to invoke all constructors for C++ file-scope static-
588 storage objects AFTER any other possible initialization actions which
589 may be performed by the code in the .init section contributions made by
590 other libraries, etc. That's because those other initializations may
591 include setup operations for very primitive things (e.g. initializing
592 the state of the floating-point coprocessor, etc.) which should be done
0f41302f 593 before we start to execute any of the user's code. */
dc17e9e9
RS
594
595static void
3cc22c31 596__do_global_ctors_aux (void) /* prologue goes in .text section */
dc17e9e9
RS
597{
598 asm (INIT_SECTION_ASM_OP);
599 DO_GLOBAL_CTORS_BODY;
451fbdf2 600 atexit (__do_global_dtors);
e5e809f4
JL
601} /* epilogue and body go in .init section */
602
cea3bd3e 603FORCE_CODE_SECTION_ALIGN
e5e809f4 604asm (TEXT_SECTION_ASM_OP);
dc17e9e9 605
68d69835
JM
606#endif /* OBJECT_FORMAT_ELF */
607
29d2c7a5 608#elif defined(HAS_INIT_SECTION) /* ! INIT_SECTION_ASM_OP */
fe1fd353 609
af8e5a0e
RO
610extern void __do_global_ctors (void);
611
fe1fd353
JM
612/* This case is used by the Irix 6 port, which supports named sections but
613 not an SVR4-style .init section. __do_global_ctors can be non-static
0021b564 614 in this case because we protect it with -hidden_symbol. */
fe1fd353 615void
3cc22c31 616__do_global_ctors (void)
fe1fd353
JM
617{
618 func_ptr *p;
275b60d6 619#if defined(USE_EH_FRAME_REGISTRY) || defined(JCR_SECTION_NAME)
29d2c7a5 620 __do_global_ctors_1();
0021b564 621#endif
fe1fd353
JM
622 for (p = __CTOR_END__ - 1; *p != (func_ptr) -1; p--)
623 (*p) ();
624}
68d69835 625
29d2c7a5
RH
626#else /* ! INIT_SECTION_ASM_OP && ! HAS_INIT_SECTION */
627#error "What are you doing with crtstuff.c, then?"
b335c2cc 628#endif
dc17e9e9 629
29d2c7a5
RH
630#else /* ! CRT_BEGIN && ! CRT_END */
631#error "One of CRT_BEGIN or CRT_END must be defined."
b335c2cc 632#endif