[][src]Trait cranelift_codegen_meta::cdsl::instructions::Bindable

pub(crate) trait Bindable {
    fn bind(&self, parameter: impl Into<BindParameter>) -> BoundInstruction;
}

Instructions can have parameters bound to them to specialize them for more specific encodings (e.g. the encoding for adding two float types may be different than that of adding two integer types)

Required methods

fn bind(&self, parameter: impl Into<BindParameter>) -> BoundInstruction

Bind a parameter to an instruction

Loading content...

Implementations on Foreign Types

impl Bindable for Rc<InstructionContent>[src]

Loading content...

Implementors

impl Bindable for InstSpec[src]

impl Bindable for BoundInstruction[src]

Loading content...