1. 22 Oct, 2019 20 commits
    • Fix incorrect merge of conflictant names in `dump_graphviz` · 51940760
      When using lto-dump -callgraph with two or more .o files containing distinct
      functions with the same name, dump_graphviz incorrectly merged those functions
      into a single node. This patch fixes this issue by calling `dump_name` instead
      of `name`, therefore concat'ing the function name with the node's id.
      
      To understeand what was the issue, let's say you have two files:
      
      a.c: static void foo (void) { do_something (); }
      
      b.c: static void foo (void) { do_something_else (); }
      
      These are distinct functions and should be represented as distinct nodes in the
      callgraph dump.
      
      2019-10-22  Giuliano Belinassi  <giuliano.belinassi@usp.br>
      
      	* cgraph.c (dump_graphviz): Change name to dump_name
      
      From-SVN: r277299
      Giuliano Belinassi committed
    • re PR fortran/92174 (runtime error: index 15 out of bounds for type 'gfc_expr *[15]) · ebb3afe2
      2019-10-22  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/92174
      	* decl.c (attr_decl1): Move check for F2018:C822 from here ...
      	* array.c (gfc_set_array_spec): ... to here.
      
      From-SVN: r277297
      Steven G. Kargl committed
    • re PR tree-optimization/85887 (Missing DW_TAG_lexical_block PC range) · 1ee4c3da
      	PR tree-optimization/85887
      	* decl.c (expand_static_init): Drop ECF_LEAF from __cxa_guard_acquire
      	and __cxa_guard_release.
      
      From-SVN: r277293
      Jakub Jelinek committed
    • PR c++/85746: Don't fold __builtin_constant_p prematurely · b09a67ea
      2019-10-22  Marc Glisse  <marc.glisse@inria.fr>
      
      gcc/cp/
      	* constexpr.c (cxx_eval_builtin_function_call): Only set
      	force_folding_builtin_constant_p if manifestly_const_eval.
      
      gcc/testsuite/
      	* g++.dg/pr85746.C: New file.
      
      From-SVN: r277292
      Marc Glisse committed
    • Arm: Fix arm libsanitizer bootstrap failure · 761a3a95
      Glibc has recently introduced changed to the mode field in ipc_perm
      in commit 2f959dfe849e0646e27403f2e4091536496ac0f0. For Arm this
      means that the mode field no longer has the same size.
      
      This causes an assert failure against libsanitizer's internal copy
      of ipc_perm.  Since this change can't be easily detected I am adding
      arm to the list of targets that are excluded from this check.  libsanitizer
      doesn't use this field (and others, it in fact uses only 1 field) so this check
      can be ignored.
      
      Padding bits were used by glibc when the field was changed so sizeof and offsets
      of the remaining fields should be the same.
      
      libsanitizer/ChangeLog:
      
      	PR sanitizer/92154
      	* sanitizer_common/sanitizer_platform_limits_posix.cpp (defined):
      	Cherry-pick compiler-rt revision r375220.
      
      From-SVN: r277291
      Tamar Christina committed
    • [arm] Match subtraction from carry_operation · 2e30cb83
      On Arm we have both carry and borrow operations, but borrow is
      essentially '~carry'.  Of course, with boolean logic ~carry is also
      1-carry.
      
      GCC transforms
      
      	(1 - X - LTU (cc, 0))
      
      into
      
      	(GEU (cc, 0) - X)
      
      Now the former matches a real insn in Arm state, using the RSC
      instruction with #1 as the immediate, but we currently do not
      recognize the canonicalized form.  Nevertheless, given the above
      logic, this turns out to be quite straight forward as the original
      expression matches arm_borrow_operation and the revised form can be
      used with arm_carry_operation.  Since we match this new pattern we
      also update rtx_costs to handle it.
      
      	* config/arm/arm.md (rsbsi_carryin_reg): New pattern.
      	* config/arm/arm.c (arm_rtx_costs_internal, case MINUS): Handle
      	subtraction from a carry operation.
      
      From-SVN: r277290
      Richard Earnshaw committed
    • [arm] make arm_carry_operation and arm_borrow_operation duals · b747c183
      Arm_carry_operation and arm_borrow_operation are duals: given that we
      have a comparison that returns a result that relies solely in the
      carry flag one is the inverse of the other.  So there's no reason for
      one to have a CC mode that the other does not have.  This patch
      restores that equivalence.
      
      	* config/arm/predicates.md (arm_borrow_operation): Handle CC_ADCmode.
      
      From-SVN: r277289
      Richard Earnshaw committed
    • re PR tree-optimization/92173 (ICE in optab_for_tree_code, at optabs-tree.c:81) · 6c7b0df8
      2019-10-22  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/92173
      	* tree-vect-loop.c (vectorizable_reduction): If
      	vect_transform_reduction cannot handle code-generation try without
      	the single-def-use-cycle optimization.  Pass optab_vector to
      	optab_for_tree_code to get vector shifts as that's what we'd
      	generate.
      
      	* gcc.dg/torture/pr92173.c: New testcase.
      
      From-SVN: r277288
      Richard Biener committed
    • re PR middle-end/90796 (GCC: O2 vs O3 output differs on simple test) · 92781ff1
      Fix PR middle-end/90796
      
              PR middle-end/90796
              * gimple-loop-jam.c (any_access_function_variant_p): New function.
              (adjust_unroll_factor): Use it to constrain safety, new parameter.
              (tree_loop_unroll_and_jam): Adjust call and profitable unroll factor.
      
      testsuite/
              * gcc.dg/unroll-and-jam.c: Add three invalid and one valid case.
      
      From-SVN: r277287
      Michael Matz committed
    • re PR tree-optimization/92173 (ICE in optab_for_tree_code, at optabs-tree.c:81) · 9107d652
      2019-10-22  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/92173
      	* tree-vect-loop.c (vectorizable_reduction): If
      	vect_transform_reduction cannot handle code-generation try without
      	the single-def-use-cycle optimization.  Pass optab_vector to
      	optab_for_tree_code to get vector shifts as that's what we'd
      	generate.
      
      	* gcc.dg/torture/pr92173.c: New testcase.
      
      From-SVN: r277286
      Richard Biener committed
    • Come up with json::integer_number and use it in GCOV. · 07622278
      2019-10-22  Martin Liska  <mliska@suse.cz>
      
      	* diagnostic-format-json.cc (json_from_expanded_location):
      	Use json::integer_number.
      	* gcov.c (output_intermediate_json_line): Use new
      	json::integer_number.
      	(output_json_intermediate_file): Likewise.
      	* json.cc (number::print): Move to ...
      	(float_number::print): ... this.
      	(integer_number::print): New.
      	(test_writing_numbers): Move to ...
      	(test_writing_float_numbers): ... this.
      	(test_writing_integer_numbers): New.
      	(json_cc_tests): Register test_writing_integer_numbers.
      	* json.h (class value): Add forward declaration
      	for float_number and integer_number.
      	(enum kind): Add JSON_INTEGER and JSON_FLOAT.
      	(class number): Move to ...
      	(class float_number): ... this.
      	(class integer_number): New.
      	* optinfo-emit-json.cc (optrecord_json_writer::impl_location_to_json):
      	Use json::integer_number.
      	(optrecord_json_writer::location_to_json): Likewise.
      	(optrecord_json_writer::profile_count_to_json): Likewise.
      	(optrecord_json_writer::pass_to_json): Likewise.
      
      From-SVN: r277284
      Martin Liska committed
    • Fix PR reference in ChangeLog. · fc25649c
      From-SVN: r277283
      Martin Liska committed
    • Fix use after free in vector_size change · 87121696
      r277235 was a bit too mechanical and ended up introducing use
      after free bugs in both loop and SLP vectorisation.
      
      2019-10-22  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	* tree-vect-slp.c (vect_slp_bb_region): Check whether
      	autodetected_vector_size rather than vector_size is zero.
      	* tree-vect-loop.c (vect_analyze_loop): Likewise.
      	Set autodetected_vector_size immediately after calling
      	vect_analyze_loop_2.  Check for a fatal error before advancing
      	next_size.
      
      From-SVN: r277282
      Richard Sandiford committed
    • [C++] Avoid exposing internal details in aka types · 10bce48f
      This patch extends r276951 to work for C++ too.
      
      2019-10-22  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/cp/
      	* cp-tree.h (STF_USER_VISIBLE): New constant.
      	(strip_typedefs, strip_typedefs_expr): Take a flags argument.
      	* tree.c (strip_typedefs, strip_typedefs_expr): Likewise,
      	updating mutual calls accordingly.  When STF_USER_VISIBLE is true,
      	only look through typedefs if user_facing_original_type_p.
      	* error.c (dump_template_bindings, type_to_string): Pass
      	STF_USER_VISIBLE to strip_typedefs.
      	(dump_type): Likewise, unless pp_c_flag_gnu_v3 is set.
      
      gcc/testsuite/
      	* g++.dg/diagnostic/aka5.h: New test.
      	* g++.dg/diagnostic/aka5a.C: Likewise.
      	* g++.dg/diagnostic/aka5b.C: Likewise.
      	* g++.target/aarch64/diag_aka_1.C: Likewise.
      
      From-SVN: r277281
      Richard Sandiford committed
    • [testsuite] Make the Wnonnull independent of system headers. · 24b54eb2
      To avoid the result of this test depending on the implementation of
      the system 'string.h', provide prototypes for the two functions used
      in the test.
      
      gcc/testsuite/ChangeLog:
      
      2019-10-22  Iain Sandoe  <iain@sandoe.co.uk>
      
      	* gcc.dg/Wnonnull.c: Provide prototypes for strlen and memcpy.
      	Use __SIZE_TYPE__ instead of size_t.
      
      From-SVN: r277280
      Iain Sandoe committed
    • * lock-and-run.sh: Tweak command order. · 8c726579
      From-SVN: r277279
      Jason Merrill committed
    • * .gitattributes: Also check ChangeLog whitespace. · 678a1e99
      From-SVN: r277278
      Jason Merrill committed
    • lock-and-run.sh: Check for process existence rather than timeout. · d720518f
      	* lock-and-run.sh: Check for process existence rather than timeout.
      
      Matthias Klose noted that on less powerful targets, a link might take more
      than 5 minutes; he mentions a figure of 3 hours for an LTO link.  So this
      patch changes the timeout to a check for whether the locking process still
      exists.  If the lock exists in an erroneous state (no pid file or can't
      signal the pid) for 30 sec, steal it.
      
      From-SVN: r277277
      Jason Merrill committed
    • Daily bump. · 0bfdd2d4
      From-SVN: r277276
      GCC Administrator committed
  2. 21 Oct, 2019 20 commits
    • expr.c (expand_expr_real_2): Don't widen constant op1 when expanding widening multiplication. · c01d9cfe
      2019-10-21  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
      
      	* expr.c (expand_expr_real_2): Don't widen constant op1 when expanding
      	widening multiplication.
      
      From-SVN: r277271
      Jozef Lawrynowicz committed
    • PR c++/83434 - typeinfo for noexcept function lacks noexcept information · debf1662
      2019-10-21  Kamlesh Kumar  <kamleshbhalui@gmail.com>
      
              * rtti.c (get_tinfo_decl_dynamic): Do not call
              TYPE_MAIN_VARIANT for function.
              (get_typeid): Likewise.
      
              * g++.dg/rtti/pr83534.C: New Test.
      
      Reviewed-by: Jason Merrill <jason@redhat.com>
      
      Co-Authored-By: Jason Merrill <jason@redhat.com>
      
      From-SVN: r277270
      Kamlesh Kumar committed
    • parser.c (cp_parser_class_head): Improve error recovery upon extra qualification error. · 79cd6c7b
      /cp
      2019-10-21  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* parser.c (cp_parser_class_head): Improve error recovery upon
      	extra qualification error.
      
      /testsuite
      2019-10-21  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* g++.dg/parse/qualified2.C: Tighten dg-error directive.
      	* g++.old-deja/g++.other/decl5.C: Don't expect redundant error.
      
      From-SVN: r277268
      Paolo Carlini committed
    • re PR c++/92015 (internal compiler error: in cxx_eval_array_reference, at cp/constexpr.c:2568) · 5b884e94
      	PR c++/92015
      	* constexpr.c (cxx_eval_component_reference, cxx_eval_bit_field_ref):
      	Use STRIP_ANY_LOCATION_WRAPPER on CONSTRUCTOR elts.
      
      	* g++.dg/cpp0x/constexpr-92015.C: New test.
      
      From-SVN: r277267
      Jakub Jelinek committed
    • PR c++/92062 - ODR-use ignored for static member of class template. · afa8c090
      has_value_dependent_address wasn't stripping location wrappers so it
      gave the wrong answer for "&x" in the static_assert.  That led us to
      thinking that the expression isn't instantiation-dependent, and we
      skipped static initialization of A<0>::x.
      
      This patch adds stripping so that has_value_dependent_address gives the
      same answer as it used to before the location wrappers addition.
      
      	* pt.c (has_value_dependent_address): Strip location wrappers.
      
      	* g++.dg/cpp0x/constexpr-odr1.C: New test.
      	* g++.dg/cpp0x/constexpr-odr2.C: New test.
      
      From-SVN: r277266
      Marek Polacek committed
    • PR c++/92106 - ICE with structured bindings and -Wreturn-local-addr. · e011c010
      	* typeck.c (maybe_warn_about_returning_address_of_local): Avoid
      	recursing on null initializer and return false instead.
      
      	* g++.dg/cpp1z/decomp50.C: New test.
      
      From-SVN: r277264
      Marek Polacek committed
    • [arm] clean up alu+shift patterns · f3b3331a
      My DImode arithmetic patches introduced a bug on thumb2 where we could
      generate a register controlled shift into an ALU operation.  In
      fairness the bug was always present, but latent.
      
      As part of cleaning this up (and auditing to ensure I've caught them
      all this time) I've gone through all the shift generating patterns in
      the MD files and cleaned them up, reducing some duplicate patterns
      between the arm and thumb2 descriptions where we can now share the
      same pattern.  In some cases we were missing the shift attribute; in
      most cases I've eliminated an ugly attribute setting using the fact
      that we normally need separate alternatives for shift immediate and
      shift reg to simplify the logic.
      
      	* config/arm/iterators.md (t2_binop0): Fix typo in comment.
      	* config/arm/arm.md (addsi3_carryin_shift): Simplify selection of the
      	type attribute.
      	(subsi3_carryin_shift): Separate into register and constant controlled
      	alternatives.  Use shift_amount_operand for operand 4.  Set shift
      	attribute and simplify type attribute.
      	(subsi3_carryin_shift_alt): Likewise.
      	(rsbsi3_carryin_shift): Likewise.
      	(rsbsi3_carryin_shift_alt): Likewise.
      	(andsi_not_shiftsi_si): Enable for TARGET_32BIT.  Separate constant
      	and register controlled shifts into distinct alternatives.
      	(andsi_not_shiftsi_si_scc_no_reuse): Likewise.
      	(andsi_not_shiftsi_si_scc): Likewise.
      	(arm_cmpsi_negshiftsi_si): Likewise.
      	(not_shiftsi): Remove redundant M constraint from alternative 1.
      	(not_shiftsi_compare0): Likewise.
      	(arm_cmpsi_insn): Remove redundant alternative 2.
      	(cmpsi_shift_swp): Likewise.
      	(sub_shiftsi): Likewise.
      	(sub_shiftsi_compare0_scratch): Likewise.
      	* config/arm/thumb2.md (thumb_andsi_not_shiftsi_si): Delete pattern.
      	(thumb2_cmpsi_neg_shiftsi): Likewise.
      
      From-SVN: r277262
      Richard Earnshaw committed
    • re PR tree-optimization/92162 (ICE in vect_create_epilog_for_reduction, at tree-vect-loop.c:4252) · 53b15ca9
      2019-10-21  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/92162
      	* tree-vect-loop.c (vect_create_epilog_for_reduction): Lookup
      	STMT_VINFO_REDUC_IDX in reduc_info.
      	* tree-vect-stmts.c (vectorizable_condition): Likewise.
      
      	* gcc.dg/pr92162.c: New testcase.
      
      From-SVN: r277261
      Richard Biener committed
    • contrib: Add KPASS support to dg-extract-results.{sh,py} · aa7710cb
      Extend dg-extract-results.sh and dg-extract-results.py to support the
      KPASS test result status.  This is required by GDB which uses a copy
      of the dg-extract-results.{sh,py} scripts that it tries to keep in
      sync with GCC.
      
      ChangeLog:
      
              * contrib/dg-extract-results.sh: Add support for KPASS.
              * contrib/dg-extract-results.py: Likewise.
      
      From-SVN: r277260
      Andrew Burgess committed
    • tree-vectorizer.h (_slp_tree::ops): New member. · 30c0d1e3
      2019-10-21  Richard Biener  <rguenther@suse.de>
      
      	* tree-vectorizer.h (_slp_tree::ops): New member.
      	(SLP_TREE_SCALAR_OPS): New.
      	(vect_get_slp_defs): Adjust prototype.
      	* tree-vect-slp.c (vect_free_slp_tree): Release
      	SLP_TREE_SCALAR_OPS.
      	(vect_create_new_slp_node): Initialize it.  New overload for
      	initializing by an operands array.
      	(_slp_oprnd_info::ops): New member.
      	(vect_create_oprnd_info): Initialize it.
      	(vect_free_oprnd_info): Release it.
      	(vect_get_and_check_slp_defs): Populate the operands array.
      	Do not swap operands in the IL when not necessary.
      	(vect_build_slp_tree_2): Build SLP nodes for invariant operands.
      	Record SLP_TREE_SCALAR_OPS for all invariant nodes.  Also
      	swap operands in the operands array.  Do not swap operands in
      	the IL.
      	(vect_slp_rearrange_stmts): Re-arrange SLP_TREE_SCALAR_OPS as well.
      	(vect_gather_slp_loads): Fix.
      	(vect_detect_hybrid_slp_stmts): Likewise.
      	(vect_slp_analyze_node_operations_1): Search for a internal
      	def child for computing reduction SLP_TREE_NUMBER_OF_VEC_STMTS.
      	(vect_slp_analyze_node_operations): Skip ops-only stmts for
      	the def-type push/pop dance.
      	(vect_get_constant_vectors): Compute number_of_vectors here.
      	Use SLP_TREE_SCALAR_OPS and simplify greatly.
      	(vect_get_slp_vect_defs): Use gimple_get_lhs also for PHIs.
      	(vect_get_slp_defs): Simplify greatly.
      	* tree-vect-loop.c (vectorize_fold_left_reduction): Simplify.
      	(vect_transform_reduction): Likewise.
      	* tree-vect-stmts.c (vect_get_vec_defs): Simplify.
      	(vectorizable_call): Likewise.
      	(vectorizable_operation): Likewise.
      	(vectorizable_load): Likewise.
      	(vectorizable_condition): Likewise.
      	(vectorizable_comparison): Likewise.
      
      From-SVN: r277241
      Richard Biener committed
    • re PR tree-optimization/92161 (ICE in vect_get_vec_def_for_stmt_copy, at tree-vect-stmts.c:1687) · ae7f3143
      2019-10-21  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/92161
      	* tree-vect-loop.c (vect_analyze_loop_2): Reset stmts def-type
      	for reductions.
      
      	* gfortran.dg/pr92161.f: New testcase.
      
      From-SVN: r277240
      Richard Biener committed
    • [AArch64] Implement __rndr, __rndrrs intrinsics · c5dc215d
      This patch implements the recently published[1] __rndr and __rndrrs
      intrinsics used to access the RNG in Armv8.5-A.
      The __rndrrs intrinsics can be used to reseed the generator too.
      They are guarded by the __ARM_FEATURE_RNG feature macro.
      A quirk with these intrinsics is that they store the random number in
      their pointer argument and return a status
      code if the generation succeeded.
      
      The instructions themselves write the CC flags indicating the success of
      the operation that we can then read with a CSET.
      Therefore this implementation makes use of the IGNORE indicator to the
      builtin expand machinery to avoid generating
      the CSET if its result is unused (the CC reg clobbering effect is still
      reflected in the pattern).
      I've checked that using unspec_volatile prevents undesirable CSEing of
      the instructions.
      
      [1] https://developer.arm.com/docs/101028/latest/data-processing-intrinsics
      
      	* config/aarch64/aarch64.md (UNSPEC_RNDR, UNSPEC_RNDRRS): Define.
      	(aarch64_rndr): New define_insn.
      	(aarch64_rndrrs): Likewise.
      	* config/aarch64/aarch64.h (AARCH64_ISA_RNG): Define.
      	(TARGET_RNG): Likewise.
      	* config/aarch64/aarch64.c (aarch64_expand_builtin): Use IGNORE
      	argument.
      	* config/aarch64/aarch64-protos.h (aarch64_general_expand_builtin):
      	Add fourth argument in prototype.
      	* config/aarch64/aarch64-builtins.c (enum aarch64_builtins):
      	Add AARCH64_BUILTIN_RNG_RNDR, AARCH64_BUILTIN_RNG_RNDRRS.
      	(aarch64_init_rng_builtins): Define.
      	(aarch64_general_init_builtins): Call aarch64_init_rng_builtins.
      	(aarch64_expand_rng_builtin): Define.
      	(aarch64_general_expand_builtin): Use IGNORE argument, handle
      	RNG builtins.
      	* config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Define
      	__ARM_FEATURE_RNG when TARGET_RNG.
      	* config/aarch64/arm_acle.h (__rndr, __rndrrs): Define.
      
      	* gcc.target/aarch64/acle/rng_1.c: New test.
      
      From-SVN: r277239
      Kyrylo Tkachov committed
    • [vect] Only change base alignment if more restrictive · d2db7f79
      This patch makes sure ensure_base_align only changes alignment if the new
      alignment is more restrictive.  It already did this if we were dealing with
      symbols, but it now does it for all types of declarations.
      
      gcc/ChangeLog:
      2019-10-21  Andre Vieira  <andre.simoesdiasvieira@arm.com>
      
      	* tree-vect-stmts (ensure_base_align): Only change alignment if new
      	alignment is more restrictive.
      
      From-SVN: r277238
      Andre Vieira committed
    • re PR tree-optimization/91532 ([SVE] Redundant predicated store in gcc.target/aarch64/fmla_2.c) · 3669c308
      2019-10-21  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
      
      	PR tree-optimization/91532
      	* gcc.target/aarch64/sve/fmla_2.c: Add dg-scan check for two st1d
      	insns.
      
      From-SVN: r277237
      Prathamesh Kulkarni committed
    • Fix some fallout for small targets. · 63bb8fba
      	PR testsuite/52641
      	* gcc.dg/torture/pr86034.c: Use 32-bit base type for a bitfield of
      	width > 16 bits.
      	* gcc.dg/torture/pr90972.c [avr]: Add option "-w".
      	* gcc.dg/torture/pr87693.c: Same.
      	* gcc.dg/torture/pr91178.c: Add dg-require-effective-target size32plus.
      	* gcc.dg/torture/pr91178-2.c: Same.
      	* gcc.dg/torture/20181024-1.c
      	* gcc.dg/torture/pr86554-1.c: Use 32-bit integers.
      	* gcc.dg/tree-ssa/pr91091-1.c: Same.
      
      From-SVN: r277236
      Georg-Johann Lay committed
    • Replace current_vector_size with vec_info::vector_size · ba7f76dd
      2019-10-21  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	* tree-vectorizer.h (vec_info::vector_size): New member variable.
      	(vect_update_max_nunits): Update comment.
      	(current_vector_size): Delete.
      	* tree-vect-stmts.c (current_vector_size): Likewise.
      	(get_vectype_for_scalar_type): Use vec_info::vector_size instead
      	of current_vector_size.
      	(get_mask_type_for_scalar_type): Likewise.
      	* tree-vectorizer.c (try_vectorize_loop_1): Likewise.
      	* tree-vect-loop.c (vect_update_vf_for_slp): Likewise.
      	(vect_analyze_loop, vect_halve_mask_nunits): Likewise.
      	(vect_double_mask_nunits, vect_transform_loop): Likewise.
      	* tree-vect-slp.c (can_duplicate_and_interleave_p): Likewise.
      	(vect_make_slp_decision, vect_slp_bb_region): Likewise.
      
      From-SVN: r277235
      Richard Sandiford committed
    • Pass a vec_info to vect_double_mask_nunits · 8d147395
      2019-10-21  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	* tree-vectorizer.h (vect_double_mask_nunits): Take a vec_info.
      	* tree-vect-loop.c (vect_double_mask_nunits): Likewise.
      	* tree-vect-stmts.c (supportable_narrowing_operation):  Update call
      	accordingly.
      
      From-SVN: r277234
      Richard Sandiford committed
    • Pass a vec_info to vect_halve_mask_nunits · 830e90da
      2019-10-21  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	* tree-vectorizer.h (vect_halve_mask_nunits): Take a vec_info.
      	* tree-vect-loop.c (vect_halve_mask_nunits): Likewise.
      	* tree-vect-loop-manip.c (vect_maybe_permute_loop_masks): Update
      	call accordingly.
      	* tree-vect-stmts.c (supportable_widening_operation): Likewise.
      
      From-SVN: r277233
      Richard Sandiford committed
    • Pass a loop_vec_info to vect_maybe_permute_loop_masks · b0dab10e
      2019-10-21  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	* tree-vect-loop-manip.c (vect_maybe_permute_loop_masks): Take
      	a loop_vec_info.
      	(vect_set_loop_condition_masked): Update call accordingly.
      
      From-SVN: r277232
      Richard Sandiford committed
    • Pass a vec_info to supportable_narrowing_operation · db8374a6
      2019-10-21  Richard Sandiford  <richard.sandiford@arm.com>
      
      gcc/
      	* tree-vectorizer.h (supportable_narrowing_operation): Take a vec_info.
      	* tree-vect-stmts.c (supportable_narrowing_operation): Likewise.
      	(simple_integer_narrowing): Update call accordingly.
      	(vectorizable_conversion): Likewise.
      
      From-SVN: r277231
      Richard Sandiford committed