OSDN Git Service

2007-04-20 Arnaud Charlet <charlet@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / initialize.c
1 /****************************************************************************
2  *                                                                          *
3  *                         GNAT COMPILER COMPONENTS                         *
4  *                                                                          *
5  *                           I N I T I A L I Z E                            *
6  *                                                                          *
7  *                          C Implementation File                           *
8  *                                                                          *
9  *          Copyright (C) 1992-2006, Free Software Foundation, Inc.         *
10  *                                                                          *
11  * GNAT is free software;  you can  redistribute it  and/or modify it under *
12  * terms of the  GNU General Public License as published  by the Free Soft- *
13  * ware  Foundation;  either version 2,  or (at your option) any later ver- *
14  * sion.  GNAT is distributed in the hope that it will be useful, but WITH- *
15  * OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY *
16  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License *
17  * for  more details.  You should have  received  a copy of the GNU General *
18  * Public License  distributed with GNAT;  see file COPYING.  If not, write *
19  * to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, *
20  * Boston, MA 02110-1301, USA.                                              *
21  *                                                                          *
22  * As a  special  exception,  if you  link  this file  with other  files to *
23  * produce an executable,  this file does not by itself cause the resulting *
24  * executable to be covered by the GNU General Public License. This except- *
25  * ion does not  however invalidate  any other reasons  why the  executable *
26  * file might be covered by the  GNU Public License.                        *
27  *                                                                          *
28  * GNAT was originally developed  by the GNAT team at  New York University. *
29  * Extensive contributions were provided by Ada Core Technologies Inc.      *
30  *                                                                          *
31  ****************************************************************************/
32
33 /*  This unit provides default implementation for __gnat_initialize ()
34     which is called before the elaboration of the partition. It is provided
35     in a separate file/object so that users can replace it easily.
36     The default implementation should be null on most targets. */
37
38 /* The following include is here to meet the published VxWorks requirement
39    that the __vxworks header appear before any other include. */
40 #ifdef __vxworks
41 #include "vxWorks.h"
42 #endif
43
44 #ifdef IN_RTS
45 #include "tconfig.h"
46 #include "tsystem.h"
47 #else
48 #include "config.h"
49 #include "system.h"
50 #endif
51
52 #include "raise.h"
53
54 /******************************************/
55 /* __gnat_initialize (NT-mingw32 Version) */
56 /******************************************/
57
58 #if defined (__MINGW32__)
59 #include <windows.h>
60
61 extern void __gnat_init_float (void);
62 extern void __gnat_plist_init (void);
63 extern void __gnat_install_SEH_handler (void *);
64
65 void
66 __gnat_initialize (void *eh)
67 {
68    /* Initialize floating-point coprocessor. This call is needed because
69       the MS libraries default to 64-bit precision instead of 80-bit
70       precision, and we require the full precision for proper operation,
71       given that we have set Max_Digits etc with this in mind */
72    __gnat_init_float ();
73
74    /* Initialize a lock for a process handle list - see adaint.c for the
75       implementation of __gnat_portable_no_block_spawn, __gnat_portable_wait */
76    __gnat_plist_init();
77
78    /* Note that we do not activate this for the compiler itself to avoid a
79       bootstrap path problem.  Older version of gnatbind will generate a call
80       to __gnat_initialize() without argument. Therefore we cannot use eh in
81       this case.  It will be possible to remove the following #ifdef at some
82       point.  */
83 #ifdef IN_RTS
84    /* Install the Structured Exception handler.  */
85    if (eh)
86      __gnat_install_SEH_handler (eh);
87 #endif
88 }
89
90 /******************************************/
91 /* __gnat_initialize (init_float version) */
92 /******************************************/
93
94 #elif defined (__INTERIX) || defined (__Lynx__) || \
95       defined (__FreeBSD__) || defined(__NetBSD__)
96
97 extern void __gnat_init_float (void);
98
99 void
100 __gnat_initialize (void *eh ATTRIBUTE_UNUSED)
101 {
102    __gnat_init_float ();
103 }
104
105 /***************************************/
106 /* __gnat_initialize (VxWorks Version) */
107 /***************************************/
108
109 #elif defined(__vxworks)
110
111 extern void __gnat_init_float (void);
112
113 void
114 __gnat_initialize (void *eh)
115 {
116   __gnat_init_float ();
117
118   /* On targets where we use the ZCX scheme, we need to register the frame
119      tables at load/startup time.
120
121      For applications loaded as a set of "modules", the crtstuff objects
122      linked in (crtbegin.o/end.o) are tailored to provide this service
123      automatically, a-la C++ constructor fashion, triggered by the VxWorks
124      loader thanks to a special variable declaration in crtbegin.o (_ctors).
125
126      Automatic de-registration is handled symmetrically, a-la C++ destructor
127      fashion (with a _dtors variable also in crtbegin.o) triggered by the
128      dynamic unloader.
129
130      Note that since the tables shall be registered against a common
131      datastructure, libgcc should be one of the modules (vs being partially
132      linked against all the others at build time) and shall be loaded first.
133
134      For applications linked with the kernel, the scheme above would lead to
135      duplicated symbols because the VxWorks kernel build "munches" by default,
136      so we link against crtbeginT.o instead of crtbegin.o, which doesn't
137      include the special variables. We know which set of crt objects is used
138      thanks to a boolean indicator present in both sets (__module_has_ctors),
139      and directly call the appropriate function here in the not-automatic
140      case. We'll never unload that, so there is no de-registration to worry
141      about.
142
143      For whole applications loaded as a single module, we may use one scheme
144      or the other, except for the mixed Ada/C++ case in which the first scheme
145      would fail for the same reason as in the linked-with-kernel situation.
146
147      Selecting the crt set with the ctors/dtors capabilities (first scheme
148      above) is triggered by adding "-dynamic" to the gcc *link* command line
149      options. Selecting the other set is achieved by using "-static" instead.
150
151      This is a first approach, tightly synchronized with a number of GCC
152      configuration and crtstuff changes. We need to ensure that those changes
153      are there to activate this circuitry.  */
154
155 #if (__GNUC__ >= 3) && (defined (_ARCH_PPC) || defined (__ppc))
156  {
157    /* The scheme described above is only useful for the actual ZCX case, and
158       we don't want any reference to the crt provided symbols otherwise.  We
159       may not link with any of the crt objects in the non-ZCX case, e.g. from
160       documented procedures instructing the use of -nostdlib, and references
161       to the ctors symbols here would just remain unsatisfied.
162
163       We have no way to avoid those references in the right conditions in this
164       C module, because we have nothing like a IN_ZCX_RTS macro.  This aspect
165       is then deferred to an Ada routine, which can do that based on a test
166       against a constant System flag value.  */
167
168    extern void __gnat_vxw_setup_for_eh (void);
169    __gnat_vxw_setup_for_eh ();
170  }
171 #endif
172 }
173
174 #elif defined(_T_HPUX10) || (!defined(IN_RTS) && defined(_X_HPUX10))
175
176 /************************************************/
177 /* __gnat_initialize (PA-RISC HP-UX 10 Version) */
178 /************************************************/
179
180 extern void __main (void);
181
182 void
183 __gnat_initialize (void *eh ATTRIBUTE_UNUSED)
184 {
185   __main ();
186 }
187
188 #else
189
190 /* For all other versions of GNAT, the initialize routine and handler
191    installation do nothing */
192
193 /***************************************/
194 /* __gnat_initialize (Default Version) */
195 /***************************************/
196
197 void
198 __gnat_initialize (void *eh ATTRIBUTE_UNUSED)
199 {
200 }
201
202 #endif