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