qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [Qemu-arm] [PATCH v2 33/67] target/arm: Implement SVE r


From: Richard Henderson
Subject: Re: [Qemu-devel] [Qemu-arm] [PATCH v2 33/67] target/arm: Implement SVE reverse within elements
Date: Fri, 23 Feb 2018 12:21:00 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0

On 02/23/2018 07:50 AM, Peter Maydell wrote:
> On 17 February 2018 at 18:22, Richard Henderson
> <address@hidden> wrote:
>> Signed-off-by: Richard Henderson <address@hidden>
>> ---
>>  target/arm/helper-sve.h    | 14 ++++++++++++++
>>  target/arm/sve_helper.c    | 41 ++++++++++++++++++++++++++++++++++-------
>>  target/arm/translate-sve.c | 38 ++++++++++++++++++++++++++++++++++++++
>>  target/arm/sve.decode      |  7 +++++++
>>  4 files changed, 93 insertions(+), 7 deletions(-)
> 
>> +/* Swap 16-bit words within a 32-bit word.  */
>> +static inline uint32_t hswap32(uint32_t h)
>> +{
>> +    return rol32(h, 16);
>> +}
>> +
>> +/* Swap 16-bit words within a 64-bit word.  */
>> +static inline uint64_t hswap64(uint64_t h)
>> +{
>> +    uint64_t m = 0x0000ffff0000ffffull;
>> +    h = rol64(h, 32);
>> +    return ((h & m) << 16) | ((h >> 16) & m);
>> +}
>> +
>> +/* Swap 32-bit words within a 64-bit word.  */
>> +static inline uint64_t wswap64(uint64_t h)
>> +{
>> +    return rol64(h, 32);
>> +}
>> +
> 
> Were there cases in earlier patches that could have used these? I forget.

No, the earlier patches dealt with bits not bytes.

> I guess they're not useful enough to be worth putting in bswap.h.

Probably not.

>> -static inline uint64_t hswap64(uint64_t h)
>> -{
>> -    uint64_t m = 0x0000ffff0000ffffull;
>> -    h = rol64(h, 32);
>> -    return ((h & m) << 16) | ((h >> 16) & m);
>> -}
>> -
> 
> Better to put the function in the right place to start with.

Oops, yes.


r~




reply via email to

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