From cb152d128b72427d76d40d5d69245638ef8494a8 Mon Sep 17 00:00:00 2001 From: Segher Boessenkool Date: Wed, 5 Jun 2019 01:37:38 +0200 Subject: [PATCH] rs6000: Remove wp and wq wp becomes wa with isa p9tf, and wq is replaced by wa with isa p9kf. To manage to do that, there is the new mode attribute VSisa. * config/rs6000/constraints.md (define_register_constraint "wp"): Delete. (define_register_constraint "wq"): Delete. * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust. (rs6000_init_hard_regno_mode_ok): Adjust. * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete RS6000_CONSTRAINT_wp and RS6000_CONSTRAINT_wq. * config/rs6000/vsx.md (define_mode_attr VSr3): Delete. (define_mode_attr VSa): Delete. (define_mode_attr VSisa): New. (rest of file): Adjust. * doc/md.texi (Machine Constraints): Adjust. From-SVN: r271939 --- gcc/ChangeLog | 15 ++++ gcc/config/rs6000/constraints.md | 6 -- gcc/config/rs6000/rs6000.c | 11 --- gcc/config/rs6000/rs6000.h | 2 - gcc/config/rs6000/vsx.md | 115 +++++++++++++++---------------- gcc/doc/md.texi | 11 +-- 6 files changed, 72 insertions(+), 88 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 453f017c1a52..526ed45be89b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,18 @@ +2019-06-04 Segher Boessenkool + + * config/rs6000/constraints.md (define_register_constraint "wp"): + Delete. + (define_register_constraint "wq"): Delete. + * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust. + (rs6000_init_hard_regno_mode_ok): Adjust. + * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete + RS6000_CONSTRAINT_wp and RS6000_CONSTRAINT_wq. + * config/rs6000/vsx.md (define_mode_attr VSr3): Delete. + (define_mode_attr VSa): Delete. + (define_mode_attr VSisa): New. + (rest of file): Adjust. + * doc/md.texi (Machine Constraints): Adjust. + 2019-06-04 Segher Boessenkool * config/rs6000/rs6000.md (define_attr "isa"): Add p9kf and p9tf. diff --git a/gcc/config/rs6000/constraints.md b/gcc/config/rs6000/constraints.md index b1dcee20eb8c..f047742aaff3 100644 --- a/gcc/config/rs6000/constraints.md +++ b/gcc/config/rs6000/constraints.md @@ -67,12 +67,6 @@ ;; There is a mode_attr that resolves to wa for SDmode and wn for SFmode (define_register_constraint "wn" "NO_REGS" "No register (NO_REGS).") -(define_register_constraint "wp" "rs6000_constraints[RS6000_CONSTRAINT_wp]" - "VSX register to use for IEEE 128-bit fp TFmode, or NO_REGS.") - -(define_register_constraint "wq" "rs6000_constraints[RS6000_CONSTRAINT_wq]" - "VSX register to use for IEEE 128-bit fp KFmode, or NO_REGS.") - (define_register_constraint "wr" "rs6000_constraints[RS6000_CONSTRAINT_wr]" "General purpose register if 64-bit instructions are enabled or NO_REGS.") diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index eef4572418be..91fafc4e7664 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -2509,8 +2509,6 @@ rs6000_debug_reg_global (void) "v reg_class = %s\n" "wa reg_class = %s\n" "we reg_class = %s\n" - "wp reg_class = %s\n" - "wq reg_class = %s\n" "wr reg_class = %s\n" "wx reg_class = %s\n" "wA reg_class = %s\n" @@ -2520,8 +2518,6 @@ rs6000_debug_reg_global (void) reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_v]], reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wa]], reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_we]], - reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wp]], - reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wq]], reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wr]], reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wx]], reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wA]]); @@ -3159,13 +3155,6 @@ rs6000_init_hard_regno_mode_ok (bool global_init_p) if (TARGET_STFIWX) rs6000_constraints[RS6000_CONSTRAINT_wx] = FLOAT_REGS; /* DImode */ - if (TARGET_FLOAT128_TYPE) - { - rs6000_constraints[RS6000_CONSTRAINT_wq] = VSX_REGS; /* KFmode */ - if (FLOAT128_IEEE_P (TFmode)) - rs6000_constraints[RS6000_CONSTRAINT_wp] = VSX_REGS; /* TFmode */ - } - /* Support for new direct moves (ISA 3.0 + 64bit). */ if (TARGET_DIRECT_MOVE_128) rs6000_constraints[RS6000_CONSTRAINT_we] = VSX_REGS; diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 102fe1c422ff..9b2f0d88d710 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -1257,8 +1257,6 @@ enum r6000_reg_class_enum { RS6000_CONSTRAINT_v, /* Altivec registers */ RS6000_CONSTRAINT_wa, /* Any VSX register */ RS6000_CONSTRAINT_we, /* VSX register if ISA 3.0 vector. */ - RS6000_CONSTRAINT_wp, /* VSX reg for IEEE 128-bit fp TFmode. */ - RS6000_CONSTRAINT_wq, /* VSX reg for IEEE 128-bit fp KFmode. */ RS6000_CONSTRAINT_wr, /* GPR register if 64-bit */ RS6000_CONSTRAINT_wx, /* FPR register for STFIWX */ RS6000_CONSTRAINT_wA, /* BASE_REGS if 64-bit. */ diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md index b3ebc95511ff..f04b5fc1497d 100644 --- a/gcc/config/rs6000/vsx.md +++ b/gcc/config/rs6000/vsx.md @@ -103,37 +103,25 @@ (DI "wa") (DF "wa") (SF "wa") - (TF "wp") - (KF "wq") + (TF "wa") + (KF "wa") (V1TI "v") (TI "wa")]) -;; Map the register class used for float<->int conversions (floating point side) -;; VSr3 is any register class that will hold the data -(define_mode_attr VSr3 [(V2DF "wa") - (V4SF "wa") - (DF "wa") - (SF "wa") - (DI "wa") - (KF "wq") - (TF "wp")]) - -;; The VSX register class that a type can occupy, even if it is not the -;; preferred register class (VSr is the preferred register class that will get -;; allocated first). -(define_mode_attr VSa [(V16QI "wa") - (V8HI "wa") - (V4SI "wa") - (V4SF "wa") - (V2DI "wa") - (V2DF "wa") - (DI "wa") - (DF "wa") - (SF "wa") - (V1TI "wa") - (TI "wa") - (TF "wp") - (KF "wq")]) +;; What value we need in the "isa" field, to make the IEEE QP float work. +(define_mode_attr VSisa [(V16QI "*") + (V8HI "*") + (V4SI "*") + (V4SF "*") + (V2DI "*") + (V2DF "*") + (DI "*") + (DF "*") + (SF "*") + (V1TI "*") + (TI "*") + (TF "p9tf") + (KF "p9kf")]) ;; A mode attribute to disparage use of GPR registers, except for scalar ;; integer modes. @@ -962,7 +950,7 @@ (set_attr "type" "veclogical")]) (define_insn_and_split "*vsx_le_perm_load_" - [(set (match_operand:VSX_LE_128 0 "vsx_register_operand" "=,r") + [(set (match_operand:VSX_LE_128 0 "vsx_register_operand" "=wa,r") (match_operand:VSX_LE_128 1 "memory_operand" "Z,Q"))] "!BYTES_BIG_ENDIAN && TARGET_VSX && !TARGET_P9_VECTOR" "@ @@ -979,17 +967,19 @@ DONE; } [(set_attr "type" "vecload,load") - (set_attr "length" "8,8")]) + (set_attr "length" "8,8") + (set_attr "isa" ",*")]) (define_insn "*vsx_le_perm_store_" [(set (match_operand:VSX_LE_128 0 "memory_operand" "=Z,Q") - (match_operand:VSX_LE_128 1 "vsx_register_operand" "+,r"))] + (match_operand:VSX_LE_128 1 "vsx_register_operand" "+wa,r"))] "!BYTES_BIG_ENDIAN && TARGET_VSX && !TARGET_P9_VECTOR" "@ # #" [(set_attr "type" "vecstore,store") - (set_attr "length" "12,8")]) + (set_attr "length" "12,8") + (set_attr "isa" ",*")]) (define_split [(set (match_operand:VSX_LE_128 0 "memory_operand") @@ -1140,12 +1130,12 @@ ;; VSX 0/-1 VMX const GPR const LVX (VMX) STVX (VMX) (define_insn "vsx_mov_64bit" [(set (match_operand:VSX_M 0 "nonimmediate_operand" - "=ZwO, , , r, we, ?wQ, + "=ZwO, wa, wa, r, we, ?wQ, ?&r, ??r, ??Y, , wa, v, - ?, v, , wZ, v") + ?wa, v, , wZ, v") (match_operand:VSX_M 1 "input_operand" - ", ZwO, , we, r, r, + "wa, ZwO, wa, we, r, r, wQ, Y, r, r, wE, jwM, ?jwM, W, , v, wZ"))] @@ -1164,21 +1154,21 @@ 8, 8, 8, 8, 4, 4, 4, 20, 8, 4, 4") (set_attr "isa" - "*, *, *, *, *, *, + ", , , *, *, *, *, *, *, *, p9v, *, - *, *, *, *, *")]) + , *, *, *, *")]) ;; VSX store VSX load VSX move GPR load GPR store GPR move ;; XXSPLTIB VSPLTISW VSX 0/-1 VMX const GPR const ;; LVX (VMX) STVX (VMX) (define_insn "*vsx_mov_32bit" [(set (match_operand:VSX_M 0 "nonimmediate_operand" - "=ZwO, , , ??r, ??Y, , - wa, v, ?, v, , + "=ZwO, wa, wa, ??r, ??Y, , + wa, v, ?wa, v, , wZ, v") (match_operand:VSX_M 1 "input_operand" - ", ZwO, , Y, r, r, + "wa, ZwO, wa, Y, r, r, wE, jwM, ?jwM, W, , v, wZ"))] @@ -1197,8 +1187,8 @@ 4, 4, 4, 20, 16, 4, 4") (set_attr "isa" - "*, *, *, *, *, *, - p9v, *, *, *, *, + ", , , *, *, *, + p9v, *, , *, *, *, *")]) ;; Explicit load/store expanders for the builtin functions @@ -1993,26 +1983,28 @@ ;; Vector select (define_insn "*vsx_xxsel" - [(set (match_operand:VSX_L 0 "vsx_register_operand" "=,?") + [(set (match_operand:VSX_L 0 "vsx_register_operand" "=,?wa") (if_then_else:VSX_L - (ne:CC (match_operand:VSX_L 1 "vsx_register_operand" ",") + (ne:CC (match_operand:VSX_L 1 "vsx_register_operand" ",wa") (match_operand:VSX_L 4 "zero_constant" "")) - (match_operand:VSX_L 2 "vsx_register_operand" ",") - (match_operand:VSX_L 3 "vsx_register_operand" ",")))] + (match_operand:VSX_L 2 "vsx_register_operand" ",wa") + (match_operand:VSX_L 3 "vsx_register_operand" ",wa")))] "VECTOR_MEM_VSX_P (mode)" "xxsel %x0,%x3,%x2,%x1" - [(set_attr "type" "vecmove")]) + [(set_attr "type" "vecmove") + (set_attr "isa" "")]) (define_insn "*vsx_xxsel_uns" - [(set (match_operand:VSX_L 0 "vsx_register_operand" "=,?") + [(set (match_operand:VSX_L 0 "vsx_register_operand" "=,?wa") (if_then_else:VSX_L - (ne:CCUNS (match_operand:VSX_L 1 "vsx_register_operand" ",") + (ne:CCUNS (match_operand:VSX_L 1 "vsx_register_operand" ",wa") (match_operand:VSX_L 4 "zero_constant" "")) - (match_operand:VSX_L 2 "vsx_register_operand" ",") - (match_operand:VSX_L 3 "vsx_register_operand" ",")))] + (match_operand:VSX_L 2 "vsx_register_operand" ",wa") + (match_operand:VSX_L 3 "vsx_register_operand" ",wa")))] "VECTOR_MEM_VSX_P (mode)" "xxsel %x0,%x3,%x2,%x1" - [(set_attr "type" "vecmove")]) + [(set_attr "type" "vecmove") + (set_attr "isa" "")]) ;; Copy sign (define_insn "vsx_copysign3" @@ -3814,7 +3806,7 @@ ;; 128-bit hardware types) and is vector char, vector unsigned char, ;; vector short or vector unsigned short. (define_insn_and_split "*vsx_ext__fl_" - [(set (match_operand:FL_CONV 0 "gpc_reg_operand" "=") + [(set (match_operand:FL_CONV 0 "gpc_reg_operand" "=wa") (float:FL_CONV (vec_select: (match_operand:VSX_EXTRACT_I 1 "gpc_reg_operand" "v") @@ -3835,10 +3827,11 @@ (float: (match_dup 4)))] { operands[4] = gen_rtx_REG (DImode, REGNO (operands[3])); -}) +} + [(set_attr "isa" "")]) (define_insn_and_split "*vsx_ext__ufl_" - [(set (match_operand:FL_CONV 0 "gpc_reg_operand" "=") + [(set (match_operand:FL_CONV 0 "gpc_reg_operand" "=wa") (unsigned_float:FL_CONV (vec_select: (match_operand:VSX_EXTRACT_I 1 "gpc_reg_operand" "v") @@ -3857,7 +3850,8 @@ (float: (match_dup 4)))] { operands[4] = gen_rtx_REG (DImode, REGNO (operands[3])); -}) +} + [(set_attr "isa" "")]) ;; V4SI/V8HI/V16QI set operation on ISA 3.0 (define_insn "vsx_set__p9" @@ -4210,14 +4204,15 @@ ;; Shift left double by word immediate (define_insn "vsx_xxsldwi_" - [(set (match_operand:VSX_L 0 "vsx_register_operand" "=") - (unspec:VSX_L [(match_operand:VSX_L 1 "vsx_register_operand" "") - (match_operand:VSX_L 2 "vsx_register_operand" "") + [(set (match_operand:VSX_L 0 "vsx_register_operand" "=wa") + (unspec:VSX_L [(match_operand:VSX_L 1 "vsx_register_operand" "wa") + (match_operand:VSX_L 2 "vsx_register_operand" "wa") (match_operand:QI 3 "u5bit_cint_operand" "i")] UNSPEC_VSX_SLDWI))] "VECTOR_MEM_VSX_P (mode)" "xxsldwi %x0,%x1,%x2,%3" - [(set_attr "type" "vecperm")]) + [(set_attr "type" "vecperm") + (set_attr "isa" "")]) ;; Vector reduction insns and splitters diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index 04618f67370a..843dd08d5311 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -3196,9 +3196,8 @@ Altivec vector register @item wa Any VSX register if the @option{-mvsx} option was used or NO_REGS. -When using any of the register constraints (@code{wa}, -@code{wp}, or @code{wq}, -that take VSX registers, you must use @code{%x} in the template so +When using the register constraint @code{wa} +that takes VSX registers, you must use @code{%x} in the template so that the correct register is used. Otherwise the register number output in the assembly file will be incorrect if an Altivec register is an operand of a VSX instruction that expects VSX register @@ -3251,12 +3250,6 @@ were used or NO_REGS. @item wn No register (NO_REGS). -@item wp -VSX register to use for IEEE 128-bit floating point TFmode, or NO_REGS. - -@item wq -VSX register to use for IEEE 128-bit floating point, or NO_REGS. - @item wr General purpose register if 64-bit instructions are enabled or NO_REGS. -- 2.43.5