Home
last modified time | relevance | path

Searched refs:SIMDLoadOp (Results 1 – 7 of 7) sorted by relevance

/dports/devel/binaryen/binaryen-version_98/src/
H A Dgen-s-parser.inc858 …if (strcmp(op, "i16x8.load8x8_s") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadExtSVec8x8ToVecI1…
861 …if (strcmp(op, "i16x8.load8x8_u") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadExtUVec8x8ToVecI1…
1572 …if (strcmp(op, "i32x4.load16x4_s") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadExtSVec16x4ToVec…
2260 …if (strcmp(op, "i64x2.load32x2_s") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadExtSVec32x2ToVec…
2263 …if (strcmp(op, "i64x2.load32x2_u") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadExtUVec32x2ToVec…
2780 … if (strcmp(op, "v128.load32_zero") == 0) { return makeSIMDLoad(s, SIMDLoadOp::Load32Zero); }
2783 … if (strcmp(op, "v128.load64_zero") == 0) { return makeSIMDLoad(s, SIMDLoadOp::Load64Zero); }
2804 … if (strcmp(op, "v16x8.load_splat") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadSplatVec16x8); }
2810 … if (strcmp(op, "v32x4.load_splat") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadSplatVec32x4); }
2813 … if (strcmp(op, "v64x2.load_splat") == 0) { return makeSIMDLoad(s, SIMDLoadOp::LoadSplatVec64x2); }
[all …]
H A Dwasm-s-parser.h212 Expression* makeSIMDLoad(Element& s, SIMDLoadOp op);
H A Dwasm.h472 enum SIMDLoadOp { enum
964 SIMDLoadOp op;
H A Dwasm-builder.h428 makeSIMDLoad(SIMDLoadOp op, Address offset, Address align, Expression* ptr) { in makeSIMDLoad()
H A Dbinaryen-c.cpp1253 SIMDLoadOp(op), Address(offset), Address(align), (Expression*)ptr)); in BinaryenSIMDLoad()
2671 static_cast<SIMDLoad*>(expression)->op = SIMDLoadOp(op); in BinaryenSIMDLoadSetOp()
/dports/devel/binaryen/binaryen-version_98/src/tools/
H A Dfuzzing.h2612 SIMDLoadOp op = pick(LoadSplatVec8x16, in makeSIMDLoad()
/dports/devel/binaryen/binaryen-version_98/src/wasm/
H A Dwasm-s-parser.cpp1562 Expression* SExpressionWasmBuilder::makeSIMDLoad(Element& s, SIMDLoadOp op) { in makeSIMDLoad()