Enum rustc_middle::thir::ExprKind [−][src]
pub enum ExprKind<'tcx> {
Show 41 variants
Scope {
region_scope: Scope,
lint_level: LintLevel,
value: ExprId,
},
Box {
value: ExprId,
},
If {
if_then_scope: Scope,
cond: ExprId,
then: ExprId,
else_opt: Option<ExprId>,
},
Call {
ty: Ty<'tcx>,
fun: ExprId,
args: Box<[ExprId]>,
from_hir_call: bool,
fn_span: Span,
},
Deref {
arg: ExprId,
},
Binary {
op: BinOp,
lhs: ExprId,
rhs: ExprId,
},
LogicalOp {
op: LogicalOp,
lhs: ExprId,
rhs: ExprId,
},
Unary {
op: UnOp,
arg: ExprId,
},
Cast {
source: ExprId,
},
Use {
source: ExprId,
},
NeverToAny {
source: ExprId,
},
Pointer {
cast: PointerCast,
source: ExprId,
},
Loop {
body: ExprId,
},
Let {
expr: ExprId,
pat: Pat<'tcx>,
},
Match {
scrutinee: ExprId,
arms: Box<[ArmId]>,
},
Block {
body: Block,
},
Assign {
lhs: ExprId,
rhs: ExprId,
},
AssignOp {
op: BinOp,
lhs: ExprId,
rhs: ExprId,
},
Field {
lhs: ExprId,
name: Field,
},
Index {
lhs: ExprId,
index: ExprId,
},
VarRef {
id: HirId,
},
UpvarRef {
closure_def_id: DefId,
var_hir_id: HirId,
},
Borrow {
borrow_kind: BorrowKind,
arg: ExprId,
},
AddressOf {
mutability: Mutability,
arg: ExprId,
},
Break {
label: Scope,
value: Option<ExprId>,
},
Continue {
label: Scope,
},
Return {
value: Option<ExprId>,
},
ConstBlock {
value: &'tcx Const<'tcx>,
},
Repeat {
value: ExprId,
count: &'tcx Const<'tcx>,
},
Array {
fields: Box<[ExprId]>,
},
Tuple {
fields: Box<[ExprId]>,
},
Adt(Box<Adt<'tcx>>),
PlaceTypeAscription {
source: ExprId,
user_ty: Option<Canonical<'tcx, UserType<'tcx>>>,
},
ValueTypeAscription {
source: ExprId,
user_ty: Option<Canonical<'tcx, UserType<'tcx>>>,
},
Closure {
closure_id: DefId,
substs: UpvarSubsts<'tcx>,
upvars: Box<[ExprId]>,
movability: Option<Movability>,
fake_reads: Vec<(ExprId, FakeReadCause, HirId)>,
},
Literal {
literal: &'tcx Const<'tcx>,
user_ty: Option<Canonical<'tcx, UserType<'tcx>>>,
const_id: Option<DefId>,
},
StaticRef {
literal: &'tcx Const<'tcx>,
def_id: DefId,
},
InlineAsm {
template: &'tcx [InlineAsmTemplatePiece],
operands: Box<[InlineAsmOperand<'tcx>]>,
options: InlineAsmOptions,
line_spans: &'tcx [Span],
},
ThreadLocalRef(DefId),
LlvmInlineAsm {
asm: &'tcx LlvmInlineAsmInner,
outputs: Box<[ExprId]>,
inputs: Box<[ExprId]>,
},
Yield {
value: ExprId,
},
}
Variants
Scope
s are used to explicitely mark destruction scopes,
and to track the HirId
of the expressions within the scope.
A box <value>
expression.
Fields of Box
value: ExprId
An if
expression.
A function call. Method calls and overloaded operators are converted to plain function calls.
Fields of Call
ty: Ty<'tcx>
fun: ExprId
The function itself.
args: Box<[ExprId]>
The arguments passed to the function.
Note: in some cases (like calling a closure), the function call f(...args)
gets
rewritten as a call to a function trait method (e.g. FnOnce::call_once(f, (...args))
).
from_hir_call: bool
Whether this is from an overloaded operator rather than a
function call from HIR. true
for overloaded function call.
fn_span: Span
The span of the function, without the dot and receiver
(e.g. foo(a, b)
in x.foo(a, b)
).
A non-overloaded dereference.
Fields of Deref
arg: ExprId
A non-overloaded binary operation.
A logical operation. This is distinct from BinaryOp
because
the operands need to be lazily evaluated.
A non-overloaded unary operation. Note that here the deref (*
)
operator is represented by ExprKind::Deref
.
A cast: <source> as <type>
. The type we cast to is the type of
the parent expression.
Fields of Cast
source: ExprId
Fields of Use
source: ExprId
A coercion from !
to any type.
Fields of NeverToAny
source: ExprId
A pointer cast. More information can be found in PointerCast
.
Fields of Pointer
cast: PointerCast
source: ExprId
A loop
expression.
Fields of Loop
body: ExprId
A match
expression.
A block.
Fields of Block
body: Block
An assignment: lhs = rhs
.
A non-overloaded operation assignment, e.g. lhs += rhs
.
Access to a struct or tuple field.
A non-overloaded indexing operation.
A local variable.
Fields of VarRef
id: HirId
Used to represent upvars mentioned in a closure/generator
Fields of UpvarRef
A borrow, e.g. &arg
.
Fields of Borrow
borrow_kind: BorrowKind
arg: ExprId
A &raw [const|mut] $place_expr
raw borrow resulting in type *[const|mut] T
.
Fields of AddressOf
mutability: Mutability
arg: ExprId
A break
expression.
A continue
expression.
Fields of Continue
label: Scope
A return
expression.
An inline const
block, e.g. const {}
.
Fields of ConstBlock
value: &'tcx Const<'tcx>
An array literal constructed from one repeated element, e.g. [1; 5]
.
An array, e.g. [a, b, c, d]
.
A tuple, e.g. (a, b, c, d)
.
An ADT constructor, e.g. Foo {x: 1, y: 2}
.
A type ascription on a place.
Fields of PlaceTypeAscription
A type ascription on a value, e.g. 42: i32
.
Fields of ValueTypeAscription
A closure definition.
Fields of Closure
closure_id: DefId
substs: UpvarSubsts<'tcx>
upvars: Box<[ExprId]>
movability: Option<Movability>
fake_reads: Vec<(ExprId, FakeReadCause, HirId)>
A literal.
Fields of Literal
A literal containing the address of a static
.
This is only distinguished from Literal
so that we can register some
info for diagnostics.
Inline assembly, i.e. asm!()
.
Fields of InlineAsm
template: &'tcx [InlineAsmTemplatePiece]
operands: Box<[InlineAsmOperand<'tcx>]>
options: InlineAsmOptions
line_spans: &'tcx [Span]
ThreadLocalRef(DefId)
An expression taking a reference to a thread local.
Tuple Fields of ThreadLocalRef
0: DefId
Inline LLVM assembly, i.e. llvm_asm!()
.
A yield
expression.
Fields of Yield
value: ExprId
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for ExprKind<'tcx>
impl<'tcx> !UnwindSafe for ExprKind<'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: 80 bytes
Size for each variant:
Scope
: 23 bytesBox
: 7 bytesIf
: 23 bytesCall
: 39 bytesDeref
: 7 bytesBinary
: 11 bytesLogicalOp
: 11 bytesUnary
: 7 bytesCast
: 7 bytesUse
: 7 bytesNeverToAny
: 7 bytesPointer
: 7 bytesLoop
: 7 bytesLet
: 31 bytesMatch
: 23 bytesBlock
: 63 bytesAssign
: 11 bytesAssignOp
: 11 bytesField
: 11 bytesIndex
: 11 bytesVarRef
: 11 bytesUpvarRef
: 19 bytesBorrow
: 7 bytesAddressOf
: 7 bytesBreak
: 15 bytesContinue
: 11 bytesReturn
: 7 bytesConstBlock
: 15 bytesRepeat
: 15 bytesArray
: 23 bytesTuple
: 23 bytesAdt
: 15 bytesPlaceTypeAscription
: 63 bytesValueTypeAscription
: 63 bytesClosure
: 71 bytesLiteral
: 79 bytesStaticRef
: 23 bytesInlineAsm
: 55 bytesThreadLocalRef
: 11 bytesLlvmInlineAsm
: 47 bytesYield
: 7 bytes