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