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

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])

Tuple Fields

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

Indirect(SigRef&'a [Value])

Tuple Fields

0: SigRef

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.