diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-02-05 12:35:09 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-05 12:35:09 -0800 |
commit | f424f81886405fc26a415fc86900c0f8d0df14eb (patch) | |
tree | 5896c316f216fca9654f55e41809839d181ca53b /scripts/gen-s-parser.py | |
parent | 484f62f985cb2180139d1cf991ac04ee41635417 (diff) | |
download | binaryen-f424f81886405fc26a415fc86900c0f8d0df14eb.tar.gz binaryen-f424f81886405fc26a415fc86900c0f8d0df14eb.tar.bz2 binaryen-f424f81886405fc26a415fc86900c0f8d0df14eb.zip |
Bulk memory operations (#1892)
Bulk memory operations
The only parts missing are the interpreter implementation
and spec tests.
Diffstat (limited to 'scripts/gen-s-parser.py')
-rwxr-xr-x | scripts/gen-s-parser.py | 4 |
1 files changed, 4 insertions, 0 deletions
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)"), |