Home
last modified time | relevance | path

Searched refs:is_simd (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Domp-low.c4322 bool is_simd = (gimple_code (ctx->stmt) == GIMPLE_OMP_FOR in lower_rec_input_clauses() local
4331 sctx.is_simt = is_simd && omp_find_clause (clauses, OMP_CLAUSE__SIMT_); in lower_rec_input_clauses()
4337 if (is_simd) in lower_rec_input_clauses()
4599 || (is_simd && !OMP_CLAUSE__CONDTEMP__ITER (c))) in lower_rec_input_clauses()
4919 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) || is_simd) in lower_rec_input_clauses()
4926 if (is_simd || OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c)) in lower_rec_input_clauses()
4943 if (is_simd) in lower_rec_input_clauses()
4986 if (is_simd) in lower_rec_input_clauses()
5018 if (is_simd) in lower_rec_input_clauses()
5193 if (is_simd) in lower_rec_input_clauses()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Domp-low.cc4880 bool is_simd = (gimple_code (ctx->stmt) == GIMPLE_OMP_FOR in lower_rec_input_clauses() local
4889 sctx.is_simt = is_simd && omp_find_clause (clauses, OMP_CLAUSE__SIMT_); in lower_rec_input_clauses()
4895 if (is_simd) in lower_rec_input_clauses()
5160 || (is_simd && !OMP_CLAUSE__CONDTEMP__ITER (c))) in lower_rec_input_clauses()
5511 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) || is_simd) in lower_rec_input_clauses()
5518 if (is_simd || OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c)) in lower_rec_input_clauses()
5535 if (is_simd) in lower_rec_input_clauses()
5578 if (is_simd) in lower_rec_input_clauses()
5610 if (is_simd) in lower_rec_input_clauses()
5819 if (is_simd) in lower_rec_input_clauses()
[all …]
H A DChangeLog-201923337 in ctx->for_simd_scan_phase is_simd regions.
23338 (lower_omp_scan): Set is_simd also on simd constructs composited
23795 gimplify_and_add. For non-is_simd test OMP_CLAUSE_REDUCTION_INSCAN
26393 * omp-low.c (lower_rec_input_clauses): Force max_vf if is_simd and
26395 and references a VLA. Handle references to non-VLAs if is_simd
H A DChangeLog-20131944 reductions without placeholder if is_simd, but when not using
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dopenmp.c5725 bool is_simd = false; in resolve_omp_do() local
5735 is_simd = true; in resolve_omp_do()
5739 is_simd = true; in resolve_omp_do()
5742 case EXEC_OMP_DO_SIMD: name = "!$OMP DO SIMD"; is_simd = true; break; in resolve_omp_do()
5746 is_simd = true; in resolve_omp_do()
5748 case EXEC_OMP_SIMD: name = "!$OMP SIMD"; is_simd = true; break; in resolve_omp_do()
5752 is_simd = true; in resolve_omp_do()
5756 is_simd = true; in resolve_omp_do()
5766 is_simd = true; in resolve_omp_do()
5770 is_simd = true; in resolve_omp_do()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dopenmp.cc8460 bool is_simd = false; in resolve_omp_do() local
8470 is_simd = true; in resolve_omp_do()
8474 is_simd = true; in resolve_omp_do()
8477 case EXEC_OMP_DO_SIMD: name = "!$OMP DO SIMD"; is_simd = true; break; in resolve_omp_do()
8482 is_simd = true; in resolve_omp_do()
8490 is_simd = true; in resolve_omp_do()
8497 is_simd = true; in resolve_omp_do()
8502 is_simd = true; in resolve_omp_do()
8507 is_simd = true; in resolve_omp_do()
8509 case EXEC_OMP_SIMD: name = "!$OMP SIMD"; is_simd = true; break; in resolve_omp_do()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dsimd_math.h176 is_simd<_Simd>, is_convertible<_T0&&, _Simd>, \
179 is_simd<_U0>, is_floating_point<__value_type_or_identity_t<_U0>>>>>>> \
H A Dsimd.h152 struct is_simd;
1618 else if constexpr (is_simd<_V>::value || is_simd_mask<_V>::value)
1635 else if constexpr (is_simd<_V>::value || is_simd_mask<_V>::value)
2927 struct is_simd : public false_type {};
2930 inline constexpr bool is_simd_v = is_simd<_Tp>::value;
3021 struct is_simd<simd<_Tp, _Abi>> : public true_type {};
3232 conjunction_v<is_simd<_Tp>, is_same<typename _Tp::value_type, _Up>>, _Tp>
/netbsd-src/external/apache2/llvm/dist/libcxx/include/experimental/
H A Dsimd40 template <class T> struct is_simd;
41 template <class T> inline constexpr bool is_simd_v = is_simd<T>::value;
1007 struct is_simd : std::integral_constant<bool, false> {};
1010 struct is_simd<simd<_Tp, _Abi>> : std::integral_constant<bool, true> {};
1037 _LIBCPP_INLINE_VAR constexpr bool is_simd_v = is_simd<_Tp>::value;