This circuit takes a queue of decommit requests for DecommitSorter circuit. For each decommit request, it checks that the linear hash of all opcodes will be equal to this hash that is stored in the decommit request. Also, it writes code to the corresponding memory page. Briefly, it unpacks the queue from the opcode and updates the memory queue and check correctness.
First part
The circuit begins with allocating input part of the PI.
let CodeDecommitterCircuitInstanceWitness {
closed_form_input,
sorted_requests_queue_witness,
code_words,
} = witness;
let mut structured_input =
CodeDecommitterCycleInputOutput::alloc_ignoring_outputs(cs, closed_form_input.clone());
We chose what memory_queue state and decommitments_queue state to continue to work with.
for (part_of_first, part_of_second) in hash
.inner
.iter()
.zip(state.hash_to_compare_against.inner.iter())
{
Num::conditionally_enforce_equal(
cs,
finalize,
&part_of_first.into_num(),
&part_of_second.into_num(),
);
}
Final part
Now we update PI output parts and compute a commitment. Then we allocate it as public variables.
let compact_form =
ClosedFormInputCompactForm::from_full_form(cs, &structured_input, round_function);
let input_commitment = commit_variable_length_encodable_item(cs, &compact_form, round_function);
for el in input_commitment.iter() {
let gate = PublicInputGate::new(el.get_variable());
gate.add_to_cs(cs);
}