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