Re: [PATCH RFC] target/arm: Implement SVE2 bitwise shift immediate

2020-04-30 Thread Richard Henderson
On 4/30/20 9:28 AM, Stephen Long wrote: > Implements SQSHL/UQSHL, SRSHR/URSHR, and SQSHLU > > Signed-off-by: Stephen Long > --- > > I'm not too sure about the casting I'm doing willy nilly in the helper > functions, but I think they should be ok. Also, there might be some avenues > for optimizat

[PATCH RFC] target/arm: Implement SVE2 bitwise shift immediate

2020-04-30 Thread Stephen Long
Implements SQSHL/UQSHL, SRSHR/URSHR, and SQSHLU Signed-off-by: Stephen Long --- I'm not too sure about the casting I'm doing willy nilly in the helper functions, but I think they should be ok. Also, there might be some avenues for optimization when translating similar to asr_zpzi and lsl_zpzi.