Enum cranelift_codegen::ir::instructions::CallInfo
source · pub enum CallInfo<'a> {
NotACall,
Direct(FuncRef, &'a [Value]),
Indirect(SigRef, &'a [Value]),
}
Expand description
Information about call instructions.
Variants§
NotACall
This is not a call instruction.
Direct(FuncRef, &'a [Value])
This is a direct call to an external function declared in the preamble. See
DataFlowGraph.ext_funcs
.
Indirect(SigRef, &'a [Value])
This is an indirect call with the specified signature. See DataFlowGraph.signatures
.
Auto Trait Implementations§
impl<'a> RefUnwindSafe for CallInfo<'a>
impl<'a> Send for CallInfo<'a>
impl<'a> Sync for CallInfo<'a>
impl<'a> Unpin for CallInfo<'a>
impl<'a> UnwindSafe for CallInfo<'a>
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