public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Chung-Lin Tang <cltang@codesourcery.com>
To: Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
Cc: Carrot Wei <carrot@google.com>, gcc-patches@gcc.gnu.org
Subject: Re: [PATCH, ARM] PR47855 Compute attr "length" for some thumb2 insns
Date: Wed, 30 Mar 2011 07:35:00 -0000	[thread overview]
Message-ID: <4D92B3B2.5020004@codesourcery.com> (raw)
In-Reply-To: <4D925EA7.2080102@linaro.org>

On 2011/3/30 06:35 AM, Ramana Radhakrishnan wrote:
> Hi Carrot,
> 
> On 26/03/11 15:14, Carrot Wei wrote:
>> Index: arm.md
>> ===================================================================
>> --- arm.md    (revision 171337)
>> +++ arm.md    (working copy)
>> @@ -7115,7 +7115,18 @@
>>     "@
>>      cmp%?\\t%0, %1
>>      cmn%?\\t%0, #%n1"
>> -  [(set_attr "conds" "set")]
>> +  [(set_attr "conds" "set")
>> +   (set (attr "length")
>> +     (if_then_else
>> +       (and (and (ne (symbol_ref "TARGET_THUMB2") (const_int 0))
>> +         (eq (symbol_ref "which_alternative") (const_int 0)))
>> +        (ior (ne (symbol_ref "REG_P (operands[1])") (const_int 0))
>> +        (and (ne (symbol_ref "CONST_INT_P (operands[1])") (const_int 0))
>> +             (and (ge (symbol_ref "INTVAL (operands[1])") (const_int 0))
>> +              (le (symbol_ref "INTVAL (operands[1])")
>> +                  (const_int 255))))))
>> +       (const_int 2)
>> +       (const_int 4)))]
>>   )
> 
>     How about adding an alternative only enabled for T2 that uses the
> `l' constraint and inventing new constraints for some of the constant
> values that are valid for 16 bit instructions since the `I' and `L'
> constraints have different meanings depending on whether TARGET_32BIT is
> valid or not ? We could then set the value of the length attribute
> accordingly. I don't think we can change the meaning of the I and L
> constraints very easily given the amount of churn that might be needed
> 
> 
>>
>>   (define_insn "*cmpsi_shiftsi"
>> @@ -7286,7 +7297,14 @@
>>     return \"b%d1\\t%l0\";
>>     "
>>     [(set_attr "conds" "use")
>> -   (set_attr "type" "branch")]
>> +   (set_attr "type" "branch")
>> +   (set (attr "length")
>> +    (if_then_else
>> +       (and (ne (symbol_ref "TARGET_THUMB2") (const_int 0))
>> +        (and (ge (minus (match_dup 0) (pc)) (const_int -250))
>> +             (le (minus (match_dup 0) (pc)) (const_int 256))))
>> +       (const_int 2)
>> +       (const_int 4)))]
>>   )
> 
>     I don't think this and the other conditional branch instruction
> changes are correct. This could end up being the last instruction in an
> IT block and will automatically end up getting the 32 bit encoding and
> end up causing trouble with the length calculations. Remember the 16 bit
> encoding for the conditional instruction can't be used as the last
> instruction in an IT block.
> 
> 
>> @@ -10256,7 +10288,26 @@
>>
>>       return \"\";
>>     }"
>> -  [(set_attr "type" "store4")]
>> +  [(set_attr "type" "store4")
>> +   (set (attr "length")
>> +    (if_then_else
>> +       (and (ne (symbol_ref "TARGET_THUMB2") (const_int 0))
>> +        (ne (symbol_ref "{
>> +            int i, regno, hi_reg;
>> +            int num_saves = XVECLEN (operands[2], 0);
>> +            regno = REGNO (operands[1]);
>> +            hi_reg = (REGNO_REG_CLASS (regno) == HI_REGS)
>> +            &&  (regno != LR_REGNUM);
>> +            for (i = 1; i<  num_saves; i++)
> 
>     
>     (i < num_saves && (hi_reg == 0)) - what's the point of going through
> the register list when hi_reg != 0 in this case ? A comment to explain
> that the length calculation *must* be kept in sync with the template
> above might be useful.

I suggest abstracting all of this Thumb-2 insn length knowledge into a
arm.c function, say "thumb2_16bit_insn_p()" to test for 2-byte patterns.
 Adding more of these quite large pieces of logic into arm.md does not
look very pretty to me, and centralizing it into a C function will also
make it easier to manage the cases.

Chung-Lin

  reply	other threads:[~2011-03-30  4:37 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-26 15:55 Carrot Wei
2011-03-30  1:24 ` Ramana Radhakrishnan
2011-03-30  7:35   ` Chung-Lin Tang [this message]
2011-03-30 12:41     ` Richard Earnshaw
2011-03-31  3:34   ` Carrot Wei
2011-03-31 16:04     ` Ramana Radhakrishnan
2011-04-01  6:57       ` Carrot Wei
2011-04-05 13:32         ` Ramana Radhakrishnan
2011-04-06  2:26           ` Carrot Wei
2011-04-07  9:32         ` Richard Sandiford
2011-04-07 11:09           ` Carrot Wei
2011-04-07 11:31             ` Ramana Radhakrishnan
2011-04-08  7:36               ` Carrot Wei
2011-04-08  8:36                 ` Ramana Radhakrishnan
2011-04-08  8:52                   ` Carrot Wei
2011-04-08  9:01                     ` Ramana Radhakrishnan

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=4D92B3B2.5020004@codesourcery.com \
    --to=cltang@codesourcery.com \
    --cc=carrot@google.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=ramana.radhakrishnan@linaro.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).