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