Enum cranelift_codegen::ir::instructions::CallInfo[][src]

pub enum CallInfo<'a> {
    NotACall,
    Direct(FuncRef&'a [Value]),
    Indirect(SigRef&'a [Value]),
}

Information about call instructions.

Variants

This is not a call instruction.

This is a direct call to an external function declared in the preamble. See DataFlowGraph.ext_funcs.

This is an indirect call with the specified signature. See DataFlowGraph.signatures.

Auto Trait Implementations

impl<'a> Send for CallInfo<'a>

impl<'a> Sync for CallInfo<'a>