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.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py
index 5bf5ec942..4c33fcf78 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -500,7 +500,25 @@ instructions = [
("ref.eq", "makeRefEq(s)"),
("i31.new", "makeI31New(s)"),
("i31.get_s", "makeI31Get(s, true)"),
- ("i31.get_u", "makeI31Get(s, false)")
+ ("i31.get_u", "makeI31Get(s, false)"),
+ ("ref.test", "makeRefTest(s)"),
+ ("ref.cast", "makeRefCast(s)"),
+ ("br_on_cast", "makeBrOnCast(s)"),
+ ("rtt.canon", "makeRttCanon(s)"),
+ ("rtt.sub", "makeRttSub(s)"),
+ ("struct.new_with_rtt", "makeStructNew(s, false)"),
+ ("struct.new_default_with_rtt", "makeStructNew(s, true)"),
+ ("struct.get", "makeStructGet(s)"),
+ ("struct.get_s", "makeStructGet(s, true)"),
+ ("struct.get_u", "makeStructGet(s, false)"),
+ ("struct.set", "makeStructSet(s)"),
+ ("array.new_with_rtt", "makeArrayNew(s, false)"),
+ ("array.new_default_with_rtt", "makeArrayNew(s, true)"),
+ ("array.get", "makeArrayGet(s)"),
+ ("array.get_s", "makeArrayGet(s, true)"),
+ ("array.get_u", "makeArrayGet(s, false)"),
+ ("array.set", "makeArraySet(s)"),
+ ("array.len", "makeArrayLen(s)")
]