1. 25 Nov, 2016 9 commits
    • re PR tree-optimization/78396 (gcc.dg/vect/bb-slp-cond-1.c FAILs after fix for PR77848) · 5bcfb22c
      2016-11-25  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/78396
      	* tree-vectorizer.c (vectorize_loops): When the if-converted
      	body contains masked loads or stores do not attempt to
      	basic-block-vectorize it.
      
      From-SVN: r242865
      Richard Biener committed
    • re PR gcov-profile/78467 (gcc.dg/tree-prof/comp-goto-1.c FAILs) · 758dcf83
      	PR gcov-profile/78467
      	* gcc.dg/tree-prof/comp-goto-1.c (insn_t): Change offset to
      	signed int.
      
      Co-Authored-By: Andreas Schwab <schwab@linux-m68k.org>
      
      From-SVN: r242864
      Jakub Jelinek committed
    • Tweak LRA handling of shared spill slots · 83d0488b
      The previous code processed the users of a stack slot in order of
      decreasing size and allocated the slot based on the first user.
      This seems a bit dangerous, since the ordering is based on the
      mode of the biggest reference while the allocation is based also
      on the size of the register itself (which I think could be larger).
      
      That scheme doesn't scale well to polynomial sizes, since there's
      no guarantee that the order of the sizes is known at compile time.
      This patch instead records an upper bound on the size required
      by all users of a slot.  It also records the maximum alignment
      requirement.
      
      gcc/
      2016-11-15  Richard Sandiford  <richard.sandiford@arm.com>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* function.h (spill_slot_alignment): Declare.
      	* function.c (spill_slot_alignment): New function.
      	* lra-spills.c (slot): Add align and size fields.
      	(assign_mem_slot): Use them in the call to assign_stack_local.
      	(add_pseudo_to_slot): Update the fields.
      	(assign_stack_slot_num_and_sort_pseudos): Initialise the fields.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r242863
      Richard Sandiford committed
    • Set mode of decimal floats before calling layout_type · 664e6968
      Previously decimal floating-point types were created and laid
      out as binary floating-point types, then the caller changed
      the mode to a decimal mode later.  The problem with that
      approach is that not all targets support an equivalent binary
      floating-point mode.  When they didn't, we would give the
      type BLKmode and lay it out as a zero-sized type.
      
      This probably had no effect in practice.  If a target doesn't
      support a binary mode then it's unlikely to support the decimal
      equivalent either.  However, with the stricter mode checking
      added by later patches, we would assert if a scalar floating-
      point type didn't have a scalar floating-point mode.
      
      gcc/
      2016-11-16  Richard Sandiford  <richard.sandiford@arm.com>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* stor-layout.c (layout_type): Allow the caller to set the mode of
      	a float type.  Only choose one here if the mode is still VOIDmode.
      	* tree.c (build_common_tree_nodes): Set the type mode of decimal
      	floats before calling layout_type.
      	* config/rs6000/rs6000.c (rs6000_init_builtins): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r242862
      Richard Sandiford committed
    • Add run tests for recent sibcall patches · 84db1406
      gcc/testsuite/
      	* gcc.dg/tree-ssa/tailcall-7-run.c: New test.
      	* gcc.dg/tree-ssa/tailcall-8-run.c: Likewise.
      
      From-SVN: r242861
      Richard Sandiford committed
    • Tighten check for whether sibcall references local variables · 2c28c3e4
      This loop:
      
            /* Make sure the tail invocation of this function does not refer
               to local variables.  */
            FOR_EACH_LOCAL_DECL (cfun, idx, var)
              {
                if (TREE_CODE (var) != PARM_DECL
                    && auto_var_in_fn_p (var, cfun->decl)
                    && (ref_maybe_used_by_stmt_p (call, var)
                        || call_may_clobber_ref_p (call, var)))
                  return;
              }
      
      triggered even for local variables that are passed by value.
      This meant that we didn't allow local aggregates to be passed
      to a sibling call but did (for example) allow global aggregates
      to be passed.
      
      I think the loop is really checking for indirect references,
      so should be able to skip any variables that never have their
      address taken.
      
      gcc/
      	* tree-tailcall.c (find_tail_calls): Allow calls to reference
      	local variables if all references are known to be direct.
      
      gcc/testsuite/
      	* gcc.dg/tree-ssa/tailcall-8.c: New test.
      
      From-SVN: r242860
      Richard Sandiford committed
    • Fix bogus pr64277.c failure for avr · 4ae35e69
      The smaller int size for the avr target breaks the test's
      expectation on the number of iterations. The failure goes
      away if 32 bit ints are used in place of a plain int.
      
      Fix by conditionally typedef int32_t to __INT32_TYPE__ for targets
      with int size < 4,  and then use int32_t everywhere.
      
      gcc/testsuite
      016-11-25  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
      
      	* gcc.dg/pr64277.c: Use __INT32_TYPE__ for targets
      	with sizeof(int) < 4.
      
      From-SVN: r242859
      Senthil Kumar Selvaraj committed
    • re PR middle-end/78501 (SEGV in vrp_val_max) · 2131e489
      2016-11-25  Jakub Jelinek  <jakub@redhat.com>
      	    Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
      
      	PR middle-end/78501
      	* tree-vrp.c (extract_range_basic): Check for ptrdiff_type_node to be
      	non null and it's precision matches precision of lhs's type.
      
      Co-Authored-By: Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
      
      From-SVN: r242858
      Jakub Jelinek committed
    • Daily bump. · 6d52e466
      From-SVN: r242857
      GCC Administrator committed
  2. 24 Nov, 2016 30 commits
  3. 23 Nov, 2016 1 commit
    • Fix e500 offset handling for TImode. · 6fa42ea3
      Given my previous fix for a missing insn pattern for e500, building
      glibc runs into an assembler error "Error: operand out of range (256
      is not between 0 and 248)".  This comes from an insn:
      
      (insn 115 1209 1210 (set (reg:DF 27 27 [orig:294 _129 ] [294])
              (subreg:DF (mem/c:TI (plus:SI (reg/f:SI 1 1)
                          (const_int 256 [0x100])) [14 %sfp+256 S16 A128]) 0)) 1909 {*frob_df_ti}
           (nil))
      
      This patch adjusts the offset handling for TImode - and TDmode and
      PTImode in case such subregs can arise for them - to be the same as
      for TFmode, so that proper SPE offset checks are made in the
      TARGET_E500_DOUBLE case.
      
      This allows the glibc build to complete.  Testing shows 372 FAILs
      across the gcc, g++ and libstdc++ testsuites; more cleanup is
      certainly needed, but this gets to the point where the toolchain at
      least builds so it's possible to compare test results when fixing
      bugs.
      
      	* config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p): For
      	TARGET_E500_DOUBLE. handle TDmode, TImode and PTImode the same as
      	TFmode, IFmode and KFmode.
      
      From-SVN: r242814
      Joseph Myers committed