Home
last modified time | relevance | path

Searched refs:SupportsWasmSimd128 (Results 1 – 16 of 16) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dcpu-features.h117 static bool SupportsWasmSimd128();
/third_party/node/deps/v8/src/codegen/s390/
Dassembler-s390.cc162 bool CpuFeatures::SupportsWasmSimd128() { in SupportsWasmSimd128() function in v8::internal::CpuFeatures
258 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
Dmacro-assembler-s390.cc736 if (CpuFeatures::SupportsWasmSimd128()) { in MultiPushF64OrV128()
768 if (CpuFeatures::SupportsWasmSimd128()) { in MultiPopF64OrV128()
/third_party/node/deps/v8/src/wasm/
Dfunction-body-decoder.cc87 bool CheckHardwareSupportsSimd() { return CpuFeatures::SupportsWasmSimd128(); } in CheckHardwareSupportsSimd()
/third_party/node/deps/v8/src/codegen/ppc/
Dassembler-ppc.cc57 bool CpuFeatures::SupportsWasmSimd128() { in SupportsWasmSimd128() function in v8::internal::CpuFeatures
110 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
Dmacro-assembler-ppc.cc494 if (CpuFeatures::SupportsWasmSimd128()) { in MultiPushF64AndV128()
523 if (CpuFeatures::SupportsWasmSimd128()) { in MultiPopF64AndV128()
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-compiler.cc582 if (CpuFeatures::SupportsWasmSimd128()) supported_types_.Add(kS128); in MaybeBailoutForUnsupportedType()
3514 if (!CpuFeatures::SupportsWasmSimd128()) { in SimdOp()
4064 if (!CpuFeatures::SupportsWasmSimd128()) { in SimdLaneOp()
4108 if (!CpuFeatures::SupportsWasmSimd128()) { in S128Const()
4132 if (!CpuFeatures::SupportsWasmSimd128()) { in Simd8x16ShuffleOp()
6356 DCHECK(CpuFeatures::SupportsWasmSimd128()); in SetDefaultValue()
/third_party/node/deps/v8/src/codegen/loong64/
Dassembler-loong64.cc20 bool CpuFeatures::SupportsWasmSimd128() { return false; } in SupportsWasmSimd128() function in v8::internal::CpuFeatures
38 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/codegen/ia32/
Dassembler-ia32.cc125 bool CpuFeatures::SupportsWasmSimd128() { in SupportsWasmSimd128() function in v8::internal::CpuFeatures
177 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/codegen/x64/
Dassembler-x64.cc78 bool CpuFeatures::SupportsWasmSimd128() { in SupportsWasmSimd128() function in v8::internal::CpuFeatures
133 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/codegen/mips/
Dassembler-mips.cc70 bool CpuFeatures::SupportsWasmSimd128() { return IsSupported(MIPS_SIMD); } in SupportsWasmSimd128() function in v8::internal::CpuFeatures
125 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/codegen/riscv64/
Dassembler-riscv64.cc66 bool CpuFeatures::SupportsWasmSimd128() { return IsSupported(RISCV_SIMD); } in SupportsWasmSimd128() function in v8::internal::CpuFeatures
80 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/codegen/mips64/
Dassembler-mips64.cc70 bool CpuFeatures::SupportsWasmSimd128() { return IsSupported(MIPS_SIMD); } in SupportsWasmSimd128() function in v8::internal::CpuFeatures
101 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/codegen/arm64/
Dassembler-arm64.cc86 bool CpuFeatures::SupportsWasmSimd128() { return true; } in SupportsWasmSimd128() function in v8::internal::CpuFeatures
120 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/codegen/arm/
Dassembler-arm.cc201 bool CpuFeatures::SupportsWasmSimd128() { return IsSupported(NEON); } in SupportsWasmSimd128() function in v8::internal::CpuFeatures
258 CpuFeatures::supports_wasm_simd_128_ = CpuFeatures::SupportsWasmSimd128(); in ProbeImpl()
/third_party/node/deps/v8/src/compiler/
Dwasm-compiler.cc8492 if (ContainsSimd(func_body.sig) && !CpuFeatures::SupportsWasmSimd128()) { in ExecuteTurbofanWasmCompilation()