use super::*;
use crate::test_utils::TestHost;
#[test]
fn test_advice_provider() {
let kernel_source = "
pub proc foo
push.2323 mem_store.100 trace.11
end
";
let program_source = "
@locals(4)
proc truncate_stack
loc_storew_be.0 dropw movupw.3
sdepth neq.16
while.true
dropw movupw.3
sdepth neq.16
end
loc_loadw_be.0
end
# mainly used to break basic blocks
proc noop
swap swap
end
# Tests different cases of batch sizes
proc basic_block
# batch with 1 group
swap drop swap trace.1
call.noop
# batch with 2 groups
push.1 drop trace.2
call.noop
# batch with 3 groups (rounded up to 4)
push.1 push.2 drop drop trace.3
call.noop
# batch with 5 groups (rounded up to 8)
push.1 push.2 push.3 push.4 drop drop drop drop trace.4
call.noop
# batch with 8 pushes (which forces a noop to be inserted in the last position of the batch)
push.0 push.1 push.2 push.3 push.4 push.5 push.6 push.7 trace.5
call.noop
# basic block with >1 batches (where clk needs to be incremented in-between batches due to the inserted RESPAN)
push.0 push.1 push.2 push.3 push.4 push.5 push.6 trace.6
drop drop drop drop drop drop drop drop drop trace.7
end
proc exec_me
push.22 mem_store.0
trace.9
end
proc dyncall_me
push.23 mem_store.0
trace.100
end
proc dynexec_me
push.24 mem_store.0
trace.101
end
proc will_syscall
syscall.foo
end
proc control_flow
# if true
push.1 trace.16 if.true
swap swap trace.17
else
swap swap
end
# if false
push.0 trace.18 if.true
swap swap
else
swap swap trace.19
end
# loop
push.3 push.1
while.true
trace.20
sub.1 dup neq.0
end
trace.21
end
begin
# Check that initial state is consistent
trace.0 push.10 add drop trace.1
# Check that basic blocks are handled correctly
exec.basic_block
# Check that memory state is restored properly after call
push.42 mem_store.0 trace.8
exec.exec_me
trace.10
# Check that syscalls are handled correctly
call.will_syscall
trace.12
# Check that dyncalls are handled correctly
procref.dyncall_me mem_storew_le.4 dropw push.4 dyncall trace.13
procref.will_syscall mem_storew_le.8 dropw push.8 dyncall trace.14
# Check that dynexecs are handled correctly
procref.dynexec_me mem_storew_le.4 dropw push.4 dynexec trace.15
# Check that control flow operations are handled correctly
exec.control_flow
exec.truncate_stack
trace.22
end
";
let (program, kernel_lib) = {
let source_manager = Arc::new(DefaultSourceManager::default());
let kernel_lib =
Assembler::new(source_manager.clone()).assemble_kernel(kernel_source).unwrap();
let program = Assembler::with_kernel(source_manager, kernel_lib.clone())
.assemble_program(program_source)
.unwrap();
(program, kernel_lib)
};
let mut fast_host = TestHost::with_kernel_forest(kernel_lib.mast_forest().clone());
let processor = FastProcessor::new(StackInputs::default())
.with_advice(AdviceInputs::default())
.with_debugging(true)
.with_tracing(true);
let fast_stack_outputs = processor.execute_sync(&program, &mut fast_host).unwrap().stack;
insta::assert_debug_snapshot!("stack_outputs", fast_stack_outputs);
insta::assert_debug_snapshot!("trace_events", fast_host.snapshots());
}