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