pub struct Save {
pub reg: PhysReg,
pub at: i32,
}Expand description
One register the prologue puts away in the frame, and where in the frame it goes.
A pushed register does not need one of these, because where it goes is wherever the stack pointer had reached, and the epilogue pops them back in the opposite order without having to know. A register that is stored rather than pushed does need one.
Fields§
§reg: PhysRegThe register.
at: i32Where it goes, from the stack pointer in the body of the function.
Trait Implementations§
impl Copy for Save
impl Eq for Save
impl StructuralPartialEq for Save
Auto Trait Implementations§
impl Freeze for Save
impl RefUnwindSafe for Save
impl Send for Save
impl Sync for Save
impl Unpin for Save
impl UnsafeUnpin for Save
impl UnwindSafe for Save
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more