On Fri, 1 Nov 2019 at 08:51, Peter Maydell <peter.mayd...@linaro.org> wrote: > > From: Andrew Jones <drjo...@redhat.com> > > Introduce cpu properties to give fine control over SVE vector lengths. > We introduce a property for each valid length up to the current > maximum supported, which is 2048-bits. The properties are named, e.g. > sve128, sve256, sve384, sve512, ..., where the number is the number of > bits. See the updates to docs/arm-cpu-features.rst for a description > of the semantics and for example uses. >
Hi; Coverity complains (CID 1407217) about an "overflowed return value": > +static uint32_t sve_zcr_get_valid_len(ARMCPU *cpu, uint32_t start_len) > +{ > + uint32_t start_vq = (start_len & 0xf) + 1; > + > + return arm_cpu_vq_map_next_smaller(cpu, start_vq + 1) - 1; "Subtract operation overflows on operands arm_cpu_vq_map_next_smaller(cpu, start_vq + 1U) and 1U" Certainly it looks as if arm_cpu_vq_map_next_smaller() can return 0, and claiming the valid length to be UINT_MAX seems a bit odd in that case. thanks -- PMM