aarch64.md (*and<mode>3_compare0): New pattern.
2013-03-28 Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com> * config/aarch64/aarch64.md (*and<mode>3_compare0): New pattern. (*andsi3_compare0_uxtw): New pattern. (*and_<SHIFT:optab><mode>3_compare0): New pattern. (*and_<SHIFT:optab>si3_compare0_uxtw): New pattern. From-SVN: r197207
This commit is contained in:
parent
7abebba7f2
commit
2a1d1991ea
2 changed files with 70 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2013-03-28 Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com>
|
||||
|
||||
* config/aarch64/aarch64.md (*and<mode>3_compare0): New pattern.
|
||||
(*andsi3_compare0_uxtw): New pattern.
|
||||
(*and_<SHIFT:optab><mode>3_compare0): New pattern.
|
||||
(*and_<SHIFT:optab>si3_compare0_uxtw): New pattern.
|
||||
|
||||
2013-03-28 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* data-streamer-in.c (streamer_read_gcov_count): New function.
|
||||
|
|
|
@ -2461,6 +2461,69 @@
|
|||
[(set_attr "v8type" "logic,logic_imm")
|
||||
(set_attr "mode" "SI")])
|
||||
|
||||
(define_insn "*and<mode>3_compare0"
|
||||
[(set (reg:CC_NZ CC_REGNUM)
|
||||
(compare:CC_NZ
|
||||
(and:GPI (match_operand:GPI 1 "register_operand" "%r,r")
|
||||
(match_operand:GPI 2 "aarch64_logical_operand" "r,<lconst>"))
|
||||
(const_int 0)))
|
||||
(set (match_operand:GPI 0 "register_operand" "=r,r")
|
||||
(and:GPI (match_dup 1) (match_dup 2)))]
|
||||
""
|
||||
"ands\\t%<w>0, %<w>1, %<w>2"
|
||||
[(set_attr "v8type" "logics,logics_imm")
|
||||
(set_attr "mode" "<MODE>")]
|
||||
)
|
||||
|
||||
;; zero_extend version of above
|
||||
(define_insn "*andsi3_compare0_uxtw"
|
||||
[(set (reg:CC_NZ CC_REGNUM)
|
||||
(compare:CC_NZ
|
||||
(and:SI (match_operand:SI 1 "register_operand" "%r,r")
|
||||
(match_operand:SI 2 "aarch64_logical_operand" "r,K"))
|
||||
(const_int 0)))
|
||||
(set (match_operand:DI 0 "register_operand" "=r,r")
|
||||
(zero_extend:DI (and:SI (match_dup 1) (match_dup 2))))]
|
||||
""
|
||||
"ands\\t%w0, %w1, %w2"
|
||||
[(set_attr "v8type" "logics,logics_imm")
|
||||
(set_attr "mode" "SI")]
|
||||
)
|
||||
|
||||
(define_insn "*and_<SHIFT:optab><mode>3_compare0"
|
||||
[(set (reg:CC_NZ CC_REGNUM)
|
||||
(compare:CC_NZ
|
||||
(and:GPI (SHIFT:GPI
|
||||
(match_operand:GPI 1 "register_operand" "r")
|
||||
(match_operand:QI 2 "aarch64_shift_imm_<mode>" "n"))
|
||||
(match_operand:GPI 3 "register_operand" "r"))
|
||||
(const_int 0)))
|
||||
(set (match_operand:GPI 0 "register_operand" "=r")
|
||||
(and:GPI (SHIFT:GPI (match_dup 1) (match_dup 2)) (match_dup 3)))]
|
||||
""
|
||||
"ands\\t%<w>0, %<w>3, %<w>1, <SHIFT:shift> %2"
|
||||
[(set_attr "v8type" "logics_shift")
|
||||
(set_attr "mode" "<MODE>")]
|
||||
)
|
||||
|
||||
;; zero_extend version of above
|
||||
(define_insn "*and_<SHIFT:optab>si3_compare0_uxtw"
|
||||
[(set (reg:CC_NZ CC_REGNUM)
|
||||
(compare:CC_NZ
|
||||
(and:SI (SHIFT:SI
|
||||
(match_operand:SI 1 "register_operand" "r")
|
||||
(match_operand:QI 2 "aarch64_shift_imm_si" "n"))
|
||||
(match_operand:SI 3 "register_operand" "r"))
|
||||
(const_int 0)))
|
||||
(set (match_operand:DI 0 "register_operand" "=r")
|
||||
(zero_extend:DI (and:SI (SHIFT:SI (match_dup 1) (match_dup 2))
|
||||
(match_dup 3))))]
|
||||
""
|
||||
"ands\\t%w0, %w3, %w1, <SHIFT:shift> %2"
|
||||
[(set_attr "v8type" "logics_shift")
|
||||
(set_attr "mode" "SI")]
|
||||
)
|
||||
|
||||
(define_insn "*<LOGICAL:optab>_<SHIFT:optab><mode>3"
|
||||
[(set (match_operand:GPI 0 "register_operand" "=r")
|
||||
(LOGICAL:GPI (SHIFT:GPI
|
||||
|
|
Loading…
Add table
Reference in a new issue