Fix failure when -fno-rtti test is run in C++17 or later
[official-gcc.git] / gcc / ada / ChangeLog
blob06b11066549cbb588977115b857b1e65dc3971b6
1 2018-08-23  Giuliano Belinassi  <giuliano.belinassi@usp.br>
3         * exp_unst.ads: Fix typo 'exapnded' to 'expanded'.
5 2018-08-21  Hristian Kirtchev  <kirtchev@adacore.com>
7         * checks.adb, contracts.adb, exp_aggr.adb, exp_attr.adb,
8         exp_ch6.adb, exp_ch7.adb, exp_ch9.adb, exp_unst.adb,
9         exp_util.adb, freeze.adb, gnatlink.adb, layout.adb,
10         lib-writ.adb, lib-xref-spark_specific.adb, sem_ch13.adb,
11         sem_ch3.adb, sem_ch6.adb, sem_res.adb, sem_util.adb, sinfo.ads,
12         sprint.adb: Minor reformatting.
14 2018-08-21  Jerome Lambourg  <lambourg@adacore.com>
16         * vxlink-bind.adb, vxlink-bind.ads, vxlink-link.adb,
17         vxlink-link.ads, vxlink-main.adb, vxlink.adb, vxlink.ads: Add a
18         new tool vxlink to handle VxWorks constructors in DKMs.
19         * gcc-interface/Makefile.in: add rules to build vxlink
21 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
23         * sem_ch6.adb (Analyze_Subprogram_Body_Helper, Mask_Type):
24         Refine the handling of freezing types for expression functions
25         that are not completions, when analyzing the generated body for
26         the function: the body is inserted at the end of the enclosing
27         declarative part, and its analysis may freeze types declared in
28         the same scope that have not been frozen yet.
30 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
32         * sem_ch6.adb: Remove Freeze_Expr_Types.
33         * freeze.ads, freeze.adb (Freeze_Expr_Types): Moved from
34         sem_ch6.adb, and extended to handle other expressions that may
35         contain unfrozen types that must be frozen in their proper
36         scopes.
37         * contracts.adb (Analyze_Entry_Or_Subprogram_Contract): If the
38         contract is for the generated body of an expression function
39         that is a completion, traverse the expressions for pre- and
40         postconditions to freeze all types before adding the contract
41         code within the subprogram body.
43 2018-08-21  Hristian Kirtchev  <kirtchev@adacore.com>
45         * sem_ch10.adb: Remove the with and use clause for unit Ghost.
46         (Analyze_With_Clause): Do not mark a with clause which mentions
47         an ignored Ghost code for elimination.
49 2018-08-21  Javier Miranda  <miranda@adacore.com>
51         * lib-writ.adb (Write_Unit_Information): Handle pragmas removed
52         by the expander.
54 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
56         * sem_ch6.adb (Check_Synchronized_Overriding): The conformance
57         between an overriding protected operation and the overridden
58         abstract progenitor operation requires subtype conformance;
59         requiring equality of return types in the case of a function is
60         too restrictive and leads to spurious errors when the return
61         type is a generic actual.
63 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
65         * exp_ch9.adb (Expand_N_Timed_Entry_Call,
66         Expand_Conditional_Entry_Call): Use Reset_Scopes_Of to set
67         properly the scope of all entities created in blocks generated
68         by the expansion of these constructs.
70 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
72         * sem_ch13.adb (Build_Predicate_Functioss): Apply
73         Reset_Quantified_Variables_Scope after predicate function has
74         been analyzed, so that the scope can be reset on the generated
75         loop statements that have replaced the quantified expressions.
77 2018-08-21  Bob Duff  <duff@adacore.com>
79         * einfo.ads, einfo.adb (Private_View, Shadow_Entities): Remove
80         obsolete code.
82 2018-08-21  Maroua Maalej  <maalej@adacore.com>
84         * sem_spark.adb (Check_Call_Statement): Check global and formal
85         parameter permissions at call sites.
86         (Check_Callable_Body): Assume permissions on globals and
87         parameters depending on their modes then analyse the body
88         operations.
89         (Check_Declaration): Consider both deep (including elementary
90         access) object declarations and normal variables. First check
91         whether the deep object is of Ownership Aspec True or not, then,
92         depending on its initialization, assign the appropriate state.
93         Check related to non access type variables deal with
94         initialization value permissions.
95         (Check_Expression): Check nodes used in the expression being
96         analyzed.
97         (Check_Globals): Call by Check_Call_Statement to perform the
98         check on globals.
99         (Check_List): Call Check_Node on each element of the list.
100         (Check_Loop_Statement): Check the Iteration_Scheme and loop
101         statements.
102         (Check_Node): Main traversal procedure to check safe pointer usage.
103         (Check_Package_Body): Check subprogram's body.
104         (Check_Param_In): Take a formal and an actual parameter and
105         Check the permission of every in-mode parameter.
106         (Check_Param_Out): Take a formal and an actual parameter and
107         check the state of out-mode and in out-mode parameters.
108         (Check_Statement): Check statements other than procedure call.
109         (Get_Perm, Get_Perm_Or_Tree, Get_Perm_Tree): Find out the state
110         related to the given name.
111         (Is_Deep): Return True if an object is of access type or has
112         subfields of access type.
113         (Perm_Error, Perm_Error_Subprogram_End): Add an error message
114         whenever the found state on the given name is different from the
115         one expected (in the statement being analyzed).
116         (Process_Path): Given an operation and a current state, call
117         Perm_Error if there is any mismatch.
118         (Return_Declarations, Return_Globals, Return_The_Global): Check
119         the state of a given name at the end of the subprogram. These
120         procedures may change depending on how we shall finally deal
121         with globals and the rhs state in a move operation.
122         (Set_Perm_Extensions, Set_Perm_Prefixes_Borrow,
123         Set_Perm_Prefixes, Setup_Globals, Setup_Parameter_Or_Global,
124         Setup_Parameters): Set up the new states to the given node and
125         up and down the tree after an operation.
126         (Has_Ownership_Aspect_True): This function may disappear later
127         when the Ownership Aspect will be implemented in the FE.
129 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
131         * sem_res.adb (Resolve_Call): Resolve correctly a parameterless
132         call that returns an access type whose designated type is the
133         component type of an array, when the function has no defaulted
134         parameters.
136 2018-08-21  Yannick Moy  <moy@adacore.com>
138         * doc/gnat_ugn/building_executable_programs_with_gnat.rst:
139         Document entries of the target parametrization file.
140         * gnat_ugn.texi: Regenerate.
142 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
144         * sem_attr.adb: Set scope of elaboration flag for 'Access.
146 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
148         * sprint.adb: Add guard on printing aspects.
150 2018-08-21  Javier Miranda  <miranda@adacore.com>
152         * exp_cg.adb (Generate_CG_Output): Handle calls removed by the
153         expander.
155 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
157         * layout.adb: Do not set size of access subprogram if unnesting.
159 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
161         * freeze.adb: Remove warnings for access to subprograms when
162         unnesting is active.
164 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
166         * exp_aggr.adb (Expand_Array_Aggregate): If the component type
167         is limited, the array must be constructed in place, so set flag
168         In_Place_Assign_OK_For_Declaration accordingly. This prevents
169         improper copying of an array of tasks during initialization.
171 2018-08-21  Eric Botcazou  <ebotcazou@adacore.com>
173         * gcc-interface/trans.c (Call_to_gnu): Always suppress an
174         unchecked conversion around the actual for an In parameter
175         passed by copy.
177 2018-08-21  Eric Botcazou  <ebotcazou@adacore.com>
179         * exp_util.adb (Is_Possibly_Unaligned_Object): For the case of a
180         selected component inherited in a record extension and subject
181         to a representation clause, retrieve the position and size from
182         the original record component.
184 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
186         * sem_util.ads, sem_util.adb (New_External_Entity): Type of
187         Suffix_Index must be Int, not Nat, so that a negative value can
188         be used to generate a unique name for an external object, as
189         specified in Tbuild.New_External_Name.
190         (Scope_Within): Handle private type whose completion is a
191         synchronized type (For unnesting).
192         * itypes.ads, itypes.adb (Create_Itype): Ditto
193         * sem_ch3.adb (Constrain_Corresponding_Record): Generate a
194         unique name for the created subtype, because there may be
195         several discriminated tasks present in the same scope, and each
196         needs its distinct corresponding record subtype.
198 2018-08-21  Yannick Moy  <moy@adacore.com>
200         * doc/gnat_ugn/gnat_and_program_execution.rst: Update
201         documentation of dimensionality analysis.
202         * gnat_ugn.texi: Regenerate.
203         * Makefile.rtl, impunit.adb: Consider the new units.
204         * libgnat/s-dfmkio.ads, libgnat/s-dfmopr.ads,
205         libgnat/s-diflmk.ads: New units based on Float.
206         * libgnat/s-dilomk.ads, libgnat/s-dlmkio.ads,
207         libgnat/s-dlmopr.ads: New units based on Long_Float.
208         * libgnat/s-dmotpr.ads: Rename to libgnat/s-dgmgop.ads and turn
209         into an instance of
210         System.Dim.Generic_Mks.Generic_Other_Prefixes.
211         * libgnat/s-dimmks.ads: Rename to libgnat/s-digemk.ads and turn
212         into an instance of System.Dim.Generic_Mks.
214 2018-08-21  Hristian Kirtchev  <kirtchev@adacore.com>
216         * impunit.adb: Add g-lists to the set of non-implementation
217         units.
218         * libgnat/g-lists.adb, libgnat/g-lists.ads: New unit.
219         * Makefile.rtl: Add g-lists to the set of non-tasking units.
220         * gcc-interface/Make-lang.in: Add g-lists to the set of files
221         used by gnat1.
223 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
225         * exp_ch9.adb (Reset_Scopes): Do not recurse into type
226         declarations when resetting the scope of entities declared the
227         procedures generated for entry bodies and accept alternatives.
228         Use the entity of the procedure declaration, not its body, as
229         the new scope.
231 2018-08-21  Hristian Kirtchev  <kirtchev@adacore.com>
233         * einfo.adb (Elaboration_Entity): Include entries and entry
234         families in the set of legal entities.
235         (Elaboration_Entity_Required): Include entries and entry
236         families in the set of legal entities.
237         (Set_Elaboration_Entity): Include entries and entry families in
238         the set of legal entities.
239         (Set_Elaboration_Entity_Required): Include entries and entry
240         families in the set of legal entities.
241         (Write_Field13_Name): Update the output of attribute
242         Elaboration_Entity.
243         * einfo.ads: Attributes Elaboration_Entity and
244         Elaboration_Entity_Required now apply to entries and entry
245         families.
247 2018-08-21  Arnaud Charlet  <charlet@adacore.com>
249         * set_targ.adb: Mark some CodePeer message as Intentional.
251 2018-08-21  Ed Schonberg  <schonberg@adacore.com>
253         * sem_res.adb (Resolve_Call): Force the freezing of an
254         expression function that is called to provide a default value
255         for a defaulted discriminant in an object initialization.
257 2018-08-21  Hristian Kirtchev  <kirtchev@adacore.com>
259         * libgnat/g-dynhta.adb, libgnat/g-dynhta.ads: New package
260         Dynamic_HTable.
262 2018-08-21  Javier Miranda  <miranda@adacore.com>
264         * checks.ads (Determine_Range): Adding documentation.
265         * checks.adb (Determine_Range): Don't deal with enumerated types
266         with non-standard representation.
267         (Convert_And_Check_Range): For conversion of enumeration types
268         with non standard representation to an integer type perform a
269         direct conversion to the target integer type.
271 2018-08-21  Piotr Trojanek  <trojanek@adacore.com>
273         * lib-xref.ads, lib-xref-spark_specific.adb
274         (Enclosing_Subprogram_Or_Library_Package): Now roughtly works
275         for pragmas that come from aspect specifications.
277 2018-08-21  Pierre-Marie de Rodat  <derodat@adacore.com>
279         * sa_messages.ads, sa_messages.adb: New source files.
281 2018-08-03  Pierre-Marie de Rodat  <derodat@adacore.com>
283         Reverts
284         2018-07-06  Jim Wilson  <jimw@sifive.com>
286         * Make-generated.in (treeprs.ads): Use $(GNATMAKE) instead of gnatmake.
287         (einfo.h, sinfo.h, stamp-snames, stamp-nmake): Likewise.
288         * gcc-interface/Makefile.in (xoscons): Likewise.
290 2018-07-31  Alexandre Oliva  <oliva@adacore.com>
291             Olivier Hainque  <hainque@adacore.com>
293         * gcc-interface/trans.c: Include debug.h.
294         (file_map): New static variable.
295         (gigi): Set it.  Create decl_to_instance_map when needed.
296         (Subprogram_Body_to_gnu): Pass gnu_subprog_decl to...
297         (Sloc_to_locus): ... this.  Add decl parm, map it to instance.
298         * gcc-interface/gigi.h (Sloc_to_locus): Adjust declaration.
300 2018-07-31  Arnaud Charlet  <charlet@adacore.com>
302         * clean.adb, gnatchop.adb, gnatfind.adb, gnatls.adb,
303         gnatmake.ads, gnatxref.adb, make.adb, make.ads, make_util.ads,
304         sfn_scan.adb, vxaddr2line.adb, xeinfo.adb, xoscons.adb,
305         xr_tabls.adb, xref_lib.adb: Address CodePeer messages.
307 2018-07-31  Arnaud Charlet  <charlet@adacore.com>
309         * gnatlink.adb: Fix potential Constraint_Error if
310         Library_Version is too long.
312 2018-07-31  Arnaud Charlet  <charlet@adacore.com>
314         * sem_elab.adb: Remove duplicate condition detected by CodePeer.
316 2018-07-31  Ed Schonberg  <schonberg@adacore.com>
318         * exp_unst.adb (Subp_Index): In the case of a protected
319         operation, the relevant entry is the generated
320         protected_subprogram_body into which the original body is
321         rewritten. Assorted cleanup and optimizations.
323 2018-07-31  Ed Schonberg  <schonberg@adacore.com>
325         * exp_attr.adb (Expand_Attribute, case Fixed_Value): Set the
326         base type of the result to ensure that proper overflow and range
327         checks are generated.  If the target is a fixed-point tyoe,
328         generate the required overflow and range checks explicitly,
329         rather than relying on Apply_Type_Conversion_Checks, which might
330         simply set the Do_Range_Check flag and rely on the backend to
331         add the check.
333 2018-07-31  Hristian Kirtchev  <kirtchev@adacore.com>
335         * sem_res.adb (Resolve_Call): Establish a transient scope to
336         manage the secondary stack when the designated type of an
337         access-to-subprogram requires it.
339 2018-07-31  Ed Schonberg  <schonberg@adacore.com>
341         * exp_ch7.adb (Check_Unnesting_Elaboration_Code): To find local
342         subprograms in the elaboration code for a package body, recurse
343         through nested statement sequences because a compiler-generated
344         procedure may appear within a condition statement.
346 2018-07-31  Ed Schonberg  <schonberg@adacore.com>
348         * exp_ch6.adb (Expand_Protected_Subprogram_Call): Handle
349         properly a protected call that includes a default parameter that
350         is a call to a protected function of the same type.
352 2018-07-31  Justin Squirek  <squirek@adacore.com>
354         * lib-writ.adb (Write_With_Lines): Modfiy the generation of
355         dependencies within ali files so that source unit bodies are
356         properly listed even if said bodies are missing.  Perform legacy
357         behavior in GNATprove mode.
358         * lib-writ.ads: Modify documentation to reflect current behavior.
360 2018-07-31  Eric Botcazou  <ebotcazou@adacore.com>
362         *  libgnarl/s-osinte__solaris.ads (upad64_t): New private type.
363         (mutex_t): Use it for 'lock' and 'data' components.
364         (cond_t): Likewise for 'data' and use single 'flags' component.
366 2018-07-31  Justin Squirek  <squirek@adacore.com>
368         * exp_ch5.adb (Make_Field_Assign): Force temporarily generated
369         objects for assignment of overlaid user objects to be renamings
370         instead of constant declarations.
372 2018-07-31  Hristian Kirtchev  <kirtchev@adacore.com>
374         * exp_ch9.adb (Analyze_Pragmas): New routine.
375         (Build_Private_Protected_Declaration): Code clean up. Relocate
376         relevant aspects and pragmas from the stand-alone body to the
377         newly created spec.  Explicitly analyze any pragmas that have
378         been either relocated or produced by the analysis of the
379         aspects.
380         (Move_Pragmas): New routine.
381         * sem_prag.adb (Find_Related_Declaration_Or_Body): Recognize the
382         case where a pragma applies to the internally created spec for a
383         stand-along subprogram body declared in a protected body.
385 2018-07-31  Gary Dismukes  <dismukes@adacore.com>
387         * exp_ch6.adb (Expand_N_Extended_Return_Statement): Replace
388         calls to Current_Scope in three assertions with calls to
389         Current_Subprogram.
391 2018-07-31  Ed Schonberg  <schonberg@adacore.com>
393         * sem_eval.adb (Check_Non_Static_Context): Do not warn on an
394         integer literal greater than the upper bound of
395         Universal_Integer'Last when expansion is disabled, to avoid a
396         spurious warning over ranges involving 64-bit modular types.
398 2018-07-31  Arnaud Charlet  <charlet@adacore.com>
400         * einfo.adb (Write_Entity_Flags): Also print
401         Is_Activation_Record flag.
403 2018-07-31  Piotr Trojanek  <trojanek@adacore.com>
405         * exp_aggr.adb, exp_ch4.adb, exp_ch6.adb, lib-xref.adb,
406         repinfo.adb, sem_ch9.adb: Minor replace Ekind membership tests
407         with a wrapper routine.
409 2018-07-31  Piotr Trojanek  <trojanek@adacore.com>
411         * ali.adb (Known_ALI_Lines): Remove 'F' as a prefix for lines
412         related to the FORMAL analysis done by GNATprove.
414 2018-07-31  Javier Miranda  <miranda@adacore.com>
416         * sem.ads (Inside_Preanalysis_Without_Freezing): New global
417         counter.
418         * sem.adb (Semantics): This subprogram has now the
419         responsibility of resetting the counter before analyzing a unit,
420         and restoring its previous value before returning.
421         * freeze.adb (Freeze_Entity): Do not freeze if we are
422         preanalyzing without freezing.
423         * sem_res.adb (Preanalyze_And_Resolve): Set & restore
424         In_Preanalysis_Without_Freezing.
426 2018-07-31  Ed Schonberg  <schonberg@adacore.com>
428         * sem_ch4.adb (Traverse_Homonyms): Consider generic actuals that
429         may rename a matching class-wide operation only if the renaming
430         declaration for that actual is in an enclosing scope (i.e.
431         within the corrresponding instance).
433 2018-07-31  Hristian Kirtchev  <kirtchev@adacore.com>
435         * checks.adb, contracts.adb, exp_aggr.adb, exp_ch5.adb,
436         exp_disp.adb, make.adb, sem_ch4.adb, sem_eval.adb, sem_res.adb,
437         usage.adb: Minor reformatting.
439 2018-07-31  Bob Duff  <duff@adacore.com>
441         * sem_res.adb (Resolve_Allocator): Do not complain about the
442         implicit allocator that occurs in the expansion of a return
443         statement for a build-in-place function.
445 2018-07-20  Martin Sebor  <msebor@redhat.com>
447         PR middle-end/82063
448         * gcc-interface/misc.c (gnat_handle_option): Change function argument
449         to HOST_WIDE_INT.
451 2018-07-17  Eric Botcazou  <ebotcazou@adacore.com>
453         * gcc-interface/decl.c (choices_to_gnu): Rename parameters.  Deal with
454         an operand of Character type.  Factor out range generation to the end.
455         Check that the bounds are literals and convert them to the type of the
456         operand before building the ranges.
457         * gcc-interface/utils.c (make_dummy_type): Minor tweak.
458         (make_packable_type): Propagate TYPE_DEBUG_TYPE.
459         (maybe_pad_type): Likewise.
461 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
463         * sem_ch4.adb (Try_Object_Operation): Handle properly a prefixed call
464         in an instance, when the generic parameters include an interface type
465         and a abstract operation of that type, and the actuals in the instance
466         include an interface type and a corresponding abstract operation of it,
467         with a different name than the corresponding generic subprogram
468         parameter.
470 2018-07-17  Arnaud Charlet  <charlet@adacore.com>
472         * sem_eval.adb (Rewrite_In_Raise_CE): Keep the original reason in more
473         cases.
475 2018-07-17  Arnaud Charlet  <charlet@adacore.com>
477         * checks.adb (Apply_Division_Check): Add provision for floating-point
478         checks.
480 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
482         * exp_aggr.adb (Component_OK_For_Backend): If an array component of the
483         enclosing record has a bound that is out of range (and that has been
484         rewritten as a raise statement) the aggregate is not OK for any back
485         end, and should be expanded into individual assignments.
487 2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
489         * atree.adb (Relocate_Node): Simplify with Is_Rewrite_Substitution.
491 2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
493         * sem_util.ads (Denotes_Same_Object): Likewise.
494         * sem_warn.adb (Warn_On_Overlapping_Actuals): Fix RM rule references.
496 2018-07-17  Eric Botcazou  <ebotcazou@adacore.com>
498         * exp_disp.adb (Make_Tags): When the type has user-defined primitives,
499         build the access type that is later used by Build_Get_Prim_Op_Address
500         as pointing to a subtype of Ada.Tags.Address_Array.
502 2018-07-17  Patrick Bernardi  <bernardi@adacore.com>
504         * libgnat/s-memory__mingw.adb: Remove.
505         * Makefile.rtl: Remove s-memory.adb target pair from the Cygwin/Mingw32
506         section.
508 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
510         * frontend.adb (Frontend): The removal of ignored Ghost code must be
511         the last semantic operation performed on the tree.
513 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
515         * frontend.adb (Frontend): Update the call to Register_Config_Switches.
516         * inline.ads: Add new component Config_Switches to record
517         Pending_Body_Info which captures the configuration state of the pending
518         body.  Remove components Version, Version_Pragma, SPARK_Mode, and
519         SPARK_Mode_Pragma from record Pending_Body_Info because they are
520         already captured in component Config_Switches.
521         * opt.adb (Register_Opt_Config_Switches): Rename to
522         Register_Config_Switches.
523         (Restore_Opt_Config_Switches): Rename to Restore_Config_Switches.
524         (Save_Opt_Config_Switches): Rename to Save_Config_Switches. This
525         routine is now a function, and returns the saved configuration state as
526         an aggregate to avoid missing an attribute.
527         (Set_Opt_Config_Switches): Rename to Set_Config_Switches.
528         * opt.ads (Register_Opt_Config_Switches): Rename to
529         Register_Config_Switches.
530         (Restore_Opt_Config_Switches): Rename to Restore_Config_Switches.
531         (Save_Opt_Config_Switches): Rename to Save_Config_Switches. This
532         routine is now a function.
533         (Set_Opt_Config_Switches): Rename to Set_Config_Switches.
534         * par.adb (Par): Update the calls to configuration switch-related
535         subprograms.
536         * sem.adb (Semantics): Update the calls to configuration switch-related
537         subprograms.
538         * sem_ch10.adb (Analyze_Package_Body_Stub): Update the calls to
539         configuration switch-related subprograms.
540         (Analyze_Protected_Body_Stub): Update the calls to configuration
541         switch-related subprograms.
542         (Analyze_Subprogram_Body_Stub): Update calls to configuration
543         switch-related subprograms.
544         * sem_ch12.adb (Add_Pending_Instantiation): Update the capture of
545         pending instantiation attributes.
546         (Inline_Instance_Body): Update the capture of pending instantiation
547         attributes.  It is no longer needed to explicitly manipulate the SPARK
548         mode.
549         (Instantiate_Package_Body): Update the restoration of the context
550         attributes.
551         (Instantiate_Subprogram_Body): Update the restoration of context
552         attributes.
553         (Load_Parent_Of_Generic): Update the capture of pending instantiation
554         attributes.
555         (Set_Instance_Env): Update the way relevant configuration attributes
556         are saved and restored.
558 2018-07-17  Eric Botcazou  <ebotcazou@adacore.com>
560         * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Variable>: Deal with
561         more rvalues in the expression of a renaming.
563 2018-07-17  Eric Botcazou  <ebotcazou@adacore.com>
565         * gcc-interface/ada-tree.h (TYPE_RETURN_BY_DIRECT_REF_P): Define for
566         METHOD_TYPE too.
567         (TYPE_RETURN_UNCONSTRAINED_P): Likewise.
568         (TYPE_CI_CO_LIST): Likewise.
569         * gcc-interface/gigi.h (is_cplusplus_method): Delete.
570         (fntype_same_flags_p): Adjust comment.
571         * gcc-interface/decl.c (Has_Thiscall_Convention): Delete.
572         (gnat_to_gnu_entity) <E_Subprogram_Type>: Do not set the "thiscall"
573         attribute directly.
574         (is_cplusplus_method): Make static and adjust head comment.
575         (gnat_to_gnu_param): Return a pointer for the "this" parameter of
576         C++ constructors.
577         (gnat_to_gnu_subprog_type): Turn imported C++ constructors into their
578         callable form.  Generate a METHOD_TYPE node for imported C++ methods.
579         Set param_list at the very end of the processing.
580         (substitute_in_type) <METHOD_TYPE>: New case.
581         * gcc-interface/misc.c (gnat_print_type) <METHOD_TYPE>: Likewise.
582         (gnat_type_hash_eq): Accept METHOD_TYPE.
583         * gcc-interface/trans.c (Identifier_to_gnu): Deal with METHOD_TYPE.
584         (Attribute_to_gnu): Likewise.
585         (Call_to_gnu): Likewise.
586         (process_freeze_entity): Likewise.
587         * gcc-interface/utils.c (create_subprog_decl): Adjust head comment.
588         (fntype_same_flags_p): Likewise.
590 2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
592         * inline.adb (Expand_Inlined_Call): Remove extra parentheses.
594 2018-07-17  Eric Botcazou  <ebotcazou@adacore.com>
596         * exp_disp.adb (Gen_Parameters_Profile): Make the _Init parameter an
597         In/Out parameter.
598         (Set_CPP_Constructors): Adjust comment accordingly.
600 2018-07-17  Bob Duff  <duff@adacore.com>
602         * exp_disp.adb (Build_Class_Wide_Check): Return early if the
603         precondition is supposed to be ignored.
605 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
607         * sem_ch6.adb (Check_Untagged_Equality): Extend check to operations
608         declared in the same scope as the operand type, when that scope is a
609         procedure.
611 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
613         * exp_unst.adb (Unnest_Subprograms): Do nothing if the expander is not
614         active.  Don't use Get_Actual_Subtype for record subtypes.  Ignore
615         rewritten identifiers and uplevel references to bounds of types that
616         come from the original type reference.
618 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
620         * exp_ch13.adb, exp_ch7.adb, exp_unst.adb, freeze.adb,
621         libgnat/s-os_lib.adb, sem_ch3.adb, sem_ch3.ads, sem_ch5.adb,
622         sem_eval.adb, sem_res.adb, sem_util.adb: Minor reformatting.
624 2018-07-17  Javier Miranda  <miranda@adacore.com>
626         * exp_ch13.adb (Expand_N_Freeze_Entity): Handle subtype declared for an
627         iterator.
628         * freeze.adb (Freeze_Expression): Handle freeze of an entity defined
629         outside of a subprogram body. This case was previously handled during
630         preanalysis; the frozen entities were remembered and left pending until
631         we continued freezeing entities outside of the subprogram. Now, when
632         climbing the parents chain to locate the correct placement for the
633         freezeing node, we check if the entity can be frozen and only when no
634         enclosing node is marked as Must_Not_Freeze the entity is frozen.
635         * sem_ch3.ads (Preanalyze_Default_Expression): Declaration moved to the
636         package body.
637         * sem_ch3.adb (Preanalyze_Default_Expression): Code adjusted to invoke
638         the new subprogram Preanalyze_With_Freezing_And_Resolve.
639         * sem_ch6.adb (Preanalyze_Formal_Expression): New subprogram.
640         (Analyze_Expression_Function, Process_Formals): Invoke
641         Preanalyze_Formal_Expression instead of Preanalyze_Spec_Expression
642         since the analysis of the formals may freeze entities.
643         (Analyze_Subprogram_Body_Helper): Skip building the body of the
644         class-wide clone for eliminated subprograms.
645         * sem_res.ads, sem_res.adb (Preanalyze_And_Resolve): New subprogram.
646         Its code is basically the previous version of this routine but extended
647         with an additional parameter which is used to specify if during
648         preanalysis we are allowed to freeze entities.  If the new parameter is
649         True then the subtree root node is marked as Must_Not_Freeze and no
650         entities are frozen during preanalysis.
651         (Preanalyze_And_Resolve): Invokes the internal version of
652         Preanalyze_And_Resolve without entity freezing.
653         (Preanalyze_With_Freezing_And_Resolve): Invokes the internal version of
654         Prenalyze_And_Resolve with freezing enabled.
656 2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
658         * einfo.ads, libgnat/g-comlin.ads: Minor change "ie" to "i.e." in docs
659         and comments.
661 2018-07-17  Justin Squirek  <squirek@adacore.com>
663         * libgnat/s-os_lib.adb (Argument_String_To_List): Fix trimming of
664         whitespace.
666 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
668         * sem_prag.adb (Has_Visible_State): Do not consider constants as
669         visible state because it is not possible to determine whether a
670         constant depends on variable input.
671         (Propagate_Part_Of): Add comment clarifying the behavior with respect
672         to constant.
674 2018-07-17  Yannick Moy  <moy@adacore.com>
676         * gnat1drv.adb (Gnat1drv): Do not issue warning about exception not
677         being propagated in GNATprove mode.
679 2018-07-17  Dmitriy Anisimkov  <anisimko@adacore.com>
681         * libgnat/g-socket.adb, libgnat/g-socket.ads: Reorganize and make
682         public components of Inet_Addr_Type. Introduce public binary
683         operations.
685 2018-07-17  Javier Miranda  <miranda@adacore.com>
687         * exp_ch7.adb (Make_Transient_Block): When determining whether an
688         enclosing scope already handles the secondary stack, take into account
689         transient blocks nested in a block that do not manage the secondary
690         stack and are located within a loop.
692 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
694         * sem_util.adb (Enclosing_Subprogram): Protected entries and task
695         entries must be treated separately: task entries are within the
696         enclosing subprogram of the task type, while protected entries are
697         transformed into the corresponding Protected_Body_Subprogram, which is
698         the enclosing_subprogram of any subprogram declared within the entry
699         body.
701 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
703         * doc/gnat_ugn/building_executable_programs_with_gnat.rst: Add missing
704         sections on -gnatH and -gnatJ compiler switches.
705         * gnat_ugn.texi: Regenerate.
707 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
709         * alloc.ads: Update the allocation metrics of the ignored Ghost nodes
710         table.
711         * atree.adb: Add a soft link for a procedure which is invoked whenever
712         an ignored Ghost node or entity is created.
713         (Change_Node): Preserve relevant attributes which come from the Flags
714         table.
715         (Mark_New_Ghost_Node): Record a newly created ignored Ghost node or
716         entity.
717         (Rewrite): Preserve relevant attributes which come from the Flags
718         table.
719         (Set_Ignored_Ghost_Recording_Proc): New routine.
720         * atree.ads: Define an access-to-suprogram type for a soft link which
721         records a newly created ignored Ghost node or entity.
722         (Set_Ignored_Ghost_Recording_Proc): New routine.
723         * ghost.adb: Remove with and use clause for Lib.  Remove table
724         Ignored_Ghost_Units.  Add new table Ignored_Ghost_Nodes.
725         (Add_Ignored_Ghost_Unit): Removed.
726         (Initialize): Initialize the table which stores ignored Ghost nodes.
727         Set the soft link which allows Atree.Mark_New_Ghost_Node to record an
728         ignored Ghost node.
729         (Is_Ignored_Ghost_Unit): Use the ultimate original node when checking
730         an eliminated ignored Ghost unit.
731         (Lock): Release and lock the table which stores ignored Ghost nodes.
732         (Mark_And_Set_Ghost_Assignment): Record rather than propagate ignored
733         Ghost nodes.
734         (Mark_And_Set_Ghost_Procedure_Call): Record rather than propagate
735         ignored Ghost nodes.
736         (Mark_Ghost_Clause): Record rather than propagate ignored Ghost nodes.
737         (Mark_Ghost_Declaration_Or_Body): Record rather than propagate ignored
738         Ghost nodes.
739         (Mark_Ghost_Pragma): Record rather than propagate ignored Ghost nodes.
740         (Propagate_Ignored_Ghost_Code): Removed.
741         (Record_Ignored_Ghost_Node): New routine.
742         (Remove_Ignored_Ghost_Code): Reimplemented.
743         (Remove_Ignored_Ghost_Node): New routine.
744         (Ultimate_Original_Node): New routine.
745         * ghost.ads (Check_Ghost_Completion): Removed.
746         * sem_ch8.adb (Analyze_Use_Package): Remove obsolete code. Mark a use
747         package clause as ignored Ghost if applicable.
748         * sem_util.adb (Is_Body_Or_Package_Declaration): Reimplemented.
750 2018-07-17  Javier Miranda  <miranda@adacore.com>
752         * sem_ch5.adb (Has_Call_Using_Secondary_Stack): Moved to library level
753         to reuse it.
754         (Analyze_Loop_Statement): Wrap the loop in a block when the evaluation
755         of the loop iterator relies on the secondary stack.
757 2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
759         * sem_util.adb (Next_Actual): If the parent is a N_Null_Statement,
760         which happens for inlined calls, then fetch the next actual from the
761         original AST.
763 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
765         * einfo.ads: Update documentation for Scalar_Range.
767 2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
769         * lib-xref-spark_specific.adb (Create_Heap): Attach the HEAP entity to
770         the Standard package.
772 2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
774         * einfo.adb (Is_Wrapper_Package): Remove extra parentheses.
776 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
778         * sem_util.adb (Enclosing_Subprogram): Handle properly entries, and
779         synchronized types that are completions of limited types or private
780         extensions.
781         (Scope_Within): Handle properly accept statements in task bodies.
783 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
785         * sem_prag.adb (Has_Visible_State): Do not consider generic formals
786         because they are not part of the visible state space. Add constants to
787         the list of acceptable visible states.
788         (Propagate_Part_Of): Do not consider generic formals when propagating
789         the Part_Of indicator.
790         * sem_util.adb (Entity_Of): Do not follow renaming chains which go
791         through a generic formal because they are not visible for SPARK
792         purposes.
793         * sem_util.ads (Entity_Of): Update the comment on usage.
795 2018-07-17  Ed Schonberg  <schonberg@adacore.com>
797         * sem_util.adb (Gather_Components): A discriminant of an ancestor may
798         have been constrained by a later ancestor, so when looking for the
799         value of that hidden discriminant we must examine the stored constraint
800         of other ancestors than the immediate parent type.
802 2018-07-17  Hristian Kirtchev  <kirtchev@adacore.com>
804         * exp_ch6.adb (Build_Heap_Or_Pool_Allocator): Ensure that scoping
805         constructs and entities within receive new entities when replicating a
806         tree.
807         (Expand_N_Extended_Return_Statement): Ensure that scoping constructs
808         and entities within receive new entities when replicating a tree.
809         * sem_util.adb (New_Copy_Tree): Add new formal Scopes_In_EWA_OK.
810         (Visit_Entity): Visit entities within scoping constructs inside
811         expression with actions nodes when requested by the caller. Add blocks,
812         labels, and procedures to the list of entities which need replication.
813         * sem_util.ads (New_Copy_Tree): Add new formal Scopes_In_EWA_OK. Update
814         the comment on usage.
816 2018-07-17  Arnaud Charlet  <charlet@adacore.com>
818         * doc/gnat_ugn/about_this_guide.rst,
819         doc/gnat_ugn/gnat_and_program_execution.rst: Remove references to gcov.
820         * gnat_ugn.texi: Regenerate.
822 2018-07-16  Hristian Kirtchev  <kirtchev@adacore.com>
824         * contracts.adb (Analyze_Contracts): Add specialized processing for
825         package instantiation contracts.
826         (Analyze_Package_Contract): Remove the verification of a missing
827         Part_Of indicator.
828         (Analyze_Package_Instantiation_Contract): New routine.
829         * contracts.ads (Analyze_Package_Contract): Update the comment on
830         usage.
831         * sem_prag.adb (Check_Missing_Part_Of): Ensure that the entity of the
832         instance is being examined when trying to determine whether a package
833         instantiation needs a Part_Of indicator.
835 2018-07-16  Hristian Kirtchev  <kirtchev@adacore.com>
837         * einfo.adb, exp_ch7.adb, exp_ch9.adb, exp_unst.adb, inline.adb,
838         sem.adb, sem_ch12.adb, sem_ch13.adb, sem_ch3.adb, sem_eval.adb,
839         sem_util.adb: Minor reformatting.
841 2018-07-16  Arnaud Charlet  <charlet@adacore.com>
843         * frontend.adb: Only unnest subprograms if no previous errors were
844          detected.
846 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
848         * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Handle loops that
849         contain blocks in the elaboration code for a package body. Create the
850         elaboration subprogram wrapper only if there is a subprogram
851         declaration in a block or loop.
853 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
855         * exp_ch4.adb (Expand_Set_Membership): Use New_Copy_Tree to perform a
856         deep copy of the left operand when building each conjuct of the
857         expanded membership operation, to avoid sharing nodes between them.
858         This sharing interferes with the unnesting machinery and is generally
859         undesirable.
861 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
863         * exp_unst.adb (Visit_Node): Handle 'Address references that are
864         calls.
866 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
868         * exp_unst.adb (Visit_Node): Handle the semantic of Storage_Pool field
869         in relevant nodes: Allocate, Free, and return statements.
871 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
873         * sem_ch12.adb (Analyze_Package_Instantiation): Handle properly an
874         instance that carries an aspect Default_Storage_Pool that overrides a
875         default storage pool that applies to the generic unit. The aspect in
876         the generic unit was removed before copying it in the instance, rather
877         than removing it from the copy of the aspects that are appended to the
878         aspects in the instance.
880 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
882         * einfo.adb (Set_Is_Uplevel_Referenced_Entity): Flag can appear on
883         loop parameters.
884         * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Handle subprogram
885         bodies.
886         * exp_ch9.adb (Reset_Scopes_To): Set the scopes of entities local to an
887         entry body to be the corresponding generated subprogram, for correct
888         analysis of uplevel references.
889         * exp_unst.adb (Visit_Node): Handle properly binary and unary operators
890         Ignore pragmas, fix component associations.
891         (Register_Subprograms): Subprograms in synchronized types must be
892         treated as reachable.
894 2018-07-16  Hristian Kirtchev  <kirtchev@adacore.com>
896         * sem_util.adb (Check_No_Hidden_State): Ignore internally-generated
897         states and variables.
899 2018-07-16  Piotr Trojanek  <trojanek@adacore.com>
901         * sinfo.ads, sinfo.adb (Withed_Body): Remove.
902         (Set_Withed_Body): Remove.
904 2018-07-16  Piotr Trojanek  <trojanek@adacore.com>
906         * sem.adb (Walk_Library_Items): Skip units with configuration pragmas
907         when printing debug info.
909 2018-07-16  Piotr Trojanek  <trojanek@adacore.com>
911         * sem.adb (Walk_Library_Items): Reuse local constant.
912         (Is_Subunit_Of_Main): Turn condition to positive and flip the
913         IF-THEN-ELSE branches; avoid potentially ineffective assignment to the
914         Lib variable.
916 2018-07-16  Piotr Trojanek  <trojanek@adacore.com>
918         * sem.adb (Walk_Library_Items): Deconstruct dead code.
920 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
922         * exp_ch4.adb (Expand_N_Op_Xor): Use common routine
923         Expand_Nonbinary_Modular_Op.  Needed for unnesting.
925 2018-07-16  Ed Schonberg  <schonberg@adacore.com>
927         * sem_ch3.adb (Inherit_Predicate_Flags): A non-discrete type may have a
928         static predicate (for example True) but has no
929         static_discrete_predicate.
931 2018-07-16  Hristian Kirtchev  <kirtchev@adacore.com>
933         * exp_attr.adb (Build_Record_VS_Func): Handle corner cases dealing with
934         class-wide types and record extensions.
936 2018-07-16  Justin Squirek  <squirek@adacore.com>
938         * sem_eval.adb (Eval_Integer_Literal): Add exception for avoiding
939         checks on expanded literals within if and case expressions.
941 2018-07-16  Hristian Kirtchev  <kirtchev@adacore.com>
943         * libgnat/s-wchwts.adb (Wide_String_To_String): Use the appropriate
944         longest sequence factor. Code clean up.
945         (Wide_Wide_String_To_String): Use the appropriate longest sequence
946         factor.  Code clean up.
948 2018-07-16  Javier Miranda  <miranda@adacore.com>
950         * sem_ch13.adb (Analyze_Attribute_Definition_Clause): Report an error
951         on Bit_Order when defined for a record extension.
953 2018-07-16  Arnaud Charlet  <charlet@adacore.com>
955         * libgnat/s-objrea.ads: Minor code clean up.
957 2018-07-16  Piotr Trojanek  <trojanek@adacore.com>
959         * sem_ch3.adb (Process_Discriminants): Adjust reference to the SPARM RM
960         rule.
962 2018-07-16  Arnaud Charlet  <charlet@adacore.com>
964         * adaint.c (__gnat_set_file_time_name): Code clean up.
966 2018-07-16  Javier Miranda  <miranda@adacore.com>
968         * inline.adb (Build_Body_To_Inline): Minor code reorganization that
969         ensures that calls to function Has_Single_Return() pass a decorated
970         tree.
971         (Has_Single_Return.Check_Return): Peform checks on entities (instead on
972         relying on their characters).
974 2018-07-16  Javier Miranda  <miranda@adacore.com>
976         * exp_ch5.adb (Expand_Iterator_Loop_Over_Array): Code cleanup. Required
977         to avoid generating an ill-formed tree that confuses gnatprove causing
978         it to blowup.
980 2018-07-16  Yannick Moy  <moy@adacore.com>
982         * inline.adb (Has_Single_Return): Rewrap comment.
984 2018-07-16  Eric Botcazou  <ebotcazou@adacore.com>
986         * einfo.ads: Minor tweak in comment.
988 2018-07-16  Javier Miranda  <miranda@adacore.com>
990         * sem_ch4.adb (Analyze_Membership_Op): Code cleanup.
992 2018-07-16  Javier Miranda  <miranda@adacore.com>
994         * exp_attr.adb (Expand_N_Attribute_Reference ['Count]): Do not
995         transform 'Count into a function call if the current scope has been
996         eliminated.
998 2018-07-16  Javier Miranda  <miranda@adacore.com>
1000         * sem_util.ads, sem_util.adb (Has_Prefix): Move this function to the
1001         public part of this package.
1003 2018-07-16  Yannick Moy  <moy@adacore.com>
1005         * sem_res.adb (Resolve_Call): Do not inline calls inside
1006         compiler-generated functions translated as predicates in GNATprove.
1008 2018-07-16  Gary Dismukes  <dismukes@adacore.com>
1010         * exp_ch4.adb (Expand_N_Allocator): Test for Storage_Pool being RTE in
1011         addition to the existing test for no Storage_Pool as a condition
1012         enabling generation of the call to Check_Standard_Allocator when the
1013         restriction No_Standard_Allocators_After_Elaboration is active.
1014         * libgnat/s-elaall.ads (Check_Standard_Allocator): Correct comment to
1015         say that Storage_Error will be raised (rather than Program_Error).
1016         * libgnat/s-elaall.adb (Check_Standard_Allocator): Raise Storage_Error
1017         rather than Program_Error when Elaboration_In_Progress is False.
1019 2018-07-16  Gary Dismukes  <dismukes@adacore.com>
1021         * sem_eval.adb: Fix spelling for compile-time-known.
1023 2018-07-16  Hristian Kirtchev  <kirtchev@adacore.com>
1025         * sem_eval.adb (Compile_Time_Known_Value): Add a guard which prevents
1026         the compiler from entering infinite recursion when trying to determine
1027         whether a deferred constant has a compile time known value, and the
1028         initialization expression of the constant is a reference to the
1029         constant itself.
1031 2018-07-16  Nicolas Roche  <roche@adacore.com>
1033         * libgnat/a-strunb.adb, libgnat/a-strunb__shared.adb: Adjust growth
1034         factor from 1/32 to 1/2 for Unbounded_String.
1036 2018-07-13  Eric Botcazou  <ebotcazou@adacore.com>
1038         * gcc-interface/lang.opt (funsigned-char): New option.
1039         * gcc-interface/misc.c (gnat_handle_option): Accept it.
1040         * gcc-interface/utils.c (finish_character_type): Tweak comment.
1042 2018-07-07  Eric Botcazou  <ebotcazou@adacore.com>
1044         * gcc-interface/decl.c (gnat_to_gnu_entity): Add GNAT_DECL local
1045         variable and use it throughout.
1046         <E_Variable>: If the nominal subtype of the object is unconstrained,
1047         compute the Ada size separately and put in on the padding type if the
1048         size is not fixed.
1049         <E_Record_Type>: Minor tweak.
1050         * gcc-interface/misc.c (gnat_type_max_size): Rename max_size_unit
1051         into max_size_unit throughout.
1053 2018-07-07  Eric Botcazou  <ebotcazou@adacore.com>
1055         * gcc-interface/gigi.h (add_decl_expr): Adjust prototype.
1056         * gcc-interface/decl.c (gnat_to_gnu_entity): Remove useless test.
1057         * gcc-interface/trans.c (add_stmt_with_node): Remove exceptions.
1058         (add_decl_expr): Change type of second parameter and rename it.
1059         (renaming_from_instantiation_p): New function moved from...
1060         (set_expr_location_from_node): Test for exceptions here and add one
1061         for actual subtypes built for unconstrained composite actuals.
1062         * gcc-interface/utils.c (renaming_from_instantiation_p): ...here.
1064 2018-07-07  Eric Botcazou  <ebotcazou@adacore.com>
1066         * gcc-interface/trans.c (lvalue_required_p): Remove ALIASED parameter
1067         and adjust recursive calls.
1068         (Identifier_to_gnu): Adjust calls to lvalue_required_p.
1069         (gnat_to_gnu): Likewise.
1071 2018-07-07  Eric Botcazou  <ebotcazou@adacore.com>
1073         * gcc-interface/decl.c (gnat_to_gnu_param): Minor tweak.
1074         (gnat_to_gnu_subprog_type): New pure_flag local variable.  Set it for
1075         a pure Ada function with a by-ref In parameter.  Propagate it onto the
1076         function type by means of the TYPE_QUAL_RESTRICT flag.
1077         * gcc-interface/utils.c (finish_subprog_decl): Set DECL_PURE_P if the
1078         function type has the TYPE_QUAL_RESTRICT flag set.
1080 2018-07-06  Jim Wilson  <jimw@sifive.com>
1082         * Makefile.rtl: Add riscv*-linux* support.
1083         * libgnarl/s-linux__riscv.ads: New.
1084         * libgnat/system-linux-riscv.ads: New.
1086         * Make-generated.in (treeprs.ads): Use $(GNATMAKE) instead of gnatmake.
1087         (einfo.h, sinfo.h, stamp-snames, stamp-nmake): Likewise.
1088         * gcc-interface/Makefile.in (xoscons): Likewise.
1090 2018-07-06  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1092         * libgnat/system-rtems.ads (Frontend_Exceptions): Set to False.
1093         (ZCX_By_Default): Set to True.
1095 2018-07-02  Martin Liska  <mliska@suse.cz>
1097         * gnatvsn.ads: Bump Library_Version to 9.
1099 2018-06-12  Eric Botcazou  <ebotcazou@adacore.com>
1101         * gcc-interface/ada-tree.h (TYPE_RETURN_BY_DIRECT_REF_P): Change from
1102         using TYPE_LANG_FLAG_4 to using TYPE_LANG_FLAG_0.
1103         (TYPE_ALIGN_OK): Move around.
1104         (TYPE_PADDING_FOR_COMPONENT): Remove superfluous parentheses.
1105         * gcc-interface/decl.c (change_qualified_type): Move to...
1106         (gnat_to_gnu_entity): Adjust comment.
1107         * gcc-interface/gigi.h (change_qualified_type): ...here; make inline.
1108         (ceil_pow2): Use ceil_log2.
1109         * gcc-interface/utils.c (finish_subprog_decl): Add couple of comments
1110         and do not set TREE_SIDE_EFFECTS.
1111         (handle_noreturn_attribute): Use change_qualified_type.
1113 2018-06-12  Eric Botcazou  <ebotcazou@adacore.com>
1115         * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Constant>: Do not get
1116         the expression of a dispatch table that is not being defined.
1117         <E_Record_Subtype>: Remove obsolete kludge.
1119 2018-06-12  Eric Botcazou  <ebotcazou@adacore.com>
1121         * gcc-interface/decl.c (warn_on_field_placement): Use specific wording
1122         for discriminants.
1123         (warn_on_list_placement): New static function.
1124         (components_to_record): Use it to warn on multiple fields in list.
1126 2018-06-12  Eric Botcazou  <ebotcazou@adacore.com>
1128         * gcc-interface/decl.c (variant_desc): Add AUX field.
1129         (gnat_to_gnu_entity) <discrete_type>: Do not call compute_record_mode
1130         directly.
1131         (reverse_sort_field_list): New static function.
1132         (components_to_record): Place the variant part at the beginning of the
1133         field list when there is an obvious order of increasing position.
1134         (build_variant_list): Initialize it.
1135         (create_variant_part_from): Do not call compute_record_mode directly.
1136         (copy_and_substitute_in_layout): Likewise.  Always sort the fields with
1137         fixed position in order of increasing position, in the record and all
1138         the variants, in any.  Call reverse_sort_field_list.
1139         * gcc-interface/utils.c (make_packable_type): Compute the sizes before
1140         calling finish_record_type.  Do not call compute_record_mode directly.
1141         (finish_record_type): Overhaul final processing depending on REP_LEVEL
1142         and call finish_bitfield_layout if it is equal to one or two.
1144 2018-06-11  Eric Botcazou  <ebotcazou@adacore.com>
1146         * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Array_Type>: Reuse the
1147         existing fields of a dummy fat pointer type, if any.  Clear the
1148         TYPE_DECL_SUPPRESS_DEBUG on the fat pointer type after completing it.
1150 2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
1152         * contracts.adb (Process_Body_Postconditions): Expand only checked
1153         postconditions.
1154         (Process_Contract_Cases_For): Expand only checked contract cases.
1155         (Process_Inherited_Preconditions): Ignored class-wide preconditions are
1156         partially expanded because some of their semantic checks are tied to
1157         the expansion.
1158         (Process_Preconditions_For): Expand only checked preconditions.
1159         (Process_Spec_Postconditions): Expand only checked preconditions.
1160         Ignored class-wide preconditions are partially expanded because some of
1161         their semantic checks are tied to the expansion.
1162         * exp_prag.adb (Expand_N_Pragma): Suppress the expansion of ignored
1163         assertion pragmas.
1164         * exp_util.adb (Add_Inherited_Invariants): Code clean up.
1165         * sem_util.adb (Propagate_Invariant_Attributes): Code clean up.
1167 2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
1169         * exp_ch9.adb, exp_unst.adb, inline.adb, libgnat/a-ciorma.adb,
1170         libgnat/a-ciormu.adb, libgnat/a-ciorse.adb, libgnat/a-coorma.adb,
1171         libgnat/a-coormu.adb, libgnat/a-coorse.adb, sem_prag.adb: Minor
1172         reformatting.
1174 2018-06-11  Gary Dismukes  <dismukes@adacore.com>
1176         * exp_unst.ads, exp_unst.adb: Typo fixes and minor reformatting.
1178 2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
1180         * exp_ch6.adb (Add_Unconstrained_Actuals_To_Build_In_Place_Call): Do
1181         not add any actuals when the size of the object is known, and the
1182         caller will allocate it.
1183         (Build_Heap_Allocator): Rename to Build_Heap_Or_Pool_Allocator to
1184         better illustrate its functionality. Update the comment on the
1185         generated code.  Generate a branch for the heap and pool cases where
1186         the object is not necessarity controlled.
1187         (Expand_N_Extended_Return_Statement): Expand the extended return
1188         statement into four branches depending the requested mode if the caller
1189         will not allocate the object on its side.
1190         (Make_Build_In_Place_Call_In_Allocator): Do not allocate a controlled
1191         object on the caller side because this will violate the semantics of
1192         finalizable types. Instead notify the function to allocate the object
1193         on the heap or a user-defined storage pool.
1194         (Needs_BIP_Alloc_Form): A build-in-place function needs to be notified
1195         which of the four modes to employ when returning a limited controlled
1196         result.
1197         * exp_util.adb (Build_Allocate_Deallocate_Proc): Remove a redundant
1198         guard which is already covered in Needs_Finalization.
1200 2018-06-11  Olivier Hainque  <hainque@adacore.com>
1202         * libgnat/s-excmac*.ads: Factorize Unwind_Action definitions ...
1203         * libgnat/a-exexpr.adb: ... Here, then add comments describing the
1204         major datastructures associated with the current exception raised.
1205         (Setup_Current_Excep): Accept a "Phase" argument conveying the
1206         unwinding phase during which this subprogram is called.  For an Ada
1207         exception, don't update the current exception buffer from the raised
1208         exception object during SEARCH_PHASE, as this is redundant with the
1209         call now issued just before propagation starts.
1210         (Propagate_GCC_Exception): Move call to Setup_Current_Excep ahead of
1211         the unwinding start, conveying Phase 0.
1212         (Unhandled_Except_Handler): Pass UA_CLEANUP_PHASE as the Phase value on
1213         the call to Setup_Current_Excep.
1214         * raise-gcc.c (personality_body): Pass uw_phases as the Phase argument
1215         on calls to Setup_Current_Excep.
1217 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1219         * exp_unst.ads, exp_unst.adb (Needs_Fat_Pointer,
1220         Build_Access_Type_Decl): New subprograms to handle uplevel references
1221         to formals of an unconstrained array type. The activation record
1222         component for these is an access type, and the reference is rewritten
1223         as an explicit derefenrence of that component.
1225 2018-06-11  Bob Duff  <duff@adacore.com>
1227         * libgnat/a-ciorma.adb, libgnat/a-ciormu.adb, libgnat/a-ciorse.adb,
1228         libgnat/a-coorma.adb, libgnat/a-coormu.adb, libgnat/a-coorse.adb:
1229         (Element): Add code to detect dangling cursors in some cases.
1231 2018-06-11  Yannick Moy  <moy@adacore.com>
1233         * sem_ch6.adb (Build_Subprogram_Declaration): Mark parameters as coming
1234         from source.
1236 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1238         * sem_ch13.adb (Build_Predicate_Functions): For a derived type, ensure
1239         that its parent is already frozen so that its predicate function, if
1240         any, has already been constructed.
1242 2018-06-11  Yannick Moy  <moy@adacore.com>
1244         * sem_prag.adb (Check_Mode_Restriction_In_Enclosing_Context): Adapt for
1245         possible task unit as the enclosing context.
1247 2018-06-11  Eric Botcazou  <ebotcazou@adacore.com>
1249         * gnat1drv.adb: Remove use clause for Repinfo.
1250         (Gnat1drv): Beef up comment about the interplay between -gnatc and
1251         back-end annotations.  Use full qualified name for List_Rep_Info.
1253 2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
1255         * libgnat/g-arrspl.ads: Add pragma Preelaborate.
1257 2018-06-11  Arnaud Charlet  <charlet@adacore.com>
1259         * exp_ch4.adb (Expand_Record_Equality): Remove extraneous "True and
1260         then" and general logical "ada" in codepeer mode.
1262 2018-06-11  Javier Miranda  <miranda@adacore.com>
1264         * exp_ch9.adb (Expand_N_Protected_Body): Add missing handling of
1265         N_Call_Marker nodes.
1267 2018-06-11  Arnaud Charlet  <charlet@adacore.com>
1269         * exp_ch3.adb, exp_unst.adb, inline.adb, sem_prag.adb: Minor
1270         reformatting.
1272 2018-06-11  Yannick Moy  <moy@adacore.com>
1274         * doc/gnat_rm/implementation_defined_pragmas.rst: Add Suppressible
1275         argument to Assertion_Policy
1276         * gnat_rm.texi: Regenerate.
1278 2018-06-11  Yannick Moy  <moy@adacore.com>
1280         * gnat1drv.adb: Do not check representation information in CodePeer and
1281         GNATprove modes, as these modes call a special backend instead of gigi,
1282         so do not have the information.
1284 2018-06-11  Yannick Moy  <moy@adacore.com>
1286         * inline.adb (Build_Body_To_Inline): Consider case of extended return
1287         of unconstrained type as one case where inlining is not supported.
1288         (Expand_Inlined_Call): Remove special case for body as extended return
1289         of unconstrained type.
1291 2018-06-11  Yannick Moy  <moy@adacore.com>
1293         * sem_prag.adb (Analyze_Part_Of): Only allow Part_Of on non-generic
1294         unit.
1295         (Check_Missing_Part_Of): Do not force Part_Of on generic unit.
1297 2018-06-11  Piotr Trojanek  <trojanek@adacore.com>
1299         * sem_ch13.adb (Analyze_Aspect_Specifications): Don't split AND THEN
1300         expressions in Pre/Post contracts while in GNATprove_Mode.
1302 2018-06-11  Piotr Trojanek  <trojanek@adacore.com>
1304         * sem_util.adb (Is_Potentially_Unevaluated): Fix detection of contracts
1305         with AND THEN expressions broken down into individual conjuncts.
1307 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1309         * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Add guard.
1311 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1313         * exp_unst.adb (Visit_Node): Skip generic associations.
1315 2018-06-11  Arnaud Charlet  <charlet@adacore.com>
1317         * libgnat/memtrack.adb (fwrite): Remove second definition.
1319 2018-06-11  Javier Miranda  <miranda@adacore.com>
1321         * sinfo.ads (Is_Dynamic_Coextension): Adding documentation.
1322         (Is_Static_Coextension): Adding documentation.
1323         * sinfo.adb (Is_Dynamic_Coextension): Extending the assertion.
1324         (Is_Static_Coextension): Extending the assertion.
1325         * sem_util.adb (Mark_Allocator): Clear Is_Static_Coextension when
1326         setting flag Is_Dynamic_Coextension (and vice versa).
1328 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1330         * exp_unst.adb (Search_Subprograms): Handle explicitly stubs at the top
1331         level of a compilation unit, becuase they may contain nested
1332         subprograms that need an activation record.
1334 2018-06-11  Arnaud Charlet  <charlet@adacore.com>
1336         * Makefile.rtl: Compile Ada files with $(ADAC) instead of $(CC).
1338 2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
1340         * exp_ch11.adb, exp_unst.adb, inline.adb, sem_ch12.adb, sem_util.adb:
1341         Minor reformatting.
1342         * sinfo.ads: Fix a typo.
1344 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1346         * inline.adb (Expand_Inlined_Call): If no optimization level is
1347         specified, the expansion of a call to an Inline_Always function is
1348         fully performed in the front-end even on a target that support back-end
1349         inlining.
1351 2018-06-11  Arnaud Charlet  <charlet@adacore.com>
1353         * bindgen.adb (Gen_Adainit): Protect reference to System.Parameters
1354         with Sec_Stack_Used.
1356 2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
1358         * sem_ch8.adb (Find_Direct_Name): Mode the declaration of
1359         Is_Assignment_LHS further in. Use predicate
1360         Needs_Variable_Reference_Marker to determine whether to create a
1361         variable marker.
1362         (Find_Expanded_Name): Mode the declaration of Is_Assignment_LHS further
1363         in.  Use predicate Needs_Variable_Reference_Marker to determine whether
1364         to create a variable marker.
1365         * sem_elab.adb (Build_Variable_Reference_Marker): Remove the various
1366         checks that determine whether the identifier or expanded name is a
1367         suitable variable reference.  The checks are now performed by
1368         Needs_Variable_Reference_Marker.
1369         * sem_res.adb (Resolve_Actuals): Use predicate
1370         Needs_Variable_Reference_Marker to determine whether to create a
1371         variable marker.
1372         * sem_util.adb (Needs_Variable_Reference_Marker): New routine.
1373         * sem_util.ads (Needs_Variable_Reference_Marker): New routine.
1375 2018-06-11  Valentine Reboul  <reboul@adacore.com>
1377         * doc/gnat_rm.rst, doc/gnat_ugn.rst: Rename "GPL Edition" into
1378         "Community Edition".
1380 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1382         * sem_ch12.adb (Install_Body): In order to determine the placement of
1383         the freeze node for an instance of a generic nested within another
1384         instance, take into account that the outer instance may be declared in
1385         the visible part of a package and the inner intance may be in the
1386         private part of the same package.
1388 2018-06-11  Eric Botcazou  <ebotcazou@adacore.com>
1390         * errout.adb (Special_Msg_Delete): Remove handling of Atomic and VFA.
1392 2018-06-11  Nicolas Roche  <roche@adacore.com>
1394         * libgnat/s-valuti.adb (Bad_Value): Ensure that we do not generate a
1395         stack overflow while raising a constraint error.
1397 2018-06-11  Eric Botcazou  <ebotcazou@adacore.com>
1399         * repinfo.ads (Rep_Value): Use a single line.
1400         * repinfo.adb (Rep_Value): Likewise.
1401         (List_Attr): Do not use string concatenation.
1403 2018-06-11  Ed Schonberg  <schonberg@adacore.com>
1405         * exp_unst.adb (Visit_Node): Check reference to formal parameter of
1406         current procedure, because the bounds of its type may be uplevel
1407         references.
1409 2018-06-02  Eric Botcazou  <ebotcazou@adacore.com>
1411         * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Constant>: If this is
1412         not a definition, retrieve the expression only if it's a compile-time
1413         known value if we are just annotating types.
1415         * gcc-interface/utils.c (convert): Do not try to upcast properly for a
1416         conversion between tagged types in type_annotate_only mode.
1418 2018-06-02  Eric Botcazou  <ebotcazou@adacore.com>
1420         * gcc-interface/ada-tree.h (TYPE_PADDING_FOR_COMPONENT): New macro.
1421         * gcc-interface/decl.c (gnat_to_gnu_component_type): Cache the padding
1422         type built for an aliased component with variable size.
1424 2018-05-31  Pierre-Marie de Rodat  <derodat@adacore.com>
1426         * doc/gnat_ugn/project-manager-figure.png: Delete.
1428 2018-05-31  Pierre-Marie de Rodat  <derodat@adacore.com>
1430         * vxworks-arm-link.spec, vxworks-e500-link.spec,
1431         vxworks-gnat-crtbe-link.spec, vxworks-smp-arm-link.spec,
1432         vxworks-smp-e500-link.spec, vxworks-smp-ppc-link.spec,
1433         vxworks-smp-x86-link.spec: New files.
1435 2018-05-31  Pierre-Marie de Rodat  <derodat@adacore.com>
1437         * gnatvsn.adb: Re-center the copyright header.
1438         * indepsw-darwin.adb: Adjust the starting copyright year to 2011.
1440 2018-05-31  Fedor Rybin  <frybin@adacore.com>
1442         * doc/gnat_ugn/gnat_utility_programs.rst: Document Stubs_Subdir in
1443         gnattest section on user guide.
1445 2018-05-31  Ed Schonberg  <schonberg@adacore.com>
1447         * sem_res.adb (Resolve_String_Literal): If the type is a string type
1448         whose component subtype has a static predicate, ensure that the
1449         predicate is applied to each character by expanding the string into the
1450         equivalent aggregate. This is also done if the component subtype is
1451         constrained.
1453 2018-05-31  Eric Botcazou  <ebotcazou@adacore.com>
1455         * gcc-interface/trans.c (Call_to_gnu): Remove obsolete code.
1457 2018-05-31  Piotr Trojanek  <trojanek@adacore.com>
1459         * sem_ch6.adb (Check_Missing_Return): Handle procedures with no
1460         explicit spec.
1462 2018-05-31  Eric Botcazou  <ebotcazou@adacore.com>
1464         * gcc-interface/trans.c (Call_to_gnu): In the by-reference case, if
1465         the type of the parameter is an unconstrained array type, convert
1466         to the type of the actual before the type of the formal only if the
1467         conversion was suppressed earlier.  Use in_param and gnu_actual_type
1468         local variables throughout, and uniform spelling for In Out or Out.
1469         Also remove dead code in the component-by-reference case.
1471 2018-05-31  Frederic Konrad  <konrad@adacore.com>
1473         * tracebak.c (STOP_FRAME): Harden condition.
1474         (is_return_from, EXTRA_STOP_CONDITION): New helpers for VxWorks in RTP
1475         mode.
1477 2018-05-31  Ed Schonberg  <schonberg@adacore.com>
1479         * checks.adb (Apply_Discriminant_Check): Do not apply discriminant
1480         check to a call to a build-in-place function, given that the return
1481         object is limited and cannot be copied.
1483 2018-05-31  Olivier Hainque  <hainque@adacore.com>
1485         * libgnat/s-atopri.ads: Update comment on __atomic_compare_exchange
1486         builtins.
1488 2018-05-31  Eric Botcazou  <ebotcazou@adacore.com>
1490         * gcc-interface/trans.c (Call_to_gnu): If this is a function call and
1491         there is no target, also create a temporary for the return value for
1492         an allocator if the type is an unconstrained record type with default
1493         discriminant.
1495 2018-05-31  Hristian Kirtchev  <kirtchev@adacore.com>
1497         * exp_ch7.adb (Find_Transient_Context): An iteration scheme is a valid
1498         boudary for a transient scope.
1500 2018-05-31  Valentine Reboul  <reboul@adacore.com>
1502         * gnatvsn.ads: Rename "GPL" version to "Community".
1504 2018-05-31  Ed Schonberg  <schonberg@adacore.com>
1506         * einfo.ads: Improve documentation for the Is_Unsigned_Type entity
1507         flag.
1509 2018-05-31  Piotr Trojanek  <trojanek@adacore.com>
1511         * sem_prag.adb (Analyze_Pragma): Replace call to Unique_Defining_Entity
1512         with a semantically equivalent call to Defining_Entity.
1514 2018-05-31  Piotr Trojanek  <trojanek@adacore.com>
1516         * sem_prag.adb (Analyze_Pragma): Set Etype on the rewritten
1517         Max_Queue_Length expression.
1519 2018-05-31  Sergey Rybin  <rybin@adacore.com>
1521         * doc/gnat_ugn/gnat_and_program_execution.rst: gnatelim does not need
1522         that the main unit to be built before the call, now it computes the
1523         closure of the main unit itself.
1524         * gnat_ugn.texi: Regenerate.
1526 2018-05-31  Eric Botcazou  <ebotcazou@adacore.com>
1528         * repinfo.adb (List_Structural_Record_Layout): Set First to false
1529         after having listed the fields of the parent type, if any.
1531 2018-05-31  Eric Botcazou  <ebotcazou@adacore.com>
1533         * gcc-interface/decl.c (gnat_to_gnu_entity) <discrete_type>: Do not
1534         deal with the ___XP suffix for packed array types here...
1535         <E_Array_Subtype>: ...or here when processing the implementation type
1536         but when processing the original type instead.  Do not reuse the DECL
1537         of the implementation type for the original type.  Tidy up.
1539 2018-05-31  Eric Botcazou  <ebotcazou@adacore.com>
1541         * einfo.ads (Object_Size_Clause): Declare.
1542         * einfo.adb (Object_Size_Clause): New function.
1543         * gcc-interface/utils.c (maybe_pad_type): Test Has_Size_Clause before
1544         retrieving Size_Clause and post the warning on the object size clause
1545         if Has_Object_Size_Clause is true.
1547 2018-05-31  Javier Miranda  <miranda@adacore.com>
1549         * sem_util.ads, sem_util.adb (Find_Primitive_Eq): New subprogram.
1550         * exp_ch4.adb (Expand_Composite_Equality): Use the new subprogram
1551         Find_Primitive_Eq to search for the primitive of types whose underlying
1552         type is a tagged type.
1554 2018-05-31  Yannick Moy  <moy@adacore.com>
1556         * sem_prag.adb (Analyze_Pragma.Check_Loop_Pragma_Placement): Inverse
1557         order of treatment between nodes recognized as loop pragmas (or
1558         generated from one) and block statements.
1560 2018-05-31  Doug Rupp  <rupp@adacore.com>
1562         * libgnat/s-osprim__posix2008.adb (Clock): Implement using
1563         clock_gettime.
1565 2018-05-31  Ed Schonberg  <schonberg@adacore.com>
1567         * exp_unst.ads, exp_unst.adb (In_Synchronized_Unit): New predicate to
1568         mark subprograms that cannot be eliminated because they must be treated
1569         as reachable from outside the current unit. This includes entry bodies
1570         and protected operations.
1572 2018-05-31  Ed Schonberg  <schonberg@adacore.com>
1574         * exp_ch4.adb (Expand_Modular_Addition, Expand_Modular_Subtraction):
1575         Convert all operands of the generated code to Standard.Unsigned, to
1576         prevent spurious visibility errors. This is needed when the generated
1577         expansion involves a modular index type of an array type, and the index
1578         type is not immediately visible.
1580 2018-05-30  Piotr Trojanek  <trojanek@adacore.com>
1582         * einfo.ads (Package_Instantiation): Update comment after a routine
1583         that uses this field has been renamed.
1585 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1587         * exp_ch11.adb (Replace_Raise_By_Goto): The transfomation is legal even
1588         if the local raise statement includes a string expression. This
1589         expression might be picked up by an outer handler or discarded, but
1590         plays no role in this transformation.
1592 2018-05-30  Hristian Kirtchev  <kirtchev@adacore.com>
1594         * exp_aggr.adb, exp_unst.adb, freeze.adb, libgnat/a-direct.adb: Minor
1595         reformatting.
1597 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1599         * exp_unst.adb (Visit_Node): Handle the semantic Procedure_To_Call
1600         field in relevant nodes: Allocate, Free, and return statements.
1602 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1604         * exp_unst.adb (Visit_Node): Do not traverse a Component_Association
1605         that has not been analyzed, as will be the case for a nested aggregate
1606         that is expanded into individual assignments.
1608 2018-05-30  Justin Squirek  <squirek@adacore.com>
1610         * aspects.adb, aspects.ads: Register new aspect.
1611         * par-prag.adb (Prag): Register new pragma.
1612         * sem_ch13.adb (Analyze_Aspect_Specifications): Add processing for new
1613         aspect similar to Aspect_Max_Queue_Length.
1614         * sem_prag.adb, sem_prag.ads (Analyze_Pragma): Register new pragma and
1615         set it to use the same processing as Pragma_Max_Queue_Length.
1616         * snames.ads-tmpl: Move definition of Name_Max_Entry_Queue_Depth so
1617         that it can be processed as a pragma in addition to a restriction and
1618         add an entry for the pragma itself.
1620 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1622         * freeze.adb (Freeze_Object_Declaration): A pragma Thread_Local_Storage
1623         is now legal on a variable of composite type initialized with an
1624         aggregate that is fully static and requires no elaboration code.
1625         * exp_aggr.adb (Convert_To_Positional): Recognize additional cases of
1626         nested aggregates that are compile-time static, so they can be used to
1627         initialize variables declared with Threqd_Local_Storage.
1628         * doc/gnat_rm/implementation_defined_pragmas.rst: Add documentation on
1629         Thread_Local_Storage.
1630         * gnat_rm.texi: Regenerate.
1632 2018-05-30  Yannick Moy  <moy@adacore.com>
1634         * sem_util.adb (Policy_In_Effect): Take into account CodePeer and
1635         GNATprove modes.
1637 2018-05-30  Justin Squirek  <squirek@adacore.com>
1639         * libgnat/a-direct.adb, libgnat/a-direct.ads (Name_Case_Equivalence):
1640         Add implementation.
1641         (Start_Search): Modify to use Start_Search_Internal
1642         (Start_Search_Internal): Add to break out an extra flag for searching
1643         case insensative due to the potential for directories within the same
1644         OS to allow different casing schemes.
1645         * sysdep.c (__gnat_name_case_equivalence): Add as a default fallback
1646         for when the more precise solution fails.
1648 2018-05-30  Hristian Kirtchev  <kirtchev@adacore.com>
1650         * checks.adb, exp_ch5.adb, exp_ch7.adb, exp_unst.adb, sem_eval.adb:
1651         Minor reformatting.
1653 2018-05-30  Pascal Obry  <obry@adacore.com>
1655         * libgnat/g-comlin.ads (Value_Callback, Define_Switch): New.
1656         * libgnat/g-comlin.adb: Add corresponding implementation.
1658 2018-05-30  Gary Dismukes  <dismukes@adacore.com>
1660         * sem_res.adb, sem_util.adb: Fix several typos.
1662 2018-05-30  Olivier Hainque  <hainque@adacore.com>
1664         * vx_crtbegin_attr.c (CTOR_ATTRIBUTE, DTOR_ATTRIBUTE): Empty.
1665         (eh_registration_ctors, eh_registration_tors): New static variables,
1666         forced in a .ctors/.dtors section, respectively, with priority.
1668 2018-05-30  Bob Duff  <duff@adacore.com>
1670         * aspects.ads, contracts.adb, exp_util.adb, expander.adb, expander.ads,
1671         freeze.adb, inline.adb, lib-xref.adb, sem.ads, sem_aggr.adb,
1672         sem_attr.adb, sem_ch13.adb, sem_ch3.adb, sem_ch5.adb, sem_ch6.adb,
1673         sem_ch8.adb, sem_dim.adb, sem_elab.adb, sem_res.adb, sem_res.ads,
1674         sinfo.ads: Spell preanalysis, preanalyze correctly.
1676 2018-05-30  Bob Duff  <duff@adacore.com>
1678         * libgnat/g-sestin.ads: Rework documentation comments.
1680 2018-05-30  Piotr Trojanek  <trojanek@adacore.com>
1682         * errout.adb, exp_aggr.adb, exp_ch7.adb, exp_util.adb, lib.adb,
1683         sem_ch13.adb, sem_ch4.adb, sem_res.adb, sem_util.adb
1684         (Has_Original_Node): Refactor to use Is_Rewrite_Substitution.
1686 2018-05-30  Piotr Trojanek  <trojanek@adacore.com>
1688         * sem_prag.adb (Analyze_Pragma): Remove conjuncts that are always true.
1690 2018-05-30  Hristian Kirtchev  <kirtchev@adacore.com>
1692         * sem_util.adb (Is_Atomic_Object): Cleaned up. Split the entity logic
1693         in a separate routine.
1694         (Is_Atomic_Object_Entity): New routine.
1695         (Is_Atomic_Prefix): Cleaned up.
1696         (Is_Synchronized_Object): Check that the object is atomic, or its type
1697         is atomic.
1698         (Object_Has_Atomic_Components): Removed.
1699         * sem_util.ads (Is_Atomic_Object): Reword the comment on usage.
1700         (Is_Atomic_Object_Entity): New routine.
1702 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1704         * sem_ch3.adb (Access_Subprogram_Declaration): The flag
1705         Needs_Activation_Record is only needed on a subprogram type, not on a
1706         pointer to such.
1707         * sem_res.adb (Resolve_Selected_Component): If the context type and the
1708         component type are anonymous access to subprograms, use the component
1709         type to obtain the proper value of Needs_Activation_Record flag for the
1710         expression.
1712 2018-05-30  Eric Botcazou  <ebotcazou@adacore.com>
1714         * gcc-interface/trans.c (gnat_to_gnu) <N_Assignment_Statement>: Add
1715         comment about the memset case.
1717 2018-05-30  Bob Duff  <duff@adacore.com>
1719         * exp_ch5.adb (Expand_Formal_Container_Element_Loop): Remove the code
1720         to analyze the Elmt_Decl, because it gets analyzed in the wrong scope.
1721         We need to analyze it as part of analyzing the block, so that if the
1722         call to Element that initializes Elmt_Decl returns on the secondary
1723         stack, the block will ss_mark/ss_release. This block is inside the
1724         loop; we don't want to leak memory until the loop exits.  The purpose
1725         of analyzing Elmt_Decl first was to catch the error of modifying it,
1726         which is illegal because it's a loop parameter. The above causes us to
1727         miss that error.  Therefore, we add a flag Is_Loop_Parameter, and set
1728         it on the Element entity, so we end up with an E_Variable node with the
1729         flag set.
1730         * einfo.ads, einfo.adb (Is_Loop_Parameter): New flag.
1731         * sem_ch5.adb (Diagnose_Non_Variable_Lhs): Give the "assignment to loop
1732         parameter not allowed" error if Is_Loop_Parameter.
1733         * sem_util.adb (Is_Variable): Return False if Is_Loop_Parameter, to
1734         trigger the call to Diagnose_Non_Variable_Lhs.
1736 2018-05-30  Arnaud Charlet  <charlet@adacore.com>
1738         * checks.adb (Apply_Scalar_Range_Check):
1739         * sem_eval.adb (Check_Non_Static_Context, Out_Of_Range): Ignore out of
1740         range values for System.Priority in CodePeer mode since the actual
1741         target compiler may provide a wider range.
1743 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1745         * exp_unst.adb: Search specification of main unit as well, for
1746         unnesting.
1748 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1750         * exp_ch7.adb (Check_Unnesting_Elaboration_Code): The statement part of
1751         a package body that is a compilation unit may contain blocks that
1752         declare local subprograms.  In Subprogram_Unnesting Mode such
1753         subprograms must be handled as nested inside the (implicit) elaboration
1754         procedure that executes that statement part. To handle properly uplevel
1755         references we construct that subprogram explicitly, to contain blocks
1756         and inner subprograms, The statement part of the compilation unit
1757         becomes a call to this subprogram. This is only done if blocks are
1758         present in the statement list of the body.
1760 2018-05-30  Bob Duff  <duff@adacore.com>
1762         * exp_ch7.adb: Minor comment fix.
1764 2018-05-30  Ed Schonberg  <schonberg@adacore.com>
1766         * exp_unst.adb (Visit_Node): Handle properly subprogram instantiations
1767         that have no corresponding body and appear as attributes of the
1768         corresponding wrapper package declaration.
1769         (Register_Subprogram): New subprogram, used for subprogram bodies and
1770         for subprogram instantiations to enter callable entity into Subp table.
1772 2018-05-30  Hristian Kirtchev  <kirtchev@adacore.com>
1774         * libgnat/s-secsta.adb: Reimplement the secondary stack support.
1775         * libgnat/s-secsta.ads: Update the documentation of all routines in the
1776         public part of the package.  Reimplement the private part of the
1777         package to account for the new secondary stack structure.  Add types
1778         and subprograms for testing purposes.  Add several documentation
1779         sections.
1781 2018-05-30  Hristian Kirtchev  <kirtchev@adacore.com>
1783         * exp_aggr.adb, exp_ch3.adb, exp_ch4.adb, exp_ch7.adb, exp_unst.adb,
1784         exp_util.adb, exp_util.ads, libgnat/a-calcon.adb, libgnat/a-calcon.ads,
1785         libgnat/s-os_lib.adb, repinfo.adb, sem_ch3.adb, sem_disp.adb,
1786         sem_disp.ads, sem_util.adb: Minor reformatting.
1788 2018-05-30  Arnaud Charlet  <charlet@adacore.com>
1790         * gcc-interface/Makefile.in: Move special flags for Ada runtime files
1791         from here...
1792         * Makefile.rtl: ... to here.  Update comments.  Protect call to
1793         "GCC_FOR_TARGET" in case target_os isn't defined.
1795 2018-05-30  Arnaud Charlet  <charlet@adacore.com>
1797         * gcc-interface/Makefile.in: Move target pair settings from here...
1798         * Makefile.rtl: ... to here.
1799         (setup-rts): New target.
1801 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
1803         * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Alphabetical
1804         List of All Switches): Replace "modules" with "units".
1805         (Subprogram Inlining Control): Likewise.
1806         * gnat_ugn.texi: Regenerate.
1807         * usage.adb (Usage): Fix description of -gnatn switch.
1809 2018-05-29  Arnaud Charlet  <charlet@adacore.com>
1811         * gcc-interface/Makefile.in: Fix typos.
1813 2018-05-29  Ed Schonberg  <schonberg@adacore.com>
1815         * exp_ch7.adb (Build_Finalizer_Call): Attach to tree the reference to
1816         the finalizer procedure in the At_End handler, for use in LLVM
1817         generation.
1819 2018-05-29  Javier Miranda  <miranda@adacore.com>
1821         * exp_ch4.adb (Expand_N_Op_Eq, Expand_Composite_Equality): Use the new
1822         subprogram Inherits_From_Tagged_Full_View to identify more reliably
1823         untagged private types completed with a derivation of an untagged
1824         private whose full view is a tagged type.
1825         * sem_util.ads, sem_util.adb (Inherits_From_Tagged_Full_View): New
1826         subprogram.
1827         (Collect_Primitive_Operations): Handle untagged private types completed
1828         with a derivation of an untagged private type whose full view is a
1829         tagged type. In such case, collecting the list of primitives we may
1830         find two equality primitives: one associated with the untagged private
1831         and another associated with the ultimate tagged type (and we must
1832         remove from the returned list this latter one).
1834 2018-05-29  Ed Schonberg  <schonberg@adacore.com>
1836         * exp_unst.adb (Visit_Node): Handle statement sequences that include an
1837         At_End handler.
1839 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
1841         * repinfo.adb (List_Entities): Also recurse into blocks without label.
1843 2018-05-29  Ed Schonberg  <schonberg@adacore.com>
1845         * exp_ch6.adb (Expand_N_Subprogram_Body): Do not generate push/pop for
1846         exceptions if subprogram unnesting is in effect, because these branch
1847         nodes are relevant only in the presence of nested subprograms.
1849 2018-05-29  Ed Schonberg  <schonberg@adacore.com>
1851         * libgnat/s-fatgen.adb (Succ, Pred):  Raise Constraint_Error
1852         unconditionally when applied to the largest positive (resp. largest
1853         negative) value of a floating-point type.
1855 2018-05-29  Ed Schonberg  <schonberg@adacore.com>
1857         * einfo.ads, einfo.adb: Clarify use of Activation_Record_Component:
1858         discriminants and exceptions are never components of such.  The flag
1859         Needs_Activation_Record is set on subprogram types, not on access to
1860         them.
1862 2018-05-29  Ed Schonberg  <schonberg@adacore.com>
1864         * sem_ch3.adb: Set scope of component of subtype.
1866 2018-05-29  Ed Schonberg  <schonberg@adacore.com>
1868         * exp_unst.adb (Visit_Node): Exclude selected components whose prefix
1869         carry no type. Such selected components appear in unit names that are
1870         child units, both in the specification and possibly in an end label for
1871         the unit, and they do not contain any relevant uplevel references.
1873 2018-05-29  Arnaud Charlet  <charlet@adacore.com>
1875         * libgnat/a-calend.ads, libgnat/a-calend.adb (Epoch_Offset): Make it a
1876         function.
1878 2018-05-29  Olivier Hainque  <hainque@adacore.com>
1880         * libgnat/system-vxworks7-ppc-rtp.ads: New file.
1881         * libgnat/system-vxworks7-ppc-kernel.ads: New file.
1882         * libgnat/system-vxworks7-e500-rtp.ads: New file.
1883         * libgnat/system-vxworks7-e500-kernel.ads: New file.
1884         * libgnat/system-vxworks7-x86-rtp.ads: New file.
1885         * libgnat/system-vxworks-ppc64-kernel.ads: Rename as ...
1886         * libgnat/system-vxworks7-ppc64-kernel.ads: and adjust name of
1887         gnat-crtbe link spec to use the vx7 variant.
1889 2018-05-29  Olivier Hainque  <hainque@adacore.com>
1891         * vx_crtbegin.inc: Use a consistent naming convention for the
1892         registration/deregistration functions across RTP or kernel.  Remove the
1893         ctor/dtor attribute setting based on RTP/kernel, expect the optional
1894         attribute extension to be provided by includers instead.
1895         * vx_crtbegin.c: Mere inclusion of vx_crtbegin.inc with empty attribute
1896         extension for the registration/deregistration functions.
1897         * vx_crtbegin_attr.c: New file. Include vx_crtbegin.inc with explicit
1898         constructor/destructor attribute extensions.
1899         * vx_crtbegin_array.c: New file. Include vx_crtbegin.inc with empty
1900         attribute extensions and declare _ctors/_dtors arrays.
1901         * vx_crtbegin_auto.c: Remove.
1902         * libgnat/system-vxworks7-aarch64-rtp-smp.ads: Use
1903         vxworks7-gnat-crtbe-link.spec.
1904         * libgnat/system-vxworks7-aarch64.ads: Likewise.
1905         * libgnat/system-vxworks7-e500-rtp-smp.ads: Likewise.
1906         * libgnat/system-vxworks7-ppc-rtp-smp.ads: Likewise.
1907         * libgnat/system-vxworks7-ppc64-rtp-smp.ads: Likewise.
1908         * libgnat/system-vxworks7-x86-kernel.ads: Likewise.
1909         * libgnat/system-vxworks7-x86-rtp-smp.ads: Likewise.
1910         * libgnat/system-vxworks7-x86_64-kernel.ads: Likewise.
1911         * libgnat/system-vxworks7-x86_64-rtp-smp.ads: Likewise.
1913 2018-05-29  Piotr Trojanek  <trojanek@adacore.com>
1915         * ali.adb: Minor reformatting.
1917 2018-05-29  Joel Brobecker  <brobecker@adacore.com>
1919         * doc/gnat_ugn/platform_specific_information.rst: Update package
1920         requirements for 32bit GNAT on x86_64-linux.
1921         * gnat_ugn.texi: Regenerate.
1923 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
1925         * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Debugging
1926         Control): Adjust description of -gnatRj.
1927         * gnat_ugn.texi: Regenerate.
1928         * opt.ads (List_Representation_Info_To_JSON): Likewise.
1929         * repinfo.adb (List_Rep_Info): Do not automatically create a file
1930         if List_Representation_Info_To_JSON is true.
1931         * switch-c.adb (Scan_Front_End_Switches) <R>: Remove incompatibility
1932         check between -gnatRj and -gnatRs.
1933         * usage.adb (Usage): Adjust description of -gnatRj.
1935 2018-05-29  Pascal Obry  <obry@adacore.com>
1937         * libgnat/s-os_lib.adb (Normalize_Pathname): Fix handling of ".." in
1938         the root directory.
1940 2018-05-29  Pascal Obry  <obry@adacore.com>
1942         * libgnat/s-os_lib.adb: Minor reformatting.
1944 2018-05-29  Doug Rupp  <rupp@adacore.com>
1946         * libgnat/a-calend.adb (Epoch_Offset): Move from body to ...
1947         * libgnat/a-calend.ads (Epoch_Offset): to private part of spec
1948         * libgnat/a-calcon.ads (To_Unix_Nano_Time): New function spec.
1949         * libgnat/a-calcon.adb (To_Unix_Nano_Time): New function body.
1951 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
1953         * repinfo.ads (JSON format): Document new pair for components.
1954         * repinfo.adb (Derived_Discriminant): New function.
1955         (List_Structural_Record_Layout): Add Outer_Ent parameter and pass it
1956         in recursive calls. If the record type is the parent of an extension,
1957         find and list the derived discriminant from the extension, if any.
1958         (List_Component_Layout): List the Discriminant_Number in JSON mode.
1959         (List_Record_Info): Adjust call to List_Structural_Record_Layout.
1961 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
1963         * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Alphabetical
1964         List of All Switches): Document -gnatRj.
1965         (Debugging Control): Likewise.
1966         * gnat_ugn.texi: Regenerate.
1967         * opt.ads (List_Representation_Info_To_JSON): New boolean variable.
1968         * osint-c.adb (Create_Repinfo_File): Use the .json instead of .rep
1969         extension if List_Representation_Info_To_JSON is true.
1970         * repinfo.ads: Document the JSON output format.
1971         * repinfo.adb (List_Location): New procedure.
1972         (List_Array_Info): Add support for JSON output.
1973         (List_Entities): Likewise.
1974         (Unop): Likewise.
1975         (Binop): Likewise.
1976         (Print_Expr): Likewise.
1977         (List_Linker_Section): Likewise.
1978         (List_Mechanisms): Likewise.
1979         (List_Name): Likewise.
1980         (List_Object_Info): Likewise.
1981         (List_Record_Info): Likewise.
1982         (List_Component_Layout): Likewise.  Add Indent parameter.
1983         (List_Structural_Record_Layout): New procedure.
1984         (List_Attr): Add support for JSON output.
1985         (List_Type_Info): Likewise.
1986         (Write_Unknown_Val): Likewise.
1987         * switch-c.adb (Scan_Front_End_Switches) <R>: Deal with 'j'.
1988         * usage.adb (Usage): List -gnatRj.
1990 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
1992         * repinfo.adb (List_Component_Layout): New procedure extracted from...
1993         (List_Record_Layout): ...here.  Invoke it.
1995 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
1997         * repinfo.adb (Write_Unknown_Val): New procedure.
1998         (List_GCC_Expression): Call it.
1999         (List_Record_Layout): Likewise.
2000         (Write_Val): Likewise.
2002 2018-05-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2004         * exp_ch4.adb (Expand_N_Op_Abs): Clear Do_Overflow_Check when inserting
2005         code to do check.
2007 2018-05-29  Arnaud Charlet  <charlet@adacore.com>
2009         * lib-writ.adb (Write_ALI): Do not use new function from s-casuti yet.
2010         This breaks build of cross compilers with older versions of GNAT, so
2011         better avoid it.
2013 2018-05-29  Doug Rupp  <rupp@adacore.com>
2015         * libgnarl/s-taprop.ads (Monotonic_Clock): Refine documentation to
2016         reflect reality.
2018 2018-05-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2020         * exp_ch4.adb (Expand_N_Op_Abs): Always do range check against 'First.
2022 2018-05-29  Eric Botcazou  <ebotcazou@adacore.com>
2024         * repinfo.adb (List_Entities): Do not list the Linker_Section for
2025         subprograms here...
2026         (List_Mechanisms): ...but here instead.  Use consistent name output
2027         and formatting conventions.
2029 2018-05-29  Bob Duff  <duff@adacore.com>
2031         * lib-writ.adb (Write_ALI): Cleanup: avoid use of global var; call new
2032         To_Lower function.
2033         * libgnat/s-casuti.ads, libgnat/s-casuti.adb (To_Upper, To_Lower,
2034         To_Mixed): New functions.
2035         * osint.adb: Cleanup: use Is_Directory_Separator, which correctly
2036         allows both '\' and '/' on Windows.
2038 2018-05-28  Eric Botcazou  <ebotcazou@adacore.com>
2040         * repinfo.ads: Minor fixes and tweaks in comments.
2042 2018-05-28  Eric Botcazou  <ebotcazou@adacore.com>
2044         * repinfo.adb (List_GCC_Expression): Remove Valop and replace calls to
2045         it with calls to Unop.
2047 2018-05-28  Eric Botcazou  <ebotcazou@adacore.com>
2049         * repinfo.ads (TCode): Adjust range.
2050         (Truth_Andif_Expr): Remove.
2051         (Truth_Orif_Expr): Likewise.
2052         (Truth_And_Expr .. Dynamic_Val): Adjust value.
2053         * repinfo.adb (Print_Expr): Remove handling of Truth_{And,Or}if_Expr.
2054         (Rep_Value): Likewise.
2055         * repinfo.h (Truth_Andif_Expr): Remove.
2056         (Truth_Orif_Expr): Likewise.
2057         (Truth_And_Expr .. Dynamic_Val): Adjust value.
2058         * gcc-interface/decl.c (annotate_value) <TRUTH_ANDIF_EXPR>: Fall
2059         through to TRUTH_AND_EXPR case.
2060         <TRUTH_ORIF_EXPR>: Fall through to TRUTH_OR_EXPR case.
2062 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2064         * exp_unst.adb (Visit_Node): For indexed components and attribute
2065         references, examine index expressions or associated expressions as well
2066         to record uplevel references.
2067         (Vist_Node): For function and procedure calls, if a formal is an
2068         unconstrained array and the actual is constrained, check whether bounds
2069         of actual have uplevel references.
2071 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2073         * einfo.ads, einfo.adb: Exceptions can be uplevel references, and thus
2074         they can appear as components of activation records.
2075         * exp_unst.adb (Visit_Node): A reference to an exception may be an
2076         uplevel reference.
2078 2018-05-28  Eric Botcazou  <ebotcazou@adacore.com>
2080         * exp_ch4.adb (Expand_Composite_Equality): Compute whether the size
2081         depends on a discriminant manually instead of using the predicate
2082         Size_Depends_On_Discriminant in the array type case.
2084 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2086         * exp_unst.adb (Check_Static_Type): For a record subtype, check
2087         discriminant constraints as well.
2088         (Visit_Node): For a selected component, check type of prefix, as is
2089         done for indexed components and slices.
2091 2018-05-28  Javier Miranda  <miranda@adacore.com>
2093         * exp_ch4.adb (Real_Range_Check): Add a temporary to store the integer
2094         value when converting a float value to a fixed-point value. This is
2095         required for CCG because it handles fixed-point types by means of
2096         unsigned integer type variables. The range check is now performed using
2097         the integer value stored in this temporary.
2099 2018-05-28  Yannick Moy  <moy@adacore.com>
2101         * sem_util.adb (Is_OK_Volatile_Context): Add attributes First, Last and
2102         Length as valid non-interfering contexts for SPARK.
2104 2018-05-28  Claire Dross  <dross@adacore.com>
2106         * sem_disp.ads, sem_disp.adb (Inheritance_Utilities): Package for
2107         generic inheritance utilities.
2108         (Generic_Inherited_Subprograms): Generic version of
2109         Inherited_Subprograms, generic in Find_Dispatching_Type function.
2110         (Generic_Is_Overriding_Subprogram): Generic version of
2111         Is_Overriding_Subprogram, generic in Find_Dispatching_Type function.
2112         (Inherited_Subprograms): Instance of Generic_Inherited_Subprograms with
2113         Sem_Disp.Find_Dispatching_Type.
2114         (Is_Overriding_Subprogram): Instance of
2115         Generic_Is_Overriding_Subprogram with Sem_Disp.Find_Dispatching_Type.
2116         (Inheritance_Utilities_Inst): Instance of Inheritance_Utilities
2117         with Sem_Disp.Find_Dispatching_Type.
2119 2018-05-28  Eric Botcazou  <ebotcazou@adacore.com>
2121         * exp_ch4.adb (Expand_Composite_Equality): For a composite (or FP)
2122         component type, do not expand array equality using the unconstrained
2123         base type, except for the case where the bounds of the type depend on a
2124         discriminant.
2126 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2128         * einfo.ads, einfo.adb (Needs_Activation_Record): New flag on
2129         access-to-subprogram types, to indicate that an indirect call through
2130         such a type requires an activation record when compiling for LLVM.
2131         * sem_ch3.adb (Access_Subprogram_Declaration): Set new flag as needed.
2133 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2135         * exp_ch4.adb (Real_Range_Check): Specialize float-to-fixed conversions
2136         when bounds of fixed type are static, to remove some spuerfluous
2137         implicit conversions and provide an accurate result when converting
2138         back and forth between the fixed point type and a floating point type.
2140 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2142         * exp_unst.adb (Unnest_Subprogram): Prevent creation of empty
2143         activation records.
2145 2018-05-28  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2147         * exp_unst.adb (Check_Static_Type): Add argument to indicate node to be
2148         replaced, if any; all callers changed.
2149         (Note_Uplevel_Ref): Likewise.  Also replace reference to deferred
2150         constant with private view so we take the address of that entity.
2151         (Note_Uplevel_Bound): Add argument to indicate node to be replaced, if
2152         any; all callers changed.  Handle N_Indexed_Component like
2153         N_Attribute_Reference.  Add N_Type_Conversion case.
2154         (Visit_Node): Indexed references can be uplevel if the type isn't
2155         static.
2156         (Unnest_Subprograms): Don't rewrite if no reference given.  If call has
2157         been relocated, set first_named pointer in original node as well.
2159 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2161         * exp_aggr.adb (Flatten): Copy tree of expression in a component
2162         association with a range or a set of discrete choices, rather than
2163         relocating the node. This avoids inconsistencies in the tree when
2164         handling nested subprograms with uplevel references for LLVM.
2166 2018-05-28  Arnaud Charlet  <charlet@adacore.com>
2168         * exp_util.adb (Possible_Bit_Aligned_Component): Always return False in
2169         codepeer mode.
2171 2018-05-28  Arnaud Charlet  <charlet@adacore.com>
2173         * exp_unst.adb: Fix typo.
2175 2018-05-28  Bob Duff  <duff@adacore.com>
2177         * libgnat/a-convec.adb (Query_Element): Minor cleanup: remove an
2178         unnecessary use of 'Unrestricted_Access.
2180 2018-05-28  Hristian Kirtchev  <kirtchev@adacore.com>
2182         * repinfo.adb (Expr_Value_S): New routine.
2183         (List_Linker_Section): Properly extract the value of the section
2184         argument.
2186 2018-05-28  Patrick Bernardi  <bernardi@adacore.com>
2188         * doc/gnat_ugn/building_executable_programs_with_gnat.rst: Update the
2189         description of the -D binder switch to reflect current usage.
2190         * gnat_ugn.texi: Regenerate.
2192 2018-05-28  Gary Dismukes  <dismukes@adacore.com>
2194         * exp_ch3.adb: Minor reformatting
2196 2018-05-28  Justin Squirek  <squirek@adacore.com>
2198         * exp_ch3.adb
2199         (Build_Initialization_Call): Add logic to pass the appropriate actual to match
2200          new formal.
2201         (Init_Formals): Add new formal *_skip_null_excluding_check
2202         * exp_util.adb, exp_util.ads
2203         (Enclosing_Init_Proc): Added to fetch the enclosing Init_Proc from the current
2204          scope.
2205         (Inside_Init_Proc): Refactored to use Enclosing_Init_Proc
2206         (Needs_Conditional_Null_Excluding_Check): Added to factorize the predicate
2207          used to determine how to generate an Init_Proc for a given type.
2208         (Needs_Constant_Address): Minor reformatting
2209         * sem_res.adb
2210         (Resolve_Null): Add logic to generate a conditional check in certain cases
2212 2018-05-28  Hristian Kirtchev  <kirtchev@adacore.com>
2214         * exp_aggr.adb, gnatlink.adb, sem_ch6.adb, sem_res.adb, sem_util.adb:
2215         Minor reformatting.
2217 2018-05-28  Hristian Kirtchev  <kirtchev@adacore.com>
2219         * sem_prag.adb (Process_Atomic_Independent_Shared_Volatile): Include
2220         the declarations of single concurrent types because they fall in the
2221         category of full type and object declarations.
2223 2018-05-28  Eric Botcazou  <ebotcazou@adacore.com>
2225         * repinfo.adb (Compute_Max_Length): Skip _Parent component.
2226         (List_Record_Layout): Likewise.
2228 2018-05-28  Ed Schonberg  <schonberg@adacore.com>
2230         * sem_util.adb (Is_Function_Result): Add a warning if a postcondition
2231         includes a call to function to which it applies. This may mean an
2232         omission of an attribute reference 'Result, in particular if the
2233         function is pqrameterless.
2235 2018-05-28  Justin Squirek  <squirek@adacore.com>
2237         * sem_ch8.adb (Find_Expanded_Name): Add extra guard to make sure the
2238         misresolved package name is not a case of mistaken identity.
2240 2018-05-28  Yannick Moy  <moy@adacore.com>
2242         * sem_res.adb (Resolve_Range): Re-resolve the low bound of a range in
2243         GNATprove mode, as the order of resolution (low then high) means that
2244         all the information is not available when resolving the low bound the
2245         first time.
2247 2018-05-28  Eric Botcazou  <ebotcazou@adacore.com>
2249         * repinfo.adb (List_Array_Info): Start with an explicit blank line and
2250         end with the linker section, if any.
2251         (List_Entities): Do not output the linker section for record types,
2252         array types and variables.
2253         (Print_Expr): Factor out common processing for unary operators and
2254         special values.  Adjust and reorder the various cases.
2255         (List_Object_Info): End with the linker section, if any.
2256         (List_Record_Info): Likewise.
2257         (List_Type_Info): Do not start with a blank line.
2259 2018-05-25  Nicolas Roche  <roche@adacore.com>
2261         * libgnat/s-valrea.adb (Scan_Real): Abort computation once it is sure
2262         that the result will be either -infinite or +infinite.
2264 2018-05-25  Patrick Bernardi  <bernardi@adacore.com>
2266         * libgnat/s-parame.ads, libgnat/s-parame__vxworks.ads,
2267         libgnat/s-parame__ae653.ads, libgnat/s-parame__hpux.ads (Size_Type):
2268         Expand range of type to match the address space of the target.
2269         (Task_Storage_Size): Remove unused type.
2271 2018-05-25  Ed Schonberg  <schonberg@adacore.com>
2273         * sem_res.adb (Set_Mixed_Mode_Operand): If the operand is an expression
2274         of a fixed point type and the parent is a multiplying operation,
2275         resolve the operand with its own type because the context will impose a
2276         resulting type on the result of the multiplication by means of
2277         approriate conversion.
2279 2018-05-25  Hristian Kirtchev  <kirtchev@adacore.com>
2281         * exp_ch3.adb (Default_Initialize_Object): Ensure that the analysis of
2282         the in-place initialization aggregate created for pragmas
2283         Initialize_Scalars or Normalize_Scalars is performed with checks
2284         suppressed.
2286 2018-05-25  Arnaud Charlet  <charlet@adacore.com>
2288         * exp_aggr.adb (Convert_To_Positional): Bump default for
2289         Max_Others_Replicate to 32. Update comments.
2290         * osint.ads (Unknown_Attributes): No longer pretend this is a constant.
2291         (No_File_Info_Cache): Initialize separately.
2292         * osint.adb (No_File_Info_Cache): Update initializer.
2294 2018-05-25  Javier Miranda  <miranda@adacore.com>
2296         * sem_res.adb (Resolve_Membership_Op): Allow the use of the membership
2297         test when the left operand is a class-wide interface and the right
2298         operand is not a class-wide type.
2299         * exp_ch4.adb (Tagged_Membership): Adding support for interface as the
2300         left operand.
2302 2018-05-25  Ed Schonberg  <schonberg@adacore.com>
2304         * exp_aggr.adb (Flatten): A quantified expression cannot be duplicated
2305         in an others clause to prevent visibility issues with the generated
2306         loop variable.
2307         (Component_OK_For_Backend): Return false for a quantified expression.
2308         (Check_Static_Component): Ditto.
2310 2018-05-25  Hristian Kirtchev  <kirtchev@adacore.com>
2312         * libgnat/s-secsta.adb (SS_Allocate): Reimplemented.
2313         (SS_Allocate_Dynamic): New routine. The allocation logic is now split
2314         into three distring cases rather than in one loop which attempts to
2315         handle all three cases. This rewrite eliminates an issue where the last
2316         frame of the stack cannot be freed, thus causing the memory range of a
2317         new frame to approach the overflow point of the memory index type.
2318         Since the overflow is logically treated as a
2319         too-much-memory-on-the-stack scenario, it causes a bogus Storage_Error.
2320         (SS_Allocate_Static): New routine. The routine factorizes the static
2321         secondary stack-related code from the former SS_Allocate.
2323 2018-05-25  Sergey Rybin  <rybin@adacore.com>
2325         * doc/gnat_ugn/gnat_and_program_execution.rst: Add description of '-U'
2326         option for gnatelim.
2328 2018-05-25  Ed Schonberg  <schonberg@adacore.com>
2330         * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Do not create
2331         Class_Wide_Clone_Body when analyzing a subprogram_body_stub: the clone
2332         is created when the proper body of the stub is analyzed.
2333         * sem_util.adb (ZBuild_Class_Wide_Clone_Body): If the subprogram body
2334         is the proper body of a subunit, the cloned body must be inserted in
2335         the declarative list that contains the stub.
2337 2018-05-25  Justin Squirek  <squirek@adacore.com>
2339         * exp_ch6.adb (Expand_Simple_Function_Return): Add guard in check to
2340         generate code for 6.5(8-10) so that we don't get an assertion error
2341         when dealing with an incomplete return type.
2343 2018-05-25  Arnaud Charlet  <charlet@adacore.com>
2345         * pprint.adb (Expression_Name): Strip too long expressions to avoid
2346         carrying very large strings.
2348 2018-05-25  Patrick Bernardi  <bernardi@adacore.com>
2350         * switch-b.adb (Scan_Binder_Switches): binder switch -Q accepts Natural
2351         numbers.
2353 2018-05-25  Doug Rupp  <rupp@adacore.com>
2355         * tracebak.c (aarch64-linux): Implement.
2357 2018-05-25  Justin Squirek  <squirek@adacore.com>
2359         * sem_ch8.adb: Minor reformatting.
2361 2018-05-25  Piotr Trojanek  <trojanek@adacore.com>
2363         * sem_util.adb (Iterate_Call_Parameters): Fix code convention and
2364         assertions.
2366 2018-05-25  Hristian Kirtchev  <kirtchev@adacore.com>
2368         * einfo.adb, einfo.ads, exp_ch3.adb, exp_ch8.adb, exp_unst.adb,
2369         pprint.adb, sem_ch12.adb, sem_ch3.adb, sem_prag.adb, sem_util.adb:
2370         Minor reformatting.
2372 2018-05-25  Ed Schonberg  <schonberg@adacore.com>
2374         * sem_ch12.adb (Instance_Exists): New function, subsidiary of
2375         Validate_Derived_Type_Instance, to verify that all interfaces
2376         implemented by the formal type are also implemented by the actual. The
2377         verification is complicated when an interface of the formal is declared
2378         in a generic unit and the actual is declared in an instance of it.
2379         There is currently no mechanism to relate an interface declared within
2380         a generic to the corresponding interface in an instance, so we must
2381         traverse the list of interfaces of the actual, looking for a name
2382         match, and verifying that that interface is declared in an instance.
2384 2018-05-25  Piotr Trojanek  <trojanek@adacore.com>
2386         * sem_util.adb (Iterate_Call_Parameters): Rewrite with extra
2387         assertions; replace function versions of Next_Formal/Next_Actual with
2388         their procedural versions (which are more concise).
2390 2018-05-25  Doug Rupp  <rupp@adacore.com>
2392         * libgnarl/s-osinte__aix.ads, libgnarl/s-osinte__android.ads,
2393         libgnarl/s-osinte__darwin.ads, libgnarl/s-osinte__freebsd.ads,
2394         libgnarl/s-osinte__hpux.ads, libgnarl/s-osinte__kfreebsd-gnu.ads,
2395         libgnarl/s-osinte__linux.ads, libgnarl/s-osinte__lynxos178e.ads,
2396         libgnarl/s-osinte__qnx.ads, libgnarl/s-osinte__rtems.ads
2397         (Relative_Timed_Wait): Remove.
2398         * libgnarl/s-tpopmo.adb (Timed_Sleep, Timed_Delay): Rewrite to allow
2399         for incremental looping. Remove references to Rel_Time and
2400         Relative_Timed_Wait.
2401         * libgnat/s-osprim__posix.adb, libgnat/s-osprim__posix2008.adb
2402         (Timed_Delay): Make separate.
2403         * libgnat/s-optide.adb: New separate procedure.
2404         * libgnat/s-osprim.ads (Max_System_Delay): New constant.
2405         * libgnat/s-osprim__lynxos.ads (Max_Sensible_Delay): Set to 6 months.
2406         (Max_System_Delay): New constant.
2408 2018-05-25  Ed Schonberg  <schonberg@adacore.com>
2410         * sem_ch12.adb (Validate_Derived_Type_Instance): Verify that the actual
2411         for a formal derived type implements all the interfaces declared for
2412         the formal.
2414 2018-05-25  Yannick Moy  <moy@adacore.com>
2416         * sem_prag.adb (Check_Applicable_Policy): Deal specially with CodePeer
2417         and GNATprove modes when applicable policy is Ignore.
2419 2018-05-25  Eric Botcazou  <ebotcazou@adacore.com>
2421         * freeze.adb (Freeze_Enumeration_Type): Do not give integer size to a
2422         boolean type with convention C.
2423         * libgnat/i-cexten.ads (bool): Change to boolean with convention C.
2424         * gcc-interface/decl.c (gnat_to_gnu_entity): Add new local variable
2425         FOREIGN and use it throughout the function.
2426         <E_Enumeration_Type>: Set precision 1 on boolean types with foreign
2427         convention.
2428         <E_Enumeration_Subtype>: Likewise for subtypes.
2429         <E_Record_Type>: Force the size of a storage unit on empty classes.
2430         * gcc-interface/utils.c (make_type_from_size) <BOOLEAN_TYPE>: Skip
2431         boolean types with precision 1 if the size is the expected one.
2433 2018-05-25  Arnaud Charlet  <charlet@adacore.com>
2435         * pprint.adb (Expression_Name): Do not print non ASCII characters.
2437 2018-05-25  Bob Duff  <duff@adacore.com>
2439         * libgnat/a-strunb__shared.ads, libgnat/a-stwiun__shared.ads,
2440         libgnat/a-stzunb__shared.ads: (Initialize, Adjust): Add pragma Inline.
2442 2018-05-25  Bob Duff  <duff@adacore.com>
2444         * sem_util.ads: Minor comment fix.
2446 2018-05-25  Ed Schonberg  <schonberg@adacore.com>
2448         * exp_unst.adb (Visit_Node): Restrict check for uplevel references in
2449         prefixes of array attributes, to prefixes that are entity names whose
2450         type is constrained.
2451         (Note_Uplevel_Bound): Verify that the bound is declared in an enclosing
2452         subprogram, as itype created for loops in pre/postcondition may appear
2453         in loops at the library level.
2455 2018-05-25  Ed Schonberg  <schonberg@adacore.com>
2457         * sem_ch13.adb (Build_Predicate_Functions): The predicate function
2458         declaration is inserted into the tree and analyzed at that point, so
2459         should not be reinserted when the body is constructed. Inside a
2460         generic, ensure that the body is not inserted twice in the tree.
2462 2018-05-25  Yannick Moy  <moy@adacore.com>
2464         * sem_prag.adb (Check_Grouping): Modify test to ignore statements and
2465         declarations not coming from source.
2467 2018-05-25  Fedor Rybin  <frybin@adacore.com>
2469         * doc/gnat_ugn/gnat_utility_programs.rst: Document new switch
2470         --copy-environment for gnattest.
2472 2018-05-24  Piotr Trojanek  <trojanek@adacore.com>
2474         * sem_elab.adb (Non_Private_View): Simplify by removing a local Result
2475         variable.
2476         * sem_prag.adb (Get_Base_Subprogram): Same as above.
2478 2018-05-24  Eric Botcazou  <ebotcazou@adacore.com>
2480         * fe.h (Set_Normalized_First_Bit): Declare.
2481         (Set_Normalized_Position): Likewise.
2482         * repinfo.adb (List_Record_Layout): Do not use irregular output for a
2483         variable position.  Fix minor spacing issue.
2484         * gcc-interface/decl.c (annotate_rep): If a field has a variable
2485         offset, compute the normalized position and annotate it in addition to
2486         the bit offset.
2488 2018-05-24  Eric Botcazou  <ebotcazou@adacore.com>
2490         * gcc-interface/trans.c (Handled_Sequence_Of_Statements_to_gnu):
2491         Constify and rename variables.  Fix formatting.
2492         (gnat_to_gnu) <N_Exception_Handler>: Minor tweak.
2493         <N_Raise_Statement>: Likewise.
2495 2018-05-24  Javier Miranda  <miranda@adacore.com>
2497         * exp_ch8.adb (Build_Body_For_Renaming): Adding support to build the
2498         body of a variant record equality renaming.
2499         (Expand_N_Subprogram_Renaming_Declaration): Adapt the code to the new
2500         implementation of Build_Body_For_Renaming.
2501         * exp_ch3.ads (Build_Variant_Record_Equality): New library level
2502         function that factorizes the functionality needed by
2503         Build_Body_For_Renaming and Expand_Freeze_Record_Type to build the body
2504         of a variant record equality subprogram.
2505         * exp_ch3.adb (Build_Variant_Record_Equality): New subprogram.
2506         (Build_Variant_Record_Equality): New local procedure of
2507         Expand_Freeze_Record_Type containing all the code specific for freezing
2508         the record type that cannot be place in the new library level function.
2510 2018-05-24  Ed Schonberg  <schonberg@adacore.com>
2512         * einfo.ads, einfo.adb (Is_Activation_Record): New flag on
2513         in_parameters, used when unesting subprograms for LLVM, to indicate
2514         that a generated parameter carries the activation record from the
2515         enclosing subprogram.
2516         * exp_unst.adb (Check_Static_Type): Handle array attributes of types
2517         whose bounds may contain up-level references that need to be added to
2518         an activation recoord.
2519         (Add_Extra_Formal): Set Is_Activation_Record on new formal.
2521 2018-05-24  Yannick Moy  <moy@adacore.com>
2523         * pprint.adb (Expression_Image): Improve the printing of expressions,
2524         by taking more cases into account, in particular qualified expressions
2525         and aggregates.  Also count more the number of parentheses to close
2526         after the expression.
2528 2018-05-24  Javier Miranda  <miranda@adacore.com>
2530         * sem_ch3.adb (Is_Visible_Component): For untagged types add missing
2531         check for renamed discriminants.
2532         * sem_ch4.adb (Analyze_Overloaded_Selected_Component,
2533         Analyze_Selected_Component, Check_Misspelled_Selector): For calls to
2534         Is_Visible_Component pass the associated selector node to allow
2535         checking renamed discriminants on untagged types.
2537 2018-05-24  Ed Schonberg  <schonberg@adacore.com>
2539         * sem_ch8.adb (Analyze_Use_Type): Do not assign the Prev_Use_Clause
2540         link to a use_type clause if this would cause an infinite loop in the
2541         machinery that detects redundant use clauses. This may happen when the
2542         redundant clauses appear in the context of a child unit and the context
2543         of its parent.
2545 2018-05-24  Piotr Trojanek  <trojanek@adacore.com>
2547         * sinfo.ads: Fix grammar in comment.
2549 2018-05-24  Justin Squirek  <squirek@adacore.com>
2551         * einfo.ads, einfo.adb (Append_Entity): Modified to use Link_Entities
2552         and manage doubly-linked entity chain.
2553         (Nested_Scenarios): Removed entity field used for optimization during
2554          elaboration to make room for the new field Prev_Entity.
2555         (Link_Entities): Added to replace redundant calls to Set_Next_Entity
2556         and Set_Prev_Entity as well as centralize changes to the entity chain.
2557         (Predicated_Parent): Modified to use Node38.
2558         (Prev_Entity): Added to fetch new node field Prev_Entity in all entity
2559         types.
2560         (Remove_Entity): Moved from sem_util.
2561         (Set_Nested_Scenarios): Deleted.
2562         (Set_Predicated_Parent): Modified to use Node38.
2563         (Set_Prev_Entity): Added to set Prev_Entity field.
2564         (Set_Validated_Object): Modified to use Node38.
2565         (Unlink_Next_Entity): Added to process Prev_Entity when an unlinking
2566         action is required.
2567         (Validated_Object): Modified to use Node38.
2568         (Write_Field36_Name): Remove Nested_Scenarios, Validated_Object, and
2569         predicated parent cases.
2570         (Write_Field38_Name): Add predicated parent and Validated_Object cases.
2571         * sem_ch3.adb (Process_Subtype): Add guard to protect against
2572         inappropriate marking of Predicated_Parent to non-itype subtypes.
2573         (Make_Class_Wide_Type): Preserve Prev_Entity field and set in new type.
2574         (Copy_And_Swap): Add setting of Prev_Entity.
2575         (Build_derived_Record_Type): Replace Set_Next_Entity w/ Link_Entities.
2576         * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Replace Set_Next_Entity
2577         w/ Link_Entities.
2578         (New_Overloaded_Entity): Remove block created to search for previous
2579         entities in the entity chain with relevant calls to Prev_Entity as well
2580         as replace duplicated code from Remove_Entity_And_Homonym with a call
2581         to that subprogram.
2582         * sem_ch7.adb (Exchange_Declarations): Replace Set_Next_Entity w/
2583         Link_Entities.
2584         * sem_elab.adb (Find_And_Process_Nested_Scenarios): Remove global and
2585         initial subprogram declarations related to Nested_Scenarios.
2586         (Process_Nested_Scenarios): Deleted.
2587         (Save_Scenario): Deleted.
2588         (Traverse_Body): Remove optimization for Nested_Scenarios so as to free
2589         node space in the entity tree.
2590         * sem_util.adb, sem_util.ads (Remove_Entity): Moved to einfo.
2591         (Remove_Entity_And_Homonym): Added to separate functionality of
2592         Remove_Entity from the homonym chain directly.
2593         * exp_attr.adb (Expand_N_Attribute_Reference): Replace Set_Next_Entity
2594         w/ Link_Entities and Unlink_Next_Entity.
2595         * exp_ch3.adb (Expand_N_Object_Declaration): Replace Set_Next_Entity w/
2596         Link_Entities.
2597         * exp_ch6.adb (Replace_Renaming_Declaration_Id): Replace
2598         Set_Next_Entity w/ Link_Entities.
2599         * exp_disp.adb (Expand_Dispatching_Call): Replace Set_Next_Entity w/
2600         Link_Entities and Unlink_Next_Entity.
2601         * exp_spark.adb (Expand_SPARK_N_Object_Renaming_Declaration): Replace
2602         call to Remove_Entity with its new incarnation.
2603         * exp_util.adb (New_Class_Wide_Subtype): Add setting of Prev_Entity.
2604         * freeze.adb (Freeze_Record_Type): Replace Set_Next_Entity w/
2605         Link_Entities.
2607 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2609         * sem_ch10.adb (Expand_Limited_With_Clause): Update the call to
2610         Install_Limited_Withed_Unit.
2611         (Expand_With_Clause): Update the call to Install_Withed_Unit.
2612         (Implicit_With_On_Parent): Update the call to Install_Withed_Unit.
2613         (Install_Context_Clauses): Update the call to Install_Withed_Unit.
2614         (Install_Limited_Context_Clauses): Update the calls to
2615          Install_Limited_Withed_Unit.
2616         (Install_Limited_Withed_Unit): Renamed to better illustrate its
2617         purpose.
2618         (Install_Private_With_Clauses): Update the calls to Install_Withed_Unit
2619         and Install_Limited_Withed_Unit.
2620         (Install_With_Clause): Uninstall a limited with clause if a [private]
2621         with clause is given for the same package.
2622         (Install_Withed_Unit): Renamed to better illustrate its purpose.
2623         (Remove_Limited_With_Unit): New routine.
2625 2018-05-24  Eric Botcazou  <ebotcazou@adacore.com>
2627         * raise-gcc.c (__gnat_SEH_error_handler): Remove prototype.
2628         (__gnat_personality_seh0): Adjust and beef up comments, and
2629         fix formatting throughout.
2630         (__gnat_adjust_context): Deal minimally with version 2.
2631         * seh_init.c (__gnat_map_SEH): Fix formatting.
2632         (_gnat_SEH_error_handler): Adjust comments.
2633         (__gnat_install_SEH_handler): Fix formatting.
2635 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2637         * exp_ch7.adb, sem_ch3.adb, sem_res.adb: Minor reformatting.
2639 2018-05-24  Ed Schonberg  <schonberg@adacore.com>
2641         * exp_aggr.adb (Flatten): Add a warning on an others clause in an array
2642         aggregate with static bounds when named associations cover all index
2643         positions and the others clause is redundant.
2645 2018-05-24  Raphael Amiard  <amiard@adacore.com>
2647         * libgnat/a-cohama.ads: Add documentation.
2649 2018-05-24  Raphael Amiard  <amiard@adacore.com>
2651         * libgnat/a-convec.ads: Add documentation.
2653 2018-05-24  Justin Squirek  <squirek@adacore.com>
2655         * exp_ch3.adb (Expand_N_Object_Declaration): Ignore raising an error in
2656         expansion for limited tagged types when the node to be expanded is a
2657         raise expression due to it not representing a valid object.
2658         * exp_ch5.adb (Expand_N_Assignment_Statement): Add exception to error
2659         message regarding assignments to limited types to ignore genereated
2660         code.
2662 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2664         * exp_util.adb (New_Class_Wide_Subtype): Capture and restore relevant
2665         Ghost-related attributes of the class-wide subtype because the copy
2666         clobbers them.
2668 2018-05-24  Justin Squirek  <squirek@adacore.com>
2670         * sem_res.adb (Resolve_Entity_Name): Add guard to protect against
2671         marking use clauses as effective when the reference appears within
2672         generated code.
2674 2018-05-24  Cyrille Comar  <comar@adacore.com>
2676         * doc/gnat_rm/the_gnat_library.rst: Fix typos.
2677         * gnat_rm.texi: Regenerate.
2679 2018-05-24  Bob Duff  <duff@adacore.com>
2681         * exp_ch7.adb (Expand_Cleanup_Actions): Create a mark unconditionally
2682         for build-in-place functions with a caller-unknown-size result.
2683         (Create_Finalizer): For build-in-place functions with a
2684         caller-unknown-size result, check at run time whether we need to
2685         release the secondary stack.
2687 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2689         * sem_prag.adb (Analyze_Pragma): Use the full view of an internally
2690         generated incomplete type.
2692 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2694         * expander.adb (Expand): Update the save and restore of the Ghost
2695         region.
2696         * exp_ch3.adb (Freeze_Type): Likewise.
2697         * exp_disp.adb (Make_DT): Likewise.
2698         * exp_util.adb (Build_DIC_Procedure_Body): Likewise.
2699         (Build_DIC_Procedure_Declaration): Likewise.
2700         (Build_Invariant_Procedure_Body): Likewise.
2701         (Build_Invariant_Procedure_Declaration): Likewise.
2702         (Make_Predicate_Call): Likewise.
2703         * freeze.adb (Add_To_Result): Insert the freeze action of a living
2704         entity prior to the start of the enclosing ignored Ghost region.
2705         (Freeze_Entity): Update the save and restore of the Ghost region.
2706         * ghost.adb (Install_Ghost_Mode): Reimplemented.
2707         (Install_Ghost_Region): New routine.
2708         (Mark_And_Set_Ghost_Assignment): Install a region rather than a mode.
2709         (Mark_And_Set_Ghost_Body): Likewise.
2710         (Mark_And_Set_Ghost_Completion): Likewise.
2711         (Mark_And_Set_Ghost_Declaration): Likewise.
2712         (Mark_And_Set_Ghost_Instantiation): Likewise.
2713         (Mark_And_Set_Ghost_Procedure_Call): Likewise.
2714         (Name_To_Ghost_Mode): New routine.
2715         (Restore_Ghost_Region): New routine.
2716         * ghost.ads (Install_Ghost_Region): New routine.
2717         (Restore_Ghost_Region): New routine.
2718         * opt.ads: Add new global variable Ignored_Ghost_Region.
2719         * rtsfind.adb (Load_RTU): Update the save and restore of the Ghost
2720         region. Install a clean region.
2721         * sem.adb (Analyze): Likewise.
2722         (Do_Analyze): Likewise.
2723         * sem_ch3.adb (Analyze_Object_Declaration): Likewise
2724         (Derive_Progenitor_Subprograms): Use local variable Iface_Alias to
2725         capture the ultimate alias of the current primitive.
2726         (Process_Full_View): Update the save and restore of the Ghost region.
2727         Do not inherit DIC and invariant procedures.
2728         * sem_ch5.adb (Analyze_Assignment): Update the save and restore of the
2729         Ghost region.
2730         * sem_ch6.adb (Analyze_Procedure_Call): Likewise.
2731         (Analyze_Subprogram_Body_Helper): Likewise.
2732         * sem_ch7.adb (Analyze_Package_Body_Helper): Likewise.
2733         * sem_ch12.adb (Analyze_Package_Instantiation): Likewise.
2734         (Analyze_Subprogram_Instantiation): Likewise.
2735         (Instantiate_Package_Body): Likewise.
2736         (Instantiate_Subprogram_Body): Likewise.
2737         * sem_ch13.adb (Build_Predicate_Functions): Likewise.
2738         (Build_Predicate_Function_Declaration): Likewise.
2739         * sem_disp.adb
2740         (Add_Dispatching_Operation): Do not consider DIC and invariant
2741         procedures.
2742         (Check_Dispatching_Operation): Use Add_Dispatching_Operation to collect
2743         a dispatching subprogram.
2744         (Check_Operation_From_Private_View): Likewise.
2745         (Override_Dispatching_Operation): Likewise.
2746         * sem_prag.adb (Analyze_Contract_Cases_In_Decl_Part): Update the save
2747         and restore of the Ghost region.
2748         (Analyze_Initial_Condition_In_Decl_Part): Likewise.
2749         (Analyze_Pragma): Update the save and restore of the Ghost region.
2750         (Analyze_Pre_Post_Condition_In_Decl_Part): Likewise.
2751         * sem_util.adb (Is_Suitable_Primitive): New routine.
2752         * sem_util.ads (Is_Suitable_Primitive): New routine.
2753         * sinfo.ads: Update the section of Ghost regions.
2755 2018-05-24  Piotr Trojanek  <trojanek@adacore.com>
2757         * doc/gnat_rm/implementation_defined_pragmas.rst (Contract_Cases):
2758         Change "condition" to "case guard" after renaming in the contract
2759         grammar.
2760         * gnat_rm.texi: Regenerate.
2762 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2764         * exp_util.adb (Expand_Static_Predicates_In_Choices): Indicate that the
2765         construct with discrete choices no longer contains a subtype with
2766         predicates since the expansion already handled this case.
2768 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2770         * freeze.adb (Wrap_Imported_Subprogram): Generate an unchecked
2771         conversion to the return type to avoid a side effect where an imported
2772         relocated function generates a new anonymous access type, whose
2773         accessibility level does not agree with with that of the wrapper.
2775 2018-05-24  Javier Miranda  <miranda@adacore.com>
2777         * sem_util.adb (Abstract_Interface_List): Add missing support for
2778         private types whose full view is a synchronized type.
2779         * sem_ch3.adb (Build_Derived_Private_Type): Skip building the full
2780         derivation of a private type parent type is a task type with
2781         discriminants as gigi does not use such type directly.
2783 2018-05-24  Hristian Kirtchev  <kirtchev@adacore.com>
2785         * sem_elab.adb (Build_Variable_Reference_Marker): Do not create a
2786         variable marker when the reference appears in the formal part of a
2787         compilation unit instance because there is no place to insert it.
2788         (In_Compilation_Instance_Formal_Part): New routine.
2790 2018-05-24  Piotr Trojanek  <trojanek@adacore.com>
2792         * layout.ads, repinfo.ads: Fix references to renamed Backend_Layout
2793         configuration parameter.
2795 2018-05-24  Doug Rupp  <rupp@adacore.com>
2797         * argv-lynxos178-raven-cert.c: New file.
2798         * libgnat/system-lynxos178-x86.ads: New file.
2800 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
2802         * exp_disp.adb, freeze.adb, gnat1drv.adb, sem_ch5.adb, sem_spark.adb:
2803         Minor reformattings.
2805 2018-05-23  Pascal Obry  <obry@adacore.com>
2807         * adaint.c (win32_wait): Properly free the handle/pid lists when
2808         WaitForMultipleObjects fails (return WAIT_FAILED).
2810 2018-05-23  Pascal Obry  <obry@adacore.com>
2812         * adaint.c (win32_wait): Add missing parentheses.
2814 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
2816         * exp_ch3.adb (Check_Large_Modular_Array): Moved to Freeze.
2817         (Expand_N_Object_Declaration): Do not check for a large modular array
2818         here.
2819         * freeze.adb (Check_Large_Modular_Array): Moved from Exp_Ch3.
2820         (Freeze_Object_Declaration): Code cleanup. Check for a large modular
2821         array.
2822         * sem_ch3.adb: Minor reformatting.
2824 2018-05-23  Ed Schonberg  <schonberg@adacore.com>
2826         * einfo.ads: New attribute on types: Predicated_Parent, to simplify the
2827         retrieval of the applicable predicate function to an itype created for
2828         a constrained array component.
2829         * einfo.adb: Subprograms for Predicated_Parent.
2830         (Predicate_Function): Use new attribute.
2831         * exp_util.adb (Make_Predicate_Call): If the predicate function is not
2832         available for a subtype, retrieve it from the base type, which may have
2833         been frozen after the subtype declaration and not captured by the
2834         subtype declaration.
2835         * sem_aggr.adb (Resolve_Array_Aggregate): An Others association is
2836         legal within a generated initiqlization procedure, as may happen with a
2837         predicate check on a component, when the predicate function applies to
2838         the base type of the component.
2839         * sem_ch3.adb (Analyze_Subtype_Declaration): Clean up inheritance of
2840         predicates for subtype declarations and for subtype indications in
2841         other contexts.
2842         (Process_Subtype): Likewise. Handle properly the case of a private type
2843         with unknown discriminants whose full view is an unconstrained array.
2844         Use Predicated_Parent to indicate source of predicate function on an
2845         itype whose parent is itself an itype.
2846         (Complete_Private_Subtype): If the private view has unknown
2847         discriminants and the full view is an unconstrained array, set base
2848         type of completion to the full view of parent.
2849         (Inherit_Predicate_Flags): Prevent double assignment of predicate
2850         function and flags.
2851         (Build_Subtype): For a constrained array component, propagate predicate
2852         information from original component type declaration.
2854 2018-05-23  Boris Yakobowski  <yakobowski@adacore.com>
2856         * libgnat/a-ngelfu.ads (Arctanh, Arccoth): Fix faulty preconditions.
2858 2018-05-23  Arnaud Charlet  <charlet@adacore.com>
2860         * checks.adb (Minimize_Eliminate_Overflows): Default initialize Lo and
2861         Hi.
2862         * sem_elab.adb: Make "out" parameters instead of "in out" when
2863         relevant.
2865 2018-05-23  Bob Duff  <duff@adacore.com>
2867         * gnatbind.adb (List_Applicable_Restrictions): Add
2868         No_Implementation_Restrictions to the list of restrictions not to list.
2869         Remove double negative "not No_Restriction_List".  Comment the
2870         commentary that is output, so it won't cause errors if used directly in
2871         a gnat.adc.
2873 2018-05-23  Ed Schonberg  <schonberg@adacore.com>
2875         * sem_prag.adb (Inherit_Class_Wide_Pre): Refine legality check on
2876         class-wide precondition on a type extension when ancestor does not have
2877         a class-wide precondition.  Previously the compiler accepted such a
2878         precondition when the ancestor had a class-wide postcondition.
2880 2018-05-23  Javier Miranda  <miranda@adacore.com>
2882         * sem_attr.adb (Valid_Scalars): Do not invoke Error_Attr_P to report
2883         the warning on occurrences of this attribute whose evaluation is always
2884         true (since that subprogram aborts processing the attribute). In
2885         addition, replace the node by its boolean result 'True' (required
2886         because the backend has no knowledge of this attribute).
2888 2018-05-23  Bob Duff  <duff@adacore.com>
2890         * libgnat/a-convec.adb: (Insert, Insert_Space): Suppress warnings. The
2891         code in question is not reachable in the case where Count_Type'Last is
2892         out of range.
2894 2018-05-23  Yannick Moy  <moy@adacore.com>
2896         * doc/gnat_rm/implementation_defined_pragmas.rst: Clarify meaning of
2897         local pragma Warnings Off without On.
2898         * gnat_rm.texi: Regenerate.
2900 2018-05-23  Olivier Hainque  <hainque@adacore.com>
2902         * libgnat/g-excact.ads (Is_Foreign_Exception): New predicate.
2903         * libgnat/g-excact.adb: Implement.
2905 2018-05-23  Ed Schonberg  <schonberg@adacore.com>
2907         * sem_ch5.adb (Analyze_Iterator_Specification): If a subtype indication
2908         is present, verify its legality when the domain of iteration is a
2909         GNAT-specific formal container, as is already done for arrays and
2910         predefined containers.
2912 2018-05-23  Yannick Moy  <moy@adacore.com>
2914         * sem_util.adb (Enclosing_Declaration): Fix the case of a named number
2915         declaration, which was not taken into account.
2917 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
2919         * debug.adb: Switch -gnatd_s is now used to stop elaboration checks on
2920         synchronized suspension.
2921         * rtsfind.ads: Add entries for units Ada.Synchronous_Barriers and
2922         Ada.Synchronous_Task_Control and routines Suspend_Until_True and
2923         Wait_For_Release.
2924         * sem_elab.adb: Document switch -gnatd_s.
2925         (In_Task_Body): New routine.
2926         (Is_Potential_Scenario): Code cleanup. Stop the traversal of a task
2927         body when the current construct denotes a synchronous suspension call,
2928         and restriction No_Entry_Calls_In_Elaboration_Code or switch -gnatd_s
2929         is in effect.
2930         (Is_Synchronous_Suspension_Call): New routine.
2931         * switch-c.adb (Scan_Front_End_Switches): Switch -gnatJ now sets switch
2932         -gnatd_s.
2934 2018-05-23  Javier Miranda  <miranda@adacore.com>
2936         * exp_disp.adb (Make_DT): Restrict the initialization of
2937         External_Tag and Expanded_Name to an empty string to the case where
2938         both pragmas apply (i.e. No_Tagged_Streams and Discard_Names), since
2939         restricted runtimes are compiled with pragma Discard_Names.
2940         * doc/gnat_rm/implementation_defined_pragmas.rst,
2941         doc/gnat_rm/implementation_defined_characteristics.rst: Add
2942         documentation.
2943         * gnat_rm.texi: Regenerate.
2945 2018-05-23  Maroua Maalej  <maalej@adacore.com>
2947         * sem_spark.adb: Fix of some permission rules of pointers in SPARK.
2949 2018-05-23  Ed Schonberg  <schonberg@adacore.com>
2951         * sem_ch5.adb (Preanalyze_Range): The pre-analysis of the domain of
2952         iteration of an Ada2012 loop is performed to determine the type of the
2953         domain, but full analysis is performed once the loop is rewritten as a
2954         while-loop during expansion. The pre-analysis suppresses expansion; it
2955         must also suppress the generation of freeze nodes, which may otherwise
2956         appear in the wrong scope before rewritting.
2958 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
2960         * sem_elab.adb: Update the section on suppressing elaboration warnings.
2962 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
2964         * einfo.adb (Is_Elaboration_Checks_OK_Id): Use predicate
2965         Is_Elaboration_Target.
2966         (Is_Elaboration_Target): New routine.
2967         (Is_Elaboration_Warnings_OK_Id): Use predicate Is_Elaboration_Target.
2968         (Set_Is_Elaboration_Checks_OK_Id): Use predicate Is_Elaboration_Target.
2969         (Set_Is_Elaboration_Warnings_OK_Id): Use predicate
2970         Is_Elaboration_Target.
2971         * einfo.ads: Add new synthesized attribute Is_Elaboration_Target along
2972         with occurrences in nodes.
2973         (Is_Elaboration_Target): New routine.
2974         * sem_prag.adb (Analyze_Pragma): Suppress elaboration warnings when an
2975         elaboration target is subject to pragma Warnings (Off, ...).
2977 2018-05-23  Eric Botcazou  <ebotcazou@adacore.com>
2979         * repinfo.adb (List_Type_Info): Remove obsolete stuff.
2981 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
2983         * einfo.adb: Flag304 is now Is_Elaboration_Warnings_OK_Id.
2984         (Is_Elaboration_Warnings_OK_Id): New routine.
2985         (Set_Is_Elaboration_Warnings_OK_Id): New routine.
2986         (Write_Entity_Flags): Output Flag304.
2987         * einfo.ads: Add new attribute Is_Elaboration_Warnings_OK_Id along with
2988         occurrences in entities.
2989         (Is_Elaboration_Warnings_OK_Id): New routine along with pragma Inline.
2990         (Set_Is_Elaboration_Warnings_OK_Id): New routine along with pragma
2991         Inline.
2992         * sem_attr.adb (Analyze_Access_Attribute): Capture the state of
2993         elaboration warnings.
2994         * sem_ch3.adb (Analyze_Object_Declaration): Capture the state of
2995         elaboration warnings.
2996         * sem_ch6.adb (Analyze_Abstract_Subprogram_Declaration): Capture the
2997         state of elaboration warnings.
2998         (Analyze_Subprogram_Body_Helper): Capture the state of elaboration
2999         warnings.
3000         (Analyze_Subprogram_Declaration): Capture the state of elaboration
3001         warnings.
3002         * sem_ch9.adb (Analyze_Entry_Declaration): Capture the state of
3003         elaboration warnings.
3004         (Analyze_Single_Task_Declaration): Capture the state of elaboration
3005         warnings.
3006         (Analyze_Task_Type_Declaration): Capture the state of elaboration
3007         warnings.
3008         * sem_ch12.adb (Analyze_Generic_Package_Declaration): Capture the state
3009         of elaboration warnings.
3010         (Analyze_Generic_Subprogram_Declaration): Capture the state of
3011         elaboration warnings.
3012         * sem_elab.adb: Add a section on suppressing elaboration warnings.
3013         Type Processing_Attributes includes component Suppress_Warnings
3014         intended to suppress any elaboration warnings along a path in the
3015         graph.  Update Initial_State to include a value for this component.
3016         Types Target_Attributes and Task_Attriutes include component
3017         Elab_Warnings_OK to indicate whether the target or task has elaboration
3018         warnings enabled.  component Elab_Warnings_OK.
3019         (Build_Access_Marker): Propagate attribute
3020         Is_Elaboration_Warnings_OK_Node from the attribute to the generated
3021         call marker.
3022         (Extract_Instantiation_Attributes): Set the value for Elab_Warnings_OK.
3023         (Extract_Target_Attributes): Set the value for Elab_Warnings_OK.
3024         (Extract_Task_Attributes): Set the value for Elab_Warnings_OK.
3025         (Process_Conditional_ABE_Access): Suppress futher elaboration warnings
3026         when already in this mode or when the attribute or target have warnings
3027         suppressed.
3028         (Process_Conditional_ABE_Activation_Impl): Do not emit any diagnostics
3029         if warnings are suppressed.
3030         (Process_Conditional_ABE_Call): Suppress further elaboration warnings
3031         when already in this mode, or the target or call have warnings
3032         suppressed.
3033         (Process_Conditional_ABE_Call_Ada): Do not emit any diagnostics if
3034         warnings are suppressed.
3035         (Process_Conditional_ABE_Call_SPARK): Do not emit any diagnostics if
3036         warnings are suppressed.
3037         (Process_Conditional_ABE_Instantiation): Suppress further elaboration
3038         warnings when already in this mode or when the instantiation has
3039         warnings suppressed.
3040         (Process_Conditional_ABE_Instantiation_Ada): Do not emit any
3041         diagnostics if warnings are suppressed.
3042         (Process_Conditional_ABE_Variable_Assignment_Ada): Use the more
3043         specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
3044         (Process_Conditional_ABE_Variable_Assignment_SPARK): Use the more
3045         specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
3046         (Process_Task_Object): Suppress further elaboration warnings when
3047         already in this mode, or when the object, activation call, or task type
3048         have warnings suppressed. Update the processing state to indicate that
3049         the path goes through a task body.
3050         * sinfo.adb (Is_Elaboration_Warnings_OK_Node): Accept attribute
3051         references.
3052         (Set_Is_Elaboration_Warnings_OK_Node): Accept attribute references.
3053         * sinfo.ads: Attribute Is_Elaboration_Warnings_OK_Node now applies to
3054         attribute references.
3056 2018-05-23  Piotr Trojanek  <trojanek@adacore.com>
3058         * einfo.ads: Minor reformatting.
3060 2018-05-23  Ed Schonberg  <schonberg@adacore.com>
3062         * sem_ch3.adb (Analyze_Object_Declaration): If expression is an
3063         anonymous_access_to_ subprogram formal, apply a conversion to force an
3064         accsssibility check that will fail statically, enforcing 3.10.2 (13).
3066 2018-05-23  Daniel Mercier  <mercier@adacore.com>
3068         * gnat1drv.adb: Turn off length expansion in CodePeer mode.
3070 2018-05-23  Bob Duff  <duff@adacore.com>
3072         * freeze.adb: (Check_Address_Clause): Deal with build-in-place
3073         aggregates in addition to build-in-place calls.
3075 2018-05-23  Bob Duff  <duff@adacore.com>
3077         * einfo.ads: Minor reformatting.
3078         * sem_ch3.adb: Likewise.
3079         * sinfo.ads: Likewise.
3081 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
3083         * exp_ch3.adb (Default_Initialize_Object): Do not optimize scalar array
3084         initialization when the component type has predicates.
3085         * exp_ch4.adb (Expand_N_Allocator): Do not optimize scalar array
3086         allocation when the component type has predicates.
3088 2018-05-23  Hristian Kirtchev  <kirtchev@adacore.com>
3090         * einfo.adb, exp_disp.adb, sem_ch3.adb, sem_ch6.adb, sem_prag.adb:
3091         Minor reformatting.
3093 2018-05-22  Justin Squirek  <squirek@adacore.com>
3095         * sem_ch6.adb (Analyze_Expression_Function): Propagate flags from the
3096         original function spec into the generated function spec due to
3097         expansion of expression functions during analysis.
3098         (Analyze_Subprogram_Body_Helper): Modify check on formal parameter
3099         references from the body to the subprogram spec in the case of
3100         expression functions because of inconsistances related to having a
3101         generated body.
3102         * libgnarl/s-osinte__android.ads: Flag parameters as unused.
3103         * libgnarl/s-osinte__lynxos178e.ads: Likewise.
3104         * libgnarl/s-osinte__qnx.adb: Likewise.
3105         * libgnarl/s-osinte__qnx.ads: Likewise.
3107 2018-05-22  Doug Rupp  <rupp@adacore.com>
3109         * init.c (HAVE_ADJUST_CONTEXT_FOR_RAISE): Don't define on VxWorks7 for
3110         AArch64.
3112 2018-05-22  Olivier Hainque  <hainque@adacore.com>
3114         * libgnat/a-except.adb (Exception_Propagation.Propagate_Exception):
3115         Expect an Exception_Occurence object, not an Access.
3116         (Complete_And_Propagate_Occurrence): Adjust accordingly.
3117         (Raise_From_Signal_Handler): Likewise.
3118         (Reraise_Occurrence_No_Defer): If we have a Machine_Occurrence
3119         available in the provided occurrence object, just re-propagate the
3120         latter as a bare "raise;" would do.
3121         * libgnat/a-exexpr.adb (Propagate_Exception): Adjust to spec change.
3122         * libgnat/a-exstat.adb (String_To_EO): Initialize X.Machine_Occurrence
3123         to null, to mark that the occurrence we're crafting from the stream
3124         contents is not being propagated (yet).
3126 2018-05-22  Hristian Kirtchev  <kirtchev@adacore.com>
3128         * exp_aggr.adb (Initialize_Ctrl_Record_Component): Insert the generated
3129         code for a transient component in line with the rest of the
3130         initialization code, rather than before the aggregate. This ensures
3131         that the component has proper visibility of the discriminants.
3133 2018-05-22  Jerome Lambourg  <lambourg@adacore.com>
3135         * adaint.c: Reorganize QNX-specific macros, use syspage to retreive the
3136         number of CPUs.
3138 2018-05-22  Jerome Lambourg  <lambourg@adacore.com>
3140         * sigtramp-qnx.c: Properly restore link register in signal trampoline.
3142 2018-05-22  Hristian Kirtchev  <kirtchev@adacore.com>
3144         * exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Strip away any
3145         conversions before extracting the value of the expression.
3146         * exp_ch3.adb (Default_Initialize_Object): Optimize the default
3147         initialization of an array of scalars.
3148         (Get_Simple_Init_Val): Add processing for array types. Remove the
3149         processing of strings because this case is already handled by the array
3150         case.
3151         (Needs_Simple_Initialization): Moved to Sem_Util.
3152         (Simple_Init_Array_Type): New routine.
3153         (Simple_Init_Initialize_Scalars_Type): Reimplemented to use the new
3154         facilities from Sem_Util.
3155         (Simple_Initialization_OK): New routine.
3156         * exp_ch3.ads (Needs_Simple_Initialization): Moved to Sem_Util.
3157         * exp_ch4.adb (Expand_N_Allocator): Optimize the default allocation of
3158         an array of scalars.
3159         * sem_prag.adb (Analyze_Float_Value): New routine.
3160         (Analyze_Integer_Value): New routine.
3161         (Analyze_Pragma): Reimplement the analysis of pragma Initialize_Scalars
3162         to handled the extended form of the pragma.
3163         (Analyze_Type_Value_Pair): New routine.
3164         * sem_util.adb: Add invalid value-related data structures.
3165         (Examine_Array_Bounds): New routine.
3166         (Has_Static_Array_Bounds): Reimplemented.
3167         (Has_Static_Non_Empty_Array_Bounds): New routine.
3168         (Invalid_Scalar_Value): New routine.
3169         (Needs_Simple_Initialization): Moved from Exp_Ch3.
3170         (Set_Invalid_Scalar_Value): New routines.
3171         * sem_util.ads (Has_Static_Non_Empty_Array_Bounds): New routine.
3172         (Invalid_Scalar_Value): New routine.
3173         (Needs_Simple_Initialization): Moved from Exp_Ch3.
3174         (Set_Invalid_Scalar_Value): New routines.
3175         * snames.ads-tmpl: Add names for the salar type families used by pragma
3176         Initialize_Scalars.
3178 2018-05-22  Javier Miranda  <miranda@adacore.com>
3180         * exp_disp.adb (Make_DT): Initialize the External_Tag with an empty
3181         string when pragma No_Tagged_Streams is applicable to the tagged type,
3182         and initialize the Expanded_Name with an empty string when pragma
3183         Discard_Names is applicable to the tagged type.
3185 2018-05-22  Ed Schonberg  <schonberg@adacore.com>
3187         * sem_ch6.adb (Check_Conformance): Add RM reference for rule that a
3188         formal subprogram is never subtype conformqnt, and thus cannot be the
3189         prefix of 'Access.  Reject as well the attribute when applied to a
3190         renaming of a formal subprogram.
3192 2018-05-22  Hristian Kirtchev  <kirtchev@adacore.com>
3194         * exp_ch3.adb (Build_Array_Init_Proc): Update the call to
3195         Needs_Simple_Initialization.
3196         (Build_Init_Statements): Update the call to Get_Simple_Init_Val.
3197         (Check_Subtype_Bounds): Renamed to Extract_Subtype_Bounds. Update the
3198         profile and comment on usage.
3199         (Default_Initialize_Object): Do not use New_Copy_Tree to set the proper
3200         Sloc of a value obtained from aspect Default_Value because this could
3201         potentially replicate large trees. The proper Sloc is now set in
3202         Get_Simple_Init_Val.
3203         (Get_Simple_Init_Val): Reorganized by breaking the various cases into
3204         separate routines. Eliminate the use of global variables.
3205         (Init_Component): Update the call to Get_Simple_Init_Val.
3206         (Needs_Simple_Initialization): Update the parameter profile and all
3207         uses of T.
3208         (Simple_Init_Defaulted_Type): Copy the value of aspect Default_Value
3209         and set the proper Sloc.
3210         * exp_ch3.ads (Get_Simple_Init_Val): Update the parameter profile and
3211         comment on usage.
3212         (Needs_Simple_Initialization): Update the parameter profile.
3214 2018-05-22  Patrick Bernardi  <bernardi@adacore.com>
3216         * sem_ch3.adb (Build_Discriminant_Constraints): Raise an error if the
3217         user tries to use a subtype indication as a discriminant constraint.
3219 2018-05-22  Ed Schonberg  <schonberg@adacore.com>
3221         * exp_ch4.ads, exp_ch4.adb, exp_util.adb, expander.adb: Remove mention
3222         of N_Reduction_Expression and N_Reduction_Expression_Parameter.
3223         * par-ch4.adb: Remove parsing routines for reduction expressions.
3224         * sem.adb, sinfo.ads, sinfo.adb, sem_ch4.ads, sem_ch4.adb, sem_res.adb,
3225         sem_spark.adb, sprint.adb: Remove analysis routines for reduction
3226         expressions.
3228 2018-05-22  Arnaud Charlet  <charlet@adacore.com>
3230         * sem_ch8.adb (Check_Frozen_Renaming): Do not emit error in
3231         Relaxed_RM_Semantics mode.
3233 2018-05-22  Arnaud Charlet  <charlet@adacore.com>
3235         * comperr.adb (Delete_SCIL_Files): Take into account
3236         N_Generic_Package_Renaming_Declaration.
3238 2018-05-22  Ed Schonberg  <schonberg@adacore.com>
3240         * sem_ch3.adb (Search_Derivation_Levels): Whenever a parent type is
3241         private, use the full view if available, because it may include renamed
3242         discriminants whose values are stored in the corresponding
3243         Stored_Constraint.
3245 2018-05-22  Ed Schonberg  <schonberg@adacore.com>
3247         * einfo.ads, einfo.adb: New attribute Hidden_In_Formal_Instance,
3248         defined on packages that are actuals for formal packages, in order to
3249         set/reset the visibility of the formals of a formal package with given
3250         actuals, when there are subsequent uses of those formals in the
3251         enclosing generic, as required by RN 12.7 (10).
3252         * atree.ads, atree.adb: Add operations for Elist30.
3253         * atree.h: Add Elist30.
3254         * sem_ch12.adb (Analyze_Formal_Package_Instantiation): Collect formals
3255         that are not defaulted and are thus not visible within the current
3256         instance.
3257         (Check_Formal_Packages): Reset visibility of formals of a formal
3258         package that are not defaulted, on exit from current instance.
3260 2018-05-22  Hristian Kirtchev  <kirtchev@adacore.com>
3262         * sem_prag.adb (Analyze_Input_Output): Emit an error when a non-null,
3263         non-'Result output appears in the output list of a function.
3265 2018-05-22  Hristian Kirtchev  <kirtchev@adacore.com>
3267         * exp_attr.adb (Build_Array_VS_Func): Reimplemented.
3268         (Build_Record_VS_Func): Reimplemented.
3269         (Expand_N_Attribute): Reimplement the handling of attribute
3270         'Valid_Scalars.
3271         * sem_attr.adb (Analyze_Attribute): Reimplement the handling of
3272         attribute 'Valid_Scalars.
3273         * sem_util.adb (Scalar_Part_Present): Reimplemented.
3274         (Validated_View): New routine.
3275         * sem_util.ads (Scalar_Part_Present): Update the parameter profile and
3276         comment on usage.
3277         (Validated_View): New routine.
3278         * doc/gnat_rm/implementation_defined_attributes.rst: Update the
3279         documentation of attribute 'Valid_Scalars.
3280         * gnat_rm.texi: Regenerate.
3282 2018-05-22  Bob Duff  <duff@adacore.com>
3284         * binde.adb: (Choose): Ignore a pragma Elaborate_Body that appears in
3285         the spec of a SAL_Interface package.
3287 2018-05-22  Ed Schonberg  <schonberg@adacore.com>
3289         * freeze.adb (Freeze_Entity): When analyzing delayed aspects of an
3290         entity E within a generic unit, indicate that there are no remaining
3291         delayed aspects after invoking Analyze_Aspects_At_Freeze_Point. The
3292         entity E is not frozen yet but the aspects should not be reanalyzed at
3293         the freeze point, which may be outside of the generic and may not have
3294         the proper visibility.
3296 2018-05-22  Bob Duff  <duff@adacore.com>
3298         * doc/gnat_ugn/gnat_utility_programs.rst: Add documentation for
3299         the new --split-line-before-record, --indent-named-statements and
3300         --no-align-modes gnatpp switches.
3302 2018-05-22  Ed Schonberg  <schonberg@adacore.com>
3304         * sem_prag.adb (Process_Compile_Time_Warning_Or_Error): Handle properly
3305         a second argument that is a constant of a given string value.
3307 2018-05-22  Doug Rupp  <rupp@adacore.com>
3309         * sigtramp-vxworks-target.inc: Align stack to 128bits on AArch64.
3311 2018-05-22  Jerome Lambourg  <lambourg@adacore.com>
3313         * sigtramp-qnx.c: Fix stack alignment issue in the signal trampoline.
3315 2018-05-22  Ed Schonberg  <schonberg@adacore.com>
3317         * freeze.adb (Freeze_Fixed_Point_Type): If the first subtype has
3318         delayed aspects, analyze them now, os that the representation of the
3319         type (size, bounds) can be computed and validated.
3321 2018-05-22  Olivier Hainque  <hainque@adacore.com>
3323         * libgnat/s-dwalin.adb (Enable_Cache): Skip symbols outside of the
3324         executable code section boundaries.
3326 2018-05-22  Javier Miranda  <miranda@adacore.com>
3328         * locales.c: New implementation for the Ada.Locales package.
3329         * libgnat/a-locale.ads: Remove comment indicating that this is not
3330         implemented.
3331         * doc/gnat_rm/standard_library_routines.rst: Remove comment indicating
3332         that this is not implemented.
3333         * gnat_rm.texi: Regenerate.
3335 2018-05-22  Hristian Kirtchev  <kirtchev@adacore.com>
3337         * exp_ch5.adb, freeze.adb, pprint.adb, sem_ch4.adb, sem_res.adb: Minor
3338         reformattings.
3340 2018-05-22  Justin Squirek  <squirek@adacore.com>
3342         * sem_ch12.adb (In_Same_Declarative_Part): Moved to sem_util.
3343         (Freeze_Subprogram_Body, Install_Body): Modify calls to
3344         In_Same_Declarative_Part.
3345         * sem_prag.adb (Analyze_Pragma-Pragma_Pure_Function): Add check to
3346         verify pragma declaration is within the same declarative list with
3347         corresponding error message.
3348         * sem_util.adb, sem_util.ads (In_Same_Declarative_Part): Moved from
3349         sem_ch12.adb and generalized to be useful outside the scope of
3350         freezing.
3352 2018-05-22  Hristian Kirtchev  <kirtchev@adacore.com>
3354         * sem_ch6.adb (Analyze_Subprogram_Declaration): Set the proper
3355         categorization of the unit after processing the aspects in case one of
3356         its aspects is converted into a categorization pragma.
3358 2018-05-21  Ed Schonberg  <schonberg@adacore.com>
3360         * freeze.adb (Warn_Overlay): Do not emit a wawrning on an object
3361         declaration with an explicit address clause and a type with default
3362         initialization, if the declaration carries an aspect
3363         Suppress_Initialization.
3365 2018-05-21  Daniel Mercier  <mercier@adacore.com>
3367         * pprint.adb: Use mixed case for attribute names.
3369 2018-05-21  Hristian Kirtchev  <kirtchev@adacore.com>
3371         * sem_ch6.adb (Analyze_Generic_Subprogram_Body): Rename the call to
3372         Analyze_Aspect_Specifications_On_Body_Or_Stub.
3373         (Analyze_Subprogram_Body_Helper): Rename the calls to
3374         Analyze_Aspect_Specifications_On_Body_Or_Stub.
3375         * sem_ch9.adb (Analyze_Entry_Body): Rename the call to
3376         Analyze_Aspect_Specifications_On_Body_Or_Stub.
3377         * sem_ch10.adb: Add with and use clause for Sem_Ch13.
3378         (Analyze_Package_Body_Stub): Add constant Id. Decorate the package stub
3379         prior to analyzing its aspects.
3380         (Analyze_Protected_Body_Stub): Add constant Id. Decorate the package
3381         stub prior to analyzing its aspects. Save and restore the configuration
3382         switches.
3383         (Analyze_Task_Body_Stub): Add constant Id. Decorate the package stub
3384         prior to analyzing its aspects.
3385         * sem_ch13.adb (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
3386         to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
3387         * sem_ch13.ads (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
3388         to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
3389         * sem_prag.adb: Code reformatting.
3390         (Analyze_Refined_Depends_Global_Post): Consider task body stubs.
3392 2018-05-21  Jerome Lambourg  <lambourg@adacore.com>
3394         * gcc-interface/Makefile.in: Add g-soliop__qnx.ads to the runtime build
3395         for QNX.
3397 2018-05-21  Hristian Kirtchev  <kirtchev@adacore.com>
3399         * exp_cg.adb: Remove with and use clause for Exp_Disp.
3400         * exp_ch9.adb: Remove with and use clause for Exp_Disp.
3401         * exp_disp.adb (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
3402         (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
3403         (Is_Predefined_Internal_Operation): Moved to Sem_Util.
3404         * exp_disp.ads (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
3405         (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
3406         (Is_Predefined_Internal_Operation): Moved to Sem_Util.
3407         * exp_dist.adb: Remove with and use clause for Exp_Disp.
3408         * freeze.adb: Remove with and use clause for Exp_Disp.
3409         * sem_cat.adb: Remove with and use clause for Exp_Disp.
3410         * sem_ch6.adb: Remove with and use clause for Exp_Disp.
3411         * sem_ch12.adb: Remove with and use clause for Exp_Disp.
3412         * sem_elab.adb (Check_Overriding_Primitive): Do not process predefined
3413         primitives.
3414         * sem_util.adb: Remove with and use clause for Exp_Disp.
3415         (Is_Predefined_Dispatching_Operation): Moved from Exp_Disp.
3416         (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
3417         (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
3418         * sem_util.ads (Is_Predefined_Dispatching_Operation): Moved from
3419         Exp_Disp.
3420         (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
3421         (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
3423 2018-05-21  Ed Schonberg  <schonberg@adacore.com>
3425         * sem_res.adb (Valid_Conversion): Improve error message on an illegal
3426         type conversion whose expression has a limited view of a type.
3428 2018-05-21  Ed Schonberg  <schonberg@adacore.com>
3430         * exp_ch5.adb (Build_Formal_Container_Iteration): If source has
3431         explicit name for iterator loop, preserve that name in expanded
3432         construct, for possible use in exit statements.
3434 2018-05-21  Javier Miranda  <miranda@adacore.com>
3436         * sem_ch4.adb (Analyze_Membership_Op): Avoid compiler crash when the
3437         spec of a unit has Ada 2012 membership tests with multiple choices and
3438         the unit body is not compiled under Ada 2012 mode.
3440 2018-05-21  Doug Rupp  <rupp@adacore.com>
3442         * sigtramp-vxworks-target.inc: Set cfa_reg properly from sigcontext
3443         pregs.
3444         (CFI_COMMON_REGS): Restore LR jic probed from prologue.
3445         (REGNO_PC_OFFSET): Change to correct value for Aarch64.
3447 2018-05-21  Jose Ruiz  <ruiz@adacore.com>
3449         * doc/gnat_ugn/gnat_utility_programs.rst, exp_attr.adb,
3450         libgnarl/s-tassta.adb: Minor typo fixes
3452 2018-05-21  Ed Schonberg  <schonberg@adacore.com>
3454         * sem_ch4.adb (Analyze_One_Call): Recognize complex cases where an
3455         indexed call originally in prefix forn is itself the prefix of a
3456         further call.
3458 2018-05-21  Piotr Trojanek  <trojanek@adacore.com>
3460         * sem_eval.adb (Is_Null_Range): Clarify access to the full view of a
3461         type.
3462         (Not_Null_Range): Same as above.
3464 2018-05-21  Hristian Kirtchev  <kirtchev@adacore.com>
3466         * exp_ch3.adb: Minor reformatting.
3467         * exp_ch6.adb: Likewise.
3468         * freeze.adb: Likewise.
3469         * inline.adb: Likewise.
3470         * sem_util.adb: Likewise.
3472 2018-05-21  Yannick Moy  <moy@adacore.com>
3474         * inline.adb (Expand_Inlined_Call.Process_Formals): Use a type
3475         conversion instead of an unchecked type conversion when inlining a
3476         return statement, unless type qualification is required (for character
3477         and string literal) or no check can result from the conversion (for
3478         access types).
3479         * opt.ads: Update comment.
3481 2018-05-21  Hristian Kirtchev  <kirtchev@adacore.com>
3483         * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Install the elaboration
3484         model of the compilation unit spec, if any.
3485         * sem_ch7.adb (Analyze_Package_Body_Helper): Install the elaboration
3486         model of the compilation unit spec, if any.
3487         * sem_ch10.adb (Analyze_Subunit): Install the elaboration model of the
3488         parent compilation unit spec, if any.
3489         * sem_elab.adb (Check_Elaboration_Scenarios): Restore the elaboration
3490         model of the main unit.
3491         (Is_Same_Unit): The routine now uses Unit_Entity.
3492         (Is_Subunit): Removed.
3493         (Normalize_Unit): Removed.
3494         (Unit_Entity): New routine.
3495         * sem_prag.adb (Analyze_Pragma): Reimplement the handling of pragma
3496         Elaboration_Checks. The analysis now ensures that the pragma appears at
3497         the configuration level, and on the initial declaration of a unit.
3498         Other placements are either flagged as illegal, or ignored.
3499         (Check_Duplicate_Elaboration_Checks_Pragma): New routine.
3500         (Ignore_Elaboration_Checks_Pragma): New routine.
3501         * sem_util.adb (Install_Elaboration_Model): New routine.
3502         * sem_util.ads (Install_Elaboration_Model): New routine.
3503         * doc/gnat_rm/implementation_defined_pragmas.rst: Update the
3504         documentation of pragma Elaboration_Checks.
3505         * gnat_rm.texi: Regenerate.
3507 2018-05-21  Olivier Hainque  <hainque@adacore.com>
3509         * libgnat/s-trasym__dwarf.adb (Executable_Name): Return argv[0] instead
3510         of empty string when argv[0] couldn't be found on PATH.
3511         (Enable_Cache): Raise Program_Error instead of attempting a null
3512         pointer dereference when the Exec_Module initialization failed.
3514 2018-05-21  Piotr Trojanek  <trojanek@adacore.com>
3516         * libgnarl/a-reatim.ads (Clock_Time): Remove External aspect.
3517         * libgnarl/a-taside.ads (Tasking_State): Likewise.
3518         * libgnat/a-calend.ads (Clock_Time): Likewise.
3520 2018-05-21  Yannick Moy  <moy@adacore.com>
3522         * sem_ch6.adb (Analyze_Procedure_Call): Refine test to recognize prefix
3523         call notation in inlined call in GNATprove mode.
3525 2018-05-21  Hristian Kirtchev  <kirtchev@adacore.com>
3527         * einfo.adb (Is_External_State): An abstract state is also external
3528         when it is declared with option "synchronous".
3529         * einfo.ads: Update the documentation of synthesized attribute
3530         Is_External_State.
3531         * sem_util.adb (Find_Simple_Properties): New routine.
3532         (Is_Enabled_External_Property): New routine.
3533         (State_Has_Enabled_Property): Reimplemented. The two flavors of option
3534         External have precedence over option Synchronous when determining
3535         whether a property is in effect.
3537 2018-05-21  Yannick Moy  <moy@adacore.com>
3539         * sem_eval.adb (Static_Length): Take into account case of variable of
3540         subtype string literal.
3542 2018-05-21  Olivier Hainque  <hainque@adacore.com>
3544         * libgnat/s-objrea.ads (Get_Memory_Bounds): Rename as Get_Xcode_Bounds.
3545         (Object_Section): Rename Flag_Alloc component as Flag_Xcode.
3546         * libgnat/s-objrea.adb (Get_Xcode_Bounds): Adjust to new subprogram and
3547         component name.
3548         (Get_Section, ELF case): Set Flag_Xcode from SHF_EXECINSTR.
3549         * libgnat/s-dwalin.adb (Open): Adjust to the Get_Memory_Bounds name
3550         change.
3552 2018-05-21  Olivier Hainque  <hainque@adacore.com>
3554         * libgnat/s-dwalin.ads (Dwarf_Context): Change type of Load_Address to
3555         Address, and type of Low, High to Storage_Offset.
3556         (Low): Rename as Low_Address and convey that the return value is a
3557         runtime reference accounting for a load address.
3558         * libgnat/s-dwalin.adb (Read_Aranges_Entry): Adjust to the
3559         address/offset type changes.
3560         (Aranges_Lookup): Likewise.
3561         (Symbolic_Address): Likewise.
3562         (Symbolic_Traceback): Likewise.
3563         (Dump_Cache): Likewise.
3564         (Is_Inside): Likewise.
3565         (Open): Likewise.
3566         (Set_Load_Address): Likewise.
3567         (Low_Address): Likewise, and account for C.Load_Address.
3568         * libgnat/s-trasym__dwarf.adb (Lt): Use Low_Address instead of Low.
3569         (Multi_Module_Symbolic_Traceback): Compare address in traceback
3570         with module Low_Address instead of Low.
3572 2018-05-21  Olivier Hainque  <hainque@adacore.com>
3574         * libgnat/s-dwalin.ads (Dwarf_Context): Rename Load_Slide as
3575         Load_Address.
3576         * libgnat/s-dwalin.adb (Is_Inside): Adjust accordingly.
3577         (Set_Load_Address): Likewise.
3578         (Symbolic_Traceback): Likewise.
3580 2018-05-21  Olivier Hainque  <hainque@adacore.com>
3582         * libgnat/s-trasym__dwarf.adb (Add_Module_To_Cache): Expect a
3583         Load_Address argument and pass it down to Init_Module.
3584         * libgnat/s-tsmona__linux.adb (Build_Cache_For_All_Modules): Pass
3585         lm.l_addr as the Load_Address to Add_Module_To_Cache.
3587 2018-05-21  Piotr Trojanek  <trojanek@adacore.com>
3589         * einfo.adb (Has_Discriminants): Stronger assertion.
3590         (Set_Has_Discriminants): Stronger assertion.
3591         * sem_ch13.adb (Push_Scope_And_Install_Discriminants): Adapt to respect
3592         the stronger assertion on Has_Discriminant.
3593         (Uninstall_Discriminants_And_Pop_Scope): Same as above.
3594         * sem_util.adb (New_Copy_Tree): Same as above.
3595         * sem_ch7.adb (Generate_Parent_References): Prevent calls to
3596         Has_Discriminant on non-type entities that might happen when the
3597         compiled code has errors.
3598         * sem_ch3.adb (Derived_Type_Declaration): Only call
3599         Set_Has_Discriminant on type entities.
3601 2018-05-21  Arnaud Charlet  <charlet@adacore.com>
3603         * exp_unst.adb (Unnest_Subprogram): Unnest all subprograms relevant for
3604         code generation.
3606 2018-05-21  Piotr Trojanek  <trojanek@adacore.com>
3608         * lib.ads: Fix typo in enumeration in comment.
3610 2018-05-21  Ed Schonberg  <schonberg@adacore.com>
3612         * sem_attr.adb (Analyze_Attribute, case Scalar_Storage_Order): The
3613         attribute reference is legal within a generic unit when the prefix is a
3614         formal private type.
3616 2018-05-21  Hristian Kirtchev  <kirtchev@adacore.com>
3618         * exp_ch7.adb (Establish_Transient_Scope): Code cleanup. Do not
3619         delegate the secondary stack management when there is no suitable
3620         transient context, and the transient scope was intended to manage the
3621         secondary stack because this causes premature reclamation. Change the
3622         transient scope creation logic by special casing assignment statements
3623         of controlled components for type initialization procedures.
3624         (Find_Node_To_Be_Wrapped): Renamed to Find_Transient_Context. Update
3625         the comment on usage.
3626         (Find_Transient_Context): Change the initinte loop into a while loop.
3627         Iterations schemes and iterator specifications are not valid transient
3628         contexts because they rely on special processing. Assignment statements
3629         are now treated as a normal transient context, special cases are
3630         handled by the caller. Add special processing for pragma Check.
3631         (Is_OK_Construct): Removed. Its functionality has been merged in
3632         routine Find_Transient_Context.
3633         * sem_ch5.adb (Check_Call): Reimplemented. Add code to properly
3634         retrieve the subprogram being invoked. Use a more accurate predicate
3635         (Requires_Transient_Scope) to determine that the function will emply
3636         the secondary stack.
3638 2018-05-21  Piotr Trojanek  <trojanek@adacore.com>
3640         * ada_get_targ.adb: Fix subprogram body headers.
3641         * adabkend.adb: Likewise.
3642         * checks.adb: Likewise.
3643         * exp_ch3.adb: Likewise.
3644         * exp_ch5.adb: Likewise.
3645         * exp_ch9.adb: Likewise.
3646         * exp_dist.adb: Likewise.
3647         * exp_tss.adb: Likewise.
3648         * inline.adb: Likewise.
3649         * lib-writ.adb: Likewise.
3650         * lib-xref-spark_specific.adb: Likewise.
3651         * libgnarl/s-osinte__darwin.adb: Likewise.
3652         * libgnarl/s-stusta.adb: Likewise.
3653         * libgnarl/s-taprop__solaris.adb: Likewise.
3654         * libgnarl/s-tposen.adb: Likewise.
3655         * libgnarl/s-vxwext__kernel-smp.adb: Likewise.
3656         * libgnarl/s-vxwext__kernel.adb: Likewise.
3657         * libgnat/a-btgbso.adb: Likewise.
3658         * libgnat/a-cfdlli.adb: Likewise.
3659         * libgnat/a-cfhama.adb: Likewise.
3660         * libgnat/a-cfinve.adb: Likewise.
3661         * libgnat/a-cimutr.adb: Likewise.
3662         * libgnat/a-coboho.adb: Likewise.
3663         * libgnat/a-cofove.adb: Likewise.
3664         * libgnat/a-cofuve.adb: Likewise.
3665         * libgnat/a-comutr.adb: Likewise.
3666         * libgnat/a-exexda.adb: Likewise.
3667         * libgnat/a-tags.adb: Likewise.
3668         * libgnat/a-tideau.adb: Likewise.
3669         * libgnat/a-wtdeau.adb: Likewise.
3670         * libgnat/a-ztdeau.adb: Likewise.
3671         * libgnat/g-alleve.adb: Likewise.
3672         * libgnat/s-excdeb.adb: Likewise.
3673         * libgnat/s-parint.adb: Likewise.
3674         * libgnat/s-shasto.adb: Likewise.
3675         * libgnat/s-traceb__hpux.adb: Likewise.
3676         * prepcomp.adb: Likewise.
3677         * sem_ch4.adb: Likewise.
3678         * sem_ch6.adb: Likewise.
3679         * sem_dist.adb: Likewise.
3680         * sem_prag.adb: Likewise.
3681         * sem_util.adb: Likewise.
3682         * sinfo.adb: Likewise.
3683         * switch.adb: Likewise.
3685 2018-05-04  John Marino  <gnugcc@marino.st>
3687         PR ada/85635
3688         * link.c (BSD platforms): Add missing backslash.
3690 2018-04-27  Eric Botcazou  <ebotcazou@adacore.com>
3692         PR ada/85540
3693         * init.c (__gnat_handle_vms_condition): Add missing parentheses.
3695 2018-04-25  Eric Botcazou  <ebotcazou@adacore.com>
3697         PR ada/85007
3698         * gnat_ugn.texi: Regenerate.
3700 2018-03-23  Eric Botcazou  <ebotcazou@adacore.com>
3702         PR ada/85007
3703         * gnatlink.adb (Gnatlink): Remove handling of -b switch.
3704         * doc/gnat_ugn/building_executable_programs_with_gnat.rst (gnatlink):
3705         Remove documentation of -b switch.
3707 2018-03-23  Eric Botcazou  <ebotcazou@adacore.com>
3709         PR ada/85036
3710         * gnatlink.adb (Process_Args): Drop existing link switches if multiple
3711         switches are passed for --LINK.
3713 2018-03-12  Eric Botcazou  <ebotcazou@adacore.com>
3715         PR ada/82813
3716         * gcc-interface/misc.c (gnat_post_options): Disable string overflow
3717         warnings.
3719 2018-03-10  Eric Botcazou  <ebotcazou@adacore.com>
3721         * gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
3722         Consider only entities for objects.
3724 2018-03-07  Sebastian Huber  <sebastian.huber@embedded-brains.de>
3726         * gcc-interface/Makefile.in (OSCONS_CPP): Remove redundant
3727         $(GNATLIBCFLAGS).
3728         (OSCONS_EXTRACT): Add $(GNATLIBCFLAGS_FOR_C).
3730 2018-03-06  Eric Botcazou  <ebotcazou@adacore.com>
3732         * gcc-interface/trans.c (convert_with_check): Fix typo in the condition
3733         guarding the overflow check emitted for the upper bound of a floating-
3734         point conversion.
3736 2018-03-06  Eric Botcazou  <ebotcazou@adacore.com>
3738         * gcc-interface/utils.c (def_builtin_1): Bail out on error_mark_node.
3740 2018-02-28  Eric Botcazou  <ebotcazou@adacore.com>
3742         * libgnat/i-cexten.ads (Float_128): New type.
3744 2018-02-02  Eric Botcazou  <ebotcazou@adacore.com>
3746         * gcc-interface/decl.c (array_type_has_nonaliased_component): Return
3747         false if the component type is a pointer.
3749 2018-01-11  Gary Dismukes  <dismukes@adacore.com>
3751         * exp_ch3.adb (Default_Initialize_Object): Call New_Copy_Tree on the
3752         result of Get_Simple_Init_Value and pass the source location of the
3753         object declaration's object_definition.
3755 2018-01-11  Ed Schonberg  <schonberg@adacore.com>
3757         * exp_ch6.adb (Make_Build_In_Place_Call_In_Object_Declaration): Handle
3758         properly object declarations with initializations that are
3759         build-in-place function calls, when there is an address specification,
3760         either as an aspect specification or an explicit attribute
3761         specification clause, for the initialized object.
3762         * freeze.adb (Check_Address_Clause): Do not remove side-effects from
3763         initial expressions in the case of a build-in-place call.
3765 2018-01-11  Piotr Trojanek  <trojanek@adacore.com>
3767         * sem_eval.adb (Is_Null_Range): Retrieve the full view when called on a
3768         private (sub)type; refactor to avoid early return statement.
3769         (Not_Null_Range): Same as above.
3771 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3773         * freeze.adb (Freeze_Entity): Ensure that a Ghost type is not
3774         concurrent, nor effectively volatile.
3775         * ghost.adb (Check_Ghost_Type): New routine.
3776         * ghost.ads (Check_Ghost_Type): New routine.
3777         * sem_util.adb (Is_Declaration): Reimplemented. The routine can now
3778         consider specific subsets of declarations.
3779         (Is_Declaration_Other_Than_Renaming): Removed. Its functionality is
3780         replicated by Is_Declaration.
3781         * sem_util.ads (Is_Declaration): New parameter profile. Update the
3782         comment on usage.
3783         (Is_Declaration_Other_Than_Renaming): Removed.
3785 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3787         * sem_ch5.adb (Analyze_Assignment): Assignments to variables that act
3788         as Part_Of consituents of single protected types are illegal when they
3789         take place inside a protected function.
3790         (Diagnose_Non_Variable_Lhs): Use Within_Function to check for an
3791         enclosing function.
3792         (Is_Protected_Part_Of_Constituent): New routine.
3793         (Within_Function): New routine.
3795 2018-01-11  Arnaud Charlet  <charlet@adacore.com>
3797         Bump copyright notices to 2018.
3799 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3801         * binde.adb, par-ch6.adb, par-ch9.adb, sem_ch12.adb, sem_ch13.adb:
3802         Minor reformatting.
3804 2018-01-11  Justin Squirek  <squirek@adacore.com>
3806         * par-ch6.adb (Scan_Body_Or_Expression_Function): Add additional check
3807         to make sure a given expression function is properly parenthesized.
3809 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3811         * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Check the
3812         categorization of a subprogram body which does not complete a previous
3813         declaration.
3815 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3817         * sem_ch10.adb (Check_Private_Child_Unit): Ensure that the enclosing
3818         scope of package Ada is Standard.
3820 2018-01-11  Ed Schonberg  <schonberg@adacore.com>
3822         * sem_ch13.adb (Replace_Type_Ref): Handle properly reference to a
3823         subcomponent of the current entity when building the body for a dynamic
3824         predicate function for a record with composite subcomponents.
3826 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3828         * exp_aggr.adb (Convert_Aggr_In_Object_Decl): Update the call to
3829         Establish_Transient_Scope.
3830         (Convert_To_Assignments): Update the call to Establish_Transient_Scope.
3831         (Expand_Array_Aggregate): Update the call to Establish_Transient_Scope.
3832         * exp_ch6.adb (Expand_Call_Helper): Update the call to
3833         Establish_Transient_Scope.
3834         (Make_Build_In_Place_Call_In_Object_Declaration): Update the call to
3835         Establish_Transient_Scope.
3836         * exp_ch7.adb (Establish_Transient_Scope): Restructured. Delegate the
3837         management of the secondary stack to an enclosing scope if there is no
3838         suitable construct to wrap, and the transient scope was intended to
3839         manage the secondary stack.
3840         (Find_Node_To_Be_Wrapped): Restructured. A case_statement_alternative
3841         is a valid boundary for a transient expression which comes from the
3842         statements of the alternative, otherwise alternatives cannot be
3843         wrapped. Assignments of controlled objects which have controlled
3844         actions suppressed now stop the traversal as there is no point in
3845         looking for an enclosing construct. Add several N_xxx_Body choices to
3846         the termination conditions for completeness.
3847         * exp_ch7.ads (Establish_Transient_Scope): Update the parameter profile
3848         and the associated comment on usage.
3849         * exp_smem.adb (Add_Shared_Var_Lock_Procs): Update the call to
3850         Establish_Transient_Scope.
3851         (Add_Write_After): Update the call to Establish_Transient_Scope.
3852         * sem_res.adb (Check_Initialization_Call): Removed.
3853         (Resolve_Actuals): Account for additional cases where finalization
3854         actions are required by utilizing predicate Needs_Finalization rather
3855         than Is_Controlled.
3856         (Resolve_Call): Type initialization procedures can now utilize
3857         transient scopes to manage the secondary stack, thus preventing leaks
3858         during initialization.  Remove the previous kludgy algorithm which
3859         attempts to manage the secondary stack at the object creation site.
3861 2018-01-11  Jerome Lambourg  <lambourg@adacore.com>
3863         * libgnat/g-soliop__qnx.ads: New.
3864         * adaint.c, adaint.h, cstreams.c, s-oscons-tmplt.c, sysdep.c: Update
3865         for QNX.
3867 2018-01-11  Bob Duff  <duff@adacore.com>
3869         * par-ch9.adb (P_Protected_Operation_Declaration_Opt): Give an error if
3870         a null procedure occurs in a protected definition.
3872 2018-01-11  Bob Duff  <duff@adacore.com>
3874         * binderr.ads, namet.ads: Minor reformatting.
3876 2018-01-11  Bob Duff  <duff@adacore.com>
3878         * doc/gnat_ugn/gnat_utility_programs.rst: Improve documentation of
3879         xml2gnat.
3881 2018-01-11  Bob Duff  <duff@adacore.com>
3883         * binde.adb (Force_Elab_Order): Give an error if there are duplicate
3884         unit names.
3886 2018-01-11  Ed Schonberg  <schonberg@adacore.com>
3888         * sem_ch6.adb (Freeze_Expr_Types): If an access value is the
3889         controlling argument of a dispatching call. freeze the corresponding
3890         designated type.
3892 2018-01-11  Ben Brosgol  <brosgol@adacore.com>
3894         * doc/Makefile: Add Sphinx option -W to treat warnings as errors.
3896 2018-01-11  Ben Brosgol  <brosgol@adacore.com>
3898         * doc/gnat_rm/implementation_defined_aspects.rst: Minor type/wording
3899         corrections.
3900         * gnat_rm.texi: Regenerate.
3902 2018-01-11  Ed Schonberg  <schonberg@adacore.com>
3904         * sem_ch12.adb (Check_Fixed_Point_Type): Do not apply check if the
3905         formsl type corresponding to the actual fixed point type is private,
3906         because in this case there can be no suspicious arithmetic operations
3907         in the generic unless they reference a formal subprogram.  Clarify
3908         warning.
3910 2018-01-11  Javier Miranda  <miranda@adacore.com>
3912         * exp_util.adb (Remove_Side_Effects): No action done for functions
3913         returning class-wide types since it requires generating code using
3914         'reference and the CCG target has no secondary stack.
3915         * gnat1drv.adb: Disable building static dispatch tables when generating
3916         C code.
3918 2018-01-11  Piotr Trojanek  <trojanek@adacore.com>
3920         * libgnat/a-direio.ads, libgnat/a-sequio.ads, libgnat/a-ststio.ads,
3921         libgnat/a-textio.ads, libgnat/a-witeio.ads, libgnat/a-ztexio.ads
3922         (File_Type): Add Default_Initial_Condition aspect.
3924 2018-01-11  Pascal Obry  <obry@adacore.com>
3926         * libgnat/s-os_lib.adb (Normalize_Pathname): New implementation.
3928 2018-01-11  Bob Duff  <duff@adacore.com>
3930         * doc/gnat_ugn/gnat_utility_programs.rst: Rewrite gnatpp documentation
3931         to match what the Libadalang-based version does.
3932         * doc/gnat_ugn/about_this_guide.rst: Update reference.
3934 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3936         * sem_res.adb (Uses_SS): A controlled type requires the secondary stack
3937         if it contains at least one component declaration employing a function
3938         call returning on the secondary stack.
3940 2018-01-11  Yannick Moy  <moy@adacore.com>
3942         * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
3943         Update description of restriction SPARK_05 with SPARK 2014.
3944         * gnat_rm.texi: Regenerate.
3946 2018-01-11  Vasiliy Fofanov  <fofanov@adacore.com>
3948         * doc/gnat_ugn/gnat_utility_programs.rst: Fix layout.
3950 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3952         * exp_aggr.adb, exp_ch9.adb, exp_util.adb, sem_aggr.adb, sem_ch3.adb,
3953         sem_res.adb, sem_util.adb: Minor reformatting.
3955 2018-01-11  Ed Schonberg  <schonberg@adacore.com>
3957         * sem_prag.adb (Analyze_Pragma, case Predicate): Indicate that the type
3958         has a delayed aspect which must be processed at the point the type is
3959         frozen. This mimics what is done when the predicate is provided by a
3960         source aspect.
3962 2018-01-11  Doug Rupp  <rupp@adacore.com>
3964         * init.c (vxworks): Add macro checks for __aarch64__.
3966 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3968         * exp_util.adb (Add_Failure_Expression): New routine.
3969         (Make_Predicate_Check): Reimplement the handling of Predicate_Failure.
3970         * sem_util.adb (Is_Current_Instance): Code cleanup.
3972 2018-01-11  Patrick Bernardi  <bernardi@adacore.com>
3974         * libgnat/s-parame*.adb, libgnat/s-parame*.ads: Remove unneeded
3975         Default_Sec_Stack_Size.
3976         * libgnat/s-secsta.adb (SS_Allocate): Handle the fixed secondary stack
3977         limit check so that the integer index does not overflow. Check the
3978         dynamic stack allocation does not cause the secondary stack pointer to
3979         overflow.
3980         (SS_Info): Align colons.
3981         (SS_Init): Cover the case when bootstraping with an old compiler that
3982         does not set Default_SS_Size.
3984 2018-01-11  Ed Schonberg  <schonberg@adacore.com>
3986         * sem_ch3.adb (Add_Internal_Interface_Entities): When checking the
3987         legality of an inherited operation that may require overriding, ignore
3988         primitive_wrappers that correspond to explicit operations that override
3989         an interface primitive.
3990         * exp_util.adb (Build_Class_Wide_Expression, Replace_Entity): If the
3991         operation to which the class-wide expression applies is a protected op.
3992         with a primitive_wrapper, verify that the updated inherited expression
3993         does not contain an internal call to a protected function.  This
3994         completes the implementation of AI12-0166.
3996 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
3998         * ali.adb: Document the remaining letters available for ALI lines.
3999         (Scan_ALI): A with clause is internal when it is encoded on a 'Z' line.
4000         * ali.ads: Update type With_Record. Field
4001         Implicit_With_From_Instantiation is no longer in use. Add field
4002         Implicit_With.
4003         * csinfo.adb (CSinfo): Remove the setup for attribute
4004         Implicit_With_From_Instantiation.
4005         * lib-writ.adb (Collect_Withs): Correct the logic which marks a unit as
4006         either implicitly or explicitly withed.
4007         (Is_Implicit_With_Clause): New routine.
4008         (Write_ALI): Rename array Implicit_With to Has_Implicit_With to avoid
4009         confusion with the with clause attribute by the same name.
4010         (Write_With_Lines): Update the emission of 'W', 'Y', and 'Z' headers.
4011         * rtsfind.adb (Maybe_Add_With): Code cleanup.
4012         * sem_ch8.adb (Present_System_Aux): Code cleanup.
4013         * sem_ch10.adb (Expand_With_Clause): Mark the with clause as generated
4014         for a parent unit.
4015         (Implicit_With_On_Parent): Mark the with clause as generated for a
4016         parent unit.
4017         * sem_ch12.adb (Inherit_Context): With clauses inherited by an
4018         instantiation are no longer marked as Implicit_With_From_Instantiation
4019         because they are already marked as implicit.
4020         * sem_elab.adb (Ensure_Prior_Elaboration_Static): Remove the kludge
4021         which marks implicit with clauses as related to an instantiation.
4022         * sinfo.adb (Implicit_With_From_Instantiation): Removed.
4023         (Parent_With): New routine.
4024         (Set_Implicit_With_From_Instantiation): Removed.
4025         (Set_Parent_With): New routine.
4026         * sinfo.ads: Update the documentation of attribute Implicit_With.
4027         Remove attribute Implicit_With_From_Instantiation along with
4028         occurrences in nodes.  Add attribute Parent_With along with occurrences
4029         in nodes.
4030         (Implicit_With_From_Instantiation): Removed along with pragma Inline.
4031         (Parent_With): New routine along with pragma Inline.
4032         (Set_Implicit_With_From_Instantiation): Removed along with pragma Inline.
4033         (Set_Parent_With): New routine along with pragma Inline.
4035 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
4037         * sem_util.adb (Find_Enclosing_Scope): Return the unique defining
4038         entity when the enclosing construct is a body.
4040 2018-01-11  Patrick Bernardi  <bernardi@adacore.com>
4042         * exp_ch9.adb (Expand_N_Task_Type_Declaration): Simplified
4043         Secondary_Stack_Size handling as a pragma is now generated for the
4044         corresponding aspect instead of an attribute.  Pragma expression is
4045         relocated instead of evaluated. Discriminant of the corresponding
4046         record type is referenced rather than the type discriminant.
4047         (Create_Secondary_Stack_For_Task, Make_Task_Create_Call): Update
4048         Secondary_Stack_Size rep item checks to only look for the pragma rep.
4049         * sem_ch13.adb (Analyze_One_Aspect): Transform
4050         Aspect_Secondary_Stack_Size into a pragma instead of an attribute
4051         because the attribute does not have visibility on a task type's
4052         discriminants when the type's definition is expanded.
4053         (Analyze_Attribute_Definition_Clause): Remove handling of
4054         Attribute_Secondary_Stack_Size.
4055         * snames.adb-tmpl, snames.ads-tmpl: Remove
4056         Attribute_Secondary_Stack_Size, no longer used.
4058 2018-01-11  Justin Squirek  <squirek@adacore.com>
4060         * sem_ch8.adb: Minor comment fix.
4062 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
4064         * exp_ch4.adb (Process_Action): Do not abandon the inspection of an
4065         individual action because the action may denote a complex expression,
4066         such as a case statement, which in turn may contain additional
4067         transient objects.
4069 2018-01-11  Ed Schonberg  <schonberg@adacore.com>
4071         * sem_aggr.adb (Resolve_Iterated_Component_Association): Perform
4072         analysis on a copy of the expression with a copy of the index variable,
4073         because full expansion will rewrite construct into a loop with the
4074         original loop variable.
4075         * exp_aggr.adb (Gen_Assign): Defer analysis and resolution if the
4076         expression is an iterated component association. Full analysis takes
4077         place when construct is rewritten as a loop.
4078         (In_Place_Assign_OK, Safe_Component): An iterated_component_association
4079         is not safe for in-place assignment.
4080         * sem_util.adb (Remove_Entity): Handle properly the case of an isolated
4081         entity with no homonym and no other entity in the scope.
4083 2018-01-11  Justin Squirek  <squirek@adacore.com>
4085         * sem_prag.adb (Analyze_Pragma:Pragma_Loop_Variant): Modify error
4086         message to be printed on the pragma argument identifier.
4088 2018-01-11  Hristian Kirtchev  <kirtchev@adacore.com>
4090         * exp_util.adb (Build_Invariant_Procedure_Declaration): Set the last
4091         entity of the generated invariant procedure in order to construct a
4092         proper entity chain.
4094 2018-01-11  Piotr Trojanek  <trojanek@adacore.com>
4096         * sem_ch13.adb (Build_Predicate_Functions): Fix minor issues in
4097         comment.
4099 2018-01-11  Arnaud Charlet  <charlet@adacore.com>
4101         * einfo.ads, einfo.adb (Activation_Record_Component,
4102         Set_Activation_Record_Component, Set_Is_Uplevel_Referenced_Entity):
4103         Allow E_Discriminant.
4105 2018-01-10  Eric Botcazou  <ebotcazou@adacore.com>
4107         * gcc-interface/decl.c (gnat_to_gnu_component_type): Apply the check
4108         for atomic access once the component size is taken into account and
4109         also do it if the component type is Atomic or Volatile_Full_Access.
4111 2018-01-04  Eric Botcazou  <ebotcazou@adacore.com>
4113         * gnatvsn.ads: Bump copyright year.
4115 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
4116             Alan Hayward  <alan.hayward@arm.com>
4117             David Sherwood  <david.sherwood@arm.com>
4119         * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_BITSIZE
4120         as polynomial.
4122 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
4123             Alan Hayward  <alan.hayward@arm.com>
4124             David Sherwood  <david.sherwood@arm.com>
4126         * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_PRECISION
4127         as polynomial.
4129 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
4130             Alan Hayward  <alan.hayward@arm.com>
4131             David Sherwood  <david.sherwood@arm.com>
4133         * gcc-interface/utils.c (gnat_types_compatible_p): Handle
4134         polynomial TYPE_VECTOR_SUBPARTS.
4136 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
4137             Alan Hayward  <alan.hayward@arm.com>
4138             David Sherwood  <david.sherwood@arm.com>
4140         * gcc-interface/misc.c (enumerate_modes): Handle polynomial
4141         GET_MODE_NUNITS.
4143 2018-01-03  Jakub Jelinek  <jakub@redhat.com>
4145         Update copyright years.
4147         * gnat_ugn.texi: Bump @copying's copyright year.
4148         * gnat_rm.texi: Likewise.
4150 Copyright (C) 2018 Free Software Foundation, Inc.
4152 Copying and distribution of this file, with or without modification,
4153 are permitted in any medium without royalty provided the copyright
4154 notice and this notice are preserved.