AArch64: Implement vldrq_p128 intrinsic

This patch implements the missing vldrq_p128 intrinsic that just loads from the appropriate pointer.

Bootstrapped and tested on aarch64-none-linux-gnu.

gcc/
	PR target/71233
	* config/aarch64/arm_neon.h (vldrq_p128): Define.

gcc/testsuite/
	PR target/71233
	* gcc.target/aarch64/simd/vldrq_p128_1.c: New test.
This commit is contained in:
Kyrylo Tkachov 2020-09-23 10:32:42 +01:00
parent d23ea1e865
commit f2868e4bcf
2 changed files with 20 additions and 0 deletions

View File

@ -19676,6 +19676,13 @@ vld4q_p64 (const poly64_t * __a)
return ret;
}
__extension__ extern __inline poly128_t
__attribute__ ((__always_inline__, __gnu_inline__, __artificial__))
vldrq_p128 (const poly128_t * __ptr)
{
return *__ptr;
}
/* vldn_dup */
__extension__ extern __inline int8x8x2_t

View File

@ -0,0 +1,13 @@
/* { dg-do compile } */
/* { dg-options "-O" } */
#include <arm_neon.h>
poly128_t
test (poly128_t * p)
{
return vldrq_p128 (p);
}
/* { dg-final { scan-assembler-times {ldp.*x0,.*x1,.*[x0]} 1 } } */