LibOpIntDivNP

Git Source

Opcode to divide N integers. Errors on divide by zero. Truncates towards zero.

Functions

integrity

function integrity(IntegrityCheckStateNP memory, Operand operand) internal pure returns (uint256, uint256);

run

int-div Division with implied checks from the Solidity 0.8.x compiler.

function run(InterpreterStateNP memory, Operand operand, Pointer stackTop) internal pure returns (Pointer);

referenceFn

Gas intensive reference implementation of division for testing.

function referenceFn(InterpreterStateNP memory, Operand, uint256[] memory inputs)
    internal
    pure
    returns (uint256[] memory outputs);