qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] tci: Add implementation of rotl_i64, rotr_i64


From: Stefan Weil
Subject: Re: [Qemu-devel] [PATCH] tci: Add implementation of rotl_i64, rotr_i64
Date: Thu, 05 Sep 2013 22:17:35 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130803 Thunderbird/17.0.8

Am 05.09.2013 14:00, schrieb Jay Foad:
>> diff --git a/tci.c b/tci.c
>> index 18c888e..94b7851 100644
>> --- a/tci.c
>> +++ b/tci.c
>> @@ -952,8 +952,16 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t 
>> *tb_ptr)
>>              break;
>>  #if TCG_TARGET_HAS_rot_i64
>>          case INDEX_op_rotl_i64:
>> +            t0 = *tb_ptr++;
>> +            t1 = tci_read_ri64(&tb_ptr);
>> +            t2 = tci_read_ri64(&tb_ptr);
>> +            tci_write_reg64(t0, (t1 << t2) | (t1 >> (64 - t2)));
>> +            break;
>>          case INDEX_op_rotr_i64:
>> -            TODO();
>> +            t0 = *tb_ptr++;
>> +            t1 = tci_read_ri64(&tb_ptr);
>> +            t2 = tci_read_ri64(&tb_ptr);
>> +            tci_write_reg64(t0, (t1 >> t2) | (t1 << (64 - t2)));
> << (64 - t2) is undefined behaviour in C when t2 is 0. How about << (-t2 & 
> 63) ?
>
> Jay.

A short test confirms that the behaviour for (t1 << 64) is indeed
unexpected.

I added assertions for (t2 > 0) and (t2 < 64). They never raised an abort.
Are those cases possible? We already have similar code for 32 bit shifts,
and tcg/optimize.c also includes an implementation which is identical to
my rotl_i64, rotr_i64.

Therefore I think my patch can be applied as it is.

Stefan




reply via email to

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