diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-12-20 19:36:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 19:36:05 -0800 |
commit | 1f3a1d5fae0296fdf503968131905be9e8f40cf4 (patch) | |
tree | 09ecfc4a4e193296cbf27014564e959f12010b89 /src/test-interp.cc | |
parent | e59cf9369004a521814222afbc05ae6b59446cd5 (diff) | |
download | wabt-1f3a1d5fae0296fdf503968131905be9e8f40cf4.tar.gz wabt-1f3a1d5fae0296fdf503968131905be9e8f40cf4.tar.bz2 wabt-1f3a1d5fae0296fdf503968131905be9e8f40cf4.zip |
Finish instruction renaming (#1792)
This finishes #985. This
- replaces the old names in the tests with the new names
- drops support for the deprecated names
- renames test files to match new instruction names
I don't think dropping support for the old names will be a problem at
this point. #985 says the old names are supported for convenience but we
should remove those too at some point; that "some point" may have well
arrived given that three years have passed.
The lists of names updated are in #933, #1564, WebAssembly/spec#720.
Diffstat (limited to 'src/test-interp.cc')
-rw-r--r-- | src/test-interp.cc | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/test-interp.cc b/src/test-interp.cc index 245bc884..d7461209 100644 --- a/src/test-interp.cc +++ b/src/test-interp.cc @@ -412,22 +412,22 @@ TEST_F(InterpTest, Rot13) { // (local $uc i32) // // ;; No change if < 'A'. - // (if (i32.lt_u (get_local $c) (i32.const 65)) - // (return (get_local $c))) + // (if (i32.lt_u (local.get $c) (i32.const 65)) + // (return (local.get $c))) // // ;; Clear 5th bit of c, to force uppercase. 0xdf = 0b11011111 - // (set_local $uc (i32.and (get_local $c) (i32.const 0xdf))) + // (local.set $uc (i32.and (local.get $c) (i32.const 0xdf))) // // ;; In range ['A', 'M'] return |c| + 13. - // (if (i32.le_u (get_local $uc) (i32.const 77)) - // (return (i32.add (get_local $c) (i32.const 13)))) + // (if (i32.le_u (local.get $uc) (i32.const 77)) + // (return (i32.add (local.get $c) (i32.const 13)))) // // ;; In range ['N', 'Z'] return |c| - 13. - // (if (i32.le_u (get_local $uc) (i32.const 90)) - // (return (i32.sub (get_local $c) (i32.const 13)))) + // (if (i32.le_u (local.get $uc) (i32.const 90)) + // (return (i32.sub (local.get $c) (i32.const 13)))) // // ;; No change for everything else. - // (return (get_local $c)) + // (return (local.get $c)) // ) // // (func (export "rot13") @@ -438,27 +438,27 @@ TEST_F(InterpTest, Rot13) { // (call $fill_buf (i32.const 0) (i32.const 1024)) // // ;; The host returns the size filled. - // (set_local $size) + // (local.set $size) // // ;; Loop over all bytes and rot13 them. // (block $exit // (loop $top // ;; if (i >= size) break - // (if (i32.ge_u (get_local $i) (get_local $size)) (br $exit)) + // (if (i32.ge_u (local.get $i) (local.get $size)) (br $exit)) // // ;; mem[i] = rot13c(mem[i]) // (i32.store8 - // (get_local $i) + // (local.get $i) // (call $rot13c - // (i32.load8_u (get_local $i)))) + // (i32.load8_u (local.get $i)))) // // ;; i++ - // (set_local $i (i32.add (get_local $i) (i32.const 1))) + // (local.set $i (i32.add (local.get $i) (i32.const 1))) // (br $top) // ) // ) // - // (call $buf_done (i32.const 0) (get_local $size)) + // (call $buf_done (i32.const 0) (local.get $size)) // ) ReadModule({ 0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00, 0x01, 0x14, 0x04, 0x60, |