コード例 #1
0
ファイル: avx2-i32gatherq-1.c プロジェクト: 0day-ci/gcc
void extern
avx2_test (void)
{
  x = _mm_i32gather_epi64 (base, idx, 1);
}
コード例 #2
0
__m128i test_mm_i32gather_epi64(long long const *b, __m128i c) {
  // CHECK-LABEL: test_mm_i32gather_epi64
  // CHECK: call <2 x i64> @llvm.x86.avx2.gather.d.q(<2 x i64> undef, i8* %{{.*}}, <4 x i32> %{{.*}}, <2 x i64> %{{.*}}, i8 2)
  return _mm_i32gather_epi64(b, c, 2);
}
コード例 #3
0
ファイル: avx2-builtins.c プロジェクト: Bigcheese/clang
__m128i test_mm_i32gather_epi64(long long const *b, __m128i c) {
  // CHECK: @llvm.x86.avx2.gather.d.q
  return _mm_i32gather_epi64(b, c, 2);
}