+2020-05-07 Segher Boessenkool <segher@kernel.crashing.org>
+
+ * config/rs6000/rs6000.md (*setnbc_<un>signed_<GPR:mode>): New
+ define_insn.
+ (*setnbcr_<un>signed_<GPR:mode>): New define_insn.
+ (*neg_eq_<mode>): Avoid for TARGET_FUTURE; add missing && 1.
+ (*neg_ne_<mode>): Likewise.
+
2020-05-07 Segher Boessenkool <segher@kernel.crashing.org>
* config/rs6000/rs6000.md (setbc_<un>signed_<GPR:mode>): New
"setbcr %0,%j1"
[(set_attr "type" "isel")])
+; Set Negative Boolean Condition (Reverse)
+(define_insn "*setnbc_<un>signed_<GPR:mode>"
+ [(set (match_operand:GPR 0 "gpc_reg_operand" "=r")
+ (neg:GPR (match_operator:GPR 1 "scc_comparison_operator"
+ [(match_operand:CCEITHER 2 "cc_reg_operand" "y")
+ (const_int 0)])))]
+ "TARGET_FUTURE"
+ "setnbc %0,%j1"
+ [(set_attr "type" "isel")])
+
+(define_insn "*setnbcr_<un>signed_<GPR:mode>"
+ [(set (match_operand:GPR 0 "gpc_reg_operand" "=r")
+ (neg:GPR (match_operator:GPR 1 "scc_rev_comparison_operator"
+ [(match_operand:CCEITHER 2 "cc_reg_operand" "y")
+ (const_int 0)])))]
+ "TARGET_FUTURE"
+ "setnbcr %0,%j1"
+ [(set_attr "type" "isel")])
+
;; Floating point conditional move
(define_expand "mov<mode>cc"
[(set (match_operand:SFDF 0 "gpc_reg_operand")
(clobber (match_scratch:P 3 "=r"))
(clobber (match_scratch:P 4 "=r"))
(clobber (reg:P CA_REGNO))]
- ""
+ "!TARGET_FUTURE"
"#"
- ""
+ "&& 1"
[(parallel [(set (match_dup 4)
(plus:P (match_dup 3)
(const_int -1)))
(clobber (match_scratch:P 3 "=r"))
(clobber (match_scratch:P 4 "=r"))
(clobber (reg:P CA_REGNO))]
- ""
+ "!TARGET_FUTURE"
"#"
- ""
+ "&& 1"
[(parallel [(set (match_dup 4)
(neg:P (match_dup 3)))
(set (reg:P CA_REGNO)