MCPcopy Index your code
hub / github.com/RustPython/RustPython / jump_relative_backward

Method jump_relative_backward

crates/vm/src/frame.rs:6895–6898  ·  view source on GitHub ↗
(&mut self, delta: u32, caches: u32)

Source from the content-addressed store, hash-verified

6893 /// targets, and debug builds will catch underflow via Rust's default checks.
6894 #[inline]
6895 fn jump_relative_backward(&mut self, delta: u32, caches: u32) {
6896 let target = self.lasti() + caches - delta;
6897 self.update_lasti(|i| *i = target);
6898 }
6899
6900 #[inline]
6901 fn pop_jump_if_relative(

Callers 1

execute_instructionMethod · 0.80

Calls 2

lastiMethod · 0.80
update_lastiMethod · 0.80

Tested by

no test coverage detected