5996edc98dca805c1422a196948704f2ab02f008
[gcc.git] / gcc / ada / ChangeLog
1 2018-09-26 Javier Miranda <miranda@adacore.com>
2
3 * sem_res.adb (Resolve_Actuals): If the formal is a class-wide
4 type conversion then do not skip resolving and expanding the
5 conversion; required to displace the pointer to the object and
6 reference the dispatch table associated with the target
7 interface type.
8
9 2018-09-26 Hristian Kirtchev <kirtchev@adacore.com>
10
11 * libgnat/g-dynhta.adb (Prepend_Or_Replace): Update the number
12 of key-value pairs in the hash table only when adding a brand
13 new pair.
14
15 2018-09-26 Sergey Rybin <rybin@adacore.com>
16
17 * doc/gnat_ugn/gnat_utility_programs.rst: Add note about
18 processing of aggregate projects in gnatmetric and gnatstub.
19
20 2018-09-26 Hristian Kirtchev <kirtchev@adacore.com>
21
22 * contracts.adb, exp_unst.adb, exp_util.adb, gnat1drv.adb,
23 opt.ads, par-prag.adb, sem_ch3.adb, sem_ch5.adb, sem_prag.adb,
24 sinfo.ads, snames.ads-tmpl: Minor reformatting.
25
26 2018-09-26 Hristian Kirtchev <kirtchev@adacore.com>
27
28 * gcc-interface/Make-lang.in: Add unit GNAT.Sets to the list of
29 front end sources.
30 * impunit.adb: Add unit GNAT.Sets to the list of predefined
31 units.
32 * Makefile.rtl: Add unit GNAT.Sets to the list of non-tasking
33 units.
34 * libgnat/g-sets.adb: New unit.
35 * libgnat/g-sets.ads: New unit.
36 * libgnat/g-dynhta.adb (Minimum_Size): Decrease to 8 in order to
37 allow for small sets. Update all occurrences of Table_Locked to
38 Iterated.
39 (Ensure_Unlocked): Query the number of iterators.
40 (Find_Node): Use the supplied equality.
41 (Is_Empty): New routine.
42 (Lock): Update the number of iterators.
43 (Prepend_Or_Replace): Use the supplied equality.
44 (Size): Update the return type.
45 (Unlock): Update the number of iterators.
46 * libgnat/g-dynhta.ads: Update all occurrences of Table_Locked
47 to Iterated. Rename formal subprogram Equivalent_Keys to "=".
48 (Bucket_Range_Type, Pair_Count_Type): Remove types.
49 (Not_Created, Table_Locked, Iterator_Exhausted): Remove
50 exceptions.
51 (Hash_Table): Update to store the number of iterators rather
52 than locks.
53 (Is_Empty): New routine.
54 (Size): Update the return type.
55 * libgnat/g-lists.adb: Update all occurrences of List_Locked to
56 Iterated.
57 (Ensure_Unlocked): Query the number of iterators.
58 (Length): Remove.
59 (Lock): Update the number of iterators.
60 (Size): New routine.
61 (Unlock): Update the number of iterators.
62 * libgnat/g-lists.ads: Update all occurrences of List_Locked to
63 Iterated.
64 (Element_Count_Type): Remove type.
65 (Not_Created, Table_Locked, Iterator_Exhausted): Remove
66 exceptions.
67 (Linked_List): Update type to store the number of iterators
68 rather than locks.
69 (Length): Remove.
70 (Size): New routine.
71 * libgnat/gnat.ads (Bucket_Range_Type): New type.
72 (Iterated, Iterator_Exhausted, and Not_Created): New exceptions.
73
74 2018-09-26 Javier Miranda <miranda@adacore.com>
75
76 * checks.adb (Install_Null_Excluding_Check): Do not add
77 null-excluding checks when the tree may not be fully decorated.
78 This patch cascade errors.
79
80 2018-09-26 Gary Dismukes <dismukes@adacore.com>
81
82 * sem_ch3.adb (Analyze_Object_Declaration): Remove test for
83 Comes_From_Source, which prevented implicit conversions from
84 being applied to anonymous access-to-subprogram formals in
85 constant declartions that arise from instance associations for
86 generic formal objects. Add RM and AARM references to comment.
87
88 2018-09-26 Olivier Hainque <hainque@adacore.com>
89
90 * opt.ads (OpenAcc_Enabled): New flag. False by default. True
91 when OpenACC pragmas are requested to be honored, when -fopenacc
92 is found on the command line.
93 * back_end.adb (Scan_Compiler_Arguments): Set OpenACC_Enabled if
94 -fopenacc is seen on the command line.
95 * sinfo.adb, sinfo.ads (Is_OpenAcc_Environment): New
96 flag/predicate on Loop statements which embed an Acc_Kernels,
97 Acc_Parallel or Acc_Data pragma.
98 (Is_OpenAcc_Loop): New flag/predicate on Loop statements which
99 embed an Acc_Loop pragma.
100 (Set_Is_OpenAcc_Environment, Set_Is_OpenAcc_Loop): Setters for
101 the new flags.
102 * par-prag.adb (Prag): Handle Acc_Data, Acc_Loop, Acc_Parallel
103 and Acc_Kernels pragmas. Nothing to do here, all handled by
104 sem_prag.
105 * sem_prag.adb (Acc_First, Acc_Next,
106 Validate_Acc_Condition_Clause, Validate_Acc_Data_Clause,
107 Validate_Acc_Int_Expr_Clause, Validate_Acc_Int_Expr_List_Clause,
108 Validate_Acc_Loop_Collapse, Validate_Acc_Loop_Gang,
109 Validate_Acc_Loop_Vector, Validate_Acc_Loop_Worker,
110 Validate_Acc_Name_Reduction, Validate_Acc_Size_Expressions): New
111 helper for Analyze_Pragma, to handle OpenACC pragmas.
112 (Analyze_Pragma): Handle Acc_Data, Acc_Loop, Acc_Parallel and
113 Acc_Kernels pragmas.
114 * sem_ch5.adb (Disable_Constant): Unset Is_True_Constant on
115 variable entity, action for ...
116 (Disable_Constants): Helper for Analyze_Loop_Statement, to ...
117 (Analyze_Loop_Statement): Disable True_Constant on variables
118 referenced within an OpenACC environment.
119 * snames.ads-tmpl: Declare Name_Ids for the OpenACC directives
120 and clauses we can handle. Remove an exraneous whitespace before
121 columns, preventing line length overflow in the generated spec
122 with Ids now reaching beyond 999.
123 * doc/gnat_rm/implementation_defined_pragmas.rst: Document
124 pragma Acc_Parallel, Acc_Loop, Acc_Kernels and Acc_Data.
125 * gnat_rm.texi: Regenerate.
126
127 2018-09-26 Ed Schonberg <schonberg@adacore.com>
128
129 * sem_ch3.adb (Is_Onown_Limited): A derived type whose parent P
130 is a derived limited record is not itself limited if P is a
131 derived limited interface.
132
133 2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
134
135 * sem_ch7.adb (Has_Referencer): Remove Top_Level parameter and
136 add In_Nested_Instance and
137 Has_Outer_Referencer_Of_Non_Subprograms parameters. Rename
138 Has_Non_Subprograms_Referencer variable into
139 Has_Referencer_Of_Non_Subprograms and initialize it with the new
140 third parameter. Adjust recursive calls and to the renaming.
141 Replace test on Top_Level with test on In_Nested_Instance to
142 decide whether to clear the Is_Public flag on entities.
143 (Hide_Public_Entities): Adjust call to Has_Referencer.
144
145 2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
146
147 * exp_disp.adb (Expand_Interface_Conversion): Use Present test.
148 (Expand_Interface_Thunk): Propagate debug info setting from
149 target.
150 * exp_util.ads (Find_Interface_Tag): Adjust comment.
151 * exp_util.adb (Find_Interface_Tag): Remove assertions of
152 success.
153 * sem_util.adb (Is_Variable_Size_Record): Only look at
154 components and robustify the implementation.
155 * fe.h (Find_Interface_Tag): Declare.
156 (Is_Variable_Size_Record): Likewise.
157
158 2018-09-26 Thomas Quinot <quinot@adacore.com>
159
160 * exp_util.adb (Make_CW_Equivalent_Type): Propagate bit order
161 and scalar storage order from root type to classwide equivalent
162 type, to prevent rejection of the equivalent type by the
163 freezing circuitry.
164
165 2018-09-26 Justin Squirek <squirek@adacore.com>
166
167 * sem_ch5.adb (Analyze_Iterator_Specification): Add conditional
168 to freeze called functions within iterator specifications during
169 full analysis.
170 (Preanalyze_Range): Minor typo fix.
171
172 2018-09-26 Ed Schonberg <schonberg@adacore.com>
173
174 * sem_ch6.adb (Analyze_Function_Return): If the return type has
175 a dynamic_predicate, apply a Predicate_Check to the expression,
176 given that it is implicitly converted to the return type.
177 Exclude case expressions from the check, because in this context
178 the expression is expanded into individual return statements.
179
180 2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
181
182 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Task_Type>: In
183 -gnatct mode, process the discriminants only for a definition.
184
185 2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
186
187 * repinfo.adb (List_Record_Layout): Be prepared for JSON output.
188 (List_Record_Info): Use the flat representation for record
189 subtypes in the JSON format.
190
191 2018-09-26 Justin Squirek <squirek@adacore.com>
192
193 * lib-writ.adb, lib-writ.ads (Write_With_Lines): Add
194 documentation and an extra conditional check for RCI units so
195 that generated ali files will list the spec only instead of a
196 body when a body is not found.
197
198 2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
199
200 * gcc-interface/gigi.h (error_gnat_node): Delete.
201 * gcc-interface/trans.c (error_gnat_node): Likewise.
202 (gigi): Replace it with Current_Error_Node.
203 (gnat_to_gnu): Likewise.
204 * gcc-interface/utils.c (rest_of_subprog_body_compilation):
205 Likewise.
206 * gcc-interface/misc.c (internal_error_function): Do not set it.
207
208 2018-09-26 Eric Botcazou <ebotcazou@adacore.com>
209
210 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Variable>: Adjust
211 code retrieving the address when a clause has already been
212 processed.
213 * gcc-interface/trans.c (gnat_to_gnu)
214 <N_Attribute_Definition_Clause>: For an object with a Freeze
215 node, build a meaningful expression.
216
217 2018-09-26 Arnaud Charlet <charlet@adacore.com>
218
219 * gnat1drv.adb (Adjust_Global_Switches): -gnatd_A sets
220 Opt.Disable_ALI_File.
221 * debug.adb: Update debug flags documentation.
222
223 2018-09-26 Ed Schonberg <schonberg@adacore.com>
224
225 * contracts.adb (Analyze_Entry_Or_Subprogram_Contract): The
226 analysis of preconditions specified by pragmas (rather than
227 aspects) is not delayed, and therefore expressions functions
228 that are completions do not need special handling during
229 expansion.
230
231 2018-09-26 Ed Schonberg <schonberg@adacore.com>
232
233 * exp_unst.adb: Fix handling of up level references for entries.
234
235 2018-09-26 Ed Schonberg <schonberg@adacore.com>
236
237 * contracts.adb (Expand_Subprogram_Contract,
238 Process_Preconditions_For): Apply Freeze_Expr_Types to the
239 expression for a precondition of an expression function that is
240 a completion, when the completion appears in the private part
241 and the declaration it completes is in the visible part of the
242 same package.
243 * freeze.adb (Freeze_Expr_Types): Do not establish the scope of
244 the operation if it is already installed, as will be the case
245 when called to analyze the contract oc the subprogram (which
246 happens when generating code inside the subprogram body).
247
248 2018-09-26 Maroua Maalej <maalej@adacore.com>
249
250 * sem_spark.adb (Check_Param_In, Setup_Parameter_Or_Global):
251 Change the operation associated to assigning to an IN parameter.
252 In SPARK, IN access-to-variable is an observe operation for a
253 function, and borrow operation for a procedure.
254
255 2018-09-26 Arnaud Charlet <charlet@adacore.com>
256
257 * vxlink.adb: Minor reformatting.
258
259 2018-09-26 Gary Dismukes <dismukes@adacore.com>
260
261 * exp_ch9.adb, layout.adb, sem_attr.adb, sem_res.adb: Fix
262 miscellaneous typos.
263
264 2018-09-26 Jerome Lambourg <lambourg@adacore.com>
265
266 * vxlink.adb: Kill a CodePeer warning.
267
268 2018-09-24 Eric Botcazou <ebotcazou@adacore.com>
269
270 PR ada/87396
271 * fe.h (Get_Attribute_Definition_Clause): Use 'unsigned char' instead
272 of 'char' as the type of the second parameter.
273
274 2018-09-13 Eric Botcazou <ebotcazou@adacore.com>
275
276 * Makefile.rtl (arm% linux-gnueabi%): Always set EH_MECHANISM to -arm.
277
278 2018-09-13 Eric Botcazou <ebotcazou@adacore.com>
279
280 PR ada/81103
281 * terminals.c: Do not include termio.h.
282
283 2018-08-27 Martin Liska <mliska@suse.cz>
284
285 * gcc-interface/decl.c (update_profile): Use new function
286 fndecl_built_in_p and remove check for FUNCTION_DECL if
287 possible.
288 * gcc-interface/gigi.h (call_is_atomic_load): Likewise.
289 * gcc-interface/utils.c (gnat_pushdecl): Likewise.
290
291 2018-08-23 Giuliano Belinassi <giuliano.belinassi@usp.br>
292
293 * exp_unst.ads: Fix typo 'exapnded' to 'expanded'.
294
295 2018-08-21 Hristian Kirtchev <kirtchev@adacore.com>
296
297 * checks.adb, contracts.adb, exp_aggr.adb, exp_attr.adb,
298 exp_ch6.adb, exp_ch7.adb, exp_ch9.adb, exp_unst.adb,
299 exp_util.adb, freeze.adb, gnatlink.adb, layout.adb,
300 lib-writ.adb, lib-xref-spark_specific.adb, sem_ch13.adb,
301 sem_ch3.adb, sem_ch6.adb, sem_res.adb, sem_util.adb, sinfo.ads,
302 sprint.adb: Minor reformatting.
303
304 2018-08-21 Jerome Lambourg <lambourg@adacore.com>
305
306 * vxlink-bind.adb, vxlink-bind.ads, vxlink-link.adb,
307 vxlink-link.ads, vxlink-main.adb, vxlink.adb, vxlink.ads: Add a
308 new tool vxlink to handle VxWorks constructors in DKMs.
309 * gcc-interface/Makefile.in: add rules to build vxlink
310
311 2018-08-21 Ed Schonberg <schonberg@adacore.com>
312
313 * sem_ch6.adb (Analyze_Subprogram_Body_Helper, Mask_Type):
314 Refine the handling of freezing types for expression functions
315 that are not completions, when analyzing the generated body for
316 the function: the body is inserted at the end of the enclosing
317 declarative part, and its analysis may freeze types declared in
318 the same scope that have not been frozen yet.
319
320 2018-08-21 Ed Schonberg <schonberg@adacore.com>
321
322 * sem_ch6.adb: Remove Freeze_Expr_Types.
323 * freeze.ads, freeze.adb (Freeze_Expr_Types): Moved from
324 sem_ch6.adb, and extended to handle other expressions that may
325 contain unfrozen types that must be frozen in their proper
326 scopes.
327 * contracts.adb (Analyze_Entry_Or_Subprogram_Contract): If the
328 contract is for the generated body of an expression function
329 that is a completion, traverse the expressions for pre- and
330 postconditions to freeze all types before adding the contract
331 code within the subprogram body.
332
333 2018-08-21 Hristian Kirtchev <kirtchev@adacore.com>
334
335 * sem_ch10.adb: Remove the with and use clause for unit Ghost.
336 (Analyze_With_Clause): Do not mark a with clause which mentions
337 an ignored Ghost code for elimination.
338
339 2018-08-21 Javier Miranda <miranda@adacore.com>
340
341 * lib-writ.adb (Write_Unit_Information): Handle pragmas removed
342 by the expander.
343
344 2018-08-21 Ed Schonberg <schonberg@adacore.com>
345
346 * sem_ch6.adb (Check_Synchronized_Overriding): The conformance
347 between an overriding protected operation and the overridden
348 abstract progenitor operation requires subtype conformance;
349 requiring equality of return types in the case of a function is
350 too restrictive and leads to spurious errors when the return
351 type is a generic actual.
352
353 2018-08-21 Ed Schonberg <schonberg@adacore.com>
354
355 * exp_ch9.adb (Expand_N_Timed_Entry_Call,
356 Expand_Conditional_Entry_Call): Use Reset_Scopes_Of to set
357 properly the scope of all entities created in blocks generated
358 by the expansion of these constructs.
359
360 2018-08-21 Ed Schonberg <schonberg@adacore.com>
361
362 * sem_ch13.adb (Build_Predicate_Functioss): Apply
363 Reset_Quantified_Variables_Scope after predicate function has
364 been analyzed, so that the scope can be reset on the generated
365 loop statements that have replaced the quantified expressions.
366
367 2018-08-21 Bob Duff <duff@adacore.com>
368
369 * einfo.ads, einfo.adb (Private_View, Shadow_Entities): Remove
370 obsolete code.
371
372 2018-08-21 Maroua Maalej <maalej@adacore.com>
373
374 * sem_spark.adb (Check_Call_Statement): Check global and formal
375 parameter permissions at call sites.
376 (Check_Callable_Body): Assume permissions on globals and
377 parameters depending on their modes then analyse the body
378 operations.
379 (Check_Declaration): Consider both deep (including elementary
380 access) object declarations and normal variables. First check
381 whether the deep object is of Ownership Aspec True or not, then,
382 depending on its initialization, assign the appropriate state.
383 Check related to non access type variables deal with
384 initialization value permissions.
385 (Check_Expression): Check nodes used in the expression being
386 analyzed.
387 (Check_Globals): Call by Check_Call_Statement to perform the
388 check on globals.
389 (Check_List): Call Check_Node on each element of the list.
390 (Check_Loop_Statement): Check the Iteration_Scheme and loop
391 statements.
392 (Check_Node): Main traversal procedure to check safe pointer usage.
393 (Check_Package_Body): Check subprogram's body.
394 (Check_Param_In): Take a formal and an actual parameter and
395 Check the permission of every in-mode parameter.
396 (Check_Param_Out): Take a formal and an actual parameter and
397 check the state of out-mode and in out-mode parameters.
398 (Check_Statement): Check statements other than procedure call.
399 (Get_Perm, Get_Perm_Or_Tree, Get_Perm_Tree): Find out the state
400 related to the given name.
401 (Is_Deep): Return True if an object is of access type or has
402 subfields of access type.
403 (Perm_Error, Perm_Error_Subprogram_End): Add an error message
404 whenever the found state on the given name is different from the
405 one expected (in the statement being analyzed).
406 (Process_Path): Given an operation and a current state, call
407 Perm_Error if there is any mismatch.
408 (Return_Declarations, Return_Globals, Return_The_Global): Check
409 the state of a given name at the end of the subprogram. These
410 procedures may change depending on how we shall finally deal
411 with globals and the rhs state in a move operation.
412 (Set_Perm_Extensions, Set_Perm_Prefixes_Borrow,
413 Set_Perm_Prefixes, Setup_Globals, Setup_Parameter_Or_Global,
414 Setup_Parameters): Set up the new states to the given node and
415 up and down the tree after an operation.
416 (Has_Ownership_Aspect_True): This function may disappear later
417 when the Ownership Aspect will be implemented in the FE.
418
419 2018-08-21 Ed Schonberg <schonberg@adacore.com>
420
421 * sem_res.adb (Resolve_Call): Resolve correctly a parameterless
422 call that returns an access type whose designated type is the
423 component type of an array, when the function has no defaulted
424 parameters.
425
426 2018-08-21 Yannick Moy <moy@adacore.com>
427
428 * doc/gnat_ugn/building_executable_programs_with_gnat.rst:
429 Document entries of the target parametrization file.
430 * gnat_ugn.texi: Regenerate.
431
432 2018-08-21 Ed Schonberg <schonberg@adacore.com>
433
434 * sem_attr.adb: Set scope of elaboration flag for 'Access.
435
436 2018-08-21 Ed Schonberg <schonberg@adacore.com>
437
438 * sprint.adb: Add guard on printing aspects.
439
440 2018-08-21 Javier Miranda <miranda@adacore.com>
441
442 * exp_cg.adb (Generate_CG_Output): Handle calls removed by the
443 expander.
444
445 2018-08-21 Ed Schonberg <schonberg@adacore.com>
446
447 * layout.adb: Do not set size of access subprogram if unnesting.
448
449 2018-08-21 Ed Schonberg <schonberg@adacore.com>
450
451 * freeze.adb: Remove warnings for access to subprograms when
452 unnesting is active.
453
454 2018-08-21 Ed Schonberg <schonberg@adacore.com>
455
456 * exp_aggr.adb (Expand_Array_Aggregate): If the component type
457 is limited, the array must be constructed in place, so set flag
458 In_Place_Assign_OK_For_Declaration accordingly. This prevents
459 improper copying of an array of tasks during initialization.
460
461 2018-08-21 Eric Botcazou <ebotcazou@adacore.com>
462
463 * gcc-interface/trans.c (Call_to_gnu): Always suppress an
464 unchecked conversion around the actual for an In parameter
465 passed by copy.
466
467 2018-08-21 Eric Botcazou <ebotcazou@adacore.com>
468
469 * exp_util.adb (Is_Possibly_Unaligned_Object): For the case of a
470 selected component inherited in a record extension and subject
471 to a representation clause, retrieve the position and size from
472 the original record component.
473
474 2018-08-21 Ed Schonberg <schonberg@adacore.com>
475
476 * sem_util.ads, sem_util.adb (New_External_Entity): Type of
477 Suffix_Index must be Int, not Nat, so that a negative value can
478 be used to generate a unique name for an external object, as
479 specified in Tbuild.New_External_Name.
480 (Scope_Within): Handle private type whose completion is a
481 synchronized type (For unnesting).
482 * itypes.ads, itypes.adb (Create_Itype): Ditto
483 * sem_ch3.adb (Constrain_Corresponding_Record): Generate a
484 unique name for the created subtype, because there may be
485 several discriminated tasks present in the same scope, and each
486 needs its distinct corresponding record subtype.
487
488 2018-08-21 Yannick Moy <moy@adacore.com>
489
490 * doc/gnat_ugn/gnat_and_program_execution.rst: Update
491 documentation of dimensionality analysis.
492 * gnat_ugn.texi: Regenerate.
493 * Makefile.rtl, impunit.adb: Consider the new units.
494 * libgnat/s-dfmkio.ads, libgnat/s-dfmopr.ads,
495 libgnat/s-diflmk.ads: New units based on Float.
496 * libgnat/s-dilomk.ads, libgnat/s-dlmkio.ads,
497 libgnat/s-dlmopr.ads: New units based on Long_Float.
498 * libgnat/s-dmotpr.ads: Rename to libgnat/s-dgmgop.ads and turn
499 into an instance of
500 System.Dim.Generic_Mks.Generic_Other_Prefixes.
501 * libgnat/s-dimmks.ads: Rename to libgnat/s-digemk.ads and turn
502 into an instance of System.Dim.Generic_Mks.
503
504 2018-08-21 Hristian Kirtchev <kirtchev@adacore.com>
505
506 * impunit.adb: Add g-lists to the set of non-implementation
507 units.
508 * libgnat/g-lists.adb, libgnat/g-lists.ads: New unit.
509 * Makefile.rtl: Add g-lists to the set of non-tasking units.
510 * gcc-interface/Make-lang.in: Add g-lists to the set of files
511 used by gnat1.
512
513 2018-08-21 Ed Schonberg <schonberg@adacore.com>
514
515 * exp_ch9.adb (Reset_Scopes): Do not recurse into type
516 declarations when resetting the scope of entities declared the
517 procedures generated for entry bodies and accept alternatives.
518 Use the entity of the procedure declaration, not its body, as
519 the new scope.
520
521 2018-08-21 Hristian Kirtchev <kirtchev@adacore.com>
522
523 * einfo.adb (Elaboration_Entity): Include entries and entry
524 families in the set of legal entities.
525 (Elaboration_Entity_Required): Include entries and entry
526 families in the set of legal entities.
527 (Set_Elaboration_Entity): Include entries and entry families in
528 the set of legal entities.
529 (Set_Elaboration_Entity_Required): Include entries and entry
530 families in the set of legal entities.
531 (Write_Field13_Name): Update the output of attribute
532 Elaboration_Entity.
533 * einfo.ads: Attributes Elaboration_Entity and
534 Elaboration_Entity_Required now apply to entries and entry
535 families.
536
537 2018-08-21 Arnaud Charlet <charlet@adacore.com>
538
539 * set_targ.adb: Mark some CodePeer message as Intentional.
540
541 2018-08-21 Ed Schonberg <schonberg@adacore.com>
542
543 * sem_res.adb (Resolve_Call): Force the freezing of an
544 expression function that is called to provide a default value
545 for a defaulted discriminant in an object initialization.
546
547 2018-08-21 Hristian Kirtchev <kirtchev@adacore.com>
548
549 * libgnat/g-dynhta.adb, libgnat/g-dynhta.ads: New package
550 Dynamic_HTable.
551
552 2018-08-21 Javier Miranda <miranda@adacore.com>
553
554 * checks.ads (Determine_Range): Adding documentation.
555 * checks.adb (Determine_Range): Don't deal with enumerated types
556 with non-standard representation.
557 (Convert_And_Check_Range): For conversion of enumeration types
558 with non standard representation to an integer type perform a
559 direct conversion to the target integer type.
560
561 2018-08-21 Piotr Trojanek <trojanek@adacore.com>
562
563 * lib-xref.ads, lib-xref-spark_specific.adb
564 (Enclosing_Subprogram_Or_Library_Package): Now roughtly works
565 for pragmas that come from aspect specifications.
566
567 2018-08-21 Pierre-Marie de Rodat <derodat@adacore.com>
568
569 * sa_messages.ads, sa_messages.adb: New source files.
570
571 2018-08-03 Pierre-Marie de Rodat <derodat@adacore.com>
572
573 Reverts
574 2018-07-06 Jim Wilson <jimw@sifive.com>
575
576 * Make-generated.in (treeprs.ads): Use $(GNATMAKE) instead of gnatmake.
577 (einfo.h, sinfo.h, stamp-snames, stamp-nmake): Likewise.
578 * gcc-interface/Makefile.in (xoscons): Likewise.
579
580 2018-07-31 Alexandre Oliva <oliva@adacore.com>
581 Olivier Hainque <hainque@adacore.com>
582
583 * gcc-interface/trans.c: Include debug.h.
584 (file_map): New static variable.
585 (gigi): Set it. Create decl_to_instance_map when needed.
586 (Subprogram_Body_to_gnu): Pass gnu_subprog_decl to...
587 (Sloc_to_locus): ... this. Add decl parm, map it to instance.
588 * gcc-interface/gigi.h (Sloc_to_locus): Adjust declaration.
589
590 2018-07-31 Arnaud Charlet <charlet@adacore.com>
591
592 * clean.adb, gnatchop.adb, gnatfind.adb, gnatls.adb,
593 gnatmake.ads, gnatxref.adb, make.adb, make.ads, make_util.ads,
594 sfn_scan.adb, vxaddr2line.adb, xeinfo.adb, xoscons.adb,
595 xr_tabls.adb, xref_lib.adb: Address CodePeer messages.
596
597 2018-07-31 Arnaud Charlet <charlet@adacore.com>
598
599 * gnatlink.adb: Fix potential Constraint_Error if
600 Library_Version is too long.
601
602 2018-07-31 Arnaud Charlet <charlet@adacore.com>
603
604 * sem_elab.adb: Remove duplicate condition detected by CodePeer.
605
606 2018-07-31 Ed Schonberg <schonberg@adacore.com>
607
608 * exp_unst.adb (Subp_Index): In the case of a protected
609 operation, the relevant entry is the generated
610 protected_subprogram_body into which the original body is
611 rewritten. Assorted cleanup and optimizations.
612
613 2018-07-31 Ed Schonberg <schonberg@adacore.com>
614
615 * exp_attr.adb (Expand_Attribute, case Fixed_Value): Set the
616 base type of the result to ensure that proper overflow and range
617 checks are generated. If the target is a fixed-point tyoe,
618 generate the required overflow and range checks explicitly,
619 rather than relying on Apply_Type_Conversion_Checks, which might
620 simply set the Do_Range_Check flag and rely on the backend to
621 add the check.
622
623 2018-07-31 Hristian Kirtchev <kirtchev@adacore.com>
624
625 * sem_res.adb (Resolve_Call): Establish a transient scope to
626 manage the secondary stack when the designated type of an
627 access-to-subprogram requires it.
628
629 2018-07-31 Ed Schonberg <schonberg@adacore.com>
630
631 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): To find local
632 subprograms in the elaboration code for a package body, recurse
633 through nested statement sequences because a compiler-generated
634 procedure may appear within a condition statement.
635
636 2018-07-31 Ed Schonberg <schonberg@adacore.com>
637
638 * exp_ch6.adb (Expand_Protected_Subprogram_Call): Handle
639 properly a protected call that includes a default parameter that
640 is a call to a protected function of the same type.
641
642 2018-07-31 Justin Squirek <squirek@adacore.com>
643
644 * lib-writ.adb (Write_With_Lines): Modfiy the generation of
645 dependencies within ali files so that source unit bodies are
646 properly listed even if said bodies are missing. Perform legacy
647 behavior in GNATprove mode.
648 * lib-writ.ads: Modify documentation to reflect current behavior.
649
650 2018-07-31 Eric Botcazou <ebotcazou@adacore.com>
651
652 * libgnarl/s-osinte__solaris.ads (upad64_t): New private type.
653 (mutex_t): Use it for 'lock' and 'data' components.
654 (cond_t): Likewise for 'data' and use single 'flags' component.
655
656 2018-07-31 Justin Squirek <squirek@adacore.com>
657
658 * exp_ch5.adb (Make_Field_Assign): Force temporarily generated
659 objects for assignment of overlaid user objects to be renamings
660 instead of constant declarations.
661
662 2018-07-31 Hristian Kirtchev <kirtchev@adacore.com>
663
664 * exp_ch9.adb (Analyze_Pragmas): New routine.
665 (Build_Private_Protected_Declaration): Code clean up. Relocate
666 relevant aspects and pragmas from the stand-alone body to the
667 newly created spec. Explicitly analyze any pragmas that have
668 been either relocated or produced by the analysis of the
669 aspects.
670 (Move_Pragmas): New routine.
671 * sem_prag.adb (Find_Related_Declaration_Or_Body): Recognize the
672 case where a pragma applies to the internally created spec for a
673 stand-along subprogram body declared in a protected body.
674
675 2018-07-31 Gary Dismukes <dismukes@adacore.com>
676
677 * exp_ch6.adb (Expand_N_Extended_Return_Statement): Replace
678 calls to Current_Scope in three assertions with calls to
679 Current_Subprogram.
680
681 2018-07-31 Ed Schonberg <schonberg@adacore.com>
682
683 * sem_eval.adb (Check_Non_Static_Context): Do not warn on an
684 integer literal greater than the upper bound of
685 Universal_Integer'Last when expansion is disabled, to avoid a
686 spurious warning over ranges involving 64-bit modular types.
687
688 2018-07-31 Arnaud Charlet <charlet@adacore.com>
689
690 * einfo.adb (Write_Entity_Flags): Also print
691 Is_Activation_Record flag.
692
693 2018-07-31 Piotr Trojanek <trojanek@adacore.com>
694
695 * exp_aggr.adb, exp_ch4.adb, exp_ch6.adb, lib-xref.adb,
696 repinfo.adb, sem_ch9.adb: Minor replace Ekind membership tests
697 with a wrapper routine.
698
699 2018-07-31 Piotr Trojanek <trojanek@adacore.com>
700
701 * ali.adb (Known_ALI_Lines): Remove 'F' as a prefix for lines
702 related to the FORMAL analysis done by GNATprove.
703
704 2018-07-31 Javier Miranda <miranda@adacore.com>
705
706 * sem.ads (Inside_Preanalysis_Without_Freezing): New global
707 counter.
708 * sem.adb (Semantics): This subprogram has now the
709 responsibility of resetting the counter before analyzing a unit,
710 and restoring its previous value before returning.
711 * freeze.adb (Freeze_Entity): Do not freeze if we are
712 preanalyzing without freezing.
713 * sem_res.adb (Preanalyze_And_Resolve): Set & restore
714 In_Preanalysis_Without_Freezing.
715
716 2018-07-31 Ed Schonberg <schonberg@adacore.com>
717
718 * sem_ch4.adb (Traverse_Homonyms): Consider generic actuals that
719 may rename a matching class-wide operation only if the renaming
720 declaration for that actual is in an enclosing scope (i.e.
721 within the corrresponding instance).
722
723 2018-07-31 Hristian Kirtchev <kirtchev@adacore.com>
724
725 * checks.adb, contracts.adb, exp_aggr.adb, exp_ch5.adb,
726 exp_disp.adb, make.adb, sem_ch4.adb, sem_eval.adb, sem_res.adb,
727 usage.adb: Minor reformatting.
728
729 2018-07-31 Bob Duff <duff@adacore.com>
730
731 * sem_res.adb (Resolve_Allocator): Do not complain about the
732 implicit allocator that occurs in the expansion of a return
733 statement for a build-in-place function.
734
735 2018-07-20 Martin Sebor <msebor@redhat.com>
736
737 PR middle-end/82063
738 * gcc-interface/misc.c (gnat_handle_option): Change function argument
739 to HOST_WIDE_INT.
740
741 2018-07-17 Eric Botcazou <ebotcazou@adacore.com>
742
743 * gcc-interface/decl.c (choices_to_gnu): Rename parameters. Deal with
744 an operand of Character type. Factor out range generation to the end.
745 Check that the bounds are literals and convert them to the type of the
746 operand before building the ranges.
747 * gcc-interface/utils.c (make_dummy_type): Minor tweak.
748 (make_packable_type): Propagate TYPE_DEBUG_TYPE.
749 (maybe_pad_type): Likewise.
750
751 2018-07-17 Ed Schonberg <schonberg@adacore.com>
752
753 * sem_ch4.adb (Try_Object_Operation): Handle properly a prefixed call
754 in an instance, when the generic parameters include an interface type
755 and a abstract operation of that type, and the actuals in the instance
756 include an interface type and a corresponding abstract operation of it,
757 with a different name than the corresponding generic subprogram
758 parameter.
759
760 2018-07-17 Arnaud Charlet <charlet@adacore.com>
761
762 * sem_eval.adb (Rewrite_In_Raise_CE): Keep the original reason in more
763 cases.
764
765 2018-07-17 Arnaud Charlet <charlet@adacore.com>
766
767 * checks.adb (Apply_Division_Check): Add provision for floating-point
768 checks.
769
770 2018-07-17 Ed Schonberg <schonberg@adacore.com>
771
772 * exp_aggr.adb (Component_OK_For_Backend): If an array component of the
773 enclosing record has a bound that is out of range (and that has been
774 rewritten as a raise statement) the aggregate is not OK for any back
775 end, and should be expanded into individual assignments.
776
777 2018-07-17 Piotr Trojanek <trojanek@adacore.com>
778
779 * atree.adb (Relocate_Node): Simplify with Is_Rewrite_Substitution.
780
781 2018-07-17 Piotr Trojanek <trojanek@adacore.com>
782
783 * sem_util.ads (Denotes_Same_Object): Likewise.
784 * sem_warn.adb (Warn_On_Overlapping_Actuals): Fix RM rule references.
785
786 2018-07-17 Eric Botcazou <ebotcazou@adacore.com>
787
788 * exp_disp.adb (Make_Tags): When the type has user-defined primitives,
789 build the access type that is later used by Build_Get_Prim_Op_Address
790 as pointing to a subtype of Ada.Tags.Address_Array.
791
792 2018-07-17 Patrick Bernardi <bernardi@adacore.com>
793
794 * libgnat/s-memory__mingw.adb: Remove.
795 * Makefile.rtl: Remove s-memory.adb target pair from the Cygwin/Mingw32
796 section.
797
798 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
799
800 * frontend.adb (Frontend): The removal of ignored Ghost code must be
801 the last semantic operation performed on the tree.
802
803 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
804
805 * frontend.adb (Frontend): Update the call to Register_Config_Switches.
806 * inline.ads: Add new component Config_Switches to record
807 Pending_Body_Info which captures the configuration state of the pending
808 body. Remove components Version, Version_Pragma, SPARK_Mode, and
809 SPARK_Mode_Pragma from record Pending_Body_Info because they are
810 already captured in component Config_Switches.
811 * opt.adb (Register_Opt_Config_Switches): Rename to
812 Register_Config_Switches.
813 (Restore_Opt_Config_Switches): Rename to Restore_Config_Switches.
814 (Save_Opt_Config_Switches): Rename to Save_Config_Switches. This
815 routine is now a function, and returns the saved configuration state as
816 an aggregate to avoid missing an attribute.
817 (Set_Opt_Config_Switches): Rename to Set_Config_Switches.
818 * opt.ads (Register_Opt_Config_Switches): Rename to
819 Register_Config_Switches.
820 (Restore_Opt_Config_Switches): Rename to Restore_Config_Switches.
821 (Save_Opt_Config_Switches): Rename to Save_Config_Switches. This
822 routine is now a function.
823 (Set_Opt_Config_Switches): Rename to Set_Config_Switches.
824 * par.adb (Par): Update the calls to configuration switch-related
825 subprograms.
826 * sem.adb (Semantics): Update the calls to configuration switch-related
827 subprograms.
828 * sem_ch10.adb (Analyze_Package_Body_Stub): Update the calls to
829 configuration switch-related subprograms.
830 (Analyze_Protected_Body_Stub): Update the calls to configuration
831 switch-related subprograms.
832 (Analyze_Subprogram_Body_Stub): Update calls to configuration
833 switch-related subprograms.
834 * sem_ch12.adb (Add_Pending_Instantiation): Update the capture of
835 pending instantiation attributes.
836 (Inline_Instance_Body): Update the capture of pending instantiation
837 attributes. It is no longer needed to explicitly manipulate the SPARK
838 mode.
839 (Instantiate_Package_Body): Update the restoration of the context
840 attributes.
841 (Instantiate_Subprogram_Body): Update the restoration of context
842 attributes.
843 (Load_Parent_Of_Generic): Update the capture of pending instantiation
844 attributes.
845 (Set_Instance_Env): Update the way relevant configuration attributes
846 are saved and restored.
847
848 2018-07-17 Eric Botcazou <ebotcazou@adacore.com>
849
850 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Variable>: Deal with
851 more rvalues in the expression of a renaming.
852
853 2018-07-17 Eric Botcazou <ebotcazou@adacore.com>
854
855 * gcc-interface/ada-tree.h (TYPE_RETURN_BY_DIRECT_REF_P): Define for
856 METHOD_TYPE too.
857 (TYPE_RETURN_UNCONSTRAINED_P): Likewise.
858 (TYPE_CI_CO_LIST): Likewise.
859 * gcc-interface/gigi.h (is_cplusplus_method): Delete.
860 (fntype_same_flags_p): Adjust comment.
861 * gcc-interface/decl.c (Has_Thiscall_Convention): Delete.
862 (gnat_to_gnu_entity) <E_Subprogram_Type>: Do not set the "thiscall"
863 attribute directly.
864 (is_cplusplus_method): Make static and adjust head comment.
865 (gnat_to_gnu_param): Return a pointer for the "this" parameter of
866 C++ constructors.
867 (gnat_to_gnu_subprog_type): Turn imported C++ constructors into their
868 callable form. Generate a METHOD_TYPE node for imported C++ methods.
869 Set param_list at the very end of the processing.
870 (substitute_in_type) <METHOD_TYPE>: New case.
871 * gcc-interface/misc.c (gnat_print_type) <METHOD_TYPE>: Likewise.
872 (gnat_type_hash_eq): Accept METHOD_TYPE.
873 * gcc-interface/trans.c (Identifier_to_gnu): Deal with METHOD_TYPE.
874 (Attribute_to_gnu): Likewise.
875 (Call_to_gnu): Likewise.
876 (process_freeze_entity): Likewise.
877 * gcc-interface/utils.c (create_subprog_decl): Adjust head comment.
878 (fntype_same_flags_p): Likewise.
879
880 2018-07-17 Piotr Trojanek <trojanek@adacore.com>
881
882 * inline.adb (Expand_Inlined_Call): Remove extra parentheses.
883
884 2018-07-17 Eric Botcazou <ebotcazou@adacore.com>
885
886 * exp_disp.adb (Gen_Parameters_Profile): Make the _Init parameter an
887 In/Out parameter.
888 (Set_CPP_Constructors): Adjust comment accordingly.
889
890 2018-07-17 Bob Duff <duff@adacore.com>
891
892 * exp_disp.adb (Build_Class_Wide_Check): Return early if the
893 precondition is supposed to be ignored.
894
895 2018-07-17 Ed Schonberg <schonberg@adacore.com>
896
897 * sem_ch6.adb (Check_Untagged_Equality): Extend check to operations
898 declared in the same scope as the operand type, when that scope is a
899 procedure.
900
901 2018-07-17 Ed Schonberg <schonberg@adacore.com>
902
903 * exp_unst.adb (Unnest_Subprograms): Do nothing if the expander is not
904 active. Don't use Get_Actual_Subtype for record subtypes. Ignore
905 rewritten identifiers and uplevel references to bounds of types that
906 come from the original type reference.
907
908 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
909
910 * exp_ch13.adb, exp_ch7.adb, exp_unst.adb, freeze.adb,
911 libgnat/s-os_lib.adb, sem_ch3.adb, sem_ch3.ads, sem_ch5.adb,
912 sem_eval.adb, sem_res.adb, sem_util.adb: Minor reformatting.
913
914 2018-07-17 Javier Miranda <miranda@adacore.com>
915
916 * exp_ch13.adb (Expand_N_Freeze_Entity): Handle subtype declared for an
917 iterator.
918 * freeze.adb (Freeze_Expression): Handle freeze of an entity defined
919 outside of a subprogram body. This case was previously handled during
920 preanalysis; the frozen entities were remembered and left pending until
921 we continued freezeing entities outside of the subprogram. Now, when
922 climbing the parents chain to locate the correct placement for the
923 freezeing node, we check if the entity can be frozen and only when no
924 enclosing node is marked as Must_Not_Freeze the entity is frozen.
925 * sem_ch3.ads (Preanalyze_Default_Expression): Declaration moved to the
926 package body.
927 * sem_ch3.adb (Preanalyze_Default_Expression): Code adjusted to invoke
928 the new subprogram Preanalyze_With_Freezing_And_Resolve.
929 * sem_ch6.adb (Preanalyze_Formal_Expression): New subprogram.
930 (Analyze_Expression_Function, Process_Formals): Invoke
931 Preanalyze_Formal_Expression instead of Preanalyze_Spec_Expression
932 since the analysis of the formals may freeze entities.
933 (Analyze_Subprogram_Body_Helper): Skip building the body of the
934 class-wide clone for eliminated subprograms.
935 * sem_res.ads, sem_res.adb (Preanalyze_And_Resolve): New subprogram.
936 Its code is basically the previous version of this routine but extended
937 with an additional parameter which is used to specify if during
938 preanalysis we are allowed to freeze entities. If the new parameter is
939 True then the subtree root node is marked as Must_Not_Freeze and no
940 entities are frozen during preanalysis.
941 (Preanalyze_And_Resolve): Invokes the internal version of
942 Preanalyze_And_Resolve without entity freezing.
943 (Preanalyze_With_Freezing_And_Resolve): Invokes the internal version of
944 Prenalyze_And_Resolve with freezing enabled.
945
946 2018-07-17 Piotr Trojanek <trojanek@adacore.com>
947
948 * einfo.ads, libgnat/g-comlin.ads: Minor change "ie" to "i.e." in docs
949 and comments.
950
951 2018-07-17 Justin Squirek <squirek@adacore.com>
952
953 * libgnat/s-os_lib.adb (Argument_String_To_List): Fix trimming of
954 whitespace.
955
956 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
957
958 * sem_prag.adb (Has_Visible_State): Do not consider constants as
959 visible state because it is not possible to determine whether a
960 constant depends on variable input.
961 (Propagate_Part_Of): Add comment clarifying the behavior with respect
962 to constant.
963
964 2018-07-17 Yannick Moy <moy@adacore.com>
965
966 * gnat1drv.adb (Gnat1drv): Do not issue warning about exception not
967 being propagated in GNATprove mode.
968
969 2018-07-17 Dmitriy Anisimkov <anisimko@adacore.com>
970
971 * libgnat/g-socket.adb, libgnat/g-socket.ads: Reorganize and make
972 public components of Inet_Addr_Type. Introduce public binary
973 operations.
974
975 2018-07-17 Javier Miranda <miranda@adacore.com>
976
977 * exp_ch7.adb (Make_Transient_Block): When determining whether an
978 enclosing scope already handles the secondary stack, take into account
979 transient blocks nested in a block that do not manage the secondary
980 stack and are located within a loop.
981
982 2018-07-17 Ed Schonberg <schonberg@adacore.com>
983
984 * sem_util.adb (Enclosing_Subprogram): Protected entries and task
985 entries must be treated separately: task entries are within the
986 enclosing subprogram of the task type, while protected entries are
987 transformed into the corresponding Protected_Body_Subprogram, which is
988 the enclosing_subprogram of any subprogram declared within the entry
989 body.
990
991 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
992
993 * doc/gnat_ugn/building_executable_programs_with_gnat.rst: Add missing
994 sections on -gnatH and -gnatJ compiler switches.
995 * gnat_ugn.texi: Regenerate.
996
997 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
998
999 * alloc.ads: Update the allocation metrics of the ignored Ghost nodes
1000 table.
1001 * atree.adb: Add a soft link for a procedure which is invoked whenever
1002 an ignored Ghost node or entity is created.
1003 (Change_Node): Preserve relevant attributes which come from the Flags
1004 table.
1005 (Mark_New_Ghost_Node): Record a newly created ignored Ghost node or
1006 entity.
1007 (Rewrite): Preserve relevant attributes which come from the Flags
1008 table.
1009 (Set_Ignored_Ghost_Recording_Proc): New routine.
1010 * atree.ads: Define an access-to-suprogram type for a soft link which
1011 records a newly created ignored Ghost node or entity.
1012 (Set_Ignored_Ghost_Recording_Proc): New routine.
1013 * ghost.adb: Remove with and use clause for Lib. Remove table
1014 Ignored_Ghost_Units. Add new table Ignored_Ghost_Nodes.
1015 (Add_Ignored_Ghost_Unit): Removed.
1016 (Initialize): Initialize the table which stores ignored Ghost nodes.
1017 Set the soft link which allows Atree.Mark_New_Ghost_Node to record an
1018 ignored Ghost node.
1019 (Is_Ignored_Ghost_Unit): Use the ultimate original node when checking
1020 an eliminated ignored Ghost unit.
1021 (Lock): Release and lock the table which stores ignored Ghost nodes.
1022 (Mark_And_Set_Ghost_Assignment): Record rather than propagate ignored
1023 Ghost nodes.
1024 (Mark_And_Set_Ghost_Procedure_Call): Record rather than propagate
1025 ignored Ghost nodes.
1026 (Mark_Ghost_Clause): Record rather than propagate ignored Ghost nodes.
1027 (Mark_Ghost_Declaration_Or_Body): Record rather than propagate ignored
1028 Ghost nodes.
1029 (Mark_Ghost_Pragma): Record rather than propagate ignored Ghost nodes.
1030 (Propagate_Ignored_Ghost_Code): Removed.
1031 (Record_Ignored_Ghost_Node): New routine.
1032 (Remove_Ignored_Ghost_Code): Reimplemented.
1033 (Remove_Ignored_Ghost_Node): New routine.
1034 (Ultimate_Original_Node): New routine.
1035 * ghost.ads (Check_Ghost_Completion): Removed.
1036 * sem_ch8.adb (Analyze_Use_Package): Remove obsolete code. Mark a use
1037 package clause as ignored Ghost if applicable.
1038 * sem_util.adb (Is_Body_Or_Package_Declaration): Reimplemented.
1039
1040 2018-07-17 Javier Miranda <miranda@adacore.com>
1041
1042 * sem_ch5.adb (Has_Call_Using_Secondary_Stack): Moved to library level
1043 to reuse it.
1044 (Analyze_Loop_Statement): Wrap the loop in a block when the evaluation
1045 of the loop iterator relies on the secondary stack.
1046
1047 2018-07-17 Piotr Trojanek <trojanek@adacore.com>
1048
1049 * sem_util.adb (Next_Actual): If the parent is a N_Null_Statement,
1050 which happens for inlined calls, then fetch the next actual from the
1051 original AST.
1052
1053 2018-07-17 Ed Schonberg <schonberg@adacore.com>
1054
1055 * einfo.ads: Update documentation for Scalar_Range.
1056
1057 2018-07-17 Piotr Trojanek <trojanek@adacore.com>
1058
1059 * lib-xref-spark_specific.adb (Create_Heap): Attach the HEAP entity to
1060 the Standard package.
1061
1062 2018-07-17 Piotr Trojanek <trojanek@adacore.com>
1063
1064 * einfo.adb (Is_Wrapper_Package): Remove extra parentheses.
1065
1066 2018-07-17 Ed Schonberg <schonberg@adacore.com>
1067
1068 * sem_util.adb (Enclosing_Subprogram): Handle properly entries, and
1069 synchronized types that are completions of limited types or private
1070 extensions.
1071 (Scope_Within): Handle properly accept statements in task bodies.
1072
1073 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
1074
1075 * sem_prag.adb (Has_Visible_State): Do not consider generic formals
1076 because they are not part of the visible state space. Add constants to
1077 the list of acceptable visible states.
1078 (Propagate_Part_Of): Do not consider generic formals when propagating
1079 the Part_Of indicator.
1080 * sem_util.adb (Entity_Of): Do not follow renaming chains which go
1081 through a generic formal because they are not visible for SPARK
1082 purposes.
1083 * sem_util.ads (Entity_Of): Update the comment on usage.
1084
1085 2018-07-17 Ed Schonberg <schonberg@adacore.com>
1086
1087 * sem_util.adb (Gather_Components): A discriminant of an ancestor may
1088 have been constrained by a later ancestor, so when looking for the
1089 value of that hidden discriminant we must examine the stored constraint
1090 of other ancestors than the immediate parent type.
1091
1092 2018-07-17 Hristian Kirtchev <kirtchev@adacore.com>
1093
1094 * exp_ch6.adb (Build_Heap_Or_Pool_Allocator): Ensure that scoping
1095 constructs and entities within receive new entities when replicating a
1096 tree.
1097 (Expand_N_Extended_Return_Statement): Ensure that scoping constructs
1098 and entities within receive new entities when replicating a tree.
1099 * sem_util.adb (New_Copy_Tree): Add new formal Scopes_In_EWA_OK.
1100 (Visit_Entity): Visit entities within scoping constructs inside
1101 expression with actions nodes when requested by the caller. Add blocks,
1102 labels, and procedures to the list of entities which need replication.
1103 * sem_util.ads (New_Copy_Tree): Add new formal Scopes_In_EWA_OK. Update
1104 the comment on usage.
1105
1106 2018-07-17 Arnaud Charlet <charlet@adacore.com>
1107
1108 * doc/gnat_ugn/about_this_guide.rst,
1109 doc/gnat_ugn/gnat_and_program_execution.rst: Remove references to gcov.
1110 * gnat_ugn.texi: Regenerate.
1111
1112 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
1113
1114 * contracts.adb (Analyze_Contracts): Add specialized processing for
1115 package instantiation contracts.
1116 (Analyze_Package_Contract): Remove the verification of a missing
1117 Part_Of indicator.
1118 (Analyze_Package_Instantiation_Contract): New routine.
1119 * contracts.ads (Analyze_Package_Contract): Update the comment on
1120 usage.
1121 * sem_prag.adb (Check_Missing_Part_Of): Ensure that the entity of the
1122 instance is being examined when trying to determine whether a package
1123 instantiation needs a Part_Of indicator.
1124
1125 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
1126
1127 * einfo.adb, exp_ch7.adb, exp_ch9.adb, exp_unst.adb, inline.adb,
1128 sem.adb, sem_ch12.adb, sem_ch13.adb, sem_ch3.adb, sem_eval.adb,
1129 sem_util.adb: Minor reformatting.
1130
1131 2018-07-16 Arnaud Charlet <charlet@adacore.com>
1132
1133 * frontend.adb: Only unnest subprograms if no previous errors were
1134 detected.
1135
1136 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1137
1138 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Handle loops that
1139 contain blocks in the elaboration code for a package body. Create the
1140 elaboration subprogram wrapper only if there is a subprogram
1141 declaration in a block or loop.
1142
1143 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1144
1145 * exp_ch4.adb (Expand_Set_Membership): Use New_Copy_Tree to perform a
1146 deep copy of the left operand when building each conjuct of the
1147 expanded membership operation, to avoid sharing nodes between them.
1148 This sharing interferes with the unnesting machinery and is generally
1149 undesirable.
1150
1151 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1152
1153 * exp_unst.adb (Visit_Node): Handle 'Address references that are
1154 calls.
1155
1156 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1157
1158 * exp_unst.adb (Visit_Node): Handle the semantic of Storage_Pool field
1159 in relevant nodes: Allocate, Free, and return statements.
1160
1161 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1162
1163 * sem_ch12.adb (Analyze_Package_Instantiation): Handle properly an
1164 instance that carries an aspect Default_Storage_Pool that overrides a
1165 default storage pool that applies to the generic unit. The aspect in
1166 the generic unit was removed before copying it in the instance, rather
1167 than removing it from the copy of the aspects that are appended to the
1168 aspects in the instance.
1169
1170 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1171
1172 * einfo.adb (Set_Is_Uplevel_Referenced_Entity): Flag can appear on
1173 loop parameters.
1174 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Handle subprogram
1175 bodies.
1176 * exp_ch9.adb (Reset_Scopes_To): Set the scopes of entities local to an
1177 entry body to be the corresponding generated subprogram, for correct
1178 analysis of uplevel references.
1179 * exp_unst.adb (Visit_Node): Handle properly binary and unary operators
1180 Ignore pragmas, fix component associations.
1181 (Register_Subprograms): Subprograms in synchronized types must be
1182 treated as reachable.
1183
1184 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
1185
1186 * sem_util.adb (Check_No_Hidden_State): Ignore internally-generated
1187 states and variables.
1188
1189 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
1190
1191 * sinfo.ads, sinfo.adb (Withed_Body): Remove.
1192 (Set_Withed_Body): Remove.
1193
1194 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
1195
1196 * sem.adb (Walk_Library_Items): Skip units with configuration pragmas
1197 when printing debug info.
1198
1199 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
1200
1201 * sem.adb (Walk_Library_Items): Reuse local constant.
1202 (Is_Subunit_Of_Main): Turn condition to positive and flip the
1203 IF-THEN-ELSE branches; avoid potentially ineffective assignment to the
1204 Lib variable.
1205
1206 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
1207
1208 * sem.adb (Walk_Library_Items): Deconstruct dead code.
1209
1210 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1211
1212 * exp_ch4.adb (Expand_N_Op_Xor): Use common routine
1213 Expand_Nonbinary_Modular_Op. Needed for unnesting.
1214
1215 2018-07-16 Ed Schonberg <schonberg@adacore.com>
1216
1217 * sem_ch3.adb (Inherit_Predicate_Flags): A non-discrete type may have a
1218 static predicate (for example True) but has no
1219 static_discrete_predicate.
1220
1221 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
1222
1223 * exp_attr.adb (Build_Record_VS_Func): Handle corner cases dealing with
1224 class-wide types and record extensions.
1225
1226 2018-07-16 Justin Squirek <squirek@adacore.com>
1227
1228 * sem_eval.adb (Eval_Integer_Literal): Add exception for avoiding
1229 checks on expanded literals within if and case expressions.
1230
1231 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
1232
1233 * libgnat/s-wchwts.adb (Wide_String_To_String): Use the appropriate
1234 longest sequence factor. Code clean up.
1235 (Wide_Wide_String_To_String): Use the appropriate longest sequence
1236 factor. Code clean up.
1237
1238 2018-07-16 Javier Miranda <miranda@adacore.com>
1239
1240 * sem_ch13.adb (Analyze_Attribute_Definition_Clause): Report an error
1241 on Bit_Order when defined for a record extension.
1242
1243 2018-07-16 Arnaud Charlet <charlet@adacore.com>
1244
1245 * libgnat/s-objrea.ads: Minor code clean up.
1246
1247 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
1248
1249 * sem_ch3.adb (Process_Discriminants): Adjust reference to the SPARM RM
1250 rule.
1251
1252 2018-07-16 Arnaud Charlet <charlet@adacore.com>
1253
1254 * adaint.c (__gnat_set_file_time_name): Code clean up.
1255
1256 2018-07-16 Javier Miranda <miranda@adacore.com>
1257
1258 * inline.adb (Build_Body_To_Inline): Minor code reorganization that
1259 ensures that calls to function Has_Single_Return() pass a decorated
1260 tree.
1261 (Has_Single_Return.Check_Return): Peform checks on entities (instead on
1262 relying on their characters).
1263
1264 2018-07-16 Javier Miranda <miranda@adacore.com>
1265
1266 * exp_ch5.adb (Expand_Iterator_Loop_Over_Array): Code cleanup. Required
1267 to avoid generating an ill-formed tree that confuses gnatprove causing
1268 it to blowup.
1269
1270 2018-07-16 Yannick Moy <moy@adacore.com>
1271
1272 * inline.adb (Has_Single_Return): Rewrap comment.
1273
1274 2018-07-16 Eric Botcazou <ebotcazou@adacore.com>
1275
1276 * einfo.ads: Minor tweak in comment.
1277
1278 2018-07-16 Javier Miranda <miranda@adacore.com>
1279
1280 * sem_ch4.adb (Analyze_Membership_Op): Code cleanup.
1281
1282 2018-07-16 Javier Miranda <miranda@adacore.com>
1283
1284 * exp_attr.adb (Expand_N_Attribute_Reference ['Count]): Do not
1285 transform 'Count into a function call if the current scope has been
1286 eliminated.
1287
1288 2018-07-16 Javier Miranda <miranda@adacore.com>
1289
1290 * sem_util.ads, sem_util.adb (Has_Prefix): Move this function to the
1291 public part of this package.
1292
1293 2018-07-16 Yannick Moy <moy@adacore.com>
1294
1295 * sem_res.adb (Resolve_Call): Do not inline calls inside
1296 compiler-generated functions translated as predicates in GNATprove.
1297
1298 2018-07-16 Gary Dismukes <dismukes@adacore.com>
1299
1300 * exp_ch4.adb (Expand_N_Allocator): Test for Storage_Pool being RTE in
1301 addition to the existing test for no Storage_Pool as a condition
1302 enabling generation of the call to Check_Standard_Allocator when the
1303 restriction No_Standard_Allocators_After_Elaboration is active.
1304 * libgnat/s-elaall.ads (Check_Standard_Allocator): Correct comment to
1305 say that Storage_Error will be raised (rather than Program_Error).
1306 * libgnat/s-elaall.adb (Check_Standard_Allocator): Raise Storage_Error
1307 rather than Program_Error when Elaboration_In_Progress is False.
1308
1309 2018-07-16 Gary Dismukes <dismukes@adacore.com>
1310
1311 * sem_eval.adb: Fix spelling for compile-time-known.
1312
1313 2018-07-16 Hristian Kirtchev <kirtchev@adacore.com>
1314
1315 * sem_eval.adb (Compile_Time_Known_Value): Add a guard which prevents
1316 the compiler from entering infinite recursion when trying to determine
1317 whether a deferred constant has a compile time known value, and the
1318 initialization expression of the constant is a reference to the
1319 constant itself.
1320
1321 2018-07-16 Nicolas Roche <roche@adacore.com>
1322
1323 * libgnat/a-strunb.adb, libgnat/a-strunb__shared.adb: Adjust growth
1324 factor from 1/32 to 1/2 for Unbounded_String.
1325
1326 2018-07-13 Eric Botcazou <ebotcazou@adacore.com>
1327
1328 * gcc-interface/lang.opt (funsigned-char): New option.
1329 * gcc-interface/misc.c (gnat_handle_option): Accept it.
1330 * gcc-interface/utils.c (finish_character_type): Tweak comment.
1331
1332 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
1333
1334 * gcc-interface/decl.c (gnat_to_gnu_entity): Add GNAT_DECL local
1335 variable and use it throughout.
1336 <E_Variable>: If the nominal subtype of the object is unconstrained,
1337 compute the Ada size separately and put in on the padding type if the
1338 size is not fixed.
1339 <E_Record_Type>: Minor tweak.
1340 * gcc-interface/misc.c (gnat_type_max_size): Rename max_size_unit
1341 into max_size_unit throughout.
1342
1343 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
1344
1345 * gcc-interface/gigi.h (add_decl_expr): Adjust prototype.
1346 * gcc-interface/decl.c (gnat_to_gnu_entity): Remove useless test.
1347 * gcc-interface/trans.c (add_stmt_with_node): Remove exceptions.
1348 (add_decl_expr): Change type of second parameter and rename it.
1349 (renaming_from_instantiation_p): New function moved from...
1350 (set_expr_location_from_node): Test for exceptions here and add one
1351 for actual subtypes built for unconstrained composite actuals.
1352 * gcc-interface/utils.c (renaming_from_instantiation_p): ...here.
1353
1354 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
1355
1356 * gcc-interface/trans.c (lvalue_required_p): Remove ALIASED parameter
1357 and adjust recursive calls.
1358 (Identifier_to_gnu): Adjust calls to lvalue_required_p.
1359 (gnat_to_gnu): Likewise.
1360
1361 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
1362
1363 * gcc-interface/decl.c (gnat_to_gnu_param): Minor tweak.
1364 (gnat_to_gnu_subprog_type): New pure_flag local variable. Set it for
1365 a pure Ada function with a by-ref In parameter. Propagate it onto the
1366 function type by means of the TYPE_QUAL_RESTRICT flag.
1367 * gcc-interface/utils.c (finish_subprog_decl): Set DECL_PURE_P if the
1368 function type has the TYPE_QUAL_RESTRICT flag set.
1369
1370 2018-07-06 Jim Wilson <jimw@sifive.com>
1371
1372 * Makefile.rtl: Add riscv*-linux* support.
1373 * libgnarl/s-linux__riscv.ads: New.
1374 * libgnat/system-linux-riscv.ads: New.
1375
1376 * Make-generated.in (treeprs.ads): Use $(GNATMAKE) instead of gnatmake.
1377 (einfo.h, sinfo.h, stamp-snames, stamp-nmake): Likewise.
1378 * gcc-interface/Makefile.in (xoscons): Likewise.
1379
1380 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1381
1382 * libgnat/system-rtems.ads (Frontend_Exceptions): Set to False.
1383 (ZCX_By_Default): Set to True.
1384
1385 2018-07-02 Martin Liska <mliska@suse.cz>
1386
1387 * gnatvsn.ads: Bump Library_Version to 9.
1388
1389 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
1390
1391 * gcc-interface/ada-tree.h (TYPE_RETURN_BY_DIRECT_REF_P): Change from
1392 using TYPE_LANG_FLAG_4 to using TYPE_LANG_FLAG_0.
1393 (TYPE_ALIGN_OK): Move around.
1394 (TYPE_PADDING_FOR_COMPONENT): Remove superfluous parentheses.
1395 * gcc-interface/decl.c (change_qualified_type): Move to...
1396 (gnat_to_gnu_entity): Adjust comment.
1397 * gcc-interface/gigi.h (change_qualified_type): ...here; make inline.
1398 (ceil_pow2): Use ceil_log2.
1399 * gcc-interface/utils.c (finish_subprog_decl): Add couple of comments
1400 and do not set TREE_SIDE_EFFECTS.
1401 (handle_noreturn_attribute): Use change_qualified_type.
1402
1403 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
1404
1405 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Constant>: Do not get
1406 the expression of a dispatch table that is not being defined.
1407 <E_Record_Subtype>: Remove obsolete kludge.
1408
1409 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
1410
1411 * gcc-interface/decl.c (warn_on_field_placement): Use specific wording
1412 for discriminants.
1413 (warn_on_list_placement): New static function.
1414 (components_to_record): Use it to warn on multiple fields in list.
1415
1416 2018-06-12 Eric Botcazou <ebotcazou@adacore.com>
1417
1418 * gcc-interface/decl.c (variant_desc): Add AUX field.
1419 (gnat_to_gnu_entity) <discrete_type>: Do not call compute_record_mode
1420 directly.
1421 (reverse_sort_field_list): New static function.
1422 (components_to_record): Place the variant part at the beginning of the
1423 field list when there is an obvious order of increasing position.
1424 (build_variant_list): Initialize it.
1425 (create_variant_part_from): Do not call compute_record_mode directly.
1426 (copy_and_substitute_in_layout): Likewise. Always sort the fields with
1427 fixed position in order of increasing position, in the record and all
1428 the variants, in any. Call reverse_sort_field_list.
1429 * gcc-interface/utils.c (make_packable_type): Compute the sizes before
1430 calling finish_record_type. Do not call compute_record_mode directly.
1431 (finish_record_type): Overhaul final processing depending on REP_LEVEL
1432 and call finish_bitfield_layout if it is equal to one or two.
1433
1434 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
1435
1436 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Array_Type>: Reuse the
1437 existing fields of a dummy fat pointer type, if any. Clear the
1438 TYPE_DECL_SUPPRESS_DEBUG on the fat pointer type after completing it.
1439
1440 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
1441
1442 * contracts.adb (Process_Body_Postconditions): Expand only checked
1443 postconditions.
1444 (Process_Contract_Cases_For): Expand only checked contract cases.
1445 (Process_Inherited_Preconditions): Ignored class-wide preconditions are
1446 partially expanded because some of their semantic checks are tied to
1447 the expansion.
1448 (Process_Preconditions_For): Expand only checked preconditions.
1449 (Process_Spec_Postconditions): Expand only checked preconditions.
1450 Ignored class-wide preconditions are partially expanded because some of
1451 their semantic checks are tied to the expansion.
1452 * exp_prag.adb (Expand_N_Pragma): Suppress the expansion of ignored
1453 assertion pragmas.
1454 * exp_util.adb (Add_Inherited_Invariants): Code clean up.
1455 * sem_util.adb (Propagate_Invariant_Attributes): Code clean up.
1456
1457 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
1458
1459 * exp_ch9.adb, exp_unst.adb, inline.adb, libgnat/a-ciorma.adb,
1460 libgnat/a-ciormu.adb, libgnat/a-ciorse.adb, libgnat/a-coorma.adb,
1461 libgnat/a-coormu.adb, libgnat/a-coorse.adb, sem_prag.adb: Minor
1462 reformatting.
1463
1464 2018-06-11 Gary Dismukes <dismukes@adacore.com>
1465
1466 * exp_unst.ads, exp_unst.adb: Typo fixes and minor reformatting.
1467
1468 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
1469
1470 * exp_ch6.adb (Add_Unconstrained_Actuals_To_Build_In_Place_Call): Do
1471 not add any actuals when the size of the object is known, and the
1472 caller will allocate it.
1473 (Build_Heap_Allocator): Rename to Build_Heap_Or_Pool_Allocator to
1474 better illustrate its functionality. Update the comment on the
1475 generated code. Generate a branch for the heap and pool cases where
1476 the object is not necessarity controlled.
1477 (Expand_N_Extended_Return_Statement): Expand the extended return
1478 statement into four branches depending the requested mode if the caller
1479 will not allocate the object on its side.
1480 (Make_Build_In_Place_Call_In_Allocator): Do not allocate a controlled
1481 object on the caller side because this will violate the semantics of
1482 finalizable types. Instead notify the function to allocate the object
1483 on the heap or a user-defined storage pool.
1484 (Needs_BIP_Alloc_Form): A build-in-place function needs to be notified
1485 which of the four modes to employ when returning a limited controlled
1486 result.
1487 * exp_util.adb (Build_Allocate_Deallocate_Proc): Remove a redundant
1488 guard which is already covered in Needs_Finalization.
1489
1490 2018-06-11 Olivier Hainque <hainque@adacore.com>
1491
1492 * libgnat/s-excmac*.ads: Factorize Unwind_Action definitions ...
1493 * libgnat/a-exexpr.adb: ... Here, then add comments describing the
1494 major datastructures associated with the current exception raised.
1495 (Setup_Current_Excep): Accept a "Phase" argument conveying the
1496 unwinding phase during which this subprogram is called. For an Ada
1497 exception, don't update the current exception buffer from the raised
1498 exception object during SEARCH_PHASE, as this is redundant with the
1499 call now issued just before propagation starts.
1500 (Propagate_GCC_Exception): Move call to Setup_Current_Excep ahead of
1501 the unwinding start, conveying Phase 0.
1502 (Unhandled_Except_Handler): Pass UA_CLEANUP_PHASE as the Phase value on
1503 the call to Setup_Current_Excep.
1504 * raise-gcc.c (personality_body): Pass uw_phases as the Phase argument
1505 on calls to Setup_Current_Excep.
1506
1507 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1508
1509 * exp_unst.ads, exp_unst.adb (Needs_Fat_Pointer,
1510 Build_Access_Type_Decl): New subprograms to handle uplevel references
1511 to formals of an unconstrained array type. The activation record
1512 component for these is an access type, and the reference is rewritten
1513 as an explicit derefenrence of that component.
1514
1515 2018-06-11 Bob Duff <duff@adacore.com>
1516
1517 * libgnat/a-ciorma.adb, libgnat/a-ciormu.adb, libgnat/a-ciorse.adb,
1518 libgnat/a-coorma.adb, libgnat/a-coormu.adb, libgnat/a-coorse.adb:
1519 (Element): Add code to detect dangling cursors in some cases.
1520
1521 2018-06-11 Yannick Moy <moy@adacore.com>
1522
1523 * sem_ch6.adb (Build_Subprogram_Declaration): Mark parameters as coming
1524 from source.
1525
1526 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1527
1528 * sem_ch13.adb (Build_Predicate_Functions): For a derived type, ensure
1529 that its parent is already frozen so that its predicate function, if
1530 any, has already been constructed.
1531
1532 2018-06-11 Yannick Moy <moy@adacore.com>
1533
1534 * sem_prag.adb (Check_Mode_Restriction_In_Enclosing_Context): Adapt for
1535 possible task unit as the enclosing context.
1536
1537 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
1538
1539 * gnat1drv.adb: Remove use clause for Repinfo.
1540 (Gnat1drv): Beef up comment about the interplay between -gnatc and
1541 back-end annotations. Use full qualified name for List_Rep_Info.
1542
1543 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
1544
1545 * libgnat/g-arrspl.ads: Add pragma Preelaborate.
1546
1547 2018-06-11 Arnaud Charlet <charlet@adacore.com>
1548
1549 * exp_ch4.adb (Expand_Record_Equality): Remove extraneous "True and
1550 then" and general logical "ada" in codepeer mode.
1551
1552 2018-06-11 Javier Miranda <miranda@adacore.com>
1553
1554 * exp_ch9.adb (Expand_N_Protected_Body): Add missing handling of
1555 N_Call_Marker nodes.
1556
1557 2018-06-11 Arnaud Charlet <charlet@adacore.com>
1558
1559 * exp_ch3.adb, exp_unst.adb, inline.adb, sem_prag.adb: Minor
1560 reformatting.
1561
1562 2018-06-11 Yannick Moy <moy@adacore.com>
1563
1564 * doc/gnat_rm/implementation_defined_pragmas.rst: Add Suppressible
1565 argument to Assertion_Policy
1566 * gnat_rm.texi: Regenerate.
1567
1568 2018-06-11 Yannick Moy <moy@adacore.com>
1569
1570 * gnat1drv.adb: Do not check representation information in CodePeer and
1571 GNATprove modes, as these modes call a special backend instead of gigi,
1572 so do not have the information.
1573
1574 2018-06-11 Yannick Moy <moy@adacore.com>
1575
1576 * inline.adb (Build_Body_To_Inline): Consider case of extended return
1577 of unconstrained type as one case where inlining is not supported.
1578 (Expand_Inlined_Call): Remove special case for body as extended return
1579 of unconstrained type.
1580
1581 2018-06-11 Yannick Moy <moy@adacore.com>
1582
1583 * sem_prag.adb (Analyze_Part_Of): Only allow Part_Of on non-generic
1584 unit.
1585 (Check_Missing_Part_Of): Do not force Part_Of on generic unit.
1586
1587 2018-06-11 Piotr Trojanek <trojanek@adacore.com>
1588
1589 * sem_ch13.adb (Analyze_Aspect_Specifications): Don't split AND THEN
1590 expressions in Pre/Post contracts while in GNATprove_Mode.
1591
1592 2018-06-11 Piotr Trojanek <trojanek@adacore.com>
1593
1594 * sem_util.adb (Is_Potentially_Unevaluated): Fix detection of contracts
1595 with AND THEN expressions broken down into individual conjuncts.
1596
1597 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1598
1599 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): Add guard.
1600
1601 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1602
1603 * exp_unst.adb (Visit_Node): Skip generic associations.
1604
1605 2018-06-11 Arnaud Charlet <charlet@adacore.com>
1606
1607 * libgnat/memtrack.adb (fwrite): Remove second definition.
1608
1609 2018-06-11 Javier Miranda <miranda@adacore.com>
1610
1611 * sinfo.ads (Is_Dynamic_Coextension): Adding documentation.
1612 (Is_Static_Coextension): Adding documentation.
1613 * sinfo.adb (Is_Dynamic_Coextension): Extending the assertion.
1614 (Is_Static_Coextension): Extending the assertion.
1615 * sem_util.adb (Mark_Allocator): Clear Is_Static_Coextension when
1616 setting flag Is_Dynamic_Coextension (and vice versa).
1617
1618 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1619
1620 * exp_unst.adb (Search_Subprograms): Handle explicitly stubs at the top
1621 level of a compilation unit, becuase they may contain nested
1622 subprograms that need an activation record.
1623
1624 2018-06-11 Arnaud Charlet <charlet@adacore.com>
1625
1626 * Makefile.rtl: Compile Ada files with $(ADAC) instead of $(CC).
1627
1628 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
1629
1630 * exp_ch11.adb, exp_unst.adb, inline.adb, sem_ch12.adb, sem_util.adb:
1631 Minor reformatting.
1632 * sinfo.ads: Fix a typo.
1633
1634 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1635
1636 * inline.adb (Expand_Inlined_Call): If no optimization level is
1637 specified, the expansion of a call to an Inline_Always function is
1638 fully performed in the front-end even on a target that support back-end
1639 inlining.
1640
1641 2018-06-11 Arnaud Charlet <charlet@adacore.com>
1642
1643 * bindgen.adb (Gen_Adainit): Protect reference to System.Parameters
1644 with Sec_Stack_Used.
1645
1646 2018-06-11 Hristian Kirtchev <kirtchev@adacore.com>
1647
1648 * sem_ch8.adb (Find_Direct_Name): Mode the declaration of
1649 Is_Assignment_LHS further in. Use predicate
1650 Needs_Variable_Reference_Marker to determine whether to create a
1651 variable marker.
1652 (Find_Expanded_Name): Mode the declaration of Is_Assignment_LHS further
1653 in. Use predicate Needs_Variable_Reference_Marker to determine whether
1654 to create a variable marker.
1655 * sem_elab.adb (Build_Variable_Reference_Marker): Remove the various
1656 checks that determine whether the identifier or expanded name is a
1657 suitable variable reference. The checks are now performed by
1658 Needs_Variable_Reference_Marker.
1659 * sem_res.adb (Resolve_Actuals): Use predicate
1660 Needs_Variable_Reference_Marker to determine whether to create a
1661 variable marker.
1662 * sem_util.adb (Needs_Variable_Reference_Marker): New routine.
1663 * sem_util.ads (Needs_Variable_Reference_Marker): New routine.
1664
1665 2018-06-11 Valentine Reboul <reboul@adacore.com>
1666
1667 * doc/gnat_rm.rst, doc/gnat_ugn.rst: Rename "GPL Edition" into
1668 "Community Edition".
1669
1670 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1671
1672 * sem_ch12.adb (Install_Body): In order to determine the placement of
1673 the freeze node for an instance of a generic nested within another
1674 instance, take into account that the outer instance may be declared in
1675 the visible part of a package and the inner intance may be in the
1676 private part of the same package.
1677
1678 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
1679
1680 * errout.adb (Special_Msg_Delete): Remove handling of Atomic and VFA.
1681
1682 2018-06-11 Nicolas Roche <roche@adacore.com>
1683
1684 * libgnat/s-valuti.adb (Bad_Value): Ensure that we do not generate a
1685 stack overflow while raising a constraint error.
1686
1687 2018-06-11 Eric Botcazou <ebotcazou@adacore.com>
1688
1689 * repinfo.ads (Rep_Value): Use a single line.
1690 * repinfo.adb (Rep_Value): Likewise.
1691 (List_Attr): Do not use string concatenation.
1692
1693 2018-06-11 Ed Schonberg <schonberg@adacore.com>
1694
1695 * exp_unst.adb (Visit_Node): Check reference to formal parameter of
1696 current procedure, because the bounds of its type may be uplevel
1697 references.
1698
1699 2018-06-02 Eric Botcazou <ebotcazou@adacore.com>
1700
1701 * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Constant>: If this is
1702 not a definition, retrieve the expression only if it's a compile-time
1703 known value if we are just annotating types.
1704
1705 * gcc-interface/utils.c (convert): Do not try to upcast properly for a
1706 conversion between tagged types in type_annotate_only mode.
1707
1708 2018-06-02 Eric Botcazou <ebotcazou@adacore.com>
1709
1710 * gcc-interface/ada-tree.h (TYPE_PADDING_FOR_COMPONENT): New macro.
1711 * gcc-interface/decl.c (gnat_to_gnu_component_type): Cache the padding
1712 type built for an aliased component with variable size.
1713
1714 2018-05-31 Pierre-Marie de Rodat <derodat@adacore.com>
1715
1716 * doc/gnat_ugn/project-manager-figure.png: Delete.
1717
1718 2018-05-31 Pierre-Marie de Rodat <derodat@adacore.com>
1719
1720 * vxworks-arm-link.spec, vxworks-e500-link.spec,
1721 vxworks-gnat-crtbe-link.spec, vxworks-smp-arm-link.spec,
1722 vxworks-smp-e500-link.spec, vxworks-smp-ppc-link.spec,
1723 vxworks-smp-x86-link.spec: New files.
1724
1725 2018-05-31 Pierre-Marie de Rodat <derodat@adacore.com>
1726
1727 * gnatvsn.adb: Re-center the copyright header.
1728 * indepsw-darwin.adb: Adjust the starting copyright year to 2011.
1729
1730 2018-05-31 Fedor Rybin <frybin@adacore.com>
1731
1732 * doc/gnat_ugn/gnat_utility_programs.rst: Document Stubs_Subdir in
1733 gnattest section on user guide.
1734
1735 2018-05-31 Ed Schonberg <schonberg@adacore.com>
1736
1737 * sem_res.adb (Resolve_String_Literal): If the type is a string type
1738 whose component subtype has a static predicate, ensure that the
1739 predicate is applied to each character by expanding the string into the
1740 equivalent aggregate. This is also done if the component subtype is
1741 constrained.
1742
1743 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
1744
1745 * gcc-interface/trans.c (Call_to_gnu): Remove obsolete code.
1746
1747 2018-05-31 Piotr Trojanek <trojanek@adacore.com>
1748
1749 * sem_ch6.adb (Check_Missing_Return): Handle procedures with no
1750 explicit spec.
1751
1752 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
1753
1754 * gcc-interface/trans.c (Call_to_gnu): In the by-reference case, if
1755 the type of the parameter is an unconstrained array type, convert
1756 to the type of the actual before the type of the formal only if the
1757 conversion was suppressed earlier. Use in_param and gnu_actual_type
1758 local variables throughout, and uniform spelling for In Out or Out.
1759 Also remove dead code in the component-by-reference case.
1760
1761 2018-05-31 Frederic Konrad <konrad@adacore.com>
1762
1763 * tracebak.c (STOP_FRAME): Harden condition.
1764 (is_return_from, EXTRA_STOP_CONDITION): New helpers for VxWorks in RTP
1765 mode.
1766
1767 2018-05-31 Ed Schonberg <schonberg@adacore.com>
1768
1769 * checks.adb (Apply_Discriminant_Check): Do not apply discriminant
1770 check to a call to a build-in-place function, given that the return
1771 object is limited and cannot be copied.
1772
1773 2018-05-31 Olivier Hainque <hainque@adacore.com>
1774
1775 * libgnat/s-atopri.ads: Update comment on __atomic_compare_exchange
1776 builtins.
1777
1778 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
1779
1780 * gcc-interface/trans.c (Call_to_gnu): If this is a function call and
1781 there is no target, also create a temporary for the return value for
1782 an allocator if the type is an unconstrained record type with default
1783 discriminant.
1784
1785 2018-05-31 Hristian Kirtchev <kirtchev@adacore.com>
1786
1787 * exp_ch7.adb (Find_Transient_Context): An iteration scheme is a valid
1788 boudary for a transient scope.
1789
1790 2018-05-31 Valentine Reboul <reboul@adacore.com>
1791
1792 * gnatvsn.ads: Rename "GPL" version to "Community".
1793
1794 2018-05-31 Ed Schonberg <schonberg@adacore.com>
1795
1796 * einfo.ads: Improve documentation for the Is_Unsigned_Type entity
1797 flag.
1798
1799 2018-05-31 Piotr Trojanek <trojanek@adacore.com>
1800
1801 * sem_prag.adb (Analyze_Pragma): Replace call to Unique_Defining_Entity
1802 with a semantically equivalent call to Defining_Entity.
1803
1804 2018-05-31 Piotr Trojanek <trojanek@adacore.com>
1805
1806 * sem_prag.adb (Analyze_Pragma): Set Etype on the rewritten
1807 Max_Queue_Length expression.
1808
1809 2018-05-31 Sergey Rybin <rybin@adacore.com>
1810
1811 * doc/gnat_ugn/gnat_and_program_execution.rst: gnatelim does not need
1812 that the main unit to be built before the call, now it computes the
1813 closure of the main unit itself.
1814 * gnat_ugn.texi: Regenerate.
1815
1816 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
1817
1818 * repinfo.adb (List_Structural_Record_Layout): Set First to false
1819 after having listed the fields of the parent type, if any.
1820
1821 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
1822
1823 * gcc-interface/decl.c (gnat_to_gnu_entity) <discrete_type>: Do not
1824 deal with the ___XP suffix for packed array types here...
1825 <E_Array_Subtype>: ...or here when processing the implementation type
1826 but when processing the original type instead. Do not reuse the DECL
1827 of the implementation type for the original type. Tidy up.
1828
1829 2018-05-31 Eric Botcazou <ebotcazou@adacore.com>
1830
1831 * einfo.ads (Object_Size_Clause): Declare.
1832 * einfo.adb (Object_Size_Clause): New function.
1833 * gcc-interface/utils.c (maybe_pad_type): Test Has_Size_Clause before
1834 retrieving Size_Clause and post the warning on the object size clause
1835 if Has_Object_Size_Clause is true.
1836
1837 2018-05-31 Javier Miranda <miranda@adacore.com>
1838
1839 * sem_util.ads, sem_util.adb (Find_Primitive_Eq): New subprogram.
1840 * exp_ch4.adb (Expand_Composite_Equality): Use the new subprogram
1841 Find_Primitive_Eq to search for the primitive of types whose underlying
1842 type is a tagged type.
1843
1844 2018-05-31 Yannick Moy <moy@adacore.com>
1845
1846 * sem_prag.adb (Analyze_Pragma.Check_Loop_Pragma_Placement): Inverse
1847 order of treatment between nodes recognized as loop pragmas (or
1848 generated from one) and block statements.
1849
1850 2018-05-31 Doug Rupp <rupp@adacore.com>
1851
1852 * libgnat/s-osprim__posix2008.adb (Clock): Implement using
1853 clock_gettime.
1854
1855 2018-05-31 Ed Schonberg <schonberg@adacore.com>
1856
1857 * exp_unst.ads, exp_unst.adb (In_Synchronized_Unit): New predicate to
1858 mark subprograms that cannot be eliminated because they must be treated
1859 as reachable from outside the current unit. This includes entry bodies
1860 and protected operations.
1861
1862 2018-05-31 Ed Schonberg <schonberg@adacore.com>
1863
1864 * exp_ch4.adb (Expand_Modular_Addition, Expand_Modular_Subtraction):
1865 Convert all operands of the generated code to Standard.Unsigned, to
1866 prevent spurious visibility errors. This is needed when the generated
1867 expansion involves a modular index type of an array type, and the index
1868 type is not immediately visible.
1869
1870 2018-05-30 Piotr Trojanek <trojanek@adacore.com>
1871
1872 * einfo.ads (Package_Instantiation): Update comment after a routine
1873 that uses this field has been renamed.
1874
1875 2018-05-30 Ed Schonberg <schonberg@adacore.com>
1876
1877 * exp_ch11.adb (Replace_Raise_By_Goto): The transfomation is legal even
1878 if the local raise statement includes a string expression. This
1879 expression might be picked up by an outer handler or discarded, but
1880 plays no role in this transformation.
1881
1882 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
1883
1884 * exp_aggr.adb, exp_unst.adb, freeze.adb, libgnat/a-direct.adb: Minor
1885 reformatting.
1886
1887 2018-05-30 Ed Schonberg <schonberg@adacore.com>
1888
1889 * exp_unst.adb (Visit_Node): Handle the semantic Procedure_To_Call
1890 field in relevant nodes: Allocate, Free, and return statements.
1891
1892 2018-05-30 Ed Schonberg <schonberg@adacore.com>
1893
1894 * exp_unst.adb (Visit_Node): Do not traverse a Component_Association
1895 that has not been analyzed, as will be the case for a nested aggregate
1896 that is expanded into individual assignments.
1897
1898 2018-05-30 Justin Squirek <squirek@adacore.com>
1899
1900 * aspects.adb, aspects.ads: Register new aspect.
1901 * par-prag.adb (Prag): Register new pragma.
1902 * sem_ch13.adb (Analyze_Aspect_Specifications): Add processing for new
1903 aspect similar to Aspect_Max_Queue_Length.
1904 * sem_prag.adb, sem_prag.ads (Analyze_Pragma): Register new pragma and
1905 set it to use the same processing as Pragma_Max_Queue_Length.
1906 * snames.ads-tmpl: Move definition of Name_Max_Entry_Queue_Depth so
1907 that it can be processed as a pragma in addition to a restriction and
1908 add an entry for the pragma itself.
1909
1910 2018-05-30 Ed Schonberg <schonberg@adacore.com>
1911
1912 * freeze.adb (Freeze_Object_Declaration): A pragma Thread_Local_Storage
1913 is now legal on a variable of composite type initialized with an
1914 aggregate that is fully static and requires no elaboration code.
1915 * exp_aggr.adb (Convert_To_Positional): Recognize additional cases of
1916 nested aggregates that are compile-time static, so they can be used to
1917 initialize variables declared with Threqd_Local_Storage.
1918 * doc/gnat_rm/implementation_defined_pragmas.rst: Add documentation on
1919 Thread_Local_Storage.
1920 * gnat_rm.texi: Regenerate.
1921
1922 2018-05-30 Yannick Moy <moy@adacore.com>
1923
1924 * sem_util.adb (Policy_In_Effect): Take into account CodePeer and
1925 GNATprove modes.
1926
1927 2018-05-30 Justin Squirek <squirek@adacore.com>
1928
1929 * libgnat/a-direct.adb, libgnat/a-direct.ads (Name_Case_Equivalence):
1930 Add implementation.
1931 (Start_Search): Modify to use Start_Search_Internal
1932 (Start_Search_Internal): Add to break out an extra flag for searching
1933 case insensative due to the potential for directories within the same
1934 OS to allow different casing schemes.
1935 * sysdep.c (__gnat_name_case_equivalence): Add as a default fallback
1936 for when the more precise solution fails.
1937
1938 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
1939
1940 * checks.adb, exp_ch5.adb, exp_ch7.adb, exp_unst.adb, sem_eval.adb:
1941 Minor reformatting.
1942
1943 2018-05-30 Pascal Obry <obry@adacore.com>
1944
1945 * libgnat/g-comlin.ads (Value_Callback, Define_Switch): New.
1946 * libgnat/g-comlin.adb: Add corresponding implementation.
1947
1948 2018-05-30 Gary Dismukes <dismukes@adacore.com>
1949
1950 * sem_res.adb, sem_util.adb: Fix several typos.
1951
1952 2018-05-30 Olivier Hainque <hainque@adacore.com>
1953
1954 * vx_crtbegin_attr.c (CTOR_ATTRIBUTE, DTOR_ATTRIBUTE): Empty.
1955 (eh_registration_ctors, eh_registration_tors): New static variables,
1956 forced in a .ctors/.dtors section, respectively, with priority.
1957
1958 2018-05-30 Bob Duff <duff@adacore.com>
1959
1960 * aspects.ads, contracts.adb, exp_util.adb, expander.adb, expander.ads,
1961 freeze.adb, inline.adb, lib-xref.adb, sem.ads, sem_aggr.adb,
1962 sem_attr.adb, sem_ch13.adb, sem_ch3.adb, sem_ch5.adb, sem_ch6.adb,
1963 sem_ch8.adb, sem_dim.adb, sem_elab.adb, sem_res.adb, sem_res.ads,
1964 sinfo.ads: Spell preanalysis, preanalyze correctly.
1965
1966 2018-05-30 Bob Duff <duff@adacore.com>
1967
1968 * libgnat/g-sestin.ads: Rework documentation comments.
1969
1970 2018-05-30 Piotr Trojanek <trojanek@adacore.com>
1971
1972 * errout.adb, exp_aggr.adb, exp_ch7.adb, exp_util.adb, lib.adb,
1973 sem_ch13.adb, sem_ch4.adb, sem_res.adb, sem_util.adb
1974 (Has_Original_Node): Refactor to use Is_Rewrite_Substitution.
1975
1976 2018-05-30 Piotr Trojanek <trojanek@adacore.com>
1977
1978 * sem_prag.adb (Analyze_Pragma): Remove conjuncts that are always true.
1979
1980 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
1981
1982 * sem_util.adb (Is_Atomic_Object): Cleaned up. Split the entity logic
1983 in a separate routine.
1984 (Is_Atomic_Object_Entity): New routine.
1985 (Is_Atomic_Prefix): Cleaned up.
1986 (Is_Synchronized_Object): Check that the object is atomic, or its type
1987 is atomic.
1988 (Object_Has_Atomic_Components): Removed.
1989 * sem_util.ads (Is_Atomic_Object): Reword the comment on usage.
1990 (Is_Atomic_Object_Entity): New routine.
1991
1992 2018-05-30 Ed Schonberg <schonberg@adacore.com>
1993
1994 * sem_ch3.adb (Access_Subprogram_Declaration): The flag
1995 Needs_Activation_Record is only needed on a subprogram type, not on a
1996 pointer to such.
1997 * sem_res.adb (Resolve_Selected_Component): If the context type and the
1998 component type are anonymous access to subprograms, use the component
1999 type to obtain the proper value of Needs_Activation_Record flag for the
2000 expression.
2001
2002 2018-05-30 Eric Botcazou <ebotcazou@adacore.com>
2003
2004 * gcc-interface/trans.c (gnat_to_gnu) <N_Assignment_Statement>: Add
2005 comment about the memset case.
2006
2007 2018-05-30 Bob Duff <duff@adacore.com>
2008
2009 * exp_ch5.adb (Expand_Formal_Container_Element_Loop): Remove the code
2010 to analyze the Elmt_Decl, because it gets analyzed in the wrong scope.
2011 We need to analyze it as part of analyzing the block, so that if the
2012 call to Element that initializes Elmt_Decl returns on the secondary
2013 stack, the block will ss_mark/ss_release. This block is inside the
2014 loop; we don't want to leak memory until the loop exits. The purpose
2015 of analyzing Elmt_Decl first was to catch the error of modifying it,
2016 which is illegal because it's a loop parameter. The above causes us to
2017 miss that error. Therefore, we add a flag Is_Loop_Parameter, and set
2018 it on the Element entity, so we end up with an E_Variable node with the
2019 flag set.
2020 * einfo.ads, einfo.adb (Is_Loop_Parameter): New flag.
2021 * sem_ch5.adb (Diagnose_Non_Variable_Lhs): Give the "assignment to loop
2022 parameter not allowed" error if Is_Loop_Parameter.
2023 * sem_util.adb (Is_Variable): Return False if Is_Loop_Parameter, to
2024 trigger the call to Diagnose_Non_Variable_Lhs.
2025
2026 2018-05-30 Arnaud Charlet <charlet@adacore.com>
2027
2028 * checks.adb (Apply_Scalar_Range_Check):
2029 * sem_eval.adb (Check_Non_Static_Context, Out_Of_Range): Ignore out of
2030 range values for System.Priority in CodePeer mode since the actual
2031 target compiler may provide a wider range.
2032
2033 2018-05-30 Ed Schonberg <schonberg@adacore.com>
2034
2035 * exp_unst.adb: Search specification of main unit as well, for
2036 unnesting.
2037
2038 2018-05-30 Ed Schonberg <schonberg@adacore.com>
2039
2040 * exp_ch7.adb (Check_Unnesting_Elaboration_Code): The statement part of
2041 a package body that is a compilation unit may contain blocks that
2042 declare local subprograms. In Subprogram_Unnesting Mode such
2043 subprograms must be handled as nested inside the (implicit) elaboration
2044 procedure that executes that statement part. To handle properly uplevel
2045 references we construct that subprogram explicitly, to contain blocks
2046 and inner subprograms, The statement part of the compilation unit
2047 becomes a call to this subprogram. This is only done if blocks are
2048 present in the statement list of the body.
2049
2050 2018-05-30 Bob Duff <duff@adacore.com>
2051
2052 * exp_ch7.adb: Minor comment fix.
2053
2054 2018-05-30 Ed Schonberg <schonberg@adacore.com>
2055
2056 * exp_unst.adb (Visit_Node): Handle properly subprogram instantiations
2057 that have no corresponding body and appear as attributes of the
2058 corresponding wrapper package declaration.
2059 (Register_Subprogram): New subprogram, used for subprogram bodies and
2060 for subprogram instantiations to enter callable entity into Subp table.
2061
2062 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
2063
2064 * libgnat/s-secsta.adb: Reimplement the secondary stack support.
2065 * libgnat/s-secsta.ads: Update the documentation of all routines in the
2066 public part of the package. Reimplement the private part of the
2067 package to account for the new secondary stack structure. Add types
2068 and subprograms for testing purposes. Add several documentation
2069 sections.
2070
2071 2018-05-30 Hristian Kirtchev <kirtchev@adacore.com>
2072
2073 * exp_aggr.adb, exp_ch3.adb, exp_ch4.adb, exp_ch7.adb, exp_unst.adb,
2074 exp_util.adb, exp_util.ads, libgnat/a-calcon.adb, libgnat/a-calcon.ads,
2075 libgnat/s-os_lib.adb, repinfo.adb, sem_ch3.adb, sem_disp.adb,
2076 sem_disp.ads, sem_util.adb: Minor reformatting.
2077
2078 2018-05-30 Arnaud Charlet <charlet@adacore.com>
2079
2080 * gcc-interface/Makefile.in: Move special flags for Ada runtime files
2081 from here...
2082 * Makefile.rtl: ... to here. Update comments. Protect call to
2083 "GCC_FOR_TARGET" in case target_os isn't defined.
2084
2085 2018-05-30 Arnaud Charlet <charlet@adacore.com>
2086
2087 * gcc-interface/Makefile.in: Move target pair settings from here...
2088 * Makefile.rtl: ... to here.
2089 (setup-rts): New target.
2090
2091 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2092
2093 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Alphabetical
2094 List of All Switches): Replace "modules" with "units".
2095 (Subprogram Inlining Control): Likewise.
2096 * gnat_ugn.texi: Regenerate.
2097 * usage.adb (Usage): Fix description of -gnatn switch.
2098
2099 2018-05-29 Arnaud Charlet <charlet@adacore.com>
2100
2101 * gcc-interface/Makefile.in: Fix typos.
2102
2103 2018-05-29 Ed Schonberg <schonberg@adacore.com>
2104
2105 * exp_ch7.adb (Build_Finalizer_Call): Attach to tree the reference to
2106 the finalizer procedure in the At_End handler, for use in LLVM
2107 generation.
2108
2109 2018-05-29 Javier Miranda <miranda@adacore.com>
2110
2111 * exp_ch4.adb (Expand_N_Op_Eq, Expand_Composite_Equality): Use the new
2112 subprogram Inherits_From_Tagged_Full_View to identify more reliably
2113 untagged private types completed with a derivation of an untagged
2114 private whose full view is a tagged type.
2115 * sem_util.ads, sem_util.adb (Inherits_From_Tagged_Full_View): New
2116 subprogram.
2117 (Collect_Primitive_Operations): Handle untagged private types completed
2118 with a derivation of an untagged private type whose full view is a
2119 tagged type. In such case, collecting the list of primitives we may
2120 find two equality primitives: one associated with the untagged private
2121 and another associated with the ultimate tagged type (and we must
2122 remove from the returned list this latter one).
2123
2124 2018-05-29 Ed Schonberg <schonberg@adacore.com>
2125
2126 * exp_unst.adb (Visit_Node): Handle statement sequences that include an
2127 At_End handler.
2128
2129 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2130
2131 * repinfo.adb (List_Entities): Also recurse into blocks without label.
2132
2133 2018-05-29 Ed Schonberg <schonberg@adacore.com>
2134
2135 * exp_ch6.adb (Expand_N_Subprogram_Body): Do not generate push/pop for
2136 exceptions if subprogram unnesting is in effect, because these branch
2137 nodes are relevant only in the presence of nested subprograms.
2138
2139 2018-05-29 Ed Schonberg <schonberg@adacore.com>
2140
2141 * libgnat/s-fatgen.adb (Succ, Pred): Raise Constraint_Error
2142 unconditionally when applied to the largest positive (resp. largest
2143 negative) value of a floating-point type.
2144
2145 2018-05-29 Ed Schonberg <schonberg@adacore.com>
2146
2147 * einfo.ads, einfo.adb: Clarify use of Activation_Record_Component:
2148 discriminants and exceptions are never components of such. The flag
2149 Needs_Activation_Record is set on subprogram types, not on access to
2150 them.
2151
2152 2018-05-29 Ed Schonberg <schonberg@adacore.com>
2153
2154 * sem_ch3.adb: Set scope of component of subtype.
2155
2156 2018-05-29 Ed Schonberg <schonberg@adacore.com>
2157
2158 * exp_unst.adb (Visit_Node): Exclude selected components whose prefix
2159 carry no type. Such selected components appear in unit names that are
2160 child units, both in the specification and possibly in an end label for
2161 the unit, and they do not contain any relevant uplevel references.
2162
2163 2018-05-29 Arnaud Charlet <charlet@adacore.com>
2164
2165 * libgnat/a-calend.ads, libgnat/a-calend.adb (Epoch_Offset): Make it a
2166 function.
2167
2168 2018-05-29 Olivier Hainque <hainque@adacore.com>
2169
2170 * libgnat/system-vxworks7-ppc-rtp.ads: New file.
2171 * libgnat/system-vxworks7-ppc-kernel.ads: New file.
2172 * libgnat/system-vxworks7-e500-rtp.ads: New file.
2173 * libgnat/system-vxworks7-e500-kernel.ads: New file.
2174 * libgnat/system-vxworks7-x86-rtp.ads: New file.
2175 * libgnat/system-vxworks-ppc64-kernel.ads: Rename as ...
2176 * libgnat/system-vxworks7-ppc64-kernel.ads: and adjust name of
2177 gnat-crtbe link spec to use the vx7 variant.
2178
2179 2018-05-29 Olivier Hainque <hainque@adacore.com>
2180
2181 * vx_crtbegin.inc: Use a consistent naming convention for the
2182 registration/deregistration functions across RTP or kernel. Remove the
2183 ctor/dtor attribute setting based on RTP/kernel, expect the optional
2184 attribute extension to be provided by includers instead.
2185 * vx_crtbegin.c: Mere inclusion of vx_crtbegin.inc with empty attribute
2186 extension for the registration/deregistration functions.
2187 * vx_crtbegin_attr.c: New file. Include vx_crtbegin.inc with explicit
2188 constructor/destructor attribute extensions.
2189 * vx_crtbegin_array.c: New file. Include vx_crtbegin.inc with empty
2190 attribute extensions and declare _ctors/_dtors arrays.
2191 * vx_crtbegin_auto.c: Remove.
2192 * libgnat/system-vxworks7-aarch64-rtp-smp.ads: Use
2193 vxworks7-gnat-crtbe-link.spec.
2194 * libgnat/system-vxworks7-aarch64.ads: Likewise.
2195 * libgnat/system-vxworks7-e500-rtp-smp.ads: Likewise.
2196 * libgnat/system-vxworks7-ppc-rtp-smp.ads: Likewise.
2197 * libgnat/system-vxworks7-ppc64-rtp-smp.ads: Likewise.
2198 * libgnat/system-vxworks7-x86-kernel.ads: Likewise.
2199 * libgnat/system-vxworks7-x86-rtp-smp.ads: Likewise.
2200 * libgnat/system-vxworks7-x86_64-kernel.ads: Likewise.
2201 * libgnat/system-vxworks7-x86_64-rtp-smp.ads: Likewise.
2202
2203 2018-05-29 Piotr Trojanek <trojanek@adacore.com>
2204
2205 * ali.adb: Minor reformatting.
2206
2207 2018-05-29 Joel Brobecker <brobecker@adacore.com>
2208
2209 * doc/gnat_ugn/platform_specific_information.rst: Update package
2210 requirements for 32bit GNAT on x86_64-linux.
2211 * gnat_ugn.texi: Regenerate.
2212
2213 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2214
2215 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Debugging
2216 Control): Adjust description of -gnatRj.
2217 * gnat_ugn.texi: Regenerate.
2218 * opt.ads (List_Representation_Info_To_JSON): Likewise.
2219 * repinfo.adb (List_Rep_Info): Do not automatically create a file
2220 if List_Representation_Info_To_JSON is true.
2221 * switch-c.adb (Scan_Front_End_Switches) <R>: Remove incompatibility
2222 check between -gnatRj and -gnatRs.
2223 * usage.adb (Usage): Adjust description of -gnatRj.
2224
2225 2018-05-29 Pascal Obry <obry@adacore.com>
2226
2227 * libgnat/s-os_lib.adb (Normalize_Pathname): Fix handling of ".." in
2228 the root directory.
2229
2230 2018-05-29 Pascal Obry <obry@adacore.com>
2231
2232 * libgnat/s-os_lib.adb: Minor reformatting.
2233
2234 2018-05-29 Doug Rupp <rupp@adacore.com>
2235
2236 * libgnat/a-calend.adb (Epoch_Offset): Move from body to ...
2237 * libgnat/a-calend.ads (Epoch_Offset): to private part of spec
2238 * libgnat/a-calcon.ads (To_Unix_Nano_Time): New function spec.
2239 * libgnat/a-calcon.adb (To_Unix_Nano_Time): New function body.
2240
2241 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2242
2243 * repinfo.ads (JSON format): Document new pair for components.
2244 * repinfo.adb (Derived_Discriminant): New function.
2245 (List_Structural_Record_Layout): Add Outer_Ent parameter and pass it
2246 in recursive calls. If the record type is the parent of an extension,
2247 find and list the derived discriminant from the extension, if any.
2248 (List_Component_Layout): List the Discriminant_Number in JSON mode.
2249 (List_Record_Info): Adjust call to List_Structural_Record_Layout.
2250
2251 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2252
2253 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (Alphabetical
2254 List of All Switches): Document -gnatRj.
2255 (Debugging Control): Likewise.
2256 * gnat_ugn.texi: Regenerate.
2257 * opt.ads (List_Representation_Info_To_JSON): New boolean variable.
2258 * osint-c.adb (Create_Repinfo_File): Use the .json instead of .rep
2259 extension if List_Representation_Info_To_JSON is true.
2260 * repinfo.ads: Document the JSON output format.
2261 * repinfo.adb (List_Location): New procedure.
2262 (List_Array_Info): Add support for JSON output.
2263 (List_Entities): Likewise.
2264 (Unop): Likewise.
2265 (Binop): Likewise.
2266 (Print_Expr): Likewise.
2267 (List_Linker_Section): Likewise.
2268 (List_Mechanisms): Likewise.
2269 (List_Name): Likewise.
2270 (List_Object_Info): Likewise.
2271 (List_Record_Info): Likewise.
2272 (List_Component_Layout): Likewise. Add Indent parameter.
2273 (List_Structural_Record_Layout): New procedure.
2274 (List_Attr): Add support for JSON output.
2275 (List_Type_Info): Likewise.
2276 (Write_Unknown_Val): Likewise.
2277 * switch-c.adb (Scan_Front_End_Switches) <R>: Deal with 'j'.
2278 * usage.adb (Usage): List -gnatRj.
2279
2280 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2281
2282 * repinfo.adb (List_Component_Layout): New procedure extracted from...
2283 (List_Record_Layout): ...here. Invoke it.
2284
2285 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2286
2287 * repinfo.adb (Write_Unknown_Val): New procedure.
2288 (List_GCC_Expression): Call it.
2289 (List_Record_Layout): Likewise.
2290 (Write_Val): Likewise.
2291
2292 2018-05-29 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2293
2294 * exp_ch4.adb (Expand_N_Op_Abs): Clear Do_Overflow_Check when inserting
2295 code to do check.
2296
2297 2018-05-29 Arnaud Charlet <charlet@adacore.com>
2298
2299 * lib-writ.adb (Write_ALI): Do not use new function from s-casuti yet.
2300 This breaks build of cross compilers with older versions of GNAT, so
2301 better avoid it.
2302
2303 2018-05-29 Doug Rupp <rupp@adacore.com>
2304
2305 * libgnarl/s-taprop.ads (Monotonic_Clock): Refine documentation to
2306 reflect reality.
2307
2308 2018-05-29 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2309
2310 * exp_ch4.adb (Expand_N_Op_Abs): Always do range check against 'First.
2311
2312 2018-05-29 Eric Botcazou <ebotcazou@adacore.com>
2313
2314 * repinfo.adb (List_Entities): Do not list the Linker_Section for
2315 subprograms here...
2316 (List_Mechanisms): ...but here instead. Use consistent name output
2317 and formatting conventions.
2318
2319 2018-05-29 Bob Duff <duff@adacore.com>
2320
2321 * lib-writ.adb (Write_ALI): Cleanup: avoid use of global var; call new
2322 To_Lower function.
2323 * libgnat/s-casuti.ads, libgnat/s-casuti.adb (To_Upper, To_Lower,
2324 To_Mixed): New functions.
2325 * osint.adb: Cleanup: use Is_Directory_Separator, which correctly
2326 allows both '\' and '/' on Windows.
2327
2328 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
2329
2330 * repinfo.ads: Minor fixes and tweaks in comments.
2331
2332 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
2333
2334 * repinfo.adb (List_GCC_Expression): Remove Valop and replace calls to
2335 it with calls to Unop.
2336
2337 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
2338
2339 * repinfo.ads (TCode): Adjust range.
2340 (Truth_Andif_Expr): Remove.
2341 (Truth_Orif_Expr): Likewise.
2342 (Truth_And_Expr .. Dynamic_Val): Adjust value.
2343 * repinfo.adb (Print_Expr): Remove handling of Truth_{And,Or}if_Expr.
2344 (Rep_Value): Likewise.
2345 * repinfo.h (Truth_Andif_Expr): Remove.
2346 (Truth_Orif_Expr): Likewise.
2347 (Truth_And_Expr .. Dynamic_Val): Adjust value.
2348 * gcc-interface/decl.c (annotate_value) <TRUTH_ANDIF_EXPR>: Fall
2349 through to TRUTH_AND_EXPR case.
2350 <TRUTH_ORIF_EXPR>: Fall through to TRUTH_OR_EXPR case.
2351
2352 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2353
2354 * exp_unst.adb (Visit_Node): For indexed components and attribute
2355 references, examine index expressions or associated expressions as well
2356 to record uplevel references.
2357 (Vist_Node): For function and procedure calls, if a formal is an
2358 unconstrained array and the actual is constrained, check whether bounds
2359 of actual have uplevel references.
2360
2361 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2362
2363 * einfo.ads, einfo.adb: Exceptions can be uplevel references, and thus
2364 they can appear as components of activation records.
2365 * exp_unst.adb (Visit_Node): A reference to an exception may be an
2366 uplevel reference.
2367
2368 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
2369
2370 * exp_ch4.adb (Expand_Composite_Equality): Compute whether the size
2371 depends on a discriminant manually instead of using the predicate
2372 Size_Depends_On_Discriminant in the array type case.
2373
2374 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2375
2376 * exp_unst.adb (Check_Static_Type): For a record subtype, check
2377 discriminant constraints as well.
2378 (Visit_Node): For a selected component, check type of prefix, as is
2379 done for indexed components and slices.
2380
2381 2018-05-28 Javier Miranda <miranda@adacore.com>
2382
2383 * exp_ch4.adb (Real_Range_Check): Add a temporary to store the integer
2384 value when converting a float value to a fixed-point value. This is
2385 required for CCG because it handles fixed-point types by means of
2386 unsigned integer type variables. The range check is now performed using
2387 the integer value stored in this temporary.
2388
2389 2018-05-28 Yannick Moy <moy@adacore.com>
2390
2391 * sem_util.adb (Is_OK_Volatile_Context): Add attributes First, Last and
2392 Length as valid non-interfering contexts for SPARK.
2393
2394 2018-05-28 Claire Dross <dross@adacore.com>
2395
2396 * sem_disp.ads, sem_disp.adb (Inheritance_Utilities): Package for
2397 generic inheritance utilities.
2398 (Generic_Inherited_Subprograms): Generic version of
2399 Inherited_Subprograms, generic in Find_Dispatching_Type function.
2400 (Generic_Is_Overriding_Subprogram): Generic version of
2401 Is_Overriding_Subprogram, generic in Find_Dispatching_Type function.
2402 (Inherited_Subprograms): Instance of Generic_Inherited_Subprograms with
2403 Sem_Disp.Find_Dispatching_Type.
2404 (Is_Overriding_Subprogram): Instance of
2405 Generic_Is_Overriding_Subprogram with Sem_Disp.Find_Dispatching_Type.
2406 (Inheritance_Utilities_Inst): Instance of Inheritance_Utilities
2407 with Sem_Disp.Find_Dispatching_Type.
2408
2409 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
2410
2411 * exp_ch4.adb (Expand_Composite_Equality): For a composite (or FP)
2412 component type, do not expand array equality using the unconstrained
2413 base type, except for the case where the bounds of the type depend on a
2414 discriminant.
2415
2416 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2417
2418 * einfo.ads, einfo.adb (Needs_Activation_Record): New flag on
2419 access-to-subprogram types, to indicate that an indirect call through
2420 such a type requires an activation record when compiling for LLVM.
2421 * sem_ch3.adb (Access_Subprogram_Declaration): Set new flag as needed.
2422
2423 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2424
2425 * exp_ch4.adb (Real_Range_Check): Specialize float-to-fixed conversions
2426 when bounds of fixed type are static, to remove some spuerfluous
2427 implicit conversions and provide an accurate result when converting
2428 back and forth between the fixed point type and a floating point type.
2429
2430 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2431
2432 * exp_unst.adb (Unnest_Subprogram): Prevent creation of empty
2433 activation records.
2434
2435 2018-05-28 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2436
2437 * exp_unst.adb (Check_Static_Type): Add argument to indicate node to be
2438 replaced, if any; all callers changed.
2439 (Note_Uplevel_Ref): Likewise. Also replace reference to deferred
2440 constant with private view so we take the address of that entity.
2441 (Note_Uplevel_Bound): Add argument to indicate node to be replaced, if
2442 any; all callers changed. Handle N_Indexed_Component like
2443 N_Attribute_Reference. Add N_Type_Conversion case.
2444 (Visit_Node): Indexed references can be uplevel if the type isn't
2445 static.
2446 (Unnest_Subprograms): Don't rewrite if no reference given. If call has
2447 been relocated, set first_named pointer in original node as well.
2448
2449 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2450
2451 * exp_aggr.adb (Flatten): Copy tree of expression in a component
2452 association with a range or a set of discrete choices, rather than
2453 relocating the node. This avoids inconsistencies in the tree when
2454 handling nested subprograms with uplevel references for LLVM.
2455
2456 2018-05-28 Arnaud Charlet <charlet@adacore.com>
2457
2458 * exp_util.adb (Possible_Bit_Aligned_Component): Always return False in
2459 codepeer mode.
2460
2461 2018-05-28 Arnaud Charlet <charlet@adacore.com>
2462
2463 * exp_unst.adb: Fix typo.
2464
2465 2018-05-28 Bob Duff <duff@adacore.com>
2466
2467 * libgnat/a-convec.adb (Query_Element): Minor cleanup: remove an
2468 unnecessary use of 'Unrestricted_Access.
2469
2470 2018-05-28 Hristian Kirtchev <kirtchev@adacore.com>
2471
2472 * repinfo.adb (Expr_Value_S): New routine.
2473 (List_Linker_Section): Properly extract the value of the section
2474 argument.
2475
2476 2018-05-28 Patrick Bernardi <bernardi@adacore.com>
2477
2478 * doc/gnat_ugn/building_executable_programs_with_gnat.rst: Update the
2479 description of the -D binder switch to reflect current usage.
2480 * gnat_ugn.texi: Regenerate.
2481
2482 2018-05-28 Gary Dismukes <dismukes@adacore.com>
2483
2484 * exp_ch3.adb: Minor reformatting
2485
2486 2018-05-28 Justin Squirek <squirek@adacore.com>
2487
2488 * exp_ch3.adb
2489 (Build_Initialization_Call): Add logic to pass the appropriate actual to match
2490 new formal.
2491 (Init_Formals): Add new formal *_skip_null_excluding_check
2492 * exp_util.adb, exp_util.ads
2493 (Enclosing_Init_Proc): Added to fetch the enclosing Init_Proc from the current
2494 scope.
2495 (Inside_Init_Proc): Refactored to use Enclosing_Init_Proc
2496 (Needs_Conditional_Null_Excluding_Check): Added to factorize the predicate
2497 used to determine how to generate an Init_Proc for a given type.
2498 (Needs_Constant_Address): Minor reformatting
2499 * sem_res.adb
2500 (Resolve_Null): Add logic to generate a conditional check in certain cases
2501
2502 2018-05-28 Hristian Kirtchev <kirtchev@adacore.com>
2503
2504 * exp_aggr.adb, gnatlink.adb, sem_ch6.adb, sem_res.adb, sem_util.adb:
2505 Minor reformatting.
2506
2507 2018-05-28 Hristian Kirtchev <kirtchev@adacore.com>
2508
2509 * sem_prag.adb (Process_Atomic_Independent_Shared_Volatile): Include
2510 the declarations of single concurrent types because they fall in the
2511 category of full type and object declarations.
2512
2513 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
2514
2515 * repinfo.adb (Compute_Max_Length): Skip _Parent component.
2516 (List_Record_Layout): Likewise.
2517
2518 2018-05-28 Ed Schonberg <schonberg@adacore.com>
2519
2520 * sem_util.adb (Is_Function_Result): Add a warning if a postcondition
2521 includes a call to function to which it applies. This may mean an
2522 omission of an attribute reference 'Result, in particular if the
2523 function is pqrameterless.
2524
2525 2018-05-28 Justin Squirek <squirek@adacore.com>
2526
2527 * sem_ch8.adb (Find_Expanded_Name): Add extra guard to make sure the
2528 misresolved package name is not a case of mistaken identity.
2529
2530 2018-05-28 Yannick Moy <moy@adacore.com>
2531
2532 * sem_res.adb (Resolve_Range): Re-resolve the low bound of a range in
2533 GNATprove mode, as the order of resolution (low then high) means that
2534 all the information is not available when resolving the low bound the
2535 first time.
2536
2537 2018-05-28 Eric Botcazou <ebotcazou@adacore.com>
2538
2539 * repinfo.adb (List_Array_Info): Start with an explicit blank line and
2540 end with the linker section, if any.
2541 (List_Entities): Do not output the linker section for record types,
2542 array types and variables.
2543 (Print_Expr): Factor out common processing for unary operators and
2544 special values. Adjust and reorder the various cases.
2545 (List_Object_Info): End with the linker section, if any.
2546 (List_Record_Info): Likewise.
2547 (List_Type_Info): Do not start with a blank line.
2548
2549 2018-05-25 Nicolas Roche <roche@adacore.com>
2550
2551 * libgnat/s-valrea.adb (Scan_Real): Abort computation once it is sure
2552 that the result will be either -infinite or +infinite.
2553
2554 2018-05-25 Patrick Bernardi <bernardi@adacore.com>
2555
2556 * libgnat/s-parame.ads, libgnat/s-parame__vxworks.ads,
2557 libgnat/s-parame__ae653.ads, libgnat/s-parame__hpux.ads (Size_Type):
2558 Expand range of type to match the address space of the target.
2559 (Task_Storage_Size): Remove unused type.
2560
2561 2018-05-25 Ed Schonberg <schonberg@adacore.com>
2562
2563 * sem_res.adb (Set_Mixed_Mode_Operand): If the operand is an expression
2564 of a fixed point type and the parent is a multiplying operation,
2565 resolve the operand with its own type because the context will impose a
2566 resulting type on the result of the multiplication by means of
2567 approriate conversion.
2568
2569 2018-05-25 Hristian Kirtchev <kirtchev@adacore.com>
2570
2571 * exp_ch3.adb (Default_Initialize_Object): Ensure that the analysis of
2572 the in-place initialization aggregate created for pragmas
2573 Initialize_Scalars or Normalize_Scalars is performed with checks
2574 suppressed.
2575
2576 2018-05-25 Arnaud Charlet <charlet@adacore.com>
2577
2578 * exp_aggr.adb (Convert_To_Positional): Bump default for
2579 Max_Others_Replicate to 32. Update comments.
2580 * osint.ads (Unknown_Attributes): No longer pretend this is a constant.
2581 (No_File_Info_Cache): Initialize separately.
2582 * osint.adb (No_File_Info_Cache): Update initializer.
2583
2584 2018-05-25 Javier Miranda <miranda@adacore.com>
2585
2586 * sem_res.adb (Resolve_Membership_Op): Allow the use of the membership
2587 test when the left operand is a class-wide interface and the right
2588 operand is not a class-wide type.
2589 * exp_ch4.adb (Tagged_Membership): Adding support for interface as the
2590 left operand.
2591
2592 2018-05-25 Ed Schonberg <schonberg@adacore.com>
2593
2594 * exp_aggr.adb (Flatten): A quantified expression cannot be duplicated
2595 in an others clause to prevent visibility issues with the generated
2596 loop variable.
2597 (Component_OK_For_Backend): Return false for a quantified expression.
2598 (Check_Static_Component): Ditto.
2599
2600 2018-05-25 Hristian Kirtchev <kirtchev@adacore.com>
2601
2602 * libgnat/s-secsta.adb (SS_Allocate): Reimplemented.
2603 (SS_Allocate_Dynamic): New routine. The allocation logic is now split
2604 into three distring cases rather than in one loop which attempts to
2605 handle all three cases. This rewrite eliminates an issue where the last
2606 frame of the stack cannot be freed, thus causing the memory range of a
2607 new frame to approach the overflow point of the memory index type.
2608 Since the overflow is logically treated as a
2609 too-much-memory-on-the-stack scenario, it causes a bogus Storage_Error.
2610 (SS_Allocate_Static): New routine. The routine factorizes the static
2611 secondary stack-related code from the former SS_Allocate.
2612
2613 2018-05-25 Sergey Rybin <rybin@adacore.com>
2614
2615 * doc/gnat_ugn/gnat_and_program_execution.rst: Add description of '-U'
2616 option for gnatelim.
2617
2618 2018-05-25 Ed Schonberg <schonberg@adacore.com>
2619
2620 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Do not create
2621 Class_Wide_Clone_Body when analyzing a subprogram_body_stub: the clone
2622 is created when the proper body of the stub is analyzed.
2623 * sem_util.adb (ZBuild_Class_Wide_Clone_Body): If the subprogram body
2624 is the proper body of a subunit, the cloned body must be inserted in
2625 the declarative list that contains the stub.
2626
2627 2018-05-25 Justin Squirek <squirek@adacore.com>
2628
2629 * exp_ch6.adb (Expand_Simple_Function_Return): Add guard in check to
2630 generate code for 6.5(8-10) so that we don't get an assertion error
2631 when dealing with an incomplete return type.
2632
2633 2018-05-25 Arnaud Charlet <charlet@adacore.com>
2634
2635 * pprint.adb (Expression_Name): Strip too long expressions to avoid
2636 carrying very large strings.
2637
2638 2018-05-25 Patrick Bernardi <bernardi@adacore.com>
2639
2640 * switch-b.adb (Scan_Binder_Switches): binder switch -Q accepts Natural
2641 numbers.
2642
2643 2018-05-25 Doug Rupp <rupp@adacore.com>
2644
2645 * tracebak.c (aarch64-linux): Implement.
2646
2647 2018-05-25 Justin Squirek <squirek@adacore.com>
2648
2649 * sem_ch8.adb: Minor reformatting.
2650
2651 2018-05-25 Piotr Trojanek <trojanek@adacore.com>
2652
2653 * sem_util.adb (Iterate_Call_Parameters): Fix code convention and
2654 assertions.
2655
2656 2018-05-25 Hristian Kirtchev <kirtchev@adacore.com>
2657
2658 * einfo.adb, einfo.ads, exp_ch3.adb, exp_ch8.adb, exp_unst.adb,
2659 pprint.adb, sem_ch12.adb, sem_ch3.adb, sem_prag.adb, sem_util.adb:
2660 Minor reformatting.
2661
2662 2018-05-25 Ed Schonberg <schonberg@adacore.com>
2663
2664 * sem_ch12.adb (Instance_Exists): New function, subsidiary of
2665 Validate_Derived_Type_Instance, to verify that all interfaces
2666 implemented by the formal type are also implemented by the actual. The
2667 verification is complicated when an interface of the formal is declared
2668 in a generic unit and the actual is declared in an instance of it.
2669 There is currently no mechanism to relate an interface declared within
2670 a generic to the corresponding interface in an instance, so we must
2671 traverse the list of interfaces of the actual, looking for a name
2672 match, and verifying that that interface is declared in an instance.
2673
2674 2018-05-25 Piotr Trojanek <trojanek@adacore.com>
2675
2676 * sem_util.adb (Iterate_Call_Parameters): Rewrite with extra
2677 assertions; replace function versions of Next_Formal/Next_Actual with
2678 their procedural versions (which are more concise).
2679
2680 2018-05-25 Doug Rupp <rupp@adacore.com>
2681
2682 * libgnarl/s-osinte__aix.ads, libgnarl/s-osinte__android.ads,
2683 libgnarl/s-osinte__darwin.ads, libgnarl/s-osinte__freebsd.ads,
2684 libgnarl/s-osinte__hpux.ads, libgnarl/s-osinte__kfreebsd-gnu.ads,
2685 libgnarl/s-osinte__linux.ads, libgnarl/s-osinte__lynxos178e.ads,
2686 libgnarl/s-osinte__qnx.ads, libgnarl/s-osinte__rtems.ads
2687 (Relative_Timed_Wait): Remove.
2688 * libgnarl/s-tpopmo.adb (Timed_Sleep, Timed_Delay): Rewrite to allow
2689 for incremental looping. Remove references to Rel_Time and
2690 Relative_Timed_Wait.
2691 * libgnat/s-osprim__posix.adb, libgnat/s-osprim__posix2008.adb
2692 (Timed_Delay): Make separate.
2693 * libgnat/s-optide.adb: New separate procedure.
2694 * libgnat/s-osprim.ads (Max_System_Delay): New constant.
2695 * libgnat/s-osprim__lynxos.ads (Max_Sensible_Delay): Set to 6 months.
2696 (Max_System_Delay): New constant.
2697
2698 2018-05-25 Ed Schonberg <schonberg@adacore.com>
2699
2700 * sem_ch12.adb (Validate_Derived_Type_Instance): Verify that the actual
2701 for a formal derived type implements all the interfaces declared for
2702 the formal.
2703
2704 2018-05-25 Yannick Moy <moy@adacore.com>
2705
2706 * sem_prag.adb (Check_Applicable_Policy): Deal specially with CodePeer
2707 and GNATprove modes when applicable policy is Ignore.
2708
2709 2018-05-25 Eric Botcazou <ebotcazou@adacore.com>
2710
2711 * freeze.adb (Freeze_Enumeration_Type): Do not give integer size to a
2712 boolean type with convention C.
2713 * libgnat/i-cexten.ads (bool): Change to boolean with convention C.
2714 * gcc-interface/decl.c (gnat_to_gnu_entity): Add new local variable
2715 FOREIGN and use it throughout the function.
2716 <E_Enumeration_Type>: Set precision 1 on boolean types with foreign
2717 convention.
2718 <E_Enumeration_Subtype>: Likewise for subtypes.
2719 <E_Record_Type>: Force the size of a storage unit on empty classes.
2720 * gcc-interface/utils.c (make_type_from_size) <BOOLEAN_TYPE>: Skip
2721 boolean types with precision 1 if the size is the expected one.
2722
2723 2018-05-25 Arnaud Charlet <charlet@adacore.com>
2724
2725 * pprint.adb (Expression_Name): Do not print non ASCII characters.
2726
2727 2018-05-25 Bob Duff <duff@adacore.com>
2728
2729 * libgnat/a-strunb__shared.ads, libgnat/a-stwiun__shared.ads,
2730 libgnat/a-stzunb__shared.ads: (Initialize, Adjust): Add pragma Inline.
2731
2732 2018-05-25 Bob Duff <duff@adacore.com>
2733
2734 * sem_util.ads: Minor comment fix.
2735
2736 2018-05-25 Ed Schonberg <schonberg@adacore.com>
2737
2738 * exp_unst.adb (Visit_Node): Restrict check for uplevel references in
2739 prefixes of array attributes, to prefixes that are entity names whose
2740 type is constrained.
2741 (Note_Uplevel_Bound): Verify that the bound is declared in an enclosing
2742 subprogram, as itype created for loops in pre/postcondition may appear
2743 in loops at the library level.
2744
2745 2018-05-25 Ed Schonberg <schonberg@adacore.com>
2746
2747 * sem_ch13.adb (Build_Predicate_Functions): The predicate function
2748 declaration is inserted into the tree and analyzed at that point, so
2749 should not be reinserted when the body is constructed. Inside a
2750 generic, ensure that the body is not inserted twice in the tree.
2751
2752 2018-05-25 Yannick Moy <moy@adacore.com>
2753
2754 * sem_prag.adb (Check_Grouping): Modify test to ignore statements and
2755 declarations not coming from source.
2756
2757 2018-05-25 Fedor Rybin <frybin@adacore.com>
2758
2759 * doc/gnat_ugn/gnat_utility_programs.rst: Document new switch
2760 --copy-environment for gnattest.
2761
2762 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
2763
2764 * sem_elab.adb (Non_Private_View): Simplify by removing a local Result
2765 variable.
2766 * sem_prag.adb (Get_Base_Subprogram): Same as above.
2767
2768 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
2769
2770 * fe.h (Set_Normalized_First_Bit): Declare.
2771 (Set_Normalized_Position): Likewise.
2772 * repinfo.adb (List_Record_Layout): Do not use irregular output for a
2773 variable position. Fix minor spacing issue.
2774 * gcc-interface/decl.c (annotate_rep): If a field has a variable
2775 offset, compute the normalized position and annotate it in addition to
2776 the bit offset.
2777
2778 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
2779
2780 * gcc-interface/trans.c (Handled_Sequence_Of_Statements_to_gnu):
2781 Constify and rename variables. Fix formatting.
2782 (gnat_to_gnu) <N_Exception_Handler>: Minor tweak.
2783 <N_Raise_Statement>: Likewise.
2784
2785 2018-05-24 Javier Miranda <miranda@adacore.com>
2786
2787 * exp_ch8.adb (Build_Body_For_Renaming): Adding support to build the
2788 body of a variant record equality renaming.
2789 (Expand_N_Subprogram_Renaming_Declaration): Adapt the code to the new
2790 implementation of Build_Body_For_Renaming.
2791 * exp_ch3.ads (Build_Variant_Record_Equality): New library level
2792 function that factorizes the functionality needed by
2793 Build_Body_For_Renaming and Expand_Freeze_Record_Type to build the body
2794 of a variant record equality subprogram.
2795 * exp_ch3.adb (Build_Variant_Record_Equality): New subprogram.
2796 (Build_Variant_Record_Equality): New local procedure of
2797 Expand_Freeze_Record_Type containing all the code specific for freezing
2798 the record type that cannot be place in the new library level function.
2799
2800 2018-05-24 Ed Schonberg <schonberg@adacore.com>
2801
2802 * einfo.ads, einfo.adb (Is_Activation_Record): New flag on
2803 in_parameters, used when unesting subprograms for LLVM, to indicate
2804 that a generated parameter carries the activation record from the
2805 enclosing subprogram.
2806 * exp_unst.adb (Check_Static_Type): Handle array attributes of types
2807 whose bounds may contain up-level references that need to be added to
2808 an activation recoord.
2809 (Add_Extra_Formal): Set Is_Activation_Record on new formal.
2810
2811 2018-05-24 Yannick Moy <moy@adacore.com>
2812
2813 * pprint.adb (Expression_Image): Improve the printing of expressions,
2814 by taking more cases into account, in particular qualified expressions
2815 and aggregates. Also count more the number of parentheses to close
2816 after the expression.
2817
2818 2018-05-24 Javier Miranda <miranda@adacore.com>
2819
2820 * sem_ch3.adb (Is_Visible_Component): For untagged types add missing
2821 check for renamed discriminants.
2822 * sem_ch4.adb (Analyze_Overloaded_Selected_Component,
2823 Analyze_Selected_Component, Check_Misspelled_Selector): For calls to
2824 Is_Visible_Component pass the associated selector node to allow
2825 checking renamed discriminants on untagged types.
2826
2827 2018-05-24 Ed Schonberg <schonberg@adacore.com>
2828
2829 * sem_ch8.adb (Analyze_Use_Type): Do not assign the Prev_Use_Clause
2830 link to a use_type clause if this would cause an infinite loop in the
2831 machinery that detects redundant use clauses. This may happen when the
2832 redundant clauses appear in the context of a child unit and the context
2833 of its parent.
2834
2835 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
2836
2837 * sinfo.ads: Fix grammar in comment.
2838
2839 2018-05-24 Justin Squirek <squirek@adacore.com>
2840
2841 * einfo.ads, einfo.adb (Append_Entity): Modified to use Link_Entities
2842 and manage doubly-linked entity chain.
2843 (Nested_Scenarios): Removed entity field used for optimization during
2844 elaboration to make room for the new field Prev_Entity.
2845 (Link_Entities): Added to replace redundant calls to Set_Next_Entity
2846 and Set_Prev_Entity as well as centralize changes to the entity chain.
2847 (Predicated_Parent): Modified to use Node38.
2848 (Prev_Entity): Added to fetch new node field Prev_Entity in all entity
2849 types.
2850 (Remove_Entity): Moved from sem_util.
2851 (Set_Nested_Scenarios): Deleted.
2852 (Set_Predicated_Parent): Modified to use Node38.
2853 (Set_Prev_Entity): Added to set Prev_Entity field.
2854 (Set_Validated_Object): Modified to use Node38.
2855 (Unlink_Next_Entity): Added to process Prev_Entity when an unlinking
2856 action is required.
2857 (Validated_Object): Modified to use Node38.
2858 (Write_Field36_Name): Remove Nested_Scenarios, Validated_Object, and
2859 predicated parent cases.
2860 (Write_Field38_Name): Add predicated parent and Validated_Object cases.
2861 * sem_ch3.adb (Process_Subtype): Add guard to protect against
2862 inappropriate marking of Predicated_Parent to non-itype subtypes.
2863 (Make_Class_Wide_Type): Preserve Prev_Entity field and set in new type.
2864 (Copy_And_Swap): Add setting of Prev_Entity.
2865 (Build_derived_Record_Type): Replace Set_Next_Entity w/ Link_Entities.
2866 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Replace Set_Next_Entity
2867 w/ Link_Entities.
2868 (New_Overloaded_Entity): Remove block created to search for previous
2869 entities in the entity chain with relevant calls to Prev_Entity as well
2870 as replace duplicated code from Remove_Entity_And_Homonym with a call
2871 to that subprogram.
2872 * sem_ch7.adb (Exchange_Declarations): Replace Set_Next_Entity w/
2873 Link_Entities.
2874 * sem_elab.adb (Find_And_Process_Nested_Scenarios): Remove global and
2875 initial subprogram declarations related to Nested_Scenarios.
2876 (Process_Nested_Scenarios): Deleted.
2877 (Save_Scenario): Deleted.
2878 (Traverse_Body): Remove optimization for Nested_Scenarios so as to free
2879 node space in the entity tree.
2880 * sem_util.adb, sem_util.ads (Remove_Entity): Moved to einfo.
2881 (Remove_Entity_And_Homonym): Added to separate functionality of
2882 Remove_Entity from the homonym chain directly.
2883 * exp_attr.adb (Expand_N_Attribute_Reference): Replace Set_Next_Entity
2884 w/ Link_Entities and Unlink_Next_Entity.
2885 * exp_ch3.adb (Expand_N_Object_Declaration): Replace Set_Next_Entity w/
2886 Link_Entities.
2887 * exp_ch6.adb (Replace_Renaming_Declaration_Id): Replace
2888 Set_Next_Entity w/ Link_Entities.
2889 * exp_disp.adb (Expand_Dispatching_Call): Replace Set_Next_Entity w/
2890 Link_Entities and Unlink_Next_Entity.
2891 * exp_spark.adb (Expand_SPARK_N_Object_Renaming_Declaration): Replace
2892 call to Remove_Entity with its new incarnation.
2893 * exp_util.adb (New_Class_Wide_Subtype): Add setting of Prev_Entity.
2894 * freeze.adb (Freeze_Record_Type): Replace Set_Next_Entity w/
2895 Link_Entities.
2896
2897 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
2898
2899 * sem_ch10.adb (Expand_Limited_With_Clause): Update the call to
2900 Install_Limited_Withed_Unit.
2901 (Expand_With_Clause): Update the call to Install_Withed_Unit.
2902 (Implicit_With_On_Parent): Update the call to Install_Withed_Unit.
2903 (Install_Context_Clauses): Update the call to Install_Withed_Unit.
2904 (Install_Limited_Context_Clauses): Update the calls to
2905 Install_Limited_Withed_Unit.
2906 (Install_Limited_Withed_Unit): Renamed to better illustrate its
2907 purpose.
2908 (Install_Private_With_Clauses): Update the calls to Install_Withed_Unit
2909 and Install_Limited_Withed_Unit.
2910 (Install_With_Clause): Uninstall a limited with clause if a [private]
2911 with clause is given for the same package.
2912 (Install_Withed_Unit): Renamed to better illustrate its purpose.
2913 (Remove_Limited_With_Unit): New routine.
2914
2915 2018-05-24 Eric Botcazou <ebotcazou@adacore.com>
2916
2917 * raise-gcc.c (__gnat_SEH_error_handler): Remove prototype.
2918 (__gnat_personality_seh0): Adjust and beef up comments, and
2919 fix formatting throughout.
2920 (__gnat_adjust_context): Deal minimally with version 2.
2921 * seh_init.c (__gnat_map_SEH): Fix formatting.
2922 (_gnat_SEH_error_handler): Adjust comments.
2923 (__gnat_install_SEH_handler): Fix formatting.
2924
2925 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
2926
2927 * exp_ch7.adb, sem_ch3.adb, sem_res.adb: Minor reformatting.
2928
2929 2018-05-24 Ed Schonberg <schonberg@adacore.com>
2930
2931 * exp_aggr.adb (Flatten): Add a warning on an others clause in an array
2932 aggregate with static bounds when named associations cover all index
2933 positions and the others clause is redundant.
2934
2935 2018-05-24 Raphael Amiard <amiard@adacore.com>
2936
2937 * libgnat/a-cohama.ads: Add documentation.
2938
2939 2018-05-24 Raphael Amiard <amiard@adacore.com>
2940
2941 * libgnat/a-convec.ads: Add documentation.
2942
2943 2018-05-24 Justin Squirek <squirek@adacore.com>
2944
2945 * exp_ch3.adb (Expand_N_Object_Declaration): Ignore raising an error in
2946 expansion for limited tagged types when the node to be expanded is a
2947 raise expression due to it not representing a valid object.
2948 * exp_ch5.adb (Expand_N_Assignment_Statement): Add exception to error
2949 message regarding assignments to limited types to ignore genereated
2950 code.
2951
2952 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
2953
2954 * exp_util.adb (New_Class_Wide_Subtype): Capture and restore relevant
2955 Ghost-related attributes of the class-wide subtype because the copy
2956 clobbers them.
2957
2958 2018-05-24 Justin Squirek <squirek@adacore.com>
2959
2960 * sem_res.adb (Resolve_Entity_Name): Add guard to protect against
2961 marking use clauses as effective when the reference appears within
2962 generated code.
2963
2964 2018-05-24 Cyrille Comar <comar@adacore.com>
2965
2966 * doc/gnat_rm/the_gnat_library.rst: Fix typos.
2967 * gnat_rm.texi: Regenerate.
2968
2969 2018-05-24 Bob Duff <duff@adacore.com>
2970
2971 * exp_ch7.adb (Expand_Cleanup_Actions): Create a mark unconditionally
2972 for build-in-place functions with a caller-unknown-size result.
2973 (Create_Finalizer): For build-in-place functions with a
2974 caller-unknown-size result, check at run time whether we need to
2975 release the secondary stack.
2976
2977 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
2978
2979 * sem_prag.adb (Analyze_Pragma): Use the full view of an internally
2980 generated incomplete type.
2981
2982 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
2983
2984 * expander.adb (Expand): Update the save and restore of the Ghost
2985 region.
2986 * exp_ch3.adb (Freeze_Type): Likewise.
2987 * exp_disp.adb (Make_DT): Likewise.
2988 * exp_util.adb (Build_DIC_Procedure_Body): Likewise.
2989 (Build_DIC_Procedure_Declaration): Likewise.
2990 (Build_Invariant_Procedure_Body): Likewise.
2991 (Build_Invariant_Procedure_Declaration): Likewise.
2992 (Make_Predicate_Call): Likewise.
2993 * freeze.adb (Add_To_Result): Insert the freeze action of a living
2994 entity prior to the start of the enclosing ignored Ghost region.
2995 (Freeze_Entity): Update the save and restore of the Ghost region.
2996 * ghost.adb (Install_Ghost_Mode): Reimplemented.
2997 (Install_Ghost_Region): New routine.
2998 (Mark_And_Set_Ghost_Assignment): Install a region rather than a mode.
2999 (Mark_And_Set_Ghost_Body): Likewise.
3000 (Mark_And_Set_Ghost_Completion): Likewise.
3001 (Mark_And_Set_Ghost_Declaration): Likewise.
3002 (Mark_And_Set_Ghost_Instantiation): Likewise.
3003 (Mark_And_Set_Ghost_Procedure_Call): Likewise.
3004 (Name_To_Ghost_Mode): New routine.
3005 (Restore_Ghost_Region): New routine.
3006 * ghost.ads (Install_Ghost_Region): New routine.
3007 (Restore_Ghost_Region): New routine.
3008 * opt.ads: Add new global variable Ignored_Ghost_Region.
3009 * rtsfind.adb (Load_RTU): Update the save and restore of the Ghost
3010 region. Install a clean region.
3011 * sem.adb (Analyze): Likewise.
3012 (Do_Analyze): Likewise.
3013 * sem_ch3.adb (Analyze_Object_Declaration): Likewise
3014 (Derive_Progenitor_Subprograms): Use local variable Iface_Alias to
3015 capture the ultimate alias of the current primitive.
3016 (Process_Full_View): Update the save and restore of the Ghost region.
3017 Do not inherit DIC and invariant procedures.
3018 * sem_ch5.adb (Analyze_Assignment): Update the save and restore of the
3019 Ghost region.
3020 * sem_ch6.adb (Analyze_Procedure_Call): Likewise.
3021 (Analyze_Subprogram_Body_Helper): Likewise.
3022 * sem_ch7.adb (Analyze_Package_Body_Helper): Likewise.
3023 * sem_ch12.adb (Analyze_Package_Instantiation): Likewise.
3024 (Analyze_Subprogram_Instantiation): Likewise.
3025 (Instantiate_Package_Body): Likewise.
3026 (Instantiate_Subprogram_Body): Likewise.
3027 * sem_ch13.adb (Build_Predicate_Functions): Likewise.
3028 (Build_Predicate_Function_Declaration): Likewise.
3029 * sem_disp.adb
3030 (Add_Dispatching_Operation): Do not consider DIC and invariant
3031 procedures.
3032 (Check_Dispatching_Operation): Use Add_Dispatching_Operation to collect
3033 a dispatching subprogram.
3034 (Check_Operation_From_Private_View): Likewise.
3035 (Override_Dispatching_Operation): Likewise.
3036 * sem_prag.adb (Analyze_Contract_Cases_In_Decl_Part): Update the save
3037 and restore of the Ghost region.
3038 (Analyze_Initial_Condition_In_Decl_Part): Likewise.
3039 (Analyze_Pragma): Update the save and restore of the Ghost region.
3040 (Analyze_Pre_Post_Condition_In_Decl_Part): Likewise.
3041 * sem_util.adb (Is_Suitable_Primitive): New routine.
3042 * sem_util.ads (Is_Suitable_Primitive): New routine.
3043 * sinfo.ads: Update the section of Ghost regions.
3044
3045 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
3046
3047 * doc/gnat_rm/implementation_defined_pragmas.rst (Contract_Cases):
3048 Change "condition" to "case guard" after renaming in the contract
3049 grammar.
3050 * gnat_rm.texi: Regenerate.
3051
3052 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
3053
3054 * exp_util.adb (Expand_Static_Predicates_In_Choices): Indicate that the
3055 construct with discrete choices no longer contains a subtype with
3056 predicates since the expansion already handled this case.
3057
3058 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
3059
3060 * freeze.adb (Wrap_Imported_Subprogram): Generate an unchecked
3061 conversion to the return type to avoid a side effect where an imported
3062 relocated function generates a new anonymous access type, whose
3063 accessibility level does not agree with with that of the wrapper.
3064
3065 2018-05-24 Javier Miranda <miranda@adacore.com>
3066
3067 * sem_util.adb (Abstract_Interface_List): Add missing support for
3068 private types whose full view is a synchronized type.
3069 * sem_ch3.adb (Build_Derived_Private_Type): Skip building the full
3070 derivation of a private type parent type is a task type with
3071 discriminants as gigi does not use such type directly.
3072
3073 2018-05-24 Hristian Kirtchev <kirtchev@adacore.com>
3074
3075 * sem_elab.adb (Build_Variable_Reference_Marker): Do not create a
3076 variable marker when the reference appears in the formal part of a
3077 compilation unit instance because there is no place to insert it.
3078 (In_Compilation_Instance_Formal_Part): New routine.
3079
3080 2018-05-24 Piotr Trojanek <trojanek@adacore.com>
3081
3082 * layout.ads, repinfo.ads: Fix references to renamed Backend_Layout
3083 configuration parameter.
3084
3085 2018-05-24 Doug Rupp <rupp@adacore.com>
3086
3087 * argv-lynxos178-raven-cert.c: New file.
3088 * libgnat/system-lynxos178-x86.ads: New file.
3089
3090 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3091
3092 * exp_disp.adb, freeze.adb, gnat1drv.adb, sem_ch5.adb, sem_spark.adb:
3093 Minor reformattings.
3094
3095 2018-05-23 Pascal Obry <obry@adacore.com>
3096
3097 * adaint.c (win32_wait): Properly free the handle/pid lists when
3098 WaitForMultipleObjects fails (return WAIT_FAILED).
3099
3100 2018-05-23 Pascal Obry <obry@adacore.com>
3101
3102 * adaint.c (win32_wait): Add missing parentheses.
3103
3104 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3105
3106 * exp_ch3.adb (Check_Large_Modular_Array): Moved to Freeze.
3107 (Expand_N_Object_Declaration): Do not check for a large modular array
3108 here.
3109 * freeze.adb (Check_Large_Modular_Array): Moved from Exp_Ch3.
3110 (Freeze_Object_Declaration): Code cleanup. Check for a large modular
3111 array.
3112 * sem_ch3.adb: Minor reformatting.
3113
3114 2018-05-23 Ed Schonberg <schonberg@adacore.com>
3115
3116 * einfo.ads: New attribute on types: Predicated_Parent, to simplify the
3117 retrieval of the applicable predicate function to an itype created for
3118 a constrained array component.
3119 * einfo.adb: Subprograms for Predicated_Parent.
3120 (Predicate_Function): Use new attribute.
3121 * exp_util.adb (Make_Predicate_Call): If the predicate function is not
3122 available for a subtype, retrieve it from the base type, which may have
3123 been frozen after the subtype declaration and not captured by the
3124 subtype declaration.
3125 * sem_aggr.adb (Resolve_Array_Aggregate): An Others association is
3126 legal within a generated initiqlization procedure, as may happen with a
3127 predicate check on a component, when the predicate function applies to
3128 the base type of the component.
3129 * sem_ch3.adb (Analyze_Subtype_Declaration): Clean up inheritance of
3130 predicates for subtype declarations and for subtype indications in
3131 other contexts.
3132 (Process_Subtype): Likewise. Handle properly the case of a private type
3133 with unknown discriminants whose full view is an unconstrained array.
3134 Use Predicated_Parent to indicate source of predicate function on an
3135 itype whose parent is itself an itype.
3136 (Complete_Private_Subtype): If the private view has unknown
3137 discriminants and the full view is an unconstrained array, set base
3138 type of completion to the full view of parent.
3139 (Inherit_Predicate_Flags): Prevent double assignment of predicate
3140 function and flags.
3141 (Build_Subtype): For a constrained array component, propagate predicate
3142 information from original component type declaration.
3143
3144 2018-05-23 Boris Yakobowski <yakobowski@adacore.com>
3145
3146 * libgnat/a-ngelfu.ads (Arctanh, Arccoth): Fix faulty preconditions.
3147
3148 2018-05-23 Arnaud Charlet <charlet@adacore.com>
3149
3150 * checks.adb (Minimize_Eliminate_Overflows): Default initialize Lo and
3151 Hi.
3152 * sem_elab.adb: Make "out" parameters instead of "in out" when
3153 relevant.
3154
3155 2018-05-23 Bob Duff <duff@adacore.com>
3156
3157 * gnatbind.adb (List_Applicable_Restrictions): Add
3158 No_Implementation_Restrictions to the list of restrictions not to list.
3159 Remove double negative "not No_Restriction_List". Comment the
3160 commentary that is output, so it won't cause errors if used directly in
3161 a gnat.adc.
3162
3163 2018-05-23 Ed Schonberg <schonberg@adacore.com>
3164
3165 * sem_prag.adb (Inherit_Class_Wide_Pre): Refine legality check on
3166 class-wide precondition on a type extension when ancestor does not have
3167 a class-wide precondition. Previously the compiler accepted such a
3168 precondition when the ancestor had a class-wide postcondition.
3169
3170 2018-05-23 Javier Miranda <miranda@adacore.com>
3171
3172 * sem_attr.adb (Valid_Scalars): Do not invoke Error_Attr_P to report
3173 the warning on occurrences of this attribute whose evaluation is always
3174 true (since that subprogram aborts processing the attribute). In
3175 addition, replace the node by its boolean result 'True' (required
3176 because the backend has no knowledge of this attribute).
3177
3178 2018-05-23 Bob Duff <duff@adacore.com>
3179
3180 * libgnat/a-convec.adb: (Insert, Insert_Space): Suppress warnings. The
3181 code in question is not reachable in the case where Count_Type'Last is
3182 out of range.
3183
3184 2018-05-23 Yannick Moy <moy@adacore.com>
3185
3186 * doc/gnat_rm/implementation_defined_pragmas.rst: Clarify meaning of
3187 local pragma Warnings Off without On.
3188 * gnat_rm.texi: Regenerate.
3189
3190 2018-05-23 Olivier Hainque <hainque@adacore.com>
3191
3192 * libgnat/g-excact.ads (Is_Foreign_Exception): New predicate.
3193 * libgnat/g-excact.adb: Implement.
3194
3195 2018-05-23 Ed Schonberg <schonberg@adacore.com>
3196
3197 * sem_ch5.adb (Analyze_Iterator_Specification): If a subtype indication
3198 is present, verify its legality when the domain of iteration is a
3199 GNAT-specific formal container, as is already done for arrays and
3200 predefined containers.
3201
3202 2018-05-23 Yannick Moy <moy@adacore.com>
3203
3204 * sem_util.adb (Enclosing_Declaration): Fix the case of a named number
3205 declaration, which was not taken into account.
3206
3207 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3208
3209 * debug.adb: Switch -gnatd_s is now used to stop elaboration checks on
3210 synchronized suspension.
3211 * rtsfind.ads: Add entries for units Ada.Synchronous_Barriers and
3212 Ada.Synchronous_Task_Control and routines Suspend_Until_True and
3213 Wait_For_Release.
3214 * sem_elab.adb: Document switch -gnatd_s.
3215 (In_Task_Body): New routine.
3216 (Is_Potential_Scenario): Code cleanup. Stop the traversal of a task
3217 body when the current construct denotes a synchronous suspension call,
3218 and restriction No_Entry_Calls_In_Elaboration_Code or switch -gnatd_s
3219 is in effect.
3220 (Is_Synchronous_Suspension_Call): New routine.
3221 * switch-c.adb (Scan_Front_End_Switches): Switch -gnatJ now sets switch
3222 -gnatd_s.
3223
3224 2018-05-23 Javier Miranda <miranda@adacore.com>
3225
3226 * exp_disp.adb (Make_DT): Restrict the initialization of
3227 External_Tag and Expanded_Name to an empty string to the case where
3228 both pragmas apply (i.e. No_Tagged_Streams and Discard_Names), since
3229 restricted runtimes are compiled with pragma Discard_Names.
3230 * doc/gnat_rm/implementation_defined_pragmas.rst,
3231 doc/gnat_rm/implementation_defined_characteristics.rst: Add
3232 documentation.
3233 * gnat_rm.texi: Regenerate.
3234
3235 2018-05-23 Maroua Maalej <maalej@adacore.com>
3236
3237 * sem_spark.adb: Fix of some permission rules of pointers in SPARK.
3238
3239 2018-05-23 Ed Schonberg <schonberg@adacore.com>
3240
3241 * sem_ch5.adb (Preanalyze_Range): The pre-analysis of the domain of
3242 iteration of an Ada2012 loop is performed to determine the type of the
3243 domain, but full analysis is performed once the loop is rewritten as a
3244 while-loop during expansion. The pre-analysis suppresses expansion; it
3245 must also suppress the generation of freeze nodes, which may otherwise
3246 appear in the wrong scope before rewritting.
3247
3248 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3249
3250 * sem_elab.adb: Update the section on suppressing elaboration warnings.
3251
3252 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3253
3254 * einfo.adb (Is_Elaboration_Checks_OK_Id): Use predicate
3255 Is_Elaboration_Target.
3256 (Is_Elaboration_Target): New routine.
3257 (Is_Elaboration_Warnings_OK_Id): Use predicate Is_Elaboration_Target.
3258 (Set_Is_Elaboration_Checks_OK_Id): Use predicate Is_Elaboration_Target.
3259 (Set_Is_Elaboration_Warnings_OK_Id): Use predicate
3260 Is_Elaboration_Target.
3261 * einfo.ads: Add new synthesized attribute Is_Elaboration_Target along
3262 with occurrences in nodes.
3263 (Is_Elaboration_Target): New routine.
3264 * sem_prag.adb (Analyze_Pragma): Suppress elaboration warnings when an
3265 elaboration target is subject to pragma Warnings (Off, ...).
3266
3267 2018-05-23 Eric Botcazou <ebotcazou@adacore.com>
3268
3269 * repinfo.adb (List_Type_Info): Remove obsolete stuff.
3270
3271 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3272
3273 * einfo.adb: Flag304 is now Is_Elaboration_Warnings_OK_Id.
3274 (Is_Elaboration_Warnings_OK_Id): New routine.
3275 (Set_Is_Elaboration_Warnings_OK_Id): New routine.
3276 (Write_Entity_Flags): Output Flag304.
3277 * einfo.ads: Add new attribute Is_Elaboration_Warnings_OK_Id along with
3278 occurrences in entities.
3279 (Is_Elaboration_Warnings_OK_Id): New routine along with pragma Inline.
3280 (Set_Is_Elaboration_Warnings_OK_Id): New routine along with pragma
3281 Inline.
3282 * sem_attr.adb (Analyze_Access_Attribute): Capture the state of
3283 elaboration warnings.
3284 * sem_ch3.adb (Analyze_Object_Declaration): Capture the state of
3285 elaboration warnings.
3286 * sem_ch6.adb (Analyze_Abstract_Subprogram_Declaration): Capture the
3287 state of elaboration warnings.
3288 (Analyze_Subprogram_Body_Helper): Capture the state of elaboration
3289 warnings.
3290 (Analyze_Subprogram_Declaration): Capture the state of elaboration
3291 warnings.
3292 * sem_ch9.adb (Analyze_Entry_Declaration): Capture the state of
3293 elaboration warnings.
3294 (Analyze_Single_Task_Declaration): Capture the state of elaboration
3295 warnings.
3296 (Analyze_Task_Type_Declaration): Capture the state of elaboration
3297 warnings.
3298 * sem_ch12.adb (Analyze_Generic_Package_Declaration): Capture the state
3299 of elaboration warnings.
3300 (Analyze_Generic_Subprogram_Declaration): Capture the state of
3301 elaboration warnings.
3302 * sem_elab.adb: Add a section on suppressing elaboration warnings.
3303 Type Processing_Attributes includes component Suppress_Warnings
3304 intended to suppress any elaboration warnings along a path in the
3305 graph. Update Initial_State to include a value for this component.
3306 Types Target_Attributes and Task_Attriutes include component
3307 Elab_Warnings_OK to indicate whether the target or task has elaboration
3308 warnings enabled. component Elab_Warnings_OK.
3309 (Build_Access_Marker): Propagate attribute
3310 Is_Elaboration_Warnings_OK_Node from the attribute to the generated
3311 call marker.
3312 (Extract_Instantiation_Attributes): Set the value for Elab_Warnings_OK.
3313 (Extract_Target_Attributes): Set the value for Elab_Warnings_OK.
3314 (Extract_Task_Attributes): Set the value for Elab_Warnings_OK.
3315 (Process_Conditional_ABE_Access): Suppress futher elaboration warnings
3316 when already in this mode or when the attribute or target have warnings
3317 suppressed.
3318 (Process_Conditional_ABE_Activation_Impl): Do not emit any diagnostics
3319 if warnings are suppressed.
3320 (Process_Conditional_ABE_Call): Suppress further elaboration warnings
3321 when already in this mode, or the target or call have warnings
3322 suppressed.
3323 (Process_Conditional_ABE_Call_Ada): Do not emit any diagnostics if
3324 warnings are suppressed.
3325 (Process_Conditional_ABE_Call_SPARK): Do not emit any diagnostics if
3326 warnings are suppressed.
3327 (Process_Conditional_ABE_Instantiation): Suppress further elaboration
3328 warnings when already in this mode or when the instantiation has
3329 warnings suppressed.
3330 (Process_Conditional_ABE_Instantiation_Ada): Do not emit any
3331 diagnostics if warnings are suppressed.
3332 (Process_Conditional_ABE_Variable_Assignment_Ada): Use the more
3333 specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
3334 (Process_Conditional_ABE_Variable_Assignment_SPARK): Use the more
3335 specific Is_Elaboration_Warnings_OK_Id rather than Warnings_Off.
3336 (Process_Task_Object): Suppress further elaboration warnings when
3337 already in this mode, or when the object, activation call, or task type
3338 have warnings suppressed. Update the processing state to indicate that
3339 the path goes through a task body.
3340 * sinfo.adb (Is_Elaboration_Warnings_OK_Node): Accept attribute
3341 references.
3342 (Set_Is_Elaboration_Warnings_OK_Node): Accept attribute references.
3343 * sinfo.ads: Attribute Is_Elaboration_Warnings_OK_Node now applies to
3344 attribute references.
3345
3346 2018-05-23 Piotr Trojanek <trojanek@adacore.com>
3347
3348 * einfo.ads: Minor reformatting.
3349
3350 2018-05-23 Ed Schonberg <schonberg@adacore.com>
3351
3352 * sem_ch3.adb (Analyze_Object_Declaration): If expression is an
3353 anonymous_access_to_ subprogram formal, apply a conversion to force an
3354 accsssibility check that will fail statically, enforcing 3.10.2 (13).
3355
3356 2018-05-23 Daniel Mercier <mercier@adacore.com>
3357
3358 * gnat1drv.adb: Turn off length expansion in CodePeer mode.
3359
3360 2018-05-23 Bob Duff <duff@adacore.com>
3361
3362 * freeze.adb: (Check_Address_Clause): Deal with build-in-place
3363 aggregates in addition to build-in-place calls.
3364
3365 2018-05-23 Bob Duff <duff@adacore.com>
3366
3367 * einfo.ads: Minor reformatting.
3368 * sem_ch3.adb: Likewise.
3369 * sinfo.ads: Likewise.
3370
3371 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3372
3373 * exp_ch3.adb (Default_Initialize_Object): Do not optimize scalar array
3374 initialization when the component type has predicates.
3375 * exp_ch4.adb (Expand_N_Allocator): Do not optimize scalar array
3376 allocation when the component type has predicates.
3377
3378 2018-05-23 Hristian Kirtchev <kirtchev@adacore.com>
3379
3380 * einfo.adb, exp_disp.adb, sem_ch3.adb, sem_ch6.adb, sem_prag.adb:
3381 Minor reformatting.
3382
3383 2018-05-22 Justin Squirek <squirek@adacore.com>
3384
3385 * sem_ch6.adb (Analyze_Expression_Function): Propagate flags from the
3386 original function spec into the generated function spec due to
3387 expansion of expression functions during analysis.
3388 (Analyze_Subprogram_Body_Helper): Modify check on formal parameter
3389 references from the body to the subprogram spec in the case of
3390 expression functions because of inconsistances related to having a
3391 generated body.
3392 * libgnarl/s-osinte__android.ads: Flag parameters as unused.
3393 * libgnarl/s-osinte__lynxos178e.ads: Likewise.
3394 * libgnarl/s-osinte__qnx.adb: Likewise.
3395 * libgnarl/s-osinte__qnx.ads: Likewise.
3396
3397 2018-05-22 Doug Rupp <rupp@adacore.com>
3398
3399 * init.c (HAVE_ADJUST_CONTEXT_FOR_RAISE): Don't define on VxWorks7 for
3400 AArch64.
3401
3402 2018-05-22 Olivier Hainque <hainque@adacore.com>
3403
3404 * libgnat/a-except.adb (Exception_Propagation.Propagate_Exception):
3405 Expect an Exception_Occurence object, not an Access.
3406 (Complete_And_Propagate_Occurrence): Adjust accordingly.
3407 (Raise_From_Signal_Handler): Likewise.
3408 (Reraise_Occurrence_No_Defer): If we have a Machine_Occurrence
3409 available in the provided occurrence object, just re-propagate the
3410 latter as a bare "raise;" would do.
3411 * libgnat/a-exexpr.adb (Propagate_Exception): Adjust to spec change.
3412 * libgnat/a-exstat.adb (String_To_EO): Initialize X.Machine_Occurrence
3413 to null, to mark that the occurrence we're crafting from the stream
3414 contents is not being propagated (yet).
3415
3416 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
3417
3418 * exp_aggr.adb (Initialize_Ctrl_Record_Component): Insert the generated
3419 code for a transient component in line with the rest of the
3420 initialization code, rather than before the aggregate. This ensures
3421 that the component has proper visibility of the discriminants.
3422
3423 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
3424
3425 * adaint.c: Reorganize QNX-specific macros, use syspage to retreive the
3426 number of CPUs.
3427
3428 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
3429
3430 * sigtramp-qnx.c: Properly restore link register in signal trampoline.
3431
3432 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
3433
3434 * exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Strip away any
3435 conversions before extracting the value of the expression.
3436 * exp_ch3.adb (Default_Initialize_Object): Optimize the default
3437 initialization of an array of scalars.
3438 (Get_Simple_Init_Val): Add processing for array types. Remove the
3439 processing of strings because this case is already handled by the array
3440 case.
3441 (Needs_Simple_Initialization): Moved to Sem_Util.
3442 (Simple_Init_Array_Type): New routine.
3443 (Simple_Init_Initialize_Scalars_Type): Reimplemented to use the new
3444 facilities from Sem_Util.
3445 (Simple_Initialization_OK): New routine.
3446 * exp_ch3.ads (Needs_Simple_Initialization): Moved to Sem_Util.
3447 * exp_ch4.adb (Expand_N_Allocator): Optimize the default allocation of
3448 an array of scalars.
3449 * sem_prag.adb (Analyze_Float_Value): New routine.
3450 (Analyze_Integer_Value): New routine.
3451 (Analyze_Pragma): Reimplement the analysis of pragma Initialize_Scalars
3452 to handled the extended form of the pragma.
3453 (Analyze_Type_Value_Pair): New routine.
3454 * sem_util.adb: Add invalid value-related data structures.
3455 (Examine_Array_Bounds): New routine.
3456 (Has_Static_Array_Bounds): Reimplemented.
3457 (Has_Static_Non_Empty_Array_Bounds): New routine.
3458 (Invalid_Scalar_Value): New routine.
3459 (Needs_Simple_Initialization): Moved from Exp_Ch3.
3460 (Set_Invalid_Scalar_Value): New routines.
3461 * sem_util.ads (Has_Static_Non_Empty_Array_Bounds): New routine.
3462 (Invalid_Scalar_Value): New routine.
3463 (Needs_Simple_Initialization): Moved from Exp_Ch3.
3464 (Set_Invalid_Scalar_Value): New routines.
3465 * snames.ads-tmpl: Add names for the salar type families used by pragma
3466 Initialize_Scalars.
3467
3468 2018-05-22 Javier Miranda <miranda@adacore.com>
3469
3470 * exp_disp.adb (Make_DT): Initialize the External_Tag with an empty
3471 string when pragma No_Tagged_Streams is applicable to the tagged type,
3472 and initialize the Expanded_Name with an empty string when pragma
3473 Discard_Names is applicable to the tagged type.
3474
3475 2018-05-22 Ed Schonberg <schonberg@adacore.com>
3476
3477 * sem_ch6.adb (Check_Conformance): Add RM reference for rule that a
3478 formal subprogram is never subtype conformqnt, and thus cannot be the
3479 prefix of 'Access. Reject as well the attribute when applied to a
3480 renaming of a formal subprogram.
3481
3482 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
3483
3484 * exp_ch3.adb (Build_Array_Init_Proc): Update the call to
3485 Needs_Simple_Initialization.
3486 (Build_Init_Statements): Update the call to Get_Simple_Init_Val.
3487 (Check_Subtype_Bounds): Renamed to Extract_Subtype_Bounds. Update the
3488 profile and comment on usage.
3489 (Default_Initialize_Object): Do not use New_Copy_Tree to set the proper
3490 Sloc of a value obtained from aspect Default_Value because this could
3491 potentially replicate large trees. The proper Sloc is now set in
3492 Get_Simple_Init_Val.
3493 (Get_Simple_Init_Val): Reorganized by breaking the various cases into
3494 separate routines. Eliminate the use of global variables.
3495 (Init_Component): Update the call to Get_Simple_Init_Val.
3496 (Needs_Simple_Initialization): Update the parameter profile and all
3497 uses of T.
3498 (Simple_Init_Defaulted_Type): Copy the value of aspect Default_Value
3499 and set the proper Sloc.
3500 * exp_ch3.ads (Get_Simple_Init_Val): Update the parameter profile and
3501 comment on usage.
3502 (Needs_Simple_Initialization): Update the parameter profile.
3503
3504 2018-05-22 Patrick Bernardi <bernardi@adacore.com>
3505
3506 * sem_ch3.adb (Build_Discriminant_Constraints): Raise an error if the
3507 user tries to use a subtype indication as a discriminant constraint.
3508
3509 2018-05-22 Ed Schonberg <schonberg@adacore.com>
3510
3511 * exp_ch4.ads, exp_ch4.adb, exp_util.adb, expander.adb: Remove mention
3512 of N_Reduction_Expression and N_Reduction_Expression_Parameter.
3513 * par-ch4.adb: Remove parsing routines for reduction expressions.
3514 * sem.adb, sinfo.ads, sinfo.adb, sem_ch4.ads, sem_ch4.adb, sem_res.adb,
3515 sem_spark.adb, sprint.adb: Remove analysis routines for reduction
3516 expressions.
3517
3518 2018-05-22 Arnaud Charlet <charlet@adacore.com>
3519
3520 * sem_ch8.adb (Check_Frozen_Renaming): Do not emit error in
3521 Relaxed_RM_Semantics mode.
3522
3523 2018-05-22 Arnaud Charlet <charlet@adacore.com>
3524
3525 * comperr.adb (Delete_SCIL_Files): Take into account
3526 N_Generic_Package_Renaming_Declaration.
3527
3528 2018-05-22 Ed Schonberg <schonberg@adacore.com>
3529
3530 * sem_ch3.adb (Search_Derivation_Levels): Whenever a parent type is
3531 private, use the full view if available, because it may include renamed
3532 discriminants whose values are stored in the corresponding
3533 Stored_Constraint.
3534
3535 2018-05-22 Ed Schonberg <schonberg@adacore.com>
3536
3537 * einfo.ads, einfo.adb: New attribute Hidden_In_Formal_Instance,
3538 defined on packages that are actuals for formal packages, in order to
3539 set/reset the visibility of the formals of a formal package with given
3540 actuals, when there are subsequent uses of those formals in the
3541 enclosing generic, as required by RN 12.7 (10).
3542 * atree.ads, atree.adb: Add operations for Elist30.
3543 * atree.h: Add Elist30.
3544 * sem_ch12.adb (Analyze_Formal_Package_Instantiation): Collect formals
3545 that are not defaulted and are thus not visible within the current
3546 instance.
3547 (Check_Formal_Packages): Reset visibility of formals of a formal
3548 package that are not defaulted, on exit from current instance.
3549
3550 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
3551
3552 * sem_prag.adb (Analyze_Input_Output): Emit an error when a non-null,
3553 non-'Result output appears in the output list of a function.
3554
3555 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
3556
3557 * exp_attr.adb (Build_Array_VS_Func): Reimplemented.
3558 (Build_Record_VS_Func): Reimplemented.
3559 (Expand_N_Attribute): Reimplement the handling of attribute
3560 'Valid_Scalars.
3561 * sem_attr.adb (Analyze_Attribute): Reimplement the handling of
3562 attribute 'Valid_Scalars.
3563 * sem_util.adb (Scalar_Part_Present): Reimplemented.
3564 (Validated_View): New routine.
3565 * sem_util.ads (Scalar_Part_Present): Update the parameter profile and
3566 comment on usage.
3567 (Validated_View): New routine.
3568 * doc/gnat_rm/implementation_defined_attributes.rst: Update the
3569 documentation of attribute 'Valid_Scalars.
3570 * gnat_rm.texi: Regenerate.
3571
3572 2018-05-22 Bob Duff <duff@adacore.com>
3573
3574 * binde.adb: (Choose): Ignore a pragma Elaborate_Body that appears in
3575 the spec of a SAL_Interface package.
3576
3577 2018-05-22 Ed Schonberg <schonberg@adacore.com>
3578
3579 * freeze.adb (Freeze_Entity): When analyzing delayed aspects of an
3580 entity E within a generic unit, indicate that there are no remaining
3581 delayed aspects after invoking Analyze_Aspects_At_Freeze_Point. The
3582 entity E is not frozen yet but the aspects should not be reanalyzed at
3583 the freeze point, which may be outside of the generic and may not have
3584 the proper visibility.
3585
3586 2018-05-22 Bob Duff <duff@adacore.com>
3587
3588 * doc/gnat_ugn/gnat_utility_programs.rst: Add documentation for
3589 the new --split-line-before-record, --indent-named-statements and
3590 --no-align-modes gnatpp switches.
3591
3592 2018-05-22 Ed Schonberg <schonberg@adacore.com>
3593
3594 * sem_prag.adb (Process_Compile_Time_Warning_Or_Error): Handle properly
3595 a second argument that is a constant of a given string value.
3596
3597 2018-05-22 Doug Rupp <rupp@adacore.com>
3598
3599 * sigtramp-vxworks-target.inc: Align stack to 128bits on AArch64.
3600
3601 2018-05-22 Jerome Lambourg <lambourg@adacore.com>
3602
3603 * sigtramp-qnx.c: Fix stack alignment issue in the signal trampoline.
3604
3605 2018-05-22 Ed Schonberg <schonberg@adacore.com>
3606
3607 * freeze.adb (Freeze_Fixed_Point_Type): If the first subtype has
3608 delayed aspects, analyze them now, os that the representation of the
3609 type (size, bounds) can be computed and validated.
3610
3611 2018-05-22 Olivier Hainque <hainque@adacore.com>
3612
3613 * libgnat/s-dwalin.adb (Enable_Cache): Skip symbols outside of the
3614 executable code section boundaries.
3615
3616 2018-05-22 Javier Miranda <miranda@adacore.com>
3617
3618 * locales.c: New implementation for the Ada.Locales package.
3619 * libgnat/a-locale.ads: Remove comment indicating that this is not
3620 implemented.
3621 * doc/gnat_rm/standard_library_routines.rst: Remove comment indicating
3622 that this is not implemented.
3623 * gnat_rm.texi: Regenerate.
3624
3625 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
3626
3627 * exp_ch5.adb, freeze.adb, pprint.adb, sem_ch4.adb, sem_res.adb: Minor
3628 reformattings.
3629
3630 2018-05-22 Justin Squirek <squirek@adacore.com>
3631
3632 * sem_ch12.adb (In_Same_Declarative_Part): Moved to sem_util.
3633 (Freeze_Subprogram_Body, Install_Body): Modify calls to
3634 In_Same_Declarative_Part.
3635 * sem_prag.adb (Analyze_Pragma-Pragma_Pure_Function): Add check to
3636 verify pragma declaration is within the same declarative list with
3637 corresponding error message.
3638 * sem_util.adb, sem_util.ads (In_Same_Declarative_Part): Moved from
3639 sem_ch12.adb and generalized to be useful outside the scope of
3640 freezing.
3641
3642 2018-05-22 Hristian Kirtchev <kirtchev@adacore.com>
3643
3644 * sem_ch6.adb (Analyze_Subprogram_Declaration): Set the proper
3645 categorization of the unit after processing the aspects in case one of
3646 its aspects is converted into a categorization pragma.
3647
3648 2018-05-21 Ed Schonberg <schonberg@adacore.com>
3649
3650 * freeze.adb (Warn_Overlay): Do not emit a wawrning on an object
3651 declaration with an explicit address clause and a type with default
3652 initialization, if the declaration carries an aspect
3653 Suppress_Initialization.
3654
3655 2018-05-21 Daniel Mercier <mercier@adacore.com>
3656
3657 * pprint.adb: Use mixed case for attribute names.
3658
3659 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
3660
3661 * sem_ch6.adb (Analyze_Generic_Subprogram_Body): Rename the call to
3662 Analyze_Aspect_Specifications_On_Body_Or_Stub.
3663 (Analyze_Subprogram_Body_Helper): Rename the calls to
3664 Analyze_Aspect_Specifications_On_Body_Or_Stub.
3665 * sem_ch9.adb (Analyze_Entry_Body): Rename the call to
3666 Analyze_Aspect_Specifications_On_Body_Or_Stub.
3667 * sem_ch10.adb: Add with and use clause for Sem_Ch13.
3668 (Analyze_Package_Body_Stub): Add constant Id. Decorate the package stub
3669 prior to analyzing its aspects.
3670 (Analyze_Protected_Body_Stub): Add constant Id. Decorate the package
3671 stub prior to analyzing its aspects. Save and restore the configuration
3672 switches.
3673 (Analyze_Task_Body_Stub): Add constant Id. Decorate the package stub
3674 prior to analyzing its aspects.
3675 * sem_ch13.adb (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
3676 to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
3677 * sem_ch13.ads (Analyze_Aspect_Specifications_On_Body_Or_Stub): Renamed
3678 to Analyze_Aspects_On_Subprogram_Body_Or_Stub.
3679 * sem_prag.adb: Code reformatting.
3680 (Analyze_Refined_Depends_Global_Post): Consider task body stubs.
3681
3682 2018-05-21 Jerome Lambourg <lambourg@adacore.com>
3683
3684 * gcc-interface/Makefile.in: Add g-soliop__qnx.ads to the runtime build
3685 for QNX.
3686
3687 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
3688
3689 * exp_cg.adb: Remove with and use clause for Exp_Disp.
3690 * exp_ch9.adb: Remove with and use clause for Exp_Disp.
3691 * exp_disp.adb (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
3692 (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
3693 (Is_Predefined_Internal_Operation): Moved to Sem_Util.
3694 * exp_disp.ads (Is_Predefined_Dispatching_Operation): Moved to Sem_Util.
3695 (Is_Predefined_Interface_Primitive): Moved to Sem_Util.
3696 (Is_Predefined_Internal_Operation): Moved to Sem_Util.
3697 * exp_dist.adb: Remove with and use clause for Exp_Disp.
3698 * freeze.adb: Remove with and use clause for Exp_Disp.
3699 * sem_cat.adb: Remove with and use clause for Exp_Disp.
3700 * sem_ch6.adb: Remove with and use clause for Exp_Disp.
3701 * sem_ch12.adb: Remove with and use clause for Exp_Disp.
3702 * sem_elab.adb (Check_Overriding_Primitive): Do not process predefined
3703 primitives.
3704 * sem_util.adb: Remove with and use clause for Exp_Disp.
3705 (Is_Predefined_Dispatching_Operation): Moved from Exp_Disp.
3706 (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
3707 (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
3708 * sem_util.ads (Is_Predefined_Dispatching_Operation): Moved from
3709 Exp_Disp.
3710 (Is_Predefined_Interface_Primitive): Moved from Exp_Disp.
3711 (Is_Predefined_Internal_Operation): Moved from Exp_Disp.
3712
3713 2018-05-21 Ed Schonberg <schonberg@adacore.com>
3714
3715 * sem_res.adb (Valid_Conversion): Improve error message on an illegal
3716 type conversion whose expression has a limited view of a type.
3717
3718 2018-05-21 Ed Schonberg <schonberg@adacore.com>
3719
3720 * exp_ch5.adb (Build_Formal_Container_Iteration): If source has
3721 explicit name for iterator loop, preserve that name in expanded
3722 construct, for possible use in exit statements.
3723
3724 2018-05-21 Javier Miranda <miranda@adacore.com>
3725
3726 * sem_ch4.adb (Analyze_Membership_Op): Avoid compiler crash when the
3727 spec of a unit has Ada 2012 membership tests with multiple choices and
3728 the unit body is not compiled under Ada 2012 mode.
3729
3730 2018-05-21 Doug Rupp <rupp@adacore.com>
3731
3732 * sigtramp-vxworks-target.inc: Set cfa_reg properly from sigcontext
3733 pregs.
3734 (CFI_COMMON_REGS): Restore LR jic probed from prologue.
3735 (REGNO_PC_OFFSET): Change to correct value for Aarch64.
3736
3737 2018-05-21 Jose Ruiz <ruiz@adacore.com>
3738
3739 * doc/gnat_ugn/gnat_utility_programs.rst, exp_attr.adb,
3740 libgnarl/s-tassta.adb: Minor typo fixes
3741
3742 2018-05-21 Ed Schonberg <schonberg@adacore.com>
3743
3744 * sem_ch4.adb (Analyze_One_Call): Recognize complex cases where an
3745 indexed call originally in prefix forn is itself the prefix of a
3746 further call.
3747
3748 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
3749
3750 * sem_eval.adb (Is_Null_Range): Clarify access to the full view of a
3751 type.
3752 (Not_Null_Range): Same as above.
3753
3754 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
3755
3756 * exp_ch3.adb: Minor reformatting.
3757 * exp_ch6.adb: Likewise.
3758 * freeze.adb: Likewise.
3759 * inline.adb: Likewise.
3760 * sem_util.adb: Likewise.
3761
3762 2018-05-21 Yannick Moy <moy@adacore.com>
3763
3764 * inline.adb (Expand_Inlined_Call.Process_Formals): Use a type
3765 conversion instead of an unchecked type conversion when inlining a
3766 return statement, unless type qualification is required (for character
3767 and string literal) or no check can result from the conversion (for
3768 access types).
3769 * opt.ads: Update comment.
3770
3771 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
3772
3773 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Install the elaboration
3774 model of the compilation unit spec, if any.
3775 * sem_ch7.adb (Analyze_Package_Body_Helper): Install the elaboration
3776 model of the compilation unit spec, if any.
3777 * sem_ch10.adb (Analyze_Subunit): Install the elaboration model of the
3778 parent compilation unit spec, if any.
3779 * sem_elab.adb (Check_Elaboration_Scenarios): Restore the elaboration
3780 model of the main unit.
3781 (Is_Same_Unit): The routine now uses Unit_Entity.
3782 (Is_Subunit): Removed.
3783 (Normalize_Unit): Removed.
3784 (Unit_Entity): New routine.
3785 * sem_prag.adb (Analyze_Pragma): Reimplement the handling of pragma
3786 Elaboration_Checks. The analysis now ensures that the pragma appears at
3787 the configuration level, and on the initial declaration of a unit.
3788 Other placements are either flagged as illegal, or ignored.
3789 (Check_Duplicate_Elaboration_Checks_Pragma): New routine.
3790 (Ignore_Elaboration_Checks_Pragma): New routine.
3791 * sem_util.adb (Install_Elaboration_Model): New routine.
3792 * sem_util.ads (Install_Elaboration_Model): New routine.
3793 * doc/gnat_rm/implementation_defined_pragmas.rst: Update the
3794 documentation of pragma Elaboration_Checks.
3795 * gnat_rm.texi: Regenerate.
3796
3797 2018-05-21 Olivier Hainque <hainque@adacore.com>
3798
3799 * libgnat/s-trasym__dwarf.adb (Executable_Name): Return argv[0] instead
3800 of empty string when argv[0] couldn't be found on PATH.
3801 (Enable_Cache): Raise Program_Error instead of attempting a null
3802 pointer dereference when the Exec_Module initialization failed.
3803
3804 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
3805
3806 * libgnarl/a-reatim.ads (Clock_Time): Remove External aspect.
3807 * libgnarl/a-taside.ads (Tasking_State): Likewise.
3808 * libgnat/a-calend.ads (Clock_Time): Likewise.
3809
3810 2018-05-21 Yannick Moy <moy@adacore.com>
3811
3812 * sem_ch6.adb (Analyze_Procedure_Call): Refine test to recognize prefix
3813 call notation in inlined call in GNATprove mode.
3814
3815 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
3816
3817 * einfo.adb (Is_External_State): An abstract state is also external
3818 when it is declared with option "synchronous".
3819 * einfo.ads: Update the documentation of synthesized attribute
3820 Is_External_State.
3821 * sem_util.adb (Find_Simple_Properties): New routine.
3822 (Is_Enabled_External_Property): New routine.
3823 (State_Has_Enabled_Property): Reimplemented. The two flavors of option
3824 External have precedence over option Synchronous when determining
3825 whether a property is in effect.
3826
3827 2018-05-21 Yannick Moy <moy@adacore.com>
3828
3829 * sem_eval.adb (Static_Length): Take into account case of variable of
3830 subtype string literal.
3831
3832 2018-05-21 Olivier Hainque <hainque@adacore.com>
3833
3834 * libgnat/s-objrea.ads (Get_Memory_Bounds): Rename as Get_Xcode_Bounds.
3835 (Object_Section): Rename Flag_Alloc component as Flag_Xcode.
3836 * libgnat/s-objrea.adb (Get_Xcode_Bounds): Adjust to new subprogram and
3837 component name.
3838 (Get_Section, ELF case): Set Flag_Xcode from SHF_EXECINSTR.
3839 * libgnat/s-dwalin.adb (Open): Adjust to the Get_Memory_Bounds name
3840 change.
3841
3842 2018-05-21 Olivier Hainque <hainque@adacore.com>
3843
3844 * libgnat/s-dwalin.ads (Dwarf_Context): Change type of Load_Address to
3845 Address, and type of Low, High to Storage_Offset.
3846 (Low): Rename as Low_Address and convey that the return value is a
3847 runtime reference accounting for a load address.
3848 * libgnat/s-dwalin.adb (Read_Aranges_Entry): Adjust to the
3849 address/offset type changes.
3850 (Aranges_Lookup): Likewise.
3851 (Symbolic_Address): Likewise.
3852 (Symbolic_Traceback): Likewise.
3853 (Dump_Cache): Likewise.
3854 (Is_Inside): Likewise.
3855 (Open): Likewise.
3856 (Set_Load_Address): Likewise.
3857 (Low_Address): Likewise, and account for C.Load_Address.
3858 * libgnat/s-trasym__dwarf.adb (Lt): Use Low_Address instead of Low.
3859 (Multi_Module_Symbolic_Traceback): Compare address in traceback
3860 with module Low_Address instead of Low.
3861
3862 2018-05-21 Olivier Hainque <hainque@adacore.com>
3863
3864 * libgnat/s-dwalin.ads (Dwarf_Context): Rename Load_Slide as
3865 Load_Address.
3866 * libgnat/s-dwalin.adb (Is_Inside): Adjust accordingly.
3867 (Set_Load_Address): Likewise.
3868 (Symbolic_Traceback): Likewise.
3869
3870 2018-05-21 Olivier Hainque <hainque@adacore.com>
3871
3872 * libgnat/s-trasym__dwarf.adb (Add_Module_To_Cache): Expect a
3873 Load_Address argument and pass it down to Init_Module.
3874 * libgnat/s-tsmona__linux.adb (Build_Cache_For_All_Modules): Pass
3875 lm.l_addr as the Load_Address to Add_Module_To_Cache.
3876
3877 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
3878
3879 * einfo.adb (Has_Discriminants): Stronger assertion.
3880 (Set_Has_Discriminants): Stronger assertion.
3881 * sem_ch13.adb (Push_Scope_And_Install_Discriminants): Adapt to respect
3882 the stronger assertion on Has_Discriminant.
3883 (Uninstall_Discriminants_And_Pop_Scope): Same as above.
3884 * sem_util.adb (New_Copy_Tree): Same as above.
3885 * sem_ch7.adb (Generate_Parent_References): Prevent calls to
3886 Has_Discriminant on non-type entities that might happen when the
3887 compiled code has errors.
3888 * sem_ch3.adb (Derived_Type_Declaration): Only call
3889 Set_Has_Discriminant on type entities.
3890
3891 2018-05-21 Arnaud Charlet <charlet@adacore.com>
3892
3893 * exp_unst.adb (Unnest_Subprogram): Unnest all subprograms relevant for
3894 code generation.
3895
3896 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
3897
3898 * lib.ads: Fix typo in enumeration in comment.
3899
3900 2018-05-21 Ed Schonberg <schonberg@adacore.com>
3901
3902 * sem_attr.adb (Analyze_Attribute, case Scalar_Storage_Order): The
3903 attribute reference is legal within a generic unit when the prefix is a
3904 formal private type.
3905
3906 2018-05-21 Hristian Kirtchev <kirtchev@adacore.com>
3907
3908 * exp_ch7.adb (Establish_Transient_Scope): Code cleanup. Do not
3909 delegate the secondary stack management when there is no suitable
3910 transient context, and the transient scope was intended to manage the
3911 secondary stack because this causes premature reclamation. Change the
3912 transient scope creation logic by special casing assignment statements
3913 of controlled components for type initialization procedures.
3914 (Find_Node_To_Be_Wrapped): Renamed to Find_Transient_Context. Update
3915 the comment on usage.
3916 (Find_Transient_Context): Change the initinte loop into a while loop.
3917 Iterations schemes and iterator specifications are not valid transient
3918 contexts because they rely on special processing. Assignment statements
3919 are now treated as a normal transient context, special cases are
3920 handled by the caller. Add special processing for pragma Check.
3921 (Is_OK_Construct): Removed. Its functionality has been merged in
3922 routine Find_Transient_Context.
3923 * sem_ch5.adb (Check_Call): Reimplemented. Add code to properly
3924 retrieve the subprogram being invoked. Use a more accurate predicate
3925 (Requires_Transient_Scope) to determine that the function will emply
3926 the secondary stack.
3927
3928 2018-05-21 Piotr Trojanek <trojanek@adacore.com>
3929
3930 * ada_get_targ.adb: Fix subprogram body headers.
3931 * adabkend.adb: Likewise.
3932 * checks.adb: Likewise.
3933 * exp_ch3.adb: Likewise.
3934 * exp_ch5.adb: Likewise.
3935 * exp_ch9.adb: Likewise.
3936 * exp_dist.adb: Likewise.
3937 * exp_tss.adb: Likewise.
3938 * inline.adb: Likewise.
3939 * lib-writ.adb: Likewise.
3940 * lib-xref-spark_specific.adb: Likewise.
3941 * libgnarl/s-osinte__darwin.adb: Likewise.
3942 * libgnarl/s-stusta.adb: Likewise.
3943 * libgnarl/s-taprop__solaris.adb: Likewise.
3944 * libgnarl/s-tposen.adb: Likewise.
3945 * libgnarl/s-vxwext__kernel-smp.adb: Likewise.
3946 * libgnarl/s-vxwext__kernel.adb: Likewise.
3947 * libgnat/a-btgbso.adb: Likewise.
3948 * libgnat/a-cfdlli.adb: Likewise.
3949 * libgnat/a-cfhama.adb: Likewise.
3950 * libgnat/a-cfinve.adb: Likewise.
3951 * libgnat/a-cimutr.adb: Likewise.
3952 * libgnat/a-coboho.adb: Likewise.
3953 * libgnat/a-cofove.adb: Likewise.
3954 * libgnat/a-cofuve.adb: Likewise.
3955 * libgnat/a-comutr.adb: Likewise.
3956 * libgnat/a-exexda.adb: Likewise.
3957 * libgnat/a-tags.adb: Likewise.
3958 * libgnat/a-tideau.adb: Likewise.
3959 * libgnat/a-wtdeau.adb: Likewise.
3960 * libgnat/a-ztdeau.adb: Likewise.
3961 * libgnat/g-alleve.adb: Likewise.
3962 * libgnat/s-excdeb.adb: Likewise.
3963 * libgnat/s-parint.adb: Likewise.
3964 * libgnat/s-shasto.adb: Likewise.
3965 * libgnat/s-traceb__hpux.adb: Likewise.
3966 * prepcomp.adb: Likewise.
3967 * sem_ch4.adb: Likewise.
3968 * sem_ch6.adb: Likewise.
3969 * sem_dist.adb: Likewise.
3970 * sem_prag.adb: Likewise.
3971 * sem_util.adb: Likewise.
3972 * sinfo.adb: Likewise.
3973 * switch.adb: Likewise.
3974
3975 2018-05-04 John Marino <gnugcc@marino.st>
3976
3977 PR ada/85635
3978 * link.c (BSD platforms): Add missing backslash.
3979
3980 2018-04-27 Eric Botcazou <ebotcazou@adacore.com>
3981
3982 PR ada/85540
3983 * init.c (__gnat_handle_vms_condition): Add missing parentheses.
3984
3985 2018-04-25 Eric Botcazou <ebotcazou@adacore.com>
3986
3987 PR ada/85007
3988 * gnat_ugn.texi: Regenerate.
3989
3990 2018-03-23 Eric Botcazou <ebotcazou@adacore.com>
3991
3992 PR ada/85007
3993 * gnatlink.adb (Gnatlink): Remove handling of -b switch.
3994 * doc/gnat_ugn/building_executable_programs_with_gnat.rst (gnatlink):
3995 Remove documentation of -b switch.
3996
3997 2018-03-23 Eric Botcazou <ebotcazou@adacore.com>
3998
3999 PR ada/85036
4000 * gnatlink.adb (Process_Args): Drop existing link switches if multiple
4001 switches are passed for --LINK.
4002
4003 2018-03-12 Eric Botcazou <ebotcazou@adacore.com>
4004
4005 PR ada/82813
4006 * gcc-interface/misc.c (gnat_post_options): Disable string overflow
4007 warnings.
4008
4009 2018-03-10 Eric Botcazou <ebotcazou@adacore.com>
4010
4011 * gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
4012 Consider only entities for objects.
4013
4014 2018-03-07 Sebastian Huber <sebastian.huber@embedded-brains.de>
4015
4016 * gcc-interface/Makefile.in (OSCONS_CPP): Remove redundant
4017 $(GNATLIBCFLAGS).
4018 (OSCONS_EXTRACT): Add $(GNATLIBCFLAGS_FOR_C).
4019
4020 2018-03-06 Eric Botcazou <ebotcazou@adacore.com>
4021
4022 * gcc-interface/trans.c (convert_with_check): Fix typo in the condition
4023 guarding the overflow check emitted for the upper bound of a floating-
4024 point conversion.
4025
4026 2018-03-06 Eric Botcazou <ebotcazou@adacore.com>
4027
4028 * gcc-interface/utils.c (def_builtin_1): Bail out on error_mark_node.
4029
4030 2018-02-28 Eric Botcazou <ebotcazou@adacore.com>
4031
4032 * libgnat/i-cexten.ads (Float_128): New type.
4033
4034 2018-02-02 Eric Botcazou <ebotcazou@adacore.com>
4035
4036 * gcc-interface/decl.c (array_type_has_nonaliased_component): Return
4037 false if the component type is a pointer.
4038
4039 2018-01-11 Gary Dismukes <dismukes@adacore.com>
4040
4041 * exp_ch3.adb (Default_Initialize_Object): Call New_Copy_Tree on the
4042 result of Get_Simple_Init_Value and pass the source location of the
4043 object declaration's object_definition.
4044
4045 2018-01-11 Ed Schonberg <schonberg@adacore.com>
4046
4047 * exp_ch6.adb (Make_Build_In_Place_Call_In_Object_Declaration): Handle
4048 properly object declarations with initializations that are
4049 build-in-place function calls, when there is an address specification,
4050 either as an aspect specification or an explicit attribute
4051 specification clause, for the initialized object.
4052 * freeze.adb (Check_Address_Clause): Do not remove side-effects from
4053 initial expressions in the case of a build-in-place call.
4054
4055 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
4056
4057 * sem_eval.adb (Is_Null_Range): Retrieve the full view when called on a
4058 private (sub)type; refactor to avoid early return statement.
4059 (Not_Null_Range): Same as above.
4060
4061 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4062
4063 * freeze.adb (Freeze_Entity): Ensure that a Ghost type is not
4064 concurrent, nor effectively volatile.
4065 * ghost.adb (Check_Ghost_Type): New routine.
4066 * ghost.ads (Check_Ghost_Type): New routine.
4067 * sem_util.adb (Is_Declaration): Reimplemented. The routine can now
4068 consider specific subsets of declarations.
4069 (Is_Declaration_Other_Than_Renaming): Removed. Its functionality is
4070 replicated by Is_Declaration.
4071 * sem_util.ads (Is_Declaration): New parameter profile. Update the
4072 comment on usage.
4073 (Is_Declaration_Other_Than_Renaming): Removed.
4074
4075 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4076
4077 * sem_ch5.adb (Analyze_Assignment): Assignments to variables that act
4078 as Part_Of consituents of single protected types are illegal when they
4079 take place inside a protected function.
4080 (Diagnose_Non_Variable_Lhs): Use Within_Function to check for an
4081 enclosing function.
4082 (Is_Protected_Part_Of_Constituent): New routine.
4083 (Within_Function): New routine.
4084
4085 2018-01-11 Arnaud Charlet <charlet@adacore.com>
4086
4087 Bump copyright notices to 2018.
4088
4089 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4090
4091 * binde.adb, par-ch6.adb, par-ch9.adb, sem_ch12.adb, sem_ch13.adb:
4092 Minor reformatting.
4093
4094 2018-01-11 Justin Squirek <squirek@adacore.com>
4095
4096 * par-ch6.adb (Scan_Body_Or_Expression_Function): Add additional check
4097 to make sure a given expression function is properly parenthesized.
4098
4099 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4100
4101 * sem_ch6.adb (Analyze_Subprogram_Body_Helper): Check the
4102 categorization of a subprogram body which does not complete a previous
4103 declaration.
4104
4105 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4106
4107 * sem_ch10.adb (Check_Private_Child_Unit): Ensure that the enclosing
4108 scope of package Ada is Standard.
4109
4110 2018-01-11 Ed Schonberg <schonberg@adacore.com>
4111
4112 * sem_ch13.adb (Replace_Type_Ref): Handle properly reference to a
4113 subcomponent of the current entity when building the body for a dynamic
4114 predicate function for a record with composite subcomponents.
4115
4116 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4117
4118 * exp_aggr.adb (Convert_Aggr_In_Object_Decl): Update the call to
4119 Establish_Transient_Scope.
4120 (Convert_To_Assignments): Update the call to Establish_Transient_Scope.
4121 (Expand_Array_Aggregate): Update the call to Establish_Transient_Scope.
4122 * exp_ch6.adb (Expand_Call_Helper): Update the call to
4123 Establish_Transient_Scope.
4124 (Make_Build_In_Place_Call_In_Object_Declaration): Update the call to
4125 Establish_Transient_Scope.
4126 * exp_ch7.adb (Establish_Transient_Scope): Restructured. Delegate the
4127 management of the secondary stack to an enclosing scope if there is no
4128 suitable construct to wrap, and the transient scope was intended to
4129 manage the secondary stack.
4130 (Find_Node_To_Be_Wrapped): Restructured. A case_statement_alternative
4131 is a valid boundary for a transient expression which comes from the
4132 statements of the alternative, otherwise alternatives cannot be
4133 wrapped. Assignments of controlled objects which have controlled
4134 actions suppressed now stop the traversal as there is no point in
4135 looking for an enclosing construct. Add several N_xxx_Body choices to
4136 the termination conditions for completeness.
4137 * exp_ch7.ads (Establish_Transient_Scope): Update the parameter profile
4138 and the associated comment on usage.
4139 * exp_smem.adb (Add_Shared_Var_Lock_Procs): Update the call to
4140 Establish_Transient_Scope.
4141 (Add_Write_After): Update the call to Establish_Transient_Scope.
4142 * sem_res.adb (Check_Initialization_Call): Removed.
4143 (Resolve_Actuals): Account for additional cases where finalization
4144 actions are required by utilizing predicate Needs_Finalization rather
4145 than Is_Controlled.
4146 (Resolve_Call): Type initialization procedures can now utilize
4147 transient scopes to manage the secondary stack, thus preventing leaks
4148 during initialization. Remove the previous kludgy algorithm which
4149 attempts to manage the secondary stack at the object creation site.
4150
4151 2018-01-11 Jerome Lambourg <lambourg@adacore.com>
4152
4153 * libgnat/g-soliop__qnx.ads: New.
4154 * adaint.c, adaint.h, cstreams.c, s-oscons-tmplt.c, sysdep.c: Update
4155 for QNX.
4156
4157 2018-01-11 Bob Duff <duff@adacore.com>
4158
4159 * par-ch9.adb (P_Protected_Operation_Declaration_Opt): Give an error if
4160 a null procedure occurs in a protected definition.
4161
4162 2018-01-11 Bob Duff <duff@adacore.com>
4163
4164 * binderr.ads, namet.ads: Minor reformatting.
4165
4166 2018-01-11 Bob Duff <duff@adacore.com>
4167
4168 * doc/gnat_ugn/gnat_utility_programs.rst: Improve documentation of
4169 xml2gnat.
4170
4171 2018-01-11 Bob Duff <duff@adacore.com>
4172
4173 * binde.adb (Force_Elab_Order): Give an error if there are duplicate
4174 unit names.
4175
4176 2018-01-11 Ed Schonberg <schonberg@adacore.com>
4177
4178 * sem_ch6.adb (Freeze_Expr_Types): If an access value is the
4179 controlling argument of a dispatching call. freeze the corresponding
4180 designated type.
4181
4182 2018-01-11 Ben Brosgol <brosgol@adacore.com>
4183
4184 * doc/Makefile: Add Sphinx option -W to treat warnings as errors.
4185
4186 2018-01-11 Ben Brosgol <brosgol@adacore.com>
4187
4188 * doc/gnat_rm/implementation_defined_aspects.rst: Minor type/wording
4189 corrections.
4190 * gnat_rm.texi: Regenerate.
4191
4192 2018-01-11 Ed Schonberg <schonberg@adacore.com>
4193
4194 * sem_ch12.adb (Check_Fixed_Point_Type): Do not apply check if the
4195 formsl type corresponding to the actual fixed point type is private,
4196 because in this case there can be no suspicious arithmetic operations
4197 in the generic unless they reference a formal subprogram. Clarify
4198 warning.
4199
4200 2018-01-11 Javier Miranda <miranda@adacore.com>
4201
4202 * exp_util.adb (Remove_Side_Effects): No action done for functions
4203 returning class-wide types since it requires generating code using
4204 'reference and the CCG target has no secondary stack.
4205 * gnat1drv.adb: Disable building static dispatch tables when generating
4206 C code.
4207
4208 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
4209
4210 * libgnat/a-direio.ads, libgnat/a-sequio.ads, libgnat/a-ststio.ads,
4211 libgnat/a-textio.ads, libgnat/a-witeio.ads, libgnat/a-ztexio.ads
4212 (File_Type): Add Default_Initial_Condition aspect.
4213
4214 2018-01-11 Pascal Obry <obry@adacore.com>
4215
4216 * libgnat/s-os_lib.adb (Normalize_Pathname): New implementation.
4217
4218 2018-01-11 Bob Duff <duff@adacore.com>
4219
4220 * doc/gnat_ugn/gnat_utility_programs.rst: Rewrite gnatpp documentation
4221 to match what the Libadalang-based version does.
4222 * doc/gnat_ugn/about_this_guide.rst: Update reference.
4223
4224 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4225
4226 * sem_res.adb (Uses_SS): A controlled type requires the secondary stack
4227 if it contains at least one component declaration employing a function
4228 call returning on the secondary stack.
4229
4230 2018-01-11 Yannick Moy <moy@adacore.com>
4231
4232 * doc/gnat_rm/standard_and_implementation_defined_restrictions.rst:
4233 Update description of restriction SPARK_05 with SPARK 2014.
4234 * gnat_rm.texi: Regenerate.
4235
4236 2018-01-11 Vasiliy Fofanov <fofanov@adacore.com>
4237
4238 * doc/gnat_ugn/gnat_utility_programs.rst: Fix layout.
4239
4240 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4241
4242 * exp_aggr.adb, exp_ch9.adb, exp_util.adb, sem_aggr.adb, sem_ch3.adb,
4243 sem_res.adb, sem_util.adb: Minor reformatting.
4244
4245 2018-01-11 Ed Schonberg <schonberg@adacore.com>
4246
4247 * sem_prag.adb (Analyze_Pragma, case Predicate): Indicate that the type
4248 has a delayed aspect which must be processed at the point the type is
4249 frozen. This mimics what is done when the predicate is provided by a
4250 source aspect.
4251
4252 2018-01-11 Doug Rupp <rupp@adacore.com>
4253
4254 * init.c (vxworks): Add macro checks for __aarch64__.
4255
4256 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4257
4258 * exp_util.adb (Add_Failure_Expression): New routine.
4259 (Make_Predicate_Check): Reimplement the handling of Predicate_Failure.
4260 * sem_util.adb (Is_Current_Instance): Code cleanup.
4261
4262 2018-01-11 Patrick Bernardi <bernardi@adacore.com>
4263
4264 * libgnat/s-parame*.adb, libgnat/s-parame*.ads: Remove unneeded
4265 Default_Sec_Stack_Size.
4266 * libgnat/s-secsta.adb (SS_Allocate): Handle the fixed secondary stack
4267 limit check so that the integer index does not overflow. Check the
4268 dynamic stack allocation does not cause the secondary stack pointer to
4269 overflow.
4270 (SS_Info): Align colons.
4271 (SS_Init): Cover the case when bootstraping with an old compiler that
4272 does not set Default_SS_Size.
4273
4274 2018-01-11 Ed Schonberg <schonberg@adacore.com>
4275
4276 * sem_ch3.adb (Add_Internal_Interface_Entities): When checking the
4277 legality of an inherited operation that may require overriding, ignore
4278 primitive_wrappers that correspond to explicit operations that override
4279 an interface primitive.
4280 * exp_util.adb (Build_Class_Wide_Expression, Replace_Entity): If the
4281 operation to which the class-wide expression applies is a protected op.
4282 with a primitive_wrapper, verify that the updated inherited expression
4283 does not contain an internal call to a protected function. This
4284 completes the implementation of AI12-0166.
4285
4286 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4287
4288 * ali.adb: Document the remaining letters available for ALI lines.
4289 (Scan_ALI): A with clause is internal when it is encoded on a 'Z' line.
4290 * ali.ads: Update type With_Record. Field
4291 Implicit_With_From_Instantiation is no longer in use. Add field
4292 Implicit_With.
4293 * csinfo.adb (CSinfo): Remove the setup for attribute
4294 Implicit_With_From_Instantiation.
4295 * lib-writ.adb (Collect_Withs): Correct the logic which marks a unit as
4296 either implicitly or explicitly withed.
4297 (Is_Implicit_With_Clause): New routine.
4298 (Write_ALI): Rename array Implicit_With to Has_Implicit_With to avoid
4299 confusion with the with clause attribute by the same name.
4300 (Write_With_Lines): Update the emission of 'W', 'Y', and 'Z' headers.
4301 * rtsfind.adb (Maybe_Add_With): Code cleanup.
4302 * sem_ch8.adb (Present_System_Aux): Code cleanup.
4303 * sem_ch10.adb (Expand_With_Clause): Mark the with clause as generated
4304 for a parent unit.
4305 (Implicit_With_On_Parent): Mark the with clause as generated for a
4306 parent unit.
4307 * sem_ch12.adb (Inherit_Context): With clauses inherited by an
4308 instantiation are no longer marked as Implicit_With_From_Instantiation
4309 because they are already marked as implicit.
4310 * sem_elab.adb (Ensure_Prior_Elaboration_Static): Remove the kludge
4311 which marks implicit with clauses as related to an instantiation.
4312 * sinfo.adb (Implicit_With_From_Instantiation): Removed.
4313 (Parent_With): New routine.
4314 (Set_Implicit_With_From_Instantiation): Removed.
4315 (Set_Parent_With): New routine.
4316 * sinfo.ads: Update the documentation of attribute Implicit_With.
4317 Remove attribute Implicit_With_From_Instantiation along with
4318 occurrences in nodes. Add attribute Parent_With along with occurrences
4319 in nodes.
4320 (Implicit_With_From_Instantiation): Removed along with pragma Inline.
4321 (Parent_With): New routine along with pragma Inline.
4322 (Set_Implicit_With_From_Instantiation): Removed along with pragma Inline.
4323 (Set_Parent_With): New routine along with pragma Inline.
4324
4325 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4326
4327 * sem_util.adb (Find_Enclosing_Scope): Return the unique defining
4328 entity when the enclosing construct is a body.
4329
4330 2018-01-11 Patrick Bernardi <bernardi@adacore.com>
4331
4332 * exp_ch9.adb (Expand_N_Task_Type_Declaration): Simplified
4333 Secondary_Stack_Size handling as a pragma is now generated for the
4334 corresponding aspect instead of an attribute. Pragma expression is
4335 relocated instead of evaluated. Discriminant of the corresponding
4336 record type is referenced rather than the type discriminant.
4337 (Create_Secondary_Stack_For_Task, Make_Task_Create_Call): Update
4338 Secondary_Stack_Size rep item checks to only look for the pragma rep.
4339 * sem_ch13.adb (Analyze_One_Aspect): Transform
4340 Aspect_Secondary_Stack_Size into a pragma instead of an attribute
4341 because the attribute does not have visibility on a task type's
4342 discriminants when the type's definition is expanded.
4343 (Analyze_Attribute_Definition_Clause): Remove handling of
4344 Attribute_Secondary_Stack_Size.
4345 * snames.adb-tmpl, snames.ads-tmpl: Remove
4346 Attribute_Secondary_Stack_Size, no longer used.
4347
4348 2018-01-11 Justin Squirek <squirek@adacore.com>
4349
4350 * sem_ch8.adb: Minor comment fix.
4351
4352 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4353
4354 * exp_ch4.adb (Process_Action): Do not abandon the inspection of an
4355 individual action because the action may denote a complex expression,
4356 such as a case statement, which in turn may contain additional
4357 transient objects.
4358
4359 2018-01-11 Ed Schonberg <schonberg@adacore.com>
4360
4361 * sem_aggr.adb (Resolve_Iterated_Component_Association): Perform
4362 analysis on a copy of the expression with a copy of the index variable,
4363 because full expansion will rewrite construct into a loop with the
4364 original loop variable.
4365 * exp_aggr.adb (Gen_Assign): Defer analysis and resolution if the
4366 expression is an iterated component association. Full analysis takes
4367 place when construct is rewritten as a loop.
4368 (In_Place_Assign_OK, Safe_Component): An iterated_component_association
4369 is not safe for in-place assignment.
4370 * sem_util.adb (Remove_Entity): Handle properly the case of an isolated
4371 entity with no homonym and no other entity in the scope.
4372
4373 2018-01-11 Justin Squirek <squirek@adacore.com>
4374
4375 * sem_prag.adb (Analyze_Pragma:Pragma_Loop_Variant): Modify error
4376 message to be printed on the pragma argument identifier.
4377
4378 2018-01-11 Hristian Kirtchev <kirtchev@adacore.com>
4379
4380 * exp_util.adb (Build_Invariant_Procedure_Declaration): Set the last
4381 entity of the generated invariant procedure in order to construct a
4382 proper entity chain.
4383
4384 2018-01-11 Piotr Trojanek <trojanek@adacore.com>
4385
4386 * sem_ch13.adb (Build_Predicate_Functions): Fix minor issues in
4387 comment.
4388
4389 2018-01-11 Arnaud Charlet <charlet@adacore.com>
4390
4391 * einfo.ads, einfo.adb (Activation_Record_Component,
4392 Set_Activation_Record_Component, Set_Is_Uplevel_Referenced_Entity):
4393 Allow E_Discriminant.
4394
4395 2018-01-10 Eric Botcazou <ebotcazou@adacore.com>
4396
4397 * gcc-interface/decl.c (gnat_to_gnu_component_type): Apply the check
4398 for atomic access once the component size is taken into account and
4399 also do it if the component type is Atomic or Volatile_Full_Access.
4400
4401 2018-01-04 Eric Botcazou <ebotcazou@adacore.com>
4402
4403 * gnatvsn.ads: Bump copyright year.
4404
4405 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
4406 Alan Hayward <alan.hayward@arm.com>
4407 David Sherwood <david.sherwood@arm.com>
4408
4409 * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_BITSIZE
4410 as polynomial.
4411
4412 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
4413 Alan Hayward <alan.hayward@arm.com>
4414 David Sherwood <david.sherwood@arm.com>
4415
4416 * gcc-interface/misc.c (enumerate_modes): Treat GET_MODE_PRECISION
4417 as polynomial.
4418
4419 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
4420 Alan Hayward <alan.hayward@arm.com>
4421 David Sherwood <david.sherwood@arm.com>
4422
4423 * gcc-interface/utils.c (gnat_types_compatible_p): Handle
4424 polynomial TYPE_VECTOR_SUBPARTS.
4425
4426 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
4427 Alan Hayward <alan.hayward@arm.com>
4428 David Sherwood <david.sherwood@arm.com>
4429
4430 * gcc-interface/misc.c (enumerate_modes): Handle polynomial
4431 GET_MODE_NUNITS.
4432
4433 2018-01-03 Jakub Jelinek <jakub@redhat.com>
4434
4435 Update copyright years.
4436
4437 * gnat_ugn.texi: Bump @copying's copyright year.
4438 * gnat_rm.texi: Likewise.
4439 \f
4440 Copyright (C) 2018 Free Software Foundation, Inc.
4441
4442 Copying and distribution of this file, with or without modification,
4443 are permitted in any medium without royalty provided the copyright
4444 notice and this notice are preserved.