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