On 29 April 2018 at 15:44, Richard Henderson
wrote:
> On 04/27/2018 11:04 AM, Alex Bennée wrote:
>>
>> Richard Henderson writes:
>>> +elements = 8 << is_q >> size;
>>
>> That is a brain exercise for operator precedence. Would:
>>
>> elements = (is_q ? 16 : 8) >> size;
>>
>> be cleare
On 04/27/2018 11:04 AM, Alex Bennée wrote:
>
> Richard Henderson writes:
>
>> While we have some of the scalar paths for *CVF for fp16,
>> we failed to decode the fp16 version of these instructions.
>>
>> Signed-off-by: Richard Henderson
>> ---
>> target/arm/translate-a64.c | 33 ++
Richard Henderson writes:
> While we have some of the scalar paths for *CVF for fp16,
> we failed to decode the fp16 version of these instructions.
>
> Signed-off-by: Richard Henderson
> ---
> target/arm/translate-a64.c | 33 -
> 1 file changed, 20 insertions(+)
While we have some of the scalar paths for *CVF for fp16,
we failed to decode the fp16 version of these instructions.
Signed-off-by: Richard Henderson
---
target/arm/translate-a64.c | 33 -
1 file changed, 20 insertions(+), 13 deletions(-)
diff --git a/target/arm