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