MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / pop_stack

Function pop_stack

icicle-cortexm/src/unicorn_api.rs:393–396  ·  view source on GitHub ↗
(ctx: *mut c_void)

Source from the content-addressed store, hash-verified

391}
392
393pub unsafe extern "C" fn pop_stack(ctx: *mut c_void) {
394 let vm = unsafe { &mut *(*ctx.cast::<Context>()).vm };
395 vm.env.as_mut_any().downcast_mut::<FuzzwareEnvironment>().unwrap().pop_stack(&mut vm.cpu);
396}
397
398pub unsafe extern "C" fn notify_irq_enable_state(ctx: *mut c_void, irq: i32, is_enabled: bool) {
399 let vm = unsafe { &mut *(*ctx.cast::<Context>()).vm };

Callers

nothing calls this directly

Calls 2

pop_stackMethod · 0.80
as_mut_anyMethod · 0.80

Tested by

no test coverage detected