Searched refs:SSE4_2 (Results 1 - 9 of 9) sorted by relevance
/third_party/node/deps/v8/src/codegen/ |
H A D | cpu-features.h | 17 SSE4_2, enumerator
|
/third_party/node/deps/v8/src/codegen/shared-ia32-x64/ |
H A D | macro-assembler-shared-ia32-x64.cc | 862 } else if (CpuFeatures::IsSupported(SSE4_2)) { in I64x2GtS() 863 CpuFeatureScope sse_scope(this, SSE4_2); in I64x2GtS() 898 } else if (CpuFeatures::IsSupported(SSE4_2)) { in I64x2GeS() 899 CpuFeatureScope sse_scope(this, SSE4_2); in I64x2GeS()
|
H A D | macro-assembler-shared-ia32-x64.h | 215 AvxHelper<Dst, Arg, Args...>{this, base::Optional<CpuFeature>(SSE4_2)} \
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | assembler-x64.cc | 95 if (cpu.has_sse42()) SetSupported(SSE4_2); in ProbeImpl() 118 // AVX but not SSE4_2, if we have --enable-avx and --no-enable-sse4-2, the in ProbeImpl() 119 // code above would set AVX to supported, and SSE4_2 to unsupported, then the in ProbeImpl() 124 if (!FLAG_enable_sse4_2 || !IsSupported(SSE4_1)) SetUnsupported(SSE4_2); in ProbeImpl() 125 if (!FLAG_enable_avx || !IsSupported(SSE4_2)) SetUnsupported(AVX); in ProbeImpl() 144 "SSE3=%d SSSE3=%d SSE4_1=%d SSE4_2=%d SAHF=%d AVX=%d AVX2=%d FMA3=%d " in PrintFeatures() 150 CpuFeatures::IsSupported(SSE4_1), CpuFeatures::IsSupported(SSE4_2), in PrintFeatures() 356 if (CpuFeatures::IsSupported(SSE4_2)) { in Assembler() 4276 DCHECK(IsEnabled(SSE4_2)); in sse4_2_instr() 4288 DCHECK(IsEnabled(SSE4_2)); in sse4_2_instr() [all...] |
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.cc | 141 if (cpu.has_sse42()) SetSupported(SSE4_2); in ProbeImpl() 162 // AVX but not SSE4_2, if we have --enable-avx and --no-enable-sse4-2, the in ProbeImpl() 163 // code above would set AVX to supported, and SSE4_2 to unsupported, then the 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() 327 if (CpuFeatures::IsSupported(SSE4_2)) { in Assembler() 2577 DCHECK(IsEnabled(SSE4_2)); in pcmpgtq()
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
H A D | instruction-selector-x64.cc | 3998 } else if (CpuFeatures::IsSupported(SSE4_2)) { in VisitI64x2GtS() 4013 } else if (CpuFeatures::IsSupported(SSE4_2)) { in VisitI64x2GeS()
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
H A D | instruction-selector-ia32.cc | 3201 } else if (CpuFeatures::IsSupported(SSE4_2)) { in VisitI64x2GtS() 3216 } else if (CpuFeatures::IsSupported(SSE4_2)) { in VisitI64x2GeS()
|
/third_party/node/deps/v8/src/wasm/baseline/ia32/ |
H A D | liftoff-assembler-ia32.h | 3145 if (CpuFeatures::IsSupported(AVX) || CpuFeatures::IsSupported(SSE4_2)) { in emit_i64x2_gt_s() 3146 // 1. AVX, or SSE4_2 no requirements (I64x2GtS takes care of aliasing). in emit_i64x2_gt_s() 3167 } else if (CpuFeatures::IsSupported(SSE4_2)) { in emit_i64x2_ge_s() 3168 // 2. SSE4_2, dst != lhs. in emit_i64x2_ge_s()
|
/third_party/node/deps/v8/src/wasm/baseline/x64/ |
H A D | liftoff-assembler-x64.h | 2745 if (CpuFeatures::IsSupported(AVX) || CpuFeatures::IsSupported(SSE4_2)) { in emit_i64x2_gt_s() 2746 // 1. AVX, or SSE4_2 no requirements (I64x2GtS takes care of aliasing). in emit_i64x2_gt_s() 2766 } else if (CpuFeatures::IsSupported(SSE4_2)) { in emit_i64x2_ge_s() 2767 // 2. SSE4_2, dst != lhs. in emit_i64x2_ge_s()
|
Completed in 43 milliseconds