Enum cranelift_codegen::ir::instructions::CallInfo
source · 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
.