diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-01 09:50:06 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-01 09:50:06 +0000 |
commit | 7bba3a77d979f58524f736cd310a740af5dd1236 (patch) | |
tree | 813f462634c5c15329ffc13ca404e061e99b2300 /gcc | |
parent | 2809353c33b03d436a102762c27851a45a2ec6cd (diff) | |
download | gcc-7bba3a77d979f58524f736cd310a740af5dd1236.tar.gz |
* i386.md: remove obsoleted comments.
(adddi_?): Rename to adddi_?_rex64; disable for 32bit.
(x86_movsicc_0_m1_rex64): Rename to x86_movdicc_0_m1_rex64;
fix output template.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40982 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 23 |
2 files changed, 18 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 875ed0a3e65..8ec546a66fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +Sun Apr 1 11:49:05 CEST 2001 Jan Hubicka <jH@suse.cz> + + * i386.md: remove obsoleted comments. + (adddi_?): Rename to adddi_?_rex64; disable for 32bit. + (x86_movsicc_0_m1_rex64): Rename to x86_movdicc_0_m1_rex64; + fix output template. + 2001-03-31 Marek Michalkiewicz <marekm@linux.org.pl> * config/avr/libgcc.S (__mulhi3): Optimize previous change. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index d8c402e9787..e87ee2cdb35 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -5134,7 +5134,6 @@ ;; Add instructions -;; %%% define_expand from the very first? ;; %%% splits for addsidi3 ; [(set (match_operand:DI 0 "nonimmediate_operand" "") ; (plus:DI (match_operand:DI 1 "general_operand" "") @@ -5473,12 +5472,13 @@ (const_string "alu"))) (set_attr "mode" "DI")]) -(define_insn "*adddi_3" +(define_insn "*adddi_3_rex64" [(set (reg 17) (compare (neg:DI (match_operand:DI 2 "x86_64_general_operand" "rme")) (match_operand:DI 1 "x86_64_general_operand" "%0"))) (clobber (match_scratch:DI 0 "=r"))] - "ix86_match_ccmode (insn, CCZmode) + "TARGET_64BIT + && ix86_match_ccmode (insn, CCZmode) && (GET_CODE (operands[1]) != MEM || GET_CODE (operands[2]) != MEM) /* Current assemblers are broken and do not allow @GOTOFF in ought but a memory context. */ @@ -5529,12 +5529,13 @@ ; when negated. ; Also carry flag is reversed compared to cmp, so this converison is valid ; only for comparisons not depending on it. -(define_insn "*adddi_4" +(define_insn "*adddi_4_rex64" [(set (reg 17) (compare (match_operand:DI 1 "nonimmediate_operand" "0") (match_operand:DI 2 "x86_64_immediate_operand" "e"))) (clobber (match_scratch:DI 0 "=rm"))] - "ix86_match_ccmode (insn, CCGCmode)" + "TARGET_64BIT + && ix86_match_ccmode (insn, CCGCmode)" "* { switch (get_attr_type (insn)) @@ -5566,14 +5567,15 @@ (const_string "alu"))) (set_attr "mode" "DI")]) -(define_insn "*adddi_5" +(define_insn "*adddi_5_rex64" [(set (reg 17) (compare (plus:DI (match_operand:DI 1 "nonimmediate_operand" "%0") (match_operand:DI 2 "x86_64_general_operand" "rme")) (const_int 0))) (clobber (match_scratch:DI 0 "=r"))] - "ix86_match_ccmode (insn, CCGOCmode) + "TARGET_64BIT + && ix86_match_ccmode (insn, CCGOCmode) && (GET_CODE (operands[1]) != MEM || GET_CODE (operands[2]) != MEM) /* Current assemblers are broken and do not allow @GOTOFF in ought but a memory context. */ @@ -8936,8 +8938,6 @@ ;; Negation instructions -;; %%% define_expand from the very first? - (define_expand "negdi2" [(parallel [(set (match_operand:DI 0 "nonimmediate_operand" "") (neg:DI (match_operand:DI 1 "nonimmediate_operand" ""))) @@ -14927,14 +14927,14 @@ "TARGET_64BIT" "if (!ix86_expand_int_movcc (operands)) FAIL; DONE;") -(define_insn "x86_movsicc_0_m1_rex64" +(define_insn "x86_movdicc_0_m1_rex64" [(set (match_operand:DI 0 "register_operand" "=r") (if_then_else:DI (ltu (reg:CC 17) (const_int 0)) (const_int -1) (const_int 0))) (clobber (reg:CC 17))] "TARGET_64BIT" - "sbb{l}\\t%0, %0" + "sbb{q}\\t%0, %0" ; Since we don't have the proper number of operands for an alu insn, ; fill in all the blanks. [(set_attr "type" "alu") @@ -14957,7 +14957,6 @@ [(set_attr "type" "icmov") (set_attr "mode" "DI")]) - (define_expand "movsicc" [(set (match_operand:SI 0 "register_operand" "") (if_then_else:SI (match_operand 1 "comparison_operator" "") |