[Ada] Disable anonymous allocator warning for library-level objects
[gcc.git] / gcc / ada / ChangeLog
1 2019-08-13 Justin Squirek <squirek@adacore.com>
2
3 * exp_ch4.adb (Expand_N_Allocator): Add condition to detect
4 library-level object declarations
5
6 2019-08-13 Eric Botcazou <ebotcazou@adacore.com>
7
8 * doc/gnat_ugn/building_executable_programs_with_gnat.rst
9 (-gnateT): Document Double_Float_Alignment parameter and fix
10 description of Double_Scalar_Alignment parameter.
11 * gnat_ugn.texi: Regenerate.
12
13 2019-08-13 Eric Botcazou <ebotcazou@adacore.com>
14
15 * exp_ch6.adb (Expand_Call_Helper): If back-end inlining is
16 enabled, also instantiate the body of a generic unit containing
17 a subprogram subject to aspect/pragma Inline_Always at
18 optimization level zero.
19 * sem_ch12.adb (Might_Inline_Subp): Minor tweak.
20 (Analyze_Package_Instantiation): Do not instantiate the package
21 body because of inlining considerations if the instantiation is
22 done in a generic unit. Move around similar condition involving
23 the main unit. Add test on Back_End_Inlining to processing for
24 front-end inlining.
25
26 2019-08-13 Javier Miranda <miranda@adacore.com>
27
28 * exp_disp.adb (Make_Secondary_DT): Handle record type
29 derivations that have interface components located at fixed
30 positions and interface components located at variable offset.
31 The offset of components located at fixed positions is computed
32 using the dummy object (similar to the case where all the
33 interface components are located at fixed positions).
34 (Make_DT): Build the dummy object for all tagged types that
35 implement interface types (that is, build it also for types with
36 variable size components), and use the dummy object to compute
37 the offset of all tag components located at fixed positions when
38 initializing the Interface_Table object.
39
40 2019-08-13 Justin Squirek <squirek@adacore.com>
41
42 * gnatcmd.adb (GNATCmd): Add constant for new compiler switch
43 --help-ada, and include usage subprogram. Add line to usage help
44 explaining the new flag.
45 (GNATCmd_Usage): Rename from locally declared Usage so as not to
46 confuse with the newly imported version. Add new argument case
47 for --help-ada and add bug report email to implicit display of
48 help without the --help flag so as to unify output between the
49 two cases.
50
51 2019-08-13 Dmitriy Anisimkov <anisimko@adacore.com>
52
53 * libgnat/g-comlin.adb (Getopt): Quote unrecognized switch in
54 Invalid_Switch exception message.
55
56 2019-08-13 Yannick Moy <moy@adacore.com>
57
58 * sem_util.adb (Traverse_More_Func): Take into account
59 Loop_Actions inside N_Iterated_Component_Association nodes.
60 * sinfo.ads: Document correctly Loop_Actions as a field of nodes
61 of kind N_Iterated_Component_Association.
62
63 2019-08-13 Claire Dross <dross@adacore.com>
64
65 * libgnat/a-cfinve.adb, libgnat/a-cofove.adb (Find_Index,
66 Reverse_Find_Index): Use bigger type to avoid range check
67 failure at the last loop iteration.
68
69 2019-08-12 Dmitriy Anisimkov <anisimko@adacore.com>
70
71 * libgnat/g-socket.adb (Is_IPv6_Address): Check that no less
72 then 2 colons in IPv6 numeric address.
73
74 2019-08-12 Dmitriy Anisimkov <anisimko@adacore.com>
75
76 * libgnat/g-comlin.ads, libgnat/g-comlin.adb (Getopt): Add
77 parameter Quiet. Need to do not output error messages to
78 console. Invalid_Switch exception generation surrounded by an
79 error message.
80
81 2019-08-12 Ed Schonberg <schonberg@adacore.com>
82
83 * exp_ch6.adb (Expand_Actuals. Add_Call_By_Copy_Code): Add code
84 to generate proper checks when an actual for an in-out or out
85 parameter has a non-null access type. No constraints are
86 applied to an inbound access parameter, but on exit a not-null
87 check must be performed if the type of the actual requires it.
88
89 2019-08-12 Ed Schonberg <schonberg@adacore.com>
90
91 * sem_util.adb (Is_Expaned_Priority_Attribute): Check whether
92 call comes from a rewritten attribute before comparing name with
93 Get_Ceiling run-time subprogram.
94
95 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
96
97 * exp_util.ads (Component_May_Be_Bit_Aligned): Small comment
98 tweaks.
99 (Possible_Bit_Aligned_Component): Likewise.
100 (Type_May_Have_Bit_Aligned_Components): Likewise.
101 * exp_util.adb (Component_May_Be_Bit_Aligned): Likewise.
102 (Possible_Bit_Aligned_Component): Likewise.
103 (Type_May_Have_Bit_Aligned_Components): Likewise.
104
105 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
106
107 * exp_ch4.adb (Expand_N_Op_Eq): Expand the array equality if
108 either operand is a possibly unaligned slice.
109 * exp_ch6.adb (Expand_Simple_Function_Return): Do not generate a
110 copy for a possibly unaligned object if it is represented as a
111 scalar.
112 * exp_util.adb (Is_Possibly_Unaligned_Slice): Do not always
113 return false if the target doesn't have strict alignment.
114
115 2019-08-12 Bob Duff <duff@adacore.com>
116
117 * sem_ch12.adb (Instantiate_Package_Body): Remove suppression of
118 checks in instances of internal units.
119 * sem_ch6.adb (Analyze_Function_Return): Do not generate a
120 constraint check on an extended_return_statement if the subtype
121 of the return object in the statement is identical to the return
122 subtype of the function.
123
124 2019-08-12 Bob Duff <duff@adacore.com>
125
126 * libgnat/a-cbmutr.adb (Is_Reachable): Declare Idx to be of the
127 base subtype. Clearly it makes no sense to loop "while Idx >=
128 0", if Idx is of a nonnegative subtype.
129
130 2019-08-12 Bob Duff <duff@adacore.com>
131
132 * libgnat/a-tifiio.adb (Put_Scaled): Prevent AA from being
133 negative, since Field is range 0 .. something.
134
135 2019-08-12 Bob Duff <duff@adacore.com>
136
137 * doc/gnat_ugn/gnat_utility_programs.rst (gnatmetric, gnatpp,
138 gnatstub): Remove documentation for Ada language version
139 switches, and note that they are no longer needed.
140
141 2019-08-12 Gary Dismukes <dismukes@adacore.com>
142
143 * sem_ch5.adb (Prepare_Param_Spec_Loop): Set the parents of the
144 copied low and high bounds in the case where the loop range is
145 given by a discrete_subtype_indication, to prevent hanging (or
146 Assert_Failure) in Insert_Actions.
147
148 2019-08-12 Ed Schonberg <schonberg@adacore.com>
149
150 * sem_ch6.adb (heck_Untagged_Equality): Verify that user-defined
151 equality has the same profile as the predefined equality before
152 applying legality rule in RM 4.5.2 (9.8).
153
154 2019-08-12 Bob Duff <duff@adacore.com>
155
156 * libgnat/a-except.ads: Update obsolete comment, still making
157 clear that this is a variant. Add explicit default for Id
158 component of Exception_Occurrence, because that value is used.
159 Define Null_Occurrence less redundantly.
160 * libgnat/a-einuoc.adb: Minor simplification of code.
161
162 2019-08-12 Justin Squirek <squirek@adacore.com>
163
164 * libgnat/a-dhfina.adb, libgnat/a-dhfina.ads (Is_Simple_Name,
165 Is_Root_Directory, Is_Parent_Directory,
166 Is_Current_Directory_Name, Is_Relative_Name, Initial_Directory,
167 Relative_Name, Compose): Add implementation and documentation.
168 * libgnat/a-direct.adb (Containing_Directory): Modify routine to
169 use routines from Ada.Directories.Hierarchical_File_Names and
170 remove incorrect special case for parent directories.
171 (Fetch_Next_Entry): Add check for current directory and parent
172 directory and ignore them under certain circumstances.
173 (Simple_Nmae): Add check for null result from
174 Simple_Name_Internal and raise Name_Error.
175 (Simple_Name_Internal): Add explicit check for root directories,
176 sanitize trailing directory separators, and modify behavior so
177 that current and parent directories are considered valid
178 results.
179 * Makefile.rtl: Add entry to GNATRTL_NONTASKING_OBJS.
180
181 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
182
183 * freeze.adb (Freeze_Entity): Give the same error for an
184 Object_Size clause on a variable-sized type as for a Size
185 clause.
186
187 2019-08-12 Gary Dismukes <dismukes@adacore.com>
188
189 * sem_prag.adb (Analyze_Pragma, Pragma_Suppress_Initialization):
190 For private types, set the Suppress_Initialization flag on the
191 Full_View of the entity rather than the entity's base type.
192
193 2019-08-12 Yannick Moy <moy@adacore.com>
194
195 * aspects.adb, aspects.ads (Aspect_No_Caching): New aspect.
196 * contracts.adb, contracts.ads (Add_Contract_Item): Add handling
197 of No_Caching.
198 (Analyze_Object_Contract): Add handling of No_Caching.
199 * einfo.adb, einfo.ads
200 (Get_Pragma): Add handling of No_Caching.
201 * doc/gnat_rm/implementation_defined_aspects.rst,
202 doc/gnat_rm/implementation_defined_pragmas.rst: Document new
203 aspect/pragma.
204 * gnat_rm.texi: Regenerate.
205 * par-prag.adb (Prag): New pragma Pragma_No_Caching.
206 * sem_ch13.adb (Analyze_Aspect_Specifications,
207 Check_Aspect_At_Freeze_Point): Add handling of No_Caching.
208 * sem_prag.adb (Analyze_Pragma): Deal with pragma No_Caching.
209 * sem_prag.ads (Analyze_External_Property_In_Decl_Part): Now
210 applies to No_Caching.
211 * sem_util.adb, sem_util.ads (Is_Effectively_Volatile): Add
212 handling of No_Caching.
213 (No_Caching_Enabled): New query function.
214 * snames.ads-tmpl: New names for pragma.
215
216 2019-08-12 Yannick Moy <moy@adacore.com>
217
218 * sem_util.adb, sem_util.ads (Traverse_More_Func,
219 Traverse_More_Proc): Add formal parameter for Itypes traversal.
220
221 2019-08-12 Yannick Moy <moy@adacore.com>
222
223 * exp_attr.adb, exp_attr.ads (Expand_Size_Attribute): New
224 procedure to share part of the attribute expansion with
225 GNATprove mode.
226 (Expand_N_Attribute_Reference): Extract part of the
227 Size/Object_Size expansion in the new procedure
228 Expand_Size_Attribute.
229 * exp_spark.adb (Expand_SPARK_N_Attribute_Reference): Expand
230 Size/Object_Size attributes using the new procedure
231 Expand_Size_Attribute.
232
233 2019-08-12 Yannick Moy <moy@adacore.com>
234
235 * exp_spark.adb (Expand_SPARK_N_Attribute_Reference): Only
236 expand Enum_Rep attribute when its parameter is a literal.
237
238 2019-08-12 Justin Squirek <squirek@adacore.com>
239
240 * sem_eval.adb (Check_Non_Static_Context): Add a condition to
241 determine if a range violation constitues a warning or an error.
242 (Out_Of_Range): Add a condition to determine if a range
243 violation constitues a warning or an error.
244
245 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
246
247 * exp_ch4.adb (Real_Range_Check): Do not rewrite the conversion
248 node but its expression instead, after having fetched its
249 current value. Clear the Do_Range_Check flag on entry. Return
250 early for a rewritten float-to-float conversion. Remove
251 redundant local variable. Suppress all checks when inserting
252 the temporary and do not reanalyze the node.
253
254 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
255
256 * sprint.ads: Minor comment tweak.
257
258 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
259
260 * checks.adb (Insert_Valid_Check): Do not retrieve the
261 Do_Range_Check flag from the Original_Node but from the
262 Validated_Object. Remove useless bypass for floating-point
263 types.
264
265 2019-08-12 Yannick Moy <moy@adacore.com>
266
267 * sem_util.adb, sem_util.ads (Traverse_More_Func,
268 Traverse_More_Proc): New traversal subprograms.
269
270 2019-08-12 Jerome Lambourg <lambourg@adacore.com>
271
272 * libgnarl/s-taprop__vxworks.adb (Abort_Handler): Only call
273 s-tpopsp.Self when actually needed.
274
275 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
276
277 * exp_ch4.adb (Discrete_Range_Check): Return if checks are
278 suppressed.
279
280 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
281
282 * sem_res.adb: Add with & use clause for Sem_Mech and
283 alphabetize.
284 (Resolve_Actuals): Do not apply a scalar range check for the
285 source of a conversion whose result is passed by reference to a
286 valued procedure.
287
288 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
289
290 * checks.adb (Insert_Valid_Check): Reset the Do_Range_Check flag
291 on the validated object.
292 * exp_ch6.adb (Add_Call_By_Copy_Code): Reset the Do_Range_Check
293 flag on the actual here, as well as on the Expression if the
294 actual is a N_Type_Conversion node.
295 (Add_Validation_Call_By_Copy_Code): Generate the incoming range
296 check if needed and reset the Do_Range_Check flag on the
297 Expression if the actual is a N_Type_Conversion node.
298 (Expand_Actuals): Do not reset the Do_Range_Check flag here.
299 Generate the incoming range check for In parameters here instead
300 of...
301 (Expand_Call_Helper): ...here. Remove redudant condition.
302 * sem_res.adb (Resolve_Actuals): Use local variable A_Typ and
303 remove obsolete comments.
304 (Resolve_Type_Conversion): Do not force the Do_Range_Check flag
305 on the operand if range checks are suppressed.
306
307 2019-08-12 Eric Botcazou <ebotcazou@adacore.com>
308
309 * checks.adb (Activate_Range_Check): Remove redundant argument.
310 (Generate_Range_Check): Likewise.
311 (Apply_Float_Conversion_Check): Reset the Do_Range_Check flag on
312 entry and remove redundant condition.
313
314 2019-08-02 Alexandre Oliva <oliva@adacore.com>
315
316 * libgnat/a-exexpr.adb (Begin_Handler_v1, End_Handler_v1): New.
317 (Claimed_Cleanup): New.
318 (Begin_Handler, End_Handler): Document.
319 * gcc-interface/trans.c (gigi): Switch to exception handler
320 ABI #1.
321 (Exception_Handler_to_gnu_gcc): Save the original cleanup
322 returned by begin handler, pass it to end handler, and use
323 EH_ELSE_EXPR to pass a propagating exception to end handler.
324 (gnat_to_gnu): Leave the exception pointer alone for reraise.
325 (add_cleanup): Handle EH_ELSE_EXPR, require it by itself.
326
327 2019-07-23 Ed Schonberg <schonberg@adacore.com>
328
329 * sem_ch13.adb (Check_Aspect_At_End_Of_Declarations,
330 Freeze_Entity_Checks): Include Aspect_CPU with other aspects
331 whose expresssion may depend on a discriminant, and thus require
332 that components of the type be made visible.
333
334 2019-07-23 Eric Botcazou <ebotcazou@adacore.com>
335
336 * checks.adb (Convert_And_Check_Range): Add Suppress parameter
337 and pass it in the call to Insert_Actions. Rename local
338 variable.
339 (Generate_Range_Check): Minor comment fixes. Pass Range_Check
340 in the first call to Convert_And_Check_Range and All_Checks in
341 the second call.
342 * exp_ch4.adb (Expand_N_Type_Conversion): Reset the
343 Do_Overflow_Check flag in the float-to-float case too if there
344 is also a range check.
345
346 2019-07-23 Eric Botcazou <ebotcazou@adacore.com>
347
348 * checks.adb (Activate_Overflow_Check): Remove redundant
349 argument.
350 * exp_ch4.adb (Discrete_Range_Check): Reset the overflow flag.
351 (Expand_N_Type_Conversion): Do not reset it here.
352
353 2019-07-23 Eric Botcazou <ebotcazou@adacore.com>
354
355 * repinfo.adb (List_Component_Layout): Pass Decimal to UI_Write.
356 (Write_Val): Likewise.
357
358 2019-07-23 Ed Schonberg <schonberg@adacore.com>
359
360 * aspects.ads: New table Operational_Aspect, used to distinguish
361 between aspects that are view-specific, such as those related to
362 iterators, and representation aspects that apply to all views of
363 a type.
364 * aspects.adb (Find_Aspect): If the aspect being sought is
365 operational, do not ecamine the full view of a private type to
366 retrieve it.
367 * sem_ch5.adb (Analyze_Iterator_Specification): Improve error
368 message when the intended domain of iteration does not implement
369 the required iterator aspects.
370
371 2019-07-23 Yannick Moy <moy@adacore.com>
372
373 * sem_spark.ads (Is_Local_Context): New function.
374 * sem_spark.adb (Check_Declaration): Issue errors on violations
375 of SPARK RM 3.10(4)
376 (Process_Path): Do not issue error on borrow/observe during
377 elaboration, as these are caught by the new rule.
378
379 2019-07-23 Yannick Moy <moy@adacore.com>
380
381 * exp_ch7.adb (Create_Finalizer): Force finalizer not to be
382 Ghost enabled.
383 * exp_dbug.adb (Get_External_Name): Explain special case of
384 Ghost finalizer.
385
386 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
387
388 * repinfo.adb (List_Entities): Also list compiled-generated
389 types present as Etype of objects.
390
391 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
392
393 * sinfo.ads: Update the documentation about the
394 Do_Division_Check, Do_Overflow_Check and Do_Range_Check flags.
395
396 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
397
398 * exp_ch4.adb (Expand_N_Type_Conversion): Beef up comment.
399 (Fixup_Universal_Fixed_Operation): Set the base type instead of
400 the type of the enclosing type conversion on the operation.
401
402 2019-07-22 Ed Schonberg <schonberg@adacore.com>
403
404 * exp_ch4.adb (Expand_N_In): Do not suggest the use of attribute
405 'Valid as a replacement for a range check on a discrete type
406 when the bounds of the range are given by type conversions,
407 because in such a case there are distinct types involved and the
408 subbested attribute replacement would be misplaced.
409
410 2019-07-22 Yannick Moy <moy@adacore.com>
411
412 * sem_spark.adb (Get_Root_Object, Is_Path_Expression,
413 Is_Subpath_Expression): Add parameter Is_Traversal to adapt
414 these functions to the case of paths returned from a traversal
415 function.
416 (Read_Indexes): Handle the case of an if-expression or
417 case-expression.
418 (Check_Statement): Check Emit_Messages only when issuing an
419 error message. This is important as Emit_Messages may store the
420 information that an error was detected.
421
422 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
423
424 * checks.adb (Apply_Type_Conversion_Checks): Do not set
425 Do_Range_Check flag on conversions from fixed-point types
426 either.
427 * exp_attr.adb: Add use and with clause for Expander.
428 (Expand_N_Attribute_Reference) <Fixed_Value, Integer_Value>: Set
429 the Conversion_OK flag and do not generate overflow/range checks
430 manually.
431 * exp_ch4.adb (Expand_N_Qualified_Expression): Remove
432 superfluous clearing of Do_Range_Check flag.
433 (Discrete_Range_Check): New procedure to generate a range check
434 for discrete types.
435 (Real_Range_Check): Remove redundant local variable and adjust.
436 Remove useless shortcut. Clear Do_Range_Check flag on all
437 paths.
438 (Expand_N_Type_Conversion): Remove redundant test on
439 Conversion_OK. Call Discrete_Range_Check to generate range
440 checks on discrete types. Remove obsolete code for
441 float-to-integer conversions. Add code to generate range checks
442 for conversions involving fixed-point types.
443
444 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
445
446 * sprint.ads: Fix pasto in comment.
447
448 2019-07-22 Javier Miranda <miranda@adacore.com>
449
450 * sem_res.adb (Resolve_Actuals): Replace code that displaces the
451 pointer to an allocated object to reference its secondary
452 dispatch table by a type conversion (which takes care of
453 handling all cases).
454
455 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
456
457 * sprint.adb (Sprint_Node_Actual)
458 <N_Decimal_Fixed_Point_Definition>: Swap a couple of spaces.
459 (Write_Itype): Minor consistency fixes throughout. Add support
460 for printing ordinary and decimal fixed-point types and
461 subtypes.
462
463 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
464
465 * exp_attr.adb (Expand_Loop_Entry_Attribute): Beef up comment.
466
467 2019-07-22 Ed Schonberg <schonberg@adacore.com>
468
469 * libgnat/s-valboo.ads, libgnat/s-valcha.ads,
470 libgnat/s-valdec.ads, libgnat/s-valenu.ads,
471 libgnat/s-valint.ads, libgnat/s-vallld.ads,
472 libgnat/s-vallli.ads, libgnat/s-valllu.ads,
473 libgnat/s-valrea.ads, libgnat/s-valuns.ads,
474 libgnat/s-valwch.ads: Change categorization of packages that
475 implement attribute 'Value from Pure to Preelaborate, to prevent
476 undesirable optimizations when the evaluation of the attribute
477 raises Constraint_Error, but subsequent use of the result of
478 this evsaluation is removed by a subsequent optimization.
479
480 2019-07-22 Ed Schonberg <schonberg@adacore.com>
481
482 * sem_warn.adb (Check_References): Do not emit s warning on a
483 referenced entity with no explicit assignment if the type of the
484 entity has Preelaborable_Initialixation, such as
485 Exception_Occurrence.
486
487 2019-07-22 Javier Miranda <miranda@adacore.com>
488
489 * exp_ch4.adb (Size_In_Storage_Elements): Improve the expansion
490 to handle array indexes that are modular type.
491 (Expand_N_Allocator): For 32-bit targets improve the generation
492 of the runtime check associated with large arrays supporting
493 arrays initialized with a qualified expression.
494 * libgnat/s-imenne.adb (Image_Enumeration_8,
495 Image_Enumeration_16, Image_Enumeration_32): Define the index of
496 Index_Table with range Natural'First .. Names'Length since in
497 the worst case all the literals of the enumeration type would be
498 single letter literals and the Table built by the frontend would
499 have as many components as the length of the names string. As a
500 result of this enhancement, the internal tables declared using
501 Index_Table have a length closer to the real needs, thus
502 avoiding the declaration of large arrays on 32-bit CCG targets.
503
504 2019-07-22 Yannick Moy <moy@adacore.com>
505
506 * sem_ch3.adb (Constrain_Access): Issue a message about ignored
507 constraint.
508
509 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
510
511 * sem_ch8.adb (End_Use_Type): Reset the In_Use flag on the
512 class-wide type if the type is tagged.
513 (Use_One_Type): Add commentary on the handling of the class-wide
514 type.
515
516 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
517
518 * einfo.ads (Is_For_Access_Subtype): Delete.
519 (Set_Is_For_Access_Subtype): Likewise.
520 * einfo.adb (Is_For_Access_Subtype): Likewise.
521 (Set_Is_For_Access_Subtype): Likewise.
522 (Write_Entity_Flags): Do not write Is_For_Access_Subtype.
523 * exp_ch4.adb (Expand_N_Selected_Component): Do not deal with
524 it.
525 * exp_spark.adb (Expand_SPARK_N_Selected_Component): Likewise.
526 * sem_ch4.adb (Analyze_Explicit_Dereference): Likewise.
527 * sem_ch3.adb (Build_Discriminated_Subtype): Do not build a
528 special private subtype for access-to-record subtypes.
529
530 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
531
532 * sem_ch3.adb (Complete_Private_Subtype): Rework the setting of
533 the Etype of the full view for full base types that cannot
534 contain any discriminant. Remove code and comment about it in
535 the main path.
536
537 2019-07-22 Ed Schonberg <schonberg@adacore.com>
538
539 * sem_ch3.adb (Convert_Bound): Subsidiary of
540 Floating_Point_Type_Declaration, to handle properly range
541 specifications with bounds that may include static constants of
542 a given type rather than real literals.
543
544 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
545
546 * sem_aggr.adb (Rewrite_Bound): Be prepared for discriminals
547 too.
548 (Rewrite_Range;): Minor tweak.
549 (Resolve_Record_Aggregate): For a component with default
550 initialization whose expression is an array aggregate, also
551 rewrite the bounds of the component associations, if any.
552
553 2019-07-22 Gary Dismukes <dismukes@adacore.com>
554
555 * exp_ch5.adb (Expand_N_Case_Statement): In the case where a
556 case statement is rewritten as an equivalent if statement,
557 inherit the From_Condition_Expression flag from the case
558 statement.
559
560 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
561
562 * sem_ch8.adb (Check_Constrained_Object): Further extend the
563 special optimization to all limited types.
564
565 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
566
567 * exp_attr.adb (Expand_N_Attribute_Reference)
568 <Attribute_Enum_Val>: Set No_Truncation on the
569 N_Unchecked_Type_Conversion built around the argument passed to
570 the attribute.
571
572 2019-07-22 Nicolas Roche <roche@adacore.com>
573
574 * libgnat/s-valrea.adb (Scan_Real): Ignore non significative
575 digits to avoid converging to infinity in some cases.
576
577 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
578
579 * libgnat/g-encstr.adb (Encode_Wide_String): Fix oversight.
580 (Encode_Wide_Wide_String): Likewise.
581
582 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
583
584 * sem_warn.adb (Find_Var): Bail out for a function call with an
585 Out or In/Out parameter.
586
587 2019-07-22 Nicolas Roche <roche@adacore.com>
588
589 * terminals.c (__gnat_tty_waitpid): Support both blocking and
590 not blocking mode.
591 * libgnat/g-exptty.ads (Is_Process_Running): New function.
592 * libgnat/g-exptty.adb (Close): Don't try to interrupt/terminate
593 a process if it is already dead.
594
595 2019-07-22 Ed Schonberg <schonberg@adacore.com>
596
597 * freeze.adb (Freeze_Fixed_Point_Type): When freezing a
598 fixed-point subtype, check whether the parent type declarastion
599 includes an aspect specification for the 'Small type attribute,
600 and inherit the specified value.
601
602 2019-07-22 Javier Miranda <miranda@adacore.com>
603
604 * freeze.adb (Freeze_Subprogram): Check that C++ constructors
605 must have external or link name.
606
607 2019-07-22 Ed Schonberg <schonberg@adacore.com>
608
609 * sem_res.adb (Resolve_Selected_Component): If the prefix has a
610 deferred reference, generate the correct reference now, to
611 indicate that the previous assignment is used. This prevents
612 spurious warnings on useless assignments when compiling with all
613 warnings enabled. when there is a subsequent call in the same
614 stqtement list, in which the prefix of the selected component is
615 the actual for an out parameter.
616
617 2019-07-22 Eric Botcazou <ebotcazou@adacore.com>
618
619 * exp_attr.adb (Expand_Loop_Entry_Attribute): Copy the condition
620 of a while loop instead of simply relocating it.
621
622 2019-07-18 Arnaud Charlet <charlet@adacore.com>
623
624 * Makefile.rtl, expect.c, env.c, aux-io.c, mkdir.c, initialize.c,
625 cstreams.c, raise.c, tracebak.c, adadecode.c, init.c, raise-gcc.c,
626 argv.c, adaint.c, adaint.h, ctrl_c.c, sysdep.c, rtinit.c, cio.c,
627 seh_init.c, exit.c, targext.c: Introduce a "STANDALONE" mode where C
628 runtime files do not have any dependency on GCC include files.
629 Remove unnecessary includes.
630 Remove remaining references to VMS in runtime C file.
631 * runtime.h: new File.
632
633 2019-07-13 Andreas Schwab <schwab@linux-m68k.org>
634
635 * Makefile.rtl: Use g-sercom__linux.adb for all linuxes.
636
637 2019-07-11 Piotr Trojanek <trojanek@adacore.com>
638
639 * lib-writ.adb (Ensure_System_Dependency,
640 Up_To_Date_ALI_File_Exists, Write_ALI): Replace low-level access
641 to table with a high-level query.
642
643 2019-07-11 Piotr Trojanek <trojanek@adacore.com>
644
645 * checks.adb: Fix typo in comment.
646 * sem.adb (Semantics): Avoid repeated calls to
647 In_Extended_Main_Source_Unit by reusing an already-cached
648 result.
649 * sem_util.adb (First_Global): Fix style.
650
651 2019-07-11 Yannick Moy <moy@adacore.com>
652
653 * sem_res.adb (Resolve_Call): Do not perform dimensionality
654 checking on inlined bodies.
655
656 2019-07-11 Yannick Moy <moy@adacore.com>
657
658 * debug.adb: Flip meaning of debug switch -gnatdF.
659
660 2019-07-11 Yannick Moy <moy@adacore.com>
661
662 * sem_eval.adb (Is_Same_Value): Add special case for rewritten
663 Loop_Entry attribute.
664
665 2019-07-11 Claire Dross <dross@adacore.com>
666
667 * gnat1drv.adb: SPARK checking rules for pointer aliasing are
668 moved to GNATprove backend.
669 * sem_spark.ads, sem_spark.adb (Sem_SPARK): Is now a generic
670 unit. Takes as parameters:
671 - Retysp which is used to query the most underlying type
672 visible in SPARK. We do not introduce aliasing checks for
673 types which are not visibly deep.
674 - Component_Is_Visible_In_SPARK is used to avoid doing pointer
675 aliasing checks on components which are not visible in SPARK.
676 - Emit_Messages returns True in the second phase of SPARK
677 analysis. Error messages for failed aliasing checks are only
678 output in this case.
679 Additionally, errors on constructs not supported in SPARK are
680 removed as duplicates of marking errors. Components are stored
681 in the permission map using their original component to avoid
682 inconsistencies between components of different views of the
683 same type.
684 (Check_Expression): Handle delta constraints.
685 (Is_Deep): Exported so that we can check for SPARK restrictions
686 on deep types inside SPARK semantic checkings.
687 (Is_Traversal_Function): Exported so that we can check for SPARK
688 restrictions on traversal functions inside SPARK semantic
689 checkings.
690 (Check_Call_Statement, Read_Indexes): Check wether we are
691 dealing with a subprogram pointer type before querying called
692 entity.
693 (Is_Subpath_Expression): Image attribute can appear inside a
694 path.
695 (Check_Loop_Statement): Correct order of statements in the loop.
696 (Check_Node): Ignore raise nodes.
697 (Check_Statement): Use Last_Non_Pragma to get the object
698 declaration in an extended return statement.
699
700 2019-07-11 Patrick Bernardi <bernardi@adacore.com>
701
702 * bindgen.adb (Gen_Main): Do not generate a reference to
703 Ada_Main_Program_Name when the Minimal_Binder flag is set.
704 (Gen_Output_File_Ada): Do not output GNAT_Version and
705 Ada_Main_Program_Name info if Minimal_Binder flag is set.
706 * bindusg.adb: Add documentation for new -minimal switch.
707 * gnatbind.adb (Scan_Bind_Arg): Scan -minimal switch.
708 * opt.ads: Add new global flag Minimal_Binder to indicate if the
709 binder should not produce global variables.
710 * doc/gnat_ugn/building_executable_programs_with_gnat.rst:
711 Update documentation with new binder -minimal switch.
712 * gnat_ugn.texi: Regenerate.
713
714 2019-07-11 Eric Botcazou <ebotcazou@adacore.com>
715
716 * Makefile.rtl: Add warning note about compilation flags and
717 capitalize.
718
719 2019-07-11 Ed Schonberg <schonberg@adacore.com>
720
721 * exp_ch9.adb (Expand_N_Protected_Type_Declaaration): New
722 subsidiary routine Replace_Access_Definition, to handle properly
723 a protected type PT one of whose private components is of type
724 access PT.
725
726 2019-07-11 Dmitriy Anisimkov <anisimko@adacore.com>
727
728 * libgnat/g-socket.ads (Level_Type): Add enumerators for
729 IP_Protocol_For_ICMP, IP_Protocol_For_IGMP,
730 IP_Protocol_For_RAW_Level.
731 * libgnat/g-socket.adb (Levels): Handle them.
732 * s-oscons-tmplt.c: Import socket protocols defined in
733 netinet/in.h.
734
735 2019-07-11 Claire Dross <dross@adacore.com>
736
737 * libgnat/a-cfhama.adb, libgnat/a-cfhase.adb (Free): Do not
738 reset the Has_Element flag if no element is freed.
739
740 2019-07-11 Arnaud Charlet <charlet@adacore.com>
741
742 * errno.c: Remove obsolete support for MaRTE OS.
743
744 2019-07-11 Ed Schonberg <schonberg@adacore.com>
745
746 * exp_ch4.adb (Expand_N_Type_Conversion): If a predicate check
747 is generated, analyze it with range check suppressed, because
748 that check has been previously applied.
749 * exp_ch5.adb (Expand_N_Assignment_Statement): If the RHS is a
750 type conversion to the type of the LHS, do not apply a predicate
751 check to the RHS because it will have been generated already
752 during its expansion.
753 * exp_ch6.adb (Can_Fold_Predicate_Call): Extend processing to
754 handle a predicate check on a constant entity whose value is
755 static.
756
757 2019-07-11 Hristian Kirtchev <kirtchev@adacore.com>
758
759 * bindo.adb: Remove the documentation of switch -d_N because it
760 is no longer in use.
761 * bindo-graphs.ads, bindo-graphs.adb (Is_Spec_Before_Body_Edge):
762 New routine.
763 * bindo-writers.adb (Write_Dependency_Edge): Add the missing
764 case of a spec-before-body edge.
765
766 2019-07-11 Dmitriy Anisimkov <anisimko@adacore.com>
767
768 * libgnat/g-socket.ads (Mode_Type): Add a Socket_Raw enumerator.
769 * libgnat/g-socket.adb (Modes): Handle Socket_Raw.
770
771 2019-07-11 Justin Squirek <squirek@adacore.com>
772
773 * exp_ch9.adb (Build_Private_Protected_Declaration): Add
774 exception for the moving of pragmas to internally generated
775 specs for pragma Unreferenced.
776
777 2019-07-11 Bob Duff <duff@adacore.com>
778
779 * doc/gnat_ugn/gnat_utility_programs.rst: Fix inconsistent
780 documentation for gnatmetric.
781 * gnat_ugn.texi: Regenerate.
782
783 2019-07-11 Bob Duff <duff@adacore.com>
784
785 * doc/gnat_ugn/gnat_utility_programs.rst: Document gnatpp's
786 --spaces-only switch.
787
788 2019-07-11 Hristian Kirtchev <kirtchev@adacore.com>
789
790 * sem_util.adb (Null_Status): Assume that an erroneous construct
791 has an undefined null status.
792
793 2019-07-11 Hristian Kirtchev <kirtchev@adacore.com>
794
795 * checks.adb, exp_ch6.adb, gnat1drv.adb, sem_aux.adb,
796 sem_ch2.adb, sem_ch8.adb, sem_res.adb: Minor reformatting.
797
798 2019-07-11 Hristian Kirtchev <kirtchev@adacore.com>
799
800 * sem_ch8.adb (Analyze_Object_Renaming): Obtain the object being
801 renamed using routine Get_Object_Name which takes care of
802 various name forms.
803 (Get_Object_Name): New routine.
804
805 2019-07-11 Ed Schonberg <schonberg@adacore.com>
806
807 * exp_ch6.adb (Can_Fold_Predicate_Call): New function,
808 subsidiary of Expand_Call_Helper, to compute statically a
809 predicate check when the argument is a static integer.
810
811 2019-07-11 Hristian Kirtchev <kirtchev@adacore.com>
812
813 * sem_res.adb (Resolve_Op_Not): Do not rewrite an equality
814 operator into a function call when the operator is intrinsic.
815
816 2019-07-11 Thomas Quinot <quinot@adacore.com>
817
818 * sem_prag.adb (Analyze_Pragma, case pragma Check): Do not call
819 Set_SCO_Pragma_Enabled for the dynamic predicate case.
820
821 2019-07-11 Hristian Kirtchev <kirtchev@adacore.com>
822
823 * exp_util.ads, exp_util.adb (Needs_Finalization): Move to
824 Sem_Util.
825 * sem_ch9.adb (Analyze_Protected_Definition): Code cleanup. Mark
826 the protected type as having controlled components when it
827 contains at least one such component.
828 * sem_util.ads, sem_util.adb (Needs_Finalization): New
829 function.
830
831 2019-07-11 Eric Botcazou <ebotcazou@adacore.com>
832
833 * alloc.ads (Rep_JSON_Table_Initial): New constant.
834 (Rep_JSON_Table_Increment): Likewise.
835 * debug.adb: Document -gnatd_j switch.
836 * gcc-interface/Make-lang.in (GNAT_ADA_OBJS): Add
837 repinfo-input.o.
838 * gnat1drv.adb: Add with clause for Repinfo.Input.
839 Add with and use clauses for Sinput.
840 (Read_JSON_Files_For_Repinfo): New procedure.
841 (Gnat1drv1): Deal with -gnatd_j switch.
842 * repinfo-input.ad[sb]: New unit.
843 * snames.ads-tmpl (Name_Discriminant): New constant.
844 (Name_Operands): Likewise.
845
846 2019-07-11 Justin Squirek <squirek@adacore.com>
847
848 * checks.adb (Apply_Accessibility_Check): Add check for constant
849 folded conditions on accessibility checks.
850
851 2019-07-11 Arnaud Charlet <charlet@adacore.com>
852
853 * libgnarl/g-thread.ads, libgnarl/g-thread.adb (Get_Thread):
854 Update comments. Add new version taking a Task_Id.
855
856 2019-07-11 Hristian Kirtchev <kirtchev@adacore.com>
857
858 * bindo.adb: Update the section of switches and debugging
859 elaboration issues.
860 * bindo.ads: Add type Elaboration_Phase.
861 * bindo-augmentors.adb: Add use clause for
862 Bindo.Writers.Phase_Writers.
863 (Augment_Library_Graph): Signal the start and end of the
864 aubmentation phase.
865 * bindo-builders.adb: Add with and use clause for Bindo.Writers.
866 Add use clause for Bindo.Writers.Phase_Writers.
867 (Build_Invocation_Graph): Signal the start and end of the
868 invocation graph construction phase.
869 (Build_Library_Graph): Signal the start and end of the library
870 graph construction phase.
871 * bindo-diagnostics.adb: Add use clause for
872 Bindo.Writers.Phase_Writers.
873 (Diagnose_Cycle): Signal the start and end of the cycle
874 diagnostic phase.
875 * bindo-elaborators.adb: Add use clause for
876 Bindo.Writers.Phase_Writers.
877 (Elaborate_Units): Signal the start and end of the unit
878 elaboration phase.
879 * bindo-graphs.adb: Add use clause for
880 Bindo.Writers.Phase_Writers.
881 (Find_Components): Signal the start and end of the component
882 discovery phase.
883 (Find_Cycles): Signal the start and end of the cycle discovery
884 phase.
885 * bindo-units.adb: Add with and use clause for Bindo.Writers.
886 Add use clause for Bindo.Writers.Phase_Writers.
887 (Collect_Elaborable_Units): Signal the start and end of the unit
888 collection phase.
889 * bindo-validators.adb: Add with and use clause for
890 Bindo.Writers. Add use clause for Bindo.Writers.Phase_Writers.
891 (Validate_Cycles, Validate_Elaboration_Order,
892 Validate_Invocation_Graph, Validate_Library_Graph): Signal the
893 start and end of the libray graph validation phase.
894 * bindo-writers.ads, bindo-writers.adb: Add new nested package
895 Phase_Writers.
896 * debug.adb: Update the documentation of switch d_S.
897
898 2019-07-11 Yannick Moy <moy@adacore.com>
899
900 * sem_res.adb (Check_Argument_Order): Special case calls to
901 operators.
902
903 2019-07-10 Dmitriy Anisimkov <anisimko@adacore.com>
904
905 * libgnat/s-ststop.adb: Remove System.Strings.Stream_Ops
906 dependence on System.Streams.Stream_IO.
907
908 2019-07-10 Ed Schonberg <schonberg@adacore.com>
909
910 * sem_ch2.adb (Analyze_Integer_Literal): Preserve the type of
911 the literal if prior analysis determined that its type is a
912 modular integer type.
913
914 2019-07-10 Doug Rupp <rupp@adacore.com>
915
916 * init.c: Do not attempt to re-arm guard page on x86_64-vx7(r2).
917
918 2019-07-10 Ed Schonberg <schonberg@adacore.com>
919
920 * sem_ch8.adb (Check_Constrained_Object): A record that is
921 limited because of the presence of a limited component is
922 constrained, and no subtype indiciation needs to be created for
923 it, just as is the case for declared limited records.
924
925 2019-07-10 Yannick Moy <moy@adacore.com>
926
927 * sem_aux.adb, sem_aux.ads (Is_Protected_Operation): New
928 function to determine if a subprogram is protected.
929 * sem_spark.adb (Setup_Protected_Components): New procedure to
930 add protected components to the environment.
931 (Check_Callable_Body): Call the new Setup_Protected_Components.
932 (Check_Package_Spec): Merge local environment with enclosing one
933 when done.
934
935 2019-07-10 Claire Dross <dross@adacore.com>
936
937 * sem_spark.adb (Check_Expression): Allow digits constraints as
938 input.
939 (Illegal_Global_Usage): Pass in the entity.
940 (Is_Subpath_Expression): New function to allow different nodes
941 as inner parts of a path expression.
942 (Read_Indexes): Allow concatenation and aggregates with box
943 expressions. Allow attributes Update and Loop_Entry.
944 (Check_Expression): Allow richer membership test.
945 (Check_Node): Ignore bodies of generics.
946 (Get_Root_Object): Allow concatenation and attributes.
947
948 2019-07-10 Hristian Kirtchev <kirtchev@adacore.com>
949
950 * sem_ch6.adb (Check_Discriminant_Conformance): Use Find_Type to
951 discover the type of a full view discriminant.
952
953 2019-07-10 Arnaud Charlet <charlet@adacore.com>
954
955 * doc/gnat_ugn/gnat_and_program_execution.rst: Improve gnatmem's
956 doc for the depth switch.
957
958 2019-07-10 Bob Duff <duff@adacore.com>
959
960 * doc/gnat_ugn/gnat_utility_programs.rst: Document gnatpp's
961 --source-line-breaks switch.
962
963 2019-07-10 Justin Squirek <squirek@adacore.com>
964
965 * doc/gnat_rm/implementation_defined_attributes.rst: Add mention
966 of 'Image attribute with 'Img's entry to mention additional
967 added 2012 usage of Obj'Image.
968 * doc/gnat_rm/implementation_defined_pragmas.rst: Correct
969 mispelling of Async_Writers.
970 * gnat_rm.texi: Regenerate.
971 * sem_prag.adb (Analyze_Pragma): Correct mispelling of
972 Async_Writers.
973 * sem_util.adb (State_Has_Enabled_Property): Correct mispelling
974 of Async_Writers.
975
976 2019-07-10 Simon Buist <buist@adacore.com>
977
978 * sem_util.ads (Child_Prefix): New constant.
979 * sem_util.adb (Unique_Name): Add a special prefix to child
980 units that have a nested subprogram or package.
981
982 2019-07-10 Arnaud Charlet <charlet@adacore.com>
983
984 * sfn_scan.adb (Scan_SFN_Pragmas): Add pragma Assert.
985
986 2019-07-10 Hristian Kirtchev <kirtchev@adacore.com>
987
988 * sem_ch3.adb (Check_Nonoverridable_Aspects): Correct the
989 spelling in certain error messages.
990 (Check_Pragma_Implemented): Correct the spelling in certain
991 error messages.
992
993 2019-07-10 Eric Botcazou <ebotcazou@adacore.com>
994
995 * Makefile.rtl (GNATRTL_NONTASKING_OBJS): Add g-brapre.
996 * libgnat/g-brapre.ads: New package specification.
997 * doc/gnat_rm/the_gnat_library.rst: Document it.
998 * gnat_rm.texi: Regenerate.
999
1000 2019-07-10 Yannick Moy <moy@adacore.com>
1001
1002 * osint-c.adb (Set_File_Name): Always add extension for multiple
1003 units per file mode.
1004
1005 2019-07-10 Corentin Gay <gay@adacore.com>
1006
1007 * sysdep.c: Put include directive for 'vxWorks.h' before any
1008 other VxWorks headers.
1009
1010 2019-07-10 Eric Botcazou <ebotcazou@adacore.com>
1011
1012 * doc/gnat_rm/implementation_defined_attributes.rst
1013 (Scalar_Storage_Order): Minor tweaks. Add note about debuggers.
1014 * gnat_rm.texi: Regenerate.
1015
1016 2019-07-10 Hristian Kirtchev <kirtchev@adacore.com>
1017
1018 * exp_ch4.adb (Expand_N_Case_Expression): Mark the generated
1019 assignments to the temporary result as being OK because the
1020 expansion of case expressions is correct by construction.
1021 (Is_Copy_Type): Update the predicate to match the comment
1022 within.
1023
1024 2019-07-10 Hristian Kirtchev <kirtchev@adacore.com>
1025
1026 * bindo-graphs.adb, bindo.adb, debug.adb, exp_ch6.adb,
1027 sem_ch10.adb, sem_ch13.adb, sem_ch3.adb, sem_ch4.adb,
1028 sem_ch6.adb, sem_ch7.adb, sem_res.adb, sem_spark.adb,
1029 sem_util.adb, warnsw.ads: Minor reformatting.
1030
1031 2019-07-10 Joffrey Huguet <huguet@adacore.com>
1032
1033 * libgnat/a-strbou.ads, libgnat/a-strfix.ads,
1034 libgnat/a-strunb.ads, libgnat/a-strunb__shared.ads: Add global
1035 contracts, contract cases, preconditions and postconditions to
1036 procedures and functions.
1037
1038 2019-07-10 Doug Rupp <rupp@adacore.com>
1039
1040 * sysdep.c (__gnat_is_file_not_found_error): Reformulate to also
1041 work for vxworks7r2 SR0610.
1042
1043 2019-07-10 Doug Rupp <rupp@adacore.com>
1044
1045 * env.c (__gnat_environ): Reformulate to also work for
1046 vxworks7r2 SR0610.
1047
1048 2019-07-10 Patrick Bernardi <bernardi@adacore.com>
1049
1050 * Makefile.rtl: Handle vxworks7r2 ppc target
1051
1052 2019-07-10 Hristian Kirtchev <kirtchev@adacore.com>
1053
1054 * bindo.adb: Update the section on switches.
1055 * bindo-graphs.adb
1056 (Add_Cycle, Add_Vertex_And_Complement): Remove.
1057 (Create): The graph no longer needs a set of recorded cycles
1058 because the cycles are not rediscovered in permuted forms.
1059 (Cycle_End_Vertices): New routine.
1060 (Destroy): The graph no longer needs a set of recorded cycles
1061 because the cycles are not rediscovered in permuted forms.
1062 (Destroy_Library_Graph_Vertex): Move to the library level.
1063 (Find_All_Cycles_Through_Vertex, Find_All_Cycles_With_Edge):
1064 Remove.
1065 (Find_Cycles_From_Successor, Find_Cycles_From_Vertex,
1066 Find_Cycles_In_Component, Has_Elaborate_All_Edge): New routines.
1067 (Insert_And_Sort): Remove.
1068 (Is_Elaborate_Body_Edge): Use predicate
1069 Is_Vertex_With_Elaborate_Body.
1070 (Is_Recorded_Cycle): Remove.
1071 (Is_Vertex_With_Elaborate_Body): New routine.
1072 (Normalize_And_Add_Cycle): Remove.
1073 (Precedence): Rename to xxx_Precedence, where xxx relates to the
1074 input. These versions better reflect the desired input
1075 precedence.
1076 (Record_Cycle): New routine.
1077 (Remove_Vertex_And_Complement, Set_Is_Recorded_Cycle): Remove.
1078 (Trace_xxx): Update all versions to use debug switch -d_t.
1079 (Trace_Component): New routine.
1080 (Trace_Eol): Removed.
1081 (Trace_Vertex): Do not output the component as this information
1082 is already available when the component is traced.
1083 (Unvisit, Visit): New routine.
1084 * bindo-graphs.ads: Add new instance LGV_Lists. Remove instance
1085 RC_Sets. Update the structure of type Library_Graph_Attributes
1086 to remove the set of recorded cycles.
1087 (Destroy_Library_Graph_Vertex): Move to the library level.
1088 * bindo-writers.adb (Write_Component_Vertices): Output
1089 information about the number of vertices.
1090 * debug.adb: Document the use of binder switch -d_t. Update the
1091 use of binder switch -d_T.
1092
1093 2019-07-10 Yannick Moy <moy@adacore.com>
1094
1095 * sem_spark.adb (Get_Root_Object): Replace precondition by error
1096 message.
1097 (Read_Indexes): Replace precondition by error message.
1098 (Check_Callable_Body): Check only traversal function returns an
1099 anonymous access type.
1100 (Check_Expression): Issue error on unexpected expression as
1101 path.
1102 * sem_util.adb (First_Global): Fix access to global on
1103 entry/task.
1104
1105 2019-07-10 Javier Miranda <miranda@adacore.com>
1106
1107 * exp_ch6.adb (Is_Class_Wide_Interface_Type): New subprogram.
1108 (Expand_Call_Helper): Handle non-limited views when we check if
1109 any formal is a class-wide interface type.
1110 * exp_disp.adb (Expand_Interface_Actuals): Handle non-limited
1111 views when we look for interface type formals to force "this"
1112 displacement.
1113
1114 2019-07-10 Ed Schonberg <schonberg@adacore.com>
1115
1116 * sem_res.adb (Resolve_Equality_Op): Do not replace the resolved
1117 operator by its alias if expander is not active, because the
1118 operand type may not be frozen yet and its inherited operations
1119 have not yet been created.
1120
1121 2019-07-10 Hristian Kirtchev <kirtchev@adacore.com>
1122
1123 * bindo-elaborators.adb (Elaborate_Units): Set attribute
1124 Elab_Position of all elaborated units.
1125 (Set_Unit_Elaboration_Positions): New routine.
1126
1127 2019-07-10 Gary Dismukes <dismukes@adacore.com>
1128
1129 * exp_util.adb: Reformatting and a typo fix.
1130
1131 2019-07-10 Yannick Moy <moy@adacore.com>
1132
1133 * exp_util.adb (Remove_Side_Effects): Prefer renamings for
1134 objects of possible owning type in GNATprove mode.
1135
1136 2019-07-09 Ed Schonberg <schonberg@adacore.com>
1137
1138 * sem_ch3.adb (Analyze_Object_Declaration): If the object type
1139 is a composite type that has a dynamic predicate and, the
1140 expression in the declaration is an aggregate, the generated
1141 predicate check must appear after the expanded code for the
1142 aggregate, which will appear after the rewritten object
1143 declarastion.
1144
1145 2019-07-09 Justin Squirek <squirek@adacore.com>
1146
1147 * sem_eval.adb (Expr_Value_E): Add conditional to correctly
1148 handle constant enumerated character types.
1149
1150 2019-07-09 Eric Botcazou <ebotcazou@adacore.com>
1151
1152 * libgnarl/s-osinte__mingw.ads (CRITICAL_SECTION): Use proper
1153 type for SpinCount component.
1154
1155 2019-07-09 Justin Squirek <squirek@adacore.com>
1156
1157 * exp_ch4.adb (Expand_N_Allocator): Add conditional to detect
1158 the presence of anoymous access type allocators and issue a
1159 warning if the appropriate warning flag is enabled.
1160 * warnsw.ads: Add new warning flag for anonymous allocators
1161 * warnsw.adb (All_Warnings, Restore_Warnings, Save_Warnings,
1162 Set_Underscore_Warning_Switch): Register new flags.
1163 (WA_Warnings): Register new flag as an "all warnings" switch
1164 * usage.adb,
1165 doc/gnat_ugn/building_executable_programs_with_gnat.rst:
1166 Document new warning switches -gnatw_a and -gnatw_A.
1167 * gnat_ugn.texi: Regenerate.
1168
1169 2019-07-09 Ed Schonberg <schonberg@adacore.com>
1170
1171 * sem_ch4.adb (Diagnose_Call): Improve error recovery when a
1172 local subprogram name hides a possible candidate name declared
1173 in a child package in the context of the current unit.
1174 * sem_ch6.adb (Process_Formals): Protect against malformed
1175 formal types when the parameter type does not denote an entity.
1176
1177 2019-07-09 Hristian Kirtchev <kirtchev@adacore.com>
1178
1179 * bindo-augmentors.adb (Visit_Elaboration_Root): Do not start a
1180 DFS from an elaboration root whose corresponding unit lacks
1181 elaboration code. This behavior mimics that of the old
1182 elaboration order mechanism.
1183 * bindo-graphs.adb (Find_All_Cycles_Through_Vertex): Move the
1184 vertex tracing within the functional branches of the routine.
1185 This prevents spurious trace output.
1186 (Has_No_Elaboration_Code): New routine.
1187 (Trace_Cycle, Trace_Edge): Update the various Ids to use the
1188 "standard" trace format.
1189 * bindo-graphs.ads (Has_No_Elaboration_Code): New routine.
1190 * bindo-units.ads, bindo-units.adb (Has_No_Elaboration_Code):
1191 New routine.
1192
1193 2019-07-09 Piotr Trojanek <trojanek@adacore.com>
1194
1195 * ali.ads, bindo-graphs.adb, bindo-validators.adb, clean.adb,
1196 doc/gnat_ugn/elaboration_order_handling_in_gnat.rst, einfo.ads,
1197 exp_aggr.adb, exp_ch13.adb, exp_ch4.adb, exp_ch5.adb,
1198 exp_ch6.adb, exp_ch7.adb, exp_ch9.adb, exp_pakd.adb,
1199 fname-uf.ads, gnatlink.adb, inline.adb, lib.ads, make.adb,
1200 namet.ads, opt.ads, par-ch4.adb, par-ch6.adb, par-labl.adb,
1201 prep.adb, sem_aggr.adb, sem_ch13.adb, sem_ch4.adb, sem_ch5.adb,
1202 sem_ch6.adb, sem_ch6.ads, sem_ch7.adb, sem_ch8.adb, sem_dim.adb,
1203 sem_disp.adb, sem_prag.adb, sem_res.adb, sem_warn.adb,
1204 sinfo.ads: Replace ". " with ". ". Minor reformatting and typo
1205 corrections.
1206 * gnat_ugn.texi: Generate.
1207
1208 2019-07-09 Hristian Kirtchev <kirtchev@adacore.com>
1209
1210 * bindo.ads: Move type Precedence_Kind from the private to the
1211 visible part of the unit.
1212 * bindo-augmentors.adb: Remove the use of global data as it is
1213 bad practice.
1214 (Augment_Library_Graph): Update the parameter profile.
1215 (Is_Visited, Set_Is_Visited): Remove.
1216 (Visit_Elaboration_Root, Visit_Elaboration_Roots): Update the
1217 parameter profile and comment on usage.
1218 (Visit_Vertex): Likewise. Also keep track of which invocation
1219 edge activates a task.
1220 * bindo-augmentors.ads (Augment_Library_Graph): Update the
1221 parameter profile and comment on usage.
1222 * bindo-builders.adb (Create_Forced_Edge,
1223 Create_Spec_And_Body_Edge, Create_With_Edge): Update the call to
1224 Add_Edge.
1225 * bindo-diagnostics.adb: Add with end use clauses for Restrict
1226 and Rident.
1227 (Output_Dynamic_Model_Suggestions): Remove.
1228 (Output_Invocation_Related_Suggestions): New routine.
1229 (Output_Suggestions): Output all invocation-related suggestions
1230 together.
1231 * bindo-elaborators.adb: Remove types Comparator_Ptr and
1232 Predicate_Ptr.
1233 (Find_Best_Vertex): Update the parameter profile.
1234 * bindo-graphs.adb (Activates_Task): New routine.
1235 (Add_Body_Before_Spec_Edge): Update the call to
1236 Add_Edge_With_Return.
1237 (Add_Edge): Update the parameter profile and the call to
1238 Add_Edge_With_Return.
1239 (Add_Edge_With_Return): Update the parameter profile and comment
1240 on usage.
1241 (At_Least_One_Edge_Satisfies): New routine.
1242 (Contains_Elaborate_All_Edge): Reimplement.
1243 (Contains_Static_Successor_Edge, Contains_Task_Activation): New
1244 routine.
1245 (Contains_Weak_Static_Successor): Remove.
1246 (Is_Static_Successor_Edge): New routine.
1247 * bindo-graphs.ads: Add types LGE_Predicate_Ptr,
1248 LGV_Comparator_Ptr, and LGV_Predicate_Ptr. Update type
1249 Library_Graph_Edge_Attributes to capture whether an invocation
1250 edge activates a task. Update the value of
1251 No_Library_Graph_Edge_Attributes.
1252 (Activates_Task): Update the parameter profile and comment on
1253 usage.
1254 (Contains_Static_Successor_Edge, Contains_Task_Activation): New
1255 routines.
1256 (Contains_Weak_Static_Successor): Remove.
1257 * doc/gnat_ugn/elaboration_order_handling_in_gnat.rst:
1258 Update the documentation to reflect the new task-related advice.
1259 * gnat_ugn.texi: Regenerate.
1260
1261 2019-07-09 Piotr Trojanek <trojanek@adacore.com>
1262
1263 * exp_util.adb (Containing_Package_With_Ext_Axioms): Replace
1264 low-level Ekind test with a high-level wrapper.
1265
1266 2019-07-09 Arnaud Charlet <charlet@adacore.com>
1267
1268 * libgnat/s-memory.adb: Disable calls to Abort defer/undefer
1269 when ZCX_By_Default.
1270
1271 2019-07-09 Javier Miranda <miranda@adacore.com>
1272
1273 * sem_ch13.adb (Rep_Item_Too_Early): Representation clauses are
1274 not allowed for a derivation of a generic type. Extend the
1275 current test to check that none of the parents is a generic
1276 type.
1277
1278 2019-07-09 Hristian Kirtchev <kirtchev@adacore.com>
1279
1280 * exp_ch9.adb, exp_util.adb, repinfo.adb, sem_ch12.adb,
1281 sem_prag.adb, sem_res.adb, sem_spark.adb, sem_util.adb: Minor
1282 reformatting.
1283
1284 2019-07-09 Ed Schonberg <schonberg@adacore.com>
1285
1286 * sem_res.adb (Resolve_Equality_Op): If the node was overloaded,
1287 set properly the entity to which the node has been resolved. The
1288 original entity is the first one found during analysis, and is
1289 not necessarily the resolved one.
1290 (Resolve_Op_Not): If the argument of negation is an overloaded
1291 equality operation, call its resolution directly given that the
1292 context type does not participate in overload resolution.
1293
1294 2019-07-09 Hristian Kirtchev <kirtchev@adacore.com>
1295
1296 * bindo.adb: Remove with and use clauses for Debug. Add with
1297 and use clauses for Opt.
1298 (Find_Elaboration_Order): Enable the v4.0 elaboration order. The
1299 v3.0 mechanism is now available under binder switch -H.
1300 * bindusg.adb (Display): Enable switch -H.
1301 * debug.adb: Free compiler switch -gnatd_G. Free binder switch
1302 -d_N.
1303 * sem_elab.adb: Update the section on switches to remove
1304 -gnatd_G.
1305 (Invocation_Graph_Recording_OK): The invocation graph is now
1306 unconditionally recorded in ALI files.
1307 * switch-b.adb (Scan_Binder_Switches): Scan switch -H.
1308 * doc/gnat_ugn/building_executable_programs_with_gnat.rst:
1309 Update the documentation on compiler switches related to
1310 elaboration. Update the documentation on binder switches to
1311 include switch -H.
1312 * doc/gnat_ugn/elaboration_order_handling_in_gnat.rst: Update
1313 the documentation on elaboration order handling in GNAT.
1314 * gnat_ugn.texi: Regenerate.
1315
1316 2019-07-09 Eric Botcazou <ebotcazou@adacore.com>
1317
1318 * repinfo.adb (List_Entities): Disregard formals altogether.
1319 (List_Name): Properly escape the double quote in the JSON
1320 output.
1321
1322 2019-07-09 Javier Miranda <miranda@adacore.com>
1323
1324 * exp_util.adb (Remove_Side_Effects): Preserve the
1325 Do_Range_Check flag.
1326
1327 2019-07-09 Yannick Moy <moy@adacore.com>
1328
1329 * sinfo.ads: Refine comment for Do_Range_Check.
1330
1331 2019-07-09 Yannick Moy <moy@adacore.com>
1332
1333 * exp_spark.adb (Expand_SPARK_N_Attribute_Reference): Expand
1334 attribute reference on Enum_Rep.
1335
1336 2019-07-09 Ed Schonberg <schonberg@adacore.com>
1337
1338 * sem_ch12.adb (Instantiate_Formal_Package): Handle properly the
1339 case where the actual for a formal package in an instance is the
1340 current instance of an enclosing generic package.
1341 (Check_Formal_Packages): If the formal package declaration is
1342 box-initialized or lacks associations altogether, no internal
1343 instance was created to verify conformance, and there is no
1344 validating package to remove from tree.
1345
1346 2019-07-09 Yannick Moy <moy@adacore.com>
1347
1348 * freeze.adb (Build_Renamed_Body): Do not set body to inline in
1349 GNATprove mode.
1350
1351 2019-07-09 Yannick Moy <moy@adacore.com>
1352
1353 * exp_util.adb (Expand_Subtype_From_Expr): Still expand the type
1354 of static expressions in GNATprove_Mode.
1355 * sem_ch3.adb (Analyze_Object_Declaration): Remove obsolete
1356 special case for GNATprove_Mode.
1357
1358 2019-07-09 Piotr Trojanek <trojanek@adacore.com>
1359
1360 * doc/gnat_rm/the_gnat_library.rst,
1361 doc/gnat_ugn/building_executable_programs_with_gnat.rst,
1362 erroutc.adb, libgnat/g-comlin.adb, libgnat/g-comlin.ads,
1363 libgnat/g-regexp.ads, libgnat/g-regpat.ads,
1364 libgnat/g-spipat.ads, libgnat/s-os_lib.ads,
1365 libgnat/s-regexp.ads: Reword "wild card" to "wildcard".
1366 * gnat_rm.texi, gnat_ugn.texi: Regenerate.
1367
1368 2019-07-09 Yannick Moy <moy@adacore.com>
1369
1370 * sem_spark.adb (Check_Expression): Handle correctly implicit
1371 assignments as part of allocators and (extension) aggregates.
1372 (Get_Root_Object): Adapt for new path expressions.
1373 (Is_Path_Expression): Return True for (extension) aggregate.
1374
1375 2019-07-09 Piotr Trojanek <trojanek@adacore.com>
1376
1377 * einfo.ads: Fix a typo.
1378
1379 2019-07-09 Ed Schonberg <schonberg@adacore.com>
1380
1381 * sem_util.adb (Scope_Within_Or_Same): Handle properly task
1382 bodies and protected bodies, so that local variables within have
1383 their proper scopes after these constructs have been rewritten
1384 during expansion. This patch resembles but is not identical to
1385 the code in Scope_Within.
1386
1387 2019-07-09 Arnaud Charlet <charlet@adacore.com>
1388
1389 * gnat1drv.adb (Adjust_Global_Switches): Set
1390 Dynamic_Elaboration_Checks to True in CodePeer mode.
1391
1392 2019-07-09 Yannick Moy <moy@adacore.com>
1393
1394 * sem_spark.adb (Get_Perm_Or_Tree): Issue an error when
1395 encountering unknown global variable.
1396
1397 2019-07-09 Yannick Moy <moy@adacore.com>
1398
1399 * sem_spark.adb (Check_Expression): Change signature to take an
1400 Extended_Checking_Mode, for handling read permission checking of
1401 sub-expressions in an assignment.
1402 (Check_Parameter_Or_Global): Adapt to new behavior of
1403 Check_Expression for mode Assign.
1404 (Check_Safe_Pointers): Do not analyze generic bodies.
1405 (Check_Assignment): Separate checking of the target of an
1406 assignment.
1407
1408 2019-07-09 Eric Botcazou <ebotcazou@adacore.com>
1409
1410 * repinfo.ads (JSON format): Adjust.
1411 * repinfo.adb (Need_Blank_Line): Rename to...
1412 (Need_Separator): ...this.
1413 (Blank_Line): Rename to...
1414 (Write_Separator): ...this and add JSON specific handling.
1415 (List_Array_Info): Adjust to above renaming.
1416 (List_Object_Info): Likewise.
1417 (List_Record_Info): Likewise.
1418 (List_Subprogram_Info): Likewise.
1419 (List_Type_Info): Likewise.
1420 (List_Entities): Do not set Need_Blank_Line.
1421 (List_Rep_Info): Set Need_Separator and add JSON specific
1422 handling. Output a single JSON stream in the normal case.
1423
1424 2019-07-09 Arnaud Charlet <charlet@adacore.com>
1425
1426 * doc/gnat_ugn/the_gnat_compilation_model.rst: Update doc on
1427 -fdump-ada-spec now that we generate Ada 2012.
1428 * gnat_ugn.texi: Regenerate.
1429
1430 2019-07-08 Eric Botcazou <ebotcazou@adacore.com>
1431
1432 * repinfo.adb (List_Common_Type_Info): New procedure extracted
1433 from...
1434 (List_Type_Info): ...here. Call it for the common information,
1435 start with a blank line and output the linker section at the
1436 end, if any.
1437 (List_Mechanisms): Rename to...
1438 (List_Subprogram_Info): ...this.
1439 (List_Array_Info): Call List_Common_Type_Info.
1440 (List_Entities): Adjust to above change and renaming.
1441 (List_Record_Info): Call List_Common_Type_Info.
1442
1443 2019-07-08 Dmitriy Anisimkov <anisimko@adacore.com>
1444
1445 * libgnat/g-sercom.ads
1446 (Serial_Port_Descriptor): New type.
1447 (Serial_Port): Add a comment, make it hold a
1448 Serial_Port_Descriptor.
1449 (To_Ada, To_C): New procedures.
1450 (Port_Data, Port_Data_Access): Remove types.
1451 * libgnat/g-sercom.adb (To_Ada): New stub.
1452 * libgnat/g-sercom__linux.adb, libgnat/g-sercom__mingw.adb:
1453 Update implementations accordingly.
1454 * s-oscons-tmplt.c: Bind Serial_Port_Descriptor to
1455 System.Win32.HANDLE on Windows, and to Interfaces.C.int on
1456 Linux. Add "Interfaces.C." prefix for other basic integer type
1457 bindings.
1458 * xoscons.adb (Output_Info): Remove the "Interfaces.C." prefix
1459 for subtypes generation.
1460
1461 2019-07-08 Arnaud Charlet <charlet@adacore.com>
1462
1463 * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
1464 Update documentation on No_Exceptions restriction.
1465 * gnat_rm.texi: Regenerate.
1466
1467 2019-07-08 Dmitriy Anisimkov <anisimko@adacore.com>
1468
1469 * libgnat/s-os_lib.adb: Do not call __gnat_kill for Invalid_Pid.
1470
1471 2019-07-08 Piotr Trojanek <trojanek@adacore.com>
1472
1473 * sem_util.adb (Enclosing_Package_Or_Subprogram): Do not expect
1474 package and subprogram bodies.
1475
1476 2019-07-08 Bob Duff <duff@adacore.com>
1477
1478 * doc/gnat_ugn/gnat_utility_programs.rst: Remove documentation
1479 of ignored GNATpp switch.
1480
1481 2019-07-08 Hristian Kirtchev <kirtchev@adacore.com>
1482
1483 * doc/gnat_rm/implementation_defined_pragmas.rst:
1484 Update the documentation of pragma Initialize_Scalars.
1485 * gnat_rm.texi: Regenerate.
1486
1487 2019-07-08 Javier Miranda <miranda@adacore.com>
1488
1489 * exp_ch4.adb (Tagged_Membership): Fix regression silently
1490 introduced in r260738 that erroneouslusy causes the evaluation
1491 to True of the membership test when the left operand of the
1492 membership test is a class-wide interface object and the right
1493 operand is a type that implements such interface type.
1494
1495 2019-07-08 Hristian Kirtchev <kirtchev@adacore.com>
1496
1497 * sem_ch13.adb (Analyze_Attribute_Definition_Clause): Do not
1498 register an address clause when its prefix denotes a generic
1499 formal object.
1500
1501 2019-07-08 Hristian Kirtchev <kirtchev@adacore.com>
1502
1503 * bindo-diagnostics.adb (Diagnose_Cycle): Capture the presence
1504 of an Elaborate_All edge before iterating over the edges of the
1505 cycle.
1506 (Output_Elaborate_Body_Transition): Update the parameter profile
1507 and the comment on usage. Add a missing case where the edge is
1508 within the context of an Elaborate_All.
1509 (Output_Transition): Update the call to
1510 Output_Elaborate_Body_Transition.
1511 * bindo-graphs.ads, bindo-graphs.adb
1512 (Contains_Elaborate_All_Edge): New routine.
1513
1514 2019-07-08 Piotr Trojanek <trojanek@adacore.com>
1515
1516 * lib-xref-spark_specific.adb (Create_Heap): Set dummy Etype for
1517 the fake __HEAP entity.
1518
1519 2019-07-08 Daniel Mercier <mercier@adacore.com>
1520
1521 * gnat1drv.adb: Suppress warnings on memory representation in
1522 CodePeer compiler mode.
1523
1524 2019-07-08 Nicolas Roche <roche@adacore.com>
1525
1526 * rtinit.c (__gnat_runtime_initialize): Remove dependency on
1527 CommandLineToArgvW.
1528
1529 2019-07-08 Doug Rupp <rupp@adacore.com>
1530
1531 * Makefile.rtl: Handle vxworks7r2 in x86_64 and x86 vxworks7.
1532
1533 2019-07-08 Dmitriy Anisimkov <anisimko@adacore.com>
1534
1535 * Makefile.rtl: Use g-sercom__linux.adb for all linuxes.
1536
1537 2019-07-08 Yannick Moy <moy@adacore.com>
1538
1539 * expander.adb (Expand): Do not reset Analyzed flag always.
1540 * sem_eval.adb (Fold_Ureal): Mark node as analyzed.
1541
1542 2019-07-08 Ed Schonberg <schonberg@adacore.com>
1543
1544 * exp_ch9.adb (Expand_N_Timed_Entry_Call): Do not insert twice
1545 the assignment statement that computes the delay value, to
1546 prevent improper tree sharing when the value is a type
1547 conversion and Float_Overflow checks are enabled.
1548
1549 2019-07-08 Hristian Kirtchev <kirtchev@adacore.com>
1550
1551 * bindo.adb: Update the section on terminology to include new
1552 concepts. Update the section on switches to include new
1553 entries.
1554 * bindo.ads: Add type Precedence_Kind.
1555 * bindo-builders.adb: Add with and use clauses for Debug and
1556 Bindo.Validators. Add use clauses for
1557 Bindo.Validators.Invocation_Graph_Validators and
1558 Bindo.Validators.Library_Graph_Validators.
1559 (Build_Invocation_Graph): Validate the graph immediately after
1560 it was built.
1561 (Build_Library_Graph): Update the parameter profile. The
1562 creation of the graph is now elaboration model-agnostic.
1563 Validate the graph immediately after it was built.
1564 (Create_With_Edge): Create regular with edges for Elaborate and
1565 Elaborate_All edges when the appropriate debug switches are in
1566 effect.
1567 * bindo-builders.ads (Build_Library_Graph): Update the parameter
1568 profile.
1569 * bindo-diagnostics.adb (Diagnose_Cycle): Track the presence of
1570 an Elaborate_All edge throughout the inspection of the cycle's
1571 edges.
1572 (Output_Dynamic_Model_Suggestions): Output the suggestion only
1573 when the cycle contains at least one weak edge where the
1574 successor was statically elaborated.
1575 (Output_Elaborate_Body_Transition, Output_Forced_Transition,
1576 Output_With_Transition): Update the assertions.
1577 * bindo-elaborators.adb: Remove use clauses for
1578 Bindo.Validators.Invocation_Graph_Validators and
1579 Bindo.Validators.Library_Graph_Validators. Remove strings
1580 Add_To_All_Candidates_Msg and Add_To_Comp_Candidates_Msg.
1581 Remove type String_Ptr.
1582 (Add_Vertex, Add_Vertex_If_Elaborable, Create_All_Candidates_Set
1583 Create_Component_Candidates_Set): Remove.
1584 (Create_Component_Vertex_Sets, Create_Vertex_Sets): New routine.
1585 (Elaborate_Component): Update the parameter profile and the
1586 comment on usage. Reimplement the elaboration of a component.
1587 The algorithm will now attempt to elaborate as many vertices
1588 possible. If this is not possible, and a weakly elaborable
1589 vertex is available use unit was compiled using the dynamic
1590 model, the algorithm will elaborate it.
1591 (Elaborate_Library_Graph): Reimplement the elaboration of the
1592 graph. The algorithm will now attempt to elaborate as many
1593 vertices along with their components as possible. If this is not
1594 possible, and a weakly elaborable vertex is available use unit
1595 was compiled using the dynamic model, the algorithm will
1596 elaborate it along with its component.
1597 (Elaborate_Units): Merge with the functionality of
1598 Elaborate_Units_Common.
1599 (Elaborate_Units_Common, Elaborate_Units_Dynamic,
1600 Elaborate_Units_Static): Remove.
1601 (Elaborate_Vertex): Update the parameter profile and the comment
1602 on usage. Reimplemented.
1603 (Find_Best_Candidate): Remove.
1604 (Find_Best_Elaborable_Vertex, Find_Best_Vertex,
1605 Find_Best_Weakly_Elaborable_Vertex, Has_Elaborable_Body,
1606 Insert_Elaborable_Successor, Insert_Vertex): New routines.
1607 (Is_Better_Candidate): Remove.
1608 (Is_Better_Elaborable_Vertex,
1609 Is_Better_Weakly_Elaborable_Vertex,
1610 Is_Suitable_Elaborable_Vertex,
1611 Is_Suitable_Weakly_Elaborable_Vertex): New routines.
1612 (Trace_Candidate_Vertices): Remove.
1613 (Trace_Component): Output the number of strong and weak
1614 predecessors.
1615 (Trace_Unelaborated_Vertices): Remove.
1616 (Trace_Vertex): Output the number of strong and weak
1617 predecessors.
1618 (Trace_Vertices): New routine.
1619 (Update_Successor, Update_Successors): Update the parameter
1620 profile and the comment on usage.
1621 * bindo-graphs.adb: Remove type Precedence_Kind.
1622 (Add_Edge_With_Return): Update the increment of pending
1623 predecessors.
1624 (Add_Vertex): Provide default values for strong and weak
1625 predecessors.
1626 (Complementary_Vertex): Move the initial declaration to the
1627 spec. Update the parameter profile and the comment on usage.
1628 (Contains_Weak_Static_Successor): New routine.
1629 (Create): Update the parameter profile. The creation of the
1630 graph is now elaboration model-agnostic.
1631 (Decrement_Pending_Predecessors): Update the parameter profile
1632 and the comment on usage. Reimplemented.
1633 (Delete_Edge): Update the decrement of pending predecesors.
1634 (Has_Elaborate_Body): Do not treat a vertex as being subject to
1635 Elaborate_Body when a debug switch is in effect.
1636 (Increment_Pending_Predecessors): Update the parameter profile
1637 and the comment on usage. Reimplemented.
1638 (Is_Elaborable_Component): Reimplemented.
1639 (Is_Elaborable_Vertex): Move the initial declaration to the
1640 spec. Reimplemented.
1641 (Is_Elaborate_Body_Pair): New routine.
1642 (Is_Dynamically_Elaborated): Update the parameter profile.
1643 Reimplemented.
1644 (Is_Weakly_Elaborable_Vertex): New routine.
1645 (Pending_Predecessors): Removed.
1646 (Pending_Predecessors_For_Elaboration,
1647 Pending_Strong_Predecessors, Pending_Weak_Predecessors,
1648 Update_Pending_Predecessors): New routines.
1649 (Update_Pending_Predecessors_Of_Components): Update the
1650 increment of pending predecessors.
1651 * bindo-graphs.ads: Update the components of type
1652 Component_Attributes. Update the components of type
1653 Library_Graph_Attributes. Update the components of type
1654 Library_Graph_Vertex_Attributes. Update the initialization of
1655 No_Component_Attributes. Update the initialization of
1656 No_Library_Graph_Vertex_Attributes.
1657 (Complementary_Vertex, Contains_Weak_Static_Successor): New
1658 routines.
1659 (Create): Update the parameter profile and the comment on usage.
1660 (Decrement_Pending_Predecessors, Is_Dynamically_Elaborated):
1661 Update the parameter profile and the comment on usage.
1662 (Is_Elaborate_Body_Pair, Is_Weakly_Elaborable_Vertex): New
1663 routines.
1664 (Pending_Predecessors): Removed.
1665 (Pending_Predecessors_For_Elaboration,
1666 Pending_Strong_Predecessors, Pending_Weak_Predecessors): New
1667 routines.
1668 * bindo-writers.adb (Write_Components): Moved from the spec.
1669 (Write_Component): Output the strong and weak predecessors.
1670 (Write_Library_Graph): Output the components as part of the
1671 graph.
1672 (Write_Library_Graph_Vertex): Output the strong and weak
1673 predecessors.
1674 * bindo-writers.ads (Write_Components): Moved to the body.
1675 * debug.adb: Add and document new GNATbind switches -d_a, -d_b,
1676 -d_e.
1677 * bindo-validators.adb: Minor reformattings.
1678
1679 2019-07-08 Bob Duff <duff@adacore.com>
1680
1681 * libgnat/g-sercom.ads, libgnat/g-sercom__linux.adb (Data_Rate):
1682 Support additional data rates.
1683
1684 2019-07-08 Olivier Hainque <hainque@adacore.com>
1685
1686 * gcc-interface/trans.c (Compilation_Unit_to_gnu): Don't request
1687 DECL_ARTIFICIAL_P on elab proc declarations.
1688
1689 2019-07-08 Eric Botcazou <ebotcazou@adacore.com>
1690
1691 * repinfo.adb (List_Record_Info): Declare Incomplete_Layout and
1692 Not_In_Extended_Main local exceptions.
1693 (List_Structural_Record_Layout): For an extension, raise the
1694 former if the parent subtype has not been built and the latter
1695 if it is not declared in the main source unit. Fall back to the
1696 flat layout if either exception has been raised.
1697
1698 2019-07-08 Ed Schonberg <schonberg@adacore.com>
1699
1700 * libgnat/a-strfix.adb (Delete): The RM describes the semantics
1701 of Delete as equivalent to that of Replace_String with a null
1702 argument. As a result, deleting a null string that starts past
1703 the end of its argument is a noop and must not raise
1704 Index_Error.
1705
1706 2019-07-08 Javier Miranda <miranda@adacore.com>
1707
1708 * exp_disp.adb (Register_Primitive): When registering a
1709 primitive in the secondary dispatch table, handle primitive
1710 inherited through several levels of type derivation (required to
1711 properly handle inherited 'null' primitive).
1712
1713 2019-07-08 Bob Duff <duff@adacore.com>
1714
1715 * doc/gnat_ugn/gnat_utility_programs.rst: Document handling of
1716 preprocessor directives in GNATpp.
1717
1718 2019-07-08 Javier Miranda <miranda@adacore.com>
1719
1720 * gnat1drv.adb (Post_Compilation_Validation_Checks:
1721 Validate_Compile_Time_Warning_Errors is now located in sem_prag
1722 (instead of sem_ch13).
1723 * sem_ch13.ads (Validate_Compile_Time_Warning_Error,
1724 Validate_Compile_Time_Warning_Errors): Move to sem_prag.
1725 * sem_ch13.adb
1726 (Compile_Time_Warnings_Errors): Move to sem_prag.
1727 (Initialize): Remove initialization of table
1728 Compile_Time_Warning_Errors.
1729 (Validate_Compile_Time_Warning_Error,
1730 Validate_Compile_Time_Warning_Errors): Move to sem_prag.
1731 * sem_prag.ads (Validate_Compile_Time_Warning_Errors): New
1732 procedure.
1733 * sem_prag.adb (Initialize): Initialize table
1734 Compile_Time_Warning_Errors.
1735
1736 2019-07-08 Ed Schonberg <schonberg@adacore.com>
1737
1738 * sem_ch13.adb (Analyze_Aspect_Specifications): For a
1739 pre/postcondition of a generic subprogram declaration, do not
1740 use Relocate_Node on the aspect expression to construct the
1741 corresponding attribute specification, to prevent tree anomalies
1742 when the expression is a call with named actual parameters.
1743
1744 2019-07-08 Javier Miranda <miranda@adacore.com>
1745
1746 * sem_attr.adb (Analyze_Attribute [Attribute_Size]): For pragmas
1747 used to report user defined compile time warning or errors
1748 handle 'Size for types with known static RM size.
1749
1750 2019-07-08 Justin Squirek <squirek@adacore.com>
1751
1752 * exp_imgv.adb (Build_Enumeration_Image_Tables): Default SSO for
1753 the building of image tables.
1754 (Expand_Image_Attribute): Minor cleanup.
1755
1756 2019-07-08 Dmitriy Anisimkov <anisimko@adacore.com>
1757
1758 * libgnat/g-socket.ads, libgnat/g-socket.adb: Improve
1759 documentation.
1760 (Get_Socket_Option, Set_Socket_Option): Remove default value for
1761 the Level formal.
1762
1763 2019-07-08 Ed Schonberg <schonberg@adacore.com>
1764
1765 * sem_ch13.adb (Check_Aspect_At_End_Of_Declarations): For an
1766 unanalized aspect in a generic context that has not been
1767 analyzed yet, if the aspect applies to a type, place the type on
1768 the scope stack to make its components visible, before checking
1769 conformance with the version of the expression analyzed at the
1770 freeze point.
1771
1772 2019-07-05 Justin Squirek <squirek@adacore.com>
1773
1774 * checks.adb (Apply_Accessibility_Check): Add logic to fetch the
1775 function result accessibility level if one is required within
1776 the generated check.
1777 * exp_ch6.adb (Needs_Result_Accessibility_Level): Modify
1778 controlling elsif block to handle more cases such as anonymous
1779 access results and disable checking for coextensions.
1780
1781 2019-07-05 Ed Schonberg <schonberg@adacore.com>
1782
1783 * sem_ch9.adb (Analyze_Accept_Statement): If this is an illegal
1784 accept statement for an enclosing entry abandon analysis to
1785 prevent scope mismatches and potential infinite loops in
1786 compiler.
1787
1788 2019-07-05 Hristian Kirtchev <kirtchev@adacore.com>
1789
1790 * ali.adb (For_Each_Invocation_Construct,
1791 For_Each_Invocation_Relation): New version.
1792 (Scan_ALI): Initialize field Invocation_Graph_Encoding.
1793 (Set_Invocation_Graph_Encoding): Update the setting of the
1794 invocation graph encoding.
1795 * ali.ads: Move field Invocation_Graph_Encoding from Unit_Record
1796 to ALI_Record because the encoding applies to the whole ALI,
1797 rather than one of the units (spec or body) for which the ALI
1798 file was created.
1799 (For_Each_Invocation_Construct, For_Each_Invocation_Relation):
1800 New version.
1801 * bindo.adb: Update the section on switches. Complete the
1802 section of debugging elaboration order issues.
1803 (Find_Elaboration_Order): Prepare the routine for the switch
1804 from the old to the new elaboration order mechanism.
1805 * bindo-diagnostics.adb (Find_And_Output_Invocation_Paths):
1806 Manage a visited set used by Visit_Vertex.
1807 (Output_All_Cycles_Suggestions,
1808 Output_Dynamic_Model_Suggestions): Clarify the nature of the
1809 suggested switch.
1810 (Output_Elaborate_Body_Transition): Update the diagnostic to
1811 emit a better message.
1812 (Output_Forced_Suggestions, Output_Full_Encoding_Suggestions):
1813 Clarify the nature of the suggested switch.
1814 (Visit_Vertex): Update the parameter profile to add a set of
1815 invokers visited during the transition. This set prevents
1816 infinite exploration of the graph in case the invocations are
1817 recursive.
1818 * bindo-elaborators.adb: Add a use clause for
1819 Bindo.Writers.Dependency_Writers.
1820 (Elaborate_Units_Common): Output the library graph after it has
1821 been augmented with invocation edges. Output just the components
1822 instead of outputting the whole library graph again.
1823 (Elaborate_Units_Dynamic, Elaborate_Units_Static): Output the
1824 dependencies as expressed in the library graph.
1825 * bindo-units.adb (Invocation_Graph_Encoding): Update the
1826 extraction of the invocation graph encoding.
1827 * bindo-writers.adb: Add with and use clauses for Binderr and
1828 Butil.
1829 (palgc, plgc): New debug routine.
1830 (Write_Components): Moved to the spec. Add a header for the
1831 output.
1832 (Write_Dependencies, Write_Dependencies_Of_Vertex,
1833 Write_Dependency_Edge): New routine.
1834 (Write_Elaboration_Order): Update the logic to follow the format
1835 of Binde's order output.
1836 (Write_Library_Graph): Do not output the components every time
1837 the graph is written.
1838 (Write_Unit): Output the invocation graph encoding of the unit.
1839 Output the invocation constructs and relations for the unit
1840 only.
1841 * bindo-writers.ads (Write_Components): Moved from the body.
1842 (Write_Dependencies): New routine.
1843 * bindusg.adb: Prepare the routine for the switch from the old
1844 to the new elaboration order mechanism.
1845 * debug.adb: Binder switch -d_O is now not associated with any
1846 functionality.
1847 * einfo.adb (Is_Elaboration_Target): The attribute applies to
1848 packages, as specified by the comment on the attribute usage.
1849 * opt.ads: Add a global flag which controls the choice between
1850 the new and the legacy elaboration order mechanism.
1851 * sem_elab.adb: Add Package_Target to type Target_Kind.
1852 (Build_Elaborate_Body_Procedure, Build_Elaborate_Procedure,
1853 Build_Elaborate_Spec_Procedure, Check_Elaboration_Scenarios,
1854 Check_SPARK_Model_In_Effect): Use Main_Unit_Entity to obtain the
1855 entity of the main unit.
1856 (Create_Package_Rep): New routine.
1857 (Create_Target_Rep): Add processing for packages.
1858 (Declaration_Placement_Of_Node, Has_Prior_Elaboration): Use
1859 Main_Unit_Entity to obtain the entity of the main
1860 unit.
1861 (Invocation_Graph_Recording_OK): Prepare the routine for the
1862 switch from the old to the new elaboration order mechanism.
1863 (Main_Unit_Entity): New routine.
1864 (Meet_Elaboration_Requirement,
1865 Process_Conditional_ABE_Variable_Reference): Use
1866 Main_Unit_Entity to obtain the entity of the main unit.
1867 (Process_Invocation_Instantiation): New routine.
1868 (Process_Invocation_Scenario): Add processing for
1869 instantiations.
1870 * switch-b.adb (Scan_Binder_Switches): Prepare the routine for
1871 the switch from the old to the new elaboration order mechanism.
1872
1873 2019-07-05 Joffrey Huguet <huguet@adacore.com>
1874
1875 * libgnat/a-textio.adb: Add abstract state refinment.
1876 * libgnat/a-textio.ads: Add File_System abstract state. Add
1877 global contracts, contract cases, preconditions and
1878 postconditions to procedures and functions.
1879 (Set_Input, Set_Output, Set_Error, Standard_Input,
1880 Standard_Output, Standard_Error, Current_Input, Current_Output,
1881 Current_Error): Turn SPARK_Mode off.
1882 (Get_Line): Turn SPARK_Mode off on Get_Line functions.
1883 * libgnat/a-tideio.ads, libgnat/a-tienio.ads,
1884 libgnat/a-tifiio.ads, libgnat/a-tiflio.ads,
1885 libgnat/a-tiinio.ads, libgnat/a-timoio.ads: Add global
1886 contracts, contract cases, preconditions and postconditions to
1887 procedures and functions.
1888
1889 2019-07-05 Arnaud Charlet <charlet@adacore.com>
1890
1891 * doc/gnat_ugn/platform_specific_information.rst: Refresh doc on
1892 installing from the command line on Windows. Remove obsolete
1893 part.
1894 * gnat_ugn.texi: Regenerate.
1895
1896 2019-07-05 Vasiliy Fofanov <fofanov@adacore.com>
1897
1898 * libgnat/a-wichha.ads (Is_Alphanumeric): Replace comment with
1899 the correct one. Also capitalize references to False
1900 throughout.
1901
1902 2019-07-05 Eric Botcazou <ebotcazou@adacore.com>
1903
1904 * exp_ch4.adb (Expand_N_Indexed_Component): Do not expand actual
1905 parameters of function calls here either.
1906
1907 2019-07-05 Hristian Kirtchev <kirtchev@adacore.com>
1908
1909 * bindo-units.adb, checks.adb, exp_attr.adb, exp_ch3.adb,
1910 exp_ch4.adb, exp_pakd.adb, lib-writ.adb, libgnat/g-traceb.adb,
1911 libgnat/g-traceb.ads, libgnat/s-stratt.ads, sem_aux.ads,
1912 sem_util.adb: Minor reformatting.
1913
1914 2019-07-05 Ed Schonberg <schonberg@adacore.com>
1915
1916 * sem_ch13.adb (Build_Predicate_Functions): If a subtype that
1917 carries a static predicate aspect is frozen immediately after
1918 its declaration, ensure that the generated function body created
1919 for predicate checking is inserted after the corresponding
1920 subprogram declaration, which is created at the point the
1921 declaration is elaborated.
1922
1923 2019-07-05 Hristian Kirtchev <kirtchev@adacore.com>
1924
1925 * exp_ch7.adb (Cleanup_Record): Use the underlying type when
1926 checking for components with tasks.
1927
1928 2019-07-05 Arnaud Charlet <charlet@adacore.com>
1929
1930 * libgnarl/s-osinte__linux.ads: Link with -lrt before -lpthread.
1931
1932 2019-07-05 Ed Schonberg <schonberg@adacore.com>
1933
1934 * exp_pakd.adb (Expand_Bit_Packed_Element_Set): Add explicit
1935 range checks when the index type of the bit-packed array is an
1936 enumeration type with a non-standard representation,
1937
1938 2019-07-05 Hristian Kirtchev <kirtchev@adacore.com>
1939
1940 * sem_res.adb (Is_Control_Flow_Statement): Delay statements
1941 contain an expression, which in turn may have side effects and
1942 affect the infinite recursion. As a result, delay statements
1943 should not be treated specially.
1944
1945 2019-07-05 Arnaud Charlet <charlet@adacore.com>
1946
1947 * libgnarl/s-linux.ads, libgnarl/s-linux__alpha.ads,
1948 libgnarl/s-linux__android.ads, libgnarl/s-linux__hppa.ads,
1949 libgnarl/s-linux__mips.ads, libgnarl/s-linux__riscv.ads,
1950 libgnarl/s-linux__sparc.ads: Fix typos in comments.
1951
1952 2019-07-05 Hristian Kirtchev <kirtchev@adacore.com>
1953
1954 * sem_res.adb (Check_Infinite_Recursion): Reimplemented.
1955 (Enclosing_Declaration_Or_Statement,
1956 Invoked_With_Different_Arguments, Is_Conditional_Statement,
1957 Is_Control_Flow_Statement, Is_Immediately_Within_Body,
1958 Is_Raise_Idiom, Is_Raise_Statement, Is_Sole_Statement,
1959 Preceded_By_Control_Flow_Statement,
1960 Within_Conditional_Statement): New routines.
1961
1962 2019-07-05 Javier Miranda <miranda@adacore.com>
1963
1964 * exp_ch4.adb (Expand_N_Type_Conversion): Do not apply an
1965 accessibility check when the conversion is an access to
1966 class-wide interface type and it is an actual parameter.
1967 * exp_ch6.adb (Expand_Call_Helper): Add documentation on the
1968 accessibility level of an anonymous allocator defining the value
1969 of an access parameter.
1970 * sem_util.ads, sem_util.adb (Dynamic_Accessibility_Level): Add
1971 support for an anonymous allocator whose type is that of a
1972 stand-alone object of an anonymous access to object type.
1973
1974 2019-07-05 Piotr Trojanek <trojanek@adacore.com>
1975
1976 * einfo.ads, sem_res.adb: Typo fixes in comments.
1977
1978 2019-07-05 Bob Duff <duff@adacore.com>
1979
1980 * exp_ch6.adb (Is_Build_In_Place_Function): Narrow the check for
1981 Has_Foreign_Convention to the imported case only. If a
1982 build-in-place function is exported, and called from Ada code,
1983 build-in-place protocols should be used.
1984
1985 2019-07-05 Ed Schonberg <schonberg@adacore.com>
1986
1987 * sem_util.adb (Encloing_Subprogram): If Enclosing_Dynamic_Scope
1988 is a loop, continue climbing the scope stack to find the
1989 enclosing subprogram.
1990 (Gather_Components): Handle properly a choice in a record
1991 aggregate that is given by a subtype with a static predicate.
1992
1993 2019-07-05 Javier Miranda <miranda@adacore.com>
1994
1995 * debug.adb (-gnatd.K): Leave available this switch.
1996 * contracts.adb (Build_And_Analyze_Contract_Only_Subprograms):
1997 Remove.
1998 * scil_ll.ads, scil_ll.adb (Contract_Only_Body_Flag,
1999 Contract_Only_Body_Nodes, Get_Contract_Only_Body,
2000 Is_Contract_Only_Body, Set_Contract_Only_Body): Remove.
2001
2002 2019-07-05 Pierre-Marie de Rodat <derodat@adacore.com>
2003
2004 * libgnat/a-strunb.ads: Import documentation from the RM
2005
2006 2019-07-05 Pierre-Marie de Rodat <derodat@adacore.com>
2007
2008 * libgnat/a-strfix.ads: Import documentation from the RM
2009
2010 2019-07-05 Yannick Moy <moy@adacore.com>
2011
2012 * adabkend.adb (Scan_Back_End_Switches): Accept -Og and -Ofast
2013 switches.
2014
2015 2019-07-05 Hristian Kirtchev <kirtchev@adacore.com>
2016
2017 * ali.adb: Relocate types Invocation_Construct_Record,
2018 Invocation_Relation_Record, and Invocation_Signature_Record to
2019 the body of ALI. Relocate tables Invocation_Constructs,
2020 Invocation_Relations, and Invocation_Signatures to the body of
2021 ALI. Remove type Body_Placement_Codes. Add new types
2022 Declaration_Placement_Codes, and
2023 Invocation_Graph_Encoding_Codes. Update the literals of type
2024 Invocation_Graph_Line_Codes.
2025 (Add_Invocation_Construct): Update the parameter profile. Add an
2026 invocation construct built from all attributes provided.
2027 (Add_Invocation_Relation): Update the parameter profile. Add an
2028 invocation relation built from all attributes provided.
2029 (Body_Placement): New routine.
2030 (Body_Placement_Kind_To_Code, Code_To_Body_Placement_Kind):
2031 Removed.
2032 (Code_To_Declaration_Placement_Kind,
2033 Code_To_Invocation_Graph_Encoding_Kind, Column,
2034 Declaration_Placement_Kind_To_Code, Extra,
2035 For_Each_Invocation_Construct, For_Each_Invocation_Relation,
2036 Invocation_Graph_Encoding,
2037 Invocation_Graph_Encoding_Kind_To_Code, Invoker, Kind, Line,
2038 Locations, Name): New routine.
2039 (Scan_Invocation_Construct_Line): Reimplement the scanning
2040 mechanism.
2041 (Scan_Invocation_Graph_Attributes_Line): New routine.
2042 (Scan_Invocation_Graph_Line): Use a case statement to dispatch.
2043 (Scan_Invocation_Relation_Line): Reimplement the scanning
2044 mechanism.
2045 (Scope): New routine.
2046 (Set_Invocation_Graph_Encoding, Signature, Spec_Placement,
2047 Target): New routine.
2048 * ali.ads: Add new type Invocation_Graph_Encoding_Kind. Add
2049 component Invocation_Graph_Encoding to type Unit_Record.
2050 Relocate various types and data structures to the body of ALI.
2051 (Add_Invocation_Construct, Add_Invocation_Relation): Update the
2052 parameter profile.
2053 (Body_Placement): New routine.
2054 (Body_Placement_Kind_To_Code, Code_To_Body_Placement_Kind):
2055 Removed.
2056 (Code_To_Declaration_Placement_Kind,
2057 Code_To_Invocation_Graph_Encoding_Kind, Column,
2058 Declaration_Placement_Kind_To_Code, Extra,
2059 For_Each_Invocation_Construct, For_Each_Invocation_Relation,
2060 Invocation_Graph_Encoding,
2061 Invocation_Graph_Encoding_Kind_To_Code, Invoker, Kind, Line,
2062 Locations, Name, Scope, Set_Invocation_Graph_Encoding,
2063 Signature, Spec_Placement, Target): New routine.
2064 * bindo.adb: Add with clause for Binde. Add with and use
2065 clauses for Debug. Update the documentation. Add new switches.
2066 (Find_Elaboration_Order): Dispatch to the proper elaboration
2067 mechanism.
2068 * bindo-augmentors.adb:
2069 Remove with and use clauses for GNAT and GNAT.Sets. Remove
2070 membership set VS. Update the parameter profiles of most
2071 routines to use better parameter names. Update the
2072 implementation of most routine to use the new parameter names.
2073 Remove various redundant assertions.
2074 * bindo-builders.adb: Use better names for instantiated data
2075 structures. Update all references to these names. Update the
2076 parameter profiles of most routines to use better parameter
2077 names. Update the implementation of most routine to use the new
2078 parameter names.
2079 (Build_Library_Graph): Update the parameter profile. Update the
2080 call to Create.
2081 (Create_Vertex): Reimplemented.
2082 (Declaration_Placement_Vertex): New routine.
2083 * bindo-builders.ads (Build_Library_Graph): Update the parameter
2084 profile and comment on usage.
2085 * bindo-diagnostics.adb: Almost a new unit.
2086 * bindo-diagnostics.ads: Add a use clause for
2087 Bindo.Graphs.Invocation_Graphs. Remove package
2088 Cycle_Diagnostics.
2089 (Diagnose_Circularities): New routine.
2090 * bindo-elaborators.adb: Remove the with and use clauses for
2091 Binderr and GNAT.Sets. Remove the use clause for
2092 Bindo.Diagnostics.Cycle_Diagnostics. Remove membership set VS.
2093 Update the parameter profiles of most routines to use better
2094 parameter names. Update the implementation of most routine to
2095 use the new parameter names. (Elaborate_Units_Common): Update
2096 the parameter profile. Pass an infication to the library graph
2097 builder whether the dynamic model is in effect.
2098 (Elaborate_Units_Dynamic, Elaborate_Units_Static): Use
2099 Diagnose_Circularities to provide diagnostics.
2100 (Update_Successor): Use routine In_Same_Component to determine
2101 whether the predecessor and successor reside in different
2102 components.
2103 * bindo-graphs.adb: Add with and use clauses for Butil, Debug,
2104 Output, and Bindo.Writers. Remove with and use clauses for
2105 GNAT.Lists. Update the parameter profiles of most routines to
2106 use better parameter names. Update the implementation of most
2107 routine to use the new parameter names. Remove various
2108 redundant assertions. Remove doubly linked list EL. Add new
2109 type Precedence_Kind.
2110 (Add_Cycle): New routine.
2111 (Add_Vertex): Update the parameter profile. Update the creation
2112 of vertex attributes.
2113 (Add_Vertex_And_Complement, Body_Vertex, Column,
2114 Complementary_Vertex, Copy_Cycle_Path, Cycle_Kind_Of): New
2115 routines.
2116 (Destroy_Invocation_Graph_Edge, Destroy_Library_Graph_Cycle,
2117 Destroy_Library_Graph_Edge, Extra, File_Name,
2118 Find_All_Cycles_Through_Vertex, Find_All_Cycles_With_Edge,
2119 Find_Cycles, Find_First_Lower_Precedence_Cycle,
2120 Get_LGC_Attributes, Has_Next, Hash_Library_Graph_Cycle,
2121 Hash_Library_Graph_Cycle_Attributes, Highest_Precedence_Cycle,
2122 Highest_Precedence_Edge, In_Same_Component, Insert_And_Sort,
2123 Invocation_Edge_Count, Invocation_Graph_Encoding,
2124 Is_Cycle_Initiating_Edge, Is_Cyclic_Edge,
2125 Is_Cyclic_Elaborate_All_Edge, Is_Cyclic_Elaborate_Body_Edge,
2126 Is_Cyclic_Elaborate_Edge, Is_Cyclic_Forced_Edge,
2127 Is_Cyclic_Invocation_Edge, Is_Cyclic_With_Edge,
2128 Is_Dynamically_Elaborated, Is_Elaborate_All_Edge,
2129 Is_Elaborate_Body_Edge, Is_Elaborate_Edge: New routines.
2130 (Is_Existing_Predecessor_Successor_Relation): Removed.
2131 (Is_Forced_Edge, Is_Invocation_Edge, Is_Recorded_Cycle,
2132 Is_Recorded_Edge, Is_With_Edge, Iterate_Edges_Of_Cycle, Kind,
2133 Length): New routine.
2134 (Lib_Vertex): Removed.
2135 (Line, Links_Vertices_In_Same_Component,
2136 Maximum_Invocation_Edge_Count, Next, Normalize_And_Add_Cycle,
2137 Normalize_Cycle_Path, Number_Of_Cycles, Path, Precedence,
2138 Remove_Vertex_And_Complement, Sequence_Next_Cycle): New routines.
2139 (Sequence_Next_IGE_Id): Renamed to Sequence_Next_Edge.
2140 (Sequence_Next_IGV_Id): Renamed to Sequence_Next_Vertex.
2141 (Sequence_Next_LGE_Id): Renamed to Sequence_Next_Edge.
2142 (Sequence_Next_LGV_Id): Renamed to Sequence_Next_Vertex.
2143 (Set_Is_Existing_Predecessor_Successor_Relation): Removed.
2144 (Set_Is_Recorded_Cycle, Set_Is_Recorded_Edge,
2145 Set_LGC_Attributes, Spec_Vertex, Trace_Cycle, Trace_Edge,
2146 Trace_Eol, Trace_Vertex): New routines.
2147 * bindo-graphs.ads: Add with and use clauses for Types and
2148 GNAT.Lists. Update the parameter profiles of most routines to
2149 use better parameter names. Update the implementation of most
2150 routine to use the new parameter names. Add the new
2151 instantiated data structures IGE_Lists, IGV_Sets, LGC_Lists,
2152 LGE_Lists, LGE_Sets, LGV_Sets, and RC_Sets. Add new type
2153 Library_Graph_Cycle_Id along with an empty and initial value.
2154 Remove component Lib_Vertex and add new components Body_Vertex
2155 and Spec_Vertex to type Invocation_Graph_Vertex_Attributes. Add
2156 new type Library_Graph_Cycle_Kind. Add new iterators
2157 All_Cycle_Iterator and Edges_Of_Cycle_Iterator. Add new type
2158 Library_Graph_Cycle_Attributes. Add new components
2159 Cycle_Attributes, Cycles, and Dynamically_Elaborated to type
2160 Library_Graph_Attributes.
2161 (Body_Vertex, Column, Destroy_Invocation_Graph_Edge,
2162 Destroy_Library_Graph_Cycle_Attributes,
2163 Destroy_Library_Graph_Edge, Extra, File_Name, Find_Cycles,
2164 Has_Elaborate_All_Cycle, Has_Next, Hash_Library_Graph_Cycle,
2165 Hash_Library_Graph_Cycle_Attributes, Highest_Precedence_Cycle,
2166 In_Same_Component, Invocation_Edge_Count,
2167 Invocation_Graph_Encoding, Is_Dynamically_Elaborated,
2168 Is_Elaborate_All_Edge, Is_Elaborate_Body_Edge,
2169 Is_Elaborate_Edge, Is_Forced_Edge, Is_Invocation_Edge,
2170 Is_With_Edge, Iterate_All_Cycles, Iterate_Edges_Of_Cycle, Kind):
2171 New routines.
2172 (Length, Lib_Vertex, (Line, Next, Number_Of_Cycles, Present,
2173 Same_Library_Graph_Cycle_Attributes, Spec_Vertex): New routines.
2174 * bindo-units.adb (File_Name, Invocation_Graph_Encoding): New
2175 routines.
2176 * bindo-units.ads: Add new instantiated data structure
2177 Unit_Sets.
2178 (File_Name, Invocation_Graph_Encoding): New routine.
2179 * bindo-validators.adb: Remove with and use clauses for GNAT and
2180 GNAT.Sets. Remove membership set US. Update the parameter
2181 profiles of most routines to use better parameter names. Update
2182 the implementation of most routine to use the new parameter
2183 names.
2184 (Validate_Cycle, Validate_Cycle_Path, Validate_Cycles,
2185 Validate_Invocation_Graph_Vertex): Remove the validation of
2186 component Lib_Vertex. Add the validation of components
2187 Body_Vertex and Spec_Vertex.
2188 (Write_Error): New routine.
2189 * bindo-validators.ads (Validate_Cycles): New routine.
2190 * bindo-writers.adb: Update the parameter profiles of most
2191 routines to use better parameter names. Update the
2192 implementation of most routine to use the new parameter names.
2193 (Write_Cycle, Write_Cyclic_Edge, Write_Cycles): New routines.
2194 (Write_Invocation_Graph_Vertex): Remove the output of component
2195 Lib_Vertex. Add the output of components Body_Vertex and
2196 Spec_Vertex.
2197 * bindo-writers.ads (Write_Cycles): New routine.
2198 * debug.adb: Use binder switches -d_C and -d_P, add
2199 documentation on their usage.
2200 * gnatbind.adb: Remove with and use clauses for Binde. Delegate
2201 the choice of elaboration mechanism to Bindo.
2202 * lib-writ.adb (Column, Extra, Invoker, Kind, Line, Locations,
2203 Name, Placement, Scope, Signature, Target): Removed.
2204 (Write_Invocation_Graph): Moved at the top level.
2205 (Write_Invocation_Graph_Attributes): New routine.
2206 (Write_Invocation_Relation, Write_Invocation_Signature): Moved
2207 at the top level.
2208 * lib-writ.ads: Add a documentation section on invocation graph
2209 attributes.
2210 * sem_elab.adb (Body_Placement_Of): New routine.
2211 (Declare_Invocation_Construct): Update the call to
2212 Add_Invocation_Construct.
2213 (Declaration_Placement_Of_Node): New routine.
2214 (Get_Invocation_Attributes): Correct the retrieval of the
2215 enclosing subprogram where the postcondition procedure lives.
2216 (Placement_Of, Placement_Of_Node): Removed.
2217 (Record_Invocation_Graph): Record the encoding format used.
2218 (Record_Invocation_Graph_Encoding): New routine.
2219 (Record_Invocation_Relation): Update the call to
2220 Add_Invocation_Relation.
2221 (Spec_Placement_Of): Removed.
2222 * libgnat/g-lists.ads, libgnat/g-lists.adb (Equal): New routine.
2223
2224 2019-07-05 Ed Schonberg <schonberg@adacore.com>
2225
2226 * checks.adb (Apply_Predicate_Check): Except within the
2227 subprogram body that defines the formal, do not apply predicate
2228 check on a formal IN parameter: such a check is redundant and
2229 its expansion can lead to out-of-scope references when it is
2230 originates in a function call in a precondition,
2231
2232 2019-07-05 Yannick Moy <moy@adacore.com>
2233
2234 * sem_res.adb (Resolve_Call): Cannot inline in quantified
2235 expressions.
2236 * sem_util.adb, sem_util.ads (In_Quantified_Expression): New
2237 function.
2238
2239 2019-07-05 Bob Duff <duff@adacore.com>
2240
2241 * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
2242 Fix typo.
2243 * gnat_rm.texi: Regenerate.
2244
2245 2019-07-05 Bob Duff <duff@adacore.com>
2246
2247 * exp_attr.adb (Input): Take the No_Stream_Optimizations
2248 restriction into account.
2249
2250 2019-07-05 Claire Dross <dross@adacore.com>
2251
2252 * libgnat/a-cofove.ads, libgnat/a-cofove.adb: Definite formal
2253 vectors are now always bounded so that they do not need to be
2254 limited anymore.
2255
2256 2019-07-05 Dmitriy Anisimkov <anisimko@adacore.com>
2257
2258 * libgnat/g-traceb.ads, libgnat/g-traceb.adb (Call_Chain): New
2259 function.
2260
2261 2019-07-04 James Clarke <jrtc27@debian.org>
2262
2263 * libgnarl/s-osinte__kfreebsd-gnu.ads (clockid_t): Make type
2264 definition public.
2265 (CLOCK_REALTIME): Make value public.
2266
2267 2019-07-04 Javier Miranda <miranda@adacore.com>
2268
2269 * exp_tss.adb (Init_Proc): Adding missing support for access to
2270 subprograms and access to protected subprograms of non-default
2271 C++ constructors.
2272
2273 2019-07-04 Eric Botcazou <ebotcazou@adacore.com>
2274
2275 * gnat1drv.adb (Adjust_Global_Switches): Use proper interface to
2276 set the validity settings in CodePeer mode.
2277 * par-load.adb (Load): Remove all code dealing with validity
2278 settings.
2279 * validsw.ads (Validity_Check_Copies): Alphabetize.
2280 * validsw.adb (Reset_Validity_Check_Options): Set all options to
2281 off.
2282 (Save_Validity_Check_Options): Save all options.
2283
2284 2019-07-04 Hristian Kirtchev <kirtchev@adacore.com>
2285
2286 * exp_ch3.adb, exp_ch4.adb, exp_ch4.ads, exp_ch5.adb,
2287 exp_ch7.adb, exp_ch9.adb, exp_ch11.adb, exp_unst.adb,
2288 rtsfind.ads, sem_attr.adb, sem_ch10.adb, sem_ch12.adb,
2289 sem_ch13.adb, sem_dim.adb, sem_disp.adb, xref_lib.adb: Minor
2290 reformatting.
2291
2292 2019-07-04 Joffrey Huguet <huguet@adacore.com>
2293
2294 * libgnarl/a-taside.ads: Add assertion policy to ignore
2295 preconditions.
2296 (Abort_Task, Is_Terminated, Is_Callable): Add preconditions.
2297
2298 2019-07-04 Eric Botcazou <ebotcazou@adacore.com>
2299
2300 * doc/gnat_rm/implementation_defined_pragmas.rst: Fix
2301 capitalization and parenthesis glitches.
2302 * gnat_rm.texi: Regenerate.
2303
2304 2019-07-04 Ed Schonberg <schonberg@adacore.com>
2305
2306 * sem_ch10.adb (Remove_Context_Clauses): Handle properly the
2307 removal of a limited_with_clause which appears in the library
2308 unit oF the main unit, when some other unit in the context has a
2309 regular with_clause on the same unit, to prevent spurious
2310 visibility errors in the subsequent analysis of pending instance
2311 bodies.
2312
2313 2019-07-04 Hristian Kirtchev <kirtchev@adacore.com>
2314
2315 * sem_elab.adb: Add new type Elaboration_Phase_Status along with
2316 a global to keep track of the elaboration phase status.
2317 Initialize all internal data structures to Nil for services
2318 Elaborated_Units, Internal_Representation, and Scenario_Storage.
2319 (Build_Call_Marker): Do not create a call marker when the
2320 elaboration phase is not active.
2321 (Build_Variable_Reference_Marker): Do not create a call marker
2322 when the elaboration phase is not active.
2323 (Check_Elaboration_Scenarios): Destroy all internal structures
2324 when the elaboration phase does not have to run. Do not execute
2325 when the elaboration phase is not active.
2326 (Elaboration_Phase_Active): New routine.
2327 (Finalize_All_Data_Structures): New routine.
2328 (Initialize): Initialize all internal data structures and signal
2329 that the elaboration phase has started.
2330 (Initialize_All_Data_Structures): New routine.
2331 (Initialize_Elaborated_Units): Initialize all internal data
2332 structures.
2333 (Initialize_Internal_Representation): Initialize all internal
2334 data structures.
2335 (Initialize_Scenario_Storage): Initialize all internal data
2336 structures.
2337 (Kill_Elaboration_Scenario): Do not execute when the elaboration
2338 phase is not active.
2339 (Set_Elaboration_Phase): New routine.
2340 (Update_Elaboration_Scenario): Do not execute when the
2341 elaboration phase is not active.
2342
2343 2019-07-04 Gary Dismukes <dismukes@adacore.com>
2344
2345 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): The special
2346 treatment of calling Mask_Unfrozen_Types must also be done in
2347 the case of an Ignored_Ghost_Entity, because Expander_Active is
2348 False in that case.
2349
2350 2019-07-04 Yannick Moy <moy@adacore.com>
2351
2352 * sem_prag.adb (Check_Library_Level_Entity): Update for new rule
2353 on SPARK_Mode.
2354
2355 2019-07-04 Justin Squirek <squirek@adacore.com>
2356
2357 * sem_disp.adb (Check_Controlling_Formals): Obtain the full view
2358 before type comparison.
2359
2360 2019-07-04 Ed Schonberg <schonberg@adacore.com>
2361
2362 * exp_ch4.ads, exp_ch4.adb (Build_Eq_Call): New visible
2363 subprogram, extracted from Expand_Composite_Equality, to handle
2364 properly the composition of equality for variant record types.
2365 * exp_ch3.adb (MAke_Eq_If): Use Build_Eq_Call for each
2366 component, to handle properly the case of a component with a
2367 user-defined equality. Revert to predefined equality if the
2368 user-defined operation is abstract, to maintain compatibility
2369 with older versions,
2370
2371 2019-07-04 Justin Squirek <squirek@adacore.com>
2372
2373 * exp_ch3.adb (Build_Initialization_Call): Fixup
2374 *_skip_null_excluding_check argument to handle new default.
2375 (Init_Formals): Make *_skip_null_excluding_check formal default
2376 to False
2377 * exp_ch4.adb (Expand_N_Allocator): Add comment to note heavy
2378 code duplication
2379
2380 2019-07-04 Bob Duff <duff@adacore.com>
2381
2382 * sem_ch3.adb (Access_Definition): Do not create a master unless
2383 Tasking_Allowed. Otherwise, this fails on restricted runtimes.
2384
2385 2019-07-04 Hristian Kirtchev <kirtchev@adacore.com>
2386
2387 * sem_util.adb (Propagate_DIC_Attributes): Do not propagate the
2388 Default_Initial_Condition attributes to an incomplete type.
2389
2390 2019-07-04 Ed Schonberg <schonberg@adacore.com>
2391
2392 * sem_attr.adb (Check_Array_Type): An array type attribute such
2393 as 'First can be applied to an unconstrained array tyope when
2394 the attribute reference appears within an aspect specification
2395 and the prefix is a current instance, given that the prefix of
2396 the attribute will become a formal of the subprogram that
2397 implements the aspect (typically a predicate check).
2398
2399 2019-07-04 Piotr Trojanek <trojanek@adacore.com>
2400
2401 * sem_util.adb (Yields_Synchronized_Object): Fix typos in
2402 comments.
2403
2404 2019-07-04 Yannick Moy <moy@adacore.com>
2405
2406 * sem_util.adb (Yields_Synchronized_Object): Adapt to new SPARK
2407 rule.
2408
2409 2019-07-04 Yannick Moy <moy@adacore.com>
2410
2411 * sem_spark.adb (Check_Statement): Only check permission of
2412 object in extended return when it is of a deep type.
2413
2414 2019-07-04 Justin Squirek <squirek@adacore.com>
2415
2416 * sem_ch12.adb (Perform_Appropriate_Analysis): Added for
2417 selecting which type of analysis based on wheither the
2418 instantiation is a generic at the library-level. In which case
2419 expansion during analysis.
2420 (Preanalyze_Actuals): Modify calls to Analyze to use the new
2421 routine.
2422
2423 2019-07-04 Ed Schonberg <schonberg@adacore.com>
2424
2425 * exp_unst.adb: Handle conditional expressions.
2426
2427 2019-07-04 Yannick Moy <moy@adacore.com>
2428
2429 * sem_spark.adb (Check_Package_Spec, Check_Package_Body): Only
2430 analyze parts of the code marked in SPARK.
2431
2432 2019-07-04 Hristian Kirtchev <kirtchev@adacore.com>
2433
2434 * erroutc.adb, exp_aggr.adb, inline.adb, opt.adb, sem_ch3.adb:
2435 Minor reformatting.
2436
2437 2019-07-04 Yannick Moy <moy@adacore.com>
2438
2439 * sem_spark.adb (Explanation, Get_Expl): New functions to get
2440 the explanation for a permission mismatch.
2441 (Perm_Error, Perm_Mismatch, Perm_Error_Loop_Exit): Take
2442 explanation into account for issuing a more precise error
2443 message.
2444 (Set_Perm_Prefixes, Set_Perm_Extensions,
2445 Set_Perm_Extensions_Move): Pass suitable argument for the
2446 explanation node.
2447
2448 2019-07-04 Arnaud Charlet <charlet@adacore.com>
2449
2450 * exp_aggr.adb (In_Place_Assign_OK): Moved to top level and add
2451 support for record aggregates.
2452 (Component_Check): Use Is_CCG_Supported_Aggregate instead of a
2453 similar local predicate.
2454 (Convert_To_Assignments): Take advantage of In_Place_Assign_OK
2455 predicate when possible.
2456 (Is_CCG_Supported_Aggregate): Return False for records with
2457 representation clauses and fix the logic for dealing with nested
2458 aggregates.
2459
2460 2019-07-04 Piotr Trojanek <trojanek@adacore.com>
2461
2462 * opt.adb (Set_Config_Switches): Keep assertions policy as
2463 enabled when analysing internal units in GNATprove mode.
2464
2465 2019-07-04 Arnaud Charlet <charlet@adacore.com>
2466
2467 * exp_ch4.adb (Expand_Short_Circuit_Operator): Strip
2468 N_Variable_Reference_Marker when checking for the presence of
2469 actions.
2470
2471 2019-07-04 Arnaud Charlet <charlet@adacore.com>
2472
2473 * exp_aggr.adb (Check_Component): Take into account type
2474 conversions.
2475
2476 2019-07-04 Dmitriy Anisimkov <anisimko@adacore.com>
2477
2478 * doc/gnat_ugn/platform_specific_information.rst: Document
2479 Windows socket timeout particularity.
2480 * gnat_ugn.texi: Regenerate.
2481 * gsocket.h: Include versionhelpers.h.
2482 * socket.c (__gnat_minus_500ms): New function.
2483 * libgnat/g-sothco.ads (Minus_500ms_Windows_Timeout): New
2484 imported function.
2485 * libgnat/g-socket.adb (Set_Socket_Option): Refactor to remove
2486 500ms from the requested timeout only on old Windows version.
2487
2488 2019-07-04 Thomas Quinot <quinot@adacore.com>
2489
2490 * get_scos.adb: Remove bogus, dead code.
2491
2492 2019-07-04 Ed Schonberg <schonberg@adacore.com>
2493
2494 * sem_dim.adb (Analyze_Dimension_Array_Aggregate): If the
2495 component is an entity name, its dimensions are those of its
2496 type.
2497
2498 2019-07-03 Bob Duff <duff@adacore.com>
2499
2500 * doc/gnat_ugn/gnat_utility_programs.rst: Document new flags in
2501 GNATpp.
2502
2503 2019-07-03 Hristian Kirtchev <kirtchev@adacore.com>
2504
2505 * binde.adb: Remove with clause for System.OS_Lib.
2506 (Force_Elab_Order): Refactor the majority of the code in Butil.
2507 Use the new forced units iterator to obtain unit names.
2508 * bindo-builders.adb: Add with and use clauses for Binderr,
2509 Butil, Opt, Output, Types, GNAT, and GNAT.Dynamic_HTables. Add
2510 a hash table which maps units to line number in the forced
2511 elaboration order file.
2512 (Add_Unit): New routine.
2513 (Build_Library_Graph): Create forced edges between pairs of
2514 units listed in the forced elaboration order file.
2515 (Create_Forced_Edge, Create_Forced_Edges, Destroy_Line_Number,
2516 Duplicate_Unit_Error, Hash_Unit, Internal_Unit_Info,
2517 Is_Duplicate_Unit, Missing_Unit_Info): New routines.
2518 * bindo-graphs.adb (Is_Internal_Unit, Is_Predefined_Unit):
2519 Refactor some of the behavior to Bindo-Units.
2520 * bindo-graphs.ads: Enable the enumeration literal for forced
2521 edges.
2522 * bindo-units.adb, bindo-units.ads (Is_Internal_Unit,
2523 Is_Predefined_Unit): New routines.
2524 * butil.adb: Add with and use clauses for Opt, GNAT, and
2525 System.OS_Lib. Add with clause for Unchecked_Deallocation.
2526 (Has_Next, Iterate_Forced_Units, Next, Parse_Next_Unit_Name,
2527 Read_Forced_Elab_Order_File): New routines.
2528 * butil.ads: Add with and use clauses for Types. Add new
2529 iterator over the units listed in the forced elaboration order
2530 file.
2531 (Has_Next, Iterate_Forced_Units, Next): New routine.
2532 * namet.adb, namet.ads (Present): New routine.
2533
2534 2019-07-03 Bob Duff <duff@adacore.com>
2535
2536 * sem_ch3.adb (Access_Definition): The code was creating a
2537 master in the case where the designated type is a class-wide
2538 interface type. Create a master in the noninterface case as
2539 well. That is, create a master for all limited class-wide types.
2540
2541 2019-07-03 Yannick Moy <moy@adacore.com>
2542
2543 * erroutc.adb (Sloc_In_Range): New function to determine whether
2544 the range of a pragma Warnings covers a location, taking
2545 instantiations into account.
2546
2547 2019-07-03 Johannes Kanig <kanig@adacore.com>
2548
2549 * osint.ads, osint.adb (Get_First_Main_File_Name): New routine
2550 to access the first file provided on the command line.
2551
2552 2019-07-03 Ed Schonberg <schonberg@adacore.com>
2553
2554 * inline.adb (Process_Formals_In_Aspects): New procedure within
2555 Expand_Inlined_Call, to perform a replacement of references to
2556 formals that appear in aspect specifications within the body
2557 being inlined.
2558
2559 2019-07-03 Justin Squirek <squirek@adacore.com>
2560
2561 * sem_ch8.adb (Analyze_Object_Renaming): Add call to search for
2562 the appropriate actual subtype of the object renaming being
2563 analyzed.
2564 (Check_Constrained_Object): Minor cleanup.
2565
2566 2019-07-03 Yannick Moy <moy@adacore.com>
2567
2568 * sem_spark.adb (Get_Observed_Or_Borrowed_Expr): New function to
2569 return go through traversal function call.
2570 (Check_Type): Consistently use underlying type.
2571 (Get_Perm): Adapt for case of elaboration code where variables
2572 are not declared in the environment. Remove incorrect handling
2573 of borrow and observe.
2574
2575 2019-07-03 Hristian Kirtchev <kirtchev@adacore.com>
2576
2577 * inline.adb (Build_Return_Object_Formal): New routine.
2578 (Can_Split_Unconstrained_Function): Code clean up.
2579 (Copy_Formals,Copy_Return_Object): New routines.
2580 (Split_Unconstrained_Function): Code clean up and refactoring.
2581
2582 2019-07-03 Gary Dismukes <dismukes@adacore.com>
2583
2584 * bindo-augmentors.adb, bindo-augmentors.ads,
2585 bindo-builders.ads, bindo-elaborators.adb, sem_ch12.adb,
2586 sem_ch13.adb, sem_spark.adb, sinfo.ads: Minor editorial
2587 corrections and reformatting.
2588
2589 2019-07-03 Bob Duff <duff@adacore.com>
2590
2591 * sem_warn.adb (Check_Infinite_Loop_Warning): Avoid the warning
2592 if an Iterator_Specification is present.
2593
2594 2019-07-03 Bob Duff <duff@adacore.com>
2595
2596 * doc/gnat_ugn/gnat_utility_programs.rst: Document default
2597 new-line behavior.
2598
2599 2019-07-03 Hristian Kirtchev <kirtchev@adacore.com>
2600
2601 * ali.adb: Add with and use clauses for GNAT,
2602 GNAT.Dynamic_HTables, and Snames. Add a map from invocation
2603 signature records to invocation signature ids. Add various
2604 encodings of invocation-related attributes. Sort and update
2605 table Known_ALI_Lines.
2606 (Add_Invocation_Construct, Add_Invocation_Relation,
2607 Body_Placement_Kind_To_Code, Code_To_Body_Placement_Kind,
2608 Code_To_Invocation_Construct_Kind, Code_To_Invocation_Kind,
2609 Code_To_Invocation_Graph_Line_Kind, Destroy, Hash): New
2610 routines.
2611 (Initialize_ALI): Sort the initialization sequence. Add
2612 initialization for all invocation-related tables.
2613 (Invocation_Construct_Kind_To_Code,
2614 Invocation_Graph_Line_Kind_To_Code, Invocation_Kind_To_Code,
2615 Invocation_Signature_Of, Present): New routines.
2616 (Scan_ALI): Add the default values for invocation-related ids.
2617 Scan invocation graph lines.
2618 (Scan_Invocation_Graph_Line): New routine.
2619 * ali.ads: Add with clause for GNAT.Dynamic_Tables. Add types
2620 for invocation constructs, relations, and signatures. Add
2621 tables for invocation constructs, relations, and signatures.
2622 Update Unit_Record to capture invocation-related ids. Relocate
2623 table Unit_Id_Tables and subtypes Unit_Id_Table, Unit_Id_Array
2624 from Binde.
2625 (Add_Invocation_Construct, Add_Invocation_Relation,
2626 Body_Placement_Kind_To_Code, Code_To_Body_Placement_Kind,
2627 Code_To_Invocation_Construct_Kind, Code_To_Invocation_Kind,
2628 Code_To_Invocation_Graph_Line_Kind,
2629 Invocation_Construct_Kind_To_Code,
2630 Invocation_Graph_Line_Kind_To_Code, Invocation_Kind_To_Code,
2631 Invocation_Signature_Of, Present): New routines.
2632 * binde.adb: Add with and use clause for Types. Add use clause
2633 for ALI.Unit_Id_Tables;
2634 * binde.ads: Relocate table Unit_Id_Tables and subtypes
2635 Unit_Id_Table, Unit_Id_Array to ALI.
2636 * bindgen.adb: Remove with and use clause for ALI.
2637 * bindgen.ads: Remove with and use clause for Binde. Add with
2638 and use clause for ALI.
2639 * bindo.adb, bindo.ads, bindo-augmentors.adb,
2640 bindo-augmentors.ads, bindo-builders.adb, bindo-builders.ads,
2641 bindo-diagnostics.adb, bindo-diagnostics.ads,
2642 bindo-elaborators.adb, bindo-elaborators.ads, bindo-graphs.adb,
2643 bindo-graphs.ads, bindo-units.adb, bindo-units.ads,
2644 bindo-validators.adb, bindo-validators.ads, bindo-writers.adb,
2645 bindo-writers.ads: New units.
2646 * debug.adb: Use and describe GNAT debug switches -gnatd_F and
2647 -gnatd_G. Add GNATbind debug switches in the ranges dA .. dZ,
2648 d.a .. d.z, d.A .. d.Z, d.1 .. d.9, d_a .. d_z, d_A .. d_Z, and
2649 d_1 .. d_9. Use and describe GNATbind debug switches -d_A,
2650 -d_I, -d_L, -d_N, -d_O, -d_T, and -d_V.
2651 * exp_util.adb, exp_util.ads (Exceptions_OK): Relocate to
2652 Sem_Util.
2653 * gnatbind.adb: Add with and use clause for Bindo. Use the new
2654 Bindo elaboration order only when -d_N is in effect.
2655 * lib-writ.adb
2656 (Column, Extra, Invoker, Kind, Line, Locations, Name, Placement,
2657 Scope, Signature, Target): New routines.
2658 (Write_ALI): Output all invocation-related data.
2659 (Write_Invocation_Graph): New routine.
2660 * lib-writ.ads: Document the invocation graph ALI line.
2661 * namet.adb, namet.ads (Present): New routines.
2662 * sem_ch8.adb (Find_Direct_Name): Capture the status of
2663 elaboration checks and warnings of an identifier.
2664 (Find_Expanded_Name): Capture the status of elaboration checks
2665 and warnings of an expanded name.
2666 * sem_ch12.adb (Analyze_Generic_Package_Declaration): Ensure
2667 that invocation graph-related data within the body of the main
2668 unit is encoded in the ALI file.
2669 (Analyze_Generic_Subprogram_Declaration): Ensure that invocation
2670 graph-related data within the body of the main unit is encoded
2671 in the ALI file.
2672 (Analyze_Package_Instantiation): Perform minimal decoration of
2673 the instance entity.
2674 (Analyze_Subprogram_Instantiation): Perform minimal decoration
2675 of the instance entity.
2676 * sem_elab.adb: Perform heavy refactoring of all code. The unit
2677 is now split into "services" which specialize in one area of ABE
2678 checks. Add processing in order to capture invocation-graph
2679 related attributes of the main unit, and encode them in the ALI
2680 file. The Processing phase can now operate in multiple modes,
2681 all described by type Processing_Kind. Scenarios and targets
2682 are now distinct at the higher level, and carry their own
2683 representations. This eliminates the need to constantly
2684 recompute their attributes, and offers the various processors a
2685 uniform interface. The various initial states of the Processing
2686 phase are now encoded using type Processing_In_State, and
2687 xxx_State constants.
2688 * sem_elab.ads: Update the literals of type
2689 Enclosing_Level_Kind. Add Inline pragmas on several routines.
2690 * sem_prag.adb (Process_Inline): Ensure that invocation
2691 graph-related data within the body of the main unit is encoded
2692 in the ALI file.
2693 * sem_util.adb (Enclosing_Generic_Body, Enclosing_Generic_Unit):
2694 Code clean up.
2695 (Exceptions_OK): Relocated from Sem_Util.
2696 (Mark_Save_Invocation_Graph_Of_Body): New routine.
2697 * sem_util.ads (Exceptions_OK): Relocated from Sem_Util.
2698 (Mark_Save_Invocation_Graph_Of_Body): New routine.
2699 * sinfo.adb (Is_Elaboration_Checks_OK_Node): Now applicable to
2700 N_Variable_Reference_Marker.
2701 (Is_Elaboration_Warnings_OK_Node): Now applicable to
2702 N_Expanded_Name, N_Identifier, N_Variable_Reference_Marker.
2703 (Is_Read): Use Flag4.
2704 (Is_SPARK_Mode_On_Node): New applicable to
2705 N_Variable_Reference_Marker.
2706 (Is_Write): Use Flag5.
2707 (Save_Invocation_Graph_Of_Body): New routine.
2708 (Set_Is_Elaboration_Checks_OK_Node): Now applicable to
2709 N_Variable_Reference_Marker.
2710 (Set_Is_Elaboration_Warnings_OK_Node): Now applicable to
2711 N_Expanded_Name, N_Identifier, N_Variable_Reference_Marker.
2712 (Set_Is_SPARK_Mode_On_Node): New applicable to
2713 N_Variable_Reference_Marker.
2714 (Set_Save_Invocation_Graph_Of_Body): New routine.
2715 * sinfo.ads: Update the documentation of attributes
2716 Is_Elaboration_Checks_OK_Node, Is_Elaboration_Warnings_OK_Node,
2717 Is_SPARK_Mode_On_Node. Update the flag usage of attributes
2718 Is_Read, Is_Write. Add attribute Save_Invocation_Graph_Of_Body
2719 and update its occurrence in nodes.
2720 (Save_Invocation_Graph_Of_Body): New routine along with pragma
2721 Inline.
2722 (Set_Save_Invocation_Graph_Of_Body): New routine along with
2723 pragma Inline.
2724 * switch-b.adb (Scan_Binder_Switches): Refactor the scanning of
2725 debug switches.
2726 (Scan_Debug_Switches): New routine.
2727 * libgnat/g-dynhta.adb, libgnat/g-dynhta.ads (Contains): New routine.
2728 * libgnat/g-graphs.adb (Associate_Vertices): Update the use of
2729 Component_Vertex_Iterator.
2730 (Contains_Component, Contains_Edge, Contains_Vertex, Has_Next):
2731 Reimplemented.
2732 (Iterate_Component_Vertices): New routine.
2733 (Iterate_Vertices): Removed.
2734 (Next): Update the parameter profile.
2735 (Number_Of_Component_Vertices, Number_Of_Outgoing_Edges): New
2736 routines.
2737 * libgnat/g-graphs.ads: Update the initialization of
2738 No_Component. Add type Component_Vertex_Iterator. Remove type
2739 Vertex_Iterator.
2740 (Has_Next): Add new versions and remove old ones.
2741 (Iterate_Component_Vertices): New routine.
2742 (Iterate_Vertices): Removed.
2743 (Next): Add new versions and remove old ones.
2744 (Number_Of_Component_Vertices, Number_Of_Outgoing_Edges): New
2745 routines.
2746 * libgnat/g-sets.adb (Contains): Reimplemented.
2747 * gcc-interface/Make-lang.in (GNATBIND_OBJS): Add
2748 GNAT.Dynamic_HTables, GNAT.Graphs and Bindo units.
2749 * rtsfind.ads: Remove extra space.
2750
2751 2019-07-03 Yannick Moy <moy@adacore.com>
2752
2753 * sem_spark.adb: Add support for locally borrowing and observing
2754 a path.
2755 (Get_Root_Object): Add parameter Through_Traversal to denote
2756 when we are interesting in getting to the traversed parameter.
2757 (Is_Prefix_Or_Almost): New function to support detection of
2758 illegal access to borrowed or observed paths.
2759 (Check_Pragma): Add analysis of assertion pragmas.
2760
2761 2019-07-03 Ed Schonberg <schonberg@adacore.com>
2762
2763 * sem_ch13.adb (Build_Predicate_Functions): In a generic context
2764 we do not build the bodies of predicate fuctions, but the
2765 expression in a static predicate must be elaborated to allow
2766 case coverage checking within the generic unit.
2767 (Build_Discrete_Static_Predicate): In a generic context, return
2768 without building function body once the
2769 Static_Discrete_Predicate expression for the type has been
2770 constructed.
2771
2772 2019-07-03 Hristian Kirtchev <kirtchev@adacore.com>
2773
2774 * bindgen.adb, inline.adb, layout.adb, sem_ch12.adb,
2775 sem_ch13.adb, sem_ch7.adb, styleg.adb: Minor reformatting.
2776
2777 2019-07-03 Bob Duff <duff@adacore.com>
2778
2779 * par-ch3.adb (P_Defining_Identifier): Call
2780 Check_Defining_Identifier_Casing.
2781 * style.ads, styleg.ads, styleg.adb
2782 (Check_Defining_Identifier_Casing): New procedure to check for
2783 mixed-case defining identifiers.
2784 * stylesw.ads, stylesw.adb (Style_Check_Mixed_Case_Decls): New
2785 flag for checking for mixed-case defining identifiers.
2786 * doc/gnat_ugn/building_executable_programs_with_gnat.rst:
2787 Document new feature.
2788 * gnat_ugn.texi: Regenerate.
2789
2790 2019-07-03 Eric Botcazou <ebotcazou@adacore.com>
2791
2792 * doc/gnat_ugn/building_executable_programs_with_gnat.rst
2793 (Warning message control): Document that -gnatw.z/Z apply to
2794 array types.
2795 * freeze.adb (Freeze_Entity): Give -gnatw.z warning for array
2796 types as well, but not if the specified alignment is the minimum
2797 one.
2798 * gnat_ugn.texi: Regenerate.
2799
2800 2019-07-03 Bob Duff <duff@adacore.com>
2801
2802 * einfo.ads, exp_util.adb, layout.ads, sinfo.ads: Spell "laid"
2803 correctly.
2804
2805 2019-07-03 Ed Schonberg <schonberg@adacore.com>
2806
2807 * sem_ch13.adb (Analyze_Attribute_Definition_Clause): No error
2808 message on attribute applied to a renaming when the renamed
2809 object is an aggregate (from code reading).
2810 (Check_Aspect_At_End_Of_Declarations): In a generic context
2811 where freeze nodes are not generated, the original expression
2812 for an aspect may need to be analyzed to precent spurious
2813 conformance errors when compared with the expression that is
2814 anakyzed at the end of the current declarative list.
2815
2816 2019-07-03 Eric Botcazou <ebotcazou@adacore.com>
2817
2818 * layout.adb (Layout_Type): Do not set the component size of an
2819 array with a scalar component if the component type is
2820 overaligned.
2821
2822 2019-07-03 Ed Schonberg <schonberg@adacore.com>
2823
2824 * inline.adb (Make_Loop_Labels_Unique): New procedure to modify
2825 the source code of subprograms that are inlined by the
2826 front-end, to prevent accidental duplication between loop labels
2827 in the inlined code and the code surrounding the inlined call.
2828
2829 2019-07-03 Hristian Kirtchev <kirtchev@adacore.com>
2830
2831 * doc/gnat_ugn/elaboration_order_handling_in_gnat.rst: Update
2832 the section on resolving elaboration circularities to eliminate
2833 certain combinations of switches which together do not produce
2834 the desired effect and confuse users.
2835 * gnat_ugn.texi: Regenerate.
2836
2837 2019-07-03 Arnaud Charlet <charlet@adacore.com>
2838
2839 * bindgen.adb (Gen_Main): Disable generation of reference to
2840 Ada_Main_Program_Name for CCG.
2841 * bindusg.adb (Display): Add -G to the command-line usage for
2842 gnatbind.
2843 * opt.ads (Generate_C_Code): Update comment.
2844 * switch-b.adb (Scan_Binder_Switches): Add handling for -G.
2845
2846 2019-07-03 Arnaud Charlet <charlet@adacore.com>
2847
2848 * sem_ch7.adb (Has_Referencer): Do not consider inlined
2849 subprograms when generating C code, which allows us to generate
2850 static inline subprograms.
2851
2852 2019-07-03 Justin Squirek <squirek@adacore.com>
2853
2854 * sem_ch6.adb (Check_Conformance): Add expression checking for
2855 constant modifiers in anonymous access types (in addition to
2856 "non-null" types) so that they are considered "matching" for
2857 subsequent conformance tests.
2858
2859 2019-07-03 Arnaud Charlet <charlet@adacore.com>
2860
2861 * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
2862 Clarify wording on No_Multiple_Elaboration.
2863 * gnat_rm.texi: Regenerate.
2864
2865 2019-07-03 Ed Schonberg <schonberg@adacore.com>
2866
2867 * sem_ch8.adb (Find_Selected_Component): If the prefix is the
2868 current instance of a type or subtype, complete the resolution
2869 of the name by finding the component of the type denoted by the
2870 selector name.
2871
2872 2019-07-03 Eric Botcazou <ebotcazou@adacore.com>
2873
2874 * doc/gnat_rm/interfacing_to_other_languages.rst (Interfacing to C):
2875 Document that boolean types with convention C now map to C99 bool.
2876 * gnat_rm.texi: Regenerate.
2877
2878 2019-07-03 Javier Miranda <miranda@adacore.com>
2879
2880 * exp_attr.adb (Expand_Min_Max_Attribute): Code cleanup:
2881 removing code that it is now never executed in the CCG compiler
2882 (dead code).
2883
2884 2019-07-02 Iain Sandoe <iain@sandoe.co.uk>
2885
2886 * libgnat/system-darwin-ppc.ads: Set Stack_Check_Probes True for
2887 PPC Darwin.
2888
2889 2019-07-01 Ed Schonberg <schonberg@adacore.com>
2890
2891 * sem_ch12.adb (Is_Defaulted): New predicate in
2892 Check_Formal_Package_Intance, to skip the conformance of checks
2893 on parameters of a formal package that are defaulted,
2894
2895 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
2896
2897 * checks.adb, exp_ch9.adb, exp_unst.adb, sem_ch4.adb,
2898 sem_prag.adb, sem_spark.adb: Minor reformatting.
2899
2900 2019-07-01 Ed Schonberg <schonberg@adacore.com>
2901
2902 * sem_attr.adb (Analyze_Attribute, case Enum_Rep): Allow prefix
2903 of attribute to be an attribute reference of a discrete type.
2904
2905 2019-07-01 Eric Botcazou <ebotcazou@adacore.com>
2906
2907 * sem_ch12.adb (Analyze_Subprogram_Instantiation): Move up
2908 handling of Has_Pragma_Inline_Always and deal with
2909 Has_Pragma_No_Inline.
2910
2911 2019-07-01 Ed Schonberg <schonberg@adacore.com>
2912
2913 * sem_ch3.adb (Build_Derived_Record_Type): If the parent type is
2914 declared as a subtype of a private type with an inherited
2915 discriminant constraint, its generated full base appears as a
2916 record subtype, so we need to retrieve its oen base type so that
2917 the inherited constraint can be applied to it.
2918
2919 2019-07-01 Yannick Moy <moy@adacore.com>
2920
2921 * sem_spark.adb: Completely rework the algorithm for ownership
2922 checking, as the rules in SPARK RM have changed a lot.
2923 * sem_spark.ads: Update comments.
2924
2925 2019-07-01 Dmitriy Anisimkov <anisimko@adacore.com>
2926
2927 * gsocket.h (Has_Sockaddr_Len): Use the offset of sin_family offset in
2928 the sockaddr_in structure to determine the existence of length field
2929 before the sin_family.
2930
2931 2019-07-01 Ed Schonberg <schonberg@adacore.com>
2932
2933 * sem_prag.adb (Analyze_Pragma, case Weak_External): Pragma only
2934 applies to entities with run-time addresses, not to types.
2935
2936 2019-07-01 Piotr Trojanek <trojanek@adacore.com>
2937
2938 * einfo.adb, sem_ch7.adb, sem_prag.adb, sem_util.adb: Update
2939 references to the SPARK RM after the removal of Rule 7.1.4(5).
2940
2941 2019-07-01 Piotr Trojanek <trojanek@adacore.com>
2942
2943 * sysdep.c: Cleanup references to LynuxWorks in docs and
2944 comments.
2945
2946 2019-07-01 Ed Schonberg <schonberg@adacore.com>
2947
2948 * checks.adb (Insert_Valid_Check): Do not apply validity check
2949 to variable declared within a protected object that uses the
2950 Lock_Free implementation, to prevent unwarranted constant
2951 folding, because entities within such an object msut be treated
2952 as volatile.
2953
2954 2019-07-01 Eric Botcazou <ebotcazou@adacore.com>
2955
2956 * exp_ch9.adb (Check_Inlining): Deal with Has_Pragma_No_Inline.
2957
2958 2019-07-01 Ed Schonberg <schonberg@adacore.com>
2959
2960 * exp_unst.adb (Visit_Node, Check_Static_Type): Improve the
2961 handling of private and incomplete types whose full view is an
2962 access type, to detect additional uplevel references in dynamic
2963 bounds. This is relevant to N_Free_Statement among others that
2964 manipulate types whose full viww may be an access type.
2965
2966 2019-07-01 Pat Rogers <rogers@adacore.com>
2967
2968 * doc/gnat_rm/representation_clauses_and_pragmas.rst: Correct
2969 size indicated for R as a component of an array.
2970 * gnat_rm.texi: Regenerate.
2971
2972 2019-07-01 Justin Squirek <squirek@adacore.com>
2973
2974 * libgnat/s-win32.ads: Add definition for ULONG, modify
2975 OVERLAPPED type, and add appropriate pragmas.
2976
2977 2019-07-01 Bob Duff <duff@adacore.com>
2978
2979 * gnat1drv.adb (gnat1drv): Call Write_ALI if the main unit is
2980 ignored-ghost.
2981
2982 2019-07-01 Yannick Moy <moy@adacore.com>
2983
2984 * sem_ch4.adb (Operator_Check): Refine error message.
2985
2986 2019-07-01 Piotr Trojanek <trojanek@adacore.com>
2987
2988 * libgnat/a-calend.ads: Revert "Global => null" contracts on
2989 non-pure routines.
2990
2991 2019-07-01 Piotr Trojanek <trojanek@adacore.com>
2992
2993 * exp_attr.adb, libgnat/g-graphs.ads: Fix typos in comments:
2994 componant -> component.
2995
2996 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
2997
2998 * libgnat/g-graphs.adb: Use type Directed_Graph rather than
2999 Instance in various routines.
3000 * libgnat/g-graphs.ads: Change type Instance to Directed_Graph.
3001 Update various routines that mention the type.
3002
3003 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
3004
3005 * libgnat/g-sets.adb: Use type Membership_Set rathern than
3006 Instance in various routines.
3007 * libgnat/g-sets.ads: Change type Instance to Membership_Set.
3008 Update various routines that mention the type.
3009
3010 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
3011
3012 * libgnat/g-lists.adb: Use type Doubly_Linked_List rather than
3013 Instance in various routines.
3014 * libgnat/g-lists.ads: Change type Instance to
3015 Doubly_Linked_List. Update various routines that mention the
3016 type.
3017
3018 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
3019
3020 * libgnat/g-dynhta.adb: Use type Dynamic_Hash_Table rather than
3021 Instance in various routines.
3022 * libgnat/g-dynhta.ads: Change type Instance to
3023 Dynamic_Hash_Table. Update various routines that mention the
3024 type.
3025
3026 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
3027
3028 * exp_attr.adb, exp_ch7.adb, exp_unst.adb, sem_ch3.adb,
3029 sem_util.adb, uintp.adb, uintp.ads: Minor reformatting.
3030
3031 2019-07-01 Javier Miranda <miranda@adacore.com>
3032
3033 * exp_attr.adb (Expand_Min_Max_Attribute): Disable expansion of
3034 'Min/'Max on integer, enumeration, fixed point and floating
3035 point types since the CCG backend now provides in file
3036 standard.h routines to support it.
3037
3038 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
3039
3040 * impunit.adb: Add GNAT.Graphs to list Non_Imp_File_Names_95.
3041 * Makefile.rtl, gcc-interface/Make-lang.in: Register unit
3042 GNAT.Graphs.
3043 * libgnat/g-dynhta.adb: Various minor cleanups (use Present
3044 rather than direct comparisons).
3045 (Delete): Reimplement to use Delete_Node.
3046 (Delete_Node): New routine.
3047 (Destroy_Bucket): Invoke the provided destructor.
3048 (Present): New routines.
3049 * libgnat/g-dynhta.ads: Add new generic formal Destroy_Value.
3050 Use better names for the components of iterators.
3051 * libgnat/g-graphs.adb, libgnat/g-graphs.ads: New unit.
3052 * libgnat/g-lists.adb: Various minor cleanups (use Present
3053 rather than direct comparisons).
3054 (Delete_Node): Invoke the provided destructor.
3055 (Present): New routine.
3056 * libgnat/g-lists.ads: Add new generic formal Destroy_Element.
3057 Use better names for the components of iterators.
3058 (Present): New routine.
3059 * libgnat/g-sets.adb, libgnat/g-sets.ads (Destroy, Preset,
3060 Reset): New routines.
3061
3062 2019-07-01 Dmitriy Anisimkov <anisimko@adacore.com>
3063
3064 * libgnat/g-sothco.adb (Get_Address): Fix the case when AF_INET6
3065 is not defined.
3066
3067 2019-07-01 Ed Schonberg <schonberg@adacore.com>
3068
3069 * exp_attr.adb (Expand_Attribute_Reference, case Invalid_Value):
3070 Resolve result of call to Get_Simple_Init_Val, which may be a
3071 conversion of a literal.
3072
3073 2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
3074
3075 * freeze.adb (Freeze_Expression): Remove the horrible useless
3076 name hiding of N. Insert the freeze nodes generated by the
3077 expression prior to the expression when the nearest enclosing
3078 scope is transient.
3079
3080 2019-07-01 Pierre-Marie de Rodat <derodat@adacore.com>
3081
3082 * doc/gnat_ugn/building_executable_programs_with_gnat.rst: Fix
3083 formatting issues in the -gnatR section.
3084 * gnat_ugn.texi: Regenerate.
3085
3086 2019-06-30 Iain Sandoe <iain@sandoe.co.uk>
3087
3088 * gnatlink.adb (Link_Step): Remove duplicate -static-libgcc switches.
3089 Push -shared-libgcc explicitly, when it is the target default (unless
3090 overidden by the static flag).
3091 When the user has put an instance of shared/static-libgcc do not push
3092 a duplicate of this.
3093
3094 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
3095
3096 * gcc-interface/decl.c (gnat_to_gnu_entity): Beep up comment on SAVED,
3097 and tweak comment on the assertion about the scopes of Itypes. Do not
3098 skip the regular processing for Itypes that are E_Record_Subtype with
3099 a Cloned_Subtype. Get the Cloned_Subtype for every E_Record_Subtype
3100 if the type is dummy and hasn't got its own freeze node.
3101 <E_Record_Subtype>: Save again the DECL of the Cloned_Subtype, if any.
3102 <E_Access_Subtype>: Save again the DECL of the equivalent type.
3103 (Gigi_Equivalent_Type) <E_Access_Subtype>: New case.
3104
3105 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
3106
3107 * gcc-interface/utils.c (unchecked_convert): Tweak comment. Only skip
3108 dereferences when padding to have the same size on both sides. Do it
3109 for destination types with self-referential size too.
3110
3111 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
3112
3113 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Type>: If the
3114 type requires strict alignment, then set the RM size to the type size.
3115 Rework handling of alignment and sizes of tagged types in ASIS mode.
3116 (validate_size): Rename local variable and remove special handling for
3117 strict-alignment types.
3118 * gcc-interface/utils.c (finish_record_type): Constify local variables
3119 and use properly typed constants.
3120
3121 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
3122
3123 * gcc-interface/decl.c (gnat_to_gnu_field): Rework error messages for
3124 fields requiring strict alignment, add explicit test on Storage_Unit
3125 for position and size, and mention type alignment for position.
3126
3127 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
3128
3129 * gcc-interface/trans.c (mark_visited_r): Set TYPE_SIZES_GIMPLIFIED on
3130 the main variant of a type, if any.
3131
3132 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
3133
3134 * gcc-interface/decl.c (set_nonaliased_component_on_array_type): Add
3135 missing guard for the presence of TYPE_CANONICAL.
3136 (set_reverse_storage_order_on_array_type): Likewise.
3137
3138 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
3139
3140 * gcc-interface/gigi.h (make_packable_type): Remove default value.
3141 (value_factor_p): Tweak prototype.
3142 * gcc-interface/decl.c (gnat_to_gnu_entity): Add comment.
3143 (gnat_to_gnu_component_type): Likewise.
3144 (gnat_to_gnu_field): Likewise. Fetch the position of the field earlier
3145 and simplify the condition under which the type is packed. Declare
3146 local variable is_bitfield. Pass 1 as max_align to make_packable_type
3147 if it is set to true.
3148 (copy_and_substitute_in_layout): Pass 0 to make_packable_type.
3149 * gcc-interface/utils.c (make_packable_array_type): New function.
3150 (make_packable_type): Use it to rewrite the type of array field.
3151 (maybe_pad_type): Pass align parameter to make_packable_type.
3152 (create_field_decl): Minor tweaks.
3153 (value_factor_p): Assert that FACTOR is a power of 2 and replace the
3154 modulo computation by a masking operation.
3155
3156 2019-06-25 Eric Botcazou <ebotcazou@adacore.com>
3157
3158 * gcc-interface/decl.c (gnat_to_gnu_entity): Remove superfluous test
3159 in previous change.
3160 * gcc-interface/gigi.h (maybe_character_type): Fix formatting.
3161 (maybe_character_value): Likewise.
3162
3163 2019-06-24 Jan Hubicka <jh@suse.cz>
3164
3165 * gcc-interface/decl.c (gnat_to_gnu_entity): Check that
3166 type is array or integer prior checking string flag.
3167 * gcc-interface/gigi.h (maybe_character_type): Likewise.
3168 (maybe_character_value): Likewise.
3169
3170 2019-06-24 Martin Sebor <msebor@redhat.com>
3171
3172 * gcc-interface/utils.c (handle_nonnull_attribute): Quote attribute
3173 name.
3174
3175 2019-06-18 Arnaud Charlet <charlet@adacore.com>
3176
3177 PR ada/80590
3178 * sem_ch5.adb (Analyze_Loop_Statement): Avoid exception propagation
3179 during normal processing.
3180
3181 2019-06-17 Arnaud Charlet <charlet@adacore.com>
3182
3183 PR ada/80590
3184 * exp_ch9.adb (Expand_N_Delay_Relative_Statement): Swap the two
3185 conditions to avoid a unnecessary exception propagation in the default
3186 case.
3187
3188 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3189
3190 * gcc-interface/utils.c (handle_stack_protect_attribute): Move around.
3191
3192 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3193
3194 * doc/gnat_rm/implementation_defined_pragmas.rst (Machine_Attribute):
3195 Document additional optional parameters.
3196 * sem_prag.adb (Analyze_Pragma) <Pragma_Machine_Attribute>: Accept
3197 more than one optional parameter.
3198 * gcc-interface/decl.c (prepend_one_attribute_pragma): Alphabetize
3199 the list of supported pragmas. Simplify the handling of parameters
3200 and add support for more than one optional parameter.
3201 * gcc-interface/utils.c (attr_cold_hot_exclusions): New constant.
3202 (gnat_internal_attribute_table): Add entry for no_icf, noipa, flatten,
3203 used, cold, hot, target and target_clones.
3204 (begin_subprog_body): Do not create the RTL for the subprogram here.
3205 (handle_noicf_attribute): New static function.
3206 (handle_noipa_attribute): Likewise.
3207 (handle_flatten_attribute): Likewise.
3208 (handle_used_attribute): Likewise.
3209 (handle_cold_attribute): Likewise.
3210 (handle_hot_attribute): Likewise.
3211 (handle_target_attribute): Likewise.
3212 (handle_target_clones_attribute): Likewise.
3213
3214 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3215
3216 * gcc-interface/trans.c (lvalue_required_for_attribute_p): Return 0
3217 for 'Size too.
3218 (Identifier_to_gnu): Use the actual subtype for a reference to a
3219 packed array in a return statement.
3220 (Attribute_to_gnu) <Attr_Size>: Do not strip VIEW_CONVERT_EXPRs from
3221 the prefix in every case.
3222
3223 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3224
3225 * gcc-interface/trans.c (gnat_to_gnu): Remove superfluous tests on
3226 Backend_Overflow_Checks_On_Target and rework comments.
3227
3228 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3229
3230 * gcc-interface/trans.c (walk_nesting_tree): New static function.
3231 (finalize_nrv): Use it to walk the entire nesting tree.
3232
3233 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3234
3235 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Subtype>: Remove
3236 obsolete test on Is_For_Access_Subtype.
3237
3238 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3239
3240 * gcc-interface/decl.c (components_to_record): Set a name on the type
3241 created for the REP part, if any.
3242 * gcc-interface/utils.c (finish_record_type): Only take the maximum
3243 when merging sizes for a variant part at offset 0.
3244 (merge_sizes): Rename has_rep parameter into max.
3245
3246 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3247
3248 * gcc-interface/utils.c (gnat_internal_attribute_table): Add support
3249 for stack_protect attribute.
3250 (handle_stack_protect_attribute): New static function.
3251
3252 2019-05-28 Eric Botcazou <ebotcazou@adacore.com>
3253
3254 * gcc-interface/decl.c (intrin_arglists_compatible_p): Do not return
3255 false if the internal builtin uses a variable list.
3256
3257 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
3258
3259 * gcc-interface/trans.c (Call_to_gnu): Do not initialize the temporary
3260 created out of addressability concerns if it's for the _Init parameter
3261 of an initialization procedure.
3262
3263 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
3264
3265 * gcc-interface/ada-builtin-types.def: New file.
3266 * gcc-interface/ada-builtins.def: Likewise.
3267 * gcc-interface/ada-tree.h (BUILT_IN_LIKELY): New macro.
3268 (BUILT_IN_UNLIKELY): Likewise.
3269 * gcc-interface/trans.c (independent_iterations_p): Initialize the
3270 auto-vector to 16 elements.
3271 (Call_to_gnu): Remove local variable and change the vector of actual
3272 parameters to an auto-vector. Do not convert actual parameters to
3273 the argument type for front-end built-in functions. Add support for
3274 front-end built-in functions.
3275 (build_noreturn_cond): Use internal instead of built-in function.
3276 * gcc-interface/utils.c (c_builtin_type): Include ada-builtin-types.def
3277 (install_builtin_function_types): Likewise.
3278 (install_builtin_functions): Include ada-builtins.def first.
3279
3280 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
3281
3282 * gcc-interface/utils.c (maybe_pad_type): Issue the warning for the
3283 specific case of component types preferably.
3284
3285 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
3286
3287 * gcc-interface/trans.c (Identifier_to_gnu): Minor tweaks.
3288 (gnat_to_gnu): Do not convert the result if it is a reference to an
3289 unconstrained array used as the prefix of an attribute reference that
3290 requires an lvalue.
3291
3292 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
3293
3294 * gcc-interface/trans.c (Gigi_Types_Compatible): New predicate.
3295 (Identifier_to_gnu): Use it to assert that the type of the identifier
3296 and that of its entity are compatible for gigi. Rename a couple of
3297 local variables and separate the processing of the result type.
3298
3299 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
3300
3301 * gcc-interface/trans.c (Call_to_gnu): Use the unpadded type when
3302 putting back an intermediate conversion the type of the actuals.
3303
3304 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
3305
3306 * gcc-interface/trans.c (gnat_to_gnu) <Shift operations>: Convert the
3307 count to the unsigned version of its base type before proceeding.
3308
3309 2019-05-16 Martin Sebor <msebor@redhat.com>
3310
3311 * gcc-interface/trans.c (check_inlining_for_nested_subprog): Quote
3312 reserved names.
3313
3314 2019-05-08 Arnaud Charlet <charlet@adacore.com>
3315
3316 * standard.ads.h: New file.
3317
3318 2019-05-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3319
3320 * gcc-interface/Makefile.in (install-gcc-specs): Use foreach.
3321 Honor DESTDIR.
3322
3323 2019-04-29 Michael K. Darling <darlingm@gmail.com>
3324
3325 * gnatvsn.ads: Bump Library_Version to 10.
3326
3327 2019-04-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
3328 Bernd Edlinger <bernd.edlinger@hotmail.de>
3329 Jakub Jelinek <jakub@redhat.com>
3330
3331 PR target/89093
3332 * raise-gcc.c (TARGET_ATTRIBUTE): Define.
3333 (continue_unwind, personality_body, PERSONALITY_FUNCTION): Add
3334 TARGET_ATTRIBUTE.
3335
3336 2019-04-07 Eric Botcazou <ebotcazou@adacore.com>
3337
3338 * libgnat/i-cexten.ads (CFloat_128): New type.
3339
3340 2019-03-22 Dmitriy Anisimkov <anisimko@adacore.com>
3341
3342 PR ada/89583
3343 * libgnat/g-socket.adb (Bind_Socket, Connect_Socket,
3344 Send_Socket): Fix the computation of structure lengths passed to
3345 low level routines.
3346 (Is_IPv6_Address): Fix the number of expected colons.
3347
3348 2019-03-11 Martin Liska <mliska@suse.cz>
3349
3350 * gcc-interface/misc.c (gnat_post_options): Wrap option name in string
3351 format message and fix GNU coding style.
3352
3353 2019-02-08 Eric Botcazou <ebotcazou@adacore.com>
3354
3355 * gcc-interface/trans.c (gnat_to_gnu) <N_Aggregate>: Minor tweak.
3356 * gcc-interface/utils.c (convert): Do not pad when doing an unchecked
3357 conversion here. Use TREE_CONSTANT throughout the function.
3358 (unchecked_convert): Also pad if the source is a CONSTRUCTOR and the
3359 destination is a more aligned array type or a larger aggregate type,
3360 but not between original and packable versions of a type.
3361
3362 2019-02-08 Eric Botcazou <ebotcazou@adacore.com>
3363
3364 * gcc-interface/utils.c (max_size) <tcc_unary>: Be prepared for an
3365 operand with VOID_TYPE.
3366
3367 2019-02-08 Eric Botcazou <ebotcazou@adacore.com>
3368
3369 * gcc-interface/trans.c (elaborate_all_entities): Do not elaborate the
3370 entities of a package renaming another one.
3371
3372 2019-02-08 Eric Botcazou <ebotcazou@adacore.com>
3373
3374 * gcc-interface/trans.c (Regular_Loop_to_gnu): Replace tests on
3375 individual flag_unswitch_loops and flag_tree_loop_vectorize switches
3376 with test on global optimize switch.
3377 (Raise_Error_to_gnu): Likewise.
3378
3379 2019-02-07 Eric Botcazou <ebotcazou@adacore.com>
3380
3381 * libgnarl/s-linux__sparc.ads (ETIMEDOUT): Set to correct value.
3382
3383 2019-02-06 Arnaud Charlet <charlet@adacore.com>
3384
3385 * libgnarl/s-linux__x32.ads: Resync list of signals with s-linux.ads
3386
3387 2019-01-27 Eric Botcazou <ebotcazou@adacore.com>
3388
3389 * repinfo.adb (List_Component_Layout): Remove superfluous space for
3390 zero-sized field.
3391 * gcc-interface/ada-tree.h (TYPE_IS_EXTRA_SUBTYPE_P): New macro.
3392 * gcc-interface/gigi.h (create_extra_subtype): Declare.
3393 * gcc-interface/decl.c (TYPE_ARRAY_SIZE_LIMIT): Likewise.
3394 (update_n_elem): New function.
3395 (gnat_to_gnu_entity): Use create_extra_subtype to create extra subtypes
3396 instead of doing it manually.
3397 <E_Array_Type>: Use update_n_elem to compute the maximum size. Use the
3398 index type instead of base type for the bounds. Set TYPE_ARRAY_MAX_SIZE
3399 of the array to the maximum size.
3400 <E_Array_Subtype>: Create an extra subtype using the index type of the
3401 base array type for self-referential bounds. Use update_n_elem to
3402 compute the maximum size. Set TYPE_ARRAY_MAX_SIZE of the array to the
3403 maximum size.
3404 (gnat_to_gnu_field): Clear DECL_NONADDRESSABLE_P on discriminants.
3405 * gcc-interface/misc.c (gnat_get_alias_set): Return the alias set of
3406 the base type for an extra subtype.
3407 (gnat_type_max_size): Remove obsolete code.
3408 * gcc-interface/trans.c (Attribute_to_gnu): Minor tweak.
3409 (can_be_lower_p): Deal with pathological types.
3410 * gcc-interface/utils.c (create_extra_subtype): New function.
3411 (create_field_decl): Minor tweak.
3412 (max_size) <tcc_reference>: Compute a better value by using the extra
3413 subtypes on the self-referential bounds.
3414 <tcc_binary>: Rewrite. Deal with "negative value" in unsigned types.
3415 <tcc_expression>: Likewise.
3416 * gcc-interface/utils2.c (compare_arrays): Retrieve the original bounds
3417 of the arrays upfront. Swap only if the second length is not constant.
3418 Use comparisons on the original bounds consistently for the null tests.
3419 (build_binary_op): Use TYPE_IS_EXTRA_SUBTYPE_P macro.
3420 (build_allocator): Minor tweak.
3421
3422 2019-01-27 Eric Botcazou <ebotcazou@adacore.com>
3423
3424 * gcc-interface/decl.c (array_type_has_nonaliased_component): Return
3425 the same value for every dimension of a multidimensional array type.
3426
3427 2019-01-26 Eric Botcazou <ebotcazou@adacore.com>
3428
3429 * gcc-interface/trans.c (Regular_Loop_to_gnu): Use the SLOC of the
3430 iteration scheme, if present, throughout the translation.
3431
3432 2019-01-26 Eric Botcazou <ebotcazou@adacore.com>
3433
3434 * gcc-interface/trans.c (gnat_to_gnu) <N_Assignment_Statement>: Use
3435 DECL_SIZE_UNIT instead of TYPE_SIZE_UNIT for the size to be assigned
3436 by a call to memset if the LHS is a DECL.
3437
3438 2019-01-26 Eric Botcazou <ebotcazou@adacore.com>
3439
3440 * gcc-interface/trans.c (struct loop_info_d): Remove artificial field.
3441 (Loop_Statement_to_gnu): Do not set it.
3442
3443 2019-01-26 Eric Botcazou <ebotcazou@adacore.com>
3444
3445 * gcc-interface/trans.c (Iterate_Acc_Clause_Arg): Fix formatting.
3446 (Acc_gnat_to_gnu): Likewise.
3447 (Acc_Data_to_gnu): Likewise.
3448 (Acc_Var_to_gnu): Likewise.
3449 (Acc_Reduc_to_gnu): Likewise.
3450 (Acc_Size_List_to_gnu): Likewise.
3451 (Pragma_to_gnu) <Pragma_Acc_Loop>: Likewise.
3452 <Pragma_Acc_Data>): Likewise.
3453 (find_loop_for): Remove default value for parameters.
3454 * gcc-interface/trans.c (gnat_to_gnu) <N_Op_And>: Merge into...
3455 <N_Op_Eq>): ...this.
3456
3457 2019-01-26 Eric Botcazou <ebotcazou@adacore.com>
3458
3459 * gcc-interface/decl.c (annotate_value) <INTEGER_CST>: Use test on
3460 the sign bit instead of on the sign of the value.
3461 <PLUS_EXPR>: Turn addition of negative constant into subtraction.
3462 <MULT_EXPR>: Add test for degenerate case.
3463 <BIT_AND_EXPR>: Simplify.
3464
3465 2019-01-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
3466
3467 * s-oscons-tmplt.c (AF_INET6): Do not undefine for RTEMS.
3468
3469 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
3470
3471 PR other/16615
3472 * exp_ch11.adb: Change "can not" to "cannot".
3473 * sem_ch4.adb: Likewise.
3474
3475 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
3476
3477 PR other/16615
3478 * exp_ch9.adb: Mechanically replace "can not" with "cannot".
3479 * libgnat/s-regpat.ads: Likewise.
3480 * par-ch4.adb: Likewise.
3481 * set_targ.adb: Likewise.
3482 * types.ads: Likewise.
3483
3484 2019-01-08 Justin Squirek <squirek@adacore.com>
3485
3486 Revert:
3487 2018-07-31 Justin Squirek <squirek@adacore.com>
3488
3489 * lib-writ.adb (Write_With_Lines): Modfiy the generation
3490 of dependencies within ali files so that source unit
3491 bodies are properly listed even if said bodies are
3492 missing. Perform legacy behavior in GNATprove mode.
3493 * lib-writ.ads: Modify documentation to reflect current
3494 behavior.
3495
3496 and:
3497 2018-09-26 Justin Squirek <squirek@adacore.com>
3498
3499 * lib-writ.adb, lib-writ.ads (Write_With_Lines): Add
3500 documentation and an extra conditional check for RCI
3501 units so that generated ali files will list the spec
3502 only instead of a body when a body is not found.
3503
3504 2019-01-04 Eric Botcazou <ebotcazou@adacore.com>
3505
3506 * gnatvsn.ads: Bump copyright year.
3507
3508 2019-01-01 Jakub Jelinek <jakub@redhat.com>
3509
3510 Update copyright years.
3511
3512 * gnat_ugn.texi: Bump @copying's copyright year.
3513 * gnat_rm.texi: Likewise.
3514 \f
3515 Copyright (C) 2019 Free Software Foundation, Inc.
3516
3517 Copying and distribution of this file, with or without modification,
3518 are permitted in any medium without royalty provided the copyright
3519 notice and this notice are preserved.