Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | s390x/tcg: Implement VECTOR STRING RANGE COMPARE | David Hildenbrand | 2019-06-07 | 1 | -0/+21 |
| | | | | | | | | | | | | Unfortunately, there is no easy way to avoid looping over all elements in v2. Provide specialized variants for !cc,!rt/!cc,rt/cc,!rt/cc,rt and all element types. Especially for different values of rt, the compiler might be able to optimize the code a lot. Add s390_vec_write_element(). Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: David Hildenbrand <david@redhat.com> | ||||
* | s390x/tcg: Implement VECTOR FIND ELEMENT NOT EQUAL | David Hildenbrand | 2019-06-07 | 1 | -0/+19 |
| | | | | | | | | | Similar to VECTOR FIND ELEMENT EQUAL. Core logic courtesy of Richard H. Add s390_vec_read_element() that can deal with element sizes. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: David Hildenbrand <david@redhat.com> | ||||
* | s390x/tcg: Utilities for vector instruction helpers | David Hildenbrand | 2019-03-11 | 1 | -0/+101 |
We'll have to read/write vector elements quite frequently from helpers. The tricky bit is properly taking care of endianess. Handle it similar to aarch64. Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20190307121539.12842-4-david@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Cornelia Huck <cohuck@redhat.com> |