Struct cranelift_codegen::isa::x64::CallInfo
source · pub struct CallInfo {
pub uses: SmallVec<[CallArgPair; 8]>,
pub defs: SmallVec<[CallRetPair; 8]>,
pub clobbers: PRegSet,
pub callee_pop_size: u32,
pub callee_conv: CallConv,
}
Expand description
Out-of-line data for calls, to keep the size of Inst
down.
Fields§
§uses: SmallVec<[CallArgPair; 8]>
Register uses of this call.
defs: SmallVec<[CallRetPair; 8]>
Register defs of this call.
clobbers: PRegSet
Registers clobbered by this call, as per its calling convention.
callee_pop_size: u32
The number of bytes that the callee will pop from the stack for the
caller, if any. (Used for popping stack arguments with the tail
calling convention.)
callee_conv: CallConv
The calling convention of the callee.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallInfo
impl RefUnwindSafe for CallInfo
impl Send for CallInfo
impl Sync for CallInfo
impl Unpin for CallInfo
impl UnwindSafe for CallInfo
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