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

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

Tuple Fields of Direct

0: FuncRef1: &'a [Value]
Indirect

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

Tuple Fields of Indirect

0: SigRef1: &'a [Value]

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.