Skip to main content

Module bitwise_comparison

Module bitwise_comparison 

Source
Expand description

§Bitwise and comparison operations

Includes the following opcodes:

  • LT
  • GT
  • SLT
  • SGT
  • EQ
  • ISZERO
  • AND
  • OR
  • XOR
  • NOT
  • BYTE
  • SHL
  • SHR
  • SAR

Structs§

OpAndHandler
Implementation for the AND opcode.
OpByteHandler
Implementation for the BYTE opcode.
OpEqHandler
Implementation for the EQ opcode.
OpGtHandler
Implementation for the GT opcode.
OpIsZeroHandler
Implementation for the ISZERO opcode.
OpLtHandler
Implementation for the LT opcode.
OpNotHandler
Implementation for the NOT opcode.
OpOrHandler
Implementation for the OR opcode.
OpSGtHandler
Implementation for the SGT opcode.
OpSLtHandler
Implementation for the SLT opcode.
OpSarHandler
Implementation for the SAR opcode.
OpShlHandler
Implementation for the SHL opcode.
OpShrHandler
Implementation for the SHR opcode.
OpXorHandler
Implementation for the XOR opcode.