summaryrefslogtreecommitdiff
path: root/scripts/gen-s-parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gen-s-parser.py')
-rwxr-xr-xscripts/gen-s-parser.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py
index 4c33fcf78..7fd3d1ec6 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -350,6 +350,14 @@ instructions = [
("v128.xor", "makeBinary(s, BinaryOp::XorVec128)"),
("v128.andnot", "makeBinary(s, BinaryOp::AndNotVec128)"),
("v128.bitselect", "makeSIMDTernary(s, SIMDTernaryOp::Bitselect)"),
+ ("v128.load8_lane", "makeSIMDLoadStoreLane(s, LoadLaneVec8x16)"),
+ ("v128.load16_lane", "makeSIMDLoadStoreLane(s, LoadLaneVec16x8)"),
+ ("v128.load32_lane", "makeSIMDLoadStoreLane(s, LoadLaneVec32x4)"),
+ ("v128.load64_lane", "makeSIMDLoadStoreLane(s, LoadLaneVec64x2)"),
+ ("v128.store8_lane", "makeSIMDLoadStoreLane(s, StoreLaneVec8x16)"),
+ ("v128.store16_lane", "makeSIMDLoadStoreLane(s, StoreLaneVec16x8)"),
+ ("v128.store32_lane", "makeSIMDLoadStoreLane(s, StoreLaneVec32x4)"),
+ ("v128.store64_lane", "makeSIMDLoadStoreLane(s, StoreLaneVec64x2)"),
("i8x16.abs", "makeUnary(s, UnaryOp::AbsVecI8x16)"),
("i8x16.neg", "makeUnary(s, UnaryOp::NegVecI8x16)"),
("i8x16.any_true", "makeUnary(s, UnaryOp::AnyTrueVecI8x16)"),