[Ada] Minor reformatting
[gcc.git] / gcc / ada / ChangeLog
1 2018-05-25 Hristian Kirtchev <kirtchev@adacore.com>
2
3 * einfo.adb, einfo.ads, exp_ch3.adb, exp_ch8.adb, exp_unst.adb,
4 pprint.adb, sem_ch12.adb, sem_ch3.adb, sem_prag.adb, sem_util.adb:
5 Minor reformatting.
6
7 2018-05-25 Ed Schonberg <schonberg@adacore.com>
8
9 * sem_ch12.adb (Instance_Exists): New function, subsidiary of
10 Validate_Derived_Type_Instance, to verify that all interfaces
11 implemented by the formal type are also implemented by the actual. The
12 verification is complicated when an interface of the formal is declared
13 in a generic unit and the actual is declared in an instance of it.
14 There is currently no mechanism to relate an interface declared within
15 a generic to the corresponding interface in an instance, so we must
16 traverse the list of interfaces of the actual, looking for a name
17 match, and verifying that that interface is declared in an instance.
18
19 2018-05-25 Piotr Trojanek <trojanek@adacore.com>
20
21 * sem_util.adb (Iterate_Call_Parameters): Rewrite with extra
22 assertions; replace function versions of Next_Formal/Next_Actual with
23 their procedural versions (which are more concise).
24
25 2018-05-25 Doug Rupp <rupp@adacore.com>
26
27 * libgnarl/s-osinte__aix.ads, libgnarl/s-osinte__android.ads,
28 libgnarl/s-osinte__darwin.ads, libgnarl/s-osinte__freebsd.ads,
29 libgnarl/s-osinte__hpux.ads, libgnarl/s-osinte__kfreebsd-gnu.ads,
30 libgnarl/s-osinte__linux.ads, libgnarl/s-osinte__lynxos178e.ads,
31 libgnarl/s-osinte__qnx.ads, libgnarl/s-osinte__rtems.ads
32 (Relative_Timed_Wait): Remove.
33 * libgnarl/s-tpopmo.adb (Timed_Sleep, Timed_Delay): Rewrite to allow
34 for incremental looping. Remove references to Rel_Time and
35 Relative_Timed_Wait.
36 * libgnat/s-osprim__posix.adb, libgnat/s-osprim__posix2008.adb
37 (Timed_Delay): Make separate.
38 * libgnat/s-optide.adb: New separate procedure.
39 * libgnat/s-osprim.ads (Max_System_Delay): New constant.
40 * libgnat/s-osprim__lynxos.ads (Max_Sensible_Delay): Set to 6 months.
41 (Max_System_Delay): New constant.
42
43 2018-05-25 Ed Schonberg <schonberg@adacore.com>
44
45 * sem_ch12.adb (Validate_Derived_Type_Instance): Verify that the actual
46 for a formal derived type implements all the interfaces declared for
47 the formal.
48
49 2018-05-25 Yannick Moy <moy@adacore.com>
50
51 * sem_prag.adb (Check_Applicable_Policy): Deal specially with CodePeer
52 and GNATprove modes when applicable policy is Ignore.
53
54 2018-05-25 Eric Botcazou <ebotcazou@adacore.com>
55
56 * freeze.adb (Freeze_Enumeration_Type): Do not give integer size to a
57 boolean type with convention C.
58 * libgnat/i-cexten.ads (bool): Change to boolean with convention C.
59 * gcc-interface/decl.c (gnat_to_gnu_entity): Add new local variable
60 FOREIGN and use it throughout the function.
61 <E_Enumeration_Type>: Set precision 1 on boolean types with foreign
62 convention.
63 <E_Enumeration_Subtype>: Likewise for subtypes.
64 <E_Record_Type>: Force the size of a storage unit on empty classes.
65 * gcc-interface/utils.c (make_type_from_size) <BOOLEAN_TYPE>: Skip
66 boolean types with precision 1 if the size is the expected one.
67
68 2018-05-25 Arnaud Charlet <charlet@adacore.com>
69
70 * pprint.adb (Expression_Name): Do not print non ASCII characters.
71
72 2018-05-25 Bob Duff <duff@adacore.com>
73
74 * libgnat/a-strunb__shared.ads, libgnat/a-stwiun__shared.ads,
75 libgnat/a-stzunb__shared.ads: (Initialize, Adjust): Add pragma Inline.
76
77 2018-05-25 Bob Duff <duff@adacore.com>
78
79 * sem_util.ads: Minor comment fix.
80
81 2018-05-25 Ed Schonberg <schonberg@adacore.com>
82
83 * exp_unst.adb (Visit_Node): Restrict check for uplevel references in
84 prefixes of array attributes, to prefixes that are entity names whose
85 type is constrained.
86 (Note_Uplevel_Bound): Verify that the bound is declared in an enclosing
87 subprogram, as itype created for loops in pre/postcondition may appear
88 in loops at the library level.
89
90 2018-05-25 Ed Schonberg <schonberg@adacore.com>
91
92 * sem_ch13.adb (Build_Predicate_Functions): The predicate function
93 declaration is inserted into the tree and analyzed at that point, so
94 should not be reinserted when the body is constructed. Inside a
95 generic, ensure that the body is not inserted twice in the tree.
96
97 2018-05-25 Yannick Moy <moy@adacore.com>
98
99 * sem_prag.adb (Check_Grouping): Modify test to ignore statements and
100 declarations not coming from source.
101
102 2018-05-25 Fedor Rybin <frybin@adacore.com>
103
104 * doc/gnat_ugn/gnat_utility_programs.rst: Document new switch
105 --copy-environment for gnattest.
106
107 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
108
109 * sem_elab.adb (Non_Private_View): Simplify by removing a local Result
110 variable.
111 * sem_prag.adb (Get_Base_Subprogram): Same as above.
112
113 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
114
115 * fe.h (Set_Normalized_First_Bit): Declare.
116 (Set_Normalized_Position): Likewise.
117 * repinfo.adb (List_Record_Layout): Do not use irregular output for a
118 variable position. Fix minor spacing issue.
119 * gcc-interface/decl.c (annotate_rep): If a field has a variable
120 offset, compute the normalized position and annotate it in addition to
121 the bit offset.
122
123 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
124
125 * gcc-interface/trans.c (Handled_Sequence_Of_Statements_to_gnu):
126 Constify and rename variables. Fix formatting.
127 (gnat_to_gnu) <N_Exception_Handler>: Minor tweak.
128 <N_Raise_Statement>: Likewise.
129
130 2018-05-24 Javier Miranda <miranda@adacore.com>
131
132 * exp_ch8.adb (Build_Body_For_Renaming): Adding support to build the
133 body of a variant record equality renaming.
134 (Expand_N_Subprogram_Renaming_Declaration): Adapt the code to the new
135 implementation of Build_Body_For_Renaming.
136 * exp_ch3.ads (Build_Variant_Record_Equality): New library level
137 function that factorizes the functionality needed by
138 Build_Body_For_Renaming and Expand_Freeze_Record_Type to build the body
139 of a variant record equality subprogram.
140 * exp_ch3.adb (Build_Variant_Record_Equality): New subprogram.
141 (Build_Variant_Record_Equality): New local procedure of
142 Expand_Freeze_Record_Type containing all the code specific for freezing
143 the record type that cannot be place in the new library level function.
144
145 2018-05-24 Ed Schonberg <schonberg@adacore.com>
146
147 * einfo.ads, einfo.adb (Is_Activation_Record): New flag on
148 in_parameters, used when unesting subprograms for LLVM, to indicate
149 that a generated parameter carries the activation record from the
150 enclosing subprogram.
151 * exp_unst.adb (Check_Static_Type): Handle array attributes of types
152 whose bounds may contain up-level references that need to be added to
153 an activation recoord.
154 (Add_Extra_Formal): Set Is_Activation_Record on new formal.
155
156 2018-05-24 Yannick Moy <moy@adacore.com>
157
158 * pprint.adb (Expression_Image): Improve the printing of expressions,
159 by taking more cases into account, in particular qualified expressions
160 and aggregates. Also count more the number of parentheses to close
161 after the expression.
162
163 2018-05-24 Javier Miranda <miranda@adacore.com>
164
165 * sem_ch3.adb (Is_Visible_Component): For untagged types add missing
166 check for renamed discriminants.
167 * sem_ch4.adb (Analyze_Overloaded_Selected_Component,
168 Analyze_Selected_Component, Check_Misspelled_Selector): For calls to
169 Is_Visible_Component pass the associated selector node to allow
170 checking renamed discriminants on untagged types.
171
172 2018-05-24 Ed Schonberg <schonberg@adacore.com>
173
174 * sem_ch8.adb (Analyze_Use_Type): Do not assign the Prev_Use_Clause
175 link to a use_type clause if this would cause an infinite loop in the
176 machinery that detects redundant use clauses. This may happen when the
177 redundant clauses appear in the context of a child unit and the context
178 of its parent.
179
180 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
181
182 * sinfo.ads: Fix grammar in comment.
183
184 2018-05-24 Justin Squirek <squirek@adacore.com>
185
186 * einfo.ads, einfo.adb (Append_Entity): Modified to use Link_Entities
187 and manage doubly-linked entity chain.
188 (Nested_Scenarios): Removed entity field used for optimization during
189 elaboration to make room for the new field Prev_Entity.
190 (Link_Entities): Added to replace redundant calls to Set_Next_Entity
191 and Set_Prev_Entity as well as centralize changes to the entity chain.
192 (Predicated_Parent): Modified to use Node38.
193 (Prev_Entity): Added to fetch new node field Prev_Entity in all entity
194 types.
195 (Remove_Entity): Moved from sem_util.
196 (Set_Nested_Scenarios): Deleted.
197 (Set_Predicated_Parent): Modified to use Node38.
198 (Set_Prev_Entity): Added to set Prev_Entity field.
199 (Set_Validated_Object): Modified to use Node38.
200 (Unlink_Next_Entity): Added to process Prev_Entity when an unlinking
201 action is required.
202 (Validated_Object): Modified to use Node38.
203 (Write_Field36_Name): Remove Nested_Scenarios, Validated_Object, and
204 predicated parent cases.
205 (Write_Field38_Name): Add predicated parent and Validated_Object cases.
206 * sem_ch3.adb (Process_Subtype): Add guard to protect against
207 inappropriate marking of Predicated_Parent to non-itype subtypes.
208 (Make_Class_Wide_Type): Preserve Prev_Entity field and set in new type.
209 (Copy_And_Swap): Add setting of Prev_Entity.
210 (Build_derived_Record_Type): Replace Set_Next_Entity w/ Link_Entities.
211 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Replace Set_Next_Entity
212 w/ Link_Entities.
213 (New_Overloaded_Entity): Remove block created to search for previous
214 entities in the entity chain with relevant calls to Prev_Entity as well
215 as replace duplicated code from Remove_Entity_And_Homonym with a call
216 to that subprogram.
217 * sem_ch7.adb (Exchange_Declarations): Replace Set_Next_Entity w/
218 Link_Entities.
219 * sem_elab.adb (Find_And_Process_Nested_Scenarios): Remove global and
220 initial subprogram declarations related to Nested_Scenarios.
221 (Process_Nested_Scenarios): Deleted.
222 (Save_Scenario): Deleted.
223 (Traverse_Body): Remove optimization for Nested_Scenarios so as to free
224 node space in the entity tree.
225 * sem_util.adb, sem_util.ads (Remove_Entity): Moved to einfo.
226 (Remove_Entity_And_Homonym): Added to separate functionality of
227 Remove_Entity from the homonym chain directly.
228 * exp_attr.adb (Expand_N_Attribute_Reference): Replace Set_Next_Entity
229 w/ Link_Entities and Unlink_Next_Entity.
230 * exp_ch3.adb (Expand_N_Object_Declaration): Replace Set_Next_Entity w/
231 Link_Entities.
232 * exp_ch6.adb (Replace_Renaming_Declaration_Id): Replace
233 Set_Next_Entity w/ Link_Entities.
234 * exp_disp.adb (Expand_Dispatching_Call): Replace Set_Next_Entity w/
235 Link_Entities and Unlink_Next_Entity.
236 * exp_spark.adb (Expand_SPARK_N_Object_Renaming_Declaration): Replace
237 call to Remove_Entity with its new incarnation.
238 * exp_util.adb (New_Class_Wide_Subtype): Add setting of Prev_Entity.
239 * freeze.adb (Freeze_Record_Type): Replace Set_Next_Entity w/
240 Link_Entities.
241
242 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
243
244 * sem_ch10.adb (Expand_Limited_With_Clause): Update the call to
245 Install_Limited_Withed_Unit.
246 (Expand_With_Clause): Update the call to Install_Withed_Unit.
247 (Implicit_With_On_Parent): Update the call to Install_Withed_Unit.
248 (Install_Context_Clauses): Update the call to Install_Withed_Unit.
249 (Install_Limited_Context_Clauses): Update the calls to
250 Install_Limited_Withed_Unit.
251 (Install_Limited_Withed_Unit): Renamed to better illustrate its
252 purpose.
253 (Install_Private_With_Clauses): Update the calls to Install_Withed_Unit
254 and Install_Limited_Withed_Unit.
255 (Install_With_Clause): Uninstall a limited with clause if a [private]
256 with clause is given for the same package.
257 (Install_Withed_Unit): Renamed to better illustrate its purpose.
258 (Remove_Limited_With_Unit): New routine.
259
260 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
261
262 * raise-gcc.c (__gnat_SEH_error_handler): Remove prototype.
263 (__gnat_personality_seh0): Adjust and beef up comments, and
264 fix formatting throughout.
265 (__gnat_adjust_context): Deal minimally with version 2.
266 * seh_init.c (__gnat_map_SEH): Fix formatting.
267 (_gnat_SEH_error_handler): Adjust comments.
268 (__gnat_install_SEH_handler): Fix formatting.
269
270 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
271
272 * exp_ch7.adb, sem_ch3.adb, sem_res.adb: Minor reformatting.
273
274 2018-05-24 Ed Schonberg <schonberg@adacore.com>
275
276 * exp_aggr.adb (Flatten): Add a warning on an others clause in an array
277 aggregate with static bounds when named associations cover all index
278 positions and the others clause is redundant.
279
280 2018-05-24 Raphael Amiard <amiard@adacore.com>
281
282 * libgnat/a-cohama.ads: Add documentation.
283
284 2018-05-24 Raphael Amiard <amiard@adacore.com>
285
286 * libgnat/a-convec.ads: Add documentation.
287
288 2018-05-24 Justin Squirek <squirek@adacore.com>
289
290 * exp_ch3.adb (Expand_N_Object_Declaration): Ignore raising an error in
291 expansion for limited tagged types when the node to be expanded is a
292 raise expression due to it not representing a valid object.
293 * exp_ch5.adb (Expand_N_Assignment_Statement): Add exception to error
294 message regarding assignments to limited types to ignore genereated
295 code.
296
297 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
298
299 * exp_util.adb (New_Class_Wide_Subtype): Capture and restore relevant
300 Ghost-related attributes of the class-wide subtype because the copy
301 clobbers them.
302
303 2018-05-24 Justin Squirek <squirek@adacore.com>
304
305 * sem_res.adb (Resolve_Entity_Name): Add guard to protect against
306 marking use clauses as effective when the reference appears within
307 generated code.
308
309 2018-05-24 Cyrille Comar <comar@adacore.com>
310
311 * doc/gnat_rm/the_gnat_library.rst: Fix typos.
312 * gnat_rm.texi: Regenerate.
313
314 2018-05-24 Bob Duff <duff@adacore.com>
315
316 * exp_ch7.adb (Expand_Cleanup_Actions): Create a mark unconditionally
317 for build-in-place functions with a caller-unknown-size result.
318 (Create_Finalizer): For build-in-place functions with a
319 caller-unknown-size result, check at run time whether we need to
320 release the secondary stack.
321
322 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
323
324 * sem_prag.adb (Analyze_Pragma): Use the full view of an internally
325 generated incomplete type.
326
327 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
328
329 * expander.adb (Expand): Update the save and restore of the Ghost
330 region.
331 * exp_ch3.adb (Freeze_Type): Likewise.
332 * exp_disp.adb (Make_DT): Likewise.
333 * exp_util.adb (Build_DIC_Procedure_Body): Likewise.
334 (Build_DIC_Procedure_Declaration): Likewise.
335 (Build_Invariant_Procedure_Body): Likewise.
336 (Build_Invariant_Procedure_Declaration): Likewise.
337 (Make_Predicate_Call): Likewise.
338 * freeze.adb (Add_To_Result): Insert the freeze action of a living
339 entity prior to the start of the enclosing ignored Ghost region.
340 (Freeze_Entity): Update the save and restore of the Ghost region.
341 * ghost.adb (Install_Ghost_Mode): Reimplemented.
342 (Install_Ghost_Region): New routine.
343 (Mark_And_Set_Ghost_Assignment): Install a region rather than a mode.
344 (Mark_And_Set_Ghost_Body): Likewise.
345 (Mark_And_Set_Ghost_Completion): Likewise.
346 (Mark_And_Set_Ghost_Declaration): Likewise.
347 (Mark_And_Set_Ghost_Instantiation): Likewise.
348 (Mark_And_Set_Ghost_Procedure_Call): Likewise.
349 (Name_To_Ghost_Mode): New routine.
350 (Restore_Ghost_Region): New routine.
351 * ghost.ads (Install_Ghost_Region): New routine.
352 (Restore_Ghost_Region): New routine.
353 * opt.ads: Add new global variable Ignored_Ghost_Region.
354 * rtsfind.adb (Load_RTU): Update the save and restore of the Ghost
355 region. Install a clean region.
356 * sem.adb (Analyze): Likewise.
357 (Do_Analyze): Likewise.
358 * sem_ch3.adb (Analyze_Object_Declaration): Likewise
359 (Derive_Progenitor_Subprograms): Use local variable Iface_Alias to
360 capture the ultimate alias of the current primitive.
361 (Process_Full_View): Update the save and restore of the Ghost region.
362 Do not inherit DIC and invariant procedures.
363 * sem_ch5.adb (Analyze_Assignment): Update the save and restore of the
364 Ghost region.
365 * sem_ch6.adb (Analyze_Procedure_Call): Likewise.
366 (Analyze_Subprogram_Body_Helper): Likewise.
367 * sem_ch7.adb (Analyze_Package_Body_Helper): Likewise.
368 * sem_ch12.adb (Analyze_Package_Instantiation): Likewise.
369 (Analyze_Subprogram_Instantiation): Likewise.
370 (Instantiate_Package_Body): Likewise.
371 (Instantiate_Subprogram_Body): Likewise.
372 * sem_ch13.adb (Build_Predicate_Functions): Likewise.
373 (Build_Predicate_Function_Declaration): Likewise.
374 * sem_disp.adb
375 (Add_Dispatching_Operation): Do not consider DIC and invariant
376 procedures.
377 (Check_Dispatching_Operation): Use Add_Dispatching_Operation to collect
378 a dispatching subprogram.
379 (Check_Operation_From_Private_View): Likewise.
380 (Override_Dispatching_Operation): Likewise.
381 * sem_prag.adb (Analyze_Contract_Cases_In_Decl_Part): Update the save
382 and restore of the Ghost region.
383 (Analyze_Initial_Condition_In_Decl_Part): Likewise.
384 (Analyze_Pragma): Update the save and restore of the Ghost region.
385 (Analyze_Pre_Post_Condition_In_Decl_Part): Likewise.
386 * sem_util.adb (Is_Suitable_Primitive): New routine.
387 * sem_util.ads (Is_Suitable_Primitive): New routine.
388 * sinfo.ads: Update the section of Ghost regions.
389
390 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
391
392 * doc/gnat_rm/implementation_defined_pragmas.rst (Contract_Cases):
393 Change "condition" to "case guard" after renaming in the contract
394 grammar.
395 * gnat_rm.texi: Regenerate.
396
397 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
398
399 * exp_util.adb (Expand_Static_Predicates_In_Choices): Indicate that the
400 construct with discrete choices no longer contains a subtype with
401 predicates since the expansion already handled this case.
402
403 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
404
405 * freeze.adb (Wrap_Imported_Subprogram): Generate an unchecked
406 conversion to the return type to avoid a side effect where an imported
407 relocated function generates a new anonymous access type, whose
408 accessibility level does not agree with with that of the wrapper.
409
410 2018-05-24 Javier Miranda <miranda@adacore.com>
411
412 * sem_util.adb (Abstract_Interface_List): Add missing support for
413 private types whose full view is a synchronized type.
414 * sem_ch3.adb (Build_Derived_Private_Type): Skip building the full
415 derivation of a private type parent type is a task type with
416 discriminants as gigi does not use such type directly.
417
418 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
419
420 * sem_elab.adb (Build_Variable_Reference_Marker): Do not create a
421 variable marker when the reference appears in the formal part of a
422 compilation unit instance because there is no place to insert it.
423 (In_Compilation_Instance_Formal_Part): New routine.
424
425 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
426
427 * layout.ads, repinfo.ads: Fix references to renamed Backend_Layout
428 configuration parameter.
429
430 2018-05-24 Doug Rupp <rupp@adacore.com>
431
432 * argv-lynxos178-raven-cert.c: New file.
433 * libgnat/system-lynxos178-x86.ads: New file.
434
435 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
436
437 * exp_disp.adb, freeze.adb, gnat1drv.adb, sem_ch5.adb, sem_spark.adb:
438 Minor reformattings.
439
440 2018-05-23 Pascal Obry <obry@adacore.com>
441
442 * adaint.c (win32_wait): Properly free the handle/pid lists when
443 WaitForMultipleObjects fails (return WAIT_FAILED).
444
445 2018-05-23 Pascal Obry <obry@adacore.com>
446
447 * adaint.c (win32_wait): Add missing parentheses.
448
449 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
450
451 * exp_ch3.adb (Check_Large_Modular_Array): Moved to Freeze.
452 (Expand_N_Object_Declaration): Do not check for a large modular array
453 here.
454 * freeze.adb (Check_Large_Modular_Array): Moved from Exp_Ch3.
455 (Freeze_Object_Declaration): Code cleanup. Check for a large modular
456 array.
457 * sem_ch3.adb: Minor reformatting.
458
459 2018-05-23 Ed Schonberg <schonberg@adacore.com>
460
461 * einfo.ads: New attribute on types: Predicated_Parent, to simplify the
462 retrieval of the applicable predicate function to an itype created for
463 a constrained array component.
464 * einfo.adb: Subprograms for Predicated_Parent.
465 (Predicate_Function): Use new attribute.
466 * exp_util.adb (Make_Predicate_Call): If the predicate function is not
467 available for a subtype, retrieve it from the base type, which may have
468 been frozen after the subtype declaration and not captured by the
469 subtype declaration.
470 * sem_aggr.adb (Resolve_Array_Aggregate): An Others association is
471 legal within a generated initiqlization procedure, as may happen with a
472 predicate check on a component, when the predicate function applies to
473 the base type of the component.
474 * sem_ch3.adb (Analyze_Subtype_Declaration): Clean up inheritance of
475 predicates for subtype declarations and for subtype indications in
476 other contexts.
477 (Process_Subtype): Likewise. Handle properly the case of a private type
478 with unknown discriminants whose full view is an unconstrained array.
479 Use Predicated_Parent to indicate source of predicate function on an
480 itype whose parent is itself an itype.
481 (Complete_Private_Subtype): If the private view has unknown
482 discriminants and the full view is an unconstrained array, set base
483 type of completion to the full view of parent.
484 (Inherit_Predicate_Flags): Prevent double assignment of predicate
485 function and flags.
486 (Build_Subtype): For a constrained array component, propagate predicate
487 information from original component type declaration.
488
489 2018-05-23 Boris Yakobowski <yakobowski@adacore.com>
490
491 * libgnat/a-ngelfu.ads (Arctanh, Arccoth): Fix faulty preconditions.
492
493 2018-05-23 Arnaud Charlet <charlet@adacore.com>
494
495 * checks.adb (Minimize_Eliminate_Overflows): Default initialize Lo and
496 Hi.
497 * sem_elab.adb: Make "out" parameters instead of "in out" when
498 relevant.
499
500 2018-05-23 Bob Duff <duff@adacore.com>
501
502 * gnatbind.adb (List_Applicable_Restrictions): Add
503 No_Implementation_Restrictions to the list of restrictions not to list.
504 Remove double negative "not No_Restriction_List". Comment the
505 commentary that is output, so it won't cause errors if used directly in
506 a gnat.adc.
507
508 2018-05-23 Ed Schonberg <schonberg@adacore.com>
509
510 * sem_prag.adb (Inherit_Class_Wide_Pre): Refine legality check on
511 class-wide precondition on a type extension when ancestor does not have
512 a class-wide precondition. Previously the compiler accepted such a
513 precondition when the ancestor had a class-wide postcondition.
514
515 2018-05-23 Javier Miranda <miranda@adacore.com>
516
517 * sem_attr.adb (Valid_Scalars): Do not invoke Error_Attr_P to report
518 the warning on occurrences of this attribute whose evaluation is always
519 true (since that subprogram aborts processing the attribute). In
520 addition, replace the node by its boolean result 'True' (required
521 because the backend has no knowledge of this attribute).
522
523 2018-05-23 Bob Duff <duff@adacore.com>
524
525 * libgnat/a-convec.adb: (Insert, Insert_Space): Suppress warnings. The
526 code in question is not reachable in the case where Count_Type'Last is
527 out of range.
528
529 2018-05-23 Yannick Moy <moy@adacore.com>
530
531 * doc/gnat_rm/implementation_defined_pragmas.rst: Clarify meaning of
532 local pragma Warnings Off without On.
533 * gnat_rm.texi: Regenerate.
534
535 2018-05-23 Olivier Hainque <hainque@adacore.com>
536
537 * libgnat/g-excact.ads (Is_Foreign_Exception): New predicate.
538 * libgnat/g-excact.adb: Implement.
539
540 2018-05-23 Ed Schonberg <schonberg@adacore.com>
541
542 * sem_ch5.adb (Analyze_Iterator_Specification): If a subtype indication
543 is present, verify its legality when the domain of iteration is a
544 GNAT-specific formal container, as is already done for arrays and
545 predefined containers.
546
547 2018-05-23 Yannick Moy <moy@adacore.com>
548
549 * sem_util.adb (Enclosing_Declaration): Fix the case of a named number
550 declaration, which was not taken into account.
551
552 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
553
554 * debug.adb: Switch -gnatd_s is now used to stop elaboration checks on
555 synchronized suspension.
556 * rtsfind.ads: Add entries for units Ada.Synchronous_Barriers and
557 Ada.Synchronous_Task_Control and routines Suspend_Until_True and
558 Wait_For_Release.
559 * sem_elab.adb: Document switch -gnatd_s.
560 (In_Task_Body): New routine.
561 (Is_Potential_Scenario): Code cleanup. Stop the traversal of a task
562 body when the current construct denotes a synchronous suspension call,
563 and restriction No_Entry_Calls_In_Elaboration_Code or switch -gnatd_s
564 is in effect.
565 (Is_Synchronous_Suspension_Call): New routine.
566 * switch-c.adb (Scan_Front_End_Switches): Switch -gnatJ now sets switch
567 -gnatd_s.
568
569 2018-05-23 Javier Miranda <miranda@adacore.com>
570
571 * exp_disp.adb (Make_DT): Restrict the initialization of
572 External_Tag and Expanded_Name to an empty string to the case where
573 both pragmas apply (i.e. No_Tagged_Streams and Discard_Names), since
574 restricted runtimes are compiled with pragma Discard_Names.
575 * doc/gnat_rm/implementation_defined_pragmas.rst,
576 doc/gnat_rm/implementation_defined_characteristics.rst: Add
577 documentation.
578 * gnat_rm.texi: Regenerate.
579
580 2018-05-23 Maroua Maalej <maalej@adacore.com>
581
582 * sem_spark.adb: Fix of some permission rules of pointers in SPARK.
583
584 2018-05-23 Ed Schonberg <schonberg@adacore.com>
585
586 * sem_ch5.adb (Preanalyze_Range): The pre-analysis of the domain of
587 iteration of an Ada2012 loop is performed to determine the type of the
588 domain, but full analysis is performed once the loop is rewritten as a
589 while-loop during expansion. The pre-analysis suppresses expansion; it
590 must also suppress the generation of freeze nodes, which may otherwise
591 appear in the wrong scope before rewritting.
592
593 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
594
595 * sem_elab.adb: Update the section on suppressing elaboration warnings.
596
597 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
598
599 * einfo.adb (Is_Elaboration_Checks_OK_Id): Use predicate
600 Is_Elaboration_Target.
601 (Is_Elaboration_Target): New routine.
602 (Is_Elaboration_Warnings_OK_Id): Use predicate Is_Elaboration_Target.
603 (Set_Is_Elaboration_Checks_OK_Id): Use predicate Is_Elaboration_Target.
604 (Set_Is_Elaboration_Warnings_OK_Id): Use predicate
605 Is_Elaboration_Target.
606 * einfo.ads: Add new synthesized attribute Is_Elaboration_Target along
607 with occurrences in nodes.
608 (Is_Elaboration_Target): New routine.
609 * sem_prag.adb (Analyze_Pragma): Suppress elaboration warnings when an
610 elaboration target is subject to pragma Warnings (Off, ...).
611
612 2018-05-23 Eric Botcazou <ebotcazou@adacore.com>
613
614 * repinfo.adb (List_Type_Info): Remove obsolete stuff.
615
616 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
617
618 * einfo.adb: Flag304 is now Is_Elaboration_Warnings_OK_Id.
619 (Is_Elaboration_Warnings_OK_Id): New routine.
620 (Set_Is_Elaboration_Warnings_OK_Id): New routine.
621 (Write_Entity_Flags): Output Flag304.
622 * einfo.ads: Add new attribute Is_Elaboration_Warnings_OK_Id along with
623 occurrences in entities.
624 (Is_Elaboration_Warnings_OK_Id): New routine along with pragma Inline.
625 (Set_Is_Elaboration_Warnings_OK_Id): New routine along with pragma
626 Inline.
627 * sem_attr.adb (Analyze_Access_Attribute): Capture the state of
628 elaboration warnings.
629 * sem_ch3.adb (Analyze_Object_Declaration): Capture the state of
630 elaboration warnings.
631 * sem_ch6.adb (Analyze_Abstract_Subprogram_Declaration): Capture the
632 state of elaboration warnings.
633 (Analyze_Subprogram_Body_Helper): Capture the state of elaboration
634 warnings.
635 (Analyze_Subprogram_Declaration): Capture the state of elaboration
636 warnings.
637 * sem_ch9.adb (Analyze_Entry_Declaration): Capture the state of
638 elaboration warnings.
639 (Analyze_Single_Task_Declaration): Capture the state of elaboration
640 warnings.
641 (Analyze_Task_Type_Declaration): Capture the state of elaboration
642 warnings.
643 * sem_ch12.adb (Analyze_Generic_Package_Declaration): Capture the state
644 of elaboration warnings.
645 (Analyze_Generic_Subprogram_Declaration): Capture the state of
646 elaboration warnings.
647 * sem_elab.adb: Add a section on suppressing elaboration warnings.
648 Type Processing_Attributes includes component Suppress_Warnings
649 intended to suppress any elaboration warnings along a path in the
650 graph. Update Initial_State to include a value for this component.
651 Types Target_Attributes and Task_Attriutes include component
652 Elab_Warnings_OK to indicate whether the target or task has elaboration
653 warnings enabled. component Elab_Warnings_OK.
654 (Build_Access_Marker): Propagate attribute
655 Is_Elaboration_Warnings_OK_Node from the attribute to the generated
656 call marker.
657 (Extract_Instantiation_Attributes): Set the value for Elab_Warnings_OK.
658 (Extract_Target_Attributes): Set the value for Elab_Warnings_OK.
659 (Extract_Task_Attributes): Set the value for Elab_Warnings_OK.
660 (Process_Conditional_ABE_Access): Suppress futher elaboration warnings
661 when already in this mode or when the attribute or target have warnings
662 suppressed.
663 (Process_Conditional_ABE_Activation_Impl): Do not emit any diagnostics
664 if warnings are suppressed.
665 (Process_Conditional_ABE_Call): Suppress further elaboration warnings
666 when already in this mode, or the target or call have warnings
667 suppressed.
668 (Process_Conditional_ABE_Call_Ada): Do not emit any diagnostics if
669 warnings are suppressed.
670 (Process_Conditional_ABE_Call_SPARK): Do not emit any diagnostics if
671 warnings are suppressed.
672 (Process_Conditional_ABE_Instantiation): Suppress further elaboration
673 warnings when already in this mode or when the instantiation has
674 warnings suppressed.
675 (Process_Conditional_ABE_Instantiation_Ada): Do not emit any
676 diagnostics if warnings are suppressed.
677 (Process_Conditional_ABE_Variable_Assignment_Ada): Use the more
678 specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
679 (Process_Conditional_ABE_Variable_Assignment_SPARK): Use the more
680 specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
681 (Process_Task_Object): Suppress further elaboration warnings when
682 already in this mode, or when the object, activation call, or task type
683 have warnings suppressed. Update the processing state to indicate that
684 the path goes through a task body.
685 * sinfo.adb (Is_Elaboration_Warnings_OK_Node): Accept attribute
686 references.
687 (Set_Is_Elaboration_Warnings_OK_Node): Accept attribute references.
688 * sinfo.ads: Attribute Is_Elaboration_Warnings_OK_Node now applies to
689 attribute references.
690
691 2018-05-23 Piotr Trojanek <trojanek@adacore.com>
692
693 * einfo.ads: Minor reformatting.
694
695 2018-05-23 Ed Schonberg <schonberg@adacore.com>
696
697 * sem_ch3.adb (Analyze_Object_Declaration): If expression is an
698 anonymous_access_to_ subprogram formal, apply a conversion to force an
699 accsssibility check that will fail statically, enforcing 3.10.2 (13).
700
701 2018-05-23 Daniel Mercier <mercier@adacore.com>
702
703 * gnat1drv.adb: Turn off length expansion in CodePeer mode.
704
705 2018-05-23 Bob Duff <duff@adacore.com>
706
707 * freeze.adb: (Check_Address_Clause): Deal with build-in-place
708 aggregates in addition to build-in-place calls.
709
710 2018-05-23 Bob Duff <duff@adacore.com>
711
712 * einfo.ads: Minor reformatting.
713 * sem_ch3.adb: Likewise.
714 * sinfo.ads: Likewise.
715
716 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
717
718 * exp_ch3.adb (Default_Initialize_Object): Do not optimize scalar array
719 initialization when the component type has predicates.
720 * exp_ch4.adb (Expand_N_Allocator): Do not optimize scalar array
721 allocation when the component type has predicates.
722
723 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
724
725 * einfo.adb, exp_disp.adb, sem_ch3.adb, sem_ch6.adb, sem_prag.adb:
726 Minor reformatting.
727
728 2018-05-22 Justin Squirek <squirek@adacore.com>
729
730 * sem_ch6.adb (Analyze_Expression_Function): Propagate flags from the
731 original function spec into the generated function spec due to
732 expansion of expression functions during analysis.
733 (Analyze_Subprogram_Body_Helper): Modify check on formal parameter
734 references from the body to the subprogram spec in the case of
735 expression functions because of inconsistances related to having a
736 generated body.
737 * libgnarl/s-osinte__android.ads: Flag parameters as unused.
738 * libgnarl/s-osinte__lynxos178e.ads: Likewise.
739 * libgnarl/s-osinte__qnx.adb: Likewise.
740 * libgnarl/s-osinte__qnx.ads: Likewise.
741
742 2018-05-22 Doug Rupp <rupp@adacore.com>
743
744 * init.c (HAVE_ADJUST_CONTEXT_FOR_RAISE): Don't define on VxWorks7 for
745 AArch64.
746
747 2018-05-22 Olivier Hainque <hainque@adacore.com>
748
749 * libgnat/a-except.adb (Exception_Propagation.Propagate_Exception):
750 Expect an Exception_Occurence object, not an Access.
751 (Complete_And_Propagate_Occurrence): Adjust accordingly.
752 (Raise_From_Signal_Handler): Likewise.
753 (Reraise_Occurrence_No_Defer): If we have a Machine_Occurrence
754 available in the provided occurrence object, just re-propagate the
755 latter as a bare "raise;" would do.
756 * libgnat/a-exexpr.adb (Propagate_Exception): Adjust to spec change.
757 * libgnat/a-exstat.adb (String_To_EO): Initialize X.Machine_Occurrence
758 to null, to mark that the occurrence we're crafting from the stream
759 contents is not being propagated (yet).
760
761 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
762
763 * exp_aggr.adb (Initialize_Ctrl_Record_Component): Insert the generated
764 code for a transient component in line with the rest of the
765 initialization code, rather than before the aggregate. This ensures
766 that the component has proper visibility of the discriminants.
767
768 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
769
770 * adaint.c: Reorganize QNX-specific macros, use syspage to retreive the
771 number of CPUs.
772
773 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
774
775 * sigtramp-qnx.c: Properly restore link register in signal trampoline.
776
777 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
778
779 * exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Strip away any
780 conversions before extracting the value of the expression.
781 * exp_ch3.adb (Default_Initialize_Object): Optimize the default
782 initialization of an array of scalars.
783 (Get_Simple_Init_Val): Add processing for array types. Remove the
784 processing of strings because this case is already handled by the array
785 case.
786 (Needs_Simple_Initialization): Moved to Sem_Util.
787 (Simple_Init_Array_Type): New routine.
788 (Simple_Init_Initialize_Scalars_Type): Reimplemented to use the new
789 facilities from Sem_Util.
790 (Simple_Initialization_OK): New routine.
791 * exp_ch3.ads (Needs_Simple_Initialization): Moved to Sem_Util.
792 * exp_ch4.adb (Expand_N_Allocator): Optimize the default allocation of
793 an array of scalars.
794 * sem_prag.adb (Analyze_Float_Value): New routine.
795 (Analyze_Integer_Value): New routine.
796 (Analyze_Pragma): Reimplement the analysis of pragma Initialize_Scalars
797 to handled the extended form of the pragma.
798 (Analyze_Type_Value_Pair): New routine.
799 * sem_util.adb: Add invalid value-related data structures.
800 (Examine_Array_Bounds): New routine.
801 (Has_Static_Array_Bounds): Reimplemented.
802 (Has_Static_Non_Empty_Array_Bounds): New routine.
803 (Invalid_Scalar_Value): New routine.
804 (Needs_Simple_Initialization): Moved from Exp_Ch3.
805 (Set_Invalid_Scalar_Value): New routines.
806 * sem_util.ads (Has_Static_Non_Empty_Array_Bounds): New routine.
807 (Invalid_Scalar_Value): New routine.
808 (Needs_Simple_Initialization): Moved from Exp_Ch3.
809 (Set_Invalid_Scalar_Value): New routines.
810 * snames.ads-tmpl: Add names for the salar type families used by pragma
811 Initialize_Scalars.
812
813 2018-05-22 Javier Miranda <miranda@adacore.com>
814
815 * exp_disp.adb (Make_DT): Initialize the External_Tag with an empty
816 string when pragma No_Tagged_Streams is applicable to the tagged type,
817 and initialize the Expanded_Name with an empty string when pragma
818 Discard_Names is applicable to the tagged type.
819
820 2018-05-22 Ed Schonberg <schonberg@adacore.com>
821
822 * sem_ch6.adb (Check_Conformance): Add RM reference for rule that a
823 formal subprogram is never subtype conformqnt, and thus cannot be the
824 prefix of 'Access. Reject as well the attribute when applied to a
825 renaming of a formal subprogram.
826
827 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
828
829 * exp_ch3.adb (Build_Array_Init_Proc): Update the call to
830 Needs_Simple_Initialization.
831 (Build_Init_Statements): Update the call to Get_Simple_Init_Val.
832 (Check_Subtype_Bounds): Renamed to Extract_Subtype_Bounds. Update the
833 profile and comment on usage.
834 (Default_Initialize_Object): Do not use New_Copy_Tree to set the proper
835 Sloc of a value obtained from aspect Default_Value because this could
836 potentially replicate large trees. The proper Sloc is now set in
837 Get_Simple_Init_Val.
838 (Get_Simple_Init_Val): Reorganized by breaking the various cases into
839 separate routines. Eliminate the use of global variables.
840 (Init_Component): Update the call to Get_Simple_Init_Val.
841 (Needs_Simple_Initialization): Update the parameter profile and all
842 uses of T.
843 (Simple_Init_Defaulted_Type): Copy the value of aspect Default_Value
844 and set the proper Sloc.
845 * exp_ch3.ads (Get_Simple_Init_Val): Update the parameter profile and
846 comment on usage.
847 (Needs_Simple_Initialization): Update the parameter profile.
848
849 2018-05-22 Patrick Bernardi <bernardi@adacore.com>
850
851 * sem_ch3.adb (Build_Discriminant_Constraints): Raise an error if the
852 user tries to use a subtype indication as a discriminant constraint.
853
854 2018-05-22 Ed Schonberg <schonberg@adacore.com>
855
856 * exp_ch4.ads, exp_ch4.adb, exp_util.adb, expander.adb: Remove mention
857 of N_Reduction_Expression and N_Reduction_Expression_Parameter.
858 * par-ch4.adb: Remove parsing routines for reduction expressions.
859 * sem.adb, sinfo.ads, sinfo.adb, sem_ch4.ads, sem_ch4.adb, sem_res.adb,
860 sem_spark.adb, sprint.adb: Remove analysis routines for reduction
861 expressions.
862
863 2018-05-22 Arnaud Charlet <charlet@adacore.com>
864
865 * sem_ch8.adb (Check_Frozen_Renaming): Do not emit error in
866 Relaxed_RM_Semantics mode.
867
868 2018-05-22 Arnaud Charlet <charlet@adacore.com>
869
870 * comperr.adb (Delete_SCIL_Files): Take into account
871 N_Generic_Package_Renaming_Declaration.
872
873 2018-05-22 Ed Schonberg <schonberg@adacore.com>
874
875 * sem_ch3.adb (Search_Derivation_Levels): Whenever a parent type is
876 private, use the full view if available, because it may include renamed
877 discriminants whose values are stored in the corresponding
878 Stored_Constraint.
879
880 2018-05-22 Ed Schonberg <schonberg@adacore.com>
881
882 * einfo.ads, einfo.adb: New attribute Hidden_In_Formal_Instance,
883 defined on packages that are actuals for formal packages, in order to
884 set/reset the visibility of the formals of a formal package with given
885 actuals, when there are subsequent uses of those formals in the
886 enclosing generic, as required by RN 12.7 (10).
887 * atree.ads, atree.adb: Add operations for Elist30.
888 * atree.h: Add Elist30.
889 * sem_ch12.adb (Analyze_Formal_Package_Instantiation): Collect formals
890 that are not defaulted and are thus not visible within the current
891 instance.
892 (Check_Formal_Packages): Reset visibility of formals of a formal
893 package that are not defaulted, on exit from current instance.
894
895 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
896
897 * sem_prag.adb (Analyze_Input_Output): Emit an error when a non-null,
898 non-'Result output appears in the output list of a function.
899
900 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
901
902 * exp_attr.adb (Build_Array_VS_Func): Reimplemented.
903 (Build_Record_VS_Func): Reimplemented.
904 (Expand_N_Attribute): Reimplement the handling of attribute
905 'Valid_Scalars.
906 * sem_attr.adb (Analyze_Attribute): Reimplement the handling of
907 attribute 'Valid_Scalars.
908 * sem_util.adb (Scalar_Part_Present): Reimplemented.
909 (Validated_View): New routine.
910 * sem_util.ads (Scalar_Part_Present): Update the parameter profile and
911 comment on usage.
912 (Validated_View): New routine.
913 * doc/gnat_rm/implementation_defined_attributes.rst: Update the
914 documentation of attribute 'Valid_Scalars.
915 * gnat_rm.texi: Regenerate.
916
917 2018-05-22 Bob Duff <duff@adacore.com>
918
919 * binde.adb: (Choose): Ignore a pragma Elaborate_Body that appears in
920 the spec of a SAL_Interface package.
921
922 2018-05-22 Ed Schonberg <schonberg@adacore.com>
923
924 * freeze.adb (Freeze_Entity): When analyzing delayed aspects of an
925 entity E within a generic unit, indicate that there are no remaining
926 delayed aspects after invoking Analyze_Aspects_At_Freeze_Point. The
927 entity E is not frozen yet but the aspects should not be reanalyzed at
928 the freeze point, which may be outside of the generic and may not have
929 the proper visibility.
930
931 2018-05-22 Bob Duff <duff@adacore.com>
932
933 * doc/gnat_ugn/gnat_utility_programs.rst: Add documentation for
934 the new --split-line-before-record, --indent-named-statements and
935 --no-align-modes gnatpp switches.
936
937 2018-05-22 Ed Schonberg <schonberg@adacore.com>
938
939 * sem_prag.adb (Process_Compile_Time_Warning_Or_Error): Handle properly
940 a second argument that is a constant of a given string value.
941
942 2018-05-22 Doug Rupp <rupp@adacore.com>
943
944 * sigtramp-vxworks-target.inc: Align stack to 128bits on AArch64.
945
946 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
947
948 * sigtramp-qnx.c: Fix stack alignment issue in the signal trampoline.
949
950 2018-05-22 Ed Schonberg <schonberg@adacore.com>
951
952 * freeze.adb (Freeze_Fixed_Point_Type): If the first subtype has
953 delayed aspects, analyze them now, os that the representation of the
954 type (size, bounds) can be computed and validated.
955
956 2018-05-22 Olivier Hainque <hainque@adacore.com>
957
958 * libgnat/s-dwalin.adb (Enable_Cache): Skip symbols outside of the
959 executable code section boundaries.
960
961 2018-05-22 Javier Miranda <miranda@adacore.com>
962
963 * locales.c: New implementation for the Ada.Locales package.
964 * libgnat/a-locale.ads: Remove comment indicating that this is not
965 implemented.
966 * doc/gnat_rm/standard_library_routines.rst: Remove comment indicating
967 that this is not implemented.
968 * gnat_rm.texi: Regenerate.
969
970 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
971
972 * exp_ch5.adb, freeze.adb, pprint.adb, sem_ch4.adb, sem_res.adb: Minor
973 reformattings.
974
975 2018-05-22 Justin Squirek <squirek@adacore.com>
976
977 * sem_ch12.adb (In_Same_Declarative_Part): Moved to sem_util.
978 (Freeze_Subprogram_Body, Install_Body): Modify calls to
979 In_Same_Declarative_Part.
980 * sem_prag.adb (Analyze_Pragma-Pragma_Pure_Function): Add check to
981 verify pragma declaration is within the same declarative list with
982 corresponding error message.
983 * sem_util.adb, sem_util.ads (In_Same_Declarative_Part): Moved from
984 sem_ch12.adb and generalized to be useful outside the scope of
985 freezing.
986
987 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
988
989 * sem_ch6.adb (Analyze_Subprogram_Declaration): Set the proper
990 categorization of the unit after processing the aspects in case one of
991 its aspects is converted into a categorization pragma.
992
993 2018-05-21 Ed Schonberg <schonberg@adacore.com>
994
995 * freeze.adb (Warn_Overlay): Do not emit a wawrning on an object
996 declaration with an explicit address clause and a type with default
997 initialization, if the declaration carries an aspect
998 Suppress_Initialization.
999
1000 2018-05-21 Daniel Mercier <mercier@adacore.com>
1001
1002 * pprint.adb: Use mixed case for attribute names.
1003
1004 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
1005
1006 * sem_ch6.adb (Analyze_Generic_Subprogram_Body): Rename the call to
1007 Analyze_Aspect_Specifications_On_Body_Or_Stub.
1008 (Analyze_Subprogram_Body_Helper): Rename the calls to
1009 Analyze_Aspect_Specifications_On_Body_Or_Stub.
1010 * sem_ch9.adb (Analyze_Entry_Body): Rename the call to
1011 Analyze_Aspect_Specifications_On_Body_Or_Stub.
1012 * sem_ch10.adb: Add with and use clause for Sem_Ch13.
1013 (Analyze_Package_Body_Stub): Add constant Id. Decorate the package stub
1014 prior to analyzing its aspects.
1015 (Analyze_Protected_Body_Stub): Add constant Id. Decorate the package
1016 stub prior to analyzing its aspects. Save and restore the configuration
1017 switches.
1018 (Analyze_Task_Body_Stub): Add constant Id. Decorate the package stub
1019 prior to analyzing its aspects.
1020 * sem_ch13.adb (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
1021 to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
1022 * sem_ch13.ads (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
1023 to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
1024 * sem_prag.adb: Code reformatting.
1025 (Analyze_Refined_Depends_Global_Post): Consider task body stubs.
1026
1027 2018-05-21 Jerome Lambourg <lambourg@adacore.com>
1028
1029 * gcc-interface/Makefile.in: Add g-soliop__qnx.ads to the runtime build
1030 for QNX.
1031
1032 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
1033
1034 * exp_cg.adb: Remove with and use clause for Exp_Disp.
1035 * exp_ch9.adb: Remove with and use clause for Exp_Disp.
1036 * exp_disp.adb (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
1037 (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
1038 (Is_Predefined_Internal_Operation): Moved to Sem_Util.
1039 * exp_disp.ads (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
1040 (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
1041 (Is_Predefined_Internal_Operation): Moved to Sem_Util.
1042 * exp_dist.adb: Remove with and use clause for Exp_Disp.
1043 * freeze.adb: Remove with and use clause for Exp_Disp.
1044 * sem_cat.adb: Remove with and use clause for Exp_Disp.
1045 * sem_ch6.adb: Remove with and use clause for Exp_Disp.
1046 * sem_ch12.adb: Remove with and use clause for Exp_Disp.
1047 * sem_elab.adb (Check_Overriding_Primitive): Do not process predefined
1048 primitives.
1049 * sem_util.adb: Remove with and use clause for Exp_Disp.
1050 (Is_Predefined_Dispatching_Operation): Moved from Exp_Disp.
1051 (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
1052 (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
1053 * sem_util.ads (Is_Predefined_Dispatching_Operation): Moved from
1054 Exp_Disp.
1055 (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
1056 (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
1057
1058 2018-05-21 Ed Schonberg <schonberg@adacore.com>
1059
1060 * sem_res.adb (Valid_Conversion): Improve error message on an illegal
1061 type conversion whose expression has a limited view of a type.
1062
1063 2018-05-21 Ed Schonberg <schonberg@adacore.com>
1064
1065 * exp_ch5.adb (Build_Formal_Container_Iteration): If source has
1066 explicit name for iterator loop, preserve that name in expanded
1067 construct, for possible use in exit statements.
1068
1069 2018-05-21 Javier Miranda <miranda@adacore.com>
1070
1071 * sem_ch4.adb (Analyze_Membership_Op): Avoid compiler crash when the
1072 spec of a unit has Ada 2012 membership tests with multiple choices and
1073 the unit body is not compiled under Ada 2012 mode.
1074
1075 2018-05-21 Doug Rupp <rupp@adacore.com>
1076
1077 * sigtramp-vxworks-target.inc: Set cfa_reg properly from sigcontext
1078 pregs.
1079 (CFI_COMMON_REGS): Restore LR jic probed from prologue.
1080 (REGNO_PC_OFFSET): Change to correct value for Aarch64.
1081
1082 2018-05-21 Jose Ruiz <ruiz@adacore.com>
1083
1084 * doc/gnat_ugn/gnat_utility_programs.rst, exp_attr.adb,
1085 libgnarl/s-tassta.adb: Minor typo fixes
1086
1087 2018-05-21 Ed Schonberg <schonberg@adacore.com>
1088
1089 * sem_ch4.adb (Analyze_One_Call): Recognize complex cases where an
1090 indexed call originally in prefix forn is itself the prefix of a
1091 further call.
1092
1093 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
1094
1095 * sem_eval.adb (Is_Null_Range): Clarify access to the full view of a
1096 type.
1097 (Not_Null_Range): Same as above.
1098
1099 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
1100
1101 * exp_ch3.adb: Minor reformatting.
1102 * exp_ch6.adb: Likewise.
1103 * freeze.adb: Likewise.
1104 * inline.adb: Likewise.
1105 * sem_util.adb: Likewise.
1106
1107 2018-05-21 Yannick Moy <moy@adacore.com>
1108
1109 * inline.adb (Expand_Inlined_Call.Process_Formals): Use a type
1110 conversion instead of an unchecked type conversion when inlining a
1111 return statement, unless type qualification is required (for character
1112 and string literal) or no check can result from the conversion (for
1113 access types).
1114 * opt.ads: Update comment.
1115
1116 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
1117
1118 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Install the elaboration
1119 model of the compilation unit spec, if any.
1120 * sem_ch7.adb (Analyze_Package_Body_Helper): Install the elaboration
1121 model of the compilation unit spec, if any.
1122 * sem_ch10.adb (Analyze_Subunit): Install the elaboration model of the
1123 parent compilation unit spec, if any.
1124 * sem_elab.adb (Check_Elaboration_Scenarios): Restore the elaboration
1125 model of the main unit.
1126 (Is_Same_Unit): The routine now uses Unit_Entity.
1127 (Is_Subunit): Removed.
1128 (Normalize_Unit): Removed.
1129 (Unit_Entity): New routine.
1130 * sem_prag.adb (Analyze_Pragma): Reimplement the handling of pragma
1131 Elaboration_Checks. The analysis now ensures that the pragma appears at
1132 the configuration level, and on the initial declaration of a unit.
1133 Other placements are either flagged as illegal, or ignored.
1134 (Check_Duplicate_Elaboration_Checks_Pragma): New routine.
1135 (Ignore_Elaboration_Checks_Pragma): New routine.
1136 * sem_util.adb (Install_Elaboration_Model): New routine.
1137 * sem_util.ads (Install_Elaboration_Model): New routine.
1138 * doc/gnat_rm/implementation_defined_pragmas.rst: Update the
1139 documentation of pragma Elaboration_Checks.
1140 * gnat_rm.texi: Regenerate.
1141
1142 2018-05-21 Olivier Hainque <hainque@adacore.com>
1143
1144 * libgnat/s-trasym__dwarf.adb (Executable_Name): Return argv[0] instead
1145 of empty string when argv[0] couldn't be found on PATH.
1146 (Enable_Cache): Raise Program_Error instead of attempting a null
1147 pointer dereference when the Exec_Module initialization failed.
1148
1149 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
1150
1151 * libgnarl/a-reatim.ads (Clock_Time): Remove External aspect.
1152 * libgnarl/a-taside.ads (Tasking_State): Likewise.
1153 * libgnat/a-calend.ads (Clock_Time): Likewise.
1154
1155 2018-05-21 Yannick Moy <moy@adacore.com>
1156
1157 * sem_ch6.adb (Analyze_Procedure_Call): Refine test to recognize prefix
1158 call notation in inlined call in GNATprove mode.
1159
1160 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
1161
1162 * einfo.adb (Is_External_State): An abstract state is also external
1163 when it is declared with option "synchronous".
1164 * einfo.ads: Update the documentation of synthesized attribute
1165 Is_External_State.
1166 * sem_util.adb (Find_Simple_Properties): New routine.
1167 (Is_Enabled_External_Property): New routine.
1168 (State_Has_Enabled_Property): Reimplemented. The two flavors of option
1169 External have precedence over option Synchronous when determining
1170 whether a property is in effect.
1171
1172 2018-05-21 Yannick Moy <moy@adacore.com>
1173
1174 * sem_eval.adb (Static_Length): Take into account case of variable of
1175 subtype string literal.
1176
1177 2018-05-21 Olivier Hainque <hainque@adacore.com>
1178
1179 * libgnat/s-objrea.ads (Get_Memory_Bounds): Rename as Get_Xcode_Bounds.
1180 (Object_Section): Rename Flag_Alloc component as Flag_Xcode.
1181 * libgnat/s-objrea.adb (Get_Xcode_Bounds): Adjust to new subprogram and
1182 component name.
1183 (Get_Section, ELF case): Set Flag_Xcode from SHF_EXECINSTR.
1184 * libgnat/s-dwalin.adb (Open): Adjust to the Get_Memory_Bounds name
1185 change.
1186
1187 2018-05-21 Olivier Hainque <hainque@adacore.com>
1188
1189 * libgnat/s-dwalin.ads (Dwarf_Context): Change type of Load_Address to
1190 Address, and type of Low, High to Storage_Offset.
1191 (Low): Rename as Low_Address and convey that the return value is a
1192 runtime reference accounting for a load address.
1193 * libgnat/s-dwalin.adb (Read_Aranges_Entry): Adjust to the
1194 address/offset type changes.
1195 (Aranges_Lookup): Likewise.
1196 (Symbolic_Address): Likewise.
1197 (Symbolic_Traceback): Likewise.
1198 (Dump_Cache): Likewise.
1199 (Is_Inside): Likewise.
1200 (Open): Likewise.
1201 (Set_Load_Address): Likewise.
1202 (Low_Address): Likewise, and account for C.Load_Address.
1203 * libgnat/s-trasym__dwarf.adb (Lt): Use Low_Address instead of Low.
1204 (Multi_Module_Symbolic_Traceback): Compare address in traceback
1205 with module Low_Address instead of Low.
1206
1207 2018-05-21 Olivier Hainque <hainque@adacore.com>
1208
1209 * libgnat/s-dwalin.ads (Dwarf_Context): Rename Load_Slide as
1210 Load_Address.
1211 * libgnat/s-dwalin.adb (Is_Inside): Adjust accordingly.
1212 (Set_Load_Address): Likewise.
1213 (Symbolic_Traceback): Likewise.
1214
1215 2018-05-21 Olivier Hainque <hainque@adacore.com>
1216
1217 * libgnat/s-trasym__dwarf.adb (Add_Module_To_Cache): Expect a
1218 Load_Address argument and pass it down to Init_Module.
1219 * libgnat/s-tsmona__linux.adb (Build_Cache_For_All_Modules): Pass
1220 lm.l_addr as the Load_Address to Add_Module_To_Cache.
1221
1222 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
1223
1224 * einfo.adb (Has_Discriminants): Stronger assertion.
1225 (Set_Has_Discriminants): Stronger assertion.
1226 * sem_ch13.adb (Push_Scope_And_Install_Discriminants): Adapt to respect
1227 the stronger assertion on Has_Discriminant.
1228 (Uninstall_Discriminants_And_Pop_Scope): Same as above.
1229 * sem_util.adb (New_Copy_Tree): Same as above.
1230 * sem_ch7.adb (Generate_Parent_References): Prevent calls to
1231 Has_Discriminant on non-type entities that might happen when the
1232 compiled code has errors.
1233 * sem_ch3.adb (Derived_Type_Declaration): Only call
1234 Set_Has_Discriminant on type entities.
1235
1236 2018-05-21 Arnaud Charlet <charlet@adacore.com>
1237
1238 * exp_unst.adb (Unnest_Subprogram): Unnest all subprograms relevant for
1239 code generation.
1240
1241 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
1242
1243 * lib.ads: Fix typo in enumeration in comment.
1244
1245 2018-05-21 Ed Schonberg <schonberg@adacore.com>
1246
1247 * sem_attr.adb (Analyze_Attribute, case Scalar_Storage_Order): The
1248 attribute reference is legal within a generic unit when the prefix is a
1249 formal private type.
1250
1251 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
1252
1253 * exp_ch7.adb (Establish_Transient_Scope): Code cleanup. Do not
1254 delegate the secondary stack management when there is no suitable
1255 transient context, and the transient scope was intended to manage the
1256 secondary stack because this causes premature reclamation. Change the
1257 transient scope creation logic by special casing assignment statements
1258 of controlled components for type initialization procedures.
1259 (Find_Node_To_Be_Wrapped): Renamed to Find_Transient_Context. Update
1260 the comment on usage.
1261 (Find_Transient_Context): Change the initinte loop into a while loop.
1262 Iterations schemes and iterator specifications are not valid transient
1263 contexts because they rely on special processing. Assignment statements
1264 are now treated as a normal transient context, special cases are
1265 handled by the caller. Add special processing for pragma Check.
1266 (Is_OK_Construct): Removed. Its functionality has been merged in
1267 routine Find_Transient_Context.
1268 * sem_ch5.adb (Check_Call): Reimplemented. Add code to properly
1269 retrieve the subprogram being invoked. Use a more accurate predicate
1270 (Requires_Transient_Scope) to determine that the function will emply
1271 the secondary stack.
1272
1273 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
1274
1275 * ada_get_targ.adb: Fix subprogram body headers.
1276 * adabkend.adb: Likewise.
1277 * checks.adb: Likewise.
1278 * exp_ch3.adb: Likewise.
1279 * exp_ch5.adb: Likewise.
1280 * exp_ch9.adb: Likewise.
1281 * exp_dist.adb: Likewise.
1282 * exp_tss.adb: Likewise.
1283 * inline.adb: Likewise.
1284 * lib-writ.adb: Likewise.
1285 * lib-xref-spark_specific.adb: Likewise.
1286 * libgnarl/s-osinte__darwin.adb: Likewise.
1287 * libgnarl/s-stusta.adb: Likewise.
1288 * libgnarl/s-taprop__solaris.adb: Likewise.
1289 * libgnarl/s-tposen.adb: Likewise.
1290 * libgnarl/s-vxwext__kernel-smp.adb: Likewise.
1291 * libgnarl/s-vxwext__kernel.adb: Likewise.
1292 * libgnat/a-btgbso.adb: Likewise.
1293 * libgnat/a-cfdlli.adb: Likewise.
1294 * libgnat/a-cfhama.adb: Likewise.
1295 * libgnat/a-cfinve.adb: Likewise.
1296 * libgnat/a-cimutr.adb: Likewise.
1297 * libgnat/a-coboho.adb: Likewise.
1298 * libgnat/a-cofove.adb: Likewise.
1299 * libgnat/a-cofuve.adb: Likewise.
1300 * libgnat/a-comutr.adb: Likewise.
1301 * libgnat/a-exexda.adb: Likewise.
1302 * libgnat/a-tags.adb: Likewise.
1303 * libgnat/a-tideau.adb: Likewise.
1304 * libgnat/a-wtdeau.adb: Likewise.
1305 * libgnat/a-ztdeau.adb: Likewise.
1306 * libgnat/g-alleve.adb: Likewise.
1307 * libgnat/s-excdeb.adb: Likewise.
1308 * libgnat/s-parint.adb: Likewise.
1309 * libgnat/s-shasto.adb: Likewise.
1310 * libgnat/s-traceb__hpux.adb: Likewise.
1311 * prepcomp.adb: Likewise.
1312 * sem_ch4.adb: Likewise.
1313 * sem_ch6.adb: Likewise.
1314 * sem_dist.adb: Likewise.
1315 * sem_prag.adb: Likewise.
1316 * sem_util.adb: Likewise.
1317 * sinfo.adb: Likewise.
1318 * switch.adb: Likewise.
1319
1320 2018-05-04 John Marino <gnugcc@marino.st>
1321
1322 PR ada/85635
1323 * link.c (BSD platforms): Add missing backslash.
1324
1325 2018-04-27 Eric Botcazou <ebotcazou@adacore.com>
1326
1327 PR ada/85540
1328 * init.c (__gnat_handle_vms_condition): Add missing parentheses.
1329
1330 2018-04-25 Eric Botcazou <ebotcazou@adacore.com>
1331
1332 PR ada/85007
1333 * gnat_ugn.texi: Regenerate.
1334
1335 2018-03-23 Eric Botcazou <ebotcazou@adacore.com>
1336
1337 PR ada/85007
1338 * gnatlink.adb (Gnatlink): Remove handling of -b switch.
1339 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (gnatlink):
1340 Remove documentation of -b switch.
1341
1342 2018-03-23 Eric Botcazou <ebotcazou@adacore.com>
1343
1344 PR ada/85036
1345 * gnatlink.adb (Process_Args): Drop existing link switches if multiple
1346 switches are passed for --LINK.
1347
1348 2018-03-12 Eric Botcazou <ebotcazou@adacore.com>
1349
1350 PR ada/82813
1351 * gcc-interface/misc.c (gnat_post_options): Disable string overflow
1352 warnings.
1353
1354 2018-03-10 Eric Botcazou <ebotcazou@adacore.com>
1355
1356 * gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
1357 Consider only entities for objects.
1358
1359 2018-03-07 Sebastian Huber <sebastian.huber@embedded-brains.de>
1360
1361 * gcc-interface/Makefile.in (OSCONS_CPP): Remove redundant
1362 $(GNATLIBCFLAGS).
1363 (OSCONS_EXTRACT): Add $(GNATLIBCFLAGS_FOR_C).
1364
1365 2018-03-06 Eric Botcazou <ebotcazou@adacore.com>
1366
1367 * gcc-interface/trans.c (convert_with_check): Fix typo in the condition
1368 guarding the overflow check emitted for the upper bound of a floating-
1369 point conversion.
1370
1371 2018-03-06 Eric Botcazou <ebotcazou@adacore.com>
1372
1373 * gcc-interface/utils.c (def_builtin_1): Bail out on error_mark_node.
1374
1375 2018-02-28 Eric Botcazou <ebotcazou@adacore.com>
1376
1377 * libgnat/i-cexten.ads (Float_128): New type.
1378
1379 2018-02-02 Eric Botcazou <ebotcazou@adacore.com>
1380
1381 * gcc-interface/decl.c (array_type_has_nonaliased_component): Return
1382 false if the component type is a pointer.
1383
1384 2018-01-11 Gary Dismukes <dismukes@adacore.com>
1385
1386 * exp_ch3.adb (Default_Initialize_Object): Call New_Copy_Tree on the
1387 result of Get_Simple_Init_Value and pass the source location of the
1388 object declaration's object_definition.
1389
1390 2018-01-11 Ed Schonberg <schonberg@adacore.com>
1391
1392 * exp_ch6.adb (Make_Build_In_Place_Call_In_Object_Declaration): Handle
1393 properly object declarations with initializations that are
1394 build-in-place function calls, when there is an address specification,
1395 either as an aspect specification or an explicit attribute
1396 specification clause, for the initialized object.
1397 * freeze.adb (Check_Address_Clause): Do not remove side-effects from
1398 initial expressions in the case of a build-in-place call.
1399
1400 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
1401
1402 * sem_eval.adb (Is_Null_Range): Retrieve the full view when called on a
1403 private (sub)type; refactor to avoid early return statement.
1404 (Not_Null_Range): Same as above.
1405
1406 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1407
1408 * freeze.adb (Freeze_Entity): Ensure that a Ghost type is not
1409 concurrent, nor effectively volatile.
1410 * ghost.adb (Check_Ghost_Type): New routine.
1411 * ghost.ads (Check_Ghost_Type): New routine.
1412 * sem_util.adb (Is_Declaration): Reimplemented. The routine can now
1413 consider specific subsets of declarations.
1414 (Is_Declaration_Other_Than_Renaming): Removed. Its functionality is
1415 replicated by Is_Declaration.
1416 * sem_util.ads (Is_Declaration): New parameter profile. Update the
1417 comment on usage.
1418 (Is_Declaration_Other_Than_Renaming): Removed.
1419
1420 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1421
1422 * sem_ch5.adb (Analyze_Assignment): Assignments to variables that act
1423 as Part_Of consituents of single protected types are illegal when they
1424 take place inside a protected function.
1425 (Diagnose_Non_Variable_Lhs): Use Within_Function to check for an
1426 enclosing function.
1427 (Is_Protected_Part_Of_Constituent): New routine.
1428 (Within_Function): New routine.
1429
1430 2018-01-11 Arnaud Charlet <charlet@adacore.com>
1431
1432 Bump copyright notices to 2018.
1433
1434 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1435
1436 * binde.adb, par-ch6.adb, par-ch9.adb, sem_ch12.adb, sem_ch13.adb:
1437 Minor reformatting.
1438
1439 2018-01-11 Justin Squirek <squirek@adacore.com>
1440
1441 * par-ch6.adb (Scan_Body_Or_Expression_Function): Add additional check
1442 to make sure a given expression function is properly parenthesized.
1443
1444 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1445
1446 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Check the
1447 categorization of a subprogram body which does not complete a previous
1448 declaration.
1449
1450 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1451
1452 * sem_ch10.adb (Check_Private_Child_Unit): Ensure that the enclosing
1453 scope of package Ada is Standard.
1454
1455 2018-01-11 Ed Schonberg <schonberg@adacore.com>
1456
1457 * sem_ch13.adb (Replace_Type_Ref): Handle properly reference to a
1458 subcomponent of the current entity when building the body for a dynamic
1459 predicate function for a record with composite subcomponents.
1460
1461 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1462
1463 * exp_aggr.adb (Convert_Aggr_In_Object_Decl): Update the call to
1464 Establish_Transient_Scope.
1465 (Convert_To_Assignments): Update the call to Establish_Transient_Scope.
1466 (Expand_Array_Aggregate): Update the call to Establish_Transient_Scope.
1467 * exp_ch6.adb (Expand_Call_Helper): Update the call to
1468 Establish_Transient_Scope.
1469 (Make_Build_In_Place_Call_In_Object_Declaration): Update the call to
1470 Establish_Transient_Scope.
1471 * exp_ch7.adb (Establish_Transient_Scope): Restructured. Delegate the
1472 management of the secondary stack to an enclosing scope if there is no
1473 suitable construct to wrap, and the transient scope was intended to
1474 manage the secondary stack.
1475 (Find_Node_To_Be_Wrapped): Restructured. A case_statement_alternative
1476 is a valid boundary for a transient expression which comes from the
1477 statements of the alternative, otherwise alternatives cannot be
1478 wrapped. Assignments of controlled objects which have controlled
1479 actions suppressed now stop the traversal as there is no point in
1480 looking for an enclosing construct. Add several N_xxx_Body choices to
1481 the termination conditions for completeness.
1482 * exp_ch7.ads (Establish_Transient_Scope): Update the parameter profile
1483 and the associated comment on usage.
1484 * exp_smem.adb (Add_Shared_Var_Lock_Procs): Update the call to
1485 Establish_Transient_Scope.
1486 (Add_Write_After): Update the call to Establish_Transient_Scope.
1487 * sem_res.adb (Check_Initialization_Call): Removed.
1488 (Resolve_Actuals): Account for additional cases where finalization
1489 actions are required by utilizing predicate Needs_Finalization rather
1490 than Is_Controlled.
1491 (Resolve_Call): Type initialization procedures can now utilize
1492 transient scopes to manage the secondary stack, thus preventing leaks
1493 during initialization. Remove the previous kludgy algorithm which
1494 attempts to manage the secondary stack at the object creation site.
1495
1496 2018-01-11 Jerome Lambourg <lambourg@adacore.com>
1497
1498 * libgnat/g-soliop__qnx.ads: New.
1499 * adaint.c, adaint.h, cstreams.c, s-oscons-tmplt.c, sysdep.c: Update
1500 for QNX.
1501
1502 2018-01-11 Bob Duff <duff@adacore.com>
1503
1504 * par-ch9.adb (P_Protected_Operation_Declaration_Opt): Give an error if
1505 a null procedure occurs in a protected definition.
1506
1507 2018-01-11 Bob Duff <duff@adacore.com>
1508
1509 * binderr.ads, namet.ads: Minor reformatting.
1510
1511 2018-01-11 Bob Duff <duff@adacore.com>
1512
1513 * doc/gnat_ugn/gnat_utility_programs.rst: Improve documentation of
1514 xml2gnat.
1515
1516 2018-01-11 Bob Duff <duff@adacore.com>
1517
1518 * binde.adb (Force_Elab_Order): Give an error if there are duplicate
1519 unit names.
1520
1521 2018-01-11 Ed Schonberg <schonberg@adacore.com>
1522
1523 * sem_ch6.adb (Freeze_Expr_Types): If an access value is the
1524 controlling argument of a dispatching call. freeze the corresponding
1525 designated type.
1526
1527 2018-01-11 Ben Brosgol <brosgol@adacore.com>
1528
1529 * doc/Makefile: Add Sphinx option -W to treat warnings as errors.
1530
1531 2018-01-11 Ben Brosgol <brosgol@adacore.com>
1532
1533 * doc/gnat_rm/implementation_defined_aspects.rst: Minor type/wording
1534 corrections.
1535 * gnat_rm.texi: Regenerate.
1536
1537 2018-01-11 Ed Schonberg <schonberg@adacore.com>
1538
1539 * sem_ch12.adb (Check_Fixed_Point_Type): Do not apply check if the
1540 formsl type corresponding to the actual fixed point type is private,
1541 because in this case there can be no suspicious arithmetic operations
1542 in the generic unless they reference a formal subprogram. Clarify
1543 warning.
1544
1545 2018-01-11 Javier Miranda <miranda@adacore.com>
1546
1547 * exp_util.adb (Remove_Side_Effects): No action done for functions
1548 returning class-wide types since it requires generating code using
1549 'reference and the CCG target has no secondary stack.
1550 * gnat1drv.adb: Disable building static dispatch tables when generating
1551 C code.
1552
1553 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
1554
1555 * libgnat/a-direio.ads, libgnat/a-sequio.ads, libgnat/a-ststio.ads,
1556 libgnat/a-textio.ads, libgnat/a-witeio.ads, libgnat/a-ztexio.ads
1557 (File_Type): Add Default_Initial_Condition aspect.
1558
1559 2018-01-11 Pascal Obry <obry@adacore.com>
1560
1561 * libgnat/s-os_lib.adb (Normalize_Pathname): New implementation.
1562
1563 2018-01-11 Bob Duff <duff@adacore.com>
1564
1565 * doc/gnat_ugn/gnat_utility_programs.rst: Rewrite gnatpp documentation
1566 to match what the Libadalang-based version does.
1567 * doc/gnat_ugn/about_this_guide.rst: Update reference.
1568
1569 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1570
1571 * sem_res.adb (Uses_SS): A controlled type requires the secondary stack
1572 if it contains at least one component declaration employing a function
1573 call returning on the secondary stack.
1574
1575 2018-01-11 Yannick Moy <moy@adacore.com>
1576
1577 * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
1578 Update description of restriction SPARK_05 with SPARK 2014.
1579 * gnat_rm.texi: Regenerate.
1580
1581 2018-01-11 Vasiliy Fofanov <fofanov@adacore.com>
1582
1583 * doc/gnat_ugn/gnat_utility_programs.rst: Fix layout.
1584
1585 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1586
1587 * exp_aggr.adb, exp_ch9.adb, exp_util.adb, sem_aggr.adb, sem_ch3.adb,
1588 sem_res.adb, sem_util.adb: Minor reformatting.
1589
1590 2018-01-11 Ed Schonberg <schonberg@adacore.com>
1591
1592 * sem_prag.adb (Analyze_Pragma, case Predicate): Indicate that the type
1593 has a delayed aspect which must be processed at the point the type is
1594 frozen. This mimics what is done when the predicate is provided by a
1595 source aspect.
1596
1597 2018-01-11 Doug Rupp <rupp@adacore.com>
1598
1599 * init.c (vxworks): Add macro checks for __aarch64__.
1600
1601 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1602
1603 * exp_util.adb (Add_Failure_Expression): New routine.
1604 (Make_Predicate_Check): Reimplement the handling of Predicate_Failure.
1605 * sem_util.adb (Is_Current_Instance): Code cleanup.
1606
1607 2018-01-11 Patrick Bernardi <bernardi@adacore.com>
1608
1609 * libgnat/s-parame*.adb, libgnat/s-parame*.ads: Remove unneeded
1610 Default_Sec_Stack_Size.
1611 * libgnat/s-secsta.adb (SS_Allocate): Handle the fixed secondary stack
1612 limit check so that the integer index does not overflow. Check the
1613 dynamic stack allocation does not cause the secondary stack pointer to
1614 overflow.
1615 (SS_Info): Align colons.
1616 (SS_Init): Cover the case when bootstraping with an old compiler that
1617 does not set Default_SS_Size.
1618
1619 2018-01-11 Ed Schonberg <schonberg@adacore.com>
1620
1621 * sem_ch3.adb (Add_Internal_Interface_Entities): When checking the
1622 legality of an inherited operation that may require overriding, ignore
1623 primitive_wrappers that correspond to explicit operations that override
1624 an interface primitive.
1625 * exp_util.adb (Build_Class_Wide_Expression, Replace_Entity): If the
1626 operation to which the class-wide expression applies is a protected op.
1627 with a primitive_wrapper, verify that the updated inherited expression
1628 does not contain an internal call to a protected function. This
1629 completes the implementation of AI12-0166.
1630
1631 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1632
1633 * ali.adb: Document the remaining letters available for ALI lines.
1634 (Scan_ALI): A with clause is internal when it is encoded on a 'Z' line.
1635 * ali.ads: Update type With_Record. Field
1636 Implicit_With_From_Instantiation is no longer in use. Add field
1637 Implicit_With.
1638 * csinfo.adb (CSinfo): Remove the setup for attribute
1639 Implicit_With_From_Instantiation.
1640 * lib-writ.adb (Collect_Withs): Correct the logic which marks a unit as
1641 either implicitly or explicitly withed.
1642 (Is_Implicit_With_Clause): New routine.
1643 (Write_ALI): Rename array Implicit_With to Has_Implicit_With to avoid
1644 confusion with the with clause attribute by the same name.
1645 (Write_With_Lines): Update the emission of 'W', 'Y', and 'Z' headers.
1646 * rtsfind.adb (Maybe_Add_With): Code cleanup.
1647 * sem_ch8.adb (Present_System_Aux): Code cleanup.
1648 * sem_ch10.adb (Expand_With_Clause): Mark the with clause as generated
1649 for a parent unit.
1650 (Implicit_With_On_Parent): Mark the with clause as generated for a
1651 parent unit.
1652 * sem_ch12.adb (Inherit_Context): With clauses inherited by an
1653 instantiation are no longer marked as Implicit_With_From_Instantiation
1654 because they are already marked as implicit.
1655 * sem_elab.adb (Ensure_Prior_Elaboration_Static): Remove the kludge
1656 which marks implicit with clauses as related to an instantiation.
1657 * sinfo.adb (Implicit_With_From_Instantiation): Removed.
1658 (Parent_With): New routine.
1659 (Set_Implicit_With_From_Instantiation): Removed.
1660 (Set_Parent_With): New routine.
1661 * sinfo.ads: Update the documentation of attribute Implicit_With.
1662 Remove attribute Implicit_With_From_Instantiation along with
1663 occurrences in nodes. Add attribute Parent_With along with occurrences
1664 in nodes.
1665 (Implicit_With_From_Instantiation): Removed along with pragma Inline.
1666 (Parent_With): New routine along with pragma Inline.
1667 (Set_Implicit_With_From_Instantiation): Removed along with pragma Inline.
1668 (Set_Parent_With): New routine along with pragma Inline.
1669
1670 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1671
1672 * sem_util.adb (Find_Enclosing_Scope): Return the unique defining
1673 entity when the enclosing construct is a body.
1674
1675 2018-01-11 Patrick Bernardi <bernardi@adacore.com>
1676
1677 * exp_ch9.adb (Expand_N_Task_Type_Declaration): Simplified
1678 Secondary_Stack_Size handling as a pragma is now generated for the
1679 corresponding aspect instead of an attribute. Pragma expression is
1680 relocated instead of evaluated. Discriminant of the corresponding
1681 record type is referenced rather than the type discriminant.
1682 (Create_Secondary_Stack_For_Task, Make_Task_Create_Call): Update
1683 Secondary_Stack_Size rep item checks to only look for the pragma rep.
1684 * sem_ch13.adb (Analyze_One_Aspect): Transform
1685 Aspect_Secondary_Stack_Size into a pragma instead of an attribute
1686 because the attribute does not have visibility on a task type's
1687 discriminants when the type's definition is expanded.
1688 (Analyze_Attribute_Definition_Clause): Remove handling of
1689 Attribute_Secondary_Stack_Size.
1690 * snames.adb-tmpl, snames.ads-tmpl: Remove
1691 Attribute_Secondary_Stack_Size, no longer used.
1692
1693 2018-01-11 Justin Squirek <squirek@adacore.com>
1694
1695 * sem_ch8.adb: Minor comment fix.
1696
1697 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1698
1699 * exp_ch4.adb (Process_Action): Do not abandon the inspection of an
1700 individual action because the action may denote a complex expression,
1701 such as a case statement, which in turn may contain additional
1702 transient objects.
1703
1704 2018-01-11 Ed Schonberg <schonberg@adacore.com>
1705
1706 * sem_aggr.adb (Resolve_Iterated_Component_Association): Perform
1707 analysis on a copy of the expression with a copy of the index variable,
1708 because full expansion will rewrite construct into a loop with the
1709 original loop variable.
1710 * exp_aggr.adb (Gen_Assign): Defer analysis and resolution if the
1711 expression is an iterated component association. Full analysis takes
1712 place when construct is rewritten as a loop.
1713 (In_Place_Assign_OK, Safe_Component): An iterated_component_association
1714 is not safe for in-place assignment.
1715 * sem_util.adb (Remove_Entity): Handle properly the case of an isolated
1716 entity with no homonym and no other entity in the scope.
1717
1718 2018-01-11 Justin Squirek <squirek@adacore.com>
1719
1720 * sem_prag.adb (Analyze_Pragma:Pragma_Loop_Variant): Modify error
1721 message to be printed on the pragma argument identifier.
1722
1723 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
1724
1725 * exp_util.adb (Build_Invariant_Procedure_Declaration): Set the last
1726 entity of the generated invariant procedure in order to construct a
1727 proper entity chain.
1728
1729 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
1730
1731 * sem_ch13.adb (Build_Predicate_Functions): Fix minor issues in
1732 comment.
1733
1734 2018-01-11 Arnaud Charlet <charlet@adacore.com>
1735
1736 * einfo.ads, einfo.adb (Activation_Record_Component,
1737 Set_Activation_Record_Component, Set_Is_Uplevel_Referenced_Entity):
1738 Allow E_Discriminant.
1739
1740 2018-01-10 Eric Botcazou <ebotcazou@adacore.com>
1741
1742 * gcc-interface/decl.c (gnat_to_gnu_component_type): Apply the check
1743 for atomic access once the component size is taken into account and
1744 also do it if the component type is Atomic or Volatile_Full_Access.
1745
1746 2018-01-04 Eric Botcazou <ebotcazou@adacore.com>
1747
1748 * gnatvsn.ads: Bump copyright year.
1749
1750 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
1751 Alan Hayward <alan.hayward@arm.com>
1752 David Sherwood <david.sherwood@arm.com>
1753
1754 * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_BITSIZE
1755 as polynomial.
1756
1757 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
1758 Alan Hayward <alan.hayward@arm.com>
1759 David Sherwood <david.sherwood@arm.com>
1760
1761 * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_PRECISION
1762 as polynomial.
1763
1764 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
1765 Alan Hayward <alan.hayward@arm.com>
1766 David Sherwood <david.sherwood@arm.com>
1767
1768 * gcc-interface/utils.c (gnat_types_compatible_p): Handle
1769 polynomial TYPE_VECTOR_SUBPARTS.
1770
1771 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
1772 Alan Hayward <alan.hayward@arm.com>
1773 David Sherwood <david.sherwood@arm.com>
1774
1775 * gcc-interface/misc.c (enumerate_modes): Handle polynomial
1776 GET_MODE_NUNITS.
1777
1778 2018-01-03 Jakub Jelinek <jakub@redhat.com>
1779
1780 Update copyright years.
1781
1782 * gnat_ugn.texi: Bump @copying's copyright year.
1783 * gnat_rm.texi: Likewise.
1784 \f
1785 Copyright (C) 2018 Free Software Foundation, Inc.
1786
1787 Copying and distribution of this file, with or without modification,
1788 are permitted in any medium without royalty provided the copyright
1789 notice and this notice are preserved.