Input / output operations

In this section we describe the AIR constraints for Miden VM input / output operations. These operations move values between the stack and other components of the VM such as program code (i.e., decoder), memory, and advice provider.

PUSH

The PUSH operation pushes the provided immediate value onto the stack (i.e., sets the value of register). Currently, it is the only operation in Miden VM which carries an immediate value. The semantics of this operation are explained in the decoder section.

The effect of this operation on the rest of the stack is:

  • Right shift starting from position .

SDEPTH

Assume is the current depth of the stack stored in the stack bookkeeping register (as described here). The SDEPTH pushes onto the stack. The diagram below illustrates this graphically.

sdepth

Stack transition for this operation must satisfy the following constraints:

The effect of this operation on the rest of the stack is:

  • Right shift starting from position .

ADVPOP

Assume is an element at the top of the advice stack. The ADVPOP operation removes from the advice stack and pushes it onto the operand stack. The diagram below illustrates this graphically.

advpop

The ADVPOP operation does not impose any constraints against the first element of the operand stack.

The effect of this operation on the rest of the operand stack is:

  • Right shift starting from position .

ADVPOPW

Assume , , , and , are the elements at the top of the advice stack (with being on top). The ADVPOPW operation removes these elements from the advice stack and puts them onto the operand stack by overwriting the top stack elements. The diagram below illustrates this graphically.

advpopw

The ADVPOPW operation does not impose any constraints against the top elements of the operand stack.

The effect of this operation on the rest of the operand stack is:

  • No change starting from position .

Memory access operations

Miden VM exposes several operations for reading from and writing to random access memory. Memory in Miden VM is managed by the Memory chiplet.

Communication between the stack and the memory chiplet is accomplished via the chiplet bus . To make requests to the chiplet bus we need to divide its current value by the value representing memory access request. The structure of memory access request value is described here.

To enforce the correctness of memory access, we can use the following constraint:

In the above, is the value of memory access request. Thus, to describe AIR constraint for memory operations, it is sufficient to describe how is computed. We do this in the following sections.

MLOADW

Assume that the word with elements is located in memory at address . The MLOADW operation pops an element off the stack, interprets it as a memory address, and replaces the remaining 4 elements at the top of the stack with values located at the specified address. The diagram below illustrates this graphically.

mloadw

To simplify description of the memory access request value, we first define a variable for the value that represents the state of memory after the operation:

Using the above variable, we define the value representing the memory access request as follows:

In the above:

  • is the unique operation label of the memory read operation.
  • is the identifier of the current memory context.
  • is the memory address from which the values are to be loaded onto the stack.
  • is the current clock cycle of the VM.

The effect of this operation on the rest of the stack is:

  • Left shift starting from position .

MLOAD

Assume that the word with elements is located in memory at address . The MLOAD operation pops an element off the stack, interprets it as a memory address, and pushes the first element of the word located at the specified address to the stack. The diagram below illustrates this graphically.

mload

To simplify description of the memory access request value, we first define a variable for the value that represents the state of memory after the operation:

Note: the values in registers are set by the prover non-deterministically.

Using the above variable, we define the value representing the memory access request as follows:

In the above:

  • is the unique operation label of the memory read operation.
  • is the identifier of the current memory context.
  • is the memory address from which the value is to be loaded onto the stack.
  • is the current clock cycle of the VM.

The effect of this operation on the rest of the stack is:

  • No change starting from position .

MSTOREW

The MSTOREW operation pops an element off the stack, interprets it as a memory address, and writes the remaining elements at the top of the stack into memory at the specified address. The stored elements are not removed from the stack. The diagram below illustrates this graphically.

mstorew

After the operation the contents of memory at address would be set to .

To simplify description of the memory access request value, we first define a variable for the value that represents the state of memory after the operation:

Using the above variable, we define the value representing the memory access request as follows:

In the above:

  • is the unique operation label of the memory write operation.
  • is the identifier of the current memory context.
  • is the memory address into which the values from the stack are to be saved.
  • is the current clock cycle of the VM.

The effect of this operation on the rest of the stack is:

  • Left shift starting from position .

MSTORE

The MSTORE operation pops an element off the stack, interprets it as a memory address, and writes the remaining element at the top of the stack into the first element of the word located at the specified memory address. The remaining elements of the word are not affected. The diagram below illustrates this graphically.

mstore

After the operation the contents of memory at address would be set to .

To simplify description of the memory access request value, we first define a variable for the value that represents the state of memory after the operation:

Note: the values in registers are set by the prover non-deterministically.

Using the above variable, we define the value representing the memory access request as follows:

In the above:

  • is the unique operation label of the memory write operation.
  • is the identifier of the current memory context.
  • is the memory address into which the value from the stack is to be saved.
  • is the current clock cycle of the VM.

The effect of this operation on the rest of the stack is:

  • Left shift starting from position .

MSTREAM

The MSTREAM operation loads two words from memory, and replaces the top 8 elements of the stack with them, element-wise, in stack order. The memory address from which the words are loaded is stored in the 13th stack element (position 12). The diagram below illustrates this graphically.

mstream

After the operation, the memory address is incremented by 2.

To simplify description of the memory access request value, we first define variables for the values that represent the state of memory after the operation:

Using the above variables, we define the values representing the memory access request as follows:

In the above:

  • is the unique operation label of the memory read operation.
  • is the identifier of the current memory context.
  • and are the memory addresses from which the values are to be loaded onto the stack.
  • is the current clock cycle of the VM.

The effect of this operation on the rest of the stack is:

  • No change starting from position except position .