1. 30 Aug, 2017 40 commits
    • [56/77] Use the more specific type when two modes are known to be equal · 8a92a3f3
      This patch adjusts a couple of cases in which we had established
      that two modes were equal and happened to be using the one with the
      more general type instead of the one with the more specific type.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* expr.c (expand_expr_real_2): Use word_mode instead of innermode
      	when the two are known to be equal.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251508
      Richard Sandiford committed
    • [55/77] Use scalar_int_mode in simplify_const_unary_operation · 40c4ef22
      The main scalar integer block in simplify_const_unary_operation
      had the condition:
      
        if (CONST_SCALAR_INT_P (op) && width > 0)
      
      where "width > 0" was a roundabout way of testing != VOIDmode.
      This patch replaces it with a check for a scalar_int_mode instead.
      It also uses the number of bits in the input rather than the output
      mode to determine the result of a "count ... bits in zero" operation.
      (At the momemnt these modes have to be the same, but it still seems
      conceptually wrong to use the number of bits in the output mode.)
      
      The handling of float->integer ops also checked "width > 0",
      but this was redundant with the earlier check for MODE_INT.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* simplify-rtx.c (simplify_const_unary_operation): Use
      	is_a <scalar_int_mode> instead of checking for a nonzero
      	precision.  Forcibly convert op_mode to a scalar_int_mode
      	in that case.  More clearly differentiate the operand and
      	result modes and use the former when deciding what the value
      	of a count-bits operation should be.  Use is_int_mode instead
      	of checking for a MODE_INT.  Remove redundant check for whether
      	this mode has a zero precision.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251507
      Richard Sandiford committed
    • [54/77] Add explicit int checks for alternative optab implementations · 3c84109e
      expand_unop can expand narrow clz, clrsb, ctz, bswap, parity and
      ffs operations using optabs for wider modes.  These expansions
      apply only to scalar integer modes (and not for example to vectors),
      so the patch adds explicit checks for that.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* optabs.c (widen_leading): Change the type of the mode argument
      	to scalar_int_mode.  Use opt_scalar_int_mode for the mode iterator.
      	(widen_bswap): Likewise.
      	(expand_parity): Likewise.
      	(expand_ctz): Change the type of the mode argument to scalar_int_mode.
      	(expand_ffs): Likewise.
      	(epand_unop): Check for scalar integer modes before calling the
      	above routines.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251506
      Richard Sandiford committed
    • [53/77] Pass a mode to const_scalar_mask_from_tree · 04d6ea36
      The caller of const_scalar_mask_from_tree has proven that
      the mode is a MODE_INT, so this patch passes it down as a
      scalar_int_mode.  It also expands the comment a little.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* expr.c (const_scalar_mask_from_tree): Add a mode argument.
      	Expand commentary.
      	(expand_expr_real_1): Update call accordingly.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251505
      Richard Sandiford committed
    • [52/77] Use scalar_int_mode in extract/store_bit_field · 1a527092
      After a certain point, extract_bit_field and store_bit_field
      ensure that they're dealing with integer modes or BLKmode MEMs.
      This patch uses scalar_int_mode and opt_scalar_int_mode for
      those parts.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* expmed.c (store_bit_field_using_insv): Add op0_mode and
      	value_mode arguments.  Use scalar_int_mode internally.
      	(store_bit_field_1): Rename the new integer mode from imode
      	to op0_mode and use it instead of GET_MODE (op0).  Update calls
      	to store_split_bit_field, store_bit_field_using_insv and
      	store_fixed_bit_field.
      	(store_fixed_bit_field): Add op0_mode and value_mode arguments.
      	Use scalar_int_mode internally.  Use a bit count rather than a mode
      	when calculating the largest bit size for get_best_mode.
      	Update calls to store_split_bit_field and store_fixed_bit_field_1.
      	(store_fixed_bit_field_1): Add mode and value_mode arguments.
      	Remove assertion that OP0 has a scalar integer mode.
      	(store_split_bit_field): Add op0_mode and value_mode arguments.
      	Update calls to extract_fixed_bit_field.
      	(extract_bit_field_using_extv): Add an op0_mode argument.
      	Use scalar_int_mode internally.
      	(extract_bit_field_1): Rename the new integer mode from imode to
      	op0_mode and use it instead of GET_MODE (op0).  Update calls to
      	extract_split_bit_field, extract_bit_field_using_extv and
      	extract_fixed_bit_field.
      	(extract_fixed_bit_field): Add an op0_mode argument.  Update calls
      	to extract_split_bit_field and extract_fixed_bit_field_1.
      	(extract_fixed_bit_field_1): Add a mode argument.  Remove assertion
      	that OP0 has a scalar integer mode.  Use as_a <scalar_int_mode>
      	on the target mode.
      	(extract_split_bit_field): Add an op0_mode argument.  Update call
      	to extract_fixed_bit_field.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251504
      Richard Sandiford committed
    • [51/77] Use opt_scalar_int_mode when iterating over integer modes · 59b51186
      This patch uses opt_scalar_int_mode rather than machine_mode
      when iterating over scalar_int_modes, in cases where that helps
      with future patches.  (Using machine_mode is still OK in places
      that don't really care about the mode being a scalar integer.)
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* cse.c (cse_insn): Use opt_scalar_int_mode for the mode iterator.
      	* explow.c (hard_function_value): Likewise.
      	* expmed.c (extract_fixed_bit_field_1): Likewise.  Move the
      	convert_to_mode call outside the loop.
      	* expr.c (alignment_for_piecewise_move): Use opt_scalar_int_mode
      	for the mode iterator.  Require the mode specified by max_pieces
      	to exist.
      	(emit_block_move_via_movmem): Use opt_scalar_int_mode for the
      	mode iterator.
      	(copy_blkmode_to_reg): Likewise.
      	(set_storage_via_setmem): Likewise.
      	* optabs.c (prepare_cmp_insn): Likewise.
      	* rtlanal.c (init_num_sign_bit_copies_in_rep): Likewise.
      	* stor-layout.c (finish_bitfield_representative): Likewise.
      
      gcc/fortran/
      	* trans-types.c (gfc_init_kinds): Use opt_scalar_int_mode for
      	the mode iterator.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251503
      Richard Sandiford committed
    • [50/77] Add helper routines for SUBREG_PROMOTED_VAR_P subregs · 5e4e37bf
      When subregs contain promoted values, as indicated by
      SUBREG_PROMOTED_VAR_P, both the unpromoted (outer) and
      promoted (inner) values are known to be scalar integers.
      This patch adds helper routines that get the modes as
      scalar_int_modes.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* rtl.h (subreg_unpromoted_mode, subreg_promoted_mode): New functions.
      	* expr.c (convert_move): Use them.
      	(convert_modes): Likewise.
      	(store_expr_with_bounds): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251502
      Richard Sandiford committed
    • [49/77] Simplify nonzero/num_sign_bits hooks · 401581b6
      The two implementations of the reg_nonzero_bits and reg_num_sign_bits
      hooks ignored the "known_x", "known_mode" and "known_ret" arguments,
      so this patch removes them.  It adds a new scalar_int_mode parameter
      that specifies the mode of "x".  (This mode might be different from
      "mode", which is the mode in which "x" is used.)
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* rtl.h (rtl_hooks::reg_nonzero_bits): Add a scalar_int_mode
      	parameter for the mode of "x".  Remove the "known_x", "known_mode"
      	and "known_ret" arguments.  Change the type of the mode argument
      	to scalar_int_mode.
      	(rtl_hooks:reg_num_sign_bit_copies): Likewise.
      	* combine.c (reg_nonzero_bits_for_combine): Update accordingly.
      	(reg_num_sign_bit_copies_for_combine): Likewise.
      	* rtlanal.c (nonzero_bits1): Likewise.
      	(num_sign_bit_copies1): Likewise.
      	* rtlhooks-def.h (reg_nonzero_bits_general): Likewise.
      	(reg_num_sign_bit_copies_general): Likewise.
      	* rtlhooks.c (reg_num_sign_bit_copies_general): Likewise.
      	(reg_nonzero_bits_general): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251501
      Richard Sandiford committed
    • [48/77] Make subroutines of num_sign_bit_copies operate on scalar_int_mode · f8265fb8
      Similarly to the nonzero_bits patch, this one moves the mode
      class check and VOIDmode handling from num_sign_bit_copies1
      to num_sign_bit_copies itself, then changes the subroutines
      to operate on scalar_int_modes.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* rtlanal.c (num_sign_bit_copies): Handle VOIDmode here rather
      	than in subroutines.  Return 1 for non-integer modes.
      	(cached_num_sign_bit_copies): Change the type of the mode parameter
      	to scalar_int_mode.
      	(num_sign_bit_copies1): Likewise.  Remove early exit for other mode
      	classes.  Handle CONST_INT_P first and then check whether X also
      	has a scalar integer mode.  Check the same thing for inner registers
      	of a SUBREG and for values that are being extended or truncated.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251500
      Richard Sandiford committed
    • [47/77] Make subroutines of nonzero_bits operate on scalar_int_mode · 22527b59
      nonzero_bits1 assumed that all bits of a floating-point or vector mode
      were needed.  It seems likely that fixed-point modes should have been
      handled in the same way.  After excluding those, the only remaining
      modes that are likely to be useful are scalar integer ones.
      
      This patch moves the mode class check to nonzero_bits itself, along
      with the handling of mode == VOIDmode.  The subroutines of nonzero_bits
      can then take scalar_int_modes.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* rtlanal.c (nonzero_bits): Handle VOIDmode here rather than
      	in subroutines.  Return the mode mask for non-integer modes.
      	(cached_nonzero_bits): Change the type of the mode parameter
      	to scalar_int_mode.
      	(nonzero_bits1): Likewise.  Remove early exit for other mode
      	classes.  Handle CONST_INT_P first and then check whether X
      	also has a scalar integer mode.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251499
      Richard Sandiford committed
    • [46/77] Make widest_int_mode_for_size return a scalar_int_mode · b4e6c85e
      The comment for widest_int_mode said that it returns "the widest integer
      mode no wider than SIZE", but it actually returns the widest integer
      mode that is narrower than SIZE.  In practice SIZE is always greater
      than 1, so it can always pick QImode in the worst case.  The VOIDmode
      paths seem to be dead.
      
      gcc/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* expr.c (widest_int_mode_for_size): Make the comment match the code.
      	Return a scalar_int_mode and assert that the size is greater than
      	one byte.
      	(by_pieces_ninsns): Update accordingly and remove VOIDmode handling.
      	(op_by_pieces_d::op_by_pieces_d): Likewise.
      	(op_by_pieces_d::run): Likewise.
      	(can_store_by_pieces): Likewise.
      
      From-SVN: r251498
      Richard Sandiford committed
    • [45/77] Make extract_left_shift take a scalar_int_mode · 646b5f37
      This patch passes the mode of the shifted value to extract_left_shift
      and updates the only caller so that the mode is a scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (extract_left_shift): Add a mode argument and update
      	recursive calls.
      	(make_compound_operation_int): Change the type of the mode parameter
      	to scalar_int_mode and update the call to extract_left_shift.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251497
      Richard Sandiford committed
    • [44/77] Make simplify_and_const_int take a scalar_int_mode · 50e2afe7
      After previous patches, top-level calls to simplify_and_const_int
      always pass a scalar_int_mode.  The only call site that needs to
      be updated is the recursive one in simplify_and_const_int_1,
      at which point we know "varop" has a scalar integer mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (simplify_and_const_int): Change the type of the mode
      	parameter to scalar_int_mode.
      	(simplify_and_const_int_1): Likewise.  Update recursive call.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251496
      Richard Sandiford committed
    • [43/77] Use scalar_int_mode in simplify_comparison · bf62e687
      The main loop of simplify_comparison starts with:
      
            if (GET_MODE_CLASS (mode) != MODE_INT
                && ! (mode == VOIDmode
                      && (GET_CODE (op0) == COMPARE || COMPARISON_P (op0))))
              break;
      
      So VOIDmode is only acceptable when comparing a COMPARE,
      EQ, NE, etc. operand against a constant.  After this, the loop
      calls simplify_compare_const to:
      
        (a) bring the constant op1 closer to 0 where possible and
        (b) use nonzero_bits and num_sign_bit_copies to get a simpler
            constant.
      
      (a) works for both integer and VOID modes, (b) is specific
      to integer modes.
      
      The loop then has a big switch statement that handles further
      simplifications.  This switch statement checks for COMPARISON_P
      codes but not for COMPARE.
      
      This patch uses scalar_int_mode to make the split between
      (a) and (b) more explicit.  It also takes the COMPARISON_P
      handling out of the switch statement and does it first,
      so that the rest of the loop can treat the mode as a
      scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (simplify_compare_const): Check that the mode is a
      	scalar_int_mode (rather than VOIDmode) before testing its
      	precision.
      	(simplify_comparison): Move COMPARISON_P handling out of the
      	loop and restrict the latter part of the loop to scalar_int_modes.
      	Check is_a <scalar_int_mode> before calling HWI_COMPUTABLE_MODE_P
      	and when considering SUBREG_REGs.  Use is_int_mode instead of
      	checking GET_MODE_CLASS against MODE_INT.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251495
      Richard Sandiford committed
    • [42/77] Use scalar_int_mode in simplify_shift_const_1 · e3731c52
      This patch makes simplify_shift_const_1 use scalar_int_modes
      for all code that is specific to scalars rather than vectors.
      This includes situations in which the new shift mode is different
      from the original one, since the function never changes the mode
      of vector shifts.  That in turn makes it more natural to test for
      equal modes in simplify_shift_const_1 rather than try_widen_shift_mode
      (which only applies to scalars).
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (try_widen_shift_mode): Move check for equal modes to...
      	(simplify_shift_const_1): ...here.  Use scalar_int_mode for
      	shift_unit_mode and for modes involved in scalar shifts.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251494
      Richard Sandiford committed
    • [41/77] Split scalar integer handling out of force_to_mode · 0b73246f
      force_to_mode exits partway through for modes that aren't scalar
      integers.  This patch splits the remainder of the function out
      into a subroutine, force_int_to_mode, so that the modes from that
      point on can have type scalar_int_mode.
      
      The patch also makes sure that xmode is kept up-to-date with x
      and uses xmode instead of GET_MODE (x) throughout.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (force_int_to_mode): New function, split out from...
      	(force_to_mode): ...here.  Keep xmode up-to-date and use it
      	instead of GET_MODE (x).
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251493
      Richard Sandiford committed
    • [40/77] Use scalar_int_mode for extraction_insn fields · 5602f58c
      insv, extv and eztzv modify or read a field in a register or
      memory.  The field always has a scalar integer mode, while the
      register or memory either has a scalar integer mode or BLKmode.
      The mode of the bit position is also a scalar integer.
      
      This patch uses the type system to make that explicit.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* optabs-query.h (extraction_insn::struct_mode): Change type to
      	opt_scalar_int_mode and update comment.
      	(extraction_insn::field_mode): Change type to scalar_int_mode.
      	(extraction_insn::pos_mode): Likewise.
      	* combine.c (make_extraction): Update accordingly.
      	* optabs-query.c (get_traditional_extraction_insn): Likewise.
      	(get_optab_extraction_insn): Likewise.
      	* recog.c (simplify_while_replacing): Likewise.
      	* expmed.c (narrow_bit_field_mem): Change the type of the mode
      	parameter to opt_scalar_int_mode.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251492
      Richard Sandiford committed
    • [39/77] Two changes to the get_best_mode interface · ae927046
      get_best_mode always returns a scalar_int_mode on success,
      so this patch makes that explicit in the type system.  Also,
      the "largest_mode" argument is used simply to provide a maximum
      size, and in practice that size is always a compile-time constant,
      even when the concept of variable-sized modes is added later.
      The patch therefore passes the size directly.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* machmode.h (bit_field_mode_iterator::next_mode): Take a pointer
      	to a scalar_int_mode instead of a machine_mode.
      	(bit_field_mode_iterator::m_mode): Change type to opt_scalar_int_mode.
      	(get_best_mode): Return a boolean and use a pointer argument to store
      	the selected mode.  Replace the limit mode parameter with a bit limit.
      	* expmed.c (adjust_bit_field_mem_for_reg): Use scalar_int_mode
      	for the values returned by bit_field_mode_iterator::next_mode.
      	(store_bit_field): Update call to get_best_mode.
      	(store_fixed_bit_field): Likewise.
      	(extract_fixed_bit_field): Likewise.
      	* expr.c (optimize_bitfield_assignment_op): Likewise.
      	* fold-const.c (optimize_bit_field_compare): Likewise.
      	(fold_truth_andor_1): Likewise.
      	* stor-layout.c (bit_field_mode_iterator::next_mode): As above.
      	Update for new type of m_mode.
      	(get_best_mode): As above.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251491
      Richard Sandiford committed
    • [38/77] Move SCALAR_INT_MODE_P out of strict_volatile_bitfield_p · 0ef40942
      strict_volatile_bitfield_p returns false for any mode that isn't
      a scalar integer.  This patch moves the check to the caller and
      makes strict_volatile_bitfield_p take the mode as a scalar_int_mode.
      The handling of a true return can then also use the mode as a
      scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* expmed.c (strict_volatile_bitfield_p): Change the type of fieldmode
      	to scalar_int_mode.  Remove check for SCALAR_INT_MODE_P.
      	(store_bit_field): Check is_a <scalar_int_mode> before calling
      	strict_volatile_bitfield_p.
      	(extract_bit_field): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251490
      Richard Sandiford committed
    • [37/77] Use scalar_int_mode when emitting cstores · 7cc237a6
      cstore patterns always have a scalar integer result, which has the
      value 0 for "false" and STORE_FLAG_VALUE for "true".  This patch
      makes that explicit using scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* target.def (cstore_mode): Return a scalar_int_mode.
      	* doc/tm.texi: Regenerate.
      	* config/sparc/sparc.c (sparc_cstore_mode): Return a scalar_int_mode.
      	* targhooks.h (default_cstore_mode): Likewise.
      	* targhooks.c (default_cstore_mode): Likewise, using a forced
      	conversion.
      	* expmed.c (emit_cstore): Expect the target of the cstore to be
      	a scalar_int_mode.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251489
      Richard Sandiford committed
    • [36/77] Use scalar_int_mode in the RTL iv routines · 3d88d1cd
      This patch changes the iv modes in rtx_iv from machine_mode
      to scalar_int_mode.  It also passes the mode of the iv down
      to subroutines; this avoids the previous situation in which
      the mode information was sometimes lost and had to be added
      by the caller on return.
      
      Some routines already took a mode argument, but the patch
      tries to standardise on passing it immediately before the
      argument it describes.
      
      gcc/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* cfgloop.h (rtx_iv): Change type of extend_mode and mode to
      	scalar_int_mode.
      	(niter_desc): Likewise mode.
      	(iv_analyze): Add a mode parameter.
      	(biv_p): Likewise.
      	(iv_analyze_expr): Pass the mode paraeter before the rtx it describes
      	and change its type to scalar_int_mode.
      	* loop-iv.c: Update commentary at head of file.
      	(iv_constant): Pass the mode paraeter before the rtx it describes
      	and change its type to scalar_int_mode.  Remove VOIDmode handling.
      	(iv_subreg): Change the type of the mode parameter to scalar_int_mode.
      	(iv_extend): Likewise.
      	(shorten_into_mode): Likewise.
      	(iv_add): Use scalar_int_mode.
      	(iv_mult): Likewise.
      	(iv_shift): Likewise.
      	(canonicalize_iv_subregs): Likewise.
      	(get_biv_step_1): Pass the outer_mode parameter before the rtx
      	it describes and change its mode to scalar_int_mode.   Also change
      	the type of the returned inner_mode to scalar_int_mode.
      	(get_biv_step): Likewise, turning outer_mode from a pointer
      	into a direct parameter.  Update call to get_biv_step_1.
      	(iv_analyze_biv): Add an outer_mode parameter.  Update calls to
      	iv_constant and get_biv_step.
      	(iv_analyze_expr): Pass the mode parameter before the rtx it describes
      	and change its type to scalar_int_mode.  Don't initialise iv->mode
      	to VOIDmode and remove later checks for its still being VOIDmode.
      	Update calls to iv_analyze_op and iv_analyze_expr.  Check
      	is_a <scalar_int_mode> when changing the mode under consideration.
      	(iv_analyze_def): Ignore registers that don't have a scalar_int_mode.
      	Update call to iv_analyze_expr.
      	(iv_analyze_op): Add a mode parameter.  Reject subregs whose
      	inner register is not also a scalar_int_mode.  Update call to
      	iv_analyze_biv.
      	(iv_analyze): Add a mode parameter.  Update call to iv_analyze_op.
      	(biv_p): Add a mode parameter.  Update call to iv_analyze_biv.
      	(iv_number_of_iterations): Use is_a <scalar_int_mode> instead of
      	separate mode class checks.  Update calls to iv_analyze.  Remove
      	fix-up of VOIDmodes after iv_analyze_biv.
      	* loop-unroll.c (analyze_iv_to_split_insn): Reject registers that
      	don't have a scalar_int_mode.  Update call to biv_p.
      
      From-SVN: r251488
      Richard Sandiford committed
    • [35/77] Add uses of as_a <scalar_int_mode> · c7ad039d
      This patch adds asserting as_a <scalar_int_mode> conversions
      to contexts in which the input is known to be a scalar integer mode.
      
      In expand_divmod, op1 is always a scalar_int_mode if
      op1_is_constant (but might not be otherwise).
      
      In expand_binop, the patch reverses a < comparison in order to
      avoid splitting a long line.
      
      gcc/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* cfgexpand.c (convert_debug_memory_address): Use
      	as_a <scalar_int_mode>.
      	* combine.c (expand_compound_operation): Likewise.
      	(make_extraction): Likewise.
      	(change_zero_ext): Likewise.
      	(simplify_comparison): Likewise.
      	* cse.c (cse_insn): Likewise.
      	* dwarf2out.c (minmax_loc_descriptor): Likewise.
      	(mem_loc_descriptor): Likewise.
      	(loc_descriptor): Likewise.
      	* expmed.c (init_expmed_one_mode): Likewise.
      	(synth_mult): Likewise.
      	(emit_store_flag_1): Likewise.
      	(expand_divmod): Likewise.  Use HWI_COMPUTABLE_MODE_P instead
      	of a comparison with size.
      	* expr.c (expand_assignment): Use as_a <scalar_int_mode>.
      	(reduce_to_bit_field_precision): Likewise.
      	* function.c (expand_function_end): Likewise.
      	* internal-fn.c (expand_arith_overflow_result_store): Likewise.
      	* loop-doloop.c (doloop_modify): Likewise.
      	* optabs.c (expand_binop): Likewise.
      	(expand_unop): Likewise.
      	(expand_copysign_absneg): Likewise.
      	(prepare_cmp_insn): Likewise.
      	(maybe_legitimize_operand): Likewise.
      	* recog.c (const_scalar_int_operand): Likewise.
      	* rtlanal.c (get_address_mode): Likewise.
      	* simplify-rtx.c (simplify_unary_operation_1): Likewise.
      	(simplify_cond_clz_ctz): Likewise.
      	* tree-nested.c (get_nl_goto_field): Likewise.
      	* tree.c (build_vector_type_for_mode): Likewise.
      	* var-tracking.c (use_narrower_mode): Likewise.
      
      gcc/c-family/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* c-common.c (c_common_type_for_mode): Use as_a <scalar_int_mode>.
      
      gcc/lto/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* lto-lang.c (lto_type_for_mode): Use as_a <scalar_int_mode>.
      
      From-SVN: r251487
      Richard Sandiford committed
    • [34/77] Add a SCALAR_INT_TYPE_MODE macro · 7a504f33
      This patch adds a SCALAR_INT_TYPE_MODE macro that asserts
      that the type has a scalar integer mode and returns it as
      a scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* tree.h (SCALAR_INT_TYPE_MODE): New macro.
      	* builtins.c (expand_builtin_signbit): Use it.
      	* cfgexpand.c (expand_debug_expr): Likewise.
      	* dojump.c (do_jump): Likewise.
      	(do_compare_and_jump): Likewise.
      	* dwarf2cfi.c (expand_builtin_init_dwarf_reg_sizes): Likewise.
      	* expmed.c (make_tree): Likewise.
      	* expr.c (expand_expr_real_2): Likewise.
      	(expand_expr_real_1): Likewise.
      	(try_casesi): Likewise.
      	* fold-const-call.c (fold_const_call_ss): Likewise.
      	* fold-const.c (unextend): Likewise.
      	(extract_muldiv_1): Likewise.
      	(fold_single_bit_test): Likewise.
      	(native_encode_int): Likewise.
      	(native_encode_string): Likewise.
      	(native_interpret_int): Likewise.
      	* gimple-fold.c (gimple_fold_builtin_memset): Likewise.
      	* internal-fn.c (expand_addsub_overflow): Likewise.
      	(expand_neg_overflow): Likewise.
      	(expand_mul_overflow): Likewise.
      	(expand_arith_overflow): Likewise.
      	* match.pd: Likewise.
      	* stor-layout.c (layout_type): Likewise.
      	* tree-cfg.c (verify_gimple_assign_ternary): Likewise.
      	* tree-ssa-math-opts.c (convert_mult_to_widen): Likewise.
      	* tree-ssanames.c (get_range_info): Likewise.
      	* tree-switch-conversion.c (array_value_type) Likewise.
      	* tree-vect-patterns.c (vect_recog_rotate_pattern): Likewise.
      	(vect_recog_divmod_pattern): Likewise.
      	(vect_recog_mixed_size_cond_pattern): Likewise.
      	* tree-vrp.c (extract_range_basic): Likewise.
      	(simplify_float_conversion_using_ranges): Likewise.
      	* tree.c (int_fits_type_p): Likewise.
      	* ubsan.c (instrument_bool_enum_load): Likewise.
      	* varasm.c (mergeable_string_section): Likewise.
      	(narrowing_initializer_constant_valid_p): Likewise.
      	(output_constant): Likewise.
      
      gcc/cp/
      	* cvt.c (cp_convert_to_pointer): Use SCALAR_INT_TYPE_MODE.
      
      gcc/fortran/
      	* target-memory.c (size_integer): Use SCALAR_INT_TYPE_MODE.
      	(size_logical): Likewise.
      
      gcc/objc/
      	* objc-encoding.c (encode_type): Use SCALAR_INT_TYPE_MODE.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251486
      Richard Sandiford committed
    • [33/77] Add a NARROWEST_INT_MODE macro · e72b0ef4
      This patch replaces uses of GET_CLASS_NARROWEST_MODE (MODE_INT) with a
      new NARROWEST_INT_MODE macro, which has type scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* machmode.h (NARROWEST_INT_MODE): New macro.
      	* expr.c (alignment_for_piecewise_move): Use it instead of
      	GET_CLASS_NARROWEST_MODE (MODE_INT).
      	(push_block): Likewise.
      	* stor-layout.c (bit_field_mode_iterator::bit_field_mode_iterator):
      	Likewise.
      	* tree-vrp.c (simplify_float_conversion_using_ranges): Likewise.
      
      gcc/ada/
      	* gcc-interface/decl.c (validate_size): Use NARROWEST_INT_MODE
      	instead of GET_CLASS_NARROWEST_MODE (MODE_INT).
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251485
      Richard Sandiford committed
    • [32/77] Check is_a <scalar_int_mode> before calling valid_pointer_mode · e05c94ba
      A future patch will make valid_pointer_mode take a scalar_int_mode
      instead of a machine_mode.  is_a <...> rather than as_a <...> is
      needed here because we're checking a mode supplied by the user.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/c-family/
      	* c-attribs.c (handle_mode_attribute): Check for a scalar_int_mode
      	before calling targetm.addr_space.valid_pointer_mode.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251484
      Richard Sandiford committed
    • [31/77] Use scalar_int_mode for move2add · 1e047eed
      The postreload move2add optimisations are specific to scalar
      integers.  This patch adds an explicit check to the main guarding
      "if" and propagates the information through subroutines.
      
      gcc/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* postreload.c (move2add_valid_value_p): Change the type of the
      	mode parameter to scalar_int_mode.
      	(move2add_use_add2_insn): Add a mode parameter and use it instead
      	of GET_MODE (reg).
      	(move2add_use_add3_insn): Likewise.
      	(reload_cse_move2add): Update accordingly.
      
      From-SVN: r251483
      Richard Sandiford committed
    • [30/77] Use scalar_int_mode for doubleword splits · e4dc9904
      This patch uses is_a <scalar_int_mode> in a couple of places that
      were splitting doubleword integer operations into word_mode
      operations.  It also uses scalar_int_mode in the expand_expr_real_2
      handling of doubleword shifts.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* expr.c (expand_expr_real_2): Use scalar_int_mode for the
      	double-word mode.
      	* lower-subreg.c (resolve_shift_zext): Use is_a <scalar_int_mode>.
      	* optabs.c (expand_unop): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251482
      Richard Sandiford committed
    • [29/77] Make some *_loc_descriptor helpers take scalar_int_mode · 99767219
      The *_loc_descriptor routines for clz, popcount, bswap and rotate
      all required SCALAR_INT_MODE_P.  This patch moves the checks into
      the caller (mem_loc_descriptor) so that the types of the mode
      parameters can be scalar_int_mode instead of machine_mode.
      
      The MOD handling in mem_loc_descriptor is also specific to
      scalar integer modes.  Adding an explicit check allows
      typed_binop to take a scalar_int_mode too.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* dwarf2out.c (typed_binop): Change mode parameter to scalar_int_mode.
      	(clz_loc_descriptor): Likewise.  Remove SCALAR_INT_MODE_P check.
      	(popcount_loc_descriptor): Likewise.
      	(bswap_loc_descriptor): Likewise.
      	(rotate_loc_descriptor): Likewise.
      	(mem_loc_descriptor): Add is_a <scalar_int_mode> checks before
      	calling the functions above.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251481
      Richard Sandiford committed
    • [28/77] Use is_a <scalar_int_mode> for miscellaneous types of test · 54651377
      This patch adds is_a <scalar_int_mode> checks to various places
      that were explicitly or implicitly restricted to integers already,
      in cases where adding an explicit is_a <scalar_int_mode> is useful
      for later patches.
      
      In simplify_if_then_else, the:
      
        GET_MODE (XEXP (XEXP (t, 0), N))
      
      expressions were equivalent to:
      
        GET_MODE (XEXP (t, 0))
      
      due to the type of operation.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (sign_extend_short_imm): Add is_a <scalar_int_mode>
      	checks.
      	(try_combine): Likewise.
      	(simplify_if_then_else): Likewise.
      	* cse.c (cse_insn): Likewise.
      	* dwarf2out.c (mem_loc_descriptor): Likewise.
      	* emit-rtl.c (gen_lowpart_common): Likewise.
      	* simplify-rtx.c (simplify_truncation): Likewise.
      	(simplify_binary_operation_1): Likewise.
      	(simplify_const_relational_operation): Likewise.
      	(simplify_ternary_operation): Likewise.
      	* tree-ssa-loop-ivopts.c (force_expr_to_var_cost): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251480
      Richard Sandiford committed
    • [27/77] Use is_a <scalar_int_mode> before LOAD_EXTEND_OP · 095a49c8
      This patch adds is_a <scalar_int_mode> checks before load_extend_op/
      LOAD_EXTEND_OP calls, if that becomes useful for later patches.
      (load_extend_op will return UNKNOWN for any other type of mode.)
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* cse.c (cse_insn): Add is_a <scalar_int_mode> checks.
      	* reload.c (push_reload): Likewise.
      	(find_reloads): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251479
      Richard Sandiford committed
    • [26/77] Use is_a <scalar_int_mode> in subreg/extract simplifications · 6b9c3dec
      This patch adds is_a <scalar_int_mode> checks to various places that
      were optimising subregs or extractions in ways that only made sense
      for scalar integers.  Often the subreg transformations were looking
      for extends, truncates or shifts and trying to remove the subreg, which
      wouldn't be correct if the SUBREG_REG was a vector rather than a scalar.
      
      The simplify_binary_operation_1 part also removes a redundant:
      
        GET_MODE (opleft) == GET_MODE (XEXP (opright, 0))
      
      since this must be true for:
      
        (ior A (lshifrt B ...))  A == opleft, B == XEXP (opright, 0)
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (find_split_point): Add is_a <scalar_int_mode> checks.
      	(make_compound_operation_int): Likewise.
      	(change_zero_ext): Likewise.
      	* expr.c (convert_move): Likewise.
      	(convert_modes): Likewise.
      	* fwprop.c (forward_propagate_subreg): Likewise.
      	* loop-iv.c (get_biv_step_1): Likewise.
      	* optabs.c (widen_operand): Likewise.
      	* postreload.c (move2add_valid_value_p): Likewise.
      	* recog.c (simplify_while_replacing): Likewise.
      	* simplify-rtx.c (simplify_unary_operation_1): Likewise.
      	(simplify_binary_operation_1): Likewise.  Remove redundant
      	mode equality check.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251478
      Richard Sandiford committed
    • [25/77] Use is_a <scalar_int_mode> for bitmask optimisations · 7c61657f
      Explicitly check for scalar_int_mode in code that maps arithmetic
      to full-mode bit operations.  These operations wouldn't work correctly
      for vector modes, for example.  In many cases this is enforced also by
      checking whether an operand is CONST_INT_P, but there were other cases
      where the condition is more indirect.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* combine.c (combine_simplify_rtx): Add checks for
      	is_a <scalar_int_mode>.
      	(simplify_if_then_else): Likewise.
      	(make_field_assignment): Likewise.
      	(simplify_comparison): Likewise.
      	* ifcvt.c (noce_try_bitop): Likewise.
      	* loop-invariant.c (canonicalize_address_mult): Likewise.
      	* simplify-rtx.c (simplify_unary_operation_1): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251477
      Richard Sandiford committed
    • [24/77] Replace a != BLKmode check with is_a <scalar_int_mode> · 64ab8765
      This patch replaces a check against BLKmode with a check
      of is_a <scalar_int_mode>, in a case where scalar integer
      modes were the only useful alternatives left.
      
      gcc/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* gimple-fold.c (gimple_fold_builtin_memory_op): Use
      	is_a <scalar_int_mode> instead of != BLKmode.
      
      From-SVN: r251476
      Richard Sandiford committed
    • [23/77] Replace != VOIDmode checks with is_a <scalar_int_mode> · 673bf5a6
      This patch replaces some checks against VOIDmode with checks
      of is_a <scalar_int_mode>, in cases where scalar integer modes
      were the only useful alternatives left.
      
      gcc/
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      	* cfgexpand.c (expand_debug_expr): Use is_a <scalar_int_mode>
      	instead of != VOIDmode.
      	* combine.c (if_then_else_cond): Likewise.
      	(change_zero_ext): Likewise.
      	* dwarf2out.c (mem_loc_descriptor): Likewise.
      	(loc_descriptor): Likewise.
      	* rtlanal.c (canonicalize_condition): Likewise.
      	* simplify-rtx.c (simplify_relational_operation_1): Likewise.
      
      From-SVN: r251475
      Richard Sandiford committed
    • [22/77] Replace !VECTOR_MODE_P with is_a <scalar_int_mode> · 45e8e706
      This patch replaces some checks of !VECTOR_MODE_P with checks
      of is_a <scalar_int_mode>, in cases where the scalar integer
      modes were the only useful alternatives left.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* simplify-rtx.c (simplify_binary_operation_1): Use
      	is_a <scalar_int_mode> instead of !VECTOR_MODE_P.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251474
      Richard Sandiford committed
    • [21/77] Replace SCALAR_INT_MODE_P checks with is_a <scalar_int_mode> · b0567726
      This patch replaces checks of "SCALAR_INT_MODE_P (...)" with
      "is_a <scalar_int_mode> (..., &var)" in cases where it becomes
      useful to refer to the mode as a scalar_int_mode.  It also
      replaces some checks for the two constituent classes (MODE_INT
      and MODE_PARTIAL_INT).
      
      The patch also introduces is_a <scalar_int_mode> checks for some
      uses of HWI_COMPUTABLE_MODE_P, which is a subcondition of
      SCALAR_INT_MODE_P.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* wide-int.h (int_traits<unsigned char>) New class.
      	(int_traits<unsigned short>) Likewise.
      	* cfgexpand.c (expand_debug_expr): Use is_a <scalar_int_mode>.
      	Use GET_MODE_UNIT_PRECISION and remove redundant test for
      	SCALAR_INT_MODE_P.
      	* combine.c (set_nonzero_bits_and_sign_copies): Use
      	is_a <scalar_int_mode>.
      	(find_split_point): Likewise.
      	(combine_simplify_rtx): Likewise.
      	(simplify_logical): Likewise.
      	(expand_compound_operation): Likewise.
      	(expand_field_assignment): Likewise.
      	(make_compound_operation): Likewise.
      	(extended_count): Likewise.
      	(change_zero_ext): Likewise.
      	(simplify_comparison): Likewise.
      	* dwarf2out.c (scompare_loc_descriptor): Likewise.
      	(ucompare_loc_descriptor): Likewise.
      	(minmax_loc_descriptor): Likewise.
      	(mem_loc_descriptor): Likewise.
      	(loc_descriptor): Likewise.
      	* expmed.c (init_expmed_one_mode): Likewise.
      	* lra-constraints.c (lra_constraint_offset): Likewise.
      	* optabs.c (prepare_libcall_arg): Likewise.
      	* postreload.c (move2add_note_store): Likewise.
      	* reload.c (operands_match_p): Likewise.
      	* rtl.h (load_extend_op): Likewise.
      	* rtlhooks.c (gen_lowpart_general): Likewise.
      	* simplify-rtx.c (simplify_truncation): Likewise.
      	(simplify_unary_operation_1): Likewise.
      	(simplify_binary_operation_1): Likewise.
      	(simplify_const_binary_operation): Likewise.
      	(simplify_const_relational_operation): Likewise.
      	(simplify_subreg): Likewise.
      	* stor-layout.c (bitwise_mode_for_mode): Likewise.
      	* var-tracking.c (adjust_mems): Likewise.
      	(prepare_call_arguments): Likewise.
      
      gcc/ada/
      	* gcc-interface/decl.c (check_ok_for_atomic_type): Use
      	is_a <scalar_int_mode>.
      	* gcc-interface/trans.c (Pragma_to_gnu): Likewise.
      	* gcc-interface/utils.c (gnat_type_for_mode): Likewise.
      
      gcc/fortran/
      	* trans-types.c (gfc_type_for_mode): Use is_a <scalar_int_mode>.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251473
      Richard Sandiford committed
    • [20/77] Replace MODE_INT checks with is_int_mode · b4206259
      Replace checks of "GET_MODE_CLASS (...) == MODE_INT" with
      "is_int_mode (..., &var)", in cases where it becomes useful
      to refer to the mode as a scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* machmode.h (is_int_mode): New fuction.
      	* combine.c (find_split_point): Use it.
      	(combine_simplify_rtx): Likewise.
      	(simplify_if_then_else): Likewise.
      	(simplify_set): Likewise.
      	(simplify_shift_const_1): Likewise.
      	(simplify_comparison): Likewise.
      	* config/aarch64/aarch64.c (aarch64_rtx_costs): Likewise.
      	* cse.c (notreg_cost): Likewise.
      	(cse_insn): Likewise.
      	* cselib.c (cselib_lookup_1): Likewise.
      	* dojump.c (do_jump_1): Likewise.
      	(do_compare_rtx_and_jump): Likewise.
      	* dse.c (get_call_args): Likewise.
      	* dwarf2out.c (rtl_for_decl_init): Likewise.
      	(native_encode_initializer): Likewise.
      	* expmed.c (emit_store_flag_1): Likewise.
      	(emit_store_flag): Likewise.
      	* expr.c (convert_modes): Likewise.
      	(store_field): Likewise.
      	(expand_expr_real_1): Likewise.
      	* fold-const.c (fold_read_from_constant_string): Likewise.
      	* gimple-ssa-sprintf.c (get_format_string): Likewise.
      	* optabs-libfuncs.c (gen_int_libfunc): Likewise.
      	* optabs.c (expand_binop): Likewise.
      	(expand_unop): Likewise.
      	(expand_abs_nojump): Likewise.
      	(expand_one_cmpl_abs_nojump): Likewise.
      	* simplify-rtx.c (mode_signbit_p): Likewise.
      	(val_signbit_p): Likewise.
      	(val_signbit_known_set_p): Likewise.
      	(val_signbit_known_clear_p): Likewise.
      	(simplify_relational_operation_1): Likewise.
      	* tree.c (vector_type_mode): Likewise.
      
      gcc/go/
      	* go-lang.c (go_langhook_type_for_mode): Use is_int_mode.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251472
      Richard Sandiford committed
    • [19/77] Add a smallest_int_mode_for_size helper function · f67f4dff
      This patch adds a wrapper around smallest_mode_for_size
      for cases in which the mode class is MODE_INT.  Unlike
      (int_)mode_for_size, smallest_mode_for_size always returns
      a mode of the specified class, asserting if no such mode exists.
      smallest_int_mode_for_size therefore returns a scalar_int_mode
      rather than an opt_scalar_int_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* machmode.h (smallest_mode_for_size): Fix formatting.
      	(smallest_int_mode_for_size): New function.
      	* cfgexpand.c (expand_debug_expr): Use smallest_int_mode_for_size
      	instead of smallest_mode_for_size.
      	* combine.c (make_extraction): Likewise.
      	* config/arc/arc.c (arc_expand_movmem): Likewise.
      	* config/arm/arm.c (arm_expand_divmod_libfunc): Likewise.
      	* config/i386/i386.c (ix86_get_mask_mode): Likewise.
      	* config/s390/s390.c (s390_expand_insv): Likewise.
      	* config/sparc/sparc.c (assign_int_registers): Likewise.
      	* config/spu/spu.c (spu_function_value): Likewise.
      	(spu_function_arg): Likewise.
      	* coverage.c (get_gcov_type): Likewise.
      	(get_gcov_unsigned_t): Likewise.
      	* dse.c (find_shift_sequence): Likewise.
      	* expmed.c (store_bit_field_1): Likewise.
      	* expr.c (convert_move): Likewise.
      	(store_field): Likewise.
      	* internal-fn.c (expand_arith_overflow): Likewise.
      	* optabs-query.c (get_best_extraction_insn): Likewise.
      	* optabs.c (expand_twoval_binop_libfunc): Likewise.
      	* stor-layout.c (layout_type): Likewise.
      	(initialize_sizetypes): Likewise.
      	* targhooks.c (default_get_mask_mode): Likewise.
      	* tree-ssa-loop-manip.c (canonicalize_loop_ivs): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251471
      Richard Sandiford committed
    • [18/77] Make int_mode_for_mode return an opt_scalar_int_mode · 304b9962
      Also use int_mode_for_mode instead of (int_)mode_for_size
      in cases where the requested size was the bitsize of an
      existing mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
                  Alan Hayward  <alan.hayward@arm.com>
                  David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* machmode.h (opt_mode::else_blk): New function.
      	(int_mode_for_mode): Declare.
      	* stor-layout.c (int_mode_for_mode): Return an opt_scalar_int_mode.
      	* builtins.c (expand_builtin_signbit): Adjust for new int_mode_for_mode
      	return type.
      	* cfgexpand.c (expand_debug_expr): Likewise.
      	* combine.c (gen_lowpart_or_truncate): Likewise.
      	(gen_lowpart_for_combine): Likewise.
      	* config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Likewise.
      	* config/avr/avr.c (avr_to_int_mode): Likewise.
      	(avr_out_plus_1): Likewise.
      	(avr_out_plus): Likewise.
      	(avr_out_round): Likewise.
      	* config/i386/i386.c (ix86_split_to_parts): Likewise.
      	* config/s390/s390.c (s390_expand_vec_compare_cc): Likewise.
      	(s390_expand_vcond): Likewise.
      	* config/spu/spu.c (spu_split_immediate): Likewise.
      	(spu_expand_mov): Likewise.
      	* dse.c (get_stored_val): Likewise.
      	* expmed.c (store_bit_field_1): Likewise.
      	(convert_extracted_bit_field): Use int_mode_for_mode instead of
      	int_mode_for_size.
      	(extract_bit_field_1): Adjust for new int_mode_for_mode return type.
      	(extract_low_bits): Likewise.
      	* expr.c (emit_group_load_1): Likewise.  Separate out the BLKmode
      	handling rather than repeating the check.
      	(emit_group_store): Likewise.
      	(emit_move_via_integer): Adjust for new int_mode_for_mode return type.
      	* optabs.c (expand_absneg_bit): Likewise.
      	(expand_copysign_absneg): Likewise.
      	(expand_copysign_bit): Likewise.
      	* tree-if-conv.c (ifcvt_can_use_mask_load_store): Likewise.
      	* tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
      	* tree-vect-stmts.c (vect_gen_perm_mask_any): Likewise.
      	* var-tracking.c (prepare_call_arguments):  Likewise.
      	* config/powerpcspe/powerpcspe.c (rs6000_do_expand_vec_perm): Use
      	int_mode_for_mode instead of mode_for_size.
      	* config/rs6000/rs6000.c (rs6000_do_expand_vec_perm): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251470
      Richard Sandiford committed
    • [17/77] Add an int_mode_for_size helper function · fffbab82
      This patch adds a wrapper around mode_for_size for cases in which
      the mode class is MODE_INT (the commonest case).  The return type
      can then be an opt_scalar_int_mode instead of a machine_mode.
      
      2017-08-30  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* machmode.h (int_mode_for_size): New function.
      	* builtins.c (set_builtin_user_assembler_name): Use int_mode_for_size
      	instead of mode_for_size.
      	* calls.c (save_fixed_argument_area): Likewise.  Make use of BLKmode
      	explicit.
      	* combine.c (expand_field_assignment): Use int_mode_for_size
      	instead of mode_for_size.
      	(make_extraction): Likewise.
      	(simplify_shift_const_1): Likewise.
      	(simplify_comparison): Likewise.
      	* dojump.c (do_jump): Likewise.
      	* dwarf2out.c (mem_loc_descriptor): Likewise.
      	* emit-rtl.c (init_derived_machine_modes): Likewise.
      	* expmed.c (flip_storage_order): Likewise.
      	(convert_extracted_bit_field): Likewise.
      	* expr.c (copy_blkmode_from_reg): Likewise.
      	* graphite-isl-ast-to-gimple.c (max_mode_int_precision): Likewise.
      	* internal-fn.c (expand_mul_overflow): Likewise.
      	* lower-subreg.c (simple_move): Likewise.
      	* optabs-libfuncs.c (init_optabs): Likewise.
      	* simplify-rtx.c (simplify_unary_operation_1): Likewise.
      	* tree.c (vector_type_mode): Likewise.
      	* tree-ssa-strlen.c (handle_builtin_memcmp): Likewise.
      	* tree-vect-data-refs.c (vect_lanes_optab_supported_p): Likewise.
      	* tree-vect-generic.c (expand_vector_parallel): Likewise.
      	* tree-vect-stmts.c (vectorizable_load): Likewise.
      	(vectorizable_store): Likewise.
      
      gcc/ada/
      	* gcc-interface/decl.c (gnat_to_gnu_entity): Use int_mode_for_size
      	instead of mode_for_size.
      	(gnat_to_gnu_subprog_type): Likewise.
      	* gcc-interface/utils.c (make_type_from_size): Likewise.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r251469
      Richard Sandiford committed