포럼 회원으로 등록하신분만 다운로드가 가능합니다. 최대 업로드 가능한 용량은 20MB 입니다.

다음은 GCC에서 지원하는 NEON 익스텐션에 대한 관련 함수 목록 입니다.

컴파일시에 옵션에 -mfpu=neon을 추가해 주셔야 합니다.

 

목록을 보시면 마시겠지만, 벡터 및 매트릭스 연산 명령어가 추가되어 있는 것을 볼 수 있습니다.

C언어로 어플리케이션 작성시 아래의 함수를 이용하시면 됩니다.

 

참고 링크 : http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html

 

6.51.3 ARM NEON Intrinsics

These built-in intrinsics for the ARM Advanced SIMD extension are available when the -mfpu=neon switch is used:

6.51.3.1 Addition
  • uint32x2_t vadd_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vadd.i32 d0, d0, d0
  • uint16x4_t vadd_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vadd.i16 d0, d0, d0
  • uint8x8_t vadd_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vadd.i8 d0, d0, d0
  • int32x2_t vadd_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vadd.i32 d0, d0, d0
  • int16x4_t vadd_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vadd.i16 d0, d0, d0
  • int8x8_t vadd_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vadd.i8 d0, d0, d0
  • uint64x1_t vadd_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vadd.i64 d0, d0, d0
  • int64x1_t vadd_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vadd.i64 d0, d0, d0
  • float32x2_t vadd_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vadd.f32 d0, d0, d0
  • uint32x4_t vaddq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vadd.i32 q0, q0, q0
  • uint16x8_t vaddq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vadd.i16 q0, q0, q0
  • uint8x16_t vaddq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vadd.i8 q0, q0, q0
  • int32x4_t vaddq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vadd.i32 q0, q0, q0
  • int16x8_t vaddq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vadd.i16 q0, q0, q0
  • int8x16_t vaddq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vadd.i8 q0, q0, q0
  • uint64x2_t vaddq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vadd.i64 q0, q0, q0
  • int64x2_t vaddq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vadd.i64 q0, q0, q0
  • float32x4_t vaddq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vadd.f32 q0, q0, q0
  • uint64x2_t vaddl_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vaddl.u32 q0, d0, d0
  • uint32x4_t vaddl_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vaddl.u16 q0, d0, d0
  • uint16x8_t vaddl_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vaddl.u8 q0, d0, d0
  • int64x2_t vaddl_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vaddl.s32 q0, d0, d0
  • int32x4_t vaddl_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vaddl.s16 q0, d0, d0
  • int16x8_t vaddl_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vaddl.s8 q0, d0, d0
  • uint64x2_t vaddw_u32 (uint64x2_t, uint32x2_t)
    Form of expected instruction(s): vaddw.u32 q0, q0, d0
  • uint32x4_t vaddw_u16 (uint32x4_t, uint16x4_t)
    Form of expected instruction(s): vaddw.u16 q0, q0, d0
  • uint16x8_t vaddw_u8 (uint16x8_t, uint8x8_t)
    Form of expected instruction(s): vaddw.u8 q0, q0, d0
  • int64x2_t vaddw_s32 (int64x2_t, int32x2_t)
    Form of expected instruction(s): vaddw.s32 q0, q0, d0
  • int32x4_t vaddw_s16 (int32x4_t, int16x4_t)
    Form of expected instruction(s): vaddw.s16 q0, q0, d0
  • int16x8_t vaddw_s8 (int16x8_t, int8x8_t)
    Form of expected instruction(s): vaddw.s8 q0, q0, d0
  • uint32x2_t vhadd_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vhadd.u32 d0, d0, d0
  • uint16x4_t vhadd_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vhadd.u16 d0, d0, d0
  • uint8x8_t vhadd_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vhadd.u8 d0, d0, d0
  • int32x2_t vhadd_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vhadd.s32 d0, d0, d0
  • int16x4_t vhadd_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vhadd.s16 d0, d0, d0
  • int8x8_t vhadd_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vhadd.s8 d0, d0, d0
  • uint32x4_t vhaddq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vhadd.u32 q0, q0, q0
  • uint16x8_t vhaddq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vhadd.u16 q0, q0, q0
  • uint8x16_t vhaddq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vhadd.u8 q0, q0, q0
  • int32x4_t vhaddq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vhadd.s32 q0, q0, q0
  • int16x8_t vhaddq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vhadd.s16 q0, q0, q0
  • int8x16_t vhaddq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vhadd.s8 q0, q0, q0
  • uint32x2_t vrhadd_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vrhadd.u32 d0, d0, d0
  • uint16x4_t vrhadd_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vrhadd.u16 d0, d0, d0
  • uint8x8_t vrhadd_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vrhadd.u8 d0, d0, d0
  • int32x2_t vrhadd_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vrhadd.s32 d0, d0, d0
  • int16x4_t vrhadd_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vrhadd.s16 d0, d0, d0
  • int8x8_t vrhadd_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vrhadd.s8 d0, d0, d0
  • uint32x4_t vrhaddq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vrhadd.u32 q0, q0, q0
  • uint16x8_t vrhaddq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vrhadd.u16 q0, q0, q0
  • uint8x16_t vrhaddq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vrhadd.u8 q0, q0, q0
  • int32x4_t vrhaddq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vrhadd.s32 q0, q0, q0
  • int16x8_t vrhaddq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vrhadd.s16 q0, q0, q0
  • int8x16_t vrhaddq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vrhadd.s8 q0, q0, q0
  • uint32x2_t vqadd_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vqadd.u32 d0, d0, d0
  • uint16x4_t vqadd_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vqadd.u16 d0, d0, d0
  • uint8x8_t vqadd_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vqadd.u8 d0, d0, d0
  • int32x2_t vqadd_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vqadd.s32 d0, d0, d0
  • int16x4_t vqadd_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vqadd.s16 d0, d0, d0
  • int8x8_t vqadd_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vqadd.s8 d0, d0, d0
  • uint64x1_t vqadd_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vqadd.u64 d0, d0, d0
  • int64x1_t vqadd_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vqadd.s64 d0, d0, d0
  • uint32x4_t vqaddq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vqadd.u32 q0, q0, q0
  • uint16x8_t vqaddq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vqadd.u16 q0, q0, q0
  • uint8x16_t vqaddq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vqadd.u8 q0, q0, q0
  • int32x4_t vqaddq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vqadd.s32 q0, q0, q0
  • int16x8_t vqaddq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vqadd.s16 q0, q0, q0
  • int8x16_t vqaddq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vqadd.s8 q0, q0, q0
  • uint64x2_t vqaddq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vqadd.u64 q0, q0, q0
  • int64x2_t vqaddq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vqadd.s64 q0, q0, q0
  • uint32x2_t vaddhn_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vaddhn.i64 d0, q0, q0
  • uint16x4_t vaddhn_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vaddhn.i32 d0, q0, q0
  • uint8x8_t vaddhn_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vaddhn.i16 d0, q0, q0
  • int32x2_t vaddhn_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vaddhn.i64 d0, q0, q0
  • int16x4_t vaddhn_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vaddhn.i32 d0, q0, q0
  • int8x8_t vaddhn_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vaddhn.i16 d0, q0, q0
  • uint32x2_t vraddhn_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vraddhn.i64 d0, q0, q0
  • uint16x4_t vraddhn_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vraddhn.i32 d0, q0, q0
  • uint8x8_t vraddhn_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vraddhn.i16 d0, q0, q0
  • int32x2_t vraddhn_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vraddhn.i64 d0, q0, q0
  • int16x4_t vraddhn_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vraddhn.i32 d0, q0, q0
  • int8x8_t vraddhn_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vraddhn.i16 d0, q0, q0
6.51.3.2 Multiplication
  • uint32x2_t vmul_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmul.i32 d0, d0, d0
  • uint16x4_t vmul_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmul.i16 d0, d0, d0
  • uint8x8_t vmul_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmul.i8 d0, d0, d0
  • int32x2_t vmul_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vmul.i32 d0, d0, d0
  • int16x4_t vmul_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vmul.i16 d0, d0, d0
  • int8x8_t vmul_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vmul.i8 d0, d0, d0
  • float32x2_t vmul_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vmul.f32 d0, d0, d0
  • poly8x8_t vmul_p8 (poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vmul.p8 d0, d0, d0
  • uint32x4_t vmulq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vmul.i32 q0, q0, q0
  • uint16x8_t vmulq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vmul.i16 q0, q0, q0
  • uint8x16_t vmulq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vmul.i8 q0, q0, q0
  • int32x4_t vmulq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vmul.i32 q0, q0, q0
  • int16x8_t vmulq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vmul.i16 q0, q0, q0
  • int8x16_t vmulq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vmul.i8 q0, q0, q0
  • float32x4_t vmulq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vmul.f32 q0, q0, q0
  • poly8x16_t vmulq_p8 (poly8x16_t, poly8x16_t)
    Form of expected instruction(s): vmul.p8 q0, q0, q0
  • int32x2_t vqdmulh_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vqdmulh.s32 d0, d0, d0
  • int16x4_t vqdmulh_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vqdmulh.s16 d0, d0, d0
  • int32x4_t vqdmulhq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vqdmulh.s32 q0, q0, q0
  • int16x8_t vqdmulhq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vqdmulh.s16 q0, q0, q0
  • int32x2_t vqrdmulh_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vqrdmulh.s32 d0, d0, d0
  • int16x4_t vqrdmulh_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vqrdmulh.s16 d0, d0, d0
  • int32x4_t vqrdmulhq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vqrdmulh.s32 q0, q0, q0
  • int16x8_t vqrdmulhq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vqrdmulh.s16 q0, q0, q0
  • uint64x2_t vmull_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmull.u32 q0, d0, d0
  • uint32x4_t vmull_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmull.u16 q0, d0, d0
  • uint16x8_t vmull_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmull.u8 q0, d0, d0
  • int64x2_t vmull_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vmull.s32 q0, d0, d0
  • int32x4_t vmull_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vmull.s16 q0, d0, d0
  • int16x8_t vmull_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vmull.s8 q0, d0, d0
  • poly16x8_t vmull_p8 (poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vmull.p8 q0, d0, d0
  • int64x2_t vqdmull_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vqdmull.s32 q0, d0, d0
  • int32x4_t vqdmull_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vqdmull.s16 q0, d0, d0
6.51.3.3 Multiply-accumulate
  • uint32x2_t vmla_u32 (uint32x2_t, uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmla.i32 d0, d0, d0
  • uint16x4_t vmla_u16 (uint16x4_t, uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmla.i16 d0, d0, d0
  • uint8x8_t vmla_u8 (uint8x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmla.i8 d0, d0, d0
  • int32x2_t vmla_s32 (int32x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vmla.i32 d0, d0, d0
  • int16x4_t vmla_s16 (int16x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vmla.i16 d0, d0, d0
  • int8x8_t vmla_s8 (int8x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vmla.i8 d0, d0, d0
  • float32x2_t vmla_f32 (float32x2_t, float32x2_t, float32x2_t)
    Form of expected instruction(s): vmla.f32 d0, d0, d0
  • uint32x4_t vmlaq_u32 (uint32x4_t, uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vmla.i32 q0, q0, q0
  • uint16x8_t vmlaq_u16 (uint16x8_t, uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vmla.i16 q0, q0, q0
  • uint8x16_t vmlaq_u8 (uint8x16_t, uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vmla.i8 q0, q0, q0
  • int32x4_t vmlaq_s32 (int32x4_t, int32x4_t, int32x4_t)
    Form of expected instruction(s): vmla.i32 q0, q0, q0
  • int16x8_t vmlaq_s16 (int16x8_t, int16x8_t, int16x8_t)
    Form of expected instruction(s): vmla.i16 q0, q0, q0
  • int8x16_t vmlaq_s8 (int8x16_t, int8x16_t, int8x16_t)
    Form of expected instruction(s): vmla.i8 q0, q0, q0
  • float32x4_t vmlaq_f32 (float32x4_t, float32x4_t, float32x4_t)
    Form of expected instruction(s): vmla.f32 q0, q0, q0
  • uint64x2_t vmlal_u32 (uint64x2_t, uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmlal.u32 q0, d0, d0
  • uint32x4_t vmlal_u16 (uint32x4_t, uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmlal.u16 q0, d0, d0
  • uint16x8_t vmlal_u8 (uint16x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmlal.u8 q0, d0, d0
  • int64x2_t vmlal_s32 (int64x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vmlal.s32 q0, d0, d0
  • int32x4_t vmlal_s16 (int32x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vmlal.s16 q0, d0, d0
  • int16x8_t vmlal_s8 (int16x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vmlal.s8 q0, d0, d0
  • int64x2_t vqdmlal_s32 (int64x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vqdmlal.s32 q0, d0, d0
  • int32x4_t vqdmlal_s16 (int32x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vqdmlal.s16 q0, d0, d0
6.51.3.4 Multiply-subtract
  • uint32x2_t vmls_u32 (uint32x2_t, uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmls.i32 d0, d0, d0
  • uint16x4_t vmls_u16 (uint16x4_t, uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmls.i16 d0, d0, d0
  • uint8x8_t vmls_u8 (uint8x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmls.i8 d0, d0, d0
  • int32x2_t vmls_s32 (int32x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vmls.i32 d0, d0, d0
  • int16x4_t vmls_s16 (int16x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vmls.i16 d0, d0, d0
  • int8x8_t vmls_s8 (int8x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vmls.i8 d0, d0, d0
  • float32x2_t vmls_f32 (float32x2_t, float32x2_t, float32x2_t)
    Form of expected instruction(s): vmls.f32 d0, d0, d0
  • uint32x4_t vmlsq_u32 (uint32x4_t, uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vmls.i32 q0, q0, q0
  • uint16x8_t vmlsq_u16 (uint16x8_t, uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vmls.i16 q0, q0, q0
  • uint8x16_t vmlsq_u8 (uint8x16_t, uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vmls.i8 q0, q0, q0
  • int32x4_t vmlsq_s32 (int32x4_t, int32x4_t, int32x4_t)
    Form of expected instruction(s): vmls.i32 q0, q0, q0
  • int16x8_t vmlsq_s16 (int16x8_t, int16x8_t, int16x8_t)
    Form of expected instruction(s): vmls.i16 q0, q0, q0
  • int8x16_t vmlsq_s8 (int8x16_t, int8x16_t, int8x16_t)
    Form of expected instruction(s): vmls.i8 q0, q0, q0
  • float32x4_t vmlsq_f32 (float32x4_t, float32x4_t, float32x4_t)
    Form of expected instruction(s): vmls.f32 q0, q0, q0
  • uint64x2_t vmlsl_u32 (uint64x2_t, uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmlsl.u32 q0, d0, d0
  • uint32x4_t vmlsl_u16 (uint32x4_t, uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmlsl.u16 q0, d0, d0
  • uint16x8_t vmlsl_u8 (uint16x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmlsl.u8 q0, d0, d0
  • int64x2_t vmlsl_s32 (int64x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vmlsl.s32 q0, d0, d0
  • int32x4_t vmlsl_s16 (int32x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vmlsl.s16 q0, d0, d0
  • int16x8_t vmlsl_s8 (int16x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vmlsl.s8 q0, d0, d0
  • int64x2_t vqdmlsl_s32 (int64x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vqdmlsl.s32 q0, d0, d0
  • int32x4_t vqdmlsl_s16 (int32x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vqdmlsl.s16 q0, d0, d0
6.51.3.5 Subtraction
  • uint32x2_t vsub_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vsub.i32 d0, d0, d0
  • uint16x4_t vsub_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vsub.i16 d0, d0, d0
  • uint8x8_t vsub_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vsub.i8 d0, d0, d0
  • int32x2_t vsub_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vsub.i32 d0, d0, d0
  • int16x4_t vsub_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vsub.i16 d0, d0, d0
  • int8x8_t vsub_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vsub.i8 d0, d0, d0
  • uint64x1_t vsub_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vsub.i64 d0, d0, d0
  • int64x1_t vsub_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vsub.i64 d0, d0, d0
  • float32x2_t vsub_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vsub.f32 d0, d0, d0
  • uint32x4_t vsubq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vsub.i32 q0, q0, q0
  • uint16x8_t vsubq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vsub.i16 q0, q0, q0
  • uint8x16_t vsubq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vsub.i8 q0, q0, q0
  • int32x4_t vsubq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vsub.i32 q0, q0, q0
  • int16x8_t vsubq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vsub.i16 q0, q0, q0
  • int8x16_t vsubq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vsub.i8 q0, q0, q0
  • uint64x2_t vsubq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vsub.i64 q0, q0, q0
  • int64x2_t vsubq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vsub.i64 q0, q0, q0
  • float32x4_t vsubq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vsub.f32 q0, q0, q0
  • uint64x2_t vsubl_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vsubl.u32 q0, d0, d0
  • uint32x4_t vsubl_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vsubl.u16 q0, d0, d0
  • uint16x8_t vsubl_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vsubl.u8 q0, d0, d0
  • int64x2_t vsubl_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vsubl.s32 q0, d0, d0
  • int32x4_t vsubl_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vsubl.s16 q0, d0, d0
  • int16x8_t vsubl_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vsubl.s8 q0, d0, d0
  • uint64x2_t vsubw_u32 (uint64x2_t, uint32x2_t)
    Form of expected instruction(s): vsubw.u32 q0, q0, d0
  • uint32x4_t vsubw_u16 (uint32x4_t, uint16x4_t)
    Form of expected instruction(s): vsubw.u16 q0, q0, d0
  • uint16x8_t vsubw_u8 (uint16x8_t, uint8x8_t)
    Form of expected instruction(s): vsubw.u8 q0, q0, d0
  • int64x2_t vsubw_s32 (int64x2_t, int32x2_t)
    Form of expected instruction(s): vsubw.s32 q0, q0, d0
  • int32x4_t vsubw_s16 (int32x4_t, int16x4_t)
    Form of expected instruction(s): vsubw.s16 q0, q0, d0
  • int16x8_t vsubw_s8 (int16x8_t, int8x8_t)
    Form of expected instruction(s): vsubw.s8 q0, q0, d0
  • uint32x2_t vhsub_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vhsub.u32 d0, d0, d0
  • uint16x4_t vhsub_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vhsub.u16 d0, d0, d0
  • uint8x8_t vhsub_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vhsub.u8 d0, d0, d0
  • int32x2_t vhsub_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vhsub.s32 d0, d0, d0
  • int16x4_t vhsub_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vhsub.s16 d0, d0, d0
  • int8x8_t vhsub_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vhsub.s8 d0, d0, d0
  • uint32x4_t vhsubq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vhsub.u32 q0, q0, q0
  • uint16x8_t vhsubq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vhsub.u16 q0, q0, q0
  • uint8x16_t vhsubq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vhsub.u8 q0, q0, q0
  • int32x4_t vhsubq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vhsub.s32 q0, q0, q0
  • int16x8_t vhsubq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vhsub.s16 q0, q0, q0
  • int8x16_t vhsubq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vhsub.s8 q0, q0, q0
  • uint32x2_t vqsub_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vqsub.u32 d0, d0, d0
  • uint16x4_t vqsub_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vqsub.u16 d0, d0, d0
  • uint8x8_t vqsub_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vqsub.u8 d0, d0, d0
  • int32x2_t vqsub_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vqsub.s32 d0, d0, d0
  • int16x4_t vqsub_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vqsub.s16 d0, d0, d0
  • int8x8_t vqsub_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vqsub.s8 d0, d0, d0
  • uint64x1_t vqsub_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vqsub.u64 d0, d0, d0
  • int64x1_t vqsub_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vqsub.s64 d0, d0, d0
  • uint32x4_t vqsubq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vqsub.u32 q0, q0, q0
  • uint16x8_t vqsubq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vqsub.u16 q0, q0, q0
  • uint8x16_t vqsubq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vqsub.u8 q0, q0, q0
  • int32x4_t vqsubq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vqsub.s32 q0, q0, q0
  • int16x8_t vqsubq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vqsub.s16 q0, q0, q0
  • int8x16_t vqsubq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vqsub.s8 q0, q0, q0
  • uint64x2_t vqsubq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vqsub.u64 q0, q0, q0
  • int64x2_t vqsubq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vqsub.s64 q0, q0, q0
  • uint32x2_t vsubhn_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vsubhn.i64 d0, q0, q0
  • uint16x4_t vsubhn_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vsubhn.i32 d0, q0, q0
  • uint8x8_t vsubhn_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vsubhn.i16 d0, q0, q0
  • int32x2_t vsubhn_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vsubhn.i64 d0, q0, q0
  • int16x4_t vsubhn_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vsubhn.i32 d0, q0, q0
  • int8x8_t vsubhn_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vsubhn.i16 d0, q0, q0
  • uint32x2_t vrsubhn_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vrsubhn.i64 d0, q0, q0
  • uint16x4_t vrsubhn_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vrsubhn.i32 d0, q0, q0
  • uint8x8_t vrsubhn_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vrsubhn.i16 d0, q0, q0
  • int32x2_t vrsubhn_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vrsubhn.i64 d0, q0, q0
  • int16x4_t vrsubhn_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vrsubhn.i32 d0, q0, q0
  • int8x8_t vrsubhn_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vrsubhn.i16 d0, q0, q0
6.51.3.6 Comparison (equal-to)
  • uint32x2_t vceq_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vceq.i32 d0, d0, d0
  • uint16x4_t vceq_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vceq.i16 d0, d0, d0
  • uint8x8_t vceq_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vceq.i8 d0, d0, d0
  • uint32x2_t vceq_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vceq.i32 d0, d0, d0
  • uint16x4_t vceq_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vceq.i16 d0, d0, d0
  • uint8x8_t vceq_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vceq.i8 d0, d0, d0
  • uint32x2_t vceq_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vceq.f32 d0, d0, d0
  • uint8x8_t vceq_p8 (poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vceq.i8 d0, d0, d0
  • uint32x4_t vceqq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vceq.i32 q0, q0, q0
  • uint16x8_t vceqq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vceq.i16 q0, q0, q0
  • uint8x16_t vceqq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vceq.i8 q0, q0, q0
  • uint32x4_t vceqq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vceq.i32 q0, q0, q0
  • uint16x8_t vceqq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vceq.i16 q0, q0, q0
  • uint8x16_t vceqq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vceq.i8 q0, q0, q0
  • uint32x4_t vceqq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vceq.f32 q0, q0, q0
  • uint8x16_t vceqq_p8 (poly8x16_t, poly8x16_t)
    Form of expected instruction(s): vceq.i8 q0, q0, q0
6.51.3.7 Comparison (greater-than-or-equal-to)
  • uint32x2_t vcge_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vcge.u32 d0, d0, d0
  • uint16x4_t vcge_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vcge.u16 d0, d0, d0
  • uint8x8_t vcge_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vcge.u8 d0, d0, d0
  • uint32x2_t vcge_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vcge.s32 d0, d0, d0
  • uint16x4_t vcge_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vcge.s16 d0, d0, d0
  • uint8x8_t vcge_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vcge.s8 d0, d0, d0
  • uint32x2_t vcge_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vcge.f32 d0, d0, d0
  • uint32x4_t vcgeq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vcge.u32 q0, q0, q0
  • uint16x8_t vcgeq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vcge.u16 q0, q0, q0
  • uint8x16_t vcgeq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vcge.u8 q0, q0, q0
  • uint32x4_t vcgeq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vcge.s32 q0, q0, q0
  • uint16x8_t vcgeq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vcge.s16 q0, q0, q0
  • uint8x16_t vcgeq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vcge.s8 q0, q0, q0
  • uint32x4_t vcgeq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vcge.f32 q0, q0, q0
6.51.3.8 Comparison (less-than-or-equal-to)
  • uint32x2_t vcle_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vcge.u32 d0, d0, d0
  • uint16x4_t vcle_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vcge.u16 d0, d0, d0
  • uint8x8_t vcle_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vcge.u8 d0, d0, d0
  • uint32x2_t vcle_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vcge.s32 d0, d0, d0
  • uint16x4_t vcle_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vcge.s16 d0, d0, d0
  • uint8x8_t vcle_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vcge.s8 d0, d0, d0
  • uint32x2_t vcle_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vcge.f32 d0, d0, d0
  • uint32x4_t vcleq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vcge.u32 q0, q0, q0
  • uint16x8_t vcleq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vcge.u16 q0, q0, q0
  • uint8x16_t vcleq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vcge.u8 q0, q0, q0
  • uint32x4_t vcleq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vcge.s32 q0, q0, q0
  • uint16x8_t vcleq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vcge.s16 q0, q0, q0
  • uint8x16_t vcleq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vcge.s8 q0, q0, q0
  • uint32x4_t vcleq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vcge.f32 q0, q0, q0
6.51.3.9 Comparison (greater-than)
  • uint32x2_t vcgt_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vcgt.u32 d0, d0, d0
  • uint16x4_t vcgt_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vcgt.u16 d0, d0, d0
  • uint8x8_t vcgt_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vcgt.u8 d0, d0, d0
  • uint32x2_t vcgt_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vcgt.s32 d0, d0, d0
  • uint16x4_t vcgt_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vcgt.s16 d0, d0, d0
  • uint8x8_t vcgt_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vcgt.s8 d0, d0, d0
  • uint32x2_t vcgt_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vcgt.f32 d0, d0, d0
  • uint32x4_t vcgtq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vcgt.u32 q0, q0, q0
  • uint16x8_t vcgtq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vcgt.u16 q0, q0, q0
  • uint8x16_t vcgtq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vcgt.u8 q0, q0, q0
  • uint32x4_t vcgtq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vcgt.s32 q0, q0, q0
  • uint16x8_t vcgtq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vcgt.s16 q0, q0, q0
  • uint8x16_t vcgtq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vcgt.s8 q0, q0, q0
  • uint32x4_t vcgtq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vcgt.f32 q0, q0, q0
6.51.3.10 Comparison (less-than)
  • uint32x2_t vclt_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vcgt.u32 d0, d0, d0
  • uint16x4_t vclt_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vcgt.u16 d0, d0, d0
  • uint8x8_t vclt_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vcgt.u8 d0, d0, d0
  • uint32x2_t vclt_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vcgt.s32 d0, d0, d0
  • uint16x4_t vclt_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vcgt.s16 d0, d0, d0
  • uint8x8_t vclt_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vcgt.s8 d0, d0, d0
  • uint32x2_t vclt_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vcgt.f32 d0, d0, d0
  • uint32x4_t vcltq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vcgt.u32 q0, q0, q0
  • uint16x8_t vcltq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vcgt.u16 q0, q0, q0
  • uint8x16_t vcltq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vcgt.u8 q0, q0, q0
  • uint32x4_t vcltq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vcgt.s32 q0, q0, q0
  • uint16x8_t vcltq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vcgt.s16 q0, q0, q0
  • uint8x16_t vcltq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vcgt.s8 q0, q0, q0
  • uint32x4_t vcltq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vcgt.f32 q0, q0, q0
6.51.3.11 Comparison (absolute greater-than-or-equal-to)
  • uint32x2_t vcage_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vacge.f32 d0, d0, d0
  • uint32x4_t vcageq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vacge.f32 q0, q0, q0
6.51.3.12 Comparison (absolute less-than-or-equal-to)
  • uint32x2_t vcale_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vacge.f32 d0, d0, d0
  • uint32x4_t vcaleq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vacge.f32 q0, q0, q0
6.51.3.13 Comparison (absolute greater-than)
  • uint32x2_t vcagt_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vacgt.f32 d0, d0, d0
  • uint32x4_t vcagtq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vacgt.f32 q0, q0, q0
6.51.3.14 Comparison (absolute less-than)
  • uint32x2_t vcalt_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vacgt.f32 d0, d0, d0
  • uint32x4_t vcaltq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vacgt.f32 q0, q0, q0
6.51.3.15 Test bits
  • uint32x2_t vtst_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vtst.32 d0, d0, d0
  • uint16x4_t vtst_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vtst.16 d0, d0, d0
  • uint8x8_t vtst_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vtst.8 d0, d0, d0
  • uint32x2_t vtst_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vtst.32 d0, d0, d0
  • uint16x4_t vtst_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vtst.16 d0, d0, d0
  • uint8x8_t vtst_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vtst.8 d0, d0, d0
  • uint8x8_t vtst_p8 (poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vtst.8 d0, d0, d0
  • uint32x4_t vtstq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vtst.32 q0, q0, q0
  • uint16x8_t vtstq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vtst.16 q0, q0, q0
  • uint8x16_t vtstq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vtst.8 q0, q0, q0
  • uint32x4_t vtstq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vtst.32 q0, q0, q0
  • uint16x8_t vtstq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vtst.16 q0, q0, q0
  • uint8x16_t vtstq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vtst.8 q0, q0, q0
  • uint8x16_t vtstq_p8 (poly8x16_t, poly8x16_t)
    Form of expected instruction(s): vtst.8 q0, q0, q0
6.51.3.16 Absolute difference
  • uint32x2_t vabd_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vabd.u32 d0, d0, d0
  • uint16x4_t vabd_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vabd.u16 d0, d0, d0
  • uint8x8_t vabd_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vabd.u8 d0, d0, d0
  • int32x2_t vabd_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vabd.s32 d0, d0, d0
  • int16x4_t vabd_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vabd.s16 d0, d0, d0
  • int8x8_t vabd_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vabd.s8 d0, d0, d0
  • float32x2_t vabd_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vabd.f32 d0, d0, d0
  • uint32x4_t vabdq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vabd.u32 q0, q0, q0
  • uint16x8_t vabdq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vabd.u16 q0, q0, q0
  • uint8x16_t vabdq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vabd.u8 q0, q0, q0
  • int32x4_t vabdq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vabd.s32 q0, q0, q0
  • int16x8_t vabdq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vabd.s16 q0, q0, q0
  • int8x16_t vabdq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vabd.s8 q0, q0, q0
  • float32x4_t vabdq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vabd.f32 q0, q0, q0
  • uint64x2_t vabdl_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vabdl.u32 q0, d0, d0
  • uint32x4_t vabdl_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vabdl.u16 q0, d0, d0
  • uint16x8_t vabdl_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vabdl.u8 q0, d0, d0
  • int64x2_t vabdl_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vabdl.s32 q0, d0, d0
  • int32x4_t vabdl_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vabdl.s16 q0, d0, d0
  • int16x8_t vabdl_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vabdl.s8 q0, d0, d0
6.51.3.17 Absolute difference and accumulate
  • uint32x2_t vaba_u32 (uint32x2_t, uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vaba.u32 d0, d0, d0
  • uint16x4_t vaba_u16 (uint16x4_t, uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vaba.u16 d0, d0, d0
  • uint8x8_t vaba_u8 (uint8x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vaba.u8 d0, d0, d0
  • int32x2_t vaba_s32 (int32x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vaba.s32 d0, d0, d0
  • int16x4_t vaba_s16 (int16x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vaba.s16 d0, d0, d0
  • int8x8_t vaba_s8 (int8x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vaba.s8 d0, d0, d0
  • uint32x4_t vabaq_u32 (uint32x4_t, uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vaba.u32 q0, q0, q0
  • uint16x8_t vabaq_u16 (uint16x8_t, uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vaba.u16 q0, q0, q0
  • uint8x16_t vabaq_u8 (uint8x16_t, uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vaba.u8 q0, q0, q0
  • int32x4_t vabaq_s32 (int32x4_t, int32x4_t, int32x4_t)
    Form of expected instruction(s): vaba.s32 q0, q0, q0
  • int16x8_t vabaq_s16 (int16x8_t, int16x8_t, int16x8_t)
    Form of expected instruction(s): vaba.s16 q0, q0, q0
  • int8x16_t vabaq_s8 (int8x16_t, int8x16_t, int8x16_t)
    Form of expected instruction(s): vaba.s8 q0, q0, q0
  • uint64x2_t vabal_u32 (uint64x2_t, uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vabal.u32 q0, d0, d0
  • uint32x4_t vabal_u16 (uint32x4_t, uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vabal.u16 q0, d0, d0
  • uint16x8_t vabal_u8 (uint16x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vabal.u8 q0, d0, d0
  • int64x2_t vabal_s32 (int64x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vabal.s32 q0, d0, d0
  • int32x4_t vabal_s16 (int32x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vabal.s16 q0, d0, d0
  • int16x8_t vabal_s8 (int16x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vabal.s8 q0, d0, d0
6.51.3.18 Maximum
  • uint32x2_t vmax_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmax.u32 d0, d0, d0
  • uint16x4_t vmax_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmax.u16 d0, d0, d0
  • uint8x8_t vmax_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmax.u8 d0, d0, d0
  • int32x2_t vmax_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vmax.s32 d0, d0, d0
  • int16x4_t vmax_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vmax.s16 d0, d0, d0
  • int8x8_t vmax_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vmax.s8 d0, d0, d0
  • float32x2_t vmax_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vmax.f32 d0, d0, d0
  • uint32x4_t vmaxq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vmax.u32 q0, q0, q0
  • uint16x8_t vmaxq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vmax.u16 q0, q0, q0
  • uint8x16_t vmaxq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vmax.u8 q0, q0, q0
  • int32x4_t vmaxq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vmax.s32 q0, q0, q0
  • int16x8_t vmaxq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vmax.s16 q0, q0, q0
  • int8x16_t vmaxq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vmax.s8 q0, q0, q0
  • float32x4_t vmaxq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vmax.f32 q0, q0, q0
6.51.3.19 Minimum
  • uint32x2_t vmin_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vmin.u32 d0, d0, d0
  • uint16x4_t vmin_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vmin.u16 d0, d0, d0
  • uint8x8_t vmin_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vmin.u8 d0, d0, d0
  • int32x2_t vmin_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vmin.s32 d0, d0, d0
  • int16x4_t vmin_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vmin.s16 d0, d0, d0
  • int8x8_t vmin_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vmin.s8 d0, d0, d0
  • float32x2_t vmin_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vmin.f32 d0, d0, d0
  • uint32x4_t vminq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vmin.u32 q0, q0, q0
  • uint16x8_t vminq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vmin.u16 q0, q0, q0
  • uint8x16_t vminq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vmin.u8 q0, q0, q0
  • int32x4_t vminq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vmin.s32 q0, q0, q0
  • int16x8_t vminq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vmin.s16 q0, q0, q0
  • int8x16_t vminq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vmin.s8 q0, q0, q0
  • float32x4_t vminq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vmin.f32 q0, q0, q0
6.51.3.20 Pairwise add
  • uint32x2_t vpadd_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vpadd.i32 d0, d0, d0
  • uint16x4_t vpadd_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vpadd.i16 d0, d0, d0
  • uint8x8_t vpadd_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vpadd.i8 d0, d0, d0
  • int32x2_t vpadd_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vpadd.i32 d0, d0, d0
  • int16x4_t vpadd_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vpadd.i16 d0, d0, d0
  • int8x8_t vpadd_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vpadd.i8 d0, d0, d0
  • float32x2_t vpadd_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vpadd.f32 d0, d0, d0
  • uint64x1_t vpaddl_u32 (uint32x2_t)
    Form of expected instruction(s): vpaddl.u32 d0, d0
  • uint32x2_t vpaddl_u16 (uint16x4_t)
    Form of expected instruction(s): vpaddl.u16 d0, d0
  • uint16x4_t vpaddl_u8 (uint8x8_t)
    Form of expected instruction(s): vpaddl.u8 d0, d0
  • int64x1_t vpaddl_s32 (int32x2_t)
    Form of expected instruction(s): vpaddl.s32 d0, d0
  • int32x2_t vpaddl_s16 (int16x4_t)
    Form of expected instruction(s): vpaddl.s16 d0, d0
  • int16x4_t vpaddl_s8 (int8x8_t)
    Form of expected instruction(s): vpaddl.s8 d0, d0
  • uint64x2_t vpaddlq_u32 (uint32x4_t)
    Form of expected instruction(s): vpaddl.u32 q0, q0
  • uint32x4_t vpaddlq_u16 (uint16x8_t)
    Form of expected instruction(s): vpaddl.u16 q0, q0
  • uint16x8_t vpaddlq_u8 (uint8x16_t)
    Form of expected instruction(s): vpaddl.u8 q0, q0
  • int64x2_t vpaddlq_s32 (int32x4_t)
    Form of expected instruction(s): vpaddl.s32 q0, q0
  • int32x4_t vpaddlq_s16 (int16x8_t)
    Form of expected instruction(s): vpaddl.s16 q0, q0
  • int16x8_t vpaddlq_s8 (int8x16_t)
    Form of expected instruction(s): vpaddl.s8 q0, q0
6.51.3.21 Pairwise add, single_opcode widen and accumulate
  • uint64x1_t vpadal_u32 (uint64x1_t, uint32x2_t)
    Form of expected instruction(s): vpadal.u32 d0, d0
  • uint32x2_t vpadal_u16 (uint32x2_t, uint16x4_t)
    Form of expected instruction(s): vpadal.u16 d0, d0
  • uint16x4_t vpadal_u8 (uint16x4_t, uint8x8_t)
    Form of expected instruction(s): vpadal.u8 d0, d0
  • int64x1_t vpadal_s32 (int64x1_t, int32x2_t)
    Form of expected instruction(s): vpadal.s32 d0, d0
  • int32x2_t vpadal_s16 (int32x2_t, int16x4_t)
    Form of expected instruction(s): vpadal.s16 d0, d0
  • int16x4_t vpadal_s8 (int16x4_t, int8x8_t)
    Form of expected instruction(s): vpadal.s8 d0, d0
  • uint64x2_t vpadalq_u32 (uint64x2_t, uint32x4_t)
    Form of expected instruction(s): vpadal.u32 q0, q0
  • uint32x4_t vpadalq_u16 (uint32x4_t, uint16x8_t)
    Form of expected instruction(s): vpadal.u16 q0, q0
  • uint16x8_t vpadalq_u8 (uint16x8_t, uint8x16_t)
    Form of expected instruction(s): vpadal.u8 q0, q0
  • int64x2_t vpadalq_s32 (int64x2_t, int32x4_t)
    Form of expected instruction(s): vpadal.s32 q0, q0
  • int32x4_t vpadalq_s16 (int32x4_t, int16x8_t)
    Form of expected instruction(s): vpadal.s16 q0, q0
  • int16x8_t vpadalq_s8 (int16x8_t, int8x16_t)
    Form of expected instruction(s): vpadal.s8 q0, q0
6.51.3.22 Folding maximum
  • uint32x2_t vpmax_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vpmax.u32 d0, d0, d0
  • uint16x4_t vpmax_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vpmax.u16 d0, d0, d0
  • uint8x8_t vpmax_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vpmax.u8 d0, d0, d0
  • int32x2_t vpmax_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vpmax.s32 d0, d0, d0
  • int16x4_t vpmax_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vpmax.s16 d0, d0, d0
  • int8x8_t vpmax_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vpmax.s8 d0, d0, d0
  • float32x2_t vpmax_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vpmax.f32 d0, d0, d0
6.51.3.23 Folding minimum
  • uint32x2_t vpmin_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vpmin.u32 d0, d0, d0
  • uint16x4_t vpmin_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vpmin.u16 d0, d0, d0
  • uint8x8_t vpmin_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vpmin.u8 d0, d0, d0
  • int32x2_t vpmin_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vpmin.s32 d0, d0, d0
  • int16x4_t vpmin_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vpmin.s16 d0, d0, d0
  • int8x8_t vpmin_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vpmin.s8 d0, d0, d0
  • float32x2_t vpmin_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vpmin.f32 d0, d0, d0
6.51.3.24 Reciprocal step
  • float32x2_t vrecps_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vrecps.f32 d0, d0, d0
  • float32x4_t vrecpsq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vrecps.f32 q0, q0, q0
  • float32x2_t vrsqrts_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vrsqrts.f32 d0, d0, d0
  • float32x4_t vrsqrtsq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vrsqrts.f32 q0, q0, q0
6.51.3.25 Vector shift left
  • uint32x2_t vshl_u32 (uint32x2_t, int32x2_t)
    Form of expected instruction(s): vshl.u32 d0, d0, d0
  • uint16x4_t vshl_u16 (uint16x4_t, int16x4_t)
    Form of expected instruction(s): vshl.u16 d0, d0, d0
  • uint8x8_t vshl_u8 (uint8x8_t, int8x8_t)
    Form of expected instruction(s): vshl.u8 d0, d0, d0
  • int32x2_t vshl_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vshl.s32 d0, d0, d0
  • int16x4_t vshl_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vshl.s16 d0, d0, d0
  • int8x8_t vshl_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vshl.s8 d0, d0, d0
  • uint64x1_t vshl_u64 (uint64x1_t, int64x1_t)
    Form of expected instruction(s): vshl.u64 d0, d0, d0
  • int64x1_t vshl_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vshl.s64 d0, d0, d0
  • uint32x4_t vshlq_u32 (uint32x4_t, int32x4_t)
    Form of expected instruction(s): vshl.u32 q0, q0, q0
  • uint16x8_t vshlq_u16 (uint16x8_t, int16x8_t)
    Form of expected instruction(s): vshl.u16 q0, q0, q0
  • uint8x16_t vshlq_u8 (uint8x16_t, int8x16_t)
    Form of expected instruction(s): vshl.u8 q0, q0, q0
  • int32x4_t vshlq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vshl.s32 q0, q0, q0
  • int16x8_t vshlq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vshl.s16 q0, q0, q0
  • int8x16_t vshlq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vshl.s8 q0, q0, q0
  • uint64x2_t vshlq_u64 (uint64x2_t, int64x2_t)
    Form of expected instruction(s): vshl.u64 q0, q0, q0
  • int64x2_t vshlq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vshl.s64 q0, q0, q0
  • uint32x2_t vrshl_u32 (uint32x2_t, int32x2_t)
    Form of expected instruction(s): vrshl.u32 d0, d0, d0
  • uint16x4_t vrshl_u16 (uint16x4_t, int16x4_t)
    Form of expected instruction(s): vrshl.u16 d0, d0, d0
  • uint8x8_t vrshl_u8 (uint8x8_t, int8x8_t)
    Form of expected instruction(s): vrshl.u8 d0, d0, d0
  • int32x2_t vrshl_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vrshl.s32 d0, d0, d0
  • int16x4_t vrshl_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vrshl.s16 d0, d0, d0
  • int8x8_t vrshl_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vrshl.s8 d0, d0, d0
  • uint64x1_t vrshl_u64 (uint64x1_t, int64x1_t)
    Form of expected instruction(s): vrshl.u64 d0, d0, d0
  • int64x1_t vrshl_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vrshl.s64 d0, d0, d0
  • uint32x4_t vrshlq_u32 (uint32x4_t, int32x4_t)
    Form of expected instruction(s): vrshl.u32 q0, q0, q0
  • uint16x8_t vrshlq_u16 (uint16x8_t, int16x8_t)
    Form of expected instruction(s): vrshl.u16 q0, q0, q0
  • uint8x16_t vrshlq_u8 (uint8x16_t, int8x16_t)
    Form of expected instruction(s): vrshl.u8 q0, q0, q0
  • int32x4_t vrshlq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vrshl.s32 q0, q0, q0
  • int16x8_t vrshlq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vrshl.s16 q0, q0, q0
  • int8x16_t vrshlq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vrshl.s8 q0, q0, q0
  • uint64x2_t vrshlq_u64 (uint64x2_t, int64x2_t)
    Form of expected instruction(s): vrshl.u64 q0, q0, q0
  • int64x2_t vrshlq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vrshl.s64 q0, q0, q0
  • uint32x2_t vqshl_u32 (uint32x2_t, int32x2_t)
    Form of expected instruction(s): vqshl.u32 d0, d0, d0
  • uint16x4_t vqshl_u16 (uint16x4_t, int16x4_t)
    Form of expected instruction(s): vqshl.u16 d0, d0, d0
  • uint8x8_t vqshl_u8 (uint8x8_t, int8x8_t)
    Form of expected instruction(s): vqshl.u8 d0, d0, d0
  • int32x2_t vqshl_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vqshl.s32 d0, d0, d0
  • int16x4_t vqshl_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vqshl.s16 d0, d0, d0
  • int8x8_t vqshl_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vqshl.s8 d0, d0, d0
  • uint64x1_t vqshl_u64 (uint64x1_t, int64x1_t)
    Form of expected instruction(s): vqshl.u64 d0, d0, d0
  • int64x1_t vqshl_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vqshl.s64 d0, d0, d0
  • uint32x4_t vqshlq_u32 (uint32x4_t, int32x4_t)
    Form of expected instruction(s): vqshl.u32 q0, q0, q0
  • uint16x8_t vqshlq_u16 (uint16x8_t, int16x8_t)
    Form of expected instruction(s): vqshl.u16 q0, q0, q0
  • uint8x16_t vqshlq_u8 (uint8x16_t, int8x16_t)
    Form of expected instruction(s): vqshl.u8 q0, q0, q0
  • int32x4_t vqshlq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vqshl.s32 q0, q0, q0
  • int16x8_t vqshlq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vqshl.s16 q0, q0, q0
  • int8x16_t vqshlq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vqshl.s8 q0, q0, q0
  • uint64x2_t vqshlq_u64 (uint64x2_t, int64x2_t)
    Form of expected instruction(s): vqshl.u64 q0, q0, q0
  • int64x2_t vqshlq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vqshl.s64 q0, q0, q0
  • uint32x2_t vqrshl_u32 (uint32x2_t, int32x2_t)
    Form of expected instruction(s): vqrshl.u32 d0, d0, d0
  • uint16x4_t vqrshl_u16 (uint16x4_t, int16x4_t)
    Form of expected instruction(s): vqrshl.u16 d0, d0, d0
  • uint8x8_t vqrshl_u8 (uint8x8_t, int8x8_t)
    Form of expected instruction(s): vqrshl.u8 d0, d0, d0
  • int32x2_t vqrshl_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vqrshl.s32 d0, d0, d0
  • int16x4_t vqrshl_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vqrshl.s16 d0, d0, d0
  • int8x8_t vqrshl_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vqrshl.s8 d0, d0, d0
  • uint64x1_t vqrshl_u64 (uint64x1_t, int64x1_t)
    Form of expected instruction(s): vqrshl.u64 d0, d0, d0
  • int64x1_t vqrshl_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vqrshl.s64 d0, d0, d0
  • uint32x4_t vqrshlq_u32 (uint32x4_t, int32x4_t)
    Form of expected instruction(s): vqrshl.u32 q0, q0, q0
  • uint16x8_t vqrshlq_u16 (uint16x8_t, int16x8_t)
    Form of expected instruction(s): vqrshl.u16 q0, q0, q0
  • uint8x16_t vqrshlq_u8 (uint8x16_t, int8x16_t)
    Form of expected instruction(s): vqrshl.u8 q0, q0, q0
  • int32x4_t vqrshlq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vqrshl.s32 q0, q0, q0
  • int16x8_t vqrshlq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vqrshl.s16 q0, q0, q0
  • int8x16_t vqrshlq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vqrshl.s8 q0, q0, q0
  • uint64x2_t vqrshlq_u64 (uint64x2_t, int64x2_t)
    Form of expected instruction(s): vqrshl.u64 q0, q0, q0
  • int64x2_t vqrshlq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vqrshl.s64 q0, q0, q0
6.51.3.26 Vector shift left by constant
  • uint32x2_t vshl_n_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vshl.i32 d0, d0, #0
  • uint16x4_t vshl_n_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vshl.i16 d0, d0, #0
  • uint8x8_t vshl_n_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vshl.i8 d0, d0, #0
  • int32x2_t vshl_n_s32 (int32x2_t, const int)
    Form of expected instruction(s): vshl.i32 d0, d0, #0
  • int16x4_t vshl_n_s16 (int16x4_t, const int)
    Form of expected instruction(s): vshl.i16 d0, d0, #0
  • int8x8_t vshl_n_s8 (int8x8_t, const int)
    Form of expected instruction(s): vshl.i8 d0, d0, #0
  • uint64x1_t vshl_n_u64 (uint64x1_t, const int)
    Form of expected instruction(s): vshl.i64 d0, d0, #0
  • int64x1_t vshl_n_s64 (int64x1_t, const int)
    Form of expected instruction(s): vshl.i64 d0, d0, #0
  • uint32x4_t vshlq_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vshl.i32 q0, q0, #0
  • uint16x8_t vshlq_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vshl.i16 q0, q0, #0
  • uint8x16_t vshlq_n_u8 (uint8x16_t, const int)
    Form of expected instruction(s): vshl.i8 q0, q0, #0
  • int32x4_t vshlq_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vshl.i32 q0, q0, #0
  • int16x8_t vshlq_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vshl.i16 q0, q0, #0
  • int8x16_t vshlq_n_s8 (int8x16_t, const int)
    Form of expected instruction(s): vshl.i8 q0, q0, #0
  • uint64x2_t vshlq_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vshl.i64 q0, q0, #0
  • int64x2_t vshlq_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vshl.i64 q0, q0, #0
  • uint32x2_t vqshl_n_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vqshl.u32 d0, d0, #0
  • uint16x4_t vqshl_n_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vqshl.u16 d0, d0, #0
  • uint8x8_t vqshl_n_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vqshl.u8 d0, d0, #0
  • int32x2_t vqshl_n_s32 (int32x2_t, const int)
    Form of expected instruction(s): vqshl.s32 d0, d0, #0
  • int16x4_t vqshl_n_s16 (int16x4_t, const int)
    Form of expected instruction(s): vqshl.s16 d0, d0, #0
  • int8x8_t vqshl_n_s8 (int8x8_t, const int)
    Form of expected instruction(s): vqshl.s8 d0, d0, #0
  • uint64x1_t vqshl_n_u64 (uint64x1_t, const int)
    Form of expected instruction(s): vqshl.u64 d0, d0, #0
  • int64x1_t vqshl_n_s64 (int64x1_t, const int)
    Form of expected instruction(s): vqshl.s64 d0, d0, #0
  • uint32x4_t vqshlq_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vqshl.u32 q0, q0, #0
  • uint16x8_t vqshlq_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vqshl.u16 q0, q0, #0
  • uint8x16_t vqshlq_n_u8 (uint8x16_t, const int)
    Form of expected instruction(s): vqshl.u8 q0, q0, #0
  • int32x4_t vqshlq_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vqshl.s32 q0, q0, #0
  • int16x8_t vqshlq_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vqshl.s16 q0, q0, #0
  • int8x16_t vqshlq_n_s8 (int8x16_t, const int)
    Form of expected instruction(s): vqshl.s8 q0, q0, #0
  • uint64x2_t vqshlq_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vqshl.u64 q0, q0, #0
  • int64x2_t vqshlq_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vqshl.s64 q0, q0, #0
  • uint64x1_t vqshlu_n_s64 (int64x1_t, const int)
    Form of expected instruction(s): vqshlu.s64 d0, d0, #0
  • uint32x2_t vqshlu_n_s32 (int32x2_t, const int)
    Form of expected instruction(s): vqshlu.s32 d0, d0, #0
  • uint16x4_t vqshlu_n_s16 (int16x4_t, const int)
    Form of expected instruction(s): vqshlu.s16 d0, d0, #0
  • uint8x8_t vqshlu_n_s8 (int8x8_t, const int)
    Form of expected instruction(s): vqshlu.s8 d0, d0, #0
  • uint64x2_t vqshluq_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vqshlu.s64 q0, q0, #0
  • uint32x4_t vqshluq_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vqshlu.s32 q0, q0, #0
  • uint16x8_t vqshluq_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vqshlu.s16 q0, q0, #0
  • uint8x16_t vqshluq_n_s8 (int8x16_t, const int)
    Form of expected instruction(s): vqshlu.s8 q0, q0, #0
  • uint64x2_t vshll_n_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vshll.u32 q0, d0, #0
  • uint32x4_t vshll_n_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vshll.u16 q0, d0, #0
  • uint16x8_t vshll_n_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vshll.u8 q0, d0, #0
  • int64x2_t vshll_n_s32 (int32x2_t, const int)
    Form of expected instruction(s): vshll.s32 q0, d0, #0
  • int32x4_t vshll_n_s16 (int16x4_t, const int)
    Form of expected instruction(s): vshll.s16 q0, d0, #0
  • int16x8_t vshll_n_s8 (int8x8_t, const int)
    Form of expected instruction(s): vshll.s8 q0, d0, #0
6.51.3.27 Vector shift right by constant
  • uint32x2_t vshr_n_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vshr.u32 d0, d0, #0
  • uint16x4_t vshr_n_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vshr.u16 d0, d0, #0
  • uint8x8_t vshr_n_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vshr.u8 d0, d0, #0
  • int32x2_t vshr_n_s32 (int32x2_t, const int)
    Form of expected instruction(s): vshr.s32 d0, d0, #0
  • int16x4_t vshr_n_s16 (int16x4_t, const int)
    Form of expected instruction(s): vshr.s16 d0, d0, #0
  • int8x8_t vshr_n_s8 (int8x8_t, const int)
    Form of expected instruction(s): vshr.s8 d0, d0, #0
  • uint64x1_t vshr_n_u64 (uint64x1_t, const int)
    Form of expected instruction(s): vshr.u64 d0, d0, #0
  • int64x1_t vshr_n_s64 (int64x1_t, const int)
    Form of expected instruction(s): vshr.s64 d0, d0, #0
  • uint32x4_t vshrq_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vshr.u32 q0, q0, #0
  • uint16x8_t vshrq_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vshr.u16 q0, q0, #0
  • uint8x16_t vshrq_n_u8 (uint8x16_t, const int)
    Form of expected instruction(s): vshr.u8 q0, q0, #0
  • int32x4_t vshrq_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vshr.s32 q0, q0, #0
  • int16x8_t vshrq_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vshr.s16 q0, q0, #0
  • int8x16_t vshrq_n_s8 (int8x16_t, const int)
    Form of expected instruction(s): vshr.s8 q0, q0, #0
  • uint64x2_t vshrq_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vshr.u64 q0, q0, #0
  • int64x2_t vshrq_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vshr.s64 q0, q0, #0
  • uint32x2_t vrshr_n_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vrshr.u32 d0, d0, #0
  • uint16x4_t vrshr_n_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vrshr.u16 d0, d0, #0
  • uint8x8_t vrshr_n_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vrshr.u8 d0, d0, #0
  • int32x2_t vrshr_n_s32 (int32x2_t, const int)
    Form of expected instruction(s): vrshr.s32 d0, d0, #0
  • int16x4_t vrshr_n_s16 (int16x4_t, const int)
    Form of expected instruction(s): vrshr.s16 d0, d0, #0
  • int8x8_t vrshr_n_s8 (int8x8_t, const int)
    Form of expected instruction(s): vrshr.s8 d0, d0, #0
  • uint64x1_t vrshr_n_u64 (uint64x1_t, const int)
    Form of expected instruction(s): vrshr.u64 d0, d0, #0
  • int64x1_t vrshr_n_s64 (int64x1_t, const int)
    Form of expected instruction(s): vrshr.s64 d0, d0, #0
  • uint32x4_t vrshrq_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vrshr.u32 q0, q0, #0
  • uint16x8_t vrshrq_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vrshr.u16 q0, q0, #0
  • uint8x16_t vrshrq_n_u8 (uint8x16_t, const int)
    Form of expected instruction(s): vrshr.u8 q0, q0, #0
  • int32x4_t vrshrq_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vrshr.s32 q0, q0, #0
  • int16x8_t vrshrq_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vrshr.s16 q0, q0, #0
  • int8x16_t vrshrq_n_s8 (int8x16_t, const int)
    Form of expected instruction(s): vrshr.s8 q0, q0, #0
  • uint64x2_t vrshrq_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vrshr.u64 q0, q0, #0
  • int64x2_t vrshrq_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vrshr.s64 q0, q0, #0
  • uint32x2_t vshrn_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vshrn.i64 d0, q0, #0
  • uint16x4_t vshrn_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vshrn.i32 d0, q0, #0
  • uint8x8_t vshrn_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vshrn.i16 d0, q0, #0
  • int32x2_t vshrn_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vshrn.i64 d0, q0, #0
  • int16x4_t vshrn_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vshrn.i32 d0, q0, #0
  • int8x8_t vshrn_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vshrn.i16 d0, q0, #0
  • uint32x2_t vrshrn_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vrshrn.i64 d0, q0, #0
  • uint16x4_t vrshrn_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vrshrn.i32 d0, q0, #0
  • uint8x8_t vrshrn_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vrshrn.i16 d0, q0, #0
  • int32x2_t vrshrn_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vrshrn.i64 d0, q0, #0
  • int16x4_t vrshrn_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vrshrn.i32 d0, q0, #0
  • int8x8_t vrshrn_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vrshrn.i16 d0, q0, #0
  • uint32x2_t vqshrn_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vqshrn.u64 d0, q0, #0
  • uint16x4_t vqshrn_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vqshrn.u32 d0, q0, #0
  • uint8x8_t vqshrn_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vqshrn.u16 d0, q0, #0
  • int32x2_t vqshrn_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vqshrn.s64 d0, q0, #0
  • int16x4_t vqshrn_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vqshrn.s32 d0, q0, #0
  • int8x8_t vqshrn_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vqshrn.s16 d0, q0, #0
  • uint32x2_t vqrshrn_n_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vqrshrn.u64 d0, q0, #0
  • uint16x4_t vqrshrn_n_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vqrshrn.u32 d0, q0, #0
  • uint8x8_t vqrshrn_n_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vqrshrn.u16 d0, q0, #0
  • int32x2_t vqrshrn_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vqrshrn.s64 d0, q0, #0
  • int16x4_t vqrshrn_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vqrshrn.s32 d0, q0, #0
  • int8x8_t vqrshrn_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vqrshrn.s16 d0, q0, #0
  • uint32x2_t vqshrun_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vqshrun.s64 d0, q0, #0
  • uint16x4_t vqshrun_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vqshrun.s32 d0, q0, #0
  • uint8x8_t vqshrun_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vqshrun.s16 d0, q0, #0
  • uint32x2_t vqrshrun_n_s64 (int64x2_t, const int)
    Form of expected instruction(s): vqrshrun.s64 d0, q0, #0
  • uint16x4_t vqrshrun_n_s32 (int32x4_t, const int)
    Form of expected instruction(s): vqrshrun.s32 d0, q0, #0
  • uint8x8_t vqrshrun_n_s16 (int16x8_t, const int)
    Form of expected instruction(s): vqrshrun.s16 d0, q0, #0
6.51.3.28 Vector shift right by constant and accumulate
  • uint32x2_t vsra_n_u32 (uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vsra.u32 d0, d0, #0
  • uint16x4_t vsra_n_u16 (uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vsra.u16 d0, d0, #0
  • uint8x8_t vsra_n_u8 (uint8x8_t, uint8x8_t, const int)
    Form of expected instruction(s): vsra.u8 d0, d0, #0
  • int32x2_t vsra_n_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vsra.s32 d0, d0, #0
  • int16x4_t vsra_n_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vsra.s16 d0, d0, #0
  • int8x8_t vsra_n_s8 (int8x8_t, int8x8_t, const int)
    Form of expected instruction(s): vsra.s8 d0, d0, #0
  • uint64x1_t vsra_n_u64 (uint64x1_t, uint64x1_t, const int)
    Form of expected instruction(s): vsra.u64 d0, d0, #0
  • int64x1_t vsra_n_s64 (int64x1_t, int64x1_t, const int)
    Form of expected instruction(s): vsra.s64 d0, d0, #0
  • uint32x4_t vsraq_n_u32 (uint32x4_t, uint32x4_t, const int)
    Form of expected instruction(s): vsra.u32 q0, q0, #0
  • uint16x8_t vsraq_n_u16 (uint16x8_t, uint16x8_t, const int)
    Form of expected instruction(s): vsra.u16 q0, q0, #0
  • uint8x16_t vsraq_n_u8 (uint8x16_t, uint8x16_t, const int)
    Form of expected instruction(s): vsra.u8 q0, q0, #0
  • int32x4_t vsraq_n_s32 (int32x4_t, int32x4_t, const int)
    Form of expected instruction(s): vsra.s32 q0, q0, #0
  • int16x8_t vsraq_n_s16 (int16x8_t, int16x8_t, const int)
    Form of expected instruction(s): vsra.s16 q0, q0, #0
  • int8x16_t vsraq_n_s8 (int8x16_t, int8x16_t, const int)
    Form of expected instruction(s): vsra.s8 q0, q0, #0
  • uint64x2_t vsraq_n_u64 (uint64x2_t, uint64x2_t, const int)
    Form of expected instruction(s): vsra.u64 q0, q0, #0
  • int64x2_t vsraq_n_s64 (int64x2_t, int64x2_t, const int)
    Form of expected instruction(s): vsra.s64 q0, q0, #0
  • uint32x2_t vrsra_n_u32 (uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vrsra.u32 d0, d0, #0
  • uint16x4_t vrsra_n_u16 (uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vrsra.u16 d0, d0, #0
  • uint8x8_t vrsra_n_u8 (uint8x8_t, uint8x8_t, const int)
    Form of expected instruction(s): vrsra.u8 d0, d0, #0
  • int32x2_t vrsra_n_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vrsra.s32 d0, d0, #0
  • int16x4_t vrsra_n_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vrsra.s16 d0, d0, #0
  • int8x8_t vrsra_n_s8 (int8x8_t, int8x8_t, const int)
    Form of expected instruction(s): vrsra.s8 d0, d0, #0
  • uint64x1_t vrsra_n_u64 (uint64x1_t, uint64x1_t, const int)
    Form of expected instruction(s): vrsra.u64 d0, d0, #0
  • int64x1_t vrsra_n_s64 (int64x1_t, int64x1_t, const int)
    Form of expected instruction(s): vrsra.s64 d0, d0, #0
  • uint32x4_t vrsraq_n_u32 (uint32x4_t, uint32x4_t, const int)
    Form of expected instruction(s): vrsra.u32 q0, q0, #0
  • uint16x8_t vrsraq_n_u16 (uint16x8_t, uint16x8_t, const int)
    Form of expected instruction(s): vrsra.u16 q0, q0, #0
  • uint8x16_t vrsraq_n_u8 (uint8x16_t, uint8x16_t, const int)
    Form of expected instruction(s): vrsra.u8 q0, q0, #0
  • int32x4_t vrsraq_n_s32 (int32x4_t, int32x4_t, const int)
    Form of expected instruction(s): vrsra.s32 q0, q0, #0
  • int16x8_t vrsraq_n_s16 (int16x8_t, int16x8_t, const int)
    Form of expected instruction(s): vrsra.s16 q0, q0, #0
  • int8x16_t vrsraq_n_s8 (int8x16_t, int8x16_t, const int)
    Form of expected instruction(s): vrsra.s8 q0, q0, #0
  • uint64x2_t vrsraq_n_u64 (uint64x2_t, uint64x2_t, const int)
    Form of expected instruction(s): vrsra.u64 q0, q0, #0
  • int64x2_t vrsraq_n_s64 (int64x2_t, int64x2_t, const int)
    Form of expected instruction(s): vrsra.s64 q0, q0, #0
6.51.3.29 Vector shift right and insert
  • uint32x2_t vsri_n_u32 (uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vsri.32 d0, d0, #0
  • uint16x4_t vsri_n_u16 (uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vsri.16 d0, d0, #0
  • uint8x8_t vsri_n_u8 (uint8x8_t, uint8x8_t, const int)
    Form of expected instruction(s): vsri.8 d0, d0, #0
  • int32x2_t vsri_n_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vsri.32 d0, d0, #0
  • int16x4_t vsri_n_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vsri.16 d0, d0, #0
  • int8x8_t vsri_n_s8 (int8x8_t, int8x8_t, const int)
    Form of expected instruction(s): vsri.8 d0, d0, #0
  • uint64x1_t vsri_n_u64 (uint64x1_t, uint64x1_t, const int)
    Form of expected instruction(s): vsri.64 d0, d0, #0
  • int64x1_t vsri_n_s64 (int64x1_t, int64x1_t, const int)
    Form of expected instruction(s): vsri.64 d0, d0, #0
  • poly16x4_t vsri_n_p16 (poly16x4_t, poly16x4_t, const int)
    Form of expected instruction(s): vsri.16 d0, d0, #0
  • poly8x8_t vsri_n_p8 (poly8x8_t, poly8x8_t, const int)
    Form of expected instruction(s): vsri.8 d0, d0, #0
  • uint32x4_t vsriq_n_u32 (uint32x4_t, uint32x4_t, const int)
    Form of expected instruction(s): vsri.32 q0, q0, #0
  • uint16x8_t vsriq_n_u16 (uint16x8_t, uint16x8_t, const int)
    Form of expected instruction(s): vsri.16 q0, q0, #0
  • uint8x16_t vsriq_n_u8 (uint8x16_t, uint8x16_t, const int)
    Form of expected instruction(s): vsri.8 q0, q0, #0
  • int32x4_t vsriq_n_s32 (int32x4_t, int32x4_t, const int)
    Form of expected instruction(s): vsri.32 q0, q0, #0
  • int16x8_t vsriq_n_s16 (int16x8_t, int16x8_t, const int)
    Form of expected instruction(s): vsri.16 q0, q0, #0
  • int8x16_t vsriq_n_s8 (int8x16_t, int8x16_t, const int)
    Form of expected instruction(s): vsri.8 q0, q0, #0
  • uint64x2_t vsriq_n_u64 (uint64x2_t, uint64x2_t, const int)
    Form of expected instruction(s): vsri.64 q0, q0, #0
  • int64x2_t vsriq_n_s64 (int64x2_t, int64x2_t, const int)
    Form of expected instruction(s): vsri.64 q0, q0, #0
  • poly16x8_t vsriq_n_p16 (poly16x8_t, poly16x8_t, const int)
    Form of expected instruction(s): vsri.16 q0, q0, #0
  • poly8x16_t vsriq_n_p8 (poly8x16_t, poly8x16_t, const int)
    Form of expected instruction(s): vsri.8 q0, q0, #0
6.51.3.30 Vector shift left and insert
  • uint32x2_t vsli_n_u32 (uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vsli.32 d0, d0, #0
  • uint16x4_t vsli_n_u16 (uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vsli.16 d0, d0, #0
  • uint8x8_t vsli_n_u8 (uint8x8_t, uint8x8_t, const int)
    Form of expected instruction(s): vsli.8 d0, d0, #0
  • int32x2_t vsli_n_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vsli.32 d0, d0, #0
  • int16x4_t vsli_n_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vsli.16 d0, d0, #0
  • int8x8_t vsli_n_s8 (int8x8_t, int8x8_t, const int)
    Form of expected instruction(s): vsli.8 d0, d0, #0
  • uint64x1_t vsli_n_u64 (uint64x1_t, uint64x1_t, const int)
    Form of expected instruction(s): vsli.64 d0, d0, #0
  • int64x1_t vsli_n_s64 (int64x1_t, int64x1_t, const int)
    Form of expected instruction(s): vsli.64 d0, d0, #0
  • poly16x4_t vsli_n_p16 (poly16x4_t, poly16x4_t, const int)
    Form of expected instruction(s): vsli.16 d0, d0, #0
  • poly8x8_t vsli_n_p8 (poly8x8_t, poly8x8_t, const int)
    Form of expected instruction(s): vsli.8 d0, d0, #0
  • uint32x4_t vsliq_n_u32 (uint32x4_t, uint32x4_t, const int)
    Form of expected instruction(s): vsli.32 q0, q0, #0
  • uint16x8_t vsliq_n_u16 (uint16x8_t, uint16x8_t, const int)
    Form of expected instruction(s): vsli.16 q0, q0, #0
  • uint8x16_t vsliq_n_u8 (uint8x16_t, uint8x16_t, const int)
    Form of expected instruction(s): vsli.8 q0, q0, #0
  • int32x4_t vsliq_n_s32 (int32x4_t, int32x4_t, const int)
    Form of expected instruction(s): vsli.32 q0, q0, #0
  • int16x8_t vsliq_n_s16 (int16x8_t, int16x8_t, const int)
    Form of expected instruction(s): vsli.16 q0, q0, #0
  • int8x16_t vsliq_n_s8 (int8x16_t, int8x16_t, const int)
    Form of expected instruction(s): vsli.8 q0, q0, #0
  • uint64x2_t vsliq_n_u64 (uint64x2_t, uint64x2_t, const int)
    Form of expected instruction(s): vsli.64 q0, q0, #0
  • int64x2_t vsliq_n_s64 (int64x2_t, int64x2_t, const int)
    Form of expected instruction(s): vsli.64 q0, q0, #0
  • poly16x8_t vsliq_n_p16 (poly16x8_t, poly16x8_t, const int)
    Form of expected instruction(s): vsli.16 q0, q0, #0
  • poly8x16_t vsliq_n_p8 (poly8x16_t, poly8x16_t, const int)
    Form of expected instruction(s): vsli.8 q0, q0, #0
6.51.3.31 Absolute value
  • float32x2_t vabs_f32 (float32x2_t)
    Form of expected instruction(s): vabs.f32 d0, d0
  • int32x2_t vabs_s32 (int32x2_t)
    Form of expected instruction(s): vabs.s32 d0, d0
  • int16x4_t vabs_s16 (int16x4_t)
    Form of expected instruction(s): vabs.s16 d0, d0
  • int8x8_t vabs_s8 (int8x8_t)
    Form of expected instruction(s): vabs.s8 d0, d0
  • float32x4_t vabsq_f32 (float32x4_t)
    Form of expected instruction(s): vabs.f32 q0, q0
  • int32x4_t vabsq_s32 (int32x4_t)
    Form of expected instruction(s): vabs.s32 q0, q0
  • int16x8_t vabsq_s16 (int16x8_t)
    Form of expected instruction(s): vabs.s16 q0, q0
  • int8x16_t vabsq_s8 (int8x16_t)
    Form of expected instruction(s): vabs.s8 q0, q0
  • int32x2_t vqabs_s32 (int32x2_t)
    Form of expected instruction(s): vqabs.s32 d0, d0
  • int16x4_t vqabs_s16 (int16x4_t)
    Form of expected instruction(s): vqabs.s16 d0, d0
  • int8x8_t vqabs_s8 (int8x8_t)
    Form of expected instruction(s): vqabs.s8 d0, d0
  • int32x4_t vqabsq_s32 (int32x4_t)
    Form of expected instruction(s): vqabs.s32 q0, q0
  • int16x8_t vqabsq_s16 (int16x8_t)
    Form of expected instruction(s): vqabs.s16 q0, q0
  • int8x16_t vqabsq_s8 (int8x16_t)
    Form of expected instruction(s): vqabs.s8 q0, q0
6.51.3.32 Negation
  • float32x2_t vneg_f32 (float32x2_t)
    Form of expected instruction(s): vneg.f32 d0, d0
  • int32x2_t vneg_s32 (int32x2_t)
    Form of expected instruction(s): vneg.s32 d0, d0
  • int16x4_t vneg_s16 (int16x4_t)
    Form of expected instruction(s): vneg.s16 d0, d0
  • int8x8_t vneg_s8 (int8x8_t)
    Form of expected instruction(s): vneg.s8 d0, d0
  • float32x4_t vnegq_f32 (float32x4_t)
    Form of expected instruction(s): vneg.f32 q0, q0
  • int32x4_t vnegq_s32 (int32x4_t)
    Form of expected instruction(s): vneg.s32 q0, q0
  • int16x8_t vnegq_s16 (int16x8_t)
    Form of expected instruction(s): vneg.s16 q0, q0
  • int8x16_t vnegq_s8 (int8x16_t)
    Form of expected instruction(s): vneg.s8 q0, q0
  • int32x2_t vqneg_s32 (int32x2_t)
    Form of expected instruction(s): vqneg.s32 d0, d0
  • int16x4_t vqneg_s16 (int16x4_t)
    Form of expected instruction(s): vqneg.s16 d0, d0
  • int8x8_t vqneg_s8 (int8x8_t)
    Form of expected instruction(s): vqneg.s8 d0, d0
  • int32x4_t vqnegq_s32 (int32x4_t)
    Form of expected instruction(s): vqneg.s32 q0, q0
  • int16x8_t vqnegq_s16 (int16x8_t)
    Form of expected instruction(s): vqneg.s16 q0, q0
  • int8x16_t vqnegq_s8 (int8x16_t)
    Form of expected instruction(s): vqneg.s8 q0, q0
6.51.3.33 Bitwise not
  • uint32x2_t vmvn_u32 (uint32x2_t)
    Form of expected instruction(s): vmvn d0, d0
  • uint16x4_t vmvn_u16 (uint16x4_t)
    Form of expected instruction(s): vmvn d0, d0
  • uint8x8_t vmvn_u8 (uint8x8_t)
    Form of expected instruction(s): vmvn d0, d0
  • int32x2_t vmvn_s32 (int32x2_t)
    Form of expected instruction(s): vmvn d0, d0
  • int16x4_t vmvn_s16 (int16x4_t)
    Form of expected instruction(s): vmvn d0, d0
  • int8x8_t vmvn_s8 (int8x8_t)
    Form of expected instruction(s): vmvn d0, d0
  • poly8x8_t vmvn_p8 (poly8x8_t)
    Form of expected instruction(s): vmvn d0, d0
  • uint32x4_t vmvnq_u32 (uint32x4_t)
    Form of expected instruction(s): vmvn q0, q0
  • uint16x8_t vmvnq_u16 (uint16x8_t)
    Form of expected instruction(s): vmvn q0, q0
  • uint8x16_t vmvnq_u8 (uint8x16_t)
    Form of expected instruction(s): vmvn q0, q0
  • int32x4_t vmvnq_s32 (int32x4_t)
    Form of expected instruction(s): vmvn q0, q0
  • int16x8_t vmvnq_s16 (int16x8_t)
    Form of expected instruction(s): vmvn q0, q0
  • int8x16_t vmvnq_s8 (int8x16_t)
    Form of expected instruction(s): vmvn q0, q0
  • poly8x16_t vmvnq_p8 (poly8x16_t)
    Form of expected instruction(s): vmvn q0, q0
6.51.3.34 Count leading sign bits
  • int32x2_t vcls_s32 (int32x2_t)
    Form of expected instruction(s): vcls.s32 d0, d0
  • int16x4_t vcls_s16 (int16x4_t)
    Form of expected instruction(s): vcls.s16 d0, d0
  • int8x8_t vcls_s8 (int8x8_t)
    Form of expected instruction(s): vcls.s8 d0, d0
  • int32x4_t vclsq_s32 (int32x4_t)
    Form of expected instruction(s): vcls.s32 q0, q0
  • int16x8_t vclsq_s16 (int16x8_t)
    Form of expected instruction(s): vcls.s16 q0, q0
  • int8x16_t vclsq_s8 (int8x16_t)
    Form of expected instruction(s): vcls.s8 q0, q0
6.51.3.35 Count leading zeros
  • uint32x2_t vclz_u32 (uint32x2_t)
    Form of expected instruction(s): vclz.i32 d0, d0
  • uint16x4_t vclz_u16 (uint16x4_t)
    Form of expected instruction(s): vclz.i16 d0, d0
  • uint8x8_t vclz_u8 (uint8x8_t)
    Form of expected instruction(s): vclz.i8 d0, d0
  • int32x2_t vclz_s32 (int32x2_t)
    Form of expected instruction(s): vclz.i32 d0, d0
  • int16x4_t vclz_s16 (int16x4_t)
    Form of expected instruction(s): vclz.i16 d0, d0
  • int8x8_t vclz_s8 (int8x8_t)
    Form of expected instruction(s): vclz.i8 d0, d0
  • uint32x4_t vclzq_u32 (uint32x4_t)
    Form of expected instruction(s): vclz.i32 q0, q0
  • uint16x8_t vclzq_u16 (uint16x8_t)
    Form of expected instruction(s): vclz.i16 q0, q0
  • uint8x16_t vclzq_u8 (uint8x16_t)
    Form of expected instruction(s): vclz.i8 q0, q0
  • int32x4_t vclzq_s32 (int32x4_t)
    Form of expected instruction(s): vclz.i32 q0, q0
  • int16x8_t vclzq_s16 (int16x8_t)
    Form of expected instruction(s): vclz.i16 q0, q0
  • int8x16_t vclzq_s8 (int8x16_t)
    Form of expected instruction(s): vclz.i8 q0, q0
6.51.3.36 Count number of set bits
  • uint8x8_t vcnt_u8 (uint8x8_t)
    Form of expected instruction(s): vcnt.8 d0, d0
  • int8x8_t vcnt_s8 (int8x8_t)
    Form of expected instruction(s): vcnt.8 d0, d0
  • poly8x8_t vcnt_p8 (poly8x8_t)
    Form of expected instruction(s): vcnt.8 d0, d0
  • uint8x16_t vcntq_u8 (uint8x16_t)
    Form of expected instruction(s): vcnt.8 q0, q0
  • int8x16_t vcntq_s8 (int8x16_t)
    Form of expected instruction(s): vcnt.8 q0, q0
  • poly8x16_t vcntq_p8 (poly8x16_t)
    Form of expected instruction(s): vcnt.8 q0, q0
6.51.3.37 Reciprocal estimate
  • float32x2_t vrecpe_f32 (float32x2_t)
    Form of expected instruction(s): vrecpe.f32 d0, d0
  • uint32x2_t vrecpe_u32 (uint32x2_t)
    Form of expected instruction(s): vrecpe.u32 d0, d0
  • float32x4_t vrecpeq_f32 (float32x4_t)
    Form of expected instruction(s): vrecpe.f32 q0, q0
  • uint32x4_t vrecpeq_u32 (uint32x4_t)
    Form of expected instruction(s): vrecpe.u32 q0, q0
6.51.3.38 Reciprocal square-root estimate
  • float32x2_t vrsqrte_f32 (float32x2_t)
    Form of expected instruction(s): vrsqrte.f32 d0, d0
  • uint32x2_t vrsqrte_u32 (uint32x2_t)
    Form of expected instruction(s): vrsqrte.u32 d0, d0
  • float32x4_t vrsqrteq_f32 (float32x4_t)
    Form of expected instruction(s): vrsqrte.f32 q0, q0
  • uint32x4_t vrsqrteq_u32 (uint32x4_t)
    Form of expected instruction(s): vrsqrte.u32 q0, q0
6.51.3.39 Get lanes from a vector
  • uint32_t vget_lane_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vmov.u32 r0, d0[0]
  • uint16_t vget_lane_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vmov.u16 r0, d0[0]
  • uint8_t vget_lane_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vmov.u8 r0, d0[0]
  • int32_t vget_lane_s32 (int32x2_t, const int)
    Form of expected instruction(s): vmov.s32 r0, d0[0]
  • int16_t vget_lane_s16 (int16x4_t, const int)
    Form of expected instruction(s): vmov.s16 r0, d0[0]
  • int8_t vget_lane_s8 (int8x8_t, const int)
    Form of expected instruction(s): vmov.s8 r0, d0[0]
  • float32_t vget_lane_f32 (float32x2_t, const int)
    Form of expected instruction(s): vmov.f32 r0, d0[0]
  • poly16_t vget_lane_p16 (poly16x4_t, const int)
    Form of expected instruction(s): vmov.u16 r0, d0[0]
  • poly8_t vget_lane_p8 (poly8x8_t, const int)
    Form of expected instruction(s): vmov.u8 r0, d0[0]
  • uint64_t vget_lane_u64 (uint64x1_t, const int)
    Form of expected instruction(s): vmov r0, r0, d0
  • int64_t vget_lane_s64 (int64x1_t, const int)
    Form of expected instruction(s): vmov r0, r0, d0
  • uint32_t vgetq_lane_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vmov.u32 r0, d0[0]
  • uint16_t vgetq_lane_u16 (uint16x8_t, const int)
    Form of expected instruction(s): vmov.u16 r0, d0[0]
  • uint8_t vgetq_lane_u8 (uint8x16_t, const int)
    Form of expected instruction(s): vmov.u8 r0, d0[0]
  • int32_t vgetq_lane_s32 (int32x4_t, const int)
    Form of expected instruction(s): vmov.s32 r0, d0[0]
  • int16_t vgetq_lane_s16 (int16x8_t, const int)
    Form of expected instruction(s): vmov.s16 r0, d0[0]
  • int8_t vgetq_lane_s8 (int8x16_t, const int)
    Form of expected instruction(s): vmov.s8 r0, d0[0]
  • float32_t vgetq_lane_f32 (float32x4_t, const int)
    Form of expected instruction(s): vmov.f32 r0, d0[0]
  • poly16_t vgetq_lane_p16 (poly16x8_t, const int)
    Form of expected instruction(s): vmov.u16 r0, d0[0]
  • poly8_t vgetq_lane_p8 (poly8x16_t, const int)
    Form of expected instruction(s): vmov.u8 r0, d0[0]
  • uint64_t vgetq_lane_u64 (uint64x2_t, const int)
    Form of expected instruction(s): vmov r0, r0, d0
  • int64_t vgetq_lane_s64 (int64x2_t, const int)
    Form of expected instruction(s): vmov r0, r0, d0
6.51.3.40 Set lanes in a vector
  • uint32x2_t vset_lane_u32 (uint32_t, uint32x2_t, const int)
    Form of expected instruction(s): vmov.32 d0[0], r0
  • uint16x4_t vset_lane_u16 (uint16_t, uint16x4_t, const int)
    Form of expected instruction(s): vmov.16 d0[0], r0
  • uint8x8_t vset_lane_u8 (uint8_t, uint8x8_t, const int)
    Form of expected instruction(s): vmov.8 d0[0], r0
  • int32x2_t vset_lane_s32 (int32_t, int32x2_t, const int)
    Form of expected instruction(s): vmov.32 d0[0], r0
  • int16x4_t vset_lane_s16 (int16_t, int16x4_t, const int)
    Form of expected instruction(s): vmov.16 d0[0], r0
  • int8x8_t vset_lane_s8 (int8_t, int8x8_t, const int)
    Form of expected instruction(s): vmov.8 d0[0], r0
  • float32x2_t vset_lane_f32 (float32_t, float32x2_t, const int)
    Form of expected instruction(s): vmov.32 d0[0], r0
  • poly16x4_t vset_lane_p16 (poly16_t, poly16x4_t, const int)
    Form of expected instruction(s): vmov.16 d0[0], r0
  • poly8x8_t vset_lane_p8 (poly8_t, poly8x8_t, const int)
    Form of expected instruction(s): vmov.8 d0[0], r0
  • uint64x1_t vset_lane_u64 (uint64_t, uint64x1_t, const int)
    Form of expected instruction(s): vmov d0, r0, r0
  • int64x1_t vset_lane_s64 (int64_t, int64x1_t, const int)
    Form of expected instruction(s): vmov d0, r0, r0
  • uint32x4_t vsetq_lane_u32 (uint32_t, uint32x4_t, const int)
    Form of expected instruction(s): vmov.32 d0[0], r0
  • uint16x8_t vsetq_lane_u16 (uint16_t, uint16x8_t, const int)
    Form of expected instruction(s): vmov.16 d0[0], r0
  • uint8x16_t vsetq_lane_u8 (uint8_t, uint8x16_t, const int)
    Form of expected instruction(s): vmov.8 d0[0], r0
  • int32x4_t vsetq_lane_s32 (int32_t, int32x4_t, const int)
    Form of expected instruction(s): vmov.32 d0[0], r0
  • int16x8_t vsetq_lane_s16 (int16_t, int16x8_t, const int)
    Form of expected instruction(s): vmov.16 d0[0], r0
  • int8x16_t vsetq_lane_s8 (int8_t, int8x16_t, const int)
    Form of expected instruction(s): vmov.8 d0[0], r0
  • float32x4_t vsetq_lane_f32 (float32_t, float32x4_t, const int)
    Form of expected instruction(s): vmov.32 d0[0], r0
  • poly16x8_t vsetq_lane_p16 (poly16_t, poly16x8_t, const int)
    Form of expected instruction(s): vmov.16 d0[0], r0
  • poly8x16_t vsetq_lane_p8 (poly8_t, poly8x16_t, const int)
    Form of expected instruction(s): vmov.8 d0[0], r0
  • uint64x2_t vsetq_lane_u64 (uint64_t, uint64x2_t, const int)
    Form of expected instruction(s): vmov d0, r0, r0
  • int64x2_t vsetq_lane_s64 (int64_t, int64x2_t, const int)
    Form of expected instruction(s): vmov d0, r0, r0
6.51.3.41 Create vector from literal bit pattern
  • uint32x2_t vcreate_u32 (uint64_t)
  • uint16x4_t vcreate_u16 (uint64_t)
  • uint8x8_t vcreate_u8 (uint64_t)
  • int32x2_t vcreate_s32 (uint64_t)
  • int16x4_t vcreate_s16 (uint64_t)
  • int8x8_t vcreate_s8 (uint64_t)
  • uint64x1_t vcreate_u64 (uint64_t)
  • int64x1_t vcreate_s64 (uint64_t)
  • float32x2_t vcreate_f32 (uint64_t)
  • poly16x4_t vcreate_p16 (uint64_t)
  • poly8x8_t vcreate_p8 (uint64_t)
6.51.3.42 Set all lanes to the same value
  • uint32x2_t vdup_n_u32 (uint32_t)
    Form of expected instruction(s): vdup.32 d0, r0
  • uint16x4_t vdup_n_u16 (uint16_t)
    Form of expected instruction(s): vdup.16 d0, r0
  • uint8x8_t vdup_n_u8 (uint8_t)
    Form of expected instruction(s): vdup.8 d0, r0
  • int32x2_t vdup_n_s32 (int32_t)
    Form of expected instruction(s): vdup.32 d0, r0
  • int16x4_t vdup_n_s16 (int16_t)
    Form of expected instruction(s): vdup.16 d0, r0
  • int8x8_t vdup_n_s8 (int8_t)
    Form of expected instruction(s): vdup.8 d0, r0
  • float32x2_t vdup_n_f32 (float32_t)
    Form of expected instruction(s): vdup.32 d0, r0
  • poly16x4_t vdup_n_p16 (poly16_t)
    Form of expected instruction(s): vdup.16 d0, r0
  • poly8x8_t vdup_n_p8 (poly8_t)
    Form of expected instruction(s): vdup.8 d0, r0
  • uint64x1_t vdup_n_u64 (uint64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • int64x1_t vdup_n_s64 (int64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • uint32x4_t vdupq_n_u32 (uint32_t)
    Form of expected instruction(s): vdup.32 q0, r0
  • uint16x8_t vdupq_n_u16 (uint16_t)
    Form of expected instruction(s): vdup.16 q0, r0
  • uint8x16_t vdupq_n_u8 (uint8_t)
    Form of expected instruction(s): vdup.8 q0, r0
  • int32x4_t vdupq_n_s32 (int32_t)
    Form of expected instruction(s): vdup.32 q0, r0
  • int16x8_t vdupq_n_s16 (int16_t)
    Form of expected instruction(s): vdup.16 q0, r0
  • int8x16_t vdupq_n_s8 (int8_t)
    Form of expected instruction(s): vdup.8 q0, r0
  • float32x4_t vdupq_n_f32 (float32_t)
    Form of expected instruction(s): vdup.32 q0, r0
  • poly16x8_t vdupq_n_p16 (poly16_t)
    Form of expected instruction(s): vdup.16 q0, r0
  • poly8x16_t vdupq_n_p8 (poly8_t)
    Form of expected instruction(s): vdup.8 q0, r0
  • uint64x2_t vdupq_n_u64 (uint64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • int64x2_t vdupq_n_s64 (int64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • uint32x2_t vmov_n_u32 (uint32_t)
    Form of expected instruction(s): vdup.32 d0, r0
  • uint16x4_t vmov_n_u16 (uint16_t)
    Form of expected instruction(s): vdup.16 d0, r0
  • uint8x8_t vmov_n_u8 (uint8_t)
    Form of expected instruction(s): vdup.8 d0, r0
  • int32x2_t vmov_n_s32 (int32_t)
    Form of expected instruction(s): vdup.32 d0, r0
  • int16x4_t vmov_n_s16 (int16_t)
    Form of expected instruction(s): vdup.16 d0, r0
  • int8x8_t vmov_n_s8 (int8_t)
    Form of expected instruction(s): vdup.8 d0, r0
  • float32x2_t vmov_n_f32 (float32_t)
    Form of expected instruction(s): vdup.32 d0, r0
  • poly16x4_t vmov_n_p16 (poly16_t)
    Form of expected instruction(s): vdup.16 d0, r0
  • poly8x8_t vmov_n_p8 (poly8_t)
    Form of expected instruction(s): vdup.8 d0, r0
  • uint64x1_t vmov_n_u64 (uint64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • int64x1_t vmov_n_s64 (int64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • uint32x4_t vmovq_n_u32 (uint32_t)
    Form of expected instruction(s): vdup.32 q0, r0
  • uint16x8_t vmovq_n_u16 (uint16_t)
    Form of expected instruction(s): vdup.16 q0, r0
  • uint8x16_t vmovq_n_u8 (uint8_t)
    Form of expected instruction(s): vdup.8 q0, r0
  • int32x4_t vmovq_n_s32 (int32_t)
    Form of expected instruction(s): vdup.32 q0, r0
  • int16x8_t vmovq_n_s16 (int16_t)
    Form of expected instruction(s): vdup.16 q0, r0
  • int8x16_t vmovq_n_s8 (int8_t)
    Form of expected instruction(s): vdup.8 q0, r0
  • float32x4_t vmovq_n_f32 (float32_t)
    Form of expected instruction(s): vdup.32 q0, r0
  • poly16x8_t vmovq_n_p16 (poly16_t)
    Form of expected instruction(s): vdup.16 q0, r0
  • poly8x16_t vmovq_n_p8 (poly8_t)
    Form of expected instruction(s): vdup.8 q0, r0
  • uint64x2_t vmovq_n_u64 (uint64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • int64x2_t vmovq_n_s64 (int64_t)
    Form of expected instruction(s): vmov d0, r0, r0
  • uint32x2_t vdup_lane_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vdup.32 d0, d0[0]
  • uint16x4_t vdup_lane_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vdup.16 d0, d0[0]
  • uint8x8_t vdup_lane_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vdup.8 d0, d0[0]
  • int32x2_t vdup_lane_s32 (int32x2_t, const int)
    Form of expected instruction(s): vdup.32 d0, d0[0]
  • int16x4_t vdup_lane_s16 (int16x4_t, const int)
    Form of expected instruction(s): vdup.16 d0, d0[0]
  • int8x8_t vdup_lane_s8 (int8x8_t, const int)
    Form of expected instruction(s): vdup.8 d0, d0[0]
  • float32x2_t vdup_lane_f32 (float32x2_t, const int)
    Form of expected instruction(s): vdup.32 d0, d0[0]
  • poly16x4_t vdup_lane_p16 (poly16x4_t, const int)
    Form of expected instruction(s): vdup.16 d0, d0[0]
  • poly8x8_t vdup_lane_p8 (poly8x8_t, const int)
    Form of expected instruction(s): vdup.8 d0, d0[0]
  • uint64x1_t vdup_lane_u64 (uint64x1_t, const int)
  • int64x1_t vdup_lane_s64 (int64x1_t, const int)
  • uint32x4_t vdupq_lane_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vdup.32 q0, d0[0]
  • uint16x8_t vdupq_lane_u16 (uint16x4_t, const int)
    Form of expected instruction(s): vdup.16 q0, d0[0]
  • uint8x16_t vdupq_lane_u8 (uint8x8_t, const int)
    Form of expected instruction(s): vdup.8 q0, d0[0]
  • int32x4_t vdupq_lane_s32 (int32x2_t, const int)
    Form of expected instruction(s): vdup.32 q0, d0[0]
  • int16x8_t vdupq_lane_s16 (int16x4_t, const int)
    Form of expected instruction(s): vdup.16 q0, d0[0]
  • int8x16_t vdupq_lane_s8 (int8x8_t, const int)
    Form of expected instruction(s): vdup.8 q0, d0[0]
  • float32x4_t vdupq_lane_f32 (float32x2_t, const int)
    Form of expected instruction(s): vdup.32 q0, d0[0]
  • poly16x8_t vdupq_lane_p16 (poly16x4_t, const int)
    Form of expected instruction(s): vdup.16 q0, d0[0]
  • poly8x16_t vdupq_lane_p8 (poly8x8_t, const int)
    Form of expected instruction(s): vdup.8 q0, d0[0]
  • uint64x2_t vdupq_lane_u64 (uint64x1_t, const int)
  • int64x2_t vdupq_lane_s64 (int64x1_t, const int)
6.51.3.43 Combining vectors
  • uint32x4_t vcombine_u32 (uint32x2_t, uint32x2_t)
  • uint16x8_t vcombine_u16 (uint16x4_t, uint16x4_t)
  • uint8x16_t vcombine_u8 (uint8x8_t, uint8x8_t)
  • int32x4_t vcombine_s32 (int32x2_t, int32x2_t)
  • int16x8_t vcombine_s16 (int16x4_t, int16x4_t)
  • int8x16_t vcombine_s8 (int8x8_t, int8x8_t)
  • uint64x2_t vcombine_u64 (uint64x1_t, uint64x1_t)
  • int64x2_t vcombine_s64 (int64x1_t, int64x1_t)
  • float32x4_t vcombine_f32 (float32x2_t, float32x2_t)
  • poly16x8_t vcombine_p16 (poly16x4_t, poly16x4_t)
  • poly8x16_t vcombine_p8 (poly8x8_t, poly8x8_t)
6.51.3.44 Splitting vectors
  • uint32x2_t vget_high_u32 (uint32x4_t)
  • uint16x4_t vget_high_u16 (uint16x8_t)
  • uint8x8_t vget_high_u8 (uint8x16_t)
  • int32x2_t vget_high_s32 (int32x4_t)
  • int16x4_t vget_high_s16 (int16x8_t)
  • int8x8_t vget_high_s8 (int8x16_t)
  • uint64x1_t vget_high_u64 (uint64x2_t)
  • int64x1_t vget_high_s64 (int64x2_t)
  • float32x2_t vget_high_f32 (float32x4_t)
  • poly16x4_t vget_high_p16 (poly16x8_t)
  • poly8x8_t vget_high_p8 (poly8x16_t)
  • uint32x2_t vget_low_u32 (uint32x4_t)
    Form of expected instruction(s): vmov d0, d0
  • uint16x4_t vget_low_u16 (uint16x8_t)
    Form of expected instruction(s): vmov d0, d0
  • uint8x8_t vget_low_u8 (uint8x16_t)
    Form of expected instruction(s): vmov d0, d0
  • int32x2_t vget_low_s32 (int32x4_t)
    Form of expected instruction(s): vmov d0, d0
  • int16x4_t vget_low_s16 (int16x8_t)
    Form of expected instruction(s): vmov d0, d0
  • int8x8_t vget_low_s8 (int8x16_t)
    Form of expected instruction(s): vmov d0, d0
  • uint64x1_t vget_low_u64 (uint64x2_t)
    Form of expected instruction(s): vmov d0, d0
  • int64x1_t vget_low_s64 (int64x2_t)
    Form of expected instruction(s): vmov d0, d0
  • float32x2_t vget_low_f32 (float32x4_t)
    Form of expected instruction(s): vmov d0, d0
  • poly16x4_t vget_low_p16 (poly16x8_t)
    Form of expected instruction(s): vmov d0, d0
  • poly8x8_t vget_low_p8 (poly8x16_t)
    Form of expected instruction(s): vmov d0, d0
6.51.3.45 Conversions
  • float32x2_t vcvt_f32_u32 (uint32x2_t)
    Form of expected instruction(s): vcvt.f32.u32 d0, d0
  • float32x2_t vcvt_f32_s32 (int32x2_t)
    Form of expected instruction(s): vcvt.f32.s32 d0, d0
  • uint32x2_t vcvt_u32_f32 (float32x2_t)
    Form of expected instruction(s): vcvt.u32.f32 d0, d0
  • int32x2_t vcvt_s32_f32 (float32x2_t)
    Form of expected instruction(s): vcvt.s32.f32 d0, d0
  • float32x4_t vcvtq_f32_u32 (uint32x4_t)
    Form of expected instruction(s): vcvt.f32.u32 q0, q0
  • float32x4_t vcvtq_f32_s32 (int32x4_t)
    Form of expected instruction(s): vcvt.f32.s32 q0, q0
  • uint32x4_t vcvtq_u32_f32 (float32x4_t)
    Form of expected instruction(s): vcvt.u32.f32 q0, q0
  • int32x4_t vcvtq_s32_f32 (float32x4_t)
    Form of expected instruction(s): vcvt.s32.f32 q0, q0
  • float32x2_t vcvt_n_f32_u32 (uint32x2_t, const int)
    Form of expected instruction(s): vcvt.f32.u32 d0, d0, #0
  • float32x2_t vcvt_n_f32_s32 (int32x2_t, const int)
    Form of expected instruction(s): vcvt.f32.s32 d0, d0, #0
  • uint32x2_t vcvt_n_u32_f32 (float32x2_t, const int)
    Form of expected instruction(s): vcvt.u32.f32 d0, d0, #0
  • int32x2_t vcvt_n_s32_f32 (float32x2_t, const int)
    Form of expected instruction(s): vcvt.s32.f32 d0, d0, #0
  • float32x4_t vcvtq_n_f32_u32 (uint32x4_t, const int)
    Form of expected instruction(s): vcvt.f32.u32 q0, q0, #0
  • float32x4_t vcvtq_n_f32_s32 (int32x4_t, const int)
    Form of expected instruction(s): vcvt.f32.s32 q0, q0, #0
  • uint32x4_t vcvtq_n_u32_f32 (float32x4_t, const int)
    Form of expected instruction(s): vcvt.u32.f32 q0, q0, #0
  • int32x4_t vcvtq_n_s32_f32 (float32x4_t, const int)
    Form of expected instruction(s): vcvt.s32.f32 q0, q0, #0
6.51.3.46 Move, single_opcode narrowing
  • uint32x2_t vmovn_u64 (uint64x2_t)
    Form of expected instruction(s): vmovn.i64 d0, q0
  • uint16x4_t vmovn_u32 (uint32x4_t)
    Form of expected instruction(s): vmovn.i32 d0, q0
  • uint8x8_t vmovn_u16 (uint16x8_t)
    Form of expected instruction(s): vmovn.i16 d0, q0
  • int32x2_t vmovn_s64 (int64x2_t)
    Form of expected instruction(s): vmovn.i64 d0, q0
  • int16x4_t vmovn_s32 (int32x4_t)
    Form of expected instruction(s): vmovn.i32 d0, q0
  • int8x8_t vmovn_s16 (int16x8_t)
    Form of expected instruction(s): vmovn.i16 d0, q0
  • uint32x2_t vqmovn_u64 (uint64x2_t)
    Form of expected instruction(s): vqmovn.u64 d0, q0
  • uint16x4_t vqmovn_u32 (uint32x4_t)
    Form of expected instruction(s): vqmovn.u32 d0, q0
  • uint8x8_t vqmovn_u16 (uint16x8_t)
    Form of expected instruction(s): vqmovn.u16 d0, q0
  • int32x2_t vqmovn_s64 (int64x2_t)
    Form of expected instruction(s): vqmovn.s64 d0, q0
  • int16x4_t vqmovn_s32 (int32x4_t)
    Form of expected instruction(s): vqmovn.s32 d0, q0
  • int8x8_t vqmovn_s16 (int16x8_t)
    Form of expected instruction(s): vqmovn.s16 d0, q0
  • uint32x2_t vqmovun_s64 (int64x2_t)
    Form of expected instruction(s): vqmovun.s64 d0, q0
  • uint16x4_t vqmovun_s32 (int32x4_t)
    Form of expected instruction(s): vqmovun.s32 d0, q0
  • uint8x8_t vqmovun_s16 (int16x8_t)
    Form of expected instruction(s): vqmovun.s16 d0, q0
6.51.3.47 Move, single_opcode long
  • uint64x2_t vmovl_u32 (uint32x2_t)
    Form of expected instruction(s): vmovl.u32 q0, d0
  • uint32x4_t vmovl_u16 (uint16x4_t)
    Form of expected instruction(s): vmovl.u16 q0, d0
  • uint16x8_t vmovl_u8 (uint8x8_t)
    Form of expected instruction(s): vmovl.u8 q0, d0
  • int64x2_t vmovl_s32 (int32x2_t)
    Form of expected instruction(s): vmovl.s32 q0, d0
  • int32x4_t vmovl_s16 (int16x4_t)
    Form of expected instruction(s): vmovl.s16 q0, d0
  • int16x8_t vmovl_s8 (int8x8_t)
    Form of expected instruction(s): vmovl.s8 q0, d0
6.51.3.48 Table lookup
  • poly8x8_t vtbl1_p8 (poly8x8_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0}, d0
  • int8x8_t vtbl1_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0}, d0
  • uint8x8_t vtbl1_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0}, d0
  • poly8x8_t vtbl2_p8 (poly8x8x2_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1}, d0
  • int8x8_t vtbl2_s8 (int8x8x2_t, int8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1}, d0
  • uint8x8_t vtbl2_u8 (uint8x8x2_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1}, d0
  • poly8x8_t vtbl3_p8 (poly8x8x3_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1, d2}, d0
  • int8x8_t vtbl3_s8 (int8x8x3_t, int8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1, d2}, d0
  • uint8x8_t vtbl3_u8 (uint8x8x3_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1, d2}, d0
  • poly8x8_t vtbl4_p8 (poly8x8x4_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1, d2, d3}, d0
  • int8x8_t vtbl4_s8 (int8x8x4_t, int8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1, d2, d3}, d0
  • uint8x8_t vtbl4_u8 (uint8x8x4_t, uint8x8_t)
    Form of expected instruction(s): vtbl.8 d0, {d0, d1, d2, d3}, d0
6.51.3.49 Extended table lookup
  • poly8x8_t vtbx1_p8 (poly8x8_t, poly8x8_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0}, d0
  • int8x8_t vtbx1_s8 (int8x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0}, d0
  • uint8x8_t vtbx1_u8 (uint8x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0}, d0
  • poly8x8_t vtbx2_p8 (poly8x8_t, poly8x8x2_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1}, d0
  • int8x8_t vtbx2_s8 (int8x8_t, int8x8x2_t, int8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1}, d0
  • uint8x8_t vtbx2_u8 (uint8x8_t, uint8x8x2_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1}, d0
  • poly8x8_t vtbx3_p8 (poly8x8_t, poly8x8x3_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1, d2}, d0
  • int8x8_t vtbx3_s8 (int8x8_t, int8x8x3_t, int8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1, d2}, d0
  • uint8x8_t vtbx3_u8 (uint8x8_t, uint8x8x3_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1, d2}, d0
  • poly8x8_t vtbx4_p8 (poly8x8_t, poly8x8x4_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1, d2, d3}, d0
  • int8x8_t vtbx4_s8 (int8x8_t, int8x8x4_t, int8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1, d2, d3}, d0
  • uint8x8_t vtbx4_u8 (uint8x8_t, uint8x8x4_t, uint8x8_t)
    Form of expected instruction(s): vtbx.8 d0, {d0, d1, d2, d3}, d0
6.51.3.50 Multiply, lane
  • float32x2_t vmul_lane_f32 (float32x2_t, float32x2_t, const int)
    Form of expected instruction(s): vmul.f32 d0, d0, d0[0]
  • uint32x2_t vmul_lane_u32 (uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vmul.i32 d0, d0, d0[0]
  • uint16x4_t vmul_lane_u16 (uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vmul.i16 d0, d0, d0[0]
  • int32x2_t vmul_lane_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vmul.i32 d0, d0, d0[0]
  • int16x4_t vmul_lane_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vmul.i16 d0, d0, d0[0]
  • float32x4_t vmulq_lane_f32 (float32x4_t, float32x2_t, const int)
    Form of expected instruction(s): vmul.f32 q0, q0, d0[0]
  • uint32x4_t vmulq_lane_u32 (uint32x4_t, uint32x2_t, const int)
    Form of expected instruction(s): vmul.i32 q0, q0, d0[0]
  • uint16x8_t vmulq_lane_u16 (uint16x8_t, uint16x4_t, const int)
    Form of expected instruction(s): vmul.i16 q0, q0, d0[0]
  • int32x4_t vmulq_lane_s32 (int32x4_t, int32x2_t, const int)
    Form of expected instruction(s): vmul.i32 q0, q0, d0[0]
  • int16x8_t vmulq_lane_s16 (int16x8_t, int16x4_t, const int)
    Form of expected instruction(s): vmul.i16 q0, q0, d0[0]
6.51.3.51 Long multiply, lane
  • uint64x2_t vmull_lane_u32 (uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vmull.u32 q0, d0, d0[0]
  • uint32x4_t vmull_lane_u16 (uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vmull.u16 q0, d0, d0[0]
  • int64x2_t vmull_lane_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vmull.s32 q0, d0, d0[0]
  • int32x4_t vmull_lane_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vmull.s16 q0, d0, d0[0]
6.51.3.52 Saturating doubling long multiply, lane
  • int64x2_t vqdmull_lane_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vqdmull.s32 q0, d0, d0[0]
  • int32x4_t vqdmull_lane_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vqdmull.s16 q0, d0, d0[0]
6.51.3.53 Saturating doubling multiply high, lane
  • int32x4_t vqdmulhq_lane_s32 (int32x4_t, int32x2_t, const int)
    Form of expected instruction(s): vqdmulh.s32 q0, q0, d0[0]
  • int16x8_t vqdmulhq_lane_s16 (int16x8_t, int16x4_t, const int)
    Form of expected instruction(s): vqdmulh.s16 q0, q0, d0[0]
  • int32x2_t vqdmulh_lane_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vqdmulh.s32 d0, d0, d0[0]
  • int16x4_t vqdmulh_lane_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vqdmulh.s16 d0, d0, d0[0]
  • int32x4_t vqrdmulhq_lane_s32 (int32x4_t, int32x2_t, const int)
    Form of expected instruction(s): vqrdmulh.s32 q0, q0, d0[0]
  • int16x8_t vqrdmulhq_lane_s16 (int16x8_t, int16x4_t, const int)
    Form of expected instruction(s): vqrdmulh.s16 q0, q0, d0[0]
  • int32x2_t vqrdmulh_lane_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vqrdmulh.s32 d0, d0, d0[0]
  • int16x4_t vqrdmulh_lane_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vqrdmulh.s16 d0, d0, d0[0]
6.51.3.54 Multiply-accumulate, lane
  • float32x2_t vmla_lane_f32 (float32x2_t, float32x2_t, float32x2_t, const int)
    Form of expected instruction(s): vmla.f32 d0, d0, d0[0]
  • uint32x2_t vmla_lane_u32 (uint32x2_t, uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vmla.i32 d0, d0, d0[0]
  • uint16x4_t vmla_lane_u16 (uint16x4_t, uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vmla.i16 d0, d0, d0[0]
  • int32x2_t vmla_lane_s32 (int32x2_t, int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vmla.i32 d0, d0, d0[0]
  • int16x4_t vmla_lane_s16 (int16x4_t, int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vmla.i16 d0, d0, d0[0]
  • float32x4_t vmlaq_lane_f32 (float32x4_t, float32x4_t, float32x2_t, const int)
    Form of expected instruction(s): vmla.f32 q0, q0, d0[0]
  • uint32x4_t vmlaq_lane_u32 (uint32x4_t, uint32x4_t, uint32x2_t, const int)
    Form of expected instruction(s): vmla.i32 q0, q0, d0[0]
  • uint16x8_t vmlaq_lane_u16 (uint16x8_t, uint16x8_t, uint16x4_t, const int)
    Form of expected instruction(s): vmla.i16 q0, q0, d0[0]
  • int32x4_t vmlaq_lane_s32 (int32x4_t, int32x4_t, int32x2_t, const int)
    Form of expected instruction(s): vmla.i32 q0, q0, d0[0]
  • int16x8_t vmlaq_lane_s16 (int16x8_t, int16x8_t, int16x4_t, const int)
    Form of expected instruction(s): vmla.i16 q0, q0, d0[0]
  • uint64x2_t vmlal_lane_u32 (uint64x2_t, uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vmlal.u32 q0, d0, d0[0]
  • uint32x4_t vmlal_lane_u16 (uint32x4_t, uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vmlal.u16 q0, d0, d0[0]
  • int64x2_t vmlal_lane_s32 (int64x2_t, int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vmlal.s32 q0, d0, d0[0]
  • int32x4_t vmlal_lane_s16 (int32x4_t, int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vmlal.s16 q0, d0, d0[0]
  • int64x2_t vqdmlal_lane_s32 (int64x2_t, int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vqdmlal.s32 q0, d0, d0[0]
  • int32x4_t vqdmlal_lane_s16 (int32x4_t, int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vqdmlal.s16 q0, d0, d0[0]
6.51.3.55 Multiply-subtract, lane
  • float32x2_t vmls_lane_f32 (float32x2_t, float32x2_t, float32x2_t, const int)
    Form of expected instruction(s): vmls.f32 d0, d0, d0[0]
  • uint32x2_t vmls_lane_u32 (uint32x2_t, uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vmls.i32 d0, d0, d0[0]
  • uint16x4_t vmls_lane_u16 (uint16x4_t, uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vmls.i16 d0, d0, d0[0]
  • int32x2_t vmls_lane_s32 (int32x2_t, int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vmls.i32 d0, d0, d0[0]
  • int16x4_t vmls_lane_s16 (int16x4_t, int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vmls.i16 d0, d0, d0[0]
  • float32x4_t vmlsq_lane_f32 (float32x4_t, float32x4_t, float32x2_t, const int)
    Form of expected instruction(s): vmls.f32 q0, q0, d0[0]
  • uint32x4_t vmlsq_lane_u32 (uint32x4_t, uint32x4_t, uint32x2_t, const int)
    Form of expected instruction(s): vmls.i32 q0, q0, d0[0]
  • uint16x8_t vmlsq_lane_u16 (uint16x8_t, uint16x8_t, uint16x4_t, const int)
    Form of expected instruction(s): vmls.i16 q0, q0, d0[0]
  • int32x4_t vmlsq_lane_s32 (int32x4_t, int32x4_t, int32x2_t, const int)
    Form of expected instruction(s): vmls.i32 q0, q0, d0[0]
  • int16x8_t vmlsq_lane_s16 (int16x8_t, int16x8_t, int16x4_t, const int)
    Form of expected instruction(s): vmls.i16 q0, q0, d0[0]
  • uint64x2_t vmlsl_lane_u32 (uint64x2_t, uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vmlsl.u32 q0, d0, d0[0]
  • uint32x4_t vmlsl_lane_u16 (uint32x4_t, uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vmlsl.u16 q0, d0, d0[0]
  • int64x2_t vmlsl_lane_s32 (int64x2_t, int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vmlsl.s32 q0, d0, d0[0]
  • int32x4_t vmlsl_lane_s16 (int32x4_t, int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vmlsl.s16 q0, d0, d0[0]
  • int64x2_t vqdmlsl_lane_s32 (int64x2_t, int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vqdmlsl.s32 q0, d0, d0[0]
  • int32x4_t vqdmlsl_lane_s16 (int32x4_t, int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vqdmlsl.s16 q0, d0, d0[0]
6.51.3.56 Vector multiply by scalar
  • float32x2_t vmul_n_f32 (float32x2_t, float32_t)
    Form of expected instruction(s): vmul.f32 d0, d0, d0[0]
  • uint32x2_t vmul_n_u32 (uint32x2_t, uint32_t)
    Form of expected instruction(s): vmul.i32 d0, d0, d0[0]
  • uint16x4_t vmul_n_u16 (uint16x4_t, uint16_t)
    Form of expected instruction(s): vmul.i16 d0, d0, d0[0]
  • int32x2_t vmul_n_s32 (int32x2_t, int32_t)
    Form of expected instruction(s): vmul.i32 d0, d0, d0[0]
  • int16x4_t vmul_n_s16 (int16x4_t, int16_t)
    Form of expected instruction(s): vmul.i16 d0, d0, d0[0]
  • float32x4_t vmulq_n_f32 (float32x4_t, float32_t)
    Form of expected instruction(s): vmul.f32 q0, q0, d0[0]
  • uint32x4_t vmulq_n_u32 (uint32x4_t, uint32_t)
    Form of expected instruction(s): vmul.i32 q0, q0, d0[0]
  • uint16x8_t vmulq_n_u16 (uint16x8_t, uint16_t)
    Form of expected instruction(s): vmul.i16 q0, q0, d0[0]
  • int32x4_t vmulq_n_s32 (int32x4_t, int32_t)
    Form of expected instruction(s): vmul.i32 q0, q0, d0[0]
  • int16x8_t vmulq_n_s16 (int16x8_t, int16_t)
    Form of expected instruction(s): vmul.i16 q0, q0, d0[0]
6.51.3.57 Vector long multiply by scalar
  • uint64x2_t vmull_n_u32 (uint32x2_t, uint32_t)
    Form of expected instruction(s): vmull.u32 q0, d0, d0[0]
  • uint32x4_t vmull_n_u16 (uint16x4_t, uint16_t)
    Form of expected instruction(s): vmull.u16 q0, d0, d0[0]
  • int64x2_t vmull_n_s32 (int32x2_t, int32_t)
    Form of expected instruction(s): vmull.s32 q0, d0, d0[0]
  • int32x4_t vmull_n_s16 (int16x4_t, int16_t)
    Form of expected instruction(s): vmull.s16 q0, d0, d0[0]
6.51.3.58 Vector saturating doubling long multiply by scalar
  • int64x2_t vqdmull_n_s32 (int32x2_t, int32_t)
    Form of expected instruction(s): vqdmull.s32 q0, d0, d0[0]
  • int32x4_t vqdmull_n_s16 (int16x4_t, int16_t)
    Form of expected instruction(s): vqdmull.s16 q0, d0, d0[0]
6.51.3.59 Vector saturating doubling multiply high by scalar
  • int32x4_t vqdmulhq_n_s32 (int32x4_t, int32_t)
    Form of expected instruction(s): vqdmulh.s32 q0, q0, d0[0]
  • int16x8_t vqdmulhq_n_s16 (int16x8_t, int16_t)
    Form of expected instruction(s): vqdmulh.s16 q0, q0, d0[0]
  • int32x2_t vqdmulh_n_s32 (int32x2_t, int32_t)
    Form of expected instruction(s): vqdmulh.s32 d0, d0, d0[0]
  • int16x4_t vqdmulh_n_s16 (int16x4_t, int16_t)
    Form of expected instruction(s): vqdmulh.s16 d0, d0, d0[0]
  • int32x4_t vqrdmulhq_n_s32 (int32x4_t, int32_t)
    Form of expected instruction(s): vqrdmulh.s32 q0, q0, d0[0]
  • int16x8_t vqrdmulhq_n_s16 (int16x8_t, int16_t)
    Form of expected instruction(s): vqrdmulh.s16 q0, q0, d0[0]
  • int32x2_t vqrdmulh_n_s32 (int32x2_t, int32_t)
    Form of expected instruction(s): vqrdmulh.s32 d0, d0, d0[0]
  • int16x4_t vqrdmulh_n_s16 (int16x4_t, int16_t)
    Form of expected instruction(s): vqrdmulh.s16 d0, d0, d0[0]
6.51.3.60 Vector multiply-accumulate by scalar
  • float32x2_t vmla_n_f32 (float32x2_t, float32x2_t, float32_t)
    Form of expected instruction(s): vmla.f32 d0, d0, d0[0]
  • uint32x2_t vmla_n_u32 (uint32x2_t, uint32x2_t, uint32_t)
    Form of expected instruction(s): vmla.i32 d0, d0, d0[0]
  • uint16x4_t vmla_n_u16 (uint16x4_t, uint16x4_t, uint16_t)
    Form of expected instruction(s): vmla.i16 d0, d0, d0[0]
  • int32x2_t vmla_n_s32 (int32x2_t, int32x2_t, int32_t)
    Form of expected instruction(s): vmla.i32 d0, d0, d0[0]
  • int16x4_t vmla_n_s16 (int16x4_t, int16x4_t, int16_t)
    Form of expected instruction(s): vmla.i16 d0, d0, d0[0]
  • float32x4_t vmlaq_n_f32 (float32x4_t, float32x4_t, float32_t)
    Form of expected instruction(s): vmla.f32 q0, q0, d0[0]
  • uint32x4_t vmlaq_n_u32 (uint32x4_t, uint32x4_t, uint32_t)
    Form of expected instruction(s): vmla.i32 q0, q0, d0[0]
  • uint16x8_t vmlaq_n_u16 (uint16x8_t, uint16x8_t, uint16_t)
    Form of expected instruction(s): vmla.i16 q0, q0, d0[0]
  • int32x4_t vmlaq_n_s32 (int32x4_t, int32x4_t, int32_t)
    Form of expected instruction(s): vmla.i32 q0, q0, d0[0]
  • int16x8_t vmlaq_n_s16 (int16x8_t, int16x8_t, int16_t)
    Form of expected instruction(s): vmla.i16 q0, q0, d0[0]
  • uint64x2_t vmlal_n_u32 (uint64x2_t, uint32x2_t, uint32_t)
    Form of expected instruction(s): vmlal.u32 q0, d0, d0[0]
  • uint32x4_t vmlal_n_u16 (uint32x4_t, uint16x4_t, uint16_t)
    Form of expected instruction(s): vmlal.u16 q0, d0, d0[0]
  • int64x2_t vmlal_n_s32 (int64x2_t, int32x2_t, int32_t)
    Form of expected instruction(s): vmlal.s32 q0, d0, d0[0]
  • int32x4_t vmlal_n_s16 (int32x4_t, int16x4_t, int16_t)
    Form of expected instruction(s): vmlal.s16 q0, d0, d0[0]
  • int64x2_t vqdmlal_n_s32 (int64x2_t, int32x2_t, int32_t)
    Form of expected instruction(s): vqdmlal.s32 q0, d0, d0[0]
  • int32x4_t vqdmlal_n_s16 (int32x4_t, int16x4_t, int16_t)
    Form of expected instruction(s): vqdmlal.s16 q0, d0, d0[0]
6.51.3.61 Vector multiply-subtract by scalar
  • float32x2_t vmls_n_f32 (float32x2_t, float32x2_t, float32_t)
    Form of expected instruction(s): vmls.f32 d0, d0, d0[0]
  • uint32x2_t vmls_n_u32 (uint32x2_t, uint32x2_t, uint32_t)
    Form of expected instruction(s): vmls.i32 d0, d0, d0[0]
  • uint16x4_t vmls_n_u16 (uint16x4_t, uint16x4_t, uint16_t)
    Form of expected instruction(s): vmls.i16 d0, d0, d0[0]
  • int32x2_t vmls_n_s32 (int32x2_t, int32x2_t, int32_t)
    Form of expected instruction(s): vmls.i32 d0, d0, d0[0]
  • int16x4_t vmls_n_s16 (int16x4_t, int16x4_t, int16_t)
    Form of expected instruction(s): vmls.i16 d0, d0, d0[0]
  • float32x4_t vmlsq_n_f32 (float32x4_t, float32x4_t, float32_t)
    Form of expected instruction(s): vmls.f32 q0, q0, d0[0]
  • uint32x4_t vmlsq_n_u32 (uint32x4_t, uint32x4_t, uint32_t)
    Form of expected instruction(s): vmls.i32 q0, q0, d0[0]
  • uint16x8_t vmlsq_n_u16 (uint16x8_t, uint16x8_t, uint16_t)
    Form of expected instruction(s): vmls.i16 q0, q0, d0[0]
  • int32x4_t vmlsq_n_s32 (int32x4_t, int32x4_t, int32_t)
    Form of expected instruction(s): vmls.i32 q0, q0, d0[0]
  • int16x8_t vmlsq_n_s16 (int16x8_t, int16x8_t, int16_t)
    Form of expected instruction(s): vmls.i16 q0, q0, d0[0]
  • uint64x2_t vmlsl_n_u32 (uint64x2_t, uint32x2_t, uint32_t)
    Form of expected instruction(s): vmlsl.u32 q0, d0, d0[0]
  • uint32x4_t vmlsl_n_u16 (uint32x4_t, uint16x4_t, uint16_t)
    Form of expected instruction(s): vmlsl.u16 q0, d0, d0[0]
  • int64x2_t vmlsl_n_s32 (int64x2_t, int32x2_t, int32_t)
    Form of expected instruction(s): vmlsl.s32 q0, d0, d0[0]
  • int32x4_t vmlsl_n_s16 (int32x4_t, int16x4_t, int16_t)
    Form of expected instruction(s): vmlsl.s16 q0, d0, d0[0]
  • int64x2_t vqdmlsl_n_s32 (int64x2_t, int32x2_t, int32_t)
    Form of expected instruction(s): vqdmlsl.s32 q0, d0, d0[0]
  • int32x4_t vqdmlsl_n_s16 (int32x4_t, int16x4_t, int16_t)
    Form of expected instruction(s): vqdmlsl.s16 q0, d0, d0[0]
6.51.3.62 Vector extract
  • uint32x2_t vext_u32 (uint32x2_t, uint32x2_t, const int)
    Form of expected instruction(s): vext.32 d0, d0, d0, #0
  • uint16x4_t vext_u16 (uint16x4_t, uint16x4_t, const int)
    Form of expected instruction(s): vext.16 d0, d0, d0, #0
  • uint8x8_t vext_u8 (uint8x8_t, uint8x8_t, const int)
    Form of expected instruction(s): vext.8 d0, d0, d0, #0
  • int32x2_t vext_s32 (int32x2_t, int32x2_t, const int)
    Form of expected instruction(s): vext.32 d0, d0, d0, #0
  • int16x4_t vext_s16 (int16x4_t, int16x4_t, const int)
    Form of expected instruction(s): vext.16 d0, d0, d0, #0
  • int8x8_t vext_s8 (int8x8_t, int8x8_t, const int)
    Form of expected instruction(s): vext.8 d0, d0, d0, #0
  • uint64x1_t vext_u64 (uint64x1_t, uint64x1_t, const int)
    Form of expected instruction(s): vext.64 d0, d0, d0, #0
  • int64x1_t vext_s64 (int64x1_t, int64x1_t, const int)
    Form of expected instruction(s): vext.64 d0, d0, d0, #0
  • float32x2_t vext_f32 (float32x2_t, float32x2_t, const int)
    Form of expected instruction(s): vext.32 d0, d0, d0, #0
  • poly16x4_t vext_p16 (poly16x4_t, poly16x4_t, const int)
    Form of expected instruction(s): vext.16 d0, d0, d0, #0
  • poly8x8_t vext_p8 (poly8x8_t, poly8x8_t, const int)
    Form of expected instruction(s): vext.8 d0, d0, d0, #0
  • uint32x4_t vextq_u32 (uint32x4_t, uint32x4_t, const int)
    Form of expected instruction(s): vext.32 q0, q0, q0, #0
  • uint16x8_t vextq_u16 (uint16x8_t, uint16x8_t, const int)
    Form of expected instruction(s): vext.16 q0, q0, q0, #0
  • uint8x16_t vextq_u8 (uint8x16_t, uint8x16_t, const int)
    Form of expected instruction(s): vext.8 q0, q0, q0, #0
  • int32x4_t vextq_s32 (int32x4_t, int32x4_t, const int)
    Form of expected instruction(s): vext.32 q0, q0, q0, #0
  • int16x8_t vextq_s16 (int16x8_t, int16x8_t, const int)
    Form of expected instruction(s): vext.16 q0, q0, q0, #0
  • int8x16_t vextq_s8 (int8x16_t, int8x16_t, const int)
    Form of expected instruction(s): vext.8 q0, q0, q0, #0
  • uint64x2_t vextq_u64 (uint64x2_t, uint64x2_t, const int)
    Form of expected instruction(s): vext.64 q0, q0, q0, #0
  • int64x2_t vextq_s64 (int64x2_t, int64x2_t, const int)
    Form of expected instruction(s): vext.64 q0, q0, q0, #0
  • float32x4_t vextq_f32 (float32x4_t, float32x4_t, const int)
    Form of expected instruction(s): vext.32 q0, q0, q0, #0
  • poly16x8_t vextq_p16 (poly16x8_t, poly16x8_t, const int)
    Form of expected instruction(s): vext.16 q0, q0, q0, #0
  • poly8x16_t vextq_p8 (poly8x16_t, poly8x16_t, const int)
    Form of expected instruction(s): vext.8 q0, q0, q0, #0
6.51.3.63 Reverse elements
  • uint32x2_t vrev64_u32 (uint32x2_t)
    Form of expected instruction(s): vrev64.32 d0, d0
  • uint16x4_t vrev64_u16 (uint16x4_t)
    Form of expected instruction(s): vrev64.16 d0, d0
  • uint8x8_t vrev64_u8 (uint8x8_t)
    Form of expected instruction(s): vrev64.8 d0, d0
  • int32x2_t vrev64_s32 (int32x2_t)
    Form of expected instruction(s): vrev64.32 d0, d0
  • int16x4_t vrev64_s16 (int16x4_t)
    Form of expected instruction(s): vrev64.16 d0, d0
  • int8x8_t vrev64_s8 (int8x8_t)
    Form of expected instruction(s): vrev64.8 d0, d0
  • float32x2_t vrev64_f32 (float32x2_t)
    Form of expected instruction(s): vrev64.32 d0, d0
  • poly16x4_t vrev64_p16 (poly16x4_t)
    Form of expected instruction(s): vrev64.16 d0, d0
  • poly8x8_t vrev64_p8 (poly8x8_t)
    Form of expected instruction(s): vrev64.8 d0, d0
  • uint32x4_t vrev64q_u32 (uint32x4_t)
    Form of expected instruction(s): vrev64.32 q0, q0
  • uint16x8_t vrev64q_u16 (uint16x8_t)
    Form of expected instruction(s): vrev64.16 q0, q0
  • uint8x16_t vrev64q_u8 (uint8x16_t)
    Form of expected instruction(s): vrev64.8 q0, q0
  • int32x4_t vrev64q_s32 (int32x4_t)
    Form of expected instruction(s): vrev64.32 q0, q0
  • int16x8_t vrev64q_s16 (int16x8_t)
    Form of expected instruction(s): vrev64.16 q0, q0
  • int8x16_t vrev64q_s8 (int8x16_t)
    Form of expected instruction(s): vrev64.8 q0, q0
  • float32x4_t vrev64q_f32 (float32x4_t)
    Form of expected instruction(s): vrev64.32 q0, q0
  • poly16x8_t vrev64q_p16 (poly16x8_t)
    Form of expected instruction(s): vrev64.16 q0, q0
  • poly8x16_t vrev64q_p8 (poly8x16_t)
    Form of expected instruction(s): vrev64.8 q0, q0
  • uint16x4_t vrev32_u16 (uint16x4_t)
    Form of expected instruction(s): vrev32.16 d0, d0
  • int16x4_t vrev32_s16 (int16x4_t)
    Form of expected instruction(s): vrev32.16 d0, d0
  • uint8x8_t vrev32_u8 (uint8x8_t)
    Form of expected instruction(s): vrev32.8 d0, d0
  • int8x8_t vrev32_s8 (int8x8_t)
    Form of expected instruction(s): vrev32.8 d0, d0
  • poly16x4_t vrev32_p16 (poly16x4_t)
    Form of expected instruction(s): vrev32.16 d0, d0
  • poly8x8_t vrev32_p8 (poly8x8_t)
    Form of expected instruction(s): vrev32.8 d0, d0
  • uint16x8_t vrev32q_u16 (uint16x8_t)
    Form of expected instruction(s): vrev32.16 q0, q0
  • int16x8_t vrev32q_s16 (int16x8_t)
    Form of expected instruction(s): vrev32.16 q0, q0
  • uint8x16_t vrev32q_u8 (uint8x16_t)
    Form of expected instruction(s): vrev32.8 q0, q0
  • int8x16_t vrev32q_s8 (int8x16_t)
    Form of expected instruction(s): vrev32.8 q0, q0
  • poly16x8_t vrev32q_p16 (poly16x8_t)
    Form of expected instruction(s): vrev32.16 q0, q0
  • poly8x16_t vrev32q_p8 (poly8x16_t)
    Form of expected instruction(s): vrev32.8 q0, q0
  • uint8x8_t vrev16_u8 (uint8x8_t)
    Form of expected instruction(s): vrev16.8 d0, d0
  • int8x8_t vrev16_s8 (int8x8_t)
    Form of expected instruction(s): vrev16.8 d0, d0
  • poly8x8_t vrev16_p8 (poly8x8_t)
    Form of expected instruction(s): vrev16.8 d0, d0
  • uint8x16_t vrev16q_u8 (uint8x16_t)
    Form of expected instruction(s): vrev16.8 q0, q0
  • int8x16_t vrev16q_s8 (int8x16_t)
    Form of expected instruction(s): vrev16.8 q0, q0
  • poly8x16_t vrev16q_p8 (poly8x16_t)
    Form of expected instruction(s): vrev16.8 q0, q0
6.51.3.64 Bit selection
  • uint32x2_t vbsl_u32 (uint32x2_t, uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • uint16x4_t vbsl_u16 (uint16x4_t, uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • uint8x8_t vbsl_u8 (uint8x8_t, uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • int32x2_t vbsl_s32 (uint32x2_t, int32x2_t, int32x2_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • int16x4_t vbsl_s16 (uint16x4_t, int16x4_t, int16x4_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • int8x8_t vbsl_s8 (uint8x8_t, int8x8_t, int8x8_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • uint64x1_t vbsl_u64 (uint64x1_t, uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • int64x1_t vbsl_s64 (uint64x1_t, int64x1_t, int64x1_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • float32x2_t vbsl_f32 (uint32x2_t, float32x2_t, float32x2_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • poly16x4_t vbsl_p16 (uint16x4_t, poly16x4_t, poly16x4_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • poly8x8_t vbsl_p8 (uint8x8_t, poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vbsl d0, d0, d0 or vbit d0, d0, d0 or vbif d0, d0, d0
  • uint32x4_t vbslq_u32 (uint32x4_t, uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • uint16x8_t vbslq_u16 (uint16x8_t, uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • uint8x16_t vbslq_u8 (uint8x16_t, uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • int32x4_t vbslq_s32 (uint32x4_t, int32x4_t, int32x4_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • int16x8_t vbslq_s16 (uint16x8_t, int16x8_t, int16x8_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • int8x16_t vbslq_s8 (uint8x16_t, int8x16_t, int8x16_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • uint64x2_t vbslq_u64 (uint64x2_t, uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • int64x2_t vbslq_s64 (uint64x2_t, int64x2_t, int64x2_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • float32x4_t vbslq_f32 (uint32x4_t, float32x4_t, float32x4_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • poly16x8_t vbslq_p16 (uint16x8_t, poly16x8_t, poly16x8_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
  • poly8x16_t vbslq_p8 (uint8x16_t, poly8x16_t, poly8x16_t)
    Form of expected instruction(s): vbsl q0, q0, q0 or vbit q0, q0, q0 or vbif q0, q0, q0
6.51.3.65 Transpose elements
  • uint32x2x2_t vtrn_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vtrn.32 d0, d1
  • uint16x4x2_t vtrn_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vtrn.16 d0, d1
  • uint8x8x2_t vtrn_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vtrn.8 d0, d1
  • int32x2x2_t vtrn_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vtrn.32 d0, d1
  • int16x4x2_t vtrn_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vtrn.16 d0, d1
  • int8x8x2_t vtrn_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vtrn.8 d0, d1
  • float32x2x2_t vtrn_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vtrn.32 d0, d1
  • poly16x4x2_t vtrn_p16 (poly16x4_t, poly16x4_t)
    Form of expected instruction(s): vtrn.16 d0, d1
  • poly8x8x2_t vtrn_p8 (poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vtrn.8 d0, d1
  • uint32x4x2_t vtrnq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vtrn.32 q0, q1
  • uint16x8x2_t vtrnq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vtrn.16 q0, q1
  • uint8x16x2_t vtrnq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vtrn.8 q0, q1
  • int32x4x2_t vtrnq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vtrn.32 q0, q1
  • int16x8x2_t vtrnq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vtrn.16 q0, q1
  • int8x16x2_t vtrnq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vtrn.8 q0, q1
  • float32x4x2_t vtrnq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vtrn.32 q0, q1
  • poly16x8x2_t vtrnq_p16 (poly16x8_t, poly16x8_t)
    Form of expected instruction(s): vtrn.16 q0, q1
  • poly8x16x2_t vtrnq_p8 (poly8x16_t, poly8x16_t)
    Form of expected instruction(s): vtrn.8 q0, q1
6.51.3.66 Zip elements
  • uint32x2x2_t vzip_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vzip.32 d0, d1
  • uint16x4x2_t vzip_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vzip.16 d0, d1
  • uint8x8x2_t vzip_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vzip.8 d0, d1
  • int32x2x2_t vzip_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vzip.32 d0, d1
  • int16x4x2_t vzip_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vzip.16 d0, d1
  • int8x8x2_t vzip_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vzip.8 d0, d1
  • float32x2x2_t vzip_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vzip.32 d0, d1
  • poly16x4x2_t vzip_p16 (poly16x4_t, poly16x4_t)
    Form of expected instruction(s): vzip.16 d0, d1
  • poly8x8x2_t vzip_p8 (poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vzip.8 d0, d1
  • uint32x4x2_t vzipq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vzip.32 q0, q1
  • uint16x8x2_t vzipq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vzip.16 q0, q1
  • uint8x16x2_t vzipq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vzip.8 q0, q1
  • int32x4x2_t vzipq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vzip.32 q0, q1
  • int16x8x2_t vzipq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vzip.16 q0, q1
  • int8x16x2_t vzipq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vzip.8 q0, q1
  • float32x4x2_t vzipq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vzip.32 q0, q1
  • poly16x8x2_t vzipq_p16 (poly16x8_t, poly16x8_t)
    Form of expected instruction(s): vzip.16 q0, q1
  • poly8x16x2_t vzipq_p8 (poly8x16_t, poly8x16_t)
    Form of expected instruction(s): vzip.8 q0, q1
6.51.3.67 Unzip elements
  • uint32x2x2_t vuzp_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vuzp.32 d0, d1
  • uint16x4x2_t vuzp_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vuzp.16 d0, d1
  • uint8x8x2_t vuzp_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vuzp.8 d0, d1
  • int32x2x2_t vuzp_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vuzp.32 d0, d1
  • int16x4x2_t vuzp_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vuzp.16 d0, d1
  • int8x8x2_t vuzp_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vuzp.8 d0, d1
  • float32x2x2_t vuzp_f32 (float32x2_t, float32x2_t)
    Form of expected instruction(s): vuzp.32 d0, d1
  • poly16x4x2_t vuzp_p16 (poly16x4_t, poly16x4_t)
    Form of expected instruction(s): vuzp.16 d0, d1
  • poly8x8x2_t vuzp_p8 (poly8x8_t, poly8x8_t)
    Form of expected instruction(s): vuzp.8 d0, d1
  • uint32x4x2_t vuzpq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vuzp.32 q0, q1
  • uint16x8x2_t vuzpq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vuzp.16 q0, q1
  • uint8x16x2_t vuzpq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vuzp.8 q0, q1
  • int32x4x2_t vuzpq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vuzp.32 q0, q1
  • int16x8x2_t vuzpq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vuzp.16 q0, q1
  • int8x16x2_t vuzpq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vuzp.8 q0, q1
  • float32x4x2_t vuzpq_f32 (float32x4_t, float32x4_t)
    Form of expected instruction(s): vuzp.32 q0, q1
  • poly16x8x2_t vuzpq_p16 (poly16x8_t, poly16x8_t)
    Form of expected instruction(s): vuzp.16 q0, q1
  • poly8x16x2_t vuzpq_p8 (poly8x16_t, poly8x16_t)
    Form of expected instruction(s): vuzp.8 q0, q1
6.51.3.68 Element/structure loads, VLD1 variants
  • uint32x2_t vld1_u32 (const uint32_t *)
    Form of expected instruction(s): vld1.32 {d0}, [r0]
  • uint16x4_t vld1_u16 (const uint16_t *)
    Form of expected instruction(s): vld1.16 {d0}, [r0]
  • uint8x8_t vld1_u8 (const uint8_t *)
    Form of expected instruction(s): vld1.8 {d0}, [r0]
  • int32x2_t vld1_s32 (const int32_t *)
    Form of expected instruction(s): vld1.32 {d0}, [r0]
  • int16x4_t vld1_s16 (const int16_t *)
    Form of expected instruction(s): vld1.16 {d0}, [r0]
  • int8x8_t vld1_s8 (const int8_t *)
    Form of expected instruction(s): vld1.8 {d0}, [r0]
  • uint64x1_t vld1_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • int64x1_t vld1_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • float32x2_t vld1_f32 (const float32_t *)
    Form of expected instruction(s): vld1.32 {d0}, [r0]
  • poly16x4_t vld1_p16 (const poly16_t *)
    Form of expected instruction(s): vld1.16 {d0}, [r0]
  • poly8x8_t vld1_p8 (const poly8_t *)
    Form of expected instruction(s): vld1.8 {d0}, [r0]
  • uint32x4_t vld1q_u32 (const uint32_t *)
    Form of expected instruction(s): vld1.32 {d0, d1}, [r0]
  • uint16x8_t vld1q_u16 (const uint16_t *)
    Form of expected instruction(s): vld1.16 {d0, d1}, [r0]
  • uint8x16_t vld1q_u8 (const uint8_t *)
    Form of expected instruction(s): vld1.8 {d0, d1}, [r0]
  • int32x4_t vld1q_s32 (const int32_t *)
    Form of expected instruction(s): vld1.32 {d0, d1}, [r0]
  • int16x8_t vld1q_s16 (const int16_t *)
    Form of expected instruction(s): vld1.16 {d0, d1}, [r0]
  • int8x16_t vld1q_s8 (const int8_t *)
    Form of expected instruction(s): vld1.8 {d0, d1}, [r0]
  • uint64x2_t vld1q_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
  • int64x2_t vld1q_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
  • float32x4_t vld1q_f32 (const float32_t *)
    Form of expected instruction(s): vld1.32 {d0, d1}, [r0]
  • poly16x8_t vld1q_p16 (const poly16_t *)
    Form of expected instruction(s): vld1.16 {d0, d1}, [r0]
  • poly8x16_t vld1q_p8 (const poly8_t *)
    Form of expected instruction(s): vld1.8 {d0, d1}, [r0]
  • uint32x2_t vld1_lane_u32 (const uint32_t *, uint32x2_t, const int)
    Form of expected instruction(s): vld1.32 {d0[0]}, [r0]
  • uint16x4_t vld1_lane_u16 (const uint16_t *, uint16x4_t, const int)
    Form of expected instruction(s): vld1.16 {d0[0]}, [r0]
  • uint8x8_t vld1_lane_u8 (const uint8_t *, uint8x8_t, const int)
    Form of expected instruction(s): vld1.8 {d0[0]}, [r0]
  • int32x2_t vld1_lane_s32 (const int32_t *, int32x2_t, const int)
    Form of expected instruction(s): vld1.32 {d0[0]}, [r0]
  • int16x4_t vld1_lane_s16 (const int16_t *, int16x4_t, const int)
    Form of expected instruction(s): vld1.16 {d0[0]}, [r0]
  • int8x8_t vld1_lane_s8 (const int8_t *, int8x8_t, const int)
    Form of expected instruction(s): vld1.8 {d0[0]}, [r0]
  • float32x2_t vld1_lane_f32 (const float32_t *, float32x2_t, const int)
    Form of expected instruction(s): vld1.32 {d0[0]}, [r0]
  • poly16x4_t vld1_lane_p16 (const poly16_t *, poly16x4_t, const int)
    Form of expected instruction(s): vld1.16 {d0[0]}, [r0]
  • poly8x8_t vld1_lane_p8 (const poly8_t *, poly8x8_t, const int)
    Form of expected instruction(s): vld1.8 {d0[0]}, [r0]
  • uint64x1_t vld1_lane_u64 (const uint64_t *, uint64x1_t, const int)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • int64x1_t vld1_lane_s64 (const int64_t *, int64x1_t, const int)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • uint32x4_t vld1q_lane_u32 (const uint32_t *, uint32x4_t, const int)
    Form of expected instruction(s): vld1.32 {d0[0]}, [r0]
  • uint16x8_t vld1q_lane_u16 (const uint16_t *, uint16x8_t, const int)
    Form of expected instruction(s): vld1.16 {d0[0]}, [r0]
  • uint8x16_t vld1q_lane_u8 (const uint8_t *, uint8x16_t, const int)
    Form of expected instruction(s): vld1.8 {d0[0]}, [r0]
  • int32x4_t vld1q_lane_s32 (const int32_t *, int32x4_t, const int)
    Form of expected instruction(s): vld1.32 {d0[0]}, [r0]
  • int16x8_t vld1q_lane_s16 (const int16_t *, int16x8_t, const int)
    Form of expected instruction(s): vld1.16 {d0[0]}, [r0]
  • int8x16_t vld1q_lane_s8 (const int8_t *, int8x16_t, const int)
    Form of expected instruction(s): vld1.8 {d0[0]}, [r0]
  • float32x4_t vld1q_lane_f32 (const float32_t *, float32x4_t, const int)
    Form of expected instruction(s): vld1.32 {d0[0]}, [r0]
  • poly16x8_t vld1q_lane_p16 (const poly16_t *, poly16x8_t, const int)
    Form of expected instruction(s): vld1.16 {d0[0]}, [r0]
  • poly8x16_t vld1q_lane_p8 (const poly8_t *, poly8x16_t, const int)
    Form of expected instruction(s): vld1.8 {d0[0]}, [r0]
  • uint64x2_t vld1q_lane_u64 (const uint64_t *, uint64x2_t, const int)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • int64x2_t vld1q_lane_s64 (const int64_t *, int64x2_t, const int)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • uint32x2_t vld1_dup_u32 (const uint32_t *)
    Form of expected instruction(s): vld1.32 {d0[]}, [r0]
  • uint16x4_t vld1_dup_u16 (const uint16_t *)
    Form of expected instruction(s): vld1.16 {d0[]}, [r0]
  • uint8x8_t vld1_dup_u8 (const uint8_t *)
    Form of expected instruction(s): vld1.8 {d0[]}, [r0]
  • int32x2_t vld1_dup_s32 (const int32_t *)
    Form of expected instruction(s): vld1.32 {d0[]}, [r0]
  • int16x4_t vld1_dup_s16 (const int16_t *)
    Form of expected instruction(s): vld1.16 {d0[]}, [r0]
  • int8x8_t vld1_dup_s8 (const int8_t *)
    Form of expected instruction(s): vld1.8 {d0[]}, [r0]
  • float32x2_t vld1_dup_f32 (const float32_t *)
    Form of expected instruction(s): vld1.32 {d0[]}, [r0]
  • poly16x4_t vld1_dup_p16 (const poly16_t *)
    Form of expected instruction(s): vld1.16 {d0[]}, [r0]
  • poly8x8_t vld1_dup_p8 (const poly8_t *)
    Form of expected instruction(s): vld1.8 {d0[]}, [r0]
  • uint64x1_t vld1_dup_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • int64x1_t vld1_dup_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0}, [r0]
  • uint32x4_t vld1q_dup_u32 (const uint32_t *)
    Form of expected instruction(s): vld1.32 {d0[], d1[]}, [r0]
  • uint16x8_t vld1q_dup_u16 (const uint16_t *)
    Form of expected instruction(s): vld1.16 {d0[], d1[]}, [r0]
  • uint8x16_t vld1q_dup_u8 (const uint8_t *)
    Form of expected instruction(s): vld1.8 {d0[], d1[]}, [r0]
  • int32x4_t vld1q_dup_s32 (const int32_t *)
    Form of expected instruction(s): vld1.32 {d0[], d1[]}, [r0]
  • int16x8_t vld1q_dup_s16 (const int16_t *)
    Form of expected instruction(s): vld1.16 {d0[], d1[]}, [r0]
  • int8x16_t vld1q_dup_s8 (const int8_t *)
    Form of expected instruction(s): vld1.8 {d0[], d1[]}, [r0]
  • float32x4_t vld1q_dup_f32 (const float32_t *)
    Form of expected instruction(s): vld1.32 {d0[], d1[]}, [r0]
  • poly16x8_t vld1q_dup_p16 (const poly16_t *)
    Form of expected instruction(s): vld1.16 {d0[], d1[]}, [r0]
  • poly8x16_t vld1q_dup_p8 (const poly8_t *)
    Form of expected instruction(s): vld1.8 {d0[], d1[]}, [r0]
  • uint64x2_t vld1q_dup_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
  • int64x2_t vld1q_dup_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
6.51.3.69 Element/structure stores, VST1 variants
  • void vst1_u32 (uint32_t *, uint32x2_t)
    Form of expected instruction(s): vst1.32 {d0}, [r0]
  • void vst1_u16 (uint16_t *, uint16x4_t)
    Form of expected instruction(s): vst1.16 {d0}, [r0]
  • void vst1_u8 (uint8_t *, uint8x8_t)
    Form of expected instruction(s): vst1.8 {d0}, [r0]
  • void vst1_s32 (int32_t *, int32x2_t)
    Form of expected instruction(s): vst1.32 {d0}, [r0]
  • void vst1_s16 (int16_t *, int16x4_t)
    Form of expected instruction(s): vst1.16 {d0}, [r0]
  • void vst1_s8 (int8_t *, int8x8_t)
    Form of expected instruction(s): vst1.8 {d0}, [r0]
  • void vst1_u64 (uint64_t *, uint64x1_t)
    Form of expected instruction(s): vst1.64 {d0}, [r0]
  • void vst1_s64 (int64_t *, int64x1_t)
    Form of expected instruction(s): vst1.64 {d0}, [r0]
  • void vst1_f32 (float32_t *, float32x2_t)
    Form of expected instruction(s): vst1.32 {d0}, [r0]
  • void vst1_p16 (poly16_t *, poly16x4_t)
    Form of expected instruction(s): vst1.16 {d0}, [r0]
  • void vst1_p8 (poly8_t *, poly8x8_t)
    Form of expected instruction(s): vst1.8 {d0}, [r0]
  • void vst1q_u32 (uint32_t *, uint32x4_t)
    Form of expected instruction(s): vst1.32 {d0, d1}, [r0]
  • void vst1q_u16 (uint16_t *, uint16x8_t)
    Form of expected instruction(s): vst1.16 {d0, d1}, [r0]
  • void vst1q_u8 (uint8_t *, uint8x16_t)
    Form of expected instruction(s): vst1.8 {d0, d1}, [r0]
  • void vst1q_s32 (int32_t *, int32x4_t)
    Form of expected instruction(s): vst1.32 {d0, d1}, [r0]
  • void vst1q_s16 (int16_t *, int16x8_t)
    Form of expected instruction(s): vst1.16 {d0, d1}, [r0]
  • void vst1q_s8 (int8_t *, int8x16_t)
    Form of expected instruction(s): vst1.8 {d0, d1}, [r0]
  • void vst1q_u64 (uint64_t *, uint64x2_t)
    Form of expected instruction(s): vst1.64 {d0, d1}, [r0]
  • void vst1q_s64 (int64_t *, int64x2_t)
    Form of expected instruction(s): vst1.64 {d0, d1}, [r0]
  • void vst1q_f32 (float32_t *, float32x4_t)
    Form of expected instruction(s): vst1.32 {d0, d1}, [r0]
  • void vst1q_p16 (poly16_t *, poly16x8_t)
    Form of expected instruction(s): vst1.16 {d0, d1}, [r0]
  • void vst1q_p8 (poly8_t *, poly8x16_t)
    Form of expected instruction(s): vst1.8 {d0, d1}, [r0]
  • void vst1_lane_u32 (uint32_t *, uint32x2_t, const int)
    Form of expected instruction(s): vst1.32 {d0[0]}, [r0]
  • void vst1_lane_u16 (uint16_t *, uint16x4_t, const int)
    Form of expected instruction(s): vst1.16 {d0[0]}, [r0]
  • void vst1_lane_u8 (uint8_t *, uint8x8_t, const int)
    Form of expected instruction(s): vst1.8 {d0[0]}, [r0]
  • void vst1_lane_s32 (int32_t *, int32x2_t, const int)
    Form of expected instruction(s): vst1.32 {d0[0]}, [r0]
  • void vst1_lane_s16 (int16_t *, int16x4_t, const int)
    Form of expected instruction(s): vst1.16 {d0[0]}, [r0]
  • void vst1_lane_s8 (int8_t *, int8x8_t, const int)
    Form of expected instruction(s): vst1.8 {d0[0]}, [r0]
  • void vst1_lane_f32 (float32_t *, float32x2_t, const int)
    Form of expected instruction(s): vst1.32 {d0[0]}, [r0]
  • void vst1_lane_p16 (poly16_t *, poly16x4_t, const int)
    Form of expected instruction(s): vst1.16 {d0[0]}, [r0]
  • void vst1_lane_p8 (poly8_t *, poly8x8_t, const int)
    Form of expected instruction(s): vst1.8 {d0[0]}, [r0]
  • void vst1_lane_s64 (int64_t *, int64x1_t, const int)
    Form of expected instruction(s): vst1.64 {d0}, [r0]
  • void vst1_lane_u64 (uint64_t *, uint64x1_t, const int)
    Form of expected instruction(s): vst1.64 {d0}, [r0]
  • void vst1q_lane_u32 (uint32_t *, uint32x4_t, const int)
    Form of expected instruction(s): vst1.32 {d0[0]}, [r0]
  • void vst1q_lane_u16 (uint16_t *, uint16x8_t, const int)
    Form of expected instruction(s): vst1.16 {d0[0]}, [r0]
  • void vst1q_lane_u8 (uint8_t *, uint8x16_t, const int)
    Form of expected instruction(s): vst1.8 {d0[0]}, [r0]
  • void vst1q_lane_s32 (int32_t *, int32x4_t, const int)
    Form of expected instruction(s): vst1.32 {d0[0]}, [r0]
  • void vst1q_lane_s16 (int16_t *, int16x8_t, const int)
    Form of expected instruction(s): vst1.16 {d0[0]}, [r0]
  • void vst1q_lane_s8 (int8_t *, int8x16_t, const int)
    Form of expected instruction(s): vst1.8 {d0[0]}, [r0]
  • void vst1q_lane_f32 (float32_t *, float32x4_t, const int)
    Form of expected instruction(s): vst1.32 {d0[0]}, [r0]
  • void vst1q_lane_p16 (poly16_t *, poly16x8_t, const int)
    Form of expected instruction(s): vst1.16 {d0[0]}, [r0]
  • void vst1q_lane_p8 (poly8_t *, poly8x16_t, const int)
    Form of expected instruction(s): vst1.8 {d0[0]}, [r0]
  • void vst1q_lane_s64 (int64_t *, int64x2_t, const int)
    Form of expected instruction(s): vst1.64 {d0}, [r0]
  • void vst1q_lane_u64 (uint64_t *, uint64x2_t, const int)
    Form of expected instruction(s): vst1.64 {d0}, [r0]
6.51.3.70 Element/structure loads, VLD2 variants
  • uint32x2x2_t vld2_u32 (const uint32_t *)
    Form of expected instruction(s): vld2.32 {d0, d1}, [r0]
  • uint16x4x2_t vld2_u16 (const uint16_t *)
    Form of expected instruction(s): vld2.16 {d0, d1}, [r0]
  • uint8x8x2_t vld2_u8 (const uint8_t *)
    Form of expected instruction(s): vld2.8 {d0, d1}, [r0]
  • int32x2x2_t vld2_s32 (const int32_t *)
    Form of expected instruction(s): vld2.32 {d0, d1}, [r0]
  • int16x4x2_t vld2_s16 (const int16_t *)
    Form of expected instruction(s): vld2.16 {d0, d1}, [r0]
  • int8x8x2_t vld2_s8 (const int8_t *)
    Form of expected instruction(s): vld2.8 {d0, d1}, [r0]
  • float32x2x2_t vld2_f32 (const float32_t *)
    Form of expected instruction(s): vld2.32 {d0, d1}, [r0]
  • poly16x4x2_t vld2_p16 (const poly16_t *)
    Form of expected instruction(s): vld2.16 {d0, d1}, [r0]
  • poly8x8x2_t vld2_p8 (const poly8_t *)
    Form of expected instruction(s): vld2.8 {d0, d1}, [r0]
  • uint64x1x2_t vld2_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
  • int64x1x2_t vld2_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
  • uint32x4x2_t vld2q_u32 (const uint32_t *)
    Form of expected instruction(s): vld2.32 {d0, d1}, [r0]
  • uint16x8x2_t vld2q_u16 (const uint16_t *)
    Form of expected instruction(s): vld2.16 {d0, d1}, [r0]
  • uint8x16x2_t vld2q_u8 (const uint8_t *)
    Form of expected instruction(s): vld2.8 {d0, d1}, [r0]
  • int32x4x2_t vld2q_s32 (const int32_t *)
    Form of expected instruction(s): vld2.32 {d0, d1}, [r0]
  • int16x8x2_t vld2q_s16 (const int16_t *)
    Form of expected instruction(s): vld2.16 {d0, d1}, [r0]
  • int8x16x2_t vld2q_s8 (const int8_t *)
    Form of expected instruction(s): vld2.8 {d0, d1}, [r0]
  • float32x4x2_t vld2q_f32 (const float32_t *)
    Form of expected instruction(s): vld2.32 {d0, d1}, [r0]
  • poly16x8x2_t vld2q_p16 (const poly16_t *)
    Form of expected instruction(s): vld2.16 {d0, d1}, [r0]
  • poly8x16x2_t vld2q_p8 (const poly8_t *)
    Form of expected instruction(s): vld2.8 {d0, d1}, [r0]
  • uint32x2x2_t vld2_lane_u32 (const uint32_t *, uint32x2x2_t, const int)
    Form of expected instruction(s): vld2.32 {d0[0], d1[0]}, [r0]
  • uint16x4x2_t vld2_lane_u16 (const uint16_t *, uint16x4x2_t, const int)
    Form of expected instruction(s): vld2.16 {d0[0], d1[0]}, [r0]
  • uint8x8x2_t vld2_lane_u8 (const uint8_t *, uint8x8x2_t, const int)
    Form of expected instruction(s): vld2.8 {d0[0], d1[0]}, [r0]
  • int32x2x2_t vld2_lane_s32 (const int32_t *, int32x2x2_t, const int)
    Form of expected instruction(s): vld2.32 {d0[0], d1[0]}, [r0]
  • int16x4x2_t vld2_lane_s16 (const int16_t *, int16x4x2_t, const int)
    Form of expected instruction(s): vld2.16 {d0[0], d1[0]}, [r0]
  • int8x8x2_t vld2_lane_s8 (const int8_t *, int8x8x2_t, const int)
    Form of expected instruction(s): vld2.8 {d0[0], d1[0]}, [r0]
  • float32x2x2_t vld2_lane_f32 (const float32_t *, float32x2x2_t, const int)
    Form of expected instruction(s): vld2.32 {d0[0], d1[0]}, [r0]
  • poly16x4x2_t vld2_lane_p16 (const poly16_t *, poly16x4x2_t, const int)
    Form of expected instruction(s): vld2.16 {d0[0], d1[0]}, [r0]
  • poly8x8x2_t vld2_lane_p8 (const poly8_t *, poly8x8x2_t, const int)
    Form of expected instruction(s): vld2.8 {d0[0], d1[0]}, [r0]
  • int32x4x2_t vld2q_lane_s32 (const int32_t *, int32x4x2_t, const int)
    Form of expected instruction(s): vld2.32 {d0[0], d1[0]}, [r0]
  • int16x8x2_t vld2q_lane_s16 (const int16_t *, int16x8x2_t, const int)
    Form of expected instruction(s): vld2.16 {d0[0], d1[0]}, [r0]
  • uint32x4x2_t vld2q_lane_u32 (const uint32_t *, uint32x4x2_t, const int)
    Form of expected instruction(s): vld2.32 {d0[0], d1[0]}, [r0]
  • uint16x8x2_t vld2q_lane_u16 (const uint16_t *, uint16x8x2_t, const int)
    Form of expected instruction(s): vld2.16 {d0[0], d1[0]}, [r0]
  • float32x4x2_t vld2q_lane_f32 (const float32_t *, float32x4x2_t, const int)
    Form of expected instruction(s): vld2.32 {d0[0], d1[0]}, [r0]
  • poly16x8x2_t vld2q_lane_p16 (const poly16_t *, poly16x8x2_t, const int)
    Form of expected instruction(s): vld2.16 {d0[0], d1[0]}, [r0]
  • uint32x2x2_t vld2_dup_u32 (const uint32_t *)
    Form of expected instruction(s): vld2.32 {d0[], d1[]}, [r0]
  • uint16x4x2_t vld2_dup_u16 (const uint16_t *)
    Form of expected instruction(s): vld2.16 {d0[], d1[]}, [r0]
  • uint8x8x2_t vld2_dup_u8 (const uint8_t *)
    Form of expected instruction(s): vld2.8 {d0[], d1[]}, [r0]
  • int32x2x2_t vld2_dup_s32 (const int32_t *)
    Form of expected instruction(s): vld2.32 {d0[], d1[]}, [r0]
  • int16x4x2_t vld2_dup_s16 (const int16_t *)
    Form of expected instruction(s): vld2.16 {d0[], d1[]}, [r0]
  • int8x8x2_t vld2_dup_s8 (const int8_t *)
    Form of expected instruction(s): vld2.8 {d0[], d1[]}, [r0]
  • float32x2x2_t vld2_dup_f32 (const float32_t *)
    Form of expected instruction(s): vld2.32 {d0[], d1[]}, [r0]
  • poly16x4x2_t vld2_dup_p16 (const poly16_t *)
    Form of expected instruction(s): vld2.16 {d0[], d1[]}, [r0]
  • poly8x8x2_t vld2_dup_p8 (const poly8_t *)
    Form of expected instruction(s): vld2.8 {d0[], d1[]}, [r0]
  • uint64x1x2_t vld2_dup_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
  • int64x1x2_t vld2_dup_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1}, [r0]
6.51.3.71 Element/structure stores, VST2 variants
  • void vst2_u32 (uint32_t *, uint32x2x2_t)
    Form of expected instruction(s): vst2.32 {d0, d1}, [r0]
  • void vst2_u16 (uint16_t *, uint16x4x2_t)
    Form of expected instruction(s): vst2.16 {d0, d1}, [r0]
  • void vst2_u8 (uint8_t *, uint8x8x2_t)
    Form of expected instruction(s): vst2.8 {d0, d1}, [r0]
  • void vst2_s32 (int32_t *, int32x2x2_t)
    Form of expected instruction(s): vst2.32 {d0, d1}, [r0]
  • void vst2_s16 (int16_t *, int16x4x2_t)
    Form of expected instruction(s): vst2.16 {d0, d1}, [r0]
  • void vst2_s8 (int8_t *, int8x8x2_t)
    Form of expected instruction(s): vst2.8 {d0, d1}, [r0]
  • void vst2_f32 (float32_t *, float32x2x2_t)
    Form of expected instruction(s): vst2.32 {d0, d1}, [r0]
  • void vst2_p16 (poly16_t *, poly16x4x2_t)
    Form of expected instruction(s): vst2.16 {d0, d1}, [r0]
  • void vst2_p8 (poly8_t *, poly8x8x2_t)
    Form of expected instruction(s): vst2.8 {d0, d1}, [r0]
  • void vst2_u64 (uint64_t *, uint64x1x2_t)
    Form of expected instruction(s): vst1.64 {d0, d1}, [r0]
  • void vst2_s64 (int64_t *, int64x1x2_t)
    Form of expected instruction(s): vst1.64 {d0, d1}, [r0]
  • void vst2q_u32 (uint32_t *, uint32x4x2_t)
    Form of expected instruction(s): vst2.32 {d0, d1}, [r0]
  • void vst2q_u16 (uint16_t *, uint16x8x2_t)
    Form of expected instruction(s): vst2.16 {d0, d1}, [r0]
  • void vst2q_u8 (uint8_t *, uint8x16x2_t)
    Form of expected instruction(s): vst2.8 {d0, d1}, [r0]
  • void vst2q_s32 (int32_t *, int32x4x2_t)
    Form of expected instruction(s): vst2.32 {d0, d1}, [r0]
  • void vst2q_s16 (int16_t *, int16x8x2_t)
    Form of expected instruction(s): vst2.16 {d0, d1}, [r0]
  • void vst2q_s8 (int8_t *, int8x16x2_t)
    Form of expected instruction(s): vst2.8 {d0, d1}, [r0]
  • void vst2q_f32 (float32_t *, float32x4x2_t)
    Form of expected instruction(s): vst2.32 {d0, d1}, [r0]
  • void vst2q_p16 (poly16_t *, poly16x8x2_t)
    Form of expected instruction(s): vst2.16 {d0, d1}, [r0]
  • void vst2q_p8 (poly8_t *, poly8x16x2_t)
    Form of expected instruction(s): vst2.8 {d0, d1}, [r0]
  • void vst2_lane_u32 (uint32_t *, uint32x2x2_t, const int)
    Form of expected instruction(s): vst2.32 {d0[0], d1[0]}, [r0]
  • void vst2_lane_u16 (uint16_t *, uint16x4x2_t, const int)
    Form of expected instruction(s): vst2.16 {d0[0], d1[0]}, [r0]
  • void vst2_lane_u8 (uint8_t *, uint8x8x2_t, const int)
    Form of expected instruction(s): vst2.8 {d0[0], d1[0]}, [r0]
  • void vst2_lane_s32 (int32_t *, int32x2x2_t, const int)
    Form of expected instruction(s): vst2.32 {d0[0], d1[0]}, [r0]
  • void vst2_lane_s16 (int16_t *, int16x4x2_t, const int)
    Form of expected instruction(s): vst2.16 {d0[0], d1[0]}, [r0]
  • void vst2_lane_s8 (int8_t *, int8x8x2_t, const int)
    Form of expected instruction(s): vst2.8 {d0[0], d1[0]}, [r0]
  • void vst2_lane_f32 (float32_t *, float32x2x2_t, const int)
    Form of expected instruction(s): vst2.32 {d0[0], d1[0]}, [r0]
  • void vst2_lane_p16 (poly16_t *, poly16x4x2_t, const int)
    Form of expected instruction(s): vst2.16 {d0[0], d1[0]}, [r0]
  • void vst2_lane_p8 (poly8_t *, poly8x8x2_t, const int)
    Form of expected instruction(s): vst2.8 {d0[0], d1[0]}, [r0]
  • void vst2q_lane_s32 (int32_t *, int32x4x2_t, const int)
    Form of expected instruction(s): vst2.32 {d0[0], d1[0]}, [r0]
  • void vst2q_lane_s16 (int16_t *, int16x8x2_t, const int)
    Form of expected instruction(s): vst2.16 {d0[0], d1[0]}, [r0]
  • void vst2q_lane_u32 (uint32_t *, uint32x4x2_t, const int)
    Form of expected instruction(s): vst2.32 {d0[0], d1[0]}, [r0]
  • void vst2q_lane_u16 (uint16_t *, uint16x8x2_t, const int)
    Form of expected instruction(s): vst2.16 {d0[0], d1[0]}, [r0]
  • void vst2q_lane_f32 (float32_t *, float32x4x2_t, const int)
    Form of expected instruction(s): vst2.32 {d0[0], d1[0]}, [r0]
  • void vst2q_lane_p16 (poly16_t *, poly16x8x2_t, const int)
    Form of expected instruction(s): vst2.16 {d0[0], d1[0]}, [r0]
6.51.3.72 Element/structure loads, VLD3 variants
  • uint32x2x3_t vld3_u32 (const uint32_t *)
    Form of expected instruction(s): vld3.32 {d0, d1, d2}, [r0]
  • uint16x4x3_t vld3_u16 (const uint16_t *)
    Form of expected instruction(s): vld3.16 {d0, d1, d2}, [r0]
  • uint8x8x3_t vld3_u8 (const uint8_t *)
    Form of expected instruction(s): vld3.8 {d0, d1, d2}, [r0]
  • int32x2x3_t vld3_s32 (const int32_t *)
    Form of expected instruction(s): vld3.32 {d0, d1, d2}, [r0]
  • int16x4x3_t vld3_s16 (const int16_t *)
    Form of expected instruction(s): vld3.16 {d0, d1, d2}, [r0]
  • int8x8x3_t vld3_s8 (const int8_t *)
    Form of expected instruction(s): vld3.8 {d0, d1, d2}, [r0]
  • float32x2x3_t vld3_f32 (const float32_t *)
    Form of expected instruction(s): vld3.32 {d0, d1, d2}, [r0]
  • poly16x4x3_t vld3_p16 (const poly16_t *)
    Form of expected instruction(s): vld3.16 {d0, d1, d2}, [r0]
  • poly8x8x3_t vld3_p8 (const poly8_t *)
    Form of expected instruction(s): vld3.8 {d0, d1, d2}, [r0]
  • uint64x1x3_t vld3_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2}, [r0]
  • int64x1x3_t vld3_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2}, [r0]
  • uint32x4x3_t vld3q_u32 (const uint32_t *)
    Form of expected instruction(s): vld3.32 {d0, d1, d2}, [r0]
  • uint16x8x3_t vld3q_u16 (const uint16_t *)
    Form of expected instruction(s): vld3.16 {d0, d1, d2}, [r0]
  • uint8x16x3_t vld3q_u8 (const uint8_t *)
    Form of expected instruction(s): vld3.8 {d0, d1, d2}, [r0]
  • int32x4x3_t vld3q_s32 (const int32_t *)
    Form of expected instruction(s): vld3.32 {d0, d1, d2}, [r0]
  • int16x8x3_t vld3q_s16 (const int16_t *)
    Form of expected instruction(s): vld3.16 {d0, d1, d2}, [r0]
  • int8x16x3_t vld3q_s8 (const int8_t *)
    Form of expected instruction(s): vld3.8 {d0, d1, d2}, [r0]
  • float32x4x3_t vld3q_f32 (const float32_t *)
    Form of expected instruction(s): vld3.32 {d0, d1, d2}, [r0]
  • poly16x8x3_t vld3q_p16 (const poly16_t *)
    Form of expected instruction(s): vld3.16 {d0, d1, d2}, [r0]
  • poly8x16x3_t vld3q_p8 (const poly8_t *)
    Form of expected instruction(s): vld3.8 {d0, d1, d2}, [r0]
  • uint32x2x3_t vld3_lane_u32 (const uint32_t *, uint32x2x3_t, const int)
    Form of expected instruction(s): vld3.32 {d0[0], d1[0], d2[0]}, [r0]
  • uint16x4x3_t vld3_lane_u16 (const uint16_t *, uint16x4x3_t, const int)
    Form of expected instruction(s): vld3.16 {d0[0], d1[0], d2[0]}, [r0]
  • uint8x8x3_t vld3_lane_u8 (const uint8_t *, uint8x8x3_t, const int)
    Form of expected instruction(s): vld3.8 {d0[0], d1[0], d2[0]}, [r0]
  • int32x2x3_t vld3_lane_s32 (const int32_t *, int32x2x3_t, const int)
    Form of expected instruction(s): vld3.32 {d0[0], d1[0], d2[0]}, [r0]
  • int16x4x3_t vld3_lane_s16 (const int16_t *, int16x4x3_t, const int)
    Form of expected instruction(s): vld3.16 {d0[0], d1[0], d2[0]}, [r0]
  • int8x8x3_t vld3_lane_s8 (const int8_t *, int8x8x3_t, const int)
    Form of expected instruction(s): vld3.8 {d0[0], d1[0], d2[0]}, [r0]
  • float32x2x3_t vld3_lane_f32 (const float32_t *, float32x2x3_t, const int)
    Form of expected instruction(s): vld3.32 {d0[0], d1[0], d2[0]}, [r0]
  • poly16x4x3_t vld3_lane_p16 (const poly16_t *, poly16x4x3_t, const int)
    Form of expected instruction(s): vld3.16 {d0[0], d1[0], d2[0]}, [r0]
  • poly8x8x3_t vld3_lane_p8 (const poly8_t *, poly8x8x3_t, const int)
    Form of expected instruction(s): vld3.8 {d0[0], d1[0], d2[0]}, [r0]
  • int32x4x3_t vld3q_lane_s32 (const int32_t *, int32x4x3_t, const int)
    Form of expected instruction(s): vld3.32 {d0[0], d1[0], d2[0]}, [r0]
  • int16x8x3_t vld3q_lane_s16 (const int16_t *, int16x8x3_t, const int)
    Form of expected instruction(s): vld3.16 {d0[0], d1[0], d2[0]}, [r0]
  • uint32x4x3_t vld3q_lane_u32 (const uint32_t *, uint32x4x3_t, const int)
    Form of expected instruction(s): vld3.32 {d0[0], d1[0], d2[0]}, [r0]
  • uint16x8x3_t vld3q_lane_u16 (const uint16_t *, uint16x8x3_t, const int)
    Form of expected instruction(s): vld3.16 {d0[0], d1[0], d2[0]}, [r0]
  • float32x4x3_t vld3q_lane_f32 (const float32_t *, float32x4x3_t, const int)
    Form of expected instruction(s): vld3.32 {d0[0], d1[0], d2[0]}, [r0]
  • poly16x8x3_t vld3q_lane_p16 (const poly16_t *, poly16x8x3_t, const int)
    Form of expected instruction(s): vld3.16 {d0[0], d1[0], d2[0]}, [r0]
  • uint32x2x3_t vld3_dup_u32 (const uint32_t *)
    Form of expected instruction(s): vld3.32 {d0[], d1[], d2[]}, [r0]
  • uint16x4x3_t vld3_dup_u16 (const uint16_t *)
    Form of expected instruction(s): vld3.16 {d0[], d1[], d2[]}, [r0]
  • uint8x8x3_t vld3_dup_u8 (const uint8_t *)
    Form of expected instruction(s): vld3.8 {d0[], d1[], d2[]}, [r0]
  • int32x2x3_t vld3_dup_s32 (const int32_t *)
    Form of expected instruction(s): vld3.32 {d0[], d1[], d2[]}, [r0]
  • int16x4x3_t vld3_dup_s16 (const int16_t *)
    Form of expected instruction(s): vld3.16 {d0[], d1[], d2[]}, [r0]
  • int8x8x3_t vld3_dup_s8 (const int8_t *)
    Form of expected instruction(s): vld3.8 {d0[], d1[], d2[]}, [r0]
  • float32x2x3_t vld3_dup_f32 (const float32_t *)
    Form of expected instruction(s): vld3.32 {d0[], d1[], d2[]}, [r0]
  • poly16x4x3_t vld3_dup_p16 (const poly16_t *)
    Form of expected instruction(s): vld3.16 {d0[], d1[], d2[]}, [r0]
  • poly8x8x3_t vld3_dup_p8 (const poly8_t *)
    Form of expected instruction(s): vld3.8 {d0[], d1[], d2[]}, [r0]
  • uint64x1x3_t vld3_dup_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2}, [r0]
  • int64x1x3_t vld3_dup_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2}, [r0]
6.51.3.73 Element/structure stores, VST3 variants
  • void vst3_u32 (uint32_t *, uint32x2x3_t)
    Form of expected instruction(s): vst3.32 {d0, d1, d2, d3}, [r0]
  • void vst3_u16 (uint16_t *, uint16x4x3_t)
    Form of expected instruction(s): vst3.16 {d0, d1, d2, d3}, [r0]
  • void vst3_u8 (uint8_t *, uint8x8x3_t)
    Form of expected instruction(s): vst3.8 {d0, d1, d2, d3}, [r0]
  • void vst3_s32 (int32_t *, int32x2x3_t)
    Form of expected instruction(s): vst3.32 {d0, d1, d2, d3}, [r0]
  • void vst3_s16 (int16_t *, int16x4x3_t)
    Form of expected instruction(s): vst3.16 {d0, d1, d2, d3}, [r0]
  • void vst3_s8 (int8_t *, int8x8x3_t)
    Form of expected instruction(s): vst3.8 {d0, d1, d2, d3}, [r0]
  • void vst3_f32 (float32_t *, float32x2x3_t)
    Form of expected instruction(s): vst3.32 {d0, d1, d2, d3}, [r0]
  • void vst3_p16 (poly16_t *, poly16x4x3_t)
    Form of expected instruction(s): vst3.16 {d0, d1, d2, d3}, [r0]
  • void vst3_p8 (poly8_t *, poly8x8x3_t)
    Form of expected instruction(s): vst3.8 {d0, d1, d2, d3}, [r0]
  • void vst3_u64 (uint64_t *, uint64x1x3_t)
    Form of expected instruction(s): vst1.64 {d0, d1, d2, d3}, [r0]
  • void vst3_s64 (int64_t *, int64x1x3_t)
    Form of expected instruction(s): vst1.64 {d0, d1, d2, d3}, [r0]
  • void vst3q_u32 (uint32_t *, uint32x4x3_t)
    Form of expected instruction(s): vst3.32 {d0, d1, d2}, [r0]
  • void vst3q_u16 (uint16_t *, uint16x8x3_t)
    Form of expected instruction(s): vst3.16 {d0, d1, d2}, [r0]
  • void vst3q_u8 (uint8_t *, uint8x16x3_t)
    Form of expected instruction(s): vst3.8 {d0, d1, d2}, [r0]
  • void vst3q_s32 (int32_t *, int32x4x3_t)
    Form of expected instruction(s): vst3.32 {d0, d1, d2}, [r0]
  • void vst3q_s16 (int16_t *, int16x8x3_t)
    Form of expected instruction(s): vst3.16 {d0, d1, d2}, [r0]
  • void vst3q_s8 (int8_t *, int8x16x3_t)
    Form of expected instruction(s): vst3.8 {d0, d1, d2}, [r0]
  • void vst3q_f32 (float32_t *, float32x4x3_t)
    Form of expected instruction(s): vst3.32 {d0, d1, d2}, [r0]
  • void vst3q_p16 (poly16_t *, poly16x8x3_t)
    Form of expected instruction(s): vst3.16 {d0, d1, d2}, [r0]
  • void vst3q_p8 (poly8_t *, poly8x16x3_t)
    Form of expected instruction(s): vst3.8 {d0, d1, d2}, [r0]
  • void vst3_lane_u32 (uint32_t *, uint32x2x3_t, const int)
    Form of expected instruction(s): vst3.32 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_u16 (uint16_t *, uint16x4x3_t, const int)
    Form of expected instruction(s): vst3.16 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_u8 (uint8_t *, uint8x8x3_t, const int)
    Form of expected instruction(s): vst3.8 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_s32 (int32_t *, int32x2x3_t, const int)
    Form of expected instruction(s): vst3.32 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_s16 (int16_t *, int16x4x3_t, const int)
    Form of expected instruction(s): vst3.16 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_s8 (int8_t *, int8x8x3_t, const int)
    Form of expected instruction(s): vst3.8 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_f32 (float32_t *, float32x2x3_t, const int)
    Form of expected instruction(s): vst3.32 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_p16 (poly16_t *, poly16x4x3_t, const int)
    Form of expected instruction(s): vst3.16 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3_lane_p8 (poly8_t *, poly8x8x3_t, const int)
    Form of expected instruction(s): vst3.8 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3q_lane_s32 (int32_t *, int32x4x3_t, const int)
    Form of expected instruction(s): vst3.32 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3q_lane_s16 (int16_t *, int16x8x3_t, const int)
    Form of expected instruction(s): vst3.16 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3q_lane_u32 (uint32_t *, uint32x4x3_t, const int)
    Form of expected instruction(s): vst3.32 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3q_lane_u16 (uint16_t *, uint16x8x3_t, const int)
    Form of expected instruction(s): vst3.16 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3q_lane_f32 (float32_t *, float32x4x3_t, const int)
    Form of expected instruction(s): vst3.32 {d0[0], d1[0], d2[0]}, [r0]
  • void vst3q_lane_p16 (poly16_t *, poly16x8x3_t, const int)
    Form of expected instruction(s): vst3.16 {d0[0], d1[0], d2[0]}, [r0]
6.51.3.74 Element/structure loads, VLD4 variants
  • uint32x2x4_t vld4_u32 (const uint32_t *)
    Form of expected instruction(s): vld4.32 {d0, d1, d2, d3}, [r0]
  • uint16x4x4_t vld4_u16 (const uint16_t *)
    Form of expected instruction(s): vld4.16 {d0, d1, d2, d3}, [r0]
  • uint8x8x4_t vld4_u8 (const uint8_t *)
    Form of expected instruction(s): vld4.8 {d0, d1, d2, d3}, [r0]
  • int32x2x4_t vld4_s32 (const int32_t *)
    Form of expected instruction(s): vld4.32 {d0, d1, d2, d3}, [r0]
  • int16x4x4_t vld4_s16 (const int16_t *)
    Form of expected instruction(s): vld4.16 {d0, d1, d2, d3}, [r0]
  • int8x8x4_t vld4_s8 (const int8_t *)
    Form of expected instruction(s): vld4.8 {d0, d1, d2, d3}, [r0]
  • float32x2x4_t vld4_f32 (const float32_t *)
    Form of expected instruction(s): vld4.32 {d0, d1, d2, d3}, [r0]
  • poly16x4x4_t vld4_p16 (const poly16_t *)
    Form of expected instruction(s): vld4.16 {d0, d1, d2, d3}, [r0]
  • poly8x8x4_t vld4_p8 (const poly8_t *)
    Form of expected instruction(s): vld4.8 {d0, d1, d2, d3}, [r0]
  • uint64x1x4_t vld4_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2, d3}, [r0]
  • int64x1x4_t vld4_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2, d3}, [r0]
  • uint32x4x4_t vld4q_u32 (const uint32_t *)
    Form of expected instruction(s): vld4.32 {d0, d1, d2, d3}, [r0]
  • uint16x8x4_t vld4q_u16 (const uint16_t *)
    Form of expected instruction(s): vld4.16 {d0, d1, d2, d3}, [r0]
  • uint8x16x4_t vld4q_u8 (const uint8_t *)
    Form of expected instruction(s): vld4.8 {d0, d1, d2, d3}, [r0]
  • int32x4x4_t vld4q_s32 (const int32_t *)
    Form of expected instruction(s): vld4.32 {d0, d1, d2, d3}, [r0]
  • int16x8x4_t vld4q_s16 (const int16_t *)
    Form of expected instruction(s): vld4.16 {d0, d1, d2, d3}, [r0]
  • int8x16x4_t vld4q_s8 (const int8_t *)
    Form of expected instruction(s): vld4.8 {d0, d1, d2, d3}, [r0]
  • float32x4x4_t vld4q_f32 (const float32_t *)
    Form of expected instruction(s): vld4.32 {d0, d1, d2, d3}, [r0]
  • poly16x8x4_t vld4q_p16 (const poly16_t *)
    Form of expected instruction(s): vld4.16 {d0, d1, d2, d3}, [r0]
  • poly8x16x4_t vld4q_p8 (const poly8_t *)
    Form of expected instruction(s): vld4.8 {d0, d1, d2, d3}, [r0]
  • uint32x2x4_t vld4_lane_u32 (const uint32_t *, uint32x2x4_t, const int)
    Form of expected instruction(s): vld4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • uint16x4x4_t vld4_lane_u16 (const uint16_t *, uint16x4x4_t, const int)
    Form of expected instruction(s): vld4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • uint8x8x4_t vld4_lane_u8 (const uint8_t *, uint8x8x4_t, const int)
    Form of expected instruction(s): vld4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • int32x2x4_t vld4_lane_s32 (const int32_t *, int32x2x4_t, const int)
    Form of expected instruction(s): vld4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • int16x4x4_t vld4_lane_s16 (const int16_t *, int16x4x4_t, const int)
    Form of expected instruction(s): vld4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • int8x8x4_t vld4_lane_s8 (const int8_t *, int8x8x4_t, const int)
    Form of expected instruction(s): vld4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • float32x2x4_t vld4_lane_f32 (const float32_t *, float32x2x4_t, const int)
    Form of expected instruction(s): vld4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • poly16x4x4_t vld4_lane_p16 (const poly16_t *, poly16x4x4_t, const int)
    Form of expected instruction(s): vld4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • poly8x8x4_t vld4_lane_p8 (const poly8_t *, poly8x8x4_t, const int)
    Form of expected instruction(s): vld4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • int32x4x4_t vld4q_lane_s32 (const int32_t *, int32x4x4_t, const int)
    Form of expected instruction(s): vld4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • int16x8x4_t vld4q_lane_s16 (const int16_t *, int16x8x4_t, const int)
    Form of expected instruction(s): vld4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • uint32x4x4_t vld4q_lane_u32 (const uint32_t *, uint32x4x4_t, const int)
    Form of expected instruction(s): vld4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • uint16x8x4_t vld4q_lane_u16 (const uint16_t *, uint16x8x4_t, const int)
    Form of expected instruction(s): vld4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • float32x4x4_t vld4q_lane_f32 (const float32_t *, float32x4x4_t, const int)
    Form of expected instruction(s): vld4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • poly16x8x4_t vld4q_lane_p16 (const poly16_t *, poly16x8x4_t, const int)
    Form of expected instruction(s): vld4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • uint32x2x4_t vld4_dup_u32 (const uint32_t *)
    Form of expected instruction(s): vld4.32 {d0[], d1[], d2[], d3[]}, [r0]
  • uint16x4x4_t vld4_dup_u16 (const uint16_t *)
    Form of expected instruction(s): vld4.16 {d0[], d1[], d2[], d3[]}, [r0]
  • uint8x8x4_t vld4_dup_u8 (const uint8_t *)
    Form of expected instruction(s): vld4.8 {d0[], d1[], d2[], d3[]}, [r0]
  • int32x2x4_t vld4_dup_s32 (const int32_t *)
    Form of expected instruction(s): vld4.32 {d0[], d1[], d2[], d3[]}, [r0]
  • int16x4x4_t vld4_dup_s16 (const int16_t *)
    Form of expected instruction(s): vld4.16 {d0[], d1[], d2[], d3[]}, [r0]
  • int8x8x4_t vld4_dup_s8 (const int8_t *)
    Form of expected instruction(s): vld4.8 {d0[], d1[], d2[], d3[]}, [r0]
  • float32x2x4_t vld4_dup_f32 (const float32_t *)
    Form of expected instruction(s): vld4.32 {d0[], d1[], d2[], d3[]}, [r0]
  • poly16x4x4_t vld4_dup_p16 (const poly16_t *)
    Form of expected instruction(s): vld4.16 {d0[], d1[], d2[], d3[]}, [r0]
  • poly8x8x4_t vld4_dup_p8 (const poly8_t *)
    Form of expected instruction(s): vld4.8 {d0[], d1[], d2[], d3[]}, [r0]
  • uint64x1x4_t vld4_dup_u64 (const uint64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2, d3}, [r0]
  • int64x1x4_t vld4_dup_s64 (const int64_t *)
    Form of expected instruction(s): vld1.64 {d0, d1, d2, d3}, [r0]
6.51.3.75 Element/structure stores, VST4 variants
  • void vst4_u32 (uint32_t *, uint32x2x4_t)
    Form of expected instruction(s): vst4.32 {d0, d1, d2, d3}, [r0]
  • void vst4_u16 (uint16_t *, uint16x4x4_t)
    Form of expected instruction(s): vst4.16 {d0, d1, d2, d3}, [r0]
  • void vst4_u8 (uint8_t *, uint8x8x4_t)
    Form of expected instruction(s): vst4.8 {d0, d1, d2, d3}, [r0]
  • void vst4_s32 (int32_t *, int32x2x4_t)
    Form of expected instruction(s): vst4.32 {d0, d1, d2, d3}, [r0]
  • void vst4_s16 (int16_t *, int16x4x4_t)
    Form of expected instruction(s): vst4.16 {d0, d1, d2, d3}, [r0]
  • void vst4_s8 (int8_t *, int8x8x4_t)
    Form of expected instruction(s): vst4.8 {d0, d1, d2, d3}, [r0]
  • void vst4_f32 (float32_t *, float32x2x4_t)
    Form of expected instruction(s): vst4.32 {d0, d1, d2, d3}, [r0]
  • void vst4_p16 (poly16_t *, poly16x4x4_t)
    Form of expected instruction(s): vst4.16 {d0, d1, d2, d3}, [r0]
  • void vst4_p8 (poly8_t *, poly8x8x4_t)
    Form of expected instruction(s): vst4.8 {d0, d1, d2, d3}, [r0]
  • void vst4_u64 (uint64_t *, uint64x1x4_t)
    Form of expected instruction(s): vst1.64 {d0, d1, d2, d3}, [r0]
  • void vst4_s64 (int64_t *, int64x1x4_t)
    Form of expected instruction(s): vst1.64 {d0, d1, d2, d3}, [r0]
  • void vst4q_u32 (uint32_t *, uint32x4x4_t)
    Form of expected instruction(s): vst4.32 {d0, d1, d2, d3}, [r0]
  • void vst4q_u16 (uint16_t *, uint16x8x4_t)
    Form of expected instruction(s): vst4.16 {d0, d1, d2, d3}, [r0]
  • void vst4q_u8 (uint8_t *, uint8x16x4_t)
    Form of expected instruction(s): vst4.8 {d0, d1, d2, d3}, [r0]
  • void vst4q_s32 (int32_t *, int32x4x4_t)
    Form of expected instruction(s): vst4.32 {d0, d1, d2, d3}, [r0]
  • void vst4q_s16 (int16_t *, int16x8x4_t)
    Form of expected instruction(s): vst4.16 {d0, d1, d2, d3}, [r0]
  • void vst4q_s8 (int8_t *, int8x16x4_t)
    Form of expected instruction(s): vst4.8 {d0, d1, d2, d3}, [r0]
  • void vst4q_f32 (float32_t *, float32x4x4_t)
    Form of expected instruction(s): vst4.32 {d0, d1, d2, d3}, [r0]
  • void vst4q_p16 (poly16_t *, poly16x8x4_t)
    Form of expected instruction(s): vst4.16 {d0, d1, d2, d3}, [r0]
  • void vst4q_p8 (poly8_t *, poly8x16x4_t)
    Form of expected instruction(s): vst4.8 {d0, d1, d2, d3}, [r0]
  • void vst4_lane_u32 (uint32_t *, uint32x2x4_t, const int)
    Form of expected instruction(s): vst4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_u16 (uint16_t *, uint16x4x4_t, const int)
    Form of expected instruction(s): vst4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_u8 (uint8_t *, uint8x8x4_t, const int)
    Form of expected instruction(s): vst4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_s32 (int32_t *, int32x2x4_t, const int)
    Form of expected instruction(s): vst4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_s16 (int16_t *, int16x4x4_t, const int)
    Form of expected instruction(s): vst4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_s8 (int8_t *, int8x8x4_t, const int)
    Form of expected instruction(s): vst4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_f32 (float32_t *, float32x2x4_t, const int)
    Form of expected instruction(s): vst4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_p16 (poly16_t *, poly16x4x4_t, const int)
    Form of expected instruction(s): vst4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4_lane_p8 (poly8_t *, poly8x8x4_t, const int)
    Form of expected instruction(s): vst4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4q_lane_s32 (int32_t *, int32x4x4_t, const int)
    Form of expected instruction(s): vst4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4q_lane_s16 (int16_t *, int16x8x4_t, const int)
    Form of expected instruction(s): vst4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4q_lane_u32 (uint32_t *, uint32x4x4_t, const int)
    Form of expected instruction(s): vst4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4q_lane_u16 (uint16_t *, uint16x8x4_t, const int)
    Form of expected instruction(s): vst4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4q_lane_f32 (float32_t *, float32x4x4_t, const int)
    Form of expected instruction(s): vst4.32 {d0[0], d1[0], d2[0], d3[0]}, [r0]
  • void vst4q_lane_p16 (poly16_t *, poly16x8x4_t, const int)
    Form of expected instruction(s): vst4.16 {d0[0], d1[0], d2[0], d3[0]}, [r0]
6.51.3.76 Logical operations (AND)
  • uint32x2_t vand_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vand d0, d0, d0
  • uint16x4_t vand_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vand d0, d0, d0
  • uint8x8_t vand_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vand d0, d0, d0
  • int32x2_t vand_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vand d0, d0, d0
  • int16x4_t vand_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vand d0, d0, d0
  • int8x8_t vand_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vand d0, d0, d0
  • uint64x1_t vand_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vand d0, d0, d0
  • int64x1_t vand_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vand d0, d0, d0
  • uint32x4_t vandq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vand q0, q0, q0
  • uint16x8_t vandq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vand q0, q0, q0
  • uint8x16_t vandq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vand q0, q0, q0
  • int32x4_t vandq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vand q0, q0, q0
  • int16x8_t vandq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vand q0, q0, q0
  • int8x16_t vandq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vand q0, q0, q0
  • uint64x2_t vandq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vand q0, q0, q0
  • int64x2_t vandq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vand q0, q0, q0
6.51.3.77 Logical operations (OR)
  • uint32x2_t vorr_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • uint16x4_t vorr_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • uint8x8_t vorr_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • int32x2_t vorr_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • int16x4_t vorr_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • int8x8_t vorr_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • uint64x1_t vorr_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • int64x1_t vorr_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vorr d0, d0, d0
  • uint32x4_t vorrq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vorr q0, q0, q0
  • uint16x8_t vorrq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vorr q0, q0, q0
  • uint8x16_t vorrq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vorr q0, q0, q0
  • int32x4_t vorrq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vorr q0, q0, q0
  • int16x8_t vorrq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vorr q0, q0, q0
  • int8x16_t vorrq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vorr q0, q0, q0
  • uint64x2_t vorrq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vorr q0, q0, q0
  • int64x2_t vorrq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vorr q0, q0, q0
6.51.3.78 Logical operations (exclusive OR)
  • uint32x2_t veor_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): veor d0, d0, d0
  • uint16x4_t veor_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): veor d0, d0, d0
  • uint8x8_t veor_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): veor d0, d0, d0
  • int32x2_t veor_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): veor d0, d0, d0
  • int16x4_t veor_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): veor d0, d0, d0
  • int8x8_t veor_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): veor d0, d0, d0
  • uint64x1_t veor_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): veor d0, d0, d0
  • int64x1_t veor_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): veor d0, d0, d0
  • uint32x4_t veorq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): veor q0, q0, q0
  • uint16x8_t veorq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): veor q0, q0, q0
  • uint8x16_t veorq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): veor q0, q0, q0
  • int32x4_t veorq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): veor q0, q0, q0
  • int16x8_t veorq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): veor q0, q0, q0
  • int8x16_t veorq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): veor q0, q0, q0
  • uint64x2_t veorq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): veor q0, q0, q0
  • int64x2_t veorq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): veor q0, q0, q0
6.51.3.79 Logical operations (AND-NOT)
  • uint32x2_t vbic_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • uint16x4_t vbic_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • uint8x8_t vbic_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • int32x2_t vbic_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • int16x4_t vbic_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • int8x8_t vbic_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • uint64x1_t vbic_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • int64x1_t vbic_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vbic d0, d0, d0
  • uint32x4_t vbicq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vbic q0, q0, q0
  • uint16x8_t vbicq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vbic q0, q0, q0
  • uint8x16_t vbicq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vbic q0, q0, q0
  • int32x4_t vbicq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vbic q0, q0, q0
  • int16x8_t vbicq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vbic q0, q0, q0
  • int8x16_t vbicq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vbic q0, q0, q0
  • uint64x2_t vbicq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vbic q0, q0, q0
  • int64x2_t vbicq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vbic q0, q0, q0
6.51.3.80 Logical operations (OR-NOT)
  • uint32x2_t vorn_u32 (uint32x2_t, uint32x2_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • uint16x4_t vorn_u16 (uint16x4_t, uint16x4_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • uint8x8_t vorn_u8 (uint8x8_t, uint8x8_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • int32x2_t vorn_s32 (int32x2_t, int32x2_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • int16x4_t vorn_s16 (int16x4_t, int16x4_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • int8x8_t vorn_s8 (int8x8_t, int8x8_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • uint64x1_t vorn_u64 (uint64x1_t, uint64x1_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • int64x1_t vorn_s64 (int64x1_t, int64x1_t)
    Form of expected instruction(s): vorn d0, d0, d0
  • uint32x4_t vornq_u32 (uint32x4_t, uint32x4_t)
    Form of expected instruction(s): vorn q0, q0, q0
  • uint16x8_t vornq_u16 (uint16x8_t, uint16x8_t)
    Form of expected instruction(s): vorn q0, q0, q0
  • uint8x16_t vornq_u8 (uint8x16_t, uint8x16_t)
    Form of expected instruction(s): vorn q0, q0, q0
  • int32x4_t vornq_s32 (int32x4_t, int32x4_t)
    Form of expected instruction(s): vorn q0, q0, q0
  • int16x8_t vornq_s16 (int16x8_t, int16x8_t)
    Form of expected instruction(s): vorn q0, q0, q0
  • int8x16_t vornq_s8 (int8x16_t, int8x16_t)
    Form of expected instruction(s): vorn q0, q0, q0
  • uint64x2_t vornq_u64 (uint64x2_t, uint64x2_t)
    Form of expected instruction(s): vorn q0, q0, q0
  • int64x2_t vornq_s64 (int64x2_t, int64x2_t)
    Form of expected instruction(s): vorn q0, q0, q0
6.51.3.81 Reinterpret casts
  • poly8x8_t vreinterpret_p8_u32 (uint32x2_t)
  • poly8x8_t vreinterpret_p8_u16 (uint16x4_t)
  • poly8x8_t vreinterpret_p8_u8 (uint8x8_t)
  • poly8x8_t vreinterpret_p8_s32 (int32x2_t)
  • poly8x8_t vreinterpret_p8_s16 (int16x4_t)
  • poly8x8_t vreinterpret_p8_s8 (int8x8_t)
  • poly8x8_t vreinterpret_p8_u64 (uint64x1_t)
  • poly8x8_t vreinterpret_p8_s64 (int64x1_t)
  • poly8x8_t vreinterpret_p8_f32 (float32x2_t)
  • poly8x8_t vreinterpret_p8_p16 (poly16x4_t)
  • poly8x16_t vreinterpretq_p8_u32 (uint32x4_t)
  • poly8x16_t vreinterpretq_p8_u16 (uint16x8_t)
  • poly8x16_t vreinterpretq_p8_u8 (uint8x16_t)
  • poly8x16_t vreinterpretq_p8_s32 (int32x4_t)
  • poly8x16_t vreinterpretq_p8_s16 (int16x8_t)
  • poly8x16_t vreinterpretq_p8_s8 (int8x16_t)
  • poly8x16_t vreinterpretq_p8_u64 (uint64x2_t)
  • poly8x16_t vreinterpretq_p8_s64 (int64x2_t)
  • poly8x16_t vreinterpretq_p8_f32 (float32x4_t)
  • poly8x16_t vreinterpretq_p8_p16 (poly16x8_t)
  • poly16x4_t vreinterpret_p16_u32 (uint32x2_t)
  • poly16x4_t vreinterpret_p16_u16 (uint16x4_t)
  • poly16x4_t vreinterpret_p16_u8 (uint8x8_t)
  • poly16x4_t vreinterpret_p16_s32 (int32x2_t)
  • poly16x4_t vreinterpret_p16_s16 (int16x4_t)
  • poly16x4_t vreinterpret_p16_s8 (int8x8_t)
  • poly16x4_t vreinterpret_p16_u64 (uint64x1_t)
  • poly16x4_t vreinterpret_p16_s64 (int64x1_t)
  • poly16x4_t vreinterpret_p16_f32 (float32x2_t)
  • poly16x4_t vreinterpret_p16_p8 (poly8x8_t)
  • poly16x8_t vreinterpretq_p16_u32 (uint32x4_t)
  • poly16x8_t vreinterpretq_p16_u16 (uint16x8_t)
  • poly16x8_t vreinterpretq_p16_u8 (uint8x16_t)
  • poly16x8_t vreinterpretq_p16_s32 (int32x4_t)
  • poly16x8_t vreinterpretq_p16_s16 (int16x8_t)
  • poly16x8_t vreinterpretq_p16_s8 (int8x16_t)
  • poly16x8_t vreinterpretq_p16_u64 (uint64x2_t)
  • poly16x8_t vreinterpretq_p16_s64 (int64x2_t)
  • poly16x8_t vreinterpretq_p16_f32 (float32x4_t)
  • poly16x8_t vreinterpretq_p16_p8 (poly8x16_t)
  • float32x2_t vreinterpret_f32_u32 (uint32x2_t)
  • float32x2_t vreinterpret_f32_u16 (uint16x4_t)
  • float32x2_t vreinterpret_f32_u8 (uint8x8_t)
  • float32x2_t vreinterpret_f32_s32 (int32x2_t)
  • float32x2_t vreinterpret_f32_s16 (int16x4_t)
  • float32x2_t vreinterpret_f32_s8 (int8x8_t)
  • float32x2_t vreinterpret_f32_u64 (uint64x1_t)
  • float32x2_t vreinterpret_f32_s64 (int64x1_t)
  • float32x2_t vreinterpret_f32_p16 (poly16x4_t)
  • float32x2_t vreinterpret_f32_p8 (poly8x8_t)
  • float32x4_t vreinterpretq_f32_u32 (uint32x4_t)
  • float32x4_t vreinterpretq_f32_u16 (uint16x8_t)
  • float32x4_t vreinterpretq_f32_u8 (uint8x16_t)
  • float32x4_t vreinterpretq_f32_s32 (int32x4_t)
  • float32x4_t vreinterpretq_f32_s16 (int16x8_t)
  • float32x4_t vreinterpretq_f32_s8 (int8x16_t)
  • float32x4_t vreinterpretq_f32_u64 (uint64x2_t)
  • float32x4_t vreinterpretq_f32_s64 (int64x2_t)
  • float32x4_t vreinterpretq_f32_p16 (poly16x8_t)
  • float32x4_t vreinterpretq_f32_p8 (poly8x16_t)
  • int64x1_t vreinterpret_s64_u32 (uint32x2_t)
  • int64x1_t vreinterpret_s64_u16 (uint16x4_t)
  • int64x1_t vreinterpret_s64_u8 (uint8x8_t)
  • int64x1_t vreinterpret_s64_s32 (int32x2_t)
  • int64x1_t vreinterpret_s64_s16 (int16x4_t)
  • int64x1_t vreinterpret_s64_s8 (int8x8_t)
  • int64x1_t vreinterpret_s64_u64 (uint64x1_t)
  • int64x1_t vreinterpret_s64_f32 (float32x2_t)
  • int64x1_t vreinterpret_s64_p16 (poly16x4_t)
  • int64x1_t vreinterpret_s64_p8 (poly8x8_t)
  • int64x2_t vreinterpretq_s64_u32 (uint32x4_t)
  • int64x2_t vreinterpretq_s64_u16 (uint16x8_t)
  • int64x2_t vreinterpretq_s64_u8 (uint8x16_t)
  • int64x2_t vreinterpretq_s64_s32 (int32x4_t)
  • int64x2_t vreinterpretq_s64_s16 (int16x8_t)
  • int64x2_t vreinterpretq_s64_s8 (int8x16_t)
  • int64x2_t vreinterpretq_s64_u64 (uint64x2_t)
  • int64x2_t vreinterpretq_s64_f32 (float32x4_t)
  • int64x2_t vreinterpretq_s64_p16 (poly16x8_t)
  • int64x2_t vreinterpretq_s64_p8 (poly8x16_t)
  • uint64x1_t vreinterpret_u64_u32 (uint32x2_t)
  • uint64x1_t vreinterpret_u64_u16 (uint16x4_t)
  • uint64x1_t vreinterpret_u64_u8 (uint8x8_t)
  • uint64x1_t vreinterpret_u64_s32 (int32x2_t)
  • uint64x1_t vreinterpret_u64_s16 (int16x4_t)
  • uint64x1_t vreinterpret_u64_s8 (int8x8_t)
  • uint64x1_t vreinterpret_u64_s64 (int64x1_t)
  • uint64x1_t vreinterpret_u64_f32 (float32x2_t)
  • uint64x1_t vreinterpret_u64_p16 (poly16x4_t)
  • uint64x1_t vreinterpret_u64_p8 (poly8x8_t)
  • uint64x2_t vreinterpretq_u64_u32 (uint32x4_t)
  • uint64x2_t vreinterpretq_u64_u16 (uint16x8_t)
  • uint64x2_t vreinterpretq_u64_u8 (uint8x16_t)
  • uint64x2_t vreinterpretq_u64_s32 (int32x4_t)
  • uint64x2_t vreinterpretq_u64_s16 (int16x8_t)
  • uint64x2_t vreinterpretq_u64_s8 (int8x16_t)
  • uint64x2_t vreinterpretq_u64_s64 (int64x2_t)
  • uint64x2_t vreinterpretq_u64_f32 (float32x4_t)
  • uint64x2_t vreinterpretq_u64_p16 (poly16x8_t)
  • uint64x2_t vreinterpretq_u64_p8 (poly8x16_t)
  • int8x8_t vreinterpret_s8_u32 (uint32x2_t)
  • int8x8_t vreinterpret_s8_u16 (uint16x4_t)
  • int8x8_t vreinterpret_s8_u8 (uint8x8_t)
  • int8x8_t vreinterpret_s8_s32 (int32x2_t)
  • int8x8_t vreinterpret_s8_s16 (int16x4_t)
  • int8x8_t vreinterpret_s8_u64 (uint64x1_t)
  • int8x8_t vreinterpret_s8_s64 (int64x1_t)
  • int8x8_t vreinterpret_s8_f32 (float32x2_t)
  • int8x8_t vreinterpret_s8_p16 (poly16x4_t)
  • int8x8_t vreinterpret_s8_p8 (poly8x8_t)
  • int8x16_t vreinterpretq_s8_u32 (uint32x4_t)
  • int8x16_t vreinterpretq_s8_u16 (uint16x8_t)
  • int8x16_t vreinterpretq_s8_u8 (uint8x16_t)
  • int8x16_t vreinterpretq_s8_s32 (int32x4_t)
  • int8x16_t vreinterpretq_s8_s16 (int16x8_t)
  • int8x16_t vreinterpretq_s8_u64 (uint64x2_t)
  • int8x16_t vreinterpretq_s8_s64 (int64x2_t)
  • int8x16_t vreinterpretq_s8_f32 (float32x4_t)
  • int8x16_t vreinterpretq_s8_p16 (poly16x8_t)
  • int8x16_t vreinterpretq_s8_p8 (poly8x16_t)
  • int16x4_t vreinterpret_s16_u32 (uint32x2_t)
  • int16x4_t vreinterpret_s16_u16 (uint16x4_t)
  • int16x4_t vreinterpret_s16_u8 (uint8x8_t)
  • int16x4_t vreinterpret_s16_s32 (int32x2_t)
  • int16x4_t vreinterpret_s16_s8 (int8x8_t)
  • int16x4_t vreinterpret_s16_u64 (uint64x1_t)
  • int16x4_t vreinterpret_s16_s64 (int64x1_t)
  • int16x4_t vreinterpret_s16_f32 (float32x2_t)
  • int16x4_t vreinterpret_s16_p16 (poly16x4_t)
  • int16x4_t vreinterpret_s16_p8 (poly8x8_t)
  • int16x8_t vreinterpretq_s16_u32 (uint32x4_t)
  • int16x8_t vreinterpretq_s16_u16 (uint16x8_t)
  • int16x8_t vreinterpretq_s16_u8 (uint8x16_t)
  • int16x8_t vreinterpretq_s16_s32 (int32x4_t)
  • int16x8_t vreinterpretq_s16_s8 (int8x16_t)
  • int16x8_t vreinterpretq_s16_u64 (uint64x2_t)
  • int16x8_t vreinterpretq_s16_s64 (int64x2_t)
  • int16x8_t vreinterpretq_s16_f32 (float32x4_t)
  • int16x8_t vreinterpretq_s16_p16 (poly16x8_t)
  • int16x8_t vreinterpretq_s16_p8 (poly8x16_t)
  • int32x2_t vreinterpret_s32_u32 (uint32x2_t)
  • int32x2_t vreinterpret_s32_u16 (uint16x4_t)
  • int32x2_t vreinterpret_s32_u8 (uint8x8_t)
  • int32x2_t vreinterpret_s32_s16 (int16x4_t)
  • int32x2_t vreinterpret_s32_s8 (int8x8_t)
  • int32x2_t vreinterpret_s32_u64 (uint64x1_t)
  • int32x2_t vreinterpret_s32_s64 (int64x1_t)
  • int32x2_t vreinterpret_s32_f32 (float32x2_t)
  • int32x2_t vreinterpret_s32_p16 (poly16x4_t)
  • int32x2_t vreinterpret_s32_p8 (poly8x8_t)
  • int32x4_t vreinterpretq_s32_u32 (uint32x4_t)
  • int32x4_t vreinterpretq_s32_u16 (uint16x8_t)
  • int32x4_t vreinterpretq_s32_u8 (uint8x16_t)
  • int32x4_t vreinterpretq_s32_s16 (int16x8_t)
  • int32x4_t vreinterpretq_s32_s8 (int8x16_t)
  • int32x4_t vreinterpretq_s32_u64 (uint64x2_t)
  • int32x4_t vreinterpretq_s32_s64 (int64x2_t)
  • int32x4_t vreinterpretq_s32_f32 (float32x4_t)
  • int32x4_t vreinterpretq_s32_p16 (poly16x8_t)
  • int32x4_t vreinterpretq_s32_p8 (poly8x16_t)
  • uint8x8_t vreinterpret_u8_u32 (uint32x2_t)
  • uint8x8_t vreinterpret_u8_u16 (uint16x4_t)
  • uint8x8_t vreinterpret_u8_s32 (int32x2_t)
  • uint8x8_t vreinterpret_u8_s16 (int16x4_t)
  • uint8x8_t vreinterpret_u8_s8 (int8x8_t)
  • uint8x8_t vreinterpret_u8_u64 (uint64x1_t)
  • uint8x8_t vreinterpret_u8_s64 (int64x1_t)
  • uint8x8_t vreinterpret_u8_f32 (float32x2_t)
  • uint8x8_t vreinterpret_u8_p16 (poly16x4_t)
  • uint8x8_t vreinterpret_u8_p8 (poly8x8_t)
  • uint8x16_t vreinterpretq_u8_u32 (uint32x4_t)
  • uint8x16_t vreinterpretq_u8_u16 (uint16x8_t)
  • uint8x16_t vreinterpretq_u8_s32 (int32x4_t)
  • uint8x16_t vreinterpretq_u8_s16 (int16x8_t)
  • uint8x16_t vreinterpretq_u8_s8 (int8x16_t)
  • uint8x16_t vreinterpretq_u8_u64 (uint64x2_t)
  • uint8x16_t vreinterpretq_u8_s64 (int64x2_t)
  • uint8x16_t vreinterpretq_u8_f32 (float32x4_t)
  • uint8x16_t vreinterpretq_u8_p16 (poly16x8_t)
  • uint8x16_t vreinterpretq_u8_p8 (poly8x16_t)
  • uint16x4_t vreinterpret_u16_u32 (uint32x2_t)
  • uint16x4_t vreinterpret_u16_u8 (uint8x8_t)
  • uint16x4_t vreinterpret_u16_s32 (int32x2_t)
  • uint16x4_t vreinterpret_u16_s16 (int16x4_t)
  • uint16x4_t vreinterpret_u16_s8 (int8x8_t)
  • uint16x4_t vreinterpret_u16_u64 (uint64x1_t)
  • uint16x4_t vreinterpret_u16_s64 (int64x1_t)
  • uint16x4_t vreinterpret_u16_f32 (float32x2_t)
  • uint16x4_t vreinterpret_u16_p16 (poly16x4_t)
  • uint16x4_t vreinterpret_u16_p8 (poly8x8_t)
  • uint16x8_t vreinterpretq_u16_u32 (uint32x4_t)
  • uint16x8_t vreinterpretq_u16_u8 (uint8x16_t)
  • uint16x8_t vreinterpretq_u16_s32 (int32x4_t)
  • uint16x8_t vreinterpretq_u16_s16 (int16x8_t)
  • uint16x8_t vreinterpretq_u16_s8 (int8x16_t)
  • uint16x8_t vreinterpretq_u16_u64 (uint64x2_t)
  • uint16x8_t vreinterpretq_u16_s64 (int64x2_t)
  • uint16x8_t vreinterpretq_u16_f32 (float32x4_t)
  • uint16x8_t vreinterpretq_u16_p16 (poly16x8_t)
  • uint16x8_t vreinterpretq_u16_p8 (poly8x16_t)
  • uint32x2_t vreinterpret_u32_u16 (uint16x4_t)
  • uint32x2_t vreinterpret_u32_u8 (uint8x8_t)
  • uint32x2_t vreinterpret_u32_s32 (int32x2_t)
  • uint32x2_t vreinterpret_u32_s16 (int16x4_t)
  • uint32x2_t vreinterpret_u32_s8 (int8x8_t)
  • uint32x2_t vreinterpret_u32_u64 (uint64x1_t)
  • uint32x2_t vreinterpret_u32_s64 (int64x1_t)
  • uint32x2_t vreinterpret_u32_f32 (float32x2_t)
  • uint32x2_t vreinterpret_u32_p16 (poly16x4_t)
  • uint32x2_t vreinterpret_u32_p8 (poly8x8_t)
  • uint32x4_t vreinterpretq_u32_u16 (uint16x8_t)
  • uint32x4_t vreinterpretq_u32_u8 (uint8x16_t)
  • uint32x4_t vreinterpretq_u32_s32 (int32x4_t)
  • uint32x4_t vreinterpretq_u32_s16 (int16x8_t)
  • uint32x4_t vreinterpretq_u32_s8 (int8x16_t)
  • uint32x4_t vreinterpretq_u32_u64 (uint64x2_t)
  • uint32x4_t vreinterpretq_u32_s64 (int64x2_t)
  • uint32x4_t vreinterpretq_u32_f32 (float32x4_t)
  • uint32x4_t vreinterpretq_u32_p16 (poly16x8_t)
  • uint32x4_t vreinterpretq_u32_p8 (poly8x16_t)
profile

인생은 연극이고 세상은 무대이다!

이솝 임베디드 포럼 운영 및 비즈니스와 관련된 것 이외에 E-Mail이나 메신저 및 휴대폰 등을 통한 개인적인 질문 및 답변은 받지 않습니다. 문의 사항은 이솝 임베디드 포럼 게시판을 이용해 주시면 감사하겠습니다.

엮인글 :
http://www.aesop.or.kr/index.php?mid=Board_Documents_Linux_Applications&document_srl=35561&act=trackback&key=a3d

이제현

2009.09.23 06:36:04
*.120.74.180

90년대 초반 Motorola(지금은 Freescale)에서 나온 DSP보다 좋아 보입니다..

세상 참 무섭게 변하는 군요~~~

List of Articles
번호 제목 글쓴이 날짜 조회 수
73 ffmpeg encoding option 고현철 2009-10-01 13408
» GCC에서 지원하는 NEON SIMD 관련 함수 [1] 김재훈 2009-09-20 9944
71 리눅스 어셈블리 프로그래밍을 하자! [2] : ARM 부트코드와 실전... file [2] 김재훈 2009-08-25 10596
70 리눅스 어셈블리 프로그래밍을 하자! [1] : ARM 아키텍쳐와 간단... file [4] 김재훈 2009-08-25 10397
69 Linux Networking How-To file 김재훈 2009-08-25 7421
68 Makefile 문법 [3] 김재훈 2009-07-25 17143
67 나름 빡신 HDD 테스트 프로그램 file [1] 2009-07-24 8183
66 virtualbox vdi image 두개 사용하기 고현철 2009-07-19 9824
65 리눅스 Linked-List 구현 관련 참고 자료 김재훈 2009-07-11 15459
64 리눅스에서 네트워크 속도 측정 방법 [3] 김재훈 2009-07-04 13608
63 Useful Linux Wireless Commands [1] 김재훈 2009-06-05 11966
62 Teach Yourself Shell Programming in 24 Hours file 김재훈 2009-05-17 7081
61 PPP Daemon 포팅 가이드 file 김재훈 2009-05-17 7937
60 uBuntu Linux - dash를 bash로 변경하는 방법 김재훈 2009-04-28 10965
59 GStreamer On TI DaVinci and OMAP Platform 강좌 .... 장석원 2009-04-27 7416
58 Embedded Linux Debugging HowTo file 김재훈 2009-04-27 6396
57 Linux C++ Programming HowTo file 김재훈 2009-04-26 7193
56 The GNU C Library Reference Manual (한글판) file [3] 김재훈 2009-04-19 7186
55 error: array type has incomplete element type의 의미 [1] 김재훈 2009-04-17 7432
54 SDL tslib initialize 고현철 2009-04-09 6425

사용자 로그인