1 /* Frv initialization file linked before all user modules
2 Copyright (C) 1999, 2000 Free Software Foundation, Inc.
3 Contributed by Red Hat, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software ; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation * either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY ; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
22 This file was originally taken from the file crtstuff.c in the
23 main compiler directory, and simplified. */
27 #include "unwind-dw2-fde.h"
28 #include "gbl-ctors.h"
30 /* Declare a pointer to void function type. */
33 #ifdef __FRV_UNDERSCORE__
34 #define UNDERSCORE "_"
39 #define INIT_SECTION_NEG_ONE(SECTION, FLAGS, NAME) \
40 __asm__ (".section " SECTION "," FLAGS "\n\t" \
41 ".globl " UNDERSCORE NAME "\n\t" \
42 ".type " UNDERSCORE NAME ",@object\n\t" \
44 UNDERSCORE NAME ":\n\t" \
48 #define INIT_SECTION(SECTION, FLAGS, NAME) \
49 __asm__ (".section " SECTION "," FLAGS "\n\t" \
50 ".globl " UNDERSCORE NAME "\n\t" \
51 ".type " UNDERSCORE NAME ",@object\n\t" \
53 UNDERSCORE NAME ":\n\t" \
56 /* Beginning of .ctor/.dtor sections that provides a list of constructors and
57 destructors to run. */
59 INIT_SECTION_NEG_ONE (".ctors", "\"aw\"", "__CTOR_LIST__");
60 INIT_SECTION_NEG_ONE (".dtors", "\"aw\"", "__DTOR_LIST__");
62 /* Beginning of .eh_frame section that provides all of the exception handling
65 INIT_SECTION (".eh_frame", "\"aw\"", "__EH_FRAME_BEGIN__");
67 /* Beginning of .rofixup section that provides a list of pointers that we
70 INIT_SECTION (".rofixup", "\"a\"", "__ROFIXUP_LIST__");
72 extern void __frv_register_eh(void) __attribute__((__constructor__
));
73 extern void __frv_deregister_eh(void) __attribute__((__destructor__
));
75 extern func_ptr __EH_FRAME_BEGIN__
[];
77 /* Register the exeception handling table as the first constructor */
79 __frv_register_eh (void)
81 static struct object object
;
82 if (__register_frame_info
)
83 __register_frame_info (__EH_FRAME_BEGIN__
, &object
);
86 /* Note, do not declare __{,de}register_frame_info weak as it seems
87 to interfere with the pic support. */
89 /* Unregister the exeception handling table as a deconstructor */
91 __frv_deregister_eh (void)
93 static int completed
= 0;
98 if (__deregister_frame_info
)
99 __deregister_frame_info (__EH_FRAME_BEGIN__
);
104 /* Run the global destructors */
108 static func_ptr
*p
= __DTOR_LIST__
+ 1;
116 /* Run the global constructors */
120 unsigned long nptrs
= (unsigned long) __CTOR_LIST__
[0];
123 if (nptrs
== (unsigned long)-1)
124 for (nptrs
= 0; __CTOR_LIST__
[nptrs
+ 1] != 0; nptrs
++);
126 for (i
= nptrs
; i
>= 1; i
--)
129 atexit (__do_global_dtors
);
132 /* Subroutine called automatically by `main'.
133 Compiling a global function named `main'
134 produces an automatic call to this function at the beginning.
136 For many systems, this routine calls __do_global_ctors.
137 For systems which support a .init section we use the .init section
138 to run __do_global_ctors, so we need not do anything here. */
143 /* Support recursive calls to `main': run initializers just once. */
144 static int initialized
;
148 __do_global_ctors ();