qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v3 08/20] tcg-arm: Implement deposit for armv7


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH v3 08/20] tcg-arm: Implement deposit for armv7
Date: Thu, 28 Mar 2013 09:22:06 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130311 Thunderbird/17.0.4

On 03/28/2013 09:15 AM, Peter Maydell wrote:
>> +    /* ??? Without bfi, we could improve over generic code by combining
>> +       the right-shift from a non-zero ofs with the orr.  We do run into
>> +       problems when rd == rs, and the mask generated from ofs+len don't
>> +       fit into an immediate.  We would have to be careful not to pessimize
>> +       wrt the optimizations performed on the expanded code.  */
>> +    return use_armv7_instructions;
> 
> Strictly speaking BFI is v6T2, but there doesn't seem much point
> in making the distinction given it would only affect the rare
> ARM1156. (Personally I don't think there's much point worrying about
> optmising codegen for anything pre-v7 at all.)

Fair enough.  I could update the comment to include v6t2, since I've done
similar for e.g. v6k (while retaining the v7 test) elsewhere in the patch set.

> What guarantees us that we won't see a length of 0?
> The tcg/README description doesn't say that's invalid
> and I don't think the optimize pass handles it (maybe I
> missed it).

We can patch the readme, and the asserts in tcg-op.h if you like.

I've assumed elsewhere that we won't see a zero length.  E.g. none of the other
cpus -- ppc, hppa, ia64 -- can encode that either.


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]