From f20536724d4cc8432d5b804082415c8391f88f9b Mon Sep 17 00:00:00 2001 From: Christophe Lyon Date: Tue, 16 Dec 2014 10:26:00 +0100 Subject: Rename helper macros: TEST_VLOAD into VLOAD TEST_VDUP into VDUP --- ref_vpadal.c | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'ref_vpadal.c') diff --git a/ref_vpadal.c b/ref_vpadal.c index 1df3f26..fab5f05 100644 --- a/ref_vpadal.c +++ b/ref_vpadal.c @@ -95,32 +95,32 @@ FNNAME (INSN_NAME) clean_results (); /* Initialize input "vector" from "buffer" */ - TEST_VLOAD(vector, buffer, , int, s, 16, 4); - TEST_VLOAD(vector, buffer, , int, s, 32, 2); - TEST_VLOAD(vector, buffer, , int, s, 64, 1); - TEST_VLOAD(vector, buffer, , uint, u, 16, 4); - TEST_VLOAD(vector, buffer, , uint, u, 32, 2); - TEST_VLOAD(vector, buffer, , uint, u, 64, 1); - TEST_VLOAD(vector, buffer, q, int, s, 16, 8); - TEST_VLOAD(vector, buffer, q, int, s, 32, 4); - TEST_VLOAD(vector, buffer, q, int, s, 64, 2); - TEST_VLOAD(vector, buffer, q, uint, u, 16, 8); - TEST_VLOAD(vector, buffer, q, uint, u, 32, 4); - TEST_VLOAD(vector, buffer, q, uint, u, 64, 2); + VLOAD(vector, buffer, , int, s, 16, 4); + VLOAD(vector, buffer, , int, s, 32, 2); + VLOAD(vector, buffer, , int, s, 64, 1); + VLOAD(vector, buffer, , uint, u, 16, 4); + VLOAD(vector, buffer, , uint, u, 32, 2); + VLOAD(vector, buffer, , uint, u, 64, 1); + VLOAD(vector, buffer, q, int, s, 16, 8); + VLOAD(vector, buffer, q, int, s, 32, 4); + VLOAD(vector, buffer, q, int, s, 64, 2); + VLOAD(vector, buffer, q, uint, u, 16, 8); + VLOAD(vector, buffer, q, uint, u, 32, 4); + VLOAD(vector, buffer, q, uint, u, 64, 2); /* Initialize input "vector2" from "buffer" */ - TEST_VLOAD(vector2, buffer, , int, s, 8, 8); - TEST_VLOAD(vector2, buffer, , int, s, 16, 4); - TEST_VLOAD(vector2, buffer, , int, s, 32, 2); - TEST_VLOAD(vector2, buffer, , uint, u, 8, 8); - TEST_VLOAD(vector2, buffer, , uint, u, 16, 4); - TEST_VLOAD(vector2, buffer, , uint, u, 32, 2); - TEST_VLOAD(vector2, buffer, q, int, s, 8, 16); - TEST_VLOAD(vector2, buffer, q, int, s, 16, 8); - TEST_VLOAD(vector2, buffer, q, int, s, 32, 4); - TEST_VLOAD(vector2, buffer, q, uint, u, 8, 16); - TEST_VLOAD(vector2, buffer, q, uint, u, 16, 8); - TEST_VLOAD(vector2, buffer, q, uint, u, 32, 4); + VLOAD(vector2, buffer, , int, s, 8, 8); + VLOAD(vector2, buffer, , int, s, 16, 4); + VLOAD(vector2, buffer, , int, s, 32, 2); + VLOAD(vector2, buffer, , uint, u, 8, 8); + VLOAD(vector2, buffer, , uint, u, 16, 4); + VLOAD(vector2, buffer, , uint, u, 32, 2); + VLOAD(vector2, buffer, q, int, s, 8, 16); + VLOAD(vector2, buffer, q, int, s, 16, 8); + VLOAD(vector2, buffer, q, int, s, 32, 4); + VLOAD(vector2, buffer, q, uint, u, 8, 16); + VLOAD(vector2, buffer, q, uint, u, 16, 8); + VLOAD(vector2, buffer, q, uint, u, 32, 4); /* Apply a unary operator named INSN_NAME */ TEST_VPADAL(INSN_NAME, , int, s, 8, 8, 16, 4); -- cgit v1.2.3