Enum rustc_codegen_ssa::traits::InlineAsmOperandRef[][src]

pub enum InlineAsmOperandRef<'tcx, B: BackendTypes + ?Sized> {
    In {
        reg: InlineAsmRegOrRegClass,
        value: OperandRef<'tcx, B::Value>,
    },
    Out {
        reg: InlineAsmRegOrRegClass,
        late: bool,
        place: Option<PlaceRef<'tcx, B::Value>>,
    },
    InOut {
        reg: InlineAsmRegOrRegClass,
        late: bool,
        in_value: OperandRef<'tcx, B::Value>,
        out_place: Option<PlaceRef<'tcx, B::Value>>,
    },
    Const {
        string: String,
    },
    SymFn {
        instance: Instance<'tcx>,
    },
    SymStatic {
        def_id: DefId,
    },
}

Variants

In

Fields of In

reg: InlineAsmRegOrRegClassvalue: OperandRef<'tcx, B::Value>
Out

Fields of Out

reg: InlineAsmRegOrRegClasslate: boolplace: Option<PlaceRef<'tcx, B::Value>>
InOut

Fields of InOut

reg: InlineAsmRegOrRegClasslate: boolin_value: OperandRef<'tcx, B::Value>out_place: Option<PlaceRef<'tcx, B::Value>>
Const

Fields of Const

string: String
SymFn

Fields of SymFn

instance: Instance<'tcx>
SymStatic

Fields of SymStatic

def_id: DefId

Trait Implementations

Formats the value using the given formatter. Read more

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.

Layout

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.