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

Method data_limit

crates/vm/src/datastack.rs:45–47  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

43 /// Pointer past the last usable byte.
44 #[inline(always)]
45 fn data_limit(&self) -> *mut u8 {
46 unsafe { (self as *const Self as *mut u8).add(self.size) }
47 }
48}
49
50/// Per-thread data stack for bump-allocating frame-local data.

Callers 3

newMethod · 0.80
push_slowMethod · 0.80
pop_slowMethod · 0.80

Calls 1

addMethod · 0.45

Tested by

no test coverage detected