1. 11 Jun, 2018 30 commits
    • [Ada] Missing predicate function body for derived type in nested package · 20643f50
      This patch fixes a bug in the construction of predicate functions.  For a
      derived type, we must ensure that the parent type is already frozen so that its
      predicate function has been constructed already. This is necessary if the
      parent is declared in a nested package and its own freeze point has not been
      reached when the derived type is frozen by a local object declaration.
      
      2018-06-11  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* sem_ch13.adb (Build_Predicate_Functions): For a derived type, ensure
      	that its parent is already frozen so that its predicate function, if
      	any, has already been constructed.
      
      gcc/testsuite/
      
      	* gnat.dg/predicate1.adb: New testcase.
      
      From-SVN: r261422
      Ed Schonberg committed
    • [Ada] Reject violation of SPARK 6.1.4(12) with enclosing task unit · 577b1ab4
      SPARK 6.1.4(12) applies both to enclosing subprograms and enclosing task
      units, but the latter was not correctly rejected.
      
      2018-06-11  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* sem_prag.adb (Check_Mode_Restriction_In_Enclosing_Context): Adapt for
      	possible task unit as the enclosing context.
      
      gcc/testsuite/
      
      	* gnat.dg/spark1.adb, gnat.dg/spark1.ads: New testcase.
      
      From-SVN: r261421
      Yannick Moy committed
    • [Ada] Minor tweaks for Repinfo · e194729e
      2018-06-11  Eric Botcazou  <ebotcazou@adacore.com>
      
      gcc/ada/
      
      	* gnat1drv.adb: Remove use clause for Repinfo.
      	(Gnat1drv): Beef up comment about the interplay between -gnatc and
      	back-end annotations.  Use full qualified name for List_Rep_Info.
      
      From-SVN: r261420
      Eric Botcazou committed
    • [Ada] Make GNAT.Array_Split a preelaborable unit · 24d124a4
      This patch makes GNAT.Array_Split a preelaborable unit. As a result, it can be
      withed by other preelaborated untis.
      
      2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* libgnat/g-arrspl.ads: Add pragma Preelaborate.
      
      gcc/testsuite/
      
      	* gnat.dg/gnat_array_split1.adb, gnat.dg/gnat_array_split1.ads: New
      	testcase.
      
      From-SVN: r261419
      Hristian Kirtchev committed
    • [Ada] Simplify expansion of "and then" in CodePeer mode · 63254915
      2018-06-11  Arnaud Charlet  <charlet@adacore.com>
      
      gcc/ada/
      
      	* exp_ch4.adb (Expand_Record_Equality): Remove extraneous "True and
      	then" and general logical "ada" in codepeer mode.
      
      From-SVN: r261418
      Arnaud Charlet committed
    • [Ada] Crash on protected type entry family · 09adaa8d
      The compiler may blow up compiling a the body of a protected type that has a
      family entry whose entry index specification contains a call to a function.
      
      2018-06-11  Javier Miranda  <miranda@adacore.com>
      
      gcc/ada/
      
      	* exp_ch9.adb (Expand_N_Protected_Body): Add missing handling of
      	N_Call_Marker nodes.
      
      gcc/testsuite/
      
      	* gnat.dg/prot4.adb: New testcase.
      
      From-SVN: r261417
      Javier Miranda committed
    • [Ada] Minor reformatting · 3e6845df
      2018-06-11  Arnaud Charlet  <charlet@adacore.com>
      
      gcc/ada/
      
      	* exp_ch3.adb, exp_unst.adb, inline.adb, sem_prag.adb: Minor
      	reformatting.
      
      From-SVN: r261416
      Arnaud Charlet committed
    • [Ada] Add Suppressible argument to Assertion_Policy in documentation · 62458cc1
      2018-06-11  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* doc/gnat_rm/implementation_defined_pragmas.rst: Add Suppressible
      	argument to Assertion_Policy
      	* gnat_rm.texi: Regenerate.
      
      From-SVN: r261415
      Yannick Moy committed
    • [Ada] Do not query the representation information in CodePeer/GNATprove · a1971119
      Representation information generated when user calls the compiler with -gnatR
      switch is not available when running the frontend inside CodePeer or GNATprove.
      Do not query such information in that case, as this leads to spurious messages
      that it is not available.
      
      There is no impact on compilation.
      
      2018-06-11  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* gnat1drv.adb: Do not check representation information in CodePeer and
      	GNATprove modes, as these modes call a special backend instead of gigi,
      	so do not have the information.
      
      From-SVN: r261414
      Yannick Moy committed
    • [Ada] Mark extended return of unconstrained type as never inlined · d42dc0ad
      Calls to subprograms whose body was an extended return of an unconstrained
      type were marked as not inlined, while the subprogram itself was marked as
      always inlined. This was inconsistent and could lead to crash in GNATprove.
      Now such subprograms are marked as not candidates for inlining.
      
      This mostly impacts GNATprove, as it relates to frontend inlining which is
      not used anymore in normal compilation.
      
      2018-06-11  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* inline.adb (Build_Body_To_Inline): Consider case of extended return
      	of unconstrained type as one case where inlining is not supported.
      	(Expand_Inlined_Call): Remove special case for body as extended return
      	of unconstrained type.
      
      From-SVN: r261413
      Yannick Moy committed
    • [Ada] Do not force Part_Of on generic units · d05bdd90
      This fixes the code checking SPARK RM 7.2.6(3) so that generic child units
      are not forced to use Part_Of to relate their abstract state to the state
      of their parent.
      
      2018-06-11  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* sem_prag.adb (Analyze_Part_Of): Only allow Part_Of on non-generic
      	unit.
      	(Check_Missing_Part_Of): Do not force Part_Of on generic unit.
      
      gcc/testsuite/
      
      	* gnat.dg/part_of1-instantiation.adb,
      	gnat.dg/part_of1-instantiation.ads,
      	gnat.dg/part_of1-private_generic.adb,
      	gnat.dg/part_of1-private_generic.ads, gnat.dg/part_of1.ads: New
      	testcase.
      
      From-SVN: r261412
      Yannick Moy committed
    • [Ada] Don't split AND THEN expressions in GNATprove_Mode · 270c6b4d
      Splitting AND THEN expressions in contracts into separate pragma Check
      is only useful for compilation when the error message points to a failed
      conjunct. For proof it is of no use; for flow analysis it is annoying.
      Also, it makes debugging harder. Now it is disabled in GNATprove_Mode.
      
      Compilation is not affected, so no test provided.
      
      2018-06-11  Piotr Trojanek  <trojanek@adacore.com>
      
      gcc/ada/
      
      	* sem_ch13.adb (Analyze_Aspect_Specifications): Don't split AND THEN
      	expressions in Pre/Post contracts while in GNATprove_Mode.
      
      From-SVN: r261411
      Piotr Trojanek committed
    • [Ada] Fix handling of Pre/Post contracts with AND THEN expressions · f062a975
      Pre- and postconditions with top-level AND THEN expressions are broken down
      into checks of indivudial conjuncts for more precise error reporting. This
      rewrite interfers with detection of potentially unevaluadted use of 'Old,
      e.g. a contract like "Pre => Foo and then Bar" is rewritten into a two
      pragmas Check, for expressions "Foo" and "Bar", but the latter remains
      potentially unevaluted. This patch fixes detection of the AND THEN rewrite.
      
      This fixes inlining in the GNATprove mode, i.e. the following testc case must
      not emit a warning like:
      
      contract1.adb:14:07: info:
        no contextual analysis of "Foo" (in potentially unevaluated context)
      
      2018-06-11  Piotr Trojanek  <trojanek@adacore.com>
      
      gcc/ada/
      
      	* sem_util.adb (Is_Potentially_Unevaluated): Fix detection of contracts
      	with AND THEN expressions broken down into individual conjuncts.
      
      gcc/testsuite/
      
      	* gnat.dg/contract1.adb: New testcase.
      
      From-SVN: r261410
      Piotr Trojanek committed
    • [Ada] Unnesting: robustify analysis of block statements · acc257bb
      2018-06-11  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* exp_ch7.adb (Check_Unnesting_Elaboration_Code): Add guard.
      
      From-SVN: r261409
      Ed Schonberg committed
    • [Ada] Unnesting: fix handling of generic associations · d6cb7116
      2018-06-11  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* exp_unst.adb (Visit_Node): Skip generic associations.
      
      From-SVN: r261408
      Ed Schonberg committed
    • [Ada] Memtrack: have only one definition of fwrite · a8c316b2
      2018-06-11  Arnaud Charlet  <charlet@adacore.com>
      
      gcc/ada/
      
      	* libgnat/memtrack.adb (fwrite): Remove second definition.
      
      From-SVN: r261407
      Arnaud Charlet committed
    • [Ada] Wrong code in array aggregates of Ada coextensions · 7ffe26fc
      The compiler generates wrong code when an array aggregate with an others choice
      whose expression has nested object allocations (ie. others => new R (new S)) is
      used to initialize an array of access to discriminated types whose discriminant
      is an access type.
      
      2018-06-11  Javier Miranda  <miranda@adacore.com>
      
      gcc/ada/
      
      	* sinfo.ads (Is_Dynamic_Coextension): Adding documentation.
      	(Is_Static_Coextension): Adding documentation.
      	* sinfo.adb (Is_Dynamic_Coextension): Extending the assertion.
      	(Is_Static_Coextension): Extending the assertion.
      	* sem_util.adb (Mark_Allocator): Clear Is_Static_Coextension when
      	setting flag Is_Dynamic_Coextension (and vice versa).
      
      gcc/testsuite/
      
      	* gnat.dg/aggr23.adb, gnat.dg/aggr23_q.adb, gnat.dg/aggr23_tt.ads: New
      	testcase.
      
      From-SVN: r261406
      Javier Miranda committed
    • [Ada] Unnesting: fix handling of stubs · 345bb755
      2018-06-11  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* exp_unst.adb (Search_Subprograms): Handle explicitly stubs at the top
      	level of a compilation unit, becuase they may contain nested
      	subprograms that need an activation record.
      
      From-SVN: r261405
      Ed Schonberg committed
    • [Ada] Refactor compilation of Ada units in Makefile.rtl · 81b6ae1e
      2018-06-11  Arnaud Charlet  <charlet@adacore.com>
      
      gcc/ada/
      
      	* Makefile.rtl: Compile Ada files with $(ADAC) instead of $(CC).
      
      From-SVN: r261404
      Arnaud Charlet committed
    • [Ada] Minor reformatting · 6778c2ca
      2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* exp_ch11.adb, exp_unst.adb, inline.adb, sem_ch12.adb, sem_util.adb:
      	Minor reformatting.
      	* sinfo.ads: Fix a typo.
      
      From-SVN: r261403
      Hristian Kirtchev committed
    • [Ada] Crash with Inline_Always on a function with an extended return · d1ec7de5
      This patch fixes a crash on a unit with a function with the GNAT-specific
      Inline_Always pragma whose body is an extended return statement, when compiling
      with no optimization level specified.
      
      2018-06-11  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* inline.adb (Expand_Inlined_Call): If no optimization level is
      	specified, the expansion of a call to an Inline_Always function is
      	fully performed in the front-end even on a target that support back-end
      	inlining.
      
      gcc/testsuite/
      
      	* gnat.dg/inline_always1.adb: New testcase.
      
      From-SVN: r261402
      Ed Schonberg committed
    • [Ada] Bindgen: protect reference to System.Parameters with Sec_Stack_Used · 75441c4a
      2018-06-11  Arnaud Charlet  <charlet@adacore.com>
      
      gcc/ada/
      	* bindgen.adb (Gen_Adainit): Protect reference to System.Parameters
      	with Sec_Stack_Used.
      
      From-SVN: r261401
      Arnaud Charlet committed
    • [Ada] Performance degradation with references · 692918a9
      This patch modifies the creation of markers for variable references in the
      context of SPARK elaboration checks. Previously, prior to checking whether a
      reference requires such a marker, the compiler performed a logarithmic look up
      to determine whether the reference appears within a call. This action caused
      the compiler to degrade when a source program contains multiple (100,000s)
      references. Now, the compiler no longer performs the look up immediately.
      
      2018-06-11  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* sem_ch8.adb (Find_Direct_Name): Mode the declaration of
      	Is_Assignment_LHS further in. Use predicate
      	Needs_Variable_Reference_Marker to determine whether to create a
      	variable marker.
      	(Find_Expanded_Name): Mode the declaration of Is_Assignment_LHS further
      	in.  Use predicate Needs_Variable_Reference_Marker to determine whether
      	to create a variable marker.
      	* sem_elab.adb (Build_Variable_Reference_Marker): Remove the various
      	checks that determine whether the identifier or expanded name is a
      	suitable variable reference.  The checks are now performed by
      	Needs_Variable_Reference_Marker.
      	* sem_res.adb (Resolve_Actuals): Use predicate
      	Needs_Variable_Reference_Marker to determine whether to create a
      	variable marker.
      	* sem_util.adb (Needs_Variable_Reference_Marker): New routine.
      	* sem_util.ads (Needs_Variable_Reference_Marker): New routine.
      
      From-SVN: r261400
      Hristian Kirtchev committed
    • [Ada] Rename "GPL Edition" into "Community Edition" · 51b84f99
      2018-06-11  Valentine Reboul  <reboul@adacore.com>
      
      gcc/ada/
      
      	* doc/gnat_rm.rst, doc/gnat_ugn.rst: Rename "GPL Edition" into
      	"Community Edition".
      
      From-SVN: r261399
      Valentine Reboul committed
    • [Ada] Crash on instantiation of nested generic in private part · 73dc56ea
      This patch fixes a compiler abort on an instantiation of a generic nested
      within another instance, when the outer instance is declared in the visible
      part of a package and the inner intance is in the private part of the same
      package.
      
      2018-06-11  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* sem_ch12.adb (Install_Body): In order to determine the placement of
      	the freeze node for an instance of a generic nested within another
      	instance, take into account that the outer instance may be declared in
      	the visible part of a package and the inner intance may be in the
      	private part of the same package.
      
      gcc/testsuite/
      
      	* gnat.dg/nested_generic2.adb, gnat.dg/nested_generic2.ads,
      	gnat.dg/nested_generic2_g1.adb, gnat.dg/nested_generic2_g1.ads,
      	gnat.dg/nested_generic2_g2.ads: New testcase.
      
      From-SVN: r261398
      Ed Schonberg committed
    • [Ada] Remove obsolete code in Errout · 4847a76b
      This just removes obsolete code.  No functional changes.
      
      2018-06-11  Eric Botcazou  <ebotcazou@adacore.com>
      
      gcc/ada/
      
      	* errout.adb (Special_Msg_Delete): Remove handling of Atomic and VFA.
      
      From-SVN: r261397
      Eric Botcazou committed
    • [Ada] Avoid a stack overflow in 'Value for invalid long strings · c4ca0af4
      2018-06-11  Nicolas Roche  <roche@adacore.com>
      
      gcc/ada/
      
      	* libgnat/s-valuti.adb (Bad_Value): Ensure that we do not generate a
      	stack overflow while raising a constraint error.
      
      From-SVN: r261396
      Nicolas Roche committed
    • [Ada] Minor tweaks in Repinfo · 972d2984
      2018-06-11  Eric Botcazou  <ebotcazou@adacore.com>
      
      gcc/ada/
      
      	* repinfo.ads (Rep_Value): Use a single line.
      	* repinfo.adb (Rep_Value): Likewise.
      	(List_Attr): Do not use string concatenation.
      
      From-SVN: r261395
      Eric Botcazou committed
    • [Ada] Unnesting: improve handling of bounds for formal parameters · b516a1a9
      2018-06-11  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* exp_unst.adb (Visit_Node): Check reference to formal parameter of
      	current procedure, because the bounds of its type may be uplevel
      	references.
      
      From-SVN: r261394
      Ed Schonberg committed
    • Daily bump. · 8c6fc014
      From-SVN: r261393
      GCC Administrator committed
  2. 10 Jun, 2018 6 commits
  3. 09 Jun, 2018 4 commits
    • ieee_4.f90: xfail on i?86-*-freebsd* · 258b49ed
      2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
      
         * gfortran.dg/ieee/ieee_4.f90: xfail on i?86-*-freebsd*
         * gfortran.dg/ieee/large_4.f90: Ditto.
         * gfortran.dg/round_4.f90: Ditto.
      
      From-SVN: r261377
      Steven G. Kargl committed
    • re PR fortran/38351 (Poor error message for rank mismatch in operator args) · 1dd88f8b
      2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
       
      	PR fortran/38351
      	* resolve.c (resolve_operator): Provide better error message for
      	derived type entity used in an binary intrinsic numeric operator.
      
      2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/38351
      	* gfortran.dg/pr38351.f90: New test.
      	* gfortran.dg/typebound_operator_4.f03: Adjust for new error message.
      
      From-SVN: r261363
      Steven G. Kargl committed
    • re PR fortran/85138 (ICE with generic function) · 3cf89a7b
      2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/85138
      	PR fortran/85996
      	PR fortran/86051
      	* decl.c (gfc_match_char_spec): Use private namespace in attempt to
      	reduce a charlen to a constant.
      
      2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/85138
      	PR fortran/85996
      	PR fortran/86051
      	* gfortran.dg/pr85138_1.f90: New test.
      	* gfortran.dg/pr85138_2.f90: Ditto.
      	* gfortran.dg/pr85996.f90: Ditto.
      
      From-SVN: r261362
      Steven G. Kargl committed
    • re PR fortran/78278 (ICE in gfc_wide_memset, at fortran/scanner.c:153) · 4ea0af1d
      2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/78278
      	* data.c (gfc_assign_data_value): Re-arrange code to allow for
      	an error for double initialization of CHARACTER entities.
      
      2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/78278
      	* gfortran.dg/data_bounds_1.f90: Add -std=gnu option.
      	* gfortran.dg/data_char_1.f90: Ditto.
      	* gfortran.dg/pr78571.f90: Ditto.
      	* gfortran.dg/pr78278.f90: New test.
      
      From-SVN: r261361
      Steven G. Kargl committed