File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
extensions/memcpy/circuit/src Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -426,6 +426,7 @@ where
426
426
state : VmStateMut < F , TracingMemory , RA > ,
427
427
instruction : & Instruction < F > ,
428
428
) -> Result < ( ) , ExecutionError > {
429
+ eprintln ! ( "extensions/memcpy/circuit/src/iteration.rs::execute: PREFLIGHT: MemcpyIterExecutor executing MEMCPY_LOOP opcode" ) ;
429
430
let Instruction { opcode, c, .. } = instruction;
430
431
debug_assert_eq ! ( * opcode, Rv32MemcpyOpcode :: MEMCPY_LOOP . global_opcode( ) ) ;
431
432
let shift = c. as_canonical_u32 ( ) as u8 ; // written into c slot
@@ -616,8 +617,8 @@ where
616
617
debug_assert_eq ! ( record. inner. len, u32 :: from_le_bytes( len_data) ) ;
617
618
618
619
* state. pc = state. pc . wrapping_add ( DEFAULT_PC_STEP ) ;
619
- eprintln ! ( "preflight height: {:?}" , num_iters + 1 ) ;
620
- eprintln ! ( "Preflight MemcpyIterExecutor finished" ) ;
620
+ eprintln ! ( "extensions/memcpy/circuit/src/iteration.rs::execute: PREFLIGHT: preflight height: {:?}" , num_iters + 1 ) ;
621
+ eprintln ! ( "extensions/memcpy/circuit/src/iteration.rs::execute: PREFLIGHT: Preflight MemcpyIterExecutor finished" ) ;
621
622
Ok ( ( ) )
622
623
}
623
624
}
You can’t perform that action at this time.
0 commit comments