Commit 4e534d30 by Jakub Jelinek Committed by Jakub Jelinek

re PR target/53639 (x86_64: redundant 64-bit operations on 32-bit integers)

	PR target/53639
	* config/i386/i386.md (*anddi_1 into *andsi_1_zext splitter): New.

From-SVN: r188629
parent 479f7546
2012-06-14 Jakub Jelinek <jakub@redhat.com>
PR target/53639
* config/i386/i386.md (*anddi_1 into *andsi_1_zext splitter): New.
2012-06-14 Richard Earnshaw <rearnsha@arm.com>
* arm.c (arm_cirrus_insn_p): Delete.
......
......@@ -7933,6 +7933,18 @@
[(set_attr "type" "alu1")
(set_attr "mode" "QI")])
;; Turn *anddi_1 into *andsi_1_zext if possible.
(define_split
[(set (match_operand:DI 0 "register_operand")
(and:DI (subreg:DI (match_operand:SI 1 "register_operand") 0)
(match_operand:DI 2 "x86_64_zext_immediate_operand")))
(clobber (reg:CC FLAGS_REG))]
"TARGET_64BIT"
[(parallel [(set (match_dup 0)
(zero_extend:DI (and:SI (match_dup 1) (match_dup 2))))
(clobber (reg:CC FLAGS_REG))])]
"operands[2] = gen_lowpart (SImode, operands[2]);")
(define_split
[(set (match_operand:SWI248 0 "register_operand")
(and:SWI248 (match_operand:SWI248 1 "nonimmediate_operand")
......
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