Enum rustc_middle::mir::Rvalue [−][src]
pub enum Rvalue<'tcx> {
Show 14 variants
Use(Operand<'tcx>),
Repeat(Operand<'tcx>, &'tcx Const<'tcx>),
Ref(Region<'tcx>, BorrowKind, Place<'tcx>),
ThreadLocalRef(DefId),
AddressOf(Mutability, Place<'tcx>),
Len(Place<'tcx>),
Cast(CastKind, Operand<'tcx>, Ty<'tcx>),
BinaryOp(BinOp, Box<(Operand<'tcx>, Operand<'tcx>)>),
CheckedBinaryOp(BinOp, Box<(Operand<'tcx>, Operand<'tcx>)>),
NullaryOp(NullOp, Ty<'tcx>),
UnaryOp(UnOp, Operand<'tcx>),
Discriminant(Place<'tcx>),
Aggregate(Box<AggregateKind<'tcx>>, Vec<Operand<'tcx>>),
ShallowInitBox(Operand<'tcx>, Ty<'tcx>),
}
Expand description
Rvalues
Variants
Use(Operand<'tcx>)
x (either a move or copy, depending on type of x)
Tuple Fields of Use
0: Operand<'tcx>
[x; 32]
Ref(Region<'tcx>, BorrowKind, Place<'tcx>)
&x or &mut x
Tuple Fields of Ref
ThreadLocalRef(DefId)
Accessing a thread local static. This is inherently a runtime operation, even if llvm
treats it as an access to a static. This Rvalue
yields a reference to the thread local
static.
Tuple Fields of ThreadLocalRef
0: DefId
AddressOf(Mutability, Place<'tcx>)
Create a raw pointer to the given place
Can be generated by raw address of expressions (&raw const x
),
or when casting a reference to a raw pointer.
Tuple Fields of AddressOf
0: Mutability
1: Place<'tcx>
Len(Place<'tcx>)
length of a [X]
or [X;n]
value
Tuple Fields of Len
0: Place<'tcx>
Discriminant(Place<'tcx>)
Read the discriminant of an ADT.
Undefined (i.e., no effort is made to make it defined, but there’s no reason why it cannot be defined to return, say, a 0) if ADT is not an enum.
Tuple Fields of Discriminant
0: Place<'tcx>
Aggregate(Box<AggregateKind<'tcx>>, Vec<Operand<'tcx>>)
Creates 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.
Tuple Fields of Aggregate
0: Box<AggregateKind<'tcx>>
1: Vec<Operand<'tcx>>
Transmutes a *mut u8
into shallow-initialized Box<T>
.
This is different a normal transmute because dataflow analysis will treat the box as initialized but its content as uninitialized.
Implementations
pub fn ty<D>(&self, local_decls: &D, tcx: TyCtxt<'tcx>) -> Ty<'tcx> where
D: HasLocalDecls<'tcx>,
Returns true
if this rvalue is deeply initialized (most rvalues) or
whether its only shallowly initialized (Rvalue::Box
).
Trait Implementations
Returns true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read more
Returns true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read more
“Free” regions in this context means that it has any region that is not (a) erased or (b) late-bound. Read more
True if there are any un-erased free regions.
Indicates whether this value definitely references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
Indicates whether this value references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
True if there are any late-bound regions
Indicates whether this value still has parameters/placeholders/inference variables
which could be replaced later, in a way that would change the results of impl
specialization. Read more
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for Rvalue<'tcx>
impl<'tcx> !UnwindSafe for Rvalue<'tcx>
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 40 bytes
Size for each variant:
Use
: 31 bytesRepeat
: 39 bytesRef
: 31 bytesThreadLocalRef
: 11 bytesAddressOf
: 23 bytesLen
: 23 bytesCast
: 39 bytesBinaryOp
: 15 bytesCheckedBinaryOp
: 15 bytesNullaryOp
: 15 bytesUnaryOp
: 31 bytesDiscriminant
: 23 bytesAggregate
: 39 bytesShallowInitBox
: 39 bytes