From: "Cédric Le Goater" <clg@kaod.org>
To: Shivaprasad G Bhat <sbhat@linux.ibm.com>, <philmd@linaro.org>,
<richard.henderson@linaro.org>, <danielhb413@gmail.com>,
<lucas.araujo@eldorado.org.br>, <qemu-ppc@nongnu.org>,
<david@gibson.dropbear.id.au>, <groug@kaod.org>
Cc: <john_platts@hotmail.com>, <qemu-devel@nongnu.org>
Subject: Re: [PATCH v2 2/2] tests: tcg: ppc64: Add tests for Vector Extract Mask Instructions
Date: Thu, 4 May 2023 08:22:24 +0200 [thread overview]
Message-ID: <b7fbd64c-02f7-18ae-a23f-b1cba786dfbb@kaod.org> (raw)
In-Reply-To: <168319294881.1159309.17060400720026083557.stgit@ltc-boston1.aus.stglabs.ibm.com>
On 5/4/23 11:36, Shivaprasad G Bhat wrote:
> Add test for vextractbm, vextractwm, vextractdm and vextractqm
> instructions. Test works for both qemu-ppc64 and qemu-ppc64le.
>
> Based on the test case written by John Platts posted at [1]
>
> References:
> [1] - https://gitlab.com/qemu-project/qemu/-/issues/1536
>
> Signed-off-by: John Platts <john_platts@hotmail.com>
> Signed-off-by: Shivaprasad G Bhat <sbhat@linux.ibm.com>
> Reviewed-by: Lucas Mateus Castro <lucas.araujo@eldorado.org.br>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Thanks,
C.
> ---
> tests/tcg/ppc64/Makefile.target | 5 +++-
> tests/tcg/ppc64/vector.c | 51 +++++++++++++++++++++++++++++++++++++++
> 2 files changed, 55 insertions(+), 1 deletion(-)
> create mode 100644 tests/tcg/ppc64/vector.c
>
> diff --git a/tests/tcg/ppc64/Makefile.target b/tests/tcg/ppc64/Makefile.target
> index 6d47d3cae6..b084963b9a 100644
> --- a/tests/tcg/ppc64/Makefile.target
> +++ b/tests/tcg/ppc64/Makefile.target
> @@ -20,7 +20,7 @@ PPC64_TESTS += mtfsf
> PPC64_TESTS += mffsce
>
> ifneq ($(CROSS_CC_HAS_POWER10),)
> -PPC64_TESTS += byte_reverse sha512-vector
> +PPC64_TESTS += byte_reverse sha512-vector vector
> endif
> byte_reverse: CFLAGS += -mcpu=power10
> run-byte_reverse: QEMU_OPTS+=-cpu POWER10
> @@ -31,6 +31,9 @@ sha512-vector: sha512.c
>
> run-sha512-vector: QEMU_OPTS+=-cpu POWER10
>
> +vector: CFLAGS += -mcpu=power10 -I$(SRC_PATH)/include
> +run-vector: QEMU_OPTS += -cpu POWER10
> +
> PPC64_TESTS += signal_save_restore_xer
> PPC64_TESTS += xxspltw
>
> diff --git a/tests/tcg/ppc64/vector.c b/tests/tcg/ppc64/vector.c
> new file mode 100644
> index 0000000000..cbf4ae9332
> --- /dev/null
> +++ b/tests/tcg/ppc64/vector.c
> @@ -0,0 +1,51 @@
> +#include <assert.h>
> +#include <stdint.h>
> +#include "qemu/compiler.h"
> +
> +int main(void)
> +{
> + unsigned int result_wi;
> + vector unsigned char vbc_bi_src = { 0xFF, 0xFF, 0, 0xFF, 0xFF, 0xFF,
> + 0xFF, 0xFF, 0xFF, 0xFF, 0, 0, 0,
> + 0, 0xFF, 0xFF};
> + vector unsigned short vbc_hi_src = { 0xFFFF, 0, 0, 0xFFFF,
> + 0, 0, 0xFFFF, 0xFFFF};
> + vector unsigned int vbc_wi_src = {0, 0, 0xFFFFFFFF, 0xFFFFFFFF};
> + vector unsigned long long vbc_di_src = {0xFFFFFFFFFFFFFFFF, 0};
> + vector __uint128_t vbc_qi_src;
> +
> + asm("vextractbm %0, %1" : "=r" (result_wi) : "v" (vbc_bi_src));
> +#if HOST_BIG_ENDIAN
> + assert(result_wi == 0b1101111111000011);
> +#else
> + assert(result_wi == 0b1100001111111011);
> +#endif
> +
> + asm("vextracthm %0, %1" : "=r" (result_wi) : "v" (vbc_hi_src));
> +#if HOST_BIG_ENDIAN
> + assert(result_wi == 0b10010011);
> +#else
> + assert(result_wi == 0b11001001);
> +#endif
> +
> + asm("vextractwm %0, %1" : "=r" (result_wi) : "v" (vbc_wi_src));
> +#if HOST_BIG_ENDIAN
> + assert(result_wi == 0b0011);
> +#else
> + assert(result_wi == 0b1100);
> +#endif
> +
> + asm("vextractdm %0, %1" : "=r" (result_wi) : "v" (vbc_di_src));
> +#if HOST_BIG_ENDIAN
> + assert(result_wi == 0b10);
> +#else
> + assert(result_wi == 0b01);
> +#endif
> +
> + vbc_qi_src[0] = 0x1;
> + vbc_qi_src[0] = vbc_qi_src[0] << 127;
> + asm("vextractqm %0, %1" : "=r" (result_wi) : "v" (vbc_qi_src));
> + assert(result_wi == 0b1);
> +
> + return 0;
> +}
>
>
next prev parent reply other threads:[~2023-05-04 6:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-04 9:35 [PATCH v2 0/2] tcg: ppc64: Fix mask generation for vextractdm Shivaprasad G Bhat
2023-05-04 9:35 ` [PATCH v2 1/2] " Shivaprasad G Bhat
2023-05-04 6:20 ` Cédric Le Goater
2023-05-04 9:36 ` [PATCH v2 2/2] tests: tcg: ppc64: Add tests for Vector Extract Mask Instructions Shivaprasad G Bhat
2023-05-04 6:22 ` Cédric Le Goater [this message]
2023-05-04 11:06 ` [PATCH v2 0/2] tcg: ppc64: Fix mask generation for vextractdm Daniel Henrique Barboza
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b7fbd64c-02f7-18ae-a23f-b1cba786dfbb@kaod.org \
--to=clg@kaod.org \
--cc=danielhb413@gmail.com \
--cc=david@gibson.dropbear.id.au \
--cc=groug@kaod.org \
--cc=john_platts@hotmail.com \
--cc=lucas.araujo@eldorado.org.br \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=sbhat@linux.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).