[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging-4.19] x86emul/test: fix build with gas 2.43
commit 78d412f8bc3d78458cd868ba375ad30175194d91 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Sep 24 14:42:39 2024 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Sep 24 14:42:39 2024 +0200 x86emul/test: fix build with gas 2.43 Drop explicit {evex} pseudo-prefixes. New gas (validly) complains when they're used on things other than instructions. Our use was potentially ahead of macro invocations - see simd.h's "override" macro. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> master commit: 3c09288298af881ea1bb568740deb2d2a06bcd41 master date: 2024-09-06 08:41:18 +0200 --- tools/tests/x86_emulator/simd.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/tests/x86_emulator/simd.c b/tools/tests/x86_emulator/simd.c index 263cea662d..d68a7364c2 100644 --- a/tools/tests/x86_emulator/simd.c +++ b/tools/tests/x86_emulator/simd.c @@ -333,7 +333,7 @@ static inline vec_t movlhps(vec_t x, vec_t y) { # if FLOAT_SIZE == 4 # define broadcast(x) ({ \ vec_t t_; \ - asm ( "%{evex%} vbroadcastss %1, %0" \ + asm ( "vbroadcastss %1, %0" \ : "=v" (t_) : "m" (*(float[1]){ x }) ); \ t_; \ }) @@ -401,14 +401,14 @@ static inline vec_t movlhps(vec_t x, vec_t y) { # if VEC_SIZE >= 32 # define broadcast(x) ({ \ vec_t t_; \ - asm ( "%{evex%} vbroadcastsd %1, %0" : "=v" (t_) \ + asm ( "vbroadcastsd %1, %0" : "=v" (t_) \ : "m" (*(double[1]){ x }) ); \ t_; \ }) # else # define broadcast(x) ({ \ vec_t t_; \ - asm ( "%{evex%} vpbroadcastq %1, %0" \ + asm ( "vpbroadcastq %1, %0" \ : "=v" (t_) : "m" (*(double[1]){ x }) ); \ t_; \ }) @@ -601,7 +601,7 @@ static inline vec_t movlhps(vec_t x, vec_t y) { # if INT_SIZE == 4 || UINT_SIZE == 4 # define broadcast(x) ({ \ vec_t t_; \ - asm ( "%{evex%} vpbroadcastd %1, %0" \ + asm ( "vpbroadcastd %1, %0" \ : "=v" (t_) : "m" (*(int[1]){ x }) ); \ t_; \ }) @@ -649,7 +649,7 @@ static inline vec_t movlhps(vec_t x, vec_t y) { # elif INT_SIZE == 8 || UINT_SIZE == 8 # define broadcast(x) ({ \ vec_t t_; \ - asm ( "%{evex%} vpbroadcastq %1, %0" \ + asm ( "vpbroadcastq %1, %0" \ : "=v" (t_) : "m" (*(long long[1]){ x }) ); \ t_; \ }) @@ -716,7 +716,7 @@ static inline vec_t movlhps(vec_t x, vec_t y) { # if INT_SIZE == 1 || UINT_SIZE == 1 # define broadcast(x) ({ \ vec_t t_; \ - asm ( "%{evex%} vpbroadcastb %1, %0" \ + asm ( "vpbroadcastb %1, %0" \ : "=v" (t_) : "m" (*(char[1]){ x }) ); \ t_; \ }) @@ -745,7 +745,7 @@ static inline vec_t movlhps(vec_t x, vec_t y) { # elif INT_SIZE == 2 || UINT_SIZE == 2 # define broadcast(x) ({ \ vec_t t_; \ - asm ( "%{evex%} vpbroadcastw %1, %0" \ + asm ( "vpbroadcastw %1, %0" \ : "=v" (t_) : "m" (*(short[1]){ x }) ); \ t_; \ }) -- generated by git-patchbot for /home/xen/git/xen.git#staging-4.19
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |