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