From f424f81886405fc26a415fc86900c0f8d0df14eb Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Tue, 5 Feb 2019 12:35:09 -0800 Subject: Bulk memory operations (#1892) Bulk memory operations The only parts missing are the interpreter implementation and spec tests. --- scripts/gen-s-parser.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts/gen-s-parser.py') diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index 7e9e70a7c..2f63efe70 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -35,6 +35,10 @@ instructions = [ ("local.tee", "makeTeeLocal(s)"), ("global.get", "makeGetGlobal(s)"), ("global.set", "makeSetGlobal(s)"), + ("memory.init", "makeMemoryInit(s)"), + ("data.drop", "makeDataDrop(s)"), + ("memory.copy", "makeMemoryCopy(s)"), + ("memory.fill", "makeMemoryFill(s)"), ("i32.load", "makeLoad(s, i32, /*isAtomic=*/false)"), ("i64.load", "makeLoad(s, i64, /*isAtomic=*/false)"), ("f32.load", "makeLoad(s, f32, /*isAtomic=*/false)"), -- cgit v1.2.3