Ejemplo n.º 1
0
float16x4_t test_vget_high_f16(float16x8_t a) {
  // CHECK-COMMON-LABEL: test_vget_high_f16:
  return vget_high_f16(a);
  // CHECK-AARCH64: dup d0, {{v[0-9]+}}.d[1]
  // CHECK-ARM64: ext v0.16b, v0.16b, v0.16b, #8
}
Ejemplo n.º 2
0
float16x4_t test_vget_high_f16(float16x8_t a) {
  // CHECK-LABEL: test_vget_high_f16:
  return vget_high_f16(a);
  // CHECK: dup d0, {{v[0-9]+}}.d[1]
}
Ejemplo n.º 3
0
// CHECK-LABEL: define <4 x half> @test_vget_high_f16(<8 x half> %a) #0 {
// CHECK:   [[SHUFFLE_I:%.*]] = shufflevector <8 x half> %a, <8 x half> %a, <4 x i32> <i32 4, i32 5, i32 6, i32 7>
// CHECK:   ret <4 x half> [[SHUFFLE_I]]
float16x4_t test_vget_high_f16(float16x8_t a) {
  return vget_high_f16(a);
}