Lines Matching refs:IsSupported
127 if (IsSupported(SSE4_1)) return true; in SupportsWasmSimd128()
128 if (FLAG_wasm_simd_ssse3_codegen && IsSupported(SSSE3)) return true; in SupportsWasmSimd128()
166 if (!FLAG_enable_ssse3 || !IsSupported(SSE3)) SetUnsupported(SSSE3); in ProbeImpl()
167 if (!FLAG_enable_sse4_1 || !IsSupported(SSSE3)) SetUnsupported(SSE4_1); in ProbeImpl()
168 if (!FLAG_enable_sse4_2 || !IsSupported(SSE4_1)) SetUnsupported(SSE4_2); in ProbeImpl()
169 if (!FLAG_enable_avx || !IsSupported(SSE4_2)) SetUnsupported(AVX); in ProbeImpl()
170 if (!FLAG_enable_avx2 || !IsSupported(AVX)) SetUnsupported(AVX2); in ProbeImpl()
171 if (!FLAG_enable_fma3 || !IsSupported(AVX)) SetUnsupported(FMA3); in ProbeImpl()
186 CpuFeatures::IsSupported(SSE3), CpuFeatures::IsSupported(SSSE3), in PrintFeatures()
187 CpuFeatures::IsSupported(SSE4_1), CpuFeatures::IsSupported(AVX), in PrintFeatures()
188 CpuFeatures::IsSupported(AVX2), CpuFeatures::IsSupported(FMA3), in PrintFeatures()
189 CpuFeatures::IsSupported(BMI1), CpuFeatures::IsSupported(BMI2), in PrintFeatures()
190 CpuFeatures::IsSupported(LZCNT), CpuFeatures::IsSupported(POPCNT), in PrintFeatures()
191 CpuFeatures::IsSupported(INTEL_ATOM)); in PrintFeatures()
327 if (CpuFeatures::IsSupported(SSE4_2)) { in Assembler()
330 if (CpuFeatures::IsSupported(SSE4_1)) { in Assembler()
333 if (CpuFeatures::IsSupported(SSSE3)) { in Assembler()