public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Kyrill Tkachov" <kyrylo.tkachov@arm.com>
To: "Alex Velenko" <Alex.Velenko@arm.com>,	<gcc-patches@gcc.gnu.org>
Cc: "Ramana Radhakrishnan" <Ramana.Radhakrishnan@arm.com>
Subject: RE: [PATCH] [AArch32] Additional bics patterns.
Date: Wed, 22 Apr 2015 13:27:00 -0000	[thread overview]
Message-ID: <000001d07d00$10179f80$3046de80$@arm.com> (raw)
In-Reply-To: <1429708361-25668-1-git-send-email-alex.velenko@arm.com>

Hi Alex,

On 22/04/15 14:12, Alex Velenko wrote:
> Hi,
>
> This patch adds arm rtl patterns to generate bics instructions with shift.
>
> Done full regression run on arm-none-eabi.

A bootstrap on arm-none-linux-gnueabihf would be nice too.

>
>
> Is patch ok?
>
> gcc/config
>
> 2015-04-22  Alex Velenko  <Alex.Velenko@arm.com>
>
>   * arm/arm.md (andsi_not_shiftsi_si_scc): New pattern.
>   * (andsi_not_shiftsi_si_scc_no_reuse): New pattern.

the path to arm.md should be:
    * config/arm/arm.md

>
>  
> +(define_insn "andsi_not_shiftsi_si_scc_no_reuse"
> +  [(set (reg:CC_NOOV CC_REGNUM)
> +	(compare:CC_NOOV
> +		(and:SI (not:SI (match_operator:SI 0 "shift_operator"
> +			[(match_operand:SI 1 "s_register_operand" "r")
> +			 (match_operand:SI 2 "arm_rhs_operand" "rM")]))
> +			(match_operand:SI 3 "s_register_operand" "r"))
> +		(const_int 0)))
> +   (clobber (match_scratch:SI 4 "=r"))]
> +  "TARGET_32BIT"
> +  "bic%.%?\\t%4, %3, %1%S0"
> +  [(set_attr "predicable" "yes")
> +   (set_attr "conds" "set")
> +   (set_attr "shift" "1")
> +   (set (attr "type") (if_then_else (match_operand 2 "const_int_operand"
"")
> +		      (const_string "logic_shift_imm")
> +		      (const_string "logic_shift_reg")))]
> +)

Since this is a predicable instruction and has a 32-bit encoding
you should also set the 'predicable_short_it' attribute to 'no'
to prevent GCC from trying to put it inside an IT block when
compiling for ARMv8-A.

>
> +
> +(define_insn "andsi_not_shiftsi_si_scc"
> +  [(parallel [(set (reg:CC_NOOV CC_REGNUM)
> +	(compare:CC_NOOV
> +		(and:SI (not:SI (match_operator:SI 0 "shift_operator"
> +			[(match_operand:SI 1 "s_register_operand" "r")
> +			 (match_operand:SI 2 "arm_rhs_operand" "rM")]))
> +			(match_operand:SI 3 "s_register_operand" "r"))
> +		(const_int 0)))
> +	(set (match_operand:SI 4 "s_register_operand" "=r")
> +	     (and:SI (not:SI (match_op_dup 0
> +		     [(match_dup 1)
> +		      (match_dup 2)]))
> +		     (match_dup 3)))])]
> +  "TARGET_32BIT"
> +  "bic%.%?\\t%4, %3, %1%S0"
> +  [(set_attr "predicable" "yes")
> +   (set_attr "conds" "set")
> +   (set_attr "shift" "1")
> +   (set (attr "type") (if_then_else (match_operand 2 "const_int_operand"
"")
> +		      (const_string "logic_shift_imm")
> +		      (const_string "logic_shift_reg")))]
same comment about predicable_short_it.

Cheers,
Kyrill

>
> +)
> +
>  (define_insn "*andsi_notsi_si_compare0"
>    [(set (reg:CC_NOOV CC_REGNUM)
>  	(compare:CC_NOOV


  reply	other threads:[~2015-04-22 13:27 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-22 13:13 Alex Velenko
2015-04-22 13:27 ` Kyrill Tkachov [this message]
2015-04-24 15:41   ` Alex Velenko
2015-04-27 14:02     ` Alex Velenko
2015-05-01  9:28     ` Kyrill Tkachov
2015-05-15 17:59       ` Alex Velenko
2015-05-18  8:31         ` Kyrill Tkachov
2015-05-18 14:46           ` Alex Velenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='000001d07d00$10179f80$3046de80$@arm.com' \
    --to=kyrylo.tkachov@arm.com \
    --cc=Alex.Velenko@arm.com \
    --cc=Ramana.Radhakrishnan@arm.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).