Commit 82836a5
authored
* add simd crate feature to wasmi_ir
* make wasmi_ir::Instruction non_exhaustive
* adjust Wasmi executor for non-exhaustive Instruction
* make it possible to feature guard instruction definitions
* add simd splat instruction variants
* add extract_lane SIMD ops
* make wasmi_ir compile without simd feature
* add result and docs for extract_lanes ops
* import V128 for docs
* add replace_lane SIMD ops
* add i8x16.{swizzle,shuffle} ops
* add lanewise binary int arithmetic ops
* add i32x4.dot_i16x8_s op
* add missing comma
* add integer lanewise neg ops
* add extmul SIMD ops
* add extadd pairwise SIMD ops
* add {add,sub}_sat SIMD ops
* add Wasm i16x8.q15mulr_sat_s op
* add integer min, max SIMD ops
* add avgr_u SIMD ops
* add integer abs SIMD ops
* add shift SIMD ops
* add bitwise SIMD ops
* fix spelling of new ops
* add missing comma
* add v128.bitselect SIMD op
* add all_true, any_true, bitmask and popcnt SIMD ops
* add SIMD comparison ops
* add f{32,64} neg and abs SIMD ops
* add f{32,64} binary math SIMD ops
* add f{32,64} unary math SIMD ops
* add conversion SIMD ops
* add narrowing conversion SIMD ops
* add extend_{low,high} SIMD ops
* add v128.store SIMD op
* fix inconsistencies in V128Store instructions
* add missing `value: Reg` to V128StoreOffset16 op
* add Offset8 utility type
* add Wasm v128.storeN_lane SIMD ops
* add most v128 load SIMD ops
* add v128.loadN_lane SIMD ops
1 parent dbcd4ba commit 82836a5
File tree
8 files changed
+3238
-1
lines changed- crates
- ir
- src
- wasmi
- src/engine/executor
8 files changed
+3238
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
1 | 5 | | |
2 | 6 | | |
3 | 7 | | |
4 | 8 | | |
5 | 9 | | |
6 | 10 | | |
7 | 11 | | |
| 12 | + | |
8 | 13 | | |
9 | 14 | | |
10 | 15 | | |
| |||
37 | 42 | | |
38 | 43 | | |
39 | 44 | | |
| 45 | + | |
40 | 46 | | |
41 | 47 | | |
42 | 48 | | |
43 | 49 | | |
| 50 | + | |
44 | 51 | | |
45 | 52 | | |
46 | 53 | | |
| |||
60 | 67 | | |
61 | 68 | | |
62 | 69 | | |
| 70 | + | |
63 | 71 | | |
64 | 72 | | |
65 | 73 | | |
| |||
101 | 109 | | |
102 | 110 | | |
103 | 111 | | |
| 112 | + | |
104 | 113 | | |
105 | 114 | | |
106 | 115 | | |
| |||
124 | 133 | | |
125 | 134 | | |
126 | 135 | | |
| 136 | + | |
127 | 137 | | |
128 | 138 | | |
129 | 139 | | |
| |||
0 commit comments