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