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