[Ada] Spurious error on unused Part_Of constituent
[gcc.git] / gcc / ada / ChangeLog
1 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
2
3 * sem_prag.adb (Has_Visible_State): Do not consider generic formals
4 because they are not part of the visible state space. Add constants to
5 the list of acceptable visible states.
6 (Propagate_Part_Of): Do not consider generic formals when propagating
7 the Part_Of indicator.
8 * sem_util.adb (Entity_Of): Do not follow renaming chains which go
9 through a generic formal because they are not visible for SPARK
10 purposes.
11 * sem_util.ads (Entity_Of): Update the comment on usage.
12
13 2018-07-17 Ed Schonberg <schonberg@adacore.com>
14
15 * sem_util.adb (Gather_Components): A discriminant of an ancestor may
16 have been constrained by a later ancestor, so when looking for the
17 value of that hidden discriminant we must examine the stored constraint
18 of other ancestors than the immediate parent type.
19
20 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
21
22 * exp_ch6.adb (Build_Heap_Or_Pool_Allocator): Ensure that scoping
23 constructs and entities within receive new entities when replicating a
24 tree.
25 (Expand_N_Extended_Return_Statement): Ensure that scoping constructs
26 and entities within receive new entities when replicating a tree.
27 * sem_util.adb (New_Copy_Tree): Add new formal Scopes_In_EWA_OK.
28 (Visit_Entity): Visit entities within scoping constructs inside
29 expression with actions nodes when requested by the caller. Add blocks,
30 labels, and procedures to the list of entities which need replication.
31 * sem_util.ads (New_Copy_Tree): Add new formal Scopes_In_EWA_OK. Update
32 the comment on usage.
33
34 2018-07-17 Arnaud Charlet <charlet@adacore.com>
35
36 * doc/gnat_ugn/about_this_guide.rst,
37 doc/gnat_ugn/gnat_and_program_execution.rst: Remove references to gcov.
38 * gnat_ugn.texi: Regenerate.
39
40 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
41
42 * contracts.adb (Analyze_Contracts): Add specialized processing for
43 package instantiation contracts.
44 (Analyze_Package_Contract): Remove the verification of a missing
45 Part_Of indicator.
46 (Analyze_Package_Instantiation_Contract): New routine.
47 * contracts.ads (Analyze_Package_Contract): Update the comment on
48 usage.
49 * sem_prag.adb (Check_Missing_Part_Of): Ensure that the entity of the
50 instance is being examined when trying to determine whether a package
51 instantiation needs a Part_Of indicator.
52
53 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
54
55 * einfo.adb, exp_ch7.adb, exp_ch9.adb, exp_unst.adb, inline.adb,
56 sem.adb, sem_ch12.adb, sem_ch13.adb, sem_ch3.adb, sem_eval.adb,
57 sem_util.adb: Minor reformatting.
58
59 2018-07-16 Arnaud Charlet <charlet@adacore.com>
60
61 * frontend.adb: Only unnest subprograms if no previous errors were
62 detected.
63
64 2018-07-16 Ed Schonberg <schonberg@adacore.com>
65
66 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Handle loops that
67 contain blocks in the elaboration code for a package body. Create the
68 elaboration subprogram wrapper only if there is a subprogram
69 declaration in a block or loop.
70
71 2018-07-16 Ed Schonberg <schonberg@adacore.com>
72
73 * exp_ch4.adb (Expand_Set_Membership): Use New_Copy_Tree to perform a
74 deep copy of the left operand when building each conjuct of the
75 expanded membership operation, to avoid sharing nodes between them.
76 This sharing interferes with the unnesting machinery and is generally
77 undesirable.
78
79 2018-07-16 Ed Schonberg <schonberg@adacore.com>
80
81 * exp_unst.adb (Visit_Node): Handle 'Address references that are
82 calls.
83
84 2018-07-16 Ed Schonberg <schonberg@adacore.com>
85
86 * exp_unst.adb (Visit_Node): Handle the semantic of Storage_Pool field
87 in relevant nodes: Allocate, Free, and return statements.
88
89 2018-07-16 Ed Schonberg <schonberg@adacore.com>
90
91 * sem_ch12.adb (Analyze_Package_Instantiation): Handle properly an
92 instance that carries an aspect Default_Storage_Pool that overrides a
93 default storage pool that applies to the generic unit. The aspect in
94 the generic unit was removed before copying it in the instance, rather
95 than removing it from the copy of the aspects that are appended to the
96 aspects in the instance.
97
98 2018-07-16 Ed Schonberg <schonberg@adacore.com>
99
100 * einfo.adb (Set_Is_Uplevel_Referenced_Entity): Flag can appear on
101 loop parameters.
102 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Handle subprogram
103 bodies.
104 * exp_ch9.adb (Reset_Scopes_To): Set the scopes of entities local to an
105 entry body to be the corresponding generated subprogram, for correct
106 analysis of uplevel references.
107 * exp_unst.adb (Visit_Node): Handle properly binary and unary operators
108 Ignore pragmas, fix component associations.
109 (Register_Subprograms): Subprograms in synchronized types must be
110 treated as reachable.
111
112 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
113
114 * sem_util.adb (Check_No_Hidden_State): Ignore internally-generated
115 states and variables.
116
117 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
118
119 * sinfo.ads, sinfo.adb (Withed_Body): Remove.
120 (Set_Withed_Body): Remove.
121
122 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
123
124 * sem.adb (Walk_Library_Items): Skip units with configuration pragmas
125 when printing debug info.
126
127 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
128
129 * sem.adb (Walk_Library_Items): Reuse local constant.
130 (Is_Subunit_Of_Main): Turn condition to positive and flip the
131 IF-THEN-ELSE branches; avoid potentially ineffective assignment to the
132 Lib variable.
133
134 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
135
136 * sem.adb (Walk_Library_Items): Deconstruct dead code.
137
138 2018-07-16 Ed Schonberg <schonberg@adacore.com>
139
140 * exp_ch4.adb (Expand_N_Op_Xor): Use common routine
141 Expand_Nonbinary_Modular_Op. Needed for unnesting.
142
143 2018-07-16 Ed Schonberg <schonberg@adacore.com>
144
145 * sem_ch3.adb (Inherit_Predicate_Flags): A non-discrete type may have a
146 static predicate (for example True) but has no
147 static_discrete_predicate.
148
149 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
150
151 * exp_attr.adb (Build_Record_VS_Func): Handle corner cases dealing with
152 class-wide types and record extensions.
153
154 2018-07-16 Justin Squirek <squirek@adacore.com>
155
156 * sem_eval.adb (Eval_Integer_Literal): Add exception for avoiding
157 checks on expanded literals within if and case expressions.
158
159 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
160
161 * libgnat/s-wchwts.adb (Wide_String_To_String): Use the appropriate
162 longest sequence factor. Code clean up.
163 (Wide_Wide_String_To_String): Use the appropriate longest sequence
164 factor. Code clean up.
165
166 2018-07-16 Javier Miranda <miranda@adacore.com>
167
168 * sem_ch13.adb (Analyze_Attribute_Definition_Clause): Report an error
169 on Bit_Order when defined for a record extension.
170
171 2018-07-16 Arnaud Charlet <charlet@adacore.com>
172
173 * libgnat/s-objrea.ads: Minor code clean up.
174
175 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
176
177 * sem_ch3.adb (Process_Discriminants): Adjust reference to the SPARM RM
178 rule.
179
180 2018-07-16 Arnaud Charlet <charlet@adacore.com>
181
182 * adaint.c (__gnat_set_file_time_name): Code clean up.
183
184 2018-07-16 Javier Miranda <miranda@adacore.com>
185
186 * inline.adb (Build_Body_To_Inline): Minor code reorganization that
187 ensures that calls to function Has_Single_Return() pass a decorated
188 tree.
189 (Has_Single_Return.Check_Return): Peform checks on entities (instead on
190 relying on their characters).
191
192 2018-07-16 Javier Miranda <miranda@adacore.com>
193
194 * exp_ch5.adb (Expand_Iterator_Loop_Over_Array): Code cleanup. Required
195 to avoid generating an ill-formed tree that confuses gnatprove causing
196 it to blowup.
197
198 2018-07-16 Yannick Moy <moy@adacore.com>
199
200 * inline.adb (Has_Single_Return): Rewrap comment.
201
202 2018-07-16 Eric Botcazou <ebotcazou@adacore.com>
203
204 * einfo.ads: Minor tweak in comment.
205
206 2018-07-16 Javier Miranda <miranda@adacore.com>
207
208 * sem_ch4.adb (Analyze_Membership_Op): Code cleanup.
209
210 2018-07-16 Javier Miranda <miranda@adacore.com>
211
212 * exp_attr.adb (Expand_N_Attribute_Reference ['Count]): Do not
213 transform 'Count into a function call if the current scope has been
214 eliminated.
215
216 2018-07-16 Javier Miranda <miranda@adacore.com>
217
218 * sem_util.ads, sem_util.adb (Has_Prefix): Move this function to the
219 public part of this package.
220
221 2018-07-16 Yannick Moy <moy@adacore.com>
222
223 * sem_res.adb (Resolve_Call): Do not inline calls inside
224 compiler-generated functions translated as predicates in GNATprove.
225
226 2018-07-16 Gary Dismukes <dismukes@adacore.com>
227
228 * exp_ch4.adb (Expand_N_Allocator): Test for Storage_Pool being RTE in
229 addition to the existing test for no Storage_Pool as a condition
230 enabling generation of the call to Check_Standard_Allocator when the
231 restriction No_Standard_Allocators_After_Elaboration is active.
232 * libgnat/s-elaall.ads (Check_Standard_Allocator): Correct comment to
233 say that Storage_Error will be raised (rather than Program_Error).
234 * libgnat/s-elaall.adb (Check_Standard_Allocator): Raise Storage_Error
235 rather than Program_Error when Elaboration_In_Progress is False.
236
237 2018-07-16 Gary Dismukes <dismukes@adacore.com>
238
239 * sem_eval.adb: Fix spelling for compile-time-known.
240
241 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
242
243 * sem_eval.adb (Compile_Time_Known_Value): Add a guard which prevents
244 the compiler from entering infinite recursion when trying to determine
245 whether a deferred constant has a compile time known value, and the
246 initialization expression of the constant is a reference to the
247 constant itself.
248
249 2018-07-16 Nicolas Roche <roche@adacore.com>
250
251 * libgnat/a-strunb.adb, libgnat/a-strunb__shared.adb: Adjust growth
252 factor from 1/32 to 1/2 for Unbounded_String.
253
254 2018-07-13 Eric Botcazou <ebotcazou@adacore.com>
255
256 * gcc-interface/lang.opt (funsigned-char): New option.
257 * gcc-interface/misc.c (gnat_handle_option): Accept it.
258 * gcc-interface/utils.c (finish_character_type): Tweak comment.
259
260 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
261
262 * gcc-interface/decl.c (gnat_to_gnu_entity): Add GNAT_DECL local
263 variable and use it throughout.
264 <E_Variable>: If the nominal subtype of the object is unconstrained,
265 compute the Ada size separately and put in on the padding type if the
266 size is not fixed.
267 <E_Record_Type>: Minor tweak.
268 * gcc-interface/misc.c (gnat_type_max_size): Rename max_size_unit
269 into max_size_unit throughout.
270
271 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
272
273 * gcc-interface/gigi.h (add_decl_expr): Adjust prototype.
274 * gcc-interface/decl.c (gnat_to_gnu_entity): Remove useless test.
275 * gcc-interface/trans.c (add_stmt_with_node): Remove exceptions.
276 (add_decl_expr): Change type of second parameter and rename it.
277 (renaming_from_instantiation_p): New function moved from...
278 (set_expr_location_from_node): Test for exceptions here and add one
279 for actual subtypes built for unconstrained composite actuals.
280 * gcc-interface/utils.c (renaming_from_instantiation_p): ...here.
281
282 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
283
284 * gcc-interface/trans.c (lvalue_required_p): Remove ALIASED parameter
285 and adjust recursive calls.
286 (Identifier_to_gnu): Adjust calls to lvalue_required_p.
287 (gnat_to_gnu): Likewise.
288
289 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
290
291 * gcc-interface/decl.c (gnat_to_gnu_param): Minor tweak.
292 (gnat_to_gnu_subprog_type): New pure_flag local variable. Set it for
293 a pure Ada function with a by-ref In parameter. Propagate it onto the
294 function type by means of the TYPE_QUAL_RESTRICT flag.
295 * gcc-interface/utils.c (finish_subprog_decl): Set DECL_PURE_P if the
296 function type has the TYPE_QUAL_RESTRICT flag set.
297
298 2018-07-06 Jim Wilson <jimw@sifive.com>
299
300 * Makefile.rtl: Add riscv*-linux* support.
301 * libgnarl/s-linux__riscv.ads: New.
302 * libgnat/system-linux-riscv.ads: New.
303
304 * Make-generated.in (treeprs.ads): Use $(GNATMAKE) instead of gnatmake.
305 (einfo.h, sinfo.h, stamp-snames, stamp-nmake): Likewise.
306 * gcc-interface/Makefile.in (xoscons): Likewise.
307
308 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
309
310 * libgnat/system-rtems.ads (Frontend_Exceptions): Set to False.
311 (ZCX_By_Default): Set to True.
312
313 2018-07-02 Martin Liska <mliska@suse.cz>
314
315 * gnatvsn.ads: Bump Library_Version to 9.
316
317 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
318
319 * gcc-interface/ada-tree.h (TYPE_RETURN_BY_DIRECT_REF_P): Change from
320 using TYPE_LANG_FLAG_4 to using TYPE_LANG_FLAG_0.
321 (TYPE_ALIGN_OK): Move around.
322 (TYPE_PADDING_FOR_COMPONENT): Remove superfluous parentheses.
323 * gcc-interface/decl.c (change_qualified_type): Move to...
324 (gnat_to_gnu_entity): Adjust comment.
325 * gcc-interface/gigi.h (change_qualified_type): ...here; make inline.
326 (ceil_pow2): Use ceil_log2.
327 * gcc-interface/utils.c (finish_subprog_decl): Add couple of comments
328 and do not set TREE_SIDE_EFFECTS.
329 (handle_noreturn_attribute): Use change_qualified_type.
330
331 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
332
333 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Constant>: Do not get
334 the expression of a dispatch table that is not being defined.
335 <E_Record_Subtype>: Remove obsolete kludge.
336
337 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
338
339 * gcc-interface/decl.c (warn_on_field_placement): Use specific wording
340 for discriminants.
341 (warn_on_list_placement): New static function.
342 (components_to_record): Use it to warn on multiple fields in list.
343
344 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
345
346 * gcc-interface/decl.c (variant_desc): Add AUX field.
347 (gnat_to_gnu_entity) <discrete_type>: Do not call compute_record_mode
348 directly.
349 (reverse_sort_field_list): New static function.
350 (components_to_record): Place the variant part at the beginning of the
351 field list when there is an obvious order of increasing position.
352 (build_variant_list): Initialize it.
353 (create_variant_part_from): Do not call compute_record_mode directly.
354 (copy_and_substitute_in_layout): Likewise. Always sort the fields with
355 fixed position in order of increasing position, in the record and all
356 the variants, in any. Call reverse_sort_field_list.
357 * gcc-interface/utils.c (make_packable_type): Compute the sizes before
358 calling finish_record_type. Do not call compute_record_mode directly.
359 (finish_record_type): Overhaul final processing depending on REP_LEVEL
360 and call finish_bitfield_layout if it is equal to one or two.
361
362 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
363
364 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Array_Type>: Reuse the
365 existing fields of a dummy fat pointer type, if any. Clear the
366 TYPE_DECL_SUPPRESS_DEBUG on the fat pointer type after completing it.
367
368 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
369
370 * contracts.adb (Process_Body_Postconditions): Expand only checked
371 postconditions.
372 (Process_Contract_Cases_For): Expand only checked contract cases.
373 (Process_Inherited_Preconditions): Ignored class-wide preconditions are
374 partially expanded because some of their semantic checks are tied to
375 the expansion.
376 (Process_Preconditions_For): Expand only checked preconditions.
377 (Process_Spec_Postconditions): Expand only checked preconditions.
378 Ignored class-wide preconditions are partially expanded because some of
379 their semantic checks are tied to the expansion.
380 * exp_prag.adb (Expand_N_Pragma): Suppress the expansion of ignored
381 assertion pragmas.
382 * exp_util.adb (Add_Inherited_Invariants): Code clean up.
383 * sem_util.adb (Propagate_Invariant_Attributes): Code clean up.
384
385 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
386
387 * exp_ch9.adb, exp_unst.adb, inline.adb, libgnat/a-ciorma.adb,
388 libgnat/a-ciormu.adb, libgnat/a-ciorse.adb, libgnat/a-coorma.adb,
389 libgnat/a-coormu.adb, libgnat/a-coorse.adb, sem_prag.adb: Minor
390 reformatting.
391
392 2018-06-11 Gary Dismukes <dismukes@adacore.com>
393
394 * exp_unst.ads, exp_unst.adb: Typo fixes and minor reformatting.
395
396 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
397
398 * exp_ch6.adb (Add_Unconstrained_Actuals_To_Build_In_Place_Call): Do
399 not add any actuals when the size of the object is known, and the
400 caller will allocate it.
401 (Build_Heap_Allocator): Rename to Build_Heap_Or_Pool_Allocator to
402 better illustrate its functionality. Update the comment on the
403 generated code. Generate a branch for the heap and pool cases where
404 the object is not necessarity controlled.
405 (Expand_N_Extended_Return_Statement): Expand the extended return
406 statement into four branches depending the requested mode if the caller
407 will not allocate the object on its side.
408 (Make_Build_In_Place_Call_In_Allocator): Do not allocate a controlled
409 object on the caller side because this will violate the semantics of
410 finalizable types. Instead notify the function to allocate the object
411 on the heap or a user-defined storage pool.
412 (Needs_BIP_Alloc_Form): A build-in-place function needs to be notified
413 which of the four modes to employ when returning a limited controlled
414 result.
415 * exp_util.adb (Build_Allocate_Deallocate_Proc): Remove a redundant
416 guard which is already covered in Needs_Finalization.
417
418 2018-06-11 Olivier Hainque <hainque@adacore.com>
419
420 * libgnat/s-excmac*.ads: Factorize Unwind_Action definitions ...
421 * libgnat/a-exexpr.adb: ... Here, then add comments describing the
422 major datastructures associated with the current exception raised.
423 (Setup_Current_Excep): Accept a "Phase" argument conveying the
424 unwinding phase during which this subprogram is called. For an Ada
425 exception, don't update the current exception buffer from the raised
426 exception object during SEARCH_PHASE, as this is redundant with the
427 call now issued just before propagation starts.
428 (Propagate_GCC_Exception): Move call to Setup_Current_Excep ahead of
429 the unwinding start, conveying Phase 0.
430 (Unhandled_Except_Handler): Pass UA_CLEANUP_PHASE as the Phase value on
431 the call to Setup_Current_Excep.
432 * raise-gcc.c (personality_body): Pass uw_phases as the Phase argument
433 on calls to Setup_Current_Excep.
434
435 2018-06-11 Ed Schonberg <schonberg@adacore.com>
436
437 * exp_unst.ads, exp_unst.adb (Needs_Fat_Pointer,
438 Build_Access_Type_Decl): New subprograms to handle uplevel references
439 to formals of an unconstrained array type. The activation record
440 component for these is an access type, and the reference is rewritten
441 as an explicit derefenrence of that component.
442
443 2018-06-11 Bob Duff <duff@adacore.com>
444
445 * libgnat/a-ciorma.adb, libgnat/a-ciormu.adb, libgnat/a-ciorse.adb,
446 libgnat/a-coorma.adb, libgnat/a-coormu.adb, libgnat/a-coorse.adb:
447 (Element): Add code to detect dangling cursors in some cases.
448
449 2018-06-11 Yannick Moy <moy@adacore.com>
450
451 * sem_ch6.adb (Build_Subprogram_Declaration): Mark parameters as coming
452 from source.
453
454 2018-06-11 Ed Schonberg <schonberg@adacore.com>
455
456 * sem_ch13.adb (Build_Predicate_Functions): For a derived type, ensure
457 that its parent is already frozen so that its predicate function, if
458 any, has already been constructed.
459
460 2018-06-11 Yannick Moy <moy@adacore.com>
461
462 * sem_prag.adb (Check_Mode_Restriction_In_Enclosing_Context): Adapt for
463 possible task unit as the enclosing context.
464
465 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
466
467 * gnat1drv.adb: Remove use clause for Repinfo.
468 (Gnat1drv): Beef up comment about the interplay between -gnatc and
469 back-end annotations. Use full qualified name for List_Rep_Info.
470
471 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
472
473 * libgnat/g-arrspl.ads: Add pragma Preelaborate.
474
475 2018-06-11 Arnaud Charlet <charlet@adacore.com>
476
477 * exp_ch4.adb (Expand_Record_Equality): Remove extraneous "True and
478 then" and general logical "ada" in codepeer mode.
479
480 2018-06-11 Javier Miranda <miranda@adacore.com>
481
482 * exp_ch9.adb (Expand_N_Protected_Body): Add missing handling of
483 N_Call_Marker nodes.
484
485 2018-06-11 Arnaud Charlet <charlet@adacore.com>
486
487 * exp_ch3.adb, exp_unst.adb, inline.adb, sem_prag.adb: Minor
488 reformatting.
489
490 2018-06-11 Yannick Moy <moy@adacore.com>
491
492 * doc/gnat_rm/implementation_defined_pragmas.rst: Add Suppressible
493 argument to Assertion_Policy
494 * gnat_rm.texi: Regenerate.
495
496 2018-06-11 Yannick Moy <moy@adacore.com>
497
498 * gnat1drv.adb: Do not check representation information in CodePeer and
499 GNATprove modes, as these modes call a special backend instead of gigi,
500 so do not have the information.
501
502 2018-06-11 Yannick Moy <moy@adacore.com>
503
504 * inline.adb (Build_Body_To_Inline): Consider case of extended return
505 of unconstrained type as one case where inlining is not supported.
506 (Expand_Inlined_Call): Remove special case for body as extended return
507 of unconstrained type.
508
509 2018-06-11 Yannick Moy <moy@adacore.com>
510
511 * sem_prag.adb (Analyze_Part_Of): Only allow Part_Of on non-generic
512 unit.
513 (Check_Missing_Part_Of): Do not force Part_Of on generic unit.
514
515 2018-06-11 Piotr Trojanek <trojanek@adacore.com>
516
517 * sem_ch13.adb (Analyze_Aspect_Specifications): Don't split AND THEN
518 expressions in Pre/Post contracts while in GNATprove_Mode.
519
520 2018-06-11 Piotr Trojanek <trojanek@adacore.com>
521
522 * sem_util.adb (Is_Potentially_Unevaluated): Fix detection of contracts
523 with AND THEN expressions broken down into individual conjuncts.
524
525 2018-06-11 Ed Schonberg <schonberg@adacore.com>
526
527 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Add guard.
528
529 2018-06-11 Ed Schonberg <schonberg@adacore.com>
530
531 * exp_unst.adb (Visit_Node): Skip generic associations.
532
533 2018-06-11 Arnaud Charlet <charlet@adacore.com>
534
535 * libgnat/memtrack.adb (fwrite): Remove second definition.
536
537 2018-06-11 Javier Miranda <miranda@adacore.com>
538
539 * sinfo.ads (Is_Dynamic_Coextension): Adding documentation.
540 (Is_Static_Coextension): Adding documentation.
541 * sinfo.adb (Is_Dynamic_Coextension): Extending the assertion.
542 (Is_Static_Coextension): Extending the assertion.
543 * sem_util.adb (Mark_Allocator): Clear Is_Static_Coextension when
544 setting flag Is_Dynamic_Coextension (and vice versa).
545
546 2018-06-11 Ed Schonberg <schonberg@adacore.com>
547
548 * exp_unst.adb (Search_Subprograms): Handle explicitly stubs at the top
549 level of a compilation unit, becuase they may contain nested
550 subprograms that need an activation record.
551
552 2018-06-11 Arnaud Charlet <charlet@adacore.com>
553
554 * Makefile.rtl: Compile Ada files with $(ADAC) instead of $(CC).
555
556 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
557
558 * exp_ch11.adb, exp_unst.adb, inline.adb, sem_ch12.adb, sem_util.adb:
559 Minor reformatting.
560 * sinfo.ads: Fix a typo.
561
562 2018-06-11 Ed Schonberg <schonberg@adacore.com>
563
564 * inline.adb (Expand_Inlined_Call): If no optimization level is
565 specified, the expansion of a call to an Inline_Always function is
566 fully performed in the front-end even on a target that support back-end
567 inlining.
568
569 2018-06-11 Arnaud Charlet <charlet@adacore.com>
570
571 * bindgen.adb (Gen_Adainit): Protect reference to System.Parameters
572 with Sec_Stack_Used.
573
574 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
575
576 * sem_ch8.adb (Find_Direct_Name): Mode the declaration of
577 Is_Assignment_LHS further in. Use predicate
578 Needs_Variable_Reference_Marker to determine whether to create a
579 variable marker.
580 (Find_Expanded_Name): Mode the declaration of Is_Assignment_LHS further
581 in. Use predicate Needs_Variable_Reference_Marker to determine whether
582 to create a variable marker.
583 * sem_elab.adb (Build_Variable_Reference_Marker): Remove the various
584 checks that determine whether the identifier or expanded name is a
585 suitable variable reference. The checks are now performed by
586 Needs_Variable_Reference_Marker.
587 * sem_res.adb (Resolve_Actuals): Use predicate
588 Needs_Variable_Reference_Marker to determine whether to create a
589 variable marker.
590 * sem_util.adb (Needs_Variable_Reference_Marker): New routine.
591 * sem_util.ads (Needs_Variable_Reference_Marker): New routine.
592
593 2018-06-11 Valentine Reboul <reboul@adacore.com>
594
595 * doc/gnat_rm.rst, doc/gnat_ugn.rst: Rename "GPL Edition" into
596 "Community Edition".
597
598 2018-06-11 Ed Schonberg <schonberg@adacore.com>
599
600 * sem_ch12.adb (Install_Body): In order to determine the placement of
601 the freeze node for an instance of a generic nested within another
602 instance, take into account that the outer instance may be declared in
603 the visible part of a package and the inner intance may be in the
604 private part of the same package.
605
606 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
607
608 * errout.adb (Special_Msg_Delete): Remove handling of Atomic and VFA.
609
610 2018-06-11 Nicolas Roche <roche@adacore.com>
611
612 * libgnat/s-valuti.adb (Bad_Value): Ensure that we do not generate a
613 stack overflow while raising a constraint error.
614
615 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
616
617 * repinfo.ads (Rep_Value): Use a single line.
618 * repinfo.adb (Rep_Value): Likewise.
619 (List_Attr): Do not use string concatenation.
620
621 2018-06-11 Ed Schonberg <schonberg@adacore.com>
622
623 * exp_unst.adb (Visit_Node): Check reference to formal parameter of
624 current procedure, because the bounds of its type may be uplevel
625 references.
626
627 2018-06-02 Eric Botcazou <ebotcazou@adacore.com>
628
629 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Constant>: If this is
630 not a definition, retrieve the expression only if it's a compile-time
631 known value if we are just annotating types.
632
633 * gcc-interface/utils.c (convert): Do not try to upcast properly for a
634 conversion between tagged types in type_annotate_only mode.
635
636 2018-06-02 Eric Botcazou <ebotcazou@adacore.com>
637
638 * gcc-interface/ada-tree.h (TYPE_PADDING_FOR_COMPONENT): New macro.
639 * gcc-interface/decl.c (gnat_to_gnu_component_type): Cache the padding
640 type built for an aliased component with variable size.
641
642 2018-05-31 Pierre-Marie de Rodat <derodat@adacore.com>
643
644 * doc/gnat_ugn/project-manager-figure.png: Delete.
645
646 2018-05-31 Pierre-Marie de Rodat <derodat@adacore.com>
647
648 * vxworks-arm-link.spec, vxworks-e500-link.spec,
649 vxworks-gnat-crtbe-link.spec, vxworks-smp-arm-link.spec,
650 vxworks-smp-e500-link.spec, vxworks-smp-ppc-link.spec,
651 vxworks-smp-x86-link.spec: New files.
652
653 2018-05-31 Pierre-Marie de Rodat <derodat@adacore.com>
654
655 * gnatvsn.adb: Re-center the copyright header.
656 * indepsw-darwin.adb: Adjust the starting copyright year to 2011.
657
658 2018-05-31 Fedor Rybin <frybin@adacore.com>
659
660 * doc/gnat_ugn/gnat_utility_programs.rst: Document Stubs_Subdir in
661 gnattest section on user guide.
662
663 2018-05-31 Ed Schonberg <schonberg@adacore.com>
664
665 * sem_res.adb (Resolve_String_Literal): If the type is a string type
666 whose component subtype has a static predicate, ensure that the
667 predicate is applied to each character by expanding the string into the
668 equivalent aggregate. This is also done if the component subtype is
669 constrained.
670
671 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
672
673 * gcc-interface/trans.c (Call_to_gnu): Remove obsolete code.
674
675 2018-05-31 Piotr Trojanek <trojanek@adacore.com>
676
677 * sem_ch6.adb (Check_Missing_Return): Handle procedures with no
678 explicit spec.
679
680 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
681
682 * gcc-interface/trans.c (Call_to_gnu): In the by-reference case, if
683 the type of the parameter is an unconstrained array type, convert
684 to the type of the actual before the type of the formal only if the
685 conversion was suppressed earlier. Use in_param and gnu_actual_type
686 local variables throughout, and uniform spelling for In Out or Out.
687 Also remove dead code in the component-by-reference case.
688
689 2018-05-31 Frederic Konrad <konrad@adacore.com>
690
691 * tracebak.c (STOP_FRAME): Harden condition.
692 (is_return_from, EXTRA_STOP_CONDITION): New helpers for VxWorks in RTP
693 mode.
694
695 2018-05-31 Ed Schonberg <schonberg@adacore.com>
696
697 * checks.adb (Apply_Discriminant_Check): Do not apply discriminant
698 check to a call to a build-in-place function, given that the return
699 object is limited and cannot be copied.
700
701 2018-05-31 Olivier Hainque <hainque@adacore.com>
702
703 * libgnat/s-atopri.ads: Update comment on __atomic_compare_exchange
704 builtins.
705
706 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
707
708 * gcc-interface/trans.c (Call_to_gnu): If this is a function call and
709 there is no target, also create a temporary for the return value for
710 an allocator if the type is an unconstrained record type with default
711 discriminant.
712
713 2018-05-31 Hristian Kirtchev <kirtchev@adacore.com>
714
715 * exp_ch7.adb (Find_Transient_Context): An iteration scheme is a valid
716 boudary for a transient scope.
717
718 2018-05-31 Valentine Reboul <reboul@adacore.com>
719
720 * gnatvsn.ads: Rename "GPL" version to "Community".
721
722 2018-05-31 Ed Schonberg <schonberg@adacore.com>
723
724 * einfo.ads: Improve documentation for the Is_Unsigned_Type entity
725 flag.
726
727 2018-05-31 Piotr Trojanek <trojanek@adacore.com>
728
729 * sem_prag.adb (Analyze_Pragma): Replace call to Unique_Defining_Entity
730 with a semantically equivalent call to Defining_Entity.
731
732 2018-05-31 Piotr Trojanek <trojanek@adacore.com>
733
734 * sem_prag.adb (Analyze_Pragma): Set Etype on the rewritten
735 Max_Queue_Length expression.
736
737 2018-05-31 Sergey Rybin <rybin@adacore.com>
738
739 * doc/gnat_ugn/gnat_and_program_execution.rst: gnatelim does not need
740 that the main unit to be built before the call, now it computes the
741 closure of the main unit itself.
742 * gnat_ugn.texi: Regenerate.
743
744 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
745
746 * repinfo.adb (List_Structural_Record_Layout): Set First to false
747 after having listed the fields of the parent type, if any.
748
749 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
750
751 * gcc-interface/decl.c (gnat_to_gnu_entity) <discrete_type>: Do not
752 deal with the ___XP suffix for packed array types here...
753 <E_Array_Subtype>: ...or here when processing the implementation type
754 but when processing the original type instead. Do not reuse the DECL
755 of the implementation type for the original type. Tidy up.
756
757 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
758
759 * einfo.ads (Object_Size_Clause): Declare.
760 * einfo.adb (Object_Size_Clause): New function.
761 * gcc-interface/utils.c (maybe_pad_type): Test Has_Size_Clause before
762 retrieving Size_Clause and post the warning on the object size clause
763 if Has_Object_Size_Clause is true.
764
765 2018-05-31 Javier Miranda <miranda@adacore.com>
766
767 * sem_util.ads, sem_util.adb (Find_Primitive_Eq): New subprogram.
768 * exp_ch4.adb (Expand_Composite_Equality): Use the new subprogram
769 Find_Primitive_Eq to search for the primitive of types whose underlying
770 type is a tagged type.
771
772 2018-05-31 Yannick Moy <moy@adacore.com>
773
774 * sem_prag.adb (Analyze_Pragma.Check_Loop_Pragma_Placement): Inverse
775 order of treatment between nodes recognized as loop pragmas (or
776 generated from one) and block statements.
777
778 2018-05-31 Doug Rupp <rupp@adacore.com>
779
780 * libgnat/s-osprim__posix2008.adb (Clock): Implement using
781 clock_gettime.
782
783 2018-05-31 Ed Schonberg <schonberg@adacore.com>
784
785 * exp_unst.ads, exp_unst.adb (In_Synchronized_Unit): New predicate to
786 mark subprograms that cannot be eliminated because they must be treated
787 as reachable from outside the current unit. This includes entry bodies
788 and protected operations.
789
790 2018-05-31 Ed Schonberg <schonberg@adacore.com>
791
792 * exp_ch4.adb (Expand_Modular_Addition, Expand_Modular_Subtraction):
793 Convert all operands of the generated code to Standard.Unsigned, to
794 prevent spurious visibility errors. This is needed when the generated
795 expansion involves a modular index type of an array type, and the index
796 type is not immediately visible.
797
798 2018-05-30 Piotr Trojanek <trojanek@adacore.com>
799
800 * einfo.ads (Package_Instantiation): Update comment after a routine
801 that uses this field has been renamed.
802
803 2018-05-30 Ed Schonberg <schonberg@adacore.com>
804
805 * exp_ch11.adb (Replace_Raise_By_Goto): The transfomation is legal even
806 if the local raise statement includes a string expression. This
807 expression might be picked up by an outer handler or discarded, but
808 plays no role in this transformation.
809
810 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
811
812 * exp_aggr.adb, exp_unst.adb, freeze.adb, libgnat/a-direct.adb: Minor
813 reformatting.
814
815 2018-05-30 Ed Schonberg <schonberg@adacore.com>
816
817 * exp_unst.adb (Visit_Node): Handle the semantic Procedure_To_Call
818 field in relevant nodes: Allocate, Free, and return statements.
819
820 2018-05-30 Ed Schonberg <schonberg@adacore.com>
821
822 * exp_unst.adb (Visit_Node): Do not traverse a Component_Association
823 that has not been analyzed, as will be the case for a nested aggregate
824 that is expanded into individual assignments.
825
826 2018-05-30 Justin Squirek <squirek@adacore.com>
827
828 * aspects.adb, aspects.ads: Register new aspect.
829 * par-prag.adb (Prag): Register new pragma.
830 * sem_ch13.adb (Analyze_Aspect_Specifications): Add processing for new
831 aspect similar to Aspect_Max_Queue_Length.
832 * sem_prag.adb, sem_prag.ads (Analyze_Pragma): Register new pragma and
833 set it to use the same processing as Pragma_Max_Queue_Length.
834 * snames.ads-tmpl: Move definition of Name_Max_Entry_Queue_Depth so
835 that it can be processed as a pragma in addition to a restriction and
836 add an entry for the pragma itself.
837
838 2018-05-30 Ed Schonberg <schonberg@adacore.com>
839
840 * freeze.adb (Freeze_Object_Declaration): A pragma Thread_Local_Storage
841 is now legal on a variable of composite type initialized with an
842 aggregate that is fully static and requires no elaboration code.
843 * exp_aggr.adb (Convert_To_Positional): Recognize additional cases of
844 nested aggregates that are compile-time static, so they can be used to
845 initialize variables declared with Threqd_Local_Storage.
846 * doc/gnat_rm/implementation_defined_pragmas.rst: Add documentation on
847 Thread_Local_Storage.
848 * gnat_rm.texi: Regenerate.
849
850 2018-05-30 Yannick Moy <moy@adacore.com>
851
852 * sem_util.adb (Policy_In_Effect): Take into account CodePeer and
853 GNATprove modes.
854
855 2018-05-30 Justin Squirek <squirek@adacore.com>
856
857 * libgnat/a-direct.adb, libgnat/a-direct.ads (Name_Case_Equivalence):
858 Add implementation.
859 (Start_Search): Modify to use Start_Search_Internal
860 (Start_Search_Internal): Add to break out an extra flag for searching
861 case insensative due to the potential for directories within the same
862 OS to allow different casing schemes.
863 * sysdep.c (__gnat_name_case_equivalence): Add as a default fallback
864 for when the more precise solution fails.
865
866 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
867
868 * checks.adb, exp_ch5.adb, exp_ch7.adb, exp_unst.adb, sem_eval.adb:
869 Minor reformatting.
870
871 2018-05-30 Pascal Obry <obry@adacore.com>
872
873 * libgnat/g-comlin.ads (Value_Callback, Define_Switch): New.
874 * libgnat/g-comlin.adb: Add corresponding implementation.
875
876 2018-05-30 Gary Dismukes <dismukes@adacore.com>
877
878 * sem_res.adb, sem_util.adb: Fix several typos.
879
880 2018-05-30 Olivier Hainque <hainque@adacore.com>
881
882 * vx_crtbegin_attr.c (CTOR_ATTRIBUTE, DTOR_ATTRIBUTE): Empty.
883 (eh_registration_ctors, eh_registration_tors): New static variables,
884 forced in a .ctors/.dtors section, respectively, with priority.
885
886 2018-05-30 Bob Duff <duff@adacore.com>
887
888 * aspects.ads, contracts.adb, exp_util.adb, expander.adb, expander.ads,
889 freeze.adb, inline.adb, lib-xref.adb, sem.ads, sem_aggr.adb,
890 sem_attr.adb, sem_ch13.adb, sem_ch3.adb, sem_ch5.adb, sem_ch6.adb,
891 sem_ch8.adb, sem_dim.adb, sem_elab.adb, sem_res.adb, sem_res.ads,
892 sinfo.ads: Spell preanalysis, preanalyze correctly.
893
894 2018-05-30 Bob Duff <duff@adacore.com>
895
896 * libgnat/g-sestin.ads: Rework documentation comments.
897
898 2018-05-30 Piotr Trojanek <trojanek@adacore.com>
899
900 * errout.adb, exp_aggr.adb, exp_ch7.adb, exp_util.adb, lib.adb,
901 sem_ch13.adb, sem_ch4.adb, sem_res.adb, sem_util.adb
902 (Has_Original_Node): Refactor to use Is_Rewrite_Substitution.
903
904 2018-05-30 Piotr Trojanek <trojanek@adacore.com>
905
906 * sem_prag.adb (Analyze_Pragma): Remove conjuncts that are always true.
907
908 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
909
910 * sem_util.adb (Is_Atomic_Object): Cleaned up. Split the entity logic
911 in a separate routine.
912 (Is_Atomic_Object_Entity): New routine.
913 (Is_Atomic_Prefix): Cleaned up.
914 (Is_Synchronized_Object): Check that the object is atomic, or its type
915 is atomic.
916 (Object_Has_Atomic_Components): Removed.
917 * sem_util.ads (Is_Atomic_Object): Reword the comment on usage.
918 (Is_Atomic_Object_Entity): New routine.
919
920 2018-05-30 Ed Schonberg <schonberg@adacore.com>
921
922 * sem_ch3.adb (Access_Subprogram_Declaration): The flag
923 Needs_Activation_Record is only needed on a subprogram type, not on a
924 pointer to such.
925 * sem_res.adb (Resolve_Selected_Component): If the context type and the
926 component type are anonymous access to subprograms, use the component
927 type to obtain the proper value of Needs_Activation_Record flag for the
928 expression.
929
930 2018-05-30 Eric Botcazou <ebotcazou@adacore.com>
931
932 * gcc-interface/trans.c (gnat_to_gnu) <N_Assignment_Statement>: Add
933 comment about the memset case.
934
935 2018-05-30 Bob Duff <duff@adacore.com>
936
937 * exp_ch5.adb (Expand_Formal_Container_Element_Loop): Remove the code
938 to analyze the Elmt_Decl, because it gets analyzed in the wrong scope.
939 We need to analyze it as part of analyzing the block, so that if the
940 call to Element that initializes Elmt_Decl returns on the secondary
941 stack, the block will ss_mark/ss_release. This block is inside the
942 loop; we don't want to leak memory until the loop exits. The purpose
943 of analyzing Elmt_Decl first was to catch the error of modifying it,
944 which is illegal because it's a loop parameter. The above causes us to
945 miss that error. Therefore, we add a flag Is_Loop_Parameter, and set
946 it on the Element entity, so we end up with an E_Variable node with the
947 flag set.
948 * einfo.ads, einfo.adb (Is_Loop_Parameter): New flag.
949 * sem_ch5.adb (Diagnose_Non_Variable_Lhs): Give the "assignment to loop
950 parameter not allowed" error if Is_Loop_Parameter.
951 * sem_util.adb (Is_Variable): Return False if Is_Loop_Parameter, to
952 trigger the call to Diagnose_Non_Variable_Lhs.
953
954 2018-05-30 Arnaud Charlet <charlet@adacore.com>
955
956 * checks.adb (Apply_Scalar_Range_Check):
957 * sem_eval.adb (Check_Non_Static_Context, Out_Of_Range): Ignore out of
958 range values for System.Priority in CodePeer mode since the actual
959 target compiler may provide a wider range.
960
961 2018-05-30 Ed Schonberg <schonberg@adacore.com>
962
963 * exp_unst.adb: Search specification of main unit as well, for
964 unnesting.
965
966 2018-05-30 Ed Schonberg <schonberg@adacore.com>
967
968 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): The statement part of
969 a package body that is a compilation unit may contain blocks that
970 declare local subprograms. In Subprogram_Unnesting Mode such
971 subprograms must be handled as nested inside the (implicit) elaboration
972 procedure that executes that statement part. To handle properly uplevel
973 references we construct that subprogram explicitly, to contain blocks
974 and inner subprograms, The statement part of the compilation unit
975 becomes a call to this subprogram. This is only done if blocks are
976 present in the statement list of the body.
977
978 2018-05-30 Bob Duff <duff@adacore.com>
979
980 * exp_ch7.adb: Minor comment fix.
981
982 2018-05-30 Ed Schonberg <schonberg@adacore.com>
983
984 * exp_unst.adb (Visit_Node): Handle properly subprogram instantiations
985 that have no corresponding body and appear as attributes of the
986 corresponding wrapper package declaration.
987 (Register_Subprogram): New subprogram, used for subprogram bodies and
988 for subprogram instantiations to enter callable entity into Subp table.
989
990 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
991
992 * libgnat/s-secsta.adb: Reimplement the secondary stack support.
993 * libgnat/s-secsta.ads: Update the documentation of all routines in the
994 public part of the package. Reimplement the private part of the
995 package to account for the new secondary stack structure. Add types
996 and subprograms for testing purposes. Add several documentation
997 sections.
998
999 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
1000
1001 * exp_aggr.adb, exp_ch3.adb, exp_ch4.adb, exp_ch7.adb, exp_unst.adb,
1002 exp_util.adb, exp_util.ads, libgnat/a-calcon.adb, libgnat/a-calcon.ads,
1003 libgnat/s-os_lib.adb, repinfo.adb, sem_ch3.adb, sem_disp.adb,
1004 sem_disp.ads, sem_util.adb: Minor reformatting.
1005
1006 2018-05-30 Arnaud Charlet <charlet@adacore.com>
1007
1008 * gcc-interface/Makefile.in: Move special flags for Ada runtime files
1009 from here...
1010 * Makefile.rtl: ... to here. Update comments. Protect call to
1011 "GCC_FOR_TARGET" in case target_os isn't defined.
1012
1013 2018-05-30 Arnaud Charlet <charlet@adacore.com>
1014
1015 * gcc-interface/Makefile.in: Move target pair settings from here...
1016 * Makefile.rtl: ... to here.
1017 (setup-rts): New target.
1018
1019 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1020
1021 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Alphabetical
1022 List of All Switches): Replace "modules" with "units".
1023 (Subprogram Inlining Control): Likewise.
1024 * gnat_ugn.texi: Regenerate.
1025 * usage.adb (Usage): Fix description of -gnatn switch.
1026
1027 2018-05-29 Arnaud Charlet <charlet@adacore.com>
1028
1029 * gcc-interface/Makefile.in: Fix typos.
1030
1031 2018-05-29 Ed Schonberg <schonberg@adacore.com>
1032
1033 * exp_ch7.adb (Build_Finalizer_Call): Attach to tree the reference to
1034 the finalizer procedure in the At_End handler, for use in LLVM
1035 generation.
1036
1037 2018-05-29 Javier Miranda <miranda@adacore.com>
1038
1039 * exp_ch4.adb (Expand_N_Op_Eq, Expand_Composite_Equality): Use the new
1040 subprogram Inherits_From_Tagged_Full_View to identify more reliably
1041 untagged private types completed with a derivation of an untagged
1042 private whose full view is a tagged type.
1043 * sem_util.ads, sem_util.adb (Inherits_From_Tagged_Full_View): New
1044 subprogram.
1045 (Collect_Primitive_Operations): Handle untagged private types completed
1046 with a derivation of an untagged private type whose full view is a
1047 tagged type. In such case, collecting the list of primitives we may
1048 find two equality primitives: one associated with the untagged private
1049 and another associated with the ultimate tagged type (and we must
1050 remove from the returned list this latter one).
1051
1052 2018-05-29 Ed Schonberg <schonberg@adacore.com>
1053
1054 * exp_unst.adb (Visit_Node): Handle statement sequences that include an
1055 At_End handler.
1056
1057 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1058
1059 * repinfo.adb (List_Entities): Also recurse into blocks without label.
1060
1061 2018-05-29 Ed Schonberg <schonberg@adacore.com>
1062
1063 * exp_ch6.adb (Expand_N_Subprogram_Body): Do not generate push/pop for
1064 exceptions if subprogram unnesting is in effect, because these branch
1065 nodes are relevant only in the presence of nested subprograms.
1066
1067 2018-05-29 Ed Schonberg <schonberg@adacore.com>
1068
1069 * libgnat/s-fatgen.adb (Succ, Pred): Raise Constraint_Error
1070 unconditionally when applied to the largest positive (resp. largest
1071 negative) value of a floating-point type.
1072
1073 2018-05-29 Ed Schonberg <schonberg@adacore.com>
1074
1075 * einfo.ads, einfo.adb: Clarify use of Activation_Record_Component:
1076 discriminants and exceptions are never components of such. The flag
1077 Needs_Activation_Record is set on subprogram types, not on access to
1078 them.
1079
1080 2018-05-29 Ed Schonberg <schonberg@adacore.com>
1081
1082 * sem_ch3.adb: Set scope of component of subtype.
1083
1084 2018-05-29 Ed Schonberg <schonberg@adacore.com>
1085
1086 * exp_unst.adb (Visit_Node): Exclude selected components whose prefix
1087 carry no type. Such selected components appear in unit names that are
1088 child units, both in the specification and possibly in an end label for
1089 the unit, and they do not contain any relevant uplevel references.
1090
1091 2018-05-29 Arnaud Charlet <charlet@adacore.com>
1092
1093 * libgnat/a-calend.ads, libgnat/a-calend.adb (Epoch_Offset): Make it a
1094 function.
1095
1096 2018-05-29 Olivier Hainque <hainque@adacore.com>
1097
1098 * libgnat/system-vxworks7-ppc-rtp.ads: New file.
1099 * libgnat/system-vxworks7-ppc-kernel.ads: New file.
1100 * libgnat/system-vxworks7-e500-rtp.ads: New file.
1101 * libgnat/system-vxworks7-e500-kernel.ads: New file.
1102 * libgnat/system-vxworks7-x86-rtp.ads: New file.
1103 * libgnat/system-vxworks-ppc64-kernel.ads: Rename as ...
1104 * libgnat/system-vxworks7-ppc64-kernel.ads: and adjust name of
1105 gnat-crtbe link spec to use the vx7 variant.
1106
1107 2018-05-29 Olivier Hainque <hainque@adacore.com>
1108
1109 * vx_crtbegin.inc: Use a consistent naming convention for the
1110 registration/deregistration functions across RTP or kernel. Remove the
1111 ctor/dtor attribute setting based on RTP/kernel, expect the optional
1112 attribute extension to be provided by includers instead.
1113 * vx_crtbegin.c: Mere inclusion of vx_crtbegin.inc with empty attribute
1114 extension for the registration/deregistration functions.
1115 * vx_crtbegin_attr.c: New file. Include vx_crtbegin.inc with explicit
1116 constructor/destructor attribute extensions.
1117 * vx_crtbegin_array.c: New file. Include vx_crtbegin.inc with empty
1118 attribute extensions and declare _ctors/_dtors arrays.
1119 * vx_crtbegin_auto.c: Remove.
1120 * libgnat/system-vxworks7-aarch64-rtp-smp.ads: Use
1121 vxworks7-gnat-crtbe-link.spec.
1122 * libgnat/system-vxworks7-aarch64.ads: Likewise.
1123 * libgnat/system-vxworks7-e500-rtp-smp.ads: Likewise.
1124 * libgnat/system-vxworks7-ppc-rtp-smp.ads: Likewise.
1125 * libgnat/system-vxworks7-ppc64-rtp-smp.ads: Likewise.
1126 * libgnat/system-vxworks7-x86-kernel.ads: Likewise.
1127 * libgnat/system-vxworks7-x86-rtp-smp.ads: Likewise.
1128 * libgnat/system-vxworks7-x86_64-kernel.ads: Likewise.
1129 * libgnat/system-vxworks7-x86_64-rtp-smp.ads: Likewise.
1130
1131 2018-05-29 Piotr Trojanek <trojanek@adacore.com>
1132
1133 * ali.adb: Minor reformatting.
1134
1135 2018-05-29 Joel Brobecker <brobecker@adacore.com>
1136
1137 * doc/gnat_ugn/platform_specific_information.rst: Update package
1138 requirements for 32bit GNAT on x86_64-linux.
1139 * gnat_ugn.texi: Regenerate.
1140
1141 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1142
1143 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Debugging
1144 Control): Adjust description of -gnatRj.
1145 * gnat_ugn.texi: Regenerate.
1146 * opt.ads (List_Representation_Info_To_JSON): Likewise.
1147 * repinfo.adb (List_Rep_Info): Do not automatically create a file
1148 if List_Representation_Info_To_JSON is true.
1149 * switch-c.adb (Scan_Front_End_Switches) <R>: Remove incompatibility
1150 check between -gnatRj and -gnatRs.
1151 * usage.adb (Usage): Adjust description of -gnatRj.
1152
1153 2018-05-29 Pascal Obry <obry@adacore.com>
1154
1155 * libgnat/s-os_lib.adb (Normalize_Pathname): Fix handling of ".." in
1156 the root directory.
1157
1158 2018-05-29 Pascal Obry <obry@adacore.com>
1159
1160 * libgnat/s-os_lib.adb: Minor reformatting.
1161
1162 2018-05-29 Doug Rupp <rupp@adacore.com>
1163
1164 * libgnat/a-calend.adb (Epoch_Offset): Move from body to ...
1165 * libgnat/a-calend.ads (Epoch_Offset): to private part of spec
1166 * libgnat/a-calcon.ads (To_Unix_Nano_Time): New function spec.
1167 * libgnat/a-calcon.adb (To_Unix_Nano_Time): New function body.
1168
1169 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1170
1171 * repinfo.ads (JSON format): Document new pair for components.
1172 * repinfo.adb (Derived_Discriminant): New function.
1173 (List_Structural_Record_Layout): Add Outer_Ent parameter and pass it
1174 in recursive calls. If the record type is the parent of an extension,
1175 find and list the derived discriminant from the extension, if any.
1176 (List_Component_Layout): List the Discriminant_Number in JSON mode.
1177 (List_Record_Info): Adjust call to List_Structural_Record_Layout.
1178
1179 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1180
1181 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Alphabetical
1182 List of All Switches): Document -gnatRj.
1183 (Debugging Control): Likewise.
1184 * gnat_ugn.texi: Regenerate.
1185 * opt.ads (List_Representation_Info_To_JSON): New boolean variable.
1186 * osint-c.adb (Create_Repinfo_File): Use the .json instead of .rep
1187 extension if List_Representation_Info_To_JSON is true.
1188 * repinfo.ads: Document the JSON output format.
1189 * repinfo.adb (List_Location): New procedure.
1190 (List_Array_Info): Add support for JSON output.
1191 (List_Entities): Likewise.
1192 (Unop): Likewise.
1193 (Binop): Likewise.
1194 (Print_Expr): Likewise.
1195 (List_Linker_Section): Likewise.
1196 (List_Mechanisms): Likewise.
1197 (List_Name): Likewise.
1198 (List_Object_Info): Likewise.
1199 (List_Record_Info): Likewise.
1200 (List_Component_Layout): Likewise. Add Indent parameter.
1201 (List_Structural_Record_Layout): New procedure.
1202 (List_Attr): Add support for JSON output.
1203 (List_Type_Info): Likewise.
1204 (Write_Unknown_Val): Likewise.
1205 * switch-c.adb (Scan_Front_End_Switches) <R>: Deal with 'j'.
1206 * usage.adb (Usage): List -gnatRj.
1207
1208 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1209
1210 * repinfo.adb (List_Component_Layout): New procedure extracted from...
1211 (List_Record_Layout): ...here. Invoke it.
1212
1213 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1214
1215 * repinfo.adb (Write_Unknown_Val): New procedure.
1216 (List_GCC_Expression): Call it.
1217 (List_Record_Layout): Likewise.
1218 (Write_Val): Likewise.
1219
1220 2018-05-29 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1221
1222 * exp_ch4.adb (Expand_N_Op_Abs): Clear Do_Overflow_Check when inserting
1223 code to do check.
1224
1225 2018-05-29 Arnaud Charlet <charlet@adacore.com>
1226
1227 * lib-writ.adb (Write_ALI): Do not use new function from s-casuti yet.
1228 This breaks build of cross compilers with older versions of GNAT, so
1229 better avoid it.
1230
1231 2018-05-29 Doug Rupp <rupp@adacore.com>
1232
1233 * libgnarl/s-taprop.ads (Monotonic_Clock): Refine documentation to
1234 reflect reality.
1235
1236 2018-05-29 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1237
1238 * exp_ch4.adb (Expand_N_Op_Abs): Always do range check against 'First.
1239
1240 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
1241
1242 * repinfo.adb (List_Entities): Do not list the Linker_Section for
1243 subprograms here...
1244 (List_Mechanisms): ...but here instead. Use consistent name output
1245 and formatting conventions.
1246
1247 2018-05-29 Bob Duff <duff@adacore.com>
1248
1249 * lib-writ.adb (Write_ALI): Cleanup: avoid use of global var; call new
1250 To_Lower function.
1251 * libgnat/s-casuti.ads, libgnat/s-casuti.adb (To_Upper, To_Lower,
1252 To_Mixed): New functions.
1253 * osint.adb: Cleanup: use Is_Directory_Separator, which correctly
1254 allows both '\' and '/' on Windows.
1255
1256 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
1257
1258 * repinfo.ads: Minor fixes and tweaks in comments.
1259
1260 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
1261
1262 * repinfo.adb (List_GCC_Expression): Remove Valop and replace calls to
1263 it with calls to Unop.
1264
1265 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
1266
1267 * repinfo.ads (TCode): Adjust range.
1268 (Truth_Andif_Expr): Remove.
1269 (Truth_Orif_Expr): Likewise.
1270 (Truth_And_Expr .. Dynamic_Val): Adjust value.
1271 * repinfo.adb (Print_Expr): Remove handling of Truth_{And,Or}if_Expr.
1272 (Rep_Value): Likewise.
1273 * repinfo.h (Truth_Andif_Expr): Remove.
1274 (Truth_Orif_Expr): Likewise.
1275 (Truth_And_Expr .. Dynamic_Val): Adjust value.
1276 * gcc-interface/decl.c (annotate_value) <TRUTH_ANDIF_EXPR>: Fall
1277 through to TRUTH_AND_EXPR case.
1278 <TRUTH_ORIF_EXPR>: Fall through to TRUTH_OR_EXPR case.
1279
1280 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1281
1282 * exp_unst.adb (Visit_Node): For indexed components and attribute
1283 references, examine index expressions or associated expressions as well
1284 to record uplevel references.
1285 (Vist_Node): For function and procedure calls, if a formal is an
1286 unconstrained array and the actual is constrained, check whether bounds
1287 of actual have uplevel references.
1288
1289 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1290
1291 * einfo.ads, einfo.adb: Exceptions can be uplevel references, and thus
1292 they can appear as components of activation records.
1293 * exp_unst.adb (Visit_Node): A reference to an exception may be an
1294 uplevel reference.
1295
1296 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
1297
1298 * exp_ch4.adb (Expand_Composite_Equality): Compute whether the size
1299 depends on a discriminant manually instead of using the predicate
1300 Size_Depends_On_Discriminant in the array type case.
1301
1302 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1303
1304 * exp_unst.adb (Check_Static_Type): For a record subtype, check
1305 discriminant constraints as well.
1306 (Visit_Node): For a selected component, check type of prefix, as is
1307 done for indexed components and slices.
1308
1309 2018-05-28 Javier Miranda <miranda@adacore.com>
1310
1311 * exp_ch4.adb (Real_Range_Check): Add a temporary to store the integer
1312 value when converting a float value to a fixed-point value. This is
1313 required for CCG because it handles fixed-point types by means of
1314 unsigned integer type variables. The range check is now performed using
1315 the integer value stored in this temporary.
1316
1317 2018-05-28 Yannick Moy <moy@adacore.com>
1318
1319 * sem_util.adb (Is_OK_Volatile_Context): Add attributes First, Last and
1320 Length as valid non-interfering contexts for SPARK.
1321
1322 2018-05-28 Claire Dross <dross@adacore.com>
1323
1324 * sem_disp.ads, sem_disp.adb (Inheritance_Utilities): Package for
1325 generic inheritance utilities.
1326 (Generic_Inherited_Subprograms): Generic version of
1327 Inherited_Subprograms, generic in Find_Dispatching_Type function.
1328 (Generic_Is_Overriding_Subprogram): Generic version of
1329 Is_Overriding_Subprogram, generic in Find_Dispatching_Type function.
1330 (Inherited_Subprograms): Instance of Generic_Inherited_Subprograms with
1331 Sem_Disp.Find_Dispatching_Type.
1332 (Is_Overriding_Subprogram): Instance of
1333 Generic_Is_Overriding_Subprogram with Sem_Disp.Find_Dispatching_Type.
1334 (Inheritance_Utilities_Inst): Instance of Inheritance_Utilities
1335 with Sem_Disp.Find_Dispatching_Type.
1336
1337 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
1338
1339 * exp_ch4.adb (Expand_Composite_Equality): For a composite (or FP)
1340 component type, do not expand array equality using the unconstrained
1341 base type, except for the case where the bounds of the type depend on a
1342 discriminant.
1343
1344 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1345
1346 * einfo.ads, einfo.adb (Needs_Activation_Record): New flag on
1347 access-to-subprogram types, to indicate that an indirect call through
1348 such a type requires an activation record when compiling for LLVM.
1349 * sem_ch3.adb (Access_Subprogram_Declaration): Set new flag as needed.
1350
1351 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1352
1353 * exp_ch4.adb (Real_Range_Check): Specialize float-to-fixed conversions
1354 when bounds of fixed type are static, to remove some spuerfluous
1355 implicit conversions and provide an accurate result when converting
1356 back and forth between the fixed point type and a floating point type.
1357
1358 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1359
1360 * exp_unst.adb (Unnest_Subprogram): Prevent creation of empty
1361 activation records.
1362
1363 2018-05-28 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1364
1365 * exp_unst.adb (Check_Static_Type): Add argument to indicate node to be
1366 replaced, if any; all callers changed.
1367 (Note_Uplevel_Ref): Likewise. Also replace reference to deferred
1368 constant with private view so we take the address of that entity.
1369 (Note_Uplevel_Bound): Add argument to indicate node to be replaced, if
1370 any; all callers changed. Handle N_Indexed_Component like
1371 N_Attribute_Reference. Add N_Type_Conversion case.
1372 (Visit_Node): Indexed references can be uplevel if the type isn't
1373 static.
1374 (Unnest_Subprograms): Don't rewrite if no reference given. If call has
1375 been relocated, set first_named pointer in original node as well.
1376
1377 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1378
1379 * exp_aggr.adb (Flatten): Copy tree of expression in a component
1380 association with a range or a set of discrete choices, rather than
1381 relocating the node. This avoids inconsistencies in the tree when
1382 handling nested subprograms with uplevel references for LLVM.
1383
1384 2018-05-28 Arnaud Charlet <charlet@adacore.com>
1385
1386 * exp_util.adb (Possible_Bit_Aligned_Component): Always return False in
1387 codepeer mode.
1388
1389 2018-05-28 Arnaud Charlet <charlet@adacore.com>
1390
1391 * exp_unst.adb: Fix typo.
1392
1393 2018-05-28 Bob Duff <duff@adacore.com>
1394
1395 * libgnat/a-convec.adb (Query_Element): Minor cleanup: remove an
1396 unnecessary use of 'Unrestricted_Access.
1397
1398 2018-05-28 Hristian Kirtchev <kirtchev@adacore.com>
1399
1400 * repinfo.adb (Expr_Value_S): New routine.
1401 (List_Linker_Section): Properly extract the value of the section
1402 argument.
1403
1404 2018-05-28 Patrick Bernardi <bernardi@adacore.com>
1405
1406 * doc/gnat_ugn/building_executable_programs_with_gnat.rst: Update the
1407 description of the -D binder switch to reflect current usage.
1408 * gnat_ugn.texi: Regenerate.
1409
1410 2018-05-28 Gary Dismukes <dismukes@adacore.com>
1411
1412 * exp_ch3.adb: Minor reformatting
1413
1414 2018-05-28 Justin Squirek <squirek@adacore.com>
1415
1416 * exp_ch3.adb
1417 (Build_Initialization_Call): Add logic to pass the appropriate actual to match
1418 new formal.
1419 (Init_Formals): Add new formal *_skip_null_excluding_check
1420 * exp_util.adb, exp_util.ads
1421 (Enclosing_Init_Proc): Added to fetch the enclosing Init_Proc from the current
1422 scope.
1423 (Inside_Init_Proc): Refactored to use Enclosing_Init_Proc
1424 (Needs_Conditional_Null_Excluding_Check): Added to factorize the predicate
1425 used to determine how to generate an Init_Proc for a given type.
1426 (Needs_Constant_Address): Minor reformatting
1427 * sem_res.adb
1428 (Resolve_Null): Add logic to generate a conditional check in certain cases
1429
1430 2018-05-28 Hristian Kirtchev <kirtchev@adacore.com>
1431
1432 * exp_aggr.adb, gnatlink.adb, sem_ch6.adb, sem_res.adb, sem_util.adb:
1433 Minor reformatting.
1434
1435 2018-05-28 Hristian Kirtchev <kirtchev@adacore.com>
1436
1437 * sem_prag.adb (Process_Atomic_Independent_Shared_Volatile): Include
1438 the declarations of single concurrent types because they fall in the
1439 category of full type and object declarations.
1440
1441 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
1442
1443 * repinfo.adb (Compute_Max_Length): Skip _Parent component.
1444 (List_Record_Layout): Likewise.
1445
1446 2018-05-28 Ed Schonberg <schonberg@adacore.com>
1447
1448 * sem_util.adb (Is_Function_Result): Add a warning if a postcondition
1449 includes a call to function to which it applies. This may mean an
1450 omission of an attribute reference 'Result, in particular if the
1451 function is pqrameterless.
1452
1453 2018-05-28 Justin Squirek <squirek@adacore.com>
1454
1455 * sem_ch8.adb (Find_Expanded_Name): Add extra guard to make sure the
1456 misresolved package name is not a case of mistaken identity.
1457
1458 2018-05-28 Yannick Moy <moy@adacore.com>
1459
1460 * sem_res.adb (Resolve_Range): Re-resolve the low bound of a range in
1461 GNATprove mode, as the order of resolution (low then high) means that
1462 all the information is not available when resolving the low bound the
1463 first time.
1464
1465 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
1466
1467 * repinfo.adb (List_Array_Info): Start with an explicit blank line and
1468 end with the linker section, if any.
1469 (List_Entities): Do not output the linker section for record types,
1470 array types and variables.
1471 (Print_Expr): Factor out common processing for unary operators and
1472 special values. Adjust and reorder the various cases.
1473 (List_Object_Info): End with the linker section, if any.
1474 (List_Record_Info): Likewise.
1475 (List_Type_Info): Do not start with a blank line.
1476
1477 2018-05-25 Nicolas Roche <roche@adacore.com>
1478
1479 * libgnat/s-valrea.adb (Scan_Real): Abort computation once it is sure
1480 that the result will be either -infinite or +infinite.
1481
1482 2018-05-25 Patrick Bernardi <bernardi@adacore.com>
1483
1484 * libgnat/s-parame.ads, libgnat/s-parame__vxworks.ads,
1485 libgnat/s-parame__ae653.ads, libgnat/s-parame__hpux.ads (Size_Type):
1486 Expand range of type to match the address space of the target.
1487 (Task_Storage_Size): Remove unused type.
1488
1489 2018-05-25 Ed Schonberg <schonberg@adacore.com>
1490
1491 * sem_res.adb (Set_Mixed_Mode_Operand): If the operand is an expression
1492 of a fixed point type and the parent is a multiplying operation,
1493 resolve the operand with its own type because the context will impose a
1494 resulting type on the result of the multiplication by means of
1495 approriate conversion.
1496
1497 2018-05-25 Hristian Kirtchev <kirtchev@adacore.com>
1498
1499 * exp_ch3.adb (Default_Initialize_Object): Ensure that the analysis of
1500 the in-place initialization aggregate created for pragmas
1501 Initialize_Scalars or Normalize_Scalars is performed with checks
1502 suppressed.
1503
1504 2018-05-25 Arnaud Charlet <charlet@adacore.com>
1505
1506 * exp_aggr.adb (Convert_To_Positional): Bump default for
1507 Max_Others_Replicate to 32. Update comments.
1508 * osint.ads (Unknown_Attributes): No longer pretend this is a constant.
1509 (No_File_Info_Cache): Initialize separately.
1510 * osint.adb (No_File_Info_Cache): Update initializer.
1511
1512 2018-05-25 Javier Miranda <miranda@adacore.com>
1513
1514 * sem_res.adb (Resolve_Membership_Op): Allow the use of the membership
1515 test when the left operand is a class-wide interface and the right
1516 operand is not a class-wide type.
1517 * exp_ch4.adb (Tagged_Membership): Adding support for interface as the
1518 left operand.
1519
1520 2018-05-25 Ed Schonberg <schonberg@adacore.com>
1521
1522 * exp_aggr.adb (Flatten): A quantified expression cannot be duplicated
1523 in an others clause to prevent visibility issues with the generated
1524 loop variable.
1525 (Component_OK_For_Backend): Return false for a quantified expression.
1526 (Check_Static_Component): Ditto.
1527
1528 2018-05-25 Hristian Kirtchev <kirtchev@adacore.com>
1529
1530 * libgnat/s-secsta.adb (SS_Allocate): Reimplemented.
1531 (SS_Allocate_Dynamic): New routine. The allocation logic is now split
1532 into three distring cases rather than in one loop which attempts to
1533 handle all three cases. This rewrite eliminates an issue where the last
1534 frame of the stack cannot be freed, thus causing the memory range of a
1535 new frame to approach the overflow point of the memory index type.
1536 Since the overflow is logically treated as a
1537 too-much-memory-on-the-stack scenario, it causes a bogus Storage_Error.
1538 (SS_Allocate_Static): New routine. The routine factorizes the static
1539 secondary stack-related code from the former SS_Allocate.
1540
1541 2018-05-25 Sergey Rybin <rybin@adacore.com>
1542
1543 * doc/gnat_ugn/gnat_and_program_execution.rst: Add description of '-U'
1544 option for gnatelim.
1545
1546 2018-05-25 Ed Schonberg <schonberg@adacore.com>
1547
1548 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Do not create
1549 Class_Wide_Clone_Body when analyzing a subprogram_body_stub: the clone
1550 is created when the proper body of the stub is analyzed.
1551 * sem_util.adb (ZBuild_Class_Wide_Clone_Body): If the subprogram body
1552 is the proper body of a subunit, the cloned body must be inserted in
1553 the declarative list that contains the stub.
1554
1555 2018-05-25 Justin Squirek <squirek@adacore.com>
1556
1557 * exp_ch6.adb (Expand_Simple_Function_Return): Add guard in check to
1558 generate code for 6.5(8-10) so that we don't get an assertion error
1559 when dealing with an incomplete return type.
1560
1561 2018-05-25 Arnaud Charlet <charlet@adacore.com>
1562
1563 * pprint.adb (Expression_Name): Strip too long expressions to avoid
1564 carrying very large strings.
1565
1566 2018-05-25 Patrick Bernardi <bernardi@adacore.com>
1567
1568 * switch-b.adb (Scan_Binder_Switches): binder switch -Q accepts Natural
1569 numbers.
1570
1571 2018-05-25 Doug Rupp <rupp@adacore.com>
1572
1573 * tracebak.c (aarch64-linux): Implement.
1574
1575 2018-05-25 Justin Squirek <squirek@adacore.com>
1576
1577 * sem_ch8.adb: Minor reformatting.
1578
1579 2018-05-25 Piotr Trojanek <trojanek@adacore.com>
1580
1581 * sem_util.adb (Iterate_Call_Parameters): Fix code convention and
1582 assertions.
1583
1584 2018-05-25 Hristian Kirtchev <kirtchev@adacore.com>
1585
1586 * einfo.adb, einfo.ads, exp_ch3.adb, exp_ch8.adb, exp_unst.adb,
1587 pprint.adb, sem_ch12.adb, sem_ch3.adb, sem_prag.adb, sem_util.adb:
1588 Minor reformatting.
1589
1590 2018-05-25 Ed Schonberg <schonberg@adacore.com>
1591
1592 * sem_ch12.adb (Instance_Exists): New function, subsidiary of
1593 Validate_Derived_Type_Instance, to verify that all interfaces
1594 implemented by the formal type are also implemented by the actual. The
1595 verification is complicated when an interface of the formal is declared
1596 in a generic unit and the actual is declared in an instance of it.
1597 There is currently no mechanism to relate an interface declared within
1598 a generic to the corresponding interface in an instance, so we must
1599 traverse the list of interfaces of the actual, looking for a name
1600 match, and verifying that that interface is declared in an instance.
1601
1602 2018-05-25 Piotr Trojanek <trojanek@adacore.com>
1603
1604 * sem_util.adb (Iterate_Call_Parameters): Rewrite with extra
1605 assertions; replace function versions of Next_Formal/Next_Actual with
1606 their procedural versions (which are more concise).
1607
1608 2018-05-25 Doug Rupp <rupp@adacore.com>
1609
1610 * libgnarl/s-osinte__aix.ads, libgnarl/s-osinte__android.ads,
1611 libgnarl/s-osinte__darwin.ads, libgnarl/s-osinte__freebsd.ads,
1612 libgnarl/s-osinte__hpux.ads, libgnarl/s-osinte__kfreebsd-gnu.ads,
1613 libgnarl/s-osinte__linux.ads, libgnarl/s-osinte__lynxos178e.ads,
1614 libgnarl/s-osinte__qnx.ads, libgnarl/s-osinte__rtems.ads
1615 (Relative_Timed_Wait): Remove.
1616 * libgnarl/s-tpopmo.adb (Timed_Sleep, Timed_Delay): Rewrite to allow
1617 for incremental looping. Remove references to Rel_Time and
1618 Relative_Timed_Wait.
1619 * libgnat/s-osprim__posix.adb, libgnat/s-osprim__posix2008.adb
1620 (Timed_Delay): Make separate.
1621 * libgnat/s-optide.adb: New separate procedure.
1622 * libgnat/s-osprim.ads (Max_System_Delay): New constant.
1623 * libgnat/s-osprim__lynxos.ads (Max_Sensible_Delay): Set to 6 months.
1624 (Max_System_Delay): New constant.
1625
1626 2018-05-25 Ed Schonberg <schonberg@adacore.com>
1627
1628 * sem_ch12.adb (Validate_Derived_Type_Instance): Verify that the actual
1629 for a formal derived type implements all the interfaces declared for
1630 the formal.
1631
1632 2018-05-25 Yannick Moy <moy@adacore.com>
1633
1634 * sem_prag.adb (Check_Applicable_Policy): Deal specially with CodePeer
1635 and GNATprove modes when applicable policy is Ignore.
1636
1637 2018-05-25 Eric Botcazou <ebotcazou@adacore.com>
1638
1639 * freeze.adb (Freeze_Enumeration_Type): Do not give integer size to a
1640 boolean type with convention C.
1641 * libgnat/i-cexten.ads (bool): Change to boolean with convention C.
1642 * gcc-interface/decl.c (gnat_to_gnu_entity): Add new local variable
1643 FOREIGN and use it throughout the function.
1644 <E_Enumeration_Type>: Set precision 1 on boolean types with foreign
1645 convention.
1646 <E_Enumeration_Subtype>: Likewise for subtypes.
1647 <E_Record_Type>: Force the size of a storage unit on empty classes.
1648 * gcc-interface/utils.c (make_type_from_size) <BOOLEAN_TYPE>: Skip
1649 boolean types with precision 1 if the size is the expected one.
1650
1651 2018-05-25 Arnaud Charlet <charlet@adacore.com>
1652
1653 * pprint.adb (Expression_Name): Do not print non ASCII characters.
1654
1655 2018-05-25 Bob Duff <duff@adacore.com>
1656
1657 * libgnat/a-strunb__shared.ads, libgnat/a-stwiun__shared.ads,
1658 libgnat/a-stzunb__shared.ads: (Initialize, Adjust): Add pragma Inline.
1659
1660 2018-05-25 Bob Duff <duff@adacore.com>
1661
1662 * sem_util.ads: Minor comment fix.
1663
1664 2018-05-25 Ed Schonberg <schonberg@adacore.com>
1665
1666 * exp_unst.adb (Visit_Node): Restrict check for uplevel references in
1667 prefixes of array attributes, to prefixes that are entity names whose
1668 type is constrained.
1669 (Note_Uplevel_Bound): Verify that the bound is declared in an enclosing
1670 subprogram, as itype created for loops in pre/postcondition may appear
1671 in loops at the library level.
1672
1673 2018-05-25 Ed Schonberg <schonberg@adacore.com>
1674
1675 * sem_ch13.adb (Build_Predicate_Functions): The predicate function
1676 declaration is inserted into the tree and analyzed at that point, so
1677 should not be reinserted when the body is constructed. Inside a
1678 generic, ensure that the body is not inserted twice in the tree.
1679
1680 2018-05-25 Yannick Moy <moy@adacore.com>
1681
1682 * sem_prag.adb (Check_Grouping): Modify test to ignore statements and
1683 declarations not coming from source.
1684
1685 2018-05-25 Fedor Rybin <frybin@adacore.com>
1686
1687 * doc/gnat_ugn/gnat_utility_programs.rst: Document new switch
1688 --copy-environment for gnattest.
1689
1690 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
1691
1692 * sem_elab.adb (Non_Private_View): Simplify by removing a local Result
1693 variable.
1694 * sem_prag.adb (Get_Base_Subprogram): Same as above.
1695
1696 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
1697
1698 * fe.h (Set_Normalized_First_Bit): Declare.
1699 (Set_Normalized_Position): Likewise.
1700 * repinfo.adb (List_Record_Layout): Do not use irregular output for a
1701 variable position. Fix minor spacing issue.
1702 * gcc-interface/decl.c (annotate_rep): If a field has a variable
1703 offset, compute the normalized position and annotate it in addition to
1704 the bit offset.
1705
1706 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
1707
1708 * gcc-interface/trans.c (Handled_Sequence_Of_Statements_to_gnu):
1709 Constify and rename variables. Fix formatting.
1710 (gnat_to_gnu) <N_Exception_Handler>: Minor tweak.
1711 <N_Raise_Statement>: Likewise.
1712
1713 2018-05-24 Javier Miranda <miranda@adacore.com>
1714
1715 * exp_ch8.adb (Build_Body_For_Renaming): Adding support to build the
1716 body of a variant record equality renaming.
1717 (Expand_N_Subprogram_Renaming_Declaration): Adapt the code to the new
1718 implementation of Build_Body_For_Renaming.
1719 * exp_ch3.ads (Build_Variant_Record_Equality): New library level
1720 function that factorizes the functionality needed by
1721 Build_Body_For_Renaming and Expand_Freeze_Record_Type to build the body
1722 of a variant record equality subprogram.
1723 * exp_ch3.adb (Build_Variant_Record_Equality): New subprogram.
1724 (Build_Variant_Record_Equality): New local procedure of
1725 Expand_Freeze_Record_Type containing all the code specific for freezing
1726 the record type that cannot be place in the new library level function.
1727
1728 2018-05-24 Ed Schonberg <schonberg@adacore.com>
1729
1730 * einfo.ads, einfo.adb (Is_Activation_Record): New flag on
1731 in_parameters, used when unesting subprograms for LLVM, to indicate
1732 that a generated parameter carries the activation record from the
1733 enclosing subprogram.
1734 * exp_unst.adb (Check_Static_Type): Handle array attributes of types
1735 whose bounds may contain up-level references that need to be added to
1736 an activation recoord.
1737 (Add_Extra_Formal): Set Is_Activation_Record on new formal.
1738
1739 2018-05-24 Yannick Moy <moy@adacore.com>
1740
1741 * pprint.adb (Expression_Image): Improve the printing of expressions,
1742 by taking more cases into account, in particular qualified expressions
1743 and aggregates. Also count more the number of parentheses to close
1744 after the expression.
1745
1746 2018-05-24 Javier Miranda <miranda@adacore.com>
1747
1748 * sem_ch3.adb (Is_Visible_Component): For untagged types add missing
1749 check for renamed discriminants.
1750 * sem_ch4.adb (Analyze_Overloaded_Selected_Component,
1751 Analyze_Selected_Component, Check_Misspelled_Selector): For calls to
1752 Is_Visible_Component pass the associated selector node to allow
1753 checking renamed discriminants on untagged types.
1754
1755 2018-05-24 Ed Schonberg <schonberg@adacore.com>
1756
1757 * sem_ch8.adb (Analyze_Use_Type): Do not assign the Prev_Use_Clause
1758 link to a use_type clause if this would cause an infinite loop in the
1759 machinery that detects redundant use clauses. This may happen when the
1760 redundant clauses appear in the context of a child unit and the context
1761 of its parent.
1762
1763 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
1764
1765 * sinfo.ads: Fix grammar in comment.
1766
1767 2018-05-24 Justin Squirek <squirek@adacore.com>
1768
1769 * einfo.ads, einfo.adb (Append_Entity): Modified to use Link_Entities
1770 and manage doubly-linked entity chain.
1771 (Nested_Scenarios): Removed entity field used for optimization during
1772 elaboration to make room for the new field Prev_Entity.
1773 (Link_Entities): Added to replace redundant calls to Set_Next_Entity
1774 and Set_Prev_Entity as well as centralize changes to the entity chain.
1775 (Predicated_Parent): Modified to use Node38.
1776 (Prev_Entity): Added to fetch new node field Prev_Entity in all entity
1777 types.
1778 (Remove_Entity): Moved from sem_util.
1779 (Set_Nested_Scenarios): Deleted.
1780 (Set_Predicated_Parent): Modified to use Node38.
1781 (Set_Prev_Entity): Added to set Prev_Entity field.
1782 (Set_Validated_Object): Modified to use Node38.
1783 (Unlink_Next_Entity): Added to process Prev_Entity when an unlinking
1784 action is required.
1785 (Validated_Object): Modified to use Node38.
1786 (Write_Field36_Name): Remove Nested_Scenarios, Validated_Object, and
1787 predicated parent cases.
1788 (Write_Field38_Name): Add predicated parent and Validated_Object cases.
1789 * sem_ch3.adb (Process_Subtype): Add guard to protect against
1790 inappropriate marking of Predicated_Parent to non-itype subtypes.
1791 (Make_Class_Wide_Type): Preserve Prev_Entity field and set in new type.
1792 (Copy_And_Swap): Add setting of Prev_Entity.
1793 (Build_derived_Record_Type): Replace Set_Next_Entity w/ Link_Entities.
1794 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Replace Set_Next_Entity
1795 w/ Link_Entities.
1796 (New_Overloaded_Entity): Remove block created to search for previous
1797 entities in the entity chain with relevant calls to Prev_Entity as well
1798 as replace duplicated code from Remove_Entity_And_Homonym with a call
1799 to that subprogram.
1800 * sem_ch7.adb (Exchange_Declarations): Replace Set_Next_Entity w/
1801 Link_Entities.
1802 * sem_elab.adb (Find_And_Process_Nested_Scenarios): Remove global and
1803 initial subprogram declarations related to Nested_Scenarios.
1804 (Process_Nested_Scenarios): Deleted.
1805 (Save_Scenario): Deleted.
1806 (Traverse_Body): Remove optimization for Nested_Scenarios so as to free
1807 node space in the entity tree.
1808 * sem_util.adb, sem_util.ads (Remove_Entity): Moved to einfo.
1809 (Remove_Entity_And_Homonym): Added to separate functionality of
1810 Remove_Entity from the homonym chain directly.
1811 * exp_attr.adb (Expand_N_Attribute_Reference): Replace Set_Next_Entity
1812 w/ Link_Entities and Unlink_Next_Entity.
1813 * exp_ch3.adb (Expand_N_Object_Declaration): Replace Set_Next_Entity w/
1814 Link_Entities.
1815 * exp_ch6.adb (Replace_Renaming_Declaration_Id): Replace
1816 Set_Next_Entity w/ Link_Entities.
1817 * exp_disp.adb (Expand_Dispatching_Call): Replace Set_Next_Entity w/
1818 Link_Entities and Unlink_Next_Entity.
1819 * exp_spark.adb (Expand_SPARK_N_Object_Renaming_Declaration): Replace
1820 call to Remove_Entity with its new incarnation.
1821 * exp_util.adb (New_Class_Wide_Subtype): Add setting of Prev_Entity.
1822 * freeze.adb (Freeze_Record_Type): Replace Set_Next_Entity w/
1823 Link_Entities.
1824
1825 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
1826
1827 * sem_ch10.adb (Expand_Limited_With_Clause): Update the call to
1828 Install_Limited_Withed_Unit.
1829 (Expand_With_Clause): Update the call to Install_Withed_Unit.
1830 (Implicit_With_On_Parent): Update the call to Install_Withed_Unit.
1831 (Install_Context_Clauses): Update the call to Install_Withed_Unit.
1832 (Install_Limited_Context_Clauses): Update the calls to
1833 Install_Limited_Withed_Unit.
1834 (Install_Limited_Withed_Unit): Renamed to better illustrate its
1835 purpose.
1836 (Install_Private_With_Clauses): Update the calls to Install_Withed_Unit
1837 and Install_Limited_Withed_Unit.
1838 (Install_With_Clause): Uninstall a limited with clause if a [private]
1839 with clause is given for the same package.
1840 (Install_Withed_Unit): Renamed to better illustrate its purpose.
1841 (Remove_Limited_With_Unit): New routine.
1842
1843 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
1844
1845 * raise-gcc.c (__gnat_SEH_error_handler): Remove prototype.
1846 (__gnat_personality_seh0): Adjust and beef up comments, and
1847 fix formatting throughout.
1848 (__gnat_adjust_context): Deal minimally with version 2.
1849 * seh_init.c (__gnat_map_SEH): Fix formatting.
1850 (_gnat_SEH_error_handler): Adjust comments.
1851 (__gnat_install_SEH_handler): Fix formatting.
1852
1853 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
1854
1855 * exp_ch7.adb, sem_ch3.adb, sem_res.adb: Minor reformatting.
1856
1857 2018-05-24 Ed Schonberg <schonberg@adacore.com>
1858
1859 * exp_aggr.adb (Flatten): Add a warning on an others clause in an array
1860 aggregate with static bounds when named associations cover all index
1861 positions and the others clause is redundant.
1862
1863 2018-05-24 Raphael Amiard <amiard@adacore.com>
1864
1865 * libgnat/a-cohama.ads: Add documentation.
1866
1867 2018-05-24 Raphael Amiard <amiard@adacore.com>
1868
1869 * libgnat/a-convec.ads: Add documentation.
1870
1871 2018-05-24 Justin Squirek <squirek@adacore.com>
1872
1873 * exp_ch3.adb (Expand_N_Object_Declaration): Ignore raising an error in
1874 expansion for limited tagged types when the node to be expanded is a
1875 raise expression due to it not representing a valid object.
1876 * exp_ch5.adb (Expand_N_Assignment_Statement): Add exception to error
1877 message regarding assignments to limited types to ignore genereated
1878 code.
1879
1880 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
1881
1882 * exp_util.adb (New_Class_Wide_Subtype): Capture and restore relevant
1883 Ghost-related attributes of the class-wide subtype because the copy
1884 clobbers them.
1885
1886 2018-05-24 Justin Squirek <squirek@adacore.com>
1887
1888 * sem_res.adb (Resolve_Entity_Name): Add guard to protect against
1889 marking use clauses as effective when the reference appears within
1890 generated code.
1891
1892 2018-05-24 Cyrille Comar <comar@adacore.com>
1893
1894 * doc/gnat_rm/the_gnat_library.rst: Fix typos.
1895 * gnat_rm.texi: Regenerate.
1896
1897 2018-05-24 Bob Duff <duff@adacore.com>
1898
1899 * exp_ch7.adb (Expand_Cleanup_Actions): Create a mark unconditionally
1900 for build-in-place functions with a caller-unknown-size result.
1901 (Create_Finalizer): For build-in-place functions with a
1902 caller-unknown-size result, check at run time whether we need to
1903 release the secondary stack.
1904
1905 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
1906
1907 * sem_prag.adb (Analyze_Pragma): Use the full view of an internally
1908 generated incomplete type.
1909
1910 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
1911
1912 * expander.adb (Expand): Update the save and restore of the Ghost
1913 region.
1914 * exp_ch3.adb (Freeze_Type): Likewise.
1915 * exp_disp.adb (Make_DT): Likewise.
1916 * exp_util.adb (Build_DIC_Procedure_Body): Likewise.
1917 (Build_DIC_Procedure_Declaration): Likewise.
1918 (Build_Invariant_Procedure_Body): Likewise.
1919 (Build_Invariant_Procedure_Declaration): Likewise.
1920 (Make_Predicate_Call): Likewise.
1921 * freeze.adb (Add_To_Result): Insert the freeze action of a living
1922 entity prior to the start of the enclosing ignored Ghost region.
1923 (Freeze_Entity): Update the save and restore of the Ghost region.
1924 * ghost.adb (Install_Ghost_Mode): Reimplemented.
1925 (Install_Ghost_Region): New routine.
1926 (Mark_And_Set_Ghost_Assignment): Install a region rather than a mode.
1927 (Mark_And_Set_Ghost_Body): Likewise.
1928 (Mark_And_Set_Ghost_Completion): Likewise.
1929 (Mark_And_Set_Ghost_Declaration): Likewise.
1930 (Mark_And_Set_Ghost_Instantiation): Likewise.
1931 (Mark_And_Set_Ghost_Procedure_Call): Likewise.
1932 (Name_To_Ghost_Mode): New routine.
1933 (Restore_Ghost_Region): New routine.
1934 * ghost.ads (Install_Ghost_Region): New routine.
1935 (Restore_Ghost_Region): New routine.
1936 * opt.ads: Add new global variable Ignored_Ghost_Region.
1937 * rtsfind.adb (Load_RTU): Update the save and restore of the Ghost
1938 region. Install a clean region.
1939 * sem.adb (Analyze): Likewise.
1940 (Do_Analyze): Likewise.
1941 * sem_ch3.adb (Analyze_Object_Declaration): Likewise
1942 (Derive_Progenitor_Subprograms): Use local variable Iface_Alias to
1943 capture the ultimate alias of the current primitive.
1944 (Process_Full_View): Update the save and restore of the Ghost region.
1945 Do not inherit DIC and invariant procedures.
1946 * sem_ch5.adb (Analyze_Assignment): Update the save and restore of the
1947 Ghost region.
1948 * sem_ch6.adb (Analyze_Procedure_Call): Likewise.
1949 (Analyze_Subprogram_Body_Helper): Likewise.
1950 * sem_ch7.adb (Analyze_Package_Body_Helper): Likewise.
1951 * sem_ch12.adb (Analyze_Package_Instantiation): Likewise.
1952 (Analyze_Subprogram_Instantiation): Likewise.
1953 (Instantiate_Package_Body): Likewise.
1954 (Instantiate_Subprogram_Body): Likewise.
1955 * sem_ch13.adb (Build_Predicate_Functions): Likewise.
1956 (Build_Predicate_Function_Declaration): Likewise.
1957 * sem_disp.adb
1958 (Add_Dispatching_Operation): Do not consider DIC and invariant
1959 procedures.
1960 (Check_Dispatching_Operation): Use Add_Dispatching_Operation to collect
1961 a dispatching subprogram.
1962 (Check_Operation_From_Private_View): Likewise.
1963 (Override_Dispatching_Operation): Likewise.
1964 * sem_prag.adb (Analyze_Contract_Cases_In_Decl_Part): Update the save
1965 and restore of the Ghost region.
1966 (Analyze_Initial_Condition_In_Decl_Part): Likewise.
1967 (Analyze_Pragma): Update the save and restore of the Ghost region.
1968 (Analyze_Pre_Post_Condition_In_Decl_Part): Likewise.
1969 * sem_util.adb (Is_Suitable_Primitive): New routine.
1970 * sem_util.ads (Is_Suitable_Primitive): New routine.
1971 * sinfo.ads: Update the section of Ghost regions.
1972
1973 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
1974
1975 * doc/gnat_rm/implementation_defined_pragmas.rst (Contract_Cases):
1976 Change "condition" to "case guard" after renaming in the contract
1977 grammar.
1978 * gnat_rm.texi: Regenerate.
1979
1980 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
1981
1982 * exp_util.adb (Expand_Static_Predicates_In_Choices): Indicate that the
1983 construct with discrete choices no longer contains a subtype with
1984 predicates since the expansion already handled this case.
1985
1986 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
1987
1988 * freeze.adb (Wrap_Imported_Subprogram): Generate an unchecked
1989 conversion to the return type to avoid a side effect where an imported
1990 relocated function generates a new anonymous access type, whose
1991 accessibility level does not agree with with that of the wrapper.
1992
1993 2018-05-24 Javier Miranda <miranda@adacore.com>
1994
1995 * sem_util.adb (Abstract_Interface_List): Add missing support for
1996 private types whose full view is a synchronized type.
1997 * sem_ch3.adb (Build_Derived_Private_Type): Skip building the full
1998 derivation of a private type parent type is a task type with
1999 discriminants as gigi does not use such type directly.
2000
2001 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
2002
2003 * sem_elab.adb (Build_Variable_Reference_Marker): Do not create a
2004 variable marker when the reference appears in the formal part of a
2005 compilation unit instance because there is no place to insert it.
2006 (In_Compilation_Instance_Formal_Part): New routine.
2007
2008 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
2009
2010 * layout.ads, repinfo.ads: Fix references to renamed Backend_Layout
2011 configuration parameter.
2012
2013 2018-05-24 Doug Rupp <rupp@adacore.com>
2014
2015 * argv-lynxos178-raven-cert.c: New file.
2016 * libgnat/system-lynxos178-x86.ads: New file.
2017
2018 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2019
2020 * exp_disp.adb, freeze.adb, gnat1drv.adb, sem_ch5.adb, sem_spark.adb:
2021 Minor reformattings.
2022
2023 2018-05-23 Pascal Obry <obry@adacore.com>
2024
2025 * adaint.c (win32_wait): Properly free the handle/pid lists when
2026 WaitForMultipleObjects fails (return WAIT_FAILED).
2027
2028 2018-05-23 Pascal Obry <obry@adacore.com>
2029
2030 * adaint.c (win32_wait): Add missing parentheses.
2031
2032 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2033
2034 * exp_ch3.adb (Check_Large_Modular_Array): Moved to Freeze.
2035 (Expand_N_Object_Declaration): Do not check for a large modular array
2036 here.
2037 * freeze.adb (Check_Large_Modular_Array): Moved from Exp_Ch3.
2038 (Freeze_Object_Declaration): Code cleanup. Check for a large modular
2039 array.
2040 * sem_ch3.adb: Minor reformatting.
2041
2042 2018-05-23 Ed Schonberg <schonberg@adacore.com>
2043
2044 * einfo.ads: New attribute on types: Predicated_Parent, to simplify the
2045 retrieval of the applicable predicate function to an itype created for
2046 a constrained array component.
2047 * einfo.adb: Subprograms for Predicated_Parent.
2048 (Predicate_Function): Use new attribute.
2049 * exp_util.adb (Make_Predicate_Call): If the predicate function is not
2050 available for a subtype, retrieve it from the base type, which may have
2051 been frozen after the subtype declaration and not captured by the
2052 subtype declaration.
2053 * sem_aggr.adb (Resolve_Array_Aggregate): An Others association is
2054 legal within a generated initiqlization procedure, as may happen with a
2055 predicate check on a component, when the predicate function applies to
2056 the base type of the component.
2057 * sem_ch3.adb (Analyze_Subtype_Declaration): Clean up inheritance of
2058 predicates for subtype declarations and for subtype indications in
2059 other contexts.
2060 (Process_Subtype): Likewise. Handle properly the case of a private type
2061 with unknown discriminants whose full view is an unconstrained array.
2062 Use Predicated_Parent to indicate source of predicate function on an
2063 itype whose parent is itself an itype.
2064 (Complete_Private_Subtype): If the private view has unknown
2065 discriminants and the full view is an unconstrained array, set base
2066 type of completion to the full view of parent.
2067 (Inherit_Predicate_Flags): Prevent double assignment of predicate
2068 function and flags.
2069 (Build_Subtype): For a constrained array component, propagate predicate
2070 information from original component type declaration.
2071
2072 2018-05-23 Boris Yakobowski <yakobowski@adacore.com>
2073
2074 * libgnat/a-ngelfu.ads (Arctanh, Arccoth): Fix faulty preconditions.
2075
2076 2018-05-23 Arnaud Charlet <charlet@adacore.com>
2077
2078 * checks.adb (Minimize_Eliminate_Overflows): Default initialize Lo and
2079 Hi.
2080 * sem_elab.adb: Make "out" parameters instead of "in out" when
2081 relevant.
2082
2083 2018-05-23 Bob Duff <duff@adacore.com>
2084
2085 * gnatbind.adb (List_Applicable_Restrictions): Add
2086 No_Implementation_Restrictions to the list of restrictions not to list.
2087 Remove double negative "not No_Restriction_List". Comment the
2088 commentary that is output, so it won't cause errors if used directly in
2089 a gnat.adc.
2090
2091 2018-05-23 Ed Schonberg <schonberg@adacore.com>
2092
2093 * sem_prag.adb (Inherit_Class_Wide_Pre): Refine legality check on
2094 class-wide precondition on a type extension when ancestor does not have
2095 a class-wide precondition. Previously the compiler accepted such a
2096 precondition when the ancestor had a class-wide postcondition.
2097
2098 2018-05-23 Javier Miranda <miranda@adacore.com>
2099
2100 * sem_attr.adb (Valid_Scalars): Do not invoke Error_Attr_P to report
2101 the warning on occurrences of this attribute whose evaluation is always
2102 true (since that subprogram aborts processing the attribute). In
2103 addition, replace the node by its boolean result 'True' (required
2104 because the backend has no knowledge of this attribute).
2105
2106 2018-05-23 Bob Duff <duff@adacore.com>
2107
2108 * libgnat/a-convec.adb: (Insert, Insert_Space): Suppress warnings. The
2109 code in question is not reachable in the case where Count_Type'Last is
2110 out of range.
2111
2112 2018-05-23 Yannick Moy <moy@adacore.com>
2113
2114 * doc/gnat_rm/implementation_defined_pragmas.rst: Clarify meaning of
2115 local pragma Warnings Off without On.
2116 * gnat_rm.texi: Regenerate.
2117
2118 2018-05-23 Olivier Hainque <hainque@adacore.com>
2119
2120 * libgnat/g-excact.ads (Is_Foreign_Exception): New predicate.
2121 * libgnat/g-excact.adb: Implement.
2122
2123 2018-05-23 Ed Schonberg <schonberg@adacore.com>
2124
2125 * sem_ch5.adb (Analyze_Iterator_Specification): If a subtype indication
2126 is present, verify its legality when the domain of iteration is a
2127 GNAT-specific formal container, as is already done for arrays and
2128 predefined containers.
2129
2130 2018-05-23 Yannick Moy <moy@adacore.com>
2131
2132 * sem_util.adb (Enclosing_Declaration): Fix the case of a named number
2133 declaration, which was not taken into account.
2134
2135 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2136
2137 * debug.adb: Switch -gnatd_s is now used to stop elaboration checks on
2138 synchronized suspension.
2139 * rtsfind.ads: Add entries for units Ada.Synchronous_Barriers and
2140 Ada.Synchronous_Task_Control and routines Suspend_Until_True and
2141 Wait_For_Release.
2142 * sem_elab.adb: Document switch -gnatd_s.
2143 (In_Task_Body): New routine.
2144 (Is_Potential_Scenario): Code cleanup. Stop the traversal of a task
2145 body when the current construct denotes a synchronous suspension call,
2146 and restriction No_Entry_Calls_In_Elaboration_Code or switch -gnatd_s
2147 is in effect.
2148 (Is_Synchronous_Suspension_Call): New routine.
2149 * switch-c.adb (Scan_Front_End_Switches): Switch -gnatJ now sets switch
2150 -gnatd_s.
2151
2152 2018-05-23 Javier Miranda <miranda@adacore.com>
2153
2154 * exp_disp.adb (Make_DT): Restrict the initialization of
2155 External_Tag and Expanded_Name to an empty string to the case where
2156 both pragmas apply (i.e. No_Tagged_Streams and Discard_Names), since
2157 restricted runtimes are compiled with pragma Discard_Names.
2158 * doc/gnat_rm/implementation_defined_pragmas.rst,
2159 doc/gnat_rm/implementation_defined_characteristics.rst: Add
2160 documentation.
2161 * gnat_rm.texi: Regenerate.
2162
2163 2018-05-23 Maroua Maalej <maalej@adacore.com>
2164
2165 * sem_spark.adb: Fix of some permission rules of pointers in SPARK.
2166
2167 2018-05-23 Ed Schonberg <schonberg@adacore.com>
2168
2169 * sem_ch5.adb (Preanalyze_Range): The pre-analysis of the domain of
2170 iteration of an Ada2012 loop is performed to determine the type of the
2171 domain, but full analysis is performed once the loop is rewritten as a
2172 while-loop during expansion. The pre-analysis suppresses expansion; it
2173 must also suppress the generation of freeze nodes, which may otherwise
2174 appear in the wrong scope before rewritting.
2175
2176 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2177
2178 * sem_elab.adb: Update the section on suppressing elaboration warnings.
2179
2180 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2181
2182 * einfo.adb (Is_Elaboration_Checks_OK_Id): Use predicate
2183 Is_Elaboration_Target.
2184 (Is_Elaboration_Target): New routine.
2185 (Is_Elaboration_Warnings_OK_Id): Use predicate Is_Elaboration_Target.
2186 (Set_Is_Elaboration_Checks_OK_Id): Use predicate Is_Elaboration_Target.
2187 (Set_Is_Elaboration_Warnings_OK_Id): Use predicate
2188 Is_Elaboration_Target.
2189 * einfo.ads: Add new synthesized attribute Is_Elaboration_Target along
2190 with occurrences in nodes.
2191 (Is_Elaboration_Target): New routine.
2192 * sem_prag.adb (Analyze_Pragma): Suppress elaboration warnings when an
2193 elaboration target is subject to pragma Warnings (Off, ...).
2194
2195 2018-05-23 Eric Botcazou <ebotcazou@adacore.com>
2196
2197 * repinfo.adb (List_Type_Info): Remove obsolete stuff.
2198
2199 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2200
2201 * einfo.adb: Flag304 is now Is_Elaboration_Warnings_OK_Id.
2202 (Is_Elaboration_Warnings_OK_Id): New routine.
2203 (Set_Is_Elaboration_Warnings_OK_Id): New routine.
2204 (Write_Entity_Flags): Output Flag304.
2205 * einfo.ads: Add new attribute Is_Elaboration_Warnings_OK_Id along with
2206 occurrences in entities.
2207 (Is_Elaboration_Warnings_OK_Id): New routine along with pragma Inline.
2208 (Set_Is_Elaboration_Warnings_OK_Id): New routine along with pragma
2209 Inline.
2210 * sem_attr.adb (Analyze_Access_Attribute): Capture the state of
2211 elaboration warnings.
2212 * sem_ch3.adb (Analyze_Object_Declaration): Capture the state of
2213 elaboration warnings.
2214 * sem_ch6.adb (Analyze_Abstract_Subprogram_Declaration): Capture the
2215 state of elaboration warnings.
2216 (Analyze_Subprogram_Body_Helper): Capture the state of elaboration
2217 warnings.
2218 (Analyze_Subprogram_Declaration): Capture the state of elaboration
2219 warnings.
2220 * sem_ch9.adb (Analyze_Entry_Declaration): Capture the state of
2221 elaboration warnings.
2222 (Analyze_Single_Task_Declaration): Capture the state of elaboration
2223 warnings.
2224 (Analyze_Task_Type_Declaration): Capture the state of elaboration
2225 warnings.
2226 * sem_ch12.adb (Analyze_Generic_Package_Declaration): Capture the state
2227 of elaboration warnings.
2228 (Analyze_Generic_Subprogram_Declaration): Capture the state of
2229 elaboration warnings.
2230 * sem_elab.adb: Add a section on suppressing elaboration warnings.
2231 Type Processing_Attributes includes component Suppress_Warnings
2232 intended to suppress any elaboration warnings along a path in the
2233 graph. Update Initial_State to include a value for this component.
2234 Types Target_Attributes and Task_Attriutes include component
2235 Elab_Warnings_OK to indicate whether the target or task has elaboration
2236 warnings enabled. component Elab_Warnings_OK.
2237 (Build_Access_Marker): Propagate attribute
2238 Is_Elaboration_Warnings_OK_Node from the attribute to the generated
2239 call marker.
2240 (Extract_Instantiation_Attributes): Set the value for Elab_Warnings_OK.
2241 (Extract_Target_Attributes): Set the value for Elab_Warnings_OK.
2242 (Extract_Task_Attributes): Set the value for Elab_Warnings_OK.
2243 (Process_Conditional_ABE_Access): Suppress futher elaboration warnings
2244 when already in this mode or when the attribute or target have warnings
2245 suppressed.
2246 (Process_Conditional_ABE_Activation_Impl): Do not emit any diagnostics
2247 if warnings are suppressed.
2248 (Process_Conditional_ABE_Call): Suppress further elaboration warnings
2249 when already in this mode, or the target or call have warnings
2250 suppressed.
2251 (Process_Conditional_ABE_Call_Ada): Do not emit any diagnostics if
2252 warnings are suppressed.
2253 (Process_Conditional_ABE_Call_SPARK): Do not emit any diagnostics if
2254 warnings are suppressed.
2255 (Process_Conditional_ABE_Instantiation): Suppress further elaboration
2256 warnings when already in this mode or when the instantiation has
2257 warnings suppressed.
2258 (Process_Conditional_ABE_Instantiation_Ada): Do not emit any
2259 diagnostics if warnings are suppressed.
2260 (Process_Conditional_ABE_Variable_Assignment_Ada): Use the more
2261 specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
2262 (Process_Conditional_ABE_Variable_Assignment_SPARK): Use the more
2263 specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
2264 (Process_Task_Object): Suppress further elaboration warnings when
2265 already in this mode, or when the object, activation call, or task type
2266 have warnings suppressed. Update the processing state to indicate that
2267 the path goes through a task body.
2268 * sinfo.adb (Is_Elaboration_Warnings_OK_Node): Accept attribute
2269 references.
2270 (Set_Is_Elaboration_Warnings_OK_Node): Accept attribute references.
2271 * sinfo.ads: Attribute Is_Elaboration_Warnings_OK_Node now applies to
2272 attribute references.
2273
2274 2018-05-23 Piotr Trojanek <trojanek@adacore.com>
2275
2276 * einfo.ads: Minor reformatting.
2277
2278 2018-05-23 Ed Schonberg <schonberg@adacore.com>
2279
2280 * sem_ch3.adb (Analyze_Object_Declaration): If expression is an
2281 anonymous_access_to_ subprogram formal, apply a conversion to force an
2282 accsssibility check that will fail statically, enforcing 3.10.2 (13).
2283
2284 2018-05-23 Daniel Mercier <mercier@adacore.com>
2285
2286 * gnat1drv.adb: Turn off length expansion in CodePeer mode.
2287
2288 2018-05-23 Bob Duff <duff@adacore.com>
2289
2290 * freeze.adb: (Check_Address_Clause): Deal with build-in-place
2291 aggregates in addition to build-in-place calls.
2292
2293 2018-05-23 Bob Duff <duff@adacore.com>
2294
2295 * einfo.ads: Minor reformatting.
2296 * sem_ch3.adb: Likewise.
2297 * sinfo.ads: Likewise.
2298
2299 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2300
2301 * exp_ch3.adb (Default_Initialize_Object): Do not optimize scalar array
2302 initialization when the component type has predicates.
2303 * exp_ch4.adb (Expand_N_Allocator): Do not optimize scalar array
2304 allocation when the component type has predicates.
2305
2306 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
2307
2308 * einfo.adb, exp_disp.adb, sem_ch3.adb, sem_ch6.adb, sem_prag.adb:
2309 Minor reformatting.
2310
2311 2018-05-22 Justin Squirek <squirek@adacore.com>
2312
2313 * sem_ch6.adb (Analyze_Expression_Function): Propagate flags from the
2314 original function spec into the generated function spec due to
2315 expansion of expression functions during analysis.
2316 (Analyze_Subprogram_Body_Helper): Modify check on formal parameter
2317 references from the body to the subprogram spec in the case of
2318 expression functions because of inconsistances related to having a
2319 generated body.
2320 * libgnarl/s-osinte__android.ads: Flag parameters as unused.
2321 * libgnarl/s-osinte__lynxos178e.ads: Likewise.
2322 * libgnarl/s-osinte__qnx.adb: Likewise.
2323 * libgnarl/s-osinte__qnx.ads: Likewise.
2324
2325 2018-05-22 Doug Rupp <rupp@adacore.com>
2326
2327 * init.c (HAVE_ADJUST_CONTEXT_FOR_RAISE): Don't define on VxWorks7 for
2328 AArch64.
2329
2330 2018-05-22 Olivier Hainque <hainque@adacore.com>
2331
2332 * libgnat/a-except.adb (Exception_Propagation.Propagate_Exception):
2333 Expect an Exception_Occurence object, not an Access.
2334 (Complete_And_Propagate_Occurrence): Adjust accordingly.
2335 (Raise_From_Signal_Handler): Likewise.
2336 (Reraise_Occurrence_No_Defer): If we have a Machine_Occurrence
2337 available in the provided occurrence object, just re-propagate the
2338 latter as a bare "raise;" would do.
2339 * libgnat/a-exexpr.adb (Propagate_Exception): Adjust to spec change.
2340 * libgnat/a-exstat.adb (String_To_EO): Initialize X.Machine_Occurrence
2341 to null, to mark that the occurrence we're crafting from the stream
2342 contents is not being propagated (yet).
2343
2344 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
2345
2346 * exp_aggr.adb (Initialize_Ctrl_Record_Component): Insert the generated
2347 code for a transient component in line with the rest of the
2348 initialization code, rather than before the aggregate. This ensures
2349 that the component has proper visibility of the discriminants.
2350
2351 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
2352
2353 * adaint.c: Reorganize QNX-specific macros, use syspage to retreive the
2354 number of CPUs.
2355
2356 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
2357
2358 * sigtramp-qnx.c: Properly restore link register in signal trampoline.
2359
2360 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
2361
2362 * exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Strip away any
2363 conversions before extracting the value of the expression.
2364 * exp_ch3.adb (Default_Initialize_Object): Optimize the default
2365 initialization of an array of scalars.
2366 (Get_Simple_Init_Val): Add processing for array types. Remove the
2367 processing of strings because this case is already handled by the array
2368 case.
2369 (Needs_Simple_Initialization): Moved to Sem_Util.
2370 (Simple_Init_Array_Type): New routine.
2371 (Simple_Init_Initialize_Scalars_Type): Reimplemented to use the new
2372 facilities from Sem_Util.
2373 (Simple_Initialization_OK): New routine.
2374 * exp_ch3.ads (Needs_Simple_Initialization): Moved to Sem_Util.
2375 * exp_ch4.adb (Expand_N_Allocator): Optimize the default allocation of
2376 an array of scalars.
2377 * sem_prag.adb (Analyze_Float_Value): New routine.
2378 (Analyze_Integer_Value): New routine.
2379 (Analyze_Pragma): Reimplement the analysis of pragma Initialize_Scalars
2380 to handled the extended form of the pragma.
2381 (Analyze_Type_Value_Pair): New routine.
2382 * sem_util.adb: Add invalid value-related data structures.
2383 (Examine_Array_Bounds): New routine.
2384 (Has_Static_Array_Bounds): Reimplemented.
2385 (Has_Static_Non_Empty_Array_Bounds): New routine.
2386 (Invalid_Scalar_Value): New routine.
2387 (Needs_Simple_Initialization): Moved from Exp_Ch3.
2388 (Set_Invalid_Scalar_Value): New routines.
2389 * sem_util.ads (Has_Static_Non_Empty_Array_Bounds): New routine.
2390 (Invalid_Scalar_Value): New routine.
2391 (Needs_Simple_Initialization): Moved from Exp_Ch3.
2392 (Set_Invalid_Scalar_Value): New routines.
2393 * snames.ads-tmpl: Add names for the salar type families used by pragma
2394 Initialize_Scalars.
2395
2396 2018-05-22 Javier Miranda <miranda@adacore.com>
2397
2398 * exp_disp.adb (Make_DT): Initialize the External_Tag with an empty
2399 string when pragma No_Tagged_Streams is applicable to the tagged type,
2400 and initialize the Expanded_Name with an empty string when pragma
2401 Discard_Names is applicable to the tagged type.
2402
2403 2018-05-22 Ed Schonberg <schonberg@adacore.com>
2404
2405 * sem_ch6.adb (Check_Conformance): Add RM reference for rule that a
2406 formal subprogram is never subtype conformqnt, and thus cannot be the
2407 prefix of 'Access. Reject as well the attribute when applied to a
2408 renaming of a formal subprogram.
2409
2410 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
2411
2412 * exp_ch3.adb (Build_Array_Init_Proc): Update the call to
2413 Needs_Simple_Initialization.
2414 (Build_Init_Statements): Update the call to Get_Simple_Init_Val.
2415 (Check_Subtype_Bounds): Renamed to Extract_Subtype_Bounds. Update the
2416 profile and comment on usage.
2417 (Default_Initialize_Object): Do not use New_Copy_Tree to set the proper
2418 Sloc of a value obtained from aspect Default_Value because this could
2419 potentially replicate large trees. The proper Sloc is now set in
2420 Get_Simple_Init_Val.
2421 (Get_Simple_Init_Val): Reorganized by breaking the various cases into
2422 separate routines. Eliminate the use of global variables.
2423 (Init_Component): Update the call to Get_Simple_Init_Val.
2424 (Needs_Simple_Initialization): Update the parameter profile and all
2425 uses of T.
2426 (Simple_Init_Defaulted_Type): Copy the value of aspect Default_Value
2427 and set the proper Sloc.
2428 * exp_ch3.ads (Get_Simple_Init_Val): Update the parameter profile and
2429 comment on usage.
2430 (Needs_Simple_Initialization): Update the parameter profile.
2431
2432 2018-05-22 Patrick Bernardi <bernardi@adacore.com>
2433
2434 * sem_ch3.adb (Build_Discriminant_Constraints): Raise an error if the
2435 user tries to use a subtype indication as a discriminant constraint.
2436
2437 2018-05-22 Ed Schonberg <schonberg@adacore.com>
2438
2439 * exp_ch4.ads, exp_ch4.adb, exp_util.adb, expander.adb: Remove mention
2440 of N_Reduction_Expression and N_Reduction_Expression_Parameter.
2441 * par-ch4.adb: Remove parsing routines for reduction expressions.
2442 * sem.adb, sinfo.ads, sinfo.adb, sem_ch4.ads, sem_ch4.adb, sem_res.adb,
2443 sem_spark.adb, sprint.adb: Remove analysis routines for reduction
2444 expressions.
2445
2446 2018-05-22 Arnaud Charlet <charlet@adacore.com>
2447
2448 * sem_ch8.adb (Check_Frozen_Renaming): Do not emit error in
2449 Relaxed_RM_Semantics mode.
2450
2451 2018-05-22 Arnaud Charlet <charlet@adacore.com>
2452
2453 * comperr.adb (Delete_SCIL_Files): Take into account
2454 N_Generic_Package_Renaming_Declaration.
2455
2456 2018-05-22 Ed Schonberg <schonberg@adacore.com>
2457
2458 * sem_ch3.adb (Search_Derivation_Levels): Whenever a parent type is
2459 private, use the full view if available, because it may include renamed
2460 discriminants whose values are stored in the corresponding
2461 Stored_Constraint.
2462
2463 2018-05-22 Ed Schonberg <schonberg@adacore.com>
2464
2465 * einfo.ads, einfo.adb: New attribute Hidden_In_Formal_Instance,
2466 defined on packages that are actuals for formal packages, in order to
2467 set/reset the visibility of the formals of a formal package with given
2468 actuals, when there are subsequent uses of those formals in the
2469 enclosing generic, as required by RN 12.7 (10).
2470 * atree.ads, atree.adb: Add operations for Elist30.
2471 * atree.h: Add Elist30.
2472 * sem_ch12.adb (Analyze_Formal_Package_Instantiation): Collect formals
2473 that are not defaulted and are thus not visible within the current
2474 instance.
2475 (Check_Formal_Packages): Reset visibility of formals of a formal
2476 package that are not defaulted, on exit from current instance.
2477
2478 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
2479
2480 * sem_prag.adb (Analyze_Input_Output): Emit an error when a non-null,
2481 non-'Result output appears in the output list of a function.
2482
2483 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
2484
2485 * exp_attr.adb (Build_Array_VS_Func): Reimplemented.
2486 (Build_Record_VS_Func): Reimplemented.
2487 (Expand_N_Attribute): Reimplement the handling of attribute
2488 'Valid_Scalars.
2489 * sem_attr.adb (Analyze_Attribute): Reimplement the handling of
2490 attribute 'Valid_Scalars.
2491 * sem_util.adb (Scalar_Part_Present): Reimplemented.
2492 (Validated_View): New routine.
2493 * sem_util.ads (Scalar_Part_Present): Update the parameter profile and
2494 comment on usage.
2495 (Validated_View): New routine.
2496 * doc/gnat_rm/implementation_defined_attributes.rst: Update the
2497 documentation of attribute 'Valid_Scalars.
2498 * gnat_rm.texi: Regenerate.
2499
2500 2018-05-22 Bob Duff <duff@adacore.com>
2501
2502 * binde.adb: (Choose): Ignore a pragma Elaborate_Body that appears in
2503 the spec of a SAL_Interface package.
2504
2505 2018-05-22 Ed Schonberg <schonberg@adacore.com>
2506
2507 * freeze.adb (Freeze_Entity): When analyzing delayed aspects of an
2508 entity E within a generic unit, indicate that there are no remaining
2509 delayed aspects after invoking Analyze_Aspects_At_Freeze_Point. The
2510 entity E is not frozen yet but the aspects should not be reanalyzed at
2511 the freeze point, which may be outside of the generic and may not have
2512 the proper visibility.
2513
2514 2018-05-22 Bob Duff <duff@adacore.com>
2515
2516 * doc/gnat_ugn/gnat_utility_programs.rst: Add documentation for
2517 the new --split-line-before-record, --indent-named-statements and
2518 --no-align-modes gnatpp switches.
2519
2520 2018-05-22 Ed Schonberg <schonberg@adacore.com>
2521
2522 * sem_prag.adb (Process_Compile_Time_Warning_Or_Error): Handle properly
2523 a second argument that is a constant of a given string value.
2524
2525 2018-05-22 Doug Rupp <rupp@adacore.com>
2526
2527 * sigtramp-vxworks-target.inc: Align stack to 128bits on AArch64.
2528
2529 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
2530
2531 * sigtramp-qnx.c: Fix stack alignment issue in the signal trampoline.
2532
2533 2018-05-22 Ed Schonberg <schonberg@adacore.com>
2534
2535 * freeze.adb (Freeze_Fixed_Point_Type): If the first subtype has
2536 delayed aspects, analyze them now, os that the representation of the
2537 type (size, bounds) can be computed and validated.
2538
2539 2018-05-22 Olivier Hainque <hainque@adacore.com>
2540
2541 * libgnat/s-dwalin.adb (Enable_Cache): Skip symbols outside of the
2542 executable code section boundaries.
2543
2544 2018-05-22 Javier Miranda <miranda@adacore.com>
2545
2546 * locales.c: New implementation for the Ada.Locales package.
2547 * libgnat/a-locale.ads: Remove comment indicating that this is not
2548 implemented.
2549 * doc/gnat_rm/standard_library_routines.rst: Remove comment indicating
2550 that this is not implemented.
2551 * gnat_rm.texi: Regenerate.
2552
2553 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
2554
2555 * exp_ch5.adb, freeze.adb, pprint.adb, sem_ch4.adb, sem_res.adb: Minor
2556 reformattings.
2557
2558 2018-05-22 Justin Squirek <squirek@adacore.com>
2559
2560 * sem_ch12.adb (In_Same_Declarative_Part): Moved to sem_util.
2561 (Freeze_Subprogram_Body, Install_Body): Modify calls to
2562 In_Same_Declarative_Part.
2563 * sem_prag.adb (Analyze_Pragma-Pragma_Pure_Function): Add check to
2564 verify pragma declaration is within the same declarative list with
2565 corresponding error message.
2566 * sem_util.adb, sem_util.ads (In_Same_Declarative_Part): Moved from
2567 sem_ch12.adb and generalized to be useful outside the scope of
2568 freezing.
2569
2570 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
2571
2572 * sem_ch6.adb (Analyze_Subprogram_Declaration): Set the proper
2573 categorization of the unit after processing the aspects in case one of
2574 its aspects is converted into a categorization pragma.
2575
2576 2018-05-21 Ed Schonberg <schonberg@adacore.com>
2577
2578 * freeze.adb (Warn_Overlay): Do not emit a wawrning on an object
2579 declaration with an explicit address clause and a type with default
2580 initialization, if the declaration carries an aspect
2581 Suppress_Initialization.
2582
2583 2018-05-21 Daniel Mercier <mercier@adacore.com>
2584
2585 * pprint.adb: Use mixed case for attribute names.
2586
2587 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
2588
2589 * sem_ch6.adb (Analyze_Generic_Subprogram_Body): Rename the call to
2590 Analyze_Aspect_Specifications_On_Body_Or_Stub.
2591 (Analyze_Subprogram_Body_Helper): Rename the calls to
2592 Analyze_Aspect_Specifications_On_Body_Or_Stub.
2593 * sem_ch9.adb (Analyze_Entry_Body): Rename the call to
2594 Analyze_Aspect_Specifications_On_Body_Or_Stub.
2595 * sem_ch10.adb: Add with and use clause for Sem_Ch13.
2596 (Analyze_Package_Body_Stub): Add constant Id. Decorate the package stub
2597 prior to analyzing its aspects.
2598 (Analyze_Protected_Body_Stub): Add constant Id. Decorate the package
2599 stub prior to analyzing its aspects. Save and restore the configuration
2600 switches.
2601 (Analyze_Task_Body_Stub): Add constant Id. Decorate the package stub
2602 prior to analyzing its aspects.
2603 * sem_ch13.adb (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
2604 to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
2605 * sem_ch13.ads (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
2606 to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
2607 * sem_prag.adb: Code reformatting.
2608 (Analyze_Refined_Depends_Global_Post): Consider task body stubs.
2609
2610 2018-05-21 Jerome Lambourg <lambourg@adacore.com>
2611
2612 * gcc-interface/Makefile.in: Add g-soliop__qnx.ads to the runtime build
2613 for QNX.
2614
2615 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
2616
2617 * exp_cg.adb: Remove with and use clause for Exp_Disp.
2618 * exp_ch9.adb: Remove with and use clause for Exp_Disp.
2619 * exp_disp.adb (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
2620 (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
2621 (Is_Predefined_Internal_Operation): Moved to Sem_Util.
2622 * exp_disp.ads (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
2623 (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
2624 (Is_Predefined_Internal_Operation): Moved to Sem_Util.
2625 * exp_dist.adb: Remove with and use clause for Exp_Disp.
2626 * freeze.adb: Remove with and use clause for Exp_Disp.
2627 * sem_cat.adb: Remove with and use clause for Exp_Disp.
2628 * sem_ch6.adb: Remove with and use clause for Exp_Disp.
2629 * sem_ch12.adb: Remove with and use clause for Exp_Disp.
2630 * sem_elab.adb (Check_Overriding_Primitive): Do not process predefined
2631 primitives.
2632 * sem_util.adb: Remove with and use clause for Exp_Disp.
2633 (Is_Predefined_Dispatching_Operation): Moved from Exp_Disp.
2634 (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
2635 (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
2636 * sem_util.ads (Is_Predefined_Dispatching_Operation): Moved from
2637 Exp_Disp.
2638 (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
2639 (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
2640
2641 2018-05-21 Ed Schonberg <schonberg@adacore.com>
2642
2643 * sem_res.adb (Valid_Conversion): Improve error message on an illegal
2644 type conversion whose expression has a limited view of a type.
2645
2646 2018-05-21 Ed Schonberg <schonberg@adacore.com>
2647
2648 * exp_ch5.adb (Build_Formal_Container_Iteration): If source has
2649 explicit name for iterator loop, preserve that name in expanded
2650 construct, for possible use in exit statements.
2651
2652 2018-05-21 Javier Miranda <miranda@adacore.com>
2653
2654 * sem_ch4.adb (Analyze_Membership_Op): Avoid compiler crash when the
2655 spec of a unit has Ada 2012 membership tests with multiple choices and
2656 the unit body is not compiled under Ada 2012 mode.
2657
2658 2018-05-21 Doug Rupp <rupp@adacore.com>
2659
2660 * sigtramp-vxworks-target.inc: Set cfa_reg properly from sigcontext
2661 pregs.
2662 (CFI_COMMON_REGS): Restore LR jic probed from prologue.
2663 (REGNO_PC_OFFSET): Change to correct value for Aarch64.
2664
2665 2018-05-21 Jose Ruiz <ruiz@adacore.com>
2666
2667 * doc/gnat_ugn/gnat_utility_programs.rst, exp_attr.adb,
2668 libgnarl/s-tassta.adb: Minor typo fixes
2669
2670 2018-05-21 Ed Schonberg <schonberg@adacore.com>
2671
2672 * sem_ch4.adb (Analyze_One_Call): Recognize complex cases where an
2673 indexed call originally in prefix forn is itself the prefix of a
2674 further call.
2675
2676 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
2677
2678 * sem_eval.adb (Is_Null_Range): Clarify access to the full view of a
2679 type.
2680 (Not_Null_Range): Same as above.
2681
2682 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
2683
2684 * exp_ch3.adb: Minor reformatting.
2685 * exp_ch6.adb: Likewise.
2686 * freeze.adb: Likewise.
2687 * inline.adb: Likewise.
2688 * sem_util.adb: Likewise.
2689
2690 2018-05-21 Yannick Moy <moy@adacore.com>
2691
2692 * inline.adb (Expand_Inlined_Call.Process_Formals): Use a type
2693 conversion instead of an unchecked type conversion when inlining a
2694 return statement, unless type qualification is required (for character
2695 and string literal) or no check can result from the conversion (for
2696 access types).
2697 * opt.ads: Update comment.
2698
2699 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
2700
2701 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Install the elaboration
2702 model of the compilation unit spec, if any.
2703 * sem_ch7.adb (Analyze_Package_Body_Helper): Install the elaboration
2704 model of the compilation unit spec, if any.
2705 * sem_ch10.adb (Analyze_Subunit): Install the elaboration model of the
2706 parent compilation unit spec, if any.
2707 * sem_elab.adb (Check_Elaboration_Scenarios): Restore the elaboration
2708 model of the main unit.
2709 (Is_Same_Unit): The routine now uses Unit_Entity.
2710 (Is_Subunit): Removed.
2711 (Normalize_Unit): Removed.
2712 (Unit_Entity): New routine.
2713 * sem_prag.adb (Analyze_Pragma): Reimplement the handling of pragma
2714 Elaboration_Checks. The analysis now ensures that the pragma appears at
2715 the configuration level, and on the initial declaration of a unit.
2716 Other placements are either flagged as illegal, or ignored.
2717 (Check_Duplicate_Elaboration_Checks_Pragma): New routine.
2718 (Ignore_Elaboration_Checks_Pragma): New routine.
2719 * sem_util.adb (Install_Elaboration_Model): New routine.
2720 * sem_util.ads (Install_Elaboration_Model): New routine.
2721 * doc/gnat_rm/implementation_defined_pragmas.rst: Update the
2722 documentation of pragma Elaboration_Checks.
2723 * gnat_rm.texi: Regenerate.
2724
2725 2018-05-21 Olivier Hainque <hainque@adacore.com>
2726
2727 * libgnat/s-trasym__dwarf.adb (Executable_Name): Return argv[0] instead
2728 of empty string when argv[0] couldn't be found on PATH.
2729 (Enable_Cache): Raise Program_Error instead of attempting a null
2730 pointer dereference when the Exec_Module initialization failed.
2731
2732 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
2733
2734 * libgnarl/a-reatim.ads (Clock_Time): Remove External aspect.
2735 * libgnarl/a-taside.ads (Tasking_State): Likewise.
2736 * libgnat/a-calend.ads (Clock_Time): Likewise.
2737
2738 2018-05-21 Yannick Moy <moy@adacore.com>
2739
2740 * sem_ch6.adb (Analyze_Procedure_Call): Refine test to recognize prefix
2741 call notation in inlined call in GNATprove mode.
2742
2743 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
2744
2745 * einfo.adb (Is_External_State): An abstract state is also external
2746 when it is declared with option "synchronous".
2747 * einfo.ads: Update the documentation of synthesized attribute
2748 Is_External_State.
2749 * sem_util.adb (Find_Simple_Properties): New routine.
2750 (Is_Enabled_External_Property): New routine.
2751 (State_Has_Enabled_Property): Reimplemented. The two flavors of option
2752 External have precedence over option Synchronous when determining
2753 whether a property is in effect.
2754
2755 2018-05-21 Yannick Moy <moy@adacore.com>
2756
2757 * sem_eval.adb (Static_Length): Take into account case of variable of
2758 subtype string literal.
2759
2760 2018-05-21 Olivier Hainque <hainque@adacore.com>
2761
2762 * libgnat/s-objrea.ads (Get_Memory_Bounds): Rename as Get_Xcode_Bounds.
2763 (Object_Section): Rename Flag_Alloc component as Flag_Xcode.
2764 * libgnat/s-objrea.adb (Get_Xcode_Bounds): Adjust to new subprogram and
2765 component name.
2766 (Get_Section, ELF case): Set Flag_Xcode from SHF_EXECINSTR.
2767 * libgnat/s-dwalin.adb (Open): Adjust to the Get_Memory_Bounds name
2768 change.
2769
2770 2018-05-21 Olivier Hainque <hainque@adacore.com>
2771
2772 * libgnat/s-dwalin.ads (Dwarf_Context): Change type of Load_Address to
2773 Address, and type of Low, High to Storage_Offset.
2774 (Low): Rename as Low_Address and convey that the return value is a
2775 runtime reference accounting for a load address.
2776 * libgnat/s-dwalin.adb (Read_Aranges_Entry): Adjust to the
2777 address/offset type changes.
2778 (Aranges_Lookup): Likewise.
2779 (Symbolic_Address): Likewise.
2780 (Symbolic_Traceback): Likewise.
2781 (Dump_Cache): Likewise.
2782 (Is_Inside): Likewise.
2783 (Open): Likewise.
2784 (Set_Load_Address): Likewise.
2785 (Low_Address): Likewise, and account for C.Load_Address.
2786 * libgnat/s-trasym__dwarf.adb (Lt): Use Low_Address instead of Low.
2787 (Multi_Module_Symbolic_Traceback): Compare address in traceback
2788 with module Low_Address instead of Low.
2789
2790 2018-05-21 Olivier Hainque <hainque@adacore.com>
2791
2792 * libgnat/s-dwalin.ads (Dwarf_Context): Rename Load_Slide as
2793 Load_Address.
2794 * libgnat/s-dwalin.adb (Is_Inside): Adjust accordingly.
2795 (Set_Load_Address): Likewise.
2796 (Symbolic_Traceback): Likewise.
2797
2798 2018-05-21 Olivier Hainque <hainque@adacore.com>
2799
2800 * libgnat/s-trasym__dwarf.adb (Add_Module_To_Cache): Expect a
2801 Load_Address argument and pass it down to Init_Module.
2802 * libgnat/s-tsmona__linux.adb (Build_Cache_For_All_Modules): Pass
2803 lm.l_addr as the Load_Address to Add_Module_To_Cache.
2804
2805 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
2806
2807 * einfo.adb (Has_Discriminants): Stronger assertion.
2808 (Set_Has_Discriminants): Stronger assertion.
2809 * sem_ch13.adb (Push_Scope_And_Install_Discriminants): Adapt to respect
2810 the stronger assertion on Has_Discriminant.
2811 (Uninstall_Discriminants_And_Pop_Scope): Same as above.
2812 * sem_util.adb (New_Copy_Tree): Same as above.
2813 * sem_ch7.adb (Generate_Parent_References): Prevent calls to
2814 Has_Discriminant on non-type entities that might happen when the
2815 compiled code has errors.
2816 * sem_ch3.adb (Derived_Type_Declaration): Only call
2817 Set_Has_Discriminant on type entities.
2818
2819 2018-05-21 Arnaud Charlet <charlet@adacore.com>
2820
2821 * exp_unst.adb (Unnest_Subprogram): Unnest all subprograms relevant for
2822 code generation.
2823
2824 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
2825
2826 * lib.ads: Fix typo in enumeration in comment.
2827
2828 2018-05-21 Ed Schonberg <schonberg@adacore.com>
2829
2830 * sem_attr.adb (Analyze_Attribute, case Scalar_Storage_Order): The
2831 attribute reference is legal within a generic unit when the prefix is a
2832 formal private type.
2833
2834 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
2835
2836 * exp_ch7.adb (Establish_Transient_Scope): Code cleanup. Do not
2837 delegate the secondary stack management when there is no suitable
2838 transient context, and the transient scope was intended to manage the
2839 secondary stack because this causes premature reclamation. Change the
2840 transient scope creation logic by special casing assignment statements
2841 of controlled components for type initialization procedures.
2842 (Find_Node_To_Be_Wrapped): Renamed to Find_Transient_Context. Update
2843 the comment on usage.
2844 (Find_Transient_Context): Change the initinte loop into a while loop.
2845 Iterations schemes and iterator specifications are not valid transient
2846 contexts because they rely on special processing. Assignment statements
2847 are now treated as a normal transient context, special cases are
2848 handled by the caller. Add special processing for pragma Check.
2849 (Is_OK_Construct): Removed. Its functionality has been merged in
2850 routine Find_Transient_Context.
2851 * sem_ch5.adb (Check_Call): Reimplemented. Add code to properly
2852 retrieve the subprogram being invoked. Use a more accurate predicate
2853 (Requires_Transient_Scope) to determine that the function will emply
2854 the secondary stack.
2855
2856 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
2857
2858 * ada_get_targ.adb: Fix subprogram body headers.
2859 * adabkend.adb: Likewise.
2860 * checks.adb: Likewise.
2861 * exp_ch3.adb: Likewise.
2862 * exp_ch5.adb: Likewise.
2863 * exp_ch9.adb: Likewise.
2864 * exp_dist.adb: Likewise.
2865 * exp_tss.adb: Likewise.
2866 * inline.adb: Likewise.
2867 * lib-writ.adb: Likewise.
2868 * lib-xref-spark_specific.adb: Likewise.
2869 * libgnarl/s-osinte__darwin.adb: Likewise.
2870 * libgnarl/s-stusta.adb: Likewise.
2871 * libgnarl/s-taprop__solaris.adb: Likewise.
2872 * libgnarl/s-tposen.adb: Likewise.
2873 * libgnarl/s-vxwext__kernel-smp.adb: Likewise.
2874 * libgnarl/s-vxwext__kernel.adb: Likewise.
2875 * libgnat/a-btgbso.adb: Likewise.
2876 * libgnat/a-cfdlli.adb: Likewise.
2877 * libgnat/a-cfhama.adb: Likewise.
2878 * libgnat/a-cfinve.adb: Likewise.
2879 * libgnat/a-cimutr.adb: Likewise.
2880 * libgnat/a-coboho.adb: Likewise.
2881 * libgnat/a-cofove.adb: Likewise.
2882 * libgnat/a-cofuve.adb: Likewise.
2883 * libgnat/a-comutr.adb: Likewise.
2884 * libgnat/a-exexda.adb: Likewise.
2885 * libgnat/a-tags.adb: Likewise.
2886 * libgnat/a-tideau.adb: Likewise.
2887 * libgnat/a-wtdeau.adb: Likewise.
2888 * libgnat/a-ztdeau.adb: Likewise.
2889 * libgnat/g-alleve.adb: Likewise.
2890 * libgnat/s-excdeb.adb: Likewise.
2891 * libgnat/s-parint.adb: Likewise.
2892 * libgnat/s-shasto.adb: Likewise.
2893 * libgnat/s-traceb__hpux.adb: Likewise.
2894 * prepcomp.adb: Likewise.
2895 * sem_ch4.adb: Likewise.
2896 * sem_ch6.adb: Likewise.
2897 * sem_dist.adb: Likewise.
2898 * sem_prag.adb: Likewise.
2899 * sem_util.adb: Likewise.
2900 * sinfo.adb: Likewise.
2901 * switch.adb: Likewise.
2902
2903 2018-05-04 John Marino <gnugcc@marino.st>
2904
2905 PR ada/85635
2906 * link.c (BSD platforms): Add missing backslash.
2907
2908 2018-04-27 Eric Botcazou <ebotcazou@adacore.com>
2909
2910 PR ada/85540
2911 * init.c (__gnat_handle_vms_condition): Add missing parentheses.
2912
2913 2018-04-25 Eric Botcazou <ebotcazou@adacore.com>
2914
2915 PR ada/85007
2916 * gnat_ugn.texi: Regenerate.
2917
2918 2018-03-23 Eric Botcazou <ebotcazou@adacore.com>
2919
2920 PR ada/85007
2921 * gnatlink.adb (Gnatlink): Remove handling of -b switch.
2922 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (gnatlink):
2923 Remove documentation of -b switch.
2924
2925 2018-03-23 Eric Botcazou <ebotcazou@adacore.com>
2926
2927 PR ada/85036
2928 * gnatlink.adb (Process_Args): Drop existing link switches if multiple
2929 switches are passed for --LINK.
2930
2931 2018-03-12 Eric Botcazou <ebotcazou@adacore.com>
2932
2933 PR ada/82813
2934 * gcc-interface/misc.c (gnat_post_options): Disable string overflow
2935 warnings.
2936
2937 2018-03-10 Eric Botcazou <ebotcazou@adacore.com>
2938
2939 * gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
2940 Consider only entities for objects.
2941
2942 2018-03-07 Sebastian Huber <sebastian.huber@embedded-brains.de>
2943
2944 * gcc-interface/Makefile.in (OSCONS_CPP): Remove redundant
2945 $(GNATLIBCFLAGS).
2946 (OSCONS_EXTRACT): Add $(GNATLIBCFLAGS_FOR_C).
2947
2948 2018-03-06 Eric Botcazou <ebotcazou@adacore.com>
2949
2950 * gcc-interface/trans.c (convert_with_check): Fix typo in the condition
2951 guarding the overflow check emitted for the upper bound of a floating-
2952 point conversion.
2953
2954 2018-03-06 Eric Botcazou <ebotcazou@adacore.com>
2955
2956 * gcc-interface/utils.c (def_builtin_1): Bail out on error_mark_node.
2957
2958 2018-02-28 Eric Botcazou <ebotcazou@adacore.com>
2959
2960 * libgnat/i-cexten.ads (Float_128): New type.
2961
2962 2018-02-02 Eric Botcazou <ebotcazou@adacore.com>
2963
2964 * gcc-interface/decl.c (array_type_has_nonaliased_component): Return
2965 false if the component type is a pointer.
2966
2967 2018-01-11 Gary Dismukes <dismukes@adacore.com>
2968
2969 * exp_ch3.adb (Default_Initialize_Object): Call New_Copy_Tree on the
2970 result of Get_Simple_Init_Value and pass the source location of the
2971 object declaration's object_definition.
2972
2973 2018-01-11 Ed Schonberg <schonberg@adacore.com>
2974
2975 * exp_ch6.adb (Make_Build_In_Place_Call_In_Object_Declaration): Handle
2976 properly object declarations with initializations that are
2977 build-in-place function calls, when there is an address specification,
2978 either as an aspect specification or an explicit attribute
2979 specification clause, for the initialized object.
2980 * freeze.adb (Check_Address_Clause): Do not remove side-effects from
2981 initial expressions in the case of a build-in-place call.
2982
2983 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
2984
2985 * sem_eval.adb (Is_Null_Range): Retrieve the full view when called on a
2986 private (sub)type; refactor to avoid early return statement.
2987 (Not_Null_Range): Same as above.
2988
2989 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
2990
2991 * freeze.adb (Freeze_Entity): Ensure that a Ghost type is not
2992 concurrent, nor effectively volatile.
2993 * ghost.adb (Check_Ghost_Type): New routine.
2994 * ghost.ads (Check_Ghost_Type): New routine.
2995 * sem_util.adb (Is_Declaration): Reimplemented. The routine can now
2996 consider specific subsets of declarations.
2997 (Is_Declaration_Other_Than_Renaming): Removed. Its functionality is
2998 replicated by Is_Declaration.
2999 * sem_util.ads (Is_Declaration): New parameter profile. Update the
3000 comment on usage.
3001 (Is_Declaration_Other_Than_Renaming): Removed.
3002
3003 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3004
3005 * sem_ch5.adb (Analyze_Assignment): Assignments to variables that act
3006 as Part_Of consituents of single protected types are illegal when they
3007 take place inside a protected function.
3008 (Diagnose_Non_Variable_Lhs): Use Within_Function to check for an
3009 enclosing function.
3010 (Is_Protected_Part_Of_Constituent): New routine.
3011 (Within_Function): New routine.
3012
3013 2018-01-11 Arnaud Charlet <charlet@adacore.com>
3014
3015 Bump copyright notices to 2018.
3016
3017 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3018
3019 * binde.adb, par-ch6.adb, par-ch9.adb, sem_ch12.adb, sem_ch13.adb:
3020 Minor reformatting.
3021
3022 2018-01-11 Justin Squirek <squirek@adacore.com>
3023
3024 * par-ch6.adb (Scan_Body_Or_Expression_Function): Add additional check
3025 to make sure a given expression function is properly parenthesized.
3026
3027 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3028
3029 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Check the
3030 categorization of a subprogram body which does not complete a previous
3031 declaration.
3032
3033 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3034
3035 * sem_ch10.adb (Check_Private_Child_Unit): Ensure that the enclosing
3036 scope of package Ada is Standard.
3037
3038 2018-01-11 Ed Schonberg <schonberg@adacore.com>
3039
3040 * sem_ch13.adb (Replace_Type_Ref): Handle properly reference to a
3041 subcomponent of the current entity when building the body for a dynamic
3042 predicate function for a record with composite subcomponents.
3043
3044 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3045
3046 * exp_aggr.adb (Convert_Aggr_In_Object_Decl): Update the call to
3047 Establish_Transient_Scope.
3048 (Convert_To_Assignments): Update the call to Establish_Transient_Scope.
3049 (Expand_Array_Aggregate): Update the call to Establish_Transient_Scope.
3050 * exp_ch6.adb (Expand_Call_Helper): Update the call to
3051 Establish_Transient_Scope.
3052 (Make_Build_In_Place_Call_In_Object_Declaration): Update the call to
3053 Establish_Transient_Scope.
3054 * exp_ch7.adb (Establish_Transient_Scope): Restructured. Delegate the
3055 management of the secondary stack to an enclosing scope if there is no
3056 suitable construct to wrap, and the transient scope was intended to
3057 manage the secondary stack.
3058 (Find_Node_To_Be_Wrapped): Restructured. A case_statement_alternative
3059 is a valid boundary for a transient expression which comes from the
3060 statements of the alternative, otherwise alternatives cannot be
3061 wrapped. Assignments of controlled objects which have controlled
3062 actions suppressed now stop the traversal as there is no point in
3063 looking for an enclosing construct. Add several N_xxx_Body choices to
3064 the termination conditions for completeness.
3065 * exp_ch7.ads (Establish_Transient_Scope): Update the parameter profile
3066 and the associated comment on usage.
3067 * exp_smem.adb (Add_Shared_Var_Lock_Procs): Update the call to
3068 Establish_Transient_Scope.
3069 (Add_Write_After): Update the call to Establish_Transient_Scope.
3070 * sem_res.adb (Check_Initialization_Call): Removed.
3071 (Resolve_Actuals): Account for additional cases where finalization
3072 actions are required by utilizing predicate Needs_Finalization rather
3073 than Is_Controlled.
3074 (Resolve_Call): Type initialization procedures can now utilize
3075 transient scopes to manage the secondary stack, thus preventing leaks
3076 during initialization. Remove the previous kludgy algorithm which
3077 attempts to manage the secondary stack at the object creation site.
3078
3079 2018-01-11 Jerome Lambourg <lambourg@adacore.com>
3080
3081 * libgnat/g-soliop__qnx.ads: New.
3082 * adaint.c, adaint.h, cstreams.c, s-oscons-tmplt.c, sysdep.c: Update
3083 for QNX.
3084
3085 2018-01-11 Bob Duff <duff@adacore.com>
3086
3087 * par-ch9.adb (P_Protected_Operation_Declaration_Opt): Give an error if
3088 a null procedure occurs in a protected definition.
3089
3090 2018-01-11 Bob Duff <duff@adacore.com>
3091
3092 * binderr.ads, namet.ads: Minor reformatting.
3093
3094 2018-01-11 Bob Duff <duff@adacore.com>
3095
3096 * doc/gnat_ugn/gnat_utility_programs.rst: Improve documentation of
3097 xml2gnat.
3098
3099 2018-01-11 Bob Duff <duff@adacore.com>
3100
3101 * binde.adb (Force_Elab_Order): Give an error if there are duplicate
3102 unit names.
3103
3104 2018-01-11 Ed Schonberg <schonberg@adacore.com>
3105
3106 * sem_ch6.adb (Freeze_Expr_Types): If an access value is the
3107 controlling argument of a dispatching call. freeze the corresponding
3108 designated type.
3109
3110 2018-01-11 Ben Brosgol <brosgol@adacore.com>
3111
3112 * doc/Makefile: Add Sphinx option -W to treat warnings as errors.
3113
3114 2018-01-11 Ben Brosgol <brosgol@adacore.com>
3115
3116 * doc/gnat_rm/implementation_defined_aspects.rst: Minor type/wording
3117 corrections.
3118 * gnat_rm.texi: Regenerate.
3119
3120 2018-01-11 Ed Schonberg <schonberg@adacore.com>
3121
3122 * sem_ch12.adb (Check_Fixed_Point_Type): Do not apply check if the
3123 formsl type corresponding to the actual fixed point type is private,
3124 because in this case there can be no suspicious arithmetic operations
3125 in the generic unless they reference a formal subprogram. Clarify
3126 warning.
3127
3128 2018-01-11 Javier Miranda <miranda@adacore.com>
3129
3130 * exp_util.adb (Remove_Side_Effects): No action done for functions
3131 returning class-wide types since it requires generating code using
3132 'reference and the CCG target has no secondary stack.
3133 * gnat1drv.adb: Disable building static dispatch tables when generating
3134 C code.
3135
3136 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
3137
3138 * libgnat/a-direio.ads, libgnat/a-sequio.ads, libgnat/a-ststio.ads,
3139 libgnat/a-textio.ads, libgnat/a-witeio.ads, libgnat/a-ztexio.ads
3140 (File_Type): Add Default_Initial_Condition aspect.
3141
3142 2018-01-11 Pascal Obry <obry@adacore.com>
3143
3144 * libgnat/s-os_lib.adb (Normalize_Pathname): New implementation.
3145
3146 2018-01-11 Bob Duff <duff@adacore.com>
3147
3148 * doc/gnat_ugn/gnat_utility_programs.rst: Rewrite gnatpp documentation
3149 to match what the Libadalang-based version does.
3150 * doc/gnat_ugn/about_this_guide.rst: Update reference.
3151
3152 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3153
3154 * sem_res.adb (Uses_SS): A controlled type requires the secondary stack
3155 if it contains at least one component declaration employing a function
3156 call returning on the secondary stack.
3157
3158 2018-01-11 Yannick Moy <moy@adacore.com>
3159
3160 * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
3161 Update description of restriction SPARK_05 with SPARK 2014.
3162 * gnat_rm.texi: Regenerate.
3163
3164 2018-01-11 Vasiliy Fofanov <fofanov@adacore.com>
3165
3166 * doc/gnat_ugn/gnat_utility_programs.rst: Fix layout.
3167
3168 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3169
3170 * exp_aggr.adb, exp_ch9.adb, exp_util.adb, sem_aggr.adb, sem_ch3.adb,
3171 sem_res.adb, sem_util.adb: Minor reformatting.
3172
3173 2018-01-11 Ed Schonberg <schonberg@adacore.com>
3174
3175 * sem_prag.adb (Analyze_Pragma, case Predicate): Indicate that the type
3176 has a delayed aspect which must be processed at the point the type is
3177 frozen. This mimics what is done when the predicate is provided by a
3178 source aspect.
3179
3180 2018-01-11 Doug Rupp <rupp@adacore.com>
3181
3182 * init.c (vxworks): Add macro checks for __aarch64__.
3183
3184 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3185
3186 * exp_util.adb (Add_Failure_Expression): New routine.
3187 (Make_Predicate_Check): Reimplement the handling of Predicate_Failure.
3188 * sem_util.adb (Is_Current_Instance): Code cleanup.
3189
3190 2018-01-11 Patrick Bernardi <bernardi@adacore.com>
3191
3192 * libgnat/s-parame*.adb, libgnat/s-parame*.ads: Remove unneeded
3193 Default_Sec_Stack_Size.
3194 * libgnat/s-secsta.adb (SS_Allocate): Handle the fixed secondary stack
3195 limit check so that the integer index does not overflow. Check the
3196 dynamic stack allocation does not cause the secondary stack pointer to
3197 overflow.
3198 (SS_Info): Align colons.
3199 (SS_Init): Cover the case when bootstraping with an old compiler that
3200 does not set Default_SS_Size.
3201
3202 2018-01-11 Ed Schonberg <schonberg@adacore.com>
3203
3204 * sem_ch3.adb (Add_Internal_Interface_Entities): When checking the
3205 legality of an inherited operation that may require overriding, ignore
3206 primitive_wrappers that correspond to explicit operations that override
3207 an interface primitive.
3208 * exp_util.adb (Build_Class_Wide_Expression, Replace_Entity): If the
3209 operation to which the class-wide expression applies is a protected op.
3210 with a primitive_wrapper, verify that the updated inherited expression
3211 does not contain an internal call to a protected function. This
3212 completes the implementation of AI12-0166.
3213
3214 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3215
3216 * ali.adb: Document the remaining letters available for ALI lines.
3217 (Scan_ALI): A with clause is internal when it is encoded on a 'Z' line.
3218 * ali.ads: Update type With_Record. Field
3219 Implicit_With_From_Instantiation is no longer in use. Add field
3220 Implicit_With.
3221 * csinfo.adb (CSinfo): Remove the setup for attribute
3222 Implicit_With_From_Instantiation.
3223 * lib-writ.adb (Collect_Withs): Correct the logic which marks a unit as
3224 either implicitly or explicitly withed.
3225 (Is_Implicit_With_Clause): New routine.
3226 (Write_ALI): Rename array Implicit_With to Has_Implicit_With to avoid
3227 confusion with the with clause attribute by the same name.
3228 (Write_With_Lines): Update the emission of 'W', 'Y', and 'Z' headers.
3229 * rtsfind.adb (Maybe_Add_With): Code cleanup.
3230 * sem_ch8.adb (Present_System_Aux): Code cleanup.
3231 * sem_ch10.adb (Expand_With_Clause): Mark the with clause as generated
3232 for a parent unit.
3233 (Implicit_With_On_Parent): Mark the with clause as generated for a
3234 parent unit.
3235 * sem_ch12.adb (Inherit_Context): With clauses inherited by an
3236 instantiation are no longer marked as Implicit_With_From_Instantiation
3237 because they are already marked as implicit.
3238 * sem_elab.adb (Ensure_Prior_Elaboration_Static): Remove the kludge
3239 which marks implicit with clauses as related to an instantiation.
3240 * sinfo.adb (Implicit_With_From_Instantiation): Removed.
3241 (Parent_With): New routine.
3242 (Set_Implicit_With_From_Instantiation): Removed.
3243 (Set_Parent_With): New routine.
3244 * sinfo.ads: Update the documentation of attribute Implicit_With.
3245 Remove attribute Implicit_With_From_Instantiation along with
3246 occurrences in nodes. Add attribute Parent_With along with occurrences
3247 in nodes.
3248 (Implicit_With_From_Instantiation): Removed along with pragma Inline.
3249 (Parent_With): New routine along with pragma Inline.
3250 (Set_Implicit_With_From_Instantiation): Removed along with pragma Inline.
3251 (Set_Parent_With): New routine along with pragma Inline.
3252
3253 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3254
3255 * sem_util.adb (Find_Enclosing_Scope): Return the unique defining
3256 entity when the enclosing construct is a body.
3257
3258 2018-01-11 Patrick Bernardi <bernardi@adacore.com>
3259
3260 * exp_ch9.adb (Expand_N_Task_Type_Declaration): Simplified
3261 Secondary_Stack_Size handling as a pragma is now generated for the
3262 corresponding aspect instead of an attribute. Pragma expression is
3263 relocated instead of evaluated. Discriminant of the corresponding
3264 record type is referenced rather than the type discriminant.
3265 (Create_Secondary_Stack_For_Task, Make_Task_Create_Call): Update
3266 Secondary_Stack_Size rep item checks to only look for the pragma rep.
3267 * sem_ch13.adb (Analyze_One_Aspect): Transform
3268 Aspect_Secondary_Stack_Size into a pragma instead of an attribute
3269 because the attribute does not have visibility on a task type's
3270 discriminants when the type's definition is expanded.
3271 (Analyze_Attribute_Definition_Clause): Remove handling of
3272 Attribute_Secondary_Stack_Size.
3273 * snames.adb-tmpl, snames.ads-tmpl: Remove
3274 Attribute_Secondary_Stack_Size, no longer used.
3275
3276 2018-01-11 Justin Squirek <squirek@adacore.com>
3277
3278 * sem_ch8.adb: Minor comment fix.
3279
3280 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3281
3282 * exp_ch4.adb (Process_Action): Do not abandon the inspection of an
3283 individual action because the action may denote a complex expression,
3284 such as a case statement, which in turn may contain additional
3285 transient objects.
3286
3287 2018-01-11 Ed Schonberg <schonberg@adacore.com>
3288
3289 * sem_aggr.adb (Resolve_Iterated_Component_Association): Perform
3290 analysis on a copy of the expression with a copy of the index variable,
3291 because full expansion will rewrite construct into a loop with the
3292 original loop variable.
3293 * exp_aggr.adb (Gen_Assign): Defer analysis and resolution if the
3294 expression is an iterated component association. Full analysis takes
3295 place when construct is rewritten as a loop.
3296 (In_Place_Assign_OK, Safe_Component): An iterated_component_association
3297 is not safe for in-place assignment.
3298 * sem_util.adb (Remove_Entity): Handle properly the case of an isolated
3299 entity with no homonym and no other entity in the scope.
3300
3301 2018-01-11 Justin Squirek <squirek@adacore.com>
3302
3303 * sem_prag.adb (Analyze_Pragma:Pragma_Loop_Variant): Modify error
3304 message to be printed on the pragma argument identifier.
3305
3306 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
3307
3308 * exp_util.adb (Build_Invariant_Procedure_Declaration): Set the last
3309 entity of the generated invariant procedure in order to construct a
3310 proper entity chain.
3311
3312 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
3313
3314 * sem_ch13.adb (Build_Predicate_Functions): Fix minor issues in
3315 comment.
3316
3317 2018-01-11 Arnaud Charlet <charlet@adacore.com>
3318
3319 * einfo.ads, einfo.adb (Activation_Record_Component,
3320 Set_Activation_Record_Component, Set_Is_Uplevel_Referenced_Entity):
3321 Allow E_Discriminant.
3322
3323 2018-01-10 Eric Botcazou <ebotcazou@adacore.com>
3324
3325 * gcc-interface/decl.c (gnat_to_gnu_component_type): Apply the check
3326 for atomic access once the component size is taken into account and
3327 also do it if the component type is Atomic or Volatile_Full_Access.
3328
3329 2018-01-04 Eric Botcazou <ebotcazou@adacore.com>
3330
3331 * gnatvsn.ads: Bump copyright year.
3332
3333 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
3334 Alan Hayward <alan.hayward@arm.com>
3335 David Sherwood <david.sherwood@arm.com>
3336
3337 * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_BITSIZE
3338 as polynomial.
3339
3340 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
3341 Alan Hayward <alan.hayward@arm.com>
3342 David Sherwood <david.sherwood@arm.com>
3343
3344 * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_PRECISION
3345 as polynomial.
3346
3347 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
3348 Alan Hayward <alan.hayward@arm.com>
3349 David Sherwood <david.sherwood@arm.com>
3350
3351 * gcc-interface/utils.c (gnat_types_compatible_p): Handle
3352 polynomial TYPE_VECTOR_SUBPARTS.
3353
3354 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
3355 Alan Hayward <alan.hayward@arm.com>
3356 David Sherwood <david.sherwood@arm.com>
3357
3358 * gcc-interface/misc.c (enumerate_modes): Handle polynomial
3359 GET_MODE_NUNITS.
3360
3361 2018-01-03 Jakub Jelinek <jakub@redhat.com>
3362
3363 Update copyright years.
3364
3365 * gnat_ugn.texi: Bump @copying's copyright year.
3366 * gnat_rm.texi: Likewise.
3367 \f
3368 Copyright (C) 2018 Free Software Foundation, Inc.
3369
3370 Copying and distribution of this file, with or without modification,
3371 are permitted in any medium without royalty provided the copyright
3372 notice and this notice are preserved.