LibSubParse

Git Source

Functions

subParserConstant

Sub parse a value into the bytecode that will run on the interpreter to push the given value onto the stack, using the constant opcode at eval.

function subParserConstant(uint256 constantsHeight, uint256 value)
    internal
    pure
    returns (bool, bytes memory, uint256[] memory);

subParserExtern

Sub parse a known extern opcode index into the bytecode that will run on the interpreter to call the given extern contract. This requires the parsing has already matched a word to the extern opcode index, so it implies the parse meta has been traversed and the parse index has been mapped to an extern opcode index somehow.

function subParserExtern(
    IInterpreterExternV3 extern,
    uint256 constantsHeight,
    uint256 inputsByte,
    uint256 outputsByte,
    Operand operand,
    uint256 opcodeIndex
) internal pure returns (bool, bytes memory, uint256[] memory);

subParseSlice

function subParseSlice(ParseState memory state, uint256 cursor, uint256 end) internal pure;

subParse

function subParse(ParseState memory state, bytes memory bytecode)
    internal
    pure
    returns (bytes memory, uint256[] memory);

consumeInputData

function consumeInputData(
    bytes memory data,
    bytes memory meta,
    bytes memory operandHandlers,
    bytes memory literalParsers
) internal pure returns (uint256 constantsHeight, uint256 ioByte, ParseState memory state);