Re: [PATCH 2/4] target/arm: Convert PMUL.8 to gvec

2019-10-18 Thread Alex Bennée
Richard Henderson writes: > The gvec form will be needed for implementing SVE2. > > Extend the implementation to operate on uint64_t instead of uint32_t. > Use a counted inner loop instead of terminating when op1 goes to zero, > looking toward the required implementation for ARMv8.4-DIT. > > Si

[PATCH 2/4] target/arm: Convert PMUL.8 to gvec

2019-10-16 Thread Richard Henderson
The gvec form will be needed for implementing SVE2. Extend the implementation to operate on uint64_t instead of uint32_t. Use a counted inner loop instead of terminating when op1 goes to zero, looking toward the required implementation for ARMv8.4-DIT. Signed-off-by: Richard Henderson --- targe