mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-06-29 14:42:02 +00:00
static ops
This commit is contained in:
@ -1028,30 +1028,31 @@ impl fmt::Display for Opcode {
|
||||
F32Const(def) => fmt_op!(f, "f32.const", def),
|
||||
F64Const(def) => fmt_op!(f, "f64.const", def),
|
||||
|
||||
/*I32Eqz => op!(writer, 0x45),
|
||||
I32Eq => op!(writer, 0x46),
|
||||
I32Ne => op!(writer, 0x47),
|
||||
I32LtS => op!(writer, 0x48),
|
||||
I32LtU => op!(writer, 0x49),
|
||||
I32GtS => op!(writer, 0x4a),
|
||||
I32GtU => op!(writer, 0x4b),
|
||||
I32LeS => op!(writer, 0x4c),
|
||||
I32LeU => op!(writer, 0x4d),
|
||||
I32GeS => op!(writer, 0x4e),
|
||||
I32GeU => op!(writer, 0x4f),
|
||||
|
||||
I64Eqz => op!(writer, 0x50),
|
||||
I64Eq => op!(writer, 0x51),
|
||||
I64Ne => op!(writer, 0x52),
|
||||
I64LtS => op!(writer, 0x53),
|
||||
I64LtU => op!(writer, 0x54),
|
||||
I64GtS => op!(writer, 0x55),
|
||||
I64GtU => op!(writer, 0x56),
|
||||
I64LeS => op!(writer, 0x57),
|
||||
I64LeU => op!(writer, 0x58),
|
||||
I64GeS => op!(writer, 0x59),
|
||||
I64GeU => op!(writer, 0x5a),
|
||||
I32Eq => write!(f, "i32.eq"),
|
||||
I32Eqz => write!(f, "i32.eqz"),
|
||||
I32Ne => write!(f, "i32.ne"),
|
||||
I32LtS => write!(f, "i32.lt_s"),
|
||||
I32LtU => write!(f, "i32.lt_u"),
|
||||
I32GtS => write!(f, "i32.gt_s"),
|
||||
I32GtU => write!(f, "i32.gt_u"),
|
||||
I32LeS => write!(f, "i32.le_s"),
|
||||
I32LeU => write!(f, "i32.le_u"),
|
||||
I32GeS => write!(f, "i32.ge_s"),
|
||||
I32GeU => write!(f, "i32.ge_u"),
|
||||
|
||||
I64Eq => write!(f, "i64.eq"),
|
||||
I64Eqz => write!(f, "i64.eqz"),
|
||||
I64Ne => write!(f, "i64.ne"),
|
||||
I64LtS => write!(f, "i64.lt_s"),
|
||||
I64LtU => write!(f, "i64.lt_u"),
|
||||
I64GtS => write!(f, "i64.gt_s"),
|
||||
I64GtU => write!(f, "i64.gt_u"),
|
||||
I64LeS => write!(f, "i64.le_s"),
|
||||
I64LeU => write!(f, "i64.le_u"),
|
||||
I64GeS => write!(f, "i64.ge_s"),
|
||||
I64GeU => write!(f, "i64.ge_u"),
|
||||
|
||||
/*
|
||||
F32Eq => op!(writer, 0x5b),
|
||||
F32Ne => op!(writer, 0x5c),
|
||||
F32Lt => op!(writer, 0x5d),
|
||||
|
Reference in New Issue
Block a user