Commit 1a402dc1 by Alan Modra Committed by Alan Modra

re PR target/14406 (rs6000 abstf2 is broken)

	PR target/14406
	* config/rs6000/rs6000.md (abstf2, abstf2+1): Delete define_insn.
	(abstf2, abstf2_internal): New define_expand.

From-SVN: r78896
parent 6a2d136b
2004-03-04 Alan Modra <amodra@bigpond.net.au>
PR target/14406
* config/rs6000/rs6000.md (abstf2, abstf2+1): Delete define_insn.
(abstf2, abstf2_internal): New define_expand.
2004-03-04 Eric Botcazou <ebotcazou@libertysurf.fr> 2004-03-04 Eric Botcazou <ebotcazou@libertysurf.fr>
PR optimization/14235 PR optimization/14235
......
...@@ -8375,35 +8375,40 @@ ...@@ -8375,35 +8375,40 @@
[(set_attr "type" "fp") [(set_attr "type" "fp")
(set_attr "length" "8")]) (set_attr "length" "8")])
(define_insn "abstf2" (define_expand "abstf2"
[(set (match_operand:TF 0 "gpc_reg_operand" "=f") [(set (match_operand:TF 0 "gpc_reg_operand" "=f")
(abs:TF (match_operand:TF 1 "gpc_reg_operand" "f")))] (abs:TF (match_operand:TF 1 "gpc_reg_operand" "f")))]
"(DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_DARWIN) "(DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_DARWIN)
&& TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_LONG_DOUBLE_128" && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_LONG_DOUBLE_128"
"* "
{ {
if (REGNO (operands[0]) == REGNO (operands[1]) + 1) rtx label = gen_label_rtx ();
return \"fabs %L0,%L1\;fabs %0,%1\"; emit_insn (gen_abstf2_internal (operands[0], operands[1], label));
else emit_label (label);
return \"fabs %0,%1\;fabs %L0,%L1\"; DONE;
}" }")
[(set_attr "type" "fp")
(set_attr "length" "8")])
(define_insn "" (define_expand "abstf2_internal"
[(set (match_operand:TF 0 "gpc_reg_operand" "=f") [(set (match_operand:TF 0 "gpc_reg_operand" "=f")
(neg:TF (abs:TF (match_operand:TF 1 "gpc_reg_operand" "f"))))] (match_operand:TF 1 "gpc_reg_operand" "f"))
(set (match_dup 3) (match_dup 5))
(set (match_dup 5) (abs:DF (match_dup 5)))
(set (match_dup 4) (compare:CCFP (match_dup 3) (match_dup 5)))
(set (pc) (if_then_else (eq (match_dup 4) (const_int 0))
(label_ref (match_operand 2 "" ""))
(pc)))
(set (match_dup 6) (neg:DF (match_dup 6)))]
"(DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_DARWIN) "(DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_DARWIN)
&& TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_LONG_DOUBLE_128" && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_LONG_DOUBLE_128"
"* "
{ {
if (REGNO (operands[0]) == REGNO (operands[1]) + 1) const int hi_word = FLOAT_WORDS_BIG_ENDIAN ? 0 : GET_MODE_SIZE (DFmode);
return \"fnabs %L0,%L1\;fnabs %0,%1\"; const int lo_word = FLOAT_WORDS_BIG_ENDIAN ? GET_MODE_SIZE (DFmode) : 0;
else operands[3] = gen_reg_rtx (DFmode);
return \"fnabs %0,%1\;fnabs %L0,%L1\"; operands[4] = gen_reg_rtx (CCFPmode);
}" operands[5] = simplify_gen_subreg (DFmode, operands[0], TFmode, hi_word);
[(set_attr "type" "fp") operands[6] = simplify_gen_subreg (DFmode, operands[0], TFmode, lo_word);
(set_attr "length" "8")]) }")
;; Next come the multi-word integer load and store and the load and store ;; Next come the multi-word integer load and store and the load and store
;; multiple insns. ;; multiple insns.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment