zingen/masm/cmp.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
// Comparison Instructions
use crate::{MacroAssembler, Result};
use opcodes::ShangHai as OpCode;
impl MacroAssembler {
/// Greater than or equal comparison.
///
/// a b ge -> a b-1 gt(lt)
///
/// Using lt due to order of stack.
pub fn _ge(&mut self) -> Result<()> {
self.push(&[1])?;
// NOTE: this is the overridden sub but not `self.asm.sub`
self._sub()?;
self.asm._lt()
}
/// Greater than or equal comparison.
///
/// a b sge -> a b-1 sgt(slt)
///
/// Using lt due to order of stack.
pub fn _sge(&mut self) -> Result<()> {
self.push(&[1])?;
// NOTE: this is the overridden sub but not `self.asm.sub`
self._sub()?;
self.asm._slt()
}
/// Greater than or equal comparison.
///
/// a b sge -> a b-1 sgt(slt)
///
/// Using lt due to order of stack.
pub fn _sle(&mut self) -> Result<()> {
self.push(&[1])?;
// NOTE: this is the overridden sub but not `self.asm.sub`
self._sub()?;
self.asm._slt()
}
/// Greater than or equal comparison.
///
/// a b le -> a b-1 lt(gt)
///
/// Using gt due to order of stack.
pub fn _le(&mut self) -> Result<()> {
self.push(&[1])?;
// NOTE: this is the overridden sub but not `self.asm.sub`
self._sub()?;
self.asm._lt()
}
/// Greater than and equal comparison.
///
/// Using slt due to order of stack.
pub fn _sgt(&mut self) -> Result<()> {
self.asm._slt()
}
/// Greater than comparison.
///
/// Using lt due to order of stack.
pub fn _gt(&mut self) -> Result<()> {
self.asm._lt()
}
/// less than comparison.
///
/// Using gt due to order of stack.
pub fn _lt(&mut self) -> Result<()> {
self.asm._gt()
}
/// less than or equal comparison.
///
/// Using gt due to order of stack.
pub fn _slt(&mut self) -> Result<()> {
self.asm._sgt()
}
/// Sign-agnostic compare unequal.
pub fn _ne(&mut self) -> Result<()> {
self.emit_op(OpCode::EQ)?;
self.emit_op(OpCode::ISZERO)?;
Ok(())
}
/// Simple not operator
pub fn _eqz(&mut self) -> Result<()> {
self.emit_op(OpCode::ISZERO)?;
Ok(())
}
}