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