Lines Matching refs:conv
196 WASM_OPCODE (0xa7, "i32.wrap/i64", i64, i32, conv, agnostic)
197 WASM_OPCODE (0xa8, "i32.trunc_s/f32", f32, i32, conv, signed)
198 WASM_OPCODE (0xa9, "i32.trunc_u/f32", f32, i32, conv, unsigned)
199 WASM_OPCODE (0xaa, "i32.trunc_s/f64", f64, i32, conv, signed)
200 WASM_OPCODE (0xab, "i32.trunc_u/f64", f64, i32, conv, unsigned)
201 WASM_OPCODE (0xac, "i64.extend_s/i32", i32, i64, conv, signed)
202 WASM_OPCODE (0xad, "i64.extend_u/i32", i32, i64, conv, unsigned)
203 WASM_OPCODE (0xae, "i64.trunc_s/f32", f32, i64, conv, signed)
204 WASM_OPCODE (0xaf, "i64.trunc_u/f32", f32, i64, conv, unsigned)
205 WASM_OPCODE (0xb0, "i64.trunc_s/f64", f64, i64, conv, signed)
206 WASM_OPCODE (0xb1, "i64.trunc_u/f64", f64, i64, conv, unsigned)
208 WASM_OPCODE (0xb2, "f32.convert_s/i32", i32, f32, conv, signed)
209 WASM_OPCODE (0xb3, "f32.convert_u/i32", i32, f32, conv, unsigned)
210 WASM_OPCODE (0xb4, "f32.convert_s/i64", i64, f32, conv, signed)
211 WASM_OPCODE (0xb5, "f32.convert_u/i64", i64, f32, conv, unsigned)
212 WASM_OPCODE (0xb6, "f32.demote/f64", f64, f32, conv, floating)
213 WASM_OPCODE (0xb7, "f64.convert_s/i32", i32, f64, conv, signed)
214 WASM_OPCODE (0xb8, "f64.convert_u/i32", i32, f64, conv, unsigned)
215 WASM_OPCODE (0xb9, "f64.convert_s/i64", i64, f64, conv, signed)
216 WASM_OPCODE (0xba, "f64.convert_u/i64", i64, f64, conv, unsigned)
217 WASM_OPCODE (0xbb, "f64.promote/f32", f32, f64, conv, floating)
219 WASM_OPCODE (0xbc, "i32.reinterpret/f32", f32, i32, conv, agnostic)
220 WASM_OPCODE (0xbd, "i64.reinterpret/f64", f64, i64, conv, agnostic)
221 WASM_OPCODE (0xbe, "f32.reinterpret/i32", i32, f32, conv, agnostic)
222 WASM_OPCODE (0xbf, "f64.reinterpret/i64", i64, f64, conv, agnostic)