Beispiel #1
0
__m256 test_mm256_frcz_ps(__m256 a) {
  // CHECK-LABEL: test_mm256_frcz_ps
  // CHECK: call <8 x float> @llvm.x86.xop.vfrcz.ps.256(<8 x float> %{{.*}})
  return _mm256_frcz_ps(a);
}
Beispiel #2
0
__m256 test_mm256_frcz_ps(__m256 a) {
  // CHECK: @llvm.x86.xop.vfrcz.ps.256
  // CHECK-ASM: vfrczps %ymm{{.*}}, %ymm{{.*}}
  return _mm256_frcz_ps(a);
}
Beispiel #3
0
__m256 __attribute__((__target__("xop"))) mm256_frcz_ps_wrap(__m256 a) {
  return _mm256_frcz_ps(a);
}
Beispiel #4
0
__m256 test_mm256_frcz_ps(__m256 a) {
  // CHECK-LABEL: test_mm256_frcz_ps
  // CHECK: @llvm.x86.xop.vfrcz.ps.256
  return _mm256_frcz_ps(a);
}