Enum rustc::mir::repr::Rvalue [] [src]

pub enum Rvalue<'tcx> {
    Use(Operand<'tcx>),
    Repeat(Operand<'tcx>, TypedConstVal<'tcx>),
    Ref(RegionBorrowKindLvalue<'tcx>),
    Len(Lvalue<'tcx>),
    Cast(CastKindOperand<'tcx>, Ty<'tcx>),
    BinaryOp(BinOpOperand<'tcx>, Operand<'tcx>),
    UnaryOp(UnOpOperand<'tcx>),
    Box(Ty<'tcx>),
    Aggregate(AggregateKind<'tcx>, Vec<Operand<'tcx>>),
    Slice {
        input: Lvalue<'tcx>,
        from_start: usize,
        from_end: usize,
    },
    InlineAsm {
        asm: InlineAsm,
        outputs: Vec<Lvalue<'tcx>>,
        inputs: Vec<Operand<'tcx>>,
    },
}
Unstable (rustc_private)

Rvalues

Variants

Use(Operand<'tcx>)
Unstable (rustc_private)

x (either a move or copy, depending on type of x)

Repeat(Operand<'tcx>, TypedConstVal<'tcx>)
Unstable (rustc_private)

[x; 32]

Ref(RegionBorrowKindLvalue<'tcx>)
Unstable (rustc_private)

&x or &mut x

Len(Lvalue<'tcx>)
Unstable (rustc_private)

length of a [X] or [X;n] value

Cast(CastKindOperand<'tcx>, Ty<'tcx>)
Unstable (rustc_private)
BinaryOp(BinOpOperand<'tcx>, Operand<'tcx>)
Unstable (rustc_private)
UnaryOp(UnOpOperand<'tcx>)
Unstable (rustc_private)
Box(Ty<'tcx>)
Unstable (rustc_private)

Creates an uninitialized Box

Aggregate(AggregateKind<'tcx>, Vec<Operand<'tcx>>)
Unstable (rustc_private)

Create an aggregate value, like a tuple or struct. This is only needed because we want to distinguish dest = Foo { x: ..., y: ... } from dest.x = ...; dest.y = ...; in the case that Foo has a destructor. These rvalues can be optimized away after type-checking and before lowering.

Slice
Unstable (rustc_private)

Generates a slice of the form &input[from_start..L-from_end] where L is the length of the slice. This is only created by slice pattern matching, so e.g. a pattern of the form [x, y, .., z] might create a slice with from_start=2 and from_end=1.

Fields

input: Lvalue<'tcx>
Unstable (rustc_private)
from_start: usize
Unstable (rustc_private)
from_end: usize
Unstable (rustc_private)
InlineAsm
Unstable (rustc_private)

Fields

asm: InlineAsm
Unstable (rustc_private)
outputs: Vec<Lvalue<'tcx>>
Unstable (rustc_private)
inputs: Vec<Operand<'tcx>>
Unstable (rustc_private)

Trait Implementations

impl<'tcx> Debug for Rvalue<'tcx>
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.

Derived Implementations

impl<'tcx> Decodable for Rvalue<'tcx>
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Rvalue<'tcx>, __D::Error>

impl<'tcx> Encodable for Rvalue<'tcx>
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl<'tcx> Clone for Rvalue<'tcx>
[src]

fn clone(&self) -> Rvalue<'tcx>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more