Imported GNU Classpath 0.90
[official-gcc.git] / gcc / ada / ChangeLog
blob56e21e018de250d17c0d120c3e5214b1a22b8843
1 2006-03-04  Eric Botcazou  <ebotcazou@adacore.com>
3         * gigi.h (get_ada_base_type): Delete.
4         * utils2.c (get_ada_base_type): Likewise.
5         * trans.c (convert_with_check): Operate in the real base type.
7 2006-03-03  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9         * uintp.adb (Num_Bits): Handle Uint_Int_First specially.
11 2006-03-02  Richard Sandiford  <richard@codesourcery.com>
13         * utils.c (create_var_decl): Use have_global_bss_p when deciding
14         whether to make the decl common.
16 2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
18         * Make-lang.in (Ada): Remove
19         (.PHONY): Remove Ada
21 2006-02-17  Ed Schonberg  <schonberg@adacore.com>
23         * sem_ch4.adb (Find_Boolean_Types): If one of the operands is an
24         aggregate, check the interpretations of the other operand to find one
25         that may be a boolean array.
27         (Analyze_Selected_Component): Fix flow-of-control typo in case where
28         the prefix is a private extension.
30 2006-02-17  Eric Botcazou  <botcazou@adacore.com>
32         PR ada/26315
34         * utils2.c (find_common_type): If both input types are BLKmode and
35         have the same constant size, keep using the first one.
37         * bindgen.adb: (Gen_Versions_Ada): Revert previous workaround.
39         * decl.c (gnat_to_gnu_entity): Only check TREE_OVERFLOW for a constant.
41         * misc.c (gnat_handle_option): New case for -Woverlength-strings.
43 2006-02-17  Jose Ruiz  <ruiz@adacore.com>
45         * s-taprop-irix.adb, s-taprop-hpux-dce.adb, s-taprop-linux.adb, 
46         s-taprop-solaris.adb, s-taprop-vms.adb, s-taprop-mingw.adb, 
47         s-taprop-posix.adb, s-taprop-vxworks.adb, s-taprop-lynxos.adb, 
48         s-taprop-tru64.adb (Set_False, Set_True, Suspend_Until_True): Add
49         Abort_Defer/Undefer pairs to avoid the possibility of a task being
50         aborted while owning a lock.
52 2006-02-17  Javier Miranda  <miranda@adacore.com>
53             Robert Dewar  <dewar@adacore.com>
55         * exp_ch4.adb (Expand_N_Allocator): If the allocated object is accessed
56         through an access to class-wide interface we force the displacement of
57         the pointer to the allocated object to reference the corresponding
58         secondary dispatch table.
59         (Expand_N_Op_Divide): Allow 64 bit divisions by small power of 2,
60         if Long_Shifts are supported on the target, even if 64 bit divides
61         are not supported (configurable run time mode).
62         (Expand_N_Type_Conversion): Do validity check if validity checks on
63         operands are enabled.
64         (Expand_N_Qualified_Expression): Do validity check if validity checks
65         on operands are enabled.
67 2006-02-17  Ed Schonberg  <schonberg@adacore.com>
69         * exp_dbug.adb (Debug_Renaming_Declaration): Indicate that the entity
70         must be materialized when the renamed expression is an explicit
71         dereference.
73 2006-02-17  Ed Schonberg  <schonberg@adacore.com>
75         * freeze.adb (Statically_Discriminated_Components): Return false if
76         the bounds of the type of the discriminant are not static expressions.
78         * sem_aggr.adb (Check_Static_Discriminated_Subtype): Return false if
79         the bounds of the discriminant type are not static.
81 2006-02-17  Robert Dewar  <dewar@adacore.com>
83         * g-os_lib.adb (Copy_File): Make sure that if From has an Invalid_FD,
84         then we close To if it is valid.
86 2006-02-17  Vasiliy Fofanov  <fofanov@adacore.com>
88         * init.c (facility_resignal_table): new array
89         (__gnat_default_resignal_p): enhance default predicate to resignal if
90         VMS condition has one of the predefined facility codes.
92 2006-02-17  Vasiliy Fofanov  <fofanov@adacore.com>
94         * Makefile.in: Use VMS64 specialized versions of several units in
95         Interfaces.C hierarchy to be compatible with HP C default size choices.
96         Use the default version of Ada.Synchronous_Task_Control for VxWorks 653.
98 2006-02-17  Ed Schonberg  <schonberg@adacore.com>
100         * sem_ch10.adb (Analyze_With_Clause): If the unit is a subprogram
101         instantiation, the corresponding entity is the related_instance of the
102         wrapper package created for the instance.
104 2006-02-17  Ed Schonberg  <schonberg@adacore.com>
106         * sem_ch12.adb (Analyze_Package_Instantiation): Inline_Now is false if
107         the current instance is nested within another instance in a child unit.
109 2006-02-17  Javier Miranda  <miranda@adacore.com>
110             Ed Schonberg  <schonberg@adacore.com>
112         * sem_ch3.adb (Build_Discriminated_Subtype): In case of concurrent
113         type we cannot inherit the primitive operations; we inherit the
114         Corresponding_Record_Type (which has the list of primitive operations).
115         (Check_Anonymous_Access_Types): When creating anonymous access types for
116         access components, use Rewrite in order to preserve the tree structure,
117         for ASIS use.
118         (Analyze_Object_Declaration): For limited types with access
119         discriminants with defaults initialized by an aggregate, obtain
120         subtype from aggregate as for other mutable types.
121         (Derived_Type_Declaration): If the derived type is a limited interface,
122         set the corresponding flag (Is_Limited_Record is not sufficient).
124 2006-02-17  Ed Schonberg  <schonberg@adacore.com>
126         * sem_ch6.adb (Build_Body_To_Inline): Enforce the rule that in order
127         to inline a function that returns an unconstrained type, the return
128         expression must be the first variable declared in the body of the
129         function.
131 2006-02-17  Javier Miranda  <miranda@adacore.com>
133         * sem_res.adb (Resolve_Type_Conversion): In case of conversion to an
134         abstract interface type, the static analysis is not enough to know if
135         the interface is implemented or not by the source tagged type. Hence
136         we must pass the work to the expander to generate the required code to
137         evaluate the conversion at run-time.
138         (Resolve_Equality_Op): Do not apply previous
139         transformation if expansion is disasbled, to prevent anomalies when
140         locating global references in a generic unit.
142 2006-02-17  Vincent Celier  <celier@adacore.com>
144         * snames.ads, snames.adb: New standard names for new project attributes:
145         archive_builder, archive_indexer, compiler_pic_option,
146         config_body_file_name, config_body_file_name_pattern,
147         config_file_switches, config_file_unique, config_spec_file_name,
148         config_spec_file_name_pattern, default_builder_switches,
149         default_global_compiler_switches, default_language,
150         dependency_file_kind, global_compiler_switches, include_path,
151         include_path_file, language_kind, linker_executable_option,
152         linker_lib_dir_option, linker_lib_name_option, mapping_file_switches,
153         roots, runtime_project.
155 2006-02-17  Matthew Heaney  <heaney@adacore.com>
157         * a-convec.ads, a-convec.adb: 
158         (operator "&"): handle potential overflow for large index types
159         (Insert): removed Contraint_Error when using large index types
160         (Insert_Space): removed Constraint_Error for large index types
161         (Length): moved constraint check from Length to Insert
163         * a-coinve.ads, a-coinve.adb: Stream attribute procedures are declared
164         as not null access.
165         Explicit raise statements now include an exception message.
166         (operator "&"): handle potential overflow for large index types
167         (Insert): removed Contraint_Error when using large index types
168         (Insert_Space): removed Constraint_Error for large index types
169         (Length): moved constraint check from Length to Insert
171 2006-02-17  Robert Dewar  <dewar@adacore.com>
173         * s-wchcnv.adb: Document handling of [ on output (we do not change
174         this to ["5B"] and the new comments say why not.
176         * gnat_ugn.texi: 
177         Add note for -gnatVo that this now includes the cases of type
178         conversions and qualified expressions.
179         Add comments on handling of brackets encoding for Text_IO
181 2006-02-17  Ramon Fernandez  <fernandez@adacore.com>
182             Thomas Quinot  <quinot@adacore.com>
183             Robert Dewar  <dewar@adacore.com>
184             Javier Miranda  <miranda@adacore.com>
186         * expander.adb: Fix typo in comment
188         * exp_pakd.adb: Fix typo
189         Minor comment reformatting.
191         * g-dyntab.adb: Minor reformatting
193         * exp_ch6.adb (Register_Interface_DT_Entry): Traverse the list of
194         aliased subprograms to look for the abstract interface subprogram.
196 2006-02-16  Eric Botcazou  <ebotcazou@adacore.com>
198         * env.c (__gnat_setenv): Use size_t.
199         (__gnat_unsetenv): Likewise.
200         (__gnat_clearenv): Likewise.
202 2006-02-16  Arnaud Charlet  <charlet@adacore.com>
204         * opt.ads (Ada_Version_Default): Set to Ada 2005 by default.
206 2006-02-13  Arnaud Charlet  <charlet@adacore.com>
208         * a-intnam-os2.ads, a-intnam-unixware.ads, g-soccon-unixware.ads,
209         g-soliop-unixware.ads, i-os2err.ads, i-os2lib.adb, i-os2lib.ads,
210         i-os2syn.ads, i-os2thr.ads, s-intman-irix-athread.adb,
211         s-osinte-aix-fsu.ads, s-osinte-fsu.adb, s-parame-os2.adb,
212         s-osinte-irix-athread.ads, s-osinte-linux-fsu.ads, s-osinte-os2.adb,
213         s-osinte-os2.ads, s-osinte-solaris-fsu.ads, s-osinte-unixware.adb,
214         s-osinte-unixware.ads, s-osprim-os2.adb, s-taprop-irix-athread.adb,
215         s-taprop-os2.adb, s-tasinf-irix-athread.adb, s-tasinf-irix-athread.ads,
216         s-taspri-os2.ads, system-os2.ads, system-unixware.ads: Removed,
217         no longer used.
219 2006-02-13  Jose Ruiz  <ruiz@adacore.com>
221         * a-taster.adb (Current_Task_Fallback_Handler): Document why explicit
222         protection against race conditions is not needed.
223         (Set_Dependents_Fallback_Handler): Add mutual exclusive access to the
224         fallback handler.
225         (Set_Specific_Handler): Add mutual exclusive access to the specific
226         handler.
227         (Specific_Handler): Add mutual exclusive access for retrieving the
228         specific handler.
230         * s-tarest.adb (Task_Wrapper): Add mutual exclusive access to the fall
231         back handler.
233         * s-taskin.ads (Common_ATCB): Remove pragma Atomic for
234         Fall_Back_Handler and Specific_Handler.
236         * s-tassta.adb (Task_Wrapper): Add mutual exclusive access to the task
237         termination handlers.
238         Set two different owerflow depending on the maximal stack size.
240         * s-solita.adb (Task_Termination_Handler_T): Document why explicit
241         protection against race conditions is not needed when executing the
242         task termination handler.
244 2006-02-13  Robert Dewar  <dewar@adacore.com>
246         * s-gloloc-mingw.adb, a-cgaaso.ads, a-stzmap.adb, a-stzmap.adb,
247         a-stzmap.ads, a-ztcoio.adb, a-ztedit.adb, a-ztedit.ads, a-ztenau.adb,
248         a-ztenau.ads, a-colien.adb, a-colien.ads, a-colire.adb, a-colire.ads,
249         a-comlin.adb, a-decima.adb, a-decima.ads, a-direio.adb, a-direio.adb,
250         a-direio.adb, a-direio.ads, a-ngcoty.adb, a-ngcoty.ads, a-nuflra.adb,
251         a-nuflra.ads, a-sequio.adb, a-sequio.ads, a-sequio.ads, a-storio.ads,
252         a-stream.ads, a-ststio.adb, a-ststio.adb, a-ststio.ads, a-ststio.ads,
253         a-stwima.adb, a-stwima.adb, a-stwima.ads, a-stwise.adb, a-teioed.adb,
254         a-teioed.ads, a-ticoau.adb, a-ticoau.ads, a-ticoio.adb, a-tasatt.ads,
255         a-tideau.adb, a-tideau.ads, a-tideio.adb, a-tideio.ads, a-tienau.adb,
256         a-tienau.ads, a-tienio.adb, a-tienio.ads, a-tifiio.ads, a-tiflau.adb,
257         a-tiflau.ads, a-tiflio.adb, a-tiflio.adb, a-tiflio.ads, a-tigeau.ads,
258         a-tiinau.adb, a-tiinau.ads, a-tiinio.adb, a-tiinio.ads, a-timoio.adb,
259         a-timoio.ads, a-titest.adb, a-titest.ads, a-wtcoio.adb, a-wtdeau.adb,
260         a-wtdeau.ads, a-wtdeio.adb, a-wtdeio.ads, a-wtedit.adb, a-wtedit.adb,
261         a-wtedit.ads, a-wtenau.adb, a-wtenau.ads, a-wtenau.ads, a-wtenio.adb,
262         a-wtenio.ads, a-wtfiio.adb, a-wtfiio.ads, a-wtflau.adb, a-wtflau.ads,
263         a-wtflio.adb, a-wtflio.adb, a-wtflio.ads, a-wtgeau.ads, a-wtinau.adb,
264         a-wtinau.ads, a-wtinio.adb, a-wtinio.ads, a-wtmoau.adb, a-wtmoau.ads,
265         a-wtmoio.adb, a-wtmoio.ads, xref_lib.adb, xref_lib.ads, xr_tabls.adb,
266         g-boubuf.adb, g-boubuf.ads, g-cgideb.adb, g-io.adb, gnatdll.adb,
267         g-pehage.adb, i-c.ads, g-spitbo.adb, g-spitbo.ads, mdll.adb,
268         mlib-fil.adb, mlib-utl.adb, mlib-utl.ads, prj-env.adb, prj-tree.adb,
269         prj-tree.ads, prj-util.adb, s-arit64.adb, s-asthan.ads, s-auxdec.adb,
270         s-auxdec.ads, s-chepoo.ads, s-direio.adb, s-direio.ads, s-errrep.adb,
271         s-errrep.ads, s-fileio.adb, s-fileio.ads, s-finroo.adb, s-finroo.ads,
272         s-gloloc.adb, s-gloloc.ads, s-io.adb, s-io.ads, s-rpc.adb,
273         s-rpc.ads, s-shasto.ads, s-sequio.adb, s-stopoo.ads, s-stratt.adb,
274         s-stratt.ads, s-taasde.adb, s-taasde.ads, s-tadert.adb, s-sequio.ads,
275         s-taskin.adb, s-tasque.adb, s-tasque.ads, s-wchjis.ads, makegpr.adb,
276         a-coinve.adb, a-cidlli.adb, eval_fat.adb, exp_dist.ads, exp_smem.adb,
277         fmap.adb, g-dyntab.ads, g-expect.adb, lib-xref.ads, osint.adb,
278         par-load.adb, restrict.adb, sinput-c.ads, a-cdlili.adb,
279         system-vms.ads, system-vms-zcx.ads, system-vms_64.ads: Minor
280         reformatting.
282 2006-02-13  Hristian Kirtchev  <kirtchev@adacore.com>
284         * a-tasatt.adb, s-osinte-lynxos-3.adb, s-osinte-lynxos.adb,
285         s-osinte-aix.adb, s-interr-sigaction.adb, s-asthan-vms-alpha.adb,
286         s-interr-vms.adb, s-intman-vms.adb, s-interr-vxworks.adb,
287         s-intman-vxworks.adb, s-asthan-vms-alpha.adb, a-ztexio.adb,
288         a-reatim.adb, a-taside.adb, a-textio.adb, a-witeio.adb, prj-attr.adb,
289         s-intman-irix.adb, s-intman-solaris.adb, s-intman-posix.adb,
290         a-dynpri.adb, a-interr.adb, g-dynhta.adb, s-asthan.adb, s-interr.adb,
291         s-pooglo.adb, s-pooloc.adb, s-poosiz.adb, s-tasren.adb, s-tasuti.adb,
292         s-tataat.adb, s-tpobop.adb: Remove redundant with clauses.
294 2006-02-13  Arnaud Charlet  <charlet@adacore.com>
296         * s-osinte-darwin.adb, s-osinte-darwin.ads, s-osinte-vxworks.ads, 
297         s-osinte-solaris.ads, s-osinte-linux.ads, s-osinte-freebsd.ads, 
298         s-osinte-solaris-posix.ads, s-osinte-lynxos-3.ads, s-osinte-lynxos.ads, 
299         s-osinte-tru64.ads, s-osinte-aix.ads, s-osinte-irix.ads, 
300         s-osinte-hpux-dce.ads, s-osinte-linux-hppa.ads, 
301         s-osinte-linux-alpha.ads, s-inmaop-posix.adb (sigset_t_ptr): Removed,
302         replaced by anonymous access type.
303         (pthread_sigmask): Now take an access sigset_t
305         * s-osinte-hpux.ads:  Ditto.
306         (pthread_mutex_t, pthread_cond_t): Update definitions to support
307         properly 32 and 64 bit ABIs.
309 2006-02-13  Pascal Obry  <obry@adacore.com>
311         * s-taprop-posix.adb, s-taprop-vxworks.adb, s-taprop-tru64.adb, 
312         s-taprop-lynxos.adb, s-taprop-irix.adb, s-taprop-hpux-dce.adb, 
313         s-taprop-linux.adb, s-taprop-solaris.adb,
314         s-taprop-vms.adb (Create_Task): Remove task adjustment code. This
315         adjustement is already done when calling this routine.
317 2006-02-13  Pascal Obry  <obry@adacore.com>
319         * system-mingw.ads (Underlying_Priorities): Update the priority mapping
320         table to take advantage of the 16 priority levels available on Windows
321         2000 and XP. On NT4 there are only 7 priority levels, this is properly
322         supported by this new mapping.
324 2006-02-13  Nicolas Setton  <setton@adacore.com>
326         * adadecode.h, adadecode.c: (__gnat_decode): Improve support of types.
327         (get_encoding): New subprogram. Extracts the encodings from an encoded
328         Ada name.
330 2006-02-13  Pascal Obry  <obry@adacore.com>
331             Nicolas Roche  <roche@adacore.com>
332             Arnaud Charlet  <charlet@adacore.com>
334         * adaint.h, adaint.c (DIR_SEPARATOR): Use _T() macro for Unicode
335         support.
336         (__gnat_try_lock): Add unicode support by using a specific section on
337         Windows.
338         (__gnat_get_current_dir): Idem.
339         (__gnat_open_read): Idem.
340         (__gnat_open_rw): Idem.
341         (__gnat_open_create): Idem.
342         (__gnat_create_output_file): Idem.
343         (__gnat_open_append): Idem.
344         (__gnat_open_new): Idem.
345         (__gnat_file_time_name): Idem.
346         (__gnat_set_file_time_name): Idem.
347         (__gnat_stat): Idem.
348         (win32_no_block_spawn): Idem.
349         (__gnat_locate_exec_on_path): Idem.
350         (__gnat_opendir): New routine.
351         (__gnat_closedir): Idem.
352         (__gnat_readdir): Add new parameter length (pointer to int). Update
353         implementation to use it and add specific Win32 code for Unicode
354         support.
355         (__gnat_get_env_value_ptr): Remove. Replaced by __gnat_getenv in env.c
356         (__gnat_set_env_value): Remove. Replaced by __gnat_setenv in env.c
357         (convert_addresses): Do not define this dummy routine on VMS.
359         * mingw32.h (GNAT_UNICODE_SUPPORT): New definition, if set the GNAT
360         runtime Unicode support will be activated.
361         (S2WS): String to Wide-String conversion. This version just copy a
362         string in non Unicode version.
363         (WS2S): Wide-String to String conversion. This version just copy a
364         string in non Unicode version.
366         * g-dirope.adb: (Close): Now import __gnat_closedir from adaint.c.
367         (Open): Now import __gnat_opendir from adaint.c.
368         (Read): Change the implementation to support unicode characters. It is
369         not possible to use strlen() on Windows as this version supports only
370         standard ASCII characters. So the length of the directory entry is now
371         returned from the imported __gnat_readdir routine.
372         Update copyright notice.
374         * s-crtl-vms64.ads, s-crtl.ads: (closedir): Moved to adaint.c.
375         (opendir): Moved to adaint.c.
377         * g-os_lib.adb (Copy_Time_Stamp): Fix off-by-one range computation.
378         (Get_Directory): Fix wrong indexing.
379         (Getenv): replace __gnat_get_env_value_ptr from adaint.c by
380         __gnat_getenv from env.c
381         (Setenv): replace __gnat_set_env_value from adaint.c by __gnat_setenv
382         from env.c
384         * env.h, env.c: New file.
386         * s-scaval.adb (Initialize): Replace __gnat_get_env_value_ptr from
387         adaint.c by __gnat_getenv from env.c
389         * s-shasto.adb (Initialize): replace __gnat_get_env_value_ptr from
390         adaint.c by __gnat_getenv from env.c
392         * Make-lang.in: Add env.o in the list of C object needed by gnat1
393         and gnatbind.
394         Update dependencies.
396 2006-02-13  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
397             Olivier Hainque  <hainque@adacore.com>
398             Eric Botcazou  <ebotcazou@adacore.com>
400         * ada-tree.h: (TYPE_UNCHECKED_UNION_P): Deleted.
401         
402         * gigi.h (value_factor_p): Add prototype and description, now public.
404         * decl.c (gnat_to_gnu_field): Don't attempt BLKmode to integral type
405         promotion for field with rep clause if the associated size was proven
406         to be in error.
407         Expand comments describing attempts to use a packable type.
408         (gnat_to_gnu_entity) <E_Signed_Integer_Subtype,
409         E_Floating_Point_Subtype>: Inherit alias set of what we are making a
410         subtype of to ensure conflicts amongst all subtypes in a hierarchy,
411         necessary since these are not different types and pointers may
412         actually designate any subtype in this hierarchy.
413         (gnat_to_gnu_entity, case E_Record_Type): Always make fields for
414         discriminants but put them into record only if not Unchecked_Union;
415         pass flag to components_to_record showing Unchecked_Union.
416         (make_dummy_type): Use UNION_TYPE only if Unchecked_Union and no
417         components before variants; don't set TYPE_UNCHECKED_UNION_P.
418         (components_to_record): New argument UNCHECKED_UNION.
419         Remove special case code for Unchecked_Union and instead use main code
420         with small changes.
422         PR ada/26096
423         (gnat_to_gnu_entity) <E_Variable>: Do not initialize the
424         aligning variable with the expression being built, only its inner
425         field.
427         * trans.c (Handled_Sequence_Of_Statements_to_gnu): Remove call to
428         emit_sequence_entry_statements.
429         (emit_sequence_entry_statements, body_with_handlers_p): Delete.
430         (establish_gnat_vms_condition_handler): Move before
431         Subprogram_Body_to_gnu.
432         (Subprogram_Body_to_gnu): On VMS, establish_gnat_vms_condition_handler
433         for a subprogram if it has a foreign convention or is exported.
434         (Identifier_to_gnu): Manually unshare the DECL_INITIAL tree when it is
435         substituted for a CONST_DECL.
436         (tree_transform, case N_Aggregate): Remove code for UNION_TYPE and pass
437         Etype to assoc_to_constructor.
438         (assoc_to_constructor): New argument, GNAT_ENTITY; use it to ignore
439         discriminants of Unchecked_Union.
440         (TARGET_ABI_OPEN_VMS): Define to 0 if not defined, so that later uses
441         don't need cluttering preprocessor directives.
442         (establish_gnat_vms_condition_handler): New function. Establish the GNAT
443         condition handler as current in the compiled function.
444         (body_with_handlers_p): New function. Tell whether a given sequence of
445         statements node is attached to a package or subprogram body and involves
446         exception handlers possibly nested within inner block statements.
447         (emit_sequence_entry_statements): New function, to emit special
448         statements on entry of sequences when necessary. Establish GNAT
449         condition handler in the proper cases for VMS.
450         (Handled_Sequence_Of_Statements_to_gnu): Start block code with
451         emit_sequence_entry_statements.
453         * utils2.c (find_common_type): If both input types are BLKmode and
454         have a constant size, use the smaller one.
455         (build_simple_component_ref): Also match if FIELD and NEW_FIELD are
456         the same.
458         * utils.c (value_factor_p): Make public, to allow uses from other gigi
459         units.
460         (create_type_decl): Do not set the flag DECL_IGNORED_P for dummy types.
461         (convert, case UNION_TYPE): Remove special treatment for unchecked
462         unions.
464         PR ada/18659
465         (update_pointer_to): Update variants of pointer types to
466         unconstrained arrays by attaching the list of fields of the main
467         variant.
469 2006-02-13  Arnaud Charlet  <charlet@adacore.com>
470             Robert Dewar  <dewar@adacore.com>
472         * a-exexpr.adb, a-exexpr-gcc.adb
473         (Process_Raise_Exception): Removed, merged with Propagate_Exception.
474         (Propagate_Exception): Now take extra From_Signal_Handler parameter.
475         Remove code unused for exception propagation for the compiler itself
476         from a-except.adb and update to still share separate packages.
478         * a-except.ads, a-except.adb: Ditto.
479         Add comments that this version is now used only by the compiler and
480         other basic tools. The full version that includes the Ada 2005 stuff
481         is in separate files a-except-2005.ads/adb. The reason is that we do
482         not want to cause bootstrap problems with compilers not recognizing
483         Wide_Wide_String.
484         Add exception reason code PE_Implicit_Return
485         Add new exception reason code (Null Exception_Id)
487         * a-except-2005.adb, a-except-2005.ads: New files.
489         * s-wchcon.ads: (Get_WC_Encoding_Method): New function.
491         * s-wchcon.adb: New file.
493         * Makefile.in (LIBGNAT_SRCS): Add tb-gcc.c.
494         (traceback.o deps): Likewise.
495         (SPARC/Solaris): Accept sparc[64|v9]-sun-solaris.
496         Activate build of GMEM instrumentation library on VMS targets.
497         (gnatlib-sjlj, gnatlib-zcx): Pass EH_MECHANISM to make gnatlib.
498         Use a-except-2005.ads/adb for all run-time library builds unless
499         specified otherwise.
500         [VMS] (LIBGNAT_TARGET_PAIRS_AUX1,2): Rename s-parame-vms.ads to
501         s-parame-vms-alpha.ads and add s-parame-vms-ia64.ads.
502         Use s-parame.adb on all native platforms.
503         Use s-parame-vxworks.adb on all vxworks platforms.
504         Add env.c env.h in LIBGNAT_SRCS
505         Add env.o in LIBGNAT_OBJS
506         (GNATMAKE_OBJS): Remove ctrl_c.o object.
507         (LIBGNAT_TARGET_PAIRS for x86-vxworks): Use an specialized version of
508         s-osinte.adb, s-tpopsp.adb, and system.ads for the run time that
509         supports VxWorks 6 RTPs.
510         (EXTRA_GNATRTL_NONTASKING_OBJS for x86-vxworks): Remove the use of
511         i-vxworks and i-vxwoio from the run time that supports VxWorks 6 RTPs.
513         * types.h, types.ads (Terminate_Program): New exception
514         Add comment on modifying multiple versions of a-except.adb when the
515         table of exception reasons is modified.
516         Add exception reason code PE_Implicit_Return
517         Add new exception reason code (Null Exception_Id)
519         * clean.adb (Initialize): Get the target parameters before checking
520         if target is OpenVMS. Move the OpenVMS specific code here from package
521         body elaboration code.
523 2006-02-13  Thomas Quinot  <quinot@adacore.com>
524             Vincent Celier  <celier@adacore.com>
525             Robert Dewar  <dewar@adacore.com>
527         * ali-util.adb (Get_File_Checksum): Update to account for change in
528         profile of Initialize_Scanner.
530         * gprep.adb (Gnatprep): Update to account for change in profile of
531         Initialize_Scanner.
532         (Process_One_File): Same.
534         * lib.adb (Get_Code_Or_Source_Unit): New subprogram factoring the
535         common code between Get_Code_Unit and Get_Source_Unit. Reimplement
536         that behaviour using the new Unit information recorded in the source
537         files table, rather than going through all units every time.
538         (Get_Code_Unit): Reimplement in terms of Get_Code_Or_Source_Unit.
539         (Get_Source_Unit): Same.
541         * prepcomp.adb (Parse_Preprocessing_Data_File): Update to account for
542         change in profile of Initialize_Scanner.
543         (Prepare_To_Preprocess): Same.
545         * lib.ads: Fix typo in comment (templace -> template).
547         * prj-part.adb (Parse_Single_Project): Update to account for change in
548         profile of Initialize_Scanner.
550         * scn.adb (Initialize_Scanner): Account for change in profile of
551         Scng.Initialize_Scanner: set Current_Source_Unit in Scn instead of Scng.
552         Also record the association of the given Source_File_Index to the
553         corresponding Unit_Number_Type.
555         * scng.ads, scng.adb (Initialize_Scanner.Set_Reserved): Remove
556         procedure.
557         (Initialize_Scanner): Call Scans.Initialize_Ada_Keywords.
558         Remove Unit formal for generic scanner: this formal
559         is only relevant to Scn (the scanner instance used to parse Ada source
560         files), not to other instances. Update comment accordingly.
561         (Scan): Use new function Snames.Is_Keyword_Name.
563         * sinfo-cn.adb: Fix typo in comment.
565         * sinput.adb (Unit, Set_Unit): Accessors for new source file attribute
566         Unit.
568         * sinput.ads (Source_File_Record): New component Unit, used to capture
569         the unit identifier (if any) associated to a source file.
571         * sinput-c.adb, sinput-l.adb (Load_File): Initialize new component
572         Unit in Source_File_Record.
574         * sinput-p.adb (Source_File_Is_Subunit): Update to account for change
575         in profile of Initialize_Scanner.
577         * scans.adb (Initialize_Ada_Keywords): New procedure
579         * scans.ads (Initialize_Ada_Keywords): New procedure to initialize the
580         Ada keywords in the Namet table, without the need to call
581         Initialize_Scanner.
583         * snames.adb: Add pragma Ada_2005 (synonym for Ada_05)
584         (Is_Keyword_Name): New function
586         * snames.ads: Add subtype Configuration_Pragma_Names
587         Add pragma Ada_2005 (synonym for Ada_05)
588         (Is_Keyword_Name): New function
590         * snames.h: Add pragma Ada_2005 (synonym for Ada_05)
592 2006-02-13  Arnaud Charlet  <charlet@adacore.com>
594         * a-stwisu.adb, a-strsup.adb, a-stzsup.adb (Super_Slice): Fix slice
595         index.
597         * a-stwima.adb (To_Set): Add extra check when N = 0.
599         * g-regpat.adb: (Match_Simple_Operator): Avoid possible overflow.
601 2006-02-13  Arnaud Charlet  <charlet@adacore.com>
603         * s-parame-mingw.adb, s-parame-linux.adb,
604         s-parame-solaris.adb: Removed, replaced by s-parame.adb
606         * s-parame-vxworks.ads: Fix typo.
608         * s-parame-vxworks.adb: New file.
610         * s-parame.adb: Version now used by all native platforms.
611         (Default_Stack_Size): Use 2 megs for default stack size and use
612         __gl_default_stack_size when available.
613         (Minimum_Stack_Size): Use 12K.
615         * s-taprop-mingw.adb: Set default stack size linker switch to 2megs.
616         (Create_Task): Refine implementation taking advantage of the XP stack
617         size support. On XP, we now create the thread using the flag
618         STACK_SIZE_PARAM_IS_A_RESERVATION.
620         * s-osinte-mingw.ads (Stack_Size_Param_Is_A_Reservation): New constant.
622         * sysdep.c (__gnat_is_windows_xp): New routine, returns 1 on Windows
623         XP and 0 on older Windows versions.
625         * interfac-vms.ads: Removed, no longer used.
627 2006-02-13  Matthew Heaney  <heaney@adacore.com>
629         * a-rbtgso.adb, a-crbtgo.adb, a-crbtgk.adb, a-coorse.adb, 
630         a-cohama.adb, a-ciorse.adb, a-cihama.adb, a-cihase.adb, 
631         a-cohase.adb: All explicit raise statements now include an exception
632         message.
634         * a-ciormu.ads, a-ciormu.adb, a-coormu.ads, a-coormu.adb
635         (Update_Element_Preserving_Key): renamed op to just Update_Element.
636         Explicit raise statements now include an exception message
638         * a-cihase.ads, a-cohase.ads: Removed comment.
640         * a-stboha.ads, a-stboha.adb, a-stfiha.ads, a-envvar.adb,
641         a-envvar.ads, a-swbwha.ads, a-swbwha.adb, a-swfwha.ads, a-szbzha.ads,
642         a-szbzha.adb, a-szfzha.ads: New files.
644 2006-02-13  Matthew Heaney  <heaney@adacore.com>
646         * a-cgcaso.adb, a-cgaaso.adb: Implemented using heapsort instead of
647         quicksort.
649 2006-02-13  Eric Botcazou  <ebotcazou@adacore.com>
651         * lang.opt: Wvariadic-macros: New option.
652         Wold-style-definition: Likewise.
653         Wmissing-format-attribute: Likewise.
655         * misc.c (gnat_handle_option): New cases for -Wvariadic-macros,
656         -Wold-style-definition and -Wmissing-format-attribute.
658 2006-02-13  Robert Dewar  <dewar@adacore.com>
660         * a-ticoio.ads, a-ticoio.adb: Add use clause (moved here from spec)
662         * a-coteio.ads, a-lcteio.ads, a-llctio.ads, a-scteio.ads: New files.
664 2006-02-13  Nicolas Roche  <roche@adacore.com>
666         * a-envvar.adb, a-envvar.ads: New files.
668 2006-02-13  Douglas Rupp  <rupp@adacore.com>
670         * s-parame-vms.ads: Renamed to s-parame-vms-alpha.ads
672         * s-parame-vms-alpha.ads, s-parame-vms-ia64.ads: New files.
674 2006-02-13  Pat Rogers  <rogers@adacore.com>
676         * a-rttiev.adb, a-rttiev.ads: New files.
678 2006-02-13  Hristian Kirtchev  <kirtchev@adacore.com>
680         * a-tiboio.adb, a-tiboio.ads, a-wwboio.adb,
681         a-wwboio.ads, a-zzboio.adb, a-zzboio.ads:  New files.
683         * impunit.adb, Makefile.rtl: Added new Ada 2005 units.
685 2006-02-13  Robert Dewar  <dewar@adacore.com>
687         * rtsfind.adb, exp_prag.adb, lib-writ.adb, par-labl.adb, 
688         sem_case.adb: Minor code reorganization (not Present should be No)
690 2006-02-13  Geert Bosch  <bosch@adacore.com>
691             Gary Dismukes  <dismukes@adacore.com>
693         * a-tifiio.adb (Put_Digits): Test Last against To'First - 1 instead of
694         0, since the lower bound of the actual string may be greater than one.
696         PR ada/20753
698         (Put): Fix condition to raise Layout_Error when invalid
699         layout is requested.
701 2006-02-13  Vincent Celier  <celier@adacore.com>
703         * back_end.adb (Scan_Compiler_Arguments): Check if
704         Search_Directory_Present is True and, if it is, add the argument in
705         the source search directory path.
707         * switch-c.adb (Scan_Front_End_Switches): Accept switch "-I". Set
708         Search_Directory_Present to True.
710 2006-02-13  Joel Brobecker  <brobecke@adacore.com>
712         * bindgen.adb (Gen_Main_C): declare the ensure_reference variable as
713         volatile, to tell the compiler to preserve this variable at any level
714         of optimization.
715         (Gen_Versions_Ada): Temporarily work around codegen bug.
717 2006-02-13  Vincent Celier  <celier@adacore.com>
719         * gnatlink.adb (Process_Binder_File): If -shared is specified, invoke
720         gcc to link with option -shared-libgcc.
721         (Gnatlink): Remove duplicate switches -shared-libgcc
723 2006-02-13  Robert Dewar  <dewar@adacore.com>
725         * gnatvsn.ads (Current_Year): New constant, used to easily update
726         copyright on all GNAT tools.
728         * gnatls.adb, gnatname.adb, vms_conv.adb: Add 2006 to displayed
729         copyright notice.
731 2006-02-13  Robert Dewar  <dewar@adacore.com>
733         * erroutc.ads, erroutc.adb (Set_Message_Blank): Don't insert space
734         after hyphen (small aesthetic change useful for a range of numbers
735         using ^-^.
736         Suppress range checks for a couple of assignments which otherwise
737         cause validity checks with validity checking turned on.
739         * sem_ch13.adb (Analyze_Attribute_Definition_Clause, case Size):
740         Improvement in error message for object.
741         (Rep_Item_Too_Late): Remove '!' in warning message.
743 2006-02-13  Robert Dewar  <dewar@adacore.com>
744             Eric Botcazou  <ebotcazou@adacore.com>
746         * err_vars.ads: Suppress range checks for a couple of assignments
747         which otherwise cause validity checks with validity checking turned on.
748         Update comments.
750         * errout.adb (Error_Msg_Internal): Do not suppress warning messages.
751         Make message unconditional if it is a warning.
752         (Error_Msg_NEL): Always output warning messages.
753         Suppress range checks for a couple of assignments which otherwise
754         cause validity checks with validity checking turned on.
756         * errout.ads (Message Insertion Characters): Document that '!' is
757         implied by '?' in error messages.
759         * gnat1drv.adb: (Bad_Body): Remove '!' in warning message.
760         (Gnat1drv): Use a goto to end of main subprogram instead of
761         Exit_Program (E_Success) so that finalization can occur normally.
763 2006-02-13  Eric Botcazou  <ebotcazou@adacore.com>
765         * s-stchop.adb (Stack_Check): Raise Storage_Error if the argument has
766         wrapped around.
768 2006-02-13  Vincent Celier  <celier@adacore.com>
770         * a-direct.adb (Duration_To_Time, OS_Time_To_Long_Integer): New
771         Unchecked_Conversion functions.
772         (Modification_Time): Use direct conversion of OS_Time to Calendar time
773         when OpenVMS returns False.
775         * a-dirval-mingw.adb, a-dirval-vms.adb, a-dirval.ads,
776         a-dirval.adb (OpenVMS): New Boolean function
778 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
779             Thomas Quinot  <quinot@adacore.com>
781         * checks.adb (Build_Discriminant_Checks): If the expression being
782         checks is an aggregate retrieve the values of its discriminants to
783         generate the check, rather than creating a temporary and a reference
784         to it.
785         (Apply_Access_Check): Rewritten to handle new Is_Known_Null flag
786         (Install_Null_Excluding_Check): Ditto
787         (Selected_Length_Checks): Build actual subtype for the original Ck_Node,
788         not for the renamed object, so that the actual itype is attached in the
789         proper context.
791 2006-02-13  Robert Dewar  <dewar@adacore.com>
792             Vincent Celier  <celier@adacore.com>
794         * debug.adb: Eliminate numeric switches for binder/gnatmake
796         * switch-m.adb (Normalize_Compiler_Switches): Record numeric debug
797         switches for the compiler.
798         (Scan_Make_Switches): Do not allow numeric debug switches for gnatmake
799         (Scan_Make_Switches): When failing with an illegal switch, output an
800         error message with the full switch.
801         Eliminate numeric switches for binder/gnatmake
803         * switch.ads, switch.adb (Bad_Switch): New procedure
805         * switch-b.adb (Scan_Binder_Switches): Do not accept combined switches.
806         Remove 0-9 as debug flag character possibilities
807         -d is now controlling the primary stack size when its value is a
808         positive. Also add checks against invalid values, and support for kb,
809         mb. Ditto for -D switch.
811 2006-02-13  Robert Dewar  <dewar@adacore.com>
812             Serguei Rybin  <rybin@adacore.com>
814         * opt.ads opt.adb: Add Ada_Version_Explicit_Config along with
815         save/restore routines.
816         Properly handle Ada_Version_Explicit and Ada_Version_Config, which
817         were not always properly handled previously.
818         Since we are changing the tree format anyway, also get rid of the
819         junk obsolete Immediate_Errors flag.
820         (Tree_Read): Change the way of reading Tree_Version_String - now we
821         read the version string from the tree even if its length is not the
822         same as the length of the version string computed from Gnatvsn.
823         (Search_Directory_Present): New Boolean flag for the compiler.
824         Define Tree_Version_String as a dynamic string.
825         (Default_Stack_Size): new variable, used to handle switch -d.
827         * par-prag.adb: 
828         For pragma Ada_2005, remove stuff about setting Ada_Version_Explicit
829         only for main unit.
830         Add pragma Ada_2005 (synonym for Ada_05)
831         Properly handle Ada_Version_Explicit and Ada_Version_Config, which
832         were not always properly handled previously.
834         * directio.ads, ioexcept.ads, sequenio.ads, text_io.ads: Change
835         explicit Ada_95 to Ada_2005.
837 2006-02-13  Javier Miranda  <miranda@adacore.com>
838             Robert Dewar  <dewar@adacore.com>
839             Ed Schonberg  <schonberg@adacore.com>
841         * einfo.ads, einfo.adb (First_Tag_Component): Protect the frontend
842         against errors in the source program: a private types for which the
843         corresponding full type declaration is missing and pragma CPP_Virtual
844         is used.
845         (Is_Unchecked_Union): Check flag on Implementation_Base_Type.
846         (Is_Known_Null): New flag
847         (Has_Pragma_Pure): New flag
848         (No_Return): Present in all entities, set only for procedures
849         (Is_Limited_Type): A type whose ancestor is an interface is limited if
850         explicitly declared limited.
851         (DT_Offset_To_Top_Func): New attribute that is present in E_Component
852         entities. Only used for component marked Is_Tag. If present it stores
853         the Offset_To_Top function used to provide this value in tagged types
854         whose ancestor has discriminants.
856         * exp_ch2.adb: Update status of new Is_Known_Null flag
858         * sem_ch7.adb: Maintain status of new Is_Known_Null flag
860         * sem_cat.adb (Get_Categorization): Don't treat function as Pure in
861         the categorization sense if Is_Pure was set by pragma Pure_Function.
863 2006-02-13  Quentin Ochem  <ochem@adacore.com>
864             Olivier Hainque  <hainque@adacore.com>
866         * bindusg.adb: Updated documentation for -d and -D switches.
868         * raise.h (__gnat_set_globals): added new parameter for
869         Default_Stack_Size.
871         * init.c (__gnat_adjust_context_for_raise) <alpha-vms case>: Implement.
872         (__gnat_handle_vms_condition): Adjust context before raise.
873         (__gnat_install_handler): Restore the global vector setup for GCC
874         versions before 3.4, as the frame based circtuitry is not available
875         in this case.
876         (__gnat_set_globals): added a parameter default_stack_size
877         (__gl_default_stack_size): new variable.
879 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
881         * exp_aggr.adb (Build_Array_Aggr_Code): Rename variable
882         "Others_Mbox_Present" to "Others_Box_Present" because the mbox concept
883         does not exist in the Ada RM.
884         (Compatible_Int_Bounds): Determine whether two integer range bounds
885         are of equal length and have the same start and end values.
886         (Is_Int_Range_Bounds): Determine whether a node is an integer range.
887         (Build_Record_Aggr_Code): Perform proper sliding of a nested array
888         aggregate when it is part of an object declaration.
889         (Build_Record_Aggr_Code)  If the aggregate ttype is a derived type that
890         constrains discriminants of its parent, add explicitly the discriminant
891         constraints of the ancestor by retrieving them from the
892         stored_constraint of the parent.
894 2006-02-13  Robert Dewar  <dewar@adacore.com>
896         * exp_attr.adb (Expand_N_Attribute_Reference, case Mechanism_Code): If
897         attribute Mechanism_Code is applied to renamed subprogram, modify
898         prefix to point to base subprogram.
899         Max/Min attributes now violate Restriction No_Implicit_Conditionals
901         * sinfo.ads: Document that Mechanism_Code cannot be applied to
902         renamed subprograms so that the front-end must replace the prefix
903         appropriately.
905 2006-02-13  Javier Miranda  <miranda@adacore.com>
906             Gary Dismukes  <dismukes@adacore.com>
908         * exp_ch3.adb (Component_Needs_Simple_Initialization): Add check for
909         availability of RE_Interface_Tag.
910         (Build_Initialization_Call): Fix wrong access to the discriminant value.
911         (Freeze_Record_Type): Do not generate the tables associated with
912         timed and conditional dispatching calls through synchronized
913         interfaces if compiling under No_Dispatching_Calls restriction.
914         When compiling for Ada 2005, for a nonabstract
915         type with a null extension, call Make_Controlling_Function_Wrappers
916         and insert the wrapper function declarations and bodies (the latter
917         being appended as freeze actions).
918         (Predefined_Primitive_Bodies): Do not generate the bodies of the
919         predefined primitives associated with timed and conditional
920         dispatching calls through synchronized interfaces if we are
921         compiling under No_Dispatching_Calls.
922         (Build_Init_Procedure):  Use RTE_Available to check if a run-time
923         service is available before generating a call.
924         (Make_Controlling_Function_Wrappers): New procedure.
925         (Expand_N_Full_Type_Declaration): Create a class-wide master for
926         access-to-limited-interfaces because they can be used to reference
927         tasks that implement such limited interface.
928         (Build_Offset_To_Top_Functions): Build the tree corresponding to the
929         procedure spec and body of the Offset_To_Top function that is generated
930         when the parent of a type with discriminants has secondary dispatch
931         tables.
932         (Init_Secondary_Tags): Handle the case in which the parent of the type
933         containing secondary dispatch tables has discriminants to generate the
934         correct arguments to call Set_Offset_To_Top.
935         (Build_Record_Init_Proc): Add call to Build_Offset_To_Top_Functions.
937         * a-tags.ads, a-tags.adb: (Check_Index): Removed.
938         Add Wide_[Wide_]Expanded_Name.
939         (Get_Predefined_Prim_Op_Address): New subprogram that provides exactly
940         the same functionality of Get_Prim_Op_Address but applied to predefined
941         primitive operations because the pointers to the predefined primitives
942         are now saved in a separate table.
943         (Parent_Size): Modified to get access to the separate table of primitive
944         operations or the parent type.
945         (Set_Predefined_Prim_Op_Address): New subprogram that provides the same
946         functionality of Set_Prim_Op_Address but applied to predefined primitive
947         operations.
948         (Set_Signature): New subprogram used to store the signature of a DT.
949         (Displace): If the Offset_To_Top value is not static then call the
950         function generated by the expander to get such value; otherwise use
951         the value stored in the table of interfaces.
952         (Offset_To_Top): The type of the actual has been changed to Address to
953         give the correct support to tagged types with discriminants. In this
954         case this value is stored just immediately after the tag field.
955         (Set_Offset_To_Top): Two new formals have been added to indicate if the
956         offset_to_top value is static and hence pass this value to the run-time
957         to store it in the table of interfaces, or else if this value is dynamic
958         and then pass to the run-time the address of a function that is
959         generated by the expander to provide this value for each object of the
960         type.
962         * rtsfind.ads (Default_Prin_Op_Count): Removed.
963         (Default_Prim_Op_Count): New entity
964         (Get_Predefined_Prim_Op_Address): New entity
965         (Set_Predefined_Prim_Op_Address): New entity
966         (RE_Set_Signature): New entity
968 2006-02-13  Thomas Quinot  <quinot@adacore.com>
969             Ed Schonberg  <schonberg@adacore.com>
971         * exp_ch4.adb (Expand_Allocator_Expression): Pass Allocator => True to
972         Make_Adjust_Call done for a newly-allocated object.
974         * exp_ch7.ads, exp_ch7.adb (Expand_Cleanup_Actions): If the statements
975         in a subprogram are wrapped in a cleanup block, indicate that the
976         subprogram contains an inner block with an exception handler.
977         (Make_Adjust_Call): New Boolean formal Allocator indicating whether the
978         Adjust call is for a newly-allocated object. In that case we must not
979         assume that the finalization list chain pointers are correct (since they
980         come from a bit-for-bit copy of the original object's pointers) so if
981         the attach level would otherwise be zero (no change), we set it to 4
982         instead to cause the pointers to be reset to null.
984         * s-finimp.adb (Attach_To_Final_List): New attach level: 4, meaning
985         reset chain pointers to null.
987 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
989         * exp_ch5.adb (Expand_Assign_Array): If the right-hand side is a
990         string, and the context requires a loop for the assignment (e.g.
991         because the left-hand side is packed), generate a unique name for the
992         temporary that holds the string, to prevent spurious name clashes.
994 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
995             Javier Miranda  <miranda@adacore.com>
996             Robert Dewar  <dewar@adacore.com>
997             Gary Dismukes  <dismukes@adacore.com>
999         * exp_ch6.adb (Expand_Inlined_Call): Handle calls to functions that
1000         return unconstrained arrays.
1001         Update comments.
1002         (Expand_Call):  An indirect call through an access parameter of a
1003         protected operation is not a protected call.
1004         Add circuit to raise CE in Ada 2005 mode following call
1005         to Raise_Exception.
1006         (Register_DT_Entry): Do nothing if
1007         the run-time does not give support to abstract interfaces.
1008         (Freeze_Subprogram): In case of dispatching operations, do not generate
1009         code to register the operation in the dispatch table if the source
1010         is compiled with No_Dispatching_Calls.
1011         (Register_Predefined_DT_Entry): Generate code that calls the new
1012         run-time subprogram Set_Predefined_Prim_Op_Address instead of
1013         Set_Prim_Op_Address.
1015         * sem_ch5.adb (Analyze_Assignment_Statement): Do not apply length checks
1016         on array assignments if the right-hand side is a function call that has
1017         been inlined. Check is performed on the assignment in the block.
1018         (Process_Bounds): If bounds and range are overloaded, apply preference
1019         rule for root operations to disambiguate, and diagnose true ambiguity.
1020         (Analyze_Assignment): Propagate the tag for a class-wide assignment with
1021         a tag-indeterminate right-hand side even when Expander_Active is True.
1022         Needed to ensure that dispatching calls to T'Input are allowed and
1023         get the tag of the target class-wide object.
1025         * sem_ch6.adb (New_Overloaded_Entity): Handle entities that override
1026         an inherited primitive operation that already overrides several
1027         abstract interface primitives. For transitivity, the new entity must
1028         also override all the abstract interface primitives covered by the
1029         inherited overriden primitive.
1030         Emit warning if new entity differs from homograph in same scope only in
1031         that one has an access parameter and the other one has a parameter of
1032         a general access type with the same designated type, at the same
1033         position in the signature.
1034         (Make_Inequality_Operator): Use source locations of parameters and
1035         subtype marks from corresponding equality operator when creating the
1036         tree structure for the implicit declaration of "/=". This does not
1037         change anything in behaviour except that the decoration of the
1038         components of the subtree created for "/=" allows ASIS to get the
1039         string images of the corresponding identifiers.
1040         (Analyze_Return_Statement): Remove '!' in warning message.
1041         (Check_Statement_Sequence): Likewise.
1042         (Analyze_Subprogram_Body): For an access parameter whose designated type
1043         is an incomplete type imported through a limited_with clause, use the
1044         type of the corresponding formal in the body.
1045         (Check_Returns): Implicit return in No_Return procedure now raises
1046         Program_Error with a compile time warning, instead of beging illegal.
1047         (Has_Single_Return):  Function returning unconstrained type cannot be
1048         inlined if expression in unique return statement is not an identifier.
1049         (Build_Body_To_Inline): It is possible to inline a function call that
1050         returns an unconstrained type if all return statements in the function
1051         return the same local variable. Subsidiary procedure Has_Single_Return
1052         verifies that the body conforms to this restriction.
1054         * sem_res.adb (Resolve_Equality_Op): If the operands do not have the
1055         same type, and  one of them is of an anonymous access type, convert
1056         the other operand to it, so that this is a valid binary operation for
1057         gigi.
1058         (Resolve_Type_Conversion): Handle subtypes of protected types and
1059         task types when accessing to the corresponding record type.
1060         (Resolve_Allocator): Add '\' in 2-line warning message.
1061         Remove '!' in warning message.
1062         (Resolve_Call): Add '\' in 2-line warning message.
1063         (Valid_Conversion): Likewise.
1064         (Resolve_Overloaded_Selected_Component): If disambiguation succeeds, the
1065         resulting type may be an access type with an implicit dereference.
1066         Obtain the proper component from the designated type.
1067         (Make_Call_Into_Operator): Handle properly a call to predefined equality
1068         given by an expanded name with prefix Standard, when the operands are
1069         of an anonymous access type.
1070         (Check_Fully_Declared_Prefix): New procedure, subsidiary of Resolve_
1071         Explicit_Dereference and Resolve_Selected_Component, to verify that the
1072         prefix of the expression is not of an incomplete type. Allows full
1073         diagnoses of all semantic errors.
1074         (Resolve_Actuals): If the actual is an allocator whose directly
1075         designated type is a class-wide interface we build an anonymous
1076         access type to use it as the type of the allocator. Later, when
1077         the subprogram call is expanded, if the interface has a secondary
1078         dispatch table the expander will add a type conversion to force
1079         the displacement of the pointer.
1080         (Resolve_Call): If a function that returns an unconstrained type is
1081         marked Inlined_Always and inlined, the call will be inlined and does
1082         not require the creation of a transient scope.
1083         (Check_Direct_Boolean_Op): Removed
1084         (Resolve_Comparison_Op): Remove call to above
1085         (Resolve_Equality_Op): Remove call to above
1086         (Resolve_Logical_Op): Inline above, since this is only call.
1087         (Valid_Conversion): Handle properly conversions between arrays of
1088         convertible anonymous access types.
1090         PR ada/25885
1092         (Set_Literal_String_Subtype): If the lower bound is not static, wrap
1093         the literal in an unchecked conversion, because GCC 4.x needs a static
1094         value for a string bound.
1096 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1097             Hristian Kirtchev  <kirtchev@adacore.com>
1099         * exp_ch9.adb (Expand_N_Protected_Type_Declaration): When creating the
1100         components of the corresponding record, take into account component
1101         definitions that are access definitions.
1102         (Expand_N_Asynchronous_Select): A delay unit statement rewritten as a
1103         procedure is not considered a dispatching call and will be expanded
1104         properly.
1106 2006-02-13  Javier Miranda  <miranda@adacore.com>
1108         * exp_disp.ads, exp_disp.adb (Expand_Dispatching_Call): If the
1109         controlling argument of the dispatching call is an abstract interface
1110         class-wide type then we use it directly.
1111         Check No_Dispatching_Calls restriction.
1112         (Default_Prim_Op_Position): Remove the code that looks for the last
1113         entity in the list of aliased subprograms. This code was wrong in
1114         case of renamings.
1115         (Fill_DT_Entry): Add assertion to avoid the use of this subprogram
1116         when the source is compiled with the No_Dispatching_Calls restriction.
1117         (Init_Predefined_Interface_Primitives): No need to inherit primitives
1118         if we are compiling with restriction No_Dispatching_Calls.
1119         (Make_Disp_XXX): Addition of assertion to avoid the use of all these
1120         subprograms if we are compiling under No_Dispatching_Calls restriction.
1121         (Make_DT): Generate a dispatch table with a single dummy entry if
1122         we are compiling with the No_Dispatching_Calls restriction. In
1123         addition, in this case we don't generate code that calls to the
1124         following run-time subprograms: Set_Type_Kind, Inherit_DT.
1125         (Make_Select_Specific_Data_Table): Add assertion to avoid the use
1126         of this subprogram if compiling with the No_Dispatching_Calls
1127         restriction.
1128         (Expand_Type_Conversion): Instead of using the actual parameter,
1129         the argument passed as parameter to the conversion function was
1130         erroneously referenced by the expander.
1131         (Ada_Actions): Addition of Get_Predefined_Prim_Op_Address,
1132         Set_Predefined_Primitive_Op_Address and Set_Signature.
1133         (Expand_Dispatching_Call): Generate call to
1134         Get_Predefined_Prim_Op_Address for predefined primitives.
1135         (Fill_DT_Entry): Generate call to Set_Predefined_Prim_Op_Address for
1136         predefined primitives.
1137         (Make_DT, Make_Secondary_DT): If the tagged type has no user defined
1138         primitives we reserve one dummy entry to ensure that the tag does not
1139         point to some memory that is associated with some other object. In
1140         addition, remove all the old code that generated the assignments
1141         associated with the signature of the dispatch table and replace them
1142         by a call to the new subprogram Set_Signature.
1143         (Set_All_DT_Position): Change the algorithm because now we have a
1144         separate dispatch table associated with predefined primitive operations.
1145         (Expand_Interface_Conversion): In case of non-static offset_to_top
1146         add explicit dereference to get access to the object after the call
1147         to displace the pointer to the object.
1148         (Expand_Interface_Thunk): Modify the generation of the actual used
1149         in the calls to the run-time function Offset_To_Top to fulfil its
1150         new interface.
1151         (Make_DT): Add the new actuals required to call Set_Offset_To_Top.
1153 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1155         * exp_dist.adb (Copy_Specification): For access parameters, copy
1156         Null_Exclusion flag, which will have been set for stream subprograms
1157         in Ada2005 mode.
1159 2006-02-13  Pascal Obry  <obry@adacore.com>
1161         * expect.c (__gnat_expect_portable_execvp): New implementation. The
1162         previous implementation was using the C runtime spawnve routine but
1163         the corresponding wait was using directly the Win32 API. This was
1164         causing some times a lock when waiting for an event using
1165         WaitForSingleObject in __gnat_waitpid. This new implementation uses
1166         the Win32 CreateProcess routine. Avoiding mixing C runtime and Win32
1167         API fixes this problem.
1169 2006-02-13  Robert Dewar  <dewar@adacore.com>
1171         * exp_intr.adb (Expand_Unc_Deallocation): Correct error of bad analyze
1172         call.
1174 2006-02-13  Thomas Quinot  <quinot@adacore.com>
1176         * exp_pakd.ads: Fix typos in comments.
1178         * exp_pakd.adb (Convert_To_PAT_Type): For the case of a bit packed
1179         array reference that is an explicit dereference, mark the converted
1180         (packed) array reference as analyzed to prevent a forthcoming
1181         reanalysis from resetting its type to the original (non-packed) array
1182         type.
1184 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1185             Javier Miranda  <miranda@adacore.com>
1186             Eric Botcazou  <ebotcazou@adacore.com>
1188         * exp_util.ads, exp_util.adb (Find_Prim_Op,
1189         Is_Predefined_Primitive_Operation): When
1190         searching for the predefined equality operator, verify that operands
1191         have the same type.
1192         (Is_Predefined_Dispatching_Operation): Remove the code that looks
1193         for the last entity in the list of aliased subprograms. This code
1194         was wrong in case of renamings.
1195         (Set_Renamed_Subprogram): New procedure
1196         (Remove_Side_Effects): Replace calls to Etype (Exp) with use of the
1197         Exp_Type constant computed when entering this subprogram.
1198         (Known_Null): New function
1199         (OK_To_Do_Constant_Replacement): New function
1200         (Known_Non_Null): Check scope before believing Is_Known_Non_Null flag
1201         (Side_Effect_Free): An attribute reference 'Input is not free of
1202         side effect, unlike other attributes that are functions. (from code
1203         reading).
1204         (Remove_Side_Effects): Expressions that involve packed arrays or records
1205         are copied at the point of reference, and therefore must be marked as
1206         renamings of objects.
1207         (Is_Predefined_Dispatching_Operation): Return false if the operation is
1208         not a dispatching operation.
1210         PR ada/18819
1211         (Remove_Side_Effects): Lift enclosing type conversion nodes for
1212         elementary types in all cases.
1214 2006-02-13  Javier Miranda  <miranda@adacore.com>
1216         * freeze.adb (Freeze_Entity): Handle subtypes of protected types and
1217         task types when accessing to the corresponding record type.
1218         Remove '!' in warning message.
1220 2006-02-13  Olivier Hainque  <hainque@adacore.com>
1222         * g-altive.ads (VECTOR_ALIGNMENT): Set to Min (16, Max_Alignment),
1223         to avoid useless and space inefficient overalignments on targets where
1224         Max_Alignment is larger than 16.
1226 2006-02-13  Pascal Obry  <obry@adacore.com>
1228         * g-catiio.adb (Sec_Number): New type used to compute the number of
1229         seconds since 1-1-1970.
1230         (Image) [Natural]: The parameter was an Integer, as we can't deal with
1231         negative numbers (years, months...) it is better to have a Natural here.
1232         Code clean-up.
1233         (Image) [Number]: Change parameter from Long_Integer to Number.
1234         (Image): Use Number type to compute the seconds since 1-1-1970 to fix an
1235         overflow for dates past year 2038.
1237 2006-02-13  Matthew Heaney  <heaney@adacore.com>
1239         *  g-dyntab.adb (Index_Of): conversion from Natural can no longer raise
1240         Constraint_Error.
1242 2006-02-13  Arnaud Charlet  <charlet@adacore.com>
1244         * gnatbind.adb (Scan_Bind_Arg): Replace error by warning on -M and
1245         native platforms.
1246         (Gnatbind): Do not call Exit_Program (E_Success) at the end, so that
1247         finalization can occur normally.
1249 2006-02-13  Vincent Celier  <celier@adacore.com>
1251         * gnatcmd.adb (Rules_Switches): New table
1252         (Add_To_Rules_Switches): New procedure
1253         (GNATCmd): For command CHECK, put all options following "-rules" in the
1254         Rules_Switches table. Append these -rules switches after the -cargs
1255         switches.
1257 2006-02-13  Robert Dewar  <dewar@adacore.com>
1259         * g-spipat.adb (Image, case PC_Assign_Imm and case PC_Assign_OnM):
1260         These two cases were generating incorrect output, and if this unit
1261         was built with checks on, generated a discriminant mismatch constraint
1262         error.
1264 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1265             Robert Dewar  <dewar@adacore.com>
1267         * lib-xref.adb (Get_Type_Reference): For a private type whose full
1268         view is an array type, indicate the component type as well, for
1269         navigation purposes.
1270         (Generate_Reference): Don't consider array ref on LHS to be a case
1271         of violating pragma Unreferenced.
1272         Do not give Ada 2005 warning except on real reference.
1274 2006-02-13  Vincent Celier  <celier@adacore.com>
1276         * make.adb (Collect_Arguments_And_Compile): For VMS, when compiling the
1277         main source, add switch -mdebug-main=_ada_ so that the executable can
1278         be debugged by the standard VMS debugger.
1279         (Gnatmake): Set No_Main_Subprogram to True when there is no main
1280         subprogram, to avoid issuing -mdebug-main=_ada_ for VMS uselessly.
1281         Exit the Multi_Main_Loop when Unique_Compile is True after compilation
1282         of the last source, as the binding and linking phases are never
1283         performed.
1284         Set all executable obsolete when rebuilding a library.
1286         * makeutl.adb (Linker_Options_Switches): Do not process empty linker
1287         options.
1289 2006-02-13  Javier Miranda  <miranda@adacore.com>
1291         PR ada/23973
1293         * par-ch3.adb (P_Derived_Type_Def_Or_Private_Ext_Decl): Reorganize the
1294         code to improve the error message reported when the program has
1295         declarations of abstract interface types and it is not compiled with
1296         the -gnat05 switch.
1297         (P_Access_Definition): Reorganize the code to improve the error
1298         message reported when the new Ada 2005 syntax for anonymous
1299         access types is used and the program is not compiled with the
1300         -gnat05 switch.
1302 2006-02-13  Robert Dewar  <dewar@adacore.com>
1304         * par-ch6.adb, style.ads, styleg.adb, styleg.ads, stylesw.adb,
1305         stylesw.ads, usage.adb, vms_data.ads: Implement -gnatyI switch
1306         (MODE_IN)
1308 2006-02-13  Javier Miranda  <miranda@adacore.com>
1310         * par-endh.adb (Explicit_Start_Label): Add code to protect the parser
1311         against source containing syntax errors.
1313 2006-02-13  Vincent Celier  <celier@adacore.com>
1315         * prj.adb (Reset): Initialize the first element of table Namings with
1316         the standard naming data.
1318 2006-02-13  Vincent Celier  <celier@adacore.com>
1320         * prj.ads (Error_Warning): New enumeration type
1322         * prj-nmsc.ads, prj-nmsc.adb (Error_Msg): If location parameter is
1323         unknown, use the location of the project to report the error.
1324         (When_No_Sources): New global variable
1325         (Report_No_Ada_Sources): New procedure
1326         (Check): New parameter When_No_Sources. Set value of global variable
1327         When_No_Sources,
1328         (Find_Sources): Call Report_No_Ada_Sources when appropriate
1329         (Get_Sources_From_File): Ditto
1330         (Warn_If_Not_Sources): Better warning messages indicating the unit name
1331         and the file name.
1333         * prj-pars.ads, prj-pars.adb (Parse): New parameter When_No_Sources.
1334         Call Prj.Proc.Process with parameter When_No_Sources.
1336         * prj-proc.ads, prj-proc.adb (Check): New parameter When_No_Sources.
1337         Call Recursive_Check with parameter When_No_Sources.
1338         (Recursive_Check): New parameter When_No_Sources. Call itself and
1339         Prj.Nmsc.Check with parameter When_No_Sources.
1340         (Process): New parameter When_No_Sources. Call Check with parameter
1341         When_No_Sources.
1342         (Copy_Package_Declarations): New procedure to copy renamed parameters
1343         and setting the location of the declared attributes to the location
1344         of the renamed package.
1345         (Process_Declarative_Items): Call Copy_Package_Declarations for renamed
1346         packages.
1348 2006-02-13  Vincent Celier  <celier@adacore.com>
1350         * prj-makr.adb (Make): Preserve the comments from the original project
1351         file.
1352         When removing nodes (attributes Source_Dirs, Source_Files,
1353         Source_List_File and package Naming), save the comments and attach the
1354         saved comments to the newly created nodes.
1355         Do not add a with clause for the naming package if one already exists.
1357 2006-02-13  Javier Miranda  <miranda@adacore.com>
1358             Gary Dismukes  <dismukes@adacore.com>
1359             Robert Dewar  <dewar@adacore.com>
1361         * restrict.ads (No_Dispatching_Calls): New GNAT restriction.
1363         * sem_disp.adb (Override_Dispatching_Operation): Traverse the list of
1364         aliased entities to look for the overriden abstract interface
1365         subprogram.
1366         (Is_Interface_Subprogram): Complete documentation.
1367         (Check_Dispatching_Operation): Do not generate code to register the
1368         operation in the dispatch table if the source is compiled with
1369         restriction No_Dispatching_Calls.
1370         (Override_Dispatching_Operation): Check for illegal attempt to override
1371         No_Return procedure with procedure that is not No_Return
1372         (Check_Dispatching_Call): Suppress the check for an abstract operation
1373         when the original node of an actual is a tag-indeterminate attribute
1374         call, since the attribute, which must be 'Input, can never be abstract.
1375         (Is_Tag_Indeterminate): Handle checking of tag indeterminacy of a
1376         call to the Input attribute (even when rewritten).
1377         (Propagate_Tag): Augment comment to indicate the possibility of a call
1378         to an Input attribute.
1380         * sem_disp.ads (Override_Dispatching_Operation): Moved to spec to allow
1381         calling it from Exp_Ch3.Make_Controlling_Function_Wrappers.
1383         * s-rident.ads: (No_Dispatching_Calls): New GNAT restriction.
1384         No_Wide_Characters is no longer partition-wide
1385         No_Implementation_Attributes/Pragmas are now Ada 2005 (AI-257)
1386         rather than GNAT
1388 2006-02-13  Douglas Rupp  <rupp@adacore.com>
1390         * s-auxdec-vms_64.ads (Short_Address): Wrap it in a type.
1392 2006-02-13  Javier Miranda  <miranda@adacore.com>
1394         * sem_aggr.adb (Resolve_Record_Aggregate): Restructure the code that
1395         handles default-initialized components to keep separate the management
1396         of this feature but also avoid the unrequired resolution and
1397         expansion of components that do not have partially initialized
1398         values.
1399         (Collect_Aggr_Bounds): Add '\' in 2-line warning message.
1400         (Check_Bounds): Likewise.
1401         (Check_Length): Likewise.
1403 2006-02-13  Javier Miranda  <miranda@adacore.com>
1404             Ed Schonberg  <schonberg@adacore.com>
1406         * sem_attr.adb (Analyze_Attribute): In case of 'Class applied to an
1407         abstract interface type call analyze_and_resolve to expand the type
1408         conversion into the corresponding displacement of the
1409         reference to the base of the object.
1410         (Eval_Attribute, case Width): For systems where IEEE extended precision
1411         is supported, the maximum exponent occupies 4 decimal digits.
1412         (Accessibility_Message): Add '\' in 2-line warning message.
1413         (Resolve_Attribute): Likewise.
1414         (case Attribute_Access): Significantly revise checks
1415         for illegal access-to-subprogram Access attributes to properly enforce
1416         the rules of 3.10.2(32/2).
1417         Diagnose use of current instance with an illegal attribute.
1419         * sem_util.ads, sem_util.adb (Enclosing_Generic_Body): Change formal
1420         to a Node_Id.
1421         (Enclosing_Generic_Unit): New function to return a node's innermost
1422         enclosing generic declaration node.
1423         (Compile_Time_Constraint_Error): Remove '!' in warning messages.
1424         (Type_Access_Level): The accessibility level of anonymous acccess types
1425         associated with discriminants is that of the current instance of the
1426         type, and that's deeper than the type itself (AARM 3.10.2 (12.3.21)).
1427         (Compile_Time_Constraint_Error): Handle case of conditional expression.
1428         (Kill_Current_Values_For_Entity): New function
1429         (Enter_Name): Change formal type to Entity_Id
1431 2006-02-13  Hristian Kirtchev  <kirtchev@adacore.com>
1432             Ed Schonberg  <schonberg@adacore.com>
1433             Gary Dismukes  <dismukes@adacore.com>
1435         * sem_ch10.adb (Check_Redundant_Withs): New procedure in
1436         Analyze_Compilation_Unit.
1437         Detect and warn on redundant with clauses detected in a package spec
1438         and/or body when -gnatwr is used.
1439         (Analyze_Context): Analyze config pragmas before other items
1440         (Install_Context_Items): Don't analyze config pragmas here
1441         (Install_Limited_Withed_Unit): Set limited entity of package in
1442         with_clause so that cross-reference information or warning messages on
1443         unused packages can be properly generated
1444         (Is_Visible_Through_Renamings): Return false if the limited_with_clause
1445         has Error_Posted set. Prevent infinite loops in illegal programs.
1446         (Check_Private_Child_Unit): Move test for a nonprivate with clause down
1447         to the point of the error test requiring the current unit to be private.
1448         This ensures that private with clauses are not exempted from the basic
1449         checking for being a descendant of the same library unit parent as a
1450         withed private descendant unit.
1451         (Check_Private_Limited_Withed_Unit): Revise the checking algorithm to
1452         handle private with clauses properly, as well as to account for cases
1453         where the withed unit is a public descendant of a private ancestor
1454         (in which case the current unit must be a descendant of the private
1455         ancestor's parent). The spec comments were updated accordingly. Also,
1456         the old error message in this subprogram was replaced with error
1457         messages that mirror the errors tested and reported by
1458         Check_Private_Child_Unit.
1459         Parameter and variable names improved for readability.
1460         (Install_Limited_Context_Clauses): Remove test for a withed unit being
1461         private as the precondition for calling
1462         Check_Private_Limited_Withed_Unit since that subprogram has been
1463         revised to test public units as well as private units.
1465 2006-02-13  Thomas Quinot  <quinot@adacore.com>
1466             Robert Dewar  <dewar@adacore.com>
1467             Ed Schonberg  <schonberg@adacore.com>
1468             Javier Miranda  <miranda@adacore.com>
1470         * sem_ch12.adb (Inline_Instance_Body): Remove erroneous assumption
1471         that Scope_Stack.First = 1.
1472         Properly handle Ada_Version_Explicit and Ada_Version_Config, which
1473         were not always properly handled previously.
1474         (Formal_Entity): Complete rewrite, to handle properly some complex case
1475         with multiple levels of parametrization by formal packages.
1476         (Analyze_Formal_Derived_Type): Propagate Ada 2005 "limited" indicator
1477         to the corresponding derived type declaration for proper semantics.
1479         * sem_prag.adb (Analyze_Pragma): Remove '!' in warning message.
1480         (Check_Component): Enforce restriction on components of
1481         unchecked_unions: a component in a variant cannot contain tasks or
1482         controlled types.
1483         (Unchecked_Union): Allow nested variants and multiple discriminants, to
1484         conform to AI-216.
1485         Add pragma Ada_2005 (synonym for Ada_05)
1486         Properly handle Ada_Version_Explicit and Ada_Version_Config, which
1487         were not always properly handled previously.
1488         Document that pragma Propagate_Exceptions has no effect
1489         (Analyze_Pragma, case Pure): Set new flag Has_Pragma_Pure
1490         (Set_Convention_From_Pragma): Check that if a convention is
1491         specified for a dispatching operation, then it must be
1492         consistent with the existing convention for the operation.
1493         (CPP_Class): Because of the C++ ABI compatibility, the programmer is no
1494         longer required to specify an vtable-ptr component in the record. For
1495         compatibility reasons we leave the support for the previous definition.
1496         (Analyze_Pragma, case No_Return): Allow multiple arguments
1498         * sem_ch3.ads, sem_ch3.adb (Check_Abstract_Overriding): Flag a
1499         non-overrideen inherited operation with a controlling result as
1500         illegal only its implicit declaration comes from the derived type
1501         declaration of its result's type.
1502         (Check_Possible_Deferred_Completion): Relocate the object definition
1503         node of the subtype indication of a deferred constant completion rather
1504         than directly analyzing it. The analysis of the generated subtype will
1505         correctly decorate the GNAT tree.
1506         (Record_Type_Declaration): Check whether this is a declaration for a
1507         limited derived record before analyzing components.
1508         (Analyze_Component_Declaration): Diagnose record types  not explicitly
1509         declared limited when a component has a limited type.
1510         (Build_Derived_Record_Type): Code reorganization to check if some of
1511         the inherited subprograms of a tagged type cover interface primitives.
1512         This check was missing in case of a full-type associated with a private
1513         type declaration.
1514         (Constant_Redeclaration): Check that the subtypes of the partial and the
1515         full view of a constrained deferred constant statically match.
1516         (Mentions_T): A reference to the current type in an anonymous access
1517         component declaration  must be an entity name.
1518         (Make_Incomplete_Type_Declaration): If type is tagged, set type of
1519         class_wide type to refer to full type, not to the incomplete one.
1520         (Add_Interface_Tag_Components): Do nothing if RE_Interface_Tag is not
1521         available. Required to give support to the certified run-time.
1522         (Analyze_Component_Declaration): In case of anonymous access components
1523         perform missing checks for AARM 3.9.2(9) and 3.10.2 (12.2).
1524         (Process_Discriminants): For an access discriminant, use the
1525         discriminant specification as the associated_node_for_itype, to
1526         simplify accessibility checks.
1528 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1529             Javier Miranda  <miranda@adacore.com>
1531         * sem_ch4.adb (Remove_Abstract_Interpretations): Even if there are no
1532         abstract interpretations on an operator, remove interpretations that
1533         yield Address or a type derived from it, if one of the operands is an
1534         integer literal.
1535         (Try_Object_Operation.Try_Primitive_Operation,
1536         Try_Object_Operation.Try_Class_Wide_Operation): Set proper source
1537         location when creating the new reference to a primitive or class-wide
1538         operation as a part of rewriting a subprogram call.
1539         (Try_Primitive_Operations): If context requires a function, collect all
1540         interpretations after the first match, because there may be primitive
1541         operations of the same type with the same profile and different return
1542         types. From code reading.
1543         (Try_Primitive_Operation): Use the node kind to choose the proper
1544         operation when a function and a procedure have the same parameter
1545         profile.
1546         (Complete_Object_Operation): If formal is an access parameter and prefix
1547         is an object, rewrite as an Access reference, to match signature of
1548         primitive operation.
1549         (Find_Equality_Type, Find_One_Interp): Handle properly equality given
1550         by an expanded name with prefix Standard, when the operands are of an
1551         anonymous access type.
1552         (Remove_Abstract_Operations): If the operation is abstract because it is
1553         inherited by a user-defined type derived from Address, remove it as
1554         well from the set of candidate interpretations of an overloaded node.
1555         (Analyze_Membership_Op): Membership test not applicable to cpp-class
1556         types.
1558 2006-02-13  Bob Duff  <duff@adacore.com>
1560         * sem_ch8.adb (Note_Redundant_Use): Suppress unhelpful warning about
1561         redundant use clauses.
1562         In particular, if the scope of two use clauses overlaps, but one is not
1563         entirely included in the other, we should not warn.  This can happen
1564         with nested packages.
1565         (Analyze_Subprogram_Renaming): Protect the compiler against previously
1566         reported errors. The bug was reported when the compiler was built
1567         with assertions enabled.
1568         (Find_Type): If the node is a 'Class reference and the prefix is a
1569         synchronized type without a corresponding record, return the type
1570         itself.
1572 2006-02-13  Javier Miranda  <miranda@adacore.com>
1574         * sem_ch9.adb (Analyze_Protected_Type, Analyze_Task_Type): Check that
1575         if this is the full-declaration associated with a private declaration
1576         that implement interfaces, then the private type declaration must be
1577         limited.
1578         (Analyze_Single_Protected, Analyze_Single_Task): Do not mark the object
1579         as aliased. The use of the 'access attribute is not available for such
1580         object (for this purpose the object should be explicitly marked as
1581         aliased, but being an anonymous type this is not possible).
1583 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1584             Robert Dewar  <dewar@adacore.com>
1586         * sem_elab.adb (Same_Elaboration_Scope): A package that is a
1587         compilation unit is an elaboration scope.
1588         (Add_Task_Proc): Add '\' in 2-line warning message.
1589         (Activate_All_Desirable): Deal with case of unit with'ed by parent
1591 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1592             Javier Miranda  <miranda@adacore.com>
1594         * sem_type.adb (Write_Overloads): Improve display of candidate
1595         interpretations.
1596         (Add_One_Interp): Do not add to the list of interpretations aliased
1597         entities corresponding with an abstract interface type that is an
1598         immediate ancestor of a tagged type; otherwise we have a dummy
1599         conflict between this entity and the aliased entity.
1600         (Disambiguate): The predefined equality on universal_access is not
1601         usable if there is a user-defined equality with the proper signature,
1602         declared in the same declarative part as the designated type.
1603         (Find_Unique_Type): The universal_access equality operator defined under
1604         AI-230 does not cover pool specific access types.
1605         (Covers): If one of the types is a generic actual subtype, check whether
1606         it matches the partial view of the other type.
1608 2006-02-13  Thomas Quinot  <quinot@adacore.com>
1610         * sinput-d.adb (Write_Line): Update the Source_Index_Table after each
1611         line. This is necessary to allow In_Extended_Main_Unit to provide
1612         correct results for itypes while writing out expanded source.
1613         (Close_File): No need to update the source_index_table here since it's
1614         now done for each line.
1616 2006-02-13  Ed Schonberg  <schonberg@adacore.com>
1617             Robert Dewar  <dewar@adacore.com>
1619         * sprint.adb (Write_Itype): Preserve Sloc of declaration, if any, to
1620         preserve the source unit where the itype is declared, and prevent a
1621         backend abort.
1622         (Note_Implicit_Run_Time_Call): New procedure
1623         (Write_Itype): Handle missing cases (E_Class_Wide_Type and
1624         E_Subprogram_Type)
1626         * sprint.ads: Document use of $ for implicit run time routine call
1628 2006-02-13  Quentin Ochem  <ochem@adacore.com>
1630         * s-stausa.adb (Initialize_Analyzer): fixed error in assignment of
1631         task name.
1633 2006-02-13  Bob Duff  <duff@adacore.com>
1635         * s-valint.adb (Scan_Integer): Call Scan_Raw_Unsigned instead of
1636         Scan_Unsigned, so we do not scan leading blanks and sign twice.
1637         Integer'Value("- 5") and Integer'Value("-+5") now correctly
1638         raise Constraint_Error.
1640         * s-vallli.adb (Scan_Long_Long_Integer): Call
1641         Scan_Raw_Long_Long_Unsigned instead of Scan_Long_Long_Unsigned, so we
1642         do not scan leading blanks and sign twice.
1643         Integer'Value("- 5") and Integer'Value("-+5") now correctly
1644         raise Constraint_Error.
1646         * s-valllu.ads, s-valllu.adb (Scan_Raw_Long_Long_Unsigned,
1647         Scan_Long_Long_Unsigned): Split out most of the processing from
1648         Scan_Long_Long_Unsigned out into
1649         Scan_Raw_Long_Long_Unsigned, so that Val_LLI can call the Raw_ version.
1650         This prevents scanning leading blanks and sign twice.
1651         Also fixed a bug: Modular'Value("-0") should raise Constraint_Error
1652         See RM-3.5(44).
1654         * s-valuns.ads, s-valuns.adb (Scan_Raw_Unsigned, Scan_Unsigned): Split
1655         out most of the processing from Scan_Unsigned out into
1656         Scan_Raw_Unsigned, so that Val_LLI can call the Raw_ version.
1657         This prevents scanning leading blanks and sign twice.
1659         * s-valuti.ads, s-valuti.adb (Scan_Plus_Sign): Add Scan_Plus_Sign, for
1660         use with Modular'Value attribute.
1661         (Scan_Plus_Sign): Add Scan_Plus_Sign, for use with Modular'Value
1662         attribute.
1664 2006-02-13  Robert Dewar  <dewar@adacore.com>
1666         * s-wchjis.adb (JIS_To_EUC): Raise Constraint_Error for invalid value
1668 2006-02-13  Eric Botcazou  <ebotcazou@adacore.com>
1670         * tracebak.c (PPC AIX/Darwin): Define FORCE_CALL to 1.
1671         (PPC VxWorks): Likewise.
1672         (Generic unwinder): Define FORCE_CALL to 0 if not already defined.
1673         (forced_callee): Make non-inlinable and non-pure.
1674         (__gnat_backtrace): Call forced_callee if FORCE_CALL is set to 1.
1676 2006-02-13  Arnaud Charlet  <charlet@adacore.com>
1677             Ben Brosgol  <brosgol@adacore.com>
1678             Robert Dewar  <dewar@adacore.com>
1680         * gnat_rm.texi, gnat_ugn.texi: Remove limitations with sparc m64
1681         support.
1682         Document that gnatbind -M option is for cross environments only.
1683         Added description of using gnatmem to trace gnat rtl allocs and deallocs
1684         Add note on use of $ to label implicit run time calls
1685         Add documentation for -gnatyI (check mode IN)
1686         Updated chapter on compatibility with HP Ada
1687         VMS-oriented edits.
1688         Ran spell and corrected errors
1689         Add documentation for gnatbind -d and rework documentation of -D
1690         at the same time.
1691         Add subprogram/data elimination section.
1692         Minor editing of annex A.
1693         Add section for gnatcheck.
1694         Add documentation for restriction No_Dispatching_Calls
1695         Add documentation for pragma Ada_2005
1696         Remove mention of obsolete pragma Propagate_Exceptions
1697         Document that pragma Unreferenced can appear after DO in ACCEPT
1698         Clarify Pure_Function for library level units
1699         Mention Max/Min in connection with No_Implicit_Conditionals
1700         No_Wide_Characters restriction is no longer partition-wide
1701         Add a nice example for Universal_Literal_String attribute
1702         Document that pragma No_Return can take multiple arguments
1704         * ug_words: Added entry for gnatcheck
1706         * g-ctrl_c.ads (Install_Handler): Enhance comments
1708         * g-os_lib.ads: Add comments to OS_Exit that it is abrupt termination
1710         * g-trasym.ads: Add documentation on how to do off line symbolic
1711         traceback computation.
1713         * s-fatgen.adb: Add comments for Unaligned_Valid
1715         * stand.ads: Fix typo in comment
1717 2006-02-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1719         * Make-lang.in (check-gnat): Run run_acats with $(SHELL).
1721 2006-02-06  Roger Sayle  <roger@eyesopen.com>
1723         * decl.c (gnat_substitute_in_type): Don't handle CHAR_TYPE.
1725 2006-02-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1727         PR target/25926
1728         * initialize.c (__gnat_initialize): Provide HP-UX 10 host and target
1729         implementation that calls __main.
1731 2006-01-25  Peter O'Gorman  <peter@pogma.com>
1733         PR bootstrap/25859
1734         * Makefile.in (GCC_LINK): Remove quotes.
1735         (tools targets): Link with either $(GNATLINK) --GCC="$(GCC_LINK)"
1736         or $(GCC_LINK).
1738         (powerpc-darwin): Pass -shared-libgcc when building shared library.
1740 2006-01-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1742         PR ada/24533
1743         * s-osinte-linux-hppa.ads: Reduce alignment of atomic_lock_t to 8.
1745 2005-12-28  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1747         * s-osinte-linux-hppa.ads: Correct alignment of atomic_lock_t.
1749 2005-12-12  Arnaud Charlet  <charlet@adacore.com>
1751         * Makefile.in: Remove dummy setting of GCC_FOR_TARGET, no longer
1752         needed.
1754 2005-12-12  Arnaud Charlet  <charlet@adacore.com>
1756         * Make-lang.in: Update dependencies
1758 2005-12-12  Arnaud Charlet  <charlet@adacore.com>
1760         * Make-lang.in: Add rule for ada/exp_sel.o
1762 2005-12-12  Arnaud Charlet  <charlet@adacore.com>
1764         * Makefile.in (mingw section): Remove EH_MECHANISM setting.
1766 2005-12-09  Arnaud Charlet  <charlet@adacore.com>
1768         * gnatvsn.ads (Library_Version): Bump to version 4.2
1769         (ASIS_Version_Number): Bumped.
1771 2005-12-09  Doug Rupp  <rupp@adacore.com>
1773         * mlib-tgt-vms-ia64.adb, mlib-tgt-vms-alpha.adb (Is_Interface): Change
1774         Ada bind file prefix on VMS from b$ to b__.
1775         (Build_Dynamic_Library): Change Init file suffix on VMS from $init to
1776         __init.
1778         * prj-nmsc.adb: Change some Hostparm.OpenVMS checks to
1779         Targparm.OpenVMS_On_Target.
1780         (Object_Suffix): Initialize with target object suffix.
1781         (Get_Unit): Change Ada bind file prefix on VMS from b$ to b__.
1783         * butil.adb: Change some Hostparm.OpenVMS checks to
1784         Targparm.OpenVMS_On_Target.
1786         * clean.adb: Change some Hostparm.OpenVMS checks to
1787         Targparm.OpenVMS_On_Target.
1788         (Object_Suffix): Initialize with call to Get_Target_Object_Suffix.
1789         ({declaraction},Delete_Binder_Generated_Files,{initialization}): Change
1790         Ada bind file prefix on VMS from b$ to b__.
1792         * gnatlink.adb (Process_Args): Call Add_Src_Search_Dir for -I in
1793         --GCC so that Get_Target_Parameters can find system.ads.
1794         (Gnatlink): Call Get_Target_Parameters in mainline.
1795         Initialize standard packages for Targparm.
1796         Change some Hostparm.OpenVMS checks to Targparm.OpenVMS_On_Target.
1797         (Process_Args): Also Check for object files with target object
1798         extension.
1799         (Make_Binder_File_Names): Create with target object extension.
1800         (Make_Binder_File_Names): Change Ada bind file prefix on VMS from b$
1801         to b__.
1803         * mlib-prj.adb: Change some Hostparm.OpenVMS checks to
1804         Targparm.OpenVMS_On_Target.
1805         ({declaration},Build_Library,Check_Library): Change Ada bind file
1806         prefix on VMS from b$ to b__.
1808         * osint-b.adb: Change some Hostparm.OpenVMS checks to
1809         Targparm.OpenVMS_On_Target.
1810         (Create_Binder_Output): Change Ada bind file prefix on VMS from b$ to
1811         b__.
1813         * targext.c: New file.
1815         * Makefile.in: add support for vxworks653 builds
1816         (../../vxaddr2line): gnatlink with targext.o.
1817         (TOOLS_LIBS): Move targext.o to precede libgnat.
1818         (init.o, initialize.o): Minor clean up in dependencies.
1819         (GNATLINK_OBJS): Add targparm.o, snames.o
1820         Add rules fo building targext.o and linking it explicitly with all
1821         tools.
1822         Also add targext.o to gnatlib.
1824         * Make-lang.in: Add rules for building targext.o and linking it in
1825         with gnat1 and gnatbind.
1826         Add entry for exp_sel.o.
1828         * osint.adb Change some Hostparm.OpenVMS checks to
1829         Targparm.OpenVMS_On_Target.
1830         (Object_File_Name): Use target object suffix.
1832         * osint.ads (Object_Suffix): Remove, no longer used.
1833         (Target_Object_Suffix): Initialize with target object suffix.
1835         * rident.ads: Add special exception to license.
1837         * targparm.adb (Get_Target_Parameters): Set the value of
1838         Multi_Unit_Index_Character after OpenVMS_On_Target gets its definitive
1839         value.
1840         (Get_Target_Parameters): Set OpenVMS_On_Target if openvms.
1841         
1842         * targparm.ads: Add special exception to license.
1844         * g-os_lib.ads, g-os_lib.adb (Get_Target_Debuggable_Suffix): New
1845         function.
1846         (Copy_File): Make sure from file is closed if error on to file
1847         (Get_Target_Executable_Suffix, Get_Target_Object_Suffix): New functions.
1849         * make.adb (Object_Suffix): Intialize with Get_Target_Object_Suffix.
1850         (Executable_Suffix): Intialize with Get_Target_Executable_Suffix.
1852         * osint-c.adb (Set_Output_Object_File_Name): Initialize extension with
1853         target object suffix.
1855 2005-12-09  Jose Ruiz  <ruiz@adacore.com>
1856             Quentin Ochem  <ochem@adacore.com>
1857             Florian Villoing  <villoing@adacore.com>
1859         * a-taster.ads, a-taster.adb: New files.
1861         * a-elchha.adb (Last_Chance_Handler): Change the task termination soft
1862         link to the version that does nothing. This way the task termination
1863         routine is not executed twice for the environment task when finishing
1864         because of an unhandled exception.
1866         * a-exextr.adb (Notify_Unhandled_Exception): Call the task termination
1867         handler because of an unhandled exception.
1869         * a-taside.adb (Abort_Tasks): Call the Abort_Tasks procedure from
1870         System.Tasking.Utilities instead of that in System.Tasking.Stages.
1872         * s-finimp.adb (initialization code): Modify the soft link for the
1873         finalization of the global list instead of Adafinal.
1875         * s-soflin.ads, s-soflin.adb (Task_Termination_NT): Add this
1876         non-tasking version of the soft link for task termination. We do
1877         nothing since if we are using the non-tasking version it
1878         means that the task termination functionality is not used.
1879         (Null_Finalize_Global_List): Add this null version for the procedure
1880         in charge of finalizing the global list for controlled objects.
1881         (Null_Adafinal): Remove this procedure. Adafinal_NT has been created
1882         instead for handling run-time termination in a more flexible way.
1883         (Adafinal_NT): This new procedure will take care of finalizing the
1884         global list for controlled objects if needed, but no tasking
1885         finalization.
1887         * s-tarest.adb (Task_Lock): Do not try to lock again the
1888         Global_Task_Lock if we already own it. Otherwise, we get blocked in
1889         some run-time operations.
1890         (Task_Unlock): Do not try to actually unlock the Global_Task_Lock
1891         until all nested locks have been released.
1892         (Task_Wrapper): Call the fall-back task termination handler. It
1893         applies to all tasks but the environment task.
1894         (Finalize_Global_Tasks): Add the call for the task termination
1895         procedure for the environment task.
1896         (Task_Wrapper): suppress warnings around declaration of
1897         Secondary_Stack_Address.
1899         * s-tasini.adb (Final_Task_Unlock): Global_Task_Lock_Nesting has been
1900         moved to the Common_ATCB record.
1901         (Task_Lock): Global_Task_Lock_Nesting has been moved to the
1902         Common_ATCB record.
1903         (Task_Unlock): Global_Task_Lock_Nesting has been moved to the
1904         Common_ATCB record.
1906         * s-taskin.adb (Initialize_ATCB): Initialize Global_Task_Lock_Nesting,
1907         Fall_Back_Handler, and Specific_Handler.
1909         * s-taskin.ads (Cause_Of_Termination): Redefine this type here, already
1910         defined in Ada.Task_Termination, to avoid circular dependencies.
1911         (Termination_Handler): Redefine this type here, alredy defined in
1912         Ada.Task_Termination, for avoiding circular dependencies.
1913         (Common_ATCB): Add the Fall_Back_Handler and Specific_Handler required
1914         for storing task termination handlers. In addition,
1915         Global_Task_Lock_Nesting has been moved from Ada_Task_Control_Block to
1916         Common_ATCB because it is used by both the regular and the restricted
1917         run times.
1918         (Ada_Task_Control_Block): Move Global_Task_Lock_Nesting from here to
1919         Common_ATCB because it is used by both the regular and the restricted
1920         run times.
1921         (Common_ATCB): Added a dynamic task analyzer field.
1923         * s-tassta.adb (Abort_Tasks): Move the code in charge of checking
1924         potentially blocking operations to System.Tasking.Utilities.Abort_Tasks.
1925         (Task_Wrapper): Call the task termination handler. It applies to all
1926         tasks but the environment task.
1927         (Finalize_Global_Tasks): Call the task termination procedure for the
1928         environment task. The call to Finalize_Global_List is now performed
1929         using the soft links mechanism.
1930         (Task_Wrapper): added dynamic stack analysis.
1932         * s-tasuti.adb (Abort_Tasks): The code in charge of checking
1933         potentially blocking operations has been moved from
1934         System.Tasking.Stages.Abort_Tasks to this procedure. There can be
1935         direct calls to System.Tasking.Utilities.Abort_Tasks that do not pass
1936         through System.Tasking.Stages.Abort_Tasks, and we do not want to miss
1937         this run-time check.
1939         * s-solita.adb (Task_Termination_Handler_T): Add this task-safe version
1940         of task termination procedure.
1941         (Init_Tasking_Soft_Links): Install the task-safe version of the soft
1942         link for the task termination procedure.
1944         * bindusg.adb: (Bindusg): Added documentation for -u option.
1946         * bindgen.adb (Get_Main_Ada) Added handling of dynamic stack analysis.
1947         (Get_Main_C): Add handling of dynamic stack analysis.
1948         (Gen_Output_File_C): Add external functions for dynamic stack analysis.
1950         * Makefile.rtl: Add entry for a-taster (Ada.Task_Termination).
1951         (GNATRTL_NONTASKING_OBJS) Added entries for dynamic stack analysis
1952         (GNATRTL_NONTASKING_OBJS): Add AltiVec files.
1954         * opt.ads: Added flags used by dynamic stack measurement.
1955         (Max_Line_Length): Remove (not used anymore)
1957         * s-io.ads, s-io.adb (Standard_Error): new subprogram
1958         (Standart_Output): new subprogram
1959         (Set_Output): new subprogram
1960         (Put): now uses the value of Current_Out to know if the output has to be
1961         send to stderr or stdout.
1962         
1963         * s-stausa.ads: Complete implementation.
1965         * switch-b.adb: Added handling of -u switch for dynamic stack analysis.
1966         
1967         * impunit.adb (Non_Imp_File_Names_05): Add Ada.Task_Termination to the
1968         list of Ada 05 files.
1969         (GNAT Library Units): Add AltiVec files.
1971         * g-allein.ads, g-alleve.adb, g-alleve.ads, g-altcon.adb,
1972         g-altcon.ads, g-altive.ads, g-alveop.adb, g-alveop.ads
1973         g-alvety.ads, g-alvevi.ads: New files providing altivec API.
1975 2005-12-09  Nicolas Setton  <setton@adacore.com>
1977         * adaint.c (__gnat_locate_regular_file): Return immediately if
1978         file_name is empty.
1980 2005-12-09  Javier Miranda  <miranda@adacore.com>
1981             Hristian Kirtchev  <kirtchev@adacore.com>
1983         * a-tags.ads, a-tags.adb (Offset_To_Top): Moved from the package body
1984         to the specification because the frontend generates code that uses this
1985         subprogram.
1986         (Set_Interface_Table): Add missing assertion.
1987         Update documentation describing the run-time structure.
1988         (Displace): New subprogram that displaces the pointer to the object
1989         to reference one of its secondary dispatch tables.
1990         (IW_Membership): Modified to use the new table of interfaces.
1991         (Inherit_TSD): Modified to use the new table of interfaces.
1992         (Register_Interface_Tag): Use the additional formal to fill the
1993         contents of the new table of interfaces.
1994         (Set_Interface_Table): New subprogram that stores in the TSD the
1995         pointer to the table of interfaces.
1996         (Set_Offset_To_Top): Use the additional formal to save copy of
1997         the offset value in the table of interfaces.
1998         Update structure of GNAT Primary and Secondary dispatch table diagram.
1999         Add comment section on GNAT dispatch table prologue.
2000         (Offset_To_Signature): Update the constant value of the Signature field.
2001         (Dispatch_Table): Update comment on hidden fields in the prologue.
2002         (Get_Entry_Index, Get_Prim_Op_Kind, Get_Offset_Index, OSD,
2003         Set_Entry_Index, Set_Offset_Index, Set_Prim_Op_Kind, SSD, TSD): Change
2004         the type of formal parameter T to Tag, introduce additional assertions.
2005         (Get_Num_Prim_Ops, Set_Num_Prim_Ops): Remove an unnecessary type
2006         conversion.
2007         (Get_Tagged_Kind, Set_Tagged_Kind): New bodies.
2009         * exp_ch6.adb (Register_Interface_DT_Entry): Remove the Thunk_Id actual
2010         in all the calls to Expand_Interface_Thunk. Instead of referencing the
2011         record component containing the tag of the secondary dispatch table we
2012         have to use the Offset_To_Top run-time function to get this information;
2013         otherwise if the pointer to the base of the object has been displace
2014         we get a wrong value if we use the 'position attribute.
2016         * exp_disp.adb (Expand_Interface_Thunk): Remove the Thunk_Id actual in
2017         all the calls to Expand_Interface_Thunk.
2018         (Make_Secondary_DT): Secondary dispatch tables do not have a table of
2019         interfaces; hence the call to Set_Interface_Table was clearly wrong.
2020         (Collect_All_Interfaces): Modify the internal subprogram Collect to
2021         ensure that the interfaces implemented by the ancestors are placed
2022         at the header of the generated list.
2023         (Expand_Interface_Conversion): Handle the case in which the displacement
2024         associated with the interface conversion is not statically known. In
2025         this case we generate a call to the new run-time subprogram Displace.
2026         (Make_DT): Generate and fill the new table of interfaces.
2027         (Ada_Actions, Action_Is_Proc, Action_Nb_Arg): Add entries for
2028         Get_Tagged_Kind and Set_Tagged_Kind.
2029         (Tagged_Kind): New function that determines the tagged kind of a type
2030         with respect to limitedness and concurrency and returns a reference to
2031         RE_Tagged_Kind.
2032         (Make_Disp_Asynchronous_Select_Body, Make_Disp_Conditional_Select_Body,
2033         Make_Disp_Timed_Select_Body): Correctly retrieve the pointer to the
2034         primary dispatch table for a type.
2035         (Make_DT, Make_Secondary_DT): Set the tagged kind in the primary and
2036         secondary dispatch table respectively of a tagged type.
2038         * exp_disp.ads (Expand_Interface_Thunk): Remove Thunk_Id formal.
2039         (Expand_Interface_Conversion): New subprogram to indicate if the
2040         displacement of the type conversion is statically known.
2041         (DT_Access_Action): Add values Get_Tagged_Kind and Set_Tagged_Kind.
2043         * rtsfind.ads (RE_Offset_To_Top): New entity
2044         (RTU_Id): Add Ada_Task_Termination to the list so that it is made
2045         accessible to users.
2046         (Re_Displace): New entity
2047         (RE_Interface_Data): New entity
2048         (RE_Set_Interface_Data): New_Entity
2049         (RE_Id, RE_Unit_Table): Add entry for RE_Get_Tagged_Kind,
2050         Set_Tagged_Kind, RE_Tagged_Kind, RE_TK_Abstract_Limited_Tagged,
2051         RE_TK_Abstract_Tagged, RE_TK_Limited_Tagged, RE_TK_Protected,
2052         RE_TK_Tagged, RE_TK_Task.
2054         * exp_ch3.adb (Init_Secondary_Tags): Modify the subprogram
2055         Init_Secondary_Tags_Internal to allow its use with interface types and
2056         also to generate the code for the new additional actual required
2057         by Set_Offset_To_Top.
2058         (Build_Init_Statements): In case of components associated with abstract
2059         interface types there is no need to generate a call to its IP.
2060         (Freeze_Record_Type): Generate Select Specific Data tables only for
2061         concurrent types.
2062         (Make_Predefined_Primitive_Specs, Predefined_Primitive_Bodies): Generate
2063         the bodies and specifications of the predefined primitive operations
2064         dealing with dispatching selects and abort, 'Callable, 'Terminated only
2065         for concurrent types.
2067         * exp_sel.ads, exp_sel.adb: New files.
2069         * exp_ch9.adb (Build_Protected_Entry, Expand_N_Protected_Body,
2070         Expand_N_Protected_Type_Declaration, Make_Initialize_Protection): Handle
2071         properly protected objects and attach handler in the case of the
2072         restricted profile.
2073         Move embeded package Select_Expansion_Utilities into a separate external
2074         package.
2075         (Expand_N_Asynchronous_Select, Expand_N_Conditional_Select,
2076         Expand_N_Timed_Entry_Call): Correct calls external package Exp_Sel.
2077         (Build_K, Build_S_Assignment): New subprograms, part of the select
2078         expansion utilities.
2079         (Expand_N_Asynchronous_Select, Expand_N_Conditional_Entry_Call,
2080         Expand_N_Timed_Entry_Call): Optimize expansion of select statements
2081         where the trigger is a dispatching procedure of a limited tagged type.
2083 2005-12-09  Olivier Hainque  <hainque@adacore.com>
2085         * decl.c (gnat_to_gnu_entity, renaming object case): Don't early expand
2086         pointer initialization values. Make a SAVE_EXPR instead. Add comments
2087         about the use and expansion of SAVE_EXPRs in the various possible
2088         renaming handling cases.
2089         (components_to_record, compare_field_bitpos): Sort by DECL_UID, not by
2090         abusing DECL_FCONTEXT.
2092 2005-12-09  Matthew Heaney  <heaney@adacore.com>
2094         * a-convec.adb (Merge): Added assertions to check whether vector params
2095         are sorted.
2097         * a-coinve.adb (Merge): Added assertions to check whether vector params
2098         are sorted.
2100         * a-cohama.ads (Cursor'Write): raises Program_Error per latest AI-302
2101         draft.
2102         (Cursor'Read): raises PE
2104         * a-cohama.adb (Insert.New_Node): Uses box-style syntax to init elem
2105         to its default value.
2107         * a-cihama.adb: Manually check whether cursor's key and elem are
2108         non-null
2110         * a-cidlli.ads, a-cidlli.adb (Splice): Changed param name and param mode
2111         (Merge): Assert that target and source lists are in order
2112         (Swap): Declare non-const temporaries, to pass to Splice
2114         * a-cdlili.ads: (Splice): Changed param name and param mode
2116         * a-cdlili.adb: (Splice): Changed param name and param mode
2117         (Merge): Assert that target and source lists are in order
2118         (Swap): Declare non-const temporaries, to pass to Splice
2120         * a-ciorma.ads, a-coorma.ads: (Read): declare Stream param as not null
2121         (Write): declare Stream param as not null
2123         * a-ciorma.adb, a-coorma.adb: All explicit raise statements now include
2124         an exception message.
2126 2005-12-09  Thomas Quinot  <quinot@adacore.com>
2127             Robert Dewar  <dewar@adacore.com>
2129         * hostparm.ads (Max_Line_Length): Set to Types.Column_Number'Last - 1,
2130         which is the absolute maximum length we can support.
2132         * frontend.adb: For the processing of configuration pragma files,
2133         remove references to Opt.Max_Line_Length, which is not checked anymore.
2135         * namet.ads (Name_Buffer): Adjust size to reflect increase on max line
2136         length.
2138         * scn.adb, scng.adb: 
2139         Always check line length against the absolute supported maximum,
2140         Hostparm.Max_Line_Length.
2142         * stylesw.adb (Set_Style_Check_Options, case M): The maximum supported
2143         value for the maximum line length is Max_Line_Length (not
2144         Column_Number'Last).
2145         Minor error msg update
2146         (Set_Style_Check_Options): New interface returning error msg
2147         Minor code reorganization (processing for 'M' was out of alpha order)
2149         * switch-c.adb: New interface for Set_Style_Check_Options
2151         * stylesw.ads (Set_Style_Check_Options): New interface returning error
2152         msg.
2154 2005-12-09  Javier Miranda  <miranda@adacore.com>
2156         * exp_aggr.adb (Build_Record_Aggr_Code): Default-initialialized records
2157         with IP subprogram were only supported if there were limited types.
2159         * sem_aggr.adb (Resolve_Record_Aggregate): Default-initialialized
2160         records with IP subprogram were only supported if there were limited
2161         types.
2163 2005-12-09  Olivier Hainque  <hainque@adacore.com>
2164             Eric Botcazou  <ebotcazou@adacore.com>
2166         * trans.c (tree_transform, emit_check): Adjust calls to
2167         build_call_raise, passing the now expected GNAT_NODE argument.
2169         * gigi.h (build_call_raise): Add a GNAT_NODE argument to convey better
2170         source line information than what the current global locus indicates
2171         when appropriate.
2173         * utils2.c (build_simple_component_ref): Return 0 if the offset of the
2174         field has overflowed.
2175         (build_call_raise): Add a GNAT_NODE argument to convey better source
2176         line information than what the current global locus indicates when
2177         appropriate.
2178         (build_component_ref): Adjust call to build_call_raise.
2180 2005-12-09  Pascal Obry  <obry@adacore.com>
2182         * g-diopit.adb (Find): Fix test to exit the iterator and make sure that
2183         the iterator is quitting iteration on parent directory.
2185 2005-12-09  Javier Miranda  <miranda@adacore.com>
2187         * exp_ch5.adb (Expand_N_Assignment_Statement): In case of tagged types
2188         and the assignment to a class-wide object, before the assignment we
2189         generate a run-time check to ensure that the tag of the Target is
2190         covered by the tag of the source.
2192 2005-12-09  Robert Dewar  <dewar@adacore.com>
2194         * exp_imgv.adb (Expand_Image_Attribute): Generate extra boolean
2195         parameter in call to Image_Wide_Character.
2197         * s-imgwch.ads, s-imgwch.adb (Image_Wide_Character): Add boolean
2198         parameter Ada_2005 to deal with annoying FFFE/FFFF inconsistency.
2199         (Image_Wide_Character): Add boolean parameter Ada_2005 to deal with
2200         annoying FFFE/FFFF inconsistency.
2202 2005-12-09  Robert Dewar  <dewar@adacore.com>
2203             Javier Miranda  <miranda@adacore.com>
2204             Ed Schonberg  <schonberg@adacore.com>
2206         * exp_util.ads, exp_util.adb (Is_Ref_To_Bit_Packed_Slice): Handle case
2207         of type conversion.
2208         (Find_Interface): New subprogram that given a tagged type and one of its
2209         component associated with the secondary table of an abstract interface
2210         type, return the entity associated with such abstract interface type.
2211         (Make_Subtype_From_Expr): If type has unknown discriminants, always use
2212         base type to create anonymous subtype, because entity may be a locally
2213         declared subtype or generic actual.
2214         (Find_Interface): New subprogram that given a tagged type and one of its
2215         component associated with the secondary table of an abstract interface
2216         type, return the entity associated with such abstract interface type.
2218         * sem_res.adb (Resolve_Type_Conversion): Handle the case in which the
2219         conversion cannot be handled at compile time. In this case we pass this
2220         information to the expander to generate the appropriate code.
2222 2005-12-09  Robert Dewar  <dewar@adacore.com>
2223             Ed Schonberg  <schonberg@adacore.com>
2224             Gary Dismukes  <dismukes@adacore.com>
2225             Javier Miranda  <miranda@adacore.com>
2226             Hristian Kirtchev  <kirtchev@adacore.com>
2228         * einfo.adb (Itype_Printed): New flag
2229         (Is_Limited_Type): Derived types do not inherit limitedness from
2230         interface progenitors.
2231         (Is_Return_By_Reference_Type): Predicate does not apply to limited
2232         interfaces.
2234         * einfo.ads (Itype_Printed): New flag
2235         Move Is_Wrapper_Package to proper section
2236         Add missing Inline for Is_Volatile
2238         * output.ads, output.adb (Write_Erase_Char): New procedure
2239         (Save/Restore_Output_Buffer): New procedures
2240         (Save/Restore_Output_Buffer): New procedures
2242         * sprint.ads, sprint.adb (Write_Itype): Handle case of record itypes
2243         Add missing support for anonymous access type
2244         (Write_Id): Insert calls to Write_Itype
2245         (Write_Itype): New procedure to output itypes
2247         * par-ch12.adb (P_Formal_Derived_Type_Definition): In Ada 2005, handle
2248         use of "limited" in declaration.
2250         * sinfo.ads, sinfo.adb: 
2251         Formal derived types can carry an explicit "limited" indication.
2253         * sem_ch3.adb: Add with and use of Targparm.
2254         (Create_Component): If Frontend_Layout_On_Target is True and the
2255         copied component does not have a known static Esize, then reset
2256         the size and positional fields of the new component.
2257         (Analyze_Component_Declaration): A limited component is
2258         legal within a protected type that implements an interface.
2259         (Collect_Interfaces): Do not add to the list the interfaces that
2260         are implemented by the ancestors.
2261         (Derived_Type_Declaration): If the parent of the full-view is an
2262         interface perform a transformation of the tree to ensure that it has
2263         the same parent than the partial-view. This simplifies the job of the
2264         expander in order to generate the correct object layout, and it is
2265         needed because the list of interfaces of the full-view can be given in
2266         any order.
2267         (Process_Full_View): The parent of the full-view does not need to be
2268         a descendant of the parent of the partial view if both parents are
2269         interfaces.
2270         (Analyze_Private_Extension_Declaration): If declaration has an explicit
2271         "limited" the parent must be a limited type.
2272         (Build_Derived_Record_Type): A derived type that is explicitly limited
2273         must have limited ancestor and progenitors.
2274         (Build_Derived_Type): Ditto.
2275         (Process_Full_View): Verify that explicit uses of "limited" in partial
2276         and full declarations are consistent.
2277         (Find_Ancestor_Interface): Remove function.
2278         (Collect_Implemented_Interfaces): New procedure used to gather all
2279         implemented interfaces by a type.
2280         (Contain_Interface): New function used to check whether an interface is
2281         present in a list.
2282         (Find_Hidden_Interface): New function used to determine whether two
2283         lists of interfaces constitute a set equality. If not, the first
2284         differing interface is returned.
2285         (Process_Full_View): Improve the check for the "no hidden interface"
2286         rule as defined by AI-396.
2288 2005-12-09  Robert Dewar  <dewar@adacore.com>
2290         * freeze.adb (Freeze_Record_Type): Only test for useless pack on record
2291         types, not on record subtypes.
2292         (Freeze_Entity): Code cleanup. Add barrier to the loop
2293         that generates the references for primitive operations. This allows to
2294         remove an unnecessary exception handler.
2295         Code reformatting and comment clean ups.
2297 2005-12-09  Vincent Celier  <celier@adacore.com>
2299         * gnatcmd.adb (GNATCmd): GNAT CHECK accepts switch -U
2300         If GNAT CHECK is called with a project file, but with no
2301         source on the command line, call gnatcheck with all the compilable
2302         sources of the project.
2303         Take into account the new command Check, for gnatcheck. Treat as for
2304         other ASIS tools: take into account project, specific package Check and
2305         Compiler switches.
2306         For ASIS tools, add the switches in package Compiler for
2307         the invocation of the compiler.
2309         * prj-attr.adb: Add package Check and its attributes
2311         * vms_conv.ads (Command_Type): New command Check, for gnatcheck
2313         * vms_conv.adb (Initialize): Change Params of command Check to
2314         unlimited files.
2315         Change some Hostparm.OpenVMS checks to Targparm.OpenVMS_On_Target.
2316         Add data for new command Check
2318         * vms_data.ads: Add project related qualifiers for GNAT CHECK and GNAT
2319         ELIM.
2320         Add qualifiers for Check command options
2321         (Command_Type): New command Check
2323 2005-12-09  Thomas Quinot  <quinot@adacore.com>
2325         * mlib-utl.adb (Ar): Use Output.Buffer_Max to determine whether a
2326         command line switch overruns the output buffer.
2328 2005-12-09  Robert Dewar  <dewar@adacore.com>
2330         * sem_prag.adb: Processing for new pragma Complete_Representation
2331         (Analyze_Pragma, case Debug): Implement two argument form.
2333         * par-prag.adb: Entry for new pragma Complete_Representation
2334         (Prag, case Debug): Recognize two argument form of pragma Debug
2335         New interface for Set_Style_Check_Options.
2337         * sem_ch13.adb: Implement new pragma Complete_Representation.
2339         * snames.adb, snames.ads, snames.h: Entry for new pragma
2340         Complete_Representation.
2342 2005-12-09  Gary Dismukes  <dismukes@adacore.com>
2344         * sem_cat.adb (Validate_RCI_Subprogram_Declaration): Revise test for
2345         available user-specified stream attributes on limited parameters to
2346         also test the type directly rather than only its underlying type (for
2347         Ada 95) and, in the case of Ada 2005, to check that the user-specified
2348         attributes are visible at the point of the subprogram declaration.
2349         For Ada 2005, the error message is modified to indicate that the
2350         type's stream attributes must be visible (again, only for -gnat05).
2352 2005-12-09  Ed Schonberg  <schonberg@adacore.com>
2354         * sem_ch12.adb (Subtypes_Match): Handle properly Ada05 arrays of
2355         anonymous access types.
2357         * sem_eval.adb (Subtypes_Statically_Match): Implement new rules for
2358         matching of anonymous access types and anonymous access to subprogram
2359         types. 'R'M 4.9.1 (2/2).
2361 2005-12-09  Ed Schonberg  <schonberg@adacore.com>
2363         * sem_ch4.adb (Remove_Abstract_Operations): Do not apply preference
2364         rule prematurely when operands are universal, remaining ambiguities
2365         will be removed during resolution.
2366         Code cleanup.
2368         * sem_type.adb (Disambiguate): In Ada95 mode, discard interpretations
2369         that are Ada 2005 functions.
2370         (Has_Abstract_Interpretation): Subsidiary to
2371         Remove_Conversions, to remove ambiguities caused by abstract operations
2372         on numeric types when operands are universal.
2374 2005-12-09  Robert Dewar  <dewar@adacore.com>
2376         * sem_ch6.adb (Analyze_Subprogram_Body): Properly check categorization
2377         for case where spec is categorized.
2379 2005-12-09  Javier Miranda  <miranda@adacore.com>
2381         * sem_ch8.adb (Find_Type): In case of tagged types that are concurrent
2382         types use the corresponding record type. This was not needed before
2383         the implementation of Ada 2005 synchronized types because
2384         concurrent types were never tagged types in Ada 95.
2386 2005-12-09  Ed Schonberg  <schonberg@adacore.com>
2388         * sem_ch9.adb (Analyze_Delay_Alternative, Analyze_Delay_Until): Use the
2389         first subtype of the type of the expression to verify that it is a
2390         legal Time type.
2392 2005-12-09  Robert Dewar  <dewar@adacore.com>
2394         * sem_util.ads, sem_util.adb (Full_Qualified_Name): Now provides
2395         decoded names.
2397 2005-12-09  Quentin Ochem  <ochem@adacore.com>
2398             Robert Dewar  <dewar@adacore.com>
2399             Ed Falis  <falis@adacore.com>
2400             Florian Villoing  <villoing@adacore.com>
2401             Thomas Quinot  <quinot@adacore.com>
2402             Arnaud Charlet  <charlet@adacore.com>
2404         * gnat_ugn.texi: Created section "Stack Related Tools"
2405         Moved "Stack Overflow Checking" subsection from "Switches for gcc" to
2406         "Stack Related Tools"
2407         Added subsection "Static Stack Usage Analysis"
2408         Added subsection "Dynamic Stack Usage Analysis"
2409         Include documentation of itypes in sprint listing (-gnatG)
2410         Documented gnatbind -D switch (default sec stack size for fixed sec
2411         stacks).
2412         Added Interrupt_State and Persistent_BSS to list of configuration
2413         pragmas.
2414         Add missing doc for maximum value of nnn in -gnatyMnnn
2416         * gnat_rm.texi: Document the AltiVec binding.
2417         Add documentation for pragma Complete_Representation
2418         Shortened an overly long line (> 79 chars)
2419         Clarify documentation of unchecked conversion in implementation
2420         defined cases.
2421         Document two argument form of pragma Debug
2423         * types.ads (Column_Number): Update documentation.
2425         * exp_ch7.ads (Make_Adjust_Call): Document the special processing for
2426         library level Finalize_Storage_Only objects (these are not attached to
2427         any finalization list).
2429         * system-mingw.ads: (Underlying_Priorities): Update comment.
2431 2005-12-09  Robert Dewar  <dewar@adacore.com>
2433         * i-c.adb, i-cexten.ads, i-cobol.adb, i-cobol.ads, i-cpoint.ads,
2434         i-cpp.adb, i-cpp.ads, i-cstrea.ads, i-cstrin.adb, i-cstrin.ads,
2435         inline.adb, interfac.ads, i-os2err.ads, i-os2lib.ads, i-os2syn.ads,
2436         i-os2thr.ads, itypes.adb, itypes.adb, itypes.ads, krunch.ads,
2437         krunch.adb, lib.adb, lib.ads, lib-list.adb, lib-load.adb,
2438         lib-load.ads, lib-sort.adb, live.adb, make.ads, i-cstrea-vms.adb,
2439         interfac-vms.ads, makegpr.adb, indepsw-gnu.adb, indepsw.ads,
2440         s-wchcon.ads, sdefault.ads, sem_ch10.adb, sem_eval.ads: Minor
2441         reformatting.
2443 2005-12-09  Robert Dewar  <dewar@adacore.com>
2445         * s-vaflop-vms-alpha.adb: (Ne_F): New function
2446         (Ne_G): New function
2448         * exp_ch4.adb (Expand_Allocator_Expression): Factor duplicated code
2449         for tag assignment.
2450         (Rewrite_Comparison): Handle case where operation is not a comparison
2451         and ignore, and also handle type conversion case.
2453 2005-12-09  Thomas Quinot  <quinot@adacore.com>
2455         * exp_aggr.ads: Fix typo in comment.
2456         ???-mark Convert_Aggr_In_Assignment as needing documentation.
2458 2005-12-09  Gary Dismukes  <dismukes@adacore.com>
2460         * layout.adb: Replace various uses of byte by storage unit throughout.
2461         (Get_Max_SU_Size): Name changed from Get_Max_Size. In the case of a
2462         static size, convert to storage units before returning, to conform to
2463         spec.
2465 2005-12-09  Matthew Gingell  <gingell@adacore.com>
2467         * g-exctra.ads: Fix typo in comment.
2469 2005-12-09  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2471         * utils.c: Minor reformatting.
2473 2005-12-09  Robert Dewar  <dewar@adacore.com>
2475         * g-soccon.ads: 
2476         Further comment fixes to make the status of the default file clear
2478         * s-bitops.adb: Clarify comment for Bits_Array
2480 2005-12-07  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
2482         * Make-lang.in (ada.install-normal): Remove.
2484 2005-12-07  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
2486         * Make-lang.in: Remove all dependencies on s-gtype.
2488 2005-12-05  Richard Guenther  <rguenther@suse.de>
2490         * utils.c (convert): Use fold_convert where appropriate.
2492 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
2494         * Makefile.in (gnatlib): Fix regex, using \. instead of . when
2495         a period is meant.
2497 2005-12-02  Richard Guenther  <rguenther@suse.de>
2499         * trans.c (gnat_gimplify_expr): Use buildN instead of build.
2501 2005-12-01  Roger Sayle  <roger@eyesopen.com>
2503         * utils.c (max_size): Only test for TREE_OVERFLOW on INTEGER_CST
2504         nodes.
2506 2005-11-23  Laurent GUERBY  <laurent@guerby.net>
2508         * mlib-prj.adb (Build_Library): Initialize Delete.
2510 2005-11-21  Joel Sherrill <joel.sherrill@oarcorp.com>
2512         * socket.c: Add extern int h_errno for rtems since networking header
2513         files are not available at this point in a tool bootstrap. Newlib
2514         only has basic C library header files.
2516 2005-11-19  Richard Guenther  <rguenther@suse.de>
2517         Roger Sayle  <roger@eyesopen.com>
2519         PR ada/23717
2520         * misc.c (internal_error_function): Don't use vsprintf to format
2521         the error message text, instead use pp_format_text and the new
2522         pretty printer APIs.  This allows handling of %qs, %w, etc.
2524 2005-11-18  Laurent GUERBY  <laurent@guerby.net>
2526         PR ada/24857
2527         * Makefile.in: Use s-auxdec-empty for RTEMS.
2529 2005-11-17  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2531         PR ada/22333
2532         * trans.c (gnat_gimplify_expr, case ADDR_EXPR): Always make
2533         a temporary if taking the address of something that is neither
2534         reference, declaration, or constant, since the gimplifier
2535         can't handle that case.
2537 2005-11-17  Laurent GUERBY  <laurent@guerby.net>
2539         PR ada/24857
2540         * s-auxdec-empty.ads, s-auxdec-empty.adb: New files.
2541         
2542 2005-11-16  Richard Guenther  <rguenther@suse.de>
2544         * Makefile.in: Add EH_MECHANISM=-gcc to s390(x) linux.
2546 2005-11-16  Joel Sherrill <joel.sherrill@oarcorp.com>
2548         PR ada/24855
2549         * raise-gcc.c: Add missing stdarg.h include.
2551 2005-11-16  Richard Guenther  <rguenther@suse.de>
2553         * Make-lang.in (ada/decl.o): Add $(EXPR_H) dependency.
2554         (ada/misc.o): Likewise.
2556 2005-11-14  Thomas Quinot  <quinot@adacore.com>
2558         * g-soccon.ads: Minor reformatting. Update comments.
2560         * gsocket.h: Include <sys/times.h> in the VxWorks case, in order to
2561         gain visibility on the declaration of struct timeval.
2563         * g-soccon-freebsd.ads,
2564         g-soccon-darwin.ads,
2565         g-soccon-tru64.ads,
2566         g-soccon-aix.ads,
2567         g-soccon-irix.ads,
2568         g-soccon-hpux.ads,
2569         g-soccon-solaris.ads,
2570         g-soccon-vms.ads,
2571         g-soccon-mingw.ads,
2572         g-soccon-vxworks.ads (SIZEOF_tv_sec, SIZEOF_tv_usec): New constants.
2574         * g-soccon-hpux-ia64.ads, g-soccon-linux-ppc.ads,
2575         g-soccon-solaris-64.ads, g-soccon-linux-64.ads,
2576         g-soccon-linux-x86.ads: New files.
2578         * g-socthi-mingw.adb: 
2579         (Socket_Error_Message): Remove redundant use of GNAT.Sockets.Constants
2581         * g-socthi-vxworks.ads, g-socthi-vms.ads, g-socthi-mingw.ads
2582         (time_t, suseconds_t): New types constructed to match the tv_sec
2583         and tv_usec fields of C struct timeval.
2584         (Timeval): Construct structure in terms of the new types.
2585         (Host_Errno): New function (imported from socket.c), returns last hosts
2586         database error.
2588         * g-socthi-vxworks.adb:  Add error handling circuitry.
2590         * g-socket.ads, g-socket.adb (To_Timeval): Reflect change of type for
2591         components of struct timeval.
2592         (Get_Host_By_Name, Get_Host_By_Address): Fix error reporting circuitry.
2593         (Check_Selector): In error conditions, clear internal socket sets to
2594         avoid a memory leak.
2595         (Get_Socket_Option, Set_Socket_Option): Support for Multicast_If,
2596         Send_Timeout, Receive_Timeout.
2598         * g-socthi.ads (time_t, suseconds_t): New types constructed to match
2599         the tv_sec and tv_usec fields of C struct timeval.
2600         (Timeval): Construct structure in terms of the new types.
2601         (Host_Errno): New function (imported from socket.c), returns last hosts
2602         database error.
2604         * socket.c (__gnat_get_h_errno): New function to retrieve h_errno, the
2605         hosts database last error code.
2607         * gen-soccon.c: Complete value expansion should not be performed on
2608         TARGET, as it has the form of a math expression, and some components
2609         may be platform-defined macros.
2610         For VxWorks, generate the OK and ERROR values.
2611         New constants giving the sizes of the components of C struct timeval.
2613 2005-11-14  Robert Dewar  <dewar@adacore.com>
2614             Ed Schonberg  <schonberg@adacore.com>
2616         PR ada/18434
2618         * types.ads: Include All_Checks in Suppress_Array
2620         * checks.adb (Check_Needed): Remove kludge for a/=b rewritten as
2621         not(a=b), since we no longer do this rewriting, and hence it is not
2622         needed.
2623         (Elaboration_Checks_Suppressed): Add special casing to
2624         deal with different cases of static and dynamic elaboration checks (all
2625         checks does not count in the first case, but does in the second).
2626         (Expr_Known_Valid): Do not assume that the result of any arbitrary
2627         function call is valid, since this is not the case.
2628         (Ensure_Valid): Do not apply validity check to a real literal
2629         in a universal or fixed context
2631         * exp_ch4.adb (Expand_N_Op_Ne): Don't expand a/=b to not(a=b) for
2632         elementary types using the operator in standard. It is cleaner not to
2633         modify the programmers intent, especially in the case of floating-point.
2634         (Rewrite_Comparison): Fix handling of /= (this was always wrong, but
2635         it did not matter because we always rewrote a/=b to not(a=b).
2636         (Expand_Allocator_Expression): For an allocator expression whose nominal
2637         subtype is an unconstrained packed type, convert the expression to its
2638         actual constrained subtype.
2639         Implement warning for <= or >= where < or > not possible
2640         Fix to Vax_Float tests (too early in many routines, causing premature
2641         Vax_Float expansions.
2643         * sem_prag.adb (Analyze_Pragma, case Obsolescent): Allow this pragma
2644         to be used with packages and generic packages as well as with
2645         subprograms.
2646         (Suppress): Set All_Checks, but not Elaboration_Check, for case
2647         of pragma Suppress (All_Checks)
2648         (Analyze_Pragma, case Warnings): Implement first argument allowed to be
2649         a string literal for precise control over warnings.
2650         Avoid raise of pragma in case of unrecognized pragma and just return
2651         instead.
2653         * sem_prag.ads: Minor reformatting
2655         * switch-c.adb (Scan_Front_End_Switches): Replace "raise Bad_Switch;"
2656         with call to new procedure Bad_Switch. Call Scan_Pos with new parameter
2657         Switch. Do not handle any exception.
2658         Include -gnatwx as part of -gnatg (warn on redundant parens)
2659         Allow optional = after -gnatm
2660         (Scan_Front_End_Switches): The -gnatp switch sets All_Checks, but no
2661         longer sets Elaboration_Checks.
2662         Code to set warning mode moved to Sem_Warn
2663         so that it can be shared by pragma processing.
2665         * s-mastop-tru64.adb (Pop_Frame): Remove redundant parentheses in if
2666         statement.
2668         * s-taprop-solaris.adb: 
2669         Change some <= to =, to avoid new warning
2671         * a-exexda.adb, prj-proc.adb: 
2672         Fix obvious typo (Num_Tracebacks compared <= 0 instead of < 0)
2673         Fix obvious typo (Total_Errors_Detected <= 0 should be = 0)
2675 2005-11-14  Robert Dewar  <dewar@adacore.com>
2677         * exp_vfpt.adb: Handle /= case
2678         (Expand_Vax_Conversion): Properly recognize Conversion_OK flag
2679         so that we do not get duplicate scaling for fixed point conversions.
2681         * s-vaflop.ads, s-vaflop.adb: (Ne_F): New function
2683 2005-11-14  Matthew Gingell  <gingell@adacore.com>
2685         * system-lynxos-ppc.ads, system-lynxos-x86.ads: 
2686         Increase default priority on Lynx from 15 to 17, and meet the Ada
2687         requirement that Default_Priority be ((Priority'First +
2688         Priority'Last) / 2) by increasing the range of Interrupt_Priority.
2690 2005-11-14  Vincent Celier  <celier@adacore.com>
2692         * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
2693         mlib-tgt-hpux.adb, mlib-tgt-hpux.adb, mlib-tgt-linux.adb,
2694         mlib-tgt-solaris.adb, mlib-tgt-vms-alpha.adb, mlib-tgt-vms-alpha.adb,
2695         mlib-tgt-vms-ia64.adb, mlib-tgt-mingw.adb, mlib-tgt-vxworks.adb,
2696         mlib-tgt-darwin.adb, mlib-tgt.adb, mlib-tgt.ads,
2697         mlib-tgt-lynxos.adb (DLL_Prefix): New function
2699 2005-11-14  Doug Rupp  <rupp@adacore.com>
2701         * system-vms.ads, system-vms_64.ads: ADA$GNAT: New exported object in
2702         private part.
2704 2005-11-14  Arnaud Charlet  <charlet@adacore.com>
2706         * s-traces-default.adb, s-trafor-default.ads,
2707         s-tratas-default.adb: Fix compilation errors.
2709 2005-11-14  Jose Ruiz  <ruiz@adacore.com>
2711         * s-taprop-posix.adb (Initialize_Lock): Destroy mutex attribute before
2712         raising the exception so the memory used is freed.
2714 2005-11-14  Arnaud Charlet  <charlet@adacore.com>
2716         * adaint.h, adaint.c (__gnat_is_cross_compiler): New constant.
2717         (Gnat_Install_Locks, __gnatlib_install_locks): Removed, no longer used.
2718         (convert_address): Update comments and list of platforms using this.
2720         * s-tasini.adb (Gnat_Install_Locks, __gnatlib_install_locks): Removed,
2721         no longer used.
2723 2005-11-14  Pascal Obry  <obry@adacore.com>
2724             Vincent Celier  <celier@adacore.com>
2726         * gnatdll.adb (Parse_Command_Line): Remove redundant use of
2727         GNAT.Command_Line.
2729         * memroot.adb: Remove redundant with/use clause on
2730         System.Storage_Elements.
2732 2005-11-14  Arnaud Charlet  <charlet@adacore.com>
2734         * a-except.adb (Zero_Cost_Exceptions): Removed, no longer used.
2735         (builtin_longjmp, Process_Raise_Exceeption): Move setjmp/longjmp
2736         related code to a-exexpr.adb
2737         (Save_Occurrence_And_Private): Move GCC EH related code to
2738         a-exexpr-gcc.adb
2739         (Raise_Current_Excep): Add new variable Id with pragma
2740         volatile, to ensure that the variable lives on stack.
2742         * a-exexpr-gcc.adb, raise-gcc.c: New file.
2744         * a-exexpr.adb (builtin_longjmp, Propagate_Exception): Moved here code
2745         from a-except.adb.
2746         Move GCC EH related code to a-exexpr-gcc.adb
2748         * Makefile.in: Add or update g-soccon LIBGNAT pairs for Linux/PPC and
2749         64-bit Solaris
2750         Split the Linux version of g-soccon into separate variants for 32 and 64
2751         bit platforms.
2752         (gnatlib): Use $(AR_FOR_TARGET) and $(RANLIB_FOR_TARGET)
2753         vice $(AR) and $(RANLIB). Remove use of host variable $(RANLIB_FLAGS).
2754         install-gnatlib: Use $(RANLIB_FOR_TARGET) vice $(RANLIB). Remove use
2755         of host variable $(RANLIB_FLAGS).
2756         (alpha64-dec-*vms*): Fix translations for 64 bit compiler.
2757         Code clean up: remove unused/obsolete targets.
2758         (EH_MECHANISM): New variable introduced to differenciate between the
2759         two EH mechanisms statically.
2760         (gnatlib-zcx, gnatlib-sjlj): Force EH_MECHANISM manually.
2761         (LIBGNAT_OBJS): Add raise-gcc.o
2762         (LIBGNAT_TARGET_PAIRS for ppc-vxworks): Use an specialized version of
2763         s-osinte.adb, s-tpopsp.adb, and system.ads for the run time that
2764         supports VxWorks 6 RTPs.
2765         (EXTRA_GNATRTL_NONTASKING_OBJS for ppc-vxworks): Remove the use of
2766         i-vxworks and i-vxwoio from the run time that supports VxWorks 6 RTPs.
2768         * raise.c: Move all GCC EH-related routines to raise-gcc.c
2770 2005-11-14  Jose Ruiz  <ruiz@adacore.com>
2772         * s-tassta.adb (Create_Task): Move the code in charge of resetting the
2773         deferral level, when abort is not allowed, to a later stage (the
2774         Task_Wrapper).
2775         (Task_Wrapper): If Abort is not allowed, reset the deferral level since
2776         it will not get changed by the generated code. It was previously done
2777         in Create_Task.
2779 2005-11-14  Thomas Quinot  <quinot@adacore.com>
2780             Olivier Hainque  <hainque@adacore.com>
2781             Eric Botcazou  <ebotcazou@adacore.com>
2783         * decl.c:
2784         Factor common code to build a storage type for an unconstrained object
2785         from a fat or thin pointer type and a constrained object type.
2786         (annotate_value): Handle BIT_AND_EXPR.
2787         (annotate_rep): Don't restrict the back annotation of inherited
2788         components to the type_annotate_only case.
2789         (gnat_to_gnu_entity) <E_Array_Type>: Do not invoke create_type_decl if
2790         we are not defining the type.
2791         <E_Record_Type>: Likewise.
2792         (gnat_to_gnu_entity) <object, renaming>: Adjust comments and structure
2793         to get advantage of the new maybe_stabilize_reference interface, to
2794         ensure that what we reference is indeed stabilized instead of relying
2795         on assumptions on what the stabilizer does.
2796         (gnat_to_gnu_entity) <E_Incomplete_Type>: If the entity is an incomplete
2797         type imported through a limited_with clause, use its non-limited view.
2798         (Has_Stdcall_Convention): New macro, to centralize the Windows vs others
2799         differentiation.
2800         (gnat_to_gnu_entity): Use Has_Stdcall_Convention instead of a spread mix
2801         of #if sections + explicit comparisons of convention identifiers.
2802         (gnat_to_gnu_entity) <E_Variable>: Decrement force_global if necessary
2803         before early-returning for certain types when code generation is
2804         disabled.
2805         (gnat_to_gnu_entity) <object>: Adjust comment attached to the
2806         nullification of gnu_expr we do for objects with address clause and
2807         that we are not defining.
2808         (elaborate_expression_1): Do not create constants when creating
2809         variables needed by the debug info: the dwarf2 writer considers that
2810         CONST_DECLs is used only to represent enumeration constants, and emits
2811         nothing for them.
2812         (gnat_to_gnu_entity) <object>: When turning a non-definition of an
2813         object with an address clause into an indirect reference, drop the
2814         initializing expression.
2815         Include "expr.h".
2816         (STACK_CHECK_BUILTIN): Delete.
2817         (STACK_CHECK_PROBE_INTERVAL): Likewise.
2818         (STACK_CHECK_MAX_FRAME_SIZE): Likewise.
2819         (STACK_CHECK_MAX_VAR_SIZE): Likewise.
2820         (gnat_to_gnu_entity): If gnat_entity is a renaming, do not mark the tree
2821         corresponding to the renamed object as ignored for debugging purposes.
2823         * trans.c (tree_transform, case N_Attribute_Reference, case Attr_Size &
2824         related): For a prefix that is a dereference of a fat or thin pointer,
2825         if there is an actual subtype provided by the front-end, use that
2826         subtype to build an actual type with bounds template.
2827         (tree_transform, case N_Free_Statement): If an Actual_Designated_Subtype
2828         is provided by the front-end, use that subtype to compute the size of
2829         the deallocated object.
2830         (gnat_to_gnu): When adding a statement into an elaboration procedure,
2831         check for a potential violation of a No_Elaboration_Code restriction.
2832         (maybe_stabilize_reference): New function, like gnat_stabilize_reference
2833         with extra arguments to control whether to recurse through non-values
2834         and to let the caller know if the stabilization has succeeded.
2835         (gnat_stabilize_reference): Now a simple wrapper around
2836         maybe_stabilize, for common uses without restriction on lvalues and
2837         without need to check for the success indication.
2838         (gnat_to_gnu, call_to_gnu): Adjust calls to gnat_stabilize_reference, to
2839         pass false instead of 0 as the FORCE argument which is a bool.
2840         (Identifier_to_gnu): Remove checks ensuring that an renamed object
2841         attached to a renaming pointer has been properly stabilized, as no such
2842         object is attached otherwise.
2843         (call_to_gnu): Invoke create_var_decl to create the temporary when the
2844         function uses the "target pointer" return mechanism.
2845         Reinstate conversion of the actual to the type of the formal
2846         parameter before any other specific treatment based on the passing
2847         mechanism. This turns out to be necessary in order for PLACEHOLDER
2848         substitution to work properly when the latter type is unconstrained.
2850         * gigi.h (build_unc_object_type_from_ptr): New subprogram, factoring a
2851         common pattern.
2852         (maybe_stabilize_reference): New function, like gnat_stabilize_reference
2853         with extra arguments to control whether to recurse through non-values
2854         and to let the caller know if the stabilization has succeeded.
2856         * utils2.c (gnat_build_constructor): Only sort the fields for possible
2857         static output of record constructor if all the components are constant.
2858         (gnat_build_constructor): For a record type, sort the list of field
2859         initializers in increasing bit position order.
2860         Factor common code to build a storage type for an unconstrained object
2861         from a fat or thin pointer type and a constrained object type.
2862         (build_unary_op) <ADDR_EXPR>: Always recurse down conversions between
2863         types variants, and process special cases of VIEW_CONVERT expressions
2864         as their NOP_EXPR counterpart to ensure we get to the
2865         CORRESPONDING_VARs associated with CONST_DECls.
2866         (build_binary_op) <MODIFY_EXPR>: Do not strip VIEW_CONVERT_EXPRs
2867         on the right-hand side.
2869         * utils.c (build_unc_object_type_from_ptr): New subprogram, factoring
2870         a common pattern.
2871         (convert) <VIEW_CONVERT_EXPR>: Return the inner operand directly if we
2872         are converting back to its original type.
2873         (convert) <JM input>: Fallthrough regular conversion code instead of
2874         extracting the object if converting to a type variant.
2875         (create_var_decl): When a variable has an initializer requiring code
2876         generation and we are at the top level, check for a potential violation
2877         of a No_Elaboration_Code restriction.
2878         (create_var_decl): call expand_decl for CONST_DECLs, to set MODE, ALIGN
2879         SIZE and SIZE_UNIT which we need for later back-annotations.
2880         * utils.c: (convert) <STRING_CST>: Remove obsolete code.
2881         <VIEW_CONVERT_EXPR>: Do not lift the conversion if the target type
2882         is an unchecked union.
2883         (pushdecl): Set DECL_NO_STATIC_CHAIN on imported nested functions.
2884         (convert) <VIEW_CONVERT_EXPR>: When the types have the same
2885         main variant, just replace the VIEW_CONVERT_EXPR.
2886         <UNION_TYPE>: Revert 2005-03-02 change.
2888         * repinfo.h, repinfo.ads: Add tcode for BIT_AND_EXPR.
2890         * repinfo.adb (Print_Expr, Rep_Value): Handle Bit_And_Expressions.
2892 2005-11-14  Matthew Heaney  <heaney@adacore.com>
2894         * a-crbtgo.ads, a-crbtgo.adb, a-coorse.ads, a-coorse.adb, a-convec.ads, 
2895         a-convec.adb, a-coinve.ads, a-coinve.adb, a-cohama.ads, a-cohama.adb, 
2896         a-ciorse.ads, a-ciorse.adb, a-cihama.ads, a-cihama.adb, a-cidlli.ads, 
2897         a-cidlli.adb, a-cdlili.ads, a-cdlili.adb, a-coormu.adb, a-ciormu.adb, 
2898         a-cihase.adb, a-cihase.ads, a-cohase.adb, a-cohase.ads, a-ciorma.ads, 
2899         a-coorma.ads, a-ciormu.ads, a-coormu.ads, a-ciorma.adb, a-coorma.adb: 
2900         Compiles against the spec for ordered maps described in sections
2901         A.18.6 of the most recent (August 2005) AI-302 draft.
2903 2005-11-14  Olivier Hainque  <hainque@adacore.com>
2905         * cuintp.c (UI_To_gnu): Use a proper type for intermediate computations
2906         to ensure bias adjustments take place when need be and to prevent
2907         occurrences of intermediate overflows.
2909 2005-11-14  Matthew Gingell  <gingell@adacore.com>
2910             Olivier Hainque  <hainque@adacore.com>
2912         * tb-gcc.c (trace_callback): Work around problem with _Unwind_GetIP on
2913         ia64 HP-UX.
2915         * tracebak.c (ia64 configuration): Enable _Unwind_Backtrace driven
2916         tracebacks on ia64 HP-UX and provide explanatory comment.
2917         Enable backtraces on ia64 GNU/Linux.
2918         (x86 configuration): Bump FRAME_LEVEL to 1 to ensure we retrieve a real
2919         base pointer from builtin_frame_address. Adjust BASE_SKIP accordingly.
2921 2005-11-14  Hristian Kirtchev  <kirtchev@adacore.com>
2922             Javier Miranda  <miranda@adacore.com>
2924         * rtsfind.ads, exp_util.adb, exp_util.ads, exp_disp.adb, exp_disp.ads,
2925         exp_ch7.adb, sem_ch9.adb, snames.adb, snames.ads,
2926         exp_ch9.adb, exp_ch9.ads, exp_ch6.adb, exp_ch3.adb, exp_ch3.ads,
2927         einfo.ads, einfo.adb: Complete support for Ada 2005 interfaces.
2929         * a-tags.ads, a-tags.adb: Major rewrite and additions to implement
2930         properly new Ada 2005 interfaces (AI-345) and add run-time checks (via
2931         assertions).
2933         * exp_dbug.ads, exp_dbug.adb (Get_Secondary_DT_External_Name): New
2934         subprogram that generates the external name associated with a
2935         secondary dispatch table.
2936         (Get_Secondary_DT_External_Name): New subprogram that generates the
2937         external name associated with a secondary dispatch table.
2939 2005-11-14  Emmanuel Briot  <briot@adacore.com>
2941         * xref_lib.adb (Parse_Identifier_Info): It is possible for an entity
2942         line in the ALI file to include both an instantiation reference, and a
2943         returned value.
2945 2005-11-14  Vincent Celier  <celier@adacore.com>
2947         * clean.adb (Check_Project): Look for Ada code in extending project,
2948         even if Ada is not specified as a language.
2949         Use new function DLL_Prefix for DLL_Name
2950         (Clean_Interface_Copy_Directory): New procedure
2951         (Clean_Library_Directory): New procedure
2952         (Clean_Directory): Remove procedure, no longer used
2953         (Clean_Project): Do not delete any file in an externally built project
2955         * prj-env.adb (Set_Ada_Paths.Add.Recursive_Add): Add the object
2956         directory of an extending project, even when there are no Ada source
2957         present.
2958         (Ada_Objects_Path.Add): Add Library_ALI_Dir, not Library_Dir to the path
2959         (Set_Ada_Paths.Add.Recursive_Add): Ditto
2961         * mlib-prj.adb (Check_Library): For all library projects, get the
2962         library file timestamp.
2963         (Build_Library): Copy ALI files in Library_ALI_Dir, not in Library_Dir
2964         (Build_Library): Use new function DLL_Prefix for the DLL_Name
2965         (Clean): Remove procedure, no longer used
2966         (Ultimate_Extension_Of): New function
2967         (Build_Library): When cleaning the library directory, only remove an
2968         existing library file and any ALI file of a source of the project.
2969         When cleaning the interface copy directory, remove any source that
2970         could be a source of the project.
2972         * prj.ads, prj.adb (Project_Empty): Add values of new components
2973         Library_TS and All_Imported_Projects.
2974         (Project_Empty): Add values for new components of Project_Data:
2975         Library_ALI_Dir and Display_Library_ALI_Dir
2977         * prj-attr.adb: New project level attribute name Library_ALI_Dir
2979         * prj-nmsc.adb (Check_Library_Attributes): Take into account new
2980         attribute Library_ALI_Dir.
2981         (Check_Library_Attributes): The library directory cannot be the same as
2982         any source directory of the project tree.
2983         (Check_Stand_Alone_Library): The interface copy directory cannot be
2984         the same as any source directory of the project tree.
2986         * mlib.adb: Use Prj.Com.Fail, instead of Osint.Fail directly, to delete
2987         all temporary files.
2989 2005-11-14  Robert Dewar  <dewar@adacore.com>
2990             Ed Schonberg  <schonberg@adacore.com>
2992         * sem_elab.adb: Change name Is_Package to Is_Package_Or_Generic_Package
2993         (Check_Elab_Call): A call within a protected body is never an
2994         elaboration call, and does not require checking.
2995         (Same_Elaboration_Scope): Take into account protected types for both
2996         entities.
2997         (Activate_Elaborate_All_Desirable): New procedure
2999         * ali.ads, ali.adb: Implement new AD/ED for Elaborate_All/Elaborate
3000         desirable
3002         * binde.adb: Implement new AD/ED for Elaborate_All/Elaborate desirable
3003         (Elab_Error_Msg): Use -da to include internal unit links, not -de.
3005         * lib-writ.ads, lib-writ.adb: 
3006         Implement new AD/ED for Elaborate_All/Elaborate desirable
3007         Use new Elaborate_All_Desirable flag in N_With_Clause node
3009         * sinfo.ads, sinfo.adb (Actual_Designated_Subtype): New attribute for
3010         N_Free_Statement nodes.
3011         Define new class N_Subprogram_Instantiation
3012         Add Elaborate_Desirable flag to N_With_Clause node
3013         Add N_Delay_Statement (covering two kinds of delay)
3015         * debug.adb: Introduce d.f flag for compiler
3016         Add -da switch for binder
3018 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3019             Cyrille Comar  <comar@adacore.com>
3021         * exp_aggr.adb (Build_Record_Aggr_Code): Do not create master entity
3022         for task component, in the case of a limited aggregate. The enclosed
3023         object declaration will create it earlier. Otherwise, in the case of a
3024         nested aggregate, the object may appear in the wrong scope.
3025         (Convert_Aggr_In_Object_Decl): Create a transient scope when needed.
3026         (Gen_Assign): If the component being assigned is an array type and the
3027         expression is itself an aggregate, wrap the assignment in a block to
3028         force finalization actions on the temporary created for each row of the
3029         enclosing object.
3030         (Build_Record_Aggr_Code): Significant rewrite insuring that ctrl
3031         structures are initialized after all discriminants are set so that
3032         they can be accessed even when their offset is dynamic.
3034 2005-11-14  Robert Dewar  <dewar@adacore.com>
3035             Hristian Kirtchev  <kirtchev@adacore.com>
3037         * sem_attr.adb: Implement Machine_Rounding attribute
3038         (Analyze_Access_Attribute): The access attribute may appear within an
3039         aggregate that has been expanded into a loop.
3040         (Check_Task_Prefix): Add semantic check for attribute 'Callable and
3041         'Terminated whenever the prefix is of a task interface class-wide type.
3042         (Analyze_Attribute): Add semantic check for attribute 'Identity whenever
3043         the prefix is of a task interface class-wide type.
3045         * s-vaflop-vms-alpha.adb: Valid_D, Valid_F, Valid_G: Make Val constant
3046         to avoid warnings.
3048         * s-fatgen.ads, s-fatgen.adb (Machine_Rounding): New function
3049         Remove pragma Inline for [Unaligned_]Valid.
3050         Add comments that Valid routines do not work for Vax_Float
3052         * exp_attr.adb: Implement Machine_Rounding attribute
3054         * snames.h: Add entry for Machine_Rounding attribute
3056 2005-11-14  Javier Miranda  <miranda@adacore.com>
3057             Robert Dewar  <dewar@adacore.com>
3058             Hristian Kirtchev  <kirtchev@adacore.com>
3060         * exp_attr.adb (Expand_N_Attribute_Reference, cases of Attribute_Size
3061         and related): For a prefix that is an explicit dereference of an
3062         access to unconstrained packed array type, annotate the dereference
3063         with an actual subtype so GIGI can make a correct size computation.
3064         (Expand_N_Attribute_Reference): In case of 'Unchecked_Access and
3065         'Unrestricted_Access, if the designated type is an interface we
3066         add a type conversion to force the displacement of the pointer
3067         to the secondary dispatch table.
3068         Use Universal_Real instead of Long_Long_Float when we need a high
3069         precision float type for the generated code (prevents gratuitous
3070         Vax_Float stuff when pragma Float_Representation (Vax_Float) used)
3071         (Expand_N_Attribute_Reference): Add support for attribute 'Callable and
3072         'Terminated for task interface class-wide objects. Generate a call to
3073         the predefined dispatching routine used to retrieve the _task_id from
3074         a task corresponding record.
3075         (Expand_Fpt_Attribute): Major change to properly handle Vax_Float
3077         * sem_disp.adb: Change name Is_Package to Is_Package_Or_Generic_Package
3078         (Check_Dispatching_Operation): Protect the frontend againts
3079         previously detected errors.
3081         * Makefile.rtl: Add new instantiations of system.fat_gen
3083         * s-fatflt.ads, s-fatlfl.ads, s-fatllf.ads, s-fatsfl.ads: 
3084         Change name of instantiated package for better consistency
3085         with newly added system.fat_gen instantiations.
3087         * s-filofl.ads, s-fishfl.ads, s-fvadfl.ads, s-fvaffl.ads,
3088         s-fvagfl.ads: New files.
3090 2005-11-14  Cyrille Comar  <comar@adacore.com>
3091             Thomas Quinot  <quinot@adacore.com>
3093         * exp_ch5.adb (Expand_N_Assignment_Statement, Tagged_Case): For an
3094         assignment of a value of a tagged type that has been rewritten to a
3095         block statement, it is known by construction that no checks are
3096         necessary for the statements within the block: analyze it with checks
3097         suppressed.
3098         (Expand_N_If_Statement): When killing a dead then-branch in an
3099         if-statement that has elsif_parts, recompute the Current_Value node
3100         for any entity whose value is known from the condition of the first
3101         elsif_part.
3102         (Expand_N_Return_Statement): When returning a mutable record, convert
3103         the return value into its actual subtype in order to help the backend
3104         to return the actual size instead of the maximum. This is another
3105         aftermath of not returning mutable records on the sec-stack anymore.
3107         * sem_ch5.ads, sem_ch5.adb (Analyze_Iteration_Scheme): Minor change to
3108         handling of error msg for suspicious reverse range iteration.
3109         (Check_Possible_Current_Value_Condition): Move declaration from body to
3110         spec, to allow this subprogram to be called from exp_ch5.
3112 2005-11-14  Thomas Quinot  <quinot@adacore.com>
3114         * exp_dist.adb (Append_Array_Traversal): Modify constrained case to
3115         generate a set of nested array aggregates instead of a single flat
3116         aggregate for multi-dimensional arrays.
3118 2005-11-14  Pascal Obry  <obry@adacore.com>
3120         * expect.c (__gnat_kill) [Win32]: Fix implementation, the pid returned
3121         by spawnve is a process handle, no need to convert. Add a parameter
3122         close to control wether the process handle must be closed.
3123         (__gnat_waitpid): Fix implementation, the pid returned by spawnve is
3124         a process handle, not need to convert.
3125         (__gnat_kill) [*]: Add dummy parameter close to match the Win32 spec.
3127         * g-expect.adb: (Kill): Document the new close parameter.
3128         (Close): Do not release the process handle in the kill there as
3129         waitpid() is using it.
3130         (Send_Signal): Release the process handle.
3132 2005-11-14  Robert Dewar  <dewar@adacore.com>
3134         * exp_fixd.adb: Use Universal_Real instead of Long_Long_Float when we
3135         need a high precision float type for the generated code (prevents
3136         gratuitous Vax_Float stuff when pragma Float_Representation (Vax_Float)
3137         used).
3139         * exp_imgv.adb: Use Universal_Real instead of Long_Long_Float when we
3140         need a high precision float type for the generated code (prevents
3141         gratuitous Vax_Float stuff when pragma Float_Representation (Vax_Float)
3142         used).
3143         (Expand_Width_Attribute): In configurable run-time, the attribute is not
3144         allowed on non-static enumeration subtypes. Force a load error to emit
3145         the correct diagnostic.
3147 2005-11-14  Thomas Quinot  <quinot@adacore.com>
3148             Robert Dewar  <dewar@adacore.com>
3149             Ed Schonberg  <schonberg@adacore.com>
3151         * exp_intr.adb (Expand_Unc_Deallocation): If GIGI needs an actual
3152         subtype to compute the size of the designated object at run-time,
3153         create such a subtype and store it in the Actual_Designated_Subtype
3154         attribute of the N_Free_Statement.
3155         Generate itype for classwide designated object in both cases of
3156         user-specified storage pool: specific and class-wide, not only in the
3157         specific case.
3158         Raise CE when trying to set a not null access type object to null.
3159         (Expand_Dispatching_Constructor_Call): Retrieve subprogram actual with
3160         an explicit loop, because freeze nodes make its position variable.
3162         * sem_intr.adb (Check_Intrinsic_Call): Given warning for freeing not
3163         null object.
3165 2005-11-14  Javier Miranda  <miranda@adacore.com>
3167         * exp_strm.adb (Build_Stream_Attr_Profile, Build_Stream_Function,
3168         Build_Stream_Procedure): Add the null-excluding attribute to the first
3169         formal.
3170         This has no semantic meaning under Ada95 mode but it is a
3171         requirement under Ada05 mode.
3173         * par-ch3.adb (P_Access_Definition): Addition of warning message if
3174         the null exclusion is used under Ada95 mode
3175         (P_Null_Exclusion): The qualifier has no semantic meaning in Ada 95.
3176         (P_Access_Definition): Remove assertion that forbids the use of
3177         the null-exclusion feature in Ada95.
3179 2005-11-14  Robert Dewar  <dewar@adacore.com>
3181         * impunit.adb: Exclude container helper units not intended for use by
3182         users.
3184 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3186         * freeze.adb (Freeze_Entity): For an access formal that is an access
3187         to subprogram, freeze the anonymous subprogram type at the same time,
3188         to prevent later freezing in the wrong scope, such as the enclosing
3189         subprogram body.
3190         (Freeze_Entity): Freeze the equivalent_type of an access_to_protected_
3191         subprogram whenever available.
3193 2005-11-14  Arnaud Charlet  <charlet@adacore.com>
3195         PR ada/23732
3196         * gnatvsn.ads (Library_Version): Bump to 4.1
3198 2005-11-14  Robert Dewar  <dewar@adacore.com>
3200         * g-debpoo.adb (Set_Valid): Use Integer_Address instead of
3201         Storage_Offset to avoid wrap around causing invalid results.
3203 2005-11-14  Pascal Obry  <obry@adacore.com>
3205         * gnatbind.adb (Is_Cross_Compiler): New function returning True for
3206         cross-compiler.
3207         (Scan_Bind_Arg): Fail with an error message if -M option is used
3208         on a native compiler.
3210 2005-11-14  Robert Dewar  <dewar@adacore.com>
3211             Vincent Celier  <celier@adacore.com>
3213         * gprep.adb: Implement -C switch to scan comments
3215         * scng.adb: Scan comment symbol separately if Replace_In_Comments set
3217         * scans.ads: Comment updates (including new use of Tok_Comment in
3218         preprocessing)
3220         * opt.ads: Add documentation for flags that are used by gprmake,
3221         currently and in the next version of gprmake.
3222         (Verbosity_Level): New variable
3223         Add Replace_In_Comments switch
3225         * vms_data.ads: Add VMS equivalent for new gnatmake switches -vl, -vm
3226         and -vm.
3227         Add /REPLACE_IN_COMMENTS for gnatprep -C switch
3229 2005-11-14  Arnaud Charlet  <charlet@adacore.com>
3231         * g-regpat.adb (Fail): raise Expression_Error including the diagnostic
3232         message, friendlier.
3234 2005-11-14  Robert Dewar  <dewar@adacore.com>
3236         * g-spitbo.adb: (Hash): Rotate by 3 instead of 1
3238 2005-11-14  Doug Rupp  <rupp@adacore.com>
3240         * init.c [VMS]: Don't install __gnat_error_handler if DBG$TDBG defined.
3242 2005-11-14  Robert Dewar  <dewar@adacore.com>
3244         * interfac.ads: Change declarations of IEEE float types so that we no
3245         longer need a separate version of this package for VMS.
3247 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3249         * lib-xref.adb (Generate_Definition, Generate_Reference): Treat the
3250         internal entity created for the declaration of a child subprogram body
3251         with no spec as coming from source, to generate proper cross-reference
3252         information.
3254 2005-11-14  Vincent Celier  <celier@adacore.com>
3256         * make.adb (Compile_Sources): Change verbose message to minimum
3257         verbosity level High for "is in an Ada library", "is a read-only
3258         library" and "is an internal library",
3259         (Create_Binder_Mapping_File): Path name of ALI file for library project
3260         must include the library directory, not the object directory.
3261         (Scan_Make_Arg): Make sure that Switch.M.Scan_Make_Switches is called
3262         for new switches -vl, -vm and -vh.
3263         (Verbose_Msg): Add new defaulted parameter Minimum_Verbosity
3264         (Check): Use minimum verbosity Medium for some Verbose_Msg calls
3265         (Compile_Sources): Do not attempt to compile if an ALI file is missing
3266         in a project that is externally built.
3267         (Compute_All_Imported_Projects): New procedure
3268         (Gnatmake): Check if importing libraries should be regenerated because
3269         at least an imported library is more recent.
3270         (Initialize): For each project compute the list of the projects it
3271         imports directly or indirectly.
3272         (Add_Library_Search_Dir): New procedure, used in place of
3273         Add_Lib_Search_Dir in procedure Scan_Make_Arg so that absolute paths are
3274         put in the search paths.
3275         (Add_Source_Search_Dir): New procedure, used in place of
3276         Add_Src_Search_Dir in procedure Scan_Make_Arg so that absolute paths are
3277         put in the search paths.
3278         (Mark_Directory): Resolve the absolute path the directory before marking
3279         it.
3281         * switch-m.adb (Scan_Make_Switches): Replace "raise Bad_Switch;" with
3282         call to new procedure Bad_Switch. Call Scan_Pos with new parameter
3283         Switch. Do not handle any exception.
3284         (Scan_Make_Switches): Increment Ptr for new switches -vl, -vm and -vh
3285         so that the switch is recognized as valid.
3286         (Scan_Make_Switches): Implement new switches -vl, -vm and -vh.
3288 2005-11-14  GNAT Script  <nobody@adacore.com>
3290         * Make-lang.in: Makefile automatically updated
3292 2005-11-14  Pascal Obry  <obry@adacore.com>
3294         * mdll.adb (Build_Reloc_DLL): Fix parameter handling when a map file is
3295         used.
3296         (Ada_Build_Reloc_DLL): Fix parameter handling when a map file is used.
3297         In both cases the last argument was dropped.
3299 2005-11-14  Eric Botcazou  <ebotcazou@adacore.com>
3301         * namet.h: (Column_Numbe): New type.
3302         (Get_Column_Number): Define to sinput__get_column_number.
3303         (Instantiation): Define to sinput__instantiation.
3304         (Get_Column_Number): Declare.
3305         (Instantiation): Likewise.
3307 2005-11-14  Robert Dewar  <dewar@adacore.com>
3309         * par-ch10.adb (P_Compilation_Unit): Add defenses against junk unit
3310         syntax, which could cause compiler hangs.
3312 2005-11-14  Vincent Celier  <celier@adacore.com>
3314         * prj-ext.adb: Take into account new environment variable
3315         GPR_PROJECT_PATH. Warn if both GPR_PROJECT_PATH and ADA_PROJECT_PATH
3316         are defined.
3317         (Prj.Ext elaboration): For each directory in the ADA_PROJECT_PATH,
3318         normalize its path name, making it absolute and resolving symbolic
3319         links, and replace the original if resolved path is different.
3321 2005-11-14  Vincent Celier  <celier@adacore.com>
3323         * prj-part.adb (Create_Virtual_Extending_Project): Put virtual project
3324         into Prj.Tree.Tree_Private_Part.Projects_Htable for GPS.
3326 2005-11-14  Emmanuel Briot  <briot@adacore.com>
3328         * prj-pp.adb (Print): Do not output the with statement if the
3329         associated name is empty, which happens for virtual extending projects.
3330         (Print): Preserve the "extends all" attribute when printing the project.
3332         * prj-tree.ads (String_Value_Of): Add comment about returned value for
3333         a virtual extending project.
3335 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3337         * sem_aggr.adb (Resolve_Aggregate): An others choice is legal on the
3338         rhs of an assignment even if the type is unconstrained, when the
3339         context is non-expanding.
3340         In an inlined body, if the context type is private,
3341         resolve with its full view, which must be a composite type.
3343 2005-11-14  Robert Dewar  <dewar@adacore.com>
3344             Ed Schonberg  <schonberg@adacore.com>
3346         * sem_ch10.adb: Change name Is_Package to Is_Package_Or_Generic_Package
3347         Do not give obsolescent warning on with of subprogram (since we
3348         diagnose calls)
3349         (Analyze_With_Clause): Add test for obsolescent package
3350         (Install_Context_Clauses): If the unit is the body of a child unit, do
3351         not install twice the private declarations of the parents, to prevent
3352         circular lists of Use_Clauses in a parent.
3353         (Implicit_With_On_Parent): Do add duplicate with_clause on parent when
3354         compiling body of child unit.
3355         Use new class N_Subprogram_Instantiation
3356         (Expand_With_Clause): If this is a private with_clause for a child unit,
3357         appearing in the context of a package declaration, then the implicit
3358         with_clauses generated for parent units are private as well.
3359         (License_Check): Do not generate message if with'ed unit is internal
3361 2005-11-14  Gary Dismukes  <dismukes@adacore.com>
3362             Ed Schonberg  <schonberg@adacore.com>
3363             Thomas Quinot  <quinot@adacore.com>
3365         * sem_ch12.ads, sem_ch12.adb (Map_Entities): Exclude entities whose
3366         names are internal, because they will not have a corresponding partner
3367         in the actual package.
3368         (Analyze_Formal_Package): Move the setting of the formal package spec's
3369         Generic_Parent field so that it occurs prior to analyzing the package,
3370         to allow proper operation of Install_Parent_Private_Declarations.
3371         (Analyze_Package_Instantiation): Set the instantiated package entity's
3372         Package_Instantiation field.
3373         (Get_Package_Instantiation_Node): Move declaration to package spec.
3374         Retrieve the N_Package_Instantiation node when the Package_Instantiation
3375         field is present.
3376         (Check_Generic_Child_Unit): Within an inlined call, the only possible
3377         instantiation is Unchecked_Conversion, for which no parents are needed.
3378         (Inline_Instance_Body): Deinstall and record the use_clauses for all
3379         parent scopes of a scope being removed prior to inlining an instance
3380         body.
3381         (Analyze_Package_Instantiation): Do not perform front-end inlining when
3382         the current context is itself an instance within a non-instance child
3383         unit, to prevent scope stack errors.
3384         (Save_References): If the node is an aggregate that is an actual in a
3385         call, rewrite as a qualified expression to preserve some type
3386         information, to resolve possible ambiguities in the instance.
3387         (Instance_Parent_Unit): New global variable to record the ultimate
3388         parent unit associated with a generic child unit instance (associated
3389         with the existing Parent_Unit_Visible flag).
3390         (type Instance_Env): New component Instance_Parent_Unit for stacking
3391         parents recorded in the global Instance_Parent_Unit.
3392         (Init_Env): Save value of Instance_Parent_Unit in the Instance_Env
3393         stack.
3394         (Install_Spec): Save the parent unit entity in Instance_Parent_Unit when
3395         it's not a top-level unit, and only do this if Instance_Parent_Unit is
3396         not already set. Replace test of Is_Child_Unit with test of parent's
3397         scope against package Standard. Add comments and a ??? comment.
3398         (Remove_Parent): Revise condition for resetting Is_Immediately_Visible
3399         on a child instance parent to test that the parent equals
3400         Instance_Parent rather than simply checking that the unit is not a
3401         child unit.
3402         (Restore_Env): Restore value of Instance_Parent_Unit from Instance_Env.
3403         (Validate_Derived_Interface_Type_Instance): Verify that all ancestors of
3404         a formal interface are ancestors of the corresponding actual.
3405         (Validate_Formal_Interface_Type): Additional legality checks.
3406         (Analyze_Formal_Derived_Interface_Type): New procedure to handle formal
3407         interface types with ancestors.
3408         (Analyze_Formal_Package): If formal is a renaming, use renamed entity
3409         to diagnose attempts to use generic within its own declaration.
3411 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3412             Javier Miranda  <miranda@adacore.com>
3414         * sem_ch3.ads, sem_ch3.adb (Build_Discriminal): Add link to original
3415         discriminant.
3416         (Build_Private_Derived_Type): The entity of the created full view of the
3417         derived type does not come from source. If after installing the private
3418         declarations of the parent scope the parent is still private, use its
3419         full view to construct the full declaration of the derived type.
3420         (Build_Derived_Record_Type): Relax the condition that controls the
3421         execution of the check that verifies that the partial view and
3422         the full view agree in the set of implemented interfaces. In
3423         addition, this test now only takes into account the progenitors.
3424         (Derive_Interface_Subprograms): No need to derive subprograms
3425         of ancestors that are interfaces.
3426         (Derive_Subprograms): Remove formal No_Predefined_Prims and the
3427         associated code.
3428         Change name Is_Package to Is_Package_Or_Generic_Package
3429         (Complete_Subprograms_Derivation): Handle the case in which the full
3430         view is a transitive derivation of the ancestor of the partial view.
3431         (Process_Full_View): Rename local subprogram Find_Interface_In_
3432         Descendant to Find_Ancestor_Interface to leave the code more clear.
3433         Remove wrong code that avoids the generation of an error message
3434         when the immediate ancestor of the partial view is an interface.
3435         In addition some minor reorganization of the code has been done to
3436         leave it more clear.
3437         (Analyze_Type_Declaration): If type has previous incomplete tagged
3438         partial view, inherit properly its primitive operations.
3439         (Collect_Interfaces): Make public, for analysis of formal
3440         interfaces.
3441         (Analyze_Interface_Declaration): New procedure for use for regular and
3442         formal interface declarations.
3443         (Build_Derived_Record_Type): Add support for private types to the code
3444         that checks if a tagged type implements abstract interfaces.
3445         (Check_Aliased_Component_Type): The test applies in the spec of an
3446         instance as well.
3447         (Access_Type_Declaration): Clean up declaration of malformed type
3448         declared as an access to its own classwide type, to prevent cascaded
3449         crash.
3450         (Collect_Interfaces): For private extensions and for derived task types
3451         and derived protected types, the parent may be an interface that must
3452         be included in the interface list.
3453         (Access_Definition): If the designated type is an interface that may
3454         contain tasks, create Master_Id for it before analyzing the expression
3455         of the declaration, which may be an allocator.
3456         (Record_Type_Declaration): Set properly the interface kind, for use
3457         in allocators, the creation of master id's for task interfaces, etc.
3459 2005-11-14  Javier Miranda  <miranda@adacore.com>
3460             Ed Schonberg  <schonberg@adacore.com>
3462         * sem_ch6.adb (Check_Conformance): The null-exclusion feature can be
3463         omitted in case of stream attribute subprograms.
3464         (Check_Inline_Pragma): Handle Inline and Inline_Always pragmas that
3465         appear immediately after a subprogram body, when there is no previous
3466         subprogram declaration.
3467         Change name Is_Package to Is_Package_Or_Generic_Package
3468         (Process_Formals): A non null qualifier on a non null named access
3469         type is not an error, and is a warning only if Redundant_Constructs
3470         are flagged.
3472 2005-11-14  Gary Dismukes  <dismukes@adacore.com>
3473             Ed Schonberg  <schonberg@adacore.com>
3475         * sem_ch7.adb (Install_Parent_Private_Declarations): New procedure
3476         nested within Analyze_Package_Specification to install the private
3477         declarations and use clauses within each of the parent units of a
3478         package instance of a generic child package.
3479         (Analyze_Package_Specification): When entering a private part of a
3480         package associated with a generic instance or formal package, the
3481         private declarations of the parent must be installed (by calling new
3482         procedure Install_Parent_Private_Declarations).
3483         Change name Is_Package to Is_Package_Or_Generic_Package
3484         (Preserve_Full_Attributes): For a synchronized type, the corresponding
3485         record is absent in a generic context, which does not indicate a
3486         compiler error.
3488 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3490         * sem_ch8.adb (Analyze_Subprogram_Renaming): In a generic context, do
3491         not try to rewrite a renamed stream attribute, because the operations
3492         on the type may not have been generated.
3493         Handle properly a renaming_as_body generated for a stream operation
3494         whose default is abstract because the object type itself is abstract.
3495         (Find_Type): If the type is incomplete and appears as the prefix of a
3496         'Class reference, it is tagged, and its list of primitive operations
3497         must be initialized properly.
3498         (Chain_Use_Clauses): When chaining the use clauses that appear in the
3499         private declaration of a parent unit, prior to compiling the private
3500         part of a child unit, find on the scope stack the proper parent entity
3501         on which to link the use clause.
3502         (Note_Redundant_Use): Emit a warning when a redundant use clause is
3503         detected.
3504         (Analyze_Object_Renaming): An attribute reference is not a legal object
3505         if it is not a function call.
3507 2005-11-14  Robert Dewar  <dewar@adacore.com>
3508             Ed Schonberg  <schonberg@adacore.com>
3510         * sem_eval.adb: Implement d.f flag
3511         (Subtype_Statically_Match): A generic actual type has unknown
3512         discriminants when the corresponding actual has a similar partial view.
3513         If the routine is called to validate the signature of an inherited
3514         operation in a child instance, the generic actual matches the full view,
3516 2005-11-14  Hristian Kirtchev  <kirtchev@adacore.com>
3517             Ed Schonberg  <schonberg@adacore.com>
3518             Robert Dewar  <dewar@adacore.com>
3519             Thomas Quinot  <quinot@adacore.com>
3521         * sem_res.adb (Resolve_Call): Provide a better error message whenever
3522         a procedure call is used as a select statement trigger and is not an
3523         entry renaming or a primitive of a limited interface.
3524         (Valid_Conversion): If the operand has a single interpretation do not
3525         remove address operations.
3526         (Check_Infinite_Recursion): Skip freeze nodes when looking for a raise
3527         statement to inhibit warning.
3528         (Resolve_Unary_Op): Do not produce a warning when
3529         processing an expression of the form -(A mod B)
3530         Use Universal_Real instead of Long_Long_Float when we need a high
3531         precision float type for the generated code (prevents gratuitous
3532         Vax_Float stuff when pragma Float_Representation (Vax_Float) used)
3533         (Resolve_Concatenation_Arg): Improve error message when argument is an
3534         ambiguous call to a function that returns an array.
3535         (Make_Call_Into_Operator, Operand_Type_In_Scope): Do not check that
3536         there is an implicit operator in the given scope if we are within an
3537         instance: legality check has been performed on the generic.
3538         (Resolve_Unary_Op): Apply warnings checks on argument of Abs operator
3539         after resolving operand, to avoid false warnings on overloaded calls.
3541 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3542             Javier Miranda  <miranda@adacore.com>
3544         PR ada/15604
3546         * sem_type.adb (Covers): In an inlined body, a composite type matches
3547         a private type whose full view is a composite type.
3548         (Interface_Present_In_Ancestor): Protect the frontend against
3549         previously detected errors to ensure that its compilation
3550         with assertions enabled gives the same output that its
3551         compilation without assertions.
3552         (Interface_Present_In_Ancestor): Add support for private types.
3553         Change name In_Actual to In_Generic_Actual (clean up)
3554         (Disambiguate): New predicate In_Actual, to recognize expressions that
3555         appear in the renaming declaration generated for generic actuals, and
3556         which must be resolved in the outer context.
3558 2005-11-14  Robert Dewar  <dewar@adacore.com>
3559             Thomas Quinot  <quinot@adacore.com>
3560             Hristian Kirtchev  <kirtchev@adacore.com>
3561             Ed Schonberg  <schonberg@adacore.com>
3563         * sem_util.ads, sem_util.adb: Change name Is_Package to
3564         Is_Package_Or_Generic_Package.
3565         (Check_Obsolescent): New procedure.
3566         (Set_Is_Public): Remove obsolete junk test.
3567         (Set_Public_Status): Do not set Is_Public on an object whose declaration
3568         occurs within a handled_sequence_of_statemets.
3569         (Is_Controlling_Limited_Procedure): Factor some of the logic, account
3570         for a parameterless procedure.
3571         (Enter_Name): Recognize renaming declarations created for private
3572         component of a protected type within protected operations, so that
3573         the source name of the component can be used in the debugger.
3575 2005-11-14  Ed Schonberg  <schonberg@adacore.com>
3576             Robert Dewar  <dewar@adacore.com>
3578         * sem_warn.ads, sem_warn.adb (Publicly_Referenceable): Generic formals
3579         of a generic subprogram are not visible outside the body.
3580         (Set_Warning_Switch): New procedure (code to set warning mode moved
3581         here from Switch.C so that it can be shared by pragma processing.
3582         (Check_References): Special case warning for non-modified non-imported
3583         volatile objects.
3584         * par-prag.adb: Modify processing of pragma Warnings to accomodate new
3585         form with a string literal argument
3587 2005-11-14  Javier Miranda  <miranda@adacore.com>
3589         * s-finroo.ads, s-finroo.adb (Read): Addition of "not null" to the
3590         anonymous access.
3591         (Write): Addition of "not null" to the anonymous access.
3592         (Read): Addition of "not null" to the anonymous access.
3593         (Write): Addition of "not null" to the anonymous access.
3595         * s-strxdr.adb, s-stratt.ads, s-stratt.adb (I_AD, I_AS, I_B, I_C, I_F,
3596         I_I, I_LF, I_LI, I_LLF, I_LLI, I_LLU, I_LU, I_SF, I_SI, I_SSI, I_SSU,
3597         I_SU, I_U, I_WC): Addition of "not null" to the anonymous access.
3598         (W_AD, W_AS, W_B, W_C, W_F, W_I, W_LF, W_LI, W_LLF, W_LLI, W_LLU,
3599         W_LU, W_SF, W_SI, W_SSI, W_SSU, W_SU, W_U, W_WC): Addition of
3600         "not null" to the anonymous access.
3602 2005-11-14  Robert Dewar  <dewar@adacore.com>
3604         * s-stoele.adb: Fix code for Address mod Storage_Offset for negative
3605         offset values
3607 2005-11-14  Vincent Celier  <celier@adacore.com>
3609         * switch.adb (Bad_Switch): New procedure
3610         (Scan_Nat, Scan_Pos): Directly call Osint.Fail with the appropriate
3611         message when in error.
3613         * switch.ads (Bad_Switch, Bad_Switch_Value, Missing_Switch_Value,
3614         Too_Many_Output_Files): Remove declarations, no longer used.
3615         (Scan_Nat): New parameter Switch
3616         (Scan_Pos): Ditto
3617         (Bad_Switch): New procedure
3619         * switch-b.adb (Scan_Binder_Switches): Replace "raise Bad_Switch;"
3620         with call to new procedure Bad_Switch. Call Scan_Pos and Scan_Natwith
3621         new parameter Switch. Replace "raise Too_Many_Output_Files;" with call
3622         to Osint.Fail. Do not handle any exception.
3624 2005-11-14  Vincent Celier  <celier@adacore.com>
3626         * tempdir.adb (Tempdir): Do not use environment variable TMPDIR if it
3627         designates a non existent directory.
3629 2005-11-14  Robert Dewar  <dewar@adacore.com>
3631         * xgnatugn.adb: Replace invalid membership test by 'Valid
3633 2005-11-14  Vincent Celier  <celier@adacore.com>
3635         * makegpr.adb (Gprmake): Do not attempt to build the global archive if
3636         there is no object directory.
3638 2005-11-14  Robert Dewar  <dewar@adacore.com>
3640         * usage.adb: Minor adjustment to output format, use nn instead of nnn
3641         (so that -gnateInnn does not run into next column)
3643 2005-11-14  Ed Falis  <falis@adacore.com>
3645         * s-bitops.adb (Bits_Array): corrected comment: "unconstrained" =>
3646         "constrained"
3648 2005-11-14  Cyrille Comar  <comar@adacore.com>
3650         * s-chepoo.ads: Add comments on Dereference.
3651         Remove unnecessary inherited abstract primitives.
3652         Cosmetic cleanup.
3654 2005-11-14  Robert Dewar  <dewar@adacore.com>
3656         * sem_cat.ads (Validate_Access_Type_Declaration): Remove declaration
3657         node parameter, not needed, since it is available as Declaration_Node.
3659 2005-11-14  Geert Bosch  <bosch@adacore.com>
3661         * s-exnllf.adb (Exn_LLF): Fix comment to be more precise and
3662         grammatically correct.
3664 2005-11-14  Vincent Celier  <celier@adacore.com>
3666         * s-fileio.ads: Correct spelling error in comment
3668 2005-11-14  Cyrille Comar  <comar@adacore.com>
3669             Robert Dewar  <dewar@adacore.com>
3670             Vincent Celier  <celier@adacore.com>
3671             Ben Brosgol  <brosgol@adacore.com>
3672             Jose Ruiz  <ruiz@adacore.com>
3673             Pascal Obry  <obry@adacore.com>
3675         * gnat_ugn.texi: 
3676         Document that -fstack-check is needed for strict compliance with the
3677         Ada 95 Reference Manual.
3678         Correct reference to VAX systems to meet HP guidelines
3679         Add documentation for new gnatmake switches -vl, -vm and -vh
3680         Replace DEC Ada by HP Ada
3681         Replace DIGITAL by HP
3682         Remove empty section on tools in compatibility section
3683         Clarify the Windows convention semantics.
3684         Document the Win32 calling convention.
3685         The Stdcall, Win32 and DLL convention are synonyms.
3686         Add a note in -gnatR description about zero size record components
3687         Note on new >= and <= warnings for -gnatwc
3688         Document that equal sign after -gnatm is optional.
3689         Note that strip is working fine on DLL built with a Library
3690         Project. The restriction apply only to DLL built with gnatdll.
3691         Update section about the way to debug a DLL.
3692         Update information about the DLL convention.
3693         Document -C switch for gnatprep
3694         Document new attribute Library_ALI_Dir
3695         Update elaboration doc to include implicit Elaborate pragmas now
3696         generated for subprogram instantiations.
3697         Document limitation on executable names that include spaces for --GCC,
3698         --GNATBIND, and --GNATLINK switches.
3699         Document that -w causes -gnatws to be added at start of gcc switches
3701         * gnat_rm.texi: Document that -mieee is needed for generating infinite
3702         and NaN values in case of overflow on machines that are not fully
3703         compliant with the IEEE floating-point standard.
3704         Create a section describing the set of compiler options needed for
3705         strict compliance with the Ada 95 Reference Manual.
3706         Add documentation for pragma Obsolescent applied to a package
3707         Clarify potential issues of mixed language programs related to the
3708         I/O buffering enabling in the elaboration of the GNAT runtime.
3709         Add extra documentation for pragma Restrictions (No_Elaboration_Code)
3710         This documentation only patch adds extra documentsion for pragma
3711         Restrictions (No_Elaboration_Code), explaining why it is not possible
3712         to document this restriction in terms of allowed source constructs.
3713         Document string literal form of pragma Warnings
3714         Document new attribute Library_ALI_Dir
3715         Add documentation on stable attributes in project files that was missing
3717         * gnat-style.texi: Indicate that paragraphs within a single comment
3718         should be separated by empty comment lines
3720         * ug_words: Added replacements for -gnat95 and -gnat05 (/95 and
3721         /05 respectively)
3723         * bindusg.adb: Minor cleanup, put -m before -M for consistency
3725 2005-11-14  Robert Dewar  <dewar@adacore.com>
3727         * a-secain.adb, a-slcain.adb, a-shcain.adb, a-chtgke.ads, a-chtgke.adb,
3728         a-stwiha.adb, a-strhas.adb, a-chzla1.ads, a-chzla9.ads, a-stzbou.adb,
3729         a-stzbou.ads, a-stzfix.adb, a-stzhas.adb, a-stzmap.adb, a-stzmap.ads,
3730         a-stzsea.adb, a-stzsea.ads, a-stzsup.adb, a-stzsup.ads, a-stzunb.adb,
3731         a-stzunb.ads, a-szuzha.adb, a-szuzha.ads, a-szuzti.adb, a-szuzti.ads,
3732         a-ztcoau.adb, a-ztcoau.ads, a-ztcoio.adb, a-ztcstr.adb, a-ztcstr.ads,
3733         a-ztdeau.adb, a-ztdeau.ads, a-ztdeio.adb, a-ztdeio.ads, a-ztedit.adb,
3734         a-ztedit.ads, a-ztenau.ads, a-ztenio.adb, a-ztenio.ads, a-ztexio.adb,
3735         a-ztexio.ads, a-ztfiio.adb, a-ztfiio.ads, a-ztflau.adb, a-ztflau.ads,
3736         a-ztflio.adb, a-ztflio.ads, a-ztgeau.adb, a-ztgeau.ads, a-ztinau.adb,
3737         a-ztinau.ads, a-ztinio.adb, a-ztmoau.ads, a-ztmoio.adb, a-ztmoio.ads,
3738         a-zttest.adb, g-enblsp-vms-alpha.adb, g-enblsp-vms-alpha.adb,
3739         g-enblsp-vms-ia64.adb, g-enblsp-vms-ia64.adb, system-linux-hppa.ads,
3740         a-chacon.adb, a-chacon.ads, a-wichun.adb, a-wichun.ads, a-zchuni.adb,
3741         a-zchuni.ads, g-trasym-vms-alpha.adb, g-trasym-vms-ia64.adb,
3742         system-hpux-ia64.ads, g-soccon-unixware.ads, g-soliop-unixware.ads,
3743         g-soccon-interix.ads, g-soliop-solaris.ads, g-eacodu-vms.adb,
3744         g-expect-vms.adb, g-socthi-vms.adb, g-soliop-mingw.ads,
3745         a-intnam-unixware.ads, a-intnam-lynxos.ads, a-intnam-tru64.ads,
3746         a-intnam-aix.ads, a-intnam-linux.ads, a-intnam-linux.ads,
3747         a-intnam-dummy.ads, a-numaux-libc-x86.ads, a-intnam-interix.ads,
3748         a-intnam-solaris.ads, a-calend-vms.adb, a-calend-vms.ads,
3749         a-intnam-vms.ads, a-calend-mingw.adb, a-intnam-mingw.ads,
3750         a-intnam-vxworks.ads, a-numaux-vxworks.ads, system-unixware.ads,
3751         system-linux-ia64.ads, a-intnam-freebsd.ads, system-freebsd-x86.ads,
3752         system-lynxos-ppc.ads, system-linux-x86_64.ads, a-stunha.adb,
3753         a-cgaaso.ads, a-cgaaso.adb, a-chtgop.adb, a-cgcaso.adb, a-cgarso.adb,
3754         a-cohata.ads, a-crbtgk.adb, a-crbltr.ads, a-coprnu.adb, a-rbtgso.adb,
3755         a-intnam-darwin.ads, system-darwin-ppc.ads, gprmake.adb, makegpr.ads,
3756         system-tru64.ads, system-aix.ads, system-solaris-x86.ads,
3757         system-irix-o32.ads, s-interr-sigaction.adb, system-irix-n32.ads,
3758         s-parame-mingw.adb, system-hpux.ads, s-traceb-hpux.adb,
3759         system-linux-x86.ads, s-inmaop-dummy.adb, system-os2.ads,
3760         system-interix.ads, system-solaris-sparc.ads,
3761         system-solaris-sparcv9.ads, s-inmaop-vms.adb,
3762         s-mastop-vms.adb, expander.adb, expander.ads, s-gloloc-mingw.adb,
3763         system-mingw.ads, system-vms-zcx.ads, s-osinte-fsu.adb,
3764         s-traceb-mastop.adb, a-exextr.adb, a-exstat.adb, a-filico.ads,
3765         a-finali.ads, a-interr.ads, a-intsig.adb, a-intsig.ads,
3766         a-except.ads, a-numaux-x86.ads, a-astaco.adb, a-calend.adb,
3767         a-calend.ads, a-chahan.adb, a-chahan.ads, a-chlat9.ads,
3768         a-colien.adb, a-colien.ads, a-colire.adb, a-colire.ads,
3769         a-comlin.adb, a-comlin.ads, a-cwila1.ads, a-cwila9.ads,
3770         a-elchha.adb, a-decima.adb, a-decima.ads, a-diocst.ads,
3771         a-direio.adb, a-direio.ads, a-excach.adb, a-excach.adb,
3772         a-exctra.ads, ali-util.adb, a-ngcefu.adb, a-ngcoty.adb,
3773         a-ngcoty.ads, a-nudira.adb, a-nudira.ads, a-nuflra.adb,
3774         a-numaux.ads, a-reatim.ads, a-sequio.adb, a-sequio.ads,
3775         a-siocst.ads, a-ssicst.ads, a-stmaco.ads, a-storio.adb,
3776         a-strbou.adb, a-strbou.ads, a-stream.ads, a-strfix.adb,
3777         a-strmap.adb, a-strmap.ads, a-strsea.adb, a-strsea.ads,
3778         a-strsup.adb, a-strsup.ads, a-strunb.adb, a-strunb.ads,
3779         a-stwibo.adb, a-stwibo.ads, a-stwifi.adb, a-stwima.adb,
3780         a-stwima.ads, a-stwise.adb, a-stwise.ads, a-stwisu.adb,
3781         a-stwisu.ads, a-stwiun.adb, a-stwiun.ads, a-suteio.adb,
3782         a-suteio.ads, a-swmwco.ads, a-swuwti.adb, a-swuwti.ads,
3783         a-sytaco.adb, a-sytaco.ads, a-tasatt.adb, a-taside.adb,
3784         a-taside.ads, a-teioed.adb, a-textio.adb, a-textio.ads,
3785         a-ticoau.adb, a-ticoau.ads, a-ticoio.adb, a-tideau.adb,
3786         a-tideio.adb, a-tienau.adb, a-tienio.adb, a-tifiio.adb,
3787         a-tiflio.adb, a-tigeau.adb, a-tigeau.ads, a-tiinau.adb,
3788         a-tiinio.adb, a-timoau.adb, a-timoio.adb, a-timoio.ads,
3789         a-tiocst.ads, a-titest.adb, atree.adb, a-witeio.adb,
3790         a-witeio.ads, a-wtcoau.adb, a-wtcoau.ads, a-wtcoio.adb,
3791         a-wtcstr.ads, a-wtdeau.adb, a-wtdeio.adb, a-wtedit.adb,
3792         a-wtedit.ads, a-wtenau.adb, a-wtenio.adb, a-wtfiio.adb,
3793         a-wtflio.adb, a-wtgeau.adb, a-wtinau.adb, a-wtinio.adb,
3794         a-wtmoau.adb, a-wtmoio.adb, a-wttest.adb, back_end.adb,
3795         bindgen.adb, butil.adb, butil.ads, checks.ads, cio.c, comperr.adb,
3796         csets.ads, cstand.adb, debug.ads, elists.ads, errno.c, errout.adb,
3797         errout.ads, erroutc.adb, erroutc.ads, errutil.adb, errutil.ads,
3798         errutil.ads, err_vars.ads, eval_fat.adb, exp_ch11.adb, exp_ch11.ads,
3799         exp_ch2.adb, exp_ch7.ads, exp_imgv.ads, exp_pakd.adb, exp_prag.adb,
3800         exp_prag.ads, exp_tss.adb, exp_tss.ads, exp_vfpt.ads, fe.h, fmap.adb,
3801         freeze.ads, frontend.adb, frontend.ads, g-arrspl.adb, g-arrspl.ads,
3802         g-awk.adb, g-awk.ads, g-boumai.ads, g-calend.adb, g-calend.ads,
3803         g-catiio.adb, g-comlin.adb, g-comlin.ads, g-comlin.ads, g-comlin.ads,
3804         g-comver.adb, g-crc32.adb, g-crc32.ads, g-ctrl_c.ads, g-curexc.ads,
3805         g-debpoo.ads, g-debuti.adb, g-diopit.adb, g-diopit.ads, g-dirope.adb,
3806         g-dirope.ads, g-dyntab.adb, g-dyntab.ads, g-excact.adb, g-excact.ads,
3807         g-except.ads, g-exctra.adb, g-exctra.ads, g-expect.ads, g-flocon.ads,
3808         g-hesorg.ads, g-io.adb, g-locfil.ads, g-md5.adb, g-md5.ads, g-md5.ads,
3809         g-moreex.adb, g-signal.ads, g-signal.adb, gnatbind.ads, gnatchop.adb,
3810         gnatcmd.adb, gnatfind.adb, gnatlbr.adb, gnatmake.ads, gnatmem.adb,
3811         gnatprep.adb, gnatprep.ads, gnatsym.adb, gnatxref.adb, g-os_lib.adb,
3812         g-os_lib.ads, g-pehage.adb, g-pehage.ads, gprep.ads, g-regexp.adb,
3813         g-regexp.ads, g-regist.adb, g-regist.ads, g-regpat.ads, g-semaph.adb,
3814         g-socthi.adb, g-soliop.ads, g-spipat.adb, g-spipat.ads, g-sptabo.ads,
3815         g-sptain.ads, g-sptavs.ads, g-string.ads, g-tasloc.adb, g-tasloc.ads,
3816         g-trasym.adb, g-trasym.ads, i-fortra.adb, i-fortra.ads, inline.adb,
3817         layout.adb, live.adb, make.ads, makeutl.ads, makeutl.adb, mdll-fil.adb,
3818         mdll-fil.ads, mdll-utl.ads, memroot.ads, memtrack.adb, mlib.ads,
3819         mlib-fil.adb, mlib-fil.ads, mlib-prj.ads, mlib-utl.adb, mlib-utl.ads,
3820         nlists.adb, nlists.ads, osint.adb, osint.ads, osint-c.adb, osint-l.adb,
3821         osint-l.ads, osint-m.ads, output.adb, par.adb, par.adb, par.ads,
3822         par-ch11.adb, par-ch12.adb, par-ch2.adb, par-ch4.adb, par-ch5.adb,
3823         par-ch6.adb, par-ch9.adb, par-endh.adb, par-labl.adb, par-load.adb,
3824         par-tchk.adb, prep.adb, prepcomp.adb, prepcomp.ads, prj-attr.ads,
3825         prj-com.ads, prj-dect.adb, prj-dect.ads, prj-env.ads, prj-err.ads,
3826         prj-ext.ads, prj-makr.adb, prj-makr.ads, prj-nmsc.ads, prj-pars.adb,
3827         prj-pars.ads, prj-part.ads, prj-pp.ads, prj-proc.ads, prj-strt.adb,
3828         prj-strt.ads, prj-tree.adb, prj-util.adb, prj-util.ads, rtsfind.adb,
3829         sem.adb, sem.ads, sem_case.adb, sem_case.ads, sem_ch11.adb,
3830         sem_ch4.adb, sem_ch6.ads, sem_ch7.ads, sem_dist.ads, sem_elab.ads,
3831         sem_elim.ads, sem_eval.ads, sem_intr.ads, sem_maps.adb, sem_maps.ads,
3832         sem_maps.ads, sem_res.ads, sem_type.ads, sfn_scan.adb, sfn_scan.ads,
3833         s-imgwch.ads, s-imgwiu.adb, s-imgwiu.ads, s-inmaop.ads, sinput.adb,
3834         sinput.ads, s-pack03.adb, s-pack03.ads, s-pack05.adb, s-pack05.ads,
3835         s-pack06.adb, s-pack06.ads, s-pack07.adb, s-pack07.ads, s-pack09.adb,
3836         s-pack09.ads, s-pack10.adb, s-pack10.ads, s-pack11.adb, s-pack11.ads,
3837         s-pack12.adb, s-pack12.ads, s-pack13.adb, s-pack13.ads, s-pack14.adb,
3838         s-pack14.ads, s-pack15.adb, s-pack15.ads, s-pack17.adb, s-pack17.ads,
3839         s-pack18.adb, s-pack18.ads, s-pack19.adb, s-pack19.ads, s-pack20.adb,
3840         s-pack20.ads, s-pack21.adb, s-pack21.ads, s-pack22.adb, s-pack22.ads,
3841         s-pack23.adb, s-pack23.ads, s-pack24.adb, s-pack24.ads, s-pack25.adb,
3842         s-pack25.ads, s-pack26.adb, s-pack26.ads, s-pack27.adb, s-pack27.ads,
3843         s-pack28.adb, s-pack28.ads, s-pack29.adb, s-pack29.ads, s-pack30.adb,
3844         s-pack30.ads, s-pack31.adb, s-pack31.ads, s-pack33.adb, s-pack33.ads,
3845         s-pack34.adb, s-pack34.ads, s-pack35.adb, s-pack35.ads, s-pack36.adb,
3846         s-pack36.ads, s-pack37.adb, s-pack37.ads, s-pack38.adb, s-pack38.ads,
3847         s-pack39.adb, s-pack39.ads, s-pack40.adb, s-pack40.ads, s-pack41.adb,
3848         s-pack41.ads, s-pack42.adb, s-pack42.ads, s-pack43.adb, s-pack43.ads,
3849         s-pack44.adb, s-pack44.ads, s-pack45.adb, s-pack45.ads, s-pack46.adb,
3850         s-pack46.ads, s-pack47.adb, s-pack47.ads, s-pack48.adb, s-pack48.ads,
3851         s-pack49.adb, s-pack49.ads, s-pack50.adb, s-pack50.ads, s-pack51.adb,
3852         s-pack51.ads, s-pack52.adb, s-pack52.ads, s-pack53.adb, s-pack53.ads,
3853         s-pack54.adb, s-pack54.ads, s-pack55.adb, s-pack55.ads, s-pack56.adb,
3854         s-pack56.ads, s-pack57.adb, s-pack57.ads, s-pack58.adb, s-pack58.ads,
3855         s-pack59.adb, s-pack59.ads, s-pack60.adb, s-pack60.adb, s-pack60.ads,
3856         s-pack61.adb, s-pack61.ads, s-pack62.adb, s-pack62.ads, s-pack63.adb,
3857         s-pack63.ads, s-parint.adb, s-parint.adb, s-parint.ads, sprint.ads,
3858         s-purexc.ads, s-restri.ads, s-restri.adb, s-scaval.adb, s-scaval.ads,
3859         s-secsta.adb, s-secsta.ads, s-sequio.adb, s-sequio.ads, stand.ads,
3860         s-tasuti.adb, s-traceb.adb, s-traceb.ads, stringt.adb, stringt.ads,
3861         styleg.ads, s-valboo.adb, s-valboo.ads, s-valcha.adb, s-valcha.ads,
3862         s-valdec.adb, s-valdec.ads, s-valint.adb, s-valint.ads, s-valint.ads,
3863         s-vallld.adb, s-vallld.ads, s-vallli.adb, s-vallli.ads, s-valllu.adb,
3864         s-valllu.ads, s-valrea.adb, s-valrea.ads, s-valuns.adb, s-valuns.ads,
3865         s-valuti.adb, s-valuti.ads, s-valwch.ads, s-veboop.adb, s-veboop.ads,
3866         s-vercon.adb, s-vercon.ads, s-wchcnv.adb, s-wchcnv.ads, s-wchcon.ads,
3867         s-wchjis.adb, s-wchjis.ads, s-wchstw.adb, s-wchstw.adb, s-wchstw.ads,
3868         s-wchwts.adb, s-wchwts.ads, s-widboo.adb, s-widboo.ads, s-widcha.adb,
3869         s-widcha.ads, s-widenu.adb, s-widenu.ads, s-widlli.adb, s-widlli.ads,
3870         s-widllu.adb, s-widllu.ads, s-widwch.adb, s-widwch.ads, s-wwdcha.adb,
3871         s-wwdcha.ads, s-wwdenu.adb, s-wwdenu.ads, symbols.adb, symbols.ads,
3872         table.ads, targparm.adb, targparm.ads, tb-alvms.c, tb-alvxw.c,
3873         tbuild.adb, tree_io.ads, treepr.adb, treeprs.adt, ttypef.ads,
3874         ttypes.ads, types.adb, uintp.adb, uintp.ads, uname.ads, urealp.ads,
3875         usage.ads, validsw.ads, vxaddr2line.adb, widechar.adb, widechar.ads,
3876         xeinfo.adb, xnmake.adb, xref_lib.ads, xr_tabls.adb, xr_tabls.ads,
3877         xsinfo.adb, xtreeprs.adb, xsnames.adb, vms_conv.ads, vms_conv.adb,
3878         a-dirval.ads, a-dirval.adb, a-dirval-mingw.adb, a-direct.ads,
3879         a-direct.adb, indepsw.ads, prj-attr-pm.ads, system-linux-ppc.ads,
3880         a-numaux-darwin.ads, a-numaux-darwin.adb,
3881         a-swuwha.ads, a-stunha.ads: Minor reformatting
3883 2005-11-14  Robert Dewar  <dewar@adacore.com>
3885         PR ada/18434
3886         * osint-m.adb: Add pragma Elaborate_All for Osint
3888 2005-11-10  Eric Botcazou  <ebotcazou@adacore.com>
3890         PR ada/23995
3891         * trans.c (call_to_gnu): Restore statement lost in translation.
3893 2005-11-08  Eric Botcazou  <ebotcazou@adacore.com>
3895         * init.c: Use the Linux-specific section for the IA-64/Linux target.
3896         (__gnat_adjust_context_for_raise): Add conditional code so that the
3897         IA-64 is also supported.
3899 2005-11-03  James E Wilson  <wilson@specifix.com>
3901         PR ada/23427
3902         * trans.c (gnat_to_gnu): Use TYPE_SIZE_UNIT not TYPE_SIZE in
3903         TREE_OVERFLOW check.
3905 2005-09-21  Olivier Hainque  <hainque@adacore.com>
3907         PR ada/22418
3908         * decl.c (maybe_pad_type): Use proper bitsizetype for XVZ objects,
3909         as we create them to store a size in bits.
3911 2005-10-21  Eric Botcazou  <ebotcazou@adacore.com>
3913         PR ada/21937
3914         PR ada/22328
3915         PR ada/22381
3916         PR ada/22383
3917         PR ada/22419
3918         PR ada/22420
3919         * utils2.c (build_return_expr): New helper function.
3920         * gigi.h (build_return_expr): Declare it.
3921         * trans.c (Subprogram_Body_to_gnu): Use build_return_expr instead
3922         of manually building the RETURN_EXPR tree.
3923         (call_to_gnu): Pass MODIFY_EXPR through build_binary_op.
3924         (gnat_to_gnu) <N_Return_Statement>: Pass MODIFY_EXPR through
3925         build_binary_op for the "target pointer" case.  Use build_return_expr
3926         instead of manually building the RETURN_EXPR tree.
3928 2005-09-16  Laurent GUERBY  <laurent@guerby.net>
3930         PR ada/23788
3931         * s-tpinop.ads: Make this unit Preelaborate.
3933 2005-09-16  Andreas Jaeger  <aj@suse.de>
3935         * socket.c: Add string.h for memcpy.
3937 2005-09-05  Arnaud Charlet  <charlet@adacore.com>
3939         * dec-io.ads, dec-io.adb: Removed, no longer used.
3941 2005-09-01  Arnaud Charlet  <charlet@adacore.com>
3943         * a-calend-mingw.adb: Add call to OS_Primitives.Initialize;
3945         * s-taprop-mingw.adb, s-taprop-vms.adb, s-taprop-solaris.adb,
3946         s-taprop-os2.adb, s-taprop-irix-athread.adb, s-taprop-linux.adb,
3947         s-taprop-hpux-dce.adb, s-taprop-irix.adb, s-taprop-tru64.adb,
3948         s-taprop-lynxos.adb: Move with clauses outside Warnings Off now that
3949         dependent units are Preelaborate.
3950         (Initialize): Call Interrupt_Managemeent.Initialize and
3951         OS_Primitives.Initialize to ensure proper initialization of this unit.
3952         Remove use of System.Soft_Links
3953         Make this unit Preelaborate.
3955         * s-stache.ads, s-taspri-vxworks.ads, s-taspri-mingw.ads,
3956         s-taspri-vms.ads, s-tasinf-solaris.ads, s-taspri-os2.ads,
3957         s-taspri-lynxos.ads, s-taspri-hpux-dce.ads, s-taspri-tru64.ads,
3958         s-tasinf-tru64.ads, s-tasinf-irix.ads, s-tasinf-irix-athread.ads,
3959         s-proinf-irix-athread.adb, s-proinf-irix-athread.ads,
3960         s-tratas.ads, s-tasinf.ads: Minor reformatting.
3961         Add pragma Preelaborate, since these packages are suitable for this
3962         categorization.
3963         Update comments.
3965         * s-traent-vms.ads, s-intman-dummy.adb,
3966         s-taprop-dummy.adb: Make this unit Preelaborate.
3968         * s-osprim-vxworks.adb, s-osprim-vms.adb, s-osprim-vms.ads,
3969         s-osprim-mingw.adb, s-intman-vxworks.ads, s-intman-vxworks.adb,
3970         s-intman-vms.adb, s-intman-mingw.adb, s-intman-vms.ads,
3971         s-osprim-unix.adb, s-osprim-os2.adb, s-osprim-solaris.adb,
3972         s-intman-solaris.adb, s-intman-irix-athread.adb,
3973         s-intman-irix.adb: Mark this unit Preelaborate.
3974         (Initialize): New procedure.
3975         Update comments.
3977         * s-taspri-linux.ads: Removed.
3979         * s-tpopsp-solaris.adb (Initialize): Create the key in this procedure,
3980         as done by other implementations (e.g. posix).
3982         * s-taprop.ads (Timed_Delay): Update spec since the caller now is
3983         responsible for deferring abort.
3984         Mark this unit Preelaborate.
3986         * s-taprob.adb, s-tarest.adb: Call System.Tasking.Initialize to ensure
3987         proper initialization of the tasking run-time.
3989         * s-tasdeb.ads: Mark this unit Preelaborate.
3990         (Known_Tasks): Add explicit default value to avoid elaboration code.
3992         * s-inmaop-vms.adb (Elaboration code): Add call to
3993         Interrupt_Management.Initialize since the elaboration code depends on
3994         proper initialization of this package.
3996         * s-intman.ads, s-inmaop-posix.adb, s-intman-posix.adb,
3997         s-osprim.ads, s-taprop-posix.adb, s-taspri-posix.ads,
3998         s-osprim-posix.adb: Make this unit Preelaborate.
4000         * a-calend.adb: Add call to OS_Primitives.Initialize
4002         * a-elchha.adb: Update use of Except.Id.Full_Name.
4003         Minor reformatting.
4004         Remove use of Ada.Exceptions.Traceback when possible, cleaner.
4006         * a-dynpri.adb, a-sytaco.adb, a-sytaco.ads:
4007         Move with clauses outside Warnings Off now that dependent units are
4008         Preelaborate.
4009         Use raise xxx with "..."; Ada 2005 form.
4011         * a-taside.ads, a-taside.adb:
4012         Remove some dependencies, to make it easier to make this unit truly
4013         Preelaborate.
4014         Rewrite some code to be conformant with Preelaborate rules.
4016         * g-os_lib.adb: Remove non-preelaborate code so that this unit can be
4017         marked Preelaborate in the future.
4019         * s-proinf.ads, g-string.ads, s-auxdec.ads, s-auxdec-vms_64.ads: Make
4020         these units Preelaborate.
4022         * s-exctab.adb: Update use of Except.Id.Full_Name.
4024         * s-soflin.ads, s-soflin.adb: Mark this unit Preelaborate_05.
4025         (Set_Exc_Stack_Addr_Soft, Get_Exc_Stack_Addr_NT, Set_Exc_Stack_Addr_NT,
4026         Set_Exc_Stack_Addr): Removed, no longer used.
4027         Remove reference to *Machine_State_Addr*, no longer needed.
4029         * s-stalib.ads: Mark this unit as Preelaborate[_05].
4030         (Exception_Data): Full_Name is now a System.Address so that this unit
4031         can be made Preelaborate.
4032         Clean up/simplify code thanks to Full_Name being a System.Address.
4033         Remove obsolete pragma Suppress (All_Checks), no longer needed.
4035         * s-taskin.ads, s-taskin.adb:
4036         Move with clauses outside Warnings Off now that dependent units are
4037         Preelaborate.
4038         Make this unit Preelaborate.
4039         (Initialize): New proceduure, replace elaboration code and makes the
4040         set up of the tasking run-time cleaner.
4041         (Detect_Blocking): Now a function instead of a deferred boolean, to
4042         obey Preelaborate rules.
4044         * s-tassta.adb (Finalize_Global_Tasks): Remove Get/Set_Exc_Stack_Addr
4045         soft links, no longer used.
4047         * s-traces.ads, s-traent.ads: Add pragma Preelaborate, since these
4048         packages are suitable for this categorization.
4050         * s-solita.adb: Replace use of Ada.Exception by raise xxx with "..."
4051         since we compile run-time sources in Ada 2005 mode.
4052         (Timed_Delay_T): Call Abort_Defer/Undefer around Timed_Delay, to
4053         avoid having s-taprop*.adb depend on s-soflin and to avoid code
4054         duplication.
4055         Remove reference to *Machine_State_Addr*, no longer needed.
4057 2005-09-01  Arnaud Charlet  <charlet@adacore.com>
4059         * s-mastop-tru64.adb, s-mastop-irix.adb, s-mastop-vms.adb
4060         (Enter_Handler, Set_Signal_Machine_State): Removed, no longer used.
4061         Remove reference to System.Exceptions.
4063         * s-mastop-x86.adb: Removed, no longer used.
4065         * s-traceb-mastop.adb: Adjust calls to Pop_Frame.
4067         * a-excach.adb: Minor reformatting.
4069         * a-except.ads, a-except.adb: Remove global Warnings (Off) pragma, and
4070         instead fix new warnings that were hidden by this change.
4071         (AAA, ZZZ): Removed, replaced by...
4072         (Code_Address_For_AAA, Code_Address_For_ZZZ): ... these functions, who
4073         are used instead of constants, to help make Ada.Exception truly
4074         preelaborate.
4075         (Rcheck_*, Raise_Constraint_Error, Raise_Program_Error,
4076         Raise_Storage_Error): File is now a System.Address, to simplify code.
4077         (Elab code): Removed, no longer used.
4078         (Null_Occurrence): Remove Warnings Off and make this construct
4079         preelaborate.
4080         Remove code related to front-end zero cost exception handling, since
4081         it is no longer used.
4082         Remove -gnatL/-gnatZ switches.
4084         * a-exexda.adb (Append_Info_Exception_Name, Set_Exception_C_Msg):
4085         Update use of Except.Msg.
4087         * gnat1drv.adb, inline.adb, bindgen.adb, debug.adb, exp_ch11.ads,
4088         freeze.adb, frontend.adb, lib.adb, exp_ch11.adb: Remove code related
4089         to front-end zero cost exception handling, since it is no longer used.
4090         Remove -gnatL/-gnatZ switches.
4092         * lib-writ.ads: Minor reformatting
4093         Remove doc of UX
4095         * Makefile.rtl: Remove references to s-except*, s-mastop-x86*
4097         * Make-lang.in: Remove references to s-except.ads
4099         * s-except.ads: Removed, no longer used.
4101         * s-mastop.ads, s-mastop.adb:
4102         (Enter_Handler, Set_Signal_Machine_State): Removed, no longer used.
4103         Remove reference to System.Exceptions.
4105         * raise.h, usage.adb, targparm.adb, targparm.ads, switch-m.adb,
4106         switch-b.adb: Remove code related to front-end zero cost exception
4107         handling, since it is no longer used.
4108         Remove -gnatL/-gnatZ switches.
4110 2005-09-01  Robert Dewar  <dewar@adacore.com>
4111             Gary Dismukes  <dismukes@adacore.com>
4112             Javier Miranda  <miranda@adacore.com>
4114         * exp_ch4.adb (Expand_N_In): Replace test of expression in its own
4115         type by valid test and generate warning.
4116         (Tagged_Membership): Generate call to the run-time
4117         subprogram IW_Membership in case of "Iface_CW_Typ in Typ'Class"
4118         Change formal name Subtype_Mark to Result_Definition in several calls to
4119         Make_Function_Specification.
4120         (Expand_Allocator_Expression): Add tests for suppression of the AI-344
4121         check for proper accessibility of the operand of a class-wide allocator.
4122         The check can be left out if checks are suppressed or if the expression
4123         has a specific tagged type whose level is known to be safe.
4125         * exp_ch5.adb (Expand_N_Assignment_Statement): Simplify the code that
4126         generates the run-time check associated with null-excluding entities.
4127         (Expand_N_Return_Statement): Add tests to determine if the accessibility
4128         check on the level of the return expression of a class-wide function
4129         can be elided. The check usually isn't needed if the expression has a
4130         specific type (unless it's a conversion or a formal parameter). Also
4131         add a test for whether accessibility checks are suppressed. Augment
4132         the comments to describe the conditions for performing the check.
4134 2005-09-01  Hristian Kirtchev  <kirtchev@adacore.com>
4135             Javier Miranda  <miranda@adacore.com>
4136             Gary Dismukes  <dismukes@adacore.com>
4137             Ed Schonberg  <schonberg@adacore.com>
4139         * a-tags.adb (IW_Membership): Give support to
4140         "Iface_CW_Typ in T'Class". For this purpose the functionality of this
4141         subprogram has been extended to look for the tag in the ancestors tag
4142         table.
4143         Update the structure of the GNAT Dispatch Table to reflect the
4144         additional two tables used in dispatching selects.
4145         Introduce appropriate array types and record components in
4146         Type_Specific_Data to reflect the two tables.
4147         (Get_Entry_Index, Set_Entry_Index): Retrieve and set the entry index in
4148         the TSD of a tag, indexed by position.
4149         (Get_Prim_Op_Kind, Set_Prim_Op_Kind): Retrieve and set the primitive
4150         operation kind in the TSD of a tag, indexed by position.
4152         * a-tags.ads: Introduce an enumeration type to capture different
4153         primitive operation kinds. Define a constant reflecting the number of
4154         predefined primitive operations.
4155         (Get_Entry_Index, Set_Entry_Index): Set and retrieve the entry index
4156         of an entry wrapper.
4157         (Get_Prim_Op_Kind, Set_Prim_Op_Kind): Set and retrieve the kind of
4158         callable entity of a primitive operation.
4160         * exp_ch3.adb (Freeze_Record_Type): Generate the declarations of the
4161         primitive operations used in dispatching selects for limited
4162         interfaces, limited tagged, task and protected types what implement a
4163         limited interface.
4164         (Freeze_Type): Generate the bodies of the primitive operations used in
4165         dispatching selects for limited tagged, task and protected types that
4166         implement a limited interface. Generate statements to populate the two
4167         auxiliary tables used for dispatching in select statements.
4168         (Freeze_Record_Type): Add call to initialize the dispatch table entries
4169         associated with predefined interface primitive operations.
4170         (Build_Dcheck_Function): Change Set_Subtype_Mark to
4171         Set_Result_Definition.
4172         (Build_Variant_Record_Equality): Change Subtype_Mark to
4173         Result_Definition.
4174         (Freeze_Enumeration_Type): Change Subtype_Mark to Result_Definition.
4175         (Predef_Spec_Or_Body): Change Subtype_Mark to Result_Definition.
4176         (Build_Assignment): Simplify the code that adds the run-time-check.
4177         (Expand_N_Object_Declaration): Code cleanup.
4179         * exp_ch7.adb (Make_Clean): Select the appropriate type for locking
4180         entries when there is a protected type that implements a limited
4181         interface.
4183         * exp_ch9.adb: Add package Select_Expansion_Utilities that contains
4184         common routines used in expansion of dispatching selects.
4185         (Add_Private_Declarations): Select the appropriate protection type when
4186         there is a protected type that implements a limited interface.
4187         (Build_Parameter_Block): Generate a wrapped parameter block.
4188         (Build_Protected_Subprogram_Body): Select the appropriate type for
4189         locking entries when there is a protected type that implements a
4190         limited interface.
4191         (Build_Wrapper_Spec): Set the flag and wrapped entity for procedures
4192         classified as entry wrappers.
4193         (Expand_N_Asynchronous_Select): Add support for expansion of dispatching
4194         asynchronous selects.
4195         (Expand_N_Conditional_Entry_Call): Add support for expansion of
4196         dispatching conditional selects.
4197         (Expand_N_Protected_Type_Declaration): Select the appropriate type for
4198         protection when there is a protected type that implements limited
4199         interfaces.
4200         (Expand_N_Timed_Entry_Call): Add support for expansion of dispatching
4201         timed selects.
4202         (Extract_Dispatching_Call): Extract the entity of the name of a
4203         dispatching call, the object parameter, actual parameters and
4204         corresponding formals.
4205         (Make_Initialize_Protection): Correct logic of protection initialization
4206         when there is a protected type that implements a limited interface.
4207         (Parameter_Block_Pack): Populate a wrapped parameter block with the
4208         values of actual parameters.
4209         (Parameter_Block_Unpack): Retrieve the values from a wrapped parameter
4210         block and assign them to the original actual parameters.
4212         * exp_ch9.ads (Subprogram_Protection_Mode): New type.
4213         (Build_Protected_Sub_Specification): Change the type and name of the
4214         last formal to account for the increased variety of protection modes.
4216         * einfo.ads, einfo.adb (Was_Hidden): New attribute. Present in all
4217         entities. Used to save the value of the Is_Hidden attribute when the
4218         limited-view is installed.
4219         (Is_Primitive_Wrapper, Set_Is_Primitive_Wrapper): Retrieve and change
4220         the attribute of procedures classified as entry wrappers.
4221         (Wrapped_Entity, Set_Wrapped_Entity): Retrieve and change the wrapped
4222         entity of a primitive wrapper.
4223         (Write_Entity_Flags): Output the name and value of the
4224         Is_Primitive_Wrapper attribute.
4225         (Write_Field27_Name): Output the name and entity of the field Wrapped_
4226         Entity.
4227         (Underlying_Type): If we have an incomplete entity that comes from
4228         the limited view then we return the Underlying_Type of its non-limited
4229         view if it is already available.
4230         (Abstract_Interface_Alias): Flag applies to all subrogram kinds,
4231         including operators.
4232         (Write_Field26_Name): Add entry for Overridden_Operation
4233         (Overridden_Operation): New attribute of functions and procedures.
4235         * exp_disp.ads, exp_disp.adb (Default_Prim_Op_Position): Return a
4236         predefined position in the dispatch table for the primitive operations
4237         used in dispatching selects.
4238         (Init_Predefined_Interface_Primitives): Remove the hardcoded number of
4239         predefined primitive operations and replace it with
4240         Default_Prim_Op_Count.
4241         (Make_Disp_Asynchronous_Select_Spec, Make_Disp_Conditional_Select_Spec,
4242         Make_Disp_Get_Prim_Op_Kind_Spec, Make_Disp_Timed_Select_Spec): Update
4243         the names of the generated primitive operations used in dispatching
4244         selects.
4245         (Init_Predefined_Interface_Primitives): No need to inherit primitives in
4246         case of abstract interface types. They will be inherit by the objects
4247         implementing the interface.
4248         (Make_DT): There is no need to inherit the dispatch table of the
4249         ancestor interface for the elaboration of abstract interface types.
4250         The dispatch table will be inherited by the object implementing the
4251         interface.
4252         (Copy_Secondary_DTs): Add documentation.
4253         (Validate_Position): Improve this static check in case of
4254         aliased subprograms because aliased subprograms must have
4255         the same position.
4256         (Init_Predefined_Interface_Primitives): New subprogram that initializes
4257         the entries associated with predefined primitives of all the secondary
4258         dispatch tables.
4259         (Build_Anonymous_Access_Type): Removed.
4260         (Expand_Interface_Actuals): With the previous cleanup there is no need
4261         to build an anonymous access type. This allows further cleanup in the
4262         code generated by the expander.
4263         (Expand_Interface_Conversion): If the actual is an access type then
4264         build an internal function to handle the displacement. If the actual
4265         is null this function returns null because no displacement is
4266         required; otherwise performs a type conversion that will be
4267         expanded in the code that returns the value of the displaced actual.
4268         (Expand_Interface_Actuals): Avoid the generation of unnecessary type
4269         conversions that have no effect in the generated code because no
4270         displacement is required. Code cleanup; use local variables to
4271         avoid repeated calls to the subprogram directly_designated_type().
4273         * exp_util.ads, exp_util.adb (Is_Predefined_Dispatching_Operation):
4274         Classify the primitive operations used in dispatching selects as
4275         predefined.
4276         (Implements_Limited_Interface): Determine whether some type either
4277         directly implements a limited interface or extends a type that
4278         implements a limited interface.
4279         (Build_Task_Image_Function): Change Subtype_Mark to Result_Definition.
4280         (Expand_Subtype_From_Expr): Do not build actual subtype if the
4281         expression is limited.
4282         (Find_Interface_Tag): Add code to handle class-wide types and
4283         entities from the limited-view.
4285         * rtsfind.ads: Add entries in RE_Id and RE_Unit_Table for
4286         Get_Entry_Index, Get_Prim_Op_Kind, POK_Function, POK_Procedure,
4287         POK_Protected_Entry, POK_Protected_Function, POK_Protected_Procedure,
4288         POK_Task_Entry, POK_Task_Procedure, Prim_Op_Kind, Set_Entry_Index,
4289         Set_Prim_Op_Kind.
4291         * sem_ch9.adb (Analyze_Triggering_Alternative): Check for legal type
4292         of procedure name or prefix that appears as a trigger in a triggering
4293         alternative.
4295         * uintp.ads: Introduce constants Uint_11 and Uint_13.
4297 2005-09-01  Arnaud Charlet  <charlet@adacore.com>
4299         * s-tataat.adb, a-tasatt.adb:
4300         Replace calls to Defer/Undefer_Abortion by Defer/Undefer_Abort.
4302         * s-tasini.ads, s-tasini.adb (Defer_Abortion, Undefer_Abortion): Moved
4303         these procedures to body, and renamed Abort_Defer, Abort_Undefer.
4304         (Get_Exc_Stack_Addr, Set_Exc_Stack_Addr): Removed, no
4305         longer used.
4307 2005-09-01  Arnaud Charlet  <charlet@adacore.com>
4308             Jose Ruiz  <ruiz@adacore.com>
4310         * s-taprop-vxworks.adb:
4311         Move with clauses outside Warnings Off now that dependent units are
4312         Preelaborate.
4313         (Initialize): Call Interrupt_Managemeent.Initialize to ensure proper
4314         initialization of this unit.
4315         (Specific): Add new procedures Initialize and Delete so that this
4316         package can be used for VxWorks 5.x and 6.x
4317         (ATCB_Key, ATCB_Key_Address): Moved to Specific package body to hide
4318         differences between VxWorks 5.x and 6.x
4319         Minor reformatting.
4320         (Timed_Delay): Remove calls to Defer/Undefer_Abort, now performed by
4321         caller.
4322         Use only Preelaborate-compatible constructs.
4324         * s-tpopsp-vxworks.adb (ATBC_Key, ATCB_Key_Addr): Moved from
4325         Primitives.Operations.
4326         (Delete, Initialize): New procedures.
4328         * s-osinte-vxworks.adb: Body used to handle differences between
4329         VxWorks 5.x and 6.x
4330         (kill, Set_Time_Slice, VX_FP_TASK): New functions.
4332         * s-osinte-vxworks.ads: Minor reformatting.
4333         Add VxWworks 6.x specific functions (only called from VxWorks 6 files).
4334         (VX_FP_TASK): Now a function, to handle differences between VxWorks 5
4335         and 6.
4336         (Set_Time_Slice): New function, replacing kerneltimeSlice to share code
4337         between Vxworks 5 and 6.
4338         (taskLock, taskUnlock): Removeed, no longer used.
4340         * adaint.c: The wait.h header is not located in the sys directory on
4341         VxWorks when using RTPs.
4342         (__gnat_set_env_value): Use setenv instead of putenv on VxWorks when
4343         using RTPs.
4344         (__gnat_dup): dup is available on Vxworks when using RTPs.
4345         (__gnat_dup2): dup2 is available on Vxworks when using RTPs.
4347         * cal.c: Use the header time.h for Vxworks 6.0 when using RTPs.
4349         * expect.c: The wait.h header is not located in the sys directory on
4350         VxWorks when using RTPs.
4352 2005-09-01  Thomas Quinot  <quinot@adacore.com>
4354         * g-soccon-vms.adb: Renamed to g-soccon-vms.ads
4356         * g-soccon-vms.ads: Renamed from g-soccon-vms.adb
4358         * g-soccon.ads, g-soccon-tru64.ads, g-soccon-aix.ads,
4359         g-soccon-darwin.ads, g-soccon-irix.ads, g-soccon-hpux.ads,
4360         g-soccon-solaris.ads, g-soccon-mingw.ads, g-soccon-vxworks.ads,
4361         g-soccon-freebsd.ads: Add new constants:
4362          IP_MULTICAST_IF
4363          SO_RCVTIMEO/SO_SNDTIMEO
4364          IOV_MAX
4366         * gen-soccon.c:
4367         Move all target-specific file inclusions and macro definitions to
4368         gsocket.h, in order to ensure that any C code in socket.c will see a
4369         set of constants that is consistent with the contents of g-soccon.ads.
4371         * gsocket.h: Code imported from gen-soccon.c:
4372         Move all target-specific file inclusions and macro definitions to
4373         gsocket.h, in order to ensure that any C code in socket.c will see a set
4374         of constants that is consistent with the contents of g-soccon.ads.
4375         This change also makes gen-soccon self-contained (removing dependencies
4376         upon GCC internal headers).
4378         * g-socket.adb (Send_Vector): Make calls to Writev at most IOV_MAX
4379         iovecs at a time.
4380         (To_Inet_Addr): Now a procedure instead of a function, more efficient.
4382         * socket.c: Minor reformatting.
4384 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4385             Thomas Quinot  <quinot@adacore.com>
4387         * fname-sf.adb, mlib-tgt.ads,
4388         back_end.adb, casing.adb, g-debpoo.adb, g-excact.adb, g-spipat.adb,
4389         g-spipat.ads, g-thread.adb, lib-list.adb, makeutl.adb, mlib.adb,
4390         osint.adb, par-ch10.adb, par-load.adb, prep.adb, prj.adb, prj-attr.ads,
4391         prj-env.ads, prj-err.adb, prj-err.ads, prj-ext.adb, prj-ext.ads,
4392         prj-makr.adb, prj-makr.ads, prj-pars.ads, prj-part.adb, prj-strt.adb,
4393         prj-tree.ads, prj-util.ads, sem_dist.adb, sinput-c.ads, sinput-l.ads,
4394         sinput-p.ads, styleg-c.ads, xr_tabls.adb, prj-attr-pm.ads,
4395         makegpr.adb: Remove redundant use_clauses.
4397 2005-09-01  Arnaud Charlet  <charlet@adacore.com>
4399         * s-stoele.ads, s-stopoo.ads, s-stratt.ads, s-strops.ads, s-unstyp.ads,
4400         s-valboo.ads, s-valcha.ads, s-valdec.ads, s-valenu.ads, s-valint.ads,
4401         s-vallld.ads, s-vallli.ads, s-valllu.ads, s-valrea.ads, s-valuns.ads,
4402         s-valuti.ads, s-valwch.ads, s-veboop.ads, s-vector.ads, s-vercon.ads,
4403         s-wchcnv.ads, s-wchcon.ads, s-wchjis.ads, s-wchstw.ads, s-wchwts.ads,
4404         s-widboo.ads, s-widcha.ads, s-widenu.ads, s-widlli.ads, s-widllu.ads,
4405         s-widwch.ads, s-wwdcha.ads, s-wwdenu.ads, s-wwdwch.ads, system.ads,
4406         table.ads, types.ads, system-vms_64.ads, s-crtl-vms64.ads,
4407         s-addope.ads, system-darwin-ppc.ads, system-vxworks-x86.ads,
4408         s-vxwork-x86.ads, system-linux-ppc.ads, i-vxwork-x86.ads,
4409         a-numaux-darwin.ads, a-crbtgo.ads, a-crbtgk.ads, a-crbltr.ads,
4410         a-coprnu.ads, a-convec.ads, a-contai.ads, a-coinve.ads, a-cohata.ads,
4411         a-cohama.ads, a-cihama.ads, a-cidlli.ads, a-cdlili.ads,
4412         a-numaux-libc-x86.ads, a-numaux-vxworks.ads, system-linux-ia64.ads,
4413         system-freebsd-x86.ads, system-unixware.ads, system-lynxos-ppc.ads,
4414         system-lynxos-x86.ads, system-linux-x86_64.ads, system-tru64.ads,
4415         s-vxwork-alpha.ads, system-aix.ads, system-vxworks-sparcv9.ads,
4416         system-solaris-x86.ads, system-irix-o32.ads, system-irix-n32.ads,
4417         s-parame-hpux.ads, system-hpux.ads, system-vxworks-m68k.ads,
4418         s-vxwork-m68k.ads, system-linux-x86.ads, system-vxworks-mips.ads,
4419         s-vxwork-mips.ads, system-os2.ads, system-interix.ads,
4420         s-vxwork-ppc.ads, system-solaris-sparc.ads, s-vxwork-sparcv9.ads,
4421         system-solaris-sparcv9.ads, s-parame-vms.ads, system-vms.ads,
4422         s-osinte-mingw.ads, system-mingw.ads, s-parame-vms-restrict.ads,
4423         system-vms-zcx.ads, s-parame-ae653.ads, system-vxworks-ppc.ads,
4424         s-parame-vxworks.ads, system-vxworks-alpha.ads, interfac-vms.ads,
4425         a-numaux-x86.ads, a-astaco.ads, a-chahan.ads, a-charac.ads,
4426         a-chlat1.ads, a-chlat9.ads, a-colire.adb, a-colire.ads, a-comlin.ads,
4427         a-cwila1.ads, a-cwila9.ads, ada.ads, a-decima.ads, a-exextr.adb,
4428         a-filico.ads, a-finali.ads, a-interr.ads, a-ioexce.ads, a-dynpri.ads,
4429         a-ngcefu.ads, a-ngcefu.adb, a-ngcoty.adb, a-ngcoty.ads, a-ngelfu.ads,
4430         a-nudira.adb, a-nudira.ads, a-nuflra.adb, a-numaux.ads, a-numeri.ads,
4431         a-reatim.adb, a-stmaco.ads, a-storio.ads, a-strbou.ads, a-stream.ads,
4432         a-strfix.ads, a-string.ads, a-strmap.ads, a-strsea.ads, a-strsup.ads,
4433         a-strunb.ads, a-stunau.ads, a-stwibo.ads, a-stwifi.ads, a-stwima.ads,
4434         a-stwise.ads, a-stwisu.ads, a-stwiun.ads, a-swmwco.ads, a-textio.ads,
4435         csets.ads, debug.ads, dec.ads, g-curexc.ads, get_targ.ads,
4436         g-except.ads, system-linux-hppa.ads, a-chacon.ads, a-widcha.ads,
4437         a-zchara.ads, system-hpux-ia64.ads, a-ciorma.ads, a-coorma.ads,
4438         a-ciormu.ads, a-coormu.ads, a-rbtgso.ads, a-chzla1.ads, a-chzla9.ads,
4439         a-stzbou.ads, a-stzfix.ads, a-stzmap.ads, a-stzsea.ads, a-stzsup.ads,
4440         a-stzunb.ads, a-swunau.ads, a-szunau.ads, gnat.ads, g-regpat.ads,
4441         g-speche.ads, g-spitbo.ads, g-table.ads, g-tasloc.ads, g-trasym.ads,
4442         i-c.ads, i-cpoint.ads, i-cpp.ads, i-cstrin.ads, i-fortra.ads,
4443         interfac.ads, i-os2err.ads, i-os2lib.ads, i-os2syn.ads, i-os2thr.ads,
4444         i-vxwork.ads, output.ads, s-arit64.ads, s-atacco.ads, s-boarop.ads,
4445         s-casuti.ads, s-crtl.ads, s-exctab.ads, s-exnint.ads, s-exnllf.ads,
4446         s-exnlli.ads, s-expint.ads, s-explli.ads, s-expllu.ads, s-expmod.ads,
4447         s-expuns.ads, s-fatflt.ads, s-fatgen.ads, s-fatlfl.ads, s-fatllf.ads,
4448         s-fatsfl.ads, s-finimp.ads, s-finroo.ads, s-fore.ads, s-geveop.ads,
4449         s-htable.ads, s-imgbiu.ads, s-imgboo.ads, s-imgcha.ads, s-imgdec.ads,
4450         s-imgenu.ads, s-imgint.ads, s-imgllb.ads, s-imglld.ads, s-imglli.ads,
4451         s-imgllu.ads, s-imgllw.ads, s-imgrea.ads, s-imguns.ads, s-imgwch.ads,
4452         s-imgwiu.ads, s-io.ads, s-maccod.ads, s-mantis.ads, s-memcop.ads,
4453         s-pack03.ads, s-pack05.ads, s-pack06.ads, s-pack07.ads, s-pack09.ads,
4454         s-pack10.ads, s-pack11.ads, s-pack12.ads, s-pack13.ads, s-pack14.ads,
4455         s-pack15.ads, s-pack17.ads, s-pack18.ads, s-pack19.ads, s-pack20.ads,
4456         s-pack21.ads, s-pack22.ads, s-pack23.ads, s-pack24.ads, s-pack25.ads,
4457         s-pack26.ads, s-pack27.ads, s-pack28.ads, s-pack29.ads, s-pack30.ads,
4458         s-pack31.ads, s-pack33.ads, s-pack34.ads, s-pack35.ads, s-pack36.ads,
4459         s-pack37.ads, s-pack38.ads, s-pack39.ads, s-pack40.ads, s-pack41.ads,
4460         s-pack42.ads, s-pack43.ads, s-pack44.ads, s-pack45.ads, s-pack46.ads,
4461         s-pack47.ads, s-pack48.ads, s-pack49.ads, s-pack50.ads, s-pack51.ads,
4462         s-pack52.ads, s-pack53.ads, s-pack54.ads, s-pack55.ads, s-pack56.ads,
4463         s-pack57.ads, s-pack58.ads, s-pack59.ads, s-pack60.ads, s-pack61.ads,
4464         s-pack62.ads, s-pack63.ads, s-parame.ads, s-pooglo.ads, s-pooloc.ads,
4465         s-poosiz.ads, s-powtab.ads, s-purexc.ads, s-sopco3.ads, s-sopco4.ads,
4466         s-sopco5.ads: Minor reformatting: reindent pragma Pure/Preelaborate
4467         and always use the no parameter form for consistency.
4469         * gnat-style.texi: Document rules about Preelaborate/Pure pragmas.
4471 2005-09-01  Robert Dewar  <dewar@adacore.com>
4473         * binde.adb: Minor reformatting
4474         (Find_Elab_Order): Output warning if -p used with static elab order
4476 2005-09-01  Robert Dewar  <dewar@adacore.com>
4478         * checks.adb (Check_Needed): New procedure, deals with removing checks
4479         based on analysis of short-circuited forms. Also generates warnings for
4480         improper use of non-short-circuited forms.
4481         Code clean ups.
4483 2005-09-01  Robert Dewar  <dewar@adacore.com>
4485         * a-ztexio.adb, a-textio.adb, a-witeio.adb: Replace bad range checks
4486         with 'Valid tests.
4488 2005-09-01  Robert Dewar  <dewar@adacore.com>
4490         * errout.ads, errout.adb (Fix Error_Msg_F): Fix implementation to meet
4491         spec.
4492         Implement new insertion char < (conditional warning)
4493         * errutil.adb, erroutc.adb: Implement new insertion char <
4494         (conditional warning).
4495         * sem_elab.adb, prj-dect.adb, erroutc.ads, err_vars.ads
4496         (Error_Msg_Warn): New variable for < insertion char.
4497         * prj-nmsc.adb: Implement new errout insertion char < (conditional
4498         warning).
4499         (Check_For_Source): Change value of Source_Id only after the current
4500         source has been dealt with.
4502 2005-09-01  Robert Dewar  <dewar@adacore.com>
4503             Doug Rupp  <rupp@adacore.com>
4505         * exp_attr.adb: Handle vax fpt for 'Valid attribute
4506         * exp_vfpt.ads, exp_vfpt.adb: (Expand_Vax_Valid): New procedure
4507         * s-vaflop-vms-alpha.adb, s-vaflop.ads, s-vaflop.adb
4508         (Valid_D, Valid_F, Valid_G): New functions
4510 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4511             Hristian Kirtchev  <kirtchev@adacore.com>
4512             Javier Miranda  <miranda@adacore.com>
4514         * exp_ch6.adb (Expand_Call): If an actual is a function call rewritten
4515         from object notation, the original node is unanalyzed and carries no
4516         semantic information, so that accessiblity checks must be performed on
4517         the type of the actual itself.
4518         (Expand_N_Subprogram_Declaration): Change last actual parameter for
4519         compatibility with Build_Protected_Sub_Specification.
4520         (Check_Overriding_Inherited_Interfaces): Add suport to handle
4521         overloaded primitives.
4522         (Register_Interface_DT_Entry): Use the new name of the formal
4523         the the calls to Expand_Interface_Thunk
4525         * exp_dbug.ads: Augment comments on encoding of protected types to
4526         include the generation of dispatching subprograms when the type
4527         implements at least one interface.
4529         * lib.ads: Extend information in Load_Stack to include whether a given
4530         load comes from a Limited_With_Clause.
4532         * lib-load.adb (From_Limited_With_Chain): New predicate to determine
4533         whether a potential circularity is harmless, because it includes units
4534         loaded through a limited_with clause. Extends previous treatment which
4535         did not handle properly arbitrary combinations of limited and
4536         non-limited clauses.
4538 2005-09-01  Nicolas Setton  <setton@adacore.com>
4540         * exp_dbug.adb (Get_Encoded_Name): Fixed bug that caused biaised types
4541         to be encoded as typ___XBLU_lowerbound__upperbound instead of
4542         typ___XB_lowerbound__upperbound.
4544 2005-09-01  Thomas Quinot  <quinot@adacore.com>
4546         * exp_dist.adb (Add_RACW_TypeCode, Add_RAS_TypeCode): Do not generate
4547         dummy access formal for RACW/RAS TypeCode TSS.
4548         (Build_TypeCode_Call): Do not generate dummy null access actual for
4549         calls to the TypeCode TSS.
4551 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4553         * exp_intr.adb (Expand_Source_Name): For Enclosing_Entity, generate
4554         fully qualified name, to distinguish instances with the same local name.
4556         * g-souinf.ads (Enclosing_Entity): Document that entity name is now
4557         fully qualified.
4559 2005-09-01  Robert Dewar  <dewar@adacore.com>
4561         * exp_pakd.adb (Create_Packed_Array_Type): Properly handle very large
4562         packed arrays.
4564 2005-09-01  Jerome Lambourg  <lambourg@adacore.com>
4566         * g-expect.adb (Non_Blocking_Spawn): Initialize the filters field to
4567         (Free): New deallocation procedure for filter elements
4568         (Close): Deallocate any existing filter for the concerned connection
4570 2005-09-01  Laurent Pautet  <pautet@adacore.com>
4572         * g-pehage.ads, g-pehage.adb (Select_Char_Position): When no character
4573         position set is provided, we compute one in order to reduce the maximum
4574         length of the keys.  This computation first selects a character
4575         position between 1 and the minimum length of the keys in order to
4576         avoid reducing one of the keys to an empty string.
4577         (Initialize, Compute): When the ratio V to K is too low, the algorithm
4578         does not converge. The initialization procedure now comes with a
4579         maximum number of iterations such that when exceeded, an exception is
4580         raised in Compute. The user can initialize this ratio to another value
4581         and try again
4582         Reformating and updated headers.
4584 2005-09-01  Javier Miranda  <miranda@adacore.com>
4586         * itypes.ads, itypes.adb (Create_Null_Excluding_Itype): New subprogram
4587         that given an entity T creates and returns an Itype that duplicates the
4588         contents of T. The returned Itype has the null-exclusion
4589         attribute set to True, and its Etype attribute references T
4590         to keep the association between the two entities.
4591         Update copyright notice
4593         * sem_aggr.adb (Check_Can_Never_Be_Null,
4594         Aggregate_Constraint_Checks, Resolve_Aggregate,
4595         Resolve_Array_Aggregate, Resolve_Record_Aggregate): Code cleanup.
4597         * sem_ch5.adb (Analyze_Assignment): Code cleanup.
4599 2005-09-01  Gary Dismukes  <dismukes@adacore.com>
4600             Robert Dewar  <dewar@adacore.com>
4601             Hristian Kirtchev  <kirtchev@adacore.com>
4603         * layout.adb (SO_Ref_From_Expr): Change Subtype_Mark to
4604         Result_Definition.
4606         * par-ch6.adb (P_Subprogram): Handle parsing of Access_Definitions in
4607         function specs.
4608         Call Set_Result_Definition instead of Set_Subtype_Mark.
4609         (P_Subprogram_Specification): Add parsing of anonymous access result
4610         plus null exclusions. Call Set_Result_Definition instead of
4611         Set_Subtype_Mark.
4613         * par-ch3.adb: Add support for LIMITED NEW for Ada 2005 AI-419
4614         (P_Access_Type_Definition): Add parsing for an anonymous access result
4615         subtype, plus parsing for null exclusions. Call Set_Result_Definition
4616         instead of Set_Subtype_Mark.
4618         * sinfo.adb: Add support for LIMITED NEW for Ada 2005 AI-419
4619         (Null_Exclusion_Present): Allow this flag for N_Function_Specification.
4620         (Result_Definition): New function for N_Function_Specifications.
4621         (Subtype_Mark): No longer allowed for N_Access_Function_Definition and
4622         N_Function_Specification.
4623         (Set_Null_Exclusion_Present): Allow this flag for
4624         N_Function_Specification.
4625         (Set_Result_Definition): New procedure for N_Function_Specifications.
4626         (Set_Subtype_Mark): No longer allowed for N_Access_Function_Definition
4627         and N_Function_Specification.
4629         * sinfo.ads: Update grammar rules for 9.7.2: Entry_Call_Alternative,
4630         Procedure_Or_Entry_Call; 9.7.4: Triggering_Statement.
4631         Add support for LIMITED NEW for Ada 2005 AI-419
4632         Update the syntax of PARAMETER_AND_RESULT_PROFILE to reflect the new
4633         syntax for anonymous access results.
4634         Replace Subtype_Mark field by Result_Definition in
4635         N_Function_Specification and N_Access_Definition specs.
4636         Add Null_Exclusion_Present to spec of N_Function_Specification.
4637         (Result_Definition): New function for N_Function_Specification and
4638         N_Access_Function_Definition.
4639         (Set_Result_Definition): New procedure for N_Function_Specification and
4640         N_Access_Function_Definition.
4642         * sprint.adb (S_Print_Node_Actual): Change Subtype_Mark calls to
4643         Result_Definition for cases of N_Access_Function_Definition and
4644         N_Function_Specification.
4645         Print "not null" if Null_Exclusion_Present on N_Function_Specification.
4647 2005-09-01  Vincent Celier  <celier@adacore.com>
4649         * lib-writ.adb: Update Copyright notice
4650         (Write_With_Lines): On platforms where file names are case-insensitive,
4651         record the file names in lower case.
4652         (Write_ALI): For D lines, on platforms where file names are
4653         case-insensitive, record the file names in lower case.
4655 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4656             Emmanuel Briot  <briot@adacore.com>
4658         * lib-xref.adb (Output_Overridden_Op): Display information on
4659         overridden operation.
4661         * lib-xref.ads: Add documentation on overridden operations.
4663         * ali.ads (Xref_Entity_Record): Add support for storing the overriding
4664         information.
4666         * ali.adb (Get_Typeref): New subprogram. Adds support for parsing the
4667         overriding entity information.
4669 2005-09-01  Vincent Celier  <celier@adacore.com>
4671         * mlib-prj.adb (Copy_Interface_Sources): Copy all interface sources,
4672         including those that are inherited.
4674 2005-09-01  Robert Dewar  <dewar@adacore.com>
4676         * opt.ads, opt.adb: Add new switches Debug_Pragmas_Enabled[_Config]
4678         * par-prag.adb: Implement new pragma Debug_Policy
4680         * sem_prag.adb Implement new pragma Debug_Policy
4681         (Analyze_Pragma, case Pack): do not let pragma Pack override an explicit
4682         Component_Size attribute specification. Give warning for ignored pragma
4683         Pack.
4685         * snames.h, snames.ads, snames.adb: Introduce entries in
4686         Preset_Names for Name_Disp_Asynchronous_Select,
4687         Name_Disp_Conditional_Select, Name_Disp_Get_Prim_Op_Kind,
4688         Name_Disp_Timed_Select.
4689         New pragma Debug_Policy
4691         * switch-c.adb (Scan_Front_End_Switches): Set Ada 2005 mode
4692         explicitly.
4693         Switch -gnata also sets Debug_Pragmas_Enabled
4695         * sem.adb, par.adb (Set_Opt_Config_Switch): Add parameter Main_Unit to
4696         handle an explicit -gnata when compiling predefined files.
4698 2005-09-01  Vincent Celier  <celier@adacore.com>
4700         * prj-env.adb (Set_Ada_Paths.Add.Recursive_Add): Do not add the object
4701         directories of projects that have no Ada sources.
4703 2005-09-01  Robert Dewar  <dewar@adacore.com>
4705         * scng.adb (Check_End_Of_Line): Count characters, rather than bytes
4706         (makes a difference for wide characters)
4708         * widechar.adb, widechar.ads:
4709         Add Wide_Char_Byte_Count feature to count chars vs bytes
4711 2005-09-01  Thomas Quinot  <quinot@adacore.com>
4712             Ed Schonberg  <schonberg@adacore.com>
4713             Robert Dewar  <dewar@adacore.com>
4715         * sem_attr.adb (Resolve_Attribute, case 'Address): For an illegal
4716         'Address attribute reference with an overloaded prefix, use the
4717         location of the prefix (not the location of the attribute reference) as
4718         the error location.
4719         (Analyze_Attribute, case 'Size): The name of an enumeration literal, or
4720         a function renaming thereof, is a valid prefix for 'Size (where it is
4721         intepreted as a function call).
4722         (Statically_Denotes_Entity): New predicate to determine whether the
4723         prefix of an array attribute can be considered static.
4725         PR ada/9087
4726         (Eval_Attr): Fix failure to evaluate Component_Size for
4727         unconstrained arrays (resulted in wrong value in packed case, since
4728         back end cannot handle this case)
4730 2005-09-01  Robert Dewar  <dewar@adacore.com>
4732         * sem_cat.adb (Check_Categorization_Dependencies): Add more detail to
4733         error msgs for most common cases.
4734         Use new errout insertion char < (conditional warning)
4736 2005-09-01  Javier Miranda  <miranda@adacore.com>
4737             Ed Schonberg  <schonberg@adacore.com>
4739         * sem_ch10.adb (In_Chain): Moved from the scope of a subprogram to
4740         become local to the whole package.
4741         (Install_Limited_Withed_Unit): Instead of unchaining real entities if
4742         the package was already analyzed the new algorithm "replaces" the
4743         real entities by the shadow ones. This is required to ensure that
4744         the order of these entities in the homonym chains does not change;
4745         otherwise we can have undefined references at linking time because
4746         in case of conflicts the external name of the entities will have
4747         a suffix that depends on the order of the entities in the chain.
4748         (Remove_Limited_With_Clause): Complementary code that completes the
4749         new algorithm and replaces the shadow entities by the real ones.
4750         (Install_Limited_Withed_Unit): When unchaining entities before the
4751         installation of the shadow entities, only regular entities of the
4752         public part must be taken into account. This is required to
4753         keep this routine in synch with the work done by Remove_Limited_
4754         With_Clause
4755         (Install_Limited_With_Clause): Introduce implicit limited_with_clause
4756         even if unit is analyzed, because the analysis of the unit is
4757         idempotent in any case, and the limited view of the unit may have to
4758         be installed for proper visibility.
4759         (Expand_Limited_With_Clause): Even if the unit in the implicit
4760         with_clause has been analyzed already, a limited view of the package
4761         must be built for the current context, if it does not exist yet.
4763 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4764             Javier Miranda  <miranda@adacore.com>
4765             Gary Dismukes  <dismukes@adacore.com>
4767         * sem_ch12.adb (Instantiate_Subprogram_Body): When creating the
4768         defining entity for the instance body, make a new defining identifier
4769         rather than copying the entity of the spec, to prevent accidental
4770         sharing of the entity list.
4771         (Check_Private_View): When exchanging views of private types, build the
4772         list of exchanged views as a stack, to ensure that on exit the exchanges
4773         are undone in the proper order.
4774         (Analyze_Package_Instantiation, Analyze_Subprogram_Instantiation):
4775         Restore the compilation environment in case of instantiation_error.
4776         (Analyze_Generic_Subprogram_Declaration): Handle creation of type entity
4777         for an anonymous access result.
4778         (Instantiate_Generic_Subprogram): Subtype_Mark => Result_Definition
4779         (Formal_Entity): Handle properly the case of a formal package that
4780         denotes a generic package renaming.
4782 2005-09-01  Thomas Quinot  <quinot@adacore.com>
4784         * sem_ch13.adb (Analyze_Enumeration_Representation_Clause): Reject the
4785         clause if the array aggregate is surrounded by parentheses.
4787 2005-09-01  Cyrille Comar  <comar@adacore.com>
4788             Gary Dismukes  <dismukes@adacore.com>
4789             Ed Schonberg  <schonberg@adacore.com>
4790             Javier Miranda  <miranda@adacore.com>
4792         * sem_ch3.ads, sem_ch3.adb (Analyze_Object_Declaration): Go to the
4793         underlying type
4794         to check if a type is Constrained in cases related to code generation
4795         (rather than semantic checking) since otherwise we do not generate
4796         similar code for mutable private types depending if their
4797         discriminants are visible or not.
4798         (Check_Abstract_Overriding): Do not complain about failure to override
4799         the primitive operations used in dispatching selects since they will
4800         always be overriden at the freeze point of the type.
4801         (Access_Definition): Separate out handling for resetting the scope
4802         of an anonymous access function result type. Retrieve the scope
4803         of the associated function rather than using Current_Scope, which
4804         does not have a consistent value (depends on whether we're in the
4805         middle of analyzing formal parameters). Add ??? comment about
4806         finding a cleaner way to handle the special cases of scope setting.
4807         (Process_Incomplete_Dependents): A protected operation is never a
4808         dispatching operation (only its wrapper may be).
4809         (Build_Derived_Record_Type): In case of tagged private types that
4810         implement interfaces add derivation of predefined primitive
4811         operations.
4812         (Derive_Subprograms): Replace the Is_Interface_Derivation parameter
4813         by two parameters that are used in case of derivation from abstract
4814         interface types: No_Predefined_Prims is used to avoid the derivation
4815         of predefined primitives from the interface, and Predefined
4816         Prims_Only is used to complete the derivation predefined primitives
4817         in case of private tagged types implementing interfaces.
4818         Fix typo in comments
4819         (Find_Interface_In_Descendant): Protect the frontend against
4820         wrong code with large circularity chains.
4821         (Is_Private_Overriding): Add support for entities overriding interface
4822         subprograms. The test failed because Entities associated with overriden
4823         interface subprograms are always marked as hidden (and used to build
4824         the secondary dispatch table); in this case the overriden entity is
4825         available through the field abstract_interface_alias (cf. override_
4826         dispatching_operation)
4827         (Access_Definition): Set the scope of the type to Current_Scope for the
4828         case of a function with an anonymous access result type.
4829         (Access_Subprogram_Declaration): Handle creation of the type entity for
4830         an access-to-function type with an anonymous access result.
4831         (Check_Anonymous_Access_Types): Change Subtype_Mark to Result_Definition
4832         in handling for N_Access_Function_Definition.
4833         (Analyze_Subtype_Declaration): Modify the text of error message.
4834         (Derived_Type_Declaration): Modify the text of error message.
4835         (Process_Subtype): Modify the text of error message plus cleanup
4836         of one redundant error message.
4837         (Analyze_Component_Declaration): Code cleanup.
4838         (Analyze_Object_Declaration): Code cleanup.
4839         (Analyze_Subtype_Declaration): Propagate the null-exclusion
4840         attribute in case of access types. Code cleanup.
4841         (Array_Type_Declaration): Code cleanup.
4842         (Process_Discriminants): Create the new null-excluding itype
4843         if required. Code cleanup.
4844         (Process_Subtype): Create the new null-excluding itype if
4845         required. Code cleanup.
4846         (Build_Derived_Record_Type): Code cleanup to avoid calling
4847         twice the subprogram derive_subprograms in case of private
4848         types that implement interfaces. In this particular case the
4849         subprogram Complete_Subprograms_Derivation already does the
4850         job associated with the second call.
4852         * exp_strm.adb (Build_Elementary_Input_Call): Add an explicit
4853         conversion to the full view when generating an operation for a
4854         discriminant whose type may currently be private.
4856 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4857             Javier Miranda  <miranda@adacore.com>
4859         * sem_ch4.adb (Transform_Object_Operation): In a context off the form
4860         V (Obj.F), the rewriting does not involve the indexed component, but
4861         only the selected component itself.
4862         Do not apply the transformation if the analyzed node is an actual of a
4863         call to another subprogram.
4864         (Complete_Object_Operation): Retain the entity of the
4865         dispatching operation in the selector of the rewritten node. The
4866         entity will be used in the expansion of dispatching selects.
4867         (Analyze_One_Call): Improve location of the error message associated
4868         with interface.
4869         (Analyze_Selected_Component): No need to resolve prefix when it is a
4870         function call, resolution is done when parent node is resolved, as
4871         usual.
4872         (Analyze_One_Call): Add a flag to suppress analysis of the first actual,
4873         when attempting to resolve a call transformed from its object notation.
4874         (Try_Object_Operation, Transform_Object_Operastion): Avoid makind copies
4875         of the argument list for each interpretation of the operation.
4876         (Try_Object_Operation): The designated type of an access parameter may
4877         be an incomplete type obtained through a limited_with clause, in which
4878         case the primitive operations of the type are retrieved from its full
4879         view.
4880         (Analyze_Call): If this is an indirect call, and the return type of the
4881         access_to_subprogram is incomplete, use its full view if available.
4883 2005-09-01  Javier Miranda  <miranda@adacore.com>
4884             Gary Dismukes  <dismukes@adacore.com>
4886         * sem_ch6.ads, sem_ch6.adb (Check_Conformance): In case of anonymous
4887         access types the null-exclusion and access-to-constant attributes must
4888         also match.
4889         (Analyze_Return_Statement): When the result type is an anonymous access
4890         type, apply a conversion of the return expression to the access type
4891         to ensure that appropriate accessibility checks are performed.
4892         (Analyze_Return_Type): For the case of an anonymous access result type,
4893         generate the Itype and set Is_Local_Anonymous_Access on the type.
4894         Add ??? placeholder for check to disallow returning a limited object
4895         in Ada 2005 unless it's an aggregate or a result of a function call.
4896         Change calls from Subtype_Mark to Result_Definition.
4897         (Analyze_Subprogram_Body): Change formal Subtype_Mark to
4898         Result_Definition in call to Make_Function_Specification.
4899         (Build_Body_To_Inline): Change Set_Subtype_Mark to
4900         Set_Result_Definition.
4901         (Make_Inequality_Operator): Change formal Subtype_Mark to
4902         Result_Definition in call to Make_Function_Specification.
4903         (Process_Formals): Create the new null-excluding itype if required.
4904         (New_Overloaded_Entity): For an entity overriding an interface primitive
4905         check if the entity also covers other abstract subprograms in the same
4906         scope. This is required to handle the general case, that is, overriding
4907         other interface primitives and overriding abstract subprograms inherited
4908         from some abstract ancestor type.
4909         (New_Overloaded_Entity): For an overriding entity that comes from
4910         source, note the operation that it overrides.
4911         (Check_Conformance, Type_Conformant): Addition of one new formal
4912         to skip controlling formals in the analysis. This is used to
4913         handle overloading of abstract interfaces.
4914         (Base_Types_Match): Add missing case for types imported from
4915         limited-with clauses
4916         (New_Overloaded_Entity): Add barrier to protect the use of
4917         the "alias" attribute.
4919 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4921         * sem_ch8.adb (Analyze_Renamed_Entry): For a renaming_as_declaration,
4922         verify that the procedure and the entry are mode conformant.
4923         (Analyze_Subprogram_Renaming): Emit a warning if an operator is renamed
4924         as a different operator, which is often a cut-and-paste error.
4926 2005-09-01  Javier Miranda  <miranda@adacore.com>
4927             Ed Schonberg  <schonberg@adacore.com>
4929         * sem_disp.adb (Check_Controlling_Formals): Anonymous access types
4930         used in controlling parameters exclude null because it is necessary to
4931         read the tag to dispatch, and null has no tag.
4932         (Override_Dispatching_Operation): If the previous operation is inherited
4933         from an interface, it becomes hidden  and does not participate in later
4934         name resolution.
4936 2005-09-01  Javier Miranda  <miranda@adacore.com>
4937             Ed Schonberg  <schonberg@adacore.com>
4938             Gary Dismukes  <dismukes@adacore.com>
4940         * sem_res.adb (Resolve_Membership_Op): In case of the membership test
4941         "Iface_CW_Typ in T'Class" we have nothing else to do in the frontend;
4942         the expander will generate the corresponding run-time check to evaluate
4943         the expression.
4944         (Resolve_Call): Check for legal type of procedure name or prefix that
4945         appears as a trigger in a triggering alternative.
4946         (Valid_Conversion): If expression is ambiguous and the context involves
4947         an extension of System, remove System.Address interpretations.
4948         (Resolve_Qualified_Expression): Reject the case of a specific-type
4949         qualification applied to a class-wide argument. Enhance comment
4950         to explain checking of Original_Node.
4951         (Resolve_Type_Conversion): The location of the error message was not
4952         general enough to handle the general case and hence it has been removed.
4953         In addition, this patch improves the text of the message.
4954         (Resolve_Type_Conversion): Add missing support for access to interface
4955         types.
4956         (Resolve_Type_Conversion): If the target is a class-wide interface type,
4957         do not expand if the expression is the actual in a call, because proper
4958         expansion will take place when the call itself is expanded.
4959         (Resolve_Allocator): If the context is an unchecked conversion, the
4960         allocator inherits its storage pool, if any, from the target type of
4961         the conversion.
4963 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4964             Javier Miranda  <miranda@adacore.com>
4966         * sem_type.adb (Add_One_Interp): If a candidate operation is an
4967         inherited interface operation that has an implementation, use the
4968         implementation to avoid spurious ambiguities.
4969         (Interface_Present_In_Ancestor): In case of concurrent types we can't
4970         use the Corresponding_Record_Typ attribute to look for the interface
4971         because it is set by the expander (and hence it is not always
4972         available). For this reason we traverse the list of interfaces
4973         (available in the parent of the concurrent type).
4974         (Interface_Present_In_Ancestor): Handle entities from the limited view
4976 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4978         * sem_util.ads, sem_util.adb (Gather_Components): Omit interface tags
4979         from the list of required components.
4980         (Is_Controlling_Limited_Procedure): Determine whether an entity is a
4981         primitive procedure of a limited interface with a controlling first
4982         parameter.
4983         (Is_Renamed_Entry): Determine whether an entry is a procedure renaming
4984         of an entry.
4985         (Safe_To_Capture_Value): A value (such as non_null) is not safe to
4986         capture if it is generated in the second operand of a short-circuit
4987         operation.
4988         Do not capture values for variables with address clauses.
4989         (Is_Object_Reference): Treat a function call as an object reference only
4990         if its type is not Standard_Void_Type.
4992 2005-09-01  Ed Schonberg  <schonberg@adacore.com>
4994         * sem_warn.adb (Warn_On_Known_Condition): Refine warning when applied
4995         to a variable that is statically known to be constant.
4997 2005-09-01  Geert Bosch  <bosch@adacore.com>
4998             Robert Dewar  <dewar@adacore.com>
5000         * ttypef.ads (VAXDF_Safe_First): Use correct value for constant.
5001         (VAXGF_Safe_First): Idem.
5003 2005-09-01  Robert Dewar  <dewar@adacore.com>
5004             Arnaud Charlet  <charlet@adacore.com>
5006         * g-dirope.ads: Minor reformatting
5007         Document that bounds of result of Base_Name match the input index
5008         positions.
5009         Add documentation on environment variable syntax for Expand_Path
5011         * gnat_ugn.texi: Update documentation to include mention of -m switches
5012         Document new treatment of wide characters in max line length
5013         style check.
5014         Remove -gnatL/-gnatZ switches, no longer used.
5015         Add note on pragmas Assertion_Policy and Debug_Policy in discussion
5016         of -gnata switch.
5018         * gnat_rm.texi: Add doc for two argument form of pragma
5019         Float_Representation.
5020         Add documentation for pragma No_Strict_Aliasing
5021         Add note that explicit component clause overrides pragma Pack.
5022         Add documentation of pragma Debug_Policy
5024 2005-09-01  Matthew Heaney  <heaney@adacore.com>
5026         * a-cihase.adb, a-coorse.ads, a-coorse.adb, a-cohama.adb,
5027         a-ciorse.ads, a-ciorse.adb, a-cihama.adb, a-cdlili.adb,
5028         a-cidlli.adb, a-chtgop.adb, a-cihase.adb, a-cihase.ads,
5029         a-cohase.adb, a-cohase.adb, a-cohase.ads: Synchronized with latest
5030         draft (Draft 13, August 2005) of Ada Amendment 1.
5032 2005-09-01  Arnaud Charlet  <charlet@adacore.com>
5034         * Makefile.in: Adjust the libgnat target pairs for Xscale to ARM.
5035         Note that the platform-specific version of g-soccon.ads for VMS is now
5036         named g-soccon-vms.ads (it was previously g-soccon-vms.adb, although it
5037         really is a package spec).
5038         Replace s-taspri-linux.ads by s-taspri-posix.ads
5039         Remove references to s-mastop-x86.adb
5041         * system-vxworks-xscale.ads: Removed, no longer used.
5042         * s-vxwork-xscale.ads: Removed, no longer used.
5044 2005-09-01  Robert Dewar  <dewar@adacore.com>
5046         * a-dirval-mingw.adb, a-direct.adb, a-coinve.adb,
5047         g-dynhta.adb, g-dynhta.ads, cstand.adb, exp_smem.adb, g-debuti.ads,
5048         g-dirope.adb, g-table.adb, lib-sort.adb, sem_maps.adb,
5049         exp_fixd.adb, exp_aggr.adb, a-intnam-mingw.ads, a-intnam-vxworks.ads,
5050         g-arrspl.adb, g-arrspl.ads, g-awk.adb, g-awk.ads, g-boubuf.ads,
5051         g-boubuf.ads, g-boubuf.ads, g-bubsor.ads, g-bubsor.adb, g-busora.adb,
5052         g-busora.ads, g-busorg.adb, g-busorg.ads, g-calend.adb, g-calend.ads,
5053         g-casuti.adb, g-casuti.ads, g-catiio.adb, g-catiio.ads, g-cgi.adb,
5054         g-cgi.ads, g-cgicoo.adb, g-cgicoo.ads, g-cgideb.adb, g-cgideb.ads,
5055         g-comlin.adb, g-comver.ads, g-semaph.ads, g-socthi.ads,
5056         sem_ch7.adb, a-direio.adb, a-caldel.ads, i-cstrea-vms.adb,
5057         a-ztedit.adb, a-ztenau.adb, g-socthi-vms.adb, g-socthi-vms.ads,
5058         g-socthi-mingw.adb, g-socthi-mingw.ads, g-socthi-vxworks.ads,
5059         a-intnam-irix.ads, a-intnam-irix.ads, a-intnam-hpux.ads,
5060         a-intnam-os2.ads, a-intnam-os2.ads, a-caldel-vms.adb, a-calend-vms.adb,
5061         a-calend-vms.ads, g-heasor.adb, g-heasor.ads, g-hesora.adb,
5062         g-hesora.ads, g-hesorg.adb, g-hesorg.ads, g-htable.adb, g-htable.ads,
5063         g-io.adb, g-io.ads, g-io_aux.adb, g-io_aux.ads, g-locfil.ads,
5064         g-memdum.adb, g-memdum.ads, g-traceb.adb, g-traceb.ads, i-cobol.adb,
5065         i-cobol.ads, i-cstrea.ads, i-cstrin.adb, a-wtedit.adb, a-tifiio.adb,
5066         a-wtenau.adb, a-wtenau.adb, a-teioed.adb: Minor reformatting
5068 2005-08-29  Arnaud Charlet  <charlet@adacore.com>
5070         PR ada/23187
5071         * adaint.c
5072         (GNAT_MAXPATH_LEN): Use default value if MAXPATHLEN is undefined.
5074 2005-08-29  Arnaud Charlet  <charlet@adacore.com>
5075             Doug Rupp  <rupp@adacore.com>
5077         * s-stalib.adb: Add missing pragma Warnings (On) to reenable Warnings
5078         when needed.
5079         (Inside_Elab_Final_Code): Moved to init.c to avoid having to keep
5080         this code in the GNAT run-time.
5082         * decl.c, fe.h: Replace GCC_ZCX by Back_End_Exceptions.
5084         PR ada/21053
5085         * init.c (__gnat_error_handler [many]): Mark "msg" as const
5086         (__gnat_error_handler [HPUX]): Mark siginfo parameter as unused
5088         (__gnat_inside_elab_final_code): Moved here from
5089         Standard_Library and only defined for the compiler.
5090         __gnat_error_handler [VMS]: Adjust sigargs to account for PC & PSL.
5091         (__gnat_inum_to_ivec): Do not define this function on VxWorks when
5092         using RTPs because directly vectored Interrupt routines are not
5093         supported on this configuration.
5094         (getpid): Do not redefine this function on VxWorks when using RTPs
5095         because this primitive is well supported by the RTP libraries.
5096         (copy_msg): Correct the code that checks for buffer overflow.
5097         Discovered during code reading.
5099 2005-08-29  Olivier Hainque  <hainque@adacore.com>
5101         * decl.c (gnat_to_gnu_entity) <E_Variable>: When allocating storage for
5102         a library level mutable variable with an initializer, tell
5103         build_allocator to ignore the initializer's size. It may not be large
5104         enough for all the values that might be assigned to the variable later
5105         on.
5107 2005-08-29  Arnaud Charlet  <charlet@adacore.com>
5108             Eric Botcazou  <ebotcazou@adacore.com>
5110         * trans.c: Protect < in error msg with quote
5111         Replace GCC_ZCX by Back_End_Exceptions.
5112         (addressable_p) <COMPONENT_REF>: Also return 1 if the field
5113         has been sufficiently aligned in the record.
5115 2005-08-15  James E. Wilson  <wilson@specifix.com>
5117         * system-linux-alpha.ads: Change ia64 to alpha.
5119 2005-08-01  Kazu Hirata  <kazu@codesourcery.com>
5121         * decl.c, utils.c: Fix comment typos.
5123 2005-07-29  Kazu Hirata  <kazu@codesourcery.com>
5125         * decl.c, init.c, initialize.c: Fix comment typos.
5127 2005-07-20  Giovanni Bajo  <giovannibajo@libero.it>
5129         Make CONSTRUCTOR use VEC to store initializers.
5130         * decl.c (gnat_to_gnu_entity): Update to cope with VEC in
5131         CONSTRUCTOR_ELTS.
5132         * trans.c (extract_values): Likewise.
5133         * utils.c (convert, remove_conversions): Likewise.
5134         * utils2.c (contains_save_expr_p, build_binary_op, build_unary_op,
5135         gnat_build_constructor): Likewise.
5137 2005-07-09  Andrew Pinski  <pinskia@physics.uc.edu>
5139         * decl.c (components_to_record): Use DECL_FCONTEXT instead of
5140         DECL_SECTION_NAME.
5141         (compare_field_bitpos): Likewise.
5143 2005-07-09  Andrew Pinski  <pinskia@physics.uc.edu>
5145         * utils.c (create_var_decl): Only set DECL_COMMON on
5146         VAR_DECLs. Only set SET_DECL_ASSEMBLER_NAME on
5147         VAR_OR_FUNCTION_DECL_P.
5149 2005-07-08  Daniel Berlin  <dberlin@dberlin.org>
5151         * utils.c (create_param_decl): DECL_ARG_TYPE_AS_WRITTEN is
5152         removed.
5154 2005-07-07  Pascal Obry  <obry@adacore.com>
5156         * g-socthi-mingw.adb (C_Inet_Addr): New body used to convert the
5157         returned type on Windows.
5159         * g-socthi-mingw.ads (C_Inet_Addr): Remove pragma Import for this
5160         routine.
5162         * g-socket.adb (Inet_Addr): Check for empty Image and raises an
5163         exception in this case.
5164         Simplify the code as "Image (Image'Range)" = "Image".
5166 2005-07-07  Vincent Celier  <celier@adacore.com>
5168         * bindgen.adb (Gen_Output_File_C): When switch -a was specified, put
5169         the destructor/constructor attributes for <lib>final/<lib>init.
5171         * gnatbind.adb (Gnatbind): Allow -a to be used in conjunction with -C
5173 2005-07-07  Eric Botcazou  <ebotcazou@adacore.com>
5175         * decl.c (gnat_to_gnu_entity) <E_Procedure>: Do not strip the padding
5176         type if the parameter is not passed by copy but reference by default.
5178 2005-07-07  Javier Miranda  <miranda@adacore.com>
5180         * exp_ch3.adb (Build_Record_Init_Proc/Freeze_Record_Type):
5181         Reimplementation of the support for abstract interface types in order
5182         to leave the code more clear and easy to maintain.
5184         * exp_ch6.adb (Freeze_Subprogram): Reimplementation of the support for
5185         abstract interface types in order to leave the code clearer and easier
5186         to maintain.
5188         * exp_disp.ads, exp_disp.adb (Fill_DT_Entry): Part of its functionality
5189         is now implemented by the new subprogram Fill_Secondary_DT_Entry.
5190         (Fill_Secondary_DT_Entry): Generate the code necessary to fill the
5191         appropriate entry of the secondary dispatch table.
5192         (Make_DT): Add code to inherit the secondary dispatch tables of
5193         the ancestors.
5195         * exp_util.adb (Find_Interface_Tag/Find_Interface_ADT): Instead of
5196         implementing both functionalities by means of a common routine, each
5197         routine has its own code.
5199 2005-07-07  Javier Miranda  <miranda@adacore.com>
5201         * freeze.adb (Freeze_Entity): Check wrong uses of tag incomplete types.
5203         * par-ch3.adb (P_Type_Declaration): Give support to tagged incomplete
5204         types:
5205         --
5206           type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [IS TAGGED];
5207         --
5209         * sem_attr.adb (Check_Not_Incomplete_Type): Additional checks for wrong
5210         use of tag incomplete types.
5212         * sem_ch3.adb (Analyze_Incomplete_Type): Add mininum decoration to
5213         give support to tagged incomplete types.
5215         * sem_ch5.adb (Analyze_Case_Statement): In generated code, if the
5216         expression is a discriminant reference and its type is private, as can
5217         happen within a stream operation for a mutable record, use the full
5218         view of the type to resolve the case alternatives.
5219         (Analyze_Assignment): Check wrong dereference of incomplete types.
5221         * sem_ch6.adb (Process_Formals): Allow the use of tagged incomplete
5222         types.
5224         * sem_res.adb (Resolve_Explicit_Dereference): Allow the use of tagged
5225         incomplete types.
5227         * sinfo.adb (Taggged_Present/Set_Taggged_Present): Applicable to
5228         N_Incomplete_Type_Declaration nodes.
5230         * sinfo.ads (N_Incomplete_Type_Declaration): Addition of attribute
5231         Tag_Present to give support to tagged incomplete types:
5232         --
5233           type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [IS TAGGED];
5234         --
5236 2005-07-07  Olivier Hainque  <hainque@adacore.com>
5238         PR ada/22301
5240         * raise.c: Only include unwind.h if IN_RTS, and provide dummy type
5241         definitions for the Unwind wrappers in the compiler case.
5243 2005-07-07  Ed Schonberg  <schonberg@adacore.com>
5244             Javier Miranda  <miranda@adacore.com>
5246         * par-load.adb (Load): If a child unit is loaded through a limited_with
5247         clause, each parent must be loaded as a limited unit as well.
5249         * sem_ch10.adb (Previous_Withed_Unit): Better name for
5250         Check_Withed_Unit. Return true if there is a previous with_clause for
5251         this unit, whether limited or not.
5252         (Expand_Limited_With_Clause): Do not generate a limited_with_clause on
5253         the current unit.
5254         (Is_Visible_Through_Renamings): New local subprogram of install_limited
5255         _withed_unit that checks if some package installed through normal with
5256         clauses has a renaming declaration of package whose limited-view is
5257         ready to be installed. This enforces the check of the rule 10.1.2 (21/2)
5258         of the current Draft document for Ada 2005.
5259         (Analyze_Context): Complete the list of compilation units that
5260         are allowed to contain limited-with clauses. It also contains
5261         checks that were previously done by Install_Limited_Context_Clauses.
5262         This makes the code more clear and easy to maintain.
5263         (Expand_Limited_With_Clause) It is now a local subprogram of
5264         Install_Limited_Context_Clauses, and contains the code that adds
5265         the implicit limited-with clauses for parents of child units.
5266         This functionality was prevously done by Analyze_Context.
5268         * sem_ch4.adb (Analyze_Selected_Component): Check wrong use of
5269         incomplete type.
5271         * sem_ch7.adb (Analyze_Package_Declaration): Check if the package has
5272         been erroneously named in a limited-with clause of its own context.
5273         In this case the error has been previously notified by Analyze_Context.
5275 2005-07-07  Ed Schonberg  <schonberg@adacore.com>
5277         * sem_ch8.adb (Find_Direct_Name): Handle properly the case of a
5278         generic package that contains local declarations with the same name.
5279         (Analyze_Object_Renaming): Check wrong renaming of incomplete type.
5281 2005-07-07  Bernard Banner  <banner@adacore.com>
5283         * tracebak.c: Refine tracebacks to use Unwind_Backtrace scheme on
5284         ia64 platform only on platforms that you the GCC unwind library
5285         rather than the system unwind library.
5287 2005-07-07  Thomas Quinot  <quinot@adacore.com>
5289         * expect.c: Minor reformatting
5291 2005-07-07  Sergey Rybin  <rybin@adacore.com>
5293         * vms_data.ads: Add VMS qualifiers for new gnatpp switch
5294         --no-separate-is
5296         * gnat_ugn.texi: Add description for new gnatpp option
5297         (--no-separate-is)
5299 2005-07-04  Thomas Quinot  <quinot@adacore.com>
5301         * g-expect-vms.adb, g-expect.ads, g-expect.adb
5302         (Get_Command_Output): New subprogram to launch a process and get its
5303         standard output as a string.
5305 2005-07-04  Eric Botcazou  <ebotcazou@adacore.com>
5306             Olivier Hainque  <hainque@adacore.com>
5308         * s-mastop-tru64.adb (Pop_Frame): Use exc_lookup_function_entry to
5309         fetch a code-range descriptor associated with the machine state. On
5310         failure set the machine state's PC to 0; on success, pass the
5311         descriptor to exc_virtual_unwind.
5313         * init.c (Tru64 section): New function __gnat_set_code_loc.
5315 2005-07-04  Vincent Celier  <celier@adacore.com>
5317         * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
5318         mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb,
5319         mlib-tgt-mingw.adb, mlib-tgt-darwin.adb (Build_Dynamic_Library):
5320         Remove all auto-initialization code, as this is now done through the
5321         constructor mechanism.
5323         * adaint.h, adaint.c (__gnat_binder_supports_auto_init,
5324         __gnat_sals_init_using_constructors): New functions.
5326         * bindgen.adb (Gen_Output_File_Ada): Generate pragmas
5327         Linker_Constructor and Linker_Destructor when switch -a is used.
5329         * bindusg.adb: Add line for new switch -a
5331         * gnatbind.adb (Gnatbind_Supports_Auto_Init): New Boolean function
5332         (Gnatbind): When switch -a is used, check if it is allowed
5334         * switch-b.adb (Scan_Binder_Switches): Process new switch -a
5336 2005-07-04  Joel Brobecker  <brobecker@adacore.com>
5338         * a-tags.adb (Type_Specific_Data): Define Tags_Table as a small array.
5339         This prevents us from hitting a limitation during the debug info
5340         generation when using stabs.
5341         (Prims_Ptr): Likewise.
5343 2005-07-04  Gary Dismukes  <dismukes@adacore.com>
5344             Ed Schonberg  <schonberg@adacore.com>
5345             Javier Miranda  <miranda@adacore.com>
5347         * checks.adb (Null_Exclusion_Static_Checks): In the case of
5348         N_Object_Declaration, only perform the checks if the Object_Definition
5349         is not an Access_Definition.
5351         * sem_ch3.adb (Access_Subprogram_Declaration): Add test for the case
5352         where the parent of an the access definition is an N_Object_Declaration
5353         when determining the Associated_Node_For_Itype and scope of an
5354         anonymous access-to-subprogram type.
5356         * exp_ch6.adb (Expand_N_Subprogram_Declaration): Set the
5357         Corresponding_Spec on the body created for a null procedure. Add ???
5358         comment. Remove New_Copy_Tree call on body argument to
5359         Set_Body_To_Inline.
5361         * exp_ch6.adb (Add_Simple_Call_By_Copy_Code): For an out parameter with
5362         discriminants, use the type of the actual as well, because the
5363         discriminants may be read by the called subprogram.
5365         * sem_ch3.adb (Access_Type_Declaration): If the designated type is an
5366         access type we do not need to handle non-limited views.
5367         (Build_Derived_Record_Type): Additional check to check that in case of
5368         private types, interfaces are only allowed in private extensions.
5370 2005-07-04  Eric Botcazou  <ebotcazou@adacore.com>
5372         * decl.c (prepend_attributes) <Pragma_Linker_Constructor>: New case.
5373         <Pragma_Linker_Destructor>: Likewise.
5375         * einfo.ads (Has_Gigi_Rep_Item): Document Pragma_Linker_Constructor and
5376         Pragma_Linker_Destructor.
5378         * gigi.h (attr_type): Add ATTR_LINK_CONSTRUCTOR and
5379         ATTR_LINK_DESTRUCTOR.
5380         (static_ctors, static_dtors): New variables.
5382         * misc.c (gnat_expand_body): Output current function as constructor
5383         and destructor if requested.
5385         * par-prag.adb: Add processing for pragma Linker_Constructor and
5386         Linker_Destructor.
5388         * sem_prag.adb (Find_Unique_Parameterless_Procedure): New function
5389         extracted from Check_Interrupt_Or_Attach_Handler.
5390         (Check_Interrupt_Or_Attach_Handler): Invoke it.
5391         Implement pragma Linker_Constructor and Linker_Destructor with the
5392         help of Find_Unique_Parameterless_Procedure.
5393         Replace Name_Alias with Name_Target for pragma Linker_Alias.
5395         * snames.h, snames.ads, snames.adb:
5396         Add Name_Linker_Constructor and Name_Linker_Destructor.
5397         Add Pragma_Linker_Constructor and Pragma_Linker_Destructor.
5398         * snames.adb: Remove Name_Alias.
5400         * trans.c: Include cgraph.h.
5401         (build_global_cdtor): New function.
5402         (Compilation_Unit_to_gnu): Build global constructor and destructor if
5403         needed.
5404         (tree_transform) <N_Identifier>: Substitute renaming of view-conversions
5405         of objects too.
5406         (addressable_p) <COMPONENT_REF>: Unconditionally test
5407         DECL_NONADDRESSABLE_P on STRICT_ALIGNMENT platforms.
5409         * utils.c (process_attributes) <ATTR_LINK_ALIAS>: Do not assemble the
5410         variable if it is external.
5412         (static_ctors, static_dtors): New global variables.
5413         (process_attributes) <ATTR_LINK_CONSTRUCTOR>: New case.
5414         <ATTR_LINK_DESTRUCTOR>: Likewise.
5415         (end_subprog_body): Chain function as constructor and destructor
5416         if requested.
5418         * exp_util.adb (Force_Evaluation): Unconditionally invoke
5419         Remove_Side_Effects with Variable_Ref set to true.
5420         (Remove_Side_Effects): Handle scalar types first. Use a renaming
5421         for non-scalar types even if Variable_Ref is true and for class-wide
5422         expressions.
5424 2005-07-04  Ed Schonberg  <schonberg@adacore.com>
5426         * exp_attr.adb (Mod): Evaluate condition expression with checks off,
5427         to prevent spurious warnings.
5429 2005-07-04  Thomas Quinot  <quinot@adacore.com>
5431         * exp_dist.adb (Build_TypeCode_Call): Remove incorrect processing for
5432         Itypes. Itypes are really unexpected there.
5433         (Build_TypeCode_Function): Generalise special processing for Itypes to
5434         handle the case of numeric implicit base types as well as enumerated
5435         ones.
5437 2005-07-04  Ed Schonberg  <schonberg@adacore.com>
5439         * exp_intr.adb (Expand_Unc_Deallocation): If the designated type is
5440         controlled, indicate the expected type of the dereference that is
5441         created for the call to Deep_Finalize, to prevent spurious errors when
5442         the designated type is private and completed with a derivation from
5443         another private type.
5445 2005-07-04  Vincent Celier  <celier@adacore.com>
5447         * make.adb (Change_To_Object_Directory): When unable to change the
5448         current dir to the object directory, output the full path of the
5449         directory.
5451 2005-07-04  Matthew Gingell  <gingell@adacore.com>
5453         * Makefile.in: Replace indepsw-linux.adb by indepsw-gnu.adb
5455         * indepsw-linux.adb: Replace by...
5457         * indepsw-gnu.adb: ...this new file
5459 2005-07-04  Vincent Celier  <celier@adacore.com>
5461         * mlib-prj.adb (Auto_Initialize): New constant String
5462         (SALs_Use_Constructors): New Boolean function
5463         (Build_Library): Call gnatbind with Auto_Initialize switch when
5464         SALs_Use_Constructors returns True.
5466         * mlib-tgt.ads: Minor reformatting
5468         * mlib-utl.ads: Minor reformatting
5470         * opt.ads: (Use_Pragma_Linker_Constructor): New Boolean flag
5472 2005-07-04  Ed Schonberg  <schonberg@adacore.com>
5474         * par-ch9.adb (P_Task, P_Protected): Indicate that single task and
5475         single protected declarations can have an interface list.
5476         (P_Entry_Declaration): Add handler for Error_Resync, which can be raised
5477         with seriously malformed entry declarations, and lead to compilation
5478         abandoned messages.
5480 2005-07-04  Javier Miranda  <miranda@adacore.com>
5482         * par-load.adb: Load the context items in two rounds.
5484 2005-07-04  Robert Dewar  <dewar@adacore.com>
5486         * scng.adb: Do not consider Mod used as an attribute to be a keyword
5488 2005-07-04  Ed Schonberg  <schonberg@adacore.com>
5489             Javier Miranda  <miranda@adacore.com>
5491         * sem_ch10.adb (Build_Limited_Views): A type declared with a private
5492         type extension needs a limited view.
5493         Remove previous restriction on private types available through the
5494         limited-view (only tagged private types were previously allowed).
5495         (Install_Withed_Unit): In the code that implements the
5496         legality rule given in AI-377, exclude a child unit with the name
5497         Standard, because it is a homonym of the Standard environment package.
5499 2005-07-04  Thomas Quinot  <quinot@adacore.com>
5501         * sem_ch4.adb (Transform_Object_Operation): For an actual that is an
5502         overloaded function call, carry interpretations from the original tree
5503         to the copy.
5505 2005-07-04  Ed Schonberg  <schonberg@adacore.com>
5507         * sem_ch6.adb (Conforming_Types): If the types are anonymous access
5508         types check whether some designated type is a limited view, and use
5509         the non-limited view if available.
5511 2005-07-04  Gary Dismukes  <dismukes@adacore.com>
5513         * sem_eval.adb (Subtypes_Statically_Match): Use the discriminant
5514         constraint of full view of a private view T1 if present, when T2 is a
5515         discriminated full view.
5517 2005-07-04  Thomas Quinot  <quinot@adacore.com>
5519         * sem_res.adb (Resolve_Actuals): Do not resolve the expression of an
5520         actual that is a view conversion of a bit packed array reference.
5522 2005-07-04  Ed Schonberg  <schonberg@adacore.com>
5524         * sem_type.adb (Covers): Verify that Corresponding_Record_Type is
5525         present before checking whether an interface type covers a synchronized
5526         type.
5528 2005-07-04  Ed Schonberg  <schonberg@adacore.com>
5530         * sem_util.adb (Is_Object_Reference): An indexed or selected component
5531         whose prefix is an implicit dereference is an object reference. Removes
5532         spurious errors when compiling with -gnatc.
5534 2005-07-04  Robert Dewar  <dewar@adacore.com>
5536         PR ada/22039
5538         * s-sopco3.ads, s-sopco4.ads, s-sopco5.ads: Minor documentation fix
5540 2005-07-04  Matthew Gingell  <gingell@adacore.com>
5542         * tracebak.c: Enable tracebacks on ia64 platforms
5544 2005-07-04  Vincent Celier  <celier@adacore.com>
5546         * vms_conv.adb (Initialize): Allow multiple ALI files to be given to
5547         the GNAT BIND command, as gnatbind accepts multiples ALI files with
5548         the -L or -n switches.
5550 2005-07-04  Vincent Celier  <celier@adacore.com>
5552         * makegpr.adb (Build_Global_Archive): Make sure the list of sources is
5553         correctly computed and the main project data is not modified while
5554         doing so.
5555         (Add_C_Plus_Plus_Link_For_Gnatmake): Always link with the C++ compiler
5556         (Choose_C_Plus_Plus_Link_Process): Do not generate shell script
5557         c++linker as this does not work on some platforms.
5559 2005-07-04  Matthew Heaney  <heaney@adacore.com>
5561         * a-convec.ads, a-coinve.ads: Declaration of subtype Extended_Index
5562         was changed.
5563         * a-coinve.adb: Perform constraint checks explicitly.
5565 2005-07-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5566             Thomas Quinot  <quinot@adacore.com>
5568         * Make-lang.in: (ada/targtyps.o): Add missing TREE_H dependency.
5569         new target gen-soccon.
5571 2005-07-04  Robert Dewar  <dewar@adacore.com>
5573         * s-mastop-irix.adb, s-mastop-vms.adb: Minor reformatting
5575 2005-07-04  Thomas Quinot  <quinot@adacore.com>
5577         * g-socket.ads (Check_Selector): Minor rewording of comment.
5579 2005-07-04  Vincent Celier  <celier@adacore.com>
5581         * vms_data.ads: Add VMS qualifiers for new gnatpp switch --eol=
5583 2005-07-04  Thomas Quinot  <quinot@adacore.com>
5585         * gen-soccon.c: Add constants SO_SNDTIMEO and SO_RCVTIMEO.
5587 2005-07-04  Sergey Rybin  <rybin@adacore.com>
5589         * gnat_ugn.texi: Add description of --eol gnatpp option
5591 2005-07-04  Eric Botcazou  <ebotcazou@adacore.com>
5592             Thomas Quinot  <quinot@adacore.com>
5594         * gnat_rm.texi: Add a note that pragma Unreferenced is not appropriate
5595         if the user wants all calls of a subprogram to be flagged,
5596         independently of whether they are made from within the same unit or
5597         another unit.
5598         Mention restriction for pragma Linker_Alias on some platforms.
5599         Document pragma Linker_Constructor and Linker_Destructor.
5600         Rewrite documentation of Weak_External, Linker_Section and
5601         Linker_Alias pragmas.
5603 2005-07-04  Arnaud Charlet  <charlet@adacore.com>
5605         * s-stausa.ads, s-stausa.adb: New files.
5607 2005-06-30  Kelley Cook
5609         * all files:  Update FSF address in copyright headers.
5610         * gen-soccon.co (main): Output new FSF address in generated files.
5612 2005-06-28  Paul Brook  <paul@codesourcery.com>
5614         * misc.c (gnat_init_gcc_eh): Call default_init_unwind_resume_libfunc.
5616 2005-06-14  Olivier Hainque  <hainque@adacore.com>
5617             Eric Botcazou  <ebotcazou@adacore.com>
5619         * s-mastop-irix.adb (Pop_Frame): Revert shorcuts avoiding calls to
5620         exc_unwind, now that we are generating proper .debug_frame output for
5621         that target.
5623         * tracebak.c: Remove the mips-irix section, as we are now using the
5624         s-mastop based unwinder again.
5625         Under SPARC/Solaris, take into account the stack bias to compute the
5626         frame offset.  The stack bias is 0 for the V8 ABI and 2047 for the V9
5627         ABI.
5629 2005-06-14  Doug Rupp  <rupp@adacore.com>
5631         * g-trasym-vms.adb: renamed g-trasym-vms-alpha.adb
5633         * g-trasym-vms-alpha.adb, g-trasym-vms-ia64.adb: New files
5635 2005-06-14  Pascal Obry  <obry@adacore.com>
5637         * a-strhas.ads, a-secain.adb, a-secain.ads, a-rbtgso.ads, a-cgaaso.adb,
5638         a-cgaaso.ads, a-cgarso.adb, a-cgcaso.adb, a-cgarso.ads, a-cgcaso.ads,
5639         a-contai.ads, a-coprnu.ads, a-coprnu.adb: Fix header style (spaces in
5640         package name).
5642         * a-intnam-lynxos.ads, a-intnam-unixware.ads, a-intnam-tru64.ads,
5643         a-intnam-aix.ads, a-intnam-irix.ads, a-excpol-interix.adb,
5644         a-intnam-hpux.ads, a-intnam-linux.ads, a-intnam-dummy.ads,
5645         a-intnam-os2.ads, a-numaux-libc-x86.ads, a-intnam-interix.ads,
5646         a-intnam-solaris.ads, a-caldel-vms.adb, a-calend-vms.ads,
5647         a-intnam-vms.ads, a-excpol-abort.adb, a-intnam-mingw.ads,
5648         a-intnam-vxworks.ads, a-numaux-vxworks.ads, s-osinte-unixware.adb,
5649         s-osinte-unixware.ads, s-osinte-lynxos-3.adb, s-osinte-lynxos-3.ads,
5650         s-osinte-hpux.ads, s-osinte-solaris-posix.ads, a-intnam-freebsd.ads,
5651         s-osinte-freebsd.adb, s-osinte-freebsd.ads, s-osinte-lynxos.adb,
5652         s-osinte-lynxos.ads, s-tpopsp-lynxos.adb, s-osinte-tru64.adb,
5653         s-osinte-tru64.ads, s-tpopsp-posix-foreign.adb, s-vxwork-alpha.ads,
5654         s-osinte-aix.adb, s-osinte-aix.ads, s-osinte-aix-fsu.ads,
5655         s-osinte-irix.adb, s-osinte-irix.ads, s-interr-sigaction.adb,
5656         s-osinte-irix-athread.ads, s-osinte-hpux-dce.adb,
5657         s-osinte-hpux-dce.ads, s-osinte-posix.adb, s-osinte-linux.ads,
5658         s-vxwork-m68k.ads, s-osinte-linux-fsu.ads, s-vxwork-mips.ads,
5659         s-osinte-dummy.ads, s-interr-dummy.adb, s-osinte-os2.adb,
5660         s-osinte-os2.ads, s-osprim-os2.adb, s-osinte-interix.ads,
5661         s-osprim-unix.adb, s-vxwork-ppc.ads, s-osinte-solaris.adb,
5662         s-osinte-solaris.ads, s-osprim-solaris.adb, s-tpopsp-solaris.adb,
5663         s-vxwork-sparcv9.ads, s-osinte-solaris-fsu.ads, s-interr-vms.adb,
5664         s-osinte-vms.adb, s-osinte-vms.ads, s-osprim-vms.adb,
5665         s-osprim-vms.ads, s-tpopde-vms.adb, s-tpopde-vms.ads,
5666         s-osprim-mingw.adb, s-vxwork-xscale.ads, s-interr-vxworks.adb,
5667         s-osinte-vxworks.adb, s-osinte-vxworks.ads, s-osprim-vxworks.adb,
5668         s-tfsetr-vxworks.adb, s-tpopsp-vxworks.adb, s-intman-posix.adb,
5669         s-osinte-fsu.adb, s-osprim-posix.adb, s-tfsetr-default.adb,
5670         s-tpopsp-posix.adb, s-traces-default.adb, s-trafor-default.adb,
5671         s-trafor-default.ads, s-tratas-default.adb, a-numaux-x86.adb,
5672         a-numaux-x86.ads, a-astaco.adb, a-astaco.ads, a-caldel.adb,
5673         a-caldel.ads, a-charac.ads, a-chlat1.ads, a-chlat9.ads, a-colien.adb,
5674         a-colien.ads, a-colire.adb, a-colire.ads, a-comlin.adb, a-cwila1.ads,
5675         a-cwila9.ads, ada.ads, a-decima.adb, a-diocst.ads, a-direio.adb,
5676         a-dynpri.adb, a-dynpri.ads, a-excpol.adb, a-flteio.ads, a-fwteio.ads,
5677         a-inteio.ads, a-interr.adb, a-intnam.ads, a-intsig.adb, a-intsig.ads,
5678         a-ioexce.ads, a-iwteio.ads, a-lfteio.ads, a-lfwtio.ads, a-liteio.ads,
5679         a-liwtio.ads, a-llftio.ads, a-llfwti.ads, a-llitio.ads, a-lliwti.ads,
5680         a-ncelfu.ads, a-ngcefu.adb, a-ngcefu.ads, a-ngcoty.adb, a-ngelfu.adb,
5681         a-ngelfu.ads, a-nlcefu.ads, a-nlcoty.ads, a-nlelfu.ads, a-nllcef.ads,
5682         a-nllcty.ads, a-nllefu.ads, a-nscefu.ads, a-nscoty.ads, a-nselfu.ads,
5683         a-nucoty.ads, a-nudira.adb, a-nuelfu.ads, a-nuflra.adb, a-numaux.ads,
5684         a-numeri.ads, a-reatim.adb, a-retide.adb, a-retide.ads, a-sequio.adb,
5685         a-sequio.ads, a-sfteio.ads, a-sfwtio.ads, a-siocst.ads, a-siteio.ads,
5686         a-siwtio.ads, a-ssicst.ads, a-ssitio.ads, a-ssiwti.ads, a-stmaco.ads,
5687         a-storio.adb, a-strbou.adb, a-strfix.adb, a-string.ads, a-strmap.adb,
5688         a-strsea.adb, a-strsup.adb, a-strunb.ads, a-ststio.adb, a-stunau.adb,
5689         a-stunau.ads, a-stwibo.adb, a-stwifi.adb, a-stwifi.ads, a-stwima.adb,
5690         a-stwise.adb, a-stwisu.adb, a-suteio.adb, a-suteio.ads, a-swuwti.adb,
5691         a-swuwti.ads, a-teioed.adb, a-ticoau.adb, a-ticoau.ads, a-ticoio.adb,
5692         a-tideau.adb, a-tideio.adb, a-tienau.adb, a-tienio.adb, a-tifiio.adb,
5693         a-tiflio.adb, a-tigeau.adb, a-tigeau.ads, a-tiinio.adb, a-timoau.adb,
5694         a-timoio.adb, a-timoio.ads, a-tiocst.ads, a-titest.adb, a-titest.ads,
5695         a-witeio.adb, a-wtcoau.adb, a-wtcoau.ads, a-wtcoio.adb, a-wtcoio.ads,
5696         a-wtcstr.ads, a-wtdeau.adb, a-wtdeio.adb, a-wtenau.adb, a-wtenio.adb,
5697         a-wtfiio.adb, a-wtflio.adb, a-wtgeau.adb, a-wtinau.adb, a-wtinio.adb,
5698         a-wtinio.ads, a-wtmoau.adb, a-wtmoio.adb, a-wttest.adb, calendar.ads,
5699         dec.ads, dec-io.adb, dec-io.ads, directio.ads, errno.c, g-bubsor.adb,
5700         g-bubsor.ads, g-busora.adb, g-busora.ads, g-busorg.adb, g-busorg.ads,
5701         g-casuti.adb, g-casuti.ads, g-debuti.ads, g-heasor.adb, g-heasor.ads,
5702         g-hesora.adb, g-hesora.ads, g-hesorg.adb, g-hesorg.ads, g-htable.adb,
5703         g-htable.ads, g-io.adb, g-io.ads, g-io_aux.adb, g-io_aux.ads,
5704         g-memdum.adb, g-memdum.ads, g-sestin.ads, g-signal.ads, g-signal.adb,
5705         gnat.ads, g-souinf.ads, g-speche.adb, g-speche.ads, g-table.adb,
5706         g-table.ads, g-thread.adb, g-thread.ads, ioexcept.ads, i-vxwoio.adb,
5707         i-vxwoio.ads, math_lib.adb, s-assert.adb, s-assert.ads, s-asthan.ads,
5708         s-bitops.adb, s-bitops.ads, s-boarop.ads, s-carsi8.adb, s-carsi8.ads,
5709         s-carun8.adb, s-carun8.ads, s-casi16.adb, s-casi16.ads, s-casi32.adb,
5710         s-casi32.ads, s-casi64.adb, s-casi64.ads, s-casuti.adb, s-casuti.ads,
5711         s-caun16.adb, s-caun16.ads, s-caun32.adb, s-caun32.ads, s-caun64.adb,
5712         s-caun64.ads, s-direio.adb, s-direio.ads, sequenio.ads, s-errrep.adb,
5713         s-errrep.ads, s-exnint.adb, s-exnint.ads, s-exnllf.adb, s-exnllf.ads,
5714         s-exnlli.adb, s-exnlli.ads, s-expint.adb, s-expint.ads, s-explli.adb,
5715         s-explli.ads, s-expllu.adb, s-expllu.ads, s-expmod.adb, s-expmod.ads,
5716         s-expuns.adb, s-expuns.ads, s-fore.adb, s-fore.ads, s-geveop.adb,
5717         s-geveop.ads, s-htable.adb, s-htable.ads, s-imgbiu.adb, s-imgbiu.ads,
5718         s-imgboo.adb, s-imgboo.ads, s-imgcha.adb, s-imgcha.ads, s-imgdec.adb,
5719         s-imgdec.ads, s-imgenu.adb, s-imgenu.ads, s-imgint.adb, s-imgint.ads,
5720         s-imgllb.adb, s-imgllb.ads, s-imglld.adb, s-imglld.ads, s-imglli.adb,
5721         s-imglli.ads, s-imgllu.adb, s-imgllu.ads, s-imgllw.adb, s-imgllw.ads,
5722         s-imgrea.ads, s-imguns.adb, s-imguns.ads, s-imgwiu.adb, s-imgwiu.ads
5723         s-interr.ads, s-io.adb, s-mantis.adb, s-mantis.ads, s-osprim.ads,
5724         s-pack03.adb, s-pack03.ads, s-pack05.adb, s-pack05.ads, s-pack06.adb,
5725         s-pack06.ads, s-pack07.adb, s-pack07.ads, s-pack09.adb, s-pack09.ads,
5726         s-pack10.adb, s-pack10.ads, s-pack11.adb, s-pack11.ads, s-pack12.adb,
5727         s-pack12.ads, s-pack13.adb, s-pack13.ads, s-pack14.adb, s-pack14.ads,
5728         s-pack15.adb, s-pack15.ads, s-pack17.adb, s-pack17.ads, s-pack18.adb,
5729         s-pack18.ads, s-pack19.adb, s-pack19.ads, s-pack20.adb, s-pack20.ads,
5730         s-pack21.adb, s-pack21.ads, s-pack22.adb, s-pack22.ads, s-pack23.adb,
5731         s-pack23.ads, s-pack24.adb, s-pack24.ads, s-pack25.adb, s-pack25.ads,
5732         s-pack26.adb, s-pack26.ads, s-pack27.adb, s-pack27.ads, s-pack28.adb,
5733         s-pack28.ads, s-pack29.adb, s-pack29.ads, s-pack30.adb, s-pack30.ads,
5734         s-pack31.adb, s-pack31.ads, s-pack33.adb, s-pack33.ads, s-pack34.adb,
5735         s-pack34.ads, s-pack35.adb, s-pack35.ads, s-pack36.adb, s-pack36.ads,
5736         s-pack37.adb, s-pack37.ads, s-pack38.adb, s-pack38.ads, s-pack39.adb,
5737         s-pack39.ads, s-pack40.adb, s-pack40.ads, s-pack41.adb, s-pack41.ads,
5738         s-pack42.adb, s-pack42.ads, s-pack43.adb, s-pack43.ads, s-pack44.adb,
5739         s-pack44.ads, s-pack45.adb, s-pack45.ads, s-pack46.adb, s-pack46.ads,
5740         s-pack47.adb, s-pack47.ads, s-pack48.adb, s-pack48.ads, s-pack49.adb,
5741         s-pack49.ads, s-pack50.adb, s-pack50.ads, s-pack51.adb, s-pack51.ads,
5742         s-pack52.adb, s-pack52.ads, s-pack53.adb, s-pack53.ads, s-pack54.adb,
5743         s-pack54.ads, s-pack55.adb, s-pack55.ads, s-pack56.adb, s-pack56.ads,
5744         s-pack57.adb, s-pack57.ads, s-pack58.adb, s-pack58.ads, s-pack59.adb,
5745         s-pack59.ads, s-pack60.adb, s-pack60.ads, s-pack61.adb, s-pack61.ads,
5746         s-pack62.adb, s-pack62.ads, s-pack63.adb, s-pack63.ads, s-scaval.adb,
5747         s-scaval.ads, s-sequio.adb, s-sequio.ads, s-stache.adb, s-stache.ads,
5748         s-stratt.adb, s-stratt.ads, s-strcom.adb, s-strcom.ads, s-strops.adb,
5749         s-strops.ads, s-taasde.ads, s-tadeca.adb, s-tadeca.ads, s-tadert.adb,
5750         s-tadert.ads, s-taenca.adb, s-taenca.ads, s-taprob.adb, s-taprob.ads,
5751         s-tarest.adb, s-tarest.ads, s-tasdeb.adb, s-tasdeb.ads, s-tasini.adb,
5752         s-tasini.ads, s-taskin.adb, s-taskin.ads, s-tasque.adb, s-tasque.ads,
5753         s-tasren.ads, s-tasres.ads, s-tassta.adb, s-tassta.ads, s-tasuti.adb,
5754         s-tasuti.ads, s-tataat.adb, s-tataat.ads, s-tpinop.adb, s-tpinop.ads,
5755         s-tpoben.adb, s-tpoben.ads, s-tpobop.ads, s-tporft.adb, s-tposen.ads,
5756         s-traces.adb, s-traces.ads, s-tratas.adb, s-tratas.ads, s-valint.ads,
5757         s-unstyp.ads, s-veboop.adb, s-veboop.ads, s-vector.ads, s-vercon.adb,
5758         s-vercon.ads, s-wchcnv.adb, s-wchcnv.ads, s-wchjis.adb, s-wchjis.ads,
5759         s-wchstw.adb, s-wchstw.ads, s-wchwts.adb, s-wchwts.ads, s-widboo.adb,
5760         s-widboo.ads, s-widcha.adb, s-widcha.ads, s-widenu.adb, s-widenu.ads,
5761         s-widlli.adb, s-widlli.ads, s-widllu.adb, s-widllu.ads, s-wwdcha.ads,
5762         s-wwdenu.adb, s-wwdwch.ads, text_io.ads, s-stchop.ads, s-stchop.adb,
5763         s-stchop-vxworks.adb, a-intnam-darwin.ads, s-osinte-darwin.adb,
5764         s-osinte-darwin.ads, s-vxwork-x86.ads, a-numaux-darwin.ads,
5765         a-numaux-darwin.adb, a-chzla1.ads, a-chzla9.ads, a-lfztio.ads,
5766         a-liztio.ads, a-llfzti.ads, a-llizti.ads, a-sfztio.ads, a-siztio.ads,
5767         a-ssizti.ads, a-stzbou.adb, a-stzfix.adb, a-stzfix.ads, a-stzmap.adb,
5768         a-stzsea.adb, a-stzsup.adb, a-swunau.adb, a-swunau.ads, a-szuzti.adb,
5769         a-szuzti.ads, a-tiunio.ads, a-wwunio.ads, a-ztcoau.adb, a-ztcoau.ads,
5770         a-ztcoio.adb, a-ztcoio.ads, a-ztcstr.ads, a-ztdeau.adb, a-ztdeio.adb,
5771         a-ztenio.adb, a-ztexio.adb, a-ztfiio.adb, a-ztflio.adb, a-ztgeau.adb,
5772         a-ztinau.adb, a-ztinio.adb, a-ztinio.ads, a-ztmoau.adb, a-ztmoio.adb,
5773         a-zttest.adb, a-zzunio.ads, g-utf_32.adb: Fix header style.
5774         "GNU Ada" to GNAT, use proper casing for RUN-TIME.
5776 2005-06-14  Jose Ruiz  <ruiz@adacore.com>
5777             Arnaud Charlet  <charlet@adacore.com>
5779         * a-sytaco.ads, a-sytaco.adb (Suspension_Object): These objects are no
5780         longer protected objects. They have been replaced by lower-level
5781         suspension objects made up by a mutex and a condition variable (or
5782         their equivalent given a particular OS) plus some internal data to
5783         reflect the state of the suspension object.
5784         (Initialize, Finalize): Add this initialization procedure for
5785         Suspension_Object, which is a controlled type.
5786         (Finalize): Add the finalization procedure for Suspension_Object,
5787         which is a controlled type.
5789         * a-sytaco-vxworks.ads, a-sytaco-vxworks.adb: Remove this version of
5790         Ada.Synchronous_Task_Control because there is no longer a need for a
5791         VxWorks specific version of this package. Target dependencies
5792         has been moved to System.Task_Primitives.Operations.
5794         * s-osinte-mingw.ads (pCRITICAL_SECTION): Remove this type which is no
5795         longer needed.
5796         (InitializeCriticalSection, EnterCriticalSection,
5797         LeaveCriticalSection, DeleteCriticalSection): Replace the type
5798         pCriticalSection by an anonymous access type so that we avoid problems
5799         of accessibility to local objects.
5801         * s-taprop.ads, s-taprop-posix.adb, s-taprop-vxworks.adb,
5802         s-taprop-mingw.adb, s-taprop-vms.adb, s-taprop-solaris.adb,
5803         s-taprop-os2.adb, s-taprop-dummy.adb, s-taprop-hpux-dce.adb,
5804         s-taprop-linux.adb, s-taprop-irix.adb, s-taprop-irix-athread.adb,
5805         s-taprop-tru64.adb, s-taprop-lynxos.adb (Elaboration Code): No longer
5806         set the environment task mask here.
5807         (Current_State): Add this function that returns the state of the
5808         suspension object.
5809         (Set_False): Add this procedure that sets the state of the suspension
5810         object to False.
5811         (Set_True): Add this procedure that sets the state of the suspension
5812         object to True, releasing the task that was suspended, if any.
5813         (Suspend_Until_True): Add this procedure that blocks the calling task
5814         until the state of the object is True. Program_Error is raised if
5815         another task is already waiting on that suspension object.
5816         (Initialize): Add this procedure for initializing the suspension
5817         object. It initializes the mutex and the condition variable which are
5818         used for synchronization and queuing, and it sets the internal state
5819         to False.
5820         (Finalize): Add this procedure for finalizing the suspension object,
5821         destroying the mutex and the condition variable.
5823         * s-taspri-posix.ads, s-taspri-vxworks.ads, s-taspri-mingw.ads,
5824         s-taspri-vms.ads, s-taspri-solaris.ads, s-taspri-os2.ads,
5825         s-taspri-dummy.ads, s-taspri-hpux-dce.ads, s-taspri-linux.ads,
5826         s-taspri-tru64.ads, s-taspri-lynxos.ads (Suspension_Object): New object
5827         which provides a low-level abstraction (using operating system
5828         primitives) for Ada.Synchronous_Task_Control.
5829         This object is made up by a mutex (for ensuring mutual exclusion), a
5830         condition variable (for queuing threads until the condition is
5831         signaled), a Boolean (State) indicating whether the object is open,
5832         and a Boolean (Waiting) reflecting whether there is a task already
5833         suspended on this object.
5835         * s-intman.ads, s-intman-irix.adb, s-intman-irix-athread.adb,
5836         s-intman-dummy.adb, s-intman-solaris.adb, s-intman-vms.adb,
5837         s-intman-vms.ads, s-intman-mingw.adb,
5838         (Initialize_Interrupts): Removed, no longer used.
5840         * s-inmaop-posix.adb, s-inmaop-vms.adb, s-inmaop-dummy.adb,
5841         (Setup_Interrupt_Mask): New procedure.
5843         * s-intman-vxworks.ads, s-intman-vxworks.adb:  Update comments.
5845         * s-inmaop.ads (Setup_Interrupt_Mask): New procedure
5847         * s-interr.adb: Add explicit call to Setup_Interrupt_Mask now that
5848         this is no longer done in the body of s-taprop
5849         (Server_Task): Explicitely test for Pending_Action in case
5850         System.Parameters.No_Abort is True.
5852         * s-taasde.adb: Add explicit call to Setup_Interrupt_Mask now that this
5853         is no longer done in the body of s-taprop
5855 2005-06-14  Robert Dewar  <dewar@adacore.com>
5857         * system-unixware.ads, system-linux-ia64.ads, system-freebsd-x86.ads,
5858         system-lynxos-ppc.ads, system-lynxos-x86.ads, system-linux-x86_64.ads,
5859         system-tru64.ads, system-aix.ads, system-vxworks-sparcv9.ads,
5860         system-vxworks-xscale.ads, system-solaris-x86.ads, system-irix-o32.ads,
5861         system-irix-n32.ads, system-hpux.ads, system-vxworks-m68k.ads,
5862         system-linux-x86.ads, system-vxworks-mips.ads, system-vxworks-mips.ads,
5863         system-os2.ads, system-interix.ads, system-solaris-sparc.ads,
5864         system-solaris-sparcv9.ads, system-vms.ads, system-mingw.ads,
5865         system-vms-zcx.ads, system-vxworks-ppc.ads, system.ads,
5866         system-darwin-ppc.ads, system-vxworks-x86.ads, system-linux-ppc.ads,
5867         system-linux-hppa.ads, system-vms_64.ads,
5868         system-vxworks-alpha.ads: Minor comment update for
5869         AI-362 (unit is Pure).
5871         * a-chahan.ads, a-chahan.adb: Move Wide_Wide functions to Conversions
5872         Add pragma Pure_05 for AI-362
5873         Make remaining conversion functions obsolescent in Ada 95
5875         * impunit.adb: Change a-swunha to a-swuwha and a-szunha to a-szuzha
5876         Make Ada.Wide_Characters[.Unicode] available in Ada 95 mode
5877         Add entries for a-wichun and a-zchuni
5878         Add a-widcha a-zchara for AI-395
5879         Add a-chacon (Ada.Characters.Conversions) to list of Ada 2005 routines
5881         * Makefile.rtl: Change a-swunha to a-swuwha and a-szunha to a-szuzha
5882         Add entries for a-wichun.o and a-zchuni.o
5883         Entries for a-widcha.o and a-zchara.o
5884         Add entry for a-chacon.o
5886         * a-ztenau.adb: Add with of Ada.Characters.Conversions
5888         * a-chacon.ads, a-chacon.adb: New files.
5890         * a-taside.adb, a-exstat.adb, a-excach.adb: Add warnings off to allow
5891         categorization violations.
5893         * a-strmap.ads: Add pragma Pure_05 for AI-362
5894         * a-strmap.ads: Add note on implicit categorization for AI-362
5896         * a-tgdico.ads, a-taside.ads: Add pragma Preelaborate_05 for AI-362
5898         * par-prag.adb: Dummy entry for pragma Persistent_BSS
5899         Set Ada_Version_Explicit, for implementation of AI-362
5900         Add processing for pragma Pure_05 and Preelaborate_05
5901         Add entry for Assertion_Policy pragma
5903         * sem.adb: Make sure predefined units are compiled with GNAT_Mode true
5904         when needed for proper processing of categorization stuff
5906         * sem_cat.adb:
5907         For several cases, make errors in preealborate units warnings,
5908         instead of errors, if GNAT_Mode is set. For AI-362.
5910         * sem_elab.adb (Check_Elab_Call): Call to non-static subprogram in
5911         preelaborate unit is now warning if in GNAT mode
5913         * s-stoele.ads: Document AI-362 for pragma preelaborate
5915 2005-06-14  Doug Rupp  <rupp@adacore.com>
5917         * s-parame-vms.ads, s-parame-hpux.ads, s-parame-vms-restrict.ads,
5918         s-parame-ae653.ads, s-parame.ads, s-parame-vxworks.ads:
5919         Default_Exception_Msg_Max_Length: new parameter.
5921         * a-except.ads: (Exception_Msg_Max_Length): Set to
5922         System.Parameters.Default_Exception_Msg_Max_Length
5923         Add pragma Preelaborate_05 for AI-362
5924         Add warnings off to allow categorization violations for AI-362
5926 2005-06-14  Vincent Celier  <celier@adacore.com>
5928         * gnatsym.adb: Adapt to modification of package Symbols: procedure
5929         Process is now in package Processing.
5931         * symbols.ads, symbols.adb:
5932         (Processing): New package, containing procedure Process
5934         * symbols-vms-alpha.adb:
5935         Replaced by symbols-vms.adb and symbols-processing-vms-alpha.adb
5937         * symbols-vms.adb, symbols-processing-vms-alpha.adb,
5938         symbols-processing-vms-ia64.adb: New files.
5940 2005-06-14  Pascal Obry  <obry@adacore.com>
5942         * mlib-tgt-mingw.adb (Build_Dynamic_Library): Replace the previous
5943         implementation. This new version generates the proper DllMain routine
5944         to initialize the SAL. The DllMain is generated in Ada and compiled
5945         before being added as option to the library build command.
5947 2005-06-14  Doug Rupp  <rupp@adacore.com>
5948             Pascal Obry  <obry@adacore.com>
5950         * adaint.c (__gnat_to_canonical_file_spec): Check for error returns in
5951         call to decc$translate_vms.
5952         (__gnat_locate_regular_file): Check if the path_val contains quotes. We
5953         need to remove those quotes before catenating the filename.
5954         (__gnat_locate_exec_on_path): improvements to the Win32 section:
5955         * avoid allocating the memory twice for better efficiency;
5956         * allocate 32K buffer for environment expansion as suggested by MSDN;
5957         * prepend ".;" to the path so that current directory is searched too.
5959 2005-06-14  Robert Dewar  <dewar@adacore.com>
5961         * a-except.adb (Exception_Identity): return Null_Id for null occurrence
5962         instead of raising CE (AI-241)
5963         Add warnings off to allow categorization violations for AI-362
5965 2005-06-14  Robert Dewar  <dewar@adacore.com>
5967         * ali-util.adb, gnatbind.adb: Remove references to
5968         Force_RM_Elaboration_Order.
5970         * switch-b.adb: Remove recognition of -f switch
5972 2005-06-14  Pascal Obry  <obry@adacore.com>
5974         * a-stzunb.adb, a-stwiun.adb, a-strunb.adb (Realloc_For_Chunk): New
5975         implementation which is slightly more efficient.
5977 2005-06-14  Gary Dismukes  <dismukes@adacore.com>
5978             Javier Miranda  <miranda@adacore.com>
5979             Ed Schonberg  <schonberg@adacore.com>
5980             Hristian Kirtchev  <kirtchev@adacore.com>
5982         * exp_ch4.adb (Expand_Allocator_Expression): When an initialized
5983         allocator's designated type is a class-wide type, and compiling for
5984         Ada 2005, emit a run-time check that the accessibility level of the
5985         type given in the allocator's expression is not deeper than the level
5986         of the allocator's access type.
5988         (Tagged_Membership): Modified to gives support to abstract interface
5989         types.
5991         * a-tags.ads, a-tags.adb (type Type_Specific_Data): Add component
5992         Access_Level.
5993         (Descendant_Tag): New predefined function
5994         (Is_Descendant_At_Same_Level): New predefined function
5995         (Get_Access_Level): New private function
5996         (Set_Access_Level): New private procedure
5997         (IW_Membership): New function. Given the tag of an object and the tag
5998         associated with an interface, evaluate if the object implements the
5999         interface.
6000         (Register_Interface_Tag): New procedure used to initialize the table of
6001         interfaces used by the IW_Membership function.
6002         (Set_Offset_To_Top): Initialize the Offset_To_Top field in the prologue
6003         of the dispatch table.
6004         (Inherit_TSD): Modified to copy the table of ancestor tags plus the
6005         table of interfaces of the parent.
6006         (Expanded_Name): Raise Tag_Error if the passed tag equals No_Tag.
6007         (External_Tag): Raise Tag_Error if the passed tag equals No_Tag.
6008         (Parent_Tag): Return No_Tag in the case of a root-level tagged type,
6009         and raise Tag_Error if the passed tag equalis No_Tag, to conform with
6010         Ada 2005 semantics for the new predefined function.
6012         * exp_attr.adb (Expand_N_Attribute, case Attribute_Input): Generate
6013         call to Descendant_Tag rather than Internal_Tag.
6014         (Expand_N_Attribute, case Attribute_Output): Emit a check to ensure that
6015         the accessibility level of the attribute's Item parameter is not deeper
6016         than the level of the attribute's prefix type. Tag_Error is raised if
6017         the check fails. The check is only emitted for Ada_05.
6018         (Find_Stream_Subprogram): If a TSS exists on the type itself for the
6019         requested stream attribute, use it.
6020         (Expand_N_Attribute_Reference): If the designated type is an interface
6021         then rewrite the referenced object as a conversion to force the
6022         displacement of the pointer to the secondary dispatch table.
6023         (Expand_N_Attribute_Reference, case 'Constrained): Return false if this
6024         is a dereference of an object with a constrained partial view.
6026         * exp_ch5.adb (Expand_N_Return_Statement): When a function's result
6027         type is a class-wide type, emit a run-time check that the accessibility
6028         level of the returned object is not deeper than the level of the
6029         function's master (only when compiling for Ada 2005).
6031         * exp_disp.ads, exp_disp.adb (Ada_Actions, Action_Is_Proc,
6032         Action_Nb_Arg): Add entries for new Get_Access_Level and
6033         Set_Access_Level routines in these tables.
6034         (Make_DT): Generate a call to set the accessibility level of the
6035         tagged type in its TSD.
6036         (Make_DT): Code cleanup. The functionality of generating all the
6037         secondary dispatch tables has been moved to freeze_record_type.
6038         (Make_Abstract_Interface_DT): Minor code cleanup.
6039         (Set_All_DT_Position): Code cleanup. As part of the code cleanup
6040         this subprogram implements a new algorithm that provides the
6041         same functionality and it is more clear in case of primitives
6042         associated with abstract interfaces.
6043         (Set_All_Interfaces_DTC_Entity): Removed. As part of the code
6044         clean up, the functionality of this subprogram is now provided
6045         by Set_All_DT_Position.
6046         (Write_DT): New subprogram: a debugging procedure designed to be called
6047         within gdb to display the dispatch tables associated with a tagged
6048         type.
6049         (Collect_All_Interfaces): New subprogram that collects the whole list
6050         of interfaces that are directly or indirectly implemented by a tagged
6051         type.
6052         (Default_Prim_Op_Position): New subprogram that returns the fixed
6053         position in the dispatch table of the default primitive operations.
6054         (Expand_Interface_Actuals): New subprogram to generate code that
6055         displaces all the actuals corresponding to class-wide interfaces to
6056         reference the interface tag of the actual object.
6057         (Expand_Interface_Conversion): New subprogram. Reference the base of
6058         the object to give access to the interface tag associated with the
6059         secondary dispatch table.
6060         (Expand_Interface_Thunk): New subprogram that generates the code of the
6061         thunk. This is required for compatibility with the C+ ABI.
6062         (Make_Abstract_Interface_DT): New subprogram that generate the
6063         declarations for the secondary dispatch tables associated with an
6064         abstract interface.
6065         (Set_All_Interfaces_DTC_Entity): New subprogram that sets the DTC_Entity
6066         attribute for each primitive operation covering interface subprograms
6067         (Expand_Dispatching_Call, Fill_DT_Entry, Make_DT, Set_All_DT_Position):
6068         These subprograms were upgraded to give support to abstract interfaces
6070         * rtsfind.ads (type RE_Id): Add RE_Descendant_Tag,
6071         RE_Is_Descendant_At_Same_Level, RE_Get_Access_Level, and
6072         RE_Set_Access_Level.
6073         (RE_Unit_Table): Add entries for new Ada.Tags operations.
6074         Add support to call the followig new run-time subprograms:
6075         IW_Membership, Register_Interface_Tag, and Set_Offset_To_Top
6077         * sem_ch3.adb (Constant_Redeclaration): Allow a deferred constant to
6078         match its full declaration when both have an access definition with
6079         statically matching designated subtypes.
6080         (Analyze_Component_Declaration): Delete commented out code that was
6081         incorrectly setting the scope of an anonymous access component's type.
6082         (Process_Discriminants): Set Is_Local_Anonymous_Access for the type of
6083         an access discriminant when the containing type is nonlimited.
6084         (Make_Incomplete_Type_Declaration): Create an incomplete type
6085         declaration for a record type that includes self-referential access
6086         components.
6087         (Check_Anonymous_Access_Types): Before full analysis of a record type
6088         declaration, create anonymous access types for each self-referential
6089         access component.
6090         (Analyze_Component_Declaration, Array_Type_Declaration): Indicate that
6091         an access component in this context is a Local_Anonymous_Access, for
6092         proper accessibility checks.
6093         (Access_Definition): Set properly the scope of the anonymous access type
6094         created for a stand-alone access object.
6095         (Find_Type_Of_Object): An object declaration may be given with an access
6096         definition.
6097         (Complete_Subprograms_Derivation): New subprogram used to complete
6098         type derivation of private tagged types implementing interfaces.
6099         In this case some interface primitives may have been overriden
6100         with the partial-view and, instead of re-calculating them, they
6101         are included in the list of primitive operations of the full-view.
6102         (Build_Derived_Record_Type): Modified to give support to private
6103         types implemening interfaces.
6104         (Access_Definition): Reject ALL on anonymous access types.
6105         (Build_Derived_Record_Type): In the case of Ada 2005, allow a tagged
6106         type derivation to occur at a deeper accessibility level than the
6107         parent type.
6108         For the case of derivation within a generic body however, disallow the
6109         derivation if the derived type has an ancestor that is a formal type
6110         declared in the formal part of an enclosing generic.
6111         (Analyze_Object_Declaration): For protected objects, remove the check
6112         that they cannot contain interrupt handlers if not declared at library
6113         level.
6114         (Add_Interface_Tag_Components): New subprogram to add the tag components
6115         corresponding to all the abstract interface types implemented by a
6116         record type or a derived record type.
6117         (Analyze_Private_Extension_Declaration, Build_Derived_Record_Type,
6118         Derived_Type_Declaration, Find_Type_Name, Inherit_Components,
6119         Process_Full_View, Record_Type_Declaration): Modified to give
6120         support to abstract interface types
6121         (Collect_Interfaces): New subprogram that collects the list of
6122         interfaces that are not already implemented by the ancestors
6123         (Process_Full_View): Set flag Has_Partial_Constrained_View appropriately
6124         when partial view has no discriminants and full view has defaults.
6125         (Constrain_Access): Reject a constraint on a general access type
6126         if the discriminants of the designated type have defaults.
6127         (Access_Subprogram_Declaration): Associate the Itype node with the inner
6128         full-type declaration or subprogram spec. This is required to handle
6129         nested anonymous declarations.
6130         (Analyze_Private_Extension_Declaration, Build_Derived_Record_Type,
6131         Derived_Type_Declaration, Find_Type_Name, Inherit_Components,
6132         Process_Full_View, Record_Type_Declaration): Modified to give
6133         support to abstract interface types
6134         (Derive_Subprograms): Addition of a new formal to indicate if
6135         we are in the case of an abstact-interface derivation
6136         (Find_Type_Of_Subtype_Indic): Moved from the body of the package
6137         to the specification because it is requied to analyze all the
6138         identifiers found in a list of interfaces
6140         * debug.adb: Complete documentation of flag "-gnatdZ"
6142         * exp_ch3.adb: Implement config version of persistent_bss pragma
6143         (Check_Stream_Attributes): Use Stream_Attribute_Available instead of
6144         testing for TSS presence to properly enforce visibility rules.
6145         (Freeze_Record_Type): Code cleanup. Modified to call the subprogram
6146         Make_Abstract_Interfaces_DT to generate the secondary tables
6147         associated with abstract interfaces.
6148         (Build_Init_Procedure): Modified to initialize all the tags
6149         corresponding.
6150         (Component_Needs_Simple_Initialization): Similar to other tags,
6151         interface tags do not need initialization.
6152         (Freeze_Record_Type): Modified to give support to abstract interface
6153         types.
6154         (Expand_N_Object_Declaration): Do not generate an initialization for
6155         a scalar temporary marked as internal.
6157         * exp_ch6.adb (Add_Simple_Call_By_Copy_Code): Handle properly an
6158         in-out parameter that is a component in an initialization procedure,
6159         whose constraint might depend on discriminants, and that may be
6160         misaligned because of packing or representation clauses.
6161         (Is_Legal_Copy): New predicate to determine whether a possibly
6162         misaligned in-out actual can actually be passed by copy/return. This
6163         is an error in case the type is by_reference, and a warning if this is
6164         the consequence of a DEC import pragma on the subprogram.
6165         (Expand_Call, Freeze_Subprogram): Modified to give support to abstract
6166         interface types
6167         (Expand_Inlined_Call): Mark temporary generated for the return value as
6168         internal, so that no useless scalar normalization is generated for it.
6169         (Expand_N_Subprogram_Declaration): Save unanalyzed body so calls to
6170         null procedure can always be inlined.
6171         (Expand_N_Subprogram_Declaration): If this is the declaration of a null
6172         procedure, generate an explicit empty body for it.
6174         * exp_util.ads, exp_util.adb (Find_Interface_ADT): New subprogram.
6175         Given a type implementing an interface, returns the corresponding
6176         access_disp_table value.
6177         (Find_Interface_Tag): New subprogram. Given a type implementing an
6178         interface, returns the record component containing the tag of the
6179         interface.
6180         (Find_Interface_Tag): New overloaded subprogram. Subsidiary to the
6181         previous ones that return the corresponding tag and access_disp_table
6182         entities.
6183         (Is_Predefined_Dispatching_Operation): Determines if a subprogram
6184         is a predefined primitive operation.
6185         (Expand_Subtype_From_Expr): If the expression is a selected component
6186         within an initialization procedure, compute its actual subtype, because
6187         the component may depend on the discriminants of the enclosing record.
6189         * i-cpp.ads, i-cpp.adb:
6190         This package has been left available for compatibility with previous
6191         versions of the frontend. As part of the new layout this is now a
6192         dummy package that uses declarations available at a-tags.ads
6194         * par-ch3.adb (P_Identifier_Declarations): Give an error for use of
6195         "constant access" and "aliased [constant] access" when not compiling
6196         with -gnat05.
6197         Suppress Ada 2005 keyword warning if -gnatwY used
6198         (P_Identifier_Declarations): Add support for object declarations with
6199         access definitions.
6200         (Private_Extension_Declaration): Complete the documentation
6201         (P_Derived_Type_Def_Or_Private_Ext_Decl): Fill the inteface_list
6202         attribute in case of private extension declaration
6203         (P_Type_Declaration): Mark as "abstract" the type declarations
6204         corresponding with protected, synchronized and task interfaces
6205         (P_Declarative_Items): "not" and "overriding" are overriding indicators
6206         for a subprogram or instance declaration.
6208         * sem_ch12.adb (Analyze_Subprogram_Instantiation): Verify that an
6209         instantiation that is a dispatching operation has controlling access
6210         parameters that are null excluding.
6211         Save and restore Ada_Version_Explicit, for implementation of AI-362
6212         (Validate_Derived_Type_Instance): Add check for abstract interface
6213         types.
6214         (Analyze_Formal_Package): Establish Instantiation source for the copy of
6215         the generic that is created to represent the formal package.
6216         (Analyze_Package_Instantiation): Instantiate body immediately if the
6217         package is a predefined unit that contains inlined subprograms, and
6218         we are compiling for a Configurable_Run_Time.
6219         (Instantiate_Formal_Subprogram): Indicate that null default subprogram
6220         If the program has a null default, generate an empty body for it.
6222         * sem_ch6.adb, sem_ch9.adb (Analyze_Subprograms_Declaration): Update
6223         error message condition, null procedures are correctly detected now.
6224         (New_Overloaded_Entity): Bypass trivial overriding indicator check
6225         for subprograms in the context of protected types. Instead, the
6226         indicator is examined in Sem_Ch9 while analysing the subprogram
6227         declaration.
6228         (Check_Overriding_Indicator): Check consistency of overriding indicator
6229         on subprogram stubs as well.
6230         (Analyze_Subprogram_Declaration): Diagnose null procedures declared at
6231         the library level.
6232         (Analize_Subprogram_Specification): When analyzing a subprogram in which
6233         the type of the first formal is a concurrent type, replace this type
6234         by the corresponding record type.
6235         (Analyze_Subprogram_Body): Undo the previous work.
6236         (Analyze_Procedure_Call): If the call has the form Object.Op, the
6237         analysis of the prefix ends up analyzing the call itself, after which
6238         we are done.
6239         (Has_Interface_Formals): New subprogram subsidiary to analyze
6240         subprogram_specification that returns true if some non
6241         class-wide interface subprogram is found
6242         (New_Overloaded_Entity): Modified to give support to abstract
6243         interface types
6244         (Conforming_Types): In Ada 2005 mode, conformance checking of anonymous
6245         access to subprograms must be recursive.
6246         (Is_Unchecked_Conversion): Improve the test that recognizes
6247         instantiations of Unchecked_Conversion, and allows them in bodies that
6248         are to be inlined by the front-end. When the body comes from an
6249         instantiation, a reference to Unchecked_Conversion will be an
6250         Expanded_Name, even though the body has not been analyzed yet.
6251         Replace Is_Overriding and Not_Overriding in subprogram_indication with
6252         Must_Override and Must_Not_Override, to better express intent of AI.
6253         (Analyze_Subprogram_Body): If an overriding indicator is given, check
6254         that it is consistent with the overrinding status of the subprogram
6255         at this point.
6256         (Analyze_Subprogram_Declaration): Indicate that a null procedure is
6257         always inlined.
6258         If the subprogram is a null procedure, indicate that it does not need
6259         a completion.
6261         * sem_disp.adb (Check_Controlling_Type): Give support to entities
6262         available through limited-with clauses.
6263         (Check_Dispatching_Operation): A stub acts like a body, and therefore is
6264         allowed as the last primitive of a tagged type if it has no previous
6265         spec.
6266         (Override_Dispatching_Operation, Check_Dispatching_Operation): Modified
6267         to give support to abstract interface types
6269         * sem_res.adb (Valid_Conversion): Perform an accessibility level check
6270         in the case where the target type is an anonymous access type of an
6271         object or component (that is, when Is_Local_Anonymous_Access is true).
6272         Prevent the special checks for conversions of access discriminants in
6273         the case where the discriminant belongs to a nonlimited type, since
6274         such discriminants have their accessibility level defined in the same
6275         way as a normal component of an anonymous access type.
6276         (Resolve_Allocator): When an allocator's designated type is a class-wide
6277         type, check that the accessibility level of type given in the
6278         allocator's expression or subtype indication is not statically deeper
6279         than the level of the allocator's access type.
6280         (Check_Discriminant_Use): Diagnose discriminant given by an expanded
6281         name in a discriminant constraint of a record component.
6282         (Resolve_Explicit_Dereference): Do not check whether the type is
6283         incomplete when the dereference is a use of an access discriminant in
6284         an initialization procedure.
6285         (Resolve_Type_Conversion): Handle conversions to abstract interface
6286         types.
6287         (Valid_Tagged_Conversion): The conversion of a tagged type to an
6288         abstract interface type is always valid.
6289         (Valid_Conversion): Modified to give support to abstract interface types
6290         (Resolve_Actuals): Enable full error reporting on view conversions
6291         between unrelated by_reference array types.
6292         The rule for view conversions of arrays with aliased components is
6293         weakened in Ada 2005.
6294         Call to obsolescent subprogram is now considered to be a violation of
6295         pragma Restrictions (No_Obsolescent_Features).
6296         (Check_Direct_Boolean_Operator): If the boolean operation has been
6297         constant-folded, there is nothing to check.
6298         (Resolve_Comparison_Op, Resolve_Equality_Op, Resolve_Boolean_Op): Defer
6299         check on possible violation of restriction No_Direct_Boolean_Operators
6300         until after expansion of operands, to prevent spurious errors when
6301         operation is constant-folded.
6303         * sem_type.ads, sem_type.adb (Covers, Intersect_Types, Specific_Type,
6304         Has_Compatible_Type): Modified to give support to abstract interface
6305         types.
6306         (Interface_Present_In_Ancestor): New function to theck if some ancestor
6307         of a given type implements a given interface
6309         * sem_ch4.adb (Analyze_Call): Handle properly an indirect call whose
6310         prefix is a parameterless function that returns an access_to_procedure.
6311         (Transform_Object_Operation): Handle properly function calls of the
6312         form Obj.Op (X), which prior to analysis appear as indexed components.
6313         (Analyze_One_Call): Complete the error notification to help new Ada
6314         2005 users.
6315         (Analyze_Allocator): For an allocator without an initial value, where
6316         the designated type has a constrained partial view, a discriminant
6317         constraint is illegal.
6319 2005-06-14  Robert Dewar  <dewar@adacore.com>
6321         * a-textio.adb (Set_Col): Fix two errors noticed recently, having to
6322         do with treatment of Set_Col when positioned at end of line character.
6324 2005-06-14  Robert Dewar  <dewar@adacore.com>
6326         * atree.adb: (Elist*): Protect against uninitialized field
6328 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6330         * checks.adb (Install_Null_Excluding_Check): Do not generate checks
6331         for an attribute reference that returns an access type.
6332         (Apply_Discriminant_Check): No need for check if (designated) type has
6333         constrained partial view.
6335         (Apply_Float_Conversion_Check): Generate a short-circuit expression for
6336         both bound checks, rather than a conjunction.
6337         (Insert_Valid_Check): If the expression is an actual that is an indexed
6338         component of a bit-packed array, force expansion of the packed element
6339         reference, because it is specifically inhibited elsewhere.
6341 2005-06-14  Vincent Celier  <celier@adacore.com>
6343         * clean.adb (Clean_Project): Correctly delete executable specified as
6344         absolute path names.
6346         * make.adb (Gnatmake): Allow relative executable path names with
6347         directory information even when project files are used.
6348         (Change_To_Object_Directory): Fail gracefully when unable to change
6349         current working directory to object directory of a project.
6350         (Gnatmake): Remove exception handler that could no longer be exercized
6351         (Compile_Sources.Compile): Use deep copies of arguments, as some of them
6352         may be deallocated by Normalize_Arguments.
6353         (Collect_Arguments): Eliminate empty arguments
6355         * gnatcmd.adb (All_Projects): New Boolean flag, initialized to False,
6356         and set to True when -U is used for GNAT PRETTY or GNAT METRIC.
6357         (Check_Project): Return False when Project is No_Project. Return True
6358         when All_Projects is True.
6359         (GNATCmd): Recognize switch -U for GNAT PRETTY and GNAT METRIC and set
6360         All_Projects to True.
6361         Minor reformatting
6363 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6364             Javier Miranda  <miranda@adacore.com>
6365             Thomas Quinot  <quinot@adacore.com>
6366             Robert Dewar  <dewar@adacore.com>
6367             Hristian Kirtchev  <kirtchev@adacore.com>
6368             Gary Dismukes  <dismukes@adacore.com>
6370         * einfo.ads, einfo.adb (Is_Local_Anonymous_Access): New flag on
6371         anonymous access types, to indicate that the accessibility level of
6372         the type is determined by that of the enclosing declaration.
6373         (Has_Persistent_BSS): New flag
6374         (Set_Is_Primitive_Wrapper): Upgrade the barrier to allow the usage
6375         of this attribute with functions.
6376         (Is_Primitive_Wrapper): Remove the barrier.
6377         (Has_Specified_Stream_Input, Has_Specified_Stream_Output,
6378         Has_Specified_Stream_Read, Has_Specified_Stream_Write):
6379         New subprograms.
6380         (Set_Has_Specified_Stream_Input, Set_Has_Specified_Stream_Output,
6381         Set_Has_Specified_Stream_Read, Set_Has_Specified_Stream_Write):
6382         New subprograms.
6383         (Is_Pure_Unit_Access_Type): New flag
6384         (Abstract_Interfaces): Complete the assertion to cover all usages.
6385         (Set_Is_Interface): Complete the assertion to cover all usages.
6386         (Is_Primitive_Wrapper): New attribute.
6387         (Is_Obsolescent): Now applies to all entities (though it is only set
6388         for subprograms currently)
6389         New flag:  Has_Constrained_Partial_View, to implemente Ada 2005 AI-363,
6390         which solves various problems concerning access subtypes.
6391         (Has_Persistent_BSS): New flag
6392         (Is_Primitive_Wrapper, Set_Primitive_Wrapper): Code cleanup.
6393         Remove these subprograms because this attribute is currently
6394         not used.
6395         New entity flags:
6396         Has_Specified_Stream_Input (Flag190)
6397         Has_Specified_Stream_Output (Flag191)
6398         Has_Specified_Stream_Read (Flag192)
6399         Has_Specified_Stream_Write (Flag193)
6400         Present in all type and subtype entities. Set for a given view if the
6401         corresponding stream-oriented attribute has been defined by an
6402         attribute definition clause. When such a clause occurs, a TSS is set
6403         on the underlying full view; the flags are used to track visibility of
6404         the attribute definition clause for partial or incomplete views.
6405         (Is_Pure_Unit_Access_Type): New flag
6406         Clarify use of Is_Internal.
6407         (Is_Primitive_Wrapper): New attribute present in primitive subprograms
6408         internally generated to wrap the invocation of tasks and protected
6409         types that implement interfaces.
6410         (Implementation_Base_Type): Documentation correction
6411         (Is_Obsolescent): Now applies to all entities (though it is only set
6412         for subprograms currently)
6413         New flag:  Has_Constrained_Partial_View, to implement Ada 2005 AI-363,
6414         which solves various problems concerning access subtypes.
6416         * exp_ch9.adb (Type_Conformant_Parameters): Introduce mode conformance
6417         for examined parameters. Identify unequal parameter list lengths as
6418         non-conformant parameters.
6419         (Overriding_Possible): Do not check for "All" qualifier in declaration
6420         of controlling access parameter, following prescription of AI-404.
6421         (Build_Entry_Wrapper_Spec, Build_Entry_Wrapper_Body): New subprograms
6422         that build the procedure body that wraps an entry invocation
6423         (Build_Corresponding_Record, Build_Protected_Sub_Specification,
6424         Expand_N_Protected_Body, Expand_N_Protected_Type_Declaration,
6425         Expand_N_Task_Body, Expand_N_Task_Type_Declaration): Modified to
6426         give support to abstract interface types
6428         * freeze.adb (Freeze_Entity): Issue error message if
6429         Is_Pure_Unit_Access_Type set, unless we are in Ada 2005 mode and the
6430         type has no storage pool (Ada 2005) AI-366.
6431         Also modified to give support to abstract interface types
6432         (Freeze_Subprogram): Issue an error for a dispatching subprogram with an
6433         Inline_Always pragma.
6435         * par-ch9.adb (P_Task_Items): Reserved words "not" or "overriding" may
6436         now begin an entry declaration.
6437         (P_Entry_Or_Subprogram_With_Indicator): New procedure in
6438         P_Protected_Operation_Declaration_Opt. Parse an entry declaration or
6439         a subprogram declaration preceded by an overriding indicator.
6440         (P_Protected_Operation_Declaration_Opt): Add case for parsing entry
6441         declarations or subprogram declarations preceded by reserved words
6442         "not" or "overriding".
6443         (P_Entry_Declaration): Update comment. Parse and check overriding
6444         indicator, set semantic flags of entry declarations.
6445         (P_Task): New error message in case of private applied
6446         to a task type declaration.
6447         (P_Protected): New error message in case of private applied
6448         to a task type declaration.
6450         * sem_ch7.adb (Preserve_Full_Attributes): Modified to handle the case
6451         in which the full view of a type implementing an interface is a
6452         concurrent type.
6453         (Has_Overriding_Pragma): Remove obsolete implementation of AI-218.
6454         Declare_Inherited_Private_Subprograms): If an explicit operation
6455         overrides an operation that is inherited in the private part, mark the
6456         explicit one as overriding, to enable overriding indicator checks.
6457         (Preserve_Full_Attributes): Propagate Is_Unchecked_Union attribute from
6458         full view to partial view, to simplify handling in back-end.
6460         * sprint.adb: Print interface lists where needed: derived types,
6461         protected types, task types.
6462         output "is null" for null procedures. Part of implementation of
6464         * sem_cat.adb (Validate_Access_Type_Declaration): Implement AI-366
6465         relaxation of rules for access types in pure, shared passive partitions.
6467         * exp_strm.adb (Build_Mutable_Record_Read_Procedure): Reorganize to
6468         first read discriminants into temporary objects, performing checks on
6469         the read values, then possibly performing discriminant checks on the
6470         actual (if it is constrained), and only finally reading the components
6471         into a constrained temporary object.
6472         (Build_Elementary_Input_Call): Adjust the specific circuitry for the
6473         case of reading discriminants of a mutable record type to recognize
6474         the new form of the code generated by
6475         Build_Mutable_Record_Read_Procedure.
6477         * exp_tss.ads, exp_tss.adb (Make_Init_Proc_Name): Reimplement in terms
6478         of a simple call to Make_TSS_Name.
6479         (Make_TSS_Name_Local): Add the TSS name as the last thing in the name
6480         buffer, in order for Is_TSS to work correctly on local TSS names.
6482         * sem_attr.ads, sem_attr.adb (Resolve_Attribute, case 'Access): Use flag
6483         Is_Local_Anonymous_Access to check legaliy of attributes in the
6484         context of  access components and stand-alone access objects.
6485         (Stream_Attribute_Available): In Ada 95 mode, a stream attribute is
6486         treated as available for a limited private type if there is an
6487         attribute_definition_clause that applies to its full view, but not in
6488         other cases where the attribute is available for the full view
6489         (specifically, the sole fact that the full view is non-limited does not
6490         make the attribute available for the partial view).
6491         (Build_Access_Subprogram_Type): Diagnose attempt to apply 'access to a
6492         non-overloaded intrinsic subprogram.
6493         (Check_Stream_Attribute): Reject an attribute reference for an
6494         unavailable stream attribute even if the prefix is not a limited type
6495         (case of a 'Input attribute reference for an abstract, non-classwide
6496         type)
6497         (Stream_Attribute_Available): New function to determine whether a stream
6498         attribute is available at a place.
6499         (Check_Attribute): Use Stream_Attribute_Available instead of just
6500         testing for TSS presence on the implementation base type.
6501         (Analyze_Attribute): Modified to give support to task interfaces.
6502         (Analyze_Access_Attribute): Add error check for use of an Access (or
6503         Unrestricted_Access) attribute with a subprogram marked as
6504         Inline_Always.
6505         (Analyze_Attribute, case Attribute_Address): Add error check for use of
6506         an Address attribute with a subprogram marked as Inline_Always.
6507         Update Eval_Attribute to handle new value of Width from AI-395
6509         * sem_ch13.adb (Analyze_Stream_TSS_Definition): New subprogram.
6510         (Analyze_Attribute_Definition_Clause, cases Input, Output, Read, Write):
6511         Factor common code across the stream-oriented attribute circcuits into
6512         a new subprogram, Analyze_Stream_TSS_Definition. The new uniform
6513         processing is functionally identical to the previous duplicated one,
6514         except that an expression that denotes an abstract subprogram will now
6515         be rejected, as mandated by AI-195 item 5.
6517         * sem_util.ads, sem_util.adb (Type_Access_Level): Use flag
6518         Is_Local_Anonymous_Access to apply accessibility checks to access
6519         components and stand-alone access objects.
6520         (Has_Discriminant_Dependent_Constraint): Moved to spec for use
6521         elsewhere.
6522         (Is_Potentially_Persistent_Type): New function
6523         (Is_Dependent_Component_Of_Mutable_Object): If the enclosing object is
6524         a heap-object whose type has a constrained partial view, the object is
6525         unconstrained and the component may depend on a discriminant, making its
6526         renaming illegal.
6528         * sinfo.ads, sinfo.adb
6529         (Must_Not_Override): Flag applicable to N_Entry_Declaration.
6530         (Must_Override): Flag applicable to N_Entry_Declaration.
6531         Indicate that interface_list can appear in single task and single
6532         protected declarations.
6533         Replace Is_Overriding and Not_Overriding with Must_Override and
6534         Must_Not_Override, to better express intent of AI.
6535         Is_Overriding, Not_Overriding: Ada2005 flags that indicate the presence
6536         of an overriding indicator in a subprogram or instance.
6537         Ada 2005 (AI-248) Null_Present can appear in a procedure specification.
6538         Add the overriding indicator [[not] overriding] construct to the
6539         following grammar productions:
6540          ENTRY_DECLARATION
6541          GENERIC_INSTANTIATION
6542          SUBPROGRAM_SPECIFICATION
6544         * par-ch10.adb (P_Compilation_Unit): Subprogram declaration or body
6545         can start with an overriding indicator.
6547         * par-ch6.adb (P_Subprogram): Recognize overriding indicator, and set
6548         flags accordingly on subrogram specifications or instances.
6550         * sem_ch8.adb:
6551         (Analyze_Subprogram_Renaming): For a renaming_as_body, verify that the
6552         overriding_indicator, if present, is consistent with status of spec.
6553         Improve error message for null-excluding checks on controlling access
6554         parameters.
6555         (Check_In_Previous_With_Clause): Protect the frontend against
6556         previously reported critical errors in the context clauses.
6557         Save and restore Ada_Version_Explicit, for implementation of AI-362
6558         (Analyze_Subprogram_Renaming): If the new entity is a dispatching
6559         operation verify that controlling formals of the renamed entity that
6560         are access parameters are explicitly non-null.
6561         (Find_Expanded_Name): Improve error message when prefix is an illegal
6562         reference to a private child unit.
6564         * exp_imgv.adb, s-imgwch.ads, s-imgwch.adb, s-valwch.adb,
6565         s-valwch.ads, s-widwch.adb, s-widwch.ads, s-wwdcha.adb, s-wwdwch.adb:
6566         Rewrite to correspond to new wide character names in AI-395
6568         * par-ch12.adb (P_Formal_Subprogram_Declaration): Recognize null
6569         default procedures.
6571 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6572             Robert Dewar  <dewar@adacore.com>
6574         * errout.ads, errout.adb (Error_Msg_NW): Only emit warning on user
6575         code, not on the bodies of predefined operations, to cut down on
6576         spurious noise.
6578 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6580         * exp_aggr.adb (Aggr_Size_OK): An array with no components can always
6581         be expanded in place. The size computation does not require a
6582         subtraction, which would raise an exception on a compiler built with
6583         assertions when the upper bound is Integer'first.
6584         (Flatten): For an array of composite components, take into account the
6585         size of the components to determine whether it is safe to expand the
6586         array into a purely positional representation.
6588 2005-06-14  Thomas Quinot  <quinot@adacore.com>
6590         * exp_ch2.adb (Param_Entity): Take the case of an expanded_name
6591         denoting a formal parameter into account.
6593 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6595         * exp_ch7.adb (Find_Node_To_Be_Wrapped): If the node appears within
6596         the entry_call alternative of a conditional entry call, wrap the
6597         conditional entry call itself.
6599 2005-06-14  Nicolas Setton  <setton@adacore.com>
6600             Ed Schonberg  <schonberg@adacore.com>
6602         * exp_dbug.ads, exp_dbug.adb (Get_Variant_Part): Fix the encoding of
6603         the "simple_choice" member in a variant record, in accordance with the
6604         description in the package spec: the information output for a constant
6605         should be "S number", not "SS number".
6606         (Get_Encoded_Name): Return at once if not generating code. Avoids name
6607         overflow problem when compiling with -gnatct, for ASIS/gnatmetrics.
6609 2005-06-14  Thomas Quinot  <quinot@adacore.com>
6611         * exp_dist.adb (Add_RACW_Primitive_Declarations_And_Bodies): For an
6612         RACW without any primitives, do not generate the if statement for
6613         dispatching by name in the PolyORB/DSA case, as it would be malformed
6614         (it would have an Elsif_Parts list that is not No_List, but with a
6615         length of 0).
6617 2005-06-14  Robert Dewar  <dewar@adacore.com>
6619         * exp_intr.adb, par-ch5.adb: Minor fix to error message text
6621 2005-06-14  Jose Ruiz  <ruiz@adacore.com>
6623         * fe.h: Add entry for Opt.Exception_Locations_Suppressed so that gigi
6624         can determine whether pragma Suppress_Exception_Locations is in effect.
6626         * utils2.c (build_call_raise): Do not pass the file name to the
6627         exception handler if pragma Suppress_Exception_Locations is in effect.
6628         (build_allocator): Add and process arg IGNORE_INIT_TYPE.
6630 2005-06-14  Emmanuel Briot  <briot@adacore.com>
6632         * g-debpoo.adb (Deallocate, Dereference): Improve output.
6634 2005-06-14  Nicolas Roche  <roche@adacore.com>
6636         * g-diopit.adb (Wildcard_Iterator): Return directly if Path is equal
6637         to ""
6638         (Next_Level): Fix minor bug in handling of ../dir case
6639         (Read): Add dir separator to Directory name so that "" is understood as
6640          "/"
6642 2005-06-14  Pascal Obry  <obry@adacore.com>
6644         * g-dynhta.ads, g-dynhta.adb (Reset): Free the table itself after
6645         releasing the items.
6647 2005-06-14  Vincent Celier  <celier@adacore.com>
6648             Cyrille Comar  <comar@adacore.com>
6650         * g-os_lib.ads, g-os_lib.adb (Non_Blocking_Spawn): Two new versions
6651         with output file descriptor and with output file name.
6652         (Dup, Dup2): Now global procedures as they are used by two subprograms
6653         (Copy): Allocate the 200K buffer on the heap rather than on the stack.
6655 2005-06-14  Thomas Quinot  <quinot@adacore.com>
6657         PR ada/6717
6659         * g-socket.ads, g-socket.adb (Inet_Addr): Special case the all-ones
6660         broadcast address.
6661         (Create_Selector): Bind listening socket used to create the signalling
6662         socket pair to 127.0.0.1 to limit the scope for 'theft' of connection.
6663         Set listen backlog to 1 to ensure that we detect socket theft by a
6664         failure of our own connect(2) call.
6665         (Check_Selector): Improve documentation of the selector mechanism.
6666         (Broadcast_Inet_Addr): New constant.
6668 2005-06-14  Gary Dismukes  <dismukes@adacore.com>
6670         * layout.adb (Discrimify): Remove resetting of Vtype to the underlying
6671         type which turns out to be an incomplete and incorrect fix.
6672         (Layout_Array_Type): Use Underlying_Type when checking whether the scope
6673         of the type is declared in a record (for determination of insertion
6674         type).
6675         (SO_Ref_From_Expr): Test whether Vtype denotes a partial or full view of
6676         a private type and ensure that the primary entity is used for the type
6677         of the newly created function's V formal by taking the Etype of the
6678         view.
6680 2005-06-14  Javier Miranda  <miranda@adacore.com>
6681             Jose Ruiz  <ruiz@adacore.com>
6682             Robert Dewar  <dewar@adacore.com>
6683             Ed Schonberg  <schonberg@adacore.com>
6685         * lib-load.ads, lib-load.adb (Load_Unit): Addition of a new parameter
6686         that indicates if we are parsing a compilation unit found in a
6687         limited-with clause.
6688         It is use to avoid the circularity check.
6690         * par.ads, par.adb (Par): Addition of a new parameter to indicate if
6691         we are parsing a compilation unit found in a limited-with clause. This
6692         is use to avoid the circularity check.
6694         * par-load.adb (Load): Indicate Lib.Load_Unit if we are loading the
6695         unit as a consequence of parsing a limited-with clause. This is used
6696         to avoid the circularity check.
6698         * sem_ch10.adb: Suppress Ada 2005 unit warning if -gnatwY used
6699         (Analyze_Context): Limited-with clauses are now allowed
6700         in more compilation units.
6701         (Analyze_Subunit_Context, Check_Parent): Protect the frontend
6702         againts previously reported critical errors in context clauses
6703         (Install_Limited_Withed_Unit): Code cleanup plus static detection
6704         of two further errors: renamed subprograms and renamed packages
6705         are not allowed in limited with clauses.
6706         (Install_Siblings): Do not install private_with_clauses on the package
6707         declaration for a non-private child unit.
6708         (Re_Install_Parents): When a parent of the subunit is reinstalled,
6709         reset visibility of child units properly.
6710         (Install_Withed_Unit): When a child unit appears in a with_clause of its
6711         parent, it is immediately visible.
6713 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6714             Emmanuel Briot  <briot@adacore.com>
6716         * lib-xref.ads, lib-xref.adb (Generate_Definition): Treat any entity
6717         declared within an inlined body as referenced, to prevent spurious
6718         warnings.
6719         (Output_One_Ref): If an entity renames an array component, indicate in
6720         the ALI file that this aliases (renames) the array. Capture as well
6721         function renamings that rename predefined operations.
6722         Add information about generic parent for package and subprogram
6723         instances.
6724         (Get_Type_Reference): For a subtype that is the renaming of an actual in
6725         an instantiation, use the first_subtype to ensure that we don't generate
6726         cross-reference information for internal types.
6727         For objects and parameters of a generic private type, retain the '*'
6728         indicator to distinguish such an entity from its type.
6730         * ali.ads (Xref_Entity_Record): New fields Iref_File_Num and Iref_Line,
6731         to store information about instantiated entities.
6733         * ali.adb (Scan_ALI): Add support for parsing the reference to the
6734         generic parent
6736         * xref_lib.adb (Skip_To_Matching_Closing_Bracket): New subprogram
6737         (Parse_Identifier_Info, Parse_Token): Add support for the generic parent
6738         information.
6740 2005-06-10  Doug Rupp  <rupp@adacore.com>
6741             Arnaud Charlet  <charlet@adacore.com>
6742             Olivier Hainque  <hainque@adacore.com>
6743             Jose Ruiz  <ruiz@adacore.com>
6745         * Make-lang.in: Add initialize.o when needed.
6746         Remove obsolete references to RT_FLAGS.
6747         Add missing dependencies for sdefault.o
6749         * initialize.c: New file.
6751         * init.c [VMS] Declare ADA$ externs weak to fix build problem in IVMS.
6752         [VMS] cond_signal_table: Fix problem in declaration.
6753         [VMS] __gnat_error_handler: rewrite.
6754         Move all __gnat_initialize() routines to initialize.c
6755         Specialize the former "hpux" section to "hppa hpux", as this is what the
6756         section really is here for and we now have other hpux ports that need
6757         different contents.
6758         (__gnat_adjust_context_for_raise) i386-linux: First version of this
6759         function for this target. Adjust PC by one in the machine context. This
6760         adjustment was previously done in the MD_FALLBACK_FRAME_STATE_FOR, but
6761         it is more reliable to do that in the signal handler itself.
6762         (__gnat_install_handler) i386-linux: Set SA_SIGINFO in the sigaction
6763         flags, so that the handler is passed the context structure to adjust
6764         prior to the raise.
6765         (__gnat_error_handler) i386-linux: Adjust the signature to match what a
6766         SA_SIGINFO sigaction should look like. Call
6767         __gnat_adjust_context_for_raise before actually raising. Cleanup unused
6768         Machine_State_Operations stuff.
6769         Add conditional code so that the x86_64 is also supported.
6771 2005-06-14  Pascal Obry  <obry@adacore.com>
6773         * mdll.adb (Get_Dll_Name): New routine that returns the DLL name given
6774         the library name.
6776 2005-06-14  Robert Dewar  <dewar@adacore.com>
6778         * opt.ads, opt.adb: New flags for persistent_bss mode
6779         Add Ada_Version_Explicit, for implementation of AI-362
6780         Add Assertions_Enabled_Config and associated handling
6781         Needed since setting can be changed with Assertion_Policy pragma
6782         Add new flag Warn_On_Ada_2005_Compatibility
6784         * switch-c.adb: Recognize -gnatwy/Y
6785         Set Ada_Version_Explicit, for implementation of AI-362
6786         The -gnatg switch now includes -gnatyu
6788         * usage.adb: Add -gnatwy/Y
6789         Remove wrong asterisk on -gnatwX line
6790         Add line for -gnatyu switch
6792 2005-06-14  Vincent Celier  <celier@adacore.com>
6794         * osint.adb (Add_Default_Search_Dirs): Put source and object
6795         directories of project files before directories coming from
6796         ADA_INCLUDE_PATH and ADA_OBJECTS_PATH.
6798 2005-06-14  Robert Dewar  <dewar@adacore.com>
6800         PR ada/15613
6802         * par-ch2.adb (Scan_Pragma_Argument): New procedure
6803         (P_Pragma): Implement RM 2.8(4) check for no pos args after named args
6805 2005-06-14  Vincent Celier  <celier@adacore.com>
6807         * prep.adb (Preprocess): Ignore error when scanning the first token of
6808         a line.
6810 2005-06-14  Vincent Celier  <celier@adacore.com>
6812         * prj-nmsc.adb (Suffix_For): Change default suffix for C++ to ".cpp"
6813         (Check_Stand_Alone_Library): If the specified reference symbol file does
6814         not exist, only issue a warning when the symbol policy is not
6815         Controlled. And, when symbol policy is Compliant, set the symbol
6816         policy to Autonomous.
6818 2005-06-14  Vincent Celier  <celier@adacore.com>
6820         * prj-part.adb (Pre_Parse_Context_Clause): Call Set_Is_Not_Last_In_List
6821         when the project file in a with clause is not the last one, that is the
6822         project file name is followed by a comma.
6823         * prj-pp.adb: (First_With_In_List): New Boolean global variable
6824         (Print): Issue list of project files separated by commas in with clauses
6825         according to the values returned by Is_Not_Last_In_List.
6826         * prj-tree.ads, prj-tree.adb: (Is_Not_Last_In_List): New function
6827         (Set_Is_Not_Last_In_List): New procedure
6829 2005-06-14  Eric Botcazou  <ebotcazou@adacore.com>
6831         * s-atacco.ads: Put a pragma No_Strict_Aliasing on Object_Pointer.
6833 2005-06-14  Robert Dewar  <dewar@adacore.com>
6835         * scng.adb: Add call to new Check_EOF routine
6836         (Accumulate_Checksum): Properly handle wide wide char >= 2 ** 24
6837         Add some comments regarding wide character handling
6839         * style.ads, styleg.ads, styleg.adb: Implement new style switch -gnatyu
6841         * stylesw.ads, stylesw.adb: Implement new style switch -gnatyu
6843         * g-utf_32.ads, g-utf_32.adb (Is_UTF_32_Non_Graphic): Other_Format
6844         characters are now considered graphic characters and hence yield false
6845         in this call.
6847         * nmake.adt: Modify header so that xnmake does not generate output
6848         files with multiple blank lines.
6850         * treeprs.adt: Remove a blank line so that output from xtreeprs does
6851         not have an extra blank line
6853 2005-06-14  Gary Dismukes  <dismukes@adacore.com>
6855         * sem_aggr.adb (Aggregate_Constraint_Checks): Apply a conversion to the
6856         expression when the component type is an anonymous access type to
6857         ensure that appropriate accessibility checks are done.
6859         * sem_ch5.adb (Analyze_Assignment): Apply a implicit conversion to the
6860         expression of an assignment when the target object is of an anonymous
6861         access type. This ensures that required accessibility checks are done.
6862         (One_Bound): Move the check for type Universal_Integer to
6863         Process_Bounds.
6864         (Process_Bounds): Check whether the type of the preanalyzed range is
6865         Universal_Integer, and in that case set Typ to Integer_Type prior
6866         to setting the type of the original range and the calls to One_Bound.
6868 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6870         * sem_case.adb (Expand_Others_Choice): Improve warning.
6872 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6874         * sem_eval.adb (Subtypes_Statically_Match): Use discriminant
6875         constraint of full view if present, when other type is discriminated.
6876         (Eval_Relational_Op): Recognize tests of pointer values against Null,
6877         when the pointer is known to be non-null, and emit appropriate warning.
6879 2005-06-14  Robert Dewar  <dewar@adacore.com>
6880             Ed Schonberg  <schonberg@adacore.com>
6882         PR ada/10671
6884         * sem_prag.adb: Implement pragma Persistent_BSS
6885         Remove obsolete pragma Persistent_Data, Persistent_Object
6886         Set Ada_Version_Explicit, for implementation of AI-362
6887         Test Ada_Version_Explicit for Preelaborate_05 and Pure_05
6888         Add processing for pragma Pure_05 and Preelaborate_05
6889         Add processing for Assertion_Policy pragma
6890         Add pragma identifiers for Assert
6891         (Analyze_Pragma, case Assert): Check number of arguments
6892         (Process_Inline): Additional guard against an illegal program, where the
6893         argument of the pragma is undefined, and warnings on redundant
6894         constructs are enabled.
6895         (Analyze_Pragma, case Obsolescent): Allow an optional second argument
6896         Ada_05 to this pragma, specifying that the pragma is only active in
6897         Ada_05 mode.
6898         (Check_Arg_Order): New procedure
6899         Add appropriate calls to this procedure throughout
6900         Also throughout, check entity name before doing any other checks
6902         * snames.h snames.ads, snames.adb: Add pragma Persistent_BSS
6903         Remove obsolete pragma Persistent_Data, Persistent_Object
6904         Add entries for pragma Pure_05 and Preelaborate_05
6905         Add entries for Assertion_Policy pragma and associated names
6906         Add some names for pragma argument processing
6908         * tbuild.ads, tbuild.adb: (Make_Linker_Section_Pragma): New function
6910 2005-06-14  Ed Schonberg  <schonberg@adacore.com>
6912         * sem_warn.adb (Warn_On_Known_Condition): If the constant expression
6913         appears within a negation (either from source or as a rewriting of
6914         inequality) adjust text of warning accordingly.
6916 2005-06-14  Thomas Quinot  <quinot@adacore.com>
6918         * s-strxdr.adb: Follow AI95-00132
6920 2005-06-14  Arnaud Charlet  <charlet@adacore.com>
6922         * s-tasren.adb (Exceptional_Complete_Rendezvous): Fix race condition.
6924 2005-06-14  Arnaud Charlet  <charlet@adacore.com>
6925             Jose Ruiz  <ruiz@adacore.com>
6927         * s-tposen.adb, s-tpobop.adb
6928         (Exceptional_Complete_Rendezvous): Save the occurrence and not only
6929         the exception id.
6930         (PO_Do_Or_Queue): Before queuing a task on an entry queue we check that
6931         there is no violation of the Max_Entry_Queue_Length restriction (if it
6932         has been set); Program_Error is raised otherwise.
6933         (Requeue_Call): Before requeuing the task on the target entry queue we
6934         check that there is no violation of the Max_Entry_Queue_Length
6935         restriction (if it has been set); Program_Error is raised otherwise.
6937 2005-06-14  Robert Dewar  <dewar@adacore.com>
6939         * styleg.adb: Fix several remaining problems in -gnatyu switch
6940         Blank line count not reset at start
6941         Scanning outside source buffer in some cases
6942         Confusing message for blanks at end of file
6943         Non-empty blank lines not recognized
6945         * nmake.adt: Modify header so that xnmake does not generate output
6946         files with multiple blank lines.
6948         * treeprs.adt: Remove a blank line so that output from xtreeprs does
6949         not have an extra blank line
6951 2005-06-14  Sergey Rybin  <rybin@adacore.com>
6953         * styleg-c.adb (Body_With_No_Spec): Remove ':' from warning message.
6955 2005-06-14  Doug Rupp  <rupp@adacore.com>
6956             Vincent Celier  <celier@adacore.com>
6958         * vms_conv.ads, vms_conv.adb: Remove "Library" command.
6959         Update copyright.
6961         * vms_data.ads: Add entry for -gnaty/Y [NO]ADA_2005_COMPATIBILITY
6962         Remove "Library" command.
6963         Change keyword for style check -gnatyd from NOCRLF to
6964         DOS_LINE_ENDINGS.
6965         Remove useless second style check keyword NONE
6966         Remove help documentation for inexistent style check keyword
6967         RM_COLUMN_LAYOUT.
6968         Add help documentation for style check keywords DOS_LINE_ENDINGS,
6969         UNNECESSARY_BLANK_LINES and XTRA_PARENS
6970         Add UNNECESSARY_BLANK_LINES for -gnatyu
6971         Add qualifiers /ALL_PROJECTS (-U) for GNAT PRETTY and GNAT METRIC
6973         * ug_words: Add entry for -gnaty/Y [NO]ADA_2005_COMPATIBILITY
6975 2005-06-14  Vincent Celier  <celier@adacore.com>
6977         * makegpr.adb (Compile_Link_With_Gnatmake): Invoke gnatmake with -d if
6978         gprmake was invoked with -d.
6979         (Compile_Sources): If -d was used, output the "completed ..." message
6980         for each compilation.
6981         (Scan_Arg): Recognize new switch -d
6982         When -c and at least one main is specified, set
6983         Unique_Compile to True to guarantee that no other sources will be
6984         compiled.
6986 2005-06-14  Matthew Heaney  <heaney@adacore.com>
6988         * a-swunha.ads, a-swunha.adb: Removed. Replaced by a-swuwha.ad[sb]
6989         * a-swuwha.ads, a-swuwha.adb: New files
6991         * a-szunha.ads, a-szunha.adb: Removed, replaced by a-szuzha.ad[sb]
6992         * a-szuzha.ads, a-szuzha.adb: New files.
6994         * a-rbtgso.adb, a-crbtgo.ads, a-crbtgo.adb, a-crbtgk.ads,
6995         a-crbtgk.adb, a-crbltr.ads, a-coorse.ads, a-coorse.adb, a-convec.ads,
6996         a-convec.adb, a-coinve.ads, a-coinve.adb, a-cohata.ads, a-cohama.ads,
6997         a-cohama.adb, a-ciorse.ads, a-ciorse.adb, a-cihama.ads, a-cihama.adb,
6998         a-cidlli.ads, a-cidlli.adb, a-chtgop.ads, a-chtgop.adb, a-cdlili.ads,
6999         a-cdlili.adb, a-coormu.adb, a-ciormu.adb, a-cihase.adb, a-cohase.adb,
7000         a-cohase.ads, a-ciorma.ads, a-coorma.ads, a-ciormu.ads, a-coormu.ads,
7001         a-swunha.adb, a-stunha.adb, a-ciorma.adb, a-coorma.adb, a-shcain.ads,
7002         a-shcain.adb, a-chtgke.ads, a-chtgke.adb, a-stwiha.ads, a-stwiha.adb,
7003         a-strhas.adb, a-stzhas.adb: synchronized to the latest version of the
7004         Ada 2005 RM.
7006 2005-06-10  Eric Botcazou  <ebotcazou@adacore.com>
7007             Olivier Hainque  <hainque@adacore.com>
7008             Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7009             Pascal Obry  <obry@adacore.com>
7011         * gigi.h: (build_allocator): Add arg IGNORE_INIT_TYPE.
7013         * trans.c (call_to_gnu): Issue a warning for users of Starlet when
7014         making a temporary around a procedure call because of non-addressable
7015         actual parameter.
7016         (process_freeze_entity): If entity is a private type, capture size
7017         information that may have been computed for the full view.
7018         (tree_transform, case N_Allocator): If have initializing expression,
7019         check type for Has_Constrained_Partial_View and pass that to
7020         build_allocator.
7021         (tree_transform, case N_Return_Statement): Pass extra arg to
7022         build_allocator.
7024         * decl.c (annotate_value): Remove early return if -gnatR is not
7025         specified.
7026         (gnat_to_gnu_field): Don't make a packable type for a component clause
7027         if the position is byte aligned, the field is aliased, and the clause
7028         size isn't a multiple of the packable alignment. It serves no useful
7029         purpose packing-wise and would be rejected later on.
7030         (gnat_to_gnu_entity, case object): Pass extra arg to build_allocator.
7032         PR ada/20515
7033         (gnat_to_gnu_entity): Remove use of macro _WIN32 which is wrong in the
7034         context of cross compilers. We use TARGET_DLLIMPORT_DECL_ATTRIBUTES
7035         instead.
7036         (create_concat_name): Idem.
7038 2005-06-10  Robert Dewar  <dewar@adacore.com>
7039             Eric Botcazou  <ebotcazou@adacore.com>
7040             Ben Brosgol  <brosgol@adacore.com>
7041             Cyrille Comar  <comar@adacore.com>
7042             Sergey Rybin  <rybin@adacore.com>
7043             Pascal Obry  <obry@adacore.com>
7045         * gnat_rm.texi: Add documentation for pragma Persistent_BSS
7046         Document second argument (Ada_05) of pragma Obsolescent
7047         Add note that call to subprogram marked with pragma Obsolescent
7048         is now considered to be a violation of program Restrictions
7049         (No_Obsolescent_Features).
7050         (Implementation Defined Pragmas) <Machine_Attribute>: Make it clear
7051         that only machine-dependent attributes are supported.
7053         * gnat_ugn.texi:
7054         Commented out menu lines and empty section for gnatclean examples
7055         Document -gnatwy/Y
7056         Fix some over long lines
7057         Clarify and enhance documentation of ADA_PROJECT_PATH.
7058         Rework section 2.11.2(3) about linking with a non-GNU compiler.
7059         Mention new switch -fcallgraph-info.
7060         Mention new switch -fstack-usage.
7061         For gnatpp, replace '-notab' with '-N' and add this option to Index
7062         Corrected VMS example.
7063         VMS keyword for style check -gnatyd is DOS_LINE_ENDINGS, no NOCRLF
7064         Minor reformatting
7065         Add documentation for -gnatyu switch (unnecessary blank lines)
7066         Document new switch -U for GNAT PRETTY and GNAT METRIC
7067         Add note about Stdcall being handled as C convention on non Windows OS.
7068         Remove some junk typo in description of gnatbind -S switch
7069         Remove reference to Extensions_Allowed pragma
7070         Document the new order of the directories to be searched (source and
7071         object directories of project files before directories in ADA_*_PATH
7072         environment variables.
7074         * g-trasym.ads: Document that IRIX is supported
7076 2005-06-10  Arnaud Charlet  <charlet@adacore.com>
7078         * Makefile.in: Add initialize.o when needed.
7079         Adapt to new VMS package body Symbols and subunits
7080         No specialized version of a-sytaco is needed for VxWorks.
7082         * a-wichun.ads, a-wichun.adb, a-zchuni.ads, a-zchuni.adb: New files.
7083         * a-zchara.ads, a-widcha.ads: New files.
7085         * system-hpux-ia64.ads: New file.
7087         * i-vxwork-x86.ads, i-vxwork.ads (intContext): Add this function which
7088         is imported from the VxWorks kernel.
7090 2005-06-14  Robert Dewar  <dewar@adacore.com>
7092         * g-soliop-mingw.ads, g-soccon-vms.adb, a-swmwco.ads, exp_smem.adb,
7093         fmap.adb, a-szmzco.ads, s-traent-vms.adb, s-traent-vms.ads,
7094         a-direio.ads, a-exctra.ads, a-exexda.adb, a-exextr.adb, a-stream.ads,
7095         s-restri.ads, s-restri.adb, s-traent.adb, s-traent.ads, a-slcain.adb,
7096         a-stzhas.ads, a-tiinau.adb, comperr.adb, exp_ch11.adb, g-boubuf.adb,
7097         g-calend.adb, g-debpoo.ads, g-moreex.ads, gprep.adb, g-regpat.ads,
7098         i-cexten.ads, i-os2thr.ads, makeutl.ads, memroot.adb, mlib-prj.adb,
7099         namet.adb, namet.ads, prj-makr.adb, prj-proc.adb, sem_dist.adb,
7100         sem_elim.ads, s-valint.adb, s-vallli.adb, s-vallli.adb, s-vallli.ads,
7101         s-valllu.adb, s-valllu.ads, s-valrea.adb, s-valrea.ads, scn.adb,
7102         s-tasinf.adb, targparm.adb, uname.adb, uname.ads, xnmake.adb,
7103         xsinfo.adb, a-direct.ads: Remove extra blank lines. Minor reformatting.
7105 2005-06-14  Thomas Quinot  <quinot@adacore.com>
7107         * xeinfo.adb: Fix typo in comment
7109 2005-06-14  Javier Miranda  <miranda@adacore.com>
7111         * repinfo.ads: Fix typo in comment
7113 2005-06-14  Gary Dismukes  <dismukes@adacore.com>
7115         * s-finimp.adb (Parent_Tag): Delete this imported function (function
7116         Parent_Tag is now in the visible part of Ada.Tags).
7117         (Get_Deep_Controller): Call Ada.Tags.Parent_Tag directly instead of
7118         using imported function.
7120 2005-06-14  Bernard Banner  <banner@adacore.com>
7122         * vxaddr2line.adb: Add support for Windows hosted x86 vxworks. Should
7123         also apply for handling support for VxSim 653.
7125 2005-06-14  Eric Botcazou  <ebotcazou@adacore.com>
7127         * xsnames.adb: Add automatic generation of snames.h.
7129 2005-06-14  Thomas Quinot  <quinot@adacore.com>
7131         * gen-soccon.c: Add IP_MULTICAST_IF constant
7132         Minor reformatting and adjustments to prevent warnings.
7134 2005-06-14  Pascal Obry  <obry@adacore.com>
7136         * seh_init.c: Do not include <sys/stat.h>. This is not needed.
7138 2005-06-03  Andrew Pinski  <pinskia@physics.uc.edu>
7140         * trans.c (gnat_gimplify_expr): Call
7141         recompute_tree_invarant_for_addr_expr when we change
7142         the operand of the ADDR_EXPR.
7144 2005-05-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7146         * misc.c: Don't include errors.h.
7148 2005-05-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7150         * raise.c (db): Add ATTRIBUTE_PRINTF_2.
7152 2005-05-29  Kazu Hirata  <kazu@cs.umass.edu>
7154         * cal.c, decl.c, init.c, raise.c, trans.c, utils2.c: Fix
7155         comment typos.
7156         * gnat_rm.texi, gnat_ugn.texi: Fix typos.
7158 2005-05-16  Nathanael Nerode <neroden@gcc.gnu.org>
7160         PR ada/20270
7161         * Makefile.in: Make TGT_LIB behave correctly.
7163 2005-04-23  DJ Delorie  <dj@redhat.com>
7165         * misc.c: Adjust warning() callers.
7167 2005-04-16  Laurent GUERBY  <laurent@guerby.net>
7169         PR ada/18847
7170         * a-nudira.adb (Value): Check for valid string.
7171         * a-nuflra.adb (Value): Likewise.
7173 2005-04-11  Richard Sandiford  <rsandifo@redhat.com>
7175         * lang.opt: Refer to the GCC internals documentation instead of c.opt.
7177 2005-04-10  Kazu Hirata  <kazu@cs.umass.edu>
7179         * adaint.c, init.c, tracebak.c: Fix comment typos.
7180         * gnat-style.texi, gnat_rm.texi, gnat_ugn.texi: Fix typos.
7182 2005-04-07  Laurent GUERBY  <laurent@guerby.net>
7183             John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7185         * Makefile.in: Add make ifeq define for hppa linux tasking support.
7186         * system-hpux.ads: Define Signed_Zeros to be True.
7187         * system-linux-hppa.ads, s-osinte-linux-hppa.ads: New files.
7189 2005-04-01  Kazu Hirata  <kazu@cs.umass.edu>
7191         * adaint.c, cal.c, decl.c, gigi.h, gmem.c, init.c, link.c,
7192         raise.c, tracebak.c, trans.c, utils2.c, utils.c: Fix comment
7193         typos.
7195 2005-03-30  Tom Tromey  <tromey@redhat.com>
7197         * decl.c (gnat_substitute_in_type): Don't handle FILE_TYPE.
7199 2005-03-30  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
7201         * adaint.c (_gnat_set_close_on_exec): Mark parameters unused.
7203 2005-03-29  Robert Dewar  <dewar@adacore.com>
7205         * sem_res.adb (Resolve_Real_Literal): Generate warning if static
7206         fixed-point expression has value that is not a multiple of the Small
7207         value.
7209         * opt.ads (Warn_On_Bad_Fixed_Value): New flag
7211         * s-taprop-tru64.adb (RT_Resolution): Return an integer number of
7212         nanoseconds.
7214         * ug_words: Add entry for [NO_]BAD_FIXED_VALUES for -gnatwb/-gnatwB
7216 2005-03-29  Vincent Celier  <celier@adacore.com>
7218         * mlib-tgt-vms-ia64.adb, mlib-tgt-vms-alpha.adb
7219         (Build_Dynamic_Library.Version_String): Return the empty string when
7220         Lib_Version is empty or when the symbol policy is not Autonomous.
7222         * symbols-vms-alpha.adb (Finalize): For symbol policy Compliant, when
7223         a symbol is not in the reference symbol file, increase the Major ID
7224         and set the Minor ID to 0.
7225         Use gsmatch=lequal instead of gsmatch=equal
7227 2005-03-29  Doug Rupp  <rupp@adacore.com>
7229         * adaint.c (__gnat_to_canonical_file_spec [VMS]): Check for logical
7230         name and translate.
7232 2005-03-29  Javier Miranda  <miranda@adacore.com>
7234         * a-tags.ads, a-tags.adb (Get_TSD): Subprogram removed.
7235         (Inherit_DT): The first formal has been redefined as a Tag.
7236         This allows us the removal of the subprogram Get_TSD.
7237         (TSD): Replace the call to Get_TSD by the actual code.
7239         * exp_disp.ads, exp_disp.adb: Remove support to call Get_TSD.
7240         (Make_DT): Upgrade the call to Inherit_TSD according to the
7241         new interface: the first formal is now a Tag.
7243         * i-cpp.ads, i-cpp.adb (CPP_Inherit_DT): The first formal has been
7244         redefined as a Tag.
7245         This change allows us to remove the subprogram Get_TSD.
7246         (CPP_Get_TSD): Subprogram removed.
7247         (TSD): Replace the call to CPP_Get_TSD by the actual code.
7249         * rtsfind.ads: Remove support to call the run-time
7250         subprogram Get_TSD
7252 2005-03-29  Robert Dewar  <dewar@adacore.com>
7254         * errutil.adb, errout.adb:
7255         Minor comment updates on Line_Terminator references
7257         * par-ch10.adb: Add ??? comment about line terminator
7259         * styleg.adb (Check_Line_Terminator): Add check for new switch -gnatyd
7260         (check dos line terminator).
7261         (Check_Line_Max_Length): New procedure, split off from the existing
7262         Check_Line_Terminator routine. Separating this out allows -gnatyf to
7263         be properly recognized.
7265         * styleg.adb: Add ??? comment for line terminator reference
7267         * scng.adb (Check_End_Of_Line): Fix bug of -gnatyf being ignored
7268         (Check_End_Of_Line): Add -gnatyd handling (check dos line terminators)
7270         * styleg.ads (Check_Line_Terminator): Add check for new switch -gnatyd
7271         (check dos line terminator).
7272         (Check_Line_Max_Length): New procedure, split off from the existing
7273         Check_Line_Terminator routine. Separating this out allows -gnatyf to
7274         be properly recognized.
7276         * stylesw.ads, stylesw.adb:
7277         Add handling for new -gnatyd switch (check dos line terminator)
7279         * switch-c.adb: Recognize new -gnatyd switch (check dos line terminator)
7280         Recognize -gnatwb/-gnatwB switches
7281         Include Warn_On_Bad_Fixed_Value for -gnatg
7283         * usage.adb:
7284         Add line for new -gnatyd switch (check dos line terminator)
7286         * usage.adb: Add lines for -gnatwb/-gnatwB
7288         * vms_data.ads: Add entry for NOCRLF (-gnatyd)
7290         * vms_data.ads: [NO_]BAD_FIXED_VALUES synonym for -gnatwb/-gnatwB
7292         * gnat_ugn.texi: Fix overlong lines
7293         Document new -gnatyd switch
7294         Document new -gnatwb/-gnatwB switches
7296 2005-03-29  Ed Schonberg  <schonberg@adacore.com>
7298         * exp_ch4.adb (Has_Unconstrained_UU_Component): Use the base type in
7299         order to retrieve the component list of the type, before examining
7300         individual components.
7302         * sem_type.adb (Covers): Types are compatible if one is the base type
7303         of the other, even though their base types might differ when private
7304         views are involved.
7306 2005-03-29  Thomas Quinot  <quinot@adacore.com>
7308         * exp_dist.adb (Add_RAST_Features, PolyORB version): Set the From_Any,
7309         To_Any and TypeCode TSSs on RAS types directly using Set_TSS, instead
7310         of using Set_Renaming_TSS. This ensures that the TSS bodies are not
7311         analyzed if expansion is disabled (which could otherwise cause spurious
7312         error messages if expansion has been disabled due to previous
7313         (unrelated) errors).
7315         * sem_prag.adb (Analyze_Pragma, case Asynchronous): If RAS expansion
7316         is disabled, the entity denoted by the argument is the access type
7317         itself, not an underlying record type, so there is no need to go back
7318         to the Corresponding_Remote_Type.
7320 2005-03-29  Gary Dismukes  <dismukes@adacore.com>
7321             Robert Dewar  <dewar@adacore.com>
7323         * exp_intr.adb (Expand_Dispatching_Constructor_Call): New procedure to
7324         expand a call to an instance of
7325         Ada.Tags.Generic_Dispatching_Constructor into a dispatching call to the
7326         Constructor actual of the instance. A class-wide membership
7327         check is also generated, to ensure that the tag passed to the instance
7328         denotes a type in the class.
7329         (Expand_Intrinsic_Call): Call Expand_Dispatching_Constructor in the case
7330         of Name_Generic_Dispatching_Constructor.
7332         * Makefile.rtl: Add a-tgdico.ads to the list of library units (new Ada
7333         05 unit for AI-260-02).
7335         * a-tgdico.ads: New file.
7337         * impunit.adb (Non_Imp_File_Names_05): Add entry "a-tgdico" for new
7338         predefined Ada 05 generic unit Ada.Tags.Generic_Dispatching_Constructor.
7340         * snames.ads, snames.adb (Preset_Names): Add entry for
7341         Generic_Dispatching_Constructor.
7343         PR ada/20300
7345         * sem_ch8.adb (Find_Direct_Name): Go to root type for check of
7346         character type cases.
7347         (Analyze_Subprogram_Renaming): Add special handling for
7348         the case of renaming of stream attributes when the renaming denotes a
7349         generic formal subprogram association for an abstract formal subprogram.
7350         Check that the attribute is a primitive stream attribute (and not
7351         a class-wide stream attribute) and then rewrite the attribute name
7352         as the name of the appropriate compiler-generated stream primitive.
7354 2005-03-29  Robert Dewar  <dewar@adacore.com>
7356         * exp_util.adb (Remove_Side_Effects): Properly propagate arguments to
7357         recursive calls.
7358         (Is_Possibly_Unaligned_Object): Correct typo that
7359         resulted in inaccurate result for unaligned scalars within records.
7361 2005-03-29  Ed Schonberg  <schonberg@adacore.com>
7363         * freeze.adb (Freeze_Record_Type): If the type of the component is an
7364         itype whose parent is controlled and not yet frozen, do not create a
7365         freeze node for the itype if expansion is disabled.
7367 2005-03-29  Vincent Celier  <celier@adacore.com>
7369         * make.adb (Gnatmake): Don't fail if the main project file is declared
7370         as having no Ada sources. Do not display message "no sources to
7371         compile" in quiet output.
7373 2005-03-29  Doug Rupp  <rupp@adacore.com>
7375         * Makefile.in [VMS] (EXTRA_GNATTOOLS): Add vms_help and gnat.hlp as
7376         extra tools.
7378 2005-03-29  Robert Dewar  <dewar@adacore.com>
7380         * par-ch12.adb (P_Generic): Give better msg for illegal private generic
7381         child.
7383 2005-03-29  Robert Dewar  <dewar@adacore.com>
7385         * par-ch3.adb (P_Type_Declaration): Fix bad error recovery after
7386         missing TYPE Improve the error message generated when compiling a
7387         limited interface in Ada83 or Ada95 mode.
7389 2005-03-29  Robert Dewar  <dewar@adacore.com>
7391         * par-ch4.adb (P_Name): When a bad attribute is returned, return error,
7392         rather than proceed ahead using a junk attribute name.
7394 2005-03-29  Vincent Celier  <celier@adacore.com>
7396         * prj.ads, prj.adb: (Project_Data): Add new component Display_Name
7398         * prj-part.adb (Parse_Single_Project): Set the location of a project
7399         on its defining identifier, rather than on the reserved word "project".
7401         * prj-proc.adb (Expression): Adapt to the fact that default of external
7402         references may be string expressions, not always literal strings.
7403         (Recursive_Process): Set Display_Name equal to Name
7404         when Location is No_Location, that is when there is no actual file.
7405         Get the Display_Name of the project from the source, when it is not a
7406         virtual project.
7407         (Process): Use the Display_Name in error messages
7409         * prj-strt.adb (External_Reference): Allow default to be string
7410         expressions, not only literal strings.
7412 2005-03-29  Vincent Celier  <celier@adacore.com>
7414         * prj-nmsc.adb (Check_Stand_Alone_Library): Do not forbid the symbol
7415         file and the reference symbol file to be the same file.
7417 2005-03-29  Thomas Quinot  <quinot@adacore.com>
7419         * sem_cat.adb (Validate_Remote_Types_Type_Conversion): Perform check to
7420         forbid conversion of a local access-to-subprogram type to a remote one.
7422         * sem_util.adb (Wrong_Type): For a record type that is the expanded
7423         equivalent type for a remote access-to-subprogram type, go back to the
7424         original RAS entity when displaying an error message, so the casing is
7425         the original source casing.
7427 2005-03-29  Robert Dewar  <dewar@adacore.com>
7429         * sem_ch11.adb (Analyze_Raise_Statement): Change message for warning
7430         on param update.
7432 2005-03-29  Ed Schonberg  <schonberg@adacore.com>
7434         * sem_ch4.adb (Analyze_Selected_Component): Do not generate an actual
7435         subtype if code is being pre-analyzed, to prevent un-expanded
7436         references to protected formals, among others.
7437         (Analyze_Explicit_Dereference): If the overloaded prefix includes some
7438         interpretation that can be a call, include the result of the call as a
7439         possible interpretation of the dereference.
7441         * sem_ch5.adb (Process_Bounds): Determine type of range by
7442         pre-analyzing a copy of the original range, and then analyze the range
7443         with the expected type.
7445         * sem_res.adb (Check_Parameterless_Call): For an explicit dereference
7446         with an overloaded prefix where not all interpretations yield an
7447         access to subprogram, do not rewrite node as a call.
7448         (Resolve_Explicit_Dereference): Recognize the previous case and rewrite
7449         the node as a call once the context identifies the interpretation of
7450         the prefix whose call yields the context type.
7451         (Valid_Conversion): For the case of a conversion between
7452         local access-to-subprogram types, check subtype conformance using
7453         Check_Subtype_Conformant instead of Subtype_Conformant, to have a more
7454         detailed error message.
7456 2005-03-29  Ed Schonberg  <schonberg@adacore.com>
7458         * sem_ch6.adb (Set_Formal_Mode): If the subtype has a non_null
7459         indicator, indicate that the formal can never be null.
7460         (Process_Formals): If a formal has a non_null indicator, insert the
7461         resulting subtype immediately before the enclosing subprogram decl,
7462         and not at the beginning of the corresponding declarative part, to
7463         prevent access before elaboration (Ada2005).
7465 2005-03-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7467         PR ada/19956
7468         * utils.c (finish_record_type): Use variable_size when setting sizes.
7470 2005-03-29  Robert Dewar  <dewar@adacore.com>
7472         * xtreeprs.adb, xnmake.adb: Use Stream_IO instead of Text_IO to
7473         guarantee Unix style line terminators for the output files, even when
7474         running on windows.
7476 2005-03-29  Robert Dewar  <dewar@adacore.com>
7478         * a-direct.ads, a-direct.adb (Start_Search): Free allocated search
7479         buffer if an exception is raised.
7481 2005-03-29  Ed Falis  <falis@adacore.com>
7483         * cio.c: Undefine putchar and getchar for VTHREADS: incompatible with
7484         VxWorks 653 1.4
7486 2005-03-29  Robert Dewar  <dewar@adacore.com>
7488         * sem_util.ads: Minor reformatting
7489         * gnat_rm.texi: Minor editing.
7491 2005-03-29  Eric Botcazou  <ebotcazou@adacore.com>
7493         * decl.c (gnat_to_gnu_entity) <E_Variable>: Rework comment.
7494         * trans.c (tree_transform) <N_Identifier>: Use correct predicates.
7496 2005-03-24  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
7498         * adaint.c (__gnat_portable_spawn): Adjust cast.
7500 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
7502         * misc.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
7504 2005-03-17  Pascal Obry  <obry@adacore.com>
7506         * adaint.h, adaint.c (__gnat_waitpid): Moved to expect.c where it is
7507         used.
7509         * expect.c (__gnat_waitpid): Moved here from adaint.c.
7510         Reimplement under Win32 using Win32 API.
7512         (__gnat_kill) [Win32]: Properly close the process handle before leaving
7513         this routine.
7515 2005-03-17  Eric Botcazou  <ebotcazou@adacore.com>
7517         * ada-tree.h: (DECL_RENAMING_GLOBAL_P): New predicate.
7518         (DECL_RENAMED_OBJECT): New accessor macro.
7519         (SET_DECL_RENAMED_OBJECT): New setter macro.
7521         * decl.c (gnat_to_gnu_entity) <E_Variable>: Stabilize the renamed
7522         object in all cases.  Attach the renamed object to the VAR_DECL.
7523         (gnat_to_gnu_field): Do not lift the record wrapper if the size of the
7524         field is not prescribed.
7526         * misc.c (gnat_handle_option): Handle -gnatO separately.
7527         (gnat_print_decl) <VAR_DECL>: New case.
7528         Print the DECL_RENAMED_OBJECT node.
7530         * lang.opt:  Declare separate -gnatO option.
7532         * trans.c (tree_transform) <N_Identifier>: If the object is a renaming
7533         pointer, replace it with the renamed object.
7534         <N_Validate_Unchecked_Conversion>: Warn for a conversion to a fat
7535         pointer type if the source is not a fat pointer type whose underlying
7536         array has the same non-zero alias set as that of the destination array.
7538 2005-03-17  Javier Miranda  <miranda@adacore.com>
7540         * a-tags.ads, a-tags.adb (Get_Expanded_Name): Removed.
7541         (Get_Inheritance_Depth): Removed.
7542         (Set_Inheritance_Depth): Removed.
7544         * rtsfind.ads, exp_disp.ads, exp_disp.adb: Remove support to call the
7545         subprogram Get_Expanded_Name because it is not referenced by the
7546         frontend.
7548         * i-cpp.ads, i-cpp.adb (CPP_Get_Expanded_Name): Removed.
7549         (CPP_Get_Inheritance_Depth): Removed.
7550         (CPP_Set_Inheritance_Depth): Removed.
7552         * tbuild.ads, tbuild.adb (Make_DT_Component): Removed.
7554 2005-03-17  Robert Dewar  <dewar@adacore.com>
7556         * checks.adb (Apply_Array_Size_Check): Completely remove this for GCC
7557         3, since we now expect GCC 3 to do all the work.
7559 2005-03-17  Javier Miranda  <miranda@adacore.com>
7561         * einfo.adb (First_Private_Entity, Set_First_Private_Entity): Addition
7562         of one barrier to avoid wrong usage of this attribute.
7564         * sem_ch12.adb (Formal_Entity): Fix erroneous usage of the attribute
7565         First_Private_Entity.
7567         * sem_ch7.adb (Install_Visible_Declarations): Add a barrier to protect
7568         the subprogram against wrong usage.
7569         Adapt the code to traverse the entities in the
7570         scope of a record_type because in addition to its usage regarding
7571         packages, this subprogram is also called by Expand_N_Freeze_Entity
7572         to install the visible declarations of the enclosing scope of a
7573         record_type_with_private to establish the proper visibility before
7574         freezing the entity and related subprograms.
7576 2005-03-17  Ed Schonberg  <schonberg@adacore.com>
7578         * exp_ch2.adb (In_Assignment_Context): Recognize slice assignments to
7579         entry formals.
7581 2005-03-17  Thomas Quinot  <quinot@adacore.com>
7583         * exp_ch3.adb (Check_Attr): New subprogram.
7584         (Check_Stream_Attribute): Move the code for 13.13.2(9/1) enforcement
7585         into a new Check_Attr subprogram, in order to provide a more
7586         explanatory error message (including the name of the missing attribute).
7587         (Stream_Operation_OK): Renamed from Stream_Operations_OK. This
7588         subprogram determines whether a default implementation exists for a
7589         given stream attribute.
7590         (Make_Predefined_Primitive_Specs, Predefined_Primitive_Bodies):
7591         Determine whether to generate a default implementation for each stream
7592         attribute separately, as this depends on the specific attribute.
7594         * exp_strm.adb (Make_Field_Attribute): For the case of an illegal
7595         limited extension where a stream attribute is missing for a limited
7596         component (which will have been flagged in Exp_Ch3.Sem_Attr), do not
7597         generate a bogus reference to the missing attribute to prevent
7598         cascaded errors. Instead, generate a null statement.
7600         * sem_attr.adb (Check_Stream_Attribute): A stream attribute is
7601         available for a limited type if it has been specified for an ancestor
7602         of the type.
7604 2005-03-17  Ed Schonberg  <schonberg@adacore.com>
7606         * exp_ch6.adb (Expand_Inlined_Call): handle the case when the renamed
7607         entity is an operator.
7609 2005-03-17  Thomas Quinot  <quinot@adacore.com>
7611         * exp_dist.adb (Get_PCS_Name): Move from Exp_Dist body to Sem_Dist
7612         spec, to make this predicate available to other units.
7614         * rtsfind.adb (Check_RPC): Use Sem_Dist.Get_PCS_Name instead of
7615         reimplementing it.
7617         * sem_ch8.adb: Disable expansion of remote access-to-subprogram types
7618         when no distribution runtime library is available.
7620         * sem_res.adb, sem_dist.adb: Disable expansion of remote
7621         access-to-subprogram types when no distribution runtime library is
7622         available.
7623         (Get_PCS_Name): Move from Exp_Dist body to Sem_Dist spec, to make this
7624         predicate available to other units.
7626         * sem_dist.ads (Get_PCS_Name): Move from Exp_Dist body to Sem_Dist
7627         spec, to make this predicate available to other units.
7629 2005-03-17  Vincent Celier  <celier@adacore.com>
7631         * make.adb (Insert_Project_Sources): Make sure the Q is always
7632         initialized.
7634         * prj-nmsc.adb (Check_Ada_Naming_Scheme_Validity): Check Naming against
7635         the default for the tree, not the global default naming.
7637         * prj-proc.adb (Recursive_Process): No need to put the default naming
7638         in the project data, it's already there.
7640 2005-03-17  Doug Rupp  <rupp@adacore.com>
7642         * Makefile.in: (ia64-hp-*vms*): Use s-crtl-vms64.ads.
7644         * 5xcrtl.ads: Renamed to...
7645         * s-crtl-vms64.ads: ...this new file
7647 2005-03-17  Robert Dewar  <dewar@adacore.com>
7649         PR ada/19519
7651         * namet.adb (Copy_One_Character): Set proper wide character encoding
7652         for upper half character if we have upper half encoding.
7654 2005-03-17  Robert Dewar  <dewar@adacore.com>
7656         * par.adb (Par): Improved msg for attempt to recompile predefined unit
7658 2005-03-17  Thomas Quinot  <quinot@adacore.com>
7660         * sem_ch13.adb (New_Stream_Function, New_Stream_Procedure): For a
7661         tagged limited type, the TSS is a newly built renaming declaration:
7662         insert it using Set_TSS, not Copy_TSS.
7664 2005-03-17  Javier Miranda  <miranda@adacore.com>
7666         * sem_ch4.adb (Try_Primitive_Operation, Class_Wide_Operation and
7667         Try_Object_Operation): Analyze the object that is accessible
7668         through the prefix of the subprogram call before we apply
7669         the transformation of the object-operation notation.
7671 2005-03-17  Jose Ruiz  <ruiz@adacore.com>
7673         * s-taprob.adb (Initialize_Protection): Initialize the protected
7674         object's owner to Null_Task.
7675         (Lock): If pragma Detect_Blocking is in effect and the caller of this
7676         procedure is already the protected object's owner then Program_Error
7677         is raised. In addition the protected object's owner is updated.
7678         (Lock_Read_Only): If pragma Detect_Blocking is in effect and the caller
7679         of this procedure is already the protected object's owner then
7680         Program_Error is raised.
7681         In addition the protected object's owner is updated.
7682         (Unlock): Remove the ownership of the protected object.
7684         * s-taprob.ads (Protection): Add the field Owner, used to store the
7685         protected object's owner.
7686         This component is needed for detecting one type of potentially blocking
7687         operations (external calls on a protected subprogram with the same
7688         target object as that of the protected action). Document the rest of
7689         the components.
7691         * s-tposen.adb, s-tpoben.adb (Initialize_Protection_Entries):
7692         Initialize the protected object's owner to Null_Task.
7693         (Lock_Read_Only_Entries): If pragma Detect_Blocking is in effect and the
7694         caller of this procedure is already the protected object's owner then
7695         Program_Error is raised.
7696         Do not raise Program_Error when this procedure is called from a
7697         protected action.
7698         (Unlock_Entries): Remove the ownership of the protected object.
7699         (Lock_Entries): If pragma Detect_Blocking is in effect and the caller
7700         of this procedure is already the protected object's owner then
7701         Program_Error is raised.
7702         Do not raise Program_Error when this procedure is called from
7703         a protected action.
7705         * s-tposen.ads, s-tpoben.ads (Protection_Entries): Add the field Owner,
7706         used to store the protected object's owner.
7708         * s-tpobop.adb (Protected_Entry_Call): If pragma Detect_Blocking is in
7709         effect and this procedure (a potentially blocking operation) is called
7710         from whithin a protected action, Program_Error is raised.
7711         (Timed_Protected_Entry_Call): If pragma Detect_Blocking is in effect
7712         and this procedure (a potentially blocking operation) is called from
7713         whithin a protected action, Program_Error is raised.
7715 2005-03-17  Vincent Celier  <celier@adacore.com>
7716             Nicolas Setton  <setton@adacore.com>
7718         * mlib-tgt-darwin.adb (Build_Dynamic_Library): Remove the "-fini"
7719         switch, not supported by the linker on Darwin. Add '_' before
7720         <library>init, as this character is added unconditionally by the
7721         compiler.
7722         (Is_Archive_Ext): Replace the wrong library extension ".dyld" by the
7723         correct one ".dylib". This fixes detection of the archive files when
7724         building library projects.
7726 2005-03-17  Vincent Celier  <celier@adacore.com>
7728         * switch-m.adb (Normalize_Compiler_Switches): Recognize switches
7729         -gnat83, -gnat95 and -gnat05.
7731 2005-03-17  Vasiliy Fofanov  <fofanov@adacore.com>
7733         * gnat_ugn.texi: Document gnatmem restriction
7735 2005-03-17  Thomas Quinot  <quinot@adacore.com>
7737         * snames.adb: Document new TSS names introduced by exp_dist/exp_tss
7738         cleanup
7740 2005-03-17  Robert Dewar  <dewar@adacore.com>
7742         * s-interr.ads, s-interr.adb, sem_ch3.adb, prj.ads, prj.adb,
7743         a-interr.adb, a-interr.ads, s-interr-sigaction.adb, s-interr-dummy.adb,
7744         s-interr-vms.adb, s-interr-vxworks.adb: Minor reformatting
7746         * casing.adb: Comment improvements
7748 2005-03-17  Pascal Obry  <obry@adacore.com>
7750         * g-expect.adb: Minor reformatting.
7752 2005-03-15  Zack Weinberg  <zack@codesourcery.com>
7754         * Make-lang.in (doc/gnat_ugn_unw.info, doc/gnat_rm.info)
7755         (doc/gnat_ugn_unw.dvi, doc/gnat_rm.dvi): Add gcc-vers.texi
7756         to dependencies.
7758 2005-03-15  Vincent Celier  <celier@adacore.com>
7760         * mlib-tgt-darwin.adb (Library_Exist_For, Library_File_Name_For):
7761         Add new parameter In_Tree to specify the project tree: needed
7762         by the project manager. Adapt to changes in project manager
7763         using new parameter In_Tree.
7765 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
7767         * Make-lang.in (ada/treeprs.ads, ada/einfo.h, ada/sinfo.h,
7768         ada/nmake.adb, ada/nmake.ads): Use unique subdirectories of
7769         ada/bldtools to avoid make -jN failures.
7771 2005-03-15  Eric Botcazou  <ebotcazou@adacore.com>
7773         * trans.c (gnat_to_gnu) <N_Return_Statement>: Set gnu_result
7774         to NULL_TREE on entry.
7776 2005-03-15  Robert Dewar  <dewar@adacore.com>
7778         * system-unixware.ads, system-linux-ia64.ads, system-freebsd-x86.ads,
7779         system-lynxos-ppc.ads, system-lynxos-x86.ads, system-linux-x86_64.ads,
7780         system-tru64.ads, system-aix.ads, system-vxworks-sparcv9.ads,
7781         system-vxworks-xscale.ads, system-solaris-x86.ads, system-irix-o32.ads,
7782         system-irix-n32.ads, system-hpux.ads, system-vxworks-m68k.ads,
7783         system-linux-x86.ads, system-vxworks-mips.ads, system-os2.ads,
7784         system-interix.ads, system-solaris-sparc.ads,
7785         system-solaris-sparcv9.ads, system-vms.ads, system-mingw.ads,
7786         system-vms-zcx.ads, system-vxworks-ppc.ads, system-vxworks-alpha.ads,
7787         system-vms_64.ads, system-darwin-ppc.ads, system-vxworks-x86.ads,
7788         system-linux-ppc.ads, system-linux-alpha.ads, system-linux-sparc.ads,
7789         system-linux-s390.ads, system-linux-s390x.ads: Add line defining
7790         Compiler_System_Version to be False.
7792         * opt.ads: Add new flag Opt.Address_Is_Private
7794         * targparm.ads, targparm.adb: Set new flag Opt.Address_Is_Private
7795         Add new parameter Compiler_System_Version to avoid checking for
7796         completeness of parameters when compiler is compiling itself.
7797         Allows old versions of GNAT to be compiled with new compiler.
7799 2005-03-15  Eric Botcazou  <ebotcazou@adacore.com>
7801         * s-osinte-tru64.ads, s-osinte-tru64.adb (Get_Stack_Base): New function
7802         (Hide_Yellow_Zone): New procedure to hide the Yellow Zone of the
7803         calling thread.
7804         (Stack_Base_Available): New flag.
7805         (Get_Page_Size): New overloaded functions imported from C.
7806         (PROT_NONE, PROT_READ, PROT_WRITE, PROT_EXEC, PROT_ALL,
7807         PROT_ON, PROT_OFF): New constants.
7808         (mprotect): New function imported from C.
7809         (pthread_teb_t): New record type.
7811         * s-taprop-tru64.adb: (Enter_Task): Invoke Hide_Yellow_Zone.
7812         (Create_Task): Account for the Yellow Zone and the guard page.
7814 2005-03-15  Vincent Celier  <celier@adacore.com>
7816         * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
7817         mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb,
7818         mlib-tgt-vms-alpha.adb, mlib-tgt-vms-ia64.adb, mlib-tgt-mingw.adb,
7819         mlib-tgt-vxworks.adb, mlib-tgt-lynxos.adb (Library_Exist_For,
7820         Library_File_Name_For): Add new parameter In_Tree
7821         to specify the project tree: needed by the project manager.
7822         Adapt to changes in project manager using new parameter In_Tree.
7823         Remove local imports, use functions in System.CRTL.
7825         * make.adb, clean.adb, gnatcmd.adb (Project_Tree): New constant needed
7826         to use the project manager.
7828         * makeutl.ads, makeutl.adb (Linker_Options_Switches): New parameter
7829         In_Tree to designate the project tree. Adapt to changes in the project
7830         manager, using In_Tree.
7832         * mlib-prj.ads, mlib-prj.adb (Build_Library, Check_Library,
7833         Copy_Interface_Sources): Add new parameter In_Tree to specify the
7834         project tree: needed by the project manager.
7835         (Build_Library): Check that Arg'Length >= 6 before checking if it
7836         contains "--RTS=...".
7838         * mlib-tgt.ads, mlib-tgt.adb (Library_Exist_For,
7839         Library_File_Name_For): Add new parameter In_Tree to specify the
7840         project tree: needed by the project manager.
7842         * prj.ads, prj.adb: Major modifications to allow several project trees
7843         in memory at the same time.
7844         Change tables to dynamic tables and hash tables to dynamic hash
7845         tables. Move tables and hash tables from Prj.Com (in the visible part)
7846         and Prj.Env (in the private part). Move some constants from the visible
7847         part to the private part. Make other constants deferred.
7848         (Project_Empty): Make it a variable, not a function
7849         (Empty_Project): Add parameter Tree. Returns the data with the default
7850         naming data of the project tree Tree.
7851         (Initialize): After updating Std_Naming_Data, copy its value to the
7852         component Naming of Project Empty.
7853         (Register_Default_Naming_Scheme): Use and update the default naming
7854         component of the project tree, instead of the global variable
7855         Std_Naming_Data.
7856         (Standard_Naming_Data): Add defaulted parameter Tree. If project tree
7857         Tree is not defaulted, return the default naming data of the Tree.
7858         (Initial_Buffer_Size): Constant moved from private part
7859         (Default_Ada_Spec_Suffix_Id, Default_Ada_Body_Suffix_Id, Slash_Id); new
7860         variables initialized in procedure Initialize.
7861         (Add_To_Buffer): Add two in out parameters to replace global variables
7862         Buffer and Buffer_Last.
7863         (Default_Ada_Spec_Suffix, Default_Body_Spec_Suffix, Slash): New
7864         functions.
7865         Adapt to changes to use new type Project_Tree_Ref and dynamic tables and
7866         hash tables.
7867         (Initialize, Reset, register-Default_Namng-Scheme): Add a new parameter
7868         for the project tree.
7869         (Project_Tree_Data, Project_Tree_Ref, No_Project): Declare types and
7870         constant at the beginning of the package spec, so that they cane be used
7871         in subprograms before their full declarations.
7872         (Standard_Naming_Data): Add defaulted parameter of type Project_Node_Ref
7873         (Empty_Project): Add parameter of type Project_Node_Ref
7874         (Private_Project_Tree_Data): Add component Default_Naming of type
7875         Naming_Data.
7876         (Buffer, Buffer_Last): remove global variables
7877         (Add_To_Buffer): Add two in out parameters to replace global variables
7878         Buffer and Buffer_Last.
7879         (Current_Packages_To_Check): Remove global variable
7880         (Empty_Name): Move to private part
7881         (No-Symbols): Make it a constant
7882         (Private_Project_Tree_Data): New type for the private part of the
7883         project tree data.
7884         (Project_Tree_Data): New type for the data of a project tree
7885         (Project_Tree_Ref): New type to designate a project tree
7886         (Initialize, Reset, register-Default_Namng-Scheme): Add a new parameter
7887         for the project tree.
7889         * prj-attr.ads: Add with Table; needed, as package Prj no longer
7890         imports package Table.
7892         * prj-com.adb: Remove empty, no longer needed body
7894         * prj-com.ads: Move most of the content of this package to package Prj.
7896         * prj-dect.ads, prj-dect.adb (Parse): New parameters In_Tree to
7897         designate the project node tree and Packages_To_Check to replace
7898         global variable Current_Packages_To_Check.
7899         Add new parameters In_Tree and Packages_To_Check to local subprograms,
7900         when needed. Adapt to changes in project manager with project node tree
7901         In_Tree.
7903         * prj-env.ads, prj-env.adb: Add new parameter In_Tree to designate the
7904         project tree to most subprograms. Move tables and hash tables to
7905         private part of package Prj.
7906         Adapt to changes in project manager using project tree In_Tree.
7908         * prj-makr.adb (Tree): New constant to designate the project node tree
7909         Adapt to change in project manager using project node tree Tree
7911         * prj-nmsc.ads, prj-nmsc.adb (Check_Stand_Alone_Library): Correctly
7912         display the Library_Src_Dir and the Library_Dir.
7913         Add new parameter In_Tree to designate the project node tree to most
7914         subprograms. Adapt to changes in the project manager, using project tree
7915         In_Tree.
7916         (Check_Naming_Scheme): Do not alter the casing on platforms where
7917         the casing of file names is not significant.
7918         (Check): Add new parameter In_Tree to designate the
7920         * prj-pars.ads, prj-pars.adb (Parse): Add new parameter In_Tree to
7921         designate the project tree.
7922         Declare a project node tree to call Prj.Part.Parse and Prj.Proc.Process
7924         * prj-part.ads, prj-part.adb (Buffer, Buffer_Last): Global variables,
7925         to replace those that were in the private part of package Prj.
7926         Add new parameter In__Tree to designate the project node tree to most
7927         subprograms. Adapt to change in Prj.Tree with project node tree In_Tree.
7928         (Post_Parse_Context_Clause): When specifying the project node of a with
7929         clause, indicate that it is a limited with only if there is "limited"
7930         in the with clause, not necessarily when In_Limited is True.
7931         (Parse): Add new parameter In_Tree to designate the project node tree
7933         * prj-pp.ads, prj-pp.adb (Pretty_Print): Add new parameter In_Tree to
7934         designate the project node tree. Adapt to change in Prj.Tree with
7935         project node tree In_Tree.
7937         * prj-proc.ads, prj-proc.adb (Recursive_Process): Specify the project
7938         tree In_Tree in the call to function Empty_Process to give its initial
7939         value to the project data Processed_Data.
7940         Add new parameters In_Tree to designate the project tree and
7941         From_Project_Node_Tree to designate the project node tree to several
7942         subprograms. Adapt to change in project manager with project tree
7943         In_Tree and project node tree From_Project_Node_Tree.
7945         * prj-strt.ads, prj-strt.adb (Buffer, Buffer_Last): Global variables,
7946         to replace those that were in the private part of package Prj.
7947         Add new parameter In_Tree to designate the project node tree to most
7948         subprograms. Adapt to change in Prj.Tree with project node tree In_Tree.
7950         * prj-tree.ads, prj-tree.adb: Add new parameter of type
7951         Project_Node_Tree_Ref to most subprograms.
7952         Use this new parameter to store project nodes in the designated project
7953         node tree.
7954         (Project_Node_Tree_Ref): New type to designate a project node tree
7955         (Tree_Private_Part): Change table to dynamic table and hash tables to
7956         dynamic hash tables.
7958         * prj-util.ads, prj-util.adb: Add new parameter In_Tree to designate
7959         the project tree to most subprograms. Adapt to changes in project
7960         manager using project tree In_Tree.
7962         * makegpr.adb (Project_Tree): New constant needed to use project
7963         manager.
7965 2005-03-15  Olivier Hainque  <hainque@adacore.com>
7967         * s-intman-posix.adb (Notify_Exception): Adjust signature, as handler
7968         for sigactions with SA_SIGINFO set. Call
7969         __gnat_adjust_context_for_raise before raising, to perform the
7970         potentially required adjustments to the machine context for the GCC
7971         unwinder.
7973         * raise.h (__gnat_adjust_context_for_raise): New prototype.
7975         * init.c (__gnat_adjust_context_for_raise) HPUX: Initial revision.
7976         Adjust PC by one in the provided machine context.
7977         (__gnat_install_handler) HPUX: Set SA_SIGINFO in the sigaction flags,
7978         so that the handler is passed the context structure to adjust prior to
7979         the raise.
7980         (__gnat_error_handler) HPUX: Adjust the signature to match what an
7981         SA_SIGINFO sigaction should look like. Call
7982         __gnat_adjust_context_for_raise before actually raising.
7983         (__gnat_adjust_context_for_raise): Default noop to help PC
7984         adjustments before raise from signal handlers.
7985         (__gnat_error_handler): Indirectly call a predicate function to
7986         determine if a condition should be resignaled or not.
7987         (__gnat_set_resignal_predicate): User interface to modify the predicate.
7988         (__gnat_default_resignal_p): Default GNAT predicate.
7990 2005-03-15  Doug Rupp  <rupp@adacore.com>
7992         * adaint.c: Prefix #include of VMS system header files with vms/
7993         [VMS] (HOST_EXECUTABLE_SUFFIX, HOST_OBJECT_SUFFIX): Define for VMS.
7994         Do not define a dummy function "convert_addresses" under Darwin,
7995         not needed.
7997         * tb-alvms.c, expect.c: Prefix #include of VMS system header files
7998         with vms/
8000 2005-03-15  Nicolas Setton  <setton@adacore.com>
8002         * tracebak.c: Under Darwin, use the same unwinding mechanisms as under
8003         PPC/AIX.
8005 2005-03-15  Robert Dewar  <dewar@adacore.com>
8007         * a-reatim.ads, a-reatim.adb: Add functions Minutes and Seconds for
8008         AI-386.
8010         * a-retide.ads: Minor comment changes
8012 2005-03-15  Robert Dewar  <dewar@adacore.com>
8014         * a-stzunb.adb, a-stzunb.adb a-stzunb.ads, a-stzunb.ads,
8015         a-stwiun.ads, a-stwiun.adb, a-strunb.ads, a-strunb.adb: Move
8016         Realloc_For_Chunk to private part of package.
8017         New subprograms for AI-301
8019         * a-szuzti.adb, a-suteio.adb, a-swuwti.adb: Improve efficiency of
8020         Get_Line procedure.
8021         Avoid unnecessary use of Get/Set_Wide_String
8023 2005-03-15  Robert Dewar  <dewar@adacore.com>
8025         PR ada/13470
8027         * a-stunau.ads, a-stunau.adb:
8028         Change interface to allow efficient (and correct) implementation
8029         The previous changes to allow extra space in unbounded strings had
8030         left this interface a bit broken.
8032         * a-suteio.adb: Avoid unnecessary use of Get/Set_String
8034         * g-spipat.ads, g-spipat.adb: New interface for Get_String
8035         Minor reformatting (function specs)
8037         * g-spitbo.adb: New interface for Get_String
8039         * g-spitbo.ads: Minor reformatting
8041         * a-swunau.ads, a-swunau.adb: New interface for Get_Wide_String
8043         * a-szunau.ads, a-szunau.adb: New interface for Get_Wide_Wide_String
8045 2005-03-15  Javier Miranda  <miranda@adacore.com>
8046             Robert Dewar  <dewar@adacore.com>
8047             Thomas Quinot  <quinot@adacore.com>
8048             Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8050         * atree.ads, atree.adb: Add support for Elist24 field
8052         * atree.h: Fix wrong definition of Field27
8053         Add support for Elist16 field
8054         Add support for Elist24 field
8056         * einfo.ads, einfo.adb (Abstract_Interfaces,
8057         Set_Abstract_Interfaces): New subprograms.
8058         (Abstract_Interface_Alias, Set_Abstract_Interface_Alias): New
8059         subprograms.
8060         (Access_Disp_Table, Set_Access_Disp_Table): Modified to handle a list of
8061         entities rather than a single node.
8062         (Is_Interface, Set_Is_Interface): New subprogram
8063         (First_Tag_Component): New syntesized attribute
8064         (Next_Tag_Component): New synthesized attribute
8065         (Write_Entity_Flags): Upgraded to write Is_Interface
8066         (Write_Field24_Name): Upgraded to write Abstract_Interfaces
8067         (Write_Field25_Name): Upgraded to write Abstract_Interface_Alias
8068         (Task_Body_Procedure): New subprogram to read this attribute.
8069         (Set_Task_Body_Procedure): New subprogram to set this attribute.
8070         (Has_Controlled_Component): Now applies to all entities.
8071         This is only a documentation change, since it always worked to apply
8072         this to other than composite types (yielding false), but now this is
8073         official.
8074         Update documentation on Must_Be_Byte_Aligned for new spec
8076         * tbuild.adb, exp_dist.adb, exp_disp.adb, exp_ch3.ads, exp_ch3.adb,
8077         exp_attr.adb, exp_aggr.adb, exp_ch4.adb, exp_ch5.adb: Upgrade all the
8078         uses of the Access_Disp_Table attribute to reference the first dispatch
8079         table associated with a tagged type. As
8080         part of the implementation of abstract interface types,
8081         Access_Disp_Table has been redefined to contain a list of dispatch
8082         tables (rather than a single dispatch table).
8083         Similarly, upgrade all the references to Tag_Component by the
8084         new attribute First_Tag_Component.
8085         (Find_Inherited_TSS): Moved to exp_tss.
8086         Clean up test in Expand_N_Object_Declaration for cases
8087         where we need to do a separate assignment of the initial value.
8088         (Expand_N_Object_Declaration): If the expression in the
8089         declaration of a tagged type is an aggregate, no need to generate an
8090         additional tag assignment.
8091         (Freeze_Type): Now a function that returns True if the N_Freeze_Entity
8092         is to be deleted.
8093         Bit packed array ops are only called if operands are known to be
8094         aligned.
8095         (Component_Equality): When returning an N_Raise_Program_Error statement,
8096         ensure that its Etype is set to Empty to avoid confusing GIGI (which
8097         expects that only expressions have a bona fide type).
8098         (Make_Tag_Ctrl_Assignment): Use Build_Actual_Subtype to correctly
8099         determine the amount of data to be copied.
8101         * par.adb (P_Interface_Type_Definition): New subprogram that parses the
8102         new syntax rule of Ada 2005 interfaces (for AI-251 and AI-345):
8103             INTERFACE_TYPE_DEFINITION ::=
8104               [limited | task | protected | synchronized] interface
8105                 [AND interface_list]
8107         * par-ch3.adb (P_Type_Declaration): Modified to give support to
8108         interfaces.
8109         (P_Derived_Type_Def_Or_Private_Ext_Decl): Modified to give support to
8110         interfaces.
8111         (P_Interface_Type_Definition): New subprogram that parses the new
8112         syntax rule of Ada 2005 interfaces
8113         (P_Identifier_Declarations): fix two occurrences of 'RENAMES' in error
8114         messages by the correct RENAMES (quotes removed).
8116         * sem_prag.adb: Upgrade all the references to Tag_Component by the new
8117         attribute First_Tag_Component.
8119         * sinfo.ads, sinfo.adb: Remove OK_For_Stream flag, not used, not needed
8120         (Interface_List, Set_Interface_List): New subprograms.
8121         (Interface_Present, Set_Interface_Present): New subprograms.
8122         (Limited_Present, Set_Limited_Present): Available also in derived
8123         type definition nodes.
8124         (Protected_Present, Set_Protected_Present): Available also in
8125         record type definition and
8126         derived type definition nodes.
8127         (Synchronized_Present, Set_Synchronized_Present): New subprograms.
8128         (Task_Present, Set_Task_Present): New subprogram.
8129         (Task_Body_Procedure): Removed.
8130         (Set_Task_Body_Procedure): Removed.
8131         These subprogram have been removed because the attribute
8132         Task_Body_Procedure has been moved to the corresponding task type
8133         or task subtype entity to leave a field free to store the list
8134         of interfaces implemented by a task (for AI-345)
8135         Add Expression field to N_Raise_Statement node for Ada 2005 AI-361
8136         (Null_Exclusion_Present): Change to Flag11, to avoid conflict with
8137         expression flag Do_Range_Check
8138         (Exception_Junk): Change to Flag7 to accomodate above change
8139         (Box_Present, Default_Name, Specification, Set_Box_Present,
8140         Set_Default_Name, Set_Specification): Expand the expression
8141         "X in N_Formal_Subprogram_Declaration" into the corresponding
8142         two comparisons. Required to use the csinfo tool.
8144         * exp_ch11.adb (Expand_N_Raise_Statement): Deal with case where
8145         "with string" given.
8147         * sem_ch11.adb (Analyze_Raise_Statement): Handle case where string
8148         expression given.
8150         * par-ch11.adb (P_Raise_Statement): Recognize with string expression
8151         in 2005 mode
8153         * exp_ch9.adb (Build_Task_Proc_Specification): Modified to use entity
8154         attribute Task_Body_Procedure rather than the old semantic field that
8155         was available in the task_type_declaration node.
8157         * par-ch12.adb (P_Formal_Type_Definition): Modified to handle formal
8158         interface type definitions.
8159         (P_Formal_Derived_Type_Definition): Modified to handle the list of
8160         interfaces.
8162         * par-ch9.adb (P_Task): Modified to handle the list of interfaces in a
8163         task type declaration.
8164         (P_Protected): Modified to handle the list of interfaces in a
8165         protected type declaration.
8167 2005-03-15  Doug Rupp  <rupp@adacore.com>
8168             Vincent Celier  <celier@adacore.com>
8170         * bindgen.adb (Gen_Main_C): Change WBI __posix_exit to decc$posix_exit
8171         (Gen_Output_File_C): Likewise.
8172         (Gen_Main_C): Issue #include <stdlib.h> to avoid warning
8174 2005-03-15  Thomas Quinot  <quinot@adacore.com>
8176         * checks.adb (Get_E_First_Or_Last): When the expression being retrieved
8177         is an N_Raise_Constraint_Error node, create a new copy of it without
8178         going through a call to Duplicate_Subexpr.
8180 2005-03-15  Eric Botcazou  <ebotcazou@adacore.com>
8181             Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8182             Nicolas Setton  <setton@adacore.com>
8183             Ed Schonberg  <schonberg@adacore.com>
8185         PR ada/19900
8186         PR ada/19408
8187         PR ada/19140
8188         PR ada/20255
8190         * decl.c (gnat_to_gnu_field): Reject aliased components with a
8191         representation clause that prescribes a size not equal to the rounded
8192         size of their types.
8193         (gnat_to_gnu_entity, case E_Component): Always look at
8194         Original_Record_Component if Present and not the entity.
8195         (gnat_to_gnu_entity, case E_Record_Subtype): Rework handling of subtypes
8196         of tagged extension types by not making field for components that are
8197         inside the parent.
8198         (gnat_to_gnu_entity) <E_Record_Type>: Fix typo in the alignment formula
8199         (gnat_to_gnu_entity) <E_Variable>: Do not convert again the
8200         expression to the type of the object when the object is constant.
8201         Reverse defer_debug_incomplete_list before traversing it, so that trees
8202         are processed in the order at which they were added to the list. This
8203         order is important when using the stabs debug format.
8204         If we are deferring the output of debug information, also defer this
8205         output for a function return type.
8206         When adding fields to a record, prevent emitting debug information
8207         for incomplete records, emit the information only when the record is
8208         complete.
8209         (components_to_record): New parameter defer_debug.
8210         (gnat_to_gnu_entity, case E_Array_Subtype): Call copy_alias_set.
8211         (gnat_to_gnu_field_decl): New function.
8212         (substitution_list, annotate_rep): Call it.
8213         (gnat_to_gnu_entity, case E_Record_Subtype): Likewise.
8214         (gnat_to_gnu_entity, case E_Record_Type): Likewise.
8215         No longer update discriminants to not be a COMPONENT_REF.
8216         (copy_alias_set): Strip padding from input type; also handle
8217         unconstrained arrays properly.
8219         * gigi.h (write_record_type_debug_info): New function.
8220         Convert to use ANSI-style prototypes. Remove unused
8221         declarations for emit_stack_check, elab_all_gnat and
8222         set_second_error_entity.
8223         (gnat_to_gnu_field_decl): New decl.
8225         * utils.c (write_record_type_debug_info): New function.
8226         (finish_record_type): Delegate generation of debug information to
8227         write_record_type_debug_info.
8228         (update_pointer_to): Remove unneeded calls to rest_of_decl_compilation.
8229         (update_pointer_to): Fix pasto.
8230         (convert) <UNION_TYPE>: Accept slight type variations when
8231         converting to an unchecked union type.
8233         * exp_ch13.adb (Expand_N_Freeze_Entity): If Freeze_Type returns True,
8234         replace the N_Freeze_Entity with a null statement.
8236         * freeze.adb (Freeze_Expression): If the freeze nodes are generated
8237         within a constrained subcomponent of an enclosing record, place the
8238         freeze nodes in the scope stack entry for the enclosing record.
8239         (Undelay_Type): New Subprogram.
8240         (Set_Small_Size): Pass T, the type to modify; all callers changed.
8241         (Freeze_Entity, Freeze_Record_Type): Change the way we handle types
8242         within records; allow them to have freeze nodes if their base types
8243         aren't frozen yet.
8245         * exp_util.adb (Remove_Side_Effects): Properly test for
8246         Expansion_Delayed and handle case when it's inside an
8247         N_Qualified_Expression.
8249         * sem_ch3.adb (Derived_Type_Declaration): New predicate
8250         Comes_From_Generic, to recognize accurately that the parent type in a
8251         derived type declaration can be traced back to a formal type, because
8252         it is one or is derived from one, or because its completion is derived
8253         from one.
8254         (Constrain_Component_Type): If component comes from source and has no
8255         explicit constraint, no need to constrain in in a subtype of the
8256         enclosing record.
8257         (Constrain_Access, Constrain_Array): Allow itypes to be delayed.
8258         Minor change to propagate Is_Ada_2005 flag
8260         * trans.c (gnat_to_gnu, case N_Aggregate): Verify that
8261         Expansion_Delayed is False.
8262         (assoc_to_constructor): Ignore fields that have a
8263         Corresponding_Discriminant.
8264         (gnat_to_gnu) <N_Return_Statement>: Restructure. If the
8265         function returns "by target", dereference the target pointer using the
8266         type of the actual return value.
8267         <all>: Be prepared for a null gnu_result.
8268         (processed_inline_subprograms): Check flag_really_no_inline
8269         instead of flag_no_inline.
8270         (set_second_error_entity): Remove unused function.
8271         (gnat_to_gnu, case N_Selected_Component): Call
8272         gnat_to_gnu_field_decl.
8273         (assoc_to_constructor): Likewise.
8275 2005-03-15  Robert Dewar  <dewar@adacore.com>
8276             Ed Schonberg  <schonberg@adacore.com>
8277             Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8279         * exp_pakd.adb (Create_Packed_Array_Type): Do not set
8280         Must_Be_Byte_Aligned for cases where we do not need to use a
8281         System.Pack_nn unit.
8283         * exp_ch6.adb (Expand_Call): Call Expand_Actuals for functions as well
8284         as procedures.
8285         Needed now that we do some processing for IN parameters as well. This
8286         may well fix some unrelated errors.
8287         (Expand_Call): Handle case of unaligned objects (in particular those
8288         that come from packed arrays).
8289         (Expand_Inlined_Call): If the subprogram is a renaming as body, and the
8290         renamed entity is an inherited operation, re-expand the call using the
8291         original operation, which is the one to call.
8292         Detect attempt to inline parameterless recursive subprogram.
8293         (Represented_As_Scalar): Fix to work properly with private types
8294         (Is_Possibly_Unaligned_Object): Major rewrite to get a much more
8295         accurate estimate. Yields True in far fewer cases than before,
8296         improving the quality of code that depends on this test.
8298         * exp_util.adb (Kill_Dead_Code): For a package declaration, iterate
8299         over both visible and private declarations to remove them from tree,
8300         and mark subprograms declared in package as eliminated, to prevent
8301         spurious use in subsequent compilation of generic units in the context.
8303         * exp_util.ads: Minor cleanup in variable names
8305         * sem_eval.ads, sem_eval.adb: Minor reformatting
8306         (Compile_Time_Known_Bounds): New function
8308 2005-03-15  Ed Schonberg  <schonberg@adacore.com>
8310         * exp_ch7.adb (Convert_View): Use base types of underlying types when
8311         determining whether an unchecked conversion is needed for the argument
8312         of an initialization call.
8314 2005-03-15  Ed Schonberg  <schonberg@adacore.com>
8316         * exp_intr.adb (Expand_Unc_Conversion): As a target type, use the type
8317         that appears in the instantiation rather than the internal subtype
8318         generated in the wrapper package, to avoid anomalies in gigi when the
8319         target is derived from a private type whose full view is an access type.
8321 2005-03-15  Robert Dewar  <dewar@adacore.com>
8323         * exp_smem.adb, sem_attr.adb: Remove OK_For_Stream flag, not used,
8324         not needed.
8325         Add documentation to replace the use of this flag
8326         Fix kludge for Maximum_Alignment on x86 so that it does not apply to
8327         the x86_64.
8329 2005-03-15  Thomas Quinot  <quinot@adacore.com>
8331         * exp_tss.ads, exp_tss.adb (Find_Inherited_TSS): New subprogram, moved
8332         here from exp_attr so it can be shared between exp_attr and exp_dist.
8333         (TSS_Names): Renamed from OK_TSS_Names. This array contains the list of
8334         all TSS names, not a subset thereof, and the previous name introduced
8335         an unnecessarily confusion that a distinction might exist between
8336         "OK" TSS names and some "not OK" TSS names.
8338 2005-03-15  Doug Rupp  <rupp@adacore.com>
8340         * gnatchop.adb (Locate_Executable): Normalize the possibly VMS style
8341         Command_Name.
8343 2005-03-15  Pascal Obry  <obry@adacore.com>
8344             Eric Botcazou  <ebotcazou@adacore.com>
8346         PR ada/20226
8347         PR ada/20344
8349         * init.c (__gnat_initialize): Do not call __gnat_install_SEH_handler()
8350         when IN_RTS. This is to work around a bootstrap path problem.
8352         * misc.c (gnat_parse_file): Create a SEH (Structured Exception Handler)
8353         table and pass it to __gnat_install_SEH_handler().
8354         (gnat_handle_option): Accept OPT_fRTS_, not OPT_fRTS.
8356         * lang.opt: Fix specification of -fRTS=.
8358 2005-03-15  Doug Rupp  <rupp@adacore.com>
8359             Bernard Banner  <banner@adacore.com>
8360             Vincent Celier  <celier@adacore.com>
8361             Arnaud Charlet  <charlet@adacore.com>
8363         PR ada/6852
8364         This change works fine when gnatlib is built from the gcc directory,
8365         but does not work when using the libada Makefile, since GCC_FOR_TARGET
8366         is not passed to ada/Makefile.in, so more work is needed by a
8367         Makefile/configure expert.
8369         * Makefile.in(gnatlib): Use $(GCC_FOR_TARGET) for compiling library.
8370         set GMEM_LIB on ia64 linux to add optional support for gnatmem.
8371         Setup gnatlink switch -M for x86_64 linux, as it is already setup
8372         for Linux x86.
8373         (gnatlib-shared-default): Use GNATLIBCFLAGS as well.
8374         Run ranlib on libgccprefix.a
8375         Define PREFIX_OBJS for Darwin, to build libgccprefix.
8376         (ADA_INCLUDE_SRCS): Split Ada packages.
8378 2005-03-15  Robert Dewar  <dewar@adacore.com>
8380         * Make-lang.in: Add g-utf_32 unit for gnat and gnatbind
8382         * impunit.adb: Add GNAT.UTF_32
8384         * scng.adb: Use gnat.utf_32 instead of widechar for utf_32 stuff
8386         * widechar.ads, widechar.adb: Remove redundant UTF-32 tables (scng
8387         now uses GNAT.UTF_32).
8389         * g-utf_32.ads, g-utf_32.adb: This is a new unit with full
8390         capabilities for categorizing characters using Unicode categories
8392 2005-03-15  Ed Schonberg  <schonberg@adacore.com>
8394         * sem_ch10.adb (Build_Ancestor_Name): If the ancestor is an
8395         instantiation that has been rewritten as a package body, retrieve spec
8396         to generate proper name for implicit_with_clause.
8397         (Install_Parents): Recognize a parent that is an instantiation but has
8398         been rewritten as a package declaration during analysis.
8400 2005-03-15  Javier Miranda  <miranda@adacore.com>
8401             Ed Schonberg  <schonberg@adacore.com>
8403         * sem_ch12.adb (Instantiate_Object): If the analysis of the actual
8404         parameter reported some error we immediately return. This improves the
8405         behaviour of the frontend in case of errors.
8406         (Install_Parent, Remove_Parent): Introduce new flag
8407         Parent_Unit_Visible, to preserve the proper visibility of the ultimate
8408         ancestor of a generic child unit, when the child is being instantiated.
8409         (Inline_Instance_Body): If we are compiling the private
8410         part or the body of a child unit, restore the proper visibility of the
8411         parents after compiling the instance body.
8413 2005-03-15  Ed Schonberg  <schonberg@adacore.com>
8414             Javier Miranda  <miranda@adacore.com>
8416         PR ada/15608
8417         * sem_util.adb (Get_Task_Body_Procedure): Type may be the completion
8418         of a private type, in which case it is underlying_type that denotes
8419         the proper task. Also modified to use the new entity attribute
8420         that is directly available in the task type and task subtype entities
8421         (Build_Actual_Subtype_Of_Component): Handle properly multidimensional
8422         arrays when other dimensions than the first are constrained by
8423         discriminants of an enclosing record.
8424         (Insert_Explicit_Dereference): If the prefix is an indexed component or
8425         a combination of indexed and selected components, find ultimate entity
8426         and generate the appropriate reference for it, to suppress spurious
8427         warnings.
8428         (Note_Possible_Modification): If an entity name has no entity, return.
8429         (Is_Variable): A function call never denotes a variable.
8430         (Requires_Transient_Scope): For record types, recurse only on
8431         components, not on internal subtypes that may have been generated for
8432         constrained components.
8434 2005-03-15  Ed Schonberg  <schonberg@adacore.com>
8436         * sem_ch4.adb (Analyze_Concatenation): Do not consider operators marked
8437         Eliminated as candidates for resolution. Both efficient, and avoids
8438         anomalies with operators declared in deleted code.
8439         (Process_Implicit_Dereference_Prefix): Use this procedure whenever
8440         expansion is disabled (as when compiling a generic) to prevent spurious
8441         warnings on prefixes of selected components.
8443 2005-03-15  Ed Schonberg  <schonberg@adacore.com>
8445         * sem_ch6.adb (Is_Private_Declaration): Verify that the declaration is
8446         attached to a list before checking whether it appears in the private
8447         declarations of the current package.
8448         (Make_Inequality_Operator): Insert declaration in proper declarative
8449         list rather than just setting the Parent field, so that
8450         Is_Private_Declaration can handle it properly.
8452 2005-03-15  Ed Schonberg  <schonberg@adacore.com>
8454         * sem_ch8.adb (Analyze_Subprogram_Renaming): In a generic, if this is
8455         a renaming a body, check that the renamed subprogram in not intrinsic.
8456         (Find_Direct_Name): If several use_visible entities hide
8457         each other, and the context is a predefined file compiled through
8458         rtsfind, keep only the entity that comes from a predefined file.
8460 2005-03-15  Geert Bosch  <bosch@adacore.com>
8462         * s-fatgen.adb (Valid): Extend special exceptions to account for long
8463         long float padding to also cover AMD64 and IA64.
8465 2005-03-15  Gary Dismukes  <dismukes@adacore.com>
8467         * s-imgwch.adb: Add with and use of Interfaces.
8468         (Img_Wide_Character): Change type of Val to Unsigned_16.
8469         (Img_Wide_Wide_Character): Change type of Val to Unsigned_32.
8471 2005-03-15  Matthew Gingell  <gingell@adacore.com>
8473         * sysdep.c: Implement __gnat_localtime_r as call to localtime_r on AIX.
8475 2005-03-15  Robert Dewar  <dewar@adacore.com>
8477         * usage.adb: Add missing lines for -gnat95 and -gnat05 switches
8479         * sem_ch7.adb: Minor change to propagate Is_Ada_2005 flag
8481         * i-c.adb: Clarify that AI-258 behavior is also intended in Ada 95
8483 2005-03-15  Robert Dewar  <dewar@adacore.com>
8485         * s-bitops.adb, s-bitops.ads,
8486         s-taprop-os2.adb, s-intman-vms.ads, s-intman-vxworks.ads,
8487         s-taprop-vxworks.adb, a-caldel.ads, a-calend.adb, a-tasatt.adb,
8488         tbuild.ads, s-finimp.adb, s-imgwch.adb, s-intman.ads, s-intman.ads,
8489         s-memory.adb, s-soflin.ads, s-taasde.ads, s-taprob.adb, s-taprop.ads,
8490         s-taprop.ads, s-tasini.adb, s-tasini.ads, s-tasini.ads, s-tasini.ads,
8491         s-taskin.ads, s-tasren.adb, s-tassta.adb, s-tassta.ads, s-tassta.ads,
8492         s-tasuti.ads, s-tataat.ads, s-tataat.ads, s-tataat.ads, s-tataat.ads,
8493         s-tpoben.adb, s-tpoben.adb, s-tpobop.ads: Update comments. Minor
8494         reformatting.
8496 2005-03-15  Eric Botcazou  <ebotcazou@adacore.com>
8498         * utils2.c (build_binary_op): Fix typo.
8500 2005-03-15  Doug Rupp  <rupp@adacore.com>
8502         * s-crtl.ads (popen,pclose): New imports.
8504 2005-03-15  Cyrille Comar  <comar@adacore.com>
8506         * comperr.adb (Compiler_Abort): remove references to obsolete
8507         procedures in the bug boxes for various GNAT builds.
8509 2005-03-15  Vincent Celier  <celier@adacore.com>
8511         * snames.ads, snames.adb: Save as Unix text file, not as DOS text file
8513 2005-03-15  Geert Bosch  <bosch@adacore.com>
8514             Arnaud Charlet  <charlet@adacore.com>
8515             Robert Dewar  <dewar@adacore.com>
8516             Cyrille Comar  <comar@adacore.com>
8517             Sergey Rybin  <rybin@adacore.com>
8519         * gnat_ugn.texi: Remove extended inline assembly example, as it was far
8520         too specific and long-winded to be appropriate for the GNAT User's
8521         Guide.
8522         Warn about use of GCC switches not documented in the GNAT User's Guide,
8523         as these may cause generated code to not conform to Ada semantics.
8524         Remove mention of -gdwarf-2 for sparc64, since this is now the default.
8525         Add documentation for -gnat95 and -gnat05 switches
8526         Remove paragraph documenting obsolete way to refer to third party
8527         libraries.
8528         Add a few references to Ada_05 that were missing.
8529         Update documentation on -gnatZ/-gnatL.
8530         Document limitation when using -m64 under Solaris.
8531         Change the "Name Casing" subsection of the pretty-printer section
8532         according to the changes in the dictionary processing.
8534         * gnat_rm.texi: Document the Ada_05 pragma.
8535         Section on record representation clauses describes the new more
8536         relaxed rules about placement of large packed bit array components.
8537         Add documentation of GNAT.UTF_32
8539 2005-03-12  Daniel Berlin <dberlin@dberlin.org>
8541         * misc.c (gnat_post_options): Turn off structural
8542         aliasing for now.
8544 2005-03-08  Laurent Guerby <laurent@guerby.net>
8546         * system-linux-sparc.ads: Fix typo in previous commit.
8548 2005-03-07  James A. Morrison <phython@gcc.gnu.org>
8549             Laurent Guerby <laurent@guerby.net>
8551         PR ada/20035
8552         * system-linux-sparc.ads: New.
8553         * Makefile.in: Add sparc linux entry.
8555 2005-02-27  Danny Smith  <dannysmith@users.sourceforge.net>
8557         * seh_init.c (__gnat_SEH_error_handler): Mark third and fourth
8558         parameters as unused.
8560 2005-02-26  Nathanael Nerode  <neroden@gcc.gnu.org>
8561         Partial merge from libada-gnattools-branch:
8563         2004-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8564         * Makefile.in: Move gnattools{1,1re,2,3,4} and corresponding flags
8565         into code in gnattools/Makefile.in.  Remove direct dependencies on
8566         stamp-tools by tools clauses.
8567         2004-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8568         * config-lang.in: Add gnattools to $lang_dirs.
8570 2005-02-13  Andrew Pinski  <pinskia@physics.uc.edu>
8572         PR ada/19942
8573         * utils.c (gnat_type_for_mode): Return null instead of ICE because
8574         we asked for an unknown mode.
8576 2005-02-12  Richard Henderson  <rth@redhat.com>
8578         * utils.c (gnat_type_for_mode): Return NULL for COMPLEX modes;
8579         validate SCALAR_INT_MODE_P before calling gnat_type_for_size.
8581 2005-02-10  Andreas Jaeger  <aj@suse.de>
8583         * init.c (__gnat_initialize): Mark parameter as unused.
8585 2005-02-09  Doug Rupp  <rupp@adacore.com>
8587         * g-expect-vms.adb (Non_Blocking_Spawn): Separate out.
8588         * g-enblsp-vms-alpha.adb g-enblsp-vms-ia64.adb: New subunits.
8590 2005-02-09  Doug Rupp  <rupp@adacore.com>
8592         * gnatchop.adb (dup, dup2),
8593         g-dirope.adb (closedir, opendir, rmdir): Reference via System.CRTL.
8595         * gnatlbr.adb (mkdir),
8596         mlib-tgt-vms-ia64.adb (popen, plose):  Import with decc$ prefix.
8598         * s-crtl.ads (closdir, dup, dup2, opendir, rmdir): Import.
8600 2005-02-09  Doug Rupp  <rupp@adacore.com>
8602         * s-tpopde-vms.adb: Add pragma Warnings (Off) for Task_Id conversions.
8604 2005-02-09  Robert Dewar  <dewar@adacore.com>
8605             Thomas Quinot  <quinot@adacore.com>
8606             Javier Miranda  <miranda@adacore.com>
8607             Pascal Obry  <obry@adacore.com>
8608             Ed Schonberg  <schonberg@adacore.com>
8609             Doug Rupp  <rupp@adacore.com>
8610             Gary Dismukes  <dismukes@adacore.com>
8611             Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8613         * g-zstspl.ads: New file.
8615         * a-chahan.ads, a-chahan.adb: Add declarations from AI-285
8617         * a-string.ads: Add pragma Ada_05 for wide_wide_space to get warning in
8618         Ada 95 mode
8619         Add definition of Wide_Wide_Space for AI-285
8621         * impunit.ads, impunit.adb, sem_ch10.adb: Complete rewrite and new
8622         interface (to support Ada 95 and Ada 2005 units).
8623         Add Unbounded_IO files
8624         Add entries for Wide_Wide packages for AI-285
8625         Add list of containers packages to Ada 2005 unit list
8627         * a-swuwti.ads, a-swuwti.adb, a-suteio.ads, a-suteio.adb: Updates to
8628         support new Unbounded_IO package cleanly.
8630         * g-utf_32.ads, g-utf_32.adb: New files.
8632         * Makefile.rtl: Add entry for g-utf_32
8633         Add new files for Unbounded_IO
8634         Adjust make file for new AI-285 wide wide packages
8635         Add AI-302 containers to the run time.
8637         * a-stwibo.adb, a-stwibo.ads, a-stwisu.adb, a-stwisu.ads,
8638         a-strbou.ads, a-strbou.adb, a-strsup.ads, a-strsup.adb: New
8639         subprograms for AI-301.
8641         * a-stwiun.adb, a-stwiun.ads: Minor reformatting.
8643         * a-stunau.ads: Minor comment correction
8645         * rtsfind.ads, rtsfind.adb: Add definitions for Wide_Wide attributes
8646         etc.
8647         Also extend Text_IO_Kludge to support Wide_Wide_Text_IO
8648         (Check_RPC): Update to match changes in expanded code.
8649         Clean up unused entity.
8651         * exp_ch3.ads, exp_ch3.adb: Fix various places where Wide_Wide_String
8652         was not taken into account.
8653         This includes proper initialization with Normalize_Scalars.
8654         (Get_Simple_Init_Val): Major rewrite for initialize scalars and
8655         normalize scalars cases (particularly the latter) to do a better job
8656         of finding invalid representations.
8658         * s-scaval.ads, s-scaval.adb: Add values for zero invalid values
8660         * s-strops.ads, s-strops.adb: Remove string normalize routines, never
8661         used
8663         * exp_dist.adb: Add support for wide wide character type
8664         (Expand_Receiving_Stubs_Bodies): For a package declaration that has a
8665         private part, generate stub bodies at the end of the private part,
8666         not the visible part.
8667         (Add_RACW_Primitive_Operations_And_Bodies): Add last missing code for
8668         PolyORB support.
8669         (Add_Obj_RPC_Receiver_Completion): Add PCS-specific subprograms and
8670         generic wrapper to execute final processing after completing the
8671         expansion of the RPC receiver for an RACW.
8673         * snames.h, snames.ads, snames.adb: Add definitions for wide_wide
8674         packages and attributes.
8675         (Preset_Names): Addition of the new reserved words of Ada 2005,
8676         that is interface, overriding and synchronized.
8677         (Get_Pragma_Id): Give support to the use of the new reserved word
8678         "interface" as a pragma name.
8679         (Is_Pragma_Name): Give support to the use of the new reserved word
8680         "interface" as a pragma name.
8681         (Preset_Names): Add stream_size string for the Stream_Size Ada2005
8682         attribute implementation.
8684         * exp_attr.adb (Expand_Attribute_Reference): Do not apply validity
8685         checks to entities that are output parameters of Asm operations.
8686         Handle the Stream_Size attribute.
8687         Add implementation of Wide_Wide_Value, Wide_Wide_Image, Wide_Wide_Width
8689         * exp_imgv.ads, exp_imgv.adb: Add support for wide wide character type
8691         * sem_attr.adb (Eval_Attribute): Raise compile-time constraint error
8692         for second parameter being 0.0.
8693         Add support for wide wide character type.
8694         (Analyze_Attribute, Eval_Attribute): Handle the Stream_Size attribute.
8696         * s-valwch.adb, s-valwch.ads, s-imgwch.ads, s-imgwch.adb,
8697         s-wchstw.ads, s-wchstw.adb, s-wchwts.adb, s-wchwts.ads,
8698         s-widwch.adb, s-widwch.ads, s-wwdcha.adb, s-wwdcha.ads,
8699         s-wwdenu.adb, s-wwdenu.ads, s-wwdwch.adb, s-wwdwch.ads: Add support
8700         for wide wide character cases.
8702         * cstand.adb: Create entities for Wide_Wide_Character and
8703         Wide_Wide_String.
8705         * i-c.ads, i-c.adb: Fix not raising CE for null wide strings in
8706         accordance with AI-258.
8707         Add new declarations for 16/32 bit C character types (Part of AI285)
8709         * einfo.ads, einfo.adb (Is_Obsolescent, Is_Ada_2005): New flag
8710         (Obsolescent_Warning): New field
8711         (Rep_Clause): New local subprogram used to share code. Returns the rep
8712         clause for which the name is given in parameter.
8713         (Has_Stream_Size_Clause): New routine.
8714         (Stream_Size_Clause): Idem. Implementation is based on Rep_Clause.
8715         (Address_Clause): Implementation is now using Rep_Clause.
8716         (Alignment_Clause): Idem.
8717         (Size_Clause): Idem.
8719         * lib-xref.adb (Generate_Reference): Test for reference to Ada 2005
8720         entity in non-Ada 2005 mode and generate warning.
8722         * par-prag.adb: Add handling of one argument form for pragma Ada_05.
8723         (Prag): Code cleanup. Remove old gnat pragma "overriding"
8725         * sem_prag.adb: Add handling of one argument form for pragma Ada_05
8726         (Analyze_Pragma, case Elaborate, Elaborate_All): Do not disable warnings
8727         on the named unit if the pragma is not in the current compilation unit,
8728         so that elaboration calls in the current unit can set up an elaboration
8729         dependency on the named unit, as needed.
8730         (Analyze_Pragma, case Obsolescent): Allow pragma to be used for library
8731         subprogram as well as for subprograms declared within a package.
8732         (Analyze_Pragma, Sig_Flags): Code cleanup. Remove support for the GNAT
8733         pragma overriding.
8735         * krunch.ads, krunch.adb: Add special handling of Wide_Wide (krunched
8736         to z) to avoid some instances of duplication for Wide_Wide packages.
8738         * namet.ads, namet.adb: Implement encoding (WWhhhhhhhh) for wide wide
8739         characters.
8741         * scn.adb: Char_Literal_Value field is now a Uint
8743         * scng.adb: Significant rewrite to handle new Ada 2005 features
8744         allowing wide and wide wide characters in program text, e.g. for
8745         identifiers, as described in AI-285.
8746         (Set_Reserved): New procedure, makes setting up keywords cleaner.
8747         (Initialize_Scanner): Register the new reserved words of Ada 2005.
8748         (Scan): Give support to the new reserved words.
8750         * par-ch2.adb (P_Identifier): Compiling in Ada95 mode, generate a
8751         warning notifying that interface, overriding, and synchronized are
8752         new reserved words.
8753         (P_Pragma): Allow the use of the new reserved word "interface" as
8754         a pragma name.
8756         * gnatls.adb, gnatbind.adb,
8757         ali-util.adb, binde.adb, ali.ads, ali.adb: Code cleanup. Rename
8758         identifiers named "interface" to "SAL_Interface".
8760         * bindgen.adb (Gen_Main_Ada): Add support for the new SEH
8761         (Structured Exception handling).
8762         (Gen_Main_C): Idem.
8764         * bindgen.adb:
8765         (Gen_Main_Ada): Set the default exit code if specified.
8766         (Gen_Main_C): Likewise.
8767         Part of *DC20-006.
8768         (Gen_Output_File_C): Remove redundant output of gnat_exit_status.
8769         Code cleanup. Rename identifiers named "interface" to "SAL_Interface"
8771         * switch-b.adb, bindusg.adb, opt.ads, vms_data.ads: Add handling of
8772         new -Xnnn switch.
8774         * mlib-prj.adb, mlib.adb: Code cleanup. Rename one identifier that
8775         has a collision with the new Ada 2005 "interface" reserved word.
8777         * par-ch3.adb (P_Defining_Identifier): Compiling in Ada95 mode,
8778         generate a warning notifying that interface, overriding, and
8779         synchronized are new reserved words.
8781         * scans.ads (Token_Type): Addition of the tokens corresponding to the
8782         new reserved words of Ada 2005: Tok_Interface, Tok_Overriding
8783         and Tok_Synchronized.
8785         * sem_res.adb (Resolve_Actuals): Change error messages to refer to
8786         "dispatching" rather than "primitive" operations, since dispatching
8787         calls are now allowed to abstract formal subprograms (which are not
8788         primitive).
8789         Char_Literal_Value field is now a Uint
8790         (Resolve_Slice): If the prefix is an access to an unconstrained array,
8791         compute the actual subtype of the designated object to impose the proper
8792         index constraints.
8793         (Resolve_Selected_Component): Do not insert an access check if the
8794         prefix is an access type: such a node is expanded into an explicit
8795         dereference, on which the access check is performed anyway. Removes
8796         expensive duplicate checks.
8797         (Resolve_Call): Use new flag Is_Obsolescent and field
8798         Obsolescent_Warning so that pragma Obsolescent works on library
8799         subprograms.
8800         Add support for wide wide character type
8801         (Resolve_Allocator): Replace the error message on wrong null-exclusion
8802         value by a warning message.
8803         (Resolve_Type_Conversion): If the mixed-mode expression is interpreted
8804         as fixed-point, and one of the operands is non-static and universal, it
8805         can only be an illegal exponentiation operation, in which case there is
8806         no real value to retrieve.
8808         * exp_strm.adb: Add support for wide wide character type
8809         (Build_Elementary_Input_Call): Compute the size of the stream element by
8810         querying the rep chain to find the Stream_Attribute attribute value.
8811         (Build_Elementary_Write_Call): Ditto.
8813         * sem_aggr.adb: Char_Literal_Value field is now a Uint
8814         Add support for wide wide character type
8815         Replace the error messages on wrong null-exclusion value by warnings
8816         as described in Ada 2005.
8817         (Resolve_Extension_Aggregate): Document the fact that the error
8818         message on class-wide expressions in extensions aggregates.
8820         * sem_case.adb: Add support for wide wide character type
8822         * sem_ch13.adb: Add support for wide wide character type
8823         (Analyze_Attribute_Definition_Clause): Handle the Stream_Size attribute.
8825         * sem_ch3.adb: Add support for wide wide character type
8826         (Process_Subtype): If constraint is illegal for the type, set Ekind of
8827         now-useless Itype, to prevent cascaded errors on a compiler built
8828         without -gnatp.
8830         * sem_ch8.adb: Add with and use of Sem_Disp.
8831         (Analyze_Subprogram_Renaming): Replace unclean uses of
8832         Corresponding_Spec with Corresponding_Formal_Spec (and delete setting
8833         of Corresponding_Spec to Empty).
8834         (Attribute_Renaming): Replace use of Corresponding_Spec with
8835         Corresponding_ Formal_Spec and simplify condition.
8836         (Use_One_Package): Check that scope of homonym of identifier is defined,
8837         before checking whether it is a wrapper package.
8838         Add support for wide wide character type
8840         * sem_eval.adb: Add support for wide wide character type.
8841         (Eval_Arithmetic_Op): Check for compile time known signed integer
8842         overflow in the non-static case.
8843         (Subtypes_Statically_Match): A formal scalar type and its base type do
8844         not statically match.
8846         * sem_util.adb (Collect_Primitive_Operations): Minor change of "/=" to
8847         "not in" for test of N_Formal_Subprogram_Declaration (which is now a
8848         subtype).
8849         (Unit_Declaration_Node): Ditto.
8850         (Is_Variable_Prefix):  For the case of an indexed component whose prefix
8851         has a packed array type, the prefix has been rewritten into a type
8852         conversion. Determine variable-ness from the converted expression.
8853         Handle wide wide character cases.
8855         * stand.ads: Add types Wide_Wide_Character and Wide_Wide_String
8857         * stringt.ads, stringt.adb: Handle full UTF-32 range.
8858         Remove ["0A"] from comment, since it can look like a line terminator.
8859         Currently we don't permit this, but this is under discussion by the
8860         ARG, and it is easy enough to use a different example.
8862         * s-wchcon.ads, s-wchcnv.ads, s-wchcnv.adb: Add new subprograms for
8863         handling UTF-32 encoding for wide wide character.
8864         Implement new brackets coding ["hhhhhhhh"]
8865         Add UTF-8 encodings for full UTF-32 range
8867         * ttypes.ads: Add definition of Standard_Wide_Wide_Character_Size
8869         * types.h, types.ads, types.adb: Wide_Wide_Character now has full 31
8870         bit range Add full UTF-32 support.
8871         (RT_Exception_Code): Addition of CE_Null_Not_Allowed; used to
8872         notify that constraint error will be raised at run-time
8873         because a null value is assigned to a null-excluding object.
8874         Remove some obsolete declarations and make Char_Code
8875         unsigned.
8877         * a-except.adb (Rcheck_30): New subprogram. Addition of the message
8878         corresponding to CE_Null_Not_Allowed, and adjust the output of all the
8879         Rcheck subprograms.
8881         * checks.adb (Check_Null_Not_Allowed): Replace the error message on
8882         wrong null-exclusion value by a warning message.
8883         (Enable_Range_Check): Do range check if the prefix is an
8884         explicit dereference whose designated object is an unconstrained array.
8885         Current algorithm for removing duplicate checks is over-eager in this
8886         case.
8888         * sem_ch5.adb (Analyze_Assignment): Replace the error messages on wrong
8889         null-exclusion value by a warning message
8891         * atree.h, atree.ads, atree.adb: Remove Char_Code field support
8892         completely. Add support for Uint2 field
8894         sem_ch2.adb, exp_ch11.adb, exp_dbug.adb,
8895         exp_prag.adb: Char_Literal_Value field is now a Uint.
8897         * exp_util.adb (Insert_Actions): Replace
8898         N_Formal_Subprogram_Declaration by
8899         N_Formal_{Abstract|Concrete}_Subprogram_Declaration.
8900         Char_Literal_Value field is now a Uint.
8902         * sinfo.ads, sinfo.adb (Corresponding_Formal_Spec): New function
8903         defined for subprogram renaming declarations. When set, the field
8904         indicates the defining entity of a corresponding formal subprogram
8905         when the renaming corresponds to a formal subprogram association in an
8906         instantiation.
8907         (Set_Corresponding_Formal_Spec): New procedure to return
8908         Corresponding_Formal_Spec field.
8909         Minor changes of "=" to "in" in tests of N_Formal_Subprogram_Declaration
8910         (which is now a subtype).
8911         Char_Literal_Value field is now a Uint
8913         * exp_disp.ads, exp_disp.adb (Make_DT): Generate code that moves the
8914         pointer to the base of the dispatch table.
8915         Minor changes to comments.
8916         (Controlling_Type): New function for determining the tagged type
8917         associated with a tagged primitive subprogram.
8918         (Expand_Dispatching_Call): Add support for a controlling actual that is
8919         directly a value of type Ada.Tag rather than a tagged object.
8921         * i-cpp.ads, i-cpp.adb, a-tags.ads, a-tags.adb: Update documentation
8922         describing the new layout.
8923         (Dispatch_Table): The expander computes the actual array size, allocates
8924         the Dispatch_Table record accordingly, and generates code that displaces
8925         the base of the record after the Typeinfo_Ptr component. The access to
8926         these components is done by means of local functions.
8927         (Offset_To_Top): New function.
8928         (Typeinfo_Ptr): New function.
8929         (Get_TSD): Modified to access the new position of the TSD.
8930         (Set_TSD): Modified to save the TSD in its new position.
8932         * par-ch12.adb (P_Formal_Subprogram_Declaration): Add parsing for the
8933         case of formal abstract subprograms. Add check and message for -gnat05.
8934         Update comments.
8936         * sem_ch12.adb: Add with and use for Sem_Disp.
8937         (Analyze_Associations): Minor change from "=" to "in" for use of
8938         N_Formal_Subtype_Declaration (which is now a subtype).
8939         (Set_Analyzed_Formal): Minor changes from "=" to "in" for uses of
8940         N_Formal_Subtype_Declaration (which is now a subtype).
8941         (Analyze_Formal_Subprogram): Add handling for
8942         N_Formal_Abstract_Subprogram, marking the formal as abstract and
8943         dispatching, setting the controlling status of the formal parameters
8944         and result, and issuing an error if there is no controlling type for
8945         the formal subprogram.
8946         (Instantiate_Formal_Subprogram): Rather than setting Corresponding_Spec,
8947         which is an unclean use of that field, we set the new field
8948         Corresponding_Formal_Spec to make the formal subprogram available to
8949         processing in Analyze_Subprogram_Declaration.
8950         (Analyze_Formal_{Discrete, Decimal_Fixed_Point, Fixed_Point,
8951         Floating_Point, Modular_Integer, Signed_Integer}_Type: Make formal type
8952         Constrained, so that it is is does not statically match its anonymous
8953         base type.
8955         * sem_ch6.adb (Analyze_Subprogram_Specification): Include test for
8956         abstract formal subprograms in error check for functions returning
8957         abstract types. Set scope of new designator for
8958         a parameterless subprogram, so that it is available when checking the
8959         body for nested subprograms, before full analysis of said body.
8960         (Analyze_Subprogram_Body): Warn on inlining bodies with nested
8961         subprogram only if inner one comes from source.
8962         (Analyze_Function_Call): If the call is given in object notation, the
8963         analysis of the name rewrites the node and analyzes it with the proper
8964         argument list. After analyzing the name, if the call has been rewritten
8965         and the result type is set, no further analysis is needed.
8966         (Analyze_Return_Type): Subsidiary to Process_Formals: analyze subtype
8967         mark in function specification, in a context where the formals are
8968         visible and hide outer homographs.
8970         * sem_disp.adb (Check_Controlling_Type): Relax the check for same scope
8971         as the tagged type for the cases of abstract formal subprograms and
8972         renamings of those.  Clean up spec comments.
8973         (Check_Dispatching_Context): Add error message to indicate "abstract
8974         procedure", covering the case of a call to a formal abstract procedure
8975         that has statically tagged operands.
8976         (Check_Dispatching_Call): Check for the case of an actual given by
8977         a tag-indeterminate function call whose type is an ancestor of the
8978         containing call's associated tagged type. This situation can occur
8979         for inherited primitives with function defaults. In this case we
8980         use the tagged type's tag directly as the controlling argument for
8981         the calls.
8982         (Expand_Call): Name change on call to Expand_Dispatch_Call.
8984         * sprint.adb (Sprint_Node_Actual): Split
8985         N_Formal_Subprogram_Declaration into two alternatives for the new
8986         cases N_Formal_Abstract_Subprogram_Declaration and
8987         N_Formal_Concrete_Subprogram_Declaration.
8988         Char_Literal_Value field is now a Uint.
8990         * trans.c: Get rid of junk Uint2 reference.
8991         Char_Literal_Value field is now a Uint.
8992         (gnat_to_gnu, case N_Aggregate): Check TYPE_UNCHECKED_UNION_P.
8993         (gigi): Correct third arg to gimplify_body.
8995         * ada-tree.h: (TYPE_UNCHECKED_UNION_P): New flag.
8996         (TYPE_LANG_FLAG_0): Check for record or union.
8998         * treepr.adb: Char_Literal_Value field is now a Uint
9000         * uintp.h, uintp.ads, uintp.adb: Add new routines UI_To_CC and
9001         UI_From_CC.
9003         * widechar.ads, widechar.adb (Is_UTF_32_Non_Graphic): New function
9004         Add full UTF-32 support
9005         Char_Code is now 32 bits
9007         * sinput.ads, sinput.adb (Skip_Line_Terminators): Extend to deal with
9008         wide character UTF_32 line terminators.
9009         Initialize Main_Source_File to avoid error when no main
9010         source is loaded.
9012         * errout.adb (Finalize): Do not check Num_SRef_Pragmas
9013         (Main_Source_File) when no main source has been loaded, to avoid
9014         potential crash.
9016 2005-02-09  Robert Dewar  <dewar@adacore.com>
9018         * a-strunb.ads, a-strunb.adb: Add missing pragma Ada_05 statements
9019         Fix name of Set routine
9021         * a-strfix.ads, a-strfix.adb: Add new index functions from AI-301 to
9022         fixed packages.
9024         * a-stwise.ads, a-stwise.adb, a-stwifi.ads, a-stwifi.adb,
9025         a-strsea.ads, a-strsea.adb: Add new index functions from AI-301 to
9026         fixed packages
9028         * a-witeio.ads, a-witeio.adb, a-textio.ads, a-textio.adb: New function
9029         forms of Get_Line subprograms for AI-301.
9031         * a-wtcoau.adb, a-wtcoau.ads, a-wtcoio.adb, a-wtcoio.ads,
9032         a-wtedit.adb, a-wtedit.adb, a-wtedit.ads, a-wttest.adb,
9033         a-wttest.ads, a-strmap.ads, a-strmap.adb, a-stwima.adb,
9034         a-stwima.ads: Minor reformatting.
9036 2005-02-09  Doug Rupp  <rupp@adacore.com>
9037             Thomas Quinot  <quinot@adacore.com>
9039         * adaint.c, adaint.h
9040         [VMS] (to_ptr32): New function.
9041         (MAYBE_TO_PTR32): New macro.
9042         (__gnat_portable_spawn,__gnat_portable_no_block_spawn): Adjust argv
9043         for pointer size.
9044         [VMS] (descriptor_s, ile_s): Use __char_ptr32 for adr field.
9045         [VMS] (#define fork()): Remove since unneccessary.
9046         (__gnat_set_close_on_exec): New routine to support
9047         GNAT.OS_Lib.Set_Close_On_Exec.
9049         * g-expect.adb (Set_Up_Communications): Mark the pipe descriptors for
9050         the parent side as close-on-exec so that they are not inherited by the
9051         child.
9053         * g-os_lib.ads, g-os_lib.adb (Set_Close_On_Exec): New subprogram to
9054         set or clear the FD_CLOEXEC flag on a file descriptor.
9056 2005-02-09  Eric Botcazou  <ebotcazou@adacore.com>
9057             Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9059         Fix for c330001 - PR ada/19386
9061         * decl.c:
9062         (gnat_to_gnu_field): Do not necessarily invoke make_packable_type
9063         on the field if Pragma Component_Alignment (Storage_Unit).
9064         (gnat_to_gnu_entity, case object): Do not treat a renaming that has
9065         side-effects as if it were a constant; also make SAVE_EXPR to protect
9066         side-effects.
9067         (gnat_to_gnu_entity, case E_Record_Subtype): If have _Parent, make a
9068         UNION_TYPE.
9069         (make_dummy_type): Set TYPE_UNCHECKED_UNION_P.
9070         (components_to_record): Test it.
9071         Fix improper usage of REFERENCE_CLASS_P.
9073         * utils2.c (build_binary_op, case MODIFY_EXPRP): Treat UNION_TYPE as
9074         RECORD_TYPE.
9076         * utils2.c: Minor reformatting.
9078         * utils.c (convert, case UNION_TYPE): Check TYPE_UNCHECKED_UNION;
9079         handle other cases like RECORD_TYPE.
9081         * utils.c (gnat_pushdecl): Set TREE_NO_WARNING.
9083 2005-02-09  Ed Schonberg  <schonberg@adacore.com>
9085         * exp_aggr.adb (Gen_Assign): If the expression is an aggregate for a
9086         component of an array of arrays in an assignment context, and the
9087         aggregate has component associations that require sliding on
9088         assignment, force reanalysis of the aggregate to generate a temporary
9089         before the assignment.
9090         (Must_Slide): Make global to the package, for use in Gen_Assign.
9092 2005-02-09  Ed Schonberg  <schonberg@adacore.com>
9094         * exp_ch4.adb (Expand_Composite_Equality): If a component is an
9095         unchecked union with no inferable discriminants, return a
9096         Raise_Program_Error node, rather than inserting it at the point the
9097         type is frozen.
9098         (Expand_Record_Equality, Component_Equality): Handle properly the case
9099         where some subcomponent is an unchecked union whose generated equality
9100         code raises program error.
9102 2005-02-09  Doug Rupp  <rupp@adacore.com>
9104         * gnatbl.c: [VMS] (_POSIX_EXIT): Define.
9105         [VMS] (#define exit hack): Remove.
9107 2005-02-09  Pascal Obry  <obry@adacore.com>
9108             Arnaud Charlet <charlet@adacore.com>
9110         * init.c (__gnat_initialize): Add a new parameter eh which contains the
9111         address of the exception registration. The Win32 version of this
9112         routine calls __gnat_install_SEH_handler() to initialize the SEH
9113         (Structured Exception Handling) handler.
9114         (__gnat_error_handler) [Win32]: Removed. Not needed as we use
9115         SEH (Structured Exception Handling) now.
9116         (__gnat_install_handler) [Win32]: Nothing to do now as we use SEH.
9117         (__gnat_initialize for ppc-vxworks): Adjust comments and the
9118         preprocessor condition protecting the call to the extra eh setup
9119         subprogram, which is only available for the ppc target.
9120         (__gnat_clear_exception_count): replaced reference to
9121         variable taskIdCurrent by call to taskIdSelf(), cleaner.
9123         * seh_init.c: New file.
9125         * Make-lang.in: (GNAT_ADA_OBJS): Add seh_init.o.
9126         (GNATBIND_OBJS): Idem.
9128         * misc.c (gnat_parse_file): Update call to __gnat_initialize. This
9129         routine takes a new parameter (a pointer to the exception registration
9130         for the SEH (Structured Exception Handling) support.
9132         * raise.h: (__gnat_install_SEH_handler): New prototype.
9133         Update copyright notice.
9135         * s-tassta.adb (Task_Wrapper): Declare the exception registration
9136         record and initialize it by calling __gnat_install_SEH_handler.
9138 2005-02-09  Vincent Celier  <celier@adacore.com>
9140         * make.adb (Gnatmake): Do not fail when the main project has no object
9141         directory.
9143 2005-02-09  Doug Rupp  <rupp@adacore.com>
9145         * Makefile.in [VMS] (LN,LN_S): Define as cp -p
9146         Rename s-asthan-vms.adb to s-asthan-vms-alpha.adb.
9147         [VMS]: Add translations for g-enblsp.adb.
9149         * s-asthan-vms.adb: Removed.
9150         * s-asthan-vms-alpha.adb: Added.
9152 2005-02-09  Pascal Obry  <obry@adacore.com>
9154         * Makefile.in (LIBGNAT_SRCS): Add seh_init.c.
9155         (LIBGNAT_OBJS): Add seh_init.o.
9157 2005-02-09  Arnaud Charlet  <charlet@adacore.com>
9159         PR ada/16592
9161         * Makefile.in: Link all gnat tools with -static-libgcc, since
9162         -shared-libgcc is now used by default on some systems (e.g. linux with
9163         recent binutils).
9164         Remove references to Makefile.prolog/generic, no longer used.
9166 2005-02-09  Vincent Celier  <celier@adacore.com>
9168         * prj-makr.adb (Process_Directory): Put file name in canonical case
9169         before matching against the patterns.
9170         If gnatname has been invoked as <prefix>-gnatname
9171         then invoke the compiler as <prefix>-gcc, not just "gcc".
9173 2005-02-09  Ed Schonberg  <schonberg@adacore.com>
9175         * sem_ch4.adb (Analyze_Selected_Component): Create Actual_Subtype even
9176         with expansion disabled. The actual subtype is needed among other
9177         places when the selected component appears in the context of a loop
9178         bound, and denotes a packed array.
9179         (Operator_Check): Always use the first subtype in the
9180         error message, to avoid the appearance of internal base types.
9181         (Transform_Object_Operation): Copy each actual in full
9182         to the parameter associations of the constructed call, rather than
9183         using the shallow copy mechanism of New_Copy_List. This ensures that
9184         the chaining of named associations is done properly.
9185         (Complete_Object_Operation): Rewrite node, rather than
9186         replacing it, so that we can trace back to the original selected
9187         component.
9189         * sem_elab.adb (Set_Elaboration_Constraint): For initialization calls,
9190         and calls that use object notation, if the called function is not
9191         declared  in a withed unit, place the elaboration constraint on the
9192         unit in the context that makes the function accessible.
9193         (Check_Elab_Subtype_Declaration): Check whether a subtype declaration
9194         imposes an elaboration constraint between two packages.
9196 2005-02-09  Ed Schonberg  <schonberg@adacore.com>
9198         * sem_ch7.adb (Uninstall_Declarations): Exchange full and private
9199         views of a private type after handling its private dependents, to
9200         maintain proper stack discipline between entry and exit from the
9201         package.
9203 2005-02-09  Cyrille Comar  <comar@adacore.com>
9205         * s-finimp.adb: (Finalize_List): Optimize in the no-abort case.
9206         Minor reformatting.
9208 2005-02-09  Arnaud Charlet  <charlet@adacore.com>
9210         * s-tporft.adb (Register_Foreign_Thread): Initialize Task_Image[_Len]
9211         fields for foreign threads.
9213 2005-02-09  Doug Rupp  <rupp@adacore.com>
9215         * s-vaflop.adb: Add pragma Warnings (Off) to eliminate infinite
9216         recursion warnings when compiled with -gnatdm.
9218 2005-02-09  Robert Dewar  <dewar@adacore.com>
9220         * usage.adb: Add line for switch -gnat05 (allow Ada 2005 extensions)
9221         Slight fix to documentation of -gnaty with no parameters
9223         * xr_tabls.ads: Add ??? comment for missing overall comment
9225         * xsinfo.adb: Make default file name be sinfo.h, since this is what
9226         we now use by default.
9228         * xsnames.adb: Adjust end of file test to look for five space followed
9229         by '#' instead of six spaces. The format of xsnames.adb was modified
9230         in the last update.
9232         * a-numeri.ads: Add reference to AI-388 for greek letter pi
9233         identifier.
9235         * clean.adb: Minor reformatting.
9237         * gnat1drv.adb, gnatfind.adb, gnatlink.adb, gnatmem.adb,
9238         gnatname.adb: Minor reformatting
9239         Add 2005 to copyright output when utility is run
9241         * csets.adb: Eliminate obsolete comment
9243         * debug.adb, g-socket.ads, i-cobol.adb: Minor reformatting throughout
9244         Update comments.
9246         * sem_eval.ads (Eval_Integer_Literal): Do not inline this, not useful.
9248 2005-02-09  Sergey Rybin  <rybin@adacore.com>
9250         * gnat_ugn.texi: Add to the gnatpp section the paragraph describing
9251         the difference between compact and incompact layout and add the record
9252         representation clause to the example illustrating different layouts.
9253         Add the description of '-A5' gnatpp option ("align 'AT' keywords in
9254         component clauses").
9256 2005-02-09  Florian Villoing  <villoing@adacore.com>
9258         * gnat_ugn.texi: Fix typos.
9259         Use @command to display 'gcc', 'gnatbind', etc. insted of @code or
9260         @file.
9261         Make proper use of @ref, @xref and @pxref to avoid duplication of "see"
9262         in the generated documentation.
9264 2005-02-09  Arnaud Charlet  <charlet@adacore.com>
9266         * gnat_ugn.texi: Remove all mentions of FSU threads, which are no
9267         longer supported.
9268         Update linker wrapper when linking with non GNU C++.
9270 2005-02-09  Pascal Obry  <obry@adacore.com>
9272         * gnat_ugn.texi:
9273         Document the procedure to debug the DllMain routine on Windows.
9274         Add note about -funwind-tables and mixed Ada and C/C++ programming in
9275         ZCX mode.
9276         Document new BIND qualifer /RETURN_CODES=VMS.
9278 2005-02-09  Ben Brosgol  <brosgol@adacore.com>
9280         * gnat_ugn.texi: Wordsmithing of "GNAT and Libraries" chapter
9281         Edited gnatmetric chapter
9283 2005-02-09  Robert Dewar  <dewar@adacore.com>
9285         * gnat_rm.texi:
9286         Changes to document new wide wide character support
9287         For AI-285
9288         Update documentation on Normalize_Scalars and Initialize_Scalars
9290 2005-02-09  Pascal Obry  <obry@adacore.com>
9292         * s-taprop-mingw.adb, s-soflin.ads: Minor reformatting.
9294 2005-02-09  Jose Ruiz  <ruiz@adacore.com>
9296         * s-osinte-vxworks.ads (taskPriorityGet): Add this function (imported
9297         from the VxWorks kernel) that is needed for getting the active
9298         priority of the different tasks.
9300         * s-atacco.ads, s-atacco.adb (Nothing): Remove this dummy procedure.
9301         Use a pragma Elaborate_Body in the spec file instead.
9302         Noticed by code reading.
9304 2005-02-09  Thomas Quinot  <quinot@adacore.com>
9306         * exp_util.ads: Minor correction in comment.
9308 2005-02-09  Arnaud Charlet  <charlet@adacore.com>
9310         * s-taprop.ads (Initialize): Update comments. Remove pragma Inline,
9311         since this procedure is now too complex to be worth inlining.
9313 2005-02-09  Richard Henderson  <rth@redhat.com>
9315         * utils.c (gnat_define_builtin): Remove.
9316         (gnat_install_builtins): Use build_common_builtin_nodes.
9318 2005-02-09  Arnaud Charlet  <charlet@adacore.com>
9320         * a-rbtgso.adb, a-crbtgo.ads, a-crbtgo.adb, a-crbtgk.ads,
9321         a-crbtgk.adb, a-crbltr.ads, a-coprnu.ads, a-coprnu.adb,
9322         a-coorse.ads, a-coorse.adb, a-convec.ads, a-convec.adb,
9323         a-contai.ads, a-coinve.ads, a-coinve.adb, a-cohata.ads,
9324         a-cohama.ads, a-cohama.adb, a-ciorse.ads, a-ciorse.adb,
9325         a-cihama.ads, a-cihama.adb, a-cidlli.ads, a-cidlli.adb,
9326         a-chtgop.ads, a-chtgop.adb, a-cgcaso.ads, a-cgcaso.adb,
9327         a-cgarso.ads, a-cgarso.adb, a-cdlili.ads, a-cdlili.adb,
9328         a-cgaaso.adb, a-coormu.adb, a-ciormu.adb, a-cihase.adb,
9329         a-cihase.ads, a-cohase.adb, a-cohase.ads, a-ciorma.ads,
9330         a-coorma.ads, a-swunha.ads, a-stunha.ads, a-ciormu.ads,
9331         a-coormu.ads, a-rbtgso.ads, a-swunha.adb, a-stunha.adb,
9332         a-cgaaso.ads, a-ciorma.adb, a-coorma.adb, a-secain.adb,
9333         a-secain.ads, a-slcain.ads, a-slcain.adb, a-shcain.ads,
9334         a-shcain.adb, a-chtgke.ads, a-chtgke.adb, a-stwiha.ads,
9335         a-stwiha.adb, a-strhas.ads, a-strhas.adb, a-chzla1.ads,
9336         a-chzla9.ads, a-lfztio.ads, a-liztio.ads, a-llfzti.ads,
9337         a-llizti.ads, a-sfztio.ads, a-siztio.ads, a-ssizti.ads,
9338         a-stzbou.adb, a-stzbou.ads, a-stzfix.adb, a-stzfix.ads,
9339         a-stzhas.adb, a-stzhas.ads, a-stzmap.adb, a-stzmap.ads,
9340         a-stzsea.adb, a-stzsea.ads, a-stzsup.adb, a-stzsup.ads,
9341         a-stzunb.adb, a-stzunb.ads, a-swunau.adb, a-swunau.ads,
9342         a-szmzco.ads, a-szunau.adb, a-szunau.ads, a-szunha.adb,
9343         a-szunha.ads, a-szuzti.adb, a-szuzti.ads, a-tiunio.ads,
9344         a-wwunio.ads, a-ztcoau.adb, a-ztcoau.ads, a-ztcoio.adb,
9345         a-ztcoio.ads, a-ztcstr.adb, a-ztcstr.ads, a-ztdeau.adb,
9346         a-ztdeau.ads, a-ztdeio.adb, a-ztdeio.ads, a-ztedit.adb,
9347         a-ztedit.ads, a-ztenau.adb, a-ztenau.ads, a-ztenio.adb,
9348         a-ztenio.ads, a-ztexio.adb, a-ztexio.ads, a-ztfiio.adb,
9349         a-ztfiio.ads, a-ztflau.adb, a-ztflau.ads, a-ztflio.adb,
9350         a-ztflio.ads, a-ztgeau.adb, a-ztgeau.ads, a-ztinau.adb,
9351         a-ztinau.ads, a-ztinio.adb, a-ztinio.ads, a-ztmoau.adb,
9352         a-ztmoau.ads, a-ztmoio.adb, a-ztmoio.ads, a-zttest.adb,
9353         a-zttest.ads, a-zzunio.ads: New files. Part of new Ada 2005
9354         library.
9356 2005-01-27  Laurent GUERBY <laurent@guerby.net>
9358         * Makefile.in: Fix a-intnam.ads from previous commit,
9359         add 2005 to copyright.
9360         * a-intman-rtems.ads: Renamed to...
9361         * a-intnam-rtems.ads:
9363 2005-01-27  Laurent GUERBY <laurent@guerby.net>
9365         * Makefile.in: Rename GNAT RTEMS specific files.
9366         * 5rtpopsp.adb, 4rintnam.ads, 5rosinte.adb,
9367         5rosinte.ads, 5rparame.adb: Replaced by files below.
9368         * s-tpopsp-rtems.adb, a-intman-rtems.ads, s-osinte-rtems.adb,
9369         s-osinte-rtems.ads, s-parame-rtems.adb: Replace files above.
9371 2005-01-27  Joel Sherrill <joel.sherrill@oarcorp.com>
9372             Laurent GUERBY <laurent@guerby.net>
9374         PR ada/19488
9375         * 5rosinte.ads: Add No_Key constant.
9376         * 5rtpopsp.adb: Initialize ATCB_Key with No_Key and fix style.
9377         * gsocket.h: Do not include <sys/socket.h> with RTEMS either.
9379 2005-01-26  Laurent GUERBY <laurent@guerby.net>
9381         PR ada/19414
9382         * i-cobol.adb (Valid_Numeric): Handle zero length case.
9384 2005-01-20  Richard Henderson  <rth@redhat.com>
9386         * Makefile.in (alpha-linux, LIBGNAT_TARGET_PAIRS): Use
9387         a-intnam-linux.ads and system-linux-alpha.ads.
9388         * a-intnam-linux-alpha.ads: Remove file.
9389         * s-osinte-linux-alpha.ads (SIGUNUSED, SIGSTKFLT, SIGLOST): New.
9390         * system-linux-alpha.ads: New file.
9392 2005-01-18  Jakub Jelinek  <jakub@redhat.com>
9394         PR ada/13470
9395         * a-stunau.adb (Get_String): Don't return U.Reference, but Ret that is
9396         set to the new string.
9398 2005-01-18  Toon Moene  <toon@moene.indiv.nluug.nl>
9400         * system-linux-ppc.ads: Set ZCX_By_Default and GCC_ZCX_Support
9401         to True.
9403 2005-01-18  Richard Henderson  <rth@redhat.com>
9405         * Makefile.in (LIBGNAT_TARGET_PAIRS, TOOLS_TARGET_PAIRS, MISCLIB,
9406         THREADSLIB, GNATLIB_SHARED, PREFIX_OBJS, LIBRARY_VERSION): Specialize
9407         for alpha-linux.
9408         * s-osinte-linux-alpha.ads, a-intnam-linux-alpha.ads: New files.
9410 2005-01-14  Andrew Pinski  <pinskia@physics.uc.edu>
9412         * system-darwin-ppc.ads (ZCX_By_Default): Change to True.
9413         (GCC_ZCX_Support): Likewise.
9415 2005-01-11  Bastian Blank  <waldi@debian.org>
9417         * system-linux-s390.ads: Define Preallocated_Stacks.
9418         * system-linux-s390x.ads: Likewise.
9420 2005-01-04  Arnaud Charlet  <charlet@adacore.com>
9422         * gnat_ugn.texi: Fix texi errors with null variables.
9424 2005-01-03  Thomas Quinot  <quinot@adacore.com>
9426         * gen-soccon.c: New utility program to generate g-soccon.ads
9427         automatically.
9429         * socket.c, gsocket.h: Split inclusion of system header files into a
9430         gsocket.h file separated from socket.c, to allow reuse in gen-soccon.c.
9432         * g-soccon.ads, g-soccon-unixware.ads, g-soccon-tru64.ads,
9433         g-soccon-aix.ads, g-soccon-irix.ads, g-soccon-hpux.ads,
9434         g-soccon-interix.ads, g-soccon-solaris.ads, g-soccon-mingw.ads,
9435         g-soccon-vxworks.ads, g-soccon-freebsd.ads: Note that these files
9436         should not be edited by hand anymore, but should be regenerated using
9437         gen-soccon.
9439 2005-01-03  Robert Dewar  <dewar@adacore.com>
9440             Ed Schonberg  <schonberg@adacore.com>
9441             Vincent Celier  <celier@adacore.com>
9443         * s-atacco.ads, a-direio.adb: Protect use of 'Constrained by warnings
9444         on/off, since this is an obsolescent feature, for which we now generate
9445         a warning.
9447         * sem_attr.adb (Analyze_Attribute, case Constrained): Issue warning if
9448         warning mode is set and obsolescent usage of this attribute occurs.
9449         (Resolve_Access, case 'Access): Note that GNAT uses the context type to
9450         disambiguate overloaded prefixes, in accordance with AI-235. GNAT code
9451         predates, and partly motivates, the adoption of the AI.
9452         Implement new Ada 2005 attribute Mod
9454         * exp_attr.adb (Expand_N_Attribute_Reference): Implement Ada 2005
9455         attribute Mod.
9457         * par-ch4.adb (P_Name): In Ada 2005 mode, recognize new attribute Mod
9459         * snames.h, snames.ads, snames.adb: Add entry for No_Dependence for
9460         pragma restrictions.
9461         New entry for Ada 2005 attribute Mod.
9463         * par-prag.adb:
9464         Add recognition of new pragma Restrictions No_Dependence
9465         Recognize restriction No_Obsolescent_Features at parse time
9467         * bcheck.adb: Add circuitry for checking for consistency of
9468         No_Dependence restrictions.
9470         * lib-writ.ads, lib-writ.adb: Output new R lines for No_Dependence
9471         restrictions.
9473         * restrict.ads, restrict.adb: Add subprograms to deal with
9474         No_Dependence restrictions.
9476         * rtsfind.adb: Check that implicit with's do not violate No_Dependence
9477         restrictions.
9479         * sem_ch3.adb, sem_ch11.adb, sem_ch13.adb, lib-xref.adb,
9480         sem_attr.adb: Add check for new restriction No_Obsolescent_Features
9482         * scn.ads, prj-err.ads, prj-err.adb, ali-util.adb, gprep.adb: Add new
9483         dummy parameter to scng instantiation.
9484         Needed for new restriction No_Obsolescent_Features
9486         * scn.adb: (Obsolescent_Check): New procedure
9487         Needed for new restriction No_Obsolescent_Features
9489         * scng.ads, scng.adb: Always allow wide characters in Ada 2005 mode, as
9490         specified by AI-285, needed for implementation of AI-388 (adding greek
9491         pi to Ada.Numerics).
9492         Add new generic formal to scng, needed for new restriction
9493         No_Obsolescent_Features.
9495         * s-rident.ads: Add new restriction No_Obsolescent_Features.
9497         * ali.ads, ali.adb: Adjustments for reading new No_Dependence
9498         restrictions lines.
9499         (Scan_ALI): When finding an unexpected character on an R line, raise
9500         exception Bad_R_Line, instead of calling Fatal_Error, so that, when
9501         Ignore_Errors is True, default restrictions are set and scanning of the
9502         ALI file continues with the next line. Also, when Bad_R_Line is raised
9503         and Ignore_Errors is True, skip to the end of le line.
9505         * sem_ch10.adb: Check that explicit with's do not violate
9506         No_Dependence restrictions.
9507         (Install_Withed_Unit): Add code to implement AI-377 and diagnose
9508         illegal context clauses containing child units of instance.
9510         * sem_prag.adb: Processing and checking for new No_Dependence
9511         restrictions.
9512         (Analyze_Pragma, case Psect_Object): Call Check_Arg_Is_External_Name to
9513         analyze and check the External argument.
9515         * a-numeri.ads: Add greek letter pi as alternative spelling of Pi
9517 2005-01-03  Robert Dewar  <dewar@adacore.com>
9519         * atree.adb: Add a fifth component to entities
9520         This allows us to add 32 flags and four new fields
9522         * atree.ads: Add a fifth component to entities
9523         This allows us to add 32 flags and four new fields
9525         * einfo.ads, einfo.adb: Document new fields and new flags now available
9526         Add routines for printing new fields
9528         * treepr.adb: Call routines to print out additional fields if present
9530 2005-01-03  Arnaud Charlet  <charlet@adacore.com>
9532         * bld.ads, bld.adb, bld-io.ads, bld-io.adb, gprcmd.adb,
9533         gpr2make.ads, gpr2make.adb: Remove gpr2make, replaced by gprmake.
9535         * Makefile.in: Add support to build shared Ada libraries on solaris x86
9536         Remove gpr2make, replaced by gprmake.
9537         Remove references to gnatmem and libaddr2line.
9538         Add indepsw.adb<indepsw-linux.adb to TOOLS_TARGET_PAIRS for IA64 linux.
9539         (gnatlib-shared-darwin): Add "-fno-common" to GNATLIBCFLAGS.
9540         Add support for specialized version of Ada.Numerics.Aux for Darwin: use
9541         a-numaux-darwin.ads and a-numaux-darwin.adb
9542         Enable mlib-tgt-lynxos.adb on lynxos.
9544         * Make-lang.in: Remove rules for gpr2make.
9545         When generating sdefault.adb, do not call Relocate_Path
9546         on S3 for function Target_Name, as it is not a path.
9547         Remove references to gnatmem and libaddr2line.
9549         * a-numaux-darwin.ads, a-numaux-darwin.adb, g-soccon-darwin.ads: New
9550         files.
9552 2005-01-03  Samuel Tardieu  <tardieu@adacore.com>
9554         * checks.adb (Apply_Alignment_Check): Generate a warning if an object
9555         address is incompatible with its base type alignment constraints when
9556         this can be decided statically.
9558 2005-01-03  Olivier Hainque  <hainque@adacore.com>
9560         * decl.c (compatible_signatures_p): New function. The intended purpose
9561         is to check if two function signatures for a call-site and a callee are
9562         compatible enough for the call to be valid. The underlying purpose is
9563         to check if a call to a mapped builtin is using the right interface.
9564         The current code actually does not check antyhing - this a placeholder
9565         for future refinements.
9566         (gnat_to_gnu_entity) <E_Subprogram_Call>: Add preliminary bits to handle
9567         builtin calls for convention Intrinsic.
9569         * gigi.h (builtin_decl_for): Declare (new function).
9571         * utils.c (gnat_install_builtins): Install the target specific builtins.
9572         (builtin_decl_for): New function, provide a dummy body for now.
9574 2005-01-03  Geert Bosch  <bosch@adacore.com>
9576         * eval_fat.adb: (Eps_Model,Eps_Denorm): Remove, no longer used.
9577         (Succ): Re-implement using Scaling, Exponent and Ceiling attributes.
9578         (Pred): Implement in terms of Succ.
9580         * trans.c (convert_with_check): Reimplement conversion of float to
9581         integer.
9583 2005-01-03  Ed Schonberg  <schonberg@adacore.com>
9584             Vincent Celier  <celier@adacore.com>
9586         * exp_aggr.adb (Packed_Array_Aggregate_Handled): The values of the
9587         bounds can be negative, and must be declared Int, not Nat.
9589         * sem_elim.adb (Line_Num_Match): Correct wrong code when index in an
9590         array is checked after using the index in the array.
9592         * makegpr.adb (Add_Switches): Check if there is a package for the
9593         processor. If there is no package, do not look for switches.
9595 2005-01-03  Ed Schonberg  <schonberg@adacore.com>
9597         * exp_ch3.adb (Stream_Operations_OK): Predicate to determine when the
9598         generation of predefined stream operations (specs and bodies) should
9599         proceed. Under various restrictions these subprograms must not be
9600         generated.
9602 2005-01-03  Thomas Quinot  <quinot@adacore.com>
9604         * exp_dist.adb:
9605         Declare subprogram index in Build_RPC_Receiver_Body, to reduce the
9606         amount of PCS-specific code in RACW stubs generation.
9607         (Copy_Specification): Set Etype on copied formal parameter entities, as
9608         this information is needed for PolyORB stubs generation.
9609         (PolyORB_Support.Build_Subprogram_Receiving_Stubs): Remove unused
9610         variable Dynamic_Async.
9611         (Build_Subprogram_Receiving_Stubs): Make PCS-specific
9612         (Build_RPC_Receiver_Specification): Make generic again, as recent
9613         changes have allowed RPC receivers to have the same profile for both
9614         variants of the PCS.
9615         Reorganise RPC receiver generation to reduce differences between the
9616         structure of GARLIC and PolyORB RPC receivers.
9617         (Add_Receiving_Stubs_To_Declarations): Make this subprogram
9618         PCS-specific.
9619         Simplify elaboration code for RCI packages.
9621         * s-parint.ads, s-parint.adb, rtsfind.ads: Reorganise RPC receiver
9622         generation to reduce differences between the structure of GARLIC and
9623         PolyORB RPC receivers.
9625         * s-stratt.adb: Fix typo in comment.
9627 2005-01-03  Thomas Quinot  <quinot@adacore.com>
9629         * exp_ch7.ads (Make_Final_Call): Rewrite comment (was incorrectly
9630         copied from Make_Init_Call).
9632         * exp_strm.adb (Build_Mutable_Record_Read_Procedure): Do component
9633         reads and assignments on a temporary variable declared with appropriate
9634         discriminants.
9636 2005-01-03  Robert Dewar  <dewar@adacore.com>
9638         * i-c.adb (To_C): Raise CE if string is null and Append_Null
9640 2005-01-03  Robert Dewar  <dewar@adacore.com>
9642         * i-cstrin.adb (Update): Do not append a null in form called with a
9643         String. This avoids unintended behavior.
9645 2005-01-03  Arnaud Charlet  <charlet@adacore.com>
9647         PR ada/17527
9648         * init.c: Fix warnings on Free BSD section.
9650 2005-01-03  Arnaud Charlet  <charlet@adacore.com>
9652         PR ada/16949
9653         * sinfo.ads: Fix obsolete reference to xsinfo.spt (replaced by
9654         xsinfo.adb).
9656 2005-01-03  Vincent Celier  <celier@adacore.com>
9658         * make.adb (Collect_Arguments_And_Compile): Do not attempt to build
9659         libraries when Unique_Compile is True (-u switch).
9660         (Gnatmake): ditto.
9662 2005-01-03  Robert Dewar  <dewar@adacore.com>
9664         * namet.adb (Get_Decoded_Name_With_Brackets): Fix case of not allowing
9665         upper case letter or underscore after W, as allowed by spec.
9667 2005-01-03  Arnaud Charlet  <charlet@adacore.com>
9669         * s-osinte-darwin.ads, s-osinte-darwin.adb: Clean up
9670         darwin port by using proper type definitions from header files.
9671         Use SIGTERM instead of SIGABRT for SIGADAABORT.
9673 2005-01-03  Robert Dewar  <dewar@adacore.com>
9675         * par.adb: Enhance error message handling for configuration file
9676         pragmas.
9678 2005-01-03  Robert Dewar  <dewar@adacore.com>
9680         * s-arit64.adb (Double_Divide): Put back changes that got accidentally
9681         removed during the previous update (test properly for case of dividing
9682         largest negative number by -1, which generates overflow).
9684 2005-01-03  Ed Schonberg  <schonberg@adacore.com>
9685             Sergey Rybin  <rybin@adacore.com>
9687         * sem_ch12.adb (Analyze_Package_Instantiation): Create a separate node
9688         to use as the defining identifier for a formal package.
9689         (Remove_Parent): If the instance takes place within (an instance of)
9690         a sibling, preserve private declarations of common parent.
9692 2005-01-03  Ed Schonberg  <schonberg@adacore.com>
9694         * sem_ch4.adb (Has_Fixed_Op): New predicate in Check_Arithmetic_Pair,
9695         to determine whether one of the operands is a fixed-point type for
9696         which a user-defined multiplication or division operation might be
9697         defined.
9699         * sem_res.adb (Valid_Conversion): The legality rules for conversions
9700         of access types are symmetric in Ada 2005: either designated type can
9701         be unconstrained.
9703 2005-01-03  Vincent Celier  <celier@adacore.com>
9705         * s-fileio.adb (Temp_File_Record): Change length of string component
9706         Name from L_tmpnam + 1 to max_path_len + 1.
9708 2005-01-03  Arnaud Charlet  <charlet@adacore.com>
9710         * s-tasini.ads, s-tasini.adb (Undefer_Abortion): Handle case of
9711         Self_Id.Deferral_Level = 0.
9712         (Do_Pending_Action): Move this function to the spec.
9714         * s-tasren.adb (Selective_Wait [Terminate_Selected]): Call
9715         Do_Pending_Action explicitely when needed, in case we're using
9716         No_Abort restrictions.
9718         * s-tassta.adb (Create_Task): If Abort is not allowed, reset the
9719         deferral level since it will not get changed by the generated code.
9720         Keeping a default value of 1 would prevent some operations (e.g.
9721         select or delay) to proceed successfully.
9723 2005-01-03  Ben Brosgol  <brosgol@adacore.com>
9724             Robert Dewar  <dewar@adacore.com>
9725             Cyrille Comar  <comar@adacore.com>
9727         * ug_words, gnat_ugn.texi: Added alpha-ivms transitioning section to
9728         porting guide chapter (vms version).
9729         Revised doc title (removed "for native platforms") and subtitle.
9730         Add discussion on warning flag for obsolescent features. First we
9731         note that it applies to obsolete GNAT features, which was previously
9732         omitted. Second we contrast the behavior with that of the new
9733         Ada 2005 AI-368 restriction No_Obsolescent_Features.
9734         Preliminary rewriting of GNAT & libraries chapter in order to take
9735         into account default project locations & new project manager
9736         capabilities.
9738 2005-01-03  Robert Dewar  <dewar@adacore.com>
9740         * cstand.adb (Create_Operators): Clean up format and documentation of
9741         unary and binary operator result tables. No change in code, just
9742         reformatting and addition of comments.
9744         * errout.ads, gnatfind.adb, s-maccod.ads, sem.adb,
9745         sem_ch2.adb: Minor reformatting
9747         * atree.ads, elists.ads, lib.ads, namet.ads, nlists.ads, repinfo.ads,
9748         sinput.ads, stringt.ads, uintp.ads, urealp.ads: Minor clarification to
9749         comments for Tree_Read and Tree_Write.
9751 2005-01-03  Pascal Obry  <obry@adacore.com>
9753         * exp_attr.ads: Minor reformatting.
9755 2005-01-03  Romain Berrendonner  <berrendo@adacore.com>
9757         * comperr.adb (Compiler_Abort): Add specialized message for GAP
9758         versions.
9760 2005-01-03  Ed Schonberg  <schonberg@adacore.com>
9762         * exp_pakd.adb (Create_Packed_Array_Type): Add a guard to check
9763         whether the ancestor type is private, as may be the case with nested
9764         instantiations.
9766 2004-12-30  Sohail Somani <sohail@sohailsomani.com>
9768         PR ada/19128
9769         * trans.c (gnat_to_gnu): Fix typo: Use correct return variable.
9771 2004-12-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
9773         * trans.c (Attribute_to_gnu): Adjust call to get_inner_reference.
9774         * utils2.c (build_unary_op): Likewise.
9776 2004-12-22  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9778         * trans.c (mark_visited): Set TYPE_SIZES_GIMPLIFIED.
9780 2004-12-19  Richard Henderson  <rth@redhat.com>
9782         * trans.c (gigi): Update gimplify_body call.
9784 2004-12-09  Nathan Sidwell  <nathan@codesourcery.com>
9786         * decl.c (gnat_substitute_in_type): Remove SET_TYPE case.
9788 2004-12-07  Ed Falis  <falis@adacore.com>
9790         * s-intman-vxworks.adb (Notify_Exception): removed useless check for
9791         current task being suspended.
9793         * init.c (__gnat_clear_exception): added to reset VxWorks exception
9794         count.
9795         (__gnat_map_signal): removed test for current task being suspended.
9797 2004-12-07  Gary Dismukes  <dismukes@adacore.com>
9799         * a-exexpr.adb (Others_Value, All_Others_Value): Change initial values
9800         from 16#BEEF# to 16#7FFF# to avoid exceeding Integer'Last on 16-bit
9801         targets (such as AAMP).
9803 2004-12-07  Ed Schonberg  <schonberg@adacore.com>
9805         * atree.adb (Visit_Itype): Create a new name for the generated itype,
9806         because the back-end may otherwise treat it as a redefinition of the
9807         old symbol.
9809 2004-12-07  Eric Botcazou  <ebotcazou@adacore.com>
9811         * back_end.adb (Scan_Back_End_Switches): Accept --param.
9813         * lang-specs.h: Accept --param.
9815 2004-12-07  Vincent Celier  <celier@adacore.com>
9817         * make.adb (Check_Mains, Switches_Of): Adapt to name changes in
9818         package Prj (Current_Spec_Suffix => Ada_Spec_Suffix,
9819         Current_Body_Suffix => Ada_Body_Suffix).
9820         Take into account Externally_Built attribute.
9822         * clean.adb (In_Extension_Chain): Always return False when one of the
9823         parameter is No_Project.
9824         (Clean_Project): Adapt to changes in package Prj (Lang_Ada =>
9825         Ada_Language_Index).
9826         (Gnatclean): Adapt to change in package Prj.Pars (no parameter
9827         Process_Languages for procedure Parse).
9829         * gnatcmd.adb (Carg_Switches): New table.
9830         (GNATCmd): Put all switches following -cargs in the Carg_Switches table.
9831         Adapt to name changes in package Prj (Current_Spec_Suffix =>
9832         Ada_Spec_Suffix, Current_Body_Suffix => Ada_Body_Suffix).
9834         * mlib-prj.adb: Adapt to changes in packages Prj and Prj.Com: type
9835         Header_Num and function Hash are now declared in package Prj,
9836         not Prj.Com.
9838         * prj.adb (Suffix_Of): New function.
9839         (Set (Suffix)): New procedure.
9840         (Hash): One function moved from Prj.Com
9841         (Is_Present, Language_Processing_Data_Of): New functions
9842         (Set): Two new procedures
9843         (Add_Language_Name, Display_Language_Name): New procedures
9845         * prj.ads: (Suffix_Of): New function
9846         (Set (Suffix)): New procedure
9847         Add several types and tables for multi-language support.
9848         (Header_Num): Type moved from Prj.Com
9849         (Hash): Two functions moved from Prj.Com
9850         (Is_Present, Language_Processing_Data_Of): New functions
9851         (Set): Two new procedures
9852         (Add_Language_Name, Display_Language_Name): New procedures
9853         (Naming): Component name changes:
9854         Current_Spec_Suffix => Ada_Spec_Suffix,
9855         Current_Body_Suffix => Ada_Body_Suffix. Add new components:
9856         Impl_Suffixes, Supp_Suffixes.
9857         (Project_Data): New components: Externally_Built, Supp_Languages,
9858         First_Language_Processing, Supp_Language_Processing, Default_Linker,
9859         Default_Linker_Path.
9861         * prj-attr.adb: Add new attributes Ada_Roots and Externally_Built and
9862         new package Language_Processing with its attributes (Compiler_Driver,
9863         Compiler_Kind, Dependency_Option, Compute_Dependency, Include_Option,
9864         Binder_Driver, Default_Linker).
9866         * prj-com.ads, prj-com.adb (Hash): Function moved to package Prj.
9867         (Header_Num): Type moved to package Prj
9869         * prj-env.adb: Adapt to name changes in package Prj
9870         (Current_Spec_Suffix => Ada_Spec_Suffix,
9871         Current_Body_Suffix => Ada_Body_Suffix).
9873         * prj-ext.adb: Add the default project dir (<prefix>/log/gnat) by
9874         default to the project path, except the "-" is one of the directories
9875         in env var ADA_PROJECT_PATH.
9876         (Current_Project_Path): Global variable, replacing Project_Path
9877         that was in the body of Prj.Part.
9878         (Project_Path): New function
9879         (Set_Project_Path): New procedure
9880         Initialize Current_Project_Path during elaboration of the package
9881         Remove dependency on Prj.Com, no longer needed
9883         * prj-ext.ads (Project_Path): New function
9884         (Set_Project_Path): New procedure
9886         * prj-nmsc.adb (Body_Suffix_Of): New function. Returns .<lang> when no
9887         suffix is defined for language <lang>.
9888         (Find_Sources, Record_Other_Sources): Use Body_Suffix_Of, instead of
9889         accessing directly the components of Naming.
9890         (Look_For_Sources): Use Set (Suffix) to set the suffix of a language.
9891         Reorganise of this package.
9892         Break procedure Check in several procedures.
9894         * prj-nmsc.ads: Replace all procedures (Ada_Check,
9895         Other_Languages_Check and Language_Independent_Check) with a single
9896         procedure Check.
9898         * prj-pars.ads, prj-pars.adb (Parse): Remove parameter
9899         Process_Languages, no longer needed.
9901         * prj-part.adb (Project_Path): Move to the body of Prj.Ext as
9902         Current_Project_Path.
9903         Remove elaboration code, moved to the body of Prj.Ext
9904         Use new function Prj.Ext.Project_Path instead of old variable
9905         Project_Path.
9906         (Post_Parse_Context_Clause): Get Resolved_Path as a case-sensitive path.
9907         When comparing with project paths on the stack, first put the resolved
9908         path in canonical case.
9909         (Parse_Single_Project): Set the path name of the project file in the
9910         tree to the normalized path.
9912         * prj-proc.ads, prj-proc.adb (Check, Recursive_Check, Process): Remove
9913         parameter Process_Languages, no longer needed.
9914         (Recursive_Check): Call Prj.Nmsc.Check, instead of Ada_Check and
9915         Other_Languages_Check.
9917         * prj-tree.ads (Project_Name_And_Node): New component Canonical_Path
9918         to store the resolved canonical path of the project file.
9919         Remove dependency to Prj.Com, no longer needed
9921         * prj-util.adb: Adapt to name changes in package Prj
9922         (Current_Spec_Suffix => Ada_Spec_Suffix, Current_Body_Suffix =>
9923         Ada_Body_Suffix).
9925         * snames.ads, snames.adb: New standard names: Ada_Roots, Binder_Driver,
9926         Compiler_Driver, Compiler_Kind, Compute_Dependency, Default_Linker,
9927         Externally_Built, Include_Option, Language_Processing.
9929         * makegpr.adb: Numerous changes due to changes in packages
9930         Prj and Prj.Nmsc.
9932         * gnatls.adb: Add the default project dir (<prefix>/log/gnat) by
9933         default to the project path, except whe "-" is one of the directories
9934         in env var ADA_PROJECT_PATH.
9935         (Gnatls): In verbose mode, add the new section "Project Search Path:"
9937 2004-12-07  Robert Dewar  <dewar@adacore.com>
9939         * debug.adb: Document that -gnatdA automatically sets -gnatR3m
9941         * gnat1drv.adb (Gnat1drv): If debug flag A set, then automatically
9942         set -gnatR3m mode.
9944         * repinfo.adb (List_Rep_Info): Remove special handling of -gnatdA
9945         flag. No longer needed now that we handle this in gnat1drv.adb.
9947         * repinfo.ads: Minor reformatting
9949 2004-12-07  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9950             Olivier Hainque  <hainque@adacore.com>
9951             Eric Botcazou  <ebotcazou@adacore.com>
9953         * decl.c (maybe_pad_type): Use TYPE_SIZE_UNIT of the input type for
9954         TYPE_SIZE_UNIT of result type if SIZE is not specified.
9955         (make_aligning_type): Pass -1 as ADDRESSABLE to prevent the creation
9956         of a bitfield, which we know is useless and causes trouble because of
9957         alignment implications.
9959         * utils.c (create_var_decl): Set DECL_COMMON again on targets without
9960         BSS sections.
9961         (process_attributes): Clear DECL_COMMON again when a section attribute
9962         is present.
9963         (finish_record_type): Independently track if RECORD_TYPE has SIZE and/or
9964         SIZE_UNIT already set and use to compute final SIZE and SIZE_UNIT.
9965         (create_field_decl): Special case ADDRESSABLE negative to mean
9966         "no bitfield creation", to be used by make_aligning_type. Don't
9967         restrict bitfield creation to !ADDRESSABLE any more, as some BLKmode
9968         fields claimed addressable still have to be bitfields. Use
9969         value_factor_p instead of a raw binop construction to check for the
9970         position's alignment.
9972 2004-12-07  Geert Bosch  <bosch@adacore.com>
9974         * eval_fat.adb: Revert previous change.
9976 2004-12-07  Thomas Quinot  <quinot@adacore.com>
9977             Ed Schonberg  <schonberg@adacore.com>
9979         * exp_ch4.adb (Expand_N_Indexed_Component): For an indexed component
9980         with an implicit dereference as its prefix, use
9981         Insert_Explicit_Dereference instead of merely rewriting the prefix into
9982         an explicit dereference. This ensures that a reference to the original
9983         prefix is generated, if appropriate.
9985         * sem_util.adb (Insert_Explicit_Dereference): When an implicit
9986         dereference is rewritten to an explicit one, generate a reference to
9987         the entity denoted by its prefix using the original prefix node, so
9988         the dereference can be properly recorded as a read of the denoted
9989         access value, if appropriate.
9991         * sem_warn.adb (Output_Unreferenced_Messages): Do not abstain from
9992         emitting 'assigned but never read' warning on a variable on the basis
9993         that it has an access type.
9994         (Check_References): Emit unreferenced warning when the scope is a
9995         subprogram body.
9997 2004-12-07  Robert Dewar  <dewar@adacore.com>
9998             Ed Schonberg  <schonberg@adacore.com>
10000         * exp_ch6.adb (Expand_Call): Add comment on handling of back end
10001         intrinsic
10003         * exp_intr.adb (Expand_Intrinsic_Call): Ignore unrecognized intrinsic,
10004         leaving call unchanged.
10005         This deals with the case where the pragma Import specified
10006         an external name, to be handled by the back end.
10008         * sem_prag.adb (Process_Import_Or_Interface): Do not check validity of
10009         subprogram which is Imported with convention Intrinsic if an
10010         External_Name argument is specified.
10011         (Process_Import_Or_Interface): Properly diagnose link name argument.
10012         (Inlining_Not_Possible): New name for Cannot_Inline, to avoid confusion
10013         with Sem_Ch6.Cannot_Inline.
10014         (Process_Inline): Provide separate warning for inapplicable inline
10015         pragma.
10016         (Cannot_Inline): Reject subprograms that have an at_end handler, so that
10017         treatment is uniform on different targets.
10019 2004-12-07  Ed Schonberg  <schonberg@adacore.com>
10021         * exp_ch7.adb (Expand_Cleanup_Actions): If statement sequence of
10022         construct is rewritten, preserve end label to permit source navigation.
10024 2004-12-07  Thomas Quinot  <quinot@adacore.com>
10026         * exp_dist.adb (Specific_Build_General_Calling_Stubs,
10027         Specific_Build_Stub_Target): New subprograms.
10028         (Build_Subprogram_Calling_Stubs): Make this procedure independent from
10029         the PCS implementation used, using the above PCS-customized subprograms.
10030         Minor reformatting.
10031         (PolyORB_Support.Helpers): New subunit containing supporting subprograms
10032         for generation of DSA code targeted to the PolyORB PCS.
10033         (Add_Stub_Type): Rewrite to isolate the parts that are specific to one
10034         implementation of the partition communication subsystem in ancillary
10035         subprograms.
10036         (Specific_Build_Stub_Type, GARLIC_Support.Build_Stub_Type,
10037         PolyORB_Support.Build_Stub_Type): New subrograms containing the
10038         PCS-specific part of Add_Stub_Type.
10039         (Insert_Partition_Check): Use runtime library function to perform
10040         E.4(19) check.
10042         * rtsfind.ads: New entity System.PolyORB_Interface.Make_Ref
10043         (RE_Same_Partition): New entity, from s-parint.
10045         * s-parint.ads, s-parint.adb (Same_Partition): New subprogram.
10047 2004-12-07  Gary Dismukes  <dismukes@adacore.com>
10049         * gnatmem.adb, gnatname.adb, gnatsym.adb, gprcmd.adb, vms_conv.adb:
10050         Output the copyright message on a separate line from the version
10051         message.
10053 2004-12-07  Joel Brobecker  <brobecker@adacore.com>
10055         * g-os_lib.adb (Spawn): Explicitly initialize Saved_Error to avoid a
10056         compile-time warning.
10058 2004-12-07  Robert Dewar  <dewar@adacore.com>
10060         * g-regpat.adb: (Match): Change a misuse of or to or else
10062 2004-12-07  Ed Schonberg  <schonberg@adacore.com>
10064         * lib-xref.adb:
10065         (Generate_Reference): Handle properly a reference to an entry formal,
10066          when an accept statement has a pragma Unreferenced for it.
10068         * sem_ch9.adb (Analyze_Accept_Statement): Reset the Is_Referenced flag
10069         and the Has_Pragma_Unreferenced flag for each formal before analyzing
10070         the body, to ensure that warnings are properly emitted for each accept
10071         statement of a given task entry.
10073 2004-12-07  Vasiliy Fofanov  <fofanov@adacore.com>
10075         * Makefile.in: Add support for foreign threads on VMS.
10077 2004-12-07  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10079         * misc.c (gnat_types_compatible_p, LANG_HOOKS_TYPES_COMPATIBLE_P):
10080         Remove.
10081         (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS): New.
10083         * adaint.h: (__gnat_dup, __gnat_dup2): Add missing decls.
10085         * trans.c (Exception_Handler_to_gnu_sjlj): Also handle renamed
10086         exception.
10087         (call_to_gnu): Convert to actual DECL_ARG_TYPE, not variant of it.
10089 2004-12-07  Robert Dewar  <dewar@adacore.com>
10091         * nlists.adb (Prepend_Debug): Remove parameters and nest within
10092         Prepend.
10093         (Remove_Next_Debug): Same fix
10095         * nlists.ads: Correct bad comments for Prev and Prev_Non_Pragma (we do
10096         maintain back pointers now, though we did not used to, and comments
10097         were out of date).
10098         (Prepend): Remove pragma Inline.
10099         (Remove_Next): Same cleanup
10101 2004-12-07  Thomas Quinot  <quinot@adacore.com>
10103         * sem_ch4.adb (Process_Implicit_Dereference_Prefix): New subprogram
10104         used to record an implicit dereference as a read operation on its
10105         prefix when operating under -gnatc. Necessary to avoid spurious
10106         'variable assigned but never read' warnings in that mode.
10107         (Process_Indexed_Component, Analyze_Selected_Component): When the prefix
10108         is a non-overloaded implicit dereference, call the above subprogram to
10109         ensure proper recording of references.
10111 2004-12-07  Gary Dismukes  <dismukes@adacore.com>
10113         * sem_ch5.adb (One_Bound): Remove call to Resolve, as the bound needs
10114         to be resolved later as part of Analyze_Iteration_Scheme's call to
10115         Make_Index.
10117 2004-12-07  Ed Schonberg  <schonberg@adacore.com>
10119         * sem_ch8.adb (Find_Type): If node is a reference to 'Base and the
10120         prefix is not a scalar type, place error message on prefix, not on
10121         type entity.
10123 2004-12-07  Bernard Banner  <banner@adacore.com>
10125         * vxaddr2line.adb: Add support for x86 vxworks
10127 2004-12-07  Thomas Quinot  <quinot@adacore.com>
10129         * g-socket.ads (Get_Host_By_Address, Get_Host_By_Name): Clarify
10130         documentation of the behaviour of these functions when passed an IP
10131         address that has no record in the system hosts database and no reverse
10132         record in the DNS.
10134         * cstand.adb, a-tags.ads: Fix typos in comment.
10136 2004-12-07  Robert Dewar  <dewar@adacore.com>
10138         * exp_ch2.adb, exp_ch3.adb, exp_ch5.adb, exp_ch8.adb,
10139         exp_ch9.adb, exp_pakd.adb, interfac.ads, sem_ch6.adb,
10140         sem_ch7.adb, sem_ch10.adb, sem_ch13.adb, sem_ch3.adb,
10141         s-poosiz.ads: Minor reformatting
10143         * make.adb: Minor reformatting
10144         Add some ??? comments asking for more comments
10146         * s-poosiz.adb: Minor reformatting
10147         Add comments on alignment requirement
10149         * sinfo.ads: Remove obsolete comment and fix typo.
10151 2004-12-07  Vincent Celier  <celier@adacore.com>
10152             Sergey Rybin  <rybin@adacore.com>
10154         * gnat_ugn.texi: Update the section "The GNAT Driver and Project
10155         Files" with the new tool and package names.
10156         Reformatting to suppress most of the warnings for line too long
10157         Document the new section "Project Search Path:" in the output of
10158         gnatls -v.
10159         Add gnatmetric section
10161 2004-12-07  Vincent Celier  <celier@adacore.com>
10163         * vms_data.ads: Correct GNAT METRIC qualifiers: -I-, -Idir and
10164         -gnatec= are not direct switches of gnatmetric. Changed -eis to -eps
10165         and -eit to -ept. Added qualifier
10166         /ELEMENT_METRICS=CONSTRUCT_NESTING_MAX for new switch -ec.
10168 2004-11-27  Andreas Schwab  <schwab@suse.de>
10170         * Make-lang.in (ada/trans.o): Depend on $(EXPR_H).
10172 2004-11-25  Arnaud Charlet  <charlet@adacore.com>
10174         * g-socthi-mingw.ads, g-socthi-vms.ads: Remove C_Read and C_Write from
10175         internal implementation unit GNAT.Sockets.Thin,
10176         as their usage for sockets is non-portable (using the read and write
10177         functions from the system runtime library is fine on UNIX but won't
10178         work under Windows).
10180         * mingw32.h: Update copyright notice.
10182 2004-11-25  Arnaud Charlet  <charlet@adacore.com>
10184         * ada-tree.h: Minor reformatting of previous change to avoid lines
10185         longer than 79 characters.
10187 2004-11-25  Olivier Hainque  <hainque@adacore.com>
10189         * tb-gcc.c: GCC infrastructure based implementation of
10190         __gnat_backtrace.
10192 2004-11-24  Steven Bosscher  <stevenb@suse.de>
10194         * misc.c (gnat_post_options): Don't clear
10195         flag_inline_functions.
10197 2004-11-22  Andrew Pinski  <pinskia@physics.uc.edu>
10199         PR ada/17986
10200         * ada-tree.h (lang_tree_node): Set chain_next to be the chain of the
10201         tree.
10203 2004-11-21  Andreas Jaeger  <aj@suse.de>
10205         * stylesw.adb: Change Style_Check_Subprogram_Order to
10206         Style_Check_Order_Subprograms.
10208 2004-11-18  Arnaud Charlet  <charlet@adacore.com>
10210         * adaint.h, adaint.c
10211         (__gnat_portable_spawn): Fix cast of spawnvp third parameter
10212         to avoid warnings.
10213         Add also a cast to kill another warning.
10214         (win32_no_block_spawn): Initialize CreateProcess's dwCreationFlags
10215         parameter with the priority class of the parent process instead of
10216         always using the NORMAL_PRIORITY_CLASS.
10217         (__gnat_dup): New function.
10218         (__gnat_dup2): New function.
10219         (__gnat_is_symbolic_link): Enable the effective body of this
10220         function when __APPLE__ is defined.
10222         * g-os_lib.ads, g-os_lib.adb (Spawn): Two new procedures.
10223         Update comments.
10225 2004-11-18  Olivier Hainque  <hainque@adacore.com>
10227         * a-exexpr.adb (Others_Value, All_Others_Value): New variables, the
10228         address of which may be used to represent "others" and "all others"
10229         choices in exception tables, instead of the current harcoded
10230         (void *)0 and (void *)1.
10231         (Setup_Exception): Do nothing in the GNAT SJLJ case.
10233         * gigi.h (others_decl, all_others_decl): New decls representing the
10234         new Others_Value and All_Others_Value objects.
10235         (struct attrib): Rename "arg" component as "args", since GCC expects a
10236         list of arguments in there.
10238         * raise.c (GNAT_OTHERS, GNAT_ALL_OTHERS): Are now the address of the
10239         corresponding objects exported by a-exexpr, instead of hardcoded dummy
10240         addresses.
10242         * trans.c (Exception_Handler_to_gnu_zcx): Use the address of
10243         others_decl and all_others_decl instead of hardcoded dummy addresses
10244         to represent "others" and "all others" choices, which is cleaner and
10245         more flexible with respect to the possible eh pointer encoding policies.
10247         * utils.c (init_gigi_decls): Initialize others_decl and all_others_decl.
10248         (process_attributes): Account for the naming change of the "args"
10249         attribute list entry component.
10251         * decl.c (build_attr_list): Rename into prepend_attributes to allow
10252         cumulating attributes for different entities into a single list.
10253         (gnat_to_gnu_entity): Use prepend_attributes to build the list of
10254         attributes for the current entity and propagate first subtype
10255         attributes to other subtypes.
10256         <E_Procedure>: Attribute arguments are attr->args and not
10257         attr->arg any more.
10258         (build_attr_list): Ditto. Make attr->args a TREE_LIST when there is an
10259         argument provided, as this is what GCC expects. Use NULL_TREE instead
10260         of 0 for trees.
10262 2004-11-18  Robert Dewar  <dewar@adacore.com>
10264         * a-stmaco.ads, exp_util.ads, exp_util.adb, i-cpp.ads, i-cpp.adb:
10265         Minor reformatting througout (including new function specs)
10266         Add ??? comments asking for clarification.
10268 2004-11-18  Thomas Quinot  <quinot@adacore.com>
10270         * butil.ads, butil.adb, bindgen.adb (Get_Unit_Name_String): Remove
10271         incomplete duplicate implementation of this subprogram from butil.
10273 2004-11-18  Thomas Quinot  <quinot@adacore.com>
10275         * exp_dist.adb (Build_RPC_Receiver_Body): New subprogram. This
10276         procedures factors the common processing for building an RPC receiver
10277         for an RCI package or an RACW type.
10278         Stylistic cleanup: change '/= Empty' to 'Present ()'; move body of
10279         Build_Remote_Subprogram_Proxy_Type into proper alphabetical order.
10280         (Get_PCS_Name): New subprogram. Returns the name of the PCS currently
10281         in use.
10282         (Specific_Add_RACW_Features): New subprogram. PCS-specific part of
10283         Add_RACW_Features.
10284         (Specific_Add_RAST_Features): New subprogram. PCS-specific part of
10285         Add_RAST_Features.
10286         (Assign_Subprogram_Identifier): New subprogram. Provision for assigning
10287         distribution subprogram identifiers that are either subprogram numbers
10288         or strings.
10289         (Get_Subprogram_Ids): New subprogram. Retrieve both the numeric and
10290         string distribution identifiers assigned to a given subprogram.
10291         (Get_Subprogram_Id): Reimplement in terms of Get_Subprogram_Ids.
10292         (Add_RAS_Dereference_TSS): Add comments.
10293         (Build_General_Calling_Stubs): Note that the RACW_Type formal parameter
10294         is not referenced yet because it will be used by the PolyORB DSA
10295         implementation.
10296         (Insert_Partition_Check): Remove fossile code.
10297         (First_RCI_Subprogram_Id): Document this constant.
10298         (Add_RAS_Access_TSS): Correct the setting of the Etype of the
10299         RAS_Access TSS.
10300         (Get_Pkg_Name_String): Remove subprogram. Usage occurrences are
10301         replaced with calls to Get_Library_Unit_Name_String. Previously there
10302         were several instances of the same code in different locations in the
10303         compiler; this checkin completes the replacement of all of these
10304         instances with calls to a common subprogram.
10305         Minor reformatting.
10307         * sem_dist.adb: Remove comment noting that RPC receiver generation
10308         should be disabled for RACWs that implement RASs.
10309         (Process_Partition_Id): Use new subprogram Get_Library_Unit_Name_String.
10311         * sem_util.ads, sem_util.adb (Has_Stream): New function
10312         (Get_Library_Unit_Name_String): New subprogram to retrieve the fully
10313         qualified name of a library unit into the name buffer.
10314         (Note_Possible_Modification): Generate a reference only
10315         if the context comes from source.
10317         * snames.ads (PCS_Names): New subtype corresponding to names of
10318         supported implementations of the Partition Communication Subsystem
10319         (PCS) (i.e. the runtime library support modules for the distributed
10320         systems annex).
10322 2004-11-18  Robert Dewar  <dewar@adacore.com>
10323             Ed Schonberg  <schonberg@adacore.com>
10325         * einfo.ads, einfo.adb: Remove Is_Psected flag, no longer used
10326         (Has_Rep_Pragma): New function
10327         (Has_Attribute_Definition_Clause): New function
10328         (Record_Rep_Pragma): Moved here from sem_ch13.adb
10329         (Get_Rep_Pragma): Remove junk kludge for Stream_Convert pragma
10331         * sem_ch13.ads, sem_ch13.adb (Record_Rep_Pragma): Moved to einfo.adb
10333         * exp_prag.adb: (Expand_Pragma_Common_Object): New procedure
10334         (Expand_Pragma_Psect_Object): New procedure
10335         These procedures contain the revised and cleaned up processing for
10336         these two pragmas. This processing was formerly in Sem_Prag, but
10337         is more appropriately moved here. The cleanup involves making sure
10338         that the pragmas are properly attached to the tree, and that no
10339         nodes are improperly shared.
10341         * sem_prag.adb: Move expansion of Common_Object and Psect_Object
10342         pragmas to Exp_Prag, which is more appropriate.
10343         Attach these two pragmas to the Rep_Item chain Use Rep_Item chain to
10344         check for duplicates Remove use of Is_Psected flag, no longer needed.
10345         Use new Make_String_Literal function with string.
10347         * exp_attr.adb (Expand_Fpt_Attribute): The floating-point attributes
10348         that are functions return universal values, that have to be converted
10349         to the context type.
10350         Use new Make_String_Literal function with string.
10351         (Get_Stream_Convert_Pragma): New function, replaces the use of
10352         Get_Rep_Pragma, which had to be kludged to work in this case.
10354         * freeze.adb: Use new Has_Rep_Pragma function
10356         * exp_intr.adb, exp_ch3.adb, sem_attr.adb: Use new Make_String_Literal
10357         function with string.
10358         Use new Has_Rep_Pragma function.
10360         * tbuild.ads, tbuild.adb (Make_String_Literal): New function, takes
10361         string argument.
10363 2004-11-18  Robert Dewar  <dewar@adacore.com>
10365         * errout.ads, errout.adb: (First_Sloc): New function
10367         * par-ch5.adb (P_Condition): Check for redundant parens is now a style
10368         check (-gnatyx) instead of being included as a redundant construct
10369         warning.
10371         * sem_ch6.adb: Change name Style_Check_Subprogram_Order to
10372         Style_Check_Order_Subprograms.
10374         * style.ads, styleg.ads, styleg.adb, styleg-c.adb, stylesw.ads,
10375         stylesw.adb: Add Style_Check_Xtra_Parens
10377         * usage.adb: Add line for -gnatyx (check extra parens)
10379         * vms_data.ads: Add entry for STYLE_CHECKS=XTRA_PARENS => -gnatyx
10381 2004-11-18  Ed Schonberg  <schonberg@adacore.com>
10382             Robert Dewar  <dewar@adacore.com>
10384         * exp_ch4.adb (Expand_N_Selected_Component): If the component is the
10385         discriminant of a constrained subtype, analyze the copy of the
10386         corresponding constraint, because in some cases it may be only
10387         partially analyzed.
10388         Removes long-lived ??? comments.
10390         * exp_ch7.adb (Establish_Transient_Scope): Remove complex code that
10391         handled controlled or secondary-stack expressions within the
10392         iteration_scheme of a loop.
10394         * sem_ch5.adb (Analyze_Iteration_Scheme): Build a block to evaluate
10395         bounds that may contain functions calls, to prevent memory leaks when
10396         the bound contains a call to a function that uses the secondary stack.
10397         (Check_Complex_Bounds): Subsidiary of Analyze_Iteration_Scheme, to
10398         generate temporaries for loop bounds that might contain function calls
10399         that require secondary stack and/or finalization actions.
10401         * sem_ch4.adb (Analyze_Indexed_Component_Form): If the prefix is a
10402         selected component and the selector is overloadable (not just a
10403         function) treat as function call, Analyze_Call will disambiguate if
10404         necessary.
10405         (Analyze_Selected_Component): Do not generate an actual subtype for the
10406         selected component if expansion is disabled. The actual subtype is only
10407         needed for constraint checks.
10408         (Analyze_Allocator): If restriction No_Streams is set, then do
10409         not permit objects to be declared of a stream type, or of a
10410         composite type containing a stream.
10412         * restrict.ads: Remove the a-stream entry from Unit_Array, since
10413         No_Streams no longer prohibits with'ing this package.
10415         * sem_ch3.adb (Build_Derived_Record_Type): If the parent type has
10416         discriminants, but the parent base has unknown discriminants, there is
10417         no discriminant constraint to inherit. Such a discrepancy can arise
10418         when the actual for a formal type with unknown discriminants is a
10419         similar private type whose full view has discriminants.
10420         (Analyze_Object_Declaration): If restriction No_Streams is set, then
10421         do not permit objects to be declared of a stream type, or of a
10422         composite type containing a stream.
10424 2004-11-18  Ed Schonberg  <schonberg@adacore.com>
10426         * exp_dbug.ads: Update documentation to reflect simpler encoding for
10427         protected operations.
10429         * exp_ch9.adb (Build_Selected_Name): Do not include "PT" suffix in
10430         generated name, it complicates decoding in gdb and hinders debugging
10431         of protected operations.
10432         (Build_Barrier_Function_Specification): Set the Needs_Debug_Info
10433         flag for the protected entry barrier function.
10434         (Build_Protected_Entry_Specification): Set the Needs_Debug_Info
10435         flag for the protected entry function.
10437 2004-11-18  Nicolas Setton  <setton@adacore.com>
10439         * expect.c: Define __unix__ when __APPLE__ is defined.
10441         * Makefile.in: Inform the value of the variable GMEM_LIB in the
10442         Darwin-specific section.
10444         * lang-specs.h: Change the placement of the %1 marker.
10445         Works around the fact that gcc adds -fPIC by default under Darwin.
10447 2004-11-18  Ed Schonberg  <schonberg@adacore.com>
10449         * exp_pakd.adb (Convert_To_PAT_Type): After replacing the original
10450         type of the object with the packed array type, set the Analyzed flag
10451         on the object if it is an entity or simple indexed component, to avoid
10452         spurious type errors.
10454 2004-11-18  Gary Dismukes  <dismukes@adacore.com>
10456         * gnat1drv.adb, gnatbind.adb, gnatchop.adb, gnatfind.adb, gnatlink.adb,
10457         gnatls.adb, gnatxref.adb, gprep.adb: Output the copyright message on a
10458         separate line from the version message.
10460 2004-11-18  Ed Falis  <falis@adacore.com>
10462         * init.c (__gnat_map_signal): map SIGSEGV to Storage_Error for AE653
10463         vthreads.
10464         (init_float): Eliminate initialization of floating point status for
10465         AE653. The instructions have no effect for vThreads.
10467 2004-11-18  Vincent Celier  <celier@adacore.com>
10469         * make.adb (Gnatmake): Invoke gnatlink with -shared-libgcc when
10470         gnatbind is invoked with -shared.
10472 2004-11-18  Jose Ruiz  <ruiz@adacore.com>
10474         * s-tposen.adb (Lock_Entry): Remove the code for raising Program_Error
10475         for Detect_Blocking which is redundant with the check done within the
10476         procedure Protected_Single_Entry_Call.
10477         (Lock_Read_Only_Entry): Remove the code for raising Program_Error for
10478         Detect_Blocking which is redundant with the check done within the
10479         procedure Protected_Single_Entry_Call.
10481 2004-11-18  Vincent Celier  <celier@adacore.com>
10483         * makegpr.adb (Compile): Put the compiling switches (in package
10484         Compiler and on the command line) immediately after "-c", instead of
10485         at the end of the command line invocation of the compiler, when
10486         compiling a non-Ada file.
10487         (Build_Global_Archive): When there is no need to rebuild the archive,
10488         set Global_Archive_Exists, so that the archive is passed to the linker
10489         if one is needed.
10491 2004-11-18  Robert Dewar  <dewar@adacore.com>
10492             Sergey Rybin  <rybin@adacore.com>
10494         * gnat_ugn.texi:
10495         Remove extra paren check from list of checks for redundant constructs
10496         Add documentation of new -gnatyx style check (check extra parens)
10497         Remove paragraph about gnatelim debug options.
10499         * gnat_rm.texi: Document that Ada.Streams now forbids creating stream
10500         objects rather than forbidding dependencies on the package Ada.Streams.
10502         * sinfo.ads: Add ??? note that we should document pragmas passed to
10503         back end.
10505         * g-expect.ads: Fix a few typos in the comments.
10507 2004-11-09  Joseph S. Myers  <joseph@codesourcery.com>
10509         * misc.c (gnat_handle_option): Use %< and %> for quoting in
10510         warning message.
10512 2004-11-08  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10514         * a-numaux-x86.adb (Tan): Fix fdivp syntax.
10516 2004-11-07  Andreas Schwab  <schwab@suse.de>
10518         * Makefile.in (install-gnatlib): Remove spurious hyphen.
10520 2004-11-02  Andrew Pinski  <pinskia@physics.uc.edu>
10522         PR ada/18228
10523         * Makefile.in (darwin): Set soext to .dylib.
10525 2004-10-26  Vincent Celier  <celier@gnat.com>
10526             Thomas Quinot   <quinot@act-europe.fr>
10528         * g-socthi-vms.adb, g-socthi-mingw.adb, g-socthi-vxworks.ads:
10529         (C_Writev): Change MSG_Forced_Flags to Constants.MSG_Forced_Flags as
10530         there is no use of GNAT.Sockets.Constants.
10531         Remove remaining pragma Import for C_Write
10532         Remove C_Read and C_Write from internal implementation unit
10533         GNAT.Sockets.Thin, as their usage for sockets is non-portable (using
10534         the read and write functions from the system runtime library is fine
10535         on UNIX but won't work under Windows).
10537         * g-socket.adb: (Abort_Selector): Use C_Send instead of C_Write.
10538         (Check_Selector): Use C_Recv instead of C_Read.
10539         Selectors are the GNAT.Sockets abstraction to perform a select()
10540         call on a set of descriptors. To allow abortion of an ongoing
10541         select operation, some data is written to a dedicated socket that
10542         is always monitored.
10543         Under Windows, the write and read library functions cannot operate
10544         on sockets, so we need to use send and recv instead, which is portable
10545         across all supported platforms.
10547         * g-socthi.ads: Remove C_Read and C_Write from internal implementation
10548         unit GNAT.Sockets.Thin, as their usage for sockets is non-portable
10549         (using the read and write functions from the system runtime library is
10550         fine on UNIX but won't work under Windows).
10552 2004-10-26  Nicolas Setton  <setton@act-europe.fr>
10554         * mlib-tgt-darwin.adb: New file.
10556         * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
10557         mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb,
10558         mlib-tgt-vms-alpha.adb, mlib-tgt-vms-ia64.adb,
10559         mlib-tgt-mingw.adb, mlib-tgt-vxworks.adb (Archive_Indexer_Options): New
10560         subprogram body.
10562         * Makefile.in: Add support for building shared libraries under Darwin.
10563         (EXTRA_GNATRTL_NONTASKING_OBJS, ppc-vxworks): Add s-vxwexc.o, containing
10564         the low level EH init subprogram to be called from __gnat_initialize.
10566         * mlib-tgt.ads, mlib-tgt.adb (Archive_Indexer_Options): New subprogram,
10567         indicates which options to pass to the archive indexer.
10569         * mlib-utl.adb: Add support for calling ranlib with additional
10570         options. This is needed for instance under Mac OS X.
10571         (Ranlib_Options): New global variable, used to store the potential
10572         options to pass to ranlib.
10573         (Ar): Use Ranlib_Options when spawning ranlib.
10574         (Initialize): Set the value of ranlib option.
10576 2004-10-26  Olivier Hainque  <hainque@act-europe.fr>
10578         * s-parame-linux.adb (Minimum_Stack_Size): Adjust to return 12K
10579         instead of 8K, to reflect the real potential needs for stack-checking
10580         in the ZCX case.
10582 2004-10-26  Pascal Obry  <obry@gnat.com>
10584         * s-parame-mingw.adb (Default_Stack_Size): Add some comments.
10586         * s-taprop-mingw.adb (Create_Task): Set initial stack size to 1024. On
10587         Windows only the initial thread stack size can be set so it is good to
10588         start we a low stack size.
10589         The OS will adjust the size as needed.
10591 2004-10-26  Olivier Hainque  <hainque@act-europe.fr>
10592             Nicolas Setton  <setton@act-europe.fr>
10594         * expect.c, adaint.c, link.c, sysdep.c (unix sections): Guard with
10595         "__unix__" instead of "unix".
10596         The latter is implicitly defined by gcc3.2 but not by gcc >= 3.4, so the
10597         sections were just mistakenly ignored. The former is
10598         implicitely defined by gcc2.8, gcc3.2 and gcc3.4.
10599         Update #ifdef preprocessor macro to detect the symbol __hpux__ instead
10600         of hpux. This prevents an unwanted definition of the symbol
10601         convert_addresses in adaint.o.
10603 2004-10-26  Gary Dismukes  <dismukes@gnat.com>
10605         * a-exexpr.adb (Setup_Key): Change initial value to 16#DEAD#, for
10606         compatibility with type Unwind_Word on 16-bit targets such as AAMP.
10608 2004-10-26  Cyrille Comar  <comar@act-europe.fr>
10610         * a-filico.ads, a-filico.adb: fix incorrect header.
10612 2004-10-26  Javier Miranda  <miranda@gnat.com>
10614         * a-ststio.ads: Fix typo in identifier
10616 2004-10-26  Thomas Quinot  <quinot@act-europe.fr>
10618         * sem_ch4.adb: Minor reformatting.
10620 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10622         * checks.adb (Expr_Known_Valid): If floating-point validity checks are
10623         enabled, check the result of unary and binary operations when the
10624         expression is the right-hand side of an assignment.
10626 2004-10-26  Vincent Celier  <celier@gnat.com>
10628         * clean.adb (Delete): Do not output warnings when in quiet output and
10629         not in verbose mode.
10630         (Force_Deletions): New Boolean flag, defaulted to False
10631         (Delete): Only delete a file if it is writable, and when
10632         Force_Deletions is True.
10633         (Parse_Cmd_Line): New switch -f: set Force_Deletions to True
10634         (Usage): Line for new switch -f
10635         (Clean_Directory): Use GNAT.OS_Lib.Set_Writable instead of rolling our
10636         own.
10638 2004-10-26  Eric Botcazou  <ebotcazou@act-europe.fr>
10640         * decl.c (gnat_to_gnu_field): Use the type of the inner object for a
10641         JM type only if its size matches that of the wrapper.  When a size is
10642         prescribed and the field is not aliased, remove the wrapper of a JM
10643         type only if the size is not greater than that of the packed array.
10644         (gnat_to_gnu_entity): Change the extension of packed array wrappers
10645         from LJM to JM.
10647 2004-10-26  Geert Bosch  <bosch@gnat.com>
10649         * eval_fat.adb (Eps_Model,Eps_Denorm): Remove, no longer used.
10650         (Succ): Re-implement using Scaling, Exponent and Ceiling attributes.
10651         (Pred): Implement in terms of Succ.
10653 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10655         * exp_aggr.adb (Safe_Component): An aggregate component that is an
10656         unchecked conversion is safe for in-place use if the expression of the
10657         conversion is safe.
10658         (Expand_Array_Aggregate): An aggregate that initializes an allocator may
10659         be expandable in place even if the aggregate does not come from source.
10660         (Convert_Array_Aggr_In_Allocator): New procedure to initialize the
10661         designated object of an allocator in place, rather than building it
10662         first on the stack. The previous scheme forces a full copy of the array,
10663         and may be altogether unsusable if the size of the array is too large
10664         for stack allocation.
10666 2004-10-26  Robert Dewar  <dewar@gnat.com>
10668         * exp_ch4.adb (Expand_N_Op_Eq): Make sure we expand a loop for array
10669         compares if the component is atomic.
10671         * exp_ch5.adb (Expand_Assign_Array): Make sure we expand a loop for
10672         array assignment if the component type is atomic.
10674 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10675             Eric Botcazou  <ebotcazou@act-europe.fr>
10677         * exp_ch6.adb (Expand_Actuals): If the actual for an in-out parameter
10678         is aliased and is a by_reference type, do not pass by copy.
10679         (Expand_N_Function_Call) <Rhs_Of_Assign_Or_Decl>: New function to
10680         detect whether the call is in the right side of an assignment or
10681         the expression of an object declaration.  Recurse on component
10682         association within aggregates.
10683         Call it in the condition that determines whether the temporary is
10684         necessary for correct stack-checking.
10686 2004-10-26  Thomas Quinot  <quinot@act-europe.fr>
10688         * exp_dist.adb (Build_General_Calling_Stubs): New formal parameter
10689         RACW_Type, used in the PolyORB version.
10690         Rename RCI_Info to RCI_Locator, for consistency between the PolyORB
10691         version and the GARLIC version.
10693         * snames.ads, snames.adb, s-parint.ads, s-parint.adb:
10694         Rename RCI_Info to RCI_Locator for better consistency between the
10695         GARLIC and PolyORB versions of the distributed systems annex.
10696         (DSA_Implementation_Name): This enumeration lists the possible
10697         implementations of the Partition Communication Subsystem for the
10698         Distributed Systems Annex (DSA). The three available implementations
10699         are the dummy stub implementation (No_DSA), and two versions based on
10700         two different distribution runtime libraries: GARLIC and PolyORB. Both
10701         the GARLIC PCS and the PolyORB PCS are part of the GLADE distribution
10702         technology.
10703         Change the literal GLADE_DSA to GARLIC_DSA to accurately describe
10704         that organization.
10706         * rtsfind.ads: Rename RCI_Info to RCI_Locator for better consistency
10707         between the GARLIC and PolyORB versions of the distributed systems
10708         annex.
10709         Remove RE_Unbounded_Reclaim_Pool since it is unused.
10711 2004-10-26  Gary Dismukes  <dismukes@gnat.com>
10713         * gnat1drv.adb: Suppress calling the back end when
10714         Frontend_Layout_On_Target is true.
10716 2004-10-26  Thomas Quinot  <quinot@act-europe.fr>
10718         * g-os_lib.ads, g-os_lib.adb (Set_Executable, Set_Writable,
10719         Set_Read_Only): New subprograms.
10720         These new routines allow the user to set or unset the Owner execute
10721         and Owner write permission flags on a file.
10723         * makegpr.adb, mlib.adb, mlib-prj.adb: Use
10724         GNAT.OS_Lib.Set_Executable instead of rolling our own.
10726 2004-10-26  Matthew Gingell  <gingell@gnat.com>
10728         * i-cpp.ads, i-cpp.adb: Change layout of VTable for new C++ ABI.
10730 2004-10-26  Pascal Obry  <obry@gnat.com>
10732         * init.c (__gnat_error_handler) [Win32]: Instead of trying to read the
10733         memory before the faulting page we properly test the process read
10734         access for this address using appropriate Win32 routine.
10735         (HPUX sections): guard with "__hpux__" instead of "hpux".
10737 2004-10-26  Robert Dewar  <dewar@gnat.com>
10739         * lib-xref.adb (Generate_Reference): Don't complain about reference to
10740         entry parameter if pragma Unreferenced set, since we do not properly
10741         handle the case of multiple parameters.
10743 2004-10-26  Vincent Celier  <celier@gnat.com>
10745         * prj-env.adb: (Contains_ALI_Files): New Boolean function
10746         (Ada_Objects_Path.Add): For a library project, add to the object path
10747         the library directory only if there is no object directory or if the
10748         library directory contains ALI files.
10749         (Set_Ada_Paths.Add.Recursive_Add): Ditto
10751 2004-10-26  Vincent Celier  <celier@gnat.com>
10753         * prj-nmsc.adb (Language_Independent_Check): Do not forbid virtual
10754         extension of library projects.
10756         * prj-part.adb: If env var ADA_PROJECT_PATH is not defined, project
10757         path defaults to ".:<prefix>/lib/gnat".
10758         (Parse): For an extending all project, allow direct import of a project
10759         that is virtually extended.
10761         * prj-proc.adb (Imported_Or_Extended_Project_From): If a project with
10762         the specified name is directly imported, return its ID. Otherwise, if
10763         an extension of this project is imported, return the ID of the
10764         extension.
10766 2004-10-26  Robert Dewar  <dewar@gnat.com>
10768         * s-arit64.adb: (Le3): New function, used by Scaled_Divide
10769         (Sub3): New procedure, used by Scaled_Divide
10770         (Scaled_Divide): Substantial rewrite, avoid duplicated code, and also
10771         correct more than one instance of failure to propagate carries
10772         correctly.
10773         (Double_Divide): Handle overflow case of largest negative number
10774         divided by minus one.
10776         * s-arit64.ads (Double_Divide): Document that overflow can occur in
10777         the case of a quotient value out of range.
10778         Fix comments.
10780 2004-10-26  Robert Dewar  <dewar@gnat.com>
10782         * s-bitops.adb (Bit_Eq): Remove redundant check.
10784         * s-bitops.ads: Minor comment updates
10785         Change some occurrences of Address to System.Address
10787         * s-carsi8.ads: Fix minor cut-and-paste error in comments
10789 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10791         * sem_attr.adb (Resolve_Attribute, case 'Access): Apply proper
10792         accessibility check to prefix that is a protected operation.
10794 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10796         * sem_ch10.adb (Optional_Subunit): If file of expected subunit is
10797         empty, post message on stub.
10799 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10800             Javier Miranda  <miranda@gnat.com>
10802         * sem_ch12.adb (In_Main_Context): Predicate to determine whether the
10803         current instance appears within a unit that is directly in the context
10804         of the main unit.
10805         Used to determine whether the body of the instance should be analyzed
10806         immediately after its spec, to make its subprogram bodies available
10807         for front-end inlining.
10808         (Analyze_Formal_Array_Type): Cleanup condition that checks that range
10809         constraint is not allowed on the component type (AARM 12.5.3(3))
10811 2004-10-26  Cyrille Comar  <comar@act-europe.fr>
10813         * sem_ch13.adb (Analyze_Attribute_Definition_Clause, case
10814         'Storage_Pool): enhance, document & limit detection of non-sharable
10815         internal pools.
10817         * impunit.adb: Make System.Pool_Global and System.Pool_Local visible.
10819         * s-pooglo.ads: Add more documentation now that this pool is properly
10820         documented.
10822 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10824         * sem_ch3.adb (Complete_Private_Subtype): If the full view is a task
10825         or protected type with discriminants, do not constrain the
10826         corresponding record type if the subtype declaration has no
10827         discriminant constraints. This can be the case in source code, or in
10828         the subtype declaration created to rename an actual type within an
10829         instantiation.
10831 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10833         * sem_ch6.adb (Analyze_Subprogram_Body): If body is a subunit for a
10834         different kind of stub (possibly wrong name for file), do not check
10835         for conformance.
10836         (Uses_Secondary_Stack): New subsidiary to Build_Body_To_Inline. If body
10837         includes call to some function that returns an unconstrained type, do
10838         not inline.
10840 2004-10-26  Ed Schonberg  <schonberg@gnat.com>
10842         * sem_elab.adb (Check_Elab_Call): Do not check a call that does not
10843         appear in the code for the main unit. Dependencies among units in the
10844         context of the main unit are established when those other units are
10845         compiled. Otherwise spurious elaboration constraints can generate
10846         incorrect elaboration circularities.
10848 2004-10-26  Thomas Quinot  <quinot@act-europe.fr>
10849             Ed Schonberg   <schonberg@gnat.com>
10851         * sem_util.adb (Is_Aliased_View): Defend against the case where this
10852         subprogram is called with a parameter that is not an object name. This
10853         situation arises for some cases of illegal code, which is diagnosed
10854         later, and in this case it is wrong to call Is_Aliased, as that might
10855         cause a compiler crash.
10856         (Explain_Limited_Type): Refine previous fix to include
10857         inherited components of derived types, to provide complete information.
10859         * exp_ch9.adb (Set_Privals): Set the Ekind of the actual object that
10860         is the prival for a protected object.
10861         It is necessary to mark this entity as a variable, in addition to
10862         flagging it as Aliased, because Sem_Util.Is_Aliased_View has been
10863         modified to avoid checking the Aliased flag on entities that are not
10864         objects. (Checking that flag for non-objects is erroneous and could
10865         lead to a compiler crash).
10867 2004-10-26  Robert Dewar  <dewar@gnat.com>
10869         * s-fatgen.adb (Pred): Fix redundant test for X > 0.0, since if
10870         X_Frac = 0.5, then we know that the number X must be positive.
10871         (Succ): Remove the same redundant test, and also fix the primary test
10872         to test for X_Frac = -0.5 (used to be 0.5) which is clearly wrong.
10873         Minor reformatting
10874         (Decompose): Add fuller comments to spec
10876 2004-10-26  Pascal Obry  <obry@gnat.com>
10878         * tracebak.c (IS_BAD_PTR): Use IsBadCodePtr on Win32 to check for ptr
10879         validity (process must have read access). Set to 0 in all other cases.
10880         (STOP_FRAME): Now check for ptr validity to avoid a segmentation
10881         violation on Win32.
10882         (VALID_STACK_FRAME): Check for ptr validity on Win32 to avoid a
10883         segmentation violation.
10885 2004-10-26  Eric Botcazou  <ebotcazou@act-europe.fr>
10887         * trans.c (call_to_gnu): For an (in-)out parameter passed by reference
10888         whose type is a constructed subtype of an aliased object with an
10889         unconstrained nominal subtype, convert the actual to the constructed
10890         subtype before taking its address.
10892 2004-10-26  Vincent Celier  <celier@gnat.com>
10894         * a-dirval.ads, a-dirval.adb, a-dirval-vms.adb, a-dirval-mingw.adb
10895         (Is_Path_Name_Case_Sensitive): New function
10897         * a-direct.adb (To_Lower_If_Case_Insensitive): New procedure
10898         (Base_Name, Simple_Name, Current_Directory, Compose,
10899         Containing_Directory, Full_Name): Call To_Lower_If_Case_Insensitive on
10900         the result.
10902 2004-10-26  Cyrille Comar    <comar@act-europe.fr>
10903             Vasiliy Fofanov  <fofanov@act-europe.fr>
10904             Vincent Celier   <celier@gnat.com>
10906         * gnat_ugn.texi: Generalize "finding memory problems" section into a
10907         "memory management issues" section and document some of the useful
10908         memory pools provided as part of the GNAT library.
10909         Remove "virtual" from declaration of A::method2 in
10910         the simple example of Ada/C++ mixed system.
10911         Library Projects may be virtually extended: their virtual extensions
10912         are not Library Projects.
10913         Added section on extending project hierarchies.
10915 2004-10-19  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
10917         * adaint.c (__gnat_get_libraries_from_registry): Cast value
10918         to LPBYTE.
10919         (__gnat_portable_spawn): Remove const.
10921         * mingw32.h (MAXPATHLEN): Check for previous definition.
10923 2004-10-17  Matthias Klose  <doko@debian.org>
10925         * gnatvsn.ads: Set gnat library version to 4.0.
10927 2004-10-05  Vincent Celier  <celier@gnat.com>
10929         * mlib-tgt.ads: (Build_Dynamic_Library): New parameter Options_2
10931 2004-10-04  Laurent GUERBY <laurent@guerby.net>
10933         PR ada/15156
10934         * Makefile.in: Define and use RANLIB_FLAGS.
10936 2004-10-04  Pascal Obry  <obry@gnat.com>
10938         * tracebak.c: Always set LOWEST_ADDR to 0 on Win32 (as done on all
10939         other x86 platforms).
10941 2004-10-04  Olivier Hainque  <hainque@act-europe.fr>
10943         * s-tassta.adb (Task_Wrapper): Make it Convention C, which makes sense
10944         in general and triggers stack alignment adjustment for thread entry
10945         points on targets where this is necessary.
10947 2004-10-04  Bernard Banner  <banner@gnat.com>
10949         PR ada/13897
10951         * Makefile.in: Add section for powerpc linux
10952         Add variant i-vxwork-x86.ads
10954         * i-vxwork-x86.ads, system-linux-ppc.ads: New files.
10956 2004-10-04  Olivier Hainque  <hainque@act-europe.fr>
10958         * init.c (__gnat_initialize): Call an Ada subprogram to perform the
10959         table registration calls when need be. Ensures no reference to the crt
10960         ctors symbol are issued in the SJLJ case, which avoids possible
10961         undefined symbol errors in the case of modules to be statically linked
10962         with the kernel.
10964 2004-10-04  Javier Miranda  <miranda@gnat.com>
10966         * sem_ch4.adb (Try_Object_Operation): Reformat the code to expand
10967         in-line the code corresponding to subprogram Analyze_Actuals. In
10968         addition, analyze the actuals only in case of subprogram call.
10970 2004-10-04  Ed Falis  <falis@gnat.com>
10972         * s-vxwork-x86.ads: (FP_CONTEXT): Defined to be correct size
10974 2004-10-04  Sergey Rybin  <rybin@act-europe.fr>
10976         * g-dirope.ads (Base_Name): Clarify the meaning of the Suffix parameter
10977         in the documentation.
10979 2004-10-04  Robert Dewar  <dewar@gnat.com>
10981         * sem_ch5.adb (Unblocked_Exit_Count): Now used for blocks as well as
10982         IF and CASE.
10983         (Analyze_Block_Statement): Add circuitry to detect following dead code
10984         (Check_Unreachable_Code): Handle case of block exit
10986 2004-10-04  Robert Dewar  <dewar@gnat.com>
10988         * g-spipat.adb: (XMatch): Avoid warning for Logic_Error call
10989         (XMatchD): Avoid warning for Logic_Error call
10991 2004-10-04  Robert Dewar  <dewar@gnat.com>
10993         * exp_ch4.adb (Is_Procedure_Actual): Correct so that this does not
10994         consider expressions buried within a procedure actual to be an actual.
10995         This caused some blowups with uses of packed slices within a procedure
10996         actual.
10998 2004-10-04  Robert Dewar  <dewar@gnat.com>
11000         * exp_ch3.adb (Needs_Simple_Initialization): Modular packed arrays no
11001         longer need to be initialized to zero.
11002         (Get_Simple_Init_Val): Modular packed arrays no longer need to be
11003         initialized to zero.
11005         * checks.adb (Expr_Known_Valid): Packed arrays are now always
11006         considered valid, even if the representation is modular. That's correct
11007         now that we no longer initialize packed modular arrays to zero.
11009         * exp_dbug.ads: Clarify documentation on handling of PAD and JM
11010         suffixes. These are now documented as the only cases in which the
11011         debugger ignores outer records.
11012         Previously, the spec allowed arbitrary suffixes for this purpose.
11013         Change name of LJM to JM for packed array pad records
11014         Create separate section on packed array handling, and add a whole new
11015         set of comments to this section describing the situation with packed
11016         modular types and justification requirements depending on endianness.
11018 2004-10-04  Robert Dewar  <dewar@gnat.com>
11020         * a-except.adb: Add a comment for last change
11022         * einfo.ads: Minor spelling correction in comment
11024         * exp_pakd.adb, gnatdll.adb, prj-attr.ads: Minor reformatting
11026         * sem_ch11.adb: Fix a case of using | instead of \ for continuation
11027         messages.
11029         * sem_util.ads: Minor comment update
11031 2004-10-04  Ed Schonberg  <schonberg@gnat.com>
11033         * sem_ch6.adb (Analyze_Subprogram_Body): Do not treat Inline as
11034         Inline_Always when in Configurable_Run_Time mode.
11036         * sem_prag.adb (Process_Convention): If entity is an inherited
11037         subprogram, apply convention to parent subprogram if in same scope.
11038         (Analyze_Pragma, case Inline): Do not treat Inline as Inline_Always
11039         when in Configurable_Run_Time mode.
11041 2004-10-04  Ed Schonberg  <schonberg@gnat.com>
11043         * sem_ch3.adb (Build_Derived_Record_Type): Set First/Last entity of
11044         class_wide type after component list has been inherited.
11046 2004-10-04  Ed Schonberg  <schonberg@gnat.com>
11048         * sem_ch12.adb (Check_Generic_Actuals): New predicate
11049         Denotes_Previous_Actual, to handle properly the case of a private
11050         actual that is also the component type of a subsequent array actual.
11051         The visibility status of the first actual is not affected when the
11052         second is installed.
11053         (Process_Nested_Formal): Subsidiary of Instantiate_Formal_Package, to
11054         make fully recursive the treatment of formals of packages declared
11055         with a box.
11056         (Restore_Nested_Formal): Subsidiary of Restore_Private_Views, to undo
11057         the above on exit from an instantiation.
11058         (Denotes_Formal_Package): When called from Restore_Private_Views, ignore
11059         current instantiation which is now complete.
11060         (Analyze_Package_Instantiation): No instantiated body is needed if the
11061         main unit is generic. Efficient, and avoid anomalies when a instance
11062         appears in a package accessed through rtsfind.
11064 2004-10-04  Ed Schonberg  <schonberg@gnat.com>
11066         * exp_ch6.adb (Expand_N_Function_Call): If stack checking is enabled,
11067         do not generate a declaration for a temporary if the call is part of a
11068         library-level instantiation.
11070 2004-10-04  Ed Schonberg  <schonberg@gnat.com>
11072         * sem_util.adb (Explain_Limited_Type): Ignore internal components when
11073         searching for a limited component to flag.
11075         * exp_attr.adb (Freeze_Stream_Subprogram): Subsidiary procedure to
11076         expansion of Input, to account for the fact that the implicit call
11077         generated by the attribute reference must freeze the user-defined
11078         stream subprogram. This is only relevant to 'Input, because it can
11079         appear in an object declaration, prior to the body of the subprogram.
11081         * sem_ch13.adb (Rep_Item_Too_Late): Make the error non-serious, so that
11082         expansion can proceed and further errors uncovered.
11083         (Minor clean up): Fix cases of using | instead of \ for continuation
11084         messages.
11086 2004-10-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11088         * cuintp.c, decl.c, utils2.c: Use gcc_assert and gcc_unreachable.
11090         * trans.c (assoc_to_constructor): Fix unused var warning if no checking.
11091         (gnat_gimplify_expr, case ADDR_EXPR): Fix error in last change.
11092         Use gcc_assert and gcc_unreachable.
11094         * decl.c (gnat_to_gnu_entity, case object): Check and process a
11095         specified alignment before validating size.
11096         (gnat_to_gnu_entity) <E_Modular_Integer_Subtype>: Create a
11097         stripped-down declaration for the type of the inner field when making
11098         a JM type.
11100         * utils.c (finish_record_type): Do not compute the size in units
11101         incrementally. Instead compute it once for the rep clause case.
11102         Use gcc_assert and gcc_unreachable.
11104 2004-10-04  Vincent Celier  <celier@gnat.com>
11106         * a-dirval-mingw.adb (Invalid_Character): Add '\' as invalid character
11107         in file name.
11108         (Is_Valid_Path_Name): Take '/' as a directory separator.
11110 2004-10-04  Vincent Celier  <celier@gnat.com>
11112         * prj-part.adb (Parse_Single_Project): Call Is_Extending_All
11113         (Extended_Project) only if Extended_Project is defined, to avoid
11114         assertion error.
11115         (Post_Parse_Context_Clause): Always call Set_Path_Name_Of with a
11116         resolved path.
11117         (Parse_Single_Project): Ditto.
11119         * prj-env.adb (Set_Ada_Paths.Add.Recursive_Add): Do not call
11120         Add_To_Project_Path for virtual projects.
11122 2004-10-04  Vincent Celier  <celier@gnat.com>
11124         * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
11125         mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb,
11126         mlib-tgt-vms-alpha.adb, mlib-tgt-vms-ia64.adb, mlib-tgt-mingw.adb,
11127         mlib-tgt-vxworks.adb, mlib-tgt.adb (Build_Dynamic_Library): New
11128         parameter Options_2.
11130         * mlib-prj.ads, mlib-prj.adb (Build_Library): Call
11131         Build_Dynamic_Library with an empty Options_2.
11133         * mlib-utl.ads, mlib-utl.adb (Gcc): Parameter Options_2 has no
11134         default anymore.
11136         * makegpr.adb (Get_Imported_Directories.add): Remove trailing
11137         directory separator, if any.
11138         (Gprmake): Do not allow mains on the command line for library projects.
11139         Do not attempt to link when the project is a library project.
11140         (Library_Opts): New table to store Library_Options.
11141         (Build_Library): If Library_Options is specified, pass these options
11142         when building a shared library.
11144 2004-10-04  Jose Ruiz  <ruiz@act-europe.fr>
11146         * s-tposen.adb (Service_Entry): The object must be always unlocked at
11147         the end of this procedure now that the unlock operation was inserted
11148         by the expander.
11150 2004-10-04  Jose Ruiz  <ruiz@act-europe.fr>
11152         * targparm.ads, targparm.adb (Targparm_Tags): Add PAS value
11153         corresponding to the Preallocated_Stacks flags in System.
11154         (Get_Target_Parameters): Including the processing for
11155         Preallocated_Stacks.
11157         * system.ads, system-vxworks-x86.ads, system-darwin-ppc.ads,
11158         system-vms_64.ads, system-unixware.ads, system-linux-ia64.ads,
11159         system-freebsd-x86.ads, system-lynxos-ppc.ads, system-lynxos-x86.ads,
11160         system-linux-x86_64.ads, system-tru64.ads, system-aix.ads,
11161         system-vxworks-sparcv9.ads, system-vxworks-xscale.ads,
11162         system-solaris-x86.ads, system-irix-o32.ads, system-irix-n32.ads,
11163         system-hpux.ads, system-vxworks-m68k.ads, system-linux-x86.ads,
11164         system-vxworks-mips.ads, system-os2.ads, system-interix.ads,
11165         system-solaris-sparc.ads, system-solaris-sparcv9.ads, system-vms.ads,
11166         system-mingw.ads, system-vms-zcx.ads, system-vxworks-ppc.ads,
11167         system-vxworks-alpha.ads: Add the flag Preallocated_Stacks, that is
11168         used to signal whether the compiler creates the required stacks and
11169         descriptors for the different tasks (when True) or it is done by the
11170         underlying operating system at run time (when False).
11171         It is initially set to False in all targets.
11173         * exp_ch9.adb (Expand_N_Task_Type_Declaration): Create the task stack
11174         if it is supported by the target.
11175         (Make_Task_Create_Call): Pass the stack address if it has been
11176         previously created. Otherwise pass a Null_Address.
11178         * snames.adb: Add _stack.
11180         * snames.ads: Add Name_uStack. Required to allow the expander to
11181         statically allocated task stacks.
11183         * s-tarest.ads, s-tarest.adb (Create_Restricted_Task): Add
11184         Stack_Address argument.
11185         Check that its value is equal to Null_Address because this target does
11186         not support the static stack allocation.
11188 2004-10-04  Thomas Quinot  <quinot@act-europe.fr>
11190         * usage.adb: Change "pragma inline" to "pragma Inline" in information
11191         and error messages
11193 2004-10-04  Thomas Quinot  <quinot@act-europe.fr>
11195         * exp_dist.adb: Split declaration of asynchronous flag out of
11196         Add_RACW_Read_Attribute.
11197         Minor reformatting for better alignment with PolyORB version.
11198         Store the entity for the asynchronous flag of an RACW, rather than the
11199         expression, in the asynchronous flags table. This will allow this flag
11200         to be used in other subprograms beside Add_RACW_Read_Attribute.
11202 2004-10-04  Thomas Quinot  <quinot@act-europe.fr>
11204         * g-socket.ads, g-socket.adb, g-socthi.adb, socket.c,
11205         g-soccon-aix.ads, g-soccon-irix.ads, g-soccon-hpux.ads,
11206         g-soccon-interix.ads, g-soccon-solaris.ads, g-soccon-vms.adb,
11207         g-soccon-mingw.ads, g-soccon-vxworks.ads, g-soccon-freebsd.ads,
11208         g-soccon.ads, g-soccon-unixware.ads, g-soccon-tru64.ads:  Add new
11209         sockets constant MSG_NOSIGNAL (Linux-specific).
11210         Add new sockets constant MSG_Forced_Flags, list of flags to be set on
11211         all Send operations.
11212         For Linux, set MSG_NOSIGNAL on all send operations to prevent them
11213         from trigerring SIGPIPE.
11214         Rename components to avoid clash with Ada 2005 possible reserved
11215         word 'interface'.
11216         (Check_Selector): When the select system call returns with an error
11217         condition, propagate Socket_Error to the caller.
11219 2004-10-01  Jan Hubicka  <jh@suse.cz>
11221         * misc.c (gnat_expand_body): Update call of tree_rest_of_compilation.
11223 2004-09-23  Robert Dewar  <dewar@gnat.com>
11225         PR ada/17540
11227         * sem_prag.adb (Process_Import_Or_Interface): Don't set Is_Public here,
11228         instead do this at freeze time (we won't do it if there is an address
11229         clause).
11230         Change "pragma inline" to "pragma Inline" in information and error
11231         messages.
11232         Minor reformatting.
11234         * freeze.adb (Check_Address_Clause): Remove previous change, not the
11235         right way of doing things after all.
11236         (Freeze_Entity): For object, set Is_Public for imported entities
11237         unless there is an address clause present.
11239 2004-09-21  Olivier Hainque  <hainque@act-europe.fr>
11241         * decl.c (gnat_to_gnu_entity) <E_General_Access_Type>: Check for a
11242         dummy designated type via TYPE_MODE instead of COMPLETE_TYPE_P. This
11243         ensures proper handling of types with rep clauses, which might have
11244         their TYPE_SIZE set already.
11246 2004-09-21  Robert Dewar  <dewar@gnat.com>
11248         * decl.c (gnat_to_gnu_type, case E_Modular_Integer_Type): Wrap modular
11249         packed array types in both little- and big-endian cases. This change
11250         ensures that we no longer count on the unused bits being initialized
11251         for such types (and in particular ensures that equality testing will
11252         only read the relevant bits).
11253         Change name TYPE_LEFT_JUSTIFIED_MODULAR_P to TYPE_JUSTIFIED_MODULAR_P
11254         These changes mean that we no longer need to initialize small packed
11255         arrays.
11256         (gnat_to_gnu_entity) <E_Record_Subtype>: Apply the same
11257         optimization to an LJM field as to its parent field.
11259         * ada-tree.h, trans.c, utils.c, utils2.c:
11260         Change name TYPE_LEFT_JUSTIFIED_MODULAR_P to TYPE_JUSTIFIED_MODULAR_P
11262 2004-09-20  Jan Hubicka  <jh@suse.cz>
11264         * utils.c (gnat_finalize): Remove.
11265         (end_subprog_body): Directly call cgraph_finalize_function;
11266         do not lower the nested functions.
11268 2004-09-20  Robert Dewar  <dewar@gnat.com>
11270         PR ada/17540
11272         * freeze.adb (Check_Address_Clause): Reset Is_Imported and Is_Public
11273         if an address clause is present, since that means that the Import
11274         should be ignored.
11276 2004-09-20  Arnaud Charlet  <charlet@act-europe.fr>
11278         * 5tsystem.ads: Removed, no longer used.
11280 2004-09-17  Jeffrey D. Oldham  <oldham@codesourcery.com>
11281             Zack Weinberg  <zack@codesourcery.com>
11283         * ada-tree.def: Use tree_code_class enumeration constants
11284         instead of code letters.
11285         * ada-tree.h, decl.c, misc.c, trans.c, utils.c, utils2.c:
11286         Update for new tree-class enumeration constants.
11288 2004-09-17  Vincent Celier  <celier@gnat.com>
11290         * prj-attr-pm.ads, prj-attr-pm.adb: New files, to split some private
11291         capabilities of the general project manager.
11293 2004-09-09  Vincent Celier  <celier@gnat.com>
11295         * a-direct.ads: Add pragma Ada_05
11296         (Directory_Entry_Type): Give default value to component Kind to avoid
11297         not initialized warnings.
11299         * a-direct.adb (Current_Directory): Remove directory separator at the
11300         end.
11301         (Delete_Directory, Delete_Tree): Raise Name_Error if Directory is not
11302         an existing directory.
11303         (Fetch_Next_Entry): Give default value to variable Kind to avoid warning
11304         (Size (String)): Function C_Size returns Long_Integer, not File_Size.
11305         Convert the result to File_Size.
11307         * prj.ads: (Project_Error): New exception
11309         * prj-attr.adb: Except in procedure Initialize, Fail comes from
11310         Prj.Com, not from Osint.
11311         (Attrs, Package_Attributes): Tables moved to private part of spec
11312         (Add_Attribute, Add_Unknown_Package): Moved to new child package
11313         Prj.Attr.PM.
11314         (Register_New_Package (Name, Attributes), Register_New_Attribute): Raise
11315         Prj.Project_Error after call to Fail.
11316         (Register_New_Package (Name, Id)): Set Id to Empty_Package after calling
11317         Fail. Check that package name is not already in use.
11319         * prj-attr.ads: Comment updates to indicate that all subprograms may be
11320         used by tools, not only by the project manager, and to indicate that
11321         exception Prj.Prj_Error may be raised in case of problem.
11322         (Add_Unknown_Package, Add_Attribute): Moved to new child package
11323         Prj.Attr.PM.
11324         (Attrs, Package_Attributes): Table instantiations moved from the body to
11325         the private part to be accessible from Prj.Attr.PM body.
11327         * prj-dect.adb (Parse_Package_Declaration): Call Add_Unknown_Package
11328         from new package Prj.Attr.PM.
11329         (Parse_Attribute_Declaration): Call Add_Attribute from new package
11330         Prj.Attr.PM.
11332         * Makefile.in: Add prj-attr-pm.o to gnatmake object list
11334         * gnatbind.adb (Gnatbind): Correct warning message (Elaboration_Check
11335         instead of Elaboration_Checks).
11337         * a-calend.adb: Minor reformatting
11339 2004-09-09  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11341         * gigi.h (maybe_pad_type): New declaration.
11342         (create_subprog_type): New arg RETURNS_BY_TARGET_PTR.
11344         * ada-tree.h: (TYPE_RETURNS_BY_TARGET_PTR_P): New macro.
11346         * cuintp.c: Convert to use buildN.
11348         * decl.c (maybe_pad_type): No longer static.
11349         (gnat_to_gnu_entity, case E_Function): Handle case of returning by
11350         target pointer.
11351         Convert to use buildN.
11353         * trans.c (call_to_gnu): Add arg GNU_TARGET; support
11354         TYPE_RETURNS_BY_TARGET_PTR_P.  All callers changed.
11355         (gnat_to_gnu, case N_Assignment_Statement): Call call_to_gnu if call on
11356         RHS.
11357         (gnat_to_gnu, case N_Return): Handle TYPE_RETURN_BY_TARGET_PTR_P.
11358         (gnat_gimplify_expr, case ADDR_EXPR): New case.
11359         Convert to use buildN.
11361         * utils2.c (gnat_build_constructor): Also set TREE_INVARIANT and
11362         TREE_READONLY for const.
11363         Convert to use buildN.
11365         * utils.c (create_subprog_type): New operand RETURNS_BY_TARGET_PTR.
11366         (create_var_decl): Refine when TREE_STATIC is set.
11367         Convert to use buildN.
11369 2004-09-09  Gary Dismukes  <dismukes@gnat.com>
11371         * gnat_ugn.texi: Delete text relating to checking of ali and object
11372         consistency.
11374         * a-except.adb (Rcheck_*): Add pragmas No_Return for each of these
11375         routines.
11377 2004-09-09  Jose Ruiz  <ruiz@act-europe.fr>
11379         * gnat_ugn.texi: Add Detect_Blocking to the list of configuration
11380         pragmas recognized by GNAT.
11382         * gnat_rm.texi: Document pragma Detect_Blocking.
11384         * s-solita.adb (Timed_Delay_T): When pragma Detect_Blocking is active,
11385         raise Program_Error if called from a protected operation.
11387         * s-taprob.adb (Lock): When pragma Detect_Blocking is active increase
11388         the protected action nesting level.
11389         (Lock_Read_Only): When pragma Detect_Blocking is active increase the
11390         protected action nesting level.
11391         (Unlock): When pragma Detect_Blocking is active decrease the protected
11392         action nesting level.
11394         * s-taskin.adb (Initialize_ATCB): Initialize to 0 the
11395         Protected_Action_Nesting.
11397         * s-taskin.ads: Adding the field Protected_Action_Nesting to the
11398         Common_ATCB record. It contains the dynamic level of protected action
11399         nesting for each task. It is needed for checking whether potentially
11400         blocking operations are called from protected operations.
11401         (Detect_Blocking): Adding a Boolean constant reflecting whether pragma
11402         Detect_Blocking is active or not in the partition.
11404         * s-tasren.adb (Call_Simple): When pragma Detect_Blocking is active,
11405         raise Program_Error if called from a protected operation.
11406         (Task_Entry_Call): When pragma Detect_Blocking is active, raise
11407         Program_Error if called from a protected operation.
11408         (Timed_Task_Entry_Call): When pragma Detect_Blocking is active, raise
11409         Program_Error if called from a protected operation.
11411         * s-tassta.adb (Abort_Tasks): When pragma Detect_Blocking is active,
11412         raise Program_Error if called from a protected operation.
11414         * s-tpoben.adb (Lock_Entries): When pragma Detect_Blocking is active,
11415         raise Program_Error if called from a protected operation, and increase
11416         the protected action nesting level.
11417         (Lock_Read_Only_Entries): When pragma Detect_Blocking is active, raise
11418         Program_Error if called from a protected operation, and increase the
11419         protected action nesting level.
11420         (Unlock_Entries): When pragma Detect_Blocking is active decrease the
11421         protected action nesting level.
11423         * s-tposen.adb (Lock_Entry): When pragma Detect_Blocking is active,
11424         raise Program_Error if called from a protected operation, and increase
11425         the protected action nesting level.
11426         (Lock_Read_Only_Entry): When pragma Detect_Blocking is active, raise
11427         Program_Error if called from a protected operation, and increase the
11428         protected action nesting level.
11429         (Protected_Single_Entry_Call): When pragma Detect_Blocking is active,
11430         raise Program_Error if called from a protected operation.
11431         (Timed_Protected_Single_Entry_Call): When pragma Detect_Blocking is
11432         active, raise Program_Error if called from a protected operation.
11433         (Unlock_Entry): When pragma Detect_Blocking is active decrease the
11434         protected action nesting level.
11436         * sem_util.adb (Check_Potentially_Blocking_Operation): Remove the
11437         insertion of the statement raising Program_Error. The run time
11438         contains the required machinery for handling that.
11440         * sem_util.ads: Change comment associated to procedure
11441         Check_Potentially_Blocking_Operation.
11442         This procedure does not insert a call for raising the exception because
11443         that is currently done by the run time.
11445         * raise.h (__gnat_set_globals): Pass the detect_blocking parameter.
11447         * init.c: Add the global variable __gl_detect_blocking that indicates
11448         whether pragma Detect_Blocking is active (1) or not (0). Needed for
11449         making the pragma available at run time.
11450         (__gnat_set_globals): Pass and update the detect_blocking parameter.
11452         * lib-writ.adb (Write_ALI): Set the DB flag in the ali file if
11453         pragma Detect_Blocking is active.
11455         * lib-writ.ads: Document the Detect_Blocking flag (DB) in ali files.
11457         * ali.adb (Scan_ALI): Set the Detect_Blocking value to true if the flag
11458         DB is found in the ali file. Any unit compiled with pragma
11459         Detect_Blocking active forces its effect in the whole partition.
11461         * a-retide.adb (Delay_Until): Raise Program_Error if pragma
11462         Detect_Blocking is active and delay is called from a protected
11463         operation.
11465         * bindgen.adb (Gen_Adainit_Ada): When generating the call to
11466         __gnat_set_globals, pass 1 as Detect_Blocking parameter if pragma
11467         Detect_Blocking is active (0 otherwise).
11468         (Gen_Adainit_C): When generating the call to __gnat_set_globals, pass 1
11469         as Detect_Blocking parameter if pragma Detect_Blocking is active (0
11470         otherwise).
11472 2004-09-09  Thomas Quinot  <quinot@act-europe.fr>
11474         * gnat_rm.texi: Rename GNAT.Perfect_Hash.Generators to
11475         GNAT.Perfect_Hash_Generators, and remove the empty GNAT.Perfect_Hash
11476         package.
11478         * s-parint.ads, s-parint.adb (Get_RAS_Info): New subprogram.
11479         (Register_Receiving_Stub): Add Subp_Info formal parameter.
11480         Update API in placeholder implemetation of s-parint to reflect changes
11481         in distribution runtime library.
11483         * sem_ch3.adb (Expand_Derived_Record): Rename to
11484         Expand_Record_Extension.
11486         * sem_disp.adb (Check_Controlling_Formals): Improve error message for
11487         primitive operations of potentially distributed object types that have
11488         non-controlling anonymous access formals.
11490         * sem_dist.ads, sem_dist.adb (Build_RAS_Primitive_Specification): New
11491         subprogram.
11492         New implementation of expansion for remote access-to-subprogram types,
11493         based on the RACW infrastructure.
11494         This version of sem_dist is compatible with PolyORB/DSA as well as
11495         GLADE.
11497         * sem_prag.adb (Analyze_Pragma, case Pragma_Asynchronous): For a pragma
11498         Asynchrronous that applies to a remote access-to-subprogram type, mark
11499         the underlying RACW type as asynchronous.
11501         * link.c: FreeBSD uses GNU ld: set __gnat_objlist_file_supported and
11502          __gnat_using_gnu_linker to 1.
11504         * Makefile.rtl, impunit.adb, g-perhas.ads, g-pehage.ads,
11505         g-pehage.adb: Rename GNAT.Perfect_Hash.Generators to
11506         GNAT.Perfect_Hash_Generators, and remove the empty
11507         GNAT.Perfect_Hash package.
11509         * atree.adb: Minor reformatting
11511         * exp_ch3.adb (Expand_Derived_Record): Rename to
11512         Expand_Record_Extension.
11513         (Build_Record_Init_Proc.Build_Assignment): The default expression in
11514         a component declaration must remain attached at that point in the
11515         tree so New_Copy_Tree copies it if the enclosing record type is derived.
11516         It is therefore necessary to take a copy of the expression when building
11517         the corresponding assignment statement in the init proc.
11518         As a side effect, in the case of a derived record type, we now see the
11519         original expression, without any rewriting that could have occurred
11520         during expansion of the ancestor type's init proc, and we do not need
11521         to go back to Original_Node.
11523         * exp_ch3.ads (Expand_Derived_Record): Rename to
11524         Expand_Record_Extension.
11526         * exp_dist.ads, exp_dist.adb (Underlying_RACW_Type): New subprogram.
11527         Returns the RACW type used to implement a remote access-to-subprogram
11528         type.
11529         (Add_RAS_Proxy_And_Analyze, Build_Remote_Subprogram_Proxy_Type):
11530         New subprograms. Used to create a proxy tagged object for a remote
11531         subprogram. The proxy object is used as the designated object
11532         for RAS values on the same partition (unless All_Calls_Remote applies).
11533         (Build_Get_Unique_RP_Call): New subprogram. Build a call to
11534         System.Partition_Interface.Get_Unique_Remote_Pointer.
11535         (Add_RAS_Access_TSS, Add_RAS_Dereference_TSS):
11536         Renamed from Add_RAS_*_Attribute.
11537         (Add_Receiving_Stubs_To_Declarations): Generate a table of local
11538         subprograms.
11539         New implementation of expansion for remote access-to-subprogram types,
11540         based on the RACW infrastructure.
11542         * exp_dist.ads (Copy_Specification): Update comment to note that this
11543         function can copy the specification from either a subprogram
11544         specification or an access-to-subprogram type definition.
11546 2004-09-09  Ed Schonberg  <schonberg@gnat.com>
11548         * sem_type.adb (Disambiguate): Handle properly an accidental ambiguity
11549         in an instance, between an explicit subprogram an one inherited from a
11550         type derived from an actual.
11552         * exp_ch6.adb (Expand_N_Subprogram_Body): If polling is enabled, do not
11553         add a polling call if the subprogram is to be inlined by the back-end,
11554         to avoid repeated calls with multiple inlinings.
11556         * checks.adb (Apply_Alignment_Check): If the expression in the address
11557         clause is a call whose name is not a static entity (e.g. a dispatching
11558         call), treat as dynamic.
11560 2004-09-09  Robert Dewar  <dewar@gnat.com>
11562         * g-trasym.ads: Minor reformatting
11564         * exp_ch3.adb (Component_Needs_Simple_Initialization): Don't except
11565         packed arrays, since unused bits are expected to be zero for a
11566         comparison.
11568 2004-09-09  Eric Botcazou  <ebotcazou@act-europe.fr>
11570         * exp_pakd.ads: Fix an inacurracy and a couple of typos in the head
11571         comment.
11573 2004-09-09  Pascal Obry  <obry@gnat.com>
11575         * mdll.ads, mdll.adb (Build_Dynamic_Library): New parameter Map_File to
11576         enable map file generation. Add the right option to generate the map
11577         file if Map_File is set to True.
11579         * gnatdll.adb (Gen_Map_File): New variable.
11580         (Syntax): Add info about new -m (Map_File) option.
11581         (Parse_Command_Line): Add support for -m option.
11582         (gnatdll): Pass Gen_Map_File to Build_Dynamic_Library calls.
11583         Minor reformatting.
11585 2004-09-09  Laurent Pautet  <pautet@act-europe.fr>
11587         * gnatls.adb: Add a very verbose mode -V. Such mode is required by the
11588         new gnatdist implementation.
11589         Define a subpackage isolating the output routines specific to this
11590         verbose mode.
11592 2004-09-09  Joel Brobecker  <brobecker@gnat.com>
11594         * Makefile.rtl: (GNATRTL_NONTASKING_OBJS): Add g-dynhta.
11596         * gnat_ugn.texi (Main Subprograms): Fix typo. Deduced, not deducted.
11598 2004-09-09  Cyrille Comar  <comar@act-europe.fr>
11600         * opt.adb (Set_Opt_Config_Switches): Use Ada_Version_Runtime to compile
11601         internal unit.
11603         * opt.ads: Add Ada_Version_Runtime constant used to decide which
11604         version of the language is used to compile the run time.
11606 2004-09-09  Arnaud Charlet  <charlet@act-europe.fr>
11608         * sem_util.adb (Requires_Transient_Scope): Re-enable handling
11609         of variable length temporaries for function return now that the
11610         back-end and gigi support it.
11612 2004-09-01  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11614         * misc.c (gnat_print_type): Use TYPE_RM_SIZE_NUM.
11616         * trans.c (struct stmt_group): Delete field GLOBAL.
11617         (gnat_init_stmt_group): Do not initialize it.
11618         (call_to_gnu): Use save_expr, not protect_multiple_eval.
11619         (Exception_Handler_to_gnu_sjlj): Call build_int_cst, not build_int_2
11620         (gnat_to_gnu, case N_Character_Literal, N_String_Literal): Likewise.
11621         (gnat_to_gnu, case N_Compilation_Unit): Do not set GLOBAL in stmt group.
11622         (start_stmt_group): Likewise.
11623         (add_stmt, add_decl_expr): Rework handling of global DECL_EXPRs.
11625         * utils2.c (ggc.h): Include.
11626         (build_call_raise): Call build_int_cst, not build_int_2.
11628         * utils.c (gnat_init_decl_processing): Fix arg to
11629         build_common_tree_nodes.
11630         (create_subprog_type): Do not use SET_TYPE_CI_CO_LIST.
11631         (gnat_define_builtin): Set built_in_decls.
11632         (init_gigi_decls): Call build_int_cst, not build_int_2.
11634         * ada-tree.h (struct lang_decl, struct lang_type): Field is type tree.
11635         (GET_TYPE_LANG_SPECIFIC, SET_TYPE_LANG_SPECIFIC): New macros.
11636         (GET_DECL_LANG_SPECIFIC, SET_DECL_LANG_SPECIFIC): Likewise.
11637         (TYPE_CI_CO_LIST, SET_TYPE_CI_CO_LIST, TYPE_MODULE,
11638         SET_TYPE_MODULE): Use them.
11639         (TYPE_INDEX_TYPE, SET_TYPE_INDEX_TYPE, TYPE_DIGITS_VALUE): Likewise.
11640         (SET_TYPE_DIGITS_VALUE, TYPE_UNCONSTRAINED_ARRAY): Likewise.
11641         (SET_TYPE_UNCONSTRAINED_ARRAY, TYPE_ADA_SIZE,
11642         SET_TYPE_ADA_SIZE): Likewise.
11643         (TYPE_ACTUAL_BOUNDS, SET_TYPE_ACTUAL_BOUNDS): Likewise.
11644         (DECL_CONST_CORRESPONDING_VAR,
11645         SET_DECL_CONST_CORRESPONDING_VAR): Likewise.
11646         (DECL_ORIGINAL_FIELD, SET_DECL_ORIGINAL_FIELD): Likewise.
11647         (TYPE_RM_SIZE_INT, TYPE_RM_SIZE_ENUM, SET_TYPE_RM_SIZE_ENUM): Deleted.
11648         (TYPE_RM_SIZE_NUM): New macro.
11649         (TYPE_RM_SIZE): Modified to use above.
11651         * cuintp.c: (build_cst_from_int): New function.
11652         (UI_To_gnu): Use it.
11654         * decl.c (gnat_to_gnu_entity): Use TYPE_RM_SIZE_NUM.
11655         (make_type_from_size): Avoid changing TYPE_UNSIGNED of a type.
11656         (gnat_substitute_in_type, case ARRAY_TYPE): If old had a
11657         MIN_EXPR for the size, copy it into new.
11659 2004-09-01  Robert Dewar  <dewar@gnat.com>
11661         * exp_ch6.adb (Expand_Call): Properly handle validity checks for
11662         packed indexed component where array is an IN OUT formal. This
11663         generated garbage code previously.
11665         * gnat_ugn.texi: Document -fverbose-asm
11667         * gnat-style.texi: Minor updates (note that boolean constants and
11668         variables are joined with AND/OR rather than short circuit forms).
11670 2004-09-01  Ed Schonberg  <schonberg@gnat.com>
11672         * exp_util.adb (Safe_Unchecked_Type_Conversion): Conversion is safe if
11673         it is an upward conversion of an untagged type with no representation
11674         change.
11676 2004-09-01  Thomas Quinot  <quinot@act-europe.fr>
11678         * rtsfind.ads: Move RCI_Subp_Info and RCI_Subp_Info_Array to
11679         System.Partition_Interface.
11681         * checks.adb (Apply_Access_Checks): Do not generate checks when
11682         expander is not active (but check for unset reference to prefix of
11683         dereference).
11685         * sem_prag.adb (Analyze_Pragma, case Pragma_Debug): Uniformly rewrite
11686         pragma Debug as an if statement with a constant condition, for
11687         consistent treatment of entity references contained within the
11688         enclosed procedure call.
11690 2004-09-01  Vincent Celier  <celier@gnat.com>
11692         * bindgen.adb: (Set_EA_Last): New procedure
11693         (Gen_Exception_Table_Ada, Gen_Exception_Table_C): Use new procedure
11694         Set_EA_Last.
11695         (Gen_Adafinal_Ada): If no finalization, adafinal does nothing
11696         (Gen_Output_File_Ada): Always call Gen_Adafinal_Ada, so that SAL can be
11697         linked without errors.
11698         (Gen_Exception_Table_Ada): Correct bugs when generating code for arrays
11699         ST and EA.
11700         (Gen_Exception_Table_C): Correct same bugs
11702         * vms_data.ads: Add new qualifier /VERBOSE_ASM to GCC_Switches
11704         * g-os_lib.adb (Normalize_Pathname.Get_Directory): When Dir is empty,
11705         on Windows, make sure that the drive letter is in upper case.
11707         * g-os_lib.ads (Normalize_Pathname): Add a comment to indicate that on
11708         Windows, when the drive letter is added and Case_Sensitive is True, the
11709         drive letter is forced to upper case.
11711         * mlib-tgt-irix.adb (Build_Dynamic_Library): Transfer all -lxxx options
11712         to Options_2 for the call to MLib.Utl.Gcc.
11714         * bld.adb (Put_Include_Project): Use '/', not '\' on Windows as
11715         directory separator when defining BASE_DIR.
11717 2004-09-01  Pascal Obry  <obry@gnat.com>
11719         * gprcmd.adb (Extend): Do not output trailing directory separator. This
11720         is not needed and it confuses Windows GNU/make which does not report
11721         directory terminated by a slash as a directory.
11722         (gprcmd): Idem for "pwd" internal command.
11724         * Makefile.generic: Use __GPRCOLON__ instead of pipe character in
11725         target names rewrite to fix regressions with recent version of
11726         GNU/make. Starting with GNU/make 3.80 the pipe character was not
11727         handled properly anymore.
11729 2004-09-01  Andreas Schwab  <schwab@suse.de>
11731         * Make-lang.in (EXTRA_GNATBIND_OBJS): Revert last change.
11732         * raise.c [!IN_RTS]: Undef abort.
11734 2004-08-27  Nathan Sidwell  <nathan@codesourcery.com>
11736         * utils2.c (build_allocator): Use ssize_int.
11738         * utils.c (gnat_init_decl_processing): Ada has a signed sizetype.
11740 2004-08-27  Andreas Schwab  <schwab@suse.de>
11742         * Make-lang.in (EXTRA_GNATBIND_OBJS): Add errors.o.
11744 2004-08-25  Nathan Sidwell  <nathan@codesourcery.com>
11745             Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11747         * ada-tree.h (TYPE_RM_SIZE_INT): Use TYPE_LANG_SLOT_1.
11749 2004-08-25  Nathan Sidwell  <nathan@codesourcery.com>
11751         * cuintp.c (UI_To_gnu): Adjust build_int_cst calls.
11752         * trans.c (Exception_Handler_to_gnu_sjlj, gnat_to_gnu): Likewise.
11753         * utils.c (init_gigi_decls): Likewise.
11754         * utils2.c (build_call_raise, build_allocator): Likewise.
11756 2004-08-24  Nathan Sidwell  <nathan@codesourcery.com>
11758         * utils.c (gnat_init_decl_processing): Adjust
11759         build_common_tree_nodes call.
11761 2004-08-20  Nathan Sidwell  <nathan@codesourcery.com>
11763         * utils2.c (build_allocator): Use build_int_cst for negative
11764         size types.
11766 2004-08-18  Richard Henderson  <rth@redhat.com>
11768         * misc.c (LANG_HOOKS_HONOR_READONLY): Remove.
11770 2004-08-16  Nathan Sidwell  <nathan@codesourcery.com>
11772         * cuintp.c (UI_To_gnu): Be more conservative with build_int_cst
11773         call.s
11774         * trans.c (Exception_Handler_to_gnu_sjlj): Likewise.
11775         (gnat_to_gnu): Likewise.
11777 2004-08-16  Pascal Obry  <obry@gnat.com>
11779         * adaint.c (__gnat_prj_add_obj_files): Set to 0 only on Win32 for GCC
11780         backend prior to GCC 3.4. With GCC 3.4 we are using the GCC's shared
11781         option and not mdll anymore. Update comment.
11783 2004-08-16  Pascal Obry  <obry@gnat.com>
11785         * bld.adb (Put_Include_Project): Properly handle directory separators
11786         on Windows.
11788 2004-08-16  Ed Schonberg  <schonberg@gnat.com>
11790         * sem_ch4.adb (Try_Object_Operation): Restructure code. Optimize by
11791         decreasing the number of allocated junk nodes while searching for the
11792         appropriate subprogram.
11794 2004-08-15  Nathan Sidwell  <nathan@codesourcery.com>
11796         * cuintp.c (UI_To_gnu): Use build_int_cst..
11797         * trans.c (Exception_Handler_to_gnu_sjlj, gnat_to_gnu): Likewise.
11798         * utils.c (init_gigi_decls): Likewise.
11799         * utils2.c (build_call_raise): Likewise.
11801 2004-08-13  Olivier Hainque  <hainque@act-europe.fr>
11803         * decl.c (gnat_to_gnu_entity) <E_Variable>: When building an allocator
11804         for a global aliased object with a variable size and an unconstrained
11805         nominal subtype, pretend there is no initializer if the one we have is
11806         incomplete, and avoid referencing an inexistant component in there. The
11807         part we have will be rebuilt anyway and the reference may confuse
11808         further operations.
11810 2004-08-13  Thomas Quinot  <quinot@act-europe.fr>
11812         * einfo.ads: Minor reformatting
11814         * lib-writ.adb (Output_Main_Program_Line): Do not set parameter
11815         restrictions in the ALI if we only want to warn about violations.
11817 2004-08-13  Vincent Celier  <celier@gnat.com>
11819         * ali.adb (Scan_ALI): Initialize component Body_Needed_For_SAL to False
11820         when creating a new Unit_Record in table Units.
11822         * gnatls.adb (Output_Unit): In verbose mode, output the restrictions
11823         that are violated, if any.
11825         * prj-nmsc.adb (Ada_Check.Get_Path_Names_And_Record_Sources): Do not
11826         add directory separator if path already ends with a directory separator.
11828 2004-08-13  Ed Schonberg  <schonberg@gnat.com>
11830         * rtsfind.adb (Entity_Not_Defined): If the error ocurrs in a predefined
11831         unit, this is an attempt to inline a construct that is not available in
11832         the current restricted mode, so abort rather than trying to continue.
11834         * sem_ch3.adb (Build_Underlying_Full_View): If the new type has
11835         discriminants that rename those of the parent, recover names of
11836         original discriminants for the constraint on the full view of the
11837         parent.
11838         (Complete_Private_Subtype): Do not create a subtype declaration if the
11839         subtype is an itype.
11841         * gnat_rm.texi: Added section on implementation of discriminated
11842         records with default values for discriminants.
11844 2004-08-13  Ed Schonberg  <schonberg@gnat.com>
11846         PR ada/15601
11847         * sem_res.adb (Make_Call_Into_Operator): Handle properly the case where
11848         the second operand is overloaded.
11850 2004-08-10  Richard Henderson  <rth@redhat.com>
11852         * utils.c (gnat_install_builtins): Remove __builtin_stack_alloc,
11853         add __builtin_alloca.
11855 2004-08-10  Richard Henderson  <rth@redhat.com>
11857         * config-lang.in (boot_language): Yes.
11859 2004-08-09  Thomas Quinot  <quinot@act-europe.fr>
11861         * g-socket.adb (Abort_Selector): Initialize Buf to prevent valgrind
11862         from complaining on potential uninitialized reference.
11863         Change calls to GNAT.Sockets.Thin.Is_Socket_In_Set to account for
11864         new specification and test explicitly for non-zero return value.
11866         * g-socthi.ads (Is_Socket_In_Set): Declare imported function as
11867         returning C.int, to avoid using a derived boolean type.
11869         * exp_ch5.adb (Make_Tag_Ctrl_Assignments): Use
11870         Duplicate_Subexpr_No_Checks in preference to direct use of
11871         Remove_Side_Effects and New_Copy_Tree.
11872         Clear Comes_From_Source on prefix of 'Size attribute reference.
11874         * g-socthi.adb, g-socthi-vms.adb, g-socthi-mingw.adb,
11875         g-socthi-vxworks.adb: Change calls to
11876         GNAT.Sockets.Thin.Is_Socket_In_Set to account for new specification
11877         and test explicitly for non-zero return value.
11879         * g-socthi-vms.ads, g-socthi-mingw.ads, g-socthi-vxworks.ads:
11880         (Is_Socket_In_Set): Declare imported function as returning C.int, to
11881         avoid using a derived boolean type.
11883 2004-08-09  Albert Lee  <lee@gnat.com>
11885         * system-irix-n32.ads: Refine tasking priority constants for IRIX.
11887 2004-08-09  Pascal Obry  <obry@gnat.com>
11889         * gnat_ugn.texi: Document new way to build DLLs on Windows using
11890         GCC's -shared option.
11892         * mlib-tgt-mingw.adb (Build_Dynamic_Library): Pass GCC's options into
11893         Options_2 parameter (options put after object files).
11895 2004-08-09  Olivier Hainque  <hainque@act-europe.fr>
11897         * decl.c (gnat_to_gnu_entity) <E_Array_Subtype>: Adjust condition to
11898         ignore overflows on low and high bounds of an index to also account for
11899         differences in signedness between sizetype and gnu_index_subtype.
11900         These are as legitimate as the ones caused by a lower TYPE_PRECISION
11901         on sizetype.
11903 2004-08-09  Robert Dewar  <dewar@gnat.com>
11905         * s-solita.ads, s-solita.adb: Minor reformatting
11907         * gnat_rm.texi: Add documentation for pragma Profile (Restricted)
11908         Move pragma Restricted_Run_Time, No_Run_Time, Ravenscar to new
11909         obsolescent section
11910         Add note that No_Implicit_Conditionals does not suppress
11911         run time constraint checks.
11913         * vms_conv.ads: Minor reformatting
11915         * s-secsta.adb: Use SS_Ptr instead of Mark_Id as stack pointer (cleanup
11916         and necessary for following change).
11917         (Mark): Return new format Mark_Id containing sec stack address
11918         (Release): Use sec stack address from Mark_Id avoiding Self call
11920         * s-secsta.ads: Define SS_Ptr to be used instead of Mark_Id as stack
11921         pointer (cleanup and necessary for following change).
11922         Define Mark_Id as record containing address of secondary stack, that way
11923         Release does not need to find the stack again, decreasing the number of
11924         calls to Self and improving efficiency.
11926         * sem_util.ads: Add a ??? comment for Is_Local_Variable_Reference
11928         * sem_ch5.adb (Analyze_Case_Statement): Add circuitry to track value of
11929         case variable into the individual case branches when possible.
11931         * sem_ch11.adb: Minor reformatting
11933         * prj.ads: Correct spelling of suffixs
11935         * prj-nmsc.adb: Minor reformatting
11936         Correct spelling suffixs throughout (also in identifiers)
11938         * freeze.adb: Minor spelling correction
11940         * exp_ch2.adb: Cleanups to handling of Current_Value
11941         (no functional effect).
11943         * bld.adb: Correct spelling of suffixs
11945         * einfo.adb (Enclosing_Dynamic_Scope): Defend against junk argument
11947 2004-08-09  Ed Schonberg  <schonberg@gnat.com>
11949         PR ada/15408
11951         * sem_ch7.adb (Install_Private_Declarations): In the body of the
11952         package or of a child, private entities are both immediately_visible
11953         and not hidden.
11955 2004-08-09  Ed Schonberg  <schonberg@gnat.com>
11957         * sem_eval.adb (Eval_Integer_Literal): If the context is Any_Integer,
11958         there are no range checks on the value of the literal.
11960         * exp_ch7.adb (Insert_Actions_In_Scope_Around): If the node being
11961         wrapped is the triggering alternative of an asynchronous select, action
11962         statements mustbe inserted before the select itself.
11964         * sem_attr.adb (Analyze_Attribute, case 'Size): Handle properly the
11965         case where the prefix is a protected function call.
11966         (Resolve_Attribute, case 'Access): The attribute reference on a
11967         subprogram is legal in a generic body if the subprogram is declared
11968         elsewhere.
11970 2004-08-09  Vincent Celier  <celier@gnat.com>
11972         * makegpr.adb (Build_Library): Link with g++ if C++ is one of the
11973         languages, otherwise building the library may fail with unresolved
11974         symbols.
11975         (Compile_Sources): Do not build libraries if -c switch is used
11977         * gnatlink.adb (Process_Args): New switches -M and -Mmap
11978         (Write_Usage): If map file creation is supported, output new switches
11979         -M and -Mmap.
11980         (Gnatlink): When -M is specified, add the necessary switch(es) to the
11981         gcc call, when supported.
11983         * Makefile.in: Added indepsw.o to the object list for gnatlink
11984         Specified the AIX, GNU/Linux and Windows versions of indepsw.adb
11986         * indepsw-aix.adb, indepsw-linux.adb, indepsw-mingw.adb,
11987         indepsw.adb, indepsw.ads: New files.
11989 2004-08-09  Bernard Banner  <banner@gnat.com>
11991         * system-vxworks-x86.ads, s-vxwork-x86.ads: New files.
11993         * Makefile.in: add section for vxworks x86
11995 2004-08-09  Hristian Kirtchev  <kirtchev@gnat.com>
11997         * exp_ch3.adb (Build_Init_Statements): Add extra condition to deal with
11998         per-object constrained components where the discriminant is of an
11999         Access type.
12000         (Build_Record_Init_Proc): Add condition to prevent the inheritance of
12001         the parent initialization procedure for derived Unchecked_Unions.
12002         Instead, derived Unchecked_Unions build their own initialization
12003         procedure.
12004         (Build_Variant_Record_Equality): Implement Unchecked_Union equality.
12005         Check the body of the subprogram for details.
12006         (Freeze_Record_Type): Prevent the inheritance of discriminant checking
12007         functions for derived Unchecked_Union types by introducing a condition.
12008         Allow the creation of TSS equality functions for Unchecked_Unions.
12009         (Make_Eq_Case): Rename formal parameter Node to E in function signature.
12010         Add formal parameter Discr to function signature. Discr is used to
12011         control the generated case statement for Unchecked_Union types.
12012         (Make_Eq_If): Rename formal parameter Node to E in function signature.
12014         * exp_ch4.adb (Build_Equality_Call): Implement equality calls for
12015         Unchecked_Unions.
12016         Check the body of the subprogram for details.
12017         (Expand_Composite_Equality): Augment composite type equality to include
12018         correct handling of Unchecked_Union components.
12019         (Expand_N_In): Add condition to detect illegal membership tests when the
12020         subtype mark is a constrained Unchecked_Union and the expression lacks
12021         inferable discriminants, and build a Raise_Program_Error node.
12022         (Expand_N_Op_Eq): Add function Has_Unconstrained_UU_Component. Used
12023         to detect types that contain components of unconstrained Unchecked_Union
12024         subtype. Add condition to detect equality between types that have an
12025         unconstrained Unchecked_Union component, and build a Raise_Program_Error
12026         node. Add condition to detect equality between Unchecked_Union types
12027         that lack inferable discriminants, and build a Raise_Program_Error node.
12028         Otherwise build a TSS equality function call.
12029         (Expand_N_Type_Conversion): Add condition to detect illegal conversions
12030         from a derived Unchecked_Union to an unconstrained non-Unchecked_Union
12031         with the operand lacking inferable discriminants, and build a Raise_
12032         Program_Error node.
12033         (Expand_Record_Equality): Remove guard that prevents Unchecked_Union
12034         composite equality.
12035         (Has_Inferable_Discriminants): Implement new predicate for objects and
12036         expressions of Unchecked_Union type. Check the body of subprogram for
12037         details.
12038         (Has_Unconstrained_UU_Components): Add function
12039         Component_Is_Unconstrained_UU. It is used to detect whether a single
12040         component is of an unconstrained Unchecked_Union subtype. Add function
12041         Variant_Is_Unconstrained_UU. It is used to detect whether a single
12042         component inside a variant is of an unconstrained Unchecked_Union type.
12044         * exp_ch5.adb (Expand_Assign_Record): Add condition to copy the
12045         inferred discriminant values. Add condition to generate a case
12046         statement with an inferred discriminant as the switch.
12047         (Make_Component_List_Assign): Introduce a Boolean flag that determines
12048         the behaviour of the subprogram in the presence of an Unchecked_Union.
12049         Add condition to trigger the usage of the inferred discriminant value
12050         as the generated case statement switch.
12051         (Make_Field_Assign): Introduce a Boolean flag that determines the
12052         behaviour of the subprogram in the presence of an Unchecked_Union. Add
12053         condition to trigger the usage of the inferred discriminant value as
12054         the right-hand side of the generated assignment.
12056         * exp_ch6.adb (Expand_Call): Add condition to skip extra actual
12057         parameter generation when dealing with Unchecked_Unions.
12059         * checks.adb (Apply_Discriminant_Check): Do not apply discriminant
12060         checks for Unchecked_Unions.
12062         * einfo.ads: Update comment on usage of flag Has_Per_Object_Constraint
12064         * exp_attr.adb (Expand_N_Attribute_Reference): Produce
12065         Raise_Program_Error nodes for the execution of Read and Write
12066         attributes of Unchecked_Union types and the execution of Input and
12067         Output attributes of Unchecked_Union types that lack default
12068         discriminant values.
12070         * sem_prag.adb (Analyze_Pragma): Remodel the analysis of pragma
12071         Unchecked_Union. Add procedure Check_Component. It is used to inspect
12072         per-object constrained components of Unchecked_Unions for being
12073         Unchecked_Unions themselves. Add procedure Check_Variant. It is used to
12074         check individual components withing a variant.
12076         * sem_res.adb (Resolve_Comparison_Op): Remove guard that prevents
12077         comparison of Unchecked_Unions.
12078         (Resolve_Equality_OP): Remove guard that prevents equality between
12079         Unchecked_Unions.
12081         * sem_util.adb (Build_Component_Subtype): Add guard to prevent creation
12082         of component subtypes for Unchecked_Union components.
12083         (Get_Actual_Subtype): Add condition that returs the Unchecked_Union type
12084         since it is the actual subtype.
12086         * sem_ch12.adb (Instantiate_Type): Add condition to detect the correct
12087         pass of Unchecked_Union subtypes as generic actuals to formal types
12088         that lack known_discriminant_parts or that are derived Unchecked_Union
12089         types, and do nothing. In any other case, produce an error message.
12091         * sem_ch3.adb (Analyze_Component_Declaration): Add function
12092         Contains_POC. It determines whether a constraint uses the discriminant
12093         of an enclosing record type.
12094         Add condition to detect per-object constrained component and set the
12095         appropriate flag.
12096         (Derived_Type_Declaration): Remove guard that prevents derivation from
12097         Unchecked_Union types.
12098         (Process_Subtype): Remove quard that prevents the creation of Unchecked_
12099         Union subtypes.
12101         * sem_ch4.adb (Analyze_Selected_Component): Correct the detection of
12102         references to Unchecked_Union discriminants.
12104         * sem_ch6.adb (Create_Extra_Formals): Add condition to skip extra
12105         formal generation when dealing with Unchecked_Unions.
12106         (Set_Actual_Subtypes): Add condition to prevent generation of actual
12107         subtypes for Unchecked_Unions.
12109         * sem_ch7.adb (Analyze_Package_Specification): Add procedure
12110         Inspect_Unchecked_Union_Completion. It is used to detect incorrect
12111         completions of discriminated partial views by Unchecked_Unions and
12112         produce an error message.
12114 2004-08-09  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12116         * trans.c (struct stmt_group): New field, GLOBAL.
12117         (global_stmt_group, gnu_elab_proc_decl, build_unit_elab): Deleted.
12118         (struct elab_info): New struct.
12119         (elab_info_list, gnu_elab_proc_stack): New variables.
12120         (Compilation_Unit_to_gnu): New procedure.
12121         (gigi): Call it and also handle elaboration procs we've saved.
12122         (gnat_init_stmt_group): Don't set global_stmt_group; instead initialize
12123         global field from parent.
12124         (gnat_to_gnu): Get decl from gnu_elab_proc_stack.
12125         (gnat_to_gnu, case N_Compilation_Unit): Call Compilation_Unit_to_gnu.
12126         (start_stmt_group): Initialize global field from parent.
12127         (add_decl_expr): Set to global for current statement group.
12128         (gnat_gimplify_expr, case NULL_EXPR): Add operand 0 to pre list, not
12129         post.
12131         * utils.c (global_bindings_p): True when no current_function_decl; no
12132         longer check current_binding_level.
12134 2004-08-09  Ben Brosgol  <brosgol@gnat.com>
12136         * xgnatugn.adb: Added logic to deal with @ifset/@ifclear for edition
12137         choice.
12139         * gnat_rm.texi, gnat_ugn.texi: Added edition conditionalization logic.
12141 2004-08-06  Andreas Schwab  <schwab@suse.de>
12143         * utils.c (gnat_define_builtin): Remove second parameter of
12144         make_decl_rtl.
12145         (begin_subprog_body): Likewise.
12147 2004-07-26  Arnaud Charlet  <charlet@act-europe.fr>
12149         * sem_util.adb (Requires_Transient_Scope): Temporarily disable
12150         optimization, not supported by the tree-ssa back-end.
12152 2004-07-26  Olivier Hainque  <hainque@act-europe.fr>
12154         * s-mastop-irix.adb: Update comments.
12156         * a-except.adb (Exception_Information): Raise Constraint_Error if
12157         exception Id is Null_Id.
12158         This is required behavior, which is more reliably and clearly checked
12159         at the top level interface level.
12161 2004-07-26  Javier Miranda  <miranda@gnat.com>
12163         * exp_aggr.adb (Build_Array_Aggr_Code): Do not build the initialization
12164         call if a component has no default_expression and the box is used.
12166         * sem_aggr.adb (Resolve_Array_Aggregate): If a component has no
12167         default_expression and you use box, it behaves as if you had declared a
12168         stand-alone object.
12169         (Resolve_Record_Aggregate): If a component has no default_expression and
12170         you use box, it behaves as if you had declared a stand-alone object.
12172         * sem_ch10.adb (Install_Siblings): Do not make visible the private
12173         entities of private-with siblings.
12175 2004-07-26  Ed Schonberg  <schonberg@gnat.com>
12177         * sem_ch3.adb (Build_Underlying_Full_View): If this is the full view
12178         for a component of an itype, set the parent pointer for analysis,
12179         there is no list in which to insert it.
12181         * sem_res.adb (Resolve): Call Rewrite_Renamed_Operator only for
12182         bona-fide renamings, not for inherited operations.
12184         * exp_ch4.adb (Expand_Allocator_Expression): If the allocator is an
12185         actual for a formal that is an access parameter, create local
12186         finalization list even if the expression is not an aggregate.
12188 2004-07-26  Ed Schonberg  <schonberg@gnat.com>
12190         PR ada/16213
12191         * sem_ch8.adb (Attribute_Renaming, Check_Library_Level_Renaming):
12192         Diagnose properly illegal subprogram renamings that are library units.
12194 2004-07-26  Ed Schonberg  <schonberg@gnat.com>
12196         PR ada/15588
12197         * sem_util.adb (Is_OK_Variable_For_Out_Formal): If actual is a type
12198         conversion rewritten as an unchecked conversion, check that original
12199         expression is a variable.
12201         * exp_ch4.adb (Expand_N_Type_Conversion): If rewriting as an
12202         unchecked_conversion, create new node rather than rewriting in place,
12203         to preserve original construct.
12205 2004-07-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12207         * gigi.h (gnat_expand_body): Deleted.
12209         * Make-lang.in: (trans.o): Depends on function.h.
12211         * misc.c: (gnat_expand_body): Moved to here.
12213         * trans.c (gnat_expand_body_1): Deleted.
12214         (gnat_expand_body): Moved from here.
12215         (gnat_to_gnu): N_Implicit_Label_Declaration forces being in elab proc.
12216         (add_stmt): Check for marked visited with global_bindings_p.
12217         (gnat_gimplify_expr, case COMPONENT_REF): New case.
12218         (gnat_gimplify_expr, case NULL_EXPR): Set TREE_NO_WARNING for temp.
12220         * utils2.c (build_binary_op, case MODIFY_EXPR): Put LHS in a
12221         VIEW_CONVERT_EXPR if not operation type.
12223         * utils.c (update_pointer_to): Set DECL_ORIGINAL_FIELD for
12224         fat pointer.
12226         * decl.c, cuintp.c, gigi.h, misc.c, trans.c, utils.c, utils2.c: Minor
12227         changes: reformatting of negation operators, removing unneeded
12228         inequality comparison with zero, converting equality comparisons with
12229         zero to negations, changing int/0/1 to bool/false/true, replace calls
12230         to gigi_abort with abort, and various other similar changes.
12232 2004-07-26  Vincent Celier  <celier@gnat.com>
12234         * gnatcmd.adb (GNATCmd): Add processing for new built-in command
12235         "setup".
12237         * make.adb (Gnatmake): Fail when a library is not present and there is
12238         no object directory.
12240         * mlib-prj.adb (Check_Library): No need to check if the library needs
12241         to be rebuilt if there is no object directory, hence no object files
12242         to build the library.
12244         * opt.ads (Setup_Projects): New Boolean flag.
12246         * prj-nmsc.adb (Locate_Directory): New parameter Project, Kind and
12247         Location.
12248         Create directory when Kind /= "" and in "gnat setup". Report error if
12249         directory cannot be created.
12250         (Ada_Check): Create library interface copy dir if it does not exist
12251         and we are in "gnat setup".
12252         (Find_Sources): No error if in "gnat setup" and no Ada sources were
12253         found.
12254         (Language_Independent_Check): Create object directory, exec directory
12255         and/or library directory if they do not exist and we are in
12256         "gnat setup".
12258         * vms_conv.ads: (Command_Type): New command Setup.
12260         * vms_conv.adb (Initialize): Add Setup component of Cammand_List.
12262         * vms_data.ads: Add qualifiers/switches for new built-in command
12263         "setup".
12265 2004-07-25  Richard Henderson  <rth@redhat.com>
12267         * utils.c (create_subprog_decl): Set DECL_ARTIFICIAL and
12268         DECL_IGNORED_P on RESULT_DECL.
12270 2004-07-20  Olivier Hainque  <hainque@act-europe.fr>
12272         * a-elchha.adb (Last_Chance_Handler): Remove the bogus buffer dynamic
12273         allocation and potentially overflowing update with
12274         Tailored_Exception_Information. Use the sec-stack free procedural
12275         interface to output Exception_Information instead.
12277         * a-except.adb (To_Stderr): New subprogram for character, and string
12278         version moved from a-exextr to be visible from other separate units.
12279         (Tailored_Exception_Information): Remove the procedural version,
12280         previously used by the default Last_Chance_Handler and not any more.
12281         Adjust various comments.
12283         * a-exexda.adb: Generalize the exception information procedural
12284         interface, to minimize the use of secondary stack and the need for
12285         local buffers when the info is to be output to stderr:
12286         (Address_Image): Removed.
12287         (Append_Info_Character): New subprogram, checking for overflows and
12288         outputing to stderr if buffer to fill is of length 0.
12289         (Append_Info_String): Output to stderr if buffer to fill is of length 0.
12290         (Append_Info_Address, Append_Info_Exception_Name,
12291         Append_Info_Exception_Message, Append_Info_Basic_Exception_Information,
12292         Append_Info_Basic_Exception_Traceback,
12293         Append_Info_Exception_Information): New subprograms.
12294         (Append_Info_Nat, Append_Info_NL): Use Append_Info_Character.
12295         (Basic_Exception_Info_Maxlength, Basic_Exception_Tback_Maxlength,
12296         Exception_Info_Maxlength, Exception_Name_Length,
12297         Exception_Message_Length): New subprograms.
12298         (Exception_Information): Use Append_Info_Exception_Information.
12299         (Tailored_Exception_Information): Use
12300         Append_Info_Basic_Exception_Information.
12301         Export services for the default Last_Chance_Handler.
12303         * a-exextr.adb (To_Stderr): Remove. Now in a-except to be usable by
12304         other separate units.
12306 2004-07-20  Vincent Celier  <celier@gnat.com>
12308         * clean.adb, mlib-utl.adb, osint.adb, makegpr.adb: Minor reformatting.
12310 2004-07-20  Ed Schonberg  <schonberg@gnat.com>
12312         * freeze.adb (Freeze_Entity): If entity is a discriminated record type,
12313         emit itype references for the designated types of component types that
12314         are declared outside of the full record declaration, and that may
12315         denote a partial view of that record type.
12317 2004-07-20  Ed Schonberg  <schonberg@gnat.com>
12319         PR ada/15607
12320         * sem_ch3.adb (Build_Discriminated_Subtype): Do not attach a subtype
12321         which is the designated type in an access component declaration, to the
12322         list of incomplete dependents of the parent type, to avoid elaboration
12323         issues with out-of-scope subtypes.
12324         (Complete_Private_Subtype): Recompute Has_Unknown_Discriminants from the
12325         full view of the parent.
12327 2004-07-20  Ed Schonberg  <schonberg@gnat.com>
12329         PR ada/15610
12330         * sem_ch8.adb (Find_Expanded_Name): If name is overloaded, reject
12331         entities that are hidden, such as references to generic actuals
12332         outside an instance.
12334 2004-07-20  Javier Miranda  <miranda@gnat.com>
12336         * sem_ch4.adb (Try_Object_Operation): New subprogram that gives
12337         support to the new notation.
12338         (Analyze_Selected_Component): Add call to Try_Object_Operation.
12340 2004-07-20  Jose Ruiz  <ruiz@act-europe.fr>
12342         * s-taprob.adb: Adding the elaboration code required for initializing
12343         the tasking soft links that are common to the full and the restricted
12344         run times.
12346         * s-tarest.adb (Init_RTS): Tasking soft links that are shared with the
12347         restricted run time has been moved to the package
12348         System.Soft_Links.Tasking.
12350         * s-tasini.adb (Init_RTS): Tasking soft links that are shared with the
12351         restricted run time has been moved to the package
12352         System.Soft_Links.Tasking.
12354         * Makefile.rtl: Add entry for s-solita.o in run-time library list.
12356         * s-solita.ads, s-solita.adb: New files.
12358 2004-07-20  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12360         * trans.c (Identifier_to_gnu, Pragma_to_gnu, Attribute_to_gnu,
12361         Case_Statement_to_gnu): Split off from gnat_to_gnu.
12362         (Loop_Statement_to_gnu, Subprogram_Body_to_gnu, call_to_gnu,
12363         Handled_Sequence_Of_Statements_to_gnu, Exception_Handler_to_gnu_sjlj,
12364         Exception_Handler_to_gnu_zcx): Likewise.
12366 2004-07-17  Joseph S. Myers  <jsm@polyomino.org.uk>
12368         * gigi.h (builtin_function): Declare.
12370 2004-07-15  Robert Dewar  <dewar@gnat.com>
12372         * makegpr.adb, s-secsta.ads, sem_ch3.adb, sem_case.adb: Minor
12373         reformatting
12375         * gnat_ugn.texi: Add instantiation of direct_io or sequential_io with
12376         access values as an example of a warning.
12378         * gnat_rm.texi: Document new attribute Has_Access_Values
12380         * gnat-style.texi: Document that box comments belong on nested
12381         subprograms
12383         * sem_util.ads (Has_Access_Values): Improved documentation
12385         * s-finimp.ads, s-finimp.adb: Fix spelling error in comment
12387         * sem_prag.adb (Check_Duplicated_Export_Name): New procedure
12388         (Process_Interface_Name): Call to this new procedure
12389         (Set_Extended_Import_Export_External_Name): Call to this new procedure
12391         * s-mastop-x86.adb, 9drpc.adb: Fix spelling error in comment
12393         * a-direio.ads, a-sequio.ads: Warn if Element_Type has access values
12395         * einfo.ads: Minor comment typo fixed
12397 2004-07-15  Jose Ruiz  <ruiz@act-europe.fr>
12399         * snames.adb: Add _atcb.
12401         * snames.ads: Add Name_uATCB.
12403         * s-tarest.adb (Create_Restricted_Task): ATCBs are always preallocated
12404         (in the expanded code) when using the restricted run time.
12406         * s-tarest.ads (Create_Restricted_Task): Created_Task transformed into
12407         a in parameter in order to allow ATCBs to be preallocated (in the
12408         expanded code).
12410         * s-taskin.adb (Initialize_ATCB): T converted into a in parameter in
12411         order to allow ATCBs to be preallocated. In case of error, the ATCB is
12412         deallocated in System.Tasking.Stages.
12414         * s-taskin.ads (Initialize_ATCB): T converted into a in parameter in
12415         order to allow ATCBs to be preallocated.
12417         * s-tassta.adb (Create_Task): In case of error the ATCB is deallocated
12418         here. It was previously done in Initialize_ATCB.
12420         * rtsfind.ads: Make the Ada_Task_Control_Block visible.
12422         * exp_ch9.adb: Preallocate the Ada_Task_Control_Block when using the
12423         Restricted run time.
12425         * exp_ch3.adb: When using the Restricted run time, pass the
12426         preallocated Ada_Task_Control_Block when creating a task.
12428 2004-07-15  Ed Schonberg  <schonberg@gnat.com>
12430         * sem_util.adb (Normalize_Actuals): If there are no actuals on a
12431         function call that is itself an actual in an enclosing call, diagnose
12432         problem here rather than assuming that resolution will catch it.
12434         * sem_ch7.adb (Analyze_Package_Specification): If the specification is
12435         the local copy of a generic unit for a formal package, and the generic
12436         is a child unit, install private part of ancestors before compiling
12437         private part of spec.
12439         * sem_cat.adb (Validate_Categorization_Dependency): Simplify code to
12440         use scope entities rather than tree structures, to handle properly
12441         parent units that are instances rewritten as bodies for inlining
12442         purposes.
12444         * sem_ch10.adb (Get_Parent_Entity, Implicit_With_On_Parent,
12445         Remove_Parents): Handle properly a parent unit that is an
12446         instantiation, when the unit has been rewritten as a body for inlining
12447         purposes.
12449         * par.adb (Goto_List): Global variable to collect goto statements in a
12450         given unit, for use in detecting natural loops.
12452         * par-ch5.adb (P_Goto_Statement): Add goto to global Goto_List, for
12453         use in detecting natural loops.
12455         * par-labl.adb (Find_Natural_Loops): Recognize loops create by
12456         backwards goto's, and rewrite as a infinite loop, to improve locality
12457         of temporaries.
12459         * exp_util.adb (Force_Evaluation): Recognize a left-hand side
12460         subcomponent that includes an indexed reference, to prevent the
12461         generation of copies that would miscompile the desired assignment
12462         statement.
12463         (Build_Task_Image_Decls): Add a numeric suffix to
12464         generated name for string variable, to avoid spurious conflicts with
12465         the name of the type of a single protected object.
12467         * exp_ch4.adb (Expand_Array_Equality): If indices are distinct, use a
12468         loop with an explicit exit statement, to avoid generating an
12469         out-of-range value with 'Succ leading to spurious constraint_errors
12470         when compiling with -gnatVo.
12472 2004-07-15  Thomas Quinot  <quinot@act-europe.fr>
12474         * sem_ch4.adb (Analyze_Slice): Always call Analyze on the prefix: it
12475         might not be analyzed yet, even if its Etype is already set (case of an
12476         unchecked conversion built using Unchecked_Convert_To, for example).
12477         If the prefix has already been analyzed, this will be a nop anyway.
12479         * exp_ch5.adb (Make_Tag_Ctrl_Assignment): For an assignment of a
12480         controller type, or an assignment of a record type with controlled
12481         components, copy only user data, and leave the finalization chain
12482         pointers untouched.
12484 2004-07-15  Vincent Celier  <celier@gnat.com>
12486         * make.adb (Collect_Arguments): Improve error message when attempting
12487         to compile a source not part of any project, when -x is not used.
12489         * prj.ads: (Defined_Variable_Kind): New subtype
12491         * prj-attr.adb (Register_New_Package): Two new procedures to register
12492         a package with or without its attributes.
12493         (Register_New_Attribute): Mew procedure to register a new attribute in a
12494         package.
12495         New attribute oriented subprograms: Attribute_Node_Id_Of,
12496         Attribute_Kind_Of, Set_Attribute_Kind_Of, Attribute_Name_Of,
12497         Variable_Kind_Of, Set_Variable_Kind_Of, Optional_Index_Of,
12498         Next_Attribute.
12499         New package oriented subprograms: Package_Node_Id_Of,
12500         Add_Unknown_Package, First_Attribute_Of, Add_Attribute.
12502         * prj-attr.ads (Attribute_Node_Id): Now a private, self initialized
12503         type.
12504         (Package_Node_Id): Now a private, self initialized type
12505         (Register_New_Package): New procedure to register a package with its
12506         attributes.
12507         New attribute oriented subprograms: Attribute_Node_Id_Of,
12508         Attribute_Kind_Of, Set_Attribute_Kind_Of, Attribute_Name_Of,
12509         Variable_Kind_Of, Set_Variable_Kind_Of, Optional_Index_Of,
12510         Next_Attribute.
12511         New package oriented subprograms: Package_Node_Id_Of,
12512         Add_Unknown_Package, First_Attribute_Of, Add_Attribute.
12514         * prj-dect.adb (Parse_Attribute_Declaration,
12515         Parse_Package_Declaration): Adapt to new spec of Prj.Attr.
12517         * prj-makr.adb (Make): Parse existing project file before creating
12518         other files. Fail if there was an error during parsing.
12520         * prj-proc.adb (Add_Attributes, Process_Declarative_Items): Adapt to
12521         new spec of Prj.Attr.
12523         * prj-strt.adb (Attribute_Reference, Parse_Variable_Reference): Adapt
12524         to new spec of Prj.Attr.
12526 2004-07-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12528         * utils2.c: Fix typo in comment.
12530 2004-07-14  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12532         * trans.c (add_decl_expr): Clear TREE_READONLY if clear DECL_INITIAL.
12533         * utils.c (unchecked_convert): Don't do two VIEW_CONVERT_EXPRs.
12535 2004-07-14  Andreas Schwab  <schwab@suse.de>
12537         * trans.c (gnat_init_stmt_group): Remove duplicate definition.
12539 2004-07-13  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12541         * decl.c: (gnat_to_gnu_entity, object case): Convert initializer to
12542         object type.
12543         (gnat_to_gnu_entity, case E_Record_Subtype): Properly set
12544         TYPE_STUB_DECL.
12546         * misc.c (gnat_types_compatible_p): New function.
12547         (LANG_HOOKS_TYPES_COMPATIBLE_P): New hook, to use it.
12548         (LANG_HOOKS_TYPE_MAX_SIZE, gnat_type_max_size): New.
12550         * trans.c (gigi): Move processing of main N_Compilation_Unit here.
12551         (gnat_to_gnu, case N_Compilation_Unit): Just handle nested case here.
12552         (add_stmt): Force walking of sizes and DECL_INITIAL for DECL_EXPR.
12553         (mark_visited): Don't mark dummy type.
12554         (tree_transform <N_Procedure_Call_Statement>): Unless this is an In
12555         parameter, we must remove any LJM building from GNU_NAME.
12556         (gnat_to_gnu, case N_String_Literal): Fill in indices in CONSTRUCTOR.
12557         (pos_to_constructor): Use int_const_binop.
12558         (gnat_to_gnu, case N_Identifier): Don't reference DECL_INITIAL of
12559         PARM_DECL.
12561         * utils.c (gnat_init_decl_processing): Don't make two "void" decls.
12562         (gnat_pushlevel): Set TREE_USE on BLOCK node.
12563         (gnat_install_builtins): Add __builtin_memset.
12565 2004-07-13  Olivier Hainque  <hainque@act-europe.fr>
12567         * decl.c (gnat_to_gnu_entity <E_Variable>): If we are making a pointer
12568         for a renaming, stabilize the initialization expression if we are at a
12569         local level.  At the local level, uses of the renaming may be performed
12570         by a direct dereference of the initializing expression, and we don't
12571         want possible variables there to be evaluated for every use.
12573         * trans.c (gnat_stabilize_reference, gnat_stabilize_reference_1):
12574         Propagate TREE_SIDE_EFFECTS and TREE_THIS_VOLATILE to avoid loosing
12575         them on the way.  Account for the fact that we may introduce side
12576         effects in the process.
12578 2004-07-13  Richard Henderson  <rth@redhat.com>
12580         * misc.c (default_pass_by_ref): Use pass_by_reference.
12582 2004-07-11  Joseph S. Myers  <jsm@polyomino.org.uk>
12584         * misc.c (LANG_HOOKS_CLEAR_BINDING_STACK, LANG_HOOKS_PUSHLEVEL,
12585         LANG_HOOKS_POPLEVEL, LANG_HOOKS_SET_BLOCK): Remove.
12587 2004-07-08  Richard Henderson  <rth@redhat.com>
12589         * trans.c (gnat_to_gnu <N_Handled_Sequence_Of_Statements>): Update
12590         commentary.
12592 2004-07-06  Vincent Celier  <celier@gnat.com>
12594         * vms_conv.ads: Minor reformatting.
12595         Alphabetical order for enumerated values of type Command_Type, to have
12596         the command in alphabetical order for the usage.
12598         * vms_conv.adb (Process_Argument): Set Keep_Temporary_Files to True for
12599         the special qualifier /KEEP_TEMPORARY_FILES (minimum 6 characters).
12601         * gnat_ugn.texi: Document new switch -dn for the GNAT driver.
12603         * makegpr.adb (Global_Archive_Exists): New global Boolean variable
12604         (Add_Archive_Path): Only add the global archive if there is one.
12605         (Build_Global_Archive): Set Global_Archive_Exists depending if there is
12606         or not any object file to put in the global archive, and don't build
12607         a global archive if there is none.
12608         (X_Switches): New table
12609         (Compile_Link_With_Gnatmake): Pass to gnatmake the -X switches stored
12610         in the X_Switches table, if any.
12611         (Initialize): Make sure the X_Switches table is empty
12612         (Scan_Arg): Record -X switches in table X_Switches
12614         * opt.ads (Keep_Temporary_Files): New Boolean flag, defaulted to False.
12616         * make.adb: Minor comment fix
12618         * gnatname.adb (Gnatname): When not on VMS, and gnatname has been
12619         invoked with directory information, add the directory in front of the
12620         path.
12622         * gnatchop.adb (Gnatchop): When not on VMS, and gnatchop has been
12623         invoked with directory information, add the directory in front of the
12624         path.
12626         * gnatcmd.adb (Delete_Temp_Config_Files): Only delete temporary files
12627         when Keep_Temporary_Files is False.
12628         (GNATCmd): When not on VMS, and the GNAT driver has been invoked with
12629         directory information, add the directory in front of the path.
12630         When not on VMS, handle new switch -dn before the command to set
12631         Keep_Temporary_Files to True.
12632         (Non_VMS_Usage): Use lower case for the non VMS usage: this is valid
12633         everywhere.
12635         * gnatlink.adb (Gnatlink): When not on VMS, and gnatlink has been
12636         invoked with directory information, add the directory in front of the
12637         path.
12639 2004-07-06  Thomas Quinot  <quinot@act-europe.fr>
12641         * snames.ads, snames.adb (Name_Stub): New name for the distributed
12642         systems annex.
12644         * rtsfind.ads: New RTE TC_Object, for DSA/PolyORB.
12645         New RTEs RAS_Proxy_Type and RAS_Proxy_Type_Access, for DSA.
12647         * g-socket.adb (To_Timeval): Fix incorrect conversion of
12648         Selector_Duration to Timeval for the case of 0.0.
12650         * exp_util.ads (Evolve_Or_Else): Fix overenthusiastic copy/paste of
12651         documentation from Evolve_And_Then.
12653 2004-07-06  Jose Ruiz  <ruiz@act-europe.fr>
12655         * s-taprop-tru64.adb, s-taprop-os2.adb,
12656         s-taprop-mingw.adb, s-taprop-posix.adb: Update comment.
12658 2004-07-06  Robert Dewar  <dewar@gnat.com>
12660         * s-osinte-hpux.ads, s-osinte-freebsd.ads,
12661         s-osinte-lynxos.ads, s-taprop-lynxos.adb, s-osinte-tru64.ads,
12662         s-osinte-aix.ads, s-osinte-irix.ads, s-taprop-irix.adb,
12663         s-interr-sigaction.adb, s-taprop-irix-athread.adb,
12664         s-osinte-hpux-dce.adb, s-taprop-hpux-dce.adb,
12665         s-taprop-linux.adb, s-taprop-dummy.adb, s-taprop-solaris.adb,
12666         s-interr-vms.adb, s-osinte-vms.ads, s-taprop-vms.adb,
12667         s-osinte-vxworks.ads, s-osprim-vxworks.adb, a-numaux-x86.adb,
12668         a-except.adb, a-exexpr.adb, a-intsig.adb, a-tags.adb,
12669         a-tags.ads, bindgen.ads, checks.adb, checks.adb,
12670         csets.ads, einfo.ads, einfo.ads, elists.adb, exp_ch4.adb,
12671         exp_ch7.adb, exp_dist.adb, exp_util.adb, freeze.adb,
12672         g-dynhta.adb, gnatmem.adb, g-regexp.adb, inline.adb,
12673         i-os2thr.ads, osint.adb, prj.adb, scng.adb, sem_cat.adb,
12674         sem_ch10.adb, sem_ch12.adb, sem_ch4.adb, sem_ch7.adb,
12675         sem_ch8.adb, sem_disp.adb, sem_prag.adb, sem_res.adb,
12676         sem_type.adb, sem_type.ads, sem_warn.adb, s-ficobl.ads,
12677         s-finimp.adb, s-htable.adb, sinfo.ads, sinput-l.ads,
12678         s-interr.adb, s-interr.ads, sprint.adb, s-tarest.adb,
12679         s-tasini.ads, s-taskin.ads, s-taskin.ads, uname.adb,
12680         vms_data.ads: Minor reformatting,
12681         Fix bad box comment format.
12683         * gnat_rm.texi: Fix minor grammatical error
12685         * sem_attr.adb, exp_attr.adb: New attribute Has_Access_Values
12687         * sem_util.ads, sem_util.adb (Requires_Transient_Scope): Allow many
12688         more cases of discriminated records to be recognized as not needing a
12689         secondary stack.
12690         (Has_Access_Values): New function.
12692         * snames.h, snames.adb, snames.ads: New attribute Has_Access_Values
12694         * cstand.adb, layout.ads, layout.adb, sem_ch13.ads: Change name
12695         Set_Prim_Alignment to Set_Elem_Alignment (more accurate correspondence
12696         with LRM terminology).
12697         Change terminology in comments primitive type => elementary type.
12699 2004-07-06  Ed Schonberg  <schonberg@gnat.com>
12701         PR ada/15602
12702         * sem_ch7.adb (Unit_Requires_Body): For a generic package, the formal
12703         parameters do not impose any requirements on the presence of a body.
12705 2004-07-06  Ed Schonberg  <schonberg@gnat.com>
12707         PR ada/15593
12708         * sem_ch12.adb (Analyze_Package_Instantiation): If the generic is not a
12709         compilation unit and is in an open scope at the point of instantiation,
12710         assume that a body may be present later.
12712 2004-07-06  Ed Schonberg  <schonberg@gnat.com>
12714         * sem_ch13.adb (Analyze_Attribute_Definition_Clause, case 'Size):
12715         Improve error message when specified size is not supported.
12717         * sem_ch6.adb (Maybe_Primitive_Operation): A library-level subprogram
12718         is never a primitive operation.
12720 2004-07-05  Andreas Schwab  <schwab@suse.de>
12722         * ada-tree.h (TYPE_LEFT_JUSTIFIED_MODULAR_P): Use
12723         RECORD_OR_UNION_CHECK.
12724         (TYPE_CONTAINS_TEMPLATE_P): Likewise.
12726 2004-07-04  Kelley Cook  <kcook@gcc.gnu.org>
12728         * Make-lang.in (doc/gnat_ugn_unw.texi): Eliminate explicit
12729         dependency on xgnatugn, instead build it via a submake.
12730         (ADA_INFOFILES): Add doc/gnat_ugn_unw.texi.
12732 2004-07-04  Richard Henderson  <rth@redhat.com>
12734         * utils2.c (gnat_mark_addressable): Don't put_var_into_stack.
12736 2004-07-01  Richard Henderson  <rth@redhat.com>
12738         * trans.c (gnat_stabilize_reference): Don't handle RTL_EXPR.
12739         * utils.c (max_size): Likewise.
12741 2004-06-28  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12743         * decl.c: Remove calls to add_decl_expr, pushdecl, rest_of_compilation,
12744         and rest_of_type_compilation; add arg to create_*_decl.
12745         (annotate_decl_with_node): Deleted.
12746         (gnat_to_gnu_entity, case E_Array_Type): Set location of fields.
12747         * gigi.h (get_decls, block_has_vars, pushdecl): Deleted.
12748         (get_current_block_context, gnat_pushdecl): New declarations.
12749         (gnat_init_stmt_group): Likewise.
12750         (create_var_decl, create_type_decl, create_subprog_decl): Add new arg.
12751         * misc.c (LANG_HOOKS_CLEAR_BINDING_STACK): Deleted.
12752         (LANG_HOOKS_GETDECLS, LANG_HOOKS_PUSHDECL): Deleted.
12753         (gnat_init): Call gnat_init_stmt_group.
12754         * trans.c (global_stmt_group, gnu_elab_proc_decl): New variables.
12755         (gnu_pending_elaboration_list): Deleted.
12756         (mark_visited, mark_unvisited, gnat_init_stmt_group): New functions.
12757         (gigi): Rearrange initialization calls and move some to last above.
12758         (gnat_to_gnu): If statement and not in procedure, go into elab proc.
12759         Delete calls to add_decl_expr; add arg to create_*_decl.
12760         (gnat_to_gnu, case N_Loop): Recalculate side effects on COND_EXPR.
12761         (gnat_to_gnu, case N_Subprogram_Body): Move some code to
12762         begin_subprog_body and call it.
12763         Don't push and pop ggc context.
12764         (gnat_to_gnu, case N_Compilation_Unit): Rework to support elab proc.
12765         (add_stmt): Remove handling of DECL_EXPR from here.
12766         If not in function, mark visited.
12767         (add_decl_expr): Put global at top level.
12768         Check for cases of DECL_INITIAL we have to handle here.
12769         (process_type): Add extra arg to create_type_decl.
12770         (build_unit_elab): Rework to just gimplify.
12771         * utils.c (pending_elaborations, elist_stack, getdecls): Deleted.
12772         (block_has_vars, mark_visited, add_pending_elaborations): Likewise.
12773         (get_pending_elaborations, pending_elaborations_p): Likewise.
12774         (push_pending_elaborations, pop_pending_elaborations): Likewise.
12775         (get_elaboration_location, insert_elaboration_list): Likewise.
12776         (gnat_binding_level): Renamed from ada_binding_level.
12777         (init_gnat_to_gnu): Don't clear pending_elaborations.
12778         (global_bindings_p): Treat as global if no current_binding_level.
12779         (set_current_block_context): New function.
12780         (gnat_pushdecl): Renamed from pushdecl; major rework.
12781         All callers changed.
12782         (create_type_decl, create_var_decl, create_subprog_decl): Add new arg.
12783         (finish_record_type): Call call pushdecl for stub decl.
12784         (function_nesting_depth): Deleted.
12785         (begin_subprog_body): Delete obsolete code.
12786         * utils2.c (build_call_alloc_dealloc): Add new arg to create_var_decl.
12788 2004-06-28  Robert Dewar  <dewar@gnat.com>
12790         * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
12791         mlib-tgt-irix.adb, mlib-tgt-hpux.adb, mlib-tgt-linux.adb,
12792         mlib-tgt-linux.adb, mlib-tgt-solaris.adb, mlib-tgt-solaris.adb,
12793         mlib-tgt-vms-alpha.adb, mlib-tgt-vms-alpha.adb, mlib-tgt-vms-ia64.adb,
12794         a-strmap.adb, a-strmap.ads, clean.adb: Minor reformatting
12796         * exp_util.adb (Is_Possibly_Unaligned_Slice): Completely rewritten, to
12797         deal with problem of inefficient slices on machines with strict
12798         alignment, when the slice is a component of a composite.
12800         * checks.adb (Apply_Array_Size_Check): Do not special case 64-bit
12801         machines, we need the check there as well.
12803 2004-06-28  Ed Schonberg  <schonberg@gnat.com>
12805         * exp_ch5.adb (Expand_Assign_Array): Use correct condition to
12806         determine safe copying direction for overlapping slice assignments
12807         when component is controlled.
12809         * sem_ch12.adb (Instantiate_Formal_Package): Implicit operations of a
12810         formal derived type in the actual for a formal package are visible in
12811         the enclosing instance.
12813 2004-06-28  Ed Schonberg  <schonberg@gnat.com>
12815         PR ada/15600
12816         * sem_util.adb (Trace_Components): Diagnose properly an illegal
12817         circularity involving a private type whose completion includes a
12818         self-referential component.
12819         (Enter_Name): Use Is_Inherited_Operation to distinguish a source
12820         renaming or an instantiation from an implicit derived operation.
12822 2004-06-28  Pascal Obry  <obry@gnat.com>
12824         * mlib-tgt-mingw.adb: (Library_Exists_For): Remove "lib" prefix from
12825         DLL.
12826         (Library_File_Name_For): Idem.
12828 2004-06-28  Matthew Gingell  <gingell@gnat.com>
12830         * g-traceb.ads: Add explanatory note on the format of addresses
12831         expected by addr2line.
12833 2004-06-28  Jerome Guitton  <guitton@act-europe.fr>
12835         * Makefile.in: Force debugging information on s-tasdeb.adb,
12836         a-except.adb and s-assert.adb needed by the debugger.
12838 2004-06-28  Vincent Celier  <celier@gnat.com>
12840         * make.adb (Collect_Arguments_And_Compile): Change Flag1 to
12841         Need_To_Build_Lib.
12842         (Gnatmake): Ditto.
12844         * mlib-prj.adb (Check_Library): Replace Flag1 with Need_To_Build_Lib
12846         * prj.adb: Minor reformatting
12847         (Project_Empty): Change Flag1 to Need_To_Build_Lib. Remove Flag2.
12849         * prj.ads: Comment updates
12850         Minor reformatting
12851         (Project_Data): Change Flag1 to Need_To_Build_Lib.
12852         Remove Flag2: not used.
12854         * prj-dect.adb (Parse_Declarative_Items): Accept "null" as a
12855         declaration.
12857         * gnat_ugn.texi: Put a "null;" declaration in one project file example
12859         * gnat_rm.texi: Document Empty declarations "null;".
12861         * makegpr.adb (Compile_Link_With_Gnatmake): Put the global archives in
12862         front of the linker options.
12863         (Link_Foreign): Put the global archives and the libraries in front of
12864         the linker options.
12866 2004-06-28  Javier Miranda  <miranda@gnat.com>
12868         * rtsfind.adb: (Get_Unit_Name): Fix typo in comment
12869         (RTU_Loaded): Code cleanup
12870         (Set_RTU_Loaded): New procedure to register as *loaded* explicitly
12871         withed predefined units.
12873         * rtsfind.ads (Set_RTU_Loaded): New procedure to register as *loaded*
12874         explicitly withed predefined units.
12875         Fix typo in comment
12877         * sem_ch10.adb (Analyze_Compilation_Unit): Register as *loaded*
12878         explicitly withed predefined units.
12880 2004-06-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12882         * ada-tree.def (DECL_STMT): Deleted.
12883         * ada-tree.h (IS_ADA_STMT): Now test against STMT_STMT.
12884         (DECL_STMT_VAR): Deleted.
12885         * decl.c: add_decl_stmt now add_decl_expr.
12886         * gigi.h: Likewise.
12887         * trans.c: Likewise.
12888         (gnat_gimplify_type_sizes, gnat_gimplify_one_sizepos): Deleted.
12889         (gnat_to_gnu, case N_Subprogram_Body): Set cfun->function_end_locus.
12890         (add_stmt): Only handle padded type here.
12891         (add_stmt_with_node): Allow gnat_node to not be present.
12892         (gnat_gimplify_stmt, case USE_STMT): Set *STMT_P to null.
12893         (gnat_gimplify_stmt, case DECL_STMT): Deleted.
12894         (gnat_stabilize_reference_1): If COMPONENT_REF of fat pointer,
12895         make a SAVE_EXPR for the entire fat pointer.
12896         * utils.c (pushdecl): Walk a DECL_EXPR in global case.
12897         (create_index_type): Make a DECL_EXPR.
12898         (end_subprog_body): Don't call allocate_struct_function here but
12899         do clear cfun.
12901 2004-06-25  Pascal Obry  <obry@gnat.com>
12903         * makegpr.adb (Build_Library): Remove parameter Lib_Address and
12904         Relocatable from Build_Dynamic_Library call.
12906         * gnat_ugn.texi: Change documentation about Library_Kind. Dynamic and
12907         Relocatable are now synonym.
12909         * Makefile.in: Use s-parame-mingw.adb on MingW platform.
12911         * mlib-prj.adb (Build_Library): Remove DLL_Address constant definition.
12912         Remove parameter Lib_Address and Relocatable from Build_Dynamic_Library
12913         call.
12915         * mlib-tgt.ads, mlib-tgt.adb (Build_Dynamic_Library): Remove parameter
12916         Lib_Address and Relocatable.
12917         (Default_DLL_Address): Removed.
12919         * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
12920         mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb,
12921         mlib-tgt-vms-alpha.adb, mlib-tgt-vms-ia64.adb, mlib-tgt-vxworks.adb:
12922         (Build_Dynamic_Library): Remove parameter Lib_Address and Relocatable.
12923         (Default_DLL_Address): Removed.
12925         * mlib-tgt-mingw.adb: Ditto.
12926         (Build_Dynamic_Library): Do not add "lib" prefix to the DLL name.
12928         * s-taprop-mingw.adb (Create_Task): Use Adjust_Storage_Size to compute
12929         the initial thread stack size.
12931         * a-strmap.ads: Move package L to private part as it is not used in
12932         the spec. Found while reading code.
12934 2004-06-25  Olivier Hainque  <hainque@act-europe.fr>
12936         * tracebak.c: Introduce support for a GCC infrastructure based
12937         implementation of __gnat_backtrace.
12939         * raise.c: Don't rely on a C mapping of the GNAT_GCC_Exception record
12940         any more. Use accessors instead. This eases maintenance and relaxes
12941         some alignment constraints.
12942         (_GNAT_Exception structure): Remove the Ada specific fields
12943         (EID_For, Adjust_N_Cleanups_For): New accessors, exported by
12944         a-exexpr.adb.
12945         (is_handled_by, __gnat_eh_personality): Replace component references to
12946         exception structure by use of the new accessors.
12948         * init.c (__gnat_initialize): Adjust comments to match the just
12949         reverted meaning of the -static link-time option.
12951         * adaint.c (convert_addresses): Arrange not to define a stub for
12952         mips-irix any more, as we now want to rely on a real version from a
12953         recent libaddr2line.
12955         * a-exexpr.adb: Provide new accessors to a GNAT_GCC occurrence, so that
12956         the personality routine can use them and not have to rely on a C
12957         counterpart of the record anymore. This simplifies maintenance and
12958         relaxes the constraint of having Standard'Maximum_Alignment match
12959         BIGGEST_ALIGNMENT.
12960         Update comments, and add a section on the common header alignment issue.
12962 2004-06-25  Geert Bosch  <bosch@gnat.com>
12964         * a-ngelfu.adb (Tanh): Use full 20 digit precision for constants in
12965         polynomial approximation. Fixes inconsistency with Cody/Waite algorithm.
12967 2004-06-25  Robert Dewar  <dewar@gnat.com>
12969         * gnat_rm.texi: Fix section on component clauses to indicate that the
12970         restriction on byte boundary placement still applies for bit packed
12971         arrays.
12972         Add comment on stack usage from Initialize_Scalars
12974         * gnat_ugn.texi: Add documentation for -gnatyLnnn
12976         * stylesw.ads, stylesw.adb: Implement new -gnatyLnnn option for
12977         limiting nesting level.
12979         * usage.adb: Add line for -gnatyLnnn switch
12981         * g-debpoo.ads, xtreeprs.adb, sinput.ads, sem_ch13.ads,
12982         sem_ch13.adb, exp_aggr.adb: Minor reformatting
12984         * sem_prag.adb (Process_Atomic_Shared_Volatile): Set Is_Atomic on base
12985         type as well as on the subtype. This corrects a problem in freeze in
12986         setting alignments of atomic types.
12988         * sem_eval.ads: Minor comment typo fixed
12990         * par-util.adb (Push_Scope_Stack): Check for violation of max nesting
12991         level.  Minor reformatting.
12993         * fname.adb (Is_Predefined_File_Name): Require a letter after the
12994         minus sign. This means that file names like a--b.adb will not be
12995         considered predefined.
12997         * freeze.adb: Propagate new flag Must_Be_On_Byte_Boundary to containing
12998         record Test new flag and give diagnostic for bad component clause.
12999         (Freeze_Entity): Set alignment of array from component alignment in
13000         cases where this is safe to do.
13002         * exp_pakd.adb: Set new flag Must_Be_On_Byte_Boundary for large packed
13003         arrays.
13005         * cstand.adb: (Create_Standard): Set alignment of String to 1
13007         * einfo.ads, einfo.adb: Introduce new flag Must_Be_On_Byte_Boundary
13009         * exp_ch4.adb (Expand_Array_Equality): Improve efficiency of generated
13010         code in the common constrained array cases.
13012         * a-storio.adb: Change implementation to avoid possible alignment
13013         problems on machines requiring strict alignment (data should be moved
13014         as type Buffer, not type Elmt).
13016         * checks.adb (Apply_Array_Size_Check): Improve these checks by
13017         killing the overflow checks which we really do not need (64-bits is
13018         enough).
13020 2004-06-25  Vincent Celier  <celier@gnat.com>
13022         * makegpr.adb (Is_Included_In_Global_Archive): New Boolean function
13023         (Add_Archives.Recursive_Add_Archives): Call Add_Archive_Path
13024         inconditionally for the main project.
13025         (Recursive_Add_Archives.Add_Archive_Path): New procedure
13026         (Link_Executables.Check_Time_Stamps): New procedure
13027         (Link_Executables.Link_Foreign): New procedure
13028         Changes made to reduce nesting level of this package
13029         (Check): New procedure
13030         (Add_Switches): When not in quiet output, check that a switch is not
13031         the concatenation of several valid switches. If it is, issue a warning.
13032         (Build_Global_Archive): If the global archive is rebuilt, linking need
13033         to be done.
13034         (Compile_Sources): Rebuilding a library archive does not imply
13035         rebuilding the global archive.
13036         (Build_Global_Archive): New procedure
13037         (Build_Library): New name for Build_Archive, now only for library
13038         project
13039         (Check_Archive_Builder): New procedure
13040         (Create_Global_Archive_Dependency_File): New procedure
13041         (Gprmake): Call Build_Global_Archive before linking
13042         * makegpr.adb: Use Other_Sources_Present instead of Sources_Present
13043         throughout.
13044         (Scan_Arg): Display the Copyright notice when -v is used
13046         * gnat_ugn.texi: Document new switch -files= (VMS qualifier /FILES=)
13047         for gnatls.
13049         * vms_data.ads: Add qualifier /MAX_NESTING=nnn (-gnatyLnnn) for GNAT
13050         COMPILE.
13051         Add new GNAT LIST qualifier /FILES=
13052         Added qualifier /DIRECTORY= to GNAT METRIC
13053         Added qualifier /FILES= to GNAT METRIC
13054         Added qualifier /FILES to GNAT PRETTY
13056         * switch.adb (Is_Front_End_Switch): Refine the test for --RTS or -fRTS,
13057         to take into account both versions of the switch.
13059         * switch-c.adb (Scan_Front_End_Switches): New switch -gnatez. Should
13060         always be the last switch to the gcc driver. Disable switch storing so
13061         that switches automatically added by the gcc driver are not put in the
13062         ALI file.
13064         * prj.adb (Project_Empty): Take into account changes in components of
13065         Project_Data.
13067         * prj.ads (Languages_Processed): New enumaration value All_Languages.
13069         * prj.ads (Project_Data): Remove component Lib_Elaboration: never
13070         used. Split Boolean component Ada_Sources_Present in two Boolean
13071         components Ada_Sources_Present and Other_Sources_Present.
13072         Minor reformatting
13074         * prj-env.adb (For_All_Source_Dirs.Add): Use Ada_Sources_Present
13075         instead of Sources_Present.
13076         (Set_Ada_Paths.Add.Recursive_Add): Ditto
13078         * prj-nmsc.adb: Minor reformatting
13079         (Check_Ada_Naming_Scheme): New name of procedure Check_Naming_Scheme
13080         (Check_Ada_Naming_Scheme_Validity): New name of previous procedure
13081         Check_Ada_Naming_Scheme.
13082         Change Sources_Present to Ada_Sources_Present or Other_Sources_Present
13083         throughout.
13085         * prj-part.adb (Post_Parse_Context_Clause): New Boolean parameter
13086         In_Limited.
13087         Make sure that all cycles where there is at least one "limited with"
13088         are detected.
13089         (Parse_Single_Project): New Boolean parameter In_Limited
13091         * prj-proc.adb (Recursive_Check): When Process_Languages is
13092         All_Languages, call first Prj.Nmsc.Ada_Check, then
13093         Prj.Nmsc.Other_Languages_Check.
13095         * prj-proc.adb (Process): Use Ada_Sources_Present or
13096         Other_Sources_Present (instead of Sources_Present) depending on
13097         Process_Languages.
13099         * lang-specs.h: Keep -g and -m switches in the same order, and as the
13100         last switches.
13102         * lib.adb (Switch_Storing_Enabled): New global Boolean flag
13103         (Disable_Switch_Storing): New procedure. Set Switch_Storing_Enabled to
13104         False.
13105         (Store_Compilation_Switch): Do nothing if Switch_Storing_Enabled is
13106         False.
13108         * lib.ads (Disable_Switch_Storing): New procedure.
13110         * make.adb: Modifications to reduce nesting level of this package.
13111         (Check_Standard_Library): New procedure
13112         (Gnatmake.Check_Mains): New procedure
13113         (Gnatmake.Create_Binder_Mapping_File): New procedure
13114         (Compile_Sources.Compile): Add switch -gnatez as the last option
13115         (Display): Never display -gnatez
13117         * Makefile.generic:
13118         When using $(MAIN_OBJECT), always use $(OBJ_DIR)/$(MAIN_OBJECT)
13120         * gnatcmd.adb (Check_Project): New function
13121         (Process_Link): New procedure to reduce nesting depth
13122         (Check_Files): New procedure to reduce the nesting depth.
13123         For GNAT METRIC, include the inherited sources in extending projects.
13124         (GNATCmd): When GNAT LS is invoked with a project file and no files,
13125         add the list of files from the sources of the project file. If this list
13126         is too long, put it in a temp text files and use switch -files=
13127         (Delete_Temp_Config_Files): Delete the temp text file that contains
13128         a list of source for gnatpp or gnatmetric, if one has been created.
13129         (GNATCmd): For GNAT METRIC and GNAT PRETTY, if the number of sources
13130         in the project file is too large, create a temporary text file that
13131         list them and pass it to the tool with "-files=<temp text file>".
13132         (GNATCmd): For GNAT METRIC add "-d=<abject dir>" as the first switch
13134         * gnatlink.adb (Gnatlink): Do not compile with --RTS= when the
13135         generated file is in not in Ada.
13137         * gnatls.adb: Remove all parameters And_Save that are no longer used.
13138         (Scan_Ls_Arg): Add processing for -files=
13139         (Usage): Add line for -files=
13141         * g-os_lib.adb (On_Windows): New global constant Boolean flag
13142         (Normalize_Pathname): When on Windows and the path starts with a
13143         directory separator, make sure that the resulting path will start with
13144         a drive letter.
13146         * clean.adb (Clean_Archive): New procedure
13147         (Clean_Project): When there is non-Ada code, delete the global archive,
13148         the archive dependency files, the object files and their dependency
13149         files, if they exist.
13150         (Gnatclean): Call Prj.Pars.Parse for All_Languages, not for Ada only.
13152 2004-06-25  Thomas Quinot  <quinot@act-europe.fr>
13154         * sinfo.ads: Fix typo in comment.
13156         * sem_dist.adb (Process_Remote_AST_Attribute): Simplify code that uses
13157         the TSS for remote access-to-subprogram types, since these TSS are
13158         always present once the type has been analyzed.
13159         (RAS_E_Dereference): Same.
13161         * sem_attr.adb (Analyze_Attribute): When analysis of an attribute
13162         reference raises Bad_Attribute, mark the reference as analyzed so the
13163         node (and any children resulting from rewrites that could have occurred
13164         during the analysis that ultimately failed) is not analyzed again.
13166         * exp_ch7.ads (Find_Final_List): Fix misaligned comment.
13168         * exp_dist.adb: Minor comment fix.
13170         * exp_ch4.adb (Expand_N_Allocator): For an allocator whose expected
13171         type is an anonymous access type, no unchecked deallocation of the
13172         allocated object can occur. If the object is controlled, attach it with
13173         a count of 1. This allows attachment to the Global_Final_List, if
13174         no other relevant list is available.
13175         (Get_Allocator_Final_List): For an anonymous access type that is
13176         the type of a discriminant or record component, the corresponding
13177         finalisation list is the one of the scope of the type.
13179 2004-06-25  Ed Schonberg  <schonberg@gnat.com>
13181         * sem_ch3.adb (Replace_Type): When computing the signature of an
13182         inherited subprogram, use the first subtype if the derived type
13183         declaration has no constraint.
13185         * exp_ch6.adb (Add_Call_By_Copy_Code): Check that formal is an array
13186         before applying previous optimization. Minor code cleanup.
13188         * exp_util.adb (Is_Possibly_Unaligned_Slice): If the component is
13189         placed at the beginning of an unpacked record without explicit
13190         alignment, a slice of it will be aligned and does not need a copy when
13191         used as an actual.
13193 2004-06-25  Ed Schonberg  <schonberg@gnat.com>
13195         PR ada/15591
13196         PR ada/15592
13197         * sem_ch8.adb (Attribute_Renaming): Reject renaming if the attribute
13198         reference is written with expressions mimicking parameters.
13200 2004-06-25  Hristian Kirtchev  <kirtchev@gnat.com>
13202         PR ada/15589
13203         * sem_ch3.adb (Build_Derived_Record_Type): Add additional check to
13204         STEP 2a. The constraints of a full type declaration of a derived record
13205         type are checked for conformance with those declared in the
13206         corresponding private extension declaration. The message
13207         "not conformant with previous declaration" is emitted if an error is
13208         detected.
13210 2004-06-25  Vasiliy Fofanov  <fofanov@act-europe.fr>
13212         * g-traceb.ads: Document the need for -E binder switch in the spec.
13214         * g-trasym.ads: Document the need for -E binder switch in the spec.
13216 2004-06-25  Jose Ruiz  <ruiz@act-europe.fr>
13218         * sem_prag.adb: Add handling of pragma Detect_Blocking.
13220         * snames.h, snames.ads, snames.adb: Add entry for pragma
13221         Detect_Blocking.
13223         * s-rident.ads: Change reference to pragma Detect_Blocking.
13225         * targparm.ads, targparm.adb: Allow pragma Detect_Blocking in
13226         system.ads.
13228         * opt.ads (Detect_Blocking): New Boolean variable (defaulted to False)
13229         to indicate whether pragma Detect_Blocking is active.
13231         * par-prag.adb: Add entry for pragma Detect_Blocking.
13233         * rtsfind.adb (RTU_Loaded): Fix the temporary kludge to get past bug
13234         of not handling WITH.
13235         Note that this replaces the previous update which was incorrect.
13237 2004-06-25  Javier Miranda  <miranda@gnat.com>
13239         * sem_ch10.adb (Re_Install_Use_Clauses): Force the installation of the
13240         use-clauses to have a clean environment.
13242         * sem_ch8.adb (Install_Use_Clauses): Addition of a new formal to force
13243         the installation of the use-clauses to stablish a clean environment in
13244         case of compilation of a separate unit; otherwise the call to
13245         use_one_package is protected by the barrier Applicable_Use.
13247         * sem_ch8.ads (Install_Use_Clauses): Addition of a new formal to force
13248         the installation of the use-clauses to stablish a clean environment in
13249         case of compilation of a separate unit.
13250         (End_Use_Clauses): Minor comment cleanup.
13252 2004-06-25  Sergey Rybin  <rybin@act-europe.fr>
13254         * gnat_ugn.texi: Add description of the gnatpp 'files' switch
13256 2004-06-23  Richard Henderson  <rth@redhat.com>
13258         * trans.c (gnat_gimplify_stmt): Update gimplify_type_sizes call.
13260 2004-06-20  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13262         * decl.c (elaborate_expression, elaborate_expression_1): Arguments
13263         now bool instead of int.
13264         (gnat_to_gnu_entity, elaborate_expression_1): New arg to COMPONENT_REF.
13265         * trans.c (gnu_switch_label_stack): New function.
13266         (gnat_to_gnu, N_Object_Renaming_Declaration): Result is what the
13267         elaboration of renamed entity returns.
13268         (gnat_to_gnu, case N_Case_Statement): Add branches to end label.
13269         (add_decl_stmt): Don't add TYPE_DECL for UNCONSTRAINED_ARRAY_TYPE.
13270         (gnat_gimplify_stmt): Use alloc_stmt_list, not build_empty_stmt.
13271         (gnat_gimplify_stmt, case DECL_STMT): gimplify DECL_SIZE and
13272         DECL_SIZE_UNIT and simplify variable-sized case.
13273         (gnat_gimplify_type_sizes, gnat_gimplify_one_sizepos): Deleted.
13274         Callers changes to call gimplify_type_sizes and gimplify_one_sizepos.
13275         (gnat_stabilize_reference): Add arg to COMPONENT_REF.
13276         (build_unit_elab): Disable for now.
13277         * utils.c (mark_visited): New function.
13278         (pushdecl): Walk tree to call it for global decl.
13279         (update_pointer_to): Update all variants of pointer and ref types.
13280         Add arg to COMPONENT_REF.
13281         (convert): Likewise.
13282         Move check for converting between variants lower down.
13283         * utils2.c (build_simple_component_ref): Add arg to COMPONENT_REF.
13284         (build_allocator): Don't force type of MODIFY_EXPR.
13285         (gnat_mark_addressable, case VAR_DECL): Unconditionally call
13286         put_var_into_stack.
13288 2004-06-14  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13290         * ada-tree.def (LOOP_STMT, EXIT_STMT): Update documentation.
13291         * ada-tree.h (EXIT_STMT_LABEL): Renamed from EXIT_STMT_LOOP.
13292         * decl.c (gnat_to_gnu_entity): Also set force_global for imported
13293         subprograms.
13294         * trans.c (gnu_loop_label_stack): Renamed from gnu_loop_stmt_stack;
13295         all callers changed.
13296         (gnat_to_gnu, case N_Loop_Statement, case N_Exit_Statement): Change
13297         the way that EXIT_STMT finds the loop label.
13298         (gnat_gimplify_stmt, case LOOP_STMT, EXIT_STMT): Likewise.
13299         (gnat_gimplify_stmt, case DECL_STMT): Handle variable-sized decls here.
13300         (add_stmt): Use annotate_with_locus insted of setting directly.
13301         (pos_to_construct): Set TREE_PURPOSE of each entry to index.
13302         (gnat_stabilize_reference, case ARRAY_RANGE_REF): Merge with ARRAY_REF.
13303         * utils.c (gnat_install_builtins): Install __builtin_memcmp.
13304         (build_vms_descriptor): Add extra args to ARRAY_REF.
13305         (convert): Use VIEW_CONVERT_EXPR between aggregate types.
13306         * utils2.c (gnat_truthvalue_conversion, case INTEGER_CST, REAL_CST):
13307         New cases.
13308         (build_binary_op): Don't make explicit CONVERT_EXPR.
13309         Add extra rgs to ARRAY_REF.
13311 2004-06-14  Pascal Obry  <obry@gnat.com>
13313         * gnat_ugn.texi: Document relocatable vs. dynamic Library_Kind on
13314         Windows.  Fix minor typo.
13316         * mlib-tgt-mingw.adb: New implementation using the GCC -shared option
13317         which is now supported on Windows. With this implementation using the
13318         Library Project feature is no different on Windows than on UNIX.
13320 2004-06-14  Vincent Celier  <celier@gnat.com>
13322         * makegpr.adb (Compile_Sources): Nothing to do when there are no
13323         non-Ada sources.
13325         * mlib-tgt-vxworks.adb (Library_Exists_For): Remove incorrect comment
13327         * prj-part.adb (Parse_Single_Project): When a duplicate project name is
13328         found, show the project name and the path of the previously parsed
13329         project file.
13331 2004-06-14  Ed Schonberg  <schonberg@gnat.com>
13333         * exp_ch6.adb (Add_Call_By_Copy_Code): For an out-parameter that is an
13334         array, avoid copying the actual before the call.
13336 2004-06-14  Thomas Quinot  <quinot@act-europe.fr>
13338         * g-debpoo.adb: Remove alignment assumptions from GNAT.Debug_Pools.
13339         Instead, allocate memory on worst-case alignment assumptions, and then
13340         return an aligned address within the allocated zone.
13342 2004-06-14  Robert Dewar  <dewar@gnat.com>
13344         * bindgen.adb (Gen_Adainit_Ada): Do not generate external references to
13345         elab entities in predefined units in No_Run_Time_Mode.
13346         (Gen_Adainit_C): Same fix
13347         (Gen_Elab_Calls_Ada): Do not generate calls to elaborate predefined
13348         units in No_Run_Time_Mode
13349         (Gen_Elab_Calls_C): Same fix
13351         * symbols-vms-alpha.adb: Minor reformatting
13353         * g-debpoo.ads: Minor reformatting
13355         * lib.adb (In_Same_Extended_Unit): Version working on node id's
13357         * lib.ads (In_Same_Extended_Unit): Version working on node id's
13359         * lib-xref.adb: Minor cleanup, use new version of In_Same_Extended_Unit
13360         working on nodes.
13362         * make.adb: Minor reformatting
13364         * par-ch12.adb: Minor reformatting
13366         * par-prag.adb: Add dummy entry for pragma Profile_Warnings
13368         * prj-strt.adb: Minor reformatting
13370         * restrict.ads, restrict.adb: Redo handling of profile restrictions to
13371         be more general.
13373         * sem_attr.adb: Minor reformatting
13375         * sem_ch7.adb: Minor reformatting
13377         * sem_elab.adb (Check_A_Call): Deal with problem of calling init proc
13378         for type in the same unit as the object declaration.
13380         * sem_prag.adb (Check_Arg_Is_External_Name): New procedure, allows
13381         static string expressions and not just string literals.
13382         Minor reformatting
13383         (Set_Warning): Reset restriction warning flag for restriction pragma
13384         Implement pragma Profile_Warnings
13385         Implement pragma Profile (Restricted)
13386         Give obolescent messages for old restrictions and pragmas
13388         * snames.h, snames.ads, snames.adb: Add new entry for pragma
13389         Profile_Warnings.
13391         * s-rident.ads: Add declarations for restrictions required by profile
13392         Restricted and profile Ravenscar.
13394         * targparm.ads, targparm.adb: Allow pragma Profile in system.ads
13396         * gnat_ugn.texi: Correct some missing entries in the list of GNAT
13397         configuration pragmas.
13399 2004-06-11  Vincent Celier  <celier@gnat.com>
13401         * mlib-tgt-vms-alpha.adb (Build_Dynamic_Library): Issue switch -R to
13402         gnatsym, when symbol policy is Restricted.
13404         * mlib-tgt-vms-ia64.adb (Build_Dynamic_Library): Issue switch -R to
13405         gnatsym, when symbol policy is Restricted.
13407         * symbols-vms-alpha.adb (Initialize): When symbol policy is Restricted,
13408         read the symbol file.
13409         (Finalize): Fail in symbol policy Restricted if a symbol in the original
13410         symbol file is not in the object files. Do not create a new symbol file
13411         when symbol policy is Restricted.
13413         * gnatbind.adb (Gnatbind): Initialize Snames, because Snames is used
13414         in Scng.
13416         * gnatsym.adb (Parse_Vmd_Line): Process new switch -R for symbol policy
13417         Restricted.
13418         (Usage): Line for new switch -R
13420         * make.adb (Initialize): When the platform is not VMS, add the
13421         directory where gnatmake is invoked in the front of the path, if
13422         gnatmake is invoked with directory information.  Change the Scan_Args
13423         while loop to a for loop.
13424         (Recursive_Compute_Depth): Remove parameter Visited. Improve efficiency:
13425         if Depth is equal or greater than the proposed depth, there is nothing
13426         to do.
13427         (Initialize): Call Recursive_Compute_Depth with initial Depth equal to 1
13428         instead of 0.
13430         * prj.ads: Add new symbol policy Restricted.
13432         * prj-dect.adb (Parse_Case_Construction): Call End_Case_Construction
13433         with the new parameters Check_All_Labels and Case_Location.
13435         * prj-nmsc.adb (Ada_Check): Process new symbol policy Restricted
13436         (Library_Symbol_File needs to be defined).
13438         * prj-strt.adb (End_Case_Construction): New parameters Check_All_Labels
13439         and Case_Location If Check_All_Labels is True, check that all values of
13440         the string type are used, and output warning(s) if they are not.
13442         * prj-strt.ads (End_Case_Construction): New parameters Check_All_Labels
13443         and Case_Location.
13445         * gnat_ugn.texi: Reorder subclauses in menus "Switches for gcc"
13447         * gnat_ugn.texi: Update documentation about the library directory in
13448         Library Projects.
13450         * makegpr.adb (Display_Command): In verbose mode, also display the
13451         value of the CPATH env var, when the compiler is gcc.
13452         (Initialize): Change the Scan_Args while loop to a for loop
13453         (Compile_Individual_Sources): Change directory to object directory
13454         before compilations.
13456         * symbols.ads: New symbol policy Restricted.
13458 2004-06-11  Olivier Hainque  <hainque@act-europe.fr>
13460         * a-except.adb (Raise_After_Setup family): Remove. The responsibility
13461         is now taken care of internally in the Exception_Propagation package
13462         and does not require clients assistance any more.
13464         * a-exexpr.adb (Is_Setup_And_Not_Propagated,
13465         Set_Setup_And_Not_Propagated, and Clear_Setup_And_Not_Propagated): New
13466         functions. Helpers to maintain a predicate required in the handling of
13467         occurrence transfer between tasks.
13468         This is now handled internally and does not require clients assistance
13469         for the setup/propagate separation anymore.
13470         (Setup_Exception, Propagate_Exception): Simplify the Private_Data
13471         allocation strategy, handle the Setup_And_Not_Propagated predicate and
13472         document.
13474         * s-taenca.adb (Check_Exception): Use raise_with_msg instead of
13475         raise_after_setup, now that everything is handled internally within the
13476         setup/propagation engine.
13478 2004-06-11  Hristian Kirtchev  <kirtchev@gnat.com>
13480         * exp_ch6.adb (Expand_Inlined_Call): Add function Formal_Is_Used_Once.
13481         Add additional conditions for the case of an actual being a simple
13482         name or literal. Improve inlining by preventing the generation
13483         of temporaries with a short lifetime (one use).
13485 2004-06-11  Hristian Kirtchev  <kirtchev@gnat.com>
13487         PR ada/15587
13489         * einfo.ads: Minor comment updates for Has_Completion and
13490         E_Constant list of flags.
13492         * sem_ch3.adb (Analyze_Object_Declaration): Full constant declarations
13493         and constant redeclarations now set the Has_Completion flag of their
13494         defining identifiers.
13496         * sem_ch7.adb (Analyze_Package_Spec): Add procedure
13497         Inspect_Deferred_Constant_Completion.
13498         Used to detect private deferred constants that have not been completed
13499         either by a constant redeclaration or pragma Import. Emits error message
13500         "constant declaration requires initialization expression".
13502         * sem_prag.adb (Process_Import_Or_Interface): An Import pragma now
13503         completes a deferred constant.
13505 2004-06-11  Geert Bosch  <bosch@gnat.com>
13507         * eval_fat.adb (Decompose_Int): Fix rounding of negative numbers.
13509         * s-fatgen.adb (Gradual_Scaling): Correct off-by-one error in
13510         calculating exponent for scaling denormal numbers.
13511         (Leading_Part): Properly raise Constraint_Error for zero or negative
13512         Adjustment.
13513         (Remainder): Properly raise Constraint_Error for zero divisor.
13515 2004-06-11  Thomas Quinot  <quinot@act-europe.fr>
13517         * sem_util.adb: Minor reformatting.
13519         * exp_ch2.adb (Expand_Entry_Parameter): Generate an explicit
13520         dereference when accessing the entry parameter record.
13521         (Check_Array_Type): Always check for possible implicit dereference.
13522         (maybe_implicit_dereference): Rename to check_no_implicit_derefence.
13523         Abort if a pointer is still present (denoting that an implicit
13524         dereference was left in the tree by the front-end).
13526         * sem_attr.adb (Expand_Entry_Parameter): Generate an explicit
13527         dereference when accessing the entry parameter record.
13528         (Check_Array_Type): Always check for possible implicit dereference.
13529         (maybe_implicit_dereference): Rename to check_no_implicit_derefence.
13530         Abort if a pointer is still present (denoting that an implicit
13531         dereference was left in the tree by the front-end).
13533 2004-06-11  Emmanuel Briot  <briot@act-europe.fr>
13535         * g-debpoo.adb (Deallocate, Dereference): Add prefix "error:" to error
13536         message, like the compiler itself does. Easier to parse the output.
13538         * g-debpoo.ads: (Allocate, Deallocate, Dereference): Add comments.
13540         * gnat_ugn.texi (gnatxref, gnatfind): Clarify that source names should
13541         be base names, and not includes directories.
13543 2004-06-11  Arnaud Charlet  <charlet@act-europe.fr>
13545         * Makefile.generic ($(EXEC)): Depend on $(OBJECTS), not $(OBJ_FILES),
13546         so that dependencies are properly taken into account by make.
13548 2004-06-11  Arnaud Charlet  <charlet@act-europe.fr>
13550         PR ada/15622
13551         * s-unstyp.ads, s-maccod.ads, sem_ch8.adb, s-auxdec.ads,
13552         exp_intr.adb, s-auxdec-vms_64.ads: Fix typo: instrinsic -> intrinsic
13554 2004-06-11  Jerome Guitton  <guitton@act-europe.fr>
13556         * Makefile.in (install-gnatlib): install target-specific run-time files.
13558         * Make-lang.in: Remove obsolete targets.
13560 2004-06-11  Ed Schonberg  <schonberg@gnat.com>
13562         * par-ch12.adb (P_Generic): Add scope before analyzing subprogram
13563         specification, to catch misuses of program unit names.
13565         * sem_res.adb (Resolve_Type_Conversion): Do not emit warnings on
13566         superfluous conversions in an instance.
13568 2004-06-11  Ed Schonberg  <schonberg@gnat.com>
13570         PR ada/15403
13572         * sem_ch12.adb (Save_References): If operator node has been folded to
13573         enumeration literal, associated_node must be discarded.
13575 2004-06-11  Jose Ruiz  <ruiz@act-europe.fr>
13577         * s-stchop-vxworks.adb: Add required pragma Convention to
13578         Task_Descriptor because it is updated by a C function.
13580 2004-06-08  Arnaud Charlet  <charlet@act-europe.fr>
13582         PR ada/15568
13584         * Makefile.in: Remove target specific SO_OPT on IRIX
13586 2004-06-07  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13588         * ada-tree.def (TRANSFORM_EXPR, ALLOCATE_EXPR, USE_EXPR): Deleted.
13589         (GNAT_NOP_EXPR, GNAT_LOOP_ID, EXPR_STMT, NULL_STMT): Likewise.
13590         (BLOCK_STMT, IF_STMT, GOTO_STMT, LABEL_STMT, RETURN_STMT): Likewise.
13591         (ASM_STMT, BREAK_STMT, REGION_STMT,HANDLER_STMT): Likewise.
13592         (STMT_STMT, USE_STMT): New statement codes.
13593         (LOOP_STMT, EXIT_STMT): Make slight semantic changes.
13594         * ada-tree.h: Reflect above changes.
13595         (struct tree_loop_id): Deleted.
13596         (union lang_tree_node, struct lang_decl, struct lang_type):
13597         Now just contains a tree node; update macros using TYPE_LANG_SPECIFIC
13598         and DECL_LANGUAGE_SPECIFIC to reflect these changes.
13599         (DECL_INIT_BY_ASSIGN_P, TRE_LOOP_NODE_ID, TREE_SLOC): Deleted.
13600         (IS_ADA_STMT): New macro.
13601         * decl.c (annotate_decl_with_node): New function.
13602         (gnat_to_gnu_entity): Use it and Sloc_to_locus instead of set_lineno.
13603         (gnat_to_gnu_entity, case object): Remove call to expand CONVERT_EXPR.
13604         Call add_stmt_with_node to do needed assignments.
13605         Add call to update setjmp buffer directly, not via EXPR_STMT.
13606         (maybe_variable): Argment GNAT_NODE deleted.
13607         * gigi.h (maybe_variable): Likewise.
13608         (make_transform, add_stmt_with_node, set_block_for_group): New.
13609         (gnat_gimplify_expr, gnat_expand_body, Sloc_to_locus): Likewise.
13610         (set_block_jmpbuf_decl, get_block_jmpbuf_decl): Likewise.
13611         (discard_file_names, gnu_block_stack, gnat_to_code): Deleted.
13612         (set_lineno, set_lineno_from_sloc): Likewise.
13613         (record_code_position, insert_code_for): Likewise.
13614         (gnat_poplevel): Now returns void.
13615         (end_subprog_body): Now takes argument.
13616         * misc.c (cgraph.h, tree-inline.h): New includes.
13617         (gnat_tree_size, LANG_HOOKS_TREE_SIZE): Deleted.
13618         (gnat_post_options, LANG_HOOKS_POST_OPTIONS): New.
13619         (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Likewise.
13620         (LANG_HOOKS_RTL_EXPAND_STMT, LANG_HOOKS_GIMPLIFY_EXPR): Likewise.
13621         (gnat_parse_file): Don't set immediate_size_expand.
13622         Call cgraph functions.
13623         (gnat_expand_expr): Remove most cases.
13624         (record_code_position, insert_code_for): Remove from here.
13625         * trans.c (toplev.h, tree-gimple.h): Now included.
13626         (discard_file_names): Deleted.
13627         (gnu_block_stack, gnu_block_stmt_node, gnu_block_stmt_free_list): Del.
13628         (first_nondeleted_insn, make_expr_stmt_from_rtl): Likewise.
13629         (struct stmt_group, current_stmt_group, stmt_group_free_list): New.
13630         (gnu_stack_free_list, record_cost_position, insert_code_for): Likewise.
13631         (add_cleanup, push_stack, gnat_gimplify_stmt, add_cleanup): Likewise.
13632         (gnat_gimplify_type_sizes, gnat_gimplify_one_sizepos): Likewise.
13633         (gnat_expand_body_1, gnat_gimplify_expr, annotate_with_node): Likewise.
13634         (set_block_for_group, add_stmt_list): Likewise.
13635         (start_stmt_group): Renamed from start_block_stmt.
13636         (end_stmt_group): Likewise, from end_block_stmt.
13637         (build_stmt_group): Likewise, from build_block_stmt, also add arg.
13638         (gigi): Don't set discard_file_names or call set_lineno.
13639         Disallow front end ZCX; call gnat_to_gnu, not gnat_to_code.
13640         (tree_transform): Deleted, now renamed to be gnat_to_gnu.
13641         Numerous changes throughout to reflect new names and complete
13642         function-at-a-time implementation.
13643         (gnat_expand_stmt): Delete or comment out all cases.
13644         (process_inlined_subprograms): Use add_stmt.
13645         (process_decls): Use gnat_to_gnu, not gnat_to_code, and don't
13646         call set_lineno; also remove unneeded block handling.
13647         (process_type): Remove unneeded block handling.
13648         (build_unit_elab): Remove calls to deleted functions.
13649         * utils.c (cgraph.h, tree-inline.h, tree-gimple.h): Now include.
13650         (tree-dump.h): Likewise.
13651         (struct ada_binding_level): Add field jmpbuf_decl.
13652         (gnat_define_builtin, gnat_install_builtins): New.
13653         (gnat_gimplify_function, gnat_finalize): Likewise.
13654         (gnat_poplevel): No longer return BLOCK, set it instead.
13655         Remove code dealing with nested functions.
13656         (gnat_init_decl_processing): Also set size_type_node.
13657         Call gnat_install_builtins.
13658         (create_var_decl): Don't set DECL_INIT_BY_ASSIGN.
13659         (create_subprog_decl): Change handling of inline_flag; set TREE_STATIC.
13660         Remove special-case for "main".
13661         (end_subprog_body): Add arg and rework for tree-ssa.
13662         (convert): Don't use GNAT_NOP_EXPR or look for TRANSFORM_EXPR.
13663         Add case for BOOLEAN_TYPE.
13664         * utils2.c (rtl.h): Now include.
13665         (build_call_raise): Test Debug_Flag_NN directly.
13666         (build_call_alloc_dealloc): Don't use local stack allocation for now.
13667         (gnat_mark_addressable, case GNAT_NOP_EXPR): Deleted.
13668         (gnat_mark_addressable, case VAR_DECL): Handle both early & late cases.
13670 2004-06-07  Robert Dewar  <dewar@gnat.com>
13672         * a-direct.ads, einfo.ads: Minor comment updates
13674         * s-taprop-lynxos.adb, s-taprop-tru64.adb, s-taprop-irix.adb,
13675         s-taprop-irix-athread.adb, s-taprop-hpux-dce.adb, s-taprop-linux.adb,
13676         s-taprop-dummy.adb, s-taprop-os2.adb, s-taprop-solaris.adb,
13677         s-taprop-vms.adb, s-taprop-mingw.adb, s-taprop-vxworks.adb,
13678         s-taprop-posix.adb, s-taprop.ads, exp_dbug.adb: Minor reformatting.
13680         * s-interr-sigaction.adb: Remove unreferenced variable
13681         (Attached_Interrupts).  Minor reformatting.
13682         Avoid use of variable I (replace by J).
13684         * par-ch10.adb: Fix text of one error message
13686         * checks.adb, checks.ads, cstand.adb, vms_data.ads, errout.ads,
13687         exp_aggr.adb, exp_ch3.adb, exp_ch3.ads, exp_ch5.adb, exp_ch6.adb,
13688         exp_ch9.adb, exp_code.adb, gnat1drv.adb, lib-load.adb, lib-writ.adb,
13689         opt.adb, par.adb, opt.ads, par-ch11.adb, par-ch3.adb, par-ch4.adb,
13690         par-ch5.adb, par-ch6.adb, par-ch8.adb, par-ch9.adb, par-prag.adb,
13691         par-util.adb, scng.adb, sem_aggr.adb, sem_attr.adb, sem_cat.adb,
13692         sem_ch10.adb, sem_ch10.adb, sem_ch11.adb, sem_ch12.adb, sem_ch2.adb,
13693         sem_ch3.adb, sem_ch3.ads, sem_ch4.adb, sem_ch5.adb, sem_ch6.adb,
13694         sem_ch7.adb, sem_ch8.adb, sem_ch9.adb, sem_eval.adb, sem_prag.adb,
13695         sem_res.adb, sem_type.adb, sem_util.adb, sinfo.ads, snames.adb,
13696         snames.ads, snames.h, sprint.adb, switch-c.adb: Modifications for Ada
13697         2005 support.
13699 2004-06-07  Doug Rupp  <rupp@gnat.com>
13701         * mlib-tgt-vms.adb: Rename mlib-tgt-vms.adb mlib-tgt-vms-alpha.adb
13703         * s-vaflop-vms.adb: Rename s-vaflop-vms.adb to s-vaflop-vms-alpha.adb
13705         * mlib-tgt-vms-ia64.adb: New file.
13707         * Makefile.in: Rename mlib-tgt-vms.adb to mlib-tgt-vms-alpha.adb
13708         Add mlib-tgt-vms-ia64.adb
13709         Rename s-vaflop-vms.adb to s-vaflop-vms-alpha.adb.
13710         Move to alpha specific ifeq section.
13711         Add VMS specific versions of symbols.adb
13712         Renaming of 5q vms files.
13714         * 5qsystem.ads renamed to system-vms_64.ads.
13716 2004-06-07  Vincent Celier  <celier@gnat.com>
13718         * a-calend.ads: Add a GNAT Note comment after function Time_Of to
13719         explain that when a time of day corresponding to the non existing hour
13720         on the day switching to DST is specified, Split may return a different
13721         value for Seconds.
13723         * gnatcmd.adb: Add processing of GNAT METRIC (for gnatmetric), similar
13724         to GNAT PRETTY.
13726         * g-os_lib.adb (OpenVMS): New Boolean value imported from System.
13727         (Normalize_Pathname): Only resolve VMS logical names when on VMS.
13729         * mlib-prj.adb (Build_Library): New flag Gtrasymobj_Needed, initialize
13730         to False.
13731         If Gtrasymobj_Needed is True, add the full path of g-trasym.obj to
13732         the linking options.
13733         (Build_Library.Check_Libs): On VMS, if there is a dependency on
13734         g-trasym.ads, set Gtrasymobj_Needed to True.
13736         * prj-attr.adb: Add new package Metrics for gnatmetric
13738         * prj-nmsc.adb (Record_Other_Sources): Put source file names in
13739         canonical case to take into account files with upper case characters on
13740         Windows.
13741         (Ada_Check): Load the reference symbol file name in the name buffer to
13742         check it, not the symbol file name.
13744         * snames.ads, snames.adb: Add standard name Metrics (name of project
13745         file package for gnatmetric).
13747         * vms_conv.ads: Add Metric to Comment_Type
13749         * vms_conv.adb (Initialize): Add component dor Metric in Command_List
13751         * vms_data.ads: Add qualifiers for GNAT METRIC
13753         * makegpr.adb (Link_Executables): Take into account the switches
13754         specified in package Linker of the main project.
13756 2004-06-07  Thomas Quinot  <quinot@act-europe.fr>
13758         * bindgen.adb (Set_Unit_Number): Units is an instance of Table, and so
13759         the index of the last element is Units.Last, not Units.Table'Last
13760         (which is usually not a valid index within the actually allocated
13761         storage for the table).
13763         * exp_ch4.adb (Insert_Dereference_Action): Change predicate that
13764         determines whether to generate a call to a checked storage pool
13765         Dereference action.
13766         Generate such a call only for a dereference that either comes from
13767         source, or is the result of rewriting a dereference that comes from
13768         source.
13770 2004-06-07  Romain Berrendonner  <berrendo@act-europe.fr>
13772         * bindgen.adb (Gen_Output_File): Add support for GAP builds.
13774 2004-06-07  Eric Botcazou  <ebotcazou@act-europe.fr>
13776         (gnat_to_gnu_entity) <E_Array_Subtype>: For multi-dimensional arrays at
13777         file level, elaborate the stride for inner dimensions in alignment
13778         units, not bytes.
13780         * exp_ch5.adb: Correct wrong reference to Component_May_Be_Bit_Aligned
13781         in a comment.
13783 2004-06-07  Javier Miranda  <miranda@gnat.com>
13785         * exp_ch6.adb: Correct wrong modification in previous patch
13787 2004-06-07  Vasiliy Fofanov  <fofanov@act-europe.fr>
13789         * g-trasym.ads: Corrected comment to properly reflect level of support
13790         on VMS.
13792 2004-06-07  Hristian Kirtchev  <kirtchev@gnat.com>
13794         * lib-xref.adb (Generate_Reference): Add nested function Is_On_LHS. It
13795         includes case of a variable referenced on the left hand side of an
13796         assignment, therefore remove redundant code. Variables and prefixes of
13797         indexed or selected components are now marked as referenced on left
13798         hand side. Warnings are now properly emitted when variables or prefixes
13799         are assigned but not read.
13801         * sem_warn.adb (Output_Unreferenced_Messages): Add additional checks to
13802         left hand side referenced variables. Private access types do not
13803         produce the warning "variable ... is assigned but never read".
13804         Add also additional checks to left hand side referenced variables.
13805         Aliased, renamed objects and access types do not produce the warning
13806         "variable ... is assigned but never read" since other entities may read
13807         the memory location.
13809 2004-06-07  Jerome Guitton  <guitton@act-europe.fr>
13811         * Makefile.in: In the powerpc/vxworks-specific section, restore
13812         EXTRA_GNATRTL_NONTASKING_OBJS and EXTRA_GNATRTL_TASKING_OBJS (removed
13813         by mistake).
13815 2004-06-07  Ed Schonberg  <schonberg@gnat.com>
13817         * sem_ch4.adb (Remove_Abstract_Operations): Refine the removal of
13818         predefined operators.
13819         Removes spurious type errors from g-trasym-vms.adb.
13821         * sem_res.adb (Rewrite_Renamed_Operator): If intrinsic operator is
13822         distinct from the operator appearing in the source, call appropriate
13823         routine to insert conversions when needed, and complete resolution of
13824         node.
13825         (Resolve_Intrinsic_Operator): Fix cut-and-paste bug on transfer of
13826         interpretations for rewritten right operand.
13827         (Set_Mixed_Mode_Operand): Handle properly a universal real operand when
13828         the other operand is overloaded and the context is a type conversion.
13830 2004-06-07  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13832         * ada-tree.def (BLOCK_STMT): Now has two operands.
13833         (BREAK_STMT): New.
13835         * ada-tree.h: (BLOCK_STMT_BLOCK): New macro.
13837         * gigi.h: (gnat_poplevel): Now returns a tree.
13839         * trans.c (end_block_stmt): Add arg; all callers changed.
13840         (tree_transform, case N_Case_Statement): Make a BLOCK_STMT for a WHEN.
13841         (start_block_stmt): Clear BLOCK_STMT_BLOCK.
13842         (add_stmt): Set TREE_TYPE.
13843         (gnat_expand_stmt, case BLOCK_STMT): Handle BLOCK_STMT_BLOCK.
13844         (gnat_expand_stmt, case BREAK_STMT): New case.
13846         * utils.c (gnat_poplevel): Return a BLOCK, if we made one.
13848 2004-06-07  Jose Ruiz  <ruiz@act-europe.fr>
13850         * s-stchop.adsm s-stchop.adb, s-stchop-vxworks.adb: Remove the
13851         procedure Set_Stack_Size that is not needed.
13853 2004-06-07  Sergey Rybin  <rybin@act-europe.fr>
13855         * gnat_ugn.texi: Clarify the case when non-standard naming scheme is
13856         used for gnatpp input file and for the files upon which it depends
13858 2004-06-07  Ben Brosgol  <brosgol@gnat.com>
13860         * gnat_ugn.texi: Wordsmithing of "GNAT and Libraries" chapter
13862 2004-06-07  Arnaud Charlet  <charlet@act-europe.fr>
13864         * gnatvsn.ads: Bump version numbers appropriately.
13865         Add new build type.
13867 2004-06-07  Pascal Obry  <obry@gnat.com>
13869         * gnat_ugn.texi: Improve comments about imported names and link names
13870         on Windows. Add a note about the requirement to use -k gnatdll's option
13871         when working with a DLL which has stripped stdcall symbols (no @nn
13872         suffix).
13874 2004-05-27  Vincent Celier  <celier@gnat.com>
13876         * vms_data.ads: Add new GNAT PRETTY qualifiers /NO_BACKUP and
13877         COMMENTS_LAYOUT=UNTOUCHED
13879         * symbols-vms.adb, symbols-vms-alpha.adb: Renamed symbols-vms.adb to
13880         symbols-vms-alpha.adb
13882 2004-05-27  Thomas Quinot  <quinot@act-europe.fr>
13884         * sem.ads: Clarify documentation on checks suppression.
13886         * einfo.ads (Is_Known_Non_Null): Minor comment typo fix and rephrasing.
13888 2004-05-27  Ed Schonberg  <schonberg@gnat.com>
13890         * sem_util.adb (Is_Descendent_Of): Examine properly all ancestors in
13891         the case of multiple derivations.
13892         (Is_Object_Reference): For a selected component, verify that the prefix
13893         is itself an object and not a value.
13895         * sem_ch12.adb (Same_Instantiated_Constant): New name for
13896         Same_Instantiated_Entity.
13897         (Same_Instantiated_Variable): Subsidiary to
13898         Check_Formal_Package_Instance, to recognize actuals for in-out generic
13899         formals that are obtained from a previous formal package.
13900         (Instantiate_Subprogram_Body): Emit proper error when
13901         generating code and the proper body of a stub is missing.
13903         * sem_ch4.adb (Remove_Address_Interpretations): If the operation still
13904         has a universal interpretation, do the disambiguation here.
13906         * exp_ch4.adb (Expand_N_Type_Conversion,
13907         Expand_N_Unchecked_Type_Conversion): Special handling when target type
13908         is Address, to avoid typing anomalies when Address is a visible integer
13909         type.
13911         * exp_ch6.adb (Expand_N_Subprogram_Body): Use Is_Descendent_Of_Address
13912         to determine whether a subprogram should not be marked Pure, even when
13913         declared in a pure package.
13915 2004-05-27  Jose Ruiz  <ruiz@act-europe.fr>
13917         * gnat_ugn.texi: Replace pragma Ravenscar by pragma Profile.
13919         * gnat_rm.texi: Replace Max_Entry_Queue_Depth by Max_Entry_Queue_Length
13920         Document No_Dynamic_Attachment, that supersedes No_Dynamic_Interrupts.
13921         Update the documentation about the Ravenscar profile, following the
13922         definition found in AI-249.
13924         * sem_prag.adb: Use FIFO_Within_Priorities and Ceiling_Locking when
13925         setting the Profile (Ravenscar). This must be done in addition to
13926         setting the required restrictions.
13928         * rtsfind.ads: Add the set of operations defined in package
13929         Ada.Interrupts.
13931         * exp_ch6.adb: Check whether we are violating the No_Dynamic_Attachment
13932         restriction.
13934 2004-05-27  Eric Botcazou  <ebotcazou@act-europe.fr>
13936         lang-specs.h: Always require -c or -S and always redirect to /dev/null
13937         if -gnatc or -gnats is passed.
13939 2004-05-27  Hristian Kirtchev  <kirtchev@gnat.com>
13941         * sem_prag.adb (Sig_Flags): A Pragma_Unchecked_Union does not count as
13942         a significant reference. Warnings are now properly emitted when a
13943         discriminated type is not referenced.
13945         * lib-xref.adb (Generate_Reference): A deferred constant completion,
13946         record representation clause or record type discriminant does not
13947         produce a reference to its corresponding entity. Warnings are now
13948         properly emitted when deferred constants and record types are not
13949         referenced.
13951 2004-05-27  Geert Bosch  <bosch@gnat.com>
13953         * Makefile.in: Use long version of libm routines on ia64 gnu/linux.
13954         Fixes ACATS Annex G tests.
13956 2004-05-27  Robert Dewar  <dewar@gnat.com>
13958         * rtsfind.adb (RTU_Loaded): Temporary kludge to get past bug of not
13959         handling WITH
13961 2004-05-27  Arnaud Charlet  <charlet@act-europe.fr>
13963         * s-interr.adb (Server_Task): Take into account case of early return
13964         from sigwait under e.g. linux.
13966 2004-05-27  Sergey Rybin  <rybin@act-europe.fr>
13968         * gnat_ugn.texi: Add description for the new gnatpp options:
13969          -rnb - replace the original source without creating its backup copy
13970          -c0 - do not format comments
13972 2004-05-24  Geert Bosch  <bosch@gnat.com>
13974         * a-numaux-x86.adb (Reduce): Reimplement using an approximation of Pi
13975         with 192 bits of precision, sufficient to reduce a double-extended
13976         arguments X with a maximum relative error of T'Machine_Epsilon, for X
13977         in -2.0**32 .. 2.0**32.
13978         (Cos, Sin):  Always reduce arguments of 1/4 Pi or larger, to prevent
13979         reduction by the processor, which only uses a 68-bit approximation of
13980         Pi.
13981         (Tan): Always reduce arguments and compute function either using
13982         the processor's fptan instruction, or by dividing sin and cos as needed.
13984 2004-05-24  Doug Rupp  <rupp@gnat.com>
13986         * adaint.c (__gnat_readdir): Cast CRTL function retun value to avoid
13987         gcc error on 32/64 bit VMS.
13989 2004-05-24  Olivier Hainque  <hainque@act-europe.fr>
13991         * init.c (__gnat_error_handler): Handle EEXIST as EACCES for SIGSEGVs,
13992         since this is what we get for stack overflows although not documented
13993         as such.
13994         Document the issues which may require adjustments to our signal
13995         handlers.
13997 2004-05-24  Ed Schonberg  <schonberg@gnat.com>
13999         * inline.adb (Add_Scope_To_Clean): Do not add cleanup actions to the
14000         enclosing dynamic scope if the instantiation is within a generic unit.
14002 2004-05-24  Arnaud Charlet  <charlet@act-europe.fr>
14004         * exp_dbug.ads: Fix typo.
14006         * Makefile.in: s-osinte-linux-ia64.ads was misnamed.
14007         Rename it to its proper name: system-linux-ia64.ads
14008         (stamp-gnatlib1): Remove extra target specific run time files when
14009         setting up the rts directory.
14011 2004-05-24  Javier Miranda  <miranda@gnat.com>
14013         * einfo.ads, einfo.adb (Limited_Views): Removed.
14014         (Limited_View): New attribute that replaces the previous one. It is
14015         now a bona fide package with the limited-view list through the
14016         first_entity and first_private attributes.
14018         * sem_ch10.adb (Install_Private_With_Clauses): Give support to
14019         limited-private-with clause.
14020         (Install_Limited_Withed_Unit): Install the private declarations of a
14021         limited-private-withed package. Update the installation of the shadow
14022         entities according to the new structure (see Build_Limited_Views)
14023         (Build_Limited_Views): Replace the previous implementation of the
14024         limited view by a package entity that references the first shadow
14025         entity plus the first shadow private entity (required for limited-
14026         private-with clause)
14027         (New_Internal_Shadow_Entity): Code cleanup.
14028         (Remove_Limited_With_Clause): Update the implementation to undo the
14029         new work carried out by Build_Limited_Views.
14030         (Build_Chain): Complete documentation.
14031         Replace Ada0Y by Ada 0Y in comments
14032         Minor reformating
14034         * sem_ch3.adb (Array_Type_Declaration): In case of anonymous access
14035         types the level of accessibility depends on the enclosing type
14036         declaration.
14038         * sem_ch8.adb (Find_Expanded_Name): Fix condition to detect shadow
14039         entities. Complete documentation of previous change.
14041 2004-05-24  Robert Dewar  <dewar@gnat.com>
14043         * namet.adb: Minor reformatting
14044         Avoid use of name I (replace by J)
14045         Minor code restructuring
14047         * sem_ch6.adb: Minor reformatting
14049         * lib-writ.adb: Do not set restriction as active if this is a
14050         Restriction_Warning case.
14052         * sem_prag.adb: Reset restriction warning flag if real pragma
14053         restriction encountered.
14055         * s-htable.adb: Minor reformatting
14056         Change rotate count to 3 in Hash (improves hash for small strings)
14058         * 5qsystem.ads: Add comments for type Address (no literals allowed).
14060         * gnat_ugn.texi: Add new section of documentation "Code Generation
14061         Control", which describes the use of -m switches.
14063 2004-05-24  Eric Botcazou  <ebotcazou@act-europe.fr>
14065         trans.c (tree_transform) <N_Identifier>: Do the dereference directly
14066         through the DECL_INITIAL for renamed variables.
14068 2004-05-24  Arnaud Charlet  <charlet@act-europe.fr>
14070         * s-osinte-linux-ia64.ads: Renamed system-linux-ia64.ads
14072 2004-05-19  Joel Brobecker  <brobecker@gnat.com>
14074         * exp_dbug.ads: Correct comments concerning handling of overloading,
14075         since we no longer use $ anymore.
14077 2004-05-19  Sergey Rybin  <rybin@act-europe.fr>
14079         * sem_ch10.adb (Optional_Subunit): When loading a subunit, do not
14080         ignore errors if ASIS_Mode is set. This prevents creating ASIS trees
14081         with illegal subunits.
14083 2004-05-19  Ed Schonberg  <schonberg@gnat.com>
14085         * sem_ch6.adb (Check_Following_Pragma): When compiling a subprogram
14086         body with front-end inlining enabled, check whether an inline pragma
14087         appears immediately after the body and applies to it.
14089         * sem_prag.adb (Cannot_Inline): Emit warning if front-end inlining is
14090         enabled and the pragma appears after the body of the subprogram.
14092 2004-05-17  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14094         Part of function-at-a-time conversion
14096         * misc.c (adjust_decl_rtl): Deleted.
14097         (LANG_HOOKS_PUSHLEVEL, LANG_HOOKS_POPLEVEL, LANG_HOOKS_SET_BLOCK):
14098         Define.
14100         * gigi.h: (adjust_decl_rtl, kept_level_p, set_block): Deleted.
14101         (add_decl_stmt, add_stmt, block_has_vars): New functions.
14102         (gnat_pushlevel, gnat_poplevel): Renamed from pushlevel and poplevel.
14104         * decl.c (elaborate_expression, maybe_pad_type): Call add_decl_stmt
14105         when making a decl.
14106         (gnat_to_gnu_entity): Likewise.
14107         Use add_stmt to update setjmp buffer.
14108         Set TREE_ADDRESSABLE instead of calling put_var_into_stack and
14109         flush_addressof.
14110         No longer call adjust_decl_rtl.
14111         (DECL_INIT_BY_ASSIGN_P): New macro.
14112         (DECL_STMT_VAR): Likewise.
14114         * trans.c (gigi): Call start_block_stmt to make the outermost
14115         BLOCK_STMT.
14116         (gnat_to_code, gnu_to_gnu, tree_transform, process_decls, process_type):
14117         Call start_block_stmt and end_block_stmt temporarily.
14118         Use gnat_expand_stmt instead of expand_expr_stmt.
14119         (add_decl_stmt): New function.
14120         (tree_transform): Call it.
14121         (add_stmt): Also emit initializing assignment for DECL_STMT if needed.
14122         (end_block_stmt): Set type and NULL_STMT.
14123         (gnat_expand_stmt): Make recursize call instead of calling
14124         expand_expr_stmt.
14125         (gnat_expand_stmt, case DECL_STMT): New case.
14126         (set_lineno_from_sloc): Do nothing if global.
14127         (gnu_block_stmt_node, gnu_block_stmt_free_list): New variables.
14128         (start_block_stmt, add_stmt, end_block_stmt): New functions.
14129         (build_block_stmt): Call them.
14130         (gnat_to_code): Don't expand NULL_STMT.
14131         (build_unit_elab): Rename pushlevel and poplevel to gnat_* and change
14132         args.
14133         (tree_transform): Likewise.
14134         (tree_transform, case N_Null_Statement): Return NULL_STMT.
14135         (gnat_expand_stmt, case NULL_STMT): New case.
14136         (gnat_expand_stmt, case IF_STMT): Allow nested IF_STMT to have no
14137         IF_STMT_TRUE.
14139         * utils2.c (gnat_mark_addressable, case VAR_DECL): Do not set
14140         TREE_ADDRESSABLE.
14142         * utils.c (create_var_decl): Do not call expand_decl or
14143         expand_decl_init.
14144         Set TREE_ADDRESSABLE instead of calling gnat_mark_addressable.
14145         Set DECL_INIT_BY_ASSIGN_P when needed and do not generate MODIFY_EXPR
14146         here.
14147         (struct e_stack): Add chain_next to GTY.
14148         (struct binding_level): Deleted.
14149         (struct ada_binding_level): New struct.
14150         (free_block_chain): New.
14151         (global_binding_level, clear_binding_level): Deleted.
14152         (global_bindings_p): Rework to see if no chain.
14153         (kept_level_p, set_block): Deleted.
14154         (gnat_pushlevel): Renamed from pushlevel and extensive reworked to use
14155         new data structure and work directly on BLOCK node.
14156         (gnat_poplevel): Similarly.
14157         (get_decls): Look at BLOCK_VARS.
14158         (insert_block): Work directly on BLOCK node.
14159         (block_has_var): New function.
14160         (pushdecl): Rework for new binding structures.
14161         (gnat_init_decl_processing): Rename and rework calls to pushlevel and
14162         poplevel.
14163         (build_subprog_body): Likewise.
14164         (end_subprog_body): Likewise; also set up BLOCK in DECL_INITIAL.
14166         * ada-tree.def (DECL_STMT, NULL_STMT): New codes.
14168         * ada-tree.h: (DECL_INIT_BY_ASSIGN_P): New macro.
14169         (DECL_STMT_VAR): Likewise.
14171 2004-05-17  Robert Dewar  <dewar@gnat.com>
14173         * restrict.ads, restrict.adb (Process_Restriction_Synonym): New
14174         procedure
14176         * sem_prag.adb (Analyze_Pragma, case Restrictions): Cleanup handling
14177         of restriction synonyums by using
14178         Restrict.Process_Restriction_Synonyms.
14180         * snames.ads, snames.adb: Add entries for Process_Restriction_Synonym
14182         * s-restri.ads (Tasking_Allowed): Correct missing comment
14184         * s-rident.ads: Add entries for restriction synonyms
14186         * ali.adb: Fix some problems with badly formatted ALI files that can
14187         result in infinite loops.
14189         * s-taprop-lynxos.adb, s-tpopsp-lynxos.adb, s-taprop-tru64.adb,
14190         s-tpopsp-posix-foreign.adb, s-taprop-irix.adb, s-interr-sigaction.adb,
14191         s-taprop-irix-athread.adb, s-taprop-hpux-dce.adb, s-taprop-linux.adb,
14192         s-taprop-dummy.adb, s-interr-dummy.adb, s-taprop-os2.adb,
14193         s-taprop-solaris.adb, s-tpopsp-solaris.adb, s-asthan-vms.adb,
14194         s-inmaop-vms.adb, s-interr-vms.adb, s-taprop-vms.adb,
14195         s-tpopde-vms.adb, s-taprop-mingw.adb, s-interr-vxworks.adb,
14196         s-taprop-vxworks.adb, s-tpopsp-vxworks.adb, s-taprop-posix.adb,
14197         s-tpopsp-posix.adb, s-tratas-default.adb, a-dynpri.adb,
14198         a-tasatt.adb, a-taside.adb, a-taside.ads, exp_attr.adb,
14199         exp_ch9.adb, g-thread.adb, rtsfind.ads, sem_attr.adb,
14200         s-interr.adb, s-interr.ads, s-soflin.ads, s-taasde.adb,
14201         s-taasde.ads, s-taenca.adb, s-taenca.ads, s-taprop.ads,
14202         s-tarest.adb, s-tarest.ads, s-tasdeb.adb, s-tasdeb.ads,
14203         s-tasini.adb, s-tasini.ads, s-taskin.adb, s-taskin.ads,
14204         s-tasque.adb, s-tasque.ads, s-tasren.adb, s-tasren.ads,
14205         s-tassta.adb, s-tassta.ads, s-tasuti.adb, s-tasuti.ads,
14206         s-tataat.adb, s-tataat.ads, s-tpinop.adb, s-tpinop.ads,
14207         s-tpoben.adb, s-tpobop.adb, s-tpobop.ads, s-tporft.adb,
14208         s-tposen.adb, s-tposen.ads, s-tratas.adb, s-tratas.ads: Change Task_ID
14209         to Task_Id (minor cleanup).
14211 2004-05-17  Vincent Celier  <celier@gnat.com>
14213         * g-os_lib.adb (Normalize_Pathname.Final_Value): Remove trailing
14214         directory separator.
14216         * prj-proc.adb (Recursive_Process): Inherit attribute Languages from
14217         project being extended, if Languages is not declared in extending
14218         project.
14220 2004-05-17  Javier Miranda  <miranda@gnat.com>
14222         * sem_ch10.adb (Install_Limited_Withed_Unit): Do not install the
14223         limited view of a visible sibling.
14225 2004-05-14  Robert Dewar  <dewar@gnat.com>
14227         * gnat_ugn.texi: Minor change to -gnatS documentation
14229         * sprint.adb: Remove some instances of Assert (False) and for this
14230         purpose replace them by output of a ??? string.
14232         * checks.adb, exp_aggr.adb, sem_elim.adb: Remove useless pragma
14233         Assert (False).
14235         * lib-writ.adb, lib-load.adb, lib.ads, lib.adb: Remove Dependent_Unit
14236         flag processing. This was suppressing required dependencies in
14237         No_Run_Time mode and is not needed since the binder does not generate
14238         references for things in libgnat anyway.
14240         * sem_ch3.adb (Access_Type_Declaration): Reorganize code to avoid GCC
14241         warning.
14243 2004-05-14  Thomas Quinot  <quinot@act-europe.fr>
14245         * gnat_ugn.texi: Document AIX-specific issue with initialization of
14246         resolver library.
14248         * exp_ch4.adb (Insert_Dereference_Action): Do not generate dereference
14249         action for the case of an actual parameter in an init proc call.
14251 2004-05-14  Ed Schonberg  <schonberg@gnat.com>
14253         * sem_ch4.adb (Analyze_Selected_Component): If prefix is a protected
14254         subtype, check visible entities in base type.
14256         * exp_ch7.adb (Clean_Simple_Protected_Objects): Do not generate cleanup
14257         actions if the object is a renaming.
14259         * sem_ch12.adb (Same_Instantiated_Entity): Predicate for
14260         Check_Formal_Package_Instance, to determine more precisely when the
14261         formal and the actual denote the same entity.
14263 2004-05-14  Javier Miranda  <miranda@gnat.com>
14265         * par-ch10.adb (P_Context_Clause): Complete documentation on AI-262
14267         * sem_ch10.adb (Analyze_With_Clause): After analyzed, the entity
14268         corresponding to a private_with must be removed from visibility; it
14269         will be made visible later, just before we analyze the private part of
14270         the package.
14271         (Check_Private_Child_Unit): Allow private_with clauses in public
14272         siblings.
14273         (Install_Siblings): Make visible the private entities of private-withed
14274         siblings.
14275         (Install_Withed_Unit): Do not install the private withed unit if we
14276         are compiling a package declaration and the Private_With_OK flag was
14277         not set by the caller. These declarations will be installed later,
14278         just before we analyze the private part of the package.
14280         * sem_ch3.adb (Analyze_Object_Declaration): In case of errors detected
14281         during the evaluation of the expression that initializes the object,
14282         decorate it with the expected type to avoid cascade errors.
14283         Code cleanup.
14285         * sem_ch6.adb (Analyze_Subprogram_Body): If we are compiling a library
14286         subprogram we have to install the private_with clauses after its
14287         specification has been analyzed (as documented in AI-262.TXT).
14289         * sem_ch8.adb (Has_Private_With): New function. Determines if the
14290         current compilation unit has a private with on a given entity.
14291         (Find_Direct_Name): Detect the Beaujolais problem described in
14292         AI-262.TXT
14294         * sem_utils.ads, sem_util.adb (Is_Ancestor_Package): New function. It
14295         provides the functionality of the function Is_Ancestor that was
14296         previously available in sem_ch10. It has been renamed to avoid
14297         overloading.
14299         * sprint.adb (Sprint_Node_Actual): Print limited_with clauses
14301 2004-05-14  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14303         * utils.c (build_vms_descriptor): Use SImode pointers.
14305 2004-05-14  Vasiliy Fofanov  <fofanov@act-europe.fr>
14307         * gnat_ugn.texi: Revised chapter "GNAT and Libraries".
14309 2004-05-14  GNAT Script  <nobody@gnat.com>
14311         * Make-lang.in: Makefile automatically updated
14313 2004-05-14  Arnaud Charlet  <charlet@act-europe.fr>
14315         Renaming of target specific files for clarity
14317         * Makefile.in: Rename GNAT target specific files.
14319         * 31soccon.ads, 31soliop.ads 35soccon.ads, 3asoccon.ads,
14320         3bsoccon.ads, 3gsoccon.ads, 3hsoccon.ads, 3psoccon.ads,
14321         3ssoccon.ads, 3ssoliop.ads, 3veacodu.adb, 3vexpect.adb,
14322         3vsoccon.ads, 3vsocthi.adb, 3vsocthi.ads, 3vtrasym.adb,
14323         3wsoccon.ads, 3wsocthi.adb, 3wsocthi.ads, 3wsoliop.ads,
14324         3zsoccon.ads, 3zsocthi.adb, 3zsocthi.ads, 41intnam.ads,
14325         42intnam.ads, 45intnam.ads, 4aintnam.ads, 4cintnam.ads,
14326         4gintnam.ads, 4hexcpol.adb, 4hintnam.ads, 4lintnam.ads,
14327         4nintnam.ads, 4ointnam.ads, 4onumaux.ads, 4pintnam.ads,
14328         4sintnam.ads, 4vcaldel.adb, 4vcalend.adb, 4vcalend.ads,
14329         4vintnam.ads, 4wcalend.adb, 4wexcpol.adb, 4wintnam.ads,
14330         4zintnam.ads, 4znumaux.ads, 4zsytaco.adb, 4zsytaco.ads,
14331         51osinte.adb, 51osinte.ads, 51system.ads,
14332         52osinte.adb, 52osinte.ads, 53osinte.ads, 54osinte.ads,
14333         55osinte.adb, 55osinte.ads, 55system.ads, 56osinte.adb,
14334         56osinte.ads, 56system.ads, 56taprop.adb, 56taspri.ads,
14335         56tpopsp.adb, 57system.ads, 58system.ads,
14336         5amastop.adb, 5aml-tgt.adb, 5aosinte.adb, 5aosinte.ads,
14337         5asystem.ads, 5ataprop.adb, 5atasinf.ads, 5ataspri.ads,
14338         5atpopsp.adb, 5avxwork.ads, 5bml-tgt.adb, 5bosinte.adb,
14339         5bosinte.ads, 5bsystem.ads, 5cosinte.ads, 5csystem.ads,
14340         5dsystem.ads, 5esystem.ads, 5fintman.adb, 5fosinte.adb,
14341         5fosinte.ads, 5fsystem.ads, 5ftaprop.adb, 5ftasinf.ads,
14342         5ginterr.adb, 5gintman.adb, 5gmastop.adb, 5gml-tgt.adb,
14343         5gosinte.ads, 5gproinf.adb, 5gproinf.ads, 5gsystem.ads,
14344         5gtaprop.adb, 5gtasinf.adb, 5gtasinf.ads, 5gtpgetc.adb,
14345         5hml-tgt.adb, 5hosinte.adb, 5hosinte.ads, 5hparame.ads,
14346         5hsystem.ads, 5htaprop.adb, 5htaspri.ads, 5htraceb.adb,
14347         5iosinte.adb, 5iosinte.ads, 5itaprop.adb, 5itaspri.ads,
14348         5ksystem.ads, 5kvxwork.ads, 5lml-tgt.adb, 5losinte.ads,
14349         5lparame.adb, 5lsystem.ads, 5msystem.ads, 5mvxwork.ads,
14350         5ninmaop.adb, 5nintman.adb, 5nosinte.ads, 5nsystem.ads,
14351         5ntaprop.adb, 5ntaspri.ads, 5ointerr.adb, 5omastop.adb,
14352         5oosinte.adb, 5oosinte.ads, 5oosprim.adb, 5oparame.adb,
14353         5osystem.ads, 5otaprop.adb, 5otaspri.ads, 5posinte.ads,
14354         5posprim.adb, 5psystem.ads, 5pvxwork.ads, 5sintman.adb,
14355         5sml-tgt.adb, 5sosinte.adb, 5sosinte.ads, 5sosprim.adb,
14356         5sparame.adb, 5ssystem.ads, 5staprop.adb, 5stasinf.adb,
14357         5stasinf.ads, 5staspri.ads, 5stpopsp.adb, 5svxwork.ads,
14358         5tosinte.ads, 5usystem.ads, 5vasthan.adb, 5vdirval.adb,
14359         5vinmaop.adb, 5vinterr.adb, 5vintman.adb, 5vintman.ads,
14360         5vmastop.adb, 5vml-tgt.adb, 5vosinte.adb, 5vosinte.ads,
14361         5vosprim.adb, 5vosprim.ads, 5vparame.ads, 5vsymbol.adb,
14362         5vsystem.ads, 5vtaprop.adb, 5vtaspri.ads, 5vtpopde.adb,
14363         5vtpopde.ads, 5vtraent.adb, 5vtraent.ads, 5vvaflop.adb,
14364         5wdirval.adb, 5wgloloc.adb, 5wintman.adb, 5wmemory.adb,
14365         5wml-tgt.adb, 5wosinte.ads, 5wosprim.adb, 5wsystem.ads,
14366         5wtaprop.adb, 5wtaspri.ads, 5xparame.ads, 5xsystem.ads,
14367         5xvxwork.ads, 5yparame.ads, 5ysystem.ads, 5zinterr.adb,
14368         5zintman.adb, 5zintman.ads, 5zml-tgt.adb, 5zosinte.adb,
14369         5zosinte.ads, 5zosprim.adb, 5zparame.ads, 5zstchop.adb,
14370         5zsystem.ads, 5ztaprop.adb, 5ztaspri.ads, 5ztfsetr.adb,
14371         5ztpopsp.adb, 6vcpp.adb, 6vcstrea.adb, 6vinterf.ads,
14372         7sinmaop.adb, 7sintman.adb, 7sosinte.adb, 7sosprim.adb,
14373         7staprop.adb, 7staspri.ads, 7stfsetr.adb, 7stpopsp.adb,
14374         7straceb.adb, 7straces.adb, 7strafor.adb, 7strafor.ads,
14375         7stratas.adb, 86numaux.adb, 86numaux.ads: Replaced by files below.
14377         * a-caldel-vms.adb, a-calend-mingw.adb, a-calend-vms.adb,
14378         a-calend-vms.ads, a-dirval-mingw.adb, a-dirval-vms.adb,
14379         a-excpol-abort.adb, a-excpol-interix.adb, a-intnam-aix.ads,
14380         a-intnam-dummy.ads, a-intnam-freebsd.ads, a-intnam-hpux.ads,
14381         a-intnam-interix.ads, a-intnam-irix.ads, a-intnam-linux.ads,
14382         a-intnam-lynxos.ads, a-intnam-mingw.ads, a-intnam-os2.ads,
14383         a-intnam-solaris.ads, a-intnam-tru64.ads, a-intnam-unixware.ads,
14384         a-intnam-vms.ads, a-intnam-vxworks.ads, a-numaux-libc-x86.ads,
14385         a-numaux-vxworks.ads, a-numaux-x86.adb, a-numaux-x86.ads,
14386         a-sytaco-vxworks.adb, a-sytaco-vxworks.ads, g-eacodu-vms.adb,
14387         g-expect-vms.adb, g-soccon-aix.ads, g-soccon-freebsd.ads,
14388         g-soccon-hpux.ads, g-soccon-interix.ads, g-soccon-irix.ads,
14389         g-soccon-mingw.ads, g-soccon-solaris.ads, g-soccon-tru64.ads,
14390         g-soccon-unixware.ads, g-soccon-vms.adb, g-soccon-vxworks.ads,
14391         g-socthi-mingw.adb, g-socthi-mingw.ads, g-socthi-vms.adb,
14392         g-socthi-vms.ads, g-socthi-vxworks.adb, g-socthi-vxworks.ads,
14393         g-soliop-mingw.ads, g-soliop-solaris.ads, g-soliop-unixware.ads,
14394         g-trasym-vms.adb, i-cpp-vms.adb, i-cstrea-vms.adb,
14395         interfac-vms.ads, mlib-tgt-aix.adb, mlib-tgt-hpux.adb,
14396         mlib-tgt-irix.adb, mlib-tgt-linux.adb, mlib-tgt-mingw.adb,
14397         mlib-tgt-solaris.adb, mlib-tgt-tru64.adb, mlib-tgt-vms.adb,
14398         mlib-tgt-vxworks.adb, s-asthan-vms.adb, s-gloloc-mingw.adb,
14399         s-inmaop-dummy.adb, s-inmaop-posix.adb, s-inmaop-vms.adb,
14400         s-interr-dummy.adb, s-interr-sigaction.adb, s-interr-vms.adb,
14401         s-interr-vxworks.adb, s-intman-dummy.adb, s-intman-irix.adb,
14402         s-intman-irix-athread.adb, s-intman-mingw.adb, s-intman-posix.adb,
14403         s-intman-solaris.adb, s-intman-vms.adb, s-intman-vms.ads,
14404         s-intman-vxworks.adb, s-intman-vxworks.ads, s-mastop-irix.adb,
14405         s-mastop-tru64.adb, s-mastop-vms.adb, s-mastop-x86.adb,
14406         s-memory-mingw.adb, s-osinte-aix.adb, s-osinte-aix.ads,
14407         s-osinte-aix-fsu.ads, s-osinte-dummy.ads, s-osinte-freebsd.adb,
14408         s-osinte-freebsd.ads, s-osinte-fsu.adb, s-osinte-hpux.ads,
14409         s-osinte-hpux-dce.adb, s-osinte-hpux-dce.ads, s-osinte-interix.ads,
14410         s-osinte-irix.adb, s-osinte-irix.ads, s-osinte-irix-athread.ads,
14411         s-osinte-linux.ads, s-osinte-linux-fsu.ads, s-osinte-linux-ia64.ads,
14412         s-osinte-lynxos-3.adb, s-osinte-lynxos-3.ads, s-osinte-lynxos.adb,
14413         s-osinte-lynxos.ads, s-osinte-mingw.ads, s-osinte-os2.adb,
14414         s-osinte-os2.ads, s-osinte-posix.adb, s-osinte-solaris.adb,
14415         s-osinte-solaris.ads, s-osinte-solaris-fsu.ads,
14416         s-osinte-solaris-posix.ads, s-osinte-tru64.adb, s-osinte-tru64.ads,
14417         s-osinte-unixware.adb, s-osinte-unixware.ads, s-osinte-vms.adb,
14418         s-osinte-vms.ads, s-osinte-vxworks.adb,
14419         s-osinte-vxworks.ads, s-osprim-mingw.adb,
14420         s-osprim-os2.adb, s-osprim-posix.adb, s-osprim-solaris.adb,
14421         s-osprim-unix.adb, s-osprim-vms.adb, s-osprim-vms.ads,
14422         s-osprim-vxworks.adb, s-parame-ae653.ads, s-parame-hpux.ads,
14423         s-parame-linux.adb, s-parame-os2.adb, s-parame-solaris.adb,
14424         s-parame-vms.ads, s-parame-vms-restrict.ads, s-parame-vxworks.ads,
14425         s-proinf-irix-athread.adb, s-proinf-irix-athread.ads,
14426         s-stchop-vxworks.adb, s-taprop-dummy.adb,
14427         s-taprop-hpux-dce.adb, s-taprop-irix.adb,
14428         s-taprop-irix-athread.adb, s-taprop-linux.adb, s-taprop-lynxos.adb,
14429         s-taprop-mingw.adb, s-taprop-os2.adb, s-taprop-posix.adb,
14430         s-taprop-solaris.adb, s-taprop-tru64.adb, s-taprop-vms.adb,
14431         s-taprop-vxworks.adb, s-tasinf-irix.ads, s-tasinf-irix-athread.adb,
14432         s-tasinf-irix-athread.ads, s-tasinf-solaris.adb, s-tasinf-solaris.ads,
14433         s-tasinf-tru64.ads, s-taspri-dummy.ads, s-taspri-hpux-dce.ads,
14434         s-taspri-linux.ads, s-taspri-lynxos.ads, s-taspri-mingw.ads,
14435         s-taspri-os2.ads, s-taspri-posix.ads, s-taspri-solaris.ads,
14436         s-taspri-tru64.ads, s-taspri-vms.ads, s-taspri-vxworks.ads,
14437         s-tfsetr-default.adb, s-tfsetr-vxworks.adb, s-tpopde-vms.adb,
14438         s-tpopde-vms.ads, s-tpopsp-lynxos.adb, s-tpopsp-posix.adb,
14439         s-tpopsp-posix-foreign.adb, s-tpopsp-solaris.adb, s-tpopsp-vxworks.adb,
14440         s-traceb-hpux.adb, s-traceb-mastop.adb, s-traces-default.adb,
14441         s-traent-vms.adb, s-traent-vms.ads, s-trafor-default.adb,
14442         s-trafor-default.ads, s-tratas-default.adb, s-vaflop-vms.adb,
14443         s-vxwork-alpha.ads, s-vxwork-m68k.ads, s-vxwork-mips.ads,
14444         s-vxwork-ppc.ads, s-vxwork-sparcv9.ads, s-vxwork-xscale.ads,
14445         symbols-vms.adb, system-aix.ads, system-freebsd-x86.ads,
14446         system-hpux.ads, system-interix.ads, system-irix-n32.ads,
14447         system-irix-o32.ads, system-linux-x86_64.ads,
14448         system-linux-x86.ads, system-lynxos-ppc.ads, system-lynxos-x86.ads,
14449         system-mingw.ads, system-os2.ads, system-solaris-sparc.ads,
14450         system-solaris-sparcv9.ads, system-solaris-x86.ads, system-tru64.ads,
14451         system-unixware.ads, system-vms.ads, system-vms-zcx.ads,
14452         system-vxworks-alpha.ads, system-vxworks-m68k.ads,
14453         system-vxworks-mips.ads, system-vxworks-ppc.ads,
14454         system-vxworks-sparcv9.ads, system-vxworks-xscale.ads: Replace files
14455         above.
14457 2004-05-13  Zack Weinberg  <zack@codesourcery.com>
14459         * trans.c (gnat_stabilize_reference_1): Remove case 'b'.
14461 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
14463         Merge from tree-ssa-20020619-branch.
14465         * config-lang.in (boot_language, build_by_default): Set
14466         to no.
14467         * utils.c (unchecked_convert): Use OEP_ONLY_CONST.
14468         (max_size): Add static chain op for call_expr.
14470 2004-05-12  Richard Sandiford  <rsandifo@redhat.com>
14472         PR target/15331
14473         * 5gmastop.adb (Roff): Choose between '4' and '0', not '4' and ' '.
14475 2004-05-11  Roger Sayle  <roger@eyesopen.com>
14477         * utils.c (max_size): Use MIN_EXPR to find the minimum value of a
14478         COND_EXPR.
14480 2004-05-10  Doug Rupp  <rupp@gnat.com>
14482         * 5qsystem.ads: Remove Short_Address subtype declaration. Moved to
14483         system.aux_dec.
14485         * s-auxdec.ads: Add Short_Address subtype (moved here from System).
14487         * Makefile.in: [VMS]: Add translation for 5qauxdec.ads.
14489         * init.c: [VMS] Macroize LIB$ calls for IA64 and Alpha.
14490         Fixes undefined symbols in IA64 gnatlib.
14492         * 5vinmaop.adb: Reference s-auxdec for Short_Address.
14494         * 5xsystem.ads, 5vsystem.ads: Back out last change (addition of subtype
14495         Short_Address). This will be moved to system.auxdec.
14497 2004-05-10  Thomas Quinot  <quinot@act-europe.fr>
14499         * sem_util.adb: Replace test for presence of a node that is always
14500         present with a call to Discard_Node.
14502         * sem_ch10.adb (Analyze_Compilation_Unit): Remove superfluous call to
14503         Analyze on the library unit node after generation of distribution stub
14504         constructs.  The call was a no-op because Unit_Node has already been
14505         Analyzed, and the tree fragments for the distribution stubs are
14506         analyzed as they are inserted in Exp_Dist.
14507         Update comment regarding to distribution stubs to reflect that we
14508         do not generate stub in separate files anymore.
14510         * einfo.ads: Clarify the fact that a tagged private type has the
14511         E_Record_Type_With_Private Ekind.
14513         * erroutc.adb: Minor reformatting
14515         * erroutc.ads (Max_Msg_Length): Increase to cover possible larger
14516         values if line length is increased using -gnatyM (noticed during code
14517         reading).
14519         * eval_fat.adb: Minor reformatting
14520         Put spaces around exponentiation operator
14522 2004-05-10  Ed Schonberg  <schonberg@gnat.com>
14524         PR ada/15005
14525         * sem_util.adb (Is_Dependent_Component_Of_Mutable_Object): If prefix
14526         has been rewritten as an explicit dereference, retrieve type of
14527         original node to check for possibly unconstrained record type.
14529 2004-05-10  Ed Schonberg  <schonberg@gnat.com>
14531         * exp_ch7.adb (Check_Visibly_Controlled): If given operation is not
14532         overriding, use the operation of the parent unconditionally.
14534         * sem_ch4.adb (Remove_Address_Interpretations): Remove address
14535         operation when either operand is a literal, to avoid further
14536         ambiguities.
14538         * sem_ch6.adb (New_Overloaded_Entity): If new entity is inherited and
14539         overridden by a previous explicit declaration, mark the previous entity
14540         as overriding.
14542         * sem_disp.adb (Check_Dispatching_Operation): New predicate
14543         Is_Visibly_Controlled, to determine whether a declaration of a
14544         primitive control operation for a derived type overrides an inherited
14545         one. Add warning if the explicit declaration does not override.
14547 2004-05-10  Vincent Celier  <celier@gnat.com>
14549         * gnatls.adb (Gnatls): Initialize Snames, to avoid assertion error in
14550         some cases when the sources are no longer present.
14552         * make.adb (Collect_Arguments): Fail if an external source, not part
14553         of any project need to be compiled, when switch -x has not been
14554         specified.
14556         * makeusg.adb: Document new switch -x
14558         * opt.ads (External_Unit_Compilation_Allowed): New Boolean flag,
14559         defaulted to False.
14561         * switch-m.adb (Scan_Make_Switches): New switch -x
14563         * vms_data.ads: Add VMS qualifier /NON_PROJECT_UNIT_COMPILATION for
14564         gnatmake switch -x.
14566         * gnat_ugn.texi: Document new gnatmake switch -x
14568 2004-05-10  Eric Botcazou  <ebotcazou@act-europe.fr>
14570         * misc.c (gnat_init_options): Set flag_zero_initialized_in_bss to 0.
14572         * utils.c (create_var_decl): Do not modify the DECL_COMMON flag.
14573         (process_attributes): Likewise.
14575 2004-05-10  Joel Brobecker  <brobecker@gnat.com>
14577         * s-inmaop.ads: Fix spelling mistake in one of the comments.
14579 2004-05-10  Robert Dewar  <dewar@gnat.com>
14581         * gnat_ugn.texi: Document that for config pragma files, the maximum
14582         line length is always 32767.
14584         * gnat_rm.texi: For pragma Eliminate, note that concatenation of string
14585         literals is now allowed.
14587         * gnat-style.texi: Remove statement about splitting long lines before
14588         an operator rather than after, since we do not follow this rule at all.
14589         Clarify rule (really lack of rule) for spaces around exponentiation
14591         * sem_elim.adb: Allow concatenation of string literals as well as a
14592         single string literal for pragma arguments.
14594         * sem_prag.ads, sem_prag.adb: (Is_Config_Static_String): New function
14596         * a-textio.adb (Terminate_Line): Do not add line feed if nothing
14597         written for append case.
14599         * frontend.adb: Changes to avoid checking max line length in config
14600         pragma files.
14602         * g-os_lib.ads: Minor reformatting
14604         * mlib-utl.adb: Do not define Max_Line_Length locally (definition was
14605         wrong in any case. Instead use standard value. Noticed during code
14606         reading.
14608         * opt.ads (Max_Line_Length): New field, used to implement removal of
14609         limitation on length of lines when scanning config pragma files.
14611         * osint.ads, prj-dect.adb, prj-strt.adb, prj-tree.adb,
14612         makeutl.ads, makeutl.adb: Minor reformatting
14614         * scn.adb: Do not check line length while scanning config pragma files
14615         Do not check line length while scanning out license information
14617         * scng.adb: Changes to avoid line length checks while parsing config
14618         pragma files.
14620 2004-05-10  GNAT Script  <nobody@gnat.com>
14622         * Make-lang.in: Makefile automatically updated
14624 2004-05-05  Arnaud Charlet  <charlet@act-europe.fr>
14626         * osint.adb (Find_Program_Name): Fix handling of VMS version
14627         number.
14629 2004-05-05  Emmanuel Briot  <briot@act-europe.fr>
14631         * g-os_lib.ads (Invalid_Time): New constant
14633         * adaint.h, adaint.c (__gnat_file_time_name, __gnat_file_time_fd): Now
14634         return OS_Time instead of time_t to match what is imported by Ada.
14635         Now return -1 if the file doesn't exist, instead of a random value
14637 2004-05-05  Robert Dewar  <dewar@gnat.com>
14639         * usage.adb: Add line for -gnatR?s switch
14641         * sem_ch13.adb, exp_ch2.adb: Minor reformatting
14643         * g-regpat.ads, g-regpat.adb: Add documentation on handling of Size
14644         and for Match (Data_First, Data_last)
14646         * lib-writ.adb (Write_With_Lines): Ensure that correct index number is
14647         written when we are dealing with multi-unit files.
14649 2004-05-05  Jerome Guitton  <guitton@act-europe.fr>
14651         * Makefile.in: Remove unused targets and variables.
14653 2004-05-05  Vincent Celier  <celier@gnat.com>
14655         * switch-m.adb: New gnatmake switch -eI
14657         * vms_data.ads: Add VMS equivalents of new gnatclean swith -innn and
14658         of new gnatmake switch -eInnn.
14660         * makegpr.adb: Take into account new parameters Index and Src_Index in
14661         Prj.Util.
14663         * clean.adb: Implement support for multi-unit sources, including new
14664         switch -i.
14666         * gnatcmd.adb (GNATCmd): Call Prj.Util.Value_Of with new parameter
14667         Src_Index.
14669         * make.ads, make.adb (Insert_Q): New parameter Index, defaulted to 0
14670         (Extract_From_Q): New out parameter Index
14671         (Mark, Is_Marked): Subprograms moved to Makeutl
14672         (Switches_Of): New parameter Source_Index
14673         (Add_Switch): New parameter Index
14674         (Check): New parameter Source_Index
14675         (Collect_Arguments): New parameter Source_Index
14676         (Collect_Arguments_And_Compile): New parameter Source_Index
14677         (Compile): New parameter Source_Index
14678         Put subprograms in alphabetical order
14679         Add support for multi-source sources, including in project files.
14681         * makeutl.ads, makeutl.adb (Unit_Index_Of): New function
14682         (Mark, Is_Marked, Delete_All_Marks): New subprograms, moved from
14683         Make.
14685         * makeusg.adb: New gnatmake switch -eInnn
14687         * mlib-prj.adb (Build_Library): Add new parameter Src_Index to call to
14688         Prj.Util.Value_Of.
14690         * opt.ads (Main_Index): New variable, defaulted to 0.
14692         * osint.ads, osinte.adb (Add_File): New parameter Index
14693         (Current_Source_Index): New function
14695         * prj.adb: Take into account new components Index and Src_Index
14697         * prj.ads (String_Element): New component Index
14698         (Variable_Value): New component Index
14699         (Array_Element): New component Src_Index
14701         * prj-attr.adb: Indicate that optional index may be specified for
14702         attributes Main, Executable, Spec, Body and some of Switches.
14704         * prj-attr.ads (Attribute_Kind): New values for optional indexes
14705         (Attribute_Record): New component Optional_Index
14707         * prj-com.ads (File_Name_Data): New component Index
14709         * prj-dect.adb (Parse_Attribute_Declaration): Process optional index
14711         * prj-env.adb (Put): Output optional index
14713         * prj-makr.adb: Put indexes for multi-unit sources in SFN pragmas and
14714         attributes Spec and Body.
14716         * prj-nmsc.adb: Process optional indexes
14718         * prj-pp.adb: Ouput "at" for optional indexes
14720         * prj-proc.adb: Take into account optional indexes
14722         * prj-strt.ads, prj-strt.adb (Terms): New Boolean parameter
14723         Optional_Index. For string literal,
14724         process optional index when Optional_Index is True.
14725         (Parse_Expresion): New Boolean parameter Optional_Index
14727         * prj-tree.ads, prj-tree.adb (Source_Index_Of): New function
14728         (Set_Source_Index_Of): New procedure
14730         * prj-util.adb (Executable_Of, Value_Of): Take into account optional
14731         index.
14733         * prj-util.ads (Executable_Of): New parameter Index
14734         (Value_Of (Name_Id, Array_Element_Id) returning Variable_Value):
14735         New parameter Src_Index, defaulted to 0.
14737 2004-05-05  Ed Schonberg  <schonberg@gnat.com>
14739         PR ada/15257
14740         * sem_ch3.adb (Access_Definition): If this is an access parameter
14741         whose designated type is imported through a limited_with clause, do
14742         not add the enclosing subprogram to the list of private dependents of
14743         the type.
14745 2004-05-05  Ed Schonberg  <schonberg@gnat.com>
14747         PR ada/15258
14748         * sem_ch6.adb (Base_Types_Match): True if one type is imported through
14749         a limited_with clause, and the other is its non-limited view.
14751 2004-05-05  Thomas Quinot  <quinot@act-europe.fr>
14753         * cstand.adb (Create_Standard): Initialize Stand.Boolean_Literals.
14755         * exp_attr.adb, exp_ch5.adb, exp_ch9.adb, exp_disp.adb,
14756         exp_fixd.adb, sem_attr.adb, sem_dist.adb, sem_util.adb: Use
14757         Stand.Boolean_Literals to produce references to entities
14758         Standard_False and Standard_True from compile-time computed boolean
14759         values.
14761         * stand.ads (Boolean_Literals): New variable, provides the entity
14762         values for False and True, for use by the expander.
14764 2004-05-05  Doug Rupp  <rupp@gnat.com>
14766         * 5vinmaop.adb, 5[vx]system.ads: Add Short_Address subtype
14767         5vinmaop.adb: Unchecked convert Short_Address vice Address
14769         * adaint.c, raise.c: Caste CRTL function return value
14770         to avoid gcc error on 32/64 bit IVMS.
14772         * Makefile.in [VMS]: Use iar archiver if host = Alpha/VMS and
14773         target = IA64/VMS.
14775         * init.c[VMS]: Only call Alpha specific __gnat_error_prehandler IN_RTS.
14777         * 5qsystem.ads (Address): Declare as Long_Integer
14778         (Short_Address): Declare as 32 bit subtype of Address
14779         Declare  abstract address operations to avoid gratuitous ambiguities.
14781 2004-05-05  Jose Ruiz  <ruiz@act-europe.fr>
14783         * gnat_rm.texi: Use the new restriction Simple_Barriers (AI-249)
14784         instead of the old Boolean_Entry_Barriers.
14785         Ditto for No_Task_Attributes_Package instead of No_Task_Attributes.
14787 2004-05-05  GNAT Script  <nobody@gnat.com>
14789         * Make-lang.in: Makefile automatically updated
14791 2004-05-03  Arnaud Charlet  <charlet@act-europe.fr>
14793         * 50system.ads, 59system.ads, s-thread.ads: Removed, no longer used.
14795 2004-05-03  Olivier Hainque  <hainque@act-europe.fr>
14797         PR ada/15152
14799         * exp_ch2.adb (Expand_Current_Value): Leave Machine_Code Asm arguments
14800         alone. Replacing object references by literals is inappropriate in a
14801         so low level context.
14803 2004-05-03  Arnaud Charlet  <charlet@act-europe.fr>
14805         * a-exexpr.adb: Add comments
14807 2004-05-03  Joel Brobecker  <brobecker@gnat.com>
14809         * a-tags.adb (Tag_Table): Add Index_Check pragma Suppress. Allows us to
14810         declare the Ancestor_Tags array in Type_Specific_Data with a small size
14811         without risking a bounds check error when accessing one of its
14812         components.
14813         (Type_Specific_Data): Define Ancestor_Tags as a small array.
14814         This prevents us from hitting a limitation during the debug info
14815         generation when using stabs.
14817         * a-tags.adb (Dispatch_Table): Define the Prims_Ptr component as a
14818         small array.
14819         This prevents us from hitting a limitation during the debug info
14820         generation when using stabs.
14822 2004-05-03  Eric Botcazou  <ebotcazou@act-europe.fr>
14824         lang-specs.h: Remove -gnatz* from specs.
14826 2004-05-03  Vincent Celier  <celier@gnat.com>
14828         * gprmake.adb, makegpr.ads, makegpr.adb: New files.
14830         * Make-lang.in, Makefile.in: Add gprmake
14832 2004-05-03  Thomas Quinot  <quinot@act-europe.fr>
14834         * sem_aggr.adb: Fix typo in comment.
14836 2004-05-03  Robert Dewar  <dewar@gnat.com>
14838         * make.adb: Minor reformatting
14840         * rtsfind.ads, rtsfind.adb: (RTU_Loaded): New function
14842         * sem_attr.adb (Eval_Attribute, case Type_Class): Fix check for address
14843         so that it works when address is not a private type.
14845         * sem_ch13.adb (Check_Expr_Constants, case N_Integer_Literal): Deal
14846         properly with rewritten unchecked conversions. This prevents
14847         order-of-elaboration issues that can otherwise arise.
14848         (Minimum_Size): Don't check size of access types under VMS
14850         * sem_ch4.adb (Remove_Address_Interpretation): New circuit to remove
14851         interpretations of integer literals as type System.Address.
14853         * sem_util.ads, sem_util.adb (Is_Descendent_Of_Address): New function
14854         (Is_Descendent_Of): New function
14856 2004-05-03  Jose Ruiz  <ruiz@act-europe.fr>
14858         * sem_prag.adb: Boolean_Entry_Barriers is a synonym of Simple_Barriers.
14859         Max_Entry_Queue_Depth is a synonym of Max_Entry_Queue_Length.
14860         No_Dynamic_Interrupts is a synonym of No_Dynamic_Attachment.
14862         * sem_res.adb: Use the new restriction Max_Entry_Queue_Length instead
14863         of the old Max_Entry_Queue_Depth.
14865         * snames.adb: Boolean_Entry_Barriers is a synonym of Simple_Barriers.
14866         Max_Entry_Queue_Depth is a synonym of Max_Entry_Queue_Length
14867         No_Dynamic_Interrupts is a synonym of No_Dynamic_Attachment
14869         * snames.ads: New entry for proper handling of Boolean_Entry_Barriers.
14870         New entry for proper handling of Max_Entry_Queue_Depth.
14871         New entry for proper handling of No_Dynamic_Interrupts.
14873         * s-rident.ads: Adding restriction Simple_Barriers (AI-00249) that
14874         supersedes the GNAT specific restriction Boolean_Entry_Barriers.
14875         Adding restriction Max_Entry_Queue_Length (AI-00249) that supersedes
14876         the GNAT specific restriction Max_Entry_Queue_Depth.
14877         Adding restriction No_Dynamic_Attachment (AI-00249) that supersedes
14878         the GNAT specific restriction No_Dynamic_Interrupts.
14880         * restrict.ads, restrict.adb: Use the new restriction Simple_Barriers
14881         instead of the old Boolean_Entry_Barriers.
14882         Use the new restriction No_Dynamic_Attachment instead of the old
14883         No_Dynamic_Interrupts.
14885         * exp_ch9.adb: Check restriction Simple_Barriers (AI-00249) that
14886         supersedes the GNAT specific restriction Boolean_Entry_Barriers.
14888         * gnatbind.adb: Use the new restriction Max_Entry_Queue_Length instead
14889         of the old Max_Entry_Queue_Depth.
14891 2004-05-03  GNAT Script  <nobody@gnat.com>
14893         * Make-lang.in: Makefile automatically updated
14895 2004-04-29  Ed Schonberg  <schonberg@gnat.com>
14897         * checks.adb (Enable_Range_Check): If the prefix of an index component
14898         is an access to an unconstrained array, perform check unconditionally.
14900 2004-04-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14902         * decl.c (gnat_to_gnu_field): Also call make_packable_type if
14903         Component_Clause.
14905 2004-04-29  Olivier Hainque  <hainque@act-europe.fr>
14907         * init.c (__gnat_install_handler, __gnat_error_handler): Remove
14908         alternate stack setting. There was no support for the tasking cases
14909         and the changes eventually caused a number of side-effect failures in
14910         the non-tasking case too.
14912 2004-04-29  Eric Botcazou  <ebotcazou@act-europe.fr>
14914         lang-specs.h: Redirect output to /dev/null if -gnatc or -gnatz or
14915         -gnats is passed.
14917 2004-04-29  Vincent Celier  <celier@gnat.com>
14919         * make.adb (Gnatmake): Increase max size of argument array for
14920         gnatbind for the potential addition of -F.
14921         If there are Stand-Alone Library projects, invoke gnatbind with -F to
14922         be sure that elaboration flags will be checked.
14924         * switch-c.adb: Correct call to Scan_Pos for -gnateI
14926 2004-04-29  Thomas Quinot  <quinot@act-europe.fr>
14928         * sem_warn.adb (Check_References): Move '<access-variable> may be
14929         null' warning out of under Warn_On_No_Value_Assigned.
14931 2004-04-29  Ed Falis  <falis@gnat.com>
14933         * gnat_ugn.texi: Fixed texi error
14935 2004-04-29  Robert Dewar  <dewar@gnat.com>
14937         * sem_ch4.adb (Remove_Abstract_Operations): Unconditionally remove
14938         abstract operations if they come from predefined files.
14940         * gnat_rm.texi: Fix bad doc for pragma Elaboration_Checks (should be
14941         Dynamic, not RM).
14943         * s-addope.adb: Correct obvious error in mod function
14945 2004-04-28  Andrew W. Reynolds  <awreynolds@mac.com>
14947         * Makefile.in: Add target pairs for powerpc darwin*
14948         tasking support.
14950         * a-intnam-darwin.ads, s-osinte-darwin.adb,
14951         s-osinte-darwin.ads, system-darwin-ppc.ads: New files.
14953 2004-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
14955         * Makefile.in: Add target macro definitions for s390*-linux*.
14956         * system-linux-s390.ads: New file.
14957         * system-linux-s390x.ads: New file.
14959 2004-04-28  Joseph S. Myers  <jsm@polyomino.org.uk>
14961         * gnat_ugn.texi: Correct argument to @setfilename.
14963 2004-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
14965         * a-exexpr.adb (Unwind_Word): New data type.
14966         (Unwind_Exception): Use it as type of Private1 and Private2.
14968         * raise.c (db_action_for): Fix debug printf.
14970 2004-04-27  Ed Schonberg  <schonberg@gnat.com>
14972         * a-wtmoio.ads: Formal type must be a modular type, not a signed
14973         integer type.
14975 2004-04-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14977         * decl.c (gnat_to_gnu_entity, case object): Call
14978         __builtin_update_setjmp_buf.
14980         * gigi.h (update_setjmp_buf): Deleted.
14981         (ADT_update_setjmp_buf_decl, update_setjmp_buf_decl): New.
14983         * misc.c: (update_setjmp_buf): Deleted.
14985         * trans.c (gnat_to_gnu): Call do_pending_stack_adjust and emit_queue
14986         around block of RTL.
14988         * utils.c (init_gigi_decls): Initialize update_setjmp_buf.
14990 2004-04-26  Thomas Quinot  <quinot@act-europe.fr>
14992         * sem_dist.adb, exp_dist.adb: When constructing a RAS value for a local
14993         subprogram for which no pragma All_Calls_Remote applies, store the
14994         address of the real subprogram in the underlying record type, so local
14995         dereferences do not go through the PCS.
14997 2004-04-26  Robert Dewar  <dewar@gnat.com>
14999         * i-c.ads: Add some type qualifications to avoid ambiguities when
15000         compiling with s-auxdec.ads and a non-private address type.
15002 2004-04-26  Arnaud Charlet  <charlet@act-europe.fr>
15004         * Makefile.rtl: Fix error in previous check-in:
15005         Add s-addope.o to non tasking object list (rather than tasking object
15006         list).
15008 2004-04-26  Javier Miranda  <miranda@gnat.com>
15010         * sem_aggr.adb: Fix typo in comments
15011         (Resolve_Aggr_Expr): Propagate the type to the nested aggregate.
15012         Required to check the null-exclusion attribute.
15014         * sem_attr.adb (Resolve_Attribute): Check the accessibility level in
15015         case of anonymous access types in record and array components. For a
15016         component definition the level is the same of the enclosing composite
15017         type.
15019         * sem_ch3.adb (Analyze_Component_Declaration): In case of components
15020         that are anonymous access types the level of accessibility depends on
15021         the enclosing type declaration. In order to have this information, set
15022         the scope of the anonymous access type to the enclosing record type
15023         declaration.
15024         (Array_Type_Declaration): In case of components that are anonymous
15025         access types the level of accessibility depends on the enclosing type
15026         declaration. In order to have this information, set the scope of the
15027         anonymous access type to the enclosing array type declaration.
15029         * sem_ch3.adb (Array_Type_Declaration): Set the scope of the anonymous
15030         access type.
15032         * sem_ch8.adb (Analyze_Object_Renaming): Add check to verify that
15033         renaming of anonymous access-to-constant types allowed if and only if
15034         the renamed object is access-to-constant.
15036         * sem_util.adb (Type_Access_Level): In case of anonymous access types
15037         that are component_definition or discriminants of a nonlimited type,
15038         the level is the same as that of the enclosing component type.
15040 2004-04-26  Sergey Rybin  <rybin@act-europe.fr>
15042         * sem_elim.adb: Some minor code reorganization from code reading. Fix
15043         misprint in the function name (File_Name_Match).
15045 2004-04-23  Laurent GUERBY <laurent@guerby.net>
15047         * Makefile.in: Remove RANLIB_TEST, use -$(RANLIB) including after
15048         install.
15050 2004-04-23  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
15052         * Make-lang.in (GNATBIND_OBJS): Add s-addope.o.
15054 2004-04-23  Emmanuel Briot  <briot@act-europe.fr>
15056         * adaint.c (__gnat_try_lock): No longer requires that the parent
15057         directory be writable, the directory itself is enough.
15058         (gnat_is_absolute_path): Change profile, so that the call from
15059         GNAT.OS_Lib can be made more efficient.
15061         * adaint.h (gnat_is_absolute_path): Change profile, so that the call
15062         from GNAT.OS_Lib can be made more efficient.
15064         * g-os_lib.adb (Is_Absolute_Path): More efficient implementation, avoid
15065         one copy of the file name. Found by code reading.
15067 2004-04-23  Vincent Celier  <celier@gnat.com>
15069         * gnat_ugn.texi: Add documentation for gnatmake switch -eL
15070         Correct documentation on gnatmake switches transmitted to the compiler
15072         * ali.ads: Minor comment fix
15074 2004-04-23  Javier Miranda  <miranda@gnat.com>
15076         * sem_ch6.adb: (Confirming Types): Code cleanup
15078         * decl.c (gnat_to_gnu_entity): Give support to anonymous access to
15079         subprogram types: E_Anonymous_Access_Subprogram_Type and
15080         E_Anonymous_Access_Protected_Subprogram_Type.
15082 2004-04-23  Thomas Quinot  <quinot@act-europe.fr>
15084         * sem_dist.adb: Add a new paramter to the RAS_Access TSS indicating
15085         whether a pragma All_Calls_Remote applies to the subprogram on which
15086         'Access is taken.
15087         No functional change is introduced by this revision; the new parameter
15088         will be used to allow calls to local RCI subprograms to be optimized
15089         to not use the PCS in the case where no pragma All_Calls_Remote applies,
15090         as is already done in the PolyORB implementation of the DSA.
15092         * exp_dist.adb: Add a new paramter to the RAS_Access TSS indicating
15093         whether a pragma All_Calls_Remote applies to the subprogram on which
15094         'Access is taken.
15095         No functional change is introduced by this revision; the new parameter
15096         will be used to allow calls to local RCI subprograms to be optimized
15097         to not use the PCS in the case where no pragma All_Calls_Remote applies,
15098         as is already done in the PolyORB implementation of the DSA.
15100 2004-04-23  Robert Dewar  <dewar@gnat.com>
15102         * Makefile.rtl: Add entry for s-addope.o in run time library list
15103         * Make-lang.in: Add entry for s-addope.o to GNAT1 objects
15104         * s-addope.ads, s-addope.adb: New files.
15106         * s-carsi8.adb, s-carun8.adb, s-casi16.adb, s-casi32.adb,
15107         s-casi64.adb, s-caun16.adb, s-caun32.adb, s-caun64.adb,
15108         s-finimp.adb, s-geveop.adb, s-stoele.adb: Modifications to allow
15109         System.Address to be non-private and signed.
15111         * sem_elim.adb: Minor reformatting (fairly extensive)
15112         Some minor code reorganization from code reading
15113         Add a couple of ??? comments
15115 2004-04-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15117         * trans.c (tree_transform, build_unit_elab): Don't call getdecls.
15118         (tree_transform, case N_If_Statement): Remove non-determinism.
15120         * utils.c (begin_subprog_body): Just set DECL_CONTEXT in PARM_DECL.
15122 2004-04-23  Sergey Rybin  <rybin@act-europe.fr>
15124         * gnat_rm.texi: Small fixes in the changes made in the 'pragma
15125         Eliminate' section.
15127         * snames.ads, snames.adb: Remove Name_Homonym_Number (Homonym_Number is
15128         no longer used as a parameter name for Eliminate pragma).
15130 2004-04-22  Laurent GUERBY <laurent@guerby.net>
15132         PR optimization/14984
15133         PR optimization/14985
15134         * trans.c (gigi): Fix non determinism leading to bootstrap
15135         comparison failures.
15137 2004-04-21  Pascal Obry  <obry@gnat.com>
15139         * adaint.c (__gnat_portable_spawn): Quote first argument (argv[0])
15140         passed to spawnvp() to properly handle program pathname with spaces on
15141         Win32.
15143 2004-04-21  Emmanuel Briot  <briot@act-europe.fr>
15145         * g-debpoo.adb (Print_Info): Avoid extra work if Display_Slots is False.
15146         (Allocate, Deallocate, Free_Physically): Make sure the tasks are
15147         unlocked in case of exceptions.
15149 2004-04-21  Joel Brobecker  <brobecker@gnat.com>
15151         * gigi.h (get_target_no_dollar_in_label): Remove extern declaration.
15152         This function does not exist anymore.
15154 2004-04-21  Thomas Quinot  <quinot@act-europe.fr>
15156         * gnatbind.adb, gnatlink.adb: Update name of imported C symbol.
15158         * link.c: Move variables to the __gnat name space.
15160         * Makefile.in: list link.o explicitly when needed.
15162         * mlib.adb: Remove pragma Linker_Option for "link.o" from mlib.
15164 2004-04-21  Javier Miranda  <miranda@gnat.com>
15166         * einfo.adb (Original_Access_Type): New subprogram
15167         (Set_Original_Access_Type): New subprogram
15168         (Write_Field21_Name): Write the name of the new field
15170         * einfo.ads (Original_Access_Type): New field present in access to
15171         subprogram types.
15172         Addition of two new entities: E_Anonymous_Access_Subprogram_Type, and
15173         E_Anonymous_Access_Protected_Subprogram_Type.
15175         * lib-xref.adb (Output_One_Ref): Give support to anonymous access to
15176         subprogram types.
15178         * lib-xref.ads (Xref_Entity_Letters): Initialize values corresponding
15179         to anonymous access to subprogram types.
15181         * sem_attr.adb (Resolve_Attribute): Give support to anonymous access
15182         to subprogram types.
15184         * sem_ch3.adb (Access_Definition): Complete decoration of entities
15185         corresponding to anonymous access to subprogram types.
15186         (Analyze_Component_Declaration): Add new actual to the call to
15187         subprogram replace_anonymous_access_to_protected_subprogram.
15188         (Array_Type_Declaration): Add new actual to the call to subprogram
15189         replace_anonymous_access_to_protected_subprogram.
15190         (Process_Discriminants): Add new actual to the call to subprogram
15191         replace_anonymous_access_to_protected_subprogram.
15192         (Replace_Anonymous_Access_To_Protected_Subprogram): New formal.
15194         * sem_ch3.ads (Replace_Anonymous_Access_To_Protected_Subprogram): New
15195         formal.
15197         * sem_ch6.adb, sem_type.adb, sem_res.adb: Give support to anonymous
15198         access to subprogram types.
15200         * sem_util.adb (Has_Declarations): Addition of package_specification
15201         nodes.
15203 2004-04-21  Ed Schonberg  <schonberg@gnat.com>
15205         * sem_prag.adb (Make_Inline): If subprogram is a renaming, propagate
15206         inlined flags to renamed entity only if in current unit.
15208 2004-04-21  Thomas Quinot  <quinot@act-europe.fr>
15210         * s-parint.ads: Add DSA implementation marker.
15212         * rtsfind.ads, rtsfind.adb, snames.ads, snames.adb, s-rpc.adb: Use the
15213         value of System.Partition_Interface.DSA_Implementation to determine
15214         what version of the distributed systems annex is available (no
15215         implementation, GLADE, or PolyORB).
15217 2004-04-21  Joel Brobecker  <brobecker@gnat.com>
15219         * targtyps.c (get_target_no_dollar_in_label): Remove, no longer used.
15221 2004-04-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15223         * utils.c (convert, case CONSTRUCTOR, COMPONENT_REF): Do not make node
15224         with new type if alias sets differ.
15225         Fixes ACATS c41103b.
15227 2004-04-21  Vincent Celier  <celier@gnat.com>
15229         * prj.ads: Remove FORTRAN as an accepted language: not tested yet.
15230         Add array Lang_Args for the language specific compiling argument
15231         switches.
15233         * gnat_ugn.texi: Explain in more details when a library is rebuilt.
15235 2004-04-21  Sergey Rybin  <rybin@act-europe.fr>
15237         * gnat_rm.texi: Update the descripton of the Eliminate pragma
15238         according to the recent changes in the format of the parameters of the
15239         pragma (replacing Homonym_Number with Source_Location).
15241 2004-04-19  Arnaud Charlet  <charlet@act-europe.fr>
15243         * 5isystem.ads: Removed, unused.
15245         * gnat_rm.texi: Redo 1.13 change.
15247 2004-04-19  Robert Dewar  <dewar@gnat.com>
15249         * s-stoele.ads: Clean up definition of Storage_Offset (the new
15250         definition is cleaner, avoids the kludge of explicit Standard operator
15251         references, and also is consistent with a visible System.Address with
15252         no visible operations.
15254         * s-geveop.adb: Add declarations to avoid assumption of visible
15255         operations on type System.Address (since these might not be available
15256         if Address is a non-private type for which the operations
15257         are made abstract).
15259         * sem_eval.adb: Minor reformatting
15261         * s-carsi8.ads, s-carun8.ads, s-casi16.ads, s-casi32.ads,
15262         s-casi64.ads, s-caun16.ads, s-caun32.ads, s-caun64.ads: Minor
15263         reformatting (new function spec format).
15265         * s-auxdec.adb, s-carsi8.adb, s-carun8.adb, s-casi16.adb,
15266         s-casi32.adb, s-casi64.adb, s-caun16.adb, s-caun32.adb,
15267         s-caun64.adb: Add declarations to avoid assumption of visible
15268         operations on type System.Address (since these might not be available
15269         if Address is a non-private type for which the operations are made
15270         abstract).
15272         * lib.ads, lib.adb (Synchronize_Serial_Number): New procedure.
15274         * exp_intr.adb: Minor comment update
15276         * exp_aggr.adb, exp_attr.adb, exp_ch13.adb: Minor reformatting.
15278         * 5omastop.adb: Add declarations to avoid assumption of visible
15279         operations on type System.Address (since these might not be available
15280         if Address is a non-private type for which the operations
15281         are made abstract).
15283 2004-04-19  Vincent Celier  <celier@gnat.com>
15285         * switch-m.adb: (Scan_Make_Switches): Process new switch -eL
15287         * prj-pars.ads (Parse): New Boolean parameter Process_Languages,
15288         defaulted to Ada.
15290         * prj-proc.adb (Process): New Boolean parameter Process_Languages,
15291         defaulted to Ada.
15292         Call Check with Process_Languages.
15293         (Check): New Boolean parameter Process_Languages. Call Recursive_Check
15294         with Process_Languages.
15295         (Recursive_Check): New Boolean parameter Process_Languages. Call
15296         Nmsc.Ada_Check or Nmsc.Other_Languages_Check according to
15297         Process_Languages.
15299         * prj-proc.ads (Process): New Boolean parameter Process_Languages,
15301         * prj-util.ads, prj-util.adb (Executable_Of): New Boolean
15302         parameter Ada_Main, defaulted to True.
15303         Check for Ada specific characteristics only when Ada_Main is True.
15305         * opt.ads: (Follow_Links): New Boolean flag for gnatmake
15307         * prj.adb: (Project_Empty): Add new Project_Data components.
15309         * prj.ads: New types and tables for non Ada languages.
15310         (Project_Data): New components Languages, Impl_Suffixes,
15311         First_Other_Source, Last_Other_Source, Imported_Directories_Switches,
15312         Include_Path, Include_Data_Set.
15314         * prj-env.ads, prj-env.adb: Minor reformatting
15316         * prj-nmsc.ads, prj-nmsc.adb: (Other_Languages_Check): New procedure
15317         Put subprograms in alphabetical order
15319         * prj-pars.adb (Parse): New Boolean parameter Process_Languages,
15320         defaulted to Ada; Call Prj.Proc.Process with Process_Languages and
15321         Opt.Follow_Links.
15323         * mlib-prj.adb: Back out modification in last version, as they are
15324         incorrect.
15325         (Build_Library.Check_Libs): Remove useless pragma Warnings (Off)
15327         * make.adb: (Mains): Moved to package Makeutl
15328         (Linker_Opts): Moved to package Makeutl
15329         (Is_External_Assignment): Moved to package Makeutl
15330         (Test_If_Relative_Path): Moved to package Makeutl
15331         (Gnatmake): Move sorting of linker options to function
15332         Makeutl.Linker_Options_Switches.
15334         * makeutl.ads, makeutl.adb: New files.
15336         * Makefile.in: Add makeutl.o to the object files for gnatmake
15338         * makeusg.adb: Add line for new switch -eL.
15340         * gnatls.adb (Image): New function.
15341         (Output_Unit): If in verbose mode, output the list of restrictions
15342         specified by pragmas Restrictions.
15344         * 5bml-tgt.adb, 5vml-tgt.adb (Build_Dynamic_Library): Do not use
15345         Text_IO.
15347         * a-calend.adb (Split): Shift the date by multiple of 56 years, if
15348         needed, to put it in the range 1970 (included) - 2026 (excluded).
15349         (Time_Of): Do not shift Unix_Min_Year (1970).
15350         Shift the date by multiple of 56 years, if needed, to put it in the
15351         range 1970 (included) - 2026 (excluded).
15353         * adaint.h, adaint.c (__gnat_set_executable): New function.
15355 2004-04-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15357         * trans.c (tree_transform, case N_Subprogram_Body): Temporarily push
15358         and pop GC context.
15359         (tree_transform, case N_Procedure_Call): Fix typo in setting TREE_TYPE.
15360         (tree_transform, case N_Label): Don't set LABEL_STMT_FIRST_IN_EH.
15361         (tree_transform, case N_Procedure_Call_Statement): Build a tree.
15362         (tree_transform, case N_Code_Statement): Likewise.
15363         (gnat_expand_stmt, case LABEL_STMT): Don't look at
15364         LABEL_STMT_FIRST_IN_EH.
15365         (gnat_expand_stmt, case ASM_STMT): New case.
15367         * utils2.c (build_unary_op): Properly set TREE_READONLY of
15368         UNCONSTRAINED_ARRAY_REF.
15370         * utils.c (poplevel): Temporarily push/pop GC context around inline
15371         function expansion.
15373         * decl.c (maybe_variable): Properly set TREE_READONLY of
15374         UNCONSTRAINED_ARRAY_REF.
15375         (make_packable_type): Only reference TYPE_IS_PADDING_P for RECORD_TYPE.
15377         * ada-tree.def: (ASM_STMT): New.
15379         * ada-tree.h: (LABEL_STMT_FIRST_IN_EH): Deleted.
15380         (ASM_STMT_TEMPLATE, ASM_STMT_OUTPUT, ASM_STMT_ORIG_OUT,
15381         ASM_STMT_INPUT): New.
15382         (ASM_STMT_CLOBBER): Likewise.
15384 2004-04-19  Thomas Quinot  <quinot@act-europe.fr>
15386         * a-except.adb, s-parint.ads, s-parint.adb, types.ads, types.h: Use
15387         general rcheck mechanism to raise Program_Error for E.4(18), instead
15388         of a custom raiser in System.Partition_Interface.
15389         Part of general cleanup work before PolyORB integration.
15391         * snames.ads, snames.adb: Add new runtime library entities and names
15392         for PolyORB DSA.
15394         * sem_dist.ads, sem_dist.adb (Get_Subprogram_Id): Move from sem_dist to
15395         exp_dist.
15396         (Build_Subprogram_Id): New subprogram provided by exp_dist
15397         Code reorganisation in preparation for PolyORB integration.
15399         * exp_dist.ads, exp_dist.adb (Get_Subprogram_Id): Move from sem_dist to
15400         exp_dist.
15401         (Build_Subprogram_Id): New subprogram provided by exp_dist
15403         * sem_ch4.adb (Analyze_One_Call): Fix error message for mismatch in
15404         actual parameter types for call to dereference of an
15405         access-to-subprogram type.
15407         * rtsfind.ads: Add new runtime library entities and names for PolyORB
15408         DSA.
15410         * gnatlink.adb (Value): Remove. Use Interfaces.C.Strings.Value
15411         instead, which has the same behaviour here since we never pass it a
15412         NULL pointer.
15414         * link.c (run_path_option, Solaris case): Use -Wl, as for other
15415         platforms.
15417         * Makefile.in: adjust object file lists for gnatlink and gnatmake
15418         to account for new dependency upon Interfaces.C.Strings + link.o
15419         For x86 FreeBSD, use 86numaux.
15421         * make.adb, gnatcmd.adb: Linker_Library_Path_Option has been moved up
15422         from Mlib.Tgt to Mlib.
15424         * mlib.ads, mlib.adb (Linker_Library_Path_Option): New subprogram, now
15425         target-independent.
15427         * mlib-tgt.ads, mlib-tgt.adb (Linker_Library_Path_Option): Remove
15428         target-specific versions of this subprogram, now implemented as a
15429         target-independent function in Mlib.
15431         * 5aml-tgt.adb, 5bml-tgt.adb, 5gml-tgt.adb, 5hml-tgt.adb, 5lml-tgt.adb,
15432         5sml-tgt.adb, 5vml-tgt.adb, 5zml-tgt.adb, 5wml-tgt.adb
15433         (Linker_Library_Path_Option): Remove target-specific versions of this
15434         subprogram, now implemented as a target-independent function in Mlib.
15436         * atree.adb: (Allocate_Initialize_Node): New subprogram.
15437         Factors out node table slots allocation.
15438         (Fix_Parents): New subprogram.
15439         Encapsulate the pattern of fixing up parent pointers for syntactic
15440         children of a rewritten node.
15441         (New_Copy_Tree): Use New_Copy to copy non-entity nodes.
15442         (Rewrite): Use New_Copy when creating saved copy of original node.
15443         (Replace): Use Copy_Node to copy nodes.
15445 2004-04-19  Javier Miranda  <miranda@gnat.com>
15447         * sprint.adb (Sprint_Node_Actual): Give support to the new
15448         Access_To_Subprogram node available in Access_Definition nodes. In
15449         addition, give support to the AI-231 node fields: null-exclusion,
15450         all-present, constant-present.
15452         * sem_util.ads, sem_util.adb: (Has_Declarations): New subprogram
15454         * sinfo.ads, sinfo.adb:
15455         New field Access_To_Subprogram_Definition in Access_Definition nodes
15457         * sem_ch6.adb (Process_Formals): Move here the code that creates and
15458         decorates internal subtype declaration corresponding to the
15459         null-excluding formal. This code was previously in Set_Actual_Subtypes.
15460         In addition, carry out some code cleanup on this code. In case of
15461         access to protected subprogram call
15462         Replace_Anonymous_Access_To_Protected_Subprogram.
15463         (Set_Actual_Subtypes): Code cleanup.
15465         * sem_ch8.adb (Analyze_Object_Renaming): Remove un-necessary call to
15466         Find_Type in case of anonymous access renamings. Add warning in case of
15467         null-excluding attribute used in anonymous access renaming.
15469         * sem_ch3.ads (Replace_Anonymous_Access_To_Protected_Subprogram): New
15470         subprogram
15472         * sem_ch3.adb (Replace_Anonymous_Access_To_Protected_Subprogram): New
15473         subprogram.
15474         (Access_Definition): In case of anonymous access to subprograms call
15475         the corresponding semantic routine to decorate the node.
15476         (Access_Subprogram_Declaration): Addition of some comments indicating
15477         some code that probably should be added here. Detected by comparison
15478         with the access_definition subprogram.
15479         (Analyze_Component_Declaration): In case of access to protected
15480         subprogram call Replace_Anonymous_Access_To_Protected.
15481         (Array_Type_Declaration): In case of access to protected subprogram call
15482         Replace_Anonymous_Access_To_Protected_Subprogram.
15483         (Process_Discriminants): In case of access to protected subprogram call
15484         Replace_Anonymous_Access_To_Protected_Subprogram.
15486         * par.adb (P_Access_Definition): New formal that indicates if the
15487         null-exclusion part was present.
15488         (P_Access_Type_Definition): New formal that indicates if the caller has
15489         already parsed the null-excluding part.
15491         * par-ch3.adb (P_Subtype_Declaration): Code cleanup.
15492         (P_Identifier_Declarations): Code cleanup and give support to renamings
15493         of anonymous access to subprogram types.
15494         (P_Derived_Type_Def_Or_Private_Ext_Decl): Code cleanup.
15495         (P_Array_Type_Definition): Give support to AI-254.
15496         (P_Component_Items): Give support to AI-254.
15497         (P_Access_Definition): New formal that indicates if the header was
15498         already parsed by the caller.
15499         (P_Access_Type_Definition): New formal that indicates if the caller has
15500         already parsed the null-excluding part.
15502         * par-ch6.adb (P_Formal_Part): Add the null-excluding parameter to the
15503         call to P_Access_Definition.
15505 2004-04-19  Geert Bosch  <bosch@gnat.com>
15507         * checks.adb (Apply_Float_Conversion_Check): New procedure to implement
15508         the delicate semantics of floating-point to integer conversion.
15509         (Apply_Type_Conversion_Checks): Use Apply_Float_Conversion_Check.
15511         * eval_fat.adb (Machine_Mantissa): Moved to spec.
15512         (Machine_Radix): New function.
15514         * eval_fat.ads (Machine_Mantissa): Moved from body for use in
15515         conversion checks.
15516         (Machine_Radix): New function also for use in conversion checks.
15518 2004-04-19  Ed Schonberg  <schonberg@gnat.com>
15520         * par-prag.adb (Source_File_Name_Project): Fix typo in error message.
15522         * exp_ch9.adb (Expand_Access_Protected_Subprogram_Type): Call analyze
15523         to decorate the access-to-protected subprogram and the equivalent type.
15525         * checks.adb (Null_Exclusion_Static_Checks): Code cleanup. Give support
15526         to anonymous access to subprogram types.
15528         * exp_ch4.adb (Expand_N_In): Preserve Static flag before
15529         constant-folding, for legality checks in contexts that require an RM
15530         static expression.
15532         * exp_ch6.adb (Expand_N_Function_Call): If call may generate large
15533         temporary but stack checking is not enabled, increment serial number
15534         to so that symbol generation is consistent with and without stack
15535         checking.
15537         * exp_util.ads, exp_util.adb (May_Generate_Large_Temp): Predicate is
15538         independent on whether stack checking is enabled, caller must check
15539         the corresponding flag.
15541         * sem_ch3.adb (Constrain_Index): Index bounds given by attributes need
15542         range checks.
15543         (Build_Derived_Concurrent_Type): Inherit Is_Constrained flag from
15544         parent if it has discriminants.
15545         (Build_Derived_Private_Type): Constructed full view does
15546         not come from source.
15547         (Process_Discriminants): Default discriminants on a tagged type are
15548         legal if this is the internal completion of a private untagged
15549         derivation.
15551         * sem_ch6.adb (Set_Actual_Subtypes): The generated declaration needs
15552         no constraint checks, because it corresponds to an existing object.
15554         * sem_prag.adb (Process_Convention): Pragma applies
15555         only to subprograms in the same declarative part, i.e. the same unit,
15556         not the same scope.
15558         * sem_res.adb (Valid_Conversion): In an instance or inlined body,
15559         ignore type mismatch on a numeric conversion if expression comes from
15560         expansion.
15562 2004-04-19  Sergey Rybin  <rybin@act-europe.fr>
15564         * sem_elim.adb (Process_Eliminate_Pragma): Remove the processing for
15565         Homonym_Number parameter, add processing for Source_Location parameter
15566         corresponding.
15567         (Check_Eliminated): Remove the check for homonym numbers, add the check
15568         for source location traces.
15570         * sem_elim.ads (Process_Eliminate_Pragma): Replace Arg_Homonym_Number
15571         with Arg_Source_Location corresponding to the changes in the format of
15572         the pragma.
15574         * sem_prag.adb: (Analyze_Pragma): Changes in the processing of
15575         Eliminate pragma corresponding to the changes in the format of the
15576         pragma: Homonym_Number is replaced with Source_Location, two ways of
15577         distinguishing homonyms are mutially-exclusive.
15579 2004-04-19  Joel Brobecker  <brobecker@gnat.com>
15581         * get_targ.ads (Get_No_Dollar_In_Label): Remove.
15583         * exp_dbug.adb (Output_Homonym_Numbers_Suffix): Remove use of
15584         No_Dollar_In_Label, no longer necessary, as it is always True.
15585         (Strip_Suffixes): Likewise.
15587 2004-04-19  Gary Dismukes  <dismukes@gnat.com>
15589         * s-stalib.ads (type Exception_Code): Use Integer'Size for exponent of
15590         modulus for compatibility with size clause on targets with 16-bit
15591         Integer.
15593         * layout.adb (Discrimify): In the case of private types, set Vtyp to
15594         full type to fix type mismatches on calls to size functions for
15595         discriminant-dependent array components.
15597 2004-04-19  Jerome Guitton  <guitton@act-europe.fr>
15599         * Makefile.in (gnatlib-zcx): New target, for building a ZCX run-time
15600         lib.
15602 2004-04-19  Pascal Obry  <obry@gnat.com>
15604         * mdll-utl.adb (Locate): New version is idempotent.
15606 2004-04-17  Laurent Guerby <laurent@guerby.net>
15608         PR ada/14988 (partial)
15609         * impunit.adb: Fix typo.
15611 2004-04-14  Nathanael Nerode  <neroden@gcc.gnu.org>
15613         * Make-lang.in: Remove obsolete rts-none, rts-cert, install-rts-none,
15614         and install-rts-cert targets.  Remove all gnatlib and gnattools
15615         targets and all other rts-* targets (moved to libada).  Remove (now)
15616         unused Make variables CHMOD, CHMOD_AX_FLAGS, shext, THREAD_KIND,
15617         TRACE, GNATLIBFLAGS, GNATLIBCFLAGS.
15619 2004-04-08  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15621         * trans.c (tree_transform): Shortcut returning error_mark_node for
15622         statements in annotate_only_mode.
15623         (tree_transform, case N_Label, case N_Return_Statement,
15624         N_Goto_Statement): Make statement tree instead of generating code.
15625         (tree_transform, case N_Assignment_Statement): No longer check
15626         type_annotate_only.
15627         (gnat_expand_stmt, case GOTO_STMT, case LABEL_STMT, case
15628         RETURN_STMT): New.
15629         (first_nondeleted_insn, build_block_stmt, make_expr_stmt_from_rtl):
15630         New fcns.
15631         (gnat_to_gnu): Collect any RTL generated and deal with it.
15632         (tree_transform, case N_And_Then): Refine when have non-null RTL_EXPR.
15633         (tree_transform case N_If_Statement): Rewrite to make IF_STMT.
15634         (gnat_expand_stmt, case BLOCK_STMT, IF_STMT): New cases.
15636         * ada-tree.def (GOTO_STMT, LABEL_STMT, RETURN_STMT): New tree nodes.
15638         * ada-tree.def (EXPR_STMT): Fix typo in name.
15639         (BLOCK_STMT, IF_STMT): New nodes.
15641         * ada-tree.h (GOTO_STMT_LABEL, LABEL_STMT_LABEL,
15642         LABEL_STMT_FIRST_IN_EH): New macros.
15643         (RETURN_STMT_EXPR): Likewise.
15645         * ada-tree.h: (BLOCK_STMT_LIST, IF_STMT_COND, IF_STMT_TRUE,
15646         IF_STMT_ELSEIF, IF_STMT_ELSE): New macros.
15648 2004-04-08  Thomas Quinot  <quinot@act-europe.fr>
15650         * atree.ads: Correct documentation on extended nodes.
15652         * link.c: Set run_path_option for FreeBSD.
15654 2004-04-08  Vincent Celier  <celier@gnat.com>
15656         * mlib-prj.adb (Build_Library.Check_Libs): On OpenVMS, if dec.ali is
15657         one of the ALI file, do not link with DEC lib.
15659         * par.adb Remove the last two characters ("%s" or "%b") when checking
15660         if a language defined unit may be recompiled.
15662 2004-04-08  Ed Schonberg  <schonberg@gnat.com>
15664         * sem_ch4.adb (Remove_Abstract_Operations): Improve error message when
15665         removal of abstract operation leaves no possible interpretation for
15666         expression.
15668         * sem_eval.adb (Eval_Qualified_Expression): Use
15669         Set_Raises_Constraint_Error on node when needed, so that it does not
15670         get optimized away by subsequent optimizations.
15672         * sem_res.adb (Resolve_Intrinsic_Operator): Save interpretations of
15673         operands even when they are not wrapped in a type conversion.
15675 2004-04-08  Olivier Hainque  <hainque@act-europe.fr>
15677         * sem_prag.adb (Set_Exported): Warn about making static as result of
15678         export only when the export is coming from source. This may be not
15679         be true e.g. on VMS where we expand export pragmas for exception codes
15680         together with imported or exported exceptions, and we don't want the
15681         user to be warned about something he didn't write.
15683 2004-04-08  Thomas Quinot  <quinot@act-europe.fr>
15685         * sem_util.adb (Note_Possible_Modification): Reorganize to remove code
15686         duplication between normal entities and those declared as renamings.
15687         No functional change.
15689         * s-fileio.ads (Form): Remove pragma Inline, as we cannot currently
15690         inline functions returning an unconstrained result.
15692 2004-04-08  Eric Botcazou  <ebotcazou@act-europe.fr>
15694         * utils.c (type_for_mode): Handle BLKmode and VOIDmode properly, to
15695         conform to what other front-ends do.
15697 2004-04-08  Doug Rupp  <rupp@gnat.com>
15699         * 5vml-tgt.adb: Use Gas instead of VMS Macro to build auto init shared
15700         libraries.
15702 2004-04-06  Pascal Obry  <obry@gnat.com>
15704         * adaint.c (DIR_SEPARATOR): Properly set DIR_SEPARATOR on Win32.
15706         * osint.adb (Program_Name): Do not look past a directory separator.
15708 2004-04-06  Thomas Quinot  <quinot@act-europe.fr>
15710         * atree.adb: Update comment (Rewrite_Substitute_Node no longer exists).
15712         * exp_ch6.adb (Rewrite_Function_Call): Clarify documentation of
15713         requirement for preserving a copy of the original assignment node.
15715         * sinfo.ads: Update comment (Original_Tree -> Original_Node).
15717 2004-04-06  Olivier Hainque  <hainque@act-europe.fr>
15719         (__gnat_initialize [Vxworks]): Enable references to the crtstuff bits
15720         when supported.
15722 2004-04-06  Ed Schonberg  <schonberg@gnat.com>
15724         * sem_ch4.adb (Remove_Abstract_Operations): Extend previous changes to
15725         operator calls in functional notation, and apply
15726         Universal_Interpretation to operands, not to their type.
15728 2004-04-06  Robert Dewar  <dewar@gnat.com>
15730         * 5wdirval.adb: Minor reformatting
15732 2004-04-06  Ed Falis  <falis@gnat.com>
15734         * gnat_rm.texi: Improve a reference to the GCC manual
15736 2004-04-05  Vincent Celier  <celier@gnat.com>
15738         * adaint.h, adaint.c: Add function __gnat_named_file_length
15740         * impunit.adb: Add Ada.Directories to the list
15742         * Makefile.in: Add VMS and Windows versions of
15743         Ada.Directories.Validity package body.
15745         * Makefile.rtl: Add a-direct and a-dirval
15747         * mlib-tgt.ads: Minor comment update.
15749         * a-dirval.ads, a-dirval.adb, 5vdirval.adb, 5wdirval.adb,
15750         a-direct.ads, a-direct.adb: New files.
15752 2004-04-05  Vincent Celier  <celier@gnat.com>
15754         PR ada/13620
15755         * make.adb (Scan_Make_Arg): Pass any -fxxx switches to gnatlink, not
15756         just to the compiler.
15758 2004-04-05  Robert Dewar  <dewar@gnat.com>
15760         * a-except.adb (Exception_Name_Simple): Make sure lower bound of
15761         returned string is 1.
15763         * ali-util.adb: Use proper specific form for Warnings (Off, entity)
15765         * eval_fat.ads: Minor reformatting
15767         * g-curexc.ads: Document that lower bound of returned string values
15768         is always one.
15770         * gnatlink.adb: Add ??? comment for previous change
15771         (need to document why this is VMS specific)
15773         * s-stoele.ads: Minor reformatting
15775         * tbuild.ads: Minor reformatting throughout (new function specs)
15777         * par-ch10.adb (P_Context_Clause): Handle comma instead of semicolon
15778         after WITH.
15780         * scng.adb: Minor reformatting
15782 2004-04-05  Geert Bosch  <bosch@gnat.com>
15784         * eval_fat.adb (Machine): Remove unnecessary suppression of warning.
15785         (Leading_Part): Still perform truncation to machine number if the
15786         specified radix_digits is greater or equal to machine_mantissa.
15788 2004-04-05  Javier Miranda  <miranda@gnat.com>
15790         * par-ch3.adb: Complete documentation of previous change
15791         Correct wrong syntax documentation of the OBJECT_DECLARATION rule
15792         (aliased must appear before constant).
15794         * par-ch4.adb: Complete documentation of previous change.
15796         * par-ch6.adb: Complete documentation of previous change.
15798         * sinfo.ads: Fix typo in commment.
15800 2004-04-05  Ed Schonberg  <schonberg@gnat.com>
15802         * sem_ch3.adb (Inherit_Components): If derived type is private and has
15803         stored discriminants, use its discriminants to constrain parent type,
15804         as is done for non-private derived record types.
15806         * sem_ch4.adb (Remove_Abstract_Operations): New subprogram to implement
15807         Ada 2005 AI-310: an abstract non-dispatching operation is not a
15808         candidate interpretation in an overloaded call.
15810         * tbuild.adb (Unchecked_Convert_To): Preserve conversion node if
15811         expression is Null and target type is not an access type (e.g. a
15812         non-private address type).
15814 2004-04-05  Thomas Quinot  <quinot@act-europe.fr>
15816         * exp_ch6.adb (Rewrite_Function_Call): When rewriting an assignment
15817         statement whose right-hand side is an inlined call, save a copy of the
15818         original assignment subtree to preserve enough consistency for
15819         Analyze_Assignment to proceed.
15821         * sem_ch5.adb (Analyze_Assignment): Remove a costly copy of the
15822         complete assignment subtree which is now unnecessary, as the expansion
15823         of inlined call has been improved to preserve a consistent assignment
15824         tree.  Note_Possible_Modification must be called only
15825         after checks have been applied, or else unnecessary checks will
15826         be generated.
15828         * sem_util.adb (Note_Possible_Modification): Reorganise the handling
15829         of explicit dereferences that do not Come_From_Source:
15830          - be selective on cases where we must go back to the dereferenced
15831            pointer (an assignment to an implicit dereference must not be
15832            recorded as modifying the pointer);
15833          - do not rely on Original_Node being present (Analyze_Assignment
15834            calls Note_Possible_Modification on a copied tree).
15836         * sem_warn.adb (Check_References): When an unset reference to a pointer
15837         that is never assigned is encountered, prefer '<pointer> may be null'
15838         warning over '<pointer> is never assigned a value'.
15840 2004-04-05  Ramon Fernandez  <fernandez@gnat.com>
15842         * tracebak.c: Change STOP_FRAME in ppc vxworks to be compliant with
15843         the ABI.
15845 2004-04-05  Olivier Hainque  <hainque@act-europe.fr>
15847         * 5gmastop.adb (Pop_Frame): Comment out the pragma Linker_Option for
15848         libexc. We currently don't reference anything in this library and
15849         linking it in triggers linker warnings we don't want to see.
15851         * init.c: Update comments.
15853 2004-04-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15855         * decl.c (gnat_to_gnu_entity): Use TYPE_READONLY.
15856         * utils.c (create_field_decl): Likewise.
15857         * utils2.c (build_unary_op, gnat_build_constructor): Likewise.
15859 2004-04-02  Arnaud Charlet  <charlet@act-europe.fr>
15861         * gnat-style.texi, gnat_rm.texi, gnat_ugn.texi: Remove RCS tags.
15862         Replace ifinfo by ifnottex, to make makeinfo --html happy again.
15863         Add info directory entry and category.
15865 2004-04-02  Jan Hubicka  <jh@suse.cz>
15867         * utils.c: Include function.h
15868         (end_subprog_body): Clear DECL_STRUCT_FUNCTION.
15870 2004-04-01  Arnaud Charlet  <charlet@act-europe.fr>
15872         PR ada/14150
15873         * Make-lang.in: Clean up generation of documentation
15875         * gnat-style.texi, gnat_rm.texi, ug_words: Resync with AdaCore version
15877         * xgnatug.adb: Removed, replaced by xgnatugn.adb
15879         * xgnatugn.adb: Replaces xgnatug.adb
15881         * gnat_ug.texi: Removed, replaced by gnat_ugn.texi
15883         * gnat_ugn.texi: Replaces gnat_ug.texi. Resync with AdaCore version
15885         * gnat_ug_unx.texi, gnat_ug_vms.texi, gnat_ug_vxw.texi,
15886         gnat_ug_wnt.texi: Removed.
15888 2004-04-01  Arnaud Charlet  <charlet@act-europe.fr>
15890         * utils2.c: Update copyright notice.
15892 2004-04-01  Robert Dewar  <dewar@gnat.com>
15894         * checks.adb: Minor reformatting throughout
15895         Note that prev checkin added RM reference to alignment warning
15897 2004-04-01  Ed Schonberg  <schonberg@gnat.com>
15899         * exp_aggr.adb (Get_Component_Val): Treat a string literal as
15900         non-static when building aggregate for bit-packed array.
15902         * exp_ch4.adb (Expand_N_Slice): If a packed slice is an actual of a
15903         function call that is itself the actual in a procedure call, build
15904         temporary for it.
15906         * exp_pakd.adb (Expand_Bit_Packed_Element_Set): If right-hand side is
15907         a string literal, create a temporary for it, constant folding only
15908         handles scalars here.
15910 2004-04-01  Vincent Celier  <celier@gnat.com>
15912         * ali-util.adb (Post_Scan, Error_Msg, Error_Msg_S, Error_Msg_SC,
15913         Error_Msg_SP): New empty procedures to instantiate the Scanner.
15914         (Style, Scanner): Instantiations of Styleg and Scng to be able to scan
15915         tokens.
15916         (Accumulate_Checksum, Initialize_Checksum): Remove procedures.
15917         (Get_File_Checksum): Use the instantiated scanner to scan all the tokens
15918         and get the checksum.
15920         * make.adb (Gnatmake): Do not insert into Q the Main_Source if it is
15921         already in the Q.
15922         Increase the Marking_Label at the end of the Multiple_Main_Loop,
15923         instead of at the beginning.
15925         * osint.adb (Lib_File_Name): Use Multi_Unit_Index_Character, not '~'
15926         directly.
15927         (Osint package elaboration): Change Multi_Unit_Index_Character to '$' if
15928         on VMS.
15930         * osint.ads (Multi_Unit_Index_Character): New Character global variable
15932         * osint-c.adb (Set_Library_Info_Name): Use Multi_Unit_Index_Character,
15933         not '~' directly.
15935         * par.adb: Remove test on file name to detect language defined units.
15936         Add test on unit name, after parsing, to detect language defined units
15937         that are not compiled with -gnatg (except System.RPC and its children)
15939         * par-ch10.adb (P_Compilation_Unit): In multi-unit sources, scan the
15940         following units without style checking.
15942         * switch-c.adb: Change -gnatC to -gnateI
15944         * usage.adb: Document new switch -gnateInnn
15946         * scng.adb (Accumulate_Token_Checksum): New procedure
15947         (Scan): Call Accumulate_Token_Checksum after each identifier, reserved
15948         word or literal number.
15949         (Scan.Nlit.Scan_Integer): Do not accumulate internal '_' in litteral
15950         numbers.
15952 2004-04-01  Thomas Quinot  <quinot@act-europe.fr>
15954         * a-tasatt.adb,
15955         g-comlin.adb, sinput-c.adb, s-secsta.adb, s-tpobop.adb,
15956         switch-m.adb, 56taprop.adb, 5ginterr.adb, 5gmastop.adb,
15957         5staprop.adb, 5vinterr.adb, 5vtaprop.adb, 5vtpopde.adb,
15958         5vtpopde.adb: Add missing 'constant' keywords.
15960 2004-04-01  Javier Miranda  <miranda@gnat.com>
15962         * par-ch4.adb: (P_Allocator): Code cleanup
15964         * sem_ch3.adb (Access_Definition): Properly set the null-excluding
15965         attribute.
15967         * sinfo.ads: Complete documentation of previous change
15969 2004-04-01  Pascal Obry  <obry@gnat.com>
15971         * gnatlink.adb (Process_Binder_File): Remove duplicate linker options
15972         only on VMS.  This special handling was done because an old GNU/ld bug
15973         on Windows which has been fixed.
15975 2004-04-01  GNAT Script  <nobody@gnat.com>
15977         * Make-lang.in: Makefile automatically updated
15979 2004-03-31  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15981         * decl.c (gnat_to_gnu_entity, make_type_from_size):
15982         Use TYPE_UNSIGNED, not TREE_UNSIGNED.
15983         * trans.c (tree_transform, convert_with_check): Likewise.
15984         * utils.c (gnat_signed_or_unsigned_type): Likewise.
15985         (build_vms_descriptor, unchecked_convert): Likewise.
15986         * utils2.c (nonbinary_modular_operation): Likewise.
15988 2004-03-29  Javier Miranda  <miranda@gnat.com>
15990         * checks.adb (Null_Exclusion_Static_Checks): New subprogram
15991         (Install_Null_Excluding_Check): Local subprogram that determines whether
15992         an access node requires a runtime access check and if so inserts the
15993         appropriate run-time check.
15994         (Apply_Access_Check): Call Install_Null_Excluding check if required
15995         (Apply_Constraint_Check): Call Install_Null_Excluding check if required
15997         * checks.ads: (Null_Exclusion_Static_Checks): New subprogram
15999         * einfo.ads: Fix typo in comment
16001         * exp_ch3.adb (Build_Assignment): Generate conversion to the
16002         null-excluding type to force the corresponding run-time check.
16003         (Expand_N_Object_Declaration): Generate conversion to the null-excluding
16004         type to force the corresponding run-time check.
16006         * exp_ch5.adb (Expand_N_Assignment_Statement): Generate conversion to
16007         the null-excluding type to force the corresponding run-time check.
16009         * exp_ch6.adb (Expand_Call): Do not generate the run-time check in
16010         case of access types unless they have the null-excluding attribute.
16012         * sprint.adb (Sprint_Node_Actual): Give support to the null-exclusing
16013         part.
16015         * exp_util.ads: Fix typo in comment
16017         * par.adb (P_Null_Exclusion): New subprogram
16018         (P_Subtype_Indication): New formal that indicates if the null-excluding
16019         part has been scanned-out and it was present
16021         * par-ch3.adb, par-ch4.adb, par-ch6.adb: Give support to AI-231
16023         * sem_aggr.adb: (Check_Can_Never_Be_Null): New subprogram
16024         (Aggregate_Constraint_Checks): Generate conversion to the null-excluding
16025         type to force the corresponding run-time check
16026         (Resolve_Aggregate): Propagate the null-excluding attribute to the array
16027         components
16028         (Resolve_Array_Aggregate): Carry out some static checks
16029         (Resolve_Record_Aggregate.Get_Value): Carry out some static check
16031         * sem_ch3.adb (Access_Definition): In Ada 0Y the Can_Never_Be_Null
16032         attribute must be set only if specified by means of the null-excluding
16033         part. In addition, we must also propagate the access-constant attribute
16034         if present.
16035         (Access_Subprogram_Declaration, Access_Type_Declaration,
16036         Analyze_Component_Declaration, Analyze_Object_Declaration,
16037         Array_Type_Declaration, Process_Discriminants,
16038         Analyze_Subtype_Declaration): Propagate the null-excluding attribute
16039         and carry out some static checks.
16040         (Build_Derived_Access_Type): Set the null-excluding attribute
16041         (Derived_Type_Declaration, Process_Subtype): Carry out some static
16042         checks.
16044         * sem_ch4.adb (Analyze_Allocator): Carry out some static checks
16046         * sem_ch5.adb (Analyze_Assignment): Carry out some static checks
16048         * sem_ch6.adb (Process_Formals): Carry out some static checks.
16049         (Set_Actual_Subtypes): Generate null-excluding subtype if the
16050         null-excluding part was present; it is not required to be done here in
16051         case of anonymous access types.
16052         (Set_Formal_Mode): Ada 0Y allows anonymous access to have the null
16053         value.
16055         * sem_res.adb (Resolve_Actuals): Carry out some static check
16056         (Resolve_Null): Allow null in anonymous access
16058         * sinfo.adb: New subprogram Null_Exclusion_Present
16059         All_Present and Constant_Present available on access_definition nodes
16061         * sinfo.ads: New flag Null_Exclusion_Present on subtype_declaration,
16062         object_declaration, derived_type_definition, component_definition,
16063         discriminant_specification, access_to_object_definition,
16064         access_function_definition, allocator, access_procedure_definition,
16065         access_definition, parameter_specification, All_Present and
16066         Constant_Present flags available on access_definition nodes.
16068 2004-03-29  Robert Dewar  <dewar@gnat.com>
16070         * fname.adb, fname.ads, fname-sf.adb, fname-uf.adb, fname-uf.ads,
16071         gnat1drv.adb, lib.adb, lib.ads, lib-load.adb, lib-writ.adb,
16072         opt.ads, osint.adb, osint.ads, osint-c.adb, par.adb,
16073         par-ch10.adb, par-load.adb, par-prag.adb, sfn_scan.adb,
16074         sfn_scan.ads, sinput-l.adb, sinput-l.ads, switch-c.adb,
16075         sem_prag.adb: Updates to handle multiple units/file
16077         * par.adb: Change test for s-rpc to s-rp for detecting rpc and children
16079         * par.adb, memtrack.adb, prj-makr.adb, prj-part.adb,
16080         sem_util.adb: Minor reformatting
16082         * sem_ch12.adb: Add comment for previous change
16084 2004-03-29  Laurent Pautet  <pautet@act-europe.fr>
16086         * osint.adb (Executable_Prefix): Set Exec_Name to the current
16087         executable name when not initialized. Otherwise, use its current value.
16089         * osint.ads (Exec_Name): Move Exec_Name from body to spec in order to
16090         initialize it to another executable name than the current one. This
16091         allows to configure paths for an executable name (gnatmake) different
16092         from the current one (gnatdist).
16094 2004-03-29  Ed Schonberg  <schonberg@gnat.com>
16096         * exp_ch6.adb (Expand_Call): A call to a function declared in the
16097         current unit cannot be inlined if it appears in the body of a withed
16098         unit, to avoid order of elaboration problems in gigi.
16100         * exp_ch9.adb (Build_Protected_Sub_Specification): Generate debugging
16101         information for protected (wrapper) operation as well, to simplify gdb
16102         use.
16104         * sem_ch6.adb (Analyze_Subprogram_Body): For a private operation in a
16105         protected body, indicate that the entity for the generated spec comes
16106         from source, to ensure that references are properly generated for it.
16107         (Build_Body_To_Inline): Do not inline a function that returns a
16108         controlled type.
16110         * sem_prag.adb (Process_Convention): If subprogram is overloaded, only
16111         apply convention to homonyms that are declared explicitly.
16113         * sem_res.adb (Make_Call_Into_Operator): If the operation is a function
16114         that renames an equality operator and the operands are overloaded,
16115         resolve them with the declared formal types, before rewriting as an
16116         operator.
16118 2004-03-29  GNAT Script  <nobody@gnat.com>
16120         * Make-lang.in: Makefile automatically updated
16122 2004-03-25  Vasiliy Fofanov  <fofanov@act-europe.fr>
16124         * memtrack.adb: Log realloc calls, which are treated as free followed
16125         by alloc.
16127 2004-03-25  Vincent Celier  <celier@gnat.com>
16129         * prj-makr.adb (Process_Directories): Detect when a file contains
16130         several units. Do not include such files in the config pragmas or
16131         in the naming scheme.
16133         * prj-nmsc.adb (Record_Source): New parameter Trusted_Mode.
16134         Resolve links only when not in Trusted_Mode.
16135         (Find_Sources, Recursive_Find_Dirs, Find_Source_Dirs, Locate_Directory):
16136         Do not resolve links for the display names.
16138         * prj-part.adb (Parse_Single_Project, Project_Path_Name_Of): Do not
16139         resolve links when computing the display names.
16141 2004-03-25  Thomas Quinot  <quinot@act-europe.fr>
16143         * sem_attr.adb (Check_Dereference): When the prefix of a 'Tag
16144         attribute reference does not denote a subtype, it can be any
16145         expression that has a classwide type, potentially after an implicit
16146         dereference.  In particular, the prefix can be a view conversion for
16147         a classwide type (for which Is_Object_Reference holds), but it can
16148         also be a value conversion for an access-to-classwide type. In the
16149         latter case, there is an implicit dereference, and the original node
16150         for the prefix does not verify Is_Object_Reference.
16152         * sem_util.adb (Is_Dependent_Component_Of_Mutable_Object): A view
16153         conversion of a discriminant-dependent component of a mutable object
16154         is one itself.
16156 2004-03-25  Ed Schonberg  <schonberg@gnat.com>
16158         * freeze.adb (Freeze_Entity): When an inherited subprogram is
16159         inherited, has convention C, and has unconstrained array parameters,
16160         place the corresponding warning on the derived type declaration rather
16161         than the original subprogram.
16163         * sem_ch12.adb (Instantiate_Formal_Subprogram): Set From_Default
16164         indication on renaming declaration, if formal has a box and actual
16165         is absent.
16167         * sem_ch8.adb (Analyze_Subprogram_Renaming): Use From_Default flag to
16168         determine whether to generate an implicit or explicit reference to
16169         the renamed entity.
16171         * sinfo.ads, sinfo.adb: New flag From_Default, to indicate that a
16172         subprogram renaming comes from a defaulted formal subprogram in an
16173         instance.
16175 2004-03-25  Gary Dismukes  <dismukes@gnat.com>
16177         * sem_elab.adb (Check_Elab_Call): Refine loop that checks for default
16178         value expressions to ensure that calls within a component definition
16179         will be checked (since those are evaluated during the record type's
16180         elaboration).
16182 2004-03-25  Arnaud Charlet  <charlet@act-europe.fr>
16184         * s-tpobop.adb: Code clean up:
16185         (Requeue_Call): Extract from PO_Service_Entries to remove duplicated
16186         code.
16187         (PO_Do_Or_Queue): Remove duplicated code and use Requeue_Call.
16189 2004-03-25  Jose Ruiz  <ruiz@act-europe.fr>
16191         * Makefile.in: Clean up in the ravenscar run time.
16193 2004-03-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16195         * decl.c (gnat_to_gnu_entity, case E_Access_Type): Pass value
16196         of No_Strict_Aliasing to build_pointer_type_for_mode.
16197         * utils.c (update_pointer_to): Walk pointer and ref chains.
16199 2004-03-22  Cyrille Comar  <comar@act-europe.fr>
16201         * ali.ads: Fix Comment about Dynamic_Elab.
16203         * gnatls.adb (Output_Unit): Add output of many flags (Dynamic_Elab,
16204         Has_RACW, Is_Generic, etc.)
16205         (Output_Object, Gnatls): Take into account ALI files not attached to
16206         an object.
16208 2004-03-22  Vincent Celier  <celier@gnat.com>
16210         * gprep.adb: Change all String_Access to Name_Id
16211         (Is_ASCII_Letter): new function
16212         (Double_File_Name_Buffer): New procedure
16213         (Preprocess_Infile_Name): New procedure
16214         (Process_Files): New procedure
16215         (Gnatprep): Check if output and input are existing directories.
16216         Call Process_Files to do the real job.
16218 2004-03-22  Robert Dewar  <dewar@gnat.com>
16220         * prj-env.adb, prj-nmsc.ads, prj-proc.ads,
16221         s-stache.ads, s-stache.adb: Comment updates. Minor reformatting.
16223 2004-03-22  Sergey Rybin  <rybin@act-europe.fr>
16225         * scn.adb (Contains): Add check for EOF, is needed for a degenerated
16226         case when the source contains only comments.
16228 2004-03-22  Ed Schonberg  <schonberg@gnat.com>
16230         * sem_ch10.adb (Analyze_Compilation_Unit): When generating a
16231         declaration for a child subprogram body that acts as a spec, indicate
16232         that the entity in the declaration needs debugging information.
16234         * sem_ch3.adb (Complete_Private_Subtype): Do not build an underlying
16235         full view if the subtype is created for a constrained record component;
16236         gigi has enough information to construct the record, and there is no
16237         place in the tree for the declaration.
16239         * sem_ch6.adb (Build_Body_To_Inline): Use an internal name without
16240         serial number for the dummy body that is built for analysis, to avoid
16241         inconsistencies in the generation of internal names when compiling
16242         with -gnatN.
16244 2004-03-22  Thomas Quinot  <quinot@act-europe.fr>
16246         * sem_util.adb (Is_Object_Reference): A view conversion denotes an
16247         object.
16249 2004-03-22  GNAT Script  <nobody@gnat.com>
16251         * Make-lang.in: Makefile automatically updated
16253 2004-03-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16255         * decl.c (gnat_to_gnu_entity): Use SUBSTITUTE_PLACEHOLDER_IN_EXPR.
16256         * trans.c (tree_transform, emit_index_check): Likewise.
16257         * utils.c (build_template): Likewise.
16258         (max_size, convert): Remove handling of WITH_RECORD_EXPR.
16259         (maybe_unconstrained_array, unchecked_convert): Likewise.
16260         * utils2.c (gnat_truthvalue_conversion, build_binary_op): Likewise.
16261         (build_unary_op): Likewise.
16262         (compare_arrays, build_allocator): Use SUBSTITUTE_PLACEHOLDER_IN_EXPR.
16263         (fill_vms_descriptor): Likewise.
16264         (build_call_alloc_dealloc): Likewise.
16265         ALIGN is unsigned.
16266         * gigi.h (build_call_alloc_dealloc): Alignment is unsigned.
16268 2004-03-20  Joseph S. Myers  <jsm@polyomino.org.uk>
16270         PR other/14630
16271         * gnat_ug.texi: Add info directory category and entry.
16272         * gnat_ug_unx.texi, gnat_ug_vms.texi, gnat_ug_vxw.texi,
16273         gnat_ug_wnt.texi: Regenerate.
16275 2004-03-19  Arnaud Charlet  <charlet@act-europe.fr>
16277         * ada-tree.h: Update copyright notice.
16278         Minor reformatting.
16280 2004-03-19  Olivier Hainque  <hainque@act-europe.fr>
16282         * decl.c (gnat_to_gnu_entity, case E_Exception): Handle VMS exceptions
16283         as regular exception objects and not as mere integers representing the
16284         condition code.  The latter approach required some dynamics to mask off
16285         severity bits, which did not fit well into the GCC table based model.
16286         (gnat_to_gnu_entity, objects): Don't supply an external name for VMS
16287         exception data objects. We don't it and it would conflict with the other
16288         external symbol we have to generate for such exceptions.
16290         * trans.c (tree_transform, case N_Exception_Handler): Remove part of
16291         the special code for VMS exceptions, since these are now represented
16292         as regular exceptions objects.
16294 2004-03-19 Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16296         * decl.c (debug_no_type_hash): Remove.
16297         (gnat_to_gnu_entity, case E_Array_Type): Don't set and clear it.
16298         * misc.c (LANG_HOOK_HASH_TYPE): Redefine.
16300 2004-03-19  Laurent Guerby <laurent@guerby.net>
16302         * sem_prag.adb (Suppress_Unsuppress_Echeck): use loop instead of
16303         aggregate, allows bootstrap from 3.3 on powerpc-darwin.
16305 2004-03-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16307         * ada-tree.h (TYPE_LEFT_JUSTIFIED_MODULAR_P): Add checking.
16308         (TYPE_CONTAINS_TEMPLATE_P, TYPE_OBJECT_RECORD_TYPE): Likewise.
16309         (TYPE_RM_SIZE_INT): Directly use type.values.
16310         (TREE_LOOP_ID): Clean up check.
16311         * decl.c (gnat_to_gnu_entity, case E_Enumeration_Type): Use
16312         TYPE_VALUES, not TYPE_FIELDS.
16313         * trans.c (convert_with_check): Delay access of bounds of basetype
16314         until sure is numeric.
16316 2004-03-18  Arnaud Charlet  <charlet@act-europe.fr>
16318         * 5atpopsp.adb: Remove RTEMS from list of platforms using this file.
16320         Code clean up:
16321         * 5ataprop.adb, 5ftaprop.adb, 5htaprop.adb, 5itaprop.adb, 5staprop.adb,
16322         5vtaprop.adb, 5wtaprop.adb, 7staprop.adb (Finalize_TCB): Use
16323         Specific.Set instead of direct call to e.g pthread_setspecific.
16325 2004-03-18  Thomas Quinot  <quinot@act-europe.fr>
16327         * adaint.c: Update comments.
16329         * Makefile.in: set PREFIX_OBJS, SYMLIB, THREADSLIB, and
16330         GNATLIB_SHARED for FreeBSD.
16332 2004-03-18  Jose Ruiz  <ruiz@act-europe.fr>
16334         * init.c [VxWorks]: Do not fix the stack size for the environment task.
16335         When needed (stack checking) the stack size is retrieved
16336         from the VxWorks kernel.
16338         * Makefile.in: Flag -nostdinc is required when building the run time
16339         for avoiding looking for files in the base compiler.
16340         Add the VxWorks specific version of the package body for
16341         System.Stack_checking.Operations (5zstchop.adb).
16343         * Make-lang.in: Add the object file for
16344         System.Stack_Checking.Operations.
16346         * Makefile.rtl: Add object file for the package
16347         System.Stack_Checking.Operations.
16349         * s-stchop.ads, s-stchop.adb, 5zstchop.adb: New files.
16351         * s-stache.ads, s-stache.adb: Move the operations related to stack
16352         checking from this package to package System.Stack_Checking.Operations.
16353         This way, stack checking operations are only linked in the final
16354         executable when using the -fstack-check flag.
16356 2004-03-18  Doug Rupp  <rupp@gnat.com>
16358         * Makefile.in [VMS]: Handle 64 bit specs (5qsystem.ads, 5xcrtl.ads).
16359         Reorganize ifeq's.
16361         * 5qsystem.ads, 5xcrtl.ads: New files.
16363 2004-03-18  Vincent Celier  <celier@gnat.com>
16365         * prj.adb (Reset): Reset hash table Files_Htable
16367         * prj-env.adb (Source_Paths, Object_Paths): New tables.
16368         (Add_To_Source_Path, Add_To_Object_Path): New procedures, to replace
16369         the procedures Add_To_Path_File.
16370         (Set_Ada_Paths): Accumulate source and object dirs in the tables,
16371         making sure that each directory is present only once and, for object
16372         dirs, when a directory already present is added, the duplicate is
16373         removed and the directory is always put as the last in the table.
16374         Write the path files at the end of these accumulations.
16376         * prj-nmsc.adb (Record_Source): Add source file name in hash table
16377         Files_Htable for all sources.
16379         * prj-proc.adb (Process): Remove restrictions between not directly
16380         related extending projects.
16382 2004-03-18  Emmanuel Briot  <briot@act-europe.fr>
16384         * prj-nmsc.ads, prj-nmsc.adb (Ada_Check): New parameter Trusted_Mode.
16385         (Find_Sources): Minor speed optimization.
16387         * prj-proc.ads, prj-proc.adb (Check, Recursive_Check, Process): New
16388         parameter Trusted_Mode.
16390 2004-03-18  Sergey Rybin  <rybin@act-europe.fr>
16392         * scn.adb (Determine_License): Take into account a degenerated case
16393         when the source contains only comments.
16395 2004-03-18  Ed Schonberg  <schonberg@gnat.com>
16397         * sem_warn.adb (Check_References): For a warning on a selected
16398         component that does not come from source, locate an uninitialized
16399         component of the record type to produce a more precise error message.
16401 2004-03-15  Jerome Guitton  <guitton@act-europe.fr>
16403         * 3zsoccon.ads: Fix multicast options.
16405         * s-thread.ads: Move unchecked conversion from ATSD_Access to Address
16406         in the spec.
16408 2004-03-15  Robert Dewar  <dewar@gnat.com>
16410         * sem_prag.adb: Make sure No_Strict_Aliasing flag is set right when
16411         pragma used for a private type.
16413         * lib-xref.adb (Generate_Reference): Do not generate warning if
16414         reference is in a different unit from the pragma Unreferenced.
16416         * 5vtpopde.adb: Minor reformatting
16417         Fix casing of To_Task_ID
16419         * sem_ch13.adb (Validate_Unchecked_Conversion): Set No_Strict_Aliasing
16420         flag if we have an unchecked conversion to an access type in the same
16421         unit.
16423 2004-03-15  Geert Bosch  <bosch@gnat.com>
16425         * a-ngcoty.adb (Modulus): In alternate formula for large real or
16426         imaginary parts, use Double precision throughout.
16428         * a-tifiio.adb (Put_Scaled): Remove remaining pragma Debug. Not only
16429         we want to be able to compile run-time with -gnata for testing, but
16430         this may also be instantiated in user code that is compiled with -gnata.
16432 2004-03-15  Olivier Hainque  <hainque@act-europe.fr>
16434         * s-stalib.ads (Exception_Code): New type, to represent Import/Export
16435         codes. Having a separate type for this is useful to enforce consistency
16436         throughout the various run-time units.
16437         (Exception_Data): Use Exception_Code for Import_Code.
16439         * s-vmextra.ads, s-vmexta.adb: Use Exception_Code instead of a mix of
16440         Natural and Integer in various places.
16441         (Register_VMS_Exception): Use Base_Code_In to compute the exception code
16442         with the severity bits masked off.
16443         (Register_VMS_Exception): Handle the additional exception data pointer
16444         argument.
16446         * raise.c (_GNAT_Exception structure): Remove the handled_by_others
16447         component, now reflected by an exported accessor.
16448         (is_handled_by): New routine to compute whether the propagated
16449         occurrence matches some handler choice specification. Extracted out of
16450         get_action_description_for, and expanded to take care of the VMS
16451         specifities.
16452         (get_action_description_for): Use is_handled_by instead of an explicit
16453         complex condition to decide if the current choice at hand catches the
16454         propagated occurrence.
16456         * raise.h (Exception_Code): New type for C.
16458         * rtsfind.ads (RE_Id, RE_Unit_Table): Add
16459         System.Standard_Library.Exception_Code, to allow references from the
16460         pragma import/export expander.
16462         * a-exexpr.adb (Is_Handled_By_Others, Language_For, Import_Code_For):
16463         New accessors to allow easy access to GNAT exception data
16464         characteristics.
16465         (GNAT_GCC_Exception record, Propagate_Exception): Get rid of the
16466         redundant Handled_By_Others component, helper for the personality
16467         routine which will now be able to call the appropriate exception data
16468         accessor instead.
16470         * cstand.adb (Create_Standard): Adjust the type of the Import_Code
16471         component of Standard_Exception_Type to be the closest possible to
16472         Exception_Code in System.Standard_Library, that we cannot get at this
16473         point. Expand a ??? comment to notify that this type node should
16474         probably be rewritten later on.
16476         * exp_prag.adb (Expand_Pragma_Import_Export_Exception): Adjust the
16477         registration call to include a pointer to the exception object in the
16478         arguments.
16480         * init.c (__gnat_error_handler): Use Exception_Code and Base_Code_In
16481         instead of int and explicit bitmasks.
16483 2004-03-15  Vincent Celier  <celier@gnat.com>
16485         * vms_data.ads: Add new GNAT BIND qualifier /STATIC. Makes /NOSHARED
16486         equivalent to /STATIC and /NOSTATIC equivalent to /SHARED.
16488         * a-tasatt.adb (To_Access_Code): Remove this UC instantiation, no
16489         longer needed now that it is in the spec of
16490         System.Tasking.Task_Attributes.
16492         * adaint.h, adaint.c: (__gnat_create_output_file): New function
16494         * gnatcmd.adb: Fix bug introduced in previous rev: /= instead of =
16496         * g-os_lib.ads, g-os_lib.adb (Create_Output_Text_File): New function.
16498         * make.adb (Gnatmake): Do not check the executable suffix; it is being
16499         taken care of in Scan_Make_Arg.
16500         (Scan_Make_Arg): Add the executable suffix only if the argument
16501         following -o, in canonical case, does not end with the executable
16502         suffix.  When in verbose mode and executable file name does not end
16503         with executable suffix, output the executable name, in canonical case.
16505         * s-tataat.ads (Access_Dummy_Wrapper): Add pragma No_Strict_Aliasing
16506         to avoid warnings when instantiating Ada.Task_Attributes.
16507         Minor reformating.
16509         * mlib-prj.adb (Process_Imported_Libraries): Get the imported libraries
16510         in the correct order.
16512         * prj-makr.adb (Process_Directory): No longer use GNAT.Expect, but
16513         redirect standard output and error to a file for the invocation of the
16514         compiler, then read the file.
16516         * prj-nmsc.adb (Find_Sources): Use the Display_Value for each
16517         directory, instead of the Value.
16518         (Find_Source_Dirs): Remove useless code & comments.
16520 2004-03-15  Ed Schonberg  <schonberg@gnat.com>
16522         * exp_ch3.adb (Freeze_Record_Type): If a primitive operation of a
16523         tagged type is inherited, and the parent operation is not frozen yet,
16524         force generation of a freeze node for the inherited operation, so the
16525         corresponding dispatch entry is properly initialized.
16526         (Make_Predefined_Primitive_Specs): Check that return type is Boolean
16527         when looking for user-defined equality operation.
16529         * exp_ch4.adb (Expand_Composite_Equality): Check that return type is
16530         boolean when locating primitive equality of tagged component.
16532         * exp_ch5.adb (Expand_Assign_Array): If the left-hand side is a
16533         bit-aligned field and the right-hand side a string literal, introduce
16534         a temporary before expanding assignment into a loop.
16536         * exp_ch9.adb (Expand_N_Task_Type_Declaration): Copy expression for
16537         priority in full, to ensure that any expanded subepxressions of it are
16538         elaborated in the scope of the init_proc.
16540         * exp_prag.adb (Expand_Pragma_Import): Search for initialization call
16541         after object declaration, skipping over code that may have been
16542         generated for validity checks.
16544         * sem_ch12.adb (Validate_Private_Type_Instance): If type has unknown
16545         discriminants, ignore the known discriminants of its full view, if
16546         any, to check legality.
16548         * sem_ch3.adb (Complete_Private_Subtype): Do not create constrained
16549         component if type has unknown discriminants.
16550         (Analyze_Private_Extension_Declaration): Discriminant constraint is
16551         null if type has unknown discriminants.
16553         * sem_ch6.adb (Analyze_Generic_Subprogram_Body): Generate reference
16554         for end label when present.
16556         * s-fileio.adb (Open): When called with a C_Stream, use given name for
16557         temporary file, rather than an empty string.
16559 2004-03-15  Ed Falis  <falis@gnat.com>
16561         * s-thread.adb: Removed, no longer used.
16563 2004-03-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16565         * decl.c (target.h): Now include.
16566         (gnat_to_gnu_entity, case E_Access_Type): Use mode derived from ESIZE
16567         in new build_pointer_from_mode calls for non-fat/non-thin pointer.
16568         (validate_size): For POINTER_TYPE, get smallest size permitted on
16569         machine.
16571         * fe.h: Sort Einfo decls and add Set_Mechanism.
16573         * Makefile.in: (LIBGNAT_SRCS): Remove types.h.
16574         (ada/decl.o): Depends on target.h.
16576         * trans.c (tree_transform, N_Unchecked_Type_Conversion): Do not use
16577         FUNCTION_BOUNDARY; always use TYPE_ALIGN.
16579 2004-03-15  Thomas Quinot  <quinot@act-europe.fr>
16581         * 5ztpopsp.adb, 56tpopsp.adb: Fix spelling of Task_ID.
16583         * exp_ch4.adb (Expand_N_Indexed_Component): Do not call
16584         Insert_Dereference_Action when rewriting an implicit dereference into
16585         an explicit one, this will be taken care of during expansion of the
16586         explicit dereference.
16587         (Expand_N_Slice): Same. Always do the rewriting, even for the case
16588         of non-packed slices, since the dereference action generated by
16589         expansion of the explicit dereference is needed in any case.
16590         (Expand_N_Selected_Component): When rewriting an implicit dereference,
16591         analyze and resolve the rewritten explicit dereference so it is seen
16592         by the expander.
16593         (Insert_Dereference_Action): This procedure is now called only for the
16594         expansion of an N_Explcit_Dereference_Node. Do insert a check even for
16595         dereferences that do not come from source (including explicit
16596         dereferences resulting from rewriting implicit ones), but do not
16597         recursively insert a check for the dereference nodes contained within
16598         the check.
16599         (Insert_Dereference_Action): Clarify and correct comment.
16601 2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
16603         PR ada/14131
16604         Move language detection to the top level.
16605         * config-lang.in: Build by default.
16607 2004-03-05  Robert Dewar  <dewar@gnat.com>
16609         * 56taprop.adb, 5ataprop.adb: Remove unneeded unchecked conversions
16611         * a-tags.adb, a-tags.ads, s-finimp.adb, s-finroo.ads,
16612         i-cpoint.ads, i-cpoint.adb, i-cstrin.adb, i-cstrin.ads,
16613         5iosinte.ads, 5sosinte.ads, 5staspri.ads, 5itaprop.adb,
16614         5staprop.adb, 5wtaprop.adb, s-tataat.ads, s-tataat.adb: Move
16615         unchecked conversion to spec to avoid warnings.
16617         * s-tasini.adb, s-taskin.ads, 5atpopsp.adb: Correct spelling Task_Id
16618         to Task_ID
16620         * 7stpopsp.adb: Correct casing in To_Task_ID call
16622         * a-strsea.ads, a-strsea.adb: Minor reformatting
16624         * einfo.ads, einfo.adb: Define new flag No_Strict_Aliasing
16626         * errout.ads: Switch for VMS is now NO_STRICT_ALIASING.
16627         Adjust Max_Msg_Length to be clearly large enough.
16629         * fe.h: Define In_Same_Source_Unit
16631         * osint.adb: Add pragma Warnings Off to suppress warnings
16632         * g-dyntab.adb, g-table.adb, g-thread.adb: Add Warnings (Off) to kill
16633         aliasing warnings.
16635         * opt.ads: Put entries in alpha order. Add entry for No_Strict_Aliasing
16637         * par-prag.adb: Add dummy entry for No_Strict_Aliasing pragma
16639         * sem_ch13.adb: Generate validate unchecked conversion nodes for gcc.
16641         * sem_ch3.adb: Set No_Strict_Aliasing flag if config pragma set.
16643         * sem_prag.adb: Implement pragma No_Strict_Aliasing.
16645         * sinfo.ads: Remove obsolete comment on validate unchecked conversion
16646         node. We now do generate them for gcc back end.
16648         * table.adb, sinput.adb: Add pragma Warnings Off to suppress aliasing
16649         warning.
16651         * sinput-c.adb: Fix bad name in header.
16652         Add pragma Warnings Off to suppress aliasing warning.
16654         * sinput-l.adb: Add pragma Warnings Off to suppress aliasing warning.
16656         * snames.h, snames.ads, snames.adb: Add entry for pragma
16657         No_Strict_Aliasing.
16659 2004-03-05  Vincent Celier  <celier@gnat.com>
16661         * prj-com.ads: Add hash table Files_Htable to check when a file name
16662         is already a source of another project.
16664         * prj-nmsc.adb (Record_Source): Before recording a new source, check
16665         if its file name is not already a source of another project. Report an
16666         error if it is.
16668         * gnatcmd.adb: When GNAT PRETTY is invoked with a project file and no
16669         source file name, call gnatpp with all the sources of the main project.
16671         * vms_conv.adb (Initialize): GNAT PRETTY may be called with any number
16672         of file names.
16674         * vms_data.ads: Correct documentation of new /OPTIMIZE keyword
16675         NO_STRICT_ALIASING. Add new qualifier for GNAT PRETTY:
16676         /RUNTIME_SYSTEM=, converted to --RTS=
16677         /NOTABS, converted to -notabs
16679 2004-03-05  Pascal Obry  <obry@gnat.com>
16681         * make.adb: Minor reformatting.
16683 2004-03-05  Ed Schonberg  <schonberg@gnat.com>
16685         Part of implemention of AI-262.
16686         * par-ch10.adb (P_Context_Clause): Recognize private with_clauses.
16688         * sem_ch10.ads, sem_ch10.adb: (Install_Private_With_Clauses): New
16689         procedure.
16691         * sem_ch3.adb (Analyze_Component_Declaration): Improve error message
16692         when component type is a partially constrained class-wide subtype.
16693         (Constrain_Discriminated_Type): If parent type has unknown
16694         discriminants, a constraint is illegal, even if full view has
16695         discriminants.
16696         (Build_Derived_Record_Type): Inherit discriminants when deriving a type
16697         with unknown discriminants whose full view is a discriminated record.
16699         * sem_ch7.adb (Preserve_Full_Attributes): Preserve Has_Discriminants
16700         flag, to handle properly derivations of tagged types with unknown
16701         discriminants.
16702         (Analyze_Package_Spec, Analyze_Package_Body): Install
16703         Private_With_Clauses before analyzing private part or body.
16705         * einfo.ads: Indicate that both Has_Unknown_Discriminants and
16706         Has_Discriminants can be true for a given type (documentation).
16708 2004-03-05  Arnaud Charlet  <charlet@act-europe.fr>
16710         * s-restri.ads: Fix license (GPL->GMGPL).
16712         * s-tassta.adb: Minor reformatting.
16714         * s-tasren.adb: Replace manual handling of Self_Id.ATC_Nesting_Level
16715         by calls to Exit_One_ATC_Level, since additional clean up is performed
16716         by this function.
16718         * s-tpobop.adb: Replace manual handling of Self_Id.ATC_Nesting_Level
16719         by calls to Exit_One_ATC_Level, since additional clean up is performed
16720         by this function.
16722 2004-03-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16724         * trans.c: Reflect GCC changes to fix bootstrap problem.
16725         Add warning for suspicious aliasing unchecked conversion.
16727 2004-03-05  GNAT Script  <nobody@gnat.com>
16729         * Make-lang.in: Makefile automatically updated
16731 2004-03-02  Emmanuel Briot  <briot@act-europe.fr>
16733         * ali.adb (Read_Instantiation_Instance): Do not modify the
16734         current_file_num when reading information about instantiations, since
16735         this corrupts files in later references.
16737 2004-03-02  Vincent Celier  <celier@gnat.com>
16739         * bcheck.adb (Check_Consistency): Get the full path of an ALI file
16740         before checking if it is read-only.
16742         * bld.adb (Recursive_Process): Concatenate <PROJECT>.src_dirs in front
16743         of SRC_DIRS and eliminate duplicates.
16745         * gprcmd.adb: Replace command "path" with command "path_sep" to return
16746         the path separator.
16747         (Usage): Document path_sep
16749         * Makefile.generic: For Ada and GNU C++ cases, link directly with the
16750         C++ compiler. No need for a script.
16751         Replace use of C*_INCLUDE_PATH env var for GCC compilers with CPATH.
16752         Do not call gprcmd to build the C*_INCLUDE_PATHs, do it with function
16753         subst.
16755         * prj-env.adb (For_All_Source_Dirs): Only add source dirs in project
16756         where there are Ada sources.
16757         (Set_Ada_Paths): Only add to the include path the source dirs of project
16758         with Ada sources.
16759         (Add_To_Path): Add the Display_Values of the directories, not their
16760         Values.
16762         * prj-nmsc.adb (Find_Sources): Set flag Sources_Present in the project
16763         data.
16765         * prj-nmsc.adb (Add_ALI_For): Make sure that the element Display_Value
16766         is not No_Name.
16767         (Find_Source_Dirs): Set Display_Value to a non canonicalized value, only
16768         Value is canonicalized.
16769         (Language_Independent_Check): Do not copy Value to Display_Value when
16770         canonicalizing Value.
16772         * prj-part.adb (Post_Parse_Context_Clause): Compare canonical cased
16773         path to find limited with cycles.
16774         (Parse_Single_Project): Use canonical cased path to find the end of a
16775         with cycle.
16777 2004-03-02  Ed Schonberg  <schonberg@gnat.com>
16779         * sem_ch10.adb (Optional_Subunit): Verify that unit contains a subunit
16780         and not a child unit.
16782         * sinfo.ads, sinfo.adb: Rearrange flags so that Private_Present can
16783         appear in a with_clause.
16785         * decl.c (gnat_to_gnu_type): If entity is a generic type, which can
16786         only happen in type_annotate mode, do not try to elaborate it.
16788         * exp_util.adb (Force_Evaluation): If expression is a selected
16789         component on the left of an assignment, use a renaming rather than a
16790         temporary to remove side effects.
16792         * freeze.adb (Freeze_Entity): Do not freeze a global entity within an
16793         inlined instance body, which is analyzed before the end of the
16794         enclosing scope.
16796 2004-03-02  Robert Dewar  <dewar@gnat.com>
16798         * par-ch10.adb, par-ch3.adb, par-ch4.adb, scng.adb,
16799         sem_ch4.adb: Use new feature for substitution of keywords in VMS
16801         * errout.ads, errout.adb: Implement new circuit for substitution of
16802         keywords in VMS.
16804         * sem_case.adb (Analyze_Choices): Place message properly when case is
16805         a subtype reference rather than an explicit range.
16807         * sem_elim.adb, s-tpobop.ads, exp_ch2.adb: Minor reformatting
16809 2004-03-02  Doug Rupp  <rupp@gnat.com>
16811         * init.c (__gnat_initialize)[VMS]: Resignal RDB-E-STREAM_EOF.
16813 2004-03-02  Thomas Quinot  <quinot@act-europe.fr>
16815         * s-tporft.adb: Add missing locking around call to Initialize_ATCB.
16817 2004-03-02  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16819         * utils.c (finish_record_type): Do not set DECL_NONADDRESSABLE for a
16820         BLKmode bitfield.
16822 2004-02-25  Robert Dewar  <dewar@gnat.com>
16824         * 51osinte.ads, 52osinte.ads, 53osinte.ads, 54osinte.ads,
16825         55osinte.ads, 56osinte.ads, 5aosinte.ads, 5bosinte.ads,
16826         5cosinte.ads, 5fosinte.ads, 5gosinte.ads, 5hosinte.ads,
16827         5iosinte.ads, 5losinte.ads, 5nosinte.ads, 5oosinte.ads,
16828         5posinte.ads, 5sosinte.ads, 5tosinte.ads, 5vosinte.ads,
16829         5wosinte.ads, 5zosinte.ads: Move instances of Unchecked_Conversion to
16830         the defining instance of the type to avoid aliasing problems.
16831         Fix copyright header.  Fix bad comments in package header.
16833         * exp_util.adb, prj-part.adb, prj-part.adb: Minor reformatting
16835 2004-02-25  Ed Schonberg  <schonberg@gnat.com>
16837         * exp_ch2.adb (Param_Entity): Handle properly formals that have been
16838         rewritten as references when aliased through an address clause.
16840         * sem_ch4.adb (Try_Indirect_Call): Normalize actuals before checking
16841         whether call can be interpreted as an indirect call to the result of a
16842         parameterless function call returning an access subprogram.
16844 2004-02-25  Arnaud Charlet  <charlet@act-europe.fr>
16846         Code clean up:
16847         * exp_ch7.adb (Make_Clean): Remove generation of calls to
16848         Unlock[_Entries], since this is now done by Service_Entries directly.
16850         * exp_ch9.adb (Build_Protected_Subprogram_Body): ditto.
16852         * s-tpobop.ads, s-tpobop.adb (PO_Service_Entries): New nested procedure
16853         Requeue_Call for better code readability. Change spec and update calls:
16854         PO_Service_Entries now unlock the PO on exit.
16855         (Protected_Entry_Call, Timed_Protected_Entry_Call): Update calls to
16856         PO_Service_Entries.
16858         * s-tposen.ads, s-tposen.adb (Service_Entry): Now unlock the PO on exit.
16860         * s-taenca.adb, s-tasren.adb: Update calls to PO_Service_Entries.
16862 2004-02-25  Sergey Rybin  <rybin@act-europe.fr>
16864         * exp_ch9.adb (Build_Simple_Entry_Call): Prevent expanding the
16865         protected subprogram call and analyzing the result of such expanding
16866         in case when the called protected subprogram is eliminated.
16868         * sem_elim.adb (Check_Eliminated): Skip blocks when comparing scope
16869         names.
16871 2004-02-25  Jerome Guitton  <guitton@act-europe.fr>
16873         * Makefile.in: Clean ups.
16875 2004-02-23  Ed Schonberg  <schonberg@gnat.com>
16877         * exp_ch6.adb (Expand_N_Subprogram_Declaration): Do not create
16878         protected operations if original subprogram is flagged as eliminated.
16879         (Expand_N_Subprogram_Body): For a protected operation, create
16880         discriminals for next operation before checking whether the operation
16881         is eliminated.
16883         * exp_ch9.adb (Expand_N_Protected_Body,
16884         Expand_N_Protected_Type_Declaration): Do not generate specs and bodies
16885         for internal protected operations if the original subprogram is
16886         eliminated.
16888         * sem_elim.adb (Check_Eliminated): Handle properly protected operations
16889         declared in a single protected object.
16891 2004-02-23  Vincent Celier  <celier@gnat.com>
16893         * prj-attr.adb: Make attribute Builder'Executable an associative array,
16894         case insensitive if file names are case insensitive, instead of a
16895         standard associative array.
16897         * prj-attr.adb (Initialize): For 'b' associative arrays, do not set
16898         them as case insensitive on platforms where the file names are case
16899         sensitive.
16901         * prj-part.adb (Parse_Single_Project): Make sure, when checking if
16902         project file has already been parsed that canonical path are compared.
16904 2004-02-23  Robert Dewar  <dewar@gnat.com>
16906         * sinput-c.ads: Correct bad unit title in header
16908         * freeze.adb: Minor reformatting
16910 2004-02-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16912         * trans.c (tree_transform, case N_Procedure_Call_Statement): For
16913         nonaddressable COMPONENT_REF that is removing padding that we are
16914         taking the address of, take the address of the padded record instead
16915         if item is variable size.
16917 2004-02-20  Robert Dewar  <dewar@gnat.com>
16919         * bld.adb, exp_util.adb, gprcmd.adb: Minor reformatting
16921 2004-02-20  Ed Schonberg  <schonberg@gnat.com>
16923         * freeze.adb (Freeze_Record_Type): Generalize mechanism that generates
16924         itype references for the constrained designated type of a component
16925         whose base type is already frozen.
16927 2004-02-20  Arnaud Charlet  <charlet@act-europe.fr>
16929         * init.c (__gnat_error_handler [tru64]): Rewrite previous change to
16930         avoid GCC warnings.
16932 2004-02-20  Sergey Rybin  <rybin@act-europe.fr>
16934         * sem_ch12.adb (Analyze_Formal_Package): Create a new defining
16935         identifier for a phantom package that rewrites the formal package
16936         declaration with a box. The Add semantic decorations for the defining
16937         identifier from the original node (that represents the formal package).
16939 2004-02-19  Matt Kraai  <kraai@alumni.cmu.edu>
16941         * Make-lang.in (ada/stamp-sdefault): Use the top level
16942         move-if-change.
16944 2004-02-19  Richard Henderson  <rth@redhat.com>
16946         * misc.c (record_code_position): Add third build arg for RTL_EXPR.
16948 2004-02-18  Emmanuel Briot  <briot@act-europe.fr>
16950         * ali.ads, ali.adb (First_Sdep_Entry): No longer a constant, so that
16951         Scan_ALI can be used for multiple ALI files without reinitializing
16952         between calls.
16954 2004-02-18  Robert Dewar  <dewar@gnat.com>
16956         * debug.adb: Minor reformatting.
16958 2004-02-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16960         * decl.c (gnat_to_gnu_entity, case object): Set DECL_POINTER_ALIAS_SET
16961         to zero if there is an address clause.
16963 2004-02-18  Thomas Quinot  <quinot@act-europe.fr>
16965         * exp_util.adb (Side_Effect_Free): Any literal is side effects free.
16967 2004-02-18  Gary Dismukes  <dismukes@gnat.com>
16969         * layout.adb (Layout_Component_List): Revise generation of call to
16970         discriminant-checking function to pass selections of all of the type's
16971         discriminants rather than just the variant-controlling discriminant.
16973 2004-02-18  Olivier Hainque  <hainque@act-europe.fr>
16975         * 5gmastop.adb (Pop_Frame): Do not call exc_unwind, which is bound to
16976         fail in the current setup and triggers spurious system error messages.
16977         Pretend it occurred and failed instead.
16979 2004-02-18  Vincent Celier  <celier@gnat.com>
16981         * bld.adb: Mark FLDFLAGS as saved
16982         (Process_Declarative_Items): Add Linker'Linker_Options to FLDFLAGS when
16983         it is not the root project.  Put each directory to be
16984         extended between double quotes to prevent it to be expanded on Windows.
16985         (Recursive_Process): Reset CFLAGS/CXXFLAGS to nothing before processing
16986         the project file. Set them back to their initial values if they have not
16987         been set in the project file.
16989         * gprcmd.adb: (Gprdebug, Debug): New global variables
16990         (Display_Command): New procedure
16991         (Usage): Document new command "linkopts"
16992         Call Display_Command when env var GPRDEBUG has the value "TRUE"
16993         Implement new command "linkopts"
16994         Remove quotes that may be around arguments for "extend"
16995         Always call Normalize_Pathname with arguments formatted for the platform
16997         * Makefile.generic: Link C/C++ mains with $(FLDFLAGS)
16998         Change @echo to @$(display) in target clean to be able to clean silently
17000         * Makefile.prolog: Save FLDFLAGS and give it an initial empty value
17002         * prj-part.adb (Project_Path_Name_Of): Do not put final result in
17003         canonical case.
17005         * prj-part.adb (Parse_Single_Project): Always call with From_Extended
17006         = Extending_All when current project is an extending all project.
17008         * vms_conv.adb (Output_File_Expected): New Boolean global variable,
17009         set to True only for LINK command, after Unix switch -o.
17010         (Process_Arguments): Set Output_File_Expected to True for LINK command
17011         after Unix switch -o. When Output_File_Expected is True, never add an
17012         extension to a file name.
17014         * 5vml-tgt.adb (Build_Dynamic_Library): Do not append "/OPTIONS" to the
17015         option file name, only to the --for-linker= switch.
17016         (Option_File_Name): If option file name do not end with ".opt", append
17017         "/OPTIONS".
17019 2004-02-18  GNAT Script  <nobody@gnat.com>
17021         * Make-lang.in: Makefile automatically updated
17023 2004-02-17  Matt Kraai  <kraai@alumni.cmu.edu>
17025         * Make-lang.in (stamp-sdefault): Do not depend on
17026         move-if-change.
17028 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
17030         * config-lang.in: Disable Ada by default until probe logic for
17031         a bootstrap Ada compiler can be moved to the top level configure
17032         script.
17034 2004-02-12  Olivier Hainque  <hainque@act-europe.fr>
17036         * decl.c (components_to_record): Don't claim that the internal fields
17037         we make to hold the variant parts are semantically addressable, because
17038         they are not.
17040         * exp_pakd.adb (Create_Packed_Array_Type): Rename Esiz into PASize and
17041         adjust the comment describing the modular type form when we can use it.
17042         (Install_PAT): Account for the Esiz renaming.
17044         * init.c (__gnat_error_handler for alpha-tru64): Arrange to clear the
17045         sc_onstack context indication before raising the exception to which
17046         the signal is mapped. Allows better handling of later signals possibly
17047         triggered by the resumed user code if the exception is handled.
17049 2004-02-12  Arnaud Charlet  <charlet@act-europe.fr>
17051         * 5zinit.adb: Removed, no longer used.
17053 2004-02-12  Robert Dewar  <dewar@gnat.com>
17055         * ali.adb: Remove separating space between parameters on R line. Makes
17056         format consistent with format used by the binder for Set_Globals call.
17058         * atree.ads, atree.adb: Minor reformatting (new function header format)
17060         * bindgen.adb: Add Run-Time Globals documentation section containing
17061         detailed documentation of the globals passed from the binder file to
17062         the run time.
17064         * gnatls.adb: Minor reformatting
17066         * init.c (__gnat_set_globals): Add note pointing to documentation in
17067         bindgen.
17069         * lib-writ.ads, lib-writ.adb: Remove separating space between
17070         parameters on R line.
17071         Makes format consistent with format used by the binder for Set_Globals
17072         call.
17074         * osint.ads: Add 2004 to copyright notice
17075         Minor reformatting
17077         * snames.ads: Correct capitalization of FIFO_Within_Priorities
17078         Noticed during code reading, documentation issue only
17080         * usage.adb: Remove junk line for obsolete C switch
17081         Noticed during code reading
17083 2004-02-12  Vincent Celier  <celier@gnat.com>
17085         * bld.adb (Process_Declarative_Items): For Source_Dirs call gprcmd
17086         extend for each directory, so that multiple /** directories are
17087         extended individually.
17088         (Recursive_Process): Set the default for LANGUAGES to ada
17090         * gprcmd.adb: Define new command "ignore", to do nothing.
17091         Implement new comment "path".
17093         * Makefile.generic: Suppress output when SILENT is set
17094         Make sure that when compiler for C/C++ is gcc, the correct -x switch is
17095         used, so that the correct compiler is invoked.
17096         When compiler is gcc/g++, put search path in env vars C_INCLUDE_PATH/
17097         CXX_INCLUDE_PATH, to avoid failure with too long command lines.
17099 2004-02-12  Jerome Guitton  <guitton@act-europe.fr>
17101         * Makefile.in: Clean ups and remove obsolete targets.
17103 2004-02-12  Ed Schonberg  <schonberg@gnat.com>
17105         * exp_ch5.adb: Remove Possible_Unligned_Slice, in favor of the similar
17106         predicate declared in exp_util.
17108         * exp_util.adb: Add comments.
17110         * sem_ch10.adb (Analyze_Subunit): Remove ultimate parent unit from
17111         visibility before compiling context of the subunit.
17113         * sem_res.adb (Check_Parameterless_Call): If the context expects a
17114         value but the name is a procedure, do not attempt to analyze as a call,
17115         in order to obtain more telling diagnostics.
17117         * sem_util.adb (Wrong_Type): Further enhancement to diagnose missing
17118         'Access on parameterless function calls.
17119         (Normalize_Actuals): For a parameterless function call with missing
17120         actuals, defer diagnostic until resolution of enclosing call.
17122         * sem_util.adb (Wrong_Type): If the context type is an access to
17123         subprogram and the expression is a procedure name, suggest a missing
17124         'attribute.
17126 2004-02-10  Arnaud Charlet  <charlet@act-europe.fr>,
17127             Nathanael Nerode  <neroden@gcc.gnu.org>
17129         PR ada/6637, PR ada/5911
17130         Merge with libada-branch:
17131         * config-lang.in: Build libada only when ada is built.
17133 2004-02-09  Ed Schonberg  <schonberg@gnat.com>
17135         * exp_ch4.adb (Expand_N_Op_Eq): When looking for the primitive equality
17136         for a tagged type, verify that both formals have the same type.
17138         * exp_ch6.adb (Add_Call_By_Copy_Code): Initialize properly the
17139         temporary when the formal is an in-parameter and the actual a possibly
17140         unaligned slice.
17142         * exp_ch9.adb (Expand_Entry_Barrier): Resolve barrier expression even
17143         when expansion is disabled, to ensure proper name capture with
17144         overloaded literals.  Condition can be of any boolean type, resolve
17145         accordingly.
17147         * sem_ch8.adb (Analyze_Subprogram_Renaming): Emit warning if the
17148         renaming is for a formal subprogram with a default operator name, and
17149         there is a usable operator that is visible at the point of
17150         instantiation.
17152 2004-02-09  Robert Dewar  <dewar@gnat.com>
17154         * ali.adb (Scan_Ali) Add Ignore_Errors argument. This is a major
17155         rewrite to ignore errors in ali files, intended to allow tools downward
17156         compatibility with new versions of ali files.
17158         * ali.ads: Add new parameter Ignore_Errors
17160         * bcheck.adb (Check_Consistent_Restrictions): Fix error of sometimes
17161         duplicating the error message giving the file with restrictions.
17163         * debug.adb: Add debug flag I for gnatbind
17165         * errout.adb (Set_Msg_Insertion_Node): Suppress extra quotes around
17166         operators for the case where the operator is a defining operator.
17168         * exp_ch3.adb: Minor reformatting (new function spec format).
17170         * exp_ch4.adb: Add comment for previous change, and make minor
17171         adjustment to loop to always check for improper loop termination.
17172         Minor reformatting throughout (new function spec format).
17174         * gnatbind.adb: Implement -di debug flag for gnatbind
17176         * gnatlink.adb: Call Scan_ALI with Ignore_Errors set to True
17178         * gnatls.adb: Call Scan_ALI with Ignore_Errors set to True
17180         * lib-load.adb: Fix bad assertion.
17181         Found by testing and code reading.
17182         Minor reformatting.
17184         * lib-load.ads: Minor reformatting.
17186         * lib-writ.adb: There is only one R line now.
17188         * lib-writ.ads: Add documentation on making downward compatible changes
17189         to ali files so old tools work with new ali files.
17190         There is only one R line now.
17191         Add documentation on format incompatibilities (with special GPS note)
17193         * namet.ads, namet.adb: (Is_Operator_Name): New procedure
17195         * par-load.adb: Minor reformatting
17197         * sem_ch8.adb: Fix to error message from last update
17198         Minor reformatting and restructuring of code from last update
17200         * par-prag.adb, snames.adb, snames.ads, snames.h,
17201         sem_prag.adb: Implement pragma Profile.
17203         * stylesw.adb: Implement -gnatyN switch to turn off all style check
17204         options.
17206         * usage.adb: Add line for -gnatyN switch
17208         * vms_data.ads: Add entry STYLE_CHECKS=NONE for -gnatyN
17210 2004-02-09  Albert Lee  <lee@gnat.com>
17212         * errno.c: define _SGI_MP_SOURCE for task-safe errno on IRIX
17214 2004-02-09  Ed Schonberg  <schonberg@gnat.com>
17216         * exp_ch3.adb (Build_Slice_Assignment): Handle properly case of null
17217         slices.
17219         * exp_ch6.adb (Expand_Call): Do not inline a call when the subprogram
17220         is nested in an instance that is not frozen yet, to avoid
17221         order-of-elaboration problems in gigi.
17223         * sem_attr.adb (Analyze_Attribute, case 'Access): Within an inlined
17224         body the attribute is legal.
17226 2004-02-09  Robert Dewar  <dewar@gnat.com>
17228         * s-rident.ads: Minor comment correction
17230         * targparm.adb: Remove dependence on uintp completely. There was
17231         always a bug in Make in that it called Targparm before initializing
17232         the Uint package. The old code appeared to get away with this, but
17233         the new code did not! This caused an assertion error in gnatmake.
17235         * targparm.ads: Fix bad comment, restriction pragmas with parameters
17236         are indeed fully supported.
17238 2004-02-06  Alan Modra  <amodra@bigpond.net.au>
17240         * misc.c (default_pass_by_ref): Update INIT_CUMULATIVE_ARGS call.
17242 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
17244         * ada/utils.c (create_param_decl): Replace PROMOTE_PROTOTYPES
17245         with targetm.calls.promote_prototypes.
17247 2004-02-04  Robert Dewar  <dewar@gnat.com>
17249         * 5gtasinf.adb, 5gtasinf.ads, 5gtaprop.adb, ali.adb,
17250         ali.ads, gprcmd.adb: Minor reformatting
17252         * bindgen.adb: Output restrictions string for new style restrictions
17253         handling
17255         * impunit.adb: Add s-rident.ads (System.Rident) and
17256         s-restri (System.Restrictions)
17258         * lib-writ.adb: Fix bug in writing restrictions string (last few
17259         entries wrong)
17261         * s-restri.ads, s-restri.adb: Change name Restrictions to
17262         Run_Time_Restrictions to avoid conflict with package name.
17263         Add circuit to read and acquire run time restrictions.
17265 2004-02-04  Jose Ruiz  <ruiz@act-europe.fr>
17267         * restrict.ads, restrict.adb: Use the new restriction
17268         No_Task_Attributes_Package instead of the old No_Task_Attributes.
17270         * sem_prag.adb: No_Task_Attributes is a synonym of
17271         No_Task_Attributes_Package.
17273         * snames.ads, snames.adb: New entry for proper handling of
17274         No_Task_Attributes.
17276         * s-rident.ads: Adding restriction No_Task_Attributes_Package
17277         (AI-00249) that supersedes the GNAT specific restriction
17278         No_Task_Attributes.
17280 2004-02-04  Ed Schonberg  <schonberg@gnat.com>
17282         * sem_prag.adb:
17283         (Analyze_Pragma, case Warnings): In an inlined body, as in an instance
17284          body, an identifier may be wrapped in an unchecked conversion.
17286 2004-02-04  Vincent Celier  <celier@gnat.com>
17288         * lib-writ.ads: Comment update for the W lines
17290         * bld.adb: (Expression): An empty string list is static
17292         * fname-uf.adb: Minor comment update
17294         * fname-uf.ads: (Get_File_Name): Document new parameter May_Fail
17296         * gnatbind.adb: Initialize Cumulative_Restrictions with the
17297         restrictions on the target.
17299 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
17301         * ada/trans.c (gigi): Use gen_rtx_SYMBOL_REF instead of
17302         gen_rtx.
17304 2004-02-02  Arnaud Charlet  <charlet@gnat.com>
17306         * Makefile.in: Remove setting of THREADSLIB on mips o32, unneeded.
17308 2004-02-02  Vincent Celier  <celier@gnat.com>
17310         * gprcmd.adb (Check_Args): If condition is false, print the invoked
17311         comment before the usage.
17312         Gprcmd: Fail when command is not recognized.
17313         (Usage): Document command "prefix"
17315         * g-md5.adb (Digest): Process last block.
17316         (Update): Do not process last block. Store remaining characters and
17317         length in Context.
17319         * g-md5.ads (Update): Document that several call to update are
17320         equivalent to one call with the concatenated string.
17321         (Context): Add fields to allow new Update behaviour.
17323         * fname-uf.ads/adb (Get_File_Name): New Boolean parameter May_Fail,
17324         defaulted to False.
17325         When May_Fail is True and no existing file can be found, return No_File.
17327         * 6vcstrea.adb: Inlined functions are now wrappers to implementation
17328         functions.
17330         * lib-writ.adb (Write_With_Lines): When body file does not exist, use
17331         spec file name instead on the W line.
17333 2004-02-02  Robert Dewar  <dewar@gnat.com>
17335         * ali.adb: Read and acquire info from new format restrictions lines
17337         * bcheck.adb: Add circuits for checking restrictions with parameters
17339         * bindgen.adb: Output dummy restrictions data
17340         To be changed later
17342         * ali.ads, checks.adb, exp_aggr.adb, exp_attr.adb, exp_ch11.adb,
17343         exp_ch3.adb, exp_ch5.adb, exp_ch6.adb, exp_ch7.adb, exp_util.adb,
17344         freeze.adb, gnat1drv.adb, sem_attr.adb, sem_ch10.adb, sem_ch11.adb,
17345         sem_ch12.adb, targparm.adb, targparm.ads, tbuild.adb, sem_ch2.adb,
17346         sem_elab.adb, sem_res.adb: Minor changes for new restrictions handling.
17348         * exp_ch9.adb (Build_Master_Entity): Cleanup the code (also suppresses
17349         the warning message on access to possibly uninitialized variable S)
17350         Minor changes for new restrictions handling.
17352         * gnatbind.adb: Minor reformatting
17353         Minor changes for new restrictions handling
17354         Move circuit for -r processing here from bcheck (cleaner)
17356         * gnatcmd.adb, gnatlink.adb: Minor reformatting
17358         * lib-writ.adb: Output new format restrictions lines
17360         * lib-writ.ads: Document new R format lines for new restrictions
17361         handling.
17363         * s-restri.ads/adb: New files
17365         * Makefile.rtl: Add entry for s-restri.ads/adb
17367         * par-ch3.adb: Fix bad error messages starting with upper case letter
17368         Minor reformatting
17370         * restrict.adb: Major rewrite throughout for new restrictions handling
17371         Major point is to handle restrictions with parameters
17373         * restrict.ads: Major changes in interface to handle restrictions with
17374         parameters. Also generally simplifies setting of restrictions.
17376         * snames.ads/adb: New entry for proper handling of No_Requeue
17378         * sem_ch3.adb (Count_Tasks): New circuitry for implementing Max_Tasks
17379         restriction counting.
17380         Other minor changes for new restrictions handling
17382         * sem_prag.adb: No_Requeue is a synonym for No_Requeue_Statements.
17383         Restriction_Warnings now allows full parameter notation
17384         Major rewrite of Restrictions for new restrictions handling
17386 2004-02-02  Javier Miranda  <miranda@gnat.com>
17388         * par-ch3.adb (P_Identifier_Declarations): Give support to the Ada 0Y
17389         syntax rule for object renaming declarations.
17390         (P_Array_Type_Definition): Give support for the Ada 0Y syntax rule for
17391         component definitions.
17393         * sem_ch3.adb (Analyze_Component_Declaration): Give support to access
17394         components.
17395         (Array_Type_Declaration): Give support to access components. In addition
17396         it was also modified to reflect the name of the object in anonymous
17397         array types. The old code did not take into account that it is possible
17398         to have an unconstrained anonymous array with an initial value.
17399         (Check_Or_Process_Discriminants): Allow access discriminant in
17400         non-limited types.
17401         (Process_Discriminants): Allow access discriminant in non-limited types
17402         Initialize the new Access_Definition field in N_Object_Renaming_Decl
17403         node.  Change Ada0Y to Ada 0Y in comments
17405         * sem_ch4.adb (Find_Equality_Types): Allow anonymous access types in
17406         equality operators.
17407         Change Ada0Y to Ada 0Y in comments
17409         * sem_ch8.adb (Analyze_Object_Renaming): Give support to access
17410         renamings Change Ada0Y to Ada 0Y in comments
17412         * sem_type.adb (Find_Unique_Type): Give support to the equality
17413         operators for universal access types
17414         Change Ada0Y to Ada 0Y in comments
17416         * sinfo.adb (Access_Definition, Set_Access_Definition): New subprograms
17418         * sinfo.ads (N_Component_Definition): Addition of Access_Definition
17419         field.
17420         (N_Object_Renaming_Declaration): Addition of Access_Definition field
17421         Change Ada0Y to Ada 0Y in comments
17423         * sprint.adb (Sprint_Node_Actual): Give support to the new syntax for
17424         component definition and object renaming nodes
17425         Change Ada0Y to Ada 0Y in comments
17427 2004-02-02  Jose Ruiz  <ruiz@act-europe.fr>
17429         * restrict.adb: Use the new restriction identifier
17430         No_Requeue_Statements instead of the old No_Requeue for defining the
17431         restricted profile.
17433         * sem_ch9.adb (Analyze_Requeue): Check the new restriction
17434         No_Requeue_Statements.
17436         * s-rident.ads: Adding restriction No_Requeue_Statements (AI-00249)
17437         that supersedes the GNAT specific restriction No_Requeue. The later is
17438         kept for backward compatibility.
17440 2004-02-02  Ed Schonberg  <schonberg@gnat.com>
17442         * lib.ads, i-cobol.ads, * s-stoele.ads, s-thread.ads, style.ads,
17443         5staprop.adb, atree.adb, atree.ads, g-crc32.ads: Remove redundant
17444         pragma and fix incorrect ones.
17446         * sem_prag.adb For pragma Inline and pragma Pure_Function, emit a
17447         warning if the pragma is redundant.
17449 2004-02-02  Thomas Quinot  <quinot@act-europe.fr>
17451         * 5staprop.adb: Add missing 'constant' keywords.
17453         * Makefile.in: use consistent value for SYMLIB on
17454         platforms where libaddr2line is supported.
17456 2004-02-02  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17458         * utils.c (end_subprog_body): Do not call rest_of_compilation if just
17459         annotating types.
17461 2004-02-02  Olivier Hainque  <hainque@act-europe.fr>
17463         * init.c (__gnat_install_handler): Setup an alternate stack for signal
17464         handlers in the environment thread. This allows proper propagation of
17465         an exception on stack overflows in this thread even when the builtin
17466         ABI stack-checking scheme is used without support for a stack reserve
17467         region.
17469         * utils.c (create_field_decl): Augment the head comment about bitfield
17470         creation, and don't account for DECL_BIT_FIELD in DECL_NONADDRESSABLE_P
17471         here, because the former is not accurate enough at this point.
17472         Let finish_record_type decide instead.
17473         Don't make a bitfield if the field is to be addressable.
17474         Always set a size for the field if the record is packed, to ensure the
17475         checks for bitfield creation are triggered.
17476         (finish_record_type): During last pass over the fields, clear
17477         DECL_BIT_FIELD when possible in the !STRICT_ALIGNMENT case, as this is
17478         not covered by the calls to layout_decl.  Adjust DECL_NONADDRESSABLE_P
17479         from DECL_BIT_FIELD.
17481 2004-01-30  Kelley Cook  <kcook@gcc.gnu.org>
17483         * Make-lang.in (doc/gnat_ug_unx.dvi): Use $(abs_docdir).
17484         (doc/gnat_ug_vms.dvi, doc/gnat_ug_unx.dvi): Likewise.
17485         (doc/gnat_ug_unx.dvi, doc/gnat-style.dvi): Likewise.
17487 2004-01-26  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17489         * Makefile.in (mips-sgi-irix5): Remove -lathread from THREADSLIB.
17491         * 5fsystem.ads (Functions_Return_By_DSP): Set to False.
17492         (ZCX_By_Default): Likewise.
17493         (Front_End_ZCX_Support): Likewise.
17495         * 5gtaprop.adb (Stack_Guard): Mark T, On unreferenced.
17496         (Initialize_Lock): Mark Level unreferenced.
17497         (Sleep): Mark Reason unreferenced.
17498         (Timed_Sleep): Likewise.
17499         (Wakeup): Likewise.
17500         (Exit_Task): Use Result.
17501         (Check_No_Locks): Mark Self_ID unreferenced.
17503         * 5gtasinf.adb (New_Sproc): Make Attr constant.
17504         (Bound_Thread_Attributes): Make Sproc constant.
17505         (New_Bound_Thread_Attributes): Likewise.
17507 2004-01-26  Ed Schonberg  <schonberg@gnat.com>
17509         * exp_ch3.adb (Build_Slice_Assignment): New TSS procedure for
17510         one-dimensional array an slice assignments, when component type is
17511         controlled.
17513         * exp_ch5.adb (Expand_Assign_Array): If array is one-dimensional,
17514         component type is controlled, and control_actions are in effect, use
17515         TSS procedure rather than generating inline code.
17517         * exp_tss.ads (TSS_Slice_Assign): New TSS procedure for one-dimensional
17518         arrays with controlled components.
17520 2004-01-26  Vincent Celier  <celier@gnat.com>
17522         * gnatcmd.adb (GNATCmd): Add specification of argument file on the
17523         command line for the non VMS case.
17525         * gnatlink.adb (Process_Binder_File): When building object file, if
17526         GNU linker is used, put all object paths between quotes, to prevent ld
17527         error when there are unusual characters (such as '!') in the paths.
17529         * Makefile.generic: When there are sources in Ada and the main is in
17530         C/C++, invoke gnatmake with -B, instead of -z.
17532         * vms_conv.adb (Preprocess_Command_Data): New procedure, extracted
17533         from VMS_Conversion.
17534         (Process_Argument): New procedure, extracted from VMS_Conversion. Add
17535         specification of argument file on the command line.
17537 2004-01-26  Bernard Banner  <banner@gnat.com>
17539         * Makefile.in: Enable GMEM_LIB and SYMLIB for x86_64
17541 2004-01-26  Ed Schonberg  <schonberg@gnat.com>
17543         * snames.adb: Update copyright notice.
17544         Add info on slice assignment for controlled arrays.
17546 2004-01-23  Robert Dewar  <dewar@gnat.com>
17548         * exp_aggr.adb: Minor reformatting
17550         * exp_ch9.adb: Minor code clean up
17551         Minor reformatting
17552         Fix bad character in comment
17554         PR ada/13471
17555         * targparm.adb (Get_Target_Parameters): Give clean abort error on
17556         unexpected end of file, along with more detailed message.
17558 2004-01-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17560         * exp_pakd.adb (Install_PAT): Clear Freeze_Node for PAT and Etype of
17561         PAT.
17563         * decl.c (copy_alias_set): New function.
17564         (gnat_to_gnu_entity, make_aligning_type, make_packable_type): Use it.
17566 2004-01-23  Doug Rupp  <rupp@gnat.com>
17568         * Makefile.in (install-gnatlib): Change occurrences of lib$$file to
17569         lib$${file} in case subsequent character is not a separator.
17571 2004-01-23  Vincent Celier  <celier@gnat.com>
17573         * 5vml-tgt.adb (Build_Dynamic_Library): Invoke gcc with -shared-libgcc
17574         when the GCC version is at least 3.
17576         * make.adb: (Scan_Make_Arg): Pass -B to Scan_Make_Switches
17577         Remove all "Opt.", to prepare for opt split
17579         * prj-part.adb (Parse_Single_Project): New Boolean out parameter
17580         Extends_All. Set to True when the project parsed is an extending all
17581         project. Fails for importing an extending all project only when the
17582         imported project is an extending all project.
17583         (Post_Parse_Context_Clause): Set Is_Extending_All to the with clause,
17584         depending on the value of Extends_All returned.
17586         * prj-proc.adb (Process): Check that no project shares its object
17587         directory with a project that extends it, directly or indirectly,
17588         including a virtual project.
17589         Check that no project extended by another project shares its object
17590         directory with another also extended project.
17592         * prj-tree.adb (Is_Extending_All, Set_Is_Extending_All): Allow for
17593         Kind = N_With_Clause
17595         * prj-tree.ads: Minor reformatting
17596         Indicate that Flag2 also applies to N_With_Clause (Is_Extending_All).
17598 2004-01-23  Ed Schonberg  <schonberg@gnat.com>
17600         * sem_ch13.adb (Analyze_Attribute_Definition_Clause): If the attribute
17601         applies to a type with an incomplete view, use full view in Name of
17602         clause, for consistency with uses of Get_Attribute_Definition_Clause.
17604 2004-01-23  Arnaud Charlet  <charlet@act-europe.fr>
17606         * 5itaprop.adb (Set_Priority): Reset the priority to 0 when using
17607         SCHED_RR, since other values are not supported by this policy.
17608         (Initialize): Move initialization of mutex attribute to package
17609         elaboration, to prevent early access to this variable.
17611         * Makefile.in: Remove mention of Makefile.adalib, unused.
17613         * Makefile.adalib, 1aexcept.adb, 1aexcept.ads, 1ic.ads, 1ssecsta.adb,
17614         1ssecsta.ads: Removed, unused.
17616 2004-01-21  Javier Miranda  <miranda@gnat.com>
17618         * exp_aggr.adb (Build_Record_Aggr_Code): Do not build the master
17619         entity if already built in the current scope.
17621         * exp_ch9.adb (Build_Master_Entity): Do not set the has_master_entity
17622         reminder in internal scopes. Required for nested limited aggregates.
17624 2004-01-21  Doug Rupp  <rupp@gnat.com>
17626         * Makefile.in (hyphen): New variable, default value '-'. Set to '_' on
17627         VMS. Replace all occurences of libgnat- and libgnarl- with
17628         libgnat$(hyphen) and libgnarl$(hyphen).
17629         Fixed shared library build problem on VMS.
17631 2004-01-21  Robert Dewar  <dewar@gnat.com>
17633         * mlib-prj.adb: Minor reformatting
17635 2004-01-21  Thomas Quinot  <quinot@act-europe.fr>
17637         * prj-tree.adb, 7staprop.adb, vms_conv.adb, xr_tabls.adb: Add missing
17638         'constant' keywords for declaration of pointers that are not modified.
17640         * exp_pakd.adb: Fix English in comment.
17642 2004-01-21  Ed Schonberg  <schonberg@gnat.com>
17644         PR ada/10889
17645         * sem_ch3.adb (Analyze_Subtype_Declaration): For an array subtype,
17646         copy all attributes of the parent, including the foreign language
17647         convention.
17649 2004-01-21  Sergey Rybin  <rybin@act-europe.fr>
17651         PR ada/10565
17652         * sem_ch9.adb (Analyze_Delay_Alternative): Add expression type check
17653         for 'delay until' statement.
17655 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
17657         * Make-lang.in: Replace $(docdir) with doc.
17658         (doc/gnat_ug_unx.info, doc/gnat_ug_vwx.info, doc/gnat_ug_vms.info
17659         doc/gnat_ug_wnt.info, doc/gnat_rm.info, doc/gnat-style.info): Update
17660         to use consistent MAKEINFO rule.
17661         (ada.man, ada.srcman): Dummy entry.
17662         (ADA_INFOFILES): Define.
17663         (ada.info, ada.srcinfo): New rules.
17665 2004-01-19  Arnaud Charlet  <charlet@act-europe.fr>
17667         * utils.c: Update copyright notice, missed in previous change.
17669 2004-01-19  Vincent Celier  <celier@gnat.com>
17671         * mlib-prj.adb (Build_Library.Add_ALI_For): Only add the ALI to the
17672         args if Bind is True. Set First_ALI, if not already done.
17673         (Build_Library): For Stand Alone Libraries, extract from one ALI file
17674         an eventual --RTS switch, for gnatbind, and all backend switches +
17675         --RTS, for linking.
17677 2004-01-19  Robert Dewar  <dewar@gnat.com>
17679         * sem_attr.adb, memtrack.adb: Minor reformatting
17681 2004-01-19  Ed Schonberg  <schonberg@gnat.com>
17683         * exp_ch6.adb (Expand_Call): Remove code to fold calls to functions
17684         that rename enumeration literals. This is properly done in sem_eval.
17686         * sem_eval.ads, sem_eval.adb (Eval_Call): New procedure to fold calls
17687         to functions that rename enumeration literals.
17689         * sem_res.adb (Resolve_Call): Use Eval_Call to fold static calls to
17690         functions that rename enumeration literals.
17692 2004-01-16  Kazu Hirata  <kazu@cs.umass.edu>
17694         * Make-lang.in (utils.o): Depend on target.h.
17695         * utils.c: Include target.h.
17696         (process_attributes): Use targetm.have_named_sections instead
17697         of ASM_OUTPUT_SECTION_NAME.
17699 2004-01-16  Andreas Jaeger  <aj@suse.de>
17701         * Makefile.in: Add $(DESTDIR).
17703 2004-01-15  Olivier Hainque  <hainque@act-europe.fr>
17705         * decl.c (gnat_to_gnu_entity, E_Variable): Retrieve the object size
17706         also when not defining if a Size clause applies. That information is
17707         not to be ignored.
17709 2004-01-15  Arnaud Charlet  <charlet@act-europe.fr>
17711         * Makefile.in (install-gnatlib, gnatlib-shared-default): Set up
17712         symbolic links for the shared gnat run time when needed.
17714 2004-01-15  Vasiliy Fofanov  <fofanov@act-europe.fr>
17716         * memtrack.adb (Gmem_Initialize): check that gmem.out could be opened
17717         for writing, and terminate with an error message if not.
17719 2004-01-15  Ed Schonberg  <schonberg@gnat.com>
17721         * sem_attr.adb (Resolve_Attribute, case 'Access): Remove spurious
17722         warning on an access to subprogram in an instance, when the target
17723         type is declared in the same generic unit.
17724         (Eval_Attribute): If 'access is known to fail accessibility check,
17725         rewrite as a raise statement.
17727 2004-01-15  GNAT Script  <nobody@gnat.com>
17729         * Make-lang.in: Makefile automatically updated
17731 2004-01-15  Kelley Cook  <kcook@gcc.gnu.org>
17733         * Make-lang.in (ada.srcextra): Dummy entry.
17735 2004-01-14  Kelley Cook  <kcook@gcc.gnu.org>
17737         * Make-lang.in: Only regenerate texi files if --enable-maintainer-mode.
17739 2004-01-13  Ed Schonberg  <schonberg@gnat.com>
17741         * exp_ch3.adb (Build_Assignment): Fix bug in handling of controlled
17742         components that are initialized with aggregates.
17744 2004-01-13  Vincent Celier  <celier@gnat.com>
17746         * gnatlink.adb (Process_Binder_File): To find directory of shared
17747         libgcc, if "gcc-lib" is not a subdirectory, look for the last
17748         subdirectory "lib" in the path of the shared libgnat or libgnarl.
17750         * make.adb (Gnatmake): If GCC version is at least 3, link with
17751         -shared-libgcc, when there is at least one shared library project.
17753         * opt.ads (GCC_Version): New integer constant.
17755         * adaint.c (get_gcc_version): New function.
17757 2004-01-13  Robert Dewar  <dewar@gnat.com>
17759         * sem_dist.adb, sem_res.adb, sem_util.adb,
17760         sprint.adb, 3zsocthi.adb, einfo.adb, cstand.adb,
17761         exp_ch4.adb, exp_ch9.adb, exp_dist.adb: Minor reformatting
17763 2004-01-13  Thomas Quinot  <quinot@act-europe.fr>
17765         * s-interr.adb, s-stache.adb, s-taenca.adb, g-regpat.adb,
17766         g-spitbo.adb, 5itaprop.adb: Add missing 'constant' keywords in object
17767         declarations.
17769 2004-01-12  Arnaud Charlet  <charlet@act-europe.fr>
17771         * misc.c: Remove trailing spaces.
17772         Update copyright notice missed in previous change.
17774         PR ada/13572
17775         * bld.adb (Recursive_Process): Reference prefix/share/gnat instead of
17776         prefix/share/make
17778         * Makefile.generic: Update copyright.
17779         Add license notice.
17781         * Makefile.in (ADA_SHARE_MAKE_DIR): Set to prefix/share/gnat instead
17782         of prefix/share/make.
17784         * Makefile.prolog: Update copyright.
17785         Add license notice.
17787 2004-01-12  Laurent Pautet  <pautet@act-europe.fr>
17789         * 3vsocthi.adb, 3vsocthi.ads, 3wsocthi.adb,
17790         3wsocthi.ads, 3zsocthi.adb, 3zsocthi.ads, g-socthi.adb,
17791         g-socthi.ads (Socket_Error_Message): Return C.Strings.chars_ptr
17792         instead of String.
17794         * g-socket.adb (Raise_Socket_Error): Use new Socket_Error_Message
17795         signature.
17797 2004-01-12  Javier Miranda  <miranda@gnat.com>
17799         * cstand.adb, exp_aggr.adb, exp_ch3.adb, exp_ch9.adb, exp_dist.adb,
17800         exp_imgv.adb, exp_pakd.adb, exp_util.adb, par-ch3.adb, sem.adb,
17801         sem_ch12.adb, sem_ch3.adb, sem_dist.adb, sem_prag.adb, sem_res.adb,
17802         sem_util.adb, sinfo.adb, sinfo.ads, sprint.adb: Addition of
17803         Component_Definition node.
17805 2004-01-12  Ed Falis  <falis@gnat.com>
17807         * impunit.adb: Add GNAT.Secondary_Stack_Info as user-visible unit
17809 2004-01-12  Thomas Quinot  <quinot@act-europe.fr>
17811         * link.c: Change default libgnat kind to STATIC for FreeBSD.
17813 2004-01-12  Bernard Banner  <banner@gnat.com>
17815         * Makefile.in: map 86numaux to a-numaux for x86_64
17817 2004-01-12  Ed Schonberg  <schonberg@gnat.com>
17819         * lib-xref.adb (Get_Type_Reference): If the type is the subtype entity
17820         generated to rename a generic actual, go to the actual itself, the
17821         subtype is not a user-visible entity.
17823         * sem_ch7.adb (Uninstall_Declarations): If an entity in the visible
17824         part is a private subtype, reset the visibility of its full view, if
17825         any, to be consistent.
17827         PR ada/13417
17828         * sem_ch12.adb (Analyze_Formal_Package): Diagnose properly an attempt
17829         to use a generic package G as a formal package for another generic
17830         declared within G.
17832 2004-01-12  Robert Dewar  <dewar@gnat.com>
17834         * trans.c (Eliminate_Error_Msg): New procedure called to generate msg
17836         * usage.adb: Remove mention of obsolete -gnatwb switch
17837         Noticed during code reading
17839 2004-01-12  Jerome Guitton  <guitton@act-europe.fr>
17841         * 1ssecsta.adb: Minor changes for -gnatwa warnings
17843 2004-01-12  GNAT Script  <nobody@gnat.com>
17845         * Make-lang.in: Makefile automatically updated
17847 2004-01-09  Mark Mitchell  <mark@codesourcery.com>
17849         * misc.c (gnat_expand_expr): Add alt_rtl parameter.
17851 2004-01-07  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17853         * link.c [sgi] (shared_libgnat_default): Change to STATIC.
17855 2004-01-05  Kelley Cook  <kcook@gcc.gnu.org>
17857         * Make-lang.in: Revert stamp-xgnatug change from 2003-12-18.
17858         Update comment and copyright date.
17859         * stamp-xgnatug: Delete.
17861 2004-01-05  Robert Dewar  <dewar@gnat.com>
17863         * 1ssecsta.ads: Default_Secondary_Stack is not a constant since it may
17864         be modified by the binder generated main program if the -D switch is
17865         used.
17867         * 4onumaux.ads, 4znumaux.ads: Add Pure_Function pragmas for all
17868         imported functions (since now we expect this to be done for imported
17869         functions)
17871         * 5vtaprop.adb: Add several ??? for sections requiring more comments
17872         Minor reformatting throughout
17874         * 5zinit.adb: Minor reformatting
17875         Add 2004 to copyright date
17876         Minor changes to avoid -gnatwa warnings
17877         Correct some instances of using OR instead of OR ELSE (noted while
17878         doing reformatting)
17880         * sprint.adb: Minor updates to avoid -gnatwa warnings
17882         * s-secsta.ads, s-secsta.adb:
17883         (SS_Get_Max): New function to obtain high water mark for ss stack
17884         Default_Secondary_Stack is not a constant since it may be modified by
17885         the binder generated main program if the -D switch is used.
17887         * switch-b.adb: New -Dnnn switch for binder
17889         * switch-c.adb:
17890         Make -gnatg imply all warnings currently in -gnatwa
17892         * vms_conv.adb: Minor reformatting
17893         Add 2004 to copyright notice
17894         Add 2004 to printed copyright notice
17896         * 3vexpect.adb, 4zsytaco.adb, 3wsocthi.adb, 3zsocthi.adb,
17897         3zsocthi.adb, 56taprop.adb, 56tpopsp.adb, 5amastop.adb,
17898         5aml-tgt.adb, 5ataprop.adb, 5ataprop.adb, 5atpopsp.adb,
17899         5ftaprop.adb, 5ginterr.adb, 5gmastop.adb, 5gml-tgt.adb,
17900         5gtaprop.adb, 5hml-tgt.adb, 5hml-tgt.adb, 5hml-tgt.adb,
17901         5htaprop.adb, 5htraceb.adb, 5itaprop.adb, 5lml-tgt.adb,
17902         5sml-tgt.adb, 5staprop.adb, 5staprop.adb, 5stpopsp.adb,
17903         5vasthan.adb, 5vinmaop.adb, 5vinterr.adb, 5vtaprop.adb,
17904         5vml-tgt.adb, 5vtaprop.adb, 5wosprim.adb, 5wtaprop.adb,
17905         5zinterr.adb, 5zintman.adb, 5zml-tgt.adb, 5ztaprop.adb,
17906         6vcpp.adb, 6vcstrea.adb, 7staprop.adb, 7stpopsp.adb,
17907         vxaddr2line.adb, vxaddr2line.adb, xref_lib.adb, xr_tabls.adb,
17908         xr_tabls.ads, s-tasdeb.adb, s-tasdeb.adb, sem_res.ads,
17909         sem_util.adb, sem_util.adb, sem_util.ads, s-interr.adb,
17910         checks.adb, clean.adb, cstand.adb, einfo.ads,
17911         einfo.adb, exp_aggr.adb, exp_ch11.adb, exp_ch3.adb,
17912         exp_ch4.adb, exp_ch5.adb, exp_ch7.adb, exp_ch9.adb,
17913         prj-nmsc.adb, prj-pp.adb, prj-util.adb, sem_attr.adb,
17914         sem_ch10.adb, sem_ch12.adb, sem_ch4.adb, g-dirope.adb,
17915         g-dirope.ads, gnatlbr.adb, i-cstrea.adb, inline.adb,
17916         lib-xref.adb, sem_ch5.adb, sem_ch7.adb, sem_ch8.adb:
17917         Minor reformatting and code clean ups.
17918         Minor changes to prevent -gnatwa warnings
17920         * ali.adb: Minor reformatting and cleanup of code
17921         Acquire new SS indication of secondary stack use from ali files
17923         * a-numaux.ads: Add Pure_Function pragmas for all imported functions
17924         (since now we expect this to be done for imported functions)
17926         * bindgen.adb: Generate call to modify default secondary stack size if
17927         -Dnnn switch given
17929         * bindusg.adb: Add line for new -D switch
17931         * exp_aggr.adb (Type_May_Have_Bit_Aligned_Components): More appropriate
17932         replacement name for Type_May_Have_Non_Bit_Aligned_Components!
17933         Add circuitry for both records and arrays to avoid gigi
17934         processing if the type involved has non-bit-aligned components
17936         * exp_ch5.adb (Expand_Assign_Array): Avoid assumption that
17937         N_String_Literal node always references an E_String_Literal_Subtype
17938         entity. This may not be true in the future.
17939         (Possible_Bit_Aligned_Component): Move processing of
17940         Component_May_Be_Bit_Aligned from exp_ch5 to exp_util
17942         * exp_ch6.adb (Expand_Thread_Body): Pick up
17943         Default_Secondary_Stack_Size as variable so that we get value modified
17944         by possible -Dnnn binder parameter.
17946         * exp_util.adb (Component_May_Be_Bit_Aligned): New function.
17947         (Type_May_Have_Bit_Aligned_Components): New function.
17949         * exp_util.ads (Component_May_Be_Bit_Aligned): New function.
17950         (Type_May_Have_Bit_Aligned_Components): New function.
17952         * fe.h: (Set_Identifier_Casing): Fix prototype.
17953         Add declaration for Sem_Elim.Eliminate_Error_Msg.
17954         Minor reformatting.
17956         * freeze.adb (Freeze_Entity): Add RM reference to error message about
17957         importing constant atomic/volatile objects.
17958         (Freeze_Subprogram): Reset Is_Pure indication for imported subprogram
17959         unless explicit Pure_Function pragma given, to avoid insidious bug of
17960         call to non-pure imported function getting eliminated.
17962         * gnat1drv.adb, gnatbind.adb, gnatchop.adb, gnatfind.adb,
17963         gnatls.adb, gnatlink.adb, gnatmem.adb, gnatname.adb, gnatsym.adb,
17964         gnatxref.adb, gprcmd.adb, gprep.adb, make.adb: Minor reformatting
17965         Add 2004 to printed copyright notice
17967         * lib-writ.ads, lib-writ.adb: Put new SS flag in ali file if secondary
17968         stack used.
17970         * Makefile.rtl: Add entry for g-sestin.o
17971         g-sestin.ads: New file.
17973         * mdll.adb: Minor changes to avoid -gnatwa warnings
17975         * mlib-tgt.adb: Minor reformatting
17977         * opt.ads: New parameter Default_Secondary_Stack_Size (GNATBIND)
17978         New switch Sec_Stack_Used (GNAT, GNATBIND)
17979         Make Default_Secondary_Stack_Size a variable instead of a constant,
17980         so that it can be modified by the new -Dnnn bind switch.
17982         * rtsfind.adb (Load_Fail): Give full error message in configurable
17983         run-time mode if all_errors mode is set. This was not done in the case
17984         of a file not found, which was an oversight.
17985         Note if secondary stack unit is used by compiler.
17987         * sem_elab.adb (Check_A_Call): Rewrite to avoid trying to put
17988         ineffective elaborate all pragmas on non-visible packages (this
17989         happened when a renamed subprogram was called). Now the elaborate all
17990         always goes on the package containing the renaming rather than the one
17991         containing the renamed subprogram.
17993         * sem_elim.ads, sem_elim.adb (Eliminate_Error_Msg): New procedure
17994         (Process_Eliminate_Pragma): Add parameter to capture pragma location.
17996         * sem_eval.adb (Eval_String_Literal): Do not assume that string literal
17997         has an Etype that references an E_String_Literal.
17998         (Eval_String_Literal): Avoid assumption that N_String_Literal node
17999         always references an E_String_Literal_Subtype entity. This may not
18000         be true in the future.
18002         * sem_prag.adb (Process_Eliminate_Pragma): Add parameter to capture
18003         pragma location.
18005         * sem_res.adb (Resolve): Specialize msg for function name used in proc
18006         call.
18008 2004-01-05  Ed Falis  <falis@gnat.com>
18010         * g-debuti.adb: Replaced direct boolean operator with short-circuit
18011         form.
18013 2004-01-05  Vincent Celier  <celier@gnat.com>
18015         * bld.adb: Minor comment updates
18016         (Process_Declarative_Items): Correct incorrect name (Index_Name instead
18017         of Item_Name).
18019         * make.adb (Gnatmake): Special process for files to compile/check when
18020         -B is specified. Fail when there are only foreign mains in attribute
18021         Main of the project file and -B is not specified. Do not skip bind/link
18022         steps when -B is specified.
18024         * makeusg.adb: Document new switch -B
18026         * opt.ads (Build_Bind_And_Link_Full_Project): New Boolean flag
18028         * switch-m.adb: (Scan_Make_Switches): Process -B switch
18030         * vms_data.ads: Add new GNAT PRETTY qualifier
18031         /FORM_FEED_AFTER_PRAGMA_PAGE for switch -ff
18033 2004-01-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18035         * trans.c (tree_transform, case N_Free_Statement): Handle thin pointer
18036         case.
18038         * misc.c (gnat_printable_name): If VERBOSITY is 2, call
18039         Set_Identifier_Casing.
18041         * decl.c (gnat_to_gnu_entity, E_Function): Give error if return type
18042         has size that overflows.
18044 2004-01-05  Gary Dismukes  <dismukes@gnat.com>
18046         * exp_ch4.adb (Expand_Array_Comparison): Add Boolean constant to avoid
18047         -gnatwa warning on static condition.
18049 2004-01-05  Doug Rupp  <rupp@gnat.com>
18051         * link.c: (shared_libgnat_default) [VMS]: Change to STATIC.
18053 2004-01-05  Arnaud Charlet  <charlet@act-europe.fr>
18055         * Makefile.in: Install ali files using INSTALL_DATA_DATE to preserve
18056         all attributes, including read-only attribute.
18058 2004-01-05  Pascal Obry  <obry@gnat.com>
18060         * bindgen.adb (Gen_Object_Files_Options): Generate the new shared
18061         library naming scheme.
18063         * mlib-prj.adb (Build_Library): Generate different names for the static
18064         or dynamic version of the GNAT runtime. This is needed to support the
18065         new shared library naming scheme.
18066         (Process_Binder_File): Add detection of shared library in binder file
18067         based on the new naming scheme.
18069         * gnatlink.adb (Process_Binder_File): Properly detect the new naming
18070         scheme for the shared runtime libraries.
18072         * Makefile.in:
18073         (LIBRARY_VERSION) [VMS]: Convert all . to _ to conform to new naming
18074         scheme.
18075         (install-gnatlib): Do not create symlinks for shared libraries.
18076         (gnatlib-shared-default): Idem.
18077         (gnatlib-shared-dual-win32): New target. Not used for now as the
18078         auto-import feature does not support arrays/records.
18079         (gnatlib-shared-win32): Do not create copy for the shared libraries.
18080         (gnatlib-shared-vms): Fix shared runtime libraries names.
18082         * osint.ads, osint.adb (Shared_Lib): New routine, returns the target
18083         dependent runtime shared library name.
18085 2004-01-05  Vasiliy Fofanov  <fofanov@act-europe.fr>
18087         * osint.adb (Read_Library_Info): Remove bogus check if ALI is older
18088         than the object.
18090 2004-01-05  Ed Schonberg  <schonberg@gnat.com>
18092         * sem_ch4.adb (Analyze_Allocator): Check restriction on dynamic
18093         protected objects when allocator has a subtype indication, not a
18094         qualified expression. Note that qualified expressions may have to be
18095         checked when limited aggregates are implemented.
18097         * sem_prag.adb (Analyze_Pragma, case Import): If enclosing package is
18098         pure, emit warning.
18099         (Analyze_Pragma, case Pure_Function): If enclosing package is pure and
18100         subprogram is imported, remove warning.
18102 2004-01-05  Geert Bosch  <bosch@gnat.com>
18104         * s-poosiz.adb: Update copyright notice.
18105         (Allocate): Use Task_Lock to protect against concurrent access.
18106         (Deallocate): Likewise.
18108 2004-01-05  Joel Brobecker  <brobecker@gnat.com>
18110         * s-stalib.adb (Elab_Final_Code): Add missing year in date inside ???
18111         comment.
18113 2003-12-23  Kelley Cook  <kcook@gcc.gnu.org>
18115         * gnat_ug.texi: Force a CVS commit by updating copyright.
18116         * gnat_ug_vxw.texi: Regenerate.
18117         * gnat_ug_wnt.texi: Regenerate.
18118         * gnat_ug_vms.texi: Regenerate.
18119         * gnat_ug_unx.texi: Regenerate.
18121 2003-12-20  Kazu Hirata  <kazu@cs.umass.edu>
18123         * trans.c: Remove uses of "register" specifier in
18124         declarations of local variables.
18126 2003-12-18  Kelley Cook  <kcook@gcc.gnu.org>
18128         * stamp-xgnatug: New stamp file.
18129         * Make-lang.in (stamp-xgnatug):  New stamp file and comment.
18130         (ada/doctools/xgnatug): Add $(build_exeext).
18131         (ada/gnat_ug_unx.texi, ada/gnat_ug_vwx.texi, ada/gnat_ug_vms.texi
18132         ada/gnat_ug_wnt.texi): Update to depend on stamp-xgnatug.
18134 2003-12-17  Ed Falis  <falis@gnat.com>
18136         * a-elchha.adb (Tailored_Exception_Information): made Info constant to
18137         eliminate warning.
18139         * a-exextr.adb: Add context clause for
18140         Ada.Exceptions.Last_Chance_Handler.
18142 2003-12-17  Sergey Rybin  <rybin@act-europe.fr>
18144         * cstand.adb (Create_Standard): Change the way how the declaration of
18145         the Duration type is created (making it the same way as it is for all
18146         the other standard types).
18148 2003-12-17  Robert Dewar  <dewar@gnat.com>
18150         * s-crtl.ads: Fix header format
18151         Change Pure to Preelaborate
18153 2003-12-17  Ed Schonberg  <schonberg@gnat.com>
18155         * checks.adb (Selected_Length_Checks): Generate an Itype reference for
18156         the expression type only if it is declared in the current unit.
18158         * sem_ch3.adb (Constrain_Index): Handle properly a range whose bounds
18159         are universal and already analyzed, as can occur in constrained
18160         subcomponents that depend on discriminants, when one constraint is a
18161         subtype mark.
18163         * sem_res.adb (Resolve_Type_Conversion): Any arithmetic expression of
18164         type Any_Fixed is legal as the argument of a conversion, if only one
18165         fixed-point type is in context.
18167 2003-12-17  GNAT Script  <nobody@gnat.com>
18169         * Make-lang.in: Makefile automatically updated
18171 2003-12-15  Robert Dewar  <dewar@gnat.com>
18173         * exp_ch6.adb (Expand_Thread_Body): Fix error in picking up default
18174         sec stack size.
18176 2003-12-15  Vincent Celier  <celier@gnat.com>
18178         * gnatchop.adb: (Error_Msg): Do not exit on error for a warning
18179         (Gnatchop): Do not set failure status when reporting the number of
18180         warnings.
18182 2003-12-15  Doug Rupp  <rupp@gnat.com>
18184         * s-ctrl.ads: New file.
18186         * Makefile.rtl (GNAT_RTL_NONTASKING_OBJS): Add s-crtl$(objext).
18188         * Make-lang.in: (GNAT_ADA_OBJS): Add ada/s-crtl.o.
18189         (GNATBIND_OBJS): Add ada/s-crtl.o.
18191         * Makefile.in [VMS]: Clean up ifeq rules.
18193         * gnatlink.adb, 6vcstrea.adb, a-direio.adb, a-sequio.adb,
18194         a-ststio.adb, a-textio.adb, g-os_lib.adb, a-witeio.adb,
18195         g-os_lib.ads, i-cstrea.adb, i-cstrea.ads, s-direio.adb,
18196         s-fileio.adb, s-memcop.ads, s-memory.adb, s-stache.adb,
18197         s-tasdeb.adb: Update copyright.
18198         Import System.CRTL.
18199         Make minor modifications to use System.CRTL declared functions instead
18200         of importing locally.
18202 2003-12-15  GNAT Script  <nobody@gnat.com>
18204         * Make-lang.in: Makefile automatically updated
18206 2003-12-11  Ed Falis  <falis@gnat.com>
18208         * 5zinit.adb: Clean up.
18210         * 5zintman.adb (Notify_Exception): replaced case statement with a call
18211         to __gnat_map_signal, imported from init.c to support
18212         signal -> exception mappings that depend on the vxWorks version.
18214         * init.c:
18215         Created and exported __gnat_map_signal to support signal -> exception
18216         mapping that is dependent on the VxWorks version.
18217         Change mapping of SIGBUS from Program_Error to Storage_Error on VxWorks
18219 2003-12-11  Vasiliy Fofanv  <fofanov@act-europe.fr>
18221         * 5wosinte.ads: Link with -mthreads switch.
18223 2003-12-11  Arnaud Charlet  <charlet@act-europe.fr>
18225         * init.c (__gnat_install_handler [NetBSD]): Set
18226         __gnat_handler_installed, as done on all other platforms.
18227         Remove duplicated code.
18229 2003-12-11  Jerome Guitton  <guitton@act-europe.fr>
18231         * Makefile.in (rts-zfp, rts-ravenscar): Create libgnat.a.
18233 2003-12-11  Thomas Quinot  <quinot@act-europe.fr>
18235         * sinfo.ads: Fix inconsistent example code in comment.
18237 2003-12-11  Robert Dewar  <dewar@gnat.com>
18239         * a-tiinau.adb: Add a couple of comments
18241         * sem_ch3.adb: Minor reformatting
18243         * sem_prag.adb:
18244         Fix bad prototype of Same_Base_Type in body (code reading cleanup)
18245         Minor reformatting throughout
18247 2003-12-11  Ed Schonberg  <schonberg@gnat.com>
18249         * exp_ch7.adb (Establish_Transient_Scope): If the call is within the
18250         bounds of a loop, create a separate block in order to generate proper
18251         cleanup actions to prevent memory leaks.
18253         * sem_res.adb (Resolve_Call): After a call to
18254         Establish_Transient_Scope, the call may be rewritten and relocated, in
18255         which case no further processing is needed.
18257         * sem_util.adb: (Wrong_Type): Refine previous fix.
18258          Fixes ACATS regressions.
18260         PR ada/13353
18262         * sem_prag.adb (Back_End_Cannot_Inline): A renaming_as_body can always
18263         be inlined.
18265 2003-12-08  Jerome Guitton  <guitton@act-europe.fr>
18267         * 5ytiitho.adb, 5zthrini.adb, 5ztiitho.adb, i-vthrea.adb,
18268         i-vthrea.ads, s-tpae65.adb, s-tpae65.ads: Cleanup: Remove a bunch of
18269         obsolete files.
18271         * Makefile.in: (rts-ravenscar): Generate an empty libgnat.a.
18272         (rts-zfp): Ditto.
18274 2003-12-08  Robert Dewar  <dewar@gnat.com>
18276         * 7sintman.adb: Minor reformatting
18278         * bindgen.adb: Configurable_Run_Time mode no longer suppresses the
18279         standard linker options to get standard libraries linked. We now plan
18280         to provide dummy versions of these libraries to match the appropriate
18281         configurable run-time (e.g. if a library is not needed at all, provide
18282         a dummy empty library).
18284         * targparm.ads: Configurable_Run_Time mode no longer affects linker
18285         options (-L parameters and standard libraries). What we plan to do is
18286         to provide dummy libraries where the libraries are not required.
18288         * gnatbind.adb: Minor comment improvement
18290 2003-12-08  Javier Miranda  <miranda@gnat.com>
18292         * exp_aggr.adb (Build_Record_Aggr_Code): Do not remove the expanded
18293         aggregate in the parent. Otherwise constants with limited aggregates
18294         are not supported. Add new formal to pass the component type (Ctype).
18295         It is required to call the corresponding IP subprogram in case of
18296         default initialized components.
18297         (Gen_Assign): In case of default-initialized component, generate a
18298         call to the IP subprogram associated with the component.
18299         (Build_Record_Aggr_Code): Remove the aggregate from the parent in case
18300         of aggregate with default initialized components.
18301         (Has_Default_Init_Comps): Improve implementation to recursively check
18302         all the present expressions.
18304         * exp_ch3.ads, exp_ch3.adb (Build_Initialization_Call): Add new formal
18305         to indicate that the initialization call corresponds to a
18306         default-initialized component of an aggregate.
18307         In case of default initialized aggregate with tasks this parameter is
18308         used to generate a null string (this is just a workaround that must be
18309         improved later). In case of discriminants, this parameter is used to
18310         generate a selected component node that gives access to the discriminant
18311         value.
18313         * exp_ch9.ads, exp_ch9.adb (Build_Task_Allocate_Block_With_Stmts): New
18314         subprogram, based on Build_Task_Allocate_Block, but adapted to expand
18315         allocated aggregates with default-initialized components.
18317         * par-ch4.adb (P_Aggregate_Or_Paren_Expr): Improve error message if
18318         the box notation is used in positional aggregates.
18320 2003-12-08  Samuel Tardieu  <tardieu@act-europe.fr>
18322         * lib.ads: Fix typo in comment
18324 2003-12-08  Vincent Celier  <celier@gnat.com>
18326         * prj.adb (Project_Empty): New component Unkept_Comments
18327         (Scan): Remove procedure; moved to Prj.Err.
18329         * prj.ads (Project_Data): New Boolean component Unkept_Comments
18330         (Scan): Remove procedure; moved to Prj.Err.
18332         * prj-dect.adb: Manage comments for the different declarations.
18334         * prj-part.adb (With_Record): New component Node
18335         (Parse): New Boolean parameter Store_Comments, defaulted to False.
18336         Set the scanner to return ends of line and comments as tokens, if
18337         Store_Comments is True.
18338         (Pre_Parse_Context_Clause): Create the N_With_Clause nodes so that
18339         comments are associated with these nodes. Store the node IDs in the
18340         With_Records.
18341         (Post_Parse_Context_Clause): Use the N_With_Clause nodes stored in the
18342         With_Records.
18343         (Parse_Single_Project): Call Pre_Parse_Context_Clause before creating
18344         the N_Project node. Call Tree.Save and Tree.Reset before scanning the
18345         current project. Call Tree.Restore afterwards. Set the various nodes
18346         for comment storage (Next_End, End_Of_Line, Previous_Line,
18347         Previous_End).
18349         * prj-part.ads (Parse): New Boolean parameter Store_Comments,
18350         defaulted to False.
18352         * prj-pp.adb (Write_String): New Boolean parameter Truncated, defaulted
18353         to False. When Truncated is True, truncate the string, never go to the
18354         next line.
18355         (Write_End_Of_Line_Comment): New procedure
18356         (Print): Process comments for nodes N_With_Clause,
18357         N_Package_Declaration, N_String_Type_Declaration,
18358         N_Attribute_Declaration, N_Typed_Variable_Declaration,
18359         N_Variable_Declaration, N_Case_Construction, N_Case_Item.
18360         Process nodes N_Comment.
18362         * prj-tree.ads, prj-tree.adb (Default_Project_Node): If it is a node
18363         without comments and there are some comments, set the flag
18364         Unkept_Comments to True.
18365         (Scan): If there are comments, set the flag Unkept_Comments to True and
18366         clear the comments.
18367         (Project_Node_Kind): Add enum values N_Comment_Zones, N_Comment
18368         (Next_End_Nodes: New table
18369         (Comment_Zones_Of): New function
18370         (Scan): New procedure; moved from Prj. Accumulate comments in the
18371         Comments table and set end of line comments, comments after, after end
18372         and before end.
18373         (Add_Comments): New procedure
18374         (Save, Restore, Seset_State): New procedures
18375         (There_Are_Unkept_Comments): New function
18376         (Set_Previous_Line_Node, Set_Previous_End_Node): New procedures
18377         (Set_End_Of_Line, Set_Next_End_Node, Remove_Next_End_Node): New
18378         procedures.
18379         (First_Comment_After, First_Comment_After_End): New functions
18380         (First_Comment_Before, First_Comment_Before_End): New functions
18381         (Next_Comment): New function
18382         (End_Of_Line_Comment, Follows_Empty_Line,
18383         Is_Followed_By_Empty_Line): New functions
18384         (Set_First_Comment_After, Set_First_Comment_After_End): New procedures
18385         (Set_First_Comment_Before, Set_First_Comment_Before_End): New procedures
18386         (Set_Next_Comment): New procedure
18387         (Default_Project_Node): Associate comment before if the node can store
18388         comments.
18390         * scans.ads (Token_Type): New enumeration value Tok_Comment
18391         (Comment_Id): New global variable
18393         * scng.ads, scng.adb (Comment_Is_Token): New Boolean global variable,
18394         defaulted to False.
18395         (Scan): Store position of start of comment. If comments are tokens, set
18396         Comment_Id and set Token to Tok_Comment when scanning a comment.
18397         (Set_Comment_As_Token): New procedure
18399         * sinput-p.adb: Update Copyright notice
18400         (Source_File_Is_Subunit): Call Prj.Err.Scanner.Scan instead of Prj.Scan
18401         that no longer exists.
18403 2003-12-08  Javier Miranda  <miranda@gnat.com>
18405         * sem_aggr.adb: Add dependence on Exp_Tss package
18406         Correct typo in comment
18407         (Resolve_Aggregate): In case of array aggregates set the estimated
18408         type of the aggregate before calling resolve. This is needed to know
18409         the name of the corresponding IP in case of limited array aggregates.
18410         (Resolve_Array_Aggregate): Delay the resolution to the expansion phase
18411         in case of default initialized array components.
18413         * sem_ch12.adb (Analyze_Formal_Object_Declaration): Allow limited
18414         types. Required to give support to limited aggregates in generic
18415         formals.
18417 2003-12-08  Ed Schonberg  <schonberg@gnat.com>
18419         * sem_ch3.adb (Check_Initialization): For legality purposes, an
18420         inlined body functions like an instantiation.
18421         (Decimal_Fixed_Point_Declaration): Do not set kind of first subtype
18422         until bounds are analyzed, to diagnose premature use of type.
18424         * sem_util.adb (Wrong_Type): Improve error message when the type of
18425         the expression is used prematurely.
18427 2003-12-08  GNAT Script  <nobody@gnat.com>
18429         * Make-lang.in: Makefile automatically updated
18431 2003-12-08  Arnaud Charlet  <charlet@act-europe.fr>
18433         * sinfo.h, einfo.h, nmake.ads, nmake.adb, treeprs.ads: Removed, since
18434         they are automatically generated by Make-lang.in and cause nothing but
18435         maintenance troubles.
18437 2003-12-05  Thomas Quinot  <quinot@act-europe.fr>
18439         * 3ssoliop.ads: Fix comment (this is the Solaris, not the UnixWare,
18440         version of this unit).
18442 2003-12-05  Olivier Hainque  <hainque@act-europe.fr>
18444         * 53osinte.ads, 54osinte.ads, 55osinte.ads, 56osinte.ads, 5bosinte.ads,
18445         5cosinte.ads, 5hosinte.ads, 5iosinte.ads, 5losinte.ads,
18446         5tosinte.ads: Define the SA_SIGINFO constant, to allow references from
18447         the body of System.Interrupt_Management common to several targets.
18448         Update copyright notice when appropriate.
18450         * 52osinte.ads, 5posinte.ads: Define a dummy value for the SA_SIGINFO
18451         constant.
18453         * 7sintman.adb (elaboration): Set SA_SIGINFO in the sigaction flags,
18454         to ensure that the kernel fills in the interrupted context structure
18455         before calling a signal handler, which is necessary to be able to
18456         unwind past it. Update the copyright notice.
18458 2003-12-05  Jerome Guitton  <guitton@act-europe.fr>
18460         * a-elchha.ads: New file.
18462         * a-elchha.adb: New default last chance handler. Contents taken from
18463         Ada.Exceptions.Exception_Traces.Unhandled_Exception_Terminate.
18465         * a-exextr.adb (Unhandled_Exception_Terminate): Most of this routine
18466         is moved to a-elchha.adb to provide a target-independent default last
18467         chance handler.
18469         * Makefile.rtl: Add a-elchha.o
18471         * Make-lang.in (GNAT_ADA_OBJS, GNATBIND_OBJS): Add a-elchha.o.
18473 2003-12-05  Ed Schonberg  <schonberg@gnat.com>
18475         * exp_ch6.adb (Expand_Call): If the subprogram is inlined and is
18476         declared in an instance, do not inline the call if the instance is not
18477         frozen yet, to prevent order of elaboration problems.
18479         * sem_prag.adb: Add comments for previous fix.
18481 2003-12-05  Samuel Tardieu  <tardieu@act-europe.fr>
18483         * g-table.adb: Use the right variable in Set_Item.
18484         Update copyright notice.
18486 2003-12-05  Arnaud Charlet  <charlet@act-europe.fr>
18488         * Makefile.in: Remove unused rules.
18490 2003-12-05  Vincent Celier  <celier@gnat.com>
18492         * switch-c.adb (Scan_Front_End_Switches): Remove processing of
18493         -nostdlib. Not needed here after all.
18495 2003-12-03  Thomas Quinot  <quinot@act-europe.fr>
18497         PR ada/11724
18499         * adaint.h, adaint.c, g-os_lib.ads:
18500         Do not assume that the offset argument to lseek(2) is a 32 bit integer,
18501         on some platforms (including FreeBSD), it is a 64 bit value.
18502         Introduce a __gnat_lseek wrapper in adaint.c to allow for portability.
18504 2003-12-03  Arnaud Charlet  <charlet@act-europe.fr>
18506         * gnatvsn.ads (Library_Version): Now contain only the relevant
18507         version info.
18508         (Verbose_Library_Version): New constant.
18510         * g-spipat.adb, g-awk.adb, g-debpoo.adb,
18511         g-memdum.adb, g-thread.adb, s-geveop.adb, s-interr.adb,
18512         s-taskin.adb, s-tassta.adb: Make code compile with -gnatwa.
18514         * gnatlbr.adb: Clean up: replace Library_Version by
18515         Verbose_Library_Version.
18517         * make.adb, lib-writ.adb, exp_attr.adb:
18518         Clean up: replace Library_Version by Verbose_Library_Version.
18520         * 5lintman.adb: Removed.
18522         * Makefile.in:
18523         Update and simplify computation of LIBRARY_VERSION.
18524         Fix computation of GSMATCH_VERSION.
18525         5lintman.adb is no longer used: replaced by 7sintman.adb.
18527 2003-12-03  Robert Dewar  <dewar@gnat.com>
18529         * exp_ch5.adb:
18530         (Possible_Bit_Aligned_Component): Maybe_Bit_Aligned_Large_Component new
18531         name. Modified to consider small non-bit-packed arrays as troublesome
18532         and in need of component-by-component assigment expansion.
18534 2003-12-03  Vincent Celier  <celier@gnat.com>
18536         * lang-specs.h: Process nostdlib as nostdinc
18538         * back_end.adb: Update Copyright notice
18539         (Scan_Compiler_Arguments): Process -nostdlib directly.
18541 2003-12-03  Jose Ruiz  <ruiz@act-europe.fr>
18543         * Makefile.in:
18544         When defining LIBGNAT_TARGET_PAIRS for bare board targets, remove the
18545         redundant inclusion of EXTRA_HIE_NONE_TARGET_PAIRS, which is always
18546         included in HIE_NONE_TARGET_PAIRS.
18548 2003-12-03  Ed Schonberg  <schonberg@gnat.com>
18550         * sem_attr.adb:
18551         (Legal_Formal_Attribute): Attribute is legal in an inlined body, as it
18552         is legal in an instance, because legality is cheched in the template.
18554         * sem_prag.adb:
18555         (Analyze_Pragma, case Warnings): In an inlined body, the pragma may be
18556         appplied to an unchecked conversion of a formal parameter.
18558         * sem_warn.adb:
18559         (Output_Unreferenced_Messages): Suppress "not read" warnings on imported
18560         variables.
18562 2003-12-03  Olivier Hainque  <hainque@act-europe.fr>
18564         * tb-alvms.c (unwind_regular_code, unwind_kernel_handler): New
18565         routines. The second one is new functionality to deal with backtracing
18566         through signal handlers.
18567         (unwind): Split into the two separate subroutines above.
18568         Update the documentation, and deal properly with sizeof (REG) different
18569         from sizeof (void*).
18571 2003-12-01  Nicolas Setton  <setton@act-europe.fr>
18573         * a-except.adb (Raise_Current_Excep): Add a pragma Inspection_Point,
18574         so that the debugger can reliably access the value of the parameter,
18575         and therefore is able to display the exception name when an exception
18576         breakpoint is reached.
18578 2003-12-01  Thomas Quinot  <quinot@act-europe.fr>
18580         * fmap.adb: Fix typo in warning message.
18582         * g-socket.ads, g-socket.adb: Make Free a visible instance of
18583         Ada.Unchecked_Deallocation (no need to wrap it in a subprogram).
18585 2003-12-01  Vincent Celier  <celier@gnat.com>
18587         * mlib-prj.adb (Build_Library.Process): Do not check a withed unit if
18588         ther is no Afile.
18589         (Build_Library): Get the switches only if Default_Switches is declared
18590         in package Binder.
18592 2003-12-01  Ed Schonberg  <schonberg@gnat.com>
18594         * exp_ch6.adb (Expand_Actuals): When applying validity checks to
18595         actuals that are indexed components, reanalyze actual to ensure that
18596         packed array references are properly expanded.
18598         * sem_ch5.adb (Diagnose_Non_Variable_Lhs): Add special case for
18599         attempted assignment to a discriminant.
18601 2003-12-01  Robert Dewar  <dewar@gnat.com>
18603         * rtsfind.adb, exp_ch4.adb, s-exnint.ads, s-exnint.adb: Minor
18604         reformatting.
18606         * switch-c.adb: Minor reformatting of comments
18608 2003-12-01  Arnaud Charlet  <charlet@act-europe.fr>
18610         * Makefile.in: Clean ups.
18612 2003-12-01  GNAT Script  <nobody@gnat.com>
18614         * Make-lang.in: Makefile automatically updated
18616 2003-12-01  Arnaud Charlet  <charlet@act-europe.fr>
18618         * 5wsystem.ads: Disable zero cost exception, not ready yet.
18620 2003-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
18622         * Make-lang.in (nmake.ads): Add dependency on ada/nmake.adb
18623         to force serialization.
18625 2003-11-26  Thomas Quinot  <quinot@act-europe.fr>
18627         * g-socket.ads, g-socket.adb:
18628         Clarify documentation of function Stream. Introduce a Free procedure
18629         to release the returned Stream once it becomes unused.
18631         * 5asystem.ads: For Alpha Tru64, enable ZCX by default.
18633 2003-11-26  Arnaud Charlet  <charlet@act-europe.fr>
18635         (Cond_Timed_Wait): Introduce new constant Time_Out_Max,
18636         since NT 4 cannot handle timeout values that are too large,
18637         e.g. DWORD'Last - 1.
18639 2003-11-26  Ed Schonberg  <schonberg@gnat.com>
18641         * exp_ch4.adb:
18642         (Expand_N_Slice): Recognize all cases of slices that appear as actuals
18643         in procedure calls and whose expansion must be deferred.
18645         * exp_ch6.adb (Add_Call_By_Copy_Node): Remove previous fix. Proper fix
18646         is in exp_ch4.
18648         * sem_ch3.adb:
18649         (Build_Derived_Array_Type): Create operator for unconstrained type
18650         if ancestor is unconstrained.
18652 2003-11-26  Vincent Celier  <celier@gnat.com>
18654         * make.adb (Project_Object_Directory): New global variable
18655         (Change_To_Object_Directory): New procedure
18656         (Collect_Arguments_And_Compile): Call Change_To_Object_Directory instead
18657         of Change_Dir directly. Do not change working directory to object
18658         directory of main project after each compilation.
18659         (Gnatmake): Use Change_To_Object_Directory instead of Change_Dir
18660         directly.
18661         Change to object directory of main project before binding step.
18662         (Initialize): Initialize Project_Object_Directory to No_Project
18664         * mlib-prj.adb:
18665         (Build_Library): Take into account Builder'Default_Switches ("Ada") when
18666         binding a Stand-Alone Library.
18668         * output.adb: Update Copyright notice
18669         (Write_Char): Output buffer when full
18671 2003-11-26  Robert Dewar  <dewar@gnat.com>
18673         * sem_ch13.adb: (Check_Size): Reset size if size is too small
18675         * sem_ch13.ads:
18676         (Check_Size): Fix documentation to include bit-packed array case
18678         * sem_res.adb: Implement restriction No_Direct_Boolean_Operators
18680         * s-rident.ads: Put No_Direct_Boolean_Operators in proper order
18682         * s-rident.ads: Add new restriction No_Direct_Boolean_Operators
18684 2003-11-24  Arnaud Charlet <charlet@act-europe.fr>
18686         PR ada/13142
18687         * utils.c (init_gigi_decls): Change name of built-in setjmp to
18688         __builtin_setjmp, since this is apparently needed by recent
18689         non Ada changes.
18691 2003-11-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
18693         * adadecode.c: Only include ctype.h if not IN_GCC.
18694         (__gnat_decode): Use ISDIGIT from safe-ctype.h.
18696 2003-11-24  Jose Ruiz  <ruiz@act-europe.fr>
18698         * Makefile.in:
18699         Use 5zintman.ads for VxWorks targets. This file avoid confusion between
18700         signals and interrupts.
18702         * 5zintman.ads: New File.
18704         * 5zintman.adb: Replace Exception_Interrupts by Exception_Signals, and
18705         add exception signals to the set of unmasked signals.
18707         * 5ztaprop.adb:
18708         Use Abort_Task_Signal instead of Abort_Task_Interrupt to avoid confusion
18709         between signals and interrupts.
18710         Add to Unblocked_Signal_Mask the set of signals that are in
18711         Keep_Unmasked.
18713         * 7sinmaop.adb:
18714         Adding a check to see whether the Interrupt_ID we want to unmask is in
18715         the range of Keep_Unmasked (in procedure Interrupt_Self_Process). The
18716         reason is that the index type of the Keep_Unmasked array is not always
18717         Interrupt_ID; it may be a subtype of Interrupt_ID.
18719 2003-11-24  Gary Dismukes  <dismukes@gnat.com>
18721         * exp_util.adb:
18722         (Remove_Side_Effects): Condition constantness of object created for a
18723          an unchecked type conversion on the constantness of the expression
18724          to ensure the correct value for 'Constrained when passing components
18725          of view-converted class-wide objects.
18727 2003-11-24  Robert Dewar  <dewar@gnat.com>
18729         * par-load.adb (Load): Improve handling of misspelled and missing units
18730         Removes several cases of compilation abandoned messages
18732         * lib.adb: (Remove_Unit): New procedure
18734         * lib.ads: (Remove_Unit): New procedure
18736         * lib-load.adb: Minor reformatting
18738 2003-11-24  Vincent Celier  <celier@gnat.com>
18740         * make.adb:
18741         (Gnatmake, Initialize): Call Usage instead of Makeusg directly
18742         (Marking_Label): Label to mark processed source files. Incremented for
18743         each executable.
18744         (Gnatmake): Increase Marking_Labet for each executable
18745         (Is_Marked): Compare against marking label
18746         (Mark): Mark with marking label
18748 2003-11-24  Jerome Guitton  <guitton@act-europe.fr>
18750         * s-thread.ads:
18751         Move the declaration of the TSD for System.Threads to System.Soft_Links.
18752         Add some comments.
18754         * Makefile.in: Added target pair for s-thread.adb for cert runtime.
18755         (rts-cert): build a single relocatable object for the run-time lib.
18756         Fix perms.
18758 2003-11-24  Vasiliy Fofanov  <fofanov@act-europe.fr>
18760         * Make-lang.in:
18761         Use gnatls rather than gcc to obtain the location of GNAT RTL for
18762         crosstools build.
18764 2003-11-24  Sergey Rybin  <rybin@act-europe.fr>
18766         * opt.adb (Tree_Write): Gnat_Version_String is now a function, so we
18767         can not use it as before (that is, as a variable) when dumping it into
18768         the tree file. Add a local variable to store the result of this
18769         function and to be used as the string to be written into the tree.
18771         * scn.adb (Initialize_Scanner): Add comments explaining the recent
18772         changes.
18774         * sinput.adb (Source_First, Source_Last): In case of
18775         Internal_Source_File, replace returning attributes of
18776         Internal_Source_Ptr (which is wrong) with returning attributes of
18777         Internal_Source.
18779 2003-11-24  Ed Schonberg  <schonberg@gnat.com>
18781         * sem_ch3.adb:
18782         (New_Concatenation_Op): Proper name for New_Binary_Operator, only
18783         used for implicit concatenation operators.
18784         Code cleanup.
18786         * sem_elab.adb:
18787         (Check_Elab_Call): Set No_Elaboration_Check appropriately on calls in
18788         task bodies that are in the scope of a Suppress pragma.
18789         (Check_A Call): Use the flag to prevent spurious elaboration checks.
18791         * sinfo.ads, sinfo.adb:
18792         New flag No_Elaboration_Check on function/procedure calls, to properly
18793         suppress checks on calls in task bodies that are within a local suppress
18794         pragma.
18796         * exp_ch4.adb:
18797         (Expand_Concatenate_Other): Use the proper integer type for the
18798         expression for the upper bound, to avoid universal_integer computations
18799         when possible.
18801 2003-11-21  Kelley Cook  <kcook@gcc.gnu.org>
18803         * .cvsignore: Delete.
18805 2003-11-21  Andreas Schwab  <schwab@suse.de>
18807         * 55system.ads: Set ZCX_By_Default and GCC_ZCX_Support to True.
18809 2003-11-21  Vasiliy Fofanov  <fofanov@act-europe.fr>
18811         * 5wsystem.ads: Enable zero cost exception.
18813 2003-11-21  Jerome Guitton  <guitton@act-europe.fr>
18815         * 5ztiitho.adb: Remove an unreferenced variable.
18817 2003-11-21  Thomas Quinot  <quinot@act-europe.fr>
18819         * adaint.c: For FreeBSD, use mkstemp.
18821 2003-11-21  Arnaud Charlet  <charlet@act-europe.fr>
18823         * gnatlbr.adb: Now reference Gnat_Static_Version_String.
18825 2003-11-21  Robert Dewar  <dewar@gnat.com>
18827         * bld.adb: Remove useless USE of gnatvsn
18829         * gnatchop.adb: Minor reformatting
18830         Clean up version handling to be more consistent
18832         * gnatxref.adb: Minor reformatting
18834         * gprcmd.adb: Minor reformatting
18835         Fix output of copyright to be more consistent with other tools
18837 2003-11-21  Vincent Celier  <celier@gnat.com>
18839         * make.adb (Scan_Make_Args): Do not transmit --RTS= to gnatlink
18841 2003-11-21  Sergey Rybin  <rybin@act-europe.fr>
18843         * atree.adb (Initialize): Add initializations for global variables
18844         used in New_Copy_Tree.
18846         * cstand.adb (Create_Standard): Add call to Initialize_Scanner (with
18847         Internal_Source_File as the actual).
18848         Put the set of statements creating Any_Character before the set of
18849         statements creating Any_Array to have Any_Character fully initialized
18850         when it is used in creating Any_Array.
18852         * scn.adb (Initialize_Scanner): Do not set Comes_From_Source ON and do
18853         not call Scan in case if the actual is Internal_Source_File
18854         Add 2003 to copyright note.
18856         * sinput.adb (Source_First, Source_Last, Source_Text): Add code for
18857         processing Internal_Source_File.
18859         * types.ads: Add the constant Internal_Source_File representing the
18860         source buffer for artificial source-code-like strings created within
18861         the compiler (the definition of Source_File_Index is changed).
18863 2003-11-20  Arnaud Charlet  <charlet@act-europe.fr>
18865         * 35soccon.ads, 45intnam.ads, 55osinte.adb, 55osinte.ads,
18866         56system.ads: New file, FreeBSD version.
18868 2003-11-20  Joseph S. Myers  <jsm@polyomino.org.uk>
18870         * Make-lang.in (ada.extraclean): Delete.
18872 2003-11-19  Arnaud Charlet  <charlet@act-europe.fr>
18874         * gnatmem.adb: Clean up verbose output.
18876         * gprcmd.adb: Change copyright to FSF.
18878 2003-11-19  Vincent Celier  <celier@gnat.com>
18880         * symbols.adb: (Initialize): New parameters Reference, Symbol_Policy
18881         and Version (ignored).
18883         * symbols.ads: (Policy): New type
18884         (Initialize): New parameter Reference, Symbol_Policy and
18885         Library_Version.
18886         Remove parameter Force.
18887         Minor reformatting.
18889         * snames.ads, snames.adbadb: New standard names
18890         Library_Reference_Symbol_File and Library_Symbol_Policy
18892         * mlib-prj.adb:
18893         (Build_Library): Call Build_Dinamic_Library with the Symbol_Data of the
18894         project.
18896         * mlib-tgt.adb:
18897         (Build_Dynamic_Library): New parameter Symbol_Data (ignored)
18899         * mlib-tgt.ads: (Build_Dynamic_Library): New parameter Symbol_Data
18901         * prj.adb: (Project_Empty): New component Symbol_Data
18903         * prj.ads: (Policy, Symbol_Record): New types
18904         (Project_Data): New component Symbol_Data
18906         * prj-attr.adb:
18907         New attributes Library_Symbol_File, Library_Symbol_Policy and
18908         Library_Reference_Symbol_File.
18910         * prj-nmsc.adb:
18911         (Ada_Check): When project is a Stand-Alone library project, process
18912         attribute Library_Symbol_File, Library_Symbol_Policy and
18913         Library_Reference_Symbol_File.
18915         * 5aml-tgt.adb, 5bml-tgt.adb, 5gml-tgt.adb, 5hml-tgt.adb,
18916         5wml-tgt.adb, 5zml-tgt.adb, 5lml-tgt.adb,
18917         5sml-tgt.adb (Build_Dynamic_Library): New parameter
18918         Symbol_Data (ignored).
18920         * 5vml-tgt.adb (VMS_Options): Remove --for-linker=gsmatch=equal,1,0
18921         (Build_Dynamic_Library): New parameter Symbol_Data. New internal
18922         functions Option_File_Name and Version_String. Set new options of
18923         gnatsym related to symbol file, symbol policy and reference symbol
18924         file.
18926         * 5vsymbol.adb:
18927         Extensive modifications to take into account the reference symbol file,
18928         the symbol policy, the library version and to put in the symbol file the
18929         minor and major IDs.
18931         * bld.adb (Process_Declarative_Items): Put second argument of
18932         gprcmd to_absolute between single quotes, to avoid problems with
18933         Windows.
18935         * bld-io.adb: Update Copyright notice.
18936         (Flush): Remove last character of a line, if it is a back slash, to
18937         avoid make problems.
18939         * gnatsym.adb:
18940         Implement new scheme with reference symbol file and symbol policy.
18942         * g-os_lib.ads: (Is_Directory): Clarify comment
18944 2003-11-19  Robert Dewar  <dewar@gnat.com>
18946         * atree.adb: Move New_Copy_Tree global variables to head of package
18948         * errout.adb: Minor reformatting
18950 2003-11-19  Javier Miranda  <miranda@gnat.com>
18952         * sem_ch4.adb: (Diagnose_Call): Improve error message.
18953         Add reference to Ada0Y (AI-50217)
18955         * sem_ch6.adb, sem_ch8.adb, sem_type.adb,
18956         sem_util.adb: Add reference to AI-50217
18958         * sinfo.ads: (N_With_Clause): Document fields referred to AI-50217
18960         * sprint.adb: Add reference to Ada0Y (AI-50217, AI-287)
18962         * sem_aggr.adb: Complete documentation of AI-287 changes
18964         * par-ch4.adb: Document previous changes.
18966         * lib-load.adb, lib-writ.adb, einfo.ads, par-ch10.adb,
18967         sem_cat.adb, sem_ch3.adb, sem_ch10.adb, sem_ch12.adb: Add references to
18968         Ada0Y (AI-50217)
18970         * exp_aggr.adb: Add references to AI-287 in previous changes
18972 2003-11-19  Ed Schonberg  <schonberg@gnat.com>
18974         * exp_ch6.adb:
18975         (Add_Call_By_Copy_Node): Do not original node of rewritten expression
18976         in the rewriting is the result of an inlined call.
18978         * exp_ch6.adb (Add_Call_By_Copy_Node): If actual for (in-)out
18979         parameter is a type conversion, use original node to construct the
18980         post-call assignment, because expression may have been rewritten, e.g.
18981         if it is a packed array.
18983         * sem_attr.adb:
18984         (Resolve_Attribute, case 'Constrained): Attribute is legal in an inlined
18985         body, just as it is in an instance.
18986         Categorization routines
18988         * sem_ch12.adb (Analyze_Association, Instantiate_Formal_Subprogram,
18989         Instantiate_Object): Set proper sloc reference for message on missing
18990         actual.
18992 2003-11-19  Thomas Quinot  <quinot@act-europe.fr>
18994         * Makefile.in: Add FreeBSD libgnat pairs.
18996         * usage.adb: Fix typo in usage message.
18998 2003-11-19  Jerome Guitton  <guitton@act-europe.fr>
19000         * Makefile.in: On powerpc-wrs-vxworksae: Add s-thread.ad?,
19001         s-thrini.ad? and s-tiitho.adb to the full runtime, to support the
19002         pragma Thread_Body.
19003         Remove i-vthrea.ad? and s-tpae65.ad?, not needed anymore.
19005         * s-thread.adb: This file is now a dummy implementation of
19006         System.Thread.
19008 2003-11-19  Sergey Rybin  <rybin@act-europe.fr>
19010         * rtsfind.adb (Initialize): Add initialization for RTE_Is_Available
19012 2003-11-19  Emmanuel Briot  <briot@act-europe.fr>
19014         * xref_lib.adb (Parse_Identifier_Info): Add handling of generic
19015         instanciation references in the parent type description.
19017 2003-11-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19019         * ada-tree.def: (ALLOCATE_EXPR): Class is "2", not "s".
19021         * decl.c (gnat_to_gnu_entity, case E_Floating_Point_Subtype): Set
19022         TYPE_PRECISION directly from esize.
19024 2003-11-18  Thomas Quinot  <quinot@act-europe.fr>
19026         * cstreams.c:
19027         Use realpath(3) on FreeBSD. Fix typo in comment while we are at it.
19029         * init.c: Initialization routines for FreeBSD
19031         * link.c: Link info for FreeBSD
19033         * sysdep.c: Add the case of FreeBSD
19035 2003-11-17  Jerome Guitton  <guitton@act-europe.fr>
19037         * 5zthrini.adb: Remove the call to Init_RTS at elaboration, as it is
19038         already called in System.Threads.
19040         * 5ztiitho.adb (Initialize_Task_Hooks): Remove the registration of the
19041         environment task, as it has been moved to System.Threads.Initialization.
19043 2003-11-17  Arnaud Charlet  <charlet@act-europe.fr>
19045         * adaint.c (__gnatlib_install_locks): Only reference
19046         __gnat_install_locks on VMS, since other platforms can avoid using
19047         --enable-threads=gnat
19049 2003-11-17  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19051         * ada-tree.h: (TYPE_IS_PACKED_ARRAY_TYPE_P): New macro.
19053         * decl.c (gnat_to_gnu_entity, case E_Array_Subtype): Set
19054         TYPE_PACKED_ARRAY_TYPE_P.
19055         (validate_size): Do not verify size if TYPE_IS_PACKED_ARRAY_TYPE_P.
19057         Part of PR ada/12806
19058         * utils.c (float_type_for_precision): Renamed from float_type_for_size.
19059         Use GET_MODE_PRECISION instead of GET_MODE_BITSIZE.
19061 2003-11-17  Vincent Celier  <celier@gnat.com>
19063         * gnatchop.adb (Error_Msg): New Boolean parameter Warning, defaulted
19064         to False.
19065         Do not set exit status to Failure when Warning is True.
19066         (Gnatchop): Make errors "no compilation units found" and
19067         "no source files written" warnings only.
19069         * make.adb (Gnatmake): When using a project file, set
19070         Look_In_Primary_Dir to False.
19071         (Configuration_Pragmas_Switch): Check for Global_Configuration_Pragmas
19072         and Local_Configuration_Pragmas in the project where they are declared
19073         not an extending project which might have inherited them.
19075         * osint.adb (Locate_File): If Name is already an absolute path, do not
19076         look for a directory.
19078         * par-ch10.adb (P_Compilation_Unit): If source contains no token, and
19079         -gnats (Check_Syntax) is used, issue only a warning, not an error.
19081         * prj.adb (Register_Default_Naming_Scheme): Add new component Project
19082         in objects of type Variable_Value.
19084         * prj.ads: (Variable_Value): New component Project
19086         * prj-nmsc.adb (Ada_Check.Warn_If_Not_Sources): No warning if source
19087         is in a project extended by Project.
19089         * prj-proc.adb (Add_Attributes): New parameter Project. Set component
19090         Project of Variable_Values to this new parameter value.
19091         (Expression): Set component Project of Variable_Values.
19092         (Process_Declarative_Items): Call Add_Attributes with parameter Project.
19093         Set the component Project in array elements.
19095 2003-11-17  Sergey Rybin  <rybin@act-europe.fr>
19097         * errout.adb: (Initialize): Add initialization for error nodes.
19099         * sem_ch12.adb (Initialize): Add missing initializations for
19100         Exchanged_Views and Hidden_Entities.
19102 2003-11-17  Ed Schonberg  <schonberg@gnat.com>
19104         * sem_ch12.adb (Copy_Generic_Node): Preserve entity when copying an
19105         already instantiated tree for use in subsequent inlining.
19106         (Analyze_Associations, Instantiate_Formal_Subprogram,
19107         Instantiate_Object): improve error message for mismatch in
19108         instantiations.
19110         * sem_ch6.adb (Build_Body_To_Inline): Major cleanup to handle
19111         instantiations of subprograms declared in instances.
19113 2003-11-17  Javier Miranda  <miranda@gnat.com>
19115         * sem_ch4.adb (Analyze_Allocator): Previous modification must be
19116         executed only under the Extensions_Allowed flag.
19118 2003-11-17  Robert Dewar  <dewar@gnat.com>
19120         * a-exexda.adb (Address_Image): Fix documentation to indicate leading
19121         zeroes suppressed.
19122         (Address_Image): Fix bug of returning 0x instead of 0x0
19123         Minor reformatting (function specs).
19125         * einfo.ads: Minor fix for documentation of Is_Bit_Packed_Array
19126         (missed case of 33-63)
19128         * freeze.adb, sem_ch13.adb: Properly check size of packed bit array
19130         * s-thread.adb: Add comments for pragma Restriction
19132         * exp_aggr.adb, g-debuti.adb, par-ch4.adb, sem_aggr.adb,
19133         sem_ch6.adb, sprint.adb, xref_lib.adb: Minor reformatting
19135 2003-11-17  Ed Falis  <falis@gnat.com>
19137         * s-thread.adb: Added No_Tasking restriction for this implementation.
19139 2003-11-17  Emmanuel Briot  <briot@act-europe.fr>
19141         * xref_lib.adb (Parse_Identifier_Info): Add handling of generic
19142         instanciation references in the parent type description.
19144 2003-11-17  GNAT Script  <nobody@gnat.com>
19146         * Make-lang.in: Makefile automatically updated
19148 2003-11-16  Jason Merrill  <jason@redhat.com>
19150         * Make-lang.in (ada.tags): Create TAGS.sub files in each directory
19151         and TAGS files that include them for each front end.
19153 2003-11-14  Andreas Jaeger  <aj@suse.de>
19155         * lang.opt: Change -Wno-long-long to -Wlong-long since the latter
19156         is the canonical version.
19157         * misc.c (gnat_handle_option): Likewise.
19159         * Makefile.in (LIBGNAT_TARGET_PAIRS): Add rules for x86_64-linux.
19161         * 5nsystem.ads: New file for x86_64-linux-gnu.
19163 2003-11-14  Arnaud Charlet  <charlet@act-europe.fr>
19165         * nmake.ads, nmake.adb, sinfo.h, treeprs.ads: Regenerated.
19167         * comperr.adb: Fix logic in previous change.
19169 2003-11-13  Vincent Celier  <celier@gnat.com>
19171         * 5bml-tgt.adb (Build_Dynamic_Library): Use
19172         Osint.Include_Dir_Default_Prefix instead of
19173         Sdefault.Include_Dir_Default_Name.
19175         * gnatlbr.adb: Update Copyright notice
19176         (Gnatlbr): : Use Osint.Include_Dir_Default_Prefix instead of
19177         Sdefault.Include_Dir_Default_Name and Osint.Object_Dir_Default_Prefix
19178         instead of Sdefault.Object_Dir_Default_Name
19180         * gnatlink.adb:
19181         (Process_Binder_File): Never suppress the option following -Xlinker
19183         * mdll-utl.adb:
19184         (Gcc): Use Osint.Object_Dir_Default_Prefix instead of
19185         Sdefault.Object_Dir_Default_Name.
19187         * osint.ads, osint.adb:
19188         (Include_Dir_Default_Prefix, Object_Dir_Default_Prefix): New functions
19189         Minor reformatting.
19191         * vms_conv.ads: Minor reformating
19192         Remove GNAT STANDARD and GNAT PSTA
19194         * vms_conv.adb:
19195         Allow GNAT MAKE to have several files on the command line.
19196         (Init_Object_Dirs): Use Osint.Object_Dir_Default_Prefix instead of
19197         Sdefault.Object_Dir_Default_Name.
19198         Minor Reformating
19199         Remove data for GNAT STANDARD
19201         * vms_data.ads:
19202         Add new compiler qualifier /PRINT_STANDARD (-gnatS)
19203         Remove data for GNAT STANDARD
19204         Remove options and documentation for -gnatwb/-gnatwB: these warning
19205         options no longer exist.
19207 2003-11-13  Ed Falis  <falis@gnat.com>
19209         * 5zthrini.adb: (Init_RTS): Made visible
19211         * 5zthrini.adb:
19212         (Register): Removed unnecessary call to taskVarGet that checked whether
19213          an ATSD was already set as a task var for the argument thread.
19215         * s-thread.adb:
19216         Updated comment to reflect that this is a VxWorks version
19217         Added context clause for System.Threads.Initialization
19218         Added call to System.Threads.Initialization.Init_RTS
19220 2003-11-13  Jerome Guitton  <guitton@act-europe.fr>
19222         * 5zthrini.adb:
19223         (Init_RTS): New procedure, for the initialization of the run-time lib.
19225         * s-thread.adb:
19226         Remove dependancy on System.Init, so that this file can be used in the
19227         AE653 sequential run-time lib.
19229 2003-11-13  Robert Dewar  <dewar@gnat.com>
19231         * bindgen.adb: Minor reformatting
19233 2003-11-13  Ed Schonberg  <schonberg@gnat.com>
19235         * checks.adb:
19236         (Apply_Discriminant_Check): Do no apply check if target type is derived
19237         from source type with no applicable constraint.
19239         * lib-writ.adb:
19240         (Ensure_System_Dependency): Do not apply the style checks that may have
19241         been specified for the main unit.
19243         * sem_ch8.adb:
19244         (Find_Selected_Component): Further improvement in error message, with
19245         RM reference.
19247         * sem_res.adb:
19248         (Resolve): Handle properly the case of an illegal overloaded protected
19249         procedure.
19251 2003-11-13  Javier Miranda  <miranda@gnat.com>
19253         * exp_aggr.adb:
19254         (Has_Default_Init_Comps): New function to check the presence of
19255         default initialization in an aggregate.
19256         (Build_Record_Aggr_Code): Recursively expand the ancestor in case of
19257         extension aggregate of a limited record. In addition, a new formal
19258         was added to do not initialize the record controller (if any) during
19259         this recursive expansion of ancestors.
19260         (Init_Controller): Add support for limited record components.
19261         (Expand_Record_Aggregate): In case of default initialized components
19262         convert the aggregate into a set of assignments.
19264         * par-ch4.adb (P_Aggregate_Or_Paren_Expr): Update the comment
19265         describing the new syntax.
19266         Nothing else needed to be done because this subprogram delegates part of
19267         its work to P_Precord_Or_Array_Component_Association.
19268         (P_Record_Or_Array_Component_Association): Give support to the new
19269         syntax for default initialization of components.
19271         * sem_aggr.adb:
19272         (Resolve_Aggregate): Relax the strictness of the frontend in case of
19273         limited aggregates.
19274         (Resolve_Record_Aggregate): Give support to default initialized
19275         components.
19276         (Get_Value): In case of default initialized components, duplicate
19277         the corresponding default expression (from the record type
19278         declaration). In case of default initialization in the *others*
19279         choice, do not check that all components have the same type.
19280         (Resolve_Extension_Aggregate): Give support to limited extension
19281         aggregates.
19283         * sem_ch3.adb:
19284         (Check_Initialization): Relax the strictness of the front-end in case
19285         of aggregate and extension aggregates. This test is now done in
19286         Get_Value in a per-component manner.
19288         * sem_ch4.adb (Analyze_Allocator): Don't post an error if the
19289         expression corresponds to a limited aggregate. This test is now done
19290         in Get_Value.
19292         * sinfo.ads, sinfo.adb (N_Component_Association): Addition of
19293         Box_Present flag.
19295         * sprint.adb (Sprint_Node_Actual): Modified to print an mbox if
19296         present in an N_Component_Association node
19298 2003-11-13  Thomas Quinot  <quinot@act-europe.fr>
19300         * sem_ch9.adb (Analyze_Accept_Statement): A procedure hides a
19301         type-conformant entry only if they are homographs.
19303 2003-11-13  GNAT Script  <nobody@gnat.com>
19305         * Make-lang.in: Makefile automatically updated
19307 2003-11-12  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
19309         * adadecode.c: Use <> form of include for ctype.h.
19310         * sysdep.c [IN_RTS]: Use <> form of include for time.h.
19312 2003-11-12  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
19314         * 5gsystem.ads (Functions_Return_By_DSP): Set to False.
19315         Works around PR middle-end/6552.
19317 2003-11-10  Ed Falis  <falis@gnat.com>
19319         * 5ytiitho.adb: (procStartHookAdd): Definition and call deleted
19321         * 5zinit.adb: (Install_Handler): Moved back to spec
19322         (Install_Signal_Handlers): Deleted
19324         * 5zthrini.adb: Added context clause for System.Storage_Elements
19325         (Register): Only handles creation of taskVar; initialization moved to
19326         Thread_Body_Enter.
19327         (Reset_TSD): Deleted; replaced by Thread_Body_Enter
19328         Added declaration of environment task secondary stack and
19329         initialization.
19331         * s-thread.adb: Implement bodies for thread body processing
19333         * s-thread.ads:
19334         Added comment identifying supported targets for pragma Thread_Body.
19336 2003-11-10  Pascal Obry  <obry@gnat.com>
19338         * adaint.c (_gnat_stat) [WIN32]: Check if name is not bigger than
19339         GNAT_MAX_PATH_LEN.
19341         * s-fileio.adb:
19342         (Open): Properly check for string length before copying into the buffer.
19343         Raises Name_Error if buffer is too small. Note that this was a potential
19344         buffer overflow.
19346 2003-11-10  Romain Berrendonner  <berrendo@act-europe.fr>
19348         * bindgen.adb, comperr.adb: Code clean ups.
19349         * gnatvsn.ads, gnatvsn.adb (Get_Gnat_Version_Type): New function.
19351 2003-11-10  Sergey Rybin  <rybin@act-europe.fr>
19353         * gnat1drv.adb: Add call to Sem_Elim.Initialize.
19355 2003-11-10  Vincent Celier  <celier@gnat.com>
19357         * gprcmd.adb:
19358         (Gprcmd): Add new command "prefix" to get the prefix of the GNAT
19359         installation.
19361         * make.adb (Scan_Make_Arg): Transmit -nostdlib to the compiler
19363         * prj.adb: (Project_Empty): Add new boolean component Virtual
19365         * prj.ads: (Virtual_Prefix): New constant string
19366         (Project_Data): New boolean component Virtual
19368         * prj-nmsc.adb (Language_Independent_Check): Adjust error message when
19369         a library project is extended by a virtual extending project.
19371         * prj-part.adb:
19372         Modifications throughout to implement extending-all project, including:
19373         (Virtual_Hash, Processed_Hash): New hash tables
19374         (Create_Virtual_Extending_Project): New procedure
19375         (Look_For_Virtual_Projects_For): New procedure
19377         * prj-proc.adb:
19378         (Process): After checking the projects, if main project is an
19379         extending-all project, set the object directory of all virtual extending
19380         project to the object directory of the main project.
19381         Adjust error message when a virtual extending project has the same
19382         object directory as an project being extended.
19383         (Recursive_Process): If name starts with the virtual prefix, set Virtual
19384         to True in the project data.
19386         * prj-tree.adb:
19387         (Default_Project_Node): Add new boolean component Extending_All
19388         (Is_Extending_All): New function
19389         (Set_Is_Extending_All): New procedure
19391         * prj-tree.ads: (Is_Extending_All): New function
19392         (Set_Is_Extending_All): New procedure
19393         (Project_Node_Record): New boolean component Extending_All
19395         * switch-c.adb: (Scan_Front_End_Switches): Process -nostdlib
19397         * vms_data.ads:
19398         Add qualifier /NOSTD_LIBRARIES (-nostdlib) for the compiler
19400         * bld.adb (Recursive_Process): If MAKE_ROOT is not defined, call
19401         "gprcmd prefix" to define it.
19403 2003-11-10  Thomas Quinot  <quinot@act-europe.fr>
19405         * einfo.ads: Fix a typo and remove an extraneous word in comments.
19407         * lib-load.adb:
19408         (Create_Dummy_Package_Unit): Set the scope of the entity for the
19409         created dummy package to Standard_Standard, not to itself, to
19410         defend other parts of the front-end against encoutering a cycle in
19411         the scope chain.
19413         * sem_ch10.adb:
19414         (Analyze_With_Clause): When setting the entities for the successive
19415         N_Expanded_Names that constitute the name of a child unit, do not
19416         attempt to go further than Standard_Standard in the chain of scopes.
19417         This case arises from the placeholder units created by
19418         Create_Dummy_Package_Unit in the case of a with_clause for a
19419         nonexistent child unit.
19421 2003-11-10  Ed Schonberg  <schonberg@gnat.com>
19423         * exp_ch6.adb:
19424         (Expand_Thread_Body): Place subprogram on scope stack, so that new
19425         declarations are given the proper scope.
19427         * sem_ch13.adb:
19428         (Check_Expr_Constants): Reject an expression that contains a constant
19429         created during expansion, and that appears after the object to which
19430         the address clause applies.
19432         * sem_ch5.adb (Check_Controlled_Array_Attribute): Subsidiary of
19433         Analyze_Iteration_Scheme, to rewrite a loop parameter specification
19434         that uses 'Range of a function call with controlled components, so
19435         that the function result can be finalized before starting the loop.
19437         * sem_ch8.adb:
19438         (Find_Selected_Component): Improve error message when prefix is
19439         an implicit dereference of an incomplete type.
19441 2003-11-10  Robert Dewar  <dewar@gnat.com>
19443         * opt.ads: New Print_Standard flag for -gnatS switch
19445         * sem_ch13.adb: Remove some additional checks for unaligned arrays
19447         * cstand.adb (Create_Standard): Print out package standard if -gnatS
19448         switch set
19450         * debug.adb: Update doc for -gnatds to discuss relationship with new
19451         -gnatS flag
19453         * sinfo.adb: Add new field Entity_Or_Associated_Node
19455         * sinfo.ads: Add new field Entity_Or_Associated_Node
19456         Update documentation for Associated_Node and Entity fields to clarify
19457         relationship and usage.
19459         * sprint.adb:
19460         (Write_Id): Properly process Associated_Node field in generic template
19462         * switch-c.adb:
19463         Recognize new -gnatS switch for printing package Standard
19464         This replaces gnatpsta
19466         * usage.adb:
19467         Add line for  new -gnatS switch for printing package Standard
19468         This replaces gnatpsta
19470 2003-11-10  Andreas Jaeger  <aj@suse.de>
19472         * 7sosprim.adb: tv_usec of struct_timeval and time_t are long
19473         integer.
19475 2003-11-10  Arnaud Charlet  <charlet@act-europe.fr>
19477         * misc.c, lang.opt: Add handling of -nostdlib, now recognized/needed
19478         by gnat1.
19480 2003-11-10  Arnaud Charlet  <charlet@act-europe.fr>
19482         * Makefile.in, Make-lang.in: Remove build of gnat_wrapper and gnatpsta,
19483         no longer needed.
19485         * gnatpsta.adb, gnat_wrapper.adb: Removed, no longer needed.
19487         * sysdep.c: Add handling of cygwin.
19489 2003-11-10  GNAT Script  <nobody@gnat.com>
19491         * Make-lang.in: Makefile automatically updated
19493 2003-11-10  Arnaud Charlet  <charlet@act-europe.fr>
19495         PR 12950
19496         * osint.ads, osint.adb (Relocate_Path, Executable_Suffix): New
19497         functions. Used to handle dynamic prefix relocation, via set_std_prefix.
19498         Replace GNAT_ROOT by GCC_ROOT.
19500         * Make-lang.in: Use new function Relocate_Path to generate sdefault.adb
19502 2003-11-06  Zack Weinberg  <zack@codesourcery.com>
19504         * misc.c (fp_prec_to_size, fp_size_to_prec): Use GET_MODE_PRECISION
19505         and update for changed meaning of GET_MODE_BITSIZE.
19507 2003-11-04  Doug Rupp  <rupp@gnat.com>
19509         * sysdep.c: Problem discovered during IA64 VMS port.
19510         [VMS] #include <unixio.h> to get proper prototypes.
19512         * adaint.c:
19513         Issues discovered/problems fixed during IA64 VMS port.
19514         [VMS] #define _POSIX_EXIT for proper semantics.
19515         [VMS] #include <unixio.h> for proper prototypes.
19516         [VMS] (fork): #define IA64 version.
19517         (__gnat_os_exit): Remove unnecessary VMS specific code.
19519 2003-11-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19521         Part of PR ada/12806
19523         * ada-tree.h (TYPE_DIGITS_VALUE, SET_TYPE_DIGITS_VALUE): Save count as
19524         tree, not integer.
19526         * decl.c:
19527         (gnat_to_gnu_entity, case E_Floating_Point_Type): Save count as tree,
19528         not integer.
19530         * targtyps.c, decl.c, misc.c,
19531         gigi.h (fp_prec_to_size, fp_size_to_prec): Temporary
19532         routines to work around change in FP sizing semantics in GCC.
19534         * utils.c:
19535         (build_vms_descriptor): TYPE_DIGITS_VALUE is tree, not integer.
19537         * gigi.h: (enumerate_modes): New function.
19539         * Make-lang.in: (ada/misc.o): Add real.h.
19541         * misc.c: (enumerate_modes): New function.
19543 2003-11-04  Robert Dewar  <dewar@gnat.com>
19545         * 3vtrasym.adb: Minor reformatting
19546         Use terminology encoded/decoded name, rather than C++ specific notion
19547         of mangling (this is the terminology used throughout GNAT).
19549         * einfo.h: Regenerated
19551         * einfo.ads, einfo.adb: Add new flag Is_Thread_Body
19553         * exp_ch6.adb:
19554         (Expand_N_Subprogram_Body): Handle expansion of thread body procedure
19556         * par-prag.adb: Add dummy entry for Thread_Body pragma
19558         * rtsfind.ads:
19559         Add entries for System.Threads entities for thread body processing
19561         * sem_attr.adb:
19562         (Analyze_Pragma, Access attributes): Check these are not applied to a
19563         thread body, since this is not permitted
19565         * sem_prag.adb: Add processing for Thread_Body pragma.
19566         Minor comment fix.
19568         * sem_res.adb:
19569         (Resolve_Call): Check for incorrect attempt to call a thread body
19570          procedure with a direct call.
19572         * snames.ads, snames.adb: Add entry for Thread_Body pragma
19573         Add names associated with thread body expansion
19575         * snames.h: Add entry for Thread_Body pragma
19577         * s-thread.adb: Add entries for thread body processing
19578         These are dummy bodies so far
19580         * s-thread.ads: Add documentation on thread body handling.
19581         Add entries for thread body processing.
19583 2003-11-04  Javier Miranda  <miranda@gnat.com>
19585         * sem_ch10.adb:
19586         (Build_Limited_Views): Return after posting an error in case of limited
19587         with_clause on subprograms, generics, instances or generic renamings
19588         (Install_Limited_Withed_Unit): Do nothing in case of limited with_clause
19589         on subprograms, generics, instances or generic renamings
19591 2003-11-04  Arnaud Charlet  <charlet@act-europe.fr>
19593         * raise.c (setup_to_install): Correct mistake in last revision; two
19594         arguments out of order.
19596         * trans.c, cuintp.c, argv.c, aux-io.c, cal.c, errno.c, exit.c,
19597         gnatbl.c, init.c, stringt.h, utils.c, utils2.c: Update copyright
19598         notice, missed in previous change.
19599         Remove trailing blanks and other style errors introduced in previous
19600         change.
19602 2003-11-04  Olivier Hainque  <hainque@act-europe.fr>
19604         * decl.c (gnat_to_gnu_field): Adjust the conditions under which we get
19605         rid of the wrapper for a LJM type, ensuring we don't do that if the
19606         field is addressable.  This avoids potential low level type view
19607         mismatches later on, for instance in a by-reference argument passing
19608         process.
19610 2003-11-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19612         * decl.c (gnat_to_gnu_field): No longer check for BLKmode being
19613         aligned at byte boundary.
19615 2003-11-04  Joel Brobecker  <brobecker@gnat.com>
19617         * decl.c (components_to_record): Do not delete the empty variants from
19618         the end of the union type.
19620 2003-11-04  Ed Schonberg  <schonberg@gnat.com>
19622         * exp_ch4.adb (Expand_N_Op_Eq): Use base type when locating primitive
19623         operation for a derived type, an explicit declaration may use a local
19624         subtype of Boolean.
19626 2003-11-04  Vincent Celier  <celier@gnat.com>
19628         * make.adb (Gnatmake): Allow main sources on the command line with a
19629         library project when it is only for compilation (no binding or
19630         linking).
19632 2003-11-04  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
19634         * Makefile.in: Remove many duplicate variables.
19636 2003-11-03  Kelley Cook  <kcook@gcc.gnu.org>
19638         * Make-lang.in (dvi): Move targets to $(docobjdir).
19639         (gnat_ug_vms.dvi): Simplify rule and adjust target.
19640         (gnat_ug_wnt.dvi): Likewise.
19641         (gnat_ug_unx.dvi): Likewise.
19642         (gnat_ug_vxw.dvi): Likewise.
19643         (gnat_rm.dvi): Likewise.
19644         (gnat-style.dvi): Likewise.
19646 2003-10-31  Kelley Cook  <kcook@gcc.gnu.org>
19648         * gigi.h: Missed commit from update for C90.
19650 2003-10-31  Kelley Cook  <kcook@gcc.gnu.org>
19652         * Makefile.in (ada/b_gnat1.o): Compile with -Wno-error.
19654 2003-10-31  Andreas Schwab  <schwab@suse.de>
19656         * raise.c (get_action_description_for): Fix typo in last change.
19658 2003-10-31  Nathanael Nerode  <neroden@gcc.gnu.org>
19660         PR ada/12761
19661         * ada/Make-lang.in: Move default definitions of X_ADA_CFLAGS,
19662         T_ADA_CFLAGS, X_ADAFLAGS, T_ADAFLAGS from here to master Makefile.in.
19664 2003-10-30  Kelley Cook  <kcook@gcc.gnu.org>
19666         * adadecode.c, adaint.c, argv.c, aux-io.c, cal.c, cio.c, cstreams.c,
19667         ctrl_c.c, cuintp.c, decl.c, errno.c, exit.c, expect.c, final.c,
19668         gigi.h, gmem.c, gnatbl.c, init.c, misc.c, mkdir.c, raise.c, socket.c,
19669         sysdep.c, sysdep.c, targtyps.c, tb-alvms.c, tb-alvxw.c, tracebak.c,
19670         trans.c, utils.c, utils2.c: Convert function prototypes to C90.
19672 2003-10-30  Vasiliy Fofanov  <fofanov@act-europe.fr>
19674         * 3vtrasym.adb:
19675         Demangle Ada symbols returned by TBK$SYMBOLIZE. Correctly align line
19676         numbers when symbol name is too long.
19678 2003-10-30  Ed Falis  <falis@gnat.com>
19680         * g-signal.ads, g-signal.adb: New files
19682         * impunit.adb: (Non_Imp_File_Names): Added "g-signal"
19684         * Makefile.rtl: Introduce GNAT.Signals
19686 2003-10-30  Robert Dewar  <dewar@gnat.com>
19688         * freeze.adb: Minor reformatting
19690         * lib-writ.adb (Write_ALI): Never write ali file if -gnats is specified
19692         * par.adb, par-ch12.adb, par-ch13.adb, par-ch2.adb, par-ch3.adb,
19693         par-ch5.adb, par-ch6.adb, par-ch9.adb, par-util.adb:
19694         New handling of Id_Check parameter to improve recognition of keywords
19695         used as identifiers.
19696         Update copyright notice to include 2003
19698 2003-10-29  Robert Dewar  <dewar@gnat.com>
19700         * 3vtrasym.adb, 5vtraent.ads, sprint.adb,
19701         sem_ch10.adb: Minor reformatting
19703         * exp_ch5.adb (Expand_Assign_Array): Test for bit unaligned operands
19704         (Expand_Assign_Record): Test right hand side for bit unaligned as well
19706 2003-10-29  Vasiliy Fofanov  <fofanov@act-europe.fr>
19708         * 3vtrasym.adb, 5vtraent.adb, 5vtraent.ads, tb-alvms.c:
19709         Support for TBK$SYMBOLIZE-based symbolic traceback.
19711 2003-10-29  Jose Ruiz  <ruiz@act-europe.fr>
19713         * exp_disp.adb:
19714         Revert previous change, that did not work well when pragma No_Run_Time
19715         was used in conjunction with a run-time other than ZFP.
19717 2003-10-29  Vincent Celier  <celier@gnat.com>
19719         * make.adb:
19720         (Gnatmake): When there are no Ada mains in attribute Main, disable the
19721          bind and link steps only is switch -z is not used.
19723 2003-10-29  Arnaud Charlet  <charlet@act-europe.fr>
19725         * Makefile.generic: Remove duplicated setting of CC.
19727         * Makefile.prolog: Set CC to gcc by default, to override make's
19728         default (cc).
19730         * einfo.h: Regenerated.
19732 2003-10-29  Ed Schonberg  <schonberg@gnat.com>
19734         * sem_ch10.adb (Analyze_Subunit): Restore state of suppress flags for
19735         current body, after compiling subunit.
19737         * itypes.adb (Create_Itype): In ASIS_Mode, do not freeze the itype
19738         when in deleted code, because gigi needs properly ordered freeze
19739         actions to annotate types.
19741         * freeze.adb (Is_Fully_Defined): Predicate must be recursive, to
19742         prevent the premature freezing of record type that contains
19743         subcomponents with a private type that does not yet have a completion.
19745 2003-10-29  Javier Miranda  <miranda@gnat.com>
19747         * sem_ch12.adb:
19748         (Analyze_Package_Instantiation): Check that instances can not be used in
19749         limited with_clauses.
19751         * sem_ch8.adb:
19752         (Analyze_Package_Renaming): Check that limited withed packages cannot
19753         be renamed. Improve text on error messages related to limited
19754         with_clauses.
19756         * einfo.adb, einfo.ads: Remove Non_Limited_Views attribute.
19758         * sprint.adb: (Sprint_Node_Actual): Print limited with_clauses.
19759         Update copyright notice.
19761         * sem_ch10.adb: (Build_Limited_Views): Complete its documentation.
19762         (Install_Limited_Context_Clauses): New subprogram that isolates all the
19763         checks required for limited context_clauses and installs the limited
19764         view.
19765         (Install_Limited_Withed_Unit): Complete its documentation.
19766         (Analyze_Context): Check that limited with_clauses are only allowed in
19767         package specs.
19768         (Install_Context): Call Install_Limited_Context_Clauses after the
19769         parents have been installed.
19770         (Install_Limited_Withed_Unit): Add documentation. Mark the installed
19771         package as 'From_With_Type'; this mark indicates that the limited view
19772         is installed. Used to check bad usages of limited with_clauses.
19773         (Build_Limited_Views): Do not add shadow entities to the scope's list
19774         of entities. Do not add real entities to the Non_Limited_Views chain.
19775         Improve error notification.
19776         (Remove_Context_Clauses): Remove context clauses in two phases:
19777         limited views first and regular views later (to maintain the
19778         stack model).
19779         (Remove_Limited_With_Clause): If the package is analyzed then reinstall
19780         its visible entities.
19782 2003-10-29  Thomas Quinot  <quinot@act-europe.fr>
19784         * sem_type.adb (Specific_Type): Type Universal_Fixed is compatible
19785         with any type that Is_Fixed_Point_Type.
19787         * sinfo.ads: Fix documentation for Associated_Node attribute.
19789 2003-10-29  Sergey Rybin  <rybin@act-europe.fr>
19791         * switch-c.adb (Scan_Front_End_Switches): ASIS_Mode is set now when
19792         both '-gnatc' and '-gnatt' are specified.
19794         * atree.adb (Initialize): Add initialization for Node_Count (set to
19795         zero).
19797 2003-10-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19799         * decl.c (gnat_to_gnu_entity, case E_Subprogram): If no return value,
19800         do not consider as Pure.
19802         Part of implementation of function-at-a-time:
19804         * trans.c (gnat_to_gnu_code): If IS_STMT, call expand_expr_stmt.
19805         (tree_transform): Add new argument to build_component_ref.
19806         (tree_transform, case N_Assignment_Statement): Make and return an
19807         EXPR_STMT.
19808         (tree_transform): If result IS_STMT, set flags and return it.
19809         (gnat_expand_stmt, set_lineno_from_sloc): New functions.
19811         * utils2.c (build_simple_component_ref, build_component_ref): Add new
19812         arg, NO_FOLD_P.
19813         (build_binary_op, case EQ_EXPR): Pass additional arg to it.
19814         (build_allocator): Likewise.
19816         * utils.c (convert_to_fat_pointer, convert_to_thin_pointer, convert):
19817         Add new arg to build_component_ref.
19818         (maybe_unconstrained_array, unchecked_convert): Likewise.
19820         * ada-tree.def (EXPR_STMT): New code.
19822         * ada-tree.h (IS_STMT, TREE_SLOC, EXPR_STMT_EXPR): New macros.
19824         * decl.c (gnat_to_gnu_entity, case object): Add extra arg to
19825         build_component_ref calls.
19827         * misc.c (gnat_expand_expr): If IS_STMT, call gnat_expand_stmt.
19829         * gigi.h (gnat_expand_stmt, set_lineno_from_sloc): New functions.
19830         (build_component_ref): Add new argument, NO_FOLD_P.
19832 2003-10-27  Arnaud Charlet  <charlet@act-europe.fr>
19834         * Makefile.generic: Add missing substitution on object_deps handling.
19836         PR ada/5909:
19837         * Make-lang.in (check-ada): Enable ACATS test suite.
19839 2003-10-27  Robert Dewar  <dewar@gnat.com>
19841         * exp_ch3.adb:
19842         (Freeze_Array_Type): We do not need an initialization routine for types
19843         derived from String or Wide_String. They should be treated the same
19844         as String and Wide_String themselves. This caused problems with the
19845         use of Initialize_Scalars.
19847         * exp_ch5.adb:
19848         (Expand_Assign_Record): Do component-wise assignment of non-byte aligned
19849         composites. This allows use of component clauses that are not byte
19850         aligned.
19852         * sem_prag.adb:
19853         (Analyze_Pragma, case Pack): Generate warning and ignore pack if there
19854         is an attempt to pack an array of atomic objects.
19856         * make.adb, prj-env.adb, prj-env.ads: Minor reformatting
19858 2003-10-27  Pascal Obry  <obry@gnat.com>
19860         * g-dirope.adb:
19861         (Basename): Check for drive letters in a pathname only on DOS based OS.
19863 2003-10-27  Vincent Celier  <celier@gnat.com>
19865         * make.adb:
19866         (Gnatmake): When unable to change dir to the object dir, display the
19867         content of the parent dir of the obj dir, to try to understand why this
19868         happens.
19870 2003-10-27  GNAT Script  <nobody@gnat.com>
19872         * Make-lang.in: Makefile automatically updated
19874 2003-10-27  Ed Schonberg  <schonberg@gnat.com>
19876         * sem_ch12.adb:
19877         (Inline_Instance_Body): Indicate that the save/restore of use_clauses
19878         should not be done in Save/Restore_Scope_Stack, because it is performed
19879         locally.
19881         * sem_ch8.adb:
19882         (Save_Scope_Stack, Restore_Scope_Stack): Add parameter to indicate
19883         whether use clauses should be removed/restored.
19885         * sem_ch8.ads:
19886         (Save_Scope_Stack, Restore_Scope_Stack): Add parameter to indicate
19887         whether use clauses should be removed/restored.
19889 2003-10-26  Andreas Jaeger  <aj@suse.de>
19891         * Makefile.in: Remove duplicated lines.
19893 2003-10-24  Arnaud Charlet  <charlet@act-europe.fr>
19895         * gnatvsn.ads (Gnat_Static_Version_String): New constant, used to
19896         minimize the differences with ACT tree.
19898         * gnatkr.adb, gnatlink.adb, gnatls.adb, gnatmake.adb,
19899         gnatprep.adb, gnatpsta.adb, gnatvsn.ads: Take advantage of
19900         Gnatvsn.Gnat_Static_Version_String to reduce differences between
19901         ACT and FSF trees.
19903 2003-10-24  Pascal Obry  <obry@gnat.com>
19905         * adadecode.c (ostrcpy): New function.
19906         (__gnat_decode): Use ostrcpy of strcpy.
19907         (has_prefix): Set first parameter a const.
19908         (has_suffix): Set first parameter a const.
19909         Update copyright notice. Fix source name in header.
19910         Removes a trailing space.
19911         PR ada/12014.
19913 2003-10-24  Jose Ruiz  <ruiz@act-europe.fr>
19915         * exp_disp.adb:
19916         Remove the test against being in No_Run_Time_Mode before generating a
19917         call to Register_Tag. It is redundant with the test against the
19918         availability of the function Register_Tag.
19920 2003-10-24  Vincent Celier  <celier@gnat.com>
19922         * g-catiio.adb: (Month_Name): Correct spelling of February
19924         * make.adb: (Mains): New package
19925         (Initialize): Call Mains.Delete
19926         (Gnatmake): Check that each main on the command line is a source of a
19927         project file and, if there are several mains, each of them is a source
19928         of the same project file.
19929         (Gnatmake): When a foreign language is specified in attribute Languages,
19930         no main is specified on the command line and attribute Mains is not
19931         empty, only build the Ada main. If there is no Ada main, just compile
19932         the Ada sources and their closure.
19933         (Gnatmake): If a main is specified on the command line with directory
19934         information, check that the source exists and, if it does, that the path
19935         is the actual path of a source of a project.
19937         * prj-env.adb:
19938         (File_Name_Of_Library_Unit_Body): New Boolean parameter Full_Path. When
19939         Full_Path is True, return the full path instead of the simple file name.
19940         (Project_Of): New function
19942         * prj-env.ads:
19943         (File_Name_Of_Library_Unit_Body): New Boolean parameter Full_Path,
19944         defaulted to False.
19945         (Project_Of): New function
19947 2003-10-24  Arnaud Charlet  <charlet@act-europe.fr>
19949         * Makefile.generic:
19950         Ensure objects of main project are always checked and rebuilt if needed.
19951         Set CC to gcc by default.
19952         Prepare new handling of link by creating a global archive (not activated
19953         yet).
19955         * adadecode.h, atree.h, elists.h, nlists.h, raise.h,
19956         stringt.h: Update copyright notice. Remove trailing blanks.
19957         Fix source name in header.
19959 2003-10-24  Robert Dewar  <dewar@gnat.com>
19961         * sem_ch12.adb: Minor reformatting
19963         * sem_ch3.adb:
19964         Minor reformatting (including new function return style throughout)
19966         * sem_ch3.ads:
19967         Minor reformatting (including new function return style throughout)
19969 2003-10-24  Arnaud Charlet  <charlet@act-europe.fr>
19971         * adadecode.h, atree.h, elists.h, nlists.h, raise.h,
19972         stringt.h: Update copyright notice. Remove trailing blanks.
19973         Fix source name in header.
19975 2003-10-24  GNAT Script  <nobody@gnat.com>
19977         * Make-lang.in: Makefile automatically updated
19979 2003-10-23  Nathanael Nerode  <neroden@gcc.gnu.org>
19981         * adadecode.h, atree.h, elists.h, namet.h, nlists.h, raise.h,
19982         stringt.h: Convert to ISO C90 declarations and definitions.
19984 2003-10-23  Thomas Quinot  <quinot@act-europe.fr>
19986         PR ada/11978:
19987         * exp_ch13.adb (Expand_N_Freeze_Entity): Do not consider inherited
19988         External_Tag attribute definition clauses.
19990 2003-10-23  Ed Schonberg  <schonberg@gnat.com>
19992         PR ada/7613:
19993         * exp_dbug.adb (Debug_Renaming_Declaration): For the renaming of a
19994         child unit, generate a fully qualified name to avoid spurious errors
19995         when the context contains renamings of different child units with
19996         the same simple name.
19998         * exp_dbug.ads: Add documentation on name qualification for renamings
19999         of child units.
20001 2003-10-23  Robert Dewar  <dewar@gnat.com>
20003         * g-regpat.ads, g-regpat.adb: Minor reformatting
20005 2003-10-23  Jose Ruiz  <ruiz@act-europe.fr>
20007         * Makefile.in: Use the file 1atags.ads with the ZFP and cert run-times.
20009 2003-10-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
20011         * trans.c: (tree_transform, case N_Real_Literal): Add extra arg to
20012         Machine call.
20014         * urealp.h: (Machine): Update to proper definition.
20016 2003-10-23  Arnaud Charlet  <charlet@act-europe.fr>
20018         * init.c, adaint.c: Minor reformatting.
20020 2003-10-23  Danny Smith  <dannysmith@users.sourceforge.net>
20022         * adaint.c (w32_epoch_offset): Define static const at file level.
20023         (win32_filetime): Replace offset with w32_epoch_offset. Use NULL
20024         rather than t_create, t_access in call to GetFileTime. Use union
20025         to convert between FILETIME and  unsigned long long.
20026         (__gnat_file_time_name): Test for invalid file handle.
20027         (__gnat_set_filetime_name): Support win32 targets using
20028         w32api SetFileTime.
20030 2003-10-22  Danny Smith  <dannysmith@users.sourceforge.net>
20032         * sysdep.c: Include conio.h if __MINGW32__ and !OLD_MINGW.
20034         * ctrl_c.c (__gnat_int_handler): Remove declaration.
20036         * decl.c (creat_concat_name):  Const-ify prefix.
20038         * adaint.c: Include ctype.h if __MINGW32__.
20039         (__gnat_readlink): Mark arguments as possibly unused.
20040         (__gnat_symlink): Likewise.
20041         (__gnat_is_symbolic_link): Likewise.
20042         (__gnat_portable_spawn): Likewise.  Cast last arg of spawnvp to match
20043         declaration
20044         (__gnat_file_time_name): Don't declare struct stat statbuf when
20045         not needed.
20046         (__gnat_is_absolute_path): Add parenthesis around condition of
20047         'if' statement to avoid warning.
20048         (__gnat_plist_init): Specify void as parameter.
20049         (plist_enter): Likewise.
20050         (plist_leave): Likewise.
20051         (remove_handle): Make static. Initialize prev.
20053 2003-10-22  Arnaud Charlet  <charlet@act-europe.fr>
20055         * Makefile.in: Disable build of gnatpsta. PR ada/10110.
20056         * cstreams.c (__gnat_full_name): Minor improvements and clean up
20057         of previous change.
20059 2003-10-22  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
20061         * tracebak.c (MAX): Avoid redefinition warning.
20063         * init.c [sgi] (__gnat_error_handler): Remove i, unused.
20064         Change msg to const char *.
20065         (__gnat_install_handler): Remove ss, unused.
20066         [sun && __SVR4 && !__vxworks] (__gnat_error_handler): Change msg
20067         to const char *.
20068         * cstreams.c (__gnat_full_name): Declare p only when used.
20069         (__gnat_full_name) [sgi] Return buffer.
20071 2003-10-22  Arnaud Charlet  <charlet@act-europe.fr>
20073         * mingw32.h: New file.
20074         * gnat_wrapper.adb: New file.
20076 2003-10-22  Jerome Roussel  <roussel@act-europe.fr>
20078         * g-regpat.ads, g-regpat.adb (Match): new function, to know if a
20079         string match a pre compiled regular expression (the corresponding
20080         version of the function working on a raw regular expression)
20081         Fix typos in various comments
20082         Update copyright notice in spec
20084 2003-10-21  Gary Dismukes  <dismukes@gnat.com>
20086         * exp_ch3.adb:
20087         (Component_Needs_Simple_Initialization): Return False when the type is a
20088         packed bit array. Revise spec comments to document this case.
20090         * exp_prag.adb:
20091         (Expand_Pragma_Import): Set any expression on the imported object to
20092         empty to avoid initializing imported objects (in particular this
20093         covers the case of zero-initialization of bit arrays).
20094         Update copyright notice.
20096 2003-10-21  Ed Schonberg  <schonberg@gnat.com>
20098         * sem_ch12.adb:
20099         (Load_Parent_Of_Generic): If parent is compilation unit, stop search,
20100         a subunit is missing.
20101         (Instantiate_Subprogram_Body): If body of function is missing, set type
20102         of return expression explicitly in dummy body, to prevent cascaded
20103         errors when a subunit is missing.
20104         Fixes PR 5677.
20106         * sem_ch3.adb:
20107         (Access_Subprogram_Declaration): Verify that return type is valid.
20108         Fixes PR 8693.
20110         * sem_elab.adb:
20111         (Check_Elab_Calls): Do not apply elaboration checks if the main unit is
20112         generic.
20113         Fixes PR 12318.
20115         * sem_util.adb:
20116         (Corresponding_Discriminant): If the scope of the discriminant is a
20117         private type without discriminant, use its full view.
20118         Fixes PR 8247.
20120 2003-10-21  Arnaud Charlet  <charlet@act-europe.fr>
20122         * 3psoccon.ads, 3veacodu.adb, 3vexpect.adb, 3vsoccon.ads,
20123         3vsocthi.adb, 3vsocthi.ads, 3vtrasym.adb, 3zsoccon.ads,
20124         3zsocthi.adb, 3zsocthi.ads, 50system.ads, 51system.ads,
20125         55system.ads, 56osinte.adb, 56osinte.ads, 56taprop.adb,
20126         56taspri.ads, 56tpopsp.adb, 57system.ads, 58system.ads,
20127         59system.ads, 5aml-tgt.adb, 5bml-tgt.adb, 5csystem.ads,
20128         5dsystem.ads, 5fosinte.adb, 5gml-tgt.adb, 5hml-tgt.adb,
20129         5isystem.ads, 5lparame.adb, 5msystem.ads, 5psystem.ads,
20130         5sml-tgt.adb, 5sosprim.adb, 5stpopsp.adb, 5tsystem.ads,
20131         5usystem.ads, 5vml-tgt.adb, 5vsymbol.adb, 5vtraent.adb,
20132         5vtraent.ads, 5wml-tgt.adb, 5xparame.ads, 5xsystem.ads,
20133         5xvxwork.ads, 5yparame.ads, 5ytiitho.adb, 5zinit.adb,
20134         5zml-tgt.adb, 5zparame.ads, 5ztaspri.ads, 5ztfsetr.adb,
20135         5zthrini.adb, 5ztiitho.adb, 5ztpopsp.adb, 7stfsetr.adb,
20136         7straces.adb, 7strafor.adb, 7strafor.ads, 7stratas.adb,
20137         a-excach.adb, a-exexda.adb, a-exexpr.adb, a-exextr.adb,
20138         a-exstat.adb, a-strsup.adb, a-strsup.ads, a-stwisu.adb,
20139         a-stwisu.ads, bld.adb, bld.ads, bld-io.adb,
20140         bld-io.ads, clean.adb, clean.ads, ctrl_c.c,
20141         erroutc.adb, erroutc.ads, errutil.adb, errutil.ads,
20142         err_vars.ads, final.c, g-arrspl.adb, g-arrspl.ads,
20143         g-boubuf.adb, g-boubuf.ads, g-boumai.ads, g-bubsor.adb,
20144         g-bubsor.ads, g-comver.adb, g-comver.ads, g-ctrl_c.ads,
20145         g-dynhta.adb, g-dynhta.ads, g-eacodu.adb, g-excact.adb,
20146         g-excact.ads, g-heasor.adb, g-heasor.ads, g-memdum.adb,
20147         g-memdum.ads, gnatclean.adb, gnatsym.adb, g-pehage.adb,
20148         g-pehage.ads, g-perhas.ads, gpr2make.adb, gpr2make.ads,
20149         gprcmd.adb, gprep.adb, gprep.ads, g-semaph.adb,
20150         g-semaph.ads, g-string.adb, g-string.ads, g-strspl.ads,
20151         g-wistsp.ads, i-vthrea.adb, i-vthrea.ads, i-vxwoio.adb,
20152         i-vxwoio.ads, Makefile.generic, Makefile.prolog, Makefile.rtl,
20153         prep.adb, prep.ads, prepcomp.adb, prepcomp.ads,
20154         prj-err.adb, prj-err.ads, s-boarop.ads, s-carsi8.adb,
20155         s-carsi8.ads, s-carun8.adb, s-carun8.ads, s-casi16.adb,
20156         s-casi16.ads, s-casi32.adb, s-casi32.ads, s-casi64.adb,
20157         s-casi64.ads, s-casuti.adb, s-casuti.ads, s-caun16.adb,
20158         s-caun16.ads, s-caun32.adb, s-caun32.ads, s-caun64.adb,
20159         s-caun64.ads, scng.adb, scng.ads, s-exnint.adb,
20160         s-exnllf.adb, s-exnlli.adb, s-expint.adb, s-explli.adb,
20161         s-geveop.adb, s-geveop.ads, s-hibaen.ads, s-htable.adb,
20162         s-htable.ads, sinput-c.adb, sinput-c.ads, s-memcop.ads,
20163         socket.c, s-purexc.ads, s-scaval.adb, s-stopoo.adb,
20164         s-strcom.adb, s-strcom.ads, s-strxdr.adb, s-rident.ads,
20165         s-thread.adb, s-thread.ads, s-tpae65.adb, s-tpae65.ads,
20166         s-tporft.adb, s-traent.adb, s-traent.ads, styleg.adb,
20167         styleg.ads, styleg-c.adb, styleg-c.ads, s-veboop.adb,
20168         s-veboop.ads, s-vector.ads, symbols.adb, symbols.ads,
20169         tb-alvms.c, tb-alvxw.c, tempdir.adb, tempdir.ads,
20170         vms_conv.ads, vms_conv.adb, vms_data.ads,
20171         vxaddr2line.adb: Files added. Merge with ACT tree.
20173         * 4dintnam.ads, 4mintnam.ads, 4uintnam.ads, 52system.ads,
20174         5dosinte.ads, 5etpopse.adb, 5mosinte.ads, 5qosinte.adb,
20175         5qosinte.ads, 5qstache.adb, 5qtaprop.adb, 5qtaspri.ads,
20176         5stpopse.adb, 5uintman.adb, 5uosinte.ads, adafinal.c,
20177         g-enblsp.adb, io-aux.c, scn-nlit.adb, scn-slit.adb,
20178         s-exnflt.ads, s-exngen.adb, s-exngen.ads, s-exnlfl.ads,
20179         s-exnlin.ads, s-exnsfl.ads, s-exnsin.ads, s-exnssi.ads,
20180         s-expflt.ads, s-expgen.adb, s-expgen.ads, s-explfl.ads,
20181         s-explin.ads, s-expllf.ads, s-expsfl.ads, s-expsin.ads,
20182         s-expssi.ads, style.adb: Files removed. Merge with ACT tree.
20184         * 1ic.ads, 31soccon.ads, 31soliop.ads, 3asoccon.ads,
20185         3bsoccon.ads, 3gsoccon.ads, 3hsoccon.ads, 3ssoccon.ads,
20186         3ssoliop.ads, 3wsoccon.ads, 3wsocthi.adb, 3wsocthi.ads,
20187         3wsoliop.ads, 41intnam.ads, 42intnam.ads, 4aintnam.ads,
20188         4cintnam.ads, 4gintnam.ads, 4hexcpol.adb, 4hintnam.ads,
20189         4lintnam.ads, 4nintnam.ads, 4ointnam.ads, 4onumaux.ads,
20190         4pintnam.ads, 4sintnam.ads, 4vcaldel.adb, 4vcalend.adb,
20191         4vintnam.ads, 4wexcpol.adb, 4wintnam.ads, 4zintnam.ads,
20192         51osinte.adb, 51osinte.ads, 52osinte.adb, 52osinte.ads,
20193         53osinte.ads, 54osinte.ads, 5aosinte.adb, 5aosinte.ads,
20194         5asystem.ads, 5ataprop.adb, 5atasinf.ads, 5ataspri.ads,
20195         5atpopsp.adb, 5avxwork.ads, 5bosinte.adb, 5bosinte.ads,
20196         5bsystem.ads, 5cosinte.ads, 5esystem.ads, 5fintman.adb,
20197         5fosinte.ads, 5fsystem.ads, 5ftaprop.adb, 5ftasinf.ads,
20198         5ginterr.adb, 5gintman.adb, 5gmastop.adb, 5gosinte.ads,
20199         5gproinf.ads, 5gsystem.ads, 5gtaprop.adb, 5gtasinf.ads,
20200         5gtpgetc.adb, 5hosinte.adb, 5hosinte.ads, 5hsystem.ads,
20201         5htaprop.adb, 5htaspri.ads, 5htraceb.adb, 5iosinte.adb,
20202         5itaprop.adb, 5itaspri.ads, 5ksystem.ads, 5kvxwork.ads,
20203         5lintman.adb, 5lml-tgt.adb, 5losinte.ads, 5lsystem.ads,
20204         5mvxwork.ads, 5ninmaop.adb, 5nintman.adb, 5nosinte.ads,
20205         5ntaprop.adb, 5ntaspri.ads, 5ointerr.adb, 5omastop.adb,
20206         5oosinte.adb, 5oosinte.ads, 5oosprim.adb, 5oparame.adb,
20207         5osystem.ads, 5otaprop.adb, 5otaspri.ads, 5posinte.ads,
20208         5posprim.adb, 5pvxwork.ads, 5sintman.adb, 5sosinte.adb,
20209         5sosinte.ads, 5ssystem.ads, 5staprop.adb, 5stasinf.ads,
20210         5staspri.ads, 5svxwork.ads, 5tosinte.ads, 5vasthan.adb,
20211         5vinmaop.adb, 5vinterr.adb, 5vintman.adb, 5vintman.ads,
20212         5vmastop.adb, 5vosinte.adb, 5vosinte.ads, 5vosprim.adb,
20213         5vsystem.ads, 5vtaprop.adb, 5vtaspri.ads, 5vtpopde.adb,
20214         5vtpopde.ads, 5wgloloc.adb, 5wintman.adb, 5wmemory.adb,
20215         5wosprim.adb, 5wsystem.ads, 5wtaprop.adb, 5wtaspri.ads,
20216         5ysystem.ads, 5zinterr.adb, 5zintman.adb, 5zosinte.adb,
20217         5zosinte.ads, 5zosprim.adb, 5zsystem.ads, 5ztaprop.adb,
20218         6vcpp.adb, 6vcstrea.adb, 6vinterf.ads, 7sinmaop.adb,
20219         7sintman.adb, 7sosinte.adb, 7sosprim.adb, 7staprop.adb,
20220         7staspri.ads, 7stpopsp.adb, 7straceb.adb, 9drpc.adb,
20221         a-caldel.adb, a-caldel.ads, a-charac.ads, a-colien.ads,
20222         a-comlin.adb, adaint.c, adaint.h, ada-tree.def,
20223         a-diocst.adb, a-diocst.ads, a-direio.adb, a-except.adb,
20224         a-except.ads, a-excpol.adb, a-exctra.adb, a-exctra.ads,
20225         a-filico.adb, a-interr.adb, a-intsig.adb, a-intsig.ads,
20226         ali.adb, ali.ads, ali-util.adb, ali-util.ads,
20227         a-ngcefu.adb, a-ngcoty.adb, a-ngelfu.adb, a-nudira.adb,
20228         a-nudira.ads, a-nuflra.adb, a-nuflra.ads, a-reatim.adb,
20229         a-reatim.ads, a-retide.ads, a-sequio.adb, a-siocst.adb,
20230         a-siocst.ads, a-ssicst.adb, a-ssicst.ads, a-strbou.adb,
20231         a-strbou.ads, a-strfix.adb, a-strmap.adb, a-strsea.ads,
20232         a-strunb.adb, a-strunb.ads, a-ststio.adb, a-stunau.adb,
20233         a-stunau.ads, a-stwibo.adb, a-stwibo.ads, a-stwifi.adb,
20234         a-stwima.adb, a-stwiun.adb, a-stwiun.ads, a-tags.adb,
20235         a-tags.ads, a-tasatt.adb, a-taside.adb, a-teioed.adb,
20236         a-textio.adb, a-textio.ads, a-tienau.adb, a-tifiio.adb,
20237         a-tiflau.adb, a-tiflio.adb, a-tigeau.adb, a-tigeau.ads,
20238         a-tiinau.adb, a-timoau.adb, a-tiocst.adb, a-tiocst.ads,
20239         atree.adb, atree.ads, a-witeio.adb, a-witeio.ads,
20240         a-wtcstr.adb, a-wtcstr.ads, a-wtdeio.adb, a-wtedit.adb,
20241         a-wtenau.adb, a-wtflau.adb, a-wtinau.adb, a-wtmoau.adb,
20242         bcheck.adb, binde.adb, bindgen.adb, bindusg.adb,
20243         checks.adb, checks.ads, cio.c, comperr.adb,
20244         comperr.ads, csets.adb, cstand.adb, cstreams.c,
20245         debug_a.adb, debug_a.ads, debug.adb, decl.c,
20246         einfo.adb, einfo.ads, errout.adb, errout.ads,
20247         eval_fat.adb, eval_fat.ads, exp_aggr.adb, expander.adb,
20248         expander.ads, exp_attr.adb, exp_ch11.adb, exp_ch13.adb,
20249         exp_ch2.adb, exp_ch3.adb, exp_ch3.ads, exp_ch4.adb,
20250         exp_ch5.adb, exp_ch6.adb, exp_ch7.adb, exp_ch7.ads,
20251         exp_ch8.adb, exp_ch9.adb, exp_code.adb, exp_dbug.adb,
20252         exp_dbug.ads, exp_disp.adb, exp_dist.adb, expect.c,
20253         exp_fixd.adb, exp_imgv.adb, exp_intr.adb, exp_pakd.adb,
20254         exp_prag.adb, exp_strm.adb, exp_strm.ads, exp_tss.adb,
20255         exp_tss.ads, exp_util.adb, exp_util.ads, exp_vfpt.adb,
20256         fe.h, fmap.adb, fmap.ads, fname.adb,
20257         fname.ads, fname-uf.adb, fname-uf.ads, freeze.adb,
20258         freeze.ads, frontend.adb, g-awk.adb, g-awk.ads,
20259         g-busora.adb, g-busora.ads, g-busorg.adb, g-busorg.ads,
20260         g-casuti.adb, g-casuti.ads, g-catiio.adb, g-catiio.ads,
20261         g-cgi.adb, g-cgi.ads, g-cgicoo.adb, g-cgicoo.ads,
20262         g-cgideb.adb, g-cgideb.ads, g-comlin.adb, g-comlin.ads,
20263         g-crc32.adb, g-crc32.ads, g-debpoo.adb, g-debpoo.ads,
20264         g-debuti.adb, g-debuti.ads, g-diopit.adb, g-diopit.ads,
20265         g-dirope.adb, g-dirope.ads, g-dyntab.adb, g-dyntab.ads,
20266         g-except.ads, g-exctra.adb, g-exctra.ads, g-expect.adb,
20267         g-expect.ads, g-hesora.adb, g-hesora.ads, g-hesorg.adb,
20268         g-hesorg.ads, g-htable.adb, g-htable.ads, gigi.h,
20269         g-io.adb, g-io.ads, g-io_aux.adb, g-io_aux.ads,
20270         g-locfil.adb, g-locfil.ads, g-md5.adb, g-md5.ads,
20271         gmem.c, gnat1drv.adb, gnatbind.adb, gnatchop.adb,
20272         gnatcmd.adb, gnatfind.adb, gnatkr.adb, gnatlbr.adb,
20273         gnatlink.adb, gnatls.adb, gnatmake.adb, gnatmem.adb,
20274         gnatname.adb, gnatprep.adb, gnatprep.ads, gnatpsta.adb,
20275         gnatxref.adb, g-os_lib.adb, g-os_lib.ads, g-regexp.adb,
20276         g-regexp.ads, g-regist.adb, g-regist.ads, g-regpat.adb,
20277         g-regpat.ads, g-soccon.ads, g-socket.adb, g-socket.ads,
20278         g-socthi.adb, g-socthi.ads, g-soliop.ads, g-souinf.ads,
20279         g-speche.adb, g-speche.ads, g-spipat.adb, g-spipat.ads,
20280         g-spitbo.adb, g-spitbo.ads, g-sptabo.ads, g-sptain.ads,
20281         g-sptavs.ads, g-table.adb, g-table.ads, g-tasloc.adb,
20282         g-tasloc.ads, g-thread.adb, g-thread.ads, g-traceb.adb,
20283         g-traceb.ads, g-trasym.adb, g-trasym.ads, hostparm.ads,
20284         i-c.ads, i-cobol.adb, i-cpp.adb, i-cstrea.ads,
20285         i-cstrin.adb, i-cstrin.ads, impunit.adb, init.c,
20286         inline.adb, interfac.ads, i-pacdec.ads, itypes.adb,
20287         itypes.ads, i-vxwork.ads, lang.opt, lang-specs.h,
20288         layout.adb, lib.adb, lib.ads, lib-list.adb,
20289         lib-load.adb, lib-load.ads, lib-sort.adb, lib-util.adb,
20290         lib-writ.adb, lib-writ.ads, lib-xref.adb, lib-xref.ads,
20291         link.c, live.adb, make.adb, make.ads,
20292         Makefile.adalib, Makefile.in, Make-lang.in, makeusg.adb,
20293         mdll.adb, mdll-fil.adb, mdll-fil.ads, mdll-utl.adb,
20294         mdll-utl.ads, memroot.adb, memroot.ads, memtrack.adb,
20295         misc.c, mkdir.c, mlib.adb, mlib.ads,
20296         mlib-fil.adb, mlib-fil.ads, mlib-prj.adb, mlib-prj.ads,
20297         mlib-tgt.adb, mlib-tgt.ads, mlib-utl.adb, mlib-utl.ads,
20298         namet.adb, namet.ads, namet.h, nlists.ads,
20299         nlists.h, nmake.adt, opt.adb, opt.ads,
20300         osint.adb, osint.ads, osint-b.adb, osint-c.adb,
20301         par.adb, par-ch10.adb, par-ch11.adb, par-ch2.adb,
20302         par-ch3.adb, par-ch4.adb, par-ch5.adb, par-ch6.adb,
20303         par-ch9.adb, par-endh.adb, par-labl.adb, par-load.adb,
20304         par-prag.adb, par-sync.adb, par-tchk.adb, par-util.adb,
20305         prj.adb, prj.ads, prj-attr.adb, prj-attr.ads,
20306         prj-com.adb, prj-com.ads, prj-dect.adb, prj-dect.ads,
20307         prj-env.adb, prj-env.ads, prj-ext.adb, prj-ext.ads,
20308         prj-makr.adb, prj-makr.ads, prj-nmsc.adb, prj-nmsc.ads,
20309         prj-pars.adb, prj-pars.ads, prj-part.adb, prj-part.ads,
20310         prj-pp.adb, prj-pp.ads, prj-proc.adb, prj-proc.ads,
20311         prj-strt.adb, prj-strt.ads, prj-tree.adb, prj-tree.ads,
20312         prj-util.adb, prj-util.ads, raise.c, raise.h,
20313         repinfo.adb, repinfo.h, restrict.adb, restrict.ads,
20314         rident.ads, rtsfind.adb, rtsfind.ads, s-addima.ads,
20315         s-arit64.adb, s-assert.adb, s-assert.ads, s-atacco.adb,
20316         s-atacco.ads, s-auxdec.adb, s-auxdec.ads, s-bitops.adb,
20317         scans.ads, scn.adb, scn.ads, s-crc32.adb,
20318         s-crc32.ads, s-direio.adb, sem.adb, sem.ads,
20319         sem_aggr.adb, sem_attr.adb, sem_attr.ads, sem_case.adb,
20320         sem_case.ads, sem_cat.adb, sem_cat.ads, sem_ch10.adb,
20321         sem_ch11.adb, sem_ch12.adb, sem_ch12.ads, sem_ch13.adb,
20322         sem_ch13.ads, sem_ch3.adb, sem_ch3.ads, sem_ch4.adb,
20323         sem_ch5.adb, sem_ch5.ads, sem_ch6.adb, sem_ch6.ads,
20324         sem_ch7.adb, sem_ch7.ads, sem_ch8.adb, sem_ch8.ads,
20325         sem_ch9.adb, sem_disp.adb, sem_disp.ads, sem_dist.adb,
20326         sem_elab.adb, sem_eval.adb, sem_eval.ads, sem_intr.adb,
20327         sem_maps.adb, sem_mech.adb, sem_prag.adb, sem_prag.ads,
20328         sem_res.adb, sem_res.ads, sem_type.adb, sem_type.ads,
20329         sem_util.adb, sem_util.ads, sem_warn.adb, s-errrep.adb,
20330         s-errrep.ads, s-exctab.adb, s-exctab.ads, s-exnint.ads,
20331         s-exnllf.ads, s-exnlli.ads, s-expint.ads, s-explli.ads,
20332         s-expuns.ads, s-fatflt.ads, s-fatgen.adb, s-fatgen.ads,
20333         s-fatlfl.ads, s-fatllf.ads, s-fatsfl.ads, s-fileio.adb,
20334         s-fileio.ads, s-finimp.adb, s-finimp.ads, s-finroo.adb,
20335         s-finroo.ads, sfn_scan.adb, s-gloloc.adb, s-gloloc.ads,
20336         s-imgdec.adb, s-imgenu.adb, s-imgrea.adb, s-imgwch.adb,
20337         sinfo.adb, sinfo.ads, s-inmaop.ads, sinput.adb,
20338         sinput.ads, sinput-d.adb, sinput-l.adb, sinput-l.ads,
20339         sinput-p.adb, sinput-p.ads, s-interr.adb, s-interr.ads,
20340         s-intman.ads, s-maccod.ads, s-mastop.adb, s-mastop.ads,
20341         s-memory.adb, s-memory.ads, snames.adb, snames.ads,
20342         snames.h, s-osprim.ads, s-parame.ads, s-parint.ads,
20343         s-pooloc.adb, s-pooloc.ads, s-poosiz.adb, sprint.adb,
20344         s-proinf.ads, s-scaval.ads, s-secsta.adb, s-secsta.ads,
20345         s-sequio.adb, s-shasto.adb, s-shasto.ads, s-soflin.ads,
20346         s-stache.adb, s-stache.ads, s-stalib.adb, s-stalib.ads,
20347         s-stoele.ads, s-stopoo.ads, s-stratt.adb, s-stratt.ads,
20348         s-strops.adb, s-strops.ads, s-taasde.adb, s-taasde.ads,
20349         s-tadeca.adb, s-tadeca.ads, s-tadert.adb, s-tadert.ads,
20350         s-taenca.adb, s-taenca.ads, s-taprob.adb, s-taprob.ads,
20351         s-taprop.ads, s-tarest.adb, s-tarest.ads, s-tasdeb.adb,
20352         s-tasdeb.ads, s-tasinf.adb, s-tasinf.ads, s-tasini.adb,
20353         s-tasini.ads, s-taskin.adb, s-taskin.ads, s-tasque.adb,
20354         s-tasque.ads, s-tasren.adb, s-tasren.ads, s-tasres.ads,
20355         s-tassta.adb, s-tassta.ads, s-tasuti.adb, s-tasuti.ads,
20356         s-tataat.adb, s-tataat.ads, s-tpinop.adb, s-tpinop.ads,
20357         s-tpoben.adb, s-tpoben.ads, s-tpobop.adb, s-tpobop.ads,
20358         s-tposen.adb, s-tposen.ads, s-traceb.adb, s-traceb.ads,
20359         stringt.adb, stringt.ads, stringt.h, style.ads,
20360         stylesw.adb, stylesw.ads, s-unstyp.ads, s-vaflop.ads,
20361         s-valrea.adb, s-valuti.adb, s-vercon.adb, s-vmexta.adb,
20362         s-wchcnv.ads, s-wchcon.ads, s-widcha.adb, switch.adb,
20363         switch.ads, switch-b.adb, switch-c.adb, switch-m.adb,
20364         s-wwdcha.adb, s-wwdwch.adb, sysdep.c, system.ads,
20365         table.adb, table.ads, targparm.adb, targparm.ads,
20366         targtyps.c, tbuild.adb, tbuild.ads, tracebak.c,
20367         trans.c, tree_io.adb, treepr.adb, treeprs.adt,
20368         ttypes.ads, types.ads, types.h, uintp.adb,
20369         uintp.ads, uintp.h, uname.adb, urealp.adb,
20370         urealp.ads, urealp.h, usage.adb, utils2.c,
20371         utils.c, validsw.adb, validsw.ads, widechar.adb,
20372         xeinfo.adb, xnmake.adb, xref_lib.adb, xref_lib.ads,
20373         xr_tabls.adb, xr_tabls.ads, xtreeprs.adb, xsnames.adb,
20374         einfo.h, sinfo.h, treeprs.ads, nmake.ads, nmake.adb,
20375         gnatvsn.ads: Merge with ACT tree.
20377         * gnatvsn.adb: Rewritten in a simpler and more efficient way.
20379 2003-10-20  Mark Mitchell  <mark@codesourcery.com>
20381         * Make-lang.in (gnat_ug_unx.info): Add dependency on stmp-docobjdir.
20382         (gnat_ug_vmx.info): Likewise.
20383         (gnat_ug_vxw.info): Likewise.
20384         (gnat_ug_wnt.info): Likewise.
20385         (gnat_rm.info): Likewise.
20386         (gnat-style.info): Likewise.
20388         * Make-lang.in (ada.install-info): Remove target.
20389         (info): New target.
20390         (install-info): Likewise.
20391         (gnat_ug_unx.info): Simplify rule.
20392         (gnat_ug_vmx.info): Likewise.
20393         (gnat_ug_vxw.info): Likewise.
20394         (gnat_ug_wnt.info): Likewise.
20395         (gnat_rm.info): Likewise.
20396         (gnat-style.info): Likewise.
20398 2003-10-14  Nathanael Nerode  <neroden@gcc.gnu.org>
20400         * Make-lang.in: Replace uses of $(target_alias) with
20401         $(target_noncanonical).
20402         * ada/Makefile.in: Remove unused mention of $(target_alias).
20404 2003-10-06  Mark Mitchell  <mark@codesourcery.com>
20406         * Make-lang.in (ada.info): Replace with ...
20407         (info): ... this.
20408         (ada.dvi): Replace with ...
20409         (dvi): ... this.
20411 2003-09-29  Zack Weinberg  <zack@codesourcery.com>
20413         * trans.c (gigi): Use REAL_ARITHMETIC, not REAL_VALUE_ATOF, to
20414         initialize dconstp5 and dconstmp5.
20416 2003-09-28  Richard Henderson  <rth@redhat.com>
20418         * trans.c (tree_transform): Update call to expand_asm_operands.
20420 2003-09-21  Richard Henderson  <rth@redhat.com>
20422         * trans.c, utils.c: Revert.
20424 2003-09-21  Richard Henderson  <rth@redhat.com>
20426         * trans.c, utils.c: Update for DECL_SOURCE_LOCATION rename and
20427         change to const.
20429 2003-09-04  Michael Matz  <matz@suse.de>
20431         * misc.c: Include "target.h".
20432         * Make-lang.in (misc.o): Add dependency on target.h.
20434 2003-09-03  DJ Delorie  <dj@redhat.com>
20436         * misc.c (default_pass_by_ref): Convert to calls.return_in_memory
20437         hook.
20439 2003-08-30  Zack Weinberg  <zack@codesourcery.com>
20441         * Makefile.in: Update substitutions to match changes to
20442         configure.  Use include directives instead of @-insertions
20443         to read in host and target fragments.  Add a rule to
20444         regenerate ada/Makefile.
20446 2003-07-18  Neil Booth  <neil@daikokuya.co.uk>
20448         * lang-options.h: Remove.
20449         * lang.opt: Add help text.
20451 2003-07-07  Nathan Sidwell  <nathan@codesourcery.com>
20453         * trans.c (build_unit_elab, set_lineno): Adjust emit_line_note
20454         calls.
20456 2003-07-06  Neil Booth  <neil@daikokuya.co.uk>
20458         * misc.c (gnat_handle_option): Don't handle filenames.
20460 2003-07-04  H.J. Lu <hongjiu.lu@intel.com>
20462         * Make-lang.in: Replace PWD with PWD_COMMAND.
20463         * Makefile.adalib: Likewise.
20464         * Makefile.in: Likewise.
20466 2003-07-04  Matt Kraai  <kraai@alumni.cmu.edu>
20468         * misc.c (gnat_argv): Revert last change.
20469         (gnat_handle_option, gnat_init_options): Copy arguments.
20471 2003-07-03  Neil Booth  <neil@daikokuya.co.uk>
20473         * misc.c (gnat_argv): Make const.
20475 2003-07-02  Neil Booth  <neil@daikokuya.co.uk>
20477         * misc.c (save_argc, save_argv): Keep non-static!
20479 2003-07-02  Neil Booth  <neil@daikokuya.co.uk>
20481         * misc.c (save_argc, save_argv): Make static.
20482         (gnat_init_options): New prototype.
20483         (gnat_init_options): Update.
20485 2003-07-01  Matt Kraai  <kraai@alumni.cmu.edu>
20487         * gnat_ug.texi: Remove unlikely characters from @vars.
20488         * gnat_ug_vms.texi: Regenerate.
20490 2003-06-27  Nathan Sidwell  <nathan@codesourcery.com>
20492         * misc.c (record_code_position): Adjust emit_note call.
20494 2003-06-26  Neil Booth  <neil@daikokuya.co.uk>
20496         * misc.c (gnat_handle_option): Don't check for missing arguments.
20498 2003-06-20  Nathan Sidwell  <nathan@codesourcery.com>
20500         * utils.c (end_subprog_body): Adjust expand_function_end call.
20502 2003-06-16  Matt Kraai  <kraai@alumni.cmu.edu>
20504         * bindgen.adb (Gen_Main_Ada, Gen_Main_C): Do not test
20505         Bind_Main_Program.
20507 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
20509         * lang.opt: Declare Ada.
20510         * misc.c (gnat_init_options): Update.
20512 2003-06-14  Nathan Sidwell  <nathan@codesourcery.com>
20514         * utils.c (begin_subprog_body): Adjust init_function_start call.
20516 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
20518         * Make-lang.in: Update to use options.c and options.h.
20519         * misc.c: Include options.h not aoptions.h.
20520         (gnat_handle_option): Abort on unrecognized switch.
20521         (gnat_init_options): Request Ada switches.
20523 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
20525         * lang.opt: Add -Wall.
20526         * misc.c (gnat_handle_option): Handle it.
20528 2003-06-12  Neil Booth  <neil@daikokuya.co.uk>
20530         * misc.c (gnat_handle_option): Fix warnings.
20532 2003-06-11  Matt Kraai  <kraai@alumni.cmu.edu>
20534         * Make-lang.in (gnatbind): Remove $(LIBIBERTY).
20536 2003-06-11  Neil Booth  <neil@daikokuya.co.uk>
20538         * Make-lang.in: Update to handle command-line options.
20539         * lang.opt: New file.
20540         * misc.c: Include aoptions.h.
20541         (cl_options_count, cl_options): Remove.
20542         (gnat_handle_option): New.
20543         (gnat_decode_option): Remove.
20544         (LANG_HOOKS_DECODE_OPTION): Remove.
20545         (LANG_HOOKS_HANDLE_OPTION): Override.
20547 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
20549         * init.c, misc.c, trans.c, utils.c: Remove dead code.
20551 2003-06-09  Nathanael Nerode  <neroden@gcc.gnu.org>
20553         * Makefile.in: Replace "host_canonical" with "host" for autoconf
20554         substitution.
20556 2003-06-08  Neil Booth  <neil@daikokuya.co.uk>
20558         * Make-lang.in: Update.
20559         * misc.c: Include opts.h. Define cl_options_count and cl_options.
20561 2003-06-07  Neil Booth  <neil@daikokuya.co.uk>
20563         * misc.c (gnat_init_options): Update.
20565 2003-06-05  Matt Kraai  <kraai@alumni.cmu.edu>
20567         * Make-lang.in (ada/b_gnatb.o-warn): Remove.
20568         * bindgen.adb (Gen_Main_C): Mark ensure_reference with
20569         __attribute__ ((__unused__)).
20571 2003-06-05  Jan Hubicka  <jh@suse.cz>
20573         * Make-lang.in:  Add support for stageprofile and stagefeedback
20575 2003-06-05  Matt Kraai  <kraai@alumni.cmu.edu>
20577         * bindgen.adb (Gen_Adafinal_C, Gen_Adainit_C, Gen_Elab_Defs_C)
20578         (Gen_Main_C, Gen_Output_File_C): Generate ISO C.
20580 2003-06-04  Matt Kraai  <kraai@alumni.cmu.edu>
20582         * gnat_ug.texi (The GNAT Run-Time Library Builder gnatlbr):
20583         Remove non-VMS directive.
20584         (Switches for gnatlbr, Optimization Levels): Remove non-VMS
20585         alternatives.
20586         (Examples of gnatls Usage): Remove VMS alternative.
20588 2003-06-04  Olivier Hainque  <hainque@act-europe.fr>
20590         PR ada/9953:
20591         * 5hsystem.ads: Remove pragma Linker_Option for pthreads library,
20592         and turn ZCX_By_Default back to False since the underlying support
20593         is not quite there yet.
20595 2003-06-01  Andreas Jaeger  <aj@suse.de>
20597         * utils.c (finish_record_type): Remove usages of ROUND_TYPE_SIZE
20598         and ROUND_TYPE_SIZE_UNIT.
20600 2003-05-22   Geert Bosch <bosch@gnat.com>
20602         * gnat_rm.texi : Remove reference to Ada Core Technologies.
20604 2003-05-03  Nathan Sidwell  <nathan@codesourcery.com>
20606         * trans.c (tree_transform): Use location_t and input_location
20607         directly.
20608         (build_unit_elab): Likewise.
20609         * utils.c (create_label_decl): Likewise.
20611 2003-05-01  Nathan Sidwell  <nathan@codesourcery.com>
20613         * trans.c (tree_transform, build_unit_elab,
20614         set_lineno): Rename lineno to input_line.
20615         * utils.c (pushdecl, create_label_decl, begin_subprog_body,
20616         end_subprog_body): Likewise.
20617         * utils2.c (build_call_raise): Likewise.
20619 2003-05-01  Laurent Guerby <guerby@acm.org>
20621         PR ada/10546
20622         * 5iosinte.ads: Increase pthread_cond_t size to match recent
20623         LinuxThread and NPTL version, merge from ACT.
20625 2003-04-28  Zack Weinberg  <zack@codesourcery.com>
20627         * utils.c (convert): No need to clear TREE_CST_RTL.
20629 2003-04-23   Geert Bosch <bosch@gnat.com>
20631         * 1aexcept.adb, 1aexcept.ads, 1ic.ads, 1ssecsta.adb,
20632         1ssecsta.ads, 31soccon.ads, 31soliop.ads, 3asoccon.ads,
20633         3bsoccon.ads, 3gsoccon.ads, 3hsoccon.ads, 3ssoccon.ads,
20634         3ssoliop.ads, 3wsoccon.ads, 3wsocthi.adb, 3wsocthi.ads,
20635         3wsoliop.ads, 41intnam.ads, 42intnam.ads, 4aintnam.ads,
20636         4cintnam.ads, 4dintnam.ads, 4gintnam.ads, 4hexcpol.adb,
20637         4hintnam.ads, 4lintnam.ads, 4mintnam.ads, 4nintnam.ads,
20638         4ointnam.ads, 4onumaux.ads, 4pintnam.ads, 4rintnam.ads,
20639         4sintnam.ads, 4uintnam.ads, 4vcaldel.adb, 4vcalend.adb,
20640         4vcalend.ads, 4vintnam.ads, 4wcalend.adb, 4wexcpol.adb,
20641         4wintnam.ads, 4zintnam.ads, 4znumaux.ads, 4zsytaco.adb,
20642         4zsytaco.ads, 51osinte.adb, 51osinte.ads, 52osinte.adb,
20643         52osinte.ads, 52system.ads, 53osinte.ads, 54osinte.ads,
20644         5amastop.adb, 5aosinte.adb, 5aosinte.ads, 5asystem.ads,
20645         5ataprop.adb, 5atasinf.ads, 5ataspri.ads, 5atpopsp.adb,
20646         5avxwork.ads, 5bosinte.adb, 5bosinte.ads, 5bsystem.ads,
20647         5cosinte.ads, 5dosinte.ads, 5esystem.ads, 5etpopse.adb,
20648         5fintman.adb, 5fosinte.ads, 5fsystem.ads, 5ftaprop.adb,
20649         5ftasinf.ads, 5ginterr.adb, 5gintman.adb, 5gmastop.adb,
20650         5gosinte.ads, 5gproinf.adb, 5gproinf.ads, 5gsystem.ads,
20651         5gtaprop.adb, 5gtasinf.adb, 5gtasinf.ads, 5gtpgetc.adb,
20652         5hosinte.adb, 5hosinte.ads, 5hparame.ads, 5hsystem.ads,
20653         5htaprop.adb, 5htaspri.ads, 5htraceb.adb, 5iosinte.adb,
20654         5iosinte.ads, 5itaprop.adb, 5itaspri.ads, 5ksystem.ads,
20655         5kvxwork.ads, 5lintman.adb, 5lml-tgt.adb, 5losinte.ads,
20656         5lsystem.ads, 5mosinte.ads, 5mvxwork.ads, 5ninmaop.adb,
20657         5nintman.adb, 5nosinte.ads, 5ntaprop.adb, 5ntaspri.ads,
20658         5ointerr.adb, 5omastop.adb, 5oosinte.adb, 5oosinte.ads,
20659         5oosprim.adb, 5oparame.adb, 5osystem.ads, 5otaprop.adb,
20660         5otaspri.ads, 5posinte.ads, 5posprim.adb, 5pvxwork.ads,
20661         5qosinte.adb, 5qosinte.ads, 5qstache.adb, 5qtaprop.adb,
20662         5qtaspri.ads, 5rosinte.adb, 5rosinte.ads, 5rparame.adb,
20663         5sintman.adb, 5sosinte.adb, 5sosinte.ads, 5sparame.adb,
20664         5ssystem.ads, 5staprop.adb, 5stasinf.adb, 5stasinf.ads,
20665         5staspri.ads, 5stpopse.adb, 5svxwork.ads, 5tosinte.ads,
20666         5uintman.adb, 5uosinte.ads, 5vasthan.adb, 5vinmaop.adb,
20667         5vinterr.adb, 5vintman.adb, 5vintman.ads, 5vmastop.adb,
20668         5vosinte.adb, 5vosinte.ads, 5vosprim.adb, 5vosprim.ads,
20669         5vparame.ads, 5vsystem.ads, 5vtaprop.adb, 5vtaspri.ads,
20670         5vtpopde.adb, 5vtpopde.ads, 5vvaflop.adb, 5wgloloc.adb,
20671         5wintman.adb, 5wmemory.adb, 5wosinte.ads, 5wosprim.adb,
20672         5wsystem.ads, 5wtaprop.adb, 5wtaspri.ads, 5ysystem.ads,
20673         5zinterr.adb, 5zintman.adb, 5zosinte.adb, 5zosinte.ads,
20674         5zosprim.adb, 5zsystem.ads, 5ztaprop.adb, 6vcpp.adb,
20675         6vcstrea.adb, 6vinterf.ads, 7sinmaop.adb, 7sintman.adb,
20676         7sosinte.adb, 7sosprim.adb, 7staprop.adb, 7staspri.ads,
20677         7stpopsp.adb, 7straceb.adb, 86numaux.adb, 86numaux.ads,
20678         9drpc.adb, a-astaco.adb, a-astaco.ads, a-caldel.adb,
20679         a-caldel.ads, a-calend.adb, a-calend.ads, a-chahan.adb,
20680         a-chahan.ads, a-charac.ads, a-chlat1.ads, a-chlat9.ads,
20681         a-colien.adb, a-colien.ads, a-colire.adb, a-colire.ads,
20682         a-comlin.adb, a-comlin.ads, a-cwila1.ads, a-cwila9.ads,
20683         a-decima.adb, a-decima.ads, a-diocst.adb, a-diocst.ads,
20684         a-direio.adb, a-direio.ads, a-dynpri.adb, a-dynpri.ads,
20685         a-einuoc.adb, a-einuoc.ads, a-except.adb, a-except.ads,
20686         a-excpol.adb, a-exctra.adb, a-exctra.ads, a-filico.adb,
20687         a-filico.ads, a-finali.adb, a-finali.ads, a-flteio.ads,
20688         a-fwteio.ads, a-inteio.ads, a-interr.adb, a-interr.ads,
20689         a-intnam.ads, a-intsig.adb, a-intsig.ads, a-ioexce.ads,
20690         a-iwteio.ads, a-lfteio.ads, a-lfwtio.ads, a-liteio.ads,
20691         a-liwtio.ads, a-llftio.ads, a-llfwti.ads, a-llitio.ads,
20692         a-lliwti.ads, a-ncelfu.ads, a-ngcefu.adb, a-ngcefu.ads,
20693         a-ngcoty.adb, a-ngcoty.ads, a-ngelfu.adb, a-ngelfu.ads,
20694         a-nlcefu.ads, a-nlcoty.ads, a-nlelfu.ads, a-nllcef.ads,
20695         a-nllcty.ads, a-nllefu.ads, a-nscefu.ads, a-nscoty.ads,
20696         a-nselfu.ads, a-nucoty.ads, a-nudira.adb, a-nudira.ads,
20697         a-nuelfu.ads, a-nuflra.adb, a-nuflra.ads, a-numaux.ads,
20698         a-numeri.ads, a-reatim.adb, a-reatim.ads, a-retide.adb,
20699         a-retide.ads, a-sequio.adb, a-sequio.ads, a-sfteio.ads,
20700         a-sfwtio.ads, a-siocst.adb, a-siocst.ads, a-siteio.ads,
20701         a-siwtio.ads, a-ssicst.adb, a-ssicst.ads, a-ssitio.ads,
20702         a-ssiwti.ads, a-stmaco.ads, a-storio.adb, a-storio.ads,
20703         a-strbou.adb, a-strbou.ads, a-stream.ads, a-strfix.adb,
20704         a-strfix.ads, a-string.ads, a-strmap.adb, a-strmap.ads,
20705         a-strsea.adb, a-strsea.ads, a-strunb.adb, a-strunb.ads,
20706         a-ststio.adb, a-ststio.ads, a-stunau.adb, a-stunau.ads,
20707         a-stwibo.adb, a-stwibo.ads, a-stwifi.adb, a-stwifi.ads,
20708         a-stwima.adb, a-stwima.ads, a-stwise.adb, a-stwise.ads,
20709         a-stwiun.adb, a-stwiun.ads, a-suteio.adb, a-suteio.ads,
20710         a-swmwco.ads, a-swuwti.adb, a-swuwti.ads, a-sytaco.adb,
20711         a-sytaco.ads, a-tags.adb, a-tags.ads, a-tasatt.adb,
20712         a-tasatt.ads, a-taside.adb, a-taside.ads, a-teioed.adb,
20713         a-teioed.ads, a-textio.adb, a-textio.ads, a-ticoau.adb,
20714         a-ticoau.ads, a-ticoio.adb, a-ticoio.ads, a-tideau.adb,
20715         a-tideau.ads, a-tideio.adb, a-tideio.ads, a-tienau.adb,
20716         a-tienau.ads, a-tienio.adb, a-tienio.ads, a-tifiio.adb,
20717         a-tifiio.ads, a-tiflau.adb, a-tiflau.ads, a-tiflio.adb,
20718         a-tiflio.ads, a-tigeau.adb, a-tigeau.ads, a-tiinau.adb,
20719         a-tiinau.ads, a-tiinio.adb, a-tiinio.ads, a-timoau.adb,
20720         a-timoau.ads, a-timoio.adb, a-timoio.ads, a-tiocst.adb,
20721         a-tiocst.ads, a-titest.adb, a-titest.ads, a-unccon.ads,
20722         a-uncdea.ads, a-witeio.adb, a-witeio.ads, a-wtcoau.adb,
20723         a-wtcoau.ads, a-wtcoio.adb, a-wtcoio.ads, a-wtcstr.adb,
20724         a-wtcstr.ads, a-wtdeau.adb, a-wtdeau.ads, a-wtdeio.adb,
20725         a-wtdeio.ads, a-wtedit.adb, a-wtedit.ads, a-wtenau.adb,
20726         a-wtenau.ads, a-wtenio.adb, a-wtenio.ads, a-wtfiio.adb,
20727         a-wtfiio.ads, a-wtflau.adb, a-wtflau.ads, a-wtflio.adb,
20728         a-wtflio.ads, a-wtgeau.adb, a-wtgeau.ads, a-wtinau.adb,
20729         a-wtinau.ads, a-wtinio.adb, a-wtinio.ads, a-wtmoau.adb,
20730         a-wtmoau.ads, a-wtmoio.adb, a-wtmoio.ads, a-wttest.adb,
20731         a-wttest.ads, ada-tree.h, ada.ads, ada.h,
20732         adadecode.c, adadecode.h, ali-util.adb, ali-util.ads,
20733         ali.adb, ali.ads, alloc.ads, argv.c,
20734         atree.adb, atree.ads, atree.h, aux-io.c,
20735         back_end.adb, back_end.ads, bcheck.adb, bcheck.ads,
20736         binde.adb, binde.ads, binderr.adb, binderr.ads,
20737         bindgen.adb, bindgen.ads, bindusg.adb, bindusg.ads,
20738         butil.adb, butil.ads, cal.c, calendar.ads,
20739         casing.adb, casing.ads, ceinfo.adb, checks.adb,
20740         checks.ads, cio.c, comperr.adb, comperr.ads,
20741         config-lang.in, csets.adb, csets.ads, csinfo.adb,
20742         cstand.adb, cstand.ads, cuintp.c, debug.adb,
20743         debug.ads, debug_a.adb, debug_a.ads, dec-io.adb,
20744         dec-io.ads, dec.ads, deftarg.c, directio.ads,
20745         einfo.adb, einfo.ads, elists.adb, elists.ads,
20746         elists.h, errno.c, errout.adb, errout.ads,
20747         eval_fat.adb, eval_fat.ads, exit.c, exp_aggr.adb,
20748         exp_aggr.ads, exp_attr.adb, exp_attr.ads, exp_ch10.ads,
20749         exp_ch11.adb, exp_ch11.ads, exp_ch12.adb, exp_ch12.ads,
20750         exp_ch13.adb, exp_ch13.ads, exp_ch2.adb, exp_ch2.ads,
20751         exp_ch3.adb, exp_ch3.ads, exp_ch4.adb, exp_ch4.ads,
20752         exp_ch5.adb, exp_ch5.ads, exp_ch6.adb, exp_ch6.ads,
20753         exp_ch7.adb, exp_ch7.ads, exp_ch8.adb, exp_ch8.ads,
20754         exp_ch9.adb, exp_ch9.ads, exp_code.adb, exp_code.ads,
20755         exp_dbug.adb, exp_dbug.ads, exp_disp.adb, exp_disp.ads,
20756         exp_dist.adb, exp_dist.ads, exp_fixd.adb, exp_fixd.ads,
20757         exp_imgv.adb, exp_imgv.ads, exp_intr.adb, exp_intr.ads,
20758         exp_pakd.adb, exp_pakd.ads, exp_prag.adb, exp_prag.ads,
20759         exp_smem.adb, exp_smem.ads, exp_strm.adb, exp_strm.ads,
20760         exp_tss.adb, exp_tss.ads, exp_util.adb, exp_util.ads,
20761         exp_vfpt.adb, exp_vfpt.ads, expander.adb, expander.ads,
20762         fmap.adb, fmap.ads, fname-sf.adb, fname-sf.ads,
20763         fname-uf.adb, fname-uf.ads, fname.adb, fname.ads,
20764         freeze.adb, freeze.ads, frontend.adb, frontend.ads,
20765         g-awk.adb, g-awk.ads, g-busora.adb, g-busora.ads,
20766         g-busorg.adb, g-busorg.ads, g-calend.adb, g-calend.ads,
20767         g-casuti.adb, g-casuti.ads, g-catiio.adb, g-catiio.ads,
20768         g-cgi.adb, g-cgi.ads, g-cgicoo.adb, g-cgicoo.ads,
20769         g-cgideb.adb, g-cgideb.ads, g-comlin.adb, g-comlin.ads,
20770         g-crc32.adb, g-crc32.ads, g-curexc.ads, g-debpoo.adb,
20771         g-debpoo.ads, g-debuti.adb, g-debuti.ads, g-diopit.adb,
20772         g-diopit.ads, g-dirope.adb, g-dirope.ads, g-dyntab.adb,
20773         g-dyntab.ads, g-enblsp.adb, g-except.ads, g-exctra.adb,
20774         g-exctra.ads, g-expect.adb, g-expect.ads, g-flocon.ads,
20775         g-hesora.adb, g-hesora.ads, g-hesorg.adb, g-hesorg.ads,
20776         g-htable.adb, g-htable.ads, g-io.adb, g-io.ads,
20777         g-io_aux.adb, g-io_aux.ads, g-locfil.ads, g-md5.adb,
20778         g-md5.ads, g-moreex.adb, g-moreex.ads, g-os_lib.adb,
20779         g-os_lib.ads, g-regexp.adb, g-regexp.ads, g-regist.ads,
20780         g-regpat.adb, g-regpat.ads, g-soccon.ads, g-socket.adb,
20781         g-socket.ads, g-socthi.adb, g-socthi.ads, g-soliop.ads,
20782         g-souinf.ads, g-speche.adb, g-speche.ads, g-spipat.adb,
20783         g-spipat.ads, g-spitbo.adb, g-spitbo.ads, g-sptabo.ads,
20784         g-sptain.ads, g-sptavs.ads, g-table.adb, g-table.ads,
20785         g-tasloc.adb, g-tasloc.ads, g-thread.adb, g-thread.ads,
20786         g-traceb.adb, g-traceb.ads, g-trasym.adb, g-trasym.ads,
20787         get_targ.adb, get_targ.ads, gnat-style.texi, gnat.ads,
20788         gnat1drv.adb, gnat1drv.ads, gnatbind.adb, gnatbind.ads,
20789         gnatbl.c, gnatchop.adb, gnatcmd.adb, gnatcmd.ads,
20790         gnatdll.adb, gnatfind.adb, gnatkr.adb, gnatkr.ads,
20791         gnatlbr.adb, gnatlink.adb, gnatlink.ads, gnatls.adb,
20792         gnatls.ads, gnatmake.adb, gnatmake.ads, gnatmem.adb,
20793         gnatname.adb, gnatname.ads, gnatprep.adb, gnatprep.ads,
20794         gnatpsta.adb, gnatvsn.adb, gnatvsn.ads, gnatxref.adb,
20795         hlo.adb, hlo.ads, hostparm.ads, i-c.adb,
20796         i-c.ads, i-cexten.ads, i-cobol.adb, i-cobol.ads,
20797         i-cpoint.adb, i-cpoint.ads, i-cpp.adb, i-cpp.ads,
20798         i-cstrea.adb, i-cstrea.ads, i-cstrin.adb, i-cstrin.ads,
20799         i-fortra.adb, i-fortra.ads, i-os2err.ads, i-os2lib.adb,
20800         i-os2lib.ads, i-os2syn.ads, i-os2thr.ads, i-pacdec.adb,
20801         i-pacdec.ads, i-vxwork.ads, impunit.adb, impunit.ads,
20802         inline.adb, inline.ads, interfac.ads, ioexcept.ads,
20803         itypes.adb, itypes.ads, krunch.adb, krunch.ads,
20804         layout.adb, layout.ads, lib-list.adb, lib-load.adb,
20805         lib-load.ads, lib-sort.adb, lib-util.adb, lib-util.ads,
20806         lib-writ.adb, lib-writ.ads, lib-xref.adb, lib-xref.ads,
20807         lib.adb, lib.ads, live.adb, live.ads,
20808         machcode.ads, make.adb, make.ads, makeusg.adb,
20809         makeusg.ads, math_lib.adb, mdll-fil.adb, mdll-fil.ads,
20810         mdll-utl.adb, mdll-utl.ads, mdll.adb, mdll.ads,
20811         memroot.adb, memroot.ads, memtrack.adb, mlib-fil.adb,
20812         mlib-fil.ads, mlib-prj.adb, mlib-prj.ads, mlib-tgt.adb,
20813         mlib-tgt.ads, mlib-utl.adb, mlib-utl.ads, mlib.adb,
20814         mlib.ads, namet.adb, namet.ads, nlists.adb,
20815         nlists.ads, opt.adb, opt.ads, osint-b.adb,
20816         osint-b.ads, osint-c.adb, osint-c.ads, osint-l.adb,
20817         osint-l.ads, osint-m.adb, osint-m.ads, osint.adb,
20818         osint.ads, output.adb, output.ads, par-ch10.adb,
20819         par-ch11.adb, par-ch12.adb, par-ch13.adb, par-ch2.adb,
20820         par-ch3.adb, par-ch4.adb, par-ch5.adb, par-ch6.adb,
20821         par-ch7.adb, par-ch8.adb, par-ch9.adb, par-endh.adb,
20822         par-labl.adb, par-load.adb, par-prag.adb, par-sync.adb,
20823         par-tchk.adb, par-util.adb, par.adb, par.ads,
20824         prj-attr.adb, prj-attr.ads, prj-com.adb, prj-com.ads,
20825         prj-dect.adb, prj-dect.ads, prj-env.adb, prj-env.ads,
20826         prj-ext.adb, prj-ext.ads, prj-makr.adb, prj-makr.ads,
20827         prj-nmsc.adb, prj-nmsc.ads, prj-pars.adb, prj-pars.ads,
20828         prj-part.adb, prj-part.ads, prj-pp.adb, prj-pp.ads,
20829         prj-proc.adb, prj-proc.ads, prj-strt.adb, prj-strt.ads,
20830         prj-tree.adb, prj-tree.ads, prj-util.adb, prj-util.ads,
20831         prj.adb, prj.ads, repinfo.adb, repinfo.ads,
20832         restrict.adb, restrict.ads, rident.ads, rtsfind.adb,
20833         rtsfind.ads, s-addima.adb, s-addima.ads, s-arit64.adb,
20834         s-arit64.ads, s-assert.adb, s-assert.ads, s-asthan.adb,
20835         s-asthan.ads, s-atacco.adb, s-atacco.ads, s-auxdec.adb,
20836         s-auxdec.ads, s-bitops.adb, s-bitops.ads, s-chepoo.ads,
20837         s-crc32.adb, s-crc32.ads, s-direio.adb, s-direio.ads,
20838         s-errrep.adb, s-errrep.ads, s-except.ads, s-exctab.adb,
20839         s-exctab.ads, s-exnflt.ads, s-exngen.adb, s-exngen.ads,
20840         s-exnint.ads, s-exnlfl.ads, s-exnlin.ads, s-exnllf.ads,
20841         s-exnlli.ads, s-exnsfl.ads, s-exnsin.ads, s-exnssi.ads,
20842         s-expflt.ads, s-expgen.adb, s-expgen.ads, s-expint.ads,
20843         s-explfl.ads, s-explin.ads, s-expllf.ads, s-explli.ads,
20844         s-expllu.adb, s-expllu.ads, s-expmod.adb, s-expmod.ads,
20845         s-expsfl.ads, s-expsin.ads, s-expssi.ads, s-expuns.adb,
20846         s-expuns.ads, s-fatflt.ads, s-fatgen.adb, s-fatgen.ads,
20847         s-fatlfl.ads, s-fatllf.ads, s-fatsfl.ads, s-ficobl.ads,
20848         s-fileio.adb, s-fileio.ads, s-finimp.adb, s-finimp.ads,
20849         s-finroo.adb, s-finroo.ads, s-fore.adb, s-fore.ads,
20850         s-gloloc.adb, s-gloloc.ads, s-imgbiu.adb, s-imgbiu.ads,
20851         s-imgboo.adb, s-imgboo.ads, s-imgcha.adb, s-imgcha.ads,
20852         s-imgdec.adb, s-imgdec.ads, s-imgenu.adb, s-imgenu.ads,
20853         s-imgint.adb, s-imgint.ads, s-imgllb.adb, s-imgllb.ads,
20854         s-imglld.adb, s-imglld.ads, s-imglli.adb, s-imglli.ads,
20855         s-imgllu.adb, s-imgllu.ads, s-imgllw.adb, s-imgllw.ads,
20856         s-imgrea.adb, s-imgrea.ads, s-imguns.adb, s-imguns.ads,
20857         s-imgwch.adb, s-imgwch.ads, s-imgwiu.adb, s-imgwiu.ads,
20858         s-inmaop.ads, s-interr.adb, s-interr.ads, s-intman.ads,
20859         s-io.adb, s-io.ads, s-maccod.ads, s-mantis.adb,
20860         s-mantis.ads, s-mastop.adb, s-mastop.ads, s-memory.adb,
20861         s-memory.ads, s-osprim.ads, s-pack03.adb, s-pack03.ads,
20862         s-pack05.adb, s-pack05.ads, s-pack06.adb, s-pack06.ads,
20863         s-pack07.adb, s-pack07.ads, s-pack09.adb, s-pack09.ads,
20864         s-pack10.adb, s-pack10.ads, s-pack11.adb, s-pack11.ads,
20865         s-pack12.adb, s-pack12.ads, s-pack13.adb, s-pack13.ads,
20866         s-pack14.adb, s-pack14.ads, s-pack15.adb, s-pack15.ads,
20867         s-pack17.adb, s-pack17.ads, s-pack18.adb, s-pack18.ads,
20868         s-pack19.adb, s-pack19.ads, s-pack20.adb, s-pack20.ads,
20869         s-pack21.adb, s-pack21.ads, s-pack22.adb, s-pack22.ads,
20870         s-pack23.adb, s-pack23.ads, s-pack24.adb, s-pack24.ads,
20871         s-pack25.adb, s-pack25.ads, s-pack26.adb, s-pack26.ads,
20872         s-pack27.adb, s-pack27.ads, s-pack28.adb, s-pack28.ads,
20873         s-pack29.adb, s-pack29.ads, s-pack30.adb, s-pack30.ads,
20874         s-pack31.adb, s-pack31.ads, s-pack33.adb, s-pack33.ads,
20875         s-pack34.adb, s-pack34.ads, s-pack35.adb, s-pack35.ads,
20876         s-pack36.adb, s-pack36.ads, s-pack37.adb, s-pack37.ads,
20877         s-pack38.adb, s-pack38.ads, s-pack39.adb, s-pack39.ads,
20878         s-pack40.adb, s-pack40.ads, s-pack41.adb, s-pack41.ads,
20879         s-pack42.adb, s-pack42.ads, s-pack43.adb, s-pack43.ads,
20880         s-pack44.adb, s-pack44.ads, s-pack45.adb, s-pack45.ads,
20881         s-pack46.adb, s-pack46.ads, s-pack47.adb, s-pack47.ads,
20882         s-pack48.adb, s-pack48.ads, s-pack49.adb, s-pack49.ads,
20883         s-pack50.adb, s-pack50.ads, s-pack51.adb, s-pack51.ads,
20884         s-pack52.adb, s-pack52.ads, s-pack53.adb, s-pack53.ads,
20885         s-pack54.adb, s-pack54.ads, s-pack55.adb, s-pack55.ads,
20886         s-pack56.adb, s-pack56.ads, s-pack57.adb, s-pack57.ads,
20887         s-pack58.adb, s-pack58.ads, s-pack59.adb, s-pack59.ads,
20888         s-pack60.adb, s-pack60.ads, s-pack61.adb, s-pack61.ads,
20889         s-pack62.adb, s-pack62.ads, s-pack63.adb, s-pack63.ads,
20890         s-parame.adb, s-parame.ads, s-parint.adb, s-parint.ads,
20891         s-pooglo.adb, s-pooglo.ads, s-pooloc.adb, s-pooloc.ads,
20892         s-poosiz.adb, s-poosiz.ads, s-powtab.ads, s-proinf.adb,
20893         s-proinf.ads, s-rpc.adb, s-rpc.ads, s-scaval.ads,
20894         s-secsta.adb, s-secsta.ads, s-sequio.adb, s-sequio.ads,
20895         s-shasto.adb, s-shasto.ads, s-soflin.adb, s-soflin.ads,
20896         s-sopco3.adb, s-sopco3.ads, s-sopco4.adb, s-sopco4.ads,
20897         s-sopco5.adb, s-sopco5.ads, s-stache.adb, s-stache.ads,
20898         s-stalib.adb, s-stalib.ads, s-stoele.adb, s-stoele.ads,
20899         s-stopoo.ads, s-stratt.adb, s-stratt.ads, s-strops.adb,
20900         s-strops.ads, s-taasde.adb, s-taasde.ads, s-tadeca.adb,
20901         s-tadeca.ads, s-tadert.adb, s-tadert.ads, s-taenca.adb,
20902         s-taenca.ads, s-taprob.adb, s-taprob.ads, s-taprop.ads,
20903         s-tarest.adb, s-tarest.ads, s-tasdeb.adb, s-tasdeb.ads,
20904         s-tasinf.adb, s-tasinf.ads, s-tasini.adb, s-tasini.ads,
20905         s-taskin.adb, s-taskin.ads, s-tasque.adb, s-tasque.ads,
20906         s-tasren.adb, s-tasren.ads, s-tasres.ads, s-tassta.adb,
20907         s-tassta.ads, s-tasuti.adb, s-tasuti.ads, s-tataat.adb,
20908         s-tataat.ads, s-tpinop.adb, s-tpinop.ads, s-tpoben.adb,
20909         s-tpoben.ads, s-tpobop.adb, s-tpobop.ads, s-tposen.adb,
20910         s-tposen.ads, s-traceb.adb, s-traceb.ads, s-traces.adb,
20911         s-traces.ads, s-tratas.adb, s-tratas.ads, s-unstyp.ads,
20912         s-vaflop.adb, s-vaflop.ads, s-valboo.adb, s-valboo.ads,
20913         s-valcha.adb, s-valcha.ads, s-valdec.adb, s-valdec.ads,
20914         s-valenu.adb, s-valenu.ads, s-valint.adb, s-valint.ads,
20915         s-vallld.adb, s-vallld.ads, s-vallli.adb, s-vallli.ads,
20916         s-valllu.adb, s-valllu.ads, s-valrea.adb, s-valrea.ads,
20917         s-valuns.adb, s-valuns.ads, s-valuti.adb, s-valuti.ads,
20918         s-valwch.adb, s-valwch.ads, s-vercon.adb, s-vercon.ads,
20919         s-vmexta.adb, s-vmexta.ads, s-wchcnv.adb, s-wchcnv.ads,
20920         s-wchcon.ads, s-wchjis.adb, s-wchjis.ads, s-wchstw.adb,
20921         s-wchstw.ads, s-wchwts.adb, s-wchwts.ads, s-widboo.adb,
20922         s-widboo.ads, s-widcha.adb, s-widcha.ads, s-widenu.adb,
20923         s-widenu.ads, s-widlli.adb, s-widlli.ads, s-widllu.adb,
20924         s-widllu.ads, s-widwch.adb, s-widwch.ads, s-wwdcha.adb,
20925         s-wwdcha.ads, s-wwdenu.adb, s-wwdenu.ads, s-wwdwch.adb,
20926         s-wwdwch.ads, scans.adb, scans.ads, scn-nlit.adb,
20927         scn-slit.adb, scn.adb, scn.ads, sdefault.ads,
20928         sem.adb, sem.ads, sem_aggr.adb, sem_aggr.ads,
20929         sem_attr.adb, sem_attr.ads, sem_case.adb, sem_case.ads,
20930         sem_cat.adb, sem_cat.ads, sem_ch10.adb, sem_ch10.ads,
20931         sem_ch11.adb, sem_ch11.ads, sem_ch12.adb, sem_ch12.ads,
20932         sem_ch13.adb, sem_ch13.ads, sem_ch2.adb, sem_ch2.ads,
20933         sem_ch3.adb, sem_ch3.ads, sem_ch4.adb, sem_ch4.ads,
20934         sem_ch5.adb, sem_ch5.ads, sem_ch6.adb, sem_ch6.ads,
20935         sem_ch7.adb, sem_ch7.ads, sem_ch8.adb, sem_ch8.ads,
20936         sem_ch9.adb, sem_ch9.ads, sem_disp.adb, sem_disp.ads,
20937         sem_dist.adb, sem_dist.ads, sem_elab.adb, sem_elab.ads,
20938         sem_elim.adb, sem_elim.ads, sem_eval.adb, sem_eval.ads,
20939         sem_intr.adb, sem_intr.ads, sem_maps.adb, sem_maps.ads,
20940         sem_mech.adb, sem_mech.ads, sem_prag.adb, sem_prag.ads,
20941         sem_res.adb, sem_res.ads, sem_smem.adb, sem_smem.ads,
20942         sem_type.adb, sem_type.ads, sem_util.adb, sem_util.ads,
20943         sem_vfpt.adb, sem_vfpt.ads, sem_warn.adb, sem_warn.ads,
20944         sequenio.ads, sfn_scan.adb, sfn_scan.ads, sinfo-cn.adb,
20945         sinfo-cn.ads, sinfo.adb, sinfo.ads, sinput-d.adb,
20946         sinput-d.ads, sinput-l.adb, sinput-l.ads, sinput-p.adb,
20947         sinput-p.ads, sinput.adb, sinput.ads, snames.adb,
20948         snames.ads, sprint.adb, sprint.ads, stand.adb,
20949         stand.ads, stringt.adb, stringt.ads, style.adb,
20950         style.ads, stylesw.adb, stylesw.ads, switch-b.adb,
20951         switch-b.ads, switch-c.adb, switch-c.ads, switch-m.adb,
20952         switch-m.ads, switch.adb, switch.ads, system.ads,
20953         table.adb, table.ads, targparm.adb, targparm.ads,
20954         tbuild.adb, tbuild.ads, text_io.ads, trans.c,
20955         tree_gen.adb, tree_gen.ads, tree_in.adb, tree_in.ads,
20956         tree_io.adb, tree_io.ads, treepr.adb, treepr.ads,
20957         ttypef.ads, ttypes.ads, types.adb, types.ads,
20958         uintp.adb, uintp.ads, uname.adb, uname.ads,
20959         unchconv.ads, unchdeal.ads, urealp.adb, urealp.ads,
20960         usage.adb, usage.ads, validsw.adb, validsw.ads,
20961         widechar.adb, widechar.ads, xeinfo.adb, xnmake.adb,
20962         xr_tabls.adb, xr_tabls.ads, xref_lib.adb, xref_lib.ads,
20963         xsinfo.adb, xsnames.adb, xtreeprs.adb : Merge header,
20964         formatting and other trivial changes from ACT.
20966 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
20968         * gigi.h, utils2.c (build_constructor):
20969         Rename gnat_build_constructor. Use build_constructor.
20970         * decl.c (gnat_to_gnu_entity)
20971         * trans.c (tree_transform, pos_to_constructor, extract_values)
20972         * ada/utils.c (build_template, convert_to_fat_pointer, convert)
20973         (unchecked_convert)
20974         * ada/utils2.c (build_binary_op, build_call_raise, build_allocator)
20975         (fill_vms_descriptor):
20976         Update to match.
20978 2003-04-06  Zack Weinberg  <zack@codesourcery.com>
20980         * ada-tree.def: Make fourth element for GNAT_LOOP_ID zero.
20981         * misc.c (gnat_tree_size): New function.
20982         (LANG_HOOKS_TREE_SIZE): Override.
20984 2003-04-03  Jason Merrill  <jason@redhat.com>
20986         * misc.c (gnat_adjust_rli): #if 0.
20988 2003-03-31   Geert Bosch <bosch@gnat.com>
20990         PR ada/10020
20991         * link.c : Fix misspelled "const" keyword
20993 2003-03-23  Mark Mitchell  <mark@codesourcery.com>
20995         PR c++/7086
20996         * utils2.c: Adjust calls to put_var_into_stack.
20998 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
21000         * Make-lang.in, Makefile.in, config-lang.in: GCC, not GNU CC.
21002 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
21004         * misc.c (gnat_init): Update for new prototype.
21006 2003-03-05  Olivier Hainque  <hainque@gnat.com>
21008         ada/9961
21009         * raise.c (__gnat_Unwind_RaiseException): Add prototype to avoid
21010         warning, and fix return type for the IN_RTS && !SJLJ case.
21012 2003-03-04  Tom Tromey  <tromey@redhat.com>
21014         * Make-lang.in (ada.tags): New target.
21016 2003-03-04  Olivier Hainque  <hainque@act-europe.fr>
21018         ada/9911
21019         * a-except.adb (Unwind_RaiseException): Import a GNAT specific
21020         wrapper, which name remains constant whatever underlying GCC
21021         scheme.
21023         * raise.c (__gnat_Unwind_RaiseException): New wrappers, providing
21024         the stable interface needed for a-except.
21026 2003-03-02  Andreas Jaeger  <aj@suse.de>
21028         * gnat_ug_unx.texi, gnat_ug_vms.texi, gnat_ug_vxw.texi,
21029         gnat_ug_wnt.texi: Regenerate.
21031 2003-03-02  Laurent Guerby <guerby@acm.org>
21033         * Makefile.in (install-gnatlib): Match previous change there
21034         so it works.
21036 2003-02-28  Andreas Schwab  <schwab@suse.de>
21038         * Make-lang.in (install-gnatlib): Change to ada directory before
21039         running make instead of using ada/Makefile directly.
21041 2003-02-18  Ben Elliston  <bje@redhat.com>
21043         Part of fix for PR ada/9406
21044         * gnat_ug.texi (Binder output file): Grammar fix.
21046 2003-02-18  Ben Elliston  <bje@redhat.com>
21048         PR other/7350
21049         * 5qtaprop.adb (Sleep): Fix typo in comment.
21051 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
21053         * gnat_rm.texi, gnat_ug.texi: Update to GFDL 1.2.
21054         * gnat_ug_unx.texi, gnat_ug_vms.texi, gnat_ug_vxw.texi,
21055         gnat_ug_wnt.texi: Regenerate.
21057 2003-02-03  Christian Cornelssen <ccorn@cs.tu-berlin.de>
21059         * Make-lang.in (ada.install-info): Let $(DESTDIR)$(infodir)
21060         be created if necessary.
21061         (ada.install-common): Let $(DESTDIR)$(bindir) be created
21062         if necessary.  Remove erroneous and redundant gnatchop
21063         installation commands.  Test for gnatdll before attempting
21064         to install it.
21065         (ada.uninstall): Also uninstall gnatfind, gnatxref, gnatlbr,
21066         and gnatdll from all plausible locations.
21068 2003-02-01  Richard Sandiford  <rsandifo@redhat.com>
21070         * utils2.c (build_unary_op): Don't check flag_volatile.
21071         * gnat_ug.texi: Remove -fvolatile from example.
21072         * gnat_ug_vxw.texi: Likewise.
21074 2003-01-29  Laurent Guerby <guerby@acm.org>
21076         PR ada/8344
21077         * final.c: rename to adafinal.c to avoid file name conflicts with gcc file.
21078         * Makefile.in: match previous change.
21079         * Make-lang.in: match previous change.
21081 2003-01-29      Joel Sherrill <joel@OARcorp.com>
21083         * 5rosinte.ads: Add SIGXCPU.
21084         * 5rtpopsp.adb: New file.
21085         * Make-lang.in: Do not build gnatpsta and gnatpsys when cross.
21086         * Makefile.in: Recognize more RTEMS targets and add the RTEMS
21087         specific file 5rtpopsp.adb.
21088         * adaint.h: Add include of <stdio.h> when target is RTEMS.  This
21089         is likely needed for all newlib targets.
21090         * init.c: Add RTEMS specific version of __gnat_initialize().
21092 2003-01-28  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
21094         * adaint.c, adaint.h, gmem.c, init.c: Update copyright year.
21096 2003-01-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
21098         * init.c (__gnat_error_handler): Make msg const.
21100         * gmem.c (convert_addresses): Move declaration ...
21101         * adaint.h: ... here.
21102         * adaint.c (convert_addresses): Adapt addrs type to match
21103         prototype.
21105         * adaint.c (__gnat_try_lock): Cast pid_t to long, adapt format.
21107 2003-01-24  Andreas Schwab  <schwab@suse.de>
21109         * ada-tree.h (SET_TYPE_DIGITS_VALUE): Add intermediate cast to
21110         size_t to avoid warning.
21112 2003-01-21  Zack Weinberg  <zack@codesourcery.com>
21114         * Make-lang.in: Disable -Werror for tracebak.c and b_gnatb.c.
21116 2003-01-09  Geoffrey Keating  <geoffk@apple.com>
21118         * gnat_rm.texi: Remove RCS version number.
21120         * ada-tree.h (union lang_tree_node): Add chain_next option.
21122 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
21124         * Make-lang.in (ada.install-info, ada.install-common,
21125         ada.uninstall): Prepend $(DESTDIR) to the destination
21126         directory in all (un)installation commands.
21127         * Makefile.in (install-gnatlib, install-rts): Ditto.
21129 2002-12-28  Joseph S. Myers  <jsm@polyomino.org.uk>
21131         * gnat_rm.texi, gnat_ug.texi: Use @copying.
21132         * gnat_ug_unx.texi, gnat_ug_vms.texi, gnat_ug_vxw.texi,
21133         gnat_ug_wnt.texi: Regenerate.
21135 2002-12-23  Joseph S. Myers  <jsm@polyomino.org.uk>
21137         * gnat_rm.texi: Include gcc-common.texi.  Use GCC version number
21138         only.
21139         * Make-lang.in ($(srcdir)/ada/gnat_ug_unx.info,
21140         $(srcdir)/ada/gnat_ug_vms.info, $(srcdir)/ada/gnat_ug_vxw.info,
21141         $(srcdir)/ada/gnat_ug_wnt.info, $(srcdir)/ada/gnat_rm.info,
21142         ada/gnat_ug_unx.dvi, ada/gnat_ug_vms.dvi, ada/gnat_ug_vxw.dvi,
21143         ada/gnat_ug_wnt.dvi, ada/gnat_rm.dvi): Depend on
21144         $(srcdir)/doc/include/gcc-common.texi.
21146 2002-12-15   Geert Bosch <bosch@gnat.com>
21148         * sem_ch6.adb (Analyze_Subprogram_Body): Fix typo and formatting
21150 2002-12-14   Geert Bosch <bosch@gnat.com>
21152         * sem_ch6.adb (Analyze_Subprogram_Body): Recognize additional
21153         case of a body created for a Renaming_As_Body, on which
21154         conformance checks are not performed. Fixes PR ada/5690.
21156 2002-11-30  Zack Weinberg  <zack@codesourcery.com>
21158         * cuintp.c, decl.c, deftarg.c, misc.c, targtyps.c, trans.c,
21159         utils.c, utils2.c: Include coretypes.h and tm.h, and system.h when
21160         not already included.
21161         * Make-lang.in: Update dependencies.
21163 2002-11-18  Nathanael Nerode  <neroden@gcc.gnu.org>
21164         * adaint.c (__gnat_tmp_name): Better, but good enough for now,
21165         solution to buffer overflow bug on GNU/Linux.
21167 2002-11-14  Nathanael Nerode  <neroden@gcc.gnu.org>
21168         Closes PR ada/5856 and PR ada/6919 !
21169         * bindgen.adb: Remove all references to Public_Version.
21170         * comperr.adb: Remove all references to Public_Version and
21171         GNATPRO_Version; correct bug reporting instructions.
21172         * comperr.ads: Change to match bug box.
21173         * gnatvsn.ads: Remove all references to Public version and
21174         GNATPRO version.
21176 2002-11-13  Nathanael Nerode  <neroden@gcc.gnu.org>
21177         PR ada/6919
21178         * adaint.c (__gnat_tmp_name): Remove buffer overflow bug on
21179         GNU/Linux.
21181         PR ada/6558
21182         * config-lang.in: Remove diff_excludes.
21184 2002-11-05  Graham Stott  <graham.stott@btinternet.com>
21185         PR ada/8358
21186         * trans.c (gnu_pending_elaboration_lists): New GC root.
21187         (build_unit_elab): Use..
21189 2002-10-30   Geert Bosch <bosch@gnat.com>
21190         PR ada/6558
21191         * misc.c : Include optabs.h
21193         * Make-lang.in (misc.o): Add dependency on optabs.h
21195 2002-10-29   Geert Bosch <bosch@gnat.com>
21196         PR ada/6558
21197         * Make-lang.in (gnatbind): Depend on CONFIG_H
21199 2002-10-29  Geert bosch  <bosch@gnat.com>
21200         PR ada/6558
21201         * misc.c: Unrevert misc.c (1.13)
21203 2002-10-28  Nathanael Nerode  <neroden@gcc.gnu.org>
21205         * a-chlat9.ads a-cwila9.ads a-dynpri.adb a-retide.adb: Update
21206         maintainership comments.
21208 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
21209         PR ada/5904
21210         * 5ataprop.adb 5atpopsp.adb 5bosinte.adb 5ftaprop.adb
21211         5gtaprop.adb 5htaprop.adb 5rosinte.ads 5staprop.adb
21212         5stpopse.adb 5vtaspri.ads 5zintman.adb 5ztaprop.adb
21213         7staprop.adb: Correct statements in comments about
21214         maintainership of GNAT.
21216         PR ada/5904
21217         * 1ssecsta.adb 1ssecsta.ads adadecode.c adadecode.h aux-io.c
21218         gnatname.adb gnatname.ads mkdir.c osint-b.adb osint-b.ads
21219         osint-c.adb osint-c.ads osint-l.adb osint-l.ads osint-m.adb
21220         osint-m.ads prj-makr.adb prj-makr.ads prj-pp.adb prj-pp.ads
21221         s-atacco.ads s-traceb.adb s-traceb.ads s-traces.adb
21222         s-traces.ads s-tratas.adb s-tratas.ads sinput-d.adb
21223         sinput-d.ads switch-b.adb switch-b.ads switch-c.adb
21224         switch-c.ads switch-m.adb switch-m.ads: Correct statements in
21225         comments about maintainership of GNAT.
21227         PR ada/6919 (forward port of patch for PR ada/5904)
21228         * 1aexcept.adb 1aexcept.ads 41intnam.ads 42intnam.ads
21229         4aintnam.ads 4cintnam.ads 4dintnam.ads 4hexcpol.adb
21230         4lintnam.ads 4mintnam.ads 4nintnam.ads 4onumaux.ads
21231         4pintnam.ads 4rintnam.ads 4sintnam.ads 4uintnam.ads
21232         4vcalend.adb 4vintnam.ads 4wcalend.adb 4wexcpol.adb
21233         4wintnam.ads 4zintnam.ads 4znumaux.ads 4zsytaco.adb
21234         4zsytaco.ads 51osinte.adb 51osinte.ads 52osinte.adb
21235         52osinte.ads 52system.ads 53osinte.ads 5aosinte.ads
21236         5asystem.ads 5atasinf.ads 5ataspri.ads 5avxwork.ads
21237         5bosinte.ads 5bsystem.ads 5cosinte.ads 5dosinte.ads
21238         5esystem.ads 5fosinte.ads 5fsystem.ads 5ftasinf.ads
21239         5ginterr.adb 5gmastop.adb 5gosinte.ads 5gproinf.adb
21240         5gproinf.ads 5gsystem.ads 5gtasinf.adb 5gtasinf.ads
21241         5gtpgetc.adb 5hparame.ads 5hsystem.ads 5htaspri.ads
21242         5iosinte.ads 5itaspri.ads 5ksystem.ads 5kvxwork.ads
21243         5losinte.ads 5lsystem.ads 5mosinte.ads 5mvxwork.ads
21244         5ninmaop.adb 5nintman.adb 5nosinte.ads 5ntaspri.ads
21245         5oosprim.adb 5oparame.adb 5osystem.ads 5posinte.ads
21246         5posprim.adb 5pvxwork.ads 5rosinte.ads 5rparame.adb
21247         5sintman.adb 5sosinte.ads 5sparame.adb 5ssystem.ads
21248         5stasinf.adb 5stasinf.ads 5staspri.ads 5svxwork.ads
21249         5tosinte.ads 5uosinte.ads 5vasthan.adb 5vinterr.adb
21250         5vintman.ads 5vosinte.ads 5vosprim.adb 5vosprim.ads
21251         5vparame.ads 5vsystem.ads 5vtaspri.ads 5vtpopde.adb
21252         5vtpopde.ads 5vvaflop.adb 5wintman.adb 5wmemory.adb
21253         5wosinte.ads 5wosprim.adb 5wsystem.ads 5wtaprop.adb
21254         5wtaspri.ads 5ysystem.ads 5zinterr.adb 5zosinte.adb
21255         5zosinte.ads 5zosprim.adb 5zsystem.ads 6vcpp.adb 6vcstrea.adb
21256         7sosprim.adb 86numaux.adb 86numaux.ads 9drpc.adb a-astaco.adb
21257         a-caldel.ads a-calend.adb a-calend.ads a-chahan.adb
21258         a-chahan.ads a-colien.adb a-colien.ads a-colire.adb
21259         a-colire.ads a-comlin.adb a-comlin.ads a-cwila1.ads
21260         a-decima.adb a-decima.ads a-diocst.adb a-diocst.ads
21261         a-direio.adb a-direio.ads a-einuoc.adb a-einuoc.ads
21262         a-except.adb a-except.ads a-excpol.adb a-exctra.adb
21263         a-exctra.ads a-filico.adb a-filico.ads a-finali.adb
21264         a-finali.ads a-interr.ads a-intsig.adb a-intsig.ads
21265         a-ngcefu.adb a-ngcoty.adb a-ngcoty.ads a-ngelfu.adb
21266         a-nudira.adb a-nudira.ads a-nuflra.adb a-nuflra.ads
21267         a-numaux.ads a-reatim.ads a-retide.ads a-sequio.adb
21268         a-sequio.ads a-siocst.adb a-siocst.ads a-ssicst.adb
21269         a-ssicst.ads a-stmaco.ads a-storio.adb a-strbou.adb
21270         a-strbou.ads a-stream.ads a-strfix.adb a-strfix.ads
21271         a-strmap.adb a-strmap.ads a-strsea.adb a-strsea.ads
21272         a-strunb.adb a-strunb.ads a-ststio.adb a-ststio.ads
21273         a-stunau.adb a-stunau.ads a-stwibo.adb a-stwibo.ads
21274         a-stwifi.adb a-stwima.adb a-stwima.ads a-stwise.adb
21275         a-stwise.ads a-stwiun.adb a-stwiun.ads a-suteio.adb
21276         a-suteio.ads a-swmwco.ads a-swuwti.adb a-swuwti.ads
21277         a-sytaco.adb a-sytaco.ads a-tags.adb a-tags.ads a-tasatt.ads
21278         a-taside.adb a-taside.ads a-teioed.adb a-teioed.ads
21279         a-textio.adb a-textio.ads a-ticoau.adb a-ticoau.ads
21280         a-ticoio.adb a-ticoio.ads a-tideau.adb a-tideau.ads
21281         a-tideio.adb a-tideio.ads a-tienau.adb a-tienau.ads
21282         a-tienio.adb a-tienio.ads a-tifiio.adb a-tifiio.ads
21283         a-tiflau.adb a-tiflau.ads a-tiflio.adb a-tiflio.ads
21284         a-tigeau.adb a-tigeau.ads a-tiinau.adb a-tiinau.ads
21285         a-tiinio.adb a-tiinio.ads a-timoau.adb a-timoau.ads
21286         a-timoio.adb a-timoio.ads a-tiocst.adb a-tiocst.ads
21287         a-titest.adb a-witeio.adb a-witeio.ads a-wtcoau.adb
21288         a-wtcoau.ads a-wtcoio.adb a-wtcstr.adb a-wtcstr.ads
21289         a-wtdeau.adb a-wtdeau.ads a-wtdeio.adb a-wtdeio.ads
21290         a-wtedit.adb a-wtedit.ads a-wtenau.adb a-wtenau.ads
21291         a-wtenio.adb a-wtenio.ads a-wtfiio.adb a-wtfiio.ads
21292         a-wtflau.adb a-wtflau.ads a-wtflio.adb a-wtflio.ads
21293         a-wtgeau.adb a-wtgeau.ads a-wtinau.adb a-wtinau.ads
21294         a-wtinio.adb a-wtmoau.adb a-wtmoau.ads a-wtmoio.adb
21295         a-wtmoio.ads a-wttest.adb ada-tree.def ada-tree.h ada.h
21296         adaint.c adaint.h ali-util.adb ali-util.ads ali.adb ali.ads
21297         alloc.ads argv.c atree.adb atree.ads atree.h back_end.adb
21298         back_end.ads bcheck.adb bcheck.ads binde.adb binde.ads
21299         binderr.adb binderr.ads bindgen.adb bindgen.ads bindusg.adb
21300         bindusg.ads butil.adb butil.ads cal.c casing.adb casing.ads
21301         ceinfo.adb checks.adb checks.ads cio.c comperr.adb comperr.ads
21302         csets.adb csets.ads csinfo.adb cstand.adb cstand.ads
21303         cstreams.c cuintp.c debug.adb debug.ads debug_a.adb
21304         debug_a.ads dec-io.adb dec-io.ads dec.ads decl.c deftarg.c
21305         einfo.adb einfo.ads einfo.h elists.adb elists.ads elists.h
21306         errno.c errout.adb errout.ads eval_fat.adb eval_fat.ads exit.c
21307         exp_aggr.adb exp_aggr.ads exp_attr.adb exp_attr.ads
21308         exp_ch10.ads exp_ch11.adb exp_ch11.ads exp_ch12.adb
21309         exp_ch12.ads exp_ch13.adb exp_ch13.ads exp_ch2.adb exp_ch2.ads
21310         exp_ch3.adb exp_ch3.ads exp_ch4.adb exp_ch4.ads exp_ch5.adb
21311         exp_ch5.ads exp_ch6.adb exp_ch6.ads exp_ch7.adb exp_ch7.ads
21312         exp_ch8.adb exp_ch8.ads exp_ch9.adb exp_ch9.ads exp_code.adb
21313         exp_code.ads exp_dbug.adb exp_dbug.ads exp_disp.adb
21314         exp_disp.ads exp_dist.adb exp_dist.ads exp_fixd.adb
21315         exp_fixd.ads exp_imgv.adb exp_imgv.ads exp_intr.adb
21316         exp_intr.ads exp_pakd.adb exp_pakd.ads exp_prag.adb
21317         exp_prag.ads exp_smem.adb exp_smem.ads exp_strm.adb
21318         exp_strm.ads exp_tss.adb exp_tss.ads exp_util.adb exp_util.ads
21319         exp_vfpt.adb exp_vfpt.ads expander.adb expander.ads fe.h
21320         final.c fmap.adb fmap.ads fname-sf.adb fname-sf.ads
21321         fname-uf.adb fname-uf.ads fname.adb fname.ads freeze.adb
21322         freeze.ads frontend.adb frontend.ads g-calend.ads g-comlin.adb
21323         g-debpoo.adb g-debpoo.ads g-locfil.adb g-os_lib.ads
21324         g-regist.adb g-regist.ads get_targ.adb get_targ.ads gigi.h
21325         gmem.c gnat1drv.adb gnat1drv.ads gnat_ug.texi gnatbind.adb
21326         gnatbind.ads gnatbl.c gnatcmd.adb gnatcmd.ads gnatdll.adb
21327         gnatfind.adb gnatkr.adb gnatkr.ads gnatlbr.adb gnatlink.adb
21328         gnatlink.ads gnatls.adb gnatls.ads gnatmake.adb gnatmake.ads
21329         gnatmem.adb gnatprep.adb gnatprep.ads gnatpsta.adb gnatvsn.ads
21330         gnatxref.adb hlo.adb hlo.ads hostparm.ads i-c.adb i-cexten.ads
21331         i-cobol.adb i-cobol.ads i-cpoint.adb i-cpoint.ads i-cpp.adb
21332         i-cpp.ads i-cstrea.adb i-cstrea.ads i-cstrin.adb i-cstrin.ads
21333         i-fortra.adb i-os2err.ads i-os2lib.adb i-os2lib.ads
21334         i-os2syn.ads i-os2thr.ads i-pacdec.adb i-pacdec.ads
21335         impunit.adb impunit.ads init.c inline.adb inline.ads io-aux.c
21336         itypes.adb itypes.ads krunch.adb krunch.ads lang-options.h
21337         lang-specs.h layout.adb layout.ads lib-list.adb lib-load.adb
21338         lib-load.ads lib-sort.adb lib-util.adb lib-util.ads
21339         lib-writ.adb lib-writ.ads lib-xref.adb lib-xref.ads lib.adb
21340         lib.ads link.c live.adb live.ads make.adb make.ads makeusg.adb
21341         makeusg.ads math_lib.adb mdll.adb mdll.ads memtrack.adb misc.c
21342         namet.adb namet.ads namet.h nlists.adb nlists.ads nlists.h
21343         nmake.adb nmake.ads nmake.adt opt.adb opt.ads osint.adb
21344         osint.ads output.adb output.ads par-ch10.adb par-ch11.adb
21345         par-ch12.adb par-ch13.adb par-ch2.adb par-ch3.adb par-ch4.adb
21346         par-ch5.adb par-ch6.adb par-ch7.adb par-ch8.adb par-ch9.adb
21347         par-endh.adb par-labl.adb par-load.adb par-prag.adb
21348         par-sync.adb par-tchk.adb par-util.adb par.adb par.ads
21349         prj-attr.adb prj-attr.ads prj-com.adb prj-com.ads prj-dect.adb
21350         prj-dect.ads prj-env.adb prj-env.ads prj-ext.adb prj-ext.ads
21351         prj-nmsc.adb prj-nmsc.ads prj-pars.adb prj-pars.ads
21352         prj-part.adb prj-part.ads prj-proc.adb prj-proc.ads
21353         prj-strt.adb prj-strt.ads prj-tree.adb prj-tree.ads
21354         prj-util.adb prj-util.ads prj.adb prj.ads raise.c raise.h
21355         repinfo.adb repinfo.ads repinfo.h restrict.adb restrict.ads
21356         rident.ads rtsfind.adb rtsfind.ads s-addima.adb s-addima.ads
21357         s-arit64.adb s-arit64.ads s-assert.adb s-assert.ads
21358         s-asthan.adb s-asthan.ads s-atacco.adb s-auxdec.adb
21359         s-auxdec.ads s-bitops.adb s-bitops.ads s-chepoo.ads
21360         s-direio.adb s-direio.ads s-except.ads s-exctab.adb
21361         s-exctab.ads s-exnflt.ads s-exngen.adb s-exngen.ads
21362         s-exnint.ads s-exnlfl.ads s-exnlin.ads s-exnllf.ads
21363         s-exnlli.ads s-exnsfl.ads s-exnsin.ads s-exnssi.ads
21364         s-expflt.ads s-expgen.adb s-expgen.ads s-expint.ads
21365         s-explfl.ads s-explin.ads s-expllf.ads s-explli.ads
21366         s-expllu.adb s-expllu.ads s-expmod.adb s-expmod.ads
21367         s-expsfl.ads s-expsin.ads s-expssi.ads s-expuns.adb
21368         s-expuns.ads s-fatflt.ads s-fatgen.adb s-fatgen.ads
21369         s-fatlfl.ads s-fatllf.ads s-fatsfl.ads s-ficobl.ads
21370         s-fileio.adb s-fileio.ads s-finimp.adb s-finimp.ads
21371         s-finroo.adb s-finroo.ads s-fore.adb s-fore.ads s-imgbiu.adb
21372         s-imgbiu.ads s-imgboo.adb s-imgboo.ads s-imgcha.adb
21373         s-imgcha.ads s-imgdec.adb s-imgdec.ads s-imgenu.adb
21374         s-imgenu.ads s-imgint.adb s-imgint.ads s-imgllb.adb
21375         s-imgllb.ads s-imglld.adb s-imglld.ads s-imglli.adb
21376         s-imglli.ads s-imgllu.adb s-imgllu.ads s-imgllw.adb
21377         s-imgllw.ads s-imgrea.adb s-imgrea.ads s-imguns.adb
21378         s-imguns.ads s-imgwch.adb s-imgwch.ads s-imgwiu.adb
21379         s-imgwiu.ads s-inmaop.ads s-interr.adb s-interr.ads
21380         s-intman.ads s-io.adb s-io.ads s-maccod.ads s-mantis.adb
21381         s-mantis.ads s-memory.adb s-memory.ads s-osprim.ads
21382         s-pack03.adb s-pack03.ads s-pack05.adb s-pack05.ads
21383         s-pack06.adb s-pack06.ads s-pack07.adb s-pack07.ads
21384         s-pack09.adb s-pack09.ads s-pack10.adb s-pack10.ads
21385         s-pack11.adb s-pack11.ads s-pack12.adb s-pack12.ads
21386         s-pack13.adb s-pack13.ads s-pack14.adb s-pack14.ads
21387         s-pack15.adb s-pack15.ads s-pack17.adb s-pack17.ads
21388         s-pack18.adb s-pack18.ads s-pack19.adb s-pack19.ads
21389         s-pack20.adb s-pack20.ads s-pack21.adb s-pack21.ads
21390         s-pack22.adb s-pack22.ads s-pack23.adb s-pack23.ads
21391         s-pack24.adb s-pack24.ads s-pack25.adb s-pack25.ads
21392         s-pack26.adb s-pack26.ads s-pack27.adb s-pack27.ads
21393         s-pack28.adb s-pack28.ads s-pack29.adb s-pack29.ads
21394         s-pack30.adb s-pack30.ads s-pack31.adb s-pack31.ads
21395         s-pack33.adb s-pack33.ads s-pack34.adb s-pack34.ads
21396         s-pack35.adb s-pack35.ads s-pack36.adb s-pack36.ads
21397         s-pack37.adb s-pack37.ads s-pack38.adb s-pack38.ads
21398         s-pack39.adb s-pack39.ads s-pack40.adb s-pack40.ads
21399         s-pack41.adb s-pack41.ads s-pack42.adb s-pack42.ads
21400         s-pack43.adb s-pack43.ads s-pack44.adb s-pack44.ads
21401         s-pack45.adb s-pack45.ads s-pack46.adb s-pack46.ads
21402         s-pack47.adb s-pack47.ads s-pack48.adb s-pack48.ads
21403         s-pack49.adb s-pack49.ads s-pack50.adb s-pack50.ads
21404         s-pack51.adb s-pack51.ads s-pack52.adb s-pack52.ads
21405         s-pack53.adb s-pack53.ads s-pack54.adb s-pack54.ads
21406         s-pack55.adb s-pack55.ads s-pack56.adb s-pack56.ads
21407         s-pack57.adb s-pack57.ads s-pack58.adb s-pack58.ads
21408         s-pack59.adb s-pack59.ads s-pack60.adb s-pack60.ads
21409         s-pack61.adb s-pack61.ads s-pack62.adb s-pack62.ads
21410         s-pack63.adb s-pack63.ads s-parame.adb s-parame.ads
21411         s-parint.adb s-parint.ads s-pooglo.adb s-pooglo.ads
21412         s-pooloc.adb s-pooloc.ads s-poosiz.adb s-poosiz.ads
21413         s-powtab.ads s-proinf.adb s-proinf.ads s-rpc.adb s-rpc.ads
21414         s-scaval.ads s-secsta.adb s-secsta.ads s-sequio.adb
21415         s-sequio.ads s-shasto.adb s-shasto.ads s-soflin.adb
21416         s-soflin.ads s-sopco3.adb s-sopco3.ads s-sopco4.adb
21417         s-sopco4.ads s-sopco5.adb s-sopco5.ads s-stache.adb
21418         s-stache.ads s-stalib.adb s-stalib.ads s-stoele.adb
21419         s-stopoo.ads s-stratt.adb s-stratt.ads s-strops.adb
21420         s-strops.ads s-taprob.ads s-taprop.ads s-tarest.ads
21421         s-tasdeb.adb s-tasdeb.ads s-tasinf.adb s-tasinf.ads
21422         s-tasini.ads s-taskin.ads s-tasren.ads s-tasres.ads
21423         s-tassta.ads s-tpinop.adb s-tpinop.ads s-tpoben.ads
21424         s-tpobop.ads s-unstyp.ads s-vaflop.adb s-vaflop.ads
21425         s-valboo.adb s-valboo.ads s-valcha.adb s-valcha.ads
21426         s-valdec.adb s-valdec.ads s-valenu.adb s-valenu.ads
21427         s-valint.adb s-valint.ads s-vallld.adb s-vallld.ads
21428         s-vallli.adb s-vallli.ads s-valllu.adb s-valllu.ads
21429         s-valrea.adb s-valrea.ads s-valuns.adb s-valuns.ads
21430         s-valuti.adb s-valuti.ads s-valwch.adb s-valwch.ads
21431         s-vercon.adb s-vercon.ads s-vmexta.adb s-vmexta.ads
21432         s-wchcnv.adb s-wchcnv.ads s-wchcon.ads s-wchjis.adb
21433         s-wchjis.ads s-wchstw.adb s-wchstw.ads s-wchwts.adb
21434         s-wchwts.ads s-widboo.adb s-widboo.ads s-widcha.adb
21435         s-widcha.ads s-widenu.adb s-widenu.ads s-widlli.adb
21436         s-widlli.ads s-widllu.adb s-widllu.ads s-widwch.adb
21437         s-widwch.ads s-wwdcha.adb s-wwdcha.ads s-wwdenu.adb
21438         s-wwdenu.ads s-wwdwch.adb s-wwdwch.ads scans.adb scans.ads
21439         scn-nlit.adb scn-slit.adb scn.adb scn.ads sdefault.ads sem.adb
21440         sem.ads sem_aggr.adb sem_aggr.ads sem_attr.adb sem_attr.ads
21441         sem_case.adb sem_case.ads sem_cat.adb sem_cat.ads sem_ch10.adb
21442         sem_ch10.ads sem_ch11.adb sem_ch11.ads sem_ch12.adb
21443         sem_ch12.ads sem_ch13.adb sem_ch13.ads sem_ch2.adb sem_ch2.ads
21444         sem_ch3.adb sem_ch3.ads sem_ch4.adb sem_ch4.ads sem_ch5.adb
21445         sem_ch5.ads sem_ch6.adb sem_ch6.ads sem_ch7.adb sem_ch7.ads
21446         sem_ch8.adb sem_ch8.ads sem_ch9.adb sem_ch9.ads sem_disp.adb
21447         sem_disp.ads sem_dist.adb sem_dist.ads sem_elab.adb
21448         sem_elab.ads sem_elim.adb sem_elim.ads sem_eval.adb
21449         sem_eval.ads sem_intr.adb sem_intr.ads sem_maps.adb
21450         sem_maps.ads sem_mech.adb sem_mech.ads sem_prag.adb
21451         sem_prag.ads sem_res.adb sem_res.ads sem_smem.adb sem_smem.ads
21452         sem_type.adb sem_type.ads sem_util.adb sem_util.ads
21453         sem_vfpt.adb sem_vfpt.ads sem_warn.adb sem_warn.ads
21454         sfn_scan.adb sfn_scan.ads sinfo-cn.adb sinfo-cn.ads sinfo.adb
21455         sinfo.ads sinfo.h sinput-l.adb sinput-l.ads sinput-p.adb
21456         sinput-p.ads sinput.adb sinput.ads snames.adb snames.ads
21457         snames.h sprint.adb sprint.ads stand.adb stand.ads stringt.adb
21458         stringt.ads stringt.h style.adb style.ads stylesw.adb
21459         stylesw.ads switch.adb switch.ads sysdep.c system.ads
21460         table.adb table.ads targparm.adb targparm.ads targtyps.c
21461         tbuild.adb tbuild.ads trans.c tree_gen.adb tree_gen.ads
21462         tree_in.adb tree_in.ads tree_io.adb tree_io.ads treepr.adb
21463         treepr.ads treeprs.ads treeprs.adt ttypef.ads ttypes.ads
21464         types.adb types.ads types.h uintp.adb uintp.ads uintp.h
21465         uname.adb uname.ads urealp.adb urealp.ads urealp.h usage.adb
21466         usage.ads utils.c utils2.c validsw.adb validsw.ads
21467         widechar.adb widechar.ads xeinfo.adb xnmake.adb xr_tabls.adb
21468         xr_tabls.ads xref_lib.adb xref_lib.ads xsinfo.adb xsnames.adb
21469         xtreeprs.adb: Correct statements in comments about maintainership
21470         of GNAT.
21472 2002-09-23  Zack Weinberg  <zack@codesourcery.com>
21474         * Make-lang.in (EXTRA_GNATBIND_OBJS): Add version.o.
21475         * Makefile.in (TOOLS_LIBS): Add ../../version.o.
21476         * gnatvsn.ads: Gnat_Version_String is now a function.
21477         * gnatvsn.adb: New file.  When asked for Gnat_Version_String,
21478         copy the C version_string into a String and return it.
21479         * gnatcmd.adb, gnatkr.adb, gnatlbr.adb, gnatlink.adb,
21480         gnatls.adb,gnatmake.adb, gnatprep.adb, gnatpsta.adb:
21481         Remove pragma Ident (Gnat_Version_String).  If this was the
21482         sole use of package Gnatvsn, remove the with statement too.
21483         * gnat1drv.adb: Tweak -gnatv output.
21485 2002-09-17  Richard Henderson  <rth@redhat.com>
21487         * trans.c (tree_transform): Use real_ldexp not REAL_VALUE_LDEXP.
21488         * config/dsp16xx/dsp16xx.md (fixuns_trunchfhi2): Use real_2expN.
21489         * config/mips/mips.md (fixuns_truncdfsi2): Likewise.
21490         (fixuns_truncdfdi2, fixuns_truncsfsi2, fixuns_truncsfdi2): Likewise.
21491         * config/m68k/m68k.c (floating_exact_log2): Use real_exponent
21492         and real_2expN instead of a loop.
21493         * doc/tm.texi (REAL_VALUE_LDEXP): Remove.
21494         (REAL_VALUE_RNDZINT, REAL_VALUE_UNSIGNED_RNDZINT): Remove.
21496 2002-08-25  Andre Leis <a.leis@gmx.net>
21497             David Billinghurst (David.Billinghurst@riotinto.com>
21499         * sysdep.c (__gnat_ttyname): include <termios.h> on cygwin
21501 2002-08-13  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
21503         * Make-lang.in (gnatbind$(exeext)): Link with $(SYSLIBS).
21504         Remove $(CONFIG_H) dependency.
21506 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
21508         * ada/Make-lang.in (ada.mostlyclean): Remove coverage files.
21510 2002-07-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21512         * adadecode.c (ada_demangle): Use xstrdup in lieu of
21513         xmalloc/strcpy.
21514         * misc.c (gnat_decode_option): Likewise.
21516 2002-07-15  Florian Weimer  <fw@deneb.enyo.de>
21518         * make.adb (Add_Switch): Make Generic_Position a procedure.  The
21519         function approach did not work well because of a side effect (the
21520         function call could reallocate the table which was being indexed
21521         using its result). Fixes ada/4851. [RESURRECTED]
21523 2002-07-01  Roger Sayle  <roger@eyesopen.com>
21525         * ada/utils.c (builtin_function): Accept an additional parameter.
21527 2002-06-28  Andreas Jaeger  <aj@suse.de>
21529         PR ada/7144
21530         * Makefile.in: Fix typo in comment, patch by Adrian Knoth
21531         <adi@thur.de>.
21533 2002-06-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21535         * Makefile.in (SHELL): Set to @SHELL@.
21537 2002-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21539         * utils.c (init_gigi_decls): Use ARRAY_SIZE in lieu of explicit
21540         array size calculation.
21542 2002-06-04  Andreas Jaeger  <aj@suse.de>
21544         * Make-lang.in (gnatbind): Readd rule that has been lost in last
21545         patch.
21547 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
21549         Merge from pch-branch:
21551         * config-lang.in (gtfiles): Add ada-tree.h.
21552         * ada-tree.h (SET_TYPE_CI_CO_LIST): New.
21553         (SET_TYPE_MODULUS): New.
21554         (SET_TYPE_INDEX): New.
21555         (SET_TYPE_DIGITS_VALUE): New.
21556         (SET_TYPE_RM_SIZE): New.
21557         (SET_TYPE_UNCONSTRAINED_ARRAY): New.
21558         (SET_TYPE_ADA_SIZE): New.
21559         (SET_TYPE_ACTUAL_BOUNDS): New.
21560         (SET_DECL_CONST_CORRESPONDING_VAR): New.
21561         (SET_DECL_ORIGINAL_FIELD): New.
21562         (TREE_LOOP_ID): Correct typo.
21563         * decl.c: Use new macros.
21564         * utils.c: Include debug.h, use new macros.
21565         * utils2.c: Use new macros.
21567         * ada-tree.h: Update all macros for new tree description.
21568         (struct tree_loop_id): New.
21569         (union lang_tree_node): New.
21570         (struct lang_decl): New.
21571         (struct lang_type): New.
21572         * misc.c (gnat_mark_tree): Delete.
21573         (LANG_HOOKS_MARK_TREE): Delete.
21574         * trans.c (tree_transform): No longer any need to cast
21575         for TREE_LOOP_ID.
21577         * utils.c (struct language_function): New dummy structure.
21579         * Makefile.in (decl.o): gt-ada-<filename.h> is in objdir, not srcdir.
21580         (misc.o): Likewise.
21581         (utils.o): Likewise; also gtype-ada.h.
21582         * Make-lang.in (gnat1): Add dependency on s-gtype.
21583         (gnatbind): Add dependency on $(CONFIG_H).
21584         * utils.c: Correct last #include.
21585         (stuct e_stack): Remove unnecessary 'static'.
21586         (mark_e_stack): Remove unused prototype.
21588         * scn-nlit.adb: Remove whitespace after version number to
21589         keep lines under 80 chars.
21590         * snames.adb: Likewise.
21591         * treepr.ads: Likewise.
21593         * Makefile.in (decl.o): Include gt-ada-<filename>.h.
21594         (misc.o): Likewise.
21595         (utils.o): Include gt-ada-<filename>.h and gtype-ada.h.
21596         * config-lang.in (gtfiles): New.
21597         * decl.c: Use gengtype for roots.
21598         * gigi.h: Use gengtype for roots.
21599         * trans.c: Use gengtype for roots.
21600         * utils.c: Use gengtype for roots, marking.  Include gtype-ada.h.
21602 2002-06-02  Gabriel Dos Reis  <gdr@codesourcery.com>
21604         * misc.c (gnat_init): Adjust setting of internal_error_function.
21606 2002-06-01  Joseph S. Myers  <jsm28@cam.ac.uk>
21608         * gnat_ug.texi: Use @ifnottex instead of @ifinfo.
21609         * gnat_ug_unx.texi, gnat_ug_vms.texi, gnat_ug_vxw.texi,
21610         gnat_ug_wnt.texi: Regenerate.
21612 2002-05-31  Florian Weimer  <fw@deneb.enyo.de>
21614         * 5ntaprop.adb (with System.OS_Primitives): Remove.
21616         * cstreams.c (max_path_len): Move from here ...
21617         * adaint.c (__gnat_max_path_len): ... to here.
21618         * adaint.c (__gnat_max_path_len): Declare.
21619         * g-dirope.adb (Max_Path): Adjust.
21620         * g-os_lib.adb (Normalize_Pathname.Max_Path): Adjust.
21621         * i-cstrea.ads (max_path_len): Adjust.
21622         * osint.adb (Get_RTS_Search_Dir.Max_Path): Adjust.
21623         * xr_tabls.adb (Dir_Name.Max_Path: Adjust.
21625         * Makefile.in, Make-lang.in: Documentation is now built in
21626         Make-lang.in.  Store Info and generated Texinfo files in the
21627         source directory.
21628         * gnat_ug.texi: Remove CVS keywords, correct version number.
21629         Set file name correctly.
21631         * gnat_ug_*.texi: Add.
21632         * .cvsignore: Ignore generated Texinfo files.
21634 2002-05-30  Zack Weinberg  <zack@codesourcery.com>
21636         * ada.h: Add MI guard macro.
21637         (SUBTYPE): Define constants with an anonymous enum, not static
21638         const variables.
21639         (IN): Cast constants to appropriate type before use.
21641 2002-05-26  Joseph S. Myers  <jsm28@cam.ac.uk>
21643         * gnatvsn.ads (Gnat_Version_String): Change to "3.2 20020526
21644         (experimental)".
21646 2002-05-23  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
21648         * Make-lang.in (CP, ECHO): Copy from Makefile.in.
21649         (X_ADA_CFLAGS, T_ADA_CFLAGS, X_ADAFLAGS, T_ADAFLAGS): Likewise.
21650         (ALL_ADAFLAGS, FORCE_DEBUG_ADAFLAGS, ADA_CFLAGS): Likewise.
21651         (ALL_ADA_CFLAGS): Likewise.
21652         (ADA_INCLUDES): Likewise.
21653         Adapt for new working dir.
21654         (GNATBIND): Use Makefile.in version.
21655         (.SUFFIXES): Copy from Makefile.in.
21656         (ada-warn): Define.
21657         (.adb.o, .ads.o): Copy from Makefile.in.
21658         Added $(OUTPUT_OPTION).
21659         (GNAT1_C_OBJS): Moved from Makefile.in.
21660         Prefix with ada subdir.
21661         (GNAT_ADA_OBJS, GNAT1_ADA_OBJS, GNAT1_OBJS, GNATBIND_OBJS): Likewise.
21662         (EXTRA_GNAT1_OBJS): Moved from Makefile.in.
21663         Adapt for new working dir.
21664         (EXTRA_GNATBIND_OBJS): Likewise.
21665         (ADA_BACKEND): Moved from Makefile.in.
21666         Renamed to avoid conflict with global BACKEND.
21667         Use that one.
21668         (TARGET_ADA_SRCS): Moved from Makefile.in.
21669         (gnat1$(exeext)): Replaced recursive rule with Makefile.in version.
21670         Use ADA_BACKEND.
21671         (gnatbind$(exeext)): Replaced recursive rule with Makefile.in version.
21672         (ada_extra_files): Moved from Makefile.in.
21673         Prefix with ada subdir.
21674         (ada/b_gnat1.c, ada/b_gnat1.o, ada/b_gnatb.c, ada/b_gnatb.o): Likewise.
21675         (ada/treeprs.ads, ada/einfo.h, ada/sinfo.h, ada/nmake.adb): Likewise.
21676         (ada/nmake.ads): Likewise.
21677         (update-sources): Moved from Makefile.in.
21678         Prefix with ada subdir.
21679         (ada/sdefault.adb, ada/stamp-sdefault, ada/sdefault.o): Likewise.
21680         (ADA_TREE_H): Likewise.
21681         (ada/a-except.o, ada/s-assert.o, ada/s-memory.o): Likewise.
21682         (ada/memtrack.o): Likewise.
21683         (ada/adadecode.o): Likewise.
21684         Update dependencies.
21685         (ada/adaint.o): New.
21686         (ada/argv.o): Moved from Makefile.in.
21687         Prefix with ada subdir.
21688         Update dependencies.
21689         (ada/cstreams.o, ada/exit.o, ada/final.o, ada/link.o): Likewise.
21690         (ada/cio.o, ada/init.o, ada/raise.o, ada/tracebak.o): Likewise.
21691         (ada/cuintp.o, ada/decl.o, ada/misc.o): Moved from Makefile.in.
21692         Prefix with ada subdir.
21693         (ada/targtyps.o, ada/trans.o, ada/utils.o, ada/utils2.o): Likewise.
21694         (GNAT DEPENDENCIES): Regenerate.
21695         * Makefile.in (MACHMODE_H, RTL_H, TREE_H): Removed, provided by
21696         toplevel Makefile.in.
21697         (EXTRA_GNAT1_OBJS, EXTRA_GNATBIND_OBJS): Removed.
21698         (TARGET_ADA_SRCS): Removed.
21699         (GNAT1_C_OBJS, GNAT_ADA_OBJS, GNAT1_ADA_OBJS, GNAT1_OBJS): Likewise.
21700         (GNATBIND_OBJS): Likewise.
21701         (ADA_INCLUDE_DIR, ADA_RTL_OBJ_DIR): Moved here.
21702         (BACKEND): Removed.
21703         (../gnat1$(exeext), ../gnatbind$(exeext)): Likewise.
21704         (TREE_H): Likewise.
21705         (ada_extra_files): Likewise.
21706         (b_gnat1.c, b_gnat1.o, b_gnatb.c, b_gnatb.o): Likewise.
21707         (treeprs.ads, einfo.h, sinfo.h, nmake.adb, nmake.ads): Likewise.
21708         (update-sources): Likewise.
21709         (sdefault.adb, stamp-sdefault, sdefault.o): Likewise
21710         (ADA_TREE_H): Likewise.
21711         (adadecoce.o): Likewise.
21712         (cuintp.o, decl.o, misc.o, trans.o, utils.o, utils2.o): Likewise.
21713         (GNAT DEPENDENCIES): Likewise.
21715 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
21717         * Makefile.adalib: Allow for PWDCMD to override hardcoded pwd.
21718         * Makefile.in: Likewise.
21720 2002-05-14  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
21722         * Make-lang.in (gnat1$(exeext), gnatbind$(exeext), gnattools):
21723         Restore $(CONFIG_H) and prefix.o dependencies.
21724         (ada.stage[1-4]): Depend on stage?-start.
21726         * Makefile.in (b_gnatb.c): Depend on interfac.o.
21728 2002-05-02  Jim Wilson  <wilson@redhat.com>
21730         * utils.c (finish_record_type): Change record_size to record_type.
21732 2001-05-02  John David Anglin  <dave@hiauly1.hia.nrc.ca>
21734         * ada/Makefile.in (X_ADA_CFLAGS, T_ADA_CFLAGS): New fragment overrides.
21735         (ALL_ADA_CFLAGS): Define.  Replace ADA_CFLAGS with ALL_ADA_CFLAGS in
21736         ALL_ADAFLAGS, MOST_ADAFLAGS, and all compilations using CC.
21738 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
21740         * misc.c (gnat_parse_file): Update.
21742 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
21744         * misc.c (gnat_init): Don't set lang_attribute_common.
21746 2002-04-21  Joseph S. Myers  <jsm28@cam.ac.uk>
21748         * gnat_rm.texi: Use @ifnottex instead of @ifinfo.
21750 2002-04-21  Florian Weimer  <fw@deneb.enyo.de>
21752         * gnat_ug.texi: New file.
21754         * gnat_rm.texi: Do not include texiplus.texi.  Include fdl.texi
21755         instead of gfdl.texi
21757         * xgnatug.adb, ug_words: New files.
21759         * Makefile.in (doc, dvi): New targets.  Build gnat_ug_*,
21760         gnat_rm and gnat-style manuals.
21762 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
21764         * gigi.h (incomplete_type_error): Remove.
21765         * utils.c (incomplete_type_error): Remove.
21767 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
21769         * trans.c (tree_transform): Add has_scope argument to
21770         expand_start_stmt_expr.
21772 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
21774         * gigi.h (truthvalue_conversion): Rename.
21775         * misc.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
21776         * trans.c (tree_transform): Update.
21777         * utils2.c (truthvalue_conversion): Rename, update.
21778         (build_binary_op, build_unary_op): Update.
21780 2002-04-04  Laurent Guerby  <guerby@acm.org>
21782         * make.adb: Implement -margs, remove restriction about file name placement.
21783         * makeusg.adb: Documentation update.
21784         * Makefile.in (TOOLS_FLAGS_TO_PASS): Add VPATH=$(fsrcdir).
21785         * Makefile.in (gnattools3): Comment out, gnatmem does not build without libaddr2line.
21787 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
21789         * utils.c (create_subprog_decl): Use SET_DECL_ASSEMBLER_NAME.
21790         (builtin_function): Similarly.
21792 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
21794         * decl.c (gnat_to_gnu_entity): Update.
21795         * gigi.h (mark_addressable): Rename.
21796         * misc.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
21797         * trans.c (tree_transform): Update.
21798         * utils.c (create_var_decl): Update.
21799         * util2.c (build_binary_op, build_unary_op,
21800         fill_vms_descriptor): Update.
21801         (mark_addressable): Rename, update.
21803 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
21805         * gigi.h (unsigned_type, signed_type, signed_or_unsigned_type):
21806         Rename.
21807         * misc.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
21808         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
21809         * trans.c (tree_transform, convert_with_check): Update.
21810         * utils.c (unsigned_type, signed_type, signed_or_unsigned_type):
21811         Rename.
21813 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
21815         * gigi.h (finish_incomplete_decl): Rename.
21816         * misc.c (LANG_HOOKS_FINISH_INCOMPLETE_DECL): Redefine.
21817         * utils.c (gnat_init_decl_processing): Don't set hook.
21818         (finish_incomplete_decl): Rename.
21820 2002-03-29  Andreas Schwab  <schwab@suse.de>
21822         * Makefile.in: Pass VPATH=$(fsrcdir) when calling make in rts
21823         directory.
21825 2001-03-28  Robert Dewar <dewar@gnat.com>
21827         * checks.ads:
21828         (Remove_Checks): New procedure
21830         * checks.adb:
21831         (Remove_Checks): New procedure
21833         * exp_util.adb:
21834         Use new Duplicate_Subexpr functions
21835         (Duplicate_Subexpr_No_Checks): New procedure
21836         (Duplicate_Subexpr_No_Checks_Orig): New procedure
21837         (Duplicate_Subexpr): Restore original form (checks duplicated)
21838         (Duplicate_Subexpr): Call Remove_Checks
21840         * exp_util.ads:
21841         (Duplicate_Subexpr_No_Checks): New procedure
21842         (Duplicate_Subexpr_No_Checks_Orig): New procedure
21843         Add 2002 to copyright notice
21845         * sem_util.adb: Use new Duplicate_Subexpr functions
21847         * sem_eval.adb:
21848         (Eval_Indexed_Component): This is the place to call
21849         Constant_Array_Ref and to replace the value. We simply merge
21850         the code of this function in here, since it is now no longer
21851         used elsewhere. This fixes the problem of the back end not
21852         realizing we were clever enough to see that this was
21853         constant.
21854         (Expr_Val): Remove call to Constant_Array_Ref
21855         (Expr_Rep_Val): Remove call to Constant_Array_Ref
21856         Minor reformatting
21857         (Constant_Array_Ref): Deal with string literals (patch
21858         suggested by Zack Weinberg on the gcc list)
21860 2001-03-28  Ed Schonberg <schonber@gnat.com>
21862         * exp_util.adb: Duplicate_Subexpr_No_Checks_Orig =>
21863         Duplicate_Subexpr_Move_Checks.
21865         * exp_util.ads: Duplicate_Subexpr_No_Checks_Orig =>
21866         Duplicate_Subexpr_Move_Checks.
21868         * sem_eval.adb: (Constant_Array_Ref): Verify that constant
21869         value of array exists before retrieving it (it may a private
21870         protected component in a function).
21872 2002-03-28   Geert Bosch <bosch@gnat.com>
21874         * prj-pp.adb : New file.
21876         * prj-pp.ads : New file.
21878 2002-03-28  Andreas Jaeger  <aj@suse.de>
21880         * Makefile.in (stamp-sdefault): Fix path for Makefile.
21882 2002-03-28  Neil Booth  <neil@daikokuya.demon.co.uk>
21884         * misc.c (gnat_expand_expr): Move prototype.
21886 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
21888         * misc.c (insert_default_attributes): Remove.
21890 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
21892         * misc.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
21893         (gnat_init): Don't set hook.
21894         (gnat_expand_expr): Fix prototype.
21896 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
21898         * misc.c (ggc_p): Remove.
21900 2002-03-27  Geert Bosch  <bosch@gnat.com>
21902         * prj-makr.ads, prj-makr.adb : New files.
21904 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
21906         * misc.c (LANG_HOOKS_MARK_TREE): Redefine.
21907         (lang_mark_tree): Make static, rename.
21909 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
21911         * misc.c (maybe_build_cleanup): Remove.
21913 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
21915         * gigi.h (yyparse): Remove.
21917 2002-03-23  Florian Weimer  <fw@deneb.enyo.de>
21919         * gnat_rm.texi: Sync with ACT version.
21920           (From Ben Brosgol <brosgol@gnat.com>)
21922 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
21924         * misc.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
21925         (gnat_init): Remove old hook.
21927 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
21929         * misc.c (LANG_HOOKS_PARSE_FILE): Redefine.
21930         (yyparse): Rename gnat_parse_file.
21932 2002-03-14  Geoffrey Keating  <geoffk@redhat.com>
21934         Delete all lines containing "$Revision:".
21935         * xeinfo.adb: Don't look for revision numbers.
21936         * xnmake.adb: Likewise.
21937         * xsinfo.adb: Likewise.
21938         * xsnames.adb: Likewise.
21939         * xtreeprs.adb: Likewise.
21941 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21943         * misc.c (gnat_tree_code_type, gnat_tree_code_length,
21944         gnat_tree_code_name): Delete.
21945         (tree_code_type, tree_code_length, tree_code_name): Define.
21946         (gnat_init): Don't try to copy into the various tree_code
21947         arrays.
21949 2002-03-11  Richard Henderson  <rth@redhat.com>
21951         * Makefile.in (.NOTPARALLEL): Add fake tag.
21953 2002-03-07  Geert Bosch  <bosch@gnat.com>
21955         * adadecode.c, adadecode.h, aux-io.c, s-traces.adb, s-traces.ads,
21956         s-tratas.adb, s-tratas.ads, sinput-d.adb, sinput-d.ads,
21957         switch-b.adb, switch-b.ads, switch-c.adb, switch-c.ads,
21958         switch-m.adb, switch-m.ads : New files.
21960 2002-03-07  Geert Bosch  <bosch@gnat.com>
21962         * 41intnam.ads, 42intnam.ads, 4aintnam.ads, 4cintnam.ads,
21963         4dintnam.ads, 4gintnam.ads, 4hintnam.ads, 4lintnam.ads,
21964         4mintnam.ads, 4pintnam.ads, 4rintnam.ads, 4sintnam.ads,
21965         4uintnam.ads, 4vcalend.adb, 4zintnam.ads, 52system.ads,
21966         5amastop.adb, 5asystem.ads, 5ataprop.adb, 5atpopsp.adb,
21967         5avxwork.ads, 5bosinte.adb, 5bsystem.ads, 5esystem.ads,
21968         5fsystem.ads, 5ftaprop.adb, 5ginterr.adb, 5gmastop.adb,
21969         5gsystem.ads, 5gtaprop.adb, 5gtasinf.adb, 5gtasinf.ads,
21970         5hparame.ads, 5hsystem.ads, 5htaprop.adb, 5htraceb.adb,
21971         5itaprop.adb, 5ksystem.ads, 5kvxwork.ads, 5lintman.adb,
21972         5lsystem.ads, 5mvxwork.ads, 5ninmaop.adb, 5nosinte.ads,
21973         5ntaprop.adb, 5ointerr.adb, 5omastop.adb, 5oosinte.adb,
21974         5osystem.ads, 5otaprop.adb, 5otaspri.ads, 5pvxwork.ads,
21975         5qtaprop.adb, 5sintman.adb, 5ssystem.ads, 5staprop.adb,
21976         5stpopse.adb, 5svxwork.ads, 5tosinte.ads, 5uintman.adb,
21977         5vasthan.adb, 5vinmaop.adb, 5vinterr.adb, 5vintman.adb,
21978         5vmastop.adb, 5vparame.ads, 5vsystem.ads, 5vtaprop.adb,
21979         5vtpopde.adb, 5wmemory.adb, 5wsystem.ads, 5wtaprop.adb,
21980         5ysystem.ads, 5zinterr.adb, 5zintman.adb, 5zosinte.adb,
21981         5zosinte.ads, 5zsystem.ads, 5ztaprop.adb, 6vcpp.adb, 6vcstrea.adb,
21982         7sintman.adb, 7staprop.adb, 7stpopsp.adb, 9drpc.adb,
21983         Make-lang.in, Makefile.in, a-caldel.adb, a-comlin.ads,
21984         a-dynpri.adb, a-except.adb, a-except.ads, a-finali.adb,
21985         a-ncelfu.ads, a-reatim.adb, a-retide.adb, a-stream.ads,
21986         a-ststio.adb, a-ststio.ads, a-stwifi.adb, a-tags.adb, a-tasatt.adb,
21987         a-textio.adb, a-tideau.adb, a-tiflau.adb, a-tigeau.adb,
21988         a-tigeau.ads, a-tiinau.adb, a-timoau.adb, a-witeio.adb,
21989         a-wtdeau.adb, a-wtenau.adb, a-wtflau.adb, a-wtgeau.adb,
21990         a-wtgeau.ads, a-wtinau.adb, a-wtmoau.adb, ada-tree.def, ada-tree.h,
21991         adaint.c, adaint.h, ali-util.adb, ali.adb, ali.ads, atree.adb,
21992         atree.ads, atree.h, back_end.adb, bcheck.adb, bindgen.adb,
21993         bindusg.adb, checks.adb, comperr.adb, config-lang.in, csets.adb,
21994         csets.ads, cstand.adb, cstreams.c, debug.adb, debug.ads, decl.c,
21995         einfo.adb, einfo.ads, einfo.h, elists.h, errout.adb, errout.ads,
21996         eval_fat.adb, exp_aggr.adb, exp_attr.adb, exp_ch11.adb,
21997         exp_ch12.adb, exp_ch13.adb, exp_ch2.adb, exp_ch3.adb, exp_ch3.ads,
21998         exp_ch4.adb, exp_ch5.adb, exp_ch6.adb, exp_ch7.adb, exp_ch7.ads,
21999         exp_ch9.adb, exp_ch9.ads, exp_dbug.adb, exp_dbug.ads, exp_disp.ads,
22000         exp_dist.adb, exp_fixd.adb, exp_intr.adb, exp_pakd.adb,
22001         exp_prag.adb, exp_strm.adb, exp_util.adb, exp_util.ads,
22002         expander.adb, expect.c, fe.h, fmap.adb, fmap.ads, fname-uf.adb,
22003         freeze.adb, frontend.adb, g-awk.adb, g-cgideb.adb, g-comlin.adb,
22004         g-comlin.ads, g-debpoo.adb, g-dirope.adb, g-dirope.ads,
22005         g-dyntab.adb, g-expect.adb, g-expect.ads, g-io.ads, g-io_aux.adb,
22006         g-io_aux.ads, g-locfil.adb, g-locfil.ads, g-os_lib.adb,
22007         g-os_lib.ads, g-regexp.adb, g-regpat.adb, g-socket.adb,
22008         g-socket.ads, g-spipat.adb, g-table.adb, g-trasym.adb,
22009         g-trasym.ads, gigi.h, gmem.c, gnat1drv.adb, gnatbind.adb, gnatbl.c,
22010         gnatchop.adb, gnatcmd.adb, gnatdll.adb, gnatfind.adb, gnatlbr.adb,
22011         gnatlink.adb, gnatls.adb, gnatmem.adb, gnatprep.adb, gnatvsn.ads,
22012         gnatxref.adb, hlo.adb, hostparm.ads, i-cobol.adb, i-cpp.adb,
22013         i-cstrea.ads, i-cstrin.adb, i-pacdec.adb, i-vxwork.ads,
22014         impunit.adb, init.c, inline.adb, io-aux.c, layout.adb, lib-load.adb,
22015         lib-util.adb, lib-writ.adb, lib-writ.ads, lib-xref.adb,
22016         lib-xref.ads, lib.adb, lib.ads, make.adb, makeusg.adb, mdll.adb,
22017         memroot.adb, misc.c, mlib-tgt.adb, mlib-utl.adb, mlib-utl.ads,
22018         mlib.adb, namet.adb, namet.ads, namet.h, nlists.h, nmake.adb,
22019         nmake.ads, nmake.adt, opt.adb, opt.ads, osint.adb, osint.ads,
22020         output.adb, output.ads, par-ch2.adb, par-ch3.adb, par-ch5.adb,
22021         par-prag.adb, par-tchk.adb, par-util.adb, par.adb, prj-attr.adb,
22022         prj-dect.adb, prj-env.adb, prj-env.ads, prj-nmsc.adb, prj-part.adb,
22023         prj-proc.adb, prj-strt.adb, prj-tree.adb, prj-tree.ads, prj.adb,
22024         prj.ads, raise.c, raise.h, repinfo.adb, restrict.adb, restrict.ads,
22025         rident.ads, rtsfind.adb, rtsfind.ads, s-arit64.adb, s-asthan.adb,
22026         s-atacco.adb, s-atacco.ads, s-auxdec.adb, s-crc32.adb, s-crc32.ads,
22027         s-direio.adb, s-fatgen.adb, s-fileio.adb, s-finimp.adb,
22028         s-gloloc.adb, s-gloloc.ads, s-interr.adb, s-mastop.adb,
22029         s-mastop.ads, s-memory.adb, s-parame.ads, s-parint.adb,
22030         s-pooglo.adb, s-pooloc.adb, s-rpc.adb, s-secsta.adb, s-sequio.adb,
22031         s-shasto.adb, s-soflin.adb, s-soflin.ads, s-stache.adb,
22032         s-taasde.adb, s-taasde.ads, s-tadeca.adb, s-tadeca.ads,
22033         s-tadert.adb, s-tadert.ads, s-taenca.adb, s-taenca.ads,
22034         s-taprob.adb, s-taprop.ads, s-tarest.adb, s-tasdeb.adb,
22035         s-tasini.adb, s-tasini.ads, s-taskin.adb, s-taskin.ads,
22036         s-tasque.adb, s-tasque.ads, s-tasren.adb, s-tasren.ads,
22037         s-tassta.adb, s-tasuti.adb, s-tasuti.ads, s-tataat.adb,
22038         s-tataat.ads, s-tpoben.adb, s-tpoben.ads, s-tpobop.adb,
22039         s-tposen.adb, s-tposen.ads, s-traceb.adb, s-traceb.ads,
22040         s-unstyp.ads, s-widenu.adb, scn-nlit.adb, scn.adb, sem.adb,
22041         sem_aggr.adb, sem_attr.adb, sem_attr.ads, sem_case.adb,
22042         sem_ch10.adb, sem_ch11.adb, sem_ch11.ads, sem_ch12.adb,
22043         sem_ch13.adb, sem_ch13.ads, sem_ch2.adb, sem_ch3.adb, sem_ch3.ads,
22044         sem_ch4.adb, sem_ch5.adb, sem_ch6.adb, sem_ch6.ads, sem_ch7.adb,
22045         sem_ch8.adb, sem_ch8.ads, sem_ch9.adb, sem_disp.adb, sem_dist.adb,
22046         sem_elab.adb, sem_elim.adb, sem_elim.ads, sem_eval.adb,
22047         sem_intr.adb, sem_mech.adb, sem_prag.adb, sem_res.adb,
22048         sem_type.adb, sem_util.adb, sem_util.ads, sem_vfpt.adb,
22049         sem_warn.adb, sinfo.adb, sinfo.ads, sinfo.h, sinput-l.adb,
22050         sinput-l.ads, sinput.adb, sinput.ads, snames.adb, snames.ads,
22051         snames.h, sprint.adb, sprint.ads, stringt.adb, stringt.ads,
22052         stringt.h, style.adb, switch.adb, switch.ads, sysdep.c, system.ads,
22053         table.adb, targparm.adb, targparm.ads, targtyps.c, tbuild.adb,
22054         tbuild.ads, tracebak.c, trans.c, tree_gen.adb, tree_io.adb,
22055         treepr.adb, treepr.ads, treeprs.ads, treeprs.adt, ttypes.ads,
22056         types.adb, types.ads, types.h, uintp.ads, urealp.ads, usage.adb,
22057         utils.c, utils2.c, validsw.adb, xnmake.adb, xr_tabls.adb,
22058         xr_tabls.ads, xref_lib.adb, xref_lib.ads : Merge in ACT changes.
22060         * 1ssecsta.adb, 1ssecsta.ads, a-chlat9.ads, a-cwila9.ads,
22061         g-enblsp.adb, g-md5.adb, g-md5.ads, gnatname.adb, gnatname.ads,
22062         mkdir.c, osint-b.adb, osint-b.ads, osint-c.adb, osint-c.ads,
22063         osint-l.adb, osint-l.ads, osint-m.adb, osint-m.ads : New files
22065         * 3lsoccon.ads, 5qparame.ads, 5qvxwork.ads, 5smastop.adb,
22066         5zparame.ads, gnatmain.adb, gnatmain.ads, gnatpsys.adb : Removed
22068         * mdllfile.adb, mdllfile.ads, mdlltool.adb, mdlltool.ads : Renamed
22069         to mdll-fil.ad[bs] and mdll-util.ad[bs]
22071         * mdll-fil.adb, mdll-fil.ads, mdll-utl.adb, mdll-utl.ads : Renamed
22072         from mdllfile.ad[bs] and mdlltool.ad[bs]
22074 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
22076         * utils.c (init_gnat_to_gnu, init_gigi_decls): Use ARRAY_SIZE in
22077         lieu of explicit sizeof/sizeof.
22079 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
22081         * misc.c (copy_lang_decl): Remove.
22083 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
22085         * misc.c: Delete traditional-mode-related code copied from the
22086         C front end but not used, or used only to permit the compiler
22087         to link.
22089 2002-02-07  Richard Henderson  <rth@redhat.com>
22091         * adaint.c (__gnat_to_gm_time): First arg is int, not time_t.
22092         * adaint.h (__gnat_to_gm_time): Update prototype.
22094 2002-01-30  Richard Henderson  <rth@redhat.com>
22096         * trans.c (tree_transform) [N_Loop_Statement]: Use
22097         expand_exit_loop_top_cond.
22099 2001-12-23  Richard Henderson  <rth@redhat.com>
22101         * utils.c (end_subprog_body): Push GC context around
22102         rest_of_compilation for nested functions.
22104 2001-12-23  Richard Henderson  <rth@redhat.com>
22106         * 5nosinte.ads: Get definition of "int" from Interfaces.C.
22108 2001-12-23  Florian Weimer  <fw@deneb.enyo.de>
22110         * gnat-style.texi (Declarations and Types): Remove ancient style
22111         rule which was mandated by code generation issues.
22113         * gnat-style.texi (header): Add @dircategory, @direntry.
22114         (title page): Remove date.
22115         (general) Add @./@: where approriate, and two spaces after the
22116         full stop at the end of a sentence.  Use @samp markup when
22117         referring concrete lexical entities (keywords, attribute names
22118         etc.), and @syntax for ARM grammar elements. Use @r for English
22119         text in comments.  Use @emph for emphasis.  Change "if-statements"
22120         etc. to "if statements" (without @samp). Break long lines.  Make
22121         casing of section names consistent.
22122         (Identifiers): Use @samp markup for variable names.
22123         (Comments): Use @samp markup for comment characters. Line-end
22124         comments may follow any Ada code, not just statements.  Fix
22125         misspelling of "Integer" as "integer".
22126         (Loop statements): Do not use variable name "I", use "J".
22127         (Subprogram Declarations): Document alignment.
22128         (Subprogram Bodies, Block statements): Document empty line before
22129         "begin".
22131 2001-12-22  Florian Weimer  <fw@deneb.enyo.de>
22133         * make.adb (Add_Switch): Make Generic_Position a procedure.  The
22134         function approach did not work well because of a side effect (the
22135         function call could reallocate the table which was being indexed
22136         using its result). Fixes ada/4851.
22138 2001-12-19  Robert Dewar <dewar@gnat.com>
22140         * bindgen.adb: Minor reformatting
22142         * cstand.adb: Minor reformatting
22144         * fmap.adb: Minor reformatting
22145         Change name from Add for Add_To_File_Map (Add is much too generic)
22146         Change Path_Name_Of to Mapped_Path_Name
22147         Change File_Name_Of to Mapped_File_Name
22148         Fix copyright dates in header
22150         * fmap.ads:
22151         Change name from Add for Add_To_File_Map (Add is much too generic)
22152         Change Path_Name_Of to Mapped_Path_Name
22153         Change File_Name_Of to Mapped_File_Name
22154         Fix copyright dates in header
22156         * fname-uf.adb: Minor reformatting.  New names of stuff in Fmap.
22157         Add use clause for Fmap.
22159         * make.adb: Minor reformatting
22161         * osint.adb: Minor reformatting.  Change of names in Fmap.
22162         Add use clause for Fmap.
22164         * prj-env.adb: Minor reformatting
22166         * prj-env.ads: Minor reformatting
22168         * switch.adb: Minor reformatting.  Do proper raise of Bad_Switch if
22169         error found (there were odd exceptions to this general rule in
22170         -gnatec/-gnatem processing)
22172 2001-12-19  Olivier Hainque <hainque@gnat.com>
22174         * raise.c (__gnat_eh_personality): Exception handling personality
22175         routine for Ada.  Still in rough state, inspired from the C++ version
22176         and still containing a bunch of debugging artifacts.
22177         (parse_lsda_header, get_ttype_entry): Local (static) helpers, also
22178         inspired from the C++ library.
22180         * raise.c (eh_personality): Add comments. Part of work for the GCC 3
22181         exception handling integration.
22183 2001-12-19  Arnaud Charlet <charlet@gnat.com>
22185         * Makefile.in: Remove use of 5smastop.adb which is obsolete.
22186         (HIE_SOURCES): Add s-secsta.ad{s,b}.
22187         (HIE_OBJS): Add s-fat*.o
22188         (RAVEN_SOURCES): Remove files that are no longer required. Add
22189         interrupt handling files.
22190         (RAVEN_MOD): Removed, no longer needed.
22192 2001-12-19  Robert Dewar <dewar@gnat.com>
22194         * a-ngelfu.adb: Remove ??? comment for inappropriate Inline_Always
22195         Add 2001 to copyright date
22197         * g-regpat.adb: Change pragma Inline_Always to Inline. There is no
22198         need to force universal inlining for these cases.
22200 2001-12-19  Arnaud Charlet <charlet@gnat.com>
22202         * s-taprob.adb: Minor clean ups so that this unit can be used in
22203         Ravenscar HI.
22205         * exp_ch7.adb: Allow use of secondary stack in HI mode.
22206         Disallow it when pragma Restrictions (No_Secondary_Stack) is specified.
22208 2001-12-19  Vincent Celier <celier@gnat.com>
22210         * prj-tree.ads (Project_Node_Record): Add comments for components
22211         Pkg_Id and Case_Insensitive.
22213 2001-12-19  Pascal Obry <obry@gnat.com>
22215         * g-socket.adb: Minor reformatting. Found while reading code.
22217 2001-12-19  Robert Dewar <dewar@gnat.com>
22219         * prj-tree.ads: Minor reformatting
22221 2001-12-20  Joseph S. Myers  <jsm28@cam.ac.uk>
22223         * config-lang.in (diff_excludes): Remove.
22225 2001-12-17  Ed Schonberg <schonber@gnat.com>
22227         * sem_res.adb (Resolve_Selected_Component): do not generate a
22228         discriminant check if the selected component is a component of
22229         the argument of an initialization procedure.
22231         * trans.c (tree_transform, case of arithmetic operators): If result
22232         type is private, the gnu_type is the base type of the full view,
22233         given that the full view itself may be a subtype.
22235 2001-12-17  Robert Dewar <dewar@gnat.com>
22237         * sem_res.adb: Minor reformatting
22239         * trans.c (tree_transform, case N_Real_Literal): Add missing third
22240         parameter in call to Machine (unknown horrible effects from this
22241         omission).
22243         * urealp.h: Add definition of Round_Even for call to Machine
22244         Add third parameter for Machine
22246 2001-12-17  Ed Schonberg <schonber@gnat.com>
22248         * sem_warn.adb (Check_One_Unit): Suppress warnings completely on
22249         predefined units in No_Run_Time mode.
22251 2001-12-17  Richard Kenner <kenner@gnat.com>
22253         * misc.c (insn-codes.h): Now include.
22255 2001-12-17  Olivier Hainque <hainque@gnat.com>
22257         * a-except.adb: Preparation work for future integration of the GCC 3
22258         exception handling mechanism
22259         (Notify_Handled_Exception, Notify_Unhandled_Exception): New routines
22260         to factorize previous code sequences and make them externally callable,
22261         e.g. for the Ada personality routine when the GCC 3 mechanism is used.
22262         (Propagate_Exception, Raise_Current_Excep, Raise_From_Signal_Handler):
22263         Use the new notification routines.
22265 2001-12-17  Emmanuel Briot <briot@gnat.com>
22267         * prj-tree.ads (First_Choice_Of): Document the when others case
22269 2001-12-17  Arnaud Charlet <charlet@gnat.com>
22271         * bindgen.adb (Gen_Ada_Init_*): Set priority of environment task in
22272         HI-E mode, in order to support Ravenscar profile properly.
22274         * cstand.adb (Create_Standard): Duration is a 32 bit type in HI-E
22275         mode on 32 bits targets.
22277 2001-12-17  Vincent Celier <celier@gnat.com>
22279         * fmap.adb: Initial version.
22281         * fmap.ads: Initial version.
22283         * fname-uf.adb (Get_File_Name): Use mapping if unit name mapped.
22284         If search is successfully done, add to mapping.
22286         * frontend.adb: Initialize the mapping if a -gnatem switch was used.
22288         * make.adb:
22289         (Gnatmake): Add new local variable Mapping_File_Name.
22290          Create mapping file when using project file(s).
22291          Delete mapping file before exiting.
22293         * opt.ads (Mapping_File_Name): New variable
22295         * osint.adb (Find_File): Use path name found in mapping, if any.
22297         * prj-env.adb (Create_Mapping_File): New procedure
22299         * prj-env.ads (Create_Mapping_File): New procedure.
22301         * switch.adb (Scan_Front_End_Switches): Add processing for -gnatem
22302         (Mapping_File)
22304         * usage.adb: Add entry for new switch -gnatem.
22306         * Makefile.in: Add dependencies for fmap.o.
22308 2001-12-17  Ed Schonberg <schonber@gnat.com>
22310         * sem_ch10.adb (Analyze_With_Clause): Retrieve proper entity when unit
22311         is a package instantiation rewritten as a package body.
22312         (Install_Withed_Unit): Undo previous change, now redundant.
22314 2001-12-17  Gary Dismukes <dismukes@gnat.com>
22316         * layout.adb:
22317         (Compute_Length): Move conversion to Unsigned to callers.
22318         (Get_Max_Size): Convert Len expression to Unsigned after calls to
22319         Compute_Length and Determine_Range.
22320         (Layout_Array_Type): Convert Len expression to Unsigned after calls to
22321         Compute_Length and Determine_Range.
22322         Above changes fix problem with length computation for supernull arrays
22323         where Max (Len, 0) wasn't getting applied due to the Unsigned
22324         conversion used by Compute_Length.
22326 2001-12-17  Arnaud Charlet <charlet@gnat.com>
22328         * rtsfind.ads:
22329         (OK_To_Use_In_No_Run_Time_Mode): Allow Ada.Exceptions and
22330          System.Secondary_Stack.
22331         (OK_To_Use_In_Ravenscar_Mode): New table needed to implement Ravenscar
22332          in HI-E mode.
22333         Remove unused entity RE_Exception_Data.
22335         * rtsfind.adb (RTE): Allow Ravenscar Profile in HI mode.
22337         * rident.ads (No_Secondary_Stack): New restriction.
22339 2001-12-17  Joel Brobecker <brobecke@gnat.com>
22341         * gnat_rm.texi: Fix minor typos. Found while reading the section
22342         regarding "Bit_Order Clauses" that was sent to a customer.
22343         Very interesting documentation!
22345 2001-12-17  Robert Dewar <dewar@gnat.com>
22347         * sem_case.adb (Choice_Image): Avoid creating improper character
22348         literal names by using the routine Set_Character_Literal_Name. This
22349         fixes bombs in certain error message cases.
22351 2001-12-17  Arnaud Charlet <charlet@gnat.com>
22353         * a-reatim.adb: Minor reformatting.
22355 2001-12-17  Ed Schonberg <schonber@gnat.com>
22357         * sem_ch12.adb (Validate_Derived_Type_Instance): Handle properly the
22358         case where the formal is an extension of another formal in the current
22359         unit or in a parent generic unit.
22361 2001-12-17  Arnaud Charlet <charlet@gnat.com>
22363         * s-tposen.adb: Update comments.  Minor reformatting.
22364         Minor code clean up.
22366         * s-tarest.adb: Update comments.  Minor code reorganization.
22368 2001-12-17  Gary Dismukes <dismukes@gnat.com>
22370         * exp_attr.adb (Attribute_Tag): Suppress expansion of <type_name>'Tag
22371         when Java_VM.
22373 2001-12-17  Robert Dewar <dewar@gnat.com>
22375         * exp_attr.adb: Minor reformatting
22377 2001-12-17  Ed Schonberg <schonber@gnat.com>
22379         * sem_ch3.adb (Build_Derived_Private_Type): Refine check to handle
22380         derivations nested within a child unit: verify that the parent
22381         type is declared in an outer scope.
22383 2001-12-17  Robert Dewar <dewar@gnat.com>
22385         * sem_ch12.adb: Minor reformatting
22387 2001-12-17  Ed Schonberg <schonber@gnat.com>
22389         * sem_warn.adb (Check_One_Unit): In No_Run_Time mode, do not post
22390         warning if current unit is a predefined one, from which bodies may
22391         have been deleted.
22393 2001-12-17  Robert Dewar <dewar@gnat.com>
22395         * eval_fat.ads: Add comment that Round_Even is referenced in Ada code
22396         Fix header format. Add 2001 to copyright date.
22398         * exp_dbug.adb (Get_Encoded_Name): Fix out of bounds reference,
22399         which caused CE during compilation if checks were enabled.
22401 2001-12-17  Vincent Celier <celier@gnat.com>
22403         * make.adb:
22404         (Switches_Of): New function
22405         (Test_If_Relative_Path): New procedure
22406         (Add_Switches): Use new function Switches_Of
22407         (Collect_Arguments_And_Compile): Use new function Switches_Of.
22408         When using a project file, test if there are any relative
22409         search path. Fail if there are any.
22410         (Gnatmake): Only add switches for the primary directory when not using
22411         a project file. When using a project file, change directory to the
22412         object directory of the main project file. When using a project file,
22413         test if there are any relative search path. Fail if there are any.
22414         When using a project file, fail if specified executable is relative
22415         path with directory information, and prepend executable, if not
22416         specified as an absolute path, with the exec directory.  Make sure
22417         that only one -o switch is transmitted to the linker.
22419         * prj-attr.adb (Initialization_Data): Add project attribute Exec_Dir
22421         * prj-nmsc.adb:
22422         (Ada_Check): Get Spec_Suffix_Loc and Impl_Suffix_Loc,
22423         when using a non standard naming scheme.
22424         (Check_Ada_Naming_Scheme): Make sure that error messages
22425         do not raise exceptions.
22426         (Is_Illegal_Append): Return True if there is no dot in the suffix.
22427         (Language_Independent_Check): Check the exec directory.
22429         * prj.adb (Project_Empty): Add new component Exec_Directory
22431         * prj.ads:
22432         (Default_Ada_Spec_Suffix, Default_Ada_Impl_Suffix): Add defaults.
22433         (Project_Data): Add component Exec_Directory
22435         * snames.adb: Updated to match snames.ads revision 1.215
22437         * snames.ads: Added Exec_Dir
22439 2001-12-17  Robert Dewar <dewar@gnat.com>
22441         * make.adb: Minor reformatting
22443         * prj-nmsc.adb: Minor reformatting
22445         * snames.adb: Updated to match snames.ads
22447         * snames.ads: Alphebetize entries for project file
22449 2001-12-17  Ed Schonberg <schonber@gnat.com>
22451         * trans.c (process_freeze_entity): Do nothing if the entity is a
22452         subprogram that was already elaborated.
22454 2001-12-17  Richard Kenner <kenner@gnat.com>
22456         * decl.c (gnat_to_gnu_entity, object): Do not back-annotate Alignment
22457         and Esize if object is referenced via pointer.
22459 2001-12-17  Ed Schonberg <schonber@gnat.com>
22461         * sem_ch3.adb (Analyze_Variant_Part): check that type of discriminant
22462         is discrete before analyzing choices.
22464 2001-12-17  Joel Brobecker <brobecke@gnat.com>
22466         * bindgen.adb (Gen_Output_File_Ada): Generate a new C-like string
22467         containing the name of the Ada Main Program. This string is mainly
22468         intended for the debugger.
22469         (Gen_Output_File_C): Do the equivalent change when generating a C file.
22471 2001-12-17  Robert Dewar <dewar@gnat.com>
22473         * ali.adb: Set new Dummy_Entry field in dependency entry
22475         * ali.ads: Add Dummy_Entry field to source dependency table
22477         * bcheck.adb (Check_Consistency): Ignore dummy D lines
22479         * lib-writ.adb (Writ_ALI): Write dummy D lines for missing source files
22481         * lib-writ.ads: Document dummy D lines for missing files.
22483         * types.ads: (Dummy_Time_Stamp): New value for non-existant files
22485 2001-12-17  Robert Dewar <dewar@gnat.com>
22487         * ali.adb: Type reference does not reset current file.
22489         * ali.adb: Recognize and scan renaming reference
22491         * ali.ads: Add spec for storing renaming references.
22493         * lib-xref.ads: Add documentation for handling of renaming references
22495         * lib-xref.adb: Implement output of renaming reference.
22497         * checks.adb:
22498         (Determine_Range): Document local variables
22499         (Determine_Range): Make sure Hbound is initialized. It looks as though
22500          there could be a real problem here with an uninitialized reference
22501          to Hbound, but no actual example of failure has been found.
22503 2001-12-17  Laurent Pautet <pautet@gnat.com>
22505         * g-socket.ads:
22506         Fix comment of Shutdown_Socket and Close_Socket. These functions
22507         should not fail silently because if they are called twice, this
22508         probably means that there is a race condition in the user program.
22509         Anyway, this behaviour is consistent with the rest of this unit.
22510         When an error occurs, an exception is raised with the error message
22511         as exception message.
22513 2001-12-17  Robert Dewar <dewar@gnat.com>
22515         * frontend.adb: Move call to Check_Unused_Withs from Frontend, so
22516         that it happens before modification of Sloc values for -gnatD.
22518         * gnat1drv.adb: Move call to Check_Unused_Withs to Frontend,
22519         so that it happens before modification of Sloc values for -gnatD.
22521         * switch.adb: Minor reformatting
22523 2001-12-15  Richard Henderson  <rth@redhat.com>
22525         * sem_ch7.adb: Wrap comment.
22527 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
22529         * 5ataprop.adb, 5atpopsp.adb, 5ftaprop.adb, 5gmastop.adb,
22530         5gtaprop.adb, 5htaprop.adb, 5itaprop.adb, 5lintman.adb,
22531         5omastop.adb, 5oosinte.adb, 5otaprop.adb, 5staprop.adb,
22532         5vinterr.adb, 5vtaprop.adb, 5vtpopde.adb, 5wintman.adb,
22533         5wtaprop.adb, 5zinterr.adb, 5ztaprop.adb, 6vcstrea.adb,
22534         7sintman.adb, 7staprop.adb, 9drpc.adb, ChangeLog, Makefile.in,
22535         a-except.adb, a-tags.ads, a-tasatt.adb, a-teioed.adb,
22536         a-textio.ads, a-witeio.ads, a-wtedit.adb, ali.ads, comperr.adb,
22537         cstand.adb, einfo.ads, errout.adb, exp_ch11.adb, exp_ch2.adb,
22538         exp_ch3.adb, exp_ch4.adb, exp_ch5.adb, exp_ch6.adb, exp_ch9.adb,
22539         exp_util.adb, exp_util.ads, fname-uf.adb, g-cgi.ads, g-exctra.ads,
22540         g-expect.ads, g-regist.adb, g-spipat.adb, gnatchop.adb,
22541         gnatlink.adb, gnatls.adb, gnatmain.adb, gnatmem.adb, init.c,
22542         make.adb, make.ads, mdlltool.adb, nlists.ads, osint.ads,
22543         par-ch3.adb, par-ch4.adb, par-ch5.adb, par-ch6.adb, par.adb,
22544         repinfo.adb, s-fatflt.ads, s-fatlfl.ads, s-fatllf.ads,
22545         s-fatsfl.ads, s-finimp.adb, s-finimp.ads, s-interr.adb,
22546         s-secsta.ads, s-shasto.ads, s-stalib.adb, s-stalib.ads,
22547         s-tarest.ads, s-tasdeb.adb, s-tassta.adb, s-tassta.ads,
22548         s-vaflop.ads, scans.ads, scn.adb, sem.ads, sem_aggr.adb,
22549         sem_attr.adb, sem_case.ads, sem_ch10.adb, sem_ch12.adb,
22550         sem_ch13.adb, sem_ch3.adb, sem_ch3.ads, sem_ch5.adb, sem_ch7.adb,
22551         sem_ch8.adb, sem_ch8.ads, sem_type.adb, sem_util.ads, sinfo.ads,
22552         sprint.adb, tbuild.ads, types.ads, utils.c, xeinfo.adb: Fix
22553         spelling errors.
22555 2001-12-14  Vincent Celier <celier@gnat.com>
22557         * osint.adb(Create_Debug_File): When an object file is specified,
22558         put the .dg file in the same directory as the object file.
22560 2001-12-14  Robert Dewar <dewar@gnat.com>
22562         * osint.adb: Minor reformatting
22564         * lib-xref.adb (Output_Instantiation): New procedure to generate
22565         instantiation references.
22567         * lib-xref.ads: Add documentation of handling of generic references.
22569         * ali.adb (Read_Instantiation_Ref): New procedure to read
22570         instantiation references
22572         * ali.ads: Add spec for storing instantiation references
22574         * bindusg.adb: Minor reformatting
22576         * switch.adb: Add entry for Latin-5 (Cyrillic ISO-8859-5)
22578         * usage.adb: Add entry for Latin-5 (Cyrillic ISO-8859-5)
22580         * gnatcmd.adb: Add entry for Latin-5 (Cyrillic ISO-8859-5)
22582         * csets.adb: Add entry for Latin-5 (Cyrillic ISO-8859-5)
22584         * csets.ads:
22585         Fix header format
22586         Add 2001 to copyright date
22587         Add entry for Latin-5 (Cyrillic ISO-8859-5)
22589 2001-12-14  Matt Gingell <gingell@gnat.com>
22591         * adaint.c: mktemp is a macro on Lynx and can not be used as an
22592         expression.
22594 2001-12-14  Richard Kenner <kenner@gnat.com>
22596         * misc.c (gnat_expand_constant): Do not strip UNCHECKED_CONVERT_EXPR
22597         if operand is CONSTRUCTOR.
22599 2001-12-14  Ed Schonberg <schonber@gnat.com>
22601         * trans.c (tree_transform, case N_Assignment_Statement): Set lineno
22602         before emiting check on right-hand side, so that exception information
22603         is correct.
22605 2001-12-14  Richard Kenner <kenner@gnat.com>
22607         * utils.c (create_var_decl): Throw away initializing expression
22608         if just annotating types and non-constant.
22610 2001-12-14  Vincent Celier <celier@gnat.com>
22612         * prj-nmsc.adb: (Ada_Check): Migrate drom Ada_Default_... to
22613         Default_Ada_...
22615         * prj.adb: (Ada_Default_Spec_Suffix, Ada_Default_Impl_Suffix):
22616         Remove functions.
22617         (Default_Ada_Spec_Suffix, Default_Ada_Impl_Suffix): Move to spec.
22619         * prj.ads: (Ada_Default_Spec_Suffix, Ada_Default_Impl_Suffix):
22620         Remove functions.
22621         (Default_Ada_Spec_Suffix, Default_Ada_Impl_Suffix): Move from body.
22623 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
22625         * ChangeLog: Remove piece of diff output.
22627 2001-12-14  Geert Bosch <bosch@gnat.com>
22629         * config-lang.in: Update copyright notice
22631         * layout.adb: Remove commented out code.
22633         * mdllfile.ads: Update copyright notice. Fix header format.
22635         * sem_case.ads: Likewise.
22637         * sem_ch3.adb: Minor reformatting.
22639 2001-12-12  Geert Bosch <bosch@gnat.com>
22641         * freeze.ads: Update copyright date.
22643         * g-comlin.ads: Minor reformatting.
22645         * gnat-style.texi: Fix typo.
22647 2001-12-12  Geert Bosch <bosch@gnat.com>
22649         *  einfo.h: Regenerate.
22651 2001-12-12  Ed Schonberg <schonber@gnat.com>
22653         * sem_ch12.adb (Save_Entity_Descendant): Use syntactic field names
22654         on known node types, rather than untyped fields. Further cleanups.
22656 2001-12-12  Robert Dewar <dewar@gnat.com>
22658         * sem_ch12.adb:
22659         (Save_Entity_Descendant): Minor comment update.
22660         (Copy_Generic_Node): Deal with incorrect reference to Associated_Node
22661          of an N_Attribute_Reference node. As per note below, this does not
22662         eliminate need for Associated_Node in attribute ref nodes.
22663         (Associated_Node): Documentation explicitly mentions attribute
22664         reference nodes, since this field is used in such nodes.
22666         * sem_ch12.adb (Associated_Node): Minor documentation cleanup.
22668 2001-12-12  Robert Dewar <dewar@gnat.com>
22670         * s-stalib.adb: Add more comments on with statements being needed
22672         * par-ch12.adb: Minor reformatting
22674         * prj-dect.ads: Fix copyright header
22676         * s-arit64.adb (Multiply_With_Ovflo_Check): Fix case where both
22677         inputs fit in 32 bits, but the result still overflows.
22679         * s-fatgen.ads: Minor comment improvement
22681 2001-12-12  Ed Schonberg <schonber@gnat.com>
22683         * sem_ch4.adb (Analyze_Selected_Component): If the prefix is of a
22684         formal derived type, look for an inherited component from the full
22685         view of the parent, if any.
22687 2001-12-12  Robert Dewar <dewar@gnat.com>
22689         * checks.ads (Apply_Alignment_Check): New procedure.
22691         * exp_ch13.adb (Expand_N_Freeze_Entity): Generate dynamic check to
22692         ensure that the alignment of objects with address clauses is
22693         appropriate, and raise PE if not.
22695         * exp_util.ads (Must_Be_Aligned): Removed, replaced by
22696         Exp_Pakd.Known_Aligned_Enough
22698         * mdllfile.ads: Minor reformatting
22700         * mlib-fil.ads: Minor reformatting
22702 2001-12-12  Ed Schonberg <schonber@gnat.com>
22704         * exp_ch8.adb (Expand_N_Object_Renaming_Declaration): Extend previous
22705         fix to any component reference if enclosing record has non-standard
22706         representation.
22708 2001-12-12  Vincent Celier <celier@gnat.com>
22710         * g-dirope.ads (Find, Wildcard_Iterator): Moved to child package
22711         Iteration
22713 2001-12-12  Ed Schonberg <schonber@gnat.com>
22715         * freeze.ads: Make Freeze_Fixed_Point_Type visible, for use in
22716         sem_attr.
22718 2001-12-12  Robert Dewar <dewar@gnat.com>
22720         * impunit.adb: Add entry for GNAT.Directory_Operations.Iteration
22722 2001-12-12  Emmanuel Briot <briot@gnat.com>
22724         * g-regexp.adb: Remove all debug code, since it isn't required anymore,
22725         and it adds dependencies to system.io.
22727 2001-12-12  Pascal Obry <obry@gnat.com>
22729         * g-dirope.adb (Expand_Path.Var): Correctly detect end of
22730         variable name.
22732 2001-12-11  Ed Schonberg <schonber@gnat.com>
22734         * sem_ch10.adb (Install_Withed_Unit): If the unit is a generic instance
22735         that is the parent of other generics, the instance body replaces the
22736         instance node.  Retrieve the instance of the spec, which is the one
22737         that is visible in clients and within the body.
22739 2001-12-11  Vincent Celier <celier@gnat.com>
22741         * gnatmain.adb: Initial version.
22743         * gnatmain.ads: Initial version.
22745         * prj-attr.adb (Initialisation_Data): Add package Gnatstub.
22747         * snames.adb: Updated to match snames.ads.
22749         * snames.ads: Added Gnatstub.
22751 2001-12-11  Vincent Celier <celier@gnat.com>
22753         * prj-attr.adb (Initialization_Data): Change name from
22754         Initialisation_Data.
22756 2001-12-11  Emmanuel Briot <briot@gnat.com>
22758         * g-regpat.adb (Parse_Literal): Properly handle simple operators ?,
22759         + and * applied to backslashed expressions like \r.
22761 2001-12-11  Vasiliy Fofanov <fofanov@gnat.com>
22763         * g-os_lib.ads: String_List type added, Argument_List type is now
22764         subtype of String_List.
22766 2001-12-11  Robert Dewar <dewar@gnat.com>
22768         * g-os_lib.ads: Change copyright to FSF
22769         Add comments for String_List type
22771 2001-12-11  Vincent Celier <celier@gnat.com>
22773         * g-dirope.adb (Expand_Path): Fix bug. (wrong length when adding a
22774         string to the buffer).
22776 2001-12-11  Ed Schonberg <schonber@gnat.com>
22778         * freeze.adb: Make Freeze_Fixed_Point_Type visible, for use in
22779         sem_attr.
22781         * sem_attr.adb: Simplify previous fix for Address.
22782         (Set_Bounds): If prefix is a non-frozen fixed-point type, freeze now,
22783         to avoid anomalies where the bound of the type appears to raise
22784         constraint error.
22786 2001-12-11  Robert Dewar <dewar@gnat.com>
22788         * lib-xref.adb (Output_Refs): Make sure pointers are always properly
22789         handled.
22791 2001-12-11  Ed Schonberg <schonber@gnat.com>
22793         * sem_ch12.adb (Analyze_Subprogram_Instantiation): Check for a
22794         renamed unit before checking for recursive instantiations.
22796 2001-12-11  Emmanuel Briot <briot@gnat.com>
22798         * prj.ads: Add comments for some of the fields.
22800 2001-12-11  Robert Dewar <dewar@gnat.com>
22802         * lib-xref.adb (Output_Refs): Don't output type references outside
22803         the main unit if they are not otherwise referenced.
22805 2001-12-11  Ed Schonberg <schonber@gnat.com>
22807         * sem_attr.adb (Analyze_attribute, case Address and Size): Simplify
22808         code and diagnose additional illegal uses
22810         * sem_util.adb (Is_Object_Reference): An indexed component is an
22811         object only if the prefix is.
22813 2001-12-11  Vincent Celier <celier@gnat.com>
22815         * g-diopit.adb: Initial version.
22817         * g-diopit.ads: Initial version.
22819         * g-dirope.adb:
22820         (Expand_Path): Avoid use of Unbounded_String
22821         (Find, Wildcard_Iterator): Moved to child package Iteration
22823         * Makefile.in: Added g-diopit.o to GNATRTL_NONTASKING_OBJS
22825 2001-12-11  Robert Dewar <dewar@gnat.com>
22827         * sem_attr.adb: Minor reformatting
22829 2001-12-11  Ed Schonberg <schonber@gnat.com>
22831         * sem_ch3.adb: Clarify some ???.
22833 2001-12-11  Robert Dewar <dewar@gnat.com>
22835         * exp_util.adb (Must_Be_Aligned): Removed, replaced by
22836         Exp_Pakd.Known_Aligned_Enough
22838         * sem_ch13.adb (Check_Address_Alignment): Removed, extended
22839         version is moved to Exp_Ch13.
22841 2001-12-11  Robert Dewar <dewar@gnat.com>
22843         * einfo.ads: Minor reformatting
22845         * exp_ch5.adb: Add comment for previous.change
22847         * ali.adb: New interface for extended typeref stuff.
22849         * ali.ads: New interface for typeref stuff.
22851         * checks.adb (Apply_Alignment_Check): New procedure.
22853         * debug.adb: Add -gnatdM for modified ALI output
22855         * exp_pakd.adb (Known_Aligned_Enough): Replaces Known_Aligned_Enough.
22857         * lib-xref.adb: Extend generation of <..> notation to cover
22858         subtype/object types. Note that this is a complete rewrite,
22859         getting rid of the very nasty quadratic algorithm previously
22860         used for derived type output.
22862         * lib-xref.ads: Extend description of <..> notation to cover
22863         subtype/object types. Uses {..} for these other cases.
22864         Also use (..) for pointer types.
22866         * sem_util.adb (Check_Potentially_Blocking_Operation): Slight cleanup.
22868         * exp_pakd.adb: Minor reformatting.  Note that prevous RH should say:
22869         (Known_Aligned_Enough): Replaces Must_Be_Aligned.
22871 2001-12-11  Vincent Celier <celier@gnat.com>
22873         * gnatcmd.adb:
22874         Changed /COMPILE_ONLY to /ACTIONS=COMPILE
22875         Changed /BIND_ONLY to /ACTIONS=BIND
22876         Changed /LINK_ONLY to /ACTIONS=LINK
22878 2001-12-11  Ed Schonberg  <schonber@gnat.com>
22880         * sem_ch8.adb (Find_Selected_Component): improved search for a
22881         candidate package in case of error.
22883         * sem_ch12.adb (Inline_Instance_Body): place head of use_clause
22884         chain back on scope stack before reinstalling use clauses.
22886         * exp_ch5.adb (Expand_N_If_Statement): if Constant_Condition_Warnings
22887         is enabled, do not kill the code for the condition, to preserve
22888         warning.
22890 2001-12-11  Robert Dewar <dewar@gnat.com>
22892         * checks.adb (Insert_Valid_Check): Apply validity check to expression
22893         of conversion, not to result of conversion.
22895 2001-12-11  Ed Schonberg <schonber@gnat.com>
22897         * sem_ch3.adb (Build_Derived_Record_Type): set Controlled flag
22898         before freezing parent. If the declarations are mutually recursive,
22899         an access to the current record type may be frozen before the
22900         derivation is complete.
22902 2001-12-05  Vincent Celier <celier@gnat.com>
22904         * gnatcmd.adb: (MAKE): Add new translations: -b /BIND_ONLY,
22905         -c /COMPILE_ONLY, -l /LINK_ONLY
22907         * opt.ads:
22908         (Bind_Only): New Flag
22909         (Link_Only): New flag
22911         * switch.adb (Scan_Make_Switches): Add processing for -b (Bind_Only)
22912         and -l (Link_Only)
22914         * makeusg.adb: Add new switches -b and -l. Update Copyright notice.
22916         * make.adb:
22917         (Do_Compile_Step, Do_Bind_Step, Do_Link_Step): New flags.
22918         (Gnatmake): Set the step flags. Only perform a step if the
22919         corresponding step flag is True.
22920         (Scan_Make_Arg): Reset the bind and link step flags when -u
22921         or -gnatc has been specified.
22923 2001-12-05  Ed Schonberg <schonber@gnat.com>
22925         * sem_eval.adb (Eval_Concatenation): If left operand is a null string,
22926         get bounds from right operand.
22928         * sem_eval.adb: Minor reformatting
22930         * exp_util.adb (Make_Literal_Range): use bound of literal rather
22931         than Index'First, its lower bound may be different from 1.
22933         * exp_util.adb: Undo earlier change, fixes ACVC regressions C48009B
22934         and C48009J
22936 2001-12-05  Vincent Celier <celier@gnat.com>
22938         * prj-nmsc.adb Minor reformatting
22940         * prj-nmsc.adb (Language_Independent_Check): Reset Library flag if
22941         set and libraries are not supported.
22943 2001-12-05  Ed Schonberg <schonber@gnat.com>
22945         * sem_ch3.adb (Build_Derived_Private_Type): set Public status of
22946         private view explicitly, so the back-end can treat as a global
22947         when appropriate.
22949 2001-12-05  Ed Schonberg <schonber@gnat.com>
22951         * sem_ch12.adb (Instantiate_Package_Body): if instance is a compilation
22952          unit, always replace instance node with new body, for ASIS use.
22954 2001-12-05  Vincent Celier <celier@gnat.com>
22956         * prj-nmsc.adb (Language_Independent_Check): Issue a warning if
22957         libraries are not supported and both attributes Library_Name and
22958         Library_Dir are specified.
22960         * prj-proc.adb (Expression): Set location of Result to location of
22961         first term.
22963         * Makefile.in: Add mlib.o, mlib-fil.o, mlib-tgt and mlib-utl to GNATLS.
22964         (prj-nmsc is now importing MLib.Tgt)
22966         * prj-proc.adb: Put the change indicated above that was forgotten.
22968 2001-12-05  Robert Dewar <dewar@gnat.com>
22970         * Makefile.in: Add dependencies for System.IO for GNAT.Regexp
22972 2001-12-05  Ed Schonberg <schonber@gnat.com>
22974         * sem_ch3.adb (Build_Derived_Concurrent_Type): If derivation imposes a
22975         constraint, introduce explicit subtype declaration and derive from it.
22977         * sem_ch3.adb: Minor reformatting
22979 2001-12-05  Robert Dewar <dewar@gnat.com>
22981         * checks.adb (Determine_Range): Increase cache size for checks.
22982         Minor reformatting
22984         * exp_ch6.adb: Minor reformatting
22985         (Expand_N_Subprogram_Body): Reset Is_Pure for any subprogram that has
22986         a parameter whose root type is System.Address, since treating such
22987         subprograms as pure in the code generator is almost surely a mistake
22988         that will lead to unexpected results.
22990         * exp_util.adb (Remove_Side_Effects): Clean up old ??? comment and
22991         change handling of conversions.
22993         * g-regexp.adb: Use System.IO instead of Ada.Text_IO.
22995 2001-12-05  Ed Schonberg <schonber@gnat.com>
22997         * sem_ch3.adb (Analyze_Object_Declaration): If expression is an
22998         aggregate with static wrong size, attach generated Raise node to
22999         declaration.
23001 2001-12-05  Robert Dewar <dewar@gnat.com>
23003         * sem_attr.adb (Analyze_Attribute): Defend against bad Val attribute.
23004         Fixes compilation abandoned bomb in B24009B.
23006 2001-12-05  Ed Schonberg <schonber@gnat.com>
23008         * sem_ch12.adb:
23009         Document use of Associated_Node on Selected_Components.
23010         (Save_Global_Operand_Descendants): Change to Save_Entity_Descendants,
23011         to clarify use of untyped descendant fields.
23013 2001-12-05  Robert Dewar <dewar@gnat.com>
23015         * prj-dect.ads: Add ??? comment
23016         Add 2001 to copyright notice (was not done in after all)
23018         * prj-part.adb: Minor reformatting. Reword one awkward error message.
23020         * prj.ads: Minor reformatting throughout, and add some ??? comments
23022         * snames.ads: Minor reformatting
23024 2001-12-05  Geert Bosch <bosch@gnat.com>
23026         * snames.adb: Autoupdate
23028 2001-12-05  Vincent Celier <celier@gnat.com>
23030         * prj-dect.adb (Parse): Rename parameter Modifying to Extends.
23032         * prj-dect.ads (Parse): Rename parameter Modifying to Extends.
23034         * prj-env.adb: Minor comment changes (modifying -> extends).
23036         * prj-nmsc.adb: Minor comment changes (modifying -> extends).
23038         * prj-part.adb (Parse_Single_Project): Change Tok_Modifying to
23039         Tok_Extends.
23041         * prj.adb (Initialize): Change Modifying to Extends.
23043         * scans.ads (Token_Type): Change Tok_Modifying to Tok_Extends.
23045         * prj.ads: Minor comment change (Modifying -> extending).
23047         * snames.ads: Change modifying to extends.
23049 2001-12-05  Robert Dewar <dewar@gnat.com>
23051         * sem_warn.adb: Remove stuff for conditionals, we are not going to
23052         do this after all.
23054         * sem_warn.ads: Remove stuff for conditionals, we are not going to
23055         do this after all.  Add 2001 to copyright notice
23057 2001-12-04  Geert Bosch <bosch@gnat.com>
23059         *  einfo.h, sinfo.h, treeprs.ads: Regenerate.
23061 2001-12-04  Robert Dewar <dewar@gnat.com>
23063         * errout.adb (Error_Msg): Ignore attempt to put error msg at junk
23064         location if we already have errors. Stops some cases of cascaded
23065         errors.
23067         * errout.adb: Improve comment.
23069 2001-12-04  Robert Dewar <dewar@gnat.com>
23071         * sem_ch12.adb:
23072         (Analyze_Formal_Type_Definition): Defend against Error.
23073         (Analyze_Formal_Subprogram): Defend against Error.
23075         * par-ch12.adb (F_Formal_Type_Declaration): In case of error,
23076         remove following semicolon if present. Removes cascaded error.
23078 2001-12-04  Douglas B. Rupp <rupp@gnat.com>
23080         * bindgen.adb:
23081         (Gen_Exception_Table_Ada): Write "begin" and then return if Num
23082          exceptions equals 0.
23083         (Gen_Exception_Table_C): Return if Num exceptions equals 0.
23084         Fixes PIWG E tests (which have to be run with -gnatL).
23086 2001-12-04  Robert Dewar <dewar@gnat.com>
23088         * einfo.ads: Minor reformatting
23090 2001-12-04  Ed Schonberg <schonber@gnat.com>
23092         * einfo.ads: Block_Node points to the identifier of the block, not to
23093         the block node itself, to preserve the link when the block is
23094         rewritten, e.g. within an if-statement with a static condition.
23096         * inline.adb (Cleanup_Scopes): recover block statement from block
23097         entity using new meaning of Block_Node.
23099         * sem_ch5.adb (Analyze_Block_Statement): set Block_Node to point to
23100         identifier of block node, rather than to node itself.
23102 2001-12-04  Gary Dismukes <dismukes@gnat.com>
23104         * layout.adb:
23105         (Get_Max_Size): Fix "start of processing" comment to say Get_Max_Size.
23106         (Discrimify): Go back to setting the Etypes of the selected component
23107         because the Vname component does not exist at this point and will
23108         fail name resolution. Also set Analyzed.
23109         Remove with and use of Sem_Res.
23111 2001-12-04  Arnaud Charlet <charlet@gnat.com>
23113         * Makefile.in: (HIE_SOURCES): add s-fat*.
23115 2001-12-04  Robert Dewar <dewar@gnat.com>
23117         * sem_attr.adb:
23118         (Compile_Time_Known_Attribute): New procedure.
23119         (Eval_Attribute, case Size): Use Compile_Time_Known_Attribute to ensure
23120          proper range check.
23122 2001-12-04  Ed Schonberg <schonber@gnat.com>
23124         * sem_ch7.adb (New_Private_Type): Set Is_Tagged_Type flag before
23125         processing discriminants to diagnose illegal default values.
23127 2001-12-04  Ed Schonberg <schonber@gnat.com>
23129         * sem_attr.adb (Resolve_Attribute): Handle properly an non-classwide
23130         access discriminant within a type extension that constrains its
23131         parent discriminants.
23133 2001-12-04  Ed Schonberg <schonber@gnat.com>
23135         * sem_ch3.adb (Find_Type_Of_Subtype_Indic): If subtype indication
23136         is malformed, use instance of Any_Id to allow analysis to proceed.
23138         * par-ch12.adb (P_Formal_Type_Declaration): Propagate Error if
23139         type definition is illegal.
23140         (P_Formal_Derived_Type_Definition): Better recovery when TAGGED is
23141         misplaced.
23143 2001-12-04  Ed Schonberg <schonber@gnat.com>
23145         * sem_warn.adb (Output_Unreferenced_Messages): Extend previous fix to
23146         constants.
23148 2001-12-04  Robert Dewar <dewar@gnat.com>
23150         * errout.adb: Minor reformatting
23152 2001-12-04  Robert Dewar <dewar@gnat.com>
23154         * exp_util.adb: Minor reformatting from last change
23156         * errout.adb (Check_For_Warning): For a Raised_Constraint_Error node
23157         which is a rewriting of an expression, traverse the original
23158         expression to remove warnings that may have been posted on it.
23160 2001-12-04  Ed Schonberg <schonber@gnat.com>
23162         * exp_util.adb (Must_Be_Aligned): Return false for a component of a
23163         record that has other packed components.
23165 2001-12-04  Douglass B. Rupp <rupp@gnat.com>
23167         * adaint.c: Minor cleanups.
23169 2001-12-04  Douglass B. Rupp <rupp@gnat.com>
23171         * adaint.c: Do not use utime.h on vxworks.
23173 2001-12-04  Arnaud Charlet <charlet@gnat.com>
23175         * Makefile.adalib: Clarify step 3 (use of gnat.adc) as it causes
23176         more confusion than it solves.
23178 2001-12-04  Geert bosch <bosch@gnat.com>
23180         * einfo.h, nmake.adb, nmake.ads, sinfo.h treeprs.ads: Regenerate.
23182 2001-12-04  Geert Bosch  <bosch@gnat.com>
23184         * Makefile.in (update-sources): New target.
23185         For use by gcc_release script.
23187 2001-12-04  Ed Schonberg <schonber@gnat.com>
23189         * sem_prag.adb (Analyze_Pragma, case Validity_Checks): do not treat as
23190         a configuration pragma, it is now legal wherever a pragma can appear.
23192 2001-12-04  Zack Weinberg  <zack@codesourcery.com>
23194         * Makefile.in: Don't set ALL.  Delete @cross_defines@,
23195         @cross_overrides@, @build_overrides@ stanzas.  INTERNAL_CFLAGS
23196         is now @CROSS@ -DIN_GCC; update comment.
23198 2001-12-04  Robert Dewar <dewar@gnat.com>
23200         * einfo.adb (Has_Pragma_Pure_Function): New flag.
23201         Fix problem that stopped ceinfo from working
23203         * einfo.ads (Has_Pragma_Pure_Function): New flag.
23205         * sem_prag.adb (Pure_Function): Set new flag Has_Pragma_Pure_Function.
23207 2001-12-04  Douglas B. Rupp <rupp@gnat.com>
23209         * gnatchop.adb:
23210         (File_Time_Stamp): New procedure.
23211         (Preserve_Mode): New boolean.
23212         (Write_Unit): Pass time stamp.
23213         Implement -p switch (preserve time stamps).
23215         * gnatcmd.adb (CHOP): Add translation for -p (/PRESERVE).
23217         * gnatchop.adb: Do usage info for -p switch
23219         * adaint.h (__gnat_set_file_time_name): New function
23221         * adaint.c (__gnat_set_file_time_name): Implement
23223         * adaint.h: Fix typo
23225 2001-12-03  Robert Dewar <dewar@gnat.com>
23227         * sinfo.ads: Minor reformatting. N_Freeze_Entity node does not
23228         have Associated_Node.
23230 2001-12-03  Robert Dewar <dewar@gnat.com>
23232         * prj-proc.adb: Minor reformatting
23234         * make.adb: Minor reformatting
23236 2001-12-03  Geert Bosch <bosch@gnat.com>
23238         * make.adb: Minor reformatting.
23240 2001-12-03 Robert Dewar  <dewar@gnat.com>
23242         * sem_ch12.adb: Minor reformatting
23244 2001-12-03  Ed Schonberg <schonber@gnat.com>
23246         * sem_ch12.adb (Inline_Instance_Body): Use Save_Scope_Stack and
23247         push Standard on the stack before analyzing the instance body,
23248         in order to have a clean visibility environment.
23250         * sem_ch12.adb (Inline_Instance_Body): Remove redundant code.
23252 2001-12-03  Ed Schonberg <schonber@gnat.com>
23254         * sem_ch12.adb (Instantiate_Package_Body): Protect against double
23255         instantiation of a body that contains an inlined body.
23257 2001-12-03  Ed Schonberg <schonber@gnat.com>
23259         * sem_ch12.adb:
23260         (Analyze_generic_subprogram_Declaration): Set outer_generic_scope,
23261         to prevent freezing within formal packages.
23262         (Freeze_Subprogram_Body): If body comes from another instance that
23263         appeared before its own body, place freeze node at end of current
23264         declarative part, to prevent a back-end crash.
23265         (Inline_Instance_Body): Handle properly a package instance within
23266         a subprogram instance that is a child unit.
23268 2001-12-01  Graham Stott  <grahams@redhat.com>
23270         * Makefile.in (misc.o): Add missing $(srcdir) prefix
23271         and add optabs.h dependency.
23273         * misc.c: Include optabs.h
23274         (gnat_tree_code_type): Make static and const.
23275         (gnat_tree_code_length): Likewise.
23276         (gnat_tree_code_name): Likewise.
23277         (update_setjmp_buf): Obtain operands mode from insn_data.
23279 2001-11-29  Richard Henderson  <rth@redhat.com>
23281         * init.c: Remove obsolete dwarf2 frame.h section.
23283 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
23285         * Make-lang.in (ada.generated-manpages): New dummy target.
23287 2001-11-29  Ed Schonberg <schonber@gnat.com>
23289         * g-os_lib.adb (Add_To_Command): use explicit loop to move string
23290         into Command, an array conversion is illegal here. Uncovered by
23291         ACATS B460005.
23293 2001-11-28  Geert Bosch <bosch@gnat.com>
23295         * init.c: Minor whitespace changes.
23297 2001-11-28  Doug Rupp <rupp@gnat.com>
23299         * init.c: (__gnat_install_handler,VMS): Increase size of alternate
23300         signal stack.
23302 2001-11-28  Zack Weinberg  <zack@codesourcery.com>
23304         * misc.c (gnat_expand_constant): Move declaration above
23305         definition of lang_hooks.
23306         (LANG_HOOKS_EXPAND_CONSTANT): Set to gnat_expand_constant.
23307         (gnat_init): lang_expand_constant no longer exists.
23309         (internal_error_function): Remove #ifdef HAVE_VPRINTF.  We
23310         always have vprintf.
23311         (gnat_init): Always call set_internal_error_function.
23313 2001-11-27  Andreas Jaeger  <aj@suse.de>
23315         * Makefile.in (stamp-tool_src_dir): Use symbolic link.
23317 2001-11-27  Laurent Guerby  <guerby@acm.org>
23319         * Makefile.in: Regenerate Ada dependencies.
23321 2001-11-26  Richard Henderson  <rth@redhat.com>
23323         * Make-lang.in (gnatbind, gnatmake, gnatbl, gnatchop, gnatcmd,
23324         gnatlink, gnatkr, gnatls, gnatmem, gnatprep, gnatpsta, gnatpsys,
23325         gnatxref, gnatfind, gnatlbr): Depend on CONFIG_H and prefix.o.
23327 2001-11-25  Laurent Guerby  <guerby@acm.org>
23329         * sysdep.c (rts_get_*): Fix style.
23331 2001-11-19  Laurent Guerby  <guerby@acm.org>
23333         * Makefile.in (INCLUDES_FOR_SUBDIR): Remove redundant system include
23334         since it is of no apparent use and cause warnings.
23336 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
23338         * misc.c (gnat_decode_option, gnat_init_options): Make definitions
23339         static too.
23340         (gnat_init): Don't return NULL.
23341         (finish_parse): Remove.
23343 2001-11-17  Laurent Guerby  <guerby@acm.org>
23345         * Make-lang.in (GNATLIBFLAGS): Add -W -Wall.
23346         * gigi.h (init_decl_processing): Rename to gnat_init_decl_processing.
23347         * io-aux.c: Provide K&R prototypes to all functions, reformat code.
23348         * lang-spec.h: Add missing struct field to silence warnings.
23349         * sysdep.c (rts_get_*): Provide K&R prototype.
23350         * sysdep.c (Unlock_Task, Lock_Task): Move to K&R prototype.
23351         * traceback.c (Unlock_Task, Lock_Task): Likewise.
23352         * tracebak.c (__gnat_backtrace): Remove unused variable.
23353         * utils.c (end_subprog_body): Move to K&R style.
23355 Thu Nov 15 18:16:17 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
23357         * trans.c, utils2.c: Remove PALIGN parameter to get_inner_reference.
23359 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
23361         * misc.c (gnat_init): Change prototype.  Include the
23362         functionality of the old init_parse and init_decl_processing.
23363         (gnat_init_decl_processing): New prototype.
23364         (init_parse): Remove.
23365         * utils.c (init_decl_processing): Rename gnat_init_decl_processing.
23367 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
23369         * misc.c (gnat_print_decl, gnat_print_type): Renamed.
23370         (LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE): Override.
23371         (print_lang_statistics, lang_print_xnode, print_lang_identifier,
23372         set_yydebug): Remove.
23374 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
23376         * misc.c (LANG_HOOKS_NAME, LANG_HOOKS_IDENTIFIER_SIZE): Override.
23377         (struct lang_hooks): Constify.
23378         (language_string, lang_identify): Remove.
23379         * utils.c (init_decl_processing): Update.
23381 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
23383         * misc.c: Include langhooks-def.h.
23384         * Makefile.in: Update.
23386 2001-10-30  Robert Dewar <dewar@gnat.com>
23388         * style.adb:
23389         (Check_Identifier): Rewrite circuit to be compatible with use of letters
23390         in the upper half of ASCII.
23391         (Check_Identifier): Minor reformatting
23393 2001-10-30  Geert Bosch <bosch@gnat.com>
23395         * (Associated_Node, Set_Associated_Node): Do not check for
23396         Freeze_Entity.
23398 2001-10-30  Robert Dewar <dewar@gnat.com>
23400         * a-reatim.ads: Minor reformatting
23402 2001-10-30  Robert Dewar <dewar@gnat.com>
23404         * gnatdll.adb: Minor reformatting throughout. Many ??? added for
23405         undocumented declarations.
23407 2001-10-30  Pascal Obry <obry@gnat.com>
23409         * gnatdll.adb (Parse_Command_Line): handle -g option to be passed
23410         to the binder and linker.
23411         Minor style fix.
23413         * mdll.ads: Fix layout.  Update copyright notice.
23415         * mdll.adb: Fix layout.  Update copyright notice.
23417 2001-10-30  Robert Dewar <dewar@gnat.com>
23419         * usage.adb: Minor fix to output for -gnaty.
23421 2001-10-30  Ed Schonberg <schonber@gnat.com>
23423         * a-reatim.ads: Makes Seconds_Count into a 64-bit integer,
23424         to accommodate all its possible values.
23426         * a-reatim.adb (Split): Special-case handling of Time_Span_First
23427         and of small absolute values of T.
23429 2001-10-30  Richard Kenner <kenner@gnat.com>
23431         * misc.c (gnat_expand_expr, case NULL_EXPR): Remove call to
23432         set_mem_attributes since not needed and wrong if RESULT if a REG;
23433         fixes ACATS failures.
23435 2001-10-30  Geert Bosch <bosch@gnat.com>
23437         * 86numaux.adb, a-tigeau.ads, a-wtgeau.ads, fname-sf.ads, g-traceb.ads,
23438         s-tasdeb.ads, sem_maps.ads: Add 2001 to copyright notice.
23440 2001-10-30  Robert Dewar <dewar@gnat.com>
23442         * bindusg.adb: Undocument -f switch.
23444         * gnatcmd.adb: Remove /FULL_ELABORATION.
23446         * opt.ads (Force_RM_Elaboration_Order): Document that this is
23447         obsolescent.
23449         * gnatbind.adb: Output new warning for use of obsolescent -f switch.
23451         * gnatbind.adb: Minor update of warning msg.
23453 2001-10-30  Vincent Celier <celier@gnat.com>
23455         * gnatcmd.adb (MAKE, BIND, LINK, LIST, FIND, XREF): Add translations
23456         for project file switches (-P (/PROJECT_FILE=),
23457          -X (/EXTERNAL_REFERENCE=) and -vPx (/PROJECT_FILE_VERBOSITY=DEFAULT
23458         or MEDIUM or HIGH)
23460 2001-10-30  Geert Bosch <bosch@gnat.com>
23462         * decl.c: Minor whitespace fixes.
23464 2001-10-30  Richard Kenner <kenner@gnat.com>
23466         * utils2.c (build_allocator): Test for SIZE overflow in array case too
23468 2001-10-30  Geert Bosch <bosch@gnat.com>
23470         * ali-util.adb (Initialize_Checksum): Use out-mode instead of in out.
23471         Found due to GCC 3.0 warning of using uninitialized value.
23473         * layout.adb:
23474         (Get_Max_Size): Use variant record for tracking value/expression.
23475          Makes logic clearer and prevents warnings for uninitialized variables.
23476         (Layout_Array_Type): Use variant record for tracking value/expression.
23477          Makes logic clearer and prevents warnings for uninitialized variables.
23479 2001-10-30  Robert Dewar <dewar@gnat.com>
23481         * lib.adb: Minor reformatting
23483         * s-taprop.ads: Minor reformatting
23485 2001-10-29  Laurent Guerby  <guerby@acm.org>
23487         * init.c:
23488         (Raise_From_Signal_Handler, Propagate_Signal_Exception): Make arg
23489         const.
23490         (_gnat_error_handler): Make MSG const.
23492 2001-10-29  Richard Kenner <kenner@gnat.com>
23494         * sysdep.c: Fix localtime_r problem on LynxOS.
23495         Also remove #elif to avoid warnings.
23497         * misc.c (yyparse): Don't set up and register jmpbuf; remove decls
23498         used by this.
23500         * decl.c (annotate_value): Make SIZE unsigned to avoid warning.
23502 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
23504         * 86numaux.adb, a-tigeau.ads, a-wtgeau.ads, decl.c, exp_ch6.adb,
23505         exp_ch9.adb, exp_util.adb, fname-sf.ads, freeze.ads, g-awk.adb,
23506         g-comlin.ads, g-dirope.adb, g-dyntab.ads, g-socket.ads,
23507         g-table.ads, g-traceb.ads, gnat-style.texi, gnatchop.adb, init.c,
23508         layout.adb, layout.ads, mdllfile.ads, mlib-fil.ads, osint.ads,
23509         s-fatgen.adb, s-imgrea.adb, s-taprop.ads, s-tasdeb.ads,
23510         sem_aggr.adb, sem_attr.adb, sem_case.ads, sem_ch13.adb,
23511         sem_ch3.adb, sem_elab.adb, sem_maps.ads, sem_res.adb,
23512         sem_util.ads, sinfo.ads, sinput.ads, table.adb, table.ads,
23513         types.ads, urealp.adb: Fix spelling errors.
23515 2001-10-27  Laurent Guerby <guerby@acm.org>
23517         * trans.c (gigi): Fix non determinism leading to bootstrap
23518         comparison failures for debugging information.
23520 2001-10-26  Florian Weimer  <fw@deneb.enyo.de>
23522         * gnat_rm.texi: Use @./@: where appropriate.
23524 2001-10-26  Robert Dewar <dewar@gnat.com>
23526         * sinfo.adb: Define Associated_Node to overlap Entity field. Cleanup.
23528 2001-10-26  Richard Kenner <kenner@gnat.com>
23530         * gmem.c (__gnat_gmem_read_next): Properly check for EOF
23532 2001-10-26  Richard Kenner <kenner@gnat.com>
23534         * decl.c (validate_size): Modify message for bad size to avoid
23535         implication that compiler is modifying the size.
23537 2001-10-26  Robert Dewar <dewar@gnat.com>
23539         * prj-util.adb: Minor reformatting. Fix bad header format.
23541 2001-10-26  Robert Dewar <dewar@gnat.com>
23543         * sinfo.ads: Define Associated_Node to overlap Entity field. Cleanup.
23545         * sinfo.ads: Clarify use of Associated_Node (documentation only).
23547         * sem_ch12.adb: Change Node4 to Associated_Node. Change
23548         Associated_Node to Get_Associated_Node. Put use of Unchecked_Access
23549         much more narrowly in places where needed. These are cleanups.
23551 2001-10-26  Joel Brobecker <brobecke@gnat.com>
23553         * 5zosinte.ads (null_pthread): new constant.
23555         * 5ztaprop.adb:
23556         (Initialize_TCB): Initialize thread ID to null, to be able to verify
23557          later that this field has been set.
23558         (Finalize_TCB): ditto.
23559         (Suspend_Task): Verify that the thread ID is not null before using it.
23560         (Resume_Task): ditto.
23562         * s-tasdeb.adb:
23563         (Resume_All_Tasks): Lock the tasks list before using it.
23564         (Suspend_All_Tasks): ditto.
23566 2001-10-26  Richard Kenner <kenner@gnat.com>
23568         * decl.c (gnat_to_gnu_entity, case E_General_Access_Type):
23569         Make constant variant of designated type for Is_Access_Constant.
23570         Call update_pointer_to with main variant.
23572         * trans.c (process_freeze_entity, process_type):
23573         Call update_pointer_to on main variant.
23575         * utils.c (update_pointer_to): Make corresponding variant for NEW_TYPE.
23576         If main variant, update all other variants.
23578         * utils2.c (build_unary_op, case INDIRECT_REF): No longer set
23579         TREE_STATIC.
23581 2001-10-26  Robert Dewar <dewar@gnat.com>
23583         * prj-util.adb: Minor reformatting
23585 2001-10-26  Robert Dewar <dewar@gnat.com>
23587         * prj-util.adb: Minor reformatting
23589 2001-10-26  Robert Dewar <dewar@gnat.com>
23591         * prj-attr.adb: Minor reformatting throughout
23593 2001-10-26  Robert Dewar <dewar@gnat.com>
23595         * prj-attr.ads: Minor reformatting
23596         Add ??? comment (this whole spec has almost no comments)
23598 2001-10-26  Vincent Celier <celier@gnat.com>
23600         * g-os_lib.adb (Normalize_Pathname): Preserve the double slash
23601         ("//") that precede the drive letter on Interix.
23603 2001-10-26  Geert Bosch <bosch@gnat.com>
23605         * gnat_rm.texi: Add GNAT Reference Manual.
23607 2001-10-25  Robert Dewar <dewar@gnat.com>
23609         * sem_ch8.adb (Analyze_Package_Renaming): Skip analysis if Name
23610         is Error. Similar change for other renaming cases.
23612 2001-10-25  Robert Dewar <dewar@gnat.com>
23614         * s-atacco.ads: Add pragma Inline_Always for functions.
23615         Fix header format. Add copyright 2001
23617 2001-10-25  Ed Schonberg <schonber@gnat.com>
23619         * par-ch3.adb (P_Subtype_Mark_Resync): for an anonymous array
23620         return Error rather than Empty so that analysis can proceed.
23622 2001-10-25  Ed Schonberg <schonber@gnat.com>
23624         * sem_util.adb (Enter_Name): better handling of cascaded error
23625         messages when a unit appears in its own context.
23627 2001-10-25  Ed Schonberg <schonber@gnat.com>
23629         * sem_util.adb (Defining_Entity): in case of error, attach created
23630         entity to specification, so that semantic analysis can proceed.
23632 2001-10-25  Robert Dewar <dewar@gnat.com>
23634         * sem_util.adb
23635         (Defining_Entity): Deal with Error.
23636         (Process_End_Label): Deal with bad end label for.
23638 2001-10-25  Ed Schonberg <schonber@gnat.com>
23640         * sem_elab.adb (Check_A_Call): refine message when call is in an
23641         instance but callee is not declared in the generic unit.
23643 2001-10-25  Ed Schonberg <schonber@gnat.com>
23645         * sem_elab.adb (Check_A_Call): check for renaming before finding the
23646         enclosing unit, which may already be different from the calling unit.
23648 2001-10-25  Geert Bosch <bosch@gnat.com>
23650         * 4gintnam.ads: fix header format.
23652 2001-10-25  Ed Schonberg <schonber@gnat.com>
23654         * sem_res.adb (Resolve_Call): if the call is actually an indexing
23655         operation on the result of a parameterless call, perform elaboration
23656         check after the node has been properly rewritten.
23658         * sem_ch12.adb (Copy_Generic_Node): after the proper body has been
23659         inlined within the generic tree, the defining identifier is not a
23660         compilation_unit.
23662 2001-10-25  Ed Schonberg <schonber@gnat.com>
23664         * sem_res.adb (Resolve): special-case resolution of Null in an
23665          instance or an inlined body to avoid view conflicts.
23667         * sem_ch12.adb (Copy_Generic_Node): for allocators, check for view
23668          compatibility by retrieving the access type of the generic copy.
23670 2001-10-25  Robert Dewar <dewar@gnat.com>
23672         * sem_ch3.adb:
23673         (Analyze_Number_Declaration): Handle error expression.
23674         (Signed_Integer_Type_Declaration): Handle error bound.
23675         (Analyze_Subtype_Indication): Handle error range.
23677         * sem_util.adb (Get_Index_Bounds): Check for Error.
23679 2001-10-25  Robert Dewar <dewar@gnat.com>
23681         * restrict.adb (Set_No_Run_Time_Mode): Set Discard_Names as default
23682         in no run time mode.
23684 2001-10-25  Pascal Obry <obry@gnat.com>
23686         * gnatmem.adb (Read_Next): fix Curs2 value to properly handle quiet
23687         mode case for ALLOC case.
23689         * gnatmem.adb (Read_Next): correctly fix parsing in Quiet mode on
23690         all platforms. Improvement of last change.
23692 2001-10-25  Robert Dewar <dewar@gnat.com>
23694         * exp_ch4.adb (Expand_N_Allocator): Minor reformatting.
23696 2001-10-25  Geert Bosch  <bosch@gnat.com>
23698         * osint.adb (Is_Relative): Remove duplicate.
23700 2001-10-25  Pascal Obry <obry@gnat.com>
23702         * osint.adb (Read_Default_Search_Dirs): correctly detect relative
23703         pathnames in UNIX and DOS style with drive letter.
23704         (Is_Relative): new routine.
23706         * osint.adb: Minor reformatting
23708         * osint.adb (Is_Relative): implementation using
23709         GNAT.OS_Lib.Is_Absolute_Path. Better fix.
23711 2001-10-25  Pascal Obry <obry@gnat.com>
23713         * g-dirope.adb (Basename): correctly compute offset between the
23714         original Path and the translated one.
23716         * g-dirope.adb: (Base_Name): add some comments.
23718 2001-10-25  Robert Dewar <dewar@gnat.com>
23720         * exp_imgv.adb (Expand_Image_Attribute): Defend against bad use
23721         in HIE mode, avoids compilation abandoned message
23723         * exp_imgv.adb: Correct typo in previous change
23725         * exp_imgv.adb: Correct typo in previous change (not my day!)
23727 2001-10-25  Robert Dewar <dewar@gnat.com>
23729         * s-tpinop.ads: Add 2001 to copyright notice. Fix header format.
23731 2001-10-25  Pascal Obry <obry@gnat.com>
23733         * g-awk.ads: Move all pragma inlines next to the routine
23734          declarations. This is more uniform with other GNAT spec.
23736 2001-10-22  Geert Bosch  <bosch@gnat.com>
23738         * Make-lang.in (gnattools, cross-gnattools): Remove gnatmem.
23740 2001-10-19  Geert Bosch  <bosch@gnat.com>
23742         * Makefile.in (tools, gnattools): Remove gnatmem.
23744 2001-10-17  Richard Henderson  <rth@redhat.com>
23746         * Makefile.in (misc.o): Depend on langhooks.h.
23747         * misc.c: Include it.
23748         (LANG_HOOKS_INIT, LANG_HOOKS_INIT_OPTIONS): New.
23749         (LANG_HOOKS_DECODE_OPTION): New.
23750         (lang_hooks): Use LANG_HOOKS_INITIALIZER.
23752 2001-10-16  Florian Weimer  <fw@deneb.enyo.de>
23754         * trans.c (tree_transform): Adjust to recent change in
23755         expand_asm_operands to implement named asm operands.
23757 2001-10-11  Ed Schonberg  <schonber@gnat.com>
23759         * exp_ch8.adb (Expand_N_Object_Renaming_Declaration): Bugfix in
23760         renaming of discriminant for mutable record type.
23762 2001-10-11  Robert Dewar  <dewar@gnat.com>
23764         * validsw.adb: Properly save -gnatVn status.
23766 2001-10-11  Robert Dewar <dewar@gnat.com>
23768         * usage.adb: Add lines for V switch.
23770         * gnatcmd.adb (COMPILE): Revise translations for -gnatV
23771         (/VALIDITY_CHECKING).
23773 2001-10-11  Ed Schonberg <schonber@gnat.com>
23775         * sem_type.adb (Add_One_Interp): an operator for a type declared in
23776         an extension of System is known to be visible.
23778 2001-10-11  Ed Schonberg <schonber@gnat.com>
23780         * sem_eval.adb (Compare_Fixup): get the bounds of a String_Literal
23781         properly. Fixes regression on ACATS C34005G.
23783 2001-10-11  Robert Dewar <dewar@gnat.com>
23785         * sem_ch5.adb (Analyze_Iteration_Scheme): Suppress warning on null
23786         loop in generic instance, since this is likely not very useful.
23788 2001-10-11  Robert Dewar <dewar@gnat.com>
23790         * restrict.adb (Disallow in No_Run_Time_Mode): Properly specialize
23791         the error message for high integrity mode.
23793         * rtsfind.adb (RTE): Give message if we try to find an entity that
23794         is not available in high integrity mode.
23796         * rtsfind.ads:
23797         (OK_To_Use_In_HIE_Mode): New array.
23798         (RTE): May return Empty in high integrity mode.
23800         * rtsfind.ads (OK_To_Use_In_No_Run_Time_Mode): New name for
23801         OK_To_Use_In_HIE_Mode, now includes System_FAT_xxx.
23803         * sem_ch6.adb (Analyze_Subprogram_Body): Kill body in predefined
23804         unit if not inlined always and in no runtime mode. Fixes problem
23805         caused by new Rtsfind changes.
23807         * sem_ch6.adb (Analyze_Subrogram_Body): Do not Check_References if
23808         body is deleted.
23810         * rtsfind.adb (RTE): Make sure we do not try to load unit after
23811         giving message for entity not available in high integrity mode.
23813 2001-10-11  Pascal Obry <obry@gnat.com>
23815         * impunit.adb: Add GNAT.CRC32.
23817 2001-10-11  Ed Schonberg <schonber@gnat.com>
23819         * exp_fixd.adb (Expand_Multiply_Fixed_By_Fixed_Giving_Fixed): handle
23820         properly the case where one universal operand in a non-static
23821         exponentiation of a real literal.
23823 2001-10-11  Ed Schonberg <schonber@gnat.com>
23825         * exp_ch7.adb (Find_Final_List): for a type appearing in a with_type
23826         clause, return the gobal finalization list, for lack of anthing else.
23828 2001-10-11  Ed Schonberg <schonber@gnat.com>
23830         * exp_ch7.adb (Make_Transient_Block): if statement is within
23831         exception handler, always use new transient scope to place Clean
23832         procedure.
23834 2001-10-11  Pascal Obry <obry@gnat.com>
23836         * Makefile.in:
23837         (GNAT_ADA_OBJS): add g-crc32.o, a-tags.o, a-stream.o
23838         (GNATBIND_OBJS): add g-crc32.o, a-tags.o, a-stream.o
23839         (GNATLS_RTL_OBJS): add g-crc32.o
23840         (GNATMAKE_RTL_OBJS): add g-crc32.o
23842         * ali-util.adb:
23843         (CRC_Match): new function.
23844         (Get_File_Checksum): renamed Get_File_CRC. Use the GNAT.CRC32 unit
23845         instead of the previous simple checksum algorithm.
23846         (Time_Stamp_Mismatch): use CRC_Match for comparison.
23847         (Set_Source_Table): idem.
23849         * ali-util.ads:
23850         (Get_File_Checksum): renamed Get_File_CRC as now we compute CRC
23851         instead of simple checksum.
23852         (CRC_Match): new function.
23853         (CRC_Error): new constant.
23855         * ali.adb (Scan_ALI): rename variable Chk to CRC as we are handling
23856         a CRC now and not a simple checksum. A CRC uses lower-case hex
23857         letters, fixes ambiguity in parsing.
23859         * ali.ads (Sdep_Record.Checksum): renamed Sdep_Record.CRC as this
23860         is what this variable will store.
23862         * bcheck.adb: Change reference to chechsum in comments by CRC.
23863         (Check_Consistency): Rename Get_File_Checksum to Get_File_CRC.
23864         rename All_Checksum_Match to All_CRC_Match. Change due to API
23865         renaming since now GNAT does not use a simple checksum but a
23866         CRC using GNAT.CRC32.
23868         * gnatls.adb: Rename Checksum to CRC in many places, we use a CRC
23869         now and not anymore a simple checksum.
23871         * lib-load.adb: Use Source_CRC instead of Source_Checksum in many
23872         places.
23874         * lib-writ.adb (Write_ALI): Use Source_CRC instead of Source_Checksum.
23876         * scans.adb:
23877         (Restore_Scan_State): rename Checksum to CRC.
23878         (Save_Scan_State): idem.
23880         * scans.ads:
23881         With GNAT.CRC32.
23882         (Checksum): rename to CRC.
23883         (Saved_Scan_State): Save_Checksum field renamed to Save_CRC
23885         * scn-nlit.adb: Rename many Accumulate_Checksum to Update (from
23886         GNAT.CRC32).  Update copyright notice.
23888         * scn-slit.adb: Rename many Accumulate_Checksum to Update (from
23889         GNAT.CRC32).  Update copyright notice.
23891         * scn.adb:
23892         (Accumulate_Checksum): removed.
23893         (Update): new procedure. Add a wide-character into the CRC.
23895         * sinput-l.adb:
23896         (Complete_Source_File_Entry): use CRC32 instead of simple checksum.
23897         (Load_File): fix initialization of S (change Source_Checksum to
23898         Source_CRC)
23900         * sinput-p.adb (Load_Project_File): rename Source_Checksum to
23901         Source_CRC in S initialization.
23903         * sinput.adb (Source_Checksum): renamed to Source_CRC.
23905         * sinput.ads (Source_Checksum): renamed to Source_CRC.
23906         Update comments for the CRC.
23908         * types.adb (Hex): Use lowercase for the letter part.
23910         * types.ads (Get_Hex_String): Returns the hexadecimal representation
23911         for a word. This is currently used only for CRC. In previous version,
23912         the checksum was using a representation with all letter being
23913         upper-case. With the new implementation (using CRC) we do not remove
23914         the 32th bit of the CRC, so we can have an upper-case starting letter
23915         in the CRC. This is not possible to parse in Scan_ALI (ali.adb).
23916         It is ambigous since the CRC was optional and could be followed by
23917         options like EB, EE. So now this routines uses lower-case letter for
23918         the hexadecimal representation. Strange enough only lower case letters
23919         where checked in Scan_ALI (even if this was not a possible case).
23921         * gnatvsn.ads (Library_Version): changed to 3.15a.
23923         * s-crc32.ads: Initial version from GNAT.CRC32. This is the version
23924         for the compiler.
23926         * s-crc32.adb: Initial version from GNAT.CRC32. This is the version
23927         for the compiler.
23929         * ali-util.adb: Redo previous change to avoid using word CRC everywhere
23930         Add 2001 to copyright notice
23931         (Accumulate_Checksum): Modify to use System.CRC32.
23933         * ali-util.ads: Redo changes of previous revision to continue to use
23934         the word Checksum. Add 2001 to copyright notice.
23936         * ali.adb: Undo some of previous changes, not needed.
23937         Keep the change for lower case letters in the checksum.
23939         * ali.ads: Undo previous change not needed.
23941         * bcheck.adb: Undo most of previous change, not needed.
23942         But do use Checksums_Match for checksum comparison.
23944         * gnatls.adb: Undo most of previous change, not needed.
23945         But do use Checksums_Match for comparing checksums.
23947         * lib-load.adb: Undo previous change, not needed.
23949         * lib-writ.adb: Undo previous change, not needed.
23951         * lib-writ.ads: Document that checksums use lower case,
23952         not upper case letters.
23954         * scans.adb: Undo previous change, not needed
23956         * scans.ads: Undo previous change, not needed.
23958         * scn-nlit.adb: Undo previous changes, not needed.
23960         * scn-slit.adb: Undo previous change, not needed.  Fix header format.
23962         * scn.adb:
23963         (Accumulate_Checksum): Use System.CRC32.
23964         (Initialize_Checksum): New procedure.
23965         Remove other changes of previous revision.
23967         * sinput-p.adb: Undo previous change, not needed.
23969         * sinput.adb: Undo previous change, not needed.
23971         * sinput-l.adb: Undo previous change, not needed.
23973         * sinput.ads: Undo previous change, not needed.  Keep only comment
23974         on new checksum algorithm
23976         * Makefile.in: Add s-crc32 as needed, remove g-crc32.
23977         Also remove a-tags and a-stream from GNAT sources.
23979         * ali.adb (Scan_ALI): fix typo introduce in latest check-in.
23981         * Makefile.in (GNATRTL_NONTASKING_OBJS): Add g-crc32.o.
23983 2001-10-11  Geert Bosch  <bosch@gnat.com>
23985         * einfo.h: Regenerate.
23987         * nmake.ads: Regenerate.
23989         * nmake.adb: Regenerate.
23991         * sinfo.h: Regenerate.
23993         * treeprs.adb: Regenerate.
23995 2001-10-10  Geert Bosch  <bosch@gnat.com>
23997         * gnat-style.texi: New file describing coding guidelines for Ada.
23999 2001-10-10  Ed Schonberg <schonber@gnat.com>
24001         * einfo.adb (Write_Entity_Flags): Elaboration_Entity_Required
24002         is Flag174.
24004 2001-10-10  Geert Bosch  <bosch@gnat.com>
24006         * snames.ads: Add new names for project facility.
24008         * snames.adb: Update to reflect snames.ads changes.
24010         * snames.h: Update to reflect snames.ads changes.
24012 2001-10-10  Vincent Celier <celier@gnat.com>
24014         * make.adb:
24015         (Add_Switches): reflect the changes for the switches attributes
24016         Default_Switches indexed by the programming language,
24017         Switches indexed by the file name.
24018         (Collect_Arguments_And_Compile): Idem.
24019         Reflect the attribute name changes.
24021         * prj-attr.adb:
24022         (Initialisation_Data): Change the names of some packages and
24023         attributes.
24024         (Initialize): process case insensitive associative arrays.
24026         * prj-attr.ads:
24027         (Attribute_Kind): Remove Both, add Case_Insensitive_Associative_Array.
24029         * prj-dect.adb:
24030         (Parse_Attribute_Declaration): For case insensitive associative
24031          arrays, set the index string to lower case.
24033         * prj-env.adb:
24034         Reflect the changes of the project attributes.
24036         * prj-nmsc.adb:
24037         Replace Check_Naming_Scheme by Ada_Check and
24038         Language_Independent_Check.
24040         * prj-nmsc.ads:
24041         Replaced Check_Naming_Scheme by 2 procedures:
24042         Ada_Check and Language_Independent_Check.
24044         * prj-proc.adb:
24045         (Process_Declarative_Items): For case-insensitive associative
24046         arrays, set the index string to lower case.
24047         (Recursive_Check): Call Prj.Nmsc.Ada_Check, instead of
24048         Prj.Nmsc.Check_Naming_Scheme.
24050         * prj-tree.adb:
24051         (Case_Insensitive): New function
24052         (Set_Case_Insensitive): New procedure
24054         * prj-tree.ads:
24055         (Case_Insensitive): New function
24056         (Set_Case_Insensitive): New procedure
24057         (Project_Node_Record): New flag Case_Insensitive.
24059         * prj-util.adb:
24060         (Value_Of): new function to get the string value of a single
24061         string variable or attribute.
24063         * prj-util.ads:
24064         (Value_Of): new function to get the string value of a single
24065         string variable or attribute.
24067         * prj.adb:
24068         (Ada_Default_Spec_Suffix): New function
24069         (Ada_Default_Impl_Suffix): New function
24070         Change definitions of several constants to reflect
24071         new components of record types.
24073         * prj.ads:
24074         (Naming_Data): Change several components to reflect new
24075         elements of naming schemes.
24076         (Project_Data): New flags Sources_Present and
24077         Language_Independent_Checked.
24078         (Ada_Default_Spec_Suffix): New function.
24079         (Ada_Default_Impl_Suffix): New function.
24081         * snames.ads:
24082         Modification of predefined names for project manager: added
24083         Implementation, Specification_Exceptions, Implementation_Exceptions,
24084         Specification_Suffix, Implementation_Suffix, Separate_Suffix,
24085         Default_Switches, _Languages, Builder, Cross_Reference,
24086         Finder. Removed Body_Part, Specification_Append, Body_Append,
24087         Separate_Append, Gnatmake, Gnatxref, Gnatfind, Gnatbind,
24088         Gnatlink.
24090         * prj.ads: (Ada_Default_Spec_Suffix, Ada_Default_Impl_Suffix):
24091         Add comments.
24093         * prj-nmsc.adb (Ada_Check): Test that Separate_Suffix is defaulted,
24094         not that it is Nil_Variable_Value.
24096         * prj.ads: Add ??? for uncommented declarations
24098 2001-10-10  Ed Schonberg <schonber@gnat.com>
24100         * sem_prag.adb: (Analyze_Pragma, case External): If entity is a
24101         constant, do not indicate possible modification, so that gigi can
24102         treat it as a bona fide constant.
24104 2001-10-10  Robert Dewar <dewar@gnat.com>
24106         * sem_prag.adb: Add processing for pragma External.
24108         * snames.ads: Add entry for pragma External.
24110         * par-prag.adb: Add pragma External.
24112         * snames.adb: Updated to match snames.ads.
24114 2001-10-10  Ed Schonberg <schonber@gnat.com>
24116         * exp_ch4.adb (Expand_N_Allocator): Generate meaningful names for
24117         a dynamic task if the allocator appears in an indexed assignment
24118         or selected component assignment.
24120         * exp_util.adb (Build_Task_Array_Image, Build_Task_Record_Image):
24121         For a dynamic task in an assignment statement, use target of
24122         assignment to generate meaningful name.
24124 2001-10-10  Ed Schonberg <schonber@gnat.com>
24126         * einfo.adb (Write_Field19_Name): Body_Entity is also defined for
24127         a generic package.
24129         * einfo.ads: Body_Entity is also defined for generic package.
24130         Documentation change only
24132         * exp_aggr.adb (Build_Array_Aggr_Code): When expanding an
24133         others_choice for a discriminated component initialization,
24134         convert discriminant references into the corresponding discriminals.
24136         * exp_ch3.adb (Get_Simple_Init_Val): Add qualification to aggregate
24137         only if original type is private and expression has to be wrapped
24138         in a conversion.
24140         * checks.adb:
24141         (Apply_Constraint_Check): Do not perform length check
24142         if expression is an aggregate with only an others_choice.
24143         (Length_N_Cond): two references to the same in_parameter
24144         (typically the discriminal in an init_proc) denote the same value.
24145         Two useful optimization uncovered by bugfixes above.
24147 2001-10-10  Robert Dewar <dewar@gnat.com>
24149         * xeinfo.adb: Change int to char in translation of enumeration types.
24150         This fixes a problem in the C representation of component alignment.
24151         Add 2001 to copyright notice
24153 2001-10-10  Richard Kenner <kenner@gnat.com>
24155         * decl.c: (validate_size): Do check size of object of integral type
24156         if it is a packed array type.
24158 2001-10-10  Richard Kenner <kenner@gnat.com>
24160         * decl.c: (gnat_to_gnu_entity, case object): Also materialize
24161         VAR_DECL for constant if not Is_Public but -O0.
24163 2001-10-10  Richard Kenner  <kenner@gnat.com>
24165         * misc.c (struct lang_hooks): Add new initializer to match GCC change.
24167 2001-10-10  Geert Bosch  <bosch@gnat.com>
24169         * xnmake.adb (XNmake): Fix handling of -s/-b options.  No longer
24170         use '/' as switch character, allowing for absolute file names.
24172 2001-10-09  Joseph S. Myers  <jsm28@cam.ac.uk>
24174         * 4gintnam.ads, Make-lang.in, Makefile.in, config-lang.in: Update
24175         FSF address.
24177 2001-10-08  Geert Bosch  <bosch@gnat.com>
24179         * Makefile.in (treeprs.ads, einfo.h, sinfo.h, nmake.adb, nmake.ads):
24180         Automatically build utilities when files need to be regenerated.
24182 2001-10-08  Geert Bosch  <bosch@gnat.com>
24184         * xsnames.adb: New utility for updating snames.ads and snames.adb
24186 2001-10-08  Zack Weinberg  <zack@codesourcery.com>
24188         * Make-lang.in (ADAFLAGS): Add -W -Wall.
24189         (ADA_FLAGS_TO_PASS): Set ADA_CFLAGS=$(CFLAGS) also.
24190         (gnat1): Also depend on attribs.o.
24191         (gnatlib, gnatlib-shared): Set CC and ADAC in recursive make.
24192         * Makefile.in (X_ADAFLAGS, T_ADAFLAGS): New.
24193         (ADAC): Set to @ADAC@ in stage1, $(CC) later.
24194         (ADAFLAGS): Add -W -Wall.
24195         (ALL_ADAFLAGS, MOST_ADAFLAGS): Add X_ADAFLAGS and T_ADAFLAGS;
24196         take out CFLAGS.
24198         (.adb.o, .ads.o, a-numaux.o, a-teioed.o, s-interr.o,
24199         s-taskin.o, sdefault.o, s-tasdeb.o, s-vaflop.o, a-except.o,
24200         s-assert.o, s-stalib.o, s-memory.o, memtrack.o, mlib-tgt.o):
24201         Use $(ADAC), not $(CC), as compilation command.
24203         (gnattools): Depend directly on tools to build, don't use
24204         recursive make.
24205         (gnatlib): Set ADA_CFLAGS=$(GNATLIBCFLAGS) in recursive make.
24207         * einfo.h, sinfo.h: New files (autogenerated).
24209 2001-10-08  Richard Henderson  <rth@redhat.com>
24211         * comperr.adb (Abort_In_Progress): New.
24212         (Compiler_Abort): Use it to prevent recursion.
24214 2001-10-08  Robert Dewar <dewar@gnat.com>
24216         * atree.adb: Set Error_Posted in Error node, helps error recovery.
24218         * par-endh.adb (Output_End_Expected): We should also not test
24219         Error_Posted on the Error node, since now it is always set.
24221         * cstand.adb (Create_Standard): Set Etype of Error to Any_Type
24222         to help error recovery. Part of general work on 9407-004.
24224         * par.adb: Add ??? for misuse of error
24226         * sem_res.adb:
24227         (Resolve): Defend against Error, fixes 9407-003.
24228         (Resolve_Discrete_Subtype_Indication): Defend against Error.
24230         * sinfo.ads (N_Error): Now has Etype field (which will be set
24231         to Any_Type to help error recovery).
24233 2001-10-08  Richard Kenner (kenner@gnat.com)
24235         * misc.c (gnat_expand_expr, case UNCHECKED_CONVERT_EXPR):
24236         Consistently set MEM attributes from expression; fixes
24237         bootstrap failure on x86.
24239 2001-10-08  Geert Bosch  (bosch@gnat.com)
24241         * 5oosinte.adb: Add 2001 to copyright notice.
24243 2001-10-08  Geert Bosch  (bosch@gnat.com)
24245         * ceinfo.adb: Add utility for consistency checking of einfo.ad[bs].
24247         * csinfo.adb: Add utility for consistency checking of sinfo.ad[bs].
24249 2001-10-07  Joseph S. Myers  <jsm28@cam.ac.uk>
24251         * 5oosinte.adb: Fix spelling error of "separate" as "seperate".
24253 2001-10-05  Geert Bosch  (bosch@gnat.com)
24255         * adaint.h: Small formatting fix.
24257 2001-10-04  Geert Bosch  <bosch@gnat.com>
24259         * sysdep.c (__gnat_set_binary_mode, __gnat_set_text_mode):
24260         Arg is int, not FILE *, in dummy version of functions.
24262         * adaint.h (__gnat_set_binary_mode, __gnat_set_text_mode):
24263         Arg is int, not FILE *.
24265 2001-10-04  Geert Bosch  <bosch@gnat.com>
24267         * 3lsoccon.ads: Added file, missed with initial check ins.
24269         * 4lintnam.ads: Fix header format.
24270         Change Linux to GNU/Linux.
24272         * 5iosinte.adb: Change Linux to GNU/Linux.
24274         * 5iosinte.ads: Change Linux to GNU/Linux.
24276         * 5itaprop.adb: Change Linux to GNU/Linux.
24278         * 5itaspri.ads: Change Linux to GNU/Linux.
24279         Update copyright notice.
24281         * 5lintman.adb: Change Linux to GNU/Linux.
24283         * 5lml-tgt.adb: Change Linux to GNU/Linux.
24285         * 5losinte.ads: Change Linux to GNU/Linux.
24287         * 5lsystem.ads: Change Linux to GNU/Linux.
24289         * 5qosinte.adb: Change Linux to GNU/Linux.
24291         * 5qosinte.ads: Change Linux to GNU/Linux.
24293         * 5qparame.ads: Change Linux to GNU/Linux.
24295         * 5qtaprop.adb: Change Linux to GNU/Linux.
24297         * 5qtaspri.ads: Change Linux to GNU/Linux.
24298         Add 2001 to copyright notice.
24300         * 5vintman.ads: Change Linux to GNU/Linux.
24301         Fix header format.  Add 2001 to copyright notice.
24303         * g-soccon.ads: Change Linux to GNU/Linux.
24305         * g-trasym.ads: Change Linux to GNU/Linux.
24306         Add 2001 to copyright notice.
24308         * memtrack.adb: Change Linux to GNU/Linux.
24310         * s-intman.ads: Change Linux to GNU/Linux.
24311         Add 2001 to copyright notice.  Fix header format.
24313         * s-stache.adb: Change Linux to GNU/Linux.
24315         * adaint.c: Change Linux to GNU/Linux.
24317         * cio.c: Change Linux to GNU/Linux.
24319         * cstreams.c: Change Linux to GNU/Linux.
24321         * init.c: Change Linux to GNU/Linux.
24323         * gmem.c: Change Linux to GNU/Linux.
24325         * tracebak.c: Change Linux to GNU/Linux.
24328 2001-10-02  Geert Bosch  <bosch@gnat.com>
24330         * misc.c (insert_default_attributes): Add dummy version.