1. 10 Jul, 2019 40 commits
    • predicates.md (cint34_operand): Update SIGNED_34BIT_OFFSET_P call. · 4ded6adc
      2019-07-10  Michael Meissner  <meissner@linux.ibm.com>
      
      	* config/rs6000/predicates.md (cint34_operand): Update
      	SIGNED_34BIT_OFFSET_P call.
      	(pcrel_address): Update SIGNED_34BIT_OFFSET_P call.
      	(pcrel_external_address): Update SIGNED_34BIT_OFFSET_P call.
      	* config/rs6000/rs6000.c (rs6000_prefixed_address): Update
      	SIGNED_16BIT_OFFSET_P and SIGNED_34BIT_OFFSET_P calls.
      	* config/rs6000/rs6000.h (SIGNED_16BIT_OFFSET_P): Remove EXTRA
      	argument.
      	(SIGNED_34BIT_OFFSET_P): Remove EXTRA argument.
      	(SIGNED_16BIT_OFFSET_EXTRA_P): New macro, like
      	SIGNED_16BIT_OFFSET_P with an EXTRA argument.
      	(SIGNED_34BIT_OFFSET_EXTRA_P): New macro, like
      	SIGNED_34BIT_OFFSET_P with an EXTRA argument.
      
      From-SVN: r273370
      Michael Meissner committed
    • [Darwin, PPC] Collate the system library spec into one expression. · 4b5c5391
      There's no need to redefine this dependent on the target header (that only
      works in the case that we have self-hosting which is less and less likely
      for the older system versions).
      
      Actually, what we need is for the correct library set to be used based
      on the SDK(s) that can target the chosen system.
      
      gcc/ChangeLog:
      
      2019-07-10  Iain Sandoe  <iain@sandoe.co.uk>
      
      	* config/rs6000/darwin.h (LIB_SPEC): Collate this spec here.
      	* config/rs6000/darwin7.h (LIB_SPEC): Remove.
      	* config/rs6000/darwin8.h (LIB_SPEC): Remove.
      	(DEF_MIN_OSX_VERSION): New.
      
      From-SVN: r273369
      Iain Sandoe committed
    • Fix folding of vector EQ/NE · 2cb73623
      For vector1 != vector2, we returned false if any elements were equal,
      rather than if all elements were equal.
      
      2019-07-10  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	* fold-const.c (fold_relational_const): Fix folding of
      	vector-to-scalar NE_EXPRs.
      	(test_vector_folding): Add more tests.
      
      From-SVN: r273366
      Richard Sandiford committed
    • [arm] Fix BE index for single-var vector initialisers (PR91060) · 8ba8ebff
      If a vector constructor has a single nonconstant element,
      neon_expand_vector_init loads the constant lanes and then inserts the
      nonconstant value.  The problem was that it was doing the insertion
      using the arm_neon.h neon_vset_lane<mode> patterns, which use
      architectural lane numbering rather than GCC lane numbering.
      
      2019-07-10  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	PR target/91060
      	* config/arm/iterators.md (V2DI_ONLY): New mode iterator.
      	* config/arm/neon.md (vec_set<mode>_internal): Add a '@' prefix.
      	(vec_setv2di_internal): Reexpress as...
      	(@vec_set<V2DI_ONLY:mode>_internal): ...this.
      	* config/arm/arm.c (neon_expand_vector_init): Use gen_vec_set_internal
      	rather than gen_neon_vset_lane<mode>.
      
      From-SVN: r273365
      Richard Sandiford committed
    • compiler: finalize methods when importing types · 4b8d9b23
          
          This patch changes the compiler to be more aggressive about finalizing
          methods on imported types, to avoid problems with interface types that
          are imported but remain unreachable until a later stage in the compilation.
          
          The normal pattern prior to this change was that the import process would
          leave imported interface types alone, and rely on Gogo::finalize_methods
          to locate and finalize all interface types at a later point. This way
          of doing things was not working in all cases due to the fact that we can
          import an interface type that is only reachable from the body of an
          inlinable function, meaning that we can't "find" the type during
          the methods finalize phase.
          
          The importer's Import::read_types() now makes a pass over all imported
          types to finalize methods on any newly imported type, which takes care
          of the issue.
          
          New test case for this problem in CL 185517.
          
          Fixes golang/go#33013
          
          Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/185518
      
      From-SVN: r273364
      Ian Lance Taylor committed
    • compiler: add break label in 1,2-case select statement lowering · 41112d95
          
          CL 184998 added optimizations for one- and two-case select
          statements. But it didn't handle break statement in the select
          case correctly. Specifically, it didn't add the label definition,
          so it could result in a dangling goto. This CL fixes this, by
          adding the label definition.
          
          A test case is CL 185520.
          
          Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/185519
      
      From-SVN: r273359
      Ian Lance Taylor committed
    • PR testsuite/91132 - test gcc.dg/strlenopt-67.c in r273317 fails · b59ff586
      gcc/testsuite/ChangeLog:
      	* gcc.dg/strlenopt-67.c: Removed second copy of test.
      
      From-SVN: r273358
      Martin Sebor committed
    • re PR target/91102 (aarch64 ICE on Linux kernel with -Os starting with r270266) · 613caed2
      2019-07-10  Vladimir Makarov  <vmakarov@redhat.com>
      
      	PR target/91102
      	* lra-constraints.c (process_alt_operands): Don't match user
      	defined regs only if they are early clobbers.
      
      2019-07-10  Vladimir Makarov  <vmakarov@redhat.com>
      
      	PR target/91102
      	* gcc.target/aarch64/pr91102.c: New test.
      
      From-SVN: r273357
      Vladimir Makarov committed
    • Fix wi::lshift · 12bb0436
      2019-07-10  Marc Glisse  <marc.glisse@inria.fr>
      
      	* wide-int.h (wi::lshift): Reject negative values for the fast path.
      
      From-SVN: r273356
      Marc Glisse committed
    • re PR tree-optimization/91126 (Incorrect constant propagation of BIT_FIELD_REF) · 95efa227
      2019-07-10  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/91126
      	* tree-ssa-sccvn.c (n_walk_cb_data::push_partial_def): Adjust
      	native encoding offset for BYTES_BIG_ENDIAN.
      	(vn_reference_lookup_3): Likewise.
      
      	* gcc.dg/torture/pr91126.c: New testcase.
      
      From-SVN: r273355
      Richard Biener committed
    • gimple-parser.c (c_parser_gimple_postfix_expression): Support _Literal (int *)… · 8389386c
      gimple-parser.c (c_parser_gimple_postfix_expression): Support _Literal (int *) &x for address literals.
      
      2019-07-10  Richard Biener  <rguenther@suse.de>
      
      	c/
      	* gimple-parser.c (c_parser_gimple_postfix_expression): Support
      	_Literal (int *) &x for address literals.
      
      	* tree-ssa-sccvn.c (vn_reference_lookup_3): Look at valueized
      	LHS whenever possible.
      
      	* gcc.dg/torture/ssa-fre-5.c: New testcase.
      	* gcc.dg/torture/ssa-fre-6.c: Likewise.
      	* gcc.dg/torture/ssa-fre-7.c: Likewise.
      
      From-SVN: r273354
      Richard Biener committed
    • [Ada] System.Strings.Stream_Ops: do not depend on Stream_IO · f861d731
      Dependence was only from Ada.Streams.Stream_IO.End_Error exception which
      is renaming of the Ada.IO_Exceptions.End_Error. Use
      Ada.IO_Exceptions.End_Error directly.
      
      2019-07-10  Dmitriy Anisimkov  <anisimko@adacore.com>
      
      gcc/ada/
      
      	* libgnat/s-ststop.adb: Remove System.Strings.Stream_Ops
      	dependence on System.Streams.Stream_IO.
      
      From-SVN: r273353
      Dmitriy Anisimkov committed
    • [Ada] Spurious run-time error with 64-bit modular types · 4669743b
      As a lexical element an integer literal has type Universal_Integer, i.e
      is compatible with any integer type. This is semantically consistent and
      simplifies type checking and subsequent constant folding when
      applicable.  An exception is caused by 64-bit modular types, whose upper
      bound is not representable in a non-static context that will use 64-bit
      integers at run-time. For such cases we need to preserve the information
      that the analyzed literal has that modular type. For simplicity we
      preseve the information for all integer literals that result from a
      modular operation.  This happens after prior analysis (or construction)
      of the literal, and after type checking and resolution.
      
      2019-07-10  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* sem_ch2.adb (Analyze_Integer_Literal): Preserve the type of
      	the literal if prior analysis determined that its type is a
      	modular integer type.
      
      gcc/testsuite/
      
      	* gnat.dg/modular5.adb: New testcase.
      
      From-SVN: r273352
      Ed Schonberg committed
    • [Ada] Do not attempt to re-arm guard page on x86_64-vx7(r2) · ccba4bf1
      A change in the API prohibits accessing Tcb fields directly. The bug in
      VxWorks7 (failure to re-arm the guard page) now appears to be fixed, so
      this is no long necessary.
      
      2019-07-10  Doug Rupp  <rupp@adacore.com>
      
      gcc/ada/
      
      	* init.c: Do not attempt to re-arm guard page on x86_64-vx7(r2).
      
      From-SVN: r273351
      Doug Rupp committed
    • [Ada] Crash on aggregate for limited type in extended return · c14dc27e
      This patch fixes a compiler abort on an extended return statement whose
      expression is an aggregate (to be built in place) for a discriminated
      record with a limited component. The build-in-place mechanism creates an
      access type and a renaming declaration  through which individual
      components are assigned. The renamed object is constrained because it is
      limited, and the renaming declaration does not need to create a local
      subtype indication for it, which may lead to type mismatches in the
      back-end, and is in any case redundant. This patch extends this
      optimization to the case of records that are limited only because of a
      limitied component, and not because they are explicit declared limited.
      
      2019-07-10  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* sem_ch8.adb (Check_Constrained_Object): A record that is
      	limited because of the presence of a limited component is
      	constrained, and no subtype indiciation needs to be created for
      	it, just as is the case for declared limited records.
      
      gcc/testsuite/
      
      	* gnat.dg/limited3.adb, gnat.dg/limited3_pkg.adb,
      	gnat.dg/limited3_pkg.ads: New testcase.
      
      From-SVN: r273350
      Ed Schonberg committed
    • [Ada] Fix spurious messages on global variables for SPARK pointer support · 179682a5
      Pointer support in GNATprove leads to spurious messages about global
      variables, with local variables declared in local packages and protected
      components. Now fixed.
      
      There is no impact on compilation.
      
      2019-07-10  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* sem_aux.adb, sem_aux.ads (Is_Protected_Operation): New
      	function to determine if a subprogram is protected.
      	* sem_spark.adb (Setup_Protected_Components): New procedure to
      	add protected components to the environment.
      	(Check_Callable_Body): Call the new Setup_Protected_Components.
      	(Check_Package_Spec): Merge local environment with enclosing one
      	when done.
      
      From-SVN: r273349
      Yannick Moy committed
    • [Ada] Fix possible crashes in GNATprove analysis of pointers · 1bc68e0d
      The new analysis of SPARK pointer rules could crash on some constructs.
      Now fixed.
      
      There is no impact on compilation.
      
      2019-07-10  Claire Dross  <dross@adacore.com>
      
      gcc/ada/
      
      	* sem_spark.adb (Check_Expression): Allow digits constraints as
      	input.
      	(Illegal_Global_Usage): Pass in the entity.
      	(Is_Subpath_Expression): New function to allow different nodes
      	as inner parts of a path expression.
      	(Read_Indexes): Allow concatenation and aggregates with box
      	expressions.  Allow attributes Update and Loop_Entry.
      	(Check_Expression): Allow richer membership test.
      	(Check_Node): Ignore bodies of generics.
      	(Get_Root_Object): Allow concatenation and attributes.
      
      From-SVN: r273348
      Claire Dross committed
    • [Ada] Spurious error on discriminant of incomplete type · d036b2b8
      This patch corrects the conformance verification of discriminants to
      provide symmetry between the analysis of incomplete and full view
      discriminants. As a result, types of discriminants always resolve to the
      proper view.
      
      2019-07-10  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* sem_ch6.adb (Check_Discriminant_Conformance): Use Find_Type to
      	discover the type of a full view discriminant.
      
      gcc/testsuite/
      
      	* gnat.dg/incomplete7.adb, gnat.dg/incomplete7.ads: New testcase.
      
      From-SVN: r273347
      Hristian Kirtchev committed
    • [Ada] Improve gnatmem's doc for the depth switch · 6056bc73
      2019-07-10  Arnaud Charlet  <charlet@adacore.com>
      
      gcc/ada
      
      	* doc/gnat_ugn/gnat_and_program_execution.rst: Improve gnatmem's
      	doc for the depth switch.
      
      From-SVN: r273346
      Arnaud Charlet committed
    • [Ada] GNATpp: document the --source-line-breaks switch · 710e0240
      2019-07-10  Bob Duff  <duff@adacore.com>
      
      gcc/ada/
      
      	* doc/gnat_ugn/gnat_utility_programs.rst: Document gnatpp's
      	--source-line-breaks switch.
      
      From-SVN: r273345
      Bob Duff committed
    • [Ada] Documentation of Img attribute out of date · 764ffff0
      2019-07-10  Justin Squirek  <squirek@adacore.com>
      
      gcc/ada/
      
      	* doc/gnat_rm/implementation_defined_attributes.rst: Add mention
      	of 'Image attribute with 'Img's entry to mention additional
      	added 2012 usage of Obj'Image.
      	* doc/gnat_rm/implementation_defined_pragmas.rst: Correct
      	mispelling of Async_Writers.
      	* gnat_rm.texi: Regenerate.
      	* sem_prag.adb (Analyze_Pragma): Correct mispelling of
      	Async_Writers.
      	* sem_util.adb (State_Has_Enabled_Property): Correct mispelling
      	of Async_Writers.
      
      From-SVN: r273344
      Justin Squirek committed
    • [Ada] Entity names are not unique · 1ae0159e
      This patch updates the Unique_Name procedure in order to prefix the
      string "ada___" to child units that have a nested subprogram or package,
      so that they do not clash with a parent package of the same name.
      
      This is for GNATprove only and does not affect regular compilation.
      
      2019-07-10  Simon Buist  <buist@adacore.com>
      
      gcc/ada/
      
      	* sem_util.ads (Child_Prefix): New constant.
      	* sem_util.adb (Unique_Name): Add a special prefix to child
      	units that have a nested subprogram or package.
      
      From-SVN: r273343
      Simon Buist committed
    • [Ada] Add an annotation for static analysis · f35688c9
      2019-07-10  Arnaud Charlet  <charlet@adacore.com>
      
      gcc/ada/
      
      	* sfn_scan.adb (Scan_SFN_Pragmas): Add pragma Assert.
      
      From-SVN: r273342
      Arnaud Charlet committed
    • [Ada] Spelling mistakes in error messages · 9a5245da
      This patch updates certain error messages to eliminate spelling
      mistakes. No need for a test as this is a minor cosmetic fix.
      
      2019-07-10  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* sem_ch3.adb (Check_Nonoverridable_Aspects): Correct the
      	spelling in certain error messages.
      	(Check_Pragma_Implemented): Correct the spelling in certain
      	error messages.
      
      From-SVN: r273341
      Hristian Kirtchev committed
    • [Ada] Improve support for tuning branch probability heuristics · 9ead6ee5
      This adds a new GNAT.Branch_Prediction package to make it possible to
      tune the branch probability heuristics more finely.  This package
      contains the equivalent of __builtin_expect in C/C++ plus a couple of
      specializations.
      
      The following program gives a summary of the usage:
      
      package Q is
      
        I : Integer;
        pragma Volatile (I);
      
      end Q;
      
      with GNAT.Branch_Prediction; use GNAT.Branch_Prediction;
      with Text_IO; use Text_IO;
      with Q; use Q;
      
      procedure P is
      begin
        if Unlikely (I = 0) then
          Put_Line ("Zero was passed");
          return;
        end if;
      
        if Likely (I > 0) then
          Put_Line ("A positive number was passed");
        else
          Put_Line ("A negative number was passed");
        end if;
      
        if Expect ((I rem 2) = 0, False) then
          Put_Line ("An even number was passed");
        else
          Put_Line ("An odd number was passed");
        end if;
      end;
      
      2019-07-10  Eric Botcazou  <ebotcazou@adacore.com>
      
      gcc/ada/
      
      	* Makefile.rtl (GNATRTL_NONTASKING_OBJS): Add g-brapre.
      	* libgnat/g-brapre.ads: New package specification.
      	* doc/gnat_rm/the_gnat_library.rst: Document it.
      	* gnat_rm.texi: Regenerate.
      
      From-SVN: r273340
      Eric Botcazou committed
    • [Ada] Allow multiple units per file in GNATprove · 27572ba3
      For analysis tools that rely on information generated in ALI files, but
      do not generate object files, the frontend did not generate the special
      extension names like file~2.ali for unit 2 in the file. This is needed
      to be able to analyze files with multiple units. Now fixed.
      
      There is no impact on compilation.
      
      2019-07-10  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* osint-c.adb (Set_File_Name): Always add extension for multiple
      	units per file mode.
      
      From-SVN: r273339
      Yannick Moy committed
    • [Ada] sysdep.c: correct include directives ordering · 9ab234e5
      Some VxWorks headers are relying on types that are defined in
      `vxWorks.h` but do not include it themselves, we move the include
      directive for `vxWorks.h` at the top of the include directives.
      
      2019-07-10  Corentin Gay  <gay@adacore.com>
      
      gcc/ada/
      
      	* sysdep.c: Put include directive for 'vxWorks.h' before any
      	other VxWorks headers.
      
      From-SVN: r273338
      Corentin Gay committed
    • [Ada] GNAT RM: add note about debuggers for Scalar_Storage_Order · 1c6f14b6
      2019-07-10  Eric Botcazou  <ebotcazou@adacore.com>
      
      gcc/ada/
      
      	* doc/gnat_rm/implementation_defined_attributes.rst
      	(Scalar_Storage_Order): Minor tweaks.  Add note about debuggers.
      	* gnat_rm.texi: Regenerate.
      
      From-SVN: r273337
      Eric Botcazou committed
    • [Ada] Spurious error on case expression with limited result · 5b4ce2a0
      This patch modifies the expansion of case expressions to prevent a
      spurious error caused by the use of assignment statements to capture the
      result of the case expression when the associated type is limited.
      
      2019-07-10  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* exp_ch4.adb (Expand_N_Case_Expression): Mark the generated
      	assignments to the temporary result as being OK because the
      	expansion of case expressions is correct by construction.
      	(Is_Copy_Type): Update the predicate to match the comment
      	within.
      
      gcc/testsuite/
      
      	* gnat.dg/limited2.adb, gnat.dg/limited2_pack_1.adb,
      	gnat.dg/limited2_pack_1.ads, gnat.dg/limited2_pack_2.adb,
      	gnat.dg/limited2_pack_2.ads: New testcase.
      
      From-SVN: r273336
      Hristian Kirtchev committed
    • [Ada] Minor reformatting · 7f8c1cd3
      2019-07-10  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* bindo-graphs.adb, bindo.adb, debug.adb, exp_ch6.adb,
      	sem_ch10.adb, sem_ch13.adb, sem_ch3.adb, sem_ch4.adb,
      	sem_ch6.adb, sem_ch7.adb, sem_res.adb, sem_spark.adb,
      	sem_util.adb, warnsw.ads: Minor reformatting.
      
      From-SVN: r273335
      Hristian Kirtchev committed
    • [Ada] Add contracts to Strings libraries · 0b6694b4
      This patch adds contracts to Ada.Strings libraries, in order to remove
      warnings when using these libraries in SPARK.
      
      2019-07-10  Joffrey Huguet  <huguet@adacore.com>
      
      gcc/ada/
      
      	* libgnat/a-strbou.ads, libgnat/a-strfix.ads,
      	libgnat/a-strunb.ads, libgnat/a-strunb__shared.ads: Add global
      	contracts, contract cases, preconditions and postconditions to
      	procedures and functions.
      
      From-SVN: r273334
      Joffrey Huguet committed
    • [Ada] Vxworks7r2 SR0610 coalesced some macro values · ef8a3d9e
      SR0600 and SR0610 cannot be differentiated by macro testing (arguably an
      oversight in header file version.h) so: The case statement testing for
      "file not found" is reformulated into an if/else series of statements to
      avoid a problem where two cases have identical values in SR0610, but
      different values in SR0600.
      
      2019-07-10  Doug Rupp  <rupp@adacore.com>
      
      gcc/ada/
      
      	* sysdep.c (__gnat_is_file_not_found_error): Reformulate to also
      	work for vxworks7r2 SR0610.
      
      From-SVN: r273333
      Doug Rupp committed
    • [Ada] The environ macro is broken on vxworks7r2 SR0610 · 32e0627f
      In SR0610, the TCB is made private, so the task environ field used by
      the environ macro is no longer visible.  Arguably this is a bug, however
      a more correct approach is to use accessor functions to retrieve this
      field and not use the environ macro, thus avoiding the problem.
      
      2019-07-10  Doug Rupp  <rupp@adacore.com>
      
      gcc/ada/
      
      	* env.c (__gnat_environ): Reformulate to also work for
      	vxworks7r2 SR0610.
      
      From-SVN: r273332
      Doug Rupp committed
    • [Ada] New port for ppc-vx7r2 · c03c0267
      2019-07-10  Patrick Bernardi  <bernardi@adacore.com>
      
      gcc/ada/
      
      	* Makefile.rtl: Handle vxworks7r2 ppc target
      
      From-SVN: r273331
      Patrick Bernardi committed
    • [Ada] Elaboration order v4.0 and cycle detection · 9098d477
      This patch introduces a new cycle detection algorithm which is based on
      Tarjan's "Enumeration of the Elementary Circuits of a Directed Graph"
      algorithm, with several ideas borrowed from Jonson's "Finding all the
      Elementary Circuits of a Directed Graph" algorithm.
      
      No need for a test because the new algorithm improves the performance of
      cycle detection only.
      
      2019-07-10  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* bindo.adb: Update the section on switches.
      	* bindo-graphs.adb
      	(Add_Cycle, Add_Vertex_And_Complement): Remove.
      	(Create): The graph no longer needs a set of recorded cycles
      	because the cycles are not rediscovered in permuted forms.
      	(Cycle_End_Vertices): New routine.
      	(Destroy): The graph no longer needs a set of recorded cycles
      	because the cycles are not rediscovered in permuted forms.
      	(Destroy_Library_Graph_Vertex): Move to the library level.
      	(Find_All_Cycles_Through_Vertex, Find_All_Cycles_With_Edge):
      	Remove.
      	(Find_Cycles_From_Successor, Find_Cycles_From_Vertex,
      	Find_Cycles_In_Component, Has_Elaborate_All_Edge): New routines.
      	(Insert_And_Sort): Remove.
      	(Is_Elaborate_Body_Edge): Use predicate
      	Is_Vertex_With_Elaborate_Body.
      	(Is_Recorded_Cycle): Remove.
      	(Is_Vertex_With_Elaborate_Body): New routine.
      	(Normalize_And_Add_Cycle): Remove.
      	(Precedence): Rename to xxx_Precedence, where xxx relates to the
      	input.  These versions better reflect the desired input
      	precedence.
      	(Record_Cycle): New routine.
      	(Remove_Vertex_And_Complement, Set_Is_Recorded_Cycle): Remove.
      	(Trace_xxx): Update all versions to use debug switch -d_t.
      	(Trace_Component): New routine.
      	(Trace_Eol): Removed.
      	(Trace_Vertex): Do not output the component as this information
      	is already available when the component is traced.
      	(Unvisit, Visit): New routine.
      	* bindo-graphs.ads: Add new instance LGV_Lists.  Remove instance
      	RC_Sets.  Update the structure of type Library_Graph_Attributes
      	to remove the set of recorded cycles.
      	(Destroy_Library_Graph_Vertex): Move to the library level.
      	* bindo-writers.adb (Write_Component_Vertices): Output
      	information about the number of vertices.
      	* debug.adb: Document the use of binder switch -d_t.  Update the
      	use of binder switch -d_T.
      
      From-SVN: r273330
      Hristian Kirtchev committed
    • [Ada] Fix crashes on ownership checking in SPARK · 74b96685
      Code that violates the conditions for ownership checking should lead to
      error messages pointing to the violations instead of crashes.
      
      There is no impact on compilation, only GNATprove.
      
      2019-07-10  Yannick Moy  <moy@adacore.com>
      
      gcc/ada/
      
      	* sem_spark.adb (Get_Root_Object): Replace precondition by error
      	message.
      	(Read_Indexes): Replace precondition by error message.
      	(Check_Callable_Body): Check only traversal function returns an
      	anonymous access type.
      	(Check_Expression): Issue error on unexpected expression as
      	path.
      	* sem_util.adb (First_Global): Fix access to global on
      	entry/task.
      
      From-SVN: r273329
      Yannick Moy committed
    • [Ada] Missing implicit interface type conversion · 5a644684
      The compiler skips adding an implicit type conversion when the interface
      type is visible through a limited-with clause.
      
      No small reproducer available.
      
      2019-07-10  Javier Miranda  <miranda@adacore.com>
      
      gcc/ada/
      
      	* exp_ch6.adb (Is_Class_Wide_Interface_Type): New subprogram.
      	(Expand_Call_Helper): Handle non-limited views when we check if
      	any formal is a class-wide interface type.
      	* exp_disp.adb (Expand_Interface_Actuals): Handle non-limited
      	views when we look for interface type formals to force "this"
      	displacement.
      
      From-SVN: r273328
      Javier Miranda committed
    • [Ada] Spurious error on overloaded equality in postcondition · ff3ee5e5
      This patch fixes a spurious error in a postcondition in a nested
      instantiation when the expression includes an inherited equality and
      checks are enabled.
      
      2019-07-10  Ed Schonberg  <schonberg@adacore.com>
      
      gcc/ada/
      
      	* sem_res.adb (Resolve_Equality_Op): Do not replace the resolved
      	operator by its alias if expander is not active, because the
      	operand type may not be frozen yet and its inherited operations
      	have not yet been created.
      
      gcc/testsuite/
      
      	* gnat.dg/equal8.adb, gnat.dg/equal8.ads,
      	gnat.dg/equal8_pkg.ads: New testcase.
      
      From-SVN: r273327
      Ed Schonberg committed
    • [Ada] Elaboration order v4.0 and linker switches · 19448640
      This patch adds a missing functionality with respect to elaboration
      order v3.0.  Units carry an attribute called Elab_Position which among
      other things controls the sorting of linker switches by gnatbind.
      Setting the proper position ensures the gnatbind will output the linker
      switches in an order compatible with what gnatlink expects.
      
      No simple test available as this requires a Windows cross-compiler.
      
      2019-07-10  Hristian Kirtchev  <kirtchev@adacore.com>
      
      gcc/ada/
      
      	* bindo-elaborators.adb (Elaborate_Units): Set attribute
      	Elab_Position of all elaborated units.
      	(Set_Unit_Elaboration_Positions): New routine.
      
      From-SVN: r273326
      Hristian Kirtchev committed
    • [Ada] Minor reformatting · 3f833dc2
      2019-07-10  Gary Dismukes  <dismukes@adacore.com>
      
      gcc/ada/
      
      	* exp_util.adb: Reformatting and a typo fix.
      
      From-SVN: r273325
      Gary Dismukes committed