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