From 66c5c67baffb2fa9fd9085c01f2811b07f0f7f60 Mon Sep 17 00:00:00 2001 From: Simon Dardis Date: Fri, 6 Nov 2015 11:59:20 +0000 Subject: [PATCH] Update loongson vector reductions. 2015-11-06 Simon Dardis * config/mips/loongson.md (vec_loongson_extract_lo_): New, extract low part to scalar. (reduc_uplus_): Remove. (reduc_plus_scal_): Rename from reduc_splus_, Use vec loongson_extract_lo_. (reduc_smax_scal_, reduc_smin_scal_): Rename from reduc_smax_, reduc_smax_, use vec loongson_extract_lo_. (reduc_umax_scal_, reduc_umin_scal_): Rename. From-SVN: r229844 --- gcc/ChangeLog | 12 ++++++++++ gcc/config/mips/loongson.md | 56 ++++++++++++++++++++++++++------------------- 2 files changed, 44 insertions(+), 24 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0355c9e..9adcd20 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,15 @@ +2015-11-06 Simon Dardis + + * config/mips/loongson.md (vec_loongson_extract_lo_): New, extract + low part to scalar. + (reduc_uplus_): Remove. + (reduc_plus_scal_): Rename from reduc_splus_, Use vec + loongson_extract_lo_. + (reduc_smax_scal_, reduc_smin_scal_): Rename from + reduc_smax_, reduc_smax_, use vec + loongson_extract_lo_. + (reduc_umax_scal_, reduc_umin_scal_): Rename. + 2015-11-06 Richard Biener * tree-vectorizer.h (struct _bb_vec_info): Add region_begin/end diff --git a/gcc/config/mips/loongson.md b/gcc/config/mips/loongson.md index 0b19bd7..b8489ab 100644 --- a/gcc/config/mips/loongson.md +++ b/gcc/config/mips/loongson.md @@ -852,58 +852,66 @@ "dsrl\t%0,%1,%2" [(set_attr "type" "fcvt")]) -(define_expand "reduc_uplus_" - [(match_operand:VWH 0 "register_operand" "") - (match_operand:VWH 1 "register_operand" "")] +(define_insn "vec_loongson_extract_lo_" + [(set (match_operand: 0 "register_operand" "=r") + (vec_select: + (match_operand:VWHB 1 "register_operand" "f") + (parallel [(const_int 0)])))] "TARGET_HARD_FLOAT && TARGET_LOONGSON_VECTORS" -{ - mips_expand_vec_reduc (operands[0], operands[1], gen_add3); - DONE; -}) + "mfc1\t%0,%1" + [(set_attr "type" "mfc")]) -; ??? Given that we're not describing a widening reduction, we should -; not have separate optabs for signed and unsigned. -(define_expand "reduc_splus_" - [(match_operand:VWHB 0 "register_operand" "") +(define_expand "reduc_plus_scal_" + [(match_operand: 0 "register_operand" "") (match_operand:VWHB 1 "register_operand" "")] "TARGET_HARD_FLOAT && TARGET_LOONGSON_VECTORS" { - emit_insn (gen_reduc_uplus_(operands[0], operands[1])); + rtx tmp = gen_reg_rtx (GET_MODE (operands[1])); + mips_expand_vec_reduc (tmp, operands[1], gen_add3); + emit_insn (gen_vec_loongson_extract_lo_ (operands[0], tmp)); DONE; }) -(define_expand "reduc_smax_" - [(match_operand:VWHB 0 "register_operand" "") +(define_expand "reduc_smax_scal_" + [(match_operand: 0 "register_operand" "") (match_operand:VWHB 1 "register_operand" "")] "TARGET_HARD_FLOAT && TARGET_LOONGSON_VECTORS" { - mips_expand_vec_reduc (operands[0], operands[1], gen_smax3); + rtx tmp = gen_reg_rtx (GET_MODE (operands[1])); + mips_expand_vec_reduc (tmp, operands[1], gen_smax3); + emit_insn (gen_vec_loongson_extract_lo_ (operands[0], tmp)); DONE; }) -(define_expand "reduc_smin_" - [(match_operand:VWHB 0 "register_operand" "") +(define_expand "reduc_smin_scal_" + [(match_operand: 0 "register_operand" "") (match_operand:VWHB 1 "register_operand" "")] "TARGET_HARD_FLOAT && TARGET_LOONGSON_VECTORS" { - mips_expand_vec_reduc (operands[0], operands[1], gen_smin3); + rtx tmp = gen_reg_rtx (GET_MODE (operands[1])); + mips_expand_vec_reduc (tmp, operands[1], gen_smin3); + emit_insn (gen_vec_loongson_extract_lo_ (operands[0], tmp)); DONE; }) -(define_expand "reduc_umax_" - [(match_operand:VB 0 "register_operand" "") +(define_expand "reduc_umax_scal_" + [(match_operand: 0 "register_operand" "") (match_operand:VB 1 "register_operand" "")] "TARGET_HARD_FLOAT && TARGET_LOONGSON_VECTORS" { - mips_expand_vec_reduc (operands[0], operands[1], gen_umax3); + rtx tmp = gen_reg_rtx (GET_MODE (operands[1])); + mips_expand_vec_reduc (tmp, operands[1], gen_umax3); + emit_insn (gen_vec_loongson_extract_lo_ (operands[0], tmp)); DONE; }) -(define_expand "reduc_umin_" - [(match_operand:VB 0 "register_operand" "") +(define_expand "reduc_umin_scal_" + [(match_operand: 0 "register_operand" "") (match_operand:VB 1 "register_operand" "")] "TARGET_HARD_FLOAT && TARGET_LOONGSON_VECTORS" { - mips_expand_vec_reduc (operands[0], operands[1], gen_umin3); + rtx tmp = gen_reg_rtx (GET_MODE (operands[1])); + mips_expand_vec_reduc (tmp, operands[1], gen_umin3); + emit_insn (gen_vec_loongson_extract_lo_ (operands[0], tmp)); DONE; }) -- 2.7.4