Struct cranelift_codegen::isa::x64::CallInfo
source · pub struct CallInfo {
pub uses: SmallVec<[CallArgPair; 8]>,
pub defs: SmallVec<[CallRetPair; 8]>,
pub clobbers: PRegSet,
pub opcode: Opcode,
}
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.
opcode: Opcode
The opcode of this call.
Trait Implementations§
Auto Trait Implementations§
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