Exemplo n.º 1
0
__m256i test_mm256_i32gather_epi64(long long const *b, __m128i c) {
  // CHECK: @llvm.x86.avx2.gather.d.q.256
  return _mm256_i32gather_epi64(b, c, 2);
}
Exemplo n.º 2
0
__m256i test_mm256_i32gather_epi64(long long const *b, __m128i c) {
  // CHECK-LABEL: test_mm256_i32gather_epi64
  // CHECK: call <4 x i64> @llvm.x86.avx2.gather.d.q.256(<4 x i64> undef, i8* %{{.*}}, <4 x i32> %{{.*}}, <4 x i64> %{{.*}}, i8 2)
  return _mm256_i32gather_epi64(b, c, 2);
}
Exemplo n.º 3
0
void extern
avx2_test (void)
{
  x = _mm256_i32gather_epi64 (base, idx, 1);
}