2015-08-18 17:59:21 -04:00
|
|
|
//! See docs in build/expr/mod.rs
|
|
|
|
|
2019-02-08 06:28:15 +09:00
|
|
|
use crate::build::expr::category::Category;
|
|
|
|
use crate::build::ForGuard::{OutsideGuard, RefWithinGuard};
|
|
|
|
use crate::build::{BlockAnd, BlockAndExtension, Builder};
|
2020-11-18 22:54:31 -05:00
|
|
|
use rustc_hir::def_id::DefId;
|
|
|
|
use rustc_hir::HirId;
|
2020-11-26 00:05:18 -05:00
|
|
|
use rustc_middle::hir::place::ProjectionKind as HirProjectionKind;
|
2021-01-09 12:00:45 -05:00
|
|
|
use rustc_middle::middle::region;
|
2020-03-29 16:41:09 +02:00
|
|
|
use rustc_middle::mir::AssertKind::BoundsCheck;
|
|
|
|
use rustc_middle::mir::*;
|
2021-04-04 18:42:17 +02:00
|
|
|
use rustc_middle::thir::*;
|
2021-02-18 19:02:07 -05:00
|
|
|
use rustc_middle::ty::AdtDef;
|
2020-03-29 16:41:09 +02:00
|
|
|
use rustc_middle::ty::{self, CanonicalUserTypeAnnotation, Ty, TyCtxt, Variance};
|
2019-12-31 20:15:40 +03:00
|
|
|
use rustc_span::Span;
|
2020-11-26 00:05:18 -05:00
|
|
|
use rustc_target::abi::VariantIdx;
|
2015-08-18 17:59:21 -04:00
|
|
|
|
2019-09-26 05:38:33 +00:00
|
|
|
use rustc_index::vec::Idx;
|
2016-06-07 17:28:36 +03:00
|
|
|
|
2021-03-08 15:32:41 -08:00
|
|
|
use std::iter;
|
|
|
|
|
2020-11-18 22:54:31 -05:00
|
|
|
/// The "outermost" place that holds this value.
|
2021-02-18 19:02:07 -05:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) enum PlaceBase {
|
2020-11-18 22:54:31 -05:00
|
|
|
/// Denotes the start of a `Place`.
|
|
|
|
Local(Local),
|
|
|
|
|
|
|
|
/// When building place for an expression within a closure, the place might start off a
|
|
|
|
/// captured path. When `capture_disjoint_fields` is enabled, we might not know the capture
|
|
|
|
/// index (within the desugared closure) of the captured path until most of the projections
|
|
|
|
/// are applied. We use `PlaceBase::Upvar` to keep track of the root variable off of which the
|
|
|
|
/// captured path starts, the closure the capture belongs to and the trait the closure
|
|
|
|
/// implements.
|
|
|
|
///
|
|
|
|
/// Once we have figured out the capture index, we can convert the place builder to start from
|
|
|
|
/// `PlaceBase::Local`.
|
|
|
|
///
|
|
|
|
/// Consider the following example
|
|
|
|
/// ```rust
|
2022-04-15 15:04:34 -07:00
|
|
|
/// let t = (((10, 10), 10), 10);
|
2020-11-18 22:54:31 -05:00
|
|
|
///
|
|
|
|
/// let c = || {
|
|
|
|
/// println!("{}", t.0.0.0);
|
|
|
|
/// };
|
|
|
|
/// ```
|
|
|
|
/// Here the THIR expression for `t.0.0.0` will be something like
|
|
|
|
///
|
2022-04-15 15:04:34 -07:00
|
|
|
/// ```ignore (illustrative)
|
2020-11-18 22:54:31 -05:00
|
|
|
/// * Field(0)
|
|
|
|
/// * Field(0)
|
|
|
|
/// * Field(0)
|
|
|
|
/// * UpvarRef(t)
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// When `capture_disjoint_fields` is enabled, `t.0.0.0` is captured and we won't be able to
|
|
|
|
/// figure out that it is captured until all the `Field` projections are applied.
|
|
|
|
Upvar {
|
|
|
|
/// HirId of the upvar
|
|
|
|
var_hir_id: HirId,
|
|
|
|
/// DefId of the closure
|
|
|
|
closure_def_id: DefId,
|
|
|
|
/// The trait closure implements, `Fn`, `FnMut`, `FnOnce`
|
2021-01-09 12:00:45 -05:00
|
|
|
closure_kind: ty::ClosureKind,
|
|
|
|
},
|
2020-11-18 22:54:31 -05:00
|
|
|
}
|
|
|
|
|
2019-09-30 13:09:10 -03:00
|
|
|
/// `PlaceBuilder` is used to create places during MIR construction. It allows you to "build up" a
|
|
|
|
/// place by pushing more and more projections onto the end, and then convert the final set into a
|
|
|
|
/// place using the `into_place` method.
|
|
|
|
///
|
|
|
|
/// This is used internally when building a place for an expression like `a.b.c`. The fields `b`
|
|
|
|
/// and `c` can be progressively pushed onto the place builder that is created when converting `a`.
|
2021-02-18 19:02:07 -05:00
|
|
|
#[derive(Clone, Debug, PartialEq)]
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) struct PlaceBuilder<'tcx> {
|
2020-11-18 22:54:31 -05:00
|
|
|
base: PlaceBase,
|
2019-09-30 13:09:10 -03:00
|
|
|
projection: Vec<PlaceElem<'tcx>>,
|
|
|
|
}
|
|
|
|
|
2020-11-26 00:05:18 -05:00
|
|
|
/// Given a list of MIR projections, convert them to list of HIR ProjectionKind.
|
|
|
|
/// The projections are truncated to represent a path that might be captured by a
|
|
|
|
/// closure/generator. This implies the vector returned from this function doesn't contain
|
|
|
|
/// ProjectionElems `Downcast`, `ConstantIndex`, `Index`, or `Subslice` because those will never be
|
2021-04-19 15:57:08 +03:00
|
|
|
/// part of a path that is captured by a closure. We stop applying projections once we see the first
|
2020-11-26 00:05:18 -05:00
|
|
|
/// projection that isn't captured by a closure.
|
|
|
|
fn convert_to_hir_projections_and_truncate_for_capture<'tcx>(
|
2020-12-30 12:59:07 +01:00
|
|
|
mir_projections: &[PlaceElem<'tcx>],
|
2020-11-26 00:05:18 -05:00
|
|
|
) -> Vec<HirProjectionKind> {
|
2021-01-09 12:00:45 -05:00
|
|
|
let mut hir_projections = Vec::new();
|
2021-02-23 17:55:36 -05:00
|
|
|
let mut variant = None;
|
2020-11-26 00:05:18 -05:00
|
|
|
|
|
|
|
for mir_projection in mir_projections {
|
|
|
|
let hir_projection = match mir_projection {
|
|
|
|
ProjectionElem::Deref => HirProjectionKind::Deref,
|
|
|
|
ProjectionElem::Field(field, _) => {
|
2021-02-23 17:55:36 -05:00
|
|
|
let variant = variant.unwrap_or(VariantIdx::new(0));
|
|
|
|
HirProjectionKind::Field(field.index() as u32, variant)
|
2021-01-09 12:00:45 -05:00
|
|
|
}
|
2021-02-23 17:55:36 -05:00
|
|
|
ProjectionElem::Downcast(.., idx) => {
|
2021-02-25 18:03:41 -05:00
|
|
|
// We don't expect to see multi-variant enums here, as earlier
|
|
|
|
// phases will have truncated them already. However, there can
|
|
|
|
// still be downcasts, thanks to single-variant enums.
|
2021-02-23 17:55:36 -05:00
|
|
|
// We keep track of VariantIdx so we can use this information
|
2021-02-23 23:39:33 -05:00
|
|
|
// if the next ProjectionElem is a Field.
|
2021-02-23 17:55:36 -05:00
|
|
|
variant = Some(*idx);
|
|
|
|
continue;
|
2021-01-09 12:00:45 -05:00
|
|
|
}
|
2020-11-26 00:05:18 -05:00
|
|
|
ProjectionElem::Index(..)
|
|
|
|
| ProjectionElem::ConstantIndex { .. }
|
|
|
|
| ProjectionElem::Subslice { .. } => {
|
|
|
|
// We don't capture array-access projections.
|
|
|
|
// We can stop here as arrays are captured completely.
|
2021-01-09 12:00:45 -05:00
|
|
|
break;
|
|
|
|
}
|
2020-11-26 00:05:18 -05:00
|
|
|
};
|
2021-02-23 17:55:36 -05:00
|
|
|
variant = None;
|
2020-11-26 00:05:18 -05:00
|
|
|
hir_projections.push(hir_projection);
|
|
|
|
}
|
|
|
|
|
|
|
|
hir_projections
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return true if the `proj_possible_ancestor` represents an ancestor path
|
|
|
|
/// to `proj_capture` or `proj_possible_ancestor` is same as `proj_capture`,
|
|
|
|
/// assuming they both start off of the same root variable.
|
|
|
|
///
|
|
|
|
/// **Note:** It's the caller's responsibility to ensure that both lists of projections
|
|
|
|
/// start off of the same root variable.
|
|
|
|
///
|
|
|
|
/// Eg: 1. `foo.x` which is represented using `projections=[Field(x)]` is an ancestor of
|
|
|
|
/// `foo.x.y` which is represented using `projections=[Field(x), Field(y)]`.
|
|
|
|
/// Note both `foo.x` and `foo.x.y` start off of the same root variable `foo`.
|
|
|
|
/// 2. Since we only look at the projections here function will return `bar.x` as an a valid
|
|
|
|
/// ancestor of `foo.x.y`. It's the caller's responsibility to ensure that both projections
|
|
|
|
/// list are being applied to the same root variable.
|
|
|
|
fn is_ancestor_or_same_capture(
|
|
|
|
proj_possible_ancestor: &Vec<HirProjectionKind>,
|
2020-12-30 12:59:07 +01:00
|
|
|
proj_capture: &[HirProjectionKind],
|
2020-11-26 00:05:18 -05:00
|
|
|
) -> bool {
|
|
|
|
// We want to make sure `is_ancestor_or_same_capture("x.0.0", "x.0")` to return false.
|
|
|
|
// Therefore we can't just check if all projections are same in the zipped iterator below.
|
|
|
|
if proj_possible_ancestor.len() > proj_capture.len() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-08 15:32:41 -08:00
|
|
|
iter::zip(proj_possible_ancestor, proj_capture).all(|(a, b)| a == b)
|
2020-11-26 00:05:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the index of a capture within the desugared closure provided the closure's
|
|
|
|
/// `closure_min_captures` and the capture's index of the capture in the
|
|
|
|
/// `ty::MinCaptureList` of the root variable `var_hir_id`.
|
|
|
|
fn compute_capture_idx<'tcx>(
|
|
|
|
closure_min_captures: &ty::RootVariableMinCaptureList<'tcx>,
|
|
|
|
var_hir_id: HirId,
|
|
|
|
root_var_idx: usize,
|
|
|
|
) -> usize {
|
|
|
|
let mut res = 0;
|
|
|
|
for (var_id, capture_list) in closure_min_captures {
|
|
|
|
if *var_id == var_hir_id {
|
|
|
|
res += root_var_idx;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
res += capture_list.len();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Given a closure, returns the index of a capture within the desugared closure struct and the
|
|
|
|
/// `ty::CapturedPlace` which is the ancestor of the Place represented using the `var_hir_id`
|
|
|
|
/// and `projection`.
|
|
|
|
///
|
|
|
|
/// Note there will be at most one ancestor for any given Place.
|
|
|
|
///
|
|
|
|
/// Returns None, when the ancestor is not found.
|
|
|
|
fn find_capture_matching_projections<'a, 'tcx>(
|
2020-11-18 22:54:31 -05:00
|
|
|
typeck_results: &'a ty::TypeckResults<'tcx>,
|
|
|
|
var_hir_id: HirId,
|
|
|
|
closure_def_id: DefId,
|
2020-12-30 12:59:07 +01:00
|
|
|
projections: &[PlaceElem<'tcx>],
|
2020-11-26 00:05:18 -05:00
|
|
|
) -> Option<(usize, &'a ty::CapturedPlace<'tcx>)> {
|
|
|
|
let closure_min_captures = typeck_results.closure_min_captures.get(&closure_def_id)?;
|
|
|
|
let root_variable_min_captures = closure_min_captures.get(&var_hir_id)?;
|
|
|
|
|
|
|
|
let hir_projections = convert_to_hir_projections_and_truncate_for_capture(projections);
|
|
|
|
|
|
|
|
// If an ancestor is found, `idx` is the index within the list of captured places
|
|
|
|
// for root variable `var_hir_id` and `capture` is the `ty::CapturedPlace` itself.
|
|
|
|
let (idx, capture) = root_variable_min_captures.iter().enumerate().find(|(_, capture)| {
|
2021-01-09 12:00:45 -05:00
|
|
|
let possible_ancestor_proj_kinds =
|
|
|
|
capture.place.projections.iter().map(|proj| proj.kind).collect();
|
|
|
|
is_ancestor_or_same_capture(&possible_ancestor_proj_kinds, &hir_projections)
|
2020-11-26 00:05:18 -05:00
|
|
|
})?;
|
|
|
|
|
2022-03-30 01:39:38 -04:00
|
|
|
// Convert index to be from the perspective of the entire closure_min_captures map
|
2020-11-26 00:05:18 -05:00
|
|
|
// instead of just the root variable capture list
|
|
|
|
Some((compute_capture_idx(closure_min_captures, var_hir_id, idx), capture))
|
2020-11-18 22:54:31 -05:00
|
|
|
}
|
|
|
|
|
2020-11-26 00:05:18 -05:00
|
|
|
/// Takes a PlaceBuilder and resolves the upvar (if any) within it, so that the
|
|
|
|
/// `PlaceBuilder` now starts from `PlaceBase::Local`.
|
2020-11-18 22:54:31 -05:00
|
|
|
///
|
2021-02-25 18:03:41 -05:00
|
|
|
/// Returns a Result with the error being the PlaceBuilder (`from_builder`) that was not found.
|
2020-11-18 22:54:31 -05:00
|
|
|
fn to_upvars_resolved_place_builder<'a, 'tcx>(
|
|
|
|
from_builder: PlaceBuilder<'tcx>,
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
typeck_results: &'a ty::TypeckResults<'tcx>,
|
2021-02-02 21:07:52 -05:00
|
|
|
) -> Result<PlaceBuilder<'tcx>, PlaceBuilder<'tcx>> {
|
2020-11-18 22:54:31 -05:00
|
|
|
match from_builder.base {
|
|
|
|
PlaceBase::Local(_) => Ok(from_builder),
|
|
|
|
PlaceBase::Upvar { var_hir_id, closure_def_id, closure_kind } => {
|
2021-05-21 21:01:27 +02:00
|
|
|
let mut upvar_resolved_place_builder = PlaceBuilder::from(ty::CAPTURE_STRUCT_LOCAL);
|
2020-11-18 22:54:31 -05:00
|
|
|
match closure_kind {
|
|
|
|
ty::ClosureKind::Fn | ty::ClosureKind::FnMut => {
|
|
|
|
upvar_resolved_place_builder = upvar_resolved_place_builder.deref();
|
|
|
|
}
|
|
|
|
ty::ClosureKind::FnOnce => {}
|
|
|
|
}
|
|
|
|
|
2021-10-16 03:45:14 +02:00
|
|
|
let Some((capture_index, capture)) =
|
2021-01-09 12:00:45 -05:00
|
|
|
find_capture_matching_projections(
|
2020-11-18 22:54:31 -05:00
|
|
|
typeck_results,
|
|
|
|
var_hir_id,
|
|
|
|
closure_def_id,
|
|
|
|
&from_builder.projection,
|
2021-10-16 03:45:14 +02:00
|
|
|
) else {
|
2021-10-20 20:59:15 +02:00
|
|
|
let closure_span = tcx.def_span(closure_def_id);
|
2021-06-27 02:22:46 -04:00
|
|
|
if !enable_precise_capture(tcx, closure_span) {
|
2021-01-09 12:00:45 -05:00
|
|
|
bug!(
|
|
|
|
"No associated capture found for {:?}[{:#?}] even though \
|
2020-11-18 22:54:31 -05:00
|
|
|
capture_disjoint_fields isn't enabled",
|
2021-01-09 12:00:45 -05:00
|
|
|
var_hir_id,
|
|
|
|
from_builder.projection
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
debug!(
|
|
|
|
"No associated capture found for {:?}[{:#?}]",
|
|
|
|
var_hir_id, from_builder.projection,
|
|
|
|
);
|
|
|
|
}
|
2021-02-23 17:55:36 -05:00
|
|
|
return Err(from_builder);
|
2021-01-09 12:00:45 -05:00
|
|
|
};
|
2020-11-18 22:54:31 -05:00
|
|
|
|
2021-10-20 20:59:15 +02:00
|
|
|
// We won't be building MIR if the closure wasn't local
|
|
|
|
let closure_hir_id = tcx.hir().local_def_id_to_hir_id(closure_def_id.expect_local());
|
2021-06-27 21:28:31 -04:00
|
|
|
let closure_ty = typeck_results.node_type(closure_hir_id);
|
2020-11-18 22:54:31 -05:00
|
|
|
|
|
|
|
let substs = match closure_ty.kind() {
|
|
|
|
ty::Closure(_, substs) => ty::UpvarSubsts::Closure(substs),
|
|
|
|
ty::Generator(_, substs, _) => ty::UpvarSubsts::Generator(substs),
|
|
|
|
_ => bug!("Lowering capture for non-closure type {:?}", closure_ty),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Access the capture by accessing the field within the Closure struct.
|
|
|
|
//
|
|
|
|
// We must have inferred the capture types since we are building MIR, therefore
|
2020-11-26 00:05:18 -05:00
|
|
|
// it's safe to call `tuple_element_ty` and we can unwrap here because
|
2020-11-18 22:54:31 -05:00
|
|
|
// we know that the capture exists and is the `capture_index`-th capture.
|
2022-02-07 16:06:31 +01:00
|
|
|
let var_ty = substs.tupled_upvars_ty().tuple_fields()[capture_index];
|
2020-11-18 22:54:31 -05:00
|
|
|
|
2021-01-09 12:00:45 -05:00
|
|
|
upvar_resolved_place_builder =
|
|
|
|
upvar_resolved_place_builder.field(Field::new(capture_index), var_ty);
|
2020-11-18 22:54:31 -05:00
|
|
|
|
|
|
|
// If the variable is captured via ByRef(Immutable/Mutable) Borrow,
|
|
|
|
// we need to deref it
|
2020-11-26 00:05:18 -05:00
|
|
|
upvar_resolved_place_builder = match capture.info.capture_kind {
|
2020-11-18 22:54:31 -05:00
|
|
|
ty::UpvarCapture::ByRef(_) => upvar_resolved_place_builder.deref(),
|
2021-10-09 22:11:13 +01:00
|
|
|
ty::UpvarCapture::ByValue => upvar_resolved_place_builder,
|
2020-11-18 22:54:31 -05:00
|
|
|
};
|
|
|
|
|
2020-11-26 00:05:18 -05:00
|
|
|
let next_projection = capture.place.projections.len();
|
2020-11-18 22:54:31 -05:00
|
|
|
let mut curr_projections = from_builder.projection;
|
2020-11-26 00:05:18 -05:00
|
|
|
|
|
|
|
// We used some of the projections to build the capture itself,
|
|
|
|
// now we apply the remaining to the upvar resolved place.
|
2021-01-09 12:00:45 -05:00
|
|
|
upvar_resolved_place_builder
|
|
|
|
.projection
|
|
|
|
.extend(curr_projections.drain(next_projection..));
|
2020-11-18 22:54:31 -05:00
|
|
|
|
|
|
|
Ok(upvar_resolved_place_builder)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:46:44 +00:00
|
|
|
impl<'tcx> PlaceBuilder<'tcx> {
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn into_place<'a>(
|
2020-11-18 22:54:31 -05:00
|
|
|
self,
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
typeck_results: &'a ty::TypeckResults<'tcx>,
|
|
|
|
) -> Place<'tcx> {
|
|
|
|
if let PlaceBase::Local(local) = self.base {
|
|
|
|
Place { local, projection: tcx.intern_place_elems(&self.projection) }
|
|
|
|
} else {
|
2021-02-23 17:55:36 -05:00
|
|
|
self.expect_upvars_resolved(tcx, typeck_results).into_place(tcx, typeck_results)
|
2020-11-18 22:54:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expect_upvars_resolved<'a>(
|
|
|
|
self,
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
typeck_results: &'a ty::TypeckResults<'tcx>,
|
|
|
|
) -> PlaceBuilder<'tcx> {
|
|
|
|
to_upvars_resolved_place_builder(self, tcx, typeck_results).unwrap()
|
2019-09-30 13:09:10 -03:00
|
|
|
}
|
|
|
|
|
2021-02-25 18:03:41 -05:00
|
|
|
/// Attempts to resolve the `PlaceBuilder`.
|
|
|
|
/// On success, it will return the resolved `PlaceBuilder`.
|
|
|
|
/// On failure, it will return itself.
|
|
|
|
///
|
|
|
|
/// Upvars resolve may fail for a `PlaceBuilder` when attempting to
|
|
|
|
/// resolve a disjoint field whose root variable is not captured
|
|
|
|
/// (destructured assignments) or when attempting to resolve a root
|
|
|
|
/// variable (discriminant matching with only wildcard arm) that is
|
|
|
|
/// not captured. This can happen because the final mir that will be
|
|
|
|
/// generated doesn't require a read for this place. Failures will only
|
|
|
|
/// happen inside closures.
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn try_upvars_resolved<'a>(
|
2021-02-02 21:07:52 -05:00
|
|
|
self,
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
typeck_results: &'a ty::TypeckResults<'tcx>,
|
2021-02-23 17:55:36 -05:00
|
|
|
) -> Result<PlaceBuilder<'tcx>, PlaceBuilder<'tcx>> {
|
2021-02-25 18:03:41 -05:00
|
|
|
to_upvars_resolved_place_builder(self, tcx, typeck_results)
|
2021-02-02 21:07:52 -05:00
|
|
|
}
|
|
|
|
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn base(&self) -> PlaceBase {
|
2020-11-26 00:07:41 -05:00
|
|
|
self.base
|
|
|
|
}
|
|
|
|
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn field(self, f: Field, ty: Ty<'tcx>) -> Self {
|
2019-09-30 13:09:10 -03:00
|
|
|
self.project(PlaceElem::Field(f, ty))
|
|
|
|
}
|
|
|
|
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn deref(self) -> Self {
|
2019-09-30 13:09:10 -03:00
|
|
|
self.project(PlaceElem::Deref)
|
|
|
|
}
|
|
|
|
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn downcast(self, adt_def: AdtDef<'tcx>, variant_index: VariantIdx) -> Self {
|
2022-03-05 07:28:41 +11:00
|
|
|
self.project(PlaceElem::Downcast(Some(adt_def.variant(variant_index).name), variant_index))
|
2021-02-18 19:02:07 -05:00
|
|
|
}
|
|
|
|
|
2019-09-30 13:09:10 -03:00
|
|
|
fn index(self, index: Local) -> Self {
|
|
|
|
self.project(PlaceElem::Index(index))
|
|
|
|
}
|
|
|
|
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn project(mut self, elem: PlaceElem<'tcx>) -> Self {
|
2019-09-30 13:09:10 -03:00
|
|
|
self.projection.push(elem);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-05 15:46:44 +00:00
|
|
|
impl<'tcx> From<Local> for PlaceBuilder<'tcx> {
|
2019-09-30 13:09:10 -03:00
|
|
|
fn from(local: Local) -> Self {
|
2020-11-18 22:54:31 -05:00
|
|
|
Self { base: PlaceBase::Local(local), projection: Vec::new() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> From<PlaceBase> for PlaceBuilder<'tcx> {
|
|
|
|
fn from(base: PlaceBase) -> Self {
|
|
|
|
Self { base, projection: Vec::new() }
|
2019-09-30 13:09:10 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-01 13:38:36 +02:00
|
|
|
impl<'a, 'tcx> Builder<'a, 'tcx> {
|
2017-12-01 14:39:51 +02:00
|
|
|
/// Compile `expr`, yielding a place that we can move from etc.
|
2019-10-19 21:00:21 +01:00
|
|
|
///
|
|
|
|
/// WARNING: Any user code might:
|
|
|
|
/// * Invalidate any slice bounds checks performed.
|
|
|
|
/// * Change the address that this `Place` refers to.
|
|
|
|
/// * Modify the memory that this place refers to.
|
|
|
|
/// * Invalidate the memory that this place refers to, this will be caught
|
|
|
|
/// by borrow checking.
|
|
|
|
///
|
|
|
|
/// Extra care is needed if any user code is allowed to run between calling
|
|
|
|
/// this method and using it, as is the case for `match` and index
|
|
|
|
/// expressions.
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn as_place(
|
2021-02-24 21:29:09 +01:00
|
|
|
&mut self,
|
|
|
|
mut block: BasicBlock,
|
2021-04-03 19:58:46 +02:00
|
|
|
expr: &Expr<'tcx>,
|
2021-02-24 21:29:09 +01:00
|
|
|
) -> BlockAnd<Place<'tcx>> {
|
2019-09-30 13:09:10 -03:00
|
|
|
let place_builder = unpack!(block = self.as_place_builder(block, expr));
|
2021-03-03 16:35:54 +01:00
|
|
|
block.and(place_builder.into_place(self.tcx, self.typeck_results))
|
2019-09-30 13:09:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This is used when constructing a compound `Place`, so that we can avoid creating
|
|
|
|
/// intermediate `Place` values until we know the full set of projections.
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn as_place_builder(
|
2021-01-09 12:00:45 -05:00
|
|
|
&mut self,
|
|
|
|
block: BasicBlock,
|
2021-04-03 19:58:46 +02:00
|
|
|
expr: &Expr<'tcx>,
|
2021-02-24 21:29:09 +01:00
|
|
|
) -> BlockAnd<PlaceBuilder<'tcx>> {
|
2019-10-19 21:00:21 +01:00
|
|
|
self.expr_as_place(block, expr, Mutability::Mut, None)
|
2018-09-05 23:49:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Compile `expr`, yielding a place that we can move from etc.
|
|
|
|
/// Mutability note: The caller of this method promises only to read from the resulting
|
|
|
|
/// place. The place itself may or may not be mutable:
|
|
|
|
/// * If this expr is a place expr like a.b, then we will return that place.
|
|
|
|
/// * Otherwise, a temporary is created: in that event, it will be an immutable temporary.
|
2022-05-20 19:51:09 -04:00
|
|
|
pub(crate) fn as_read_only_place(
|
2020-01-05 15:46:44 +00:00
|
|
|
&mut self,
|
|
|
|
mut block: BasicBlock,
|
2021-04-03 19:58:46 +02:00
|
|
|
expr: &Expr<'tcx>,
|
2021-02-24 21:29:09 +01:00
|
|
|
) -> BlockAnd<Place<'tcx>> {
|
2019-09-30 13:09:10 -03:00
|
|
|
let place_builder = unpack!(block = self.as_read_only_place_builder(block, expr));
|
2021-03-03 16:35:54 +01:00
|
|
|
block.and(place_builder.into_place(self.tcx, self.typeck_results))
|
2019-09-30 13:09:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This is used when constructing a compound `Place`, so that we can avoid creating
|
|
|
|
/// intermediate `Place` values until we know the full set of projections.
|
|
|
|
/// Mutability note: The caller of this method promises only to read from the resulting
|
|
|
|
/// place. The place itself may or may not be mutable:
|
|
|
|
/// * If this expr is a place expr like a.b, then we will return that place.
|
|
|
|
/// * Otherwise, a temporary is created: in that event, it will be an immutable temporary.
|
2021-02-24 21:29:09 +01:00
|
|
|
fn as_read_only_place_builder(
|
2019-09-30 13:09:10 -03:00
|
|
|
&mut self,
|
|
|
|
block: BasicBlock,
|
2021-04-03 19:58:46 +02:00
|
|
|
expr: &Expr<'tcx>,
|
2021-02-24 21:29:09 +01:00
|
|
|
) -> BlockAnd<PlaceBuilder<'tcx>> {
|
2019-10-19 21:00:21 +01:00
|
|
|
self.expr_as_place(block, expr, Mutability::Not, None)
|
2015-08-18 17:59:21 -04:00
|
|
|
}
|
|
|
|
|
2018-09-06 22:34:26 +01:00
|
|
|
fn expr_as_place(
|
|
|
|
&mut self,
|
|
|
|
mut block: BasicBlock,
|
2021-04-03 19:58:46 +02:00
|
|
|
expr: &Expr<'tcx>,
|
2018-09-06 22:34:26 +01:00
|
|
|
mutability: Mutability,
|
2019-10-19 21:00:21 +01:00
|
|
|
fake_borrow_temps: Option<&mut Vec<Local>>,
|
2019-09-30 13:09:10 -03:00
|
|
|
) -> BlockAnd<PlaceBuilder<'tcx>> {
|
2018-09-06 22:34:26 +01:00
|
|
|
debug!("expr_as_place(block={:?}, expr={:?}, mutability={:?})", block, expr, mutability);
|
2015-08-18 17:59:21 -04:00
|
|
|
|
|
|
|
let this = self;
|
|
|
|
let expr_span = expr.span;
|
2016-06-07 19:21:56 +03:00
|
|
|
let source_info = this.source_info(expr_span);
|
2021-03-06 22:24:04 +01:00
|
|
|
match expr.kind {
|
2018-09-06 22:34:26 +01:00
|
|
|
ExprKind::Scope { region_scope, lint_level, value } => {
|
2021-03-06 22:24:04 +01:00
|
|
|
this.in_scope((region_scope, source_info), lint_level, |this| {
|
2021-04-03 19:58:46 +02:00
|
|
|
this.expr_as_place(block, &this.thir[value], mutability, fake_borrow_temps)
|
2018-09-06 22:34:26 +01:00
|
|
|
})
|
2019-12-22 17:42:04 -05:00
|
|
|
}
|
2015-08-18 17:59:21 -04:00
|
|
|
ExprKind::Field { lhs, name } => {
|
2021-04-03 19:58:46 +02:00
|
|
|
let place_builder = unpack!(
|
|
|
|
block =
|
|
|
|
this.expr_as_place(block, &this.thir[lhs], mutability, fake_borrow_temps,)
|
|
|
|
);
|
2021-03-06 22:24:04 +01:00
|
|
|
block.and(place_builder.field(name, expr.ty))
|
2015-08-18 17:59:21 -04:00
|
|
|
}
|
|
|
|
ExprKind::Deref { arg } => {
|
2021-04-03 19:58:46 +02:00
|
|
|
let place_builder = unpack!(
|
|
|
|
block =
|
|
|
|
this.expr_as_place(block, &this.thir[arg], mutability, fake_borrow_temps,)
|
|
|
|
);
|
2019-09-30 13:09:10 -03:00
|
|
|
block.and(place_builder.deref())
|
2015-08-18 17:59:21 -04:00
|
|
|
}
|
|
|
|
ExprKind::Index { lhs, index } => this.lower_index_expression(
|
2019-07-07 15:03:07 +01:00
|
|
|
block,
|
2021-04-03 19:58:46 +02:00
|
|
|
&this.thir[lhs],
|
|
|
|
&this.thir[index],
|
2019-10-19 21:00:21 +01:00
|
|
|
mutability,
|
|
|
|
fake_borrow_temps,
|
|
|
|
expr.temp_lifetime,
|
|
|
|
expr_span,
|
|
|
|
source_info,
|
|
|
|
),
|
2020-11-17 01:52:14 -05:00
|
|
|
ExprKind::UpvarRef { closure_def_id, var_hir_id } => {
|
2021-03-06 22:24:04 +01:00
|
|
|
let upvar_id = ty::UpvarId::new(var_hir_id, closure_def_id.expect_local());
|
2020-11-18 22:54:31 -05:00
|
|
|
this.lower_captured_upvar(block, upvar_id)
|
2020-11-17 01:52:14 -05:00
|
|
|
}
|
|
|
|
|
2015-08-18 17:59:21 -04:00
|
|
|
ExprKind::VarRef { id } => {
|
2021-03-06 22:24:04 +01:00
|
|
|
let place_builder = if this.is_bound_var_in_guard(id) {
|
|
|
|
let index = this.var_local_id(id, RefWithinGuard);
|
2019-09-30 13:09:10 -03:00
|
|
|
PlaceBuilder::from(index).deref()
|
2018-02-26 15:45:13 +01:00
|
|
|
} else {
|
2021-03-06 22:24:04 +01:00
|
|
|
let index = this.var_local_id(id, OutsideGuard);
|
2019-09-30 13:09:10 -03:00
|
|
|
PlaceBuilder::from(index)
|
2018-02-26 15:45:13 +01:00
|
|
|
};
|
2019-09-30 13:09:10 -03:00
|
|
|
block.and(place_builder)
|
2015-08-18 17:59:21 -04:00
|
|
|
}
|
|
|
|
|
2018-09-20 18:43:35 -07:00
|
|
|
ExprKind::PlaceTypeAscription { source, user_ty } => {
|
2019-10-19 21:00:21 +01:00
|
|
|
let place_builder = unpack!(
|
2021-04-03 19:58:46 +02:00
|
|
|
block = this.expr_as_place(
|
|
|
|
block,
|
|
|
|
&this.thir[source],
|
|
|
|
mutability,
|
|
|
|
fake_borrow_temps,
|
|
|
|
)
|
2019-10-19 21:00:21 +01:00
|
|
|
);
|
2018-10-17 18:23:43 -04:00
|
|
|
if let Some(user_ty) = user_ty {
|
2018-11-16 22:56:18 +01:00
|
|
|
let annotation_index =
|
|
|
|
this.canonical_user_type_annotations.push(CanonicalUserTypeAnnotation {
|
2019-01-12 14:55:23 +00:00
|
|
|
span: source_info.span,
|
2021-03-06 22:24:04 +01:00
|
|
|
user_ty,
|
2019-01-12 14:55:23 +00:00
|
|
|
inferred_ty: expr.ty,
|
2018-11-16 22:56:18 +01:00
|
|
|
});
|
2019-09-30 13:09:10 -03:00
|
|
|
|
2021-03-03 16:35:54 +01:00
|
|
|
let place = place_builder.clone().into_place(this.tcx, this.typeck_results);
|
2018-10-17 18:23:43 -04:00
|
|
|
this.cfg.push(
|
|
|
|
block,
|
|
|
|
Statement {
|
|
|
|
source_info,
|
|
|
|
kind: StatementKind::AscribeUserType(
|
2021-08-05 03:16:19 +02:00
|
|
|
Box::new((
|
2019-09-30 13:09:10 -03:00
|
|
|
place,
|
2019-09-11 16:05:45 -03:00
|
|
|
UserTypeProjection { base: annotation_index, projs: vec![] },
|
2021-08-05 03:16:19 +02:00
|
|
|
)),
|
2018-10-17 18:23:43 -04:00
|
|
|
Variance::Invariant,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2019-09-30 13:09:10 -03:00
|
|
|
block.and(place_builder)
|
2018-09-20 18:43:35 -07:00
|
|
|
}
|
|
|
|
ExprKind::ValueTypeAscription { source, user_ty } => {
|
2021-04-03 19:58:46 +02:00
|
|
|
let source = &this.thir[source];
|
2018-09-20 18:43:35 -07:00
|
|
|
let temp =
|
2021-03-06 22:24:04 +01:00
|
|
|
unpack!(block = this.as_temp(block, source.temp_lifetime, source, mutability));
|
2018-10-17 18:23:43 -04:00
|
|
|
if let Some(user_ty) = user_ty {
|
2018-11-16 22:56:18 +01:00
|
|
|
let annotation_index =
|
|
|
|
this.canonical_user_type_annotations.push(CanonicalUserTypeAnnotation {
|
2019-01-12 14:55:23 +00:00
|
|
|
span: source_info.span,
|
2021-03-06 22:24:04 +01:00
|
|
|
user_ty,
|
2019-01-12 14:55:23 +00:00
|
|
|
inferred_ty: expr.ty,
|
2018-11-16 22:56:18 +01:00
|
|
|
});
|
2018-10-17 18:23:43 -04:00
|
|
|
this.cfg.push(
|
|
|
|
block,
|
|
|
|
Statement {
|
|
|
|
source_info,
|
|
|
|
kind: StatementKind::AscribeUserType(
|
2021-08-05 03:16:19 +02:00
|
|
|
Box::new((
|
2020-01-22 16:30:15 +01:00
|
|
|
Place::from(temp),
|
2019-09-11 16:05:45 -03:00
|
|
|
UserTypeProjection { base: annotation_index, projs: vec![] },
|
2021-08-05 03:16:19 +02:00
|
|
|
)),
|
2018-10-17 18:23:43 -04:00
|
|
|
Variance::Invariant,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2019-09-30 13:09:10 -03:00
|
|
|
block.and(PlaceBuilder::from(temp))
|
2018-09-20 18:43:35 -07:00
|
|
|
}
|
|
|
|
|
2018-09-06 22:34:26 +01:00
|
|
|
ExprKind::Array { .. }
|
|
|
|
| ExprKind::Tuple { .. }
|
|
|
|
| ExprKind::Adt { .. }
|
|
|
|
| ExprKind::Closure { .. }
|
|
|
|
| ExprKind::Unary { .. }
|
|
|
|
| ExprKind::Binary { .. }
|
|
|
|
| ExprKind::LogicalOp { .. }
|
|
|
|
| ExprKind::Box { .. }
|
|
|
|
| ExprKind::Cast { .. }
|
|
|
|
| ExprKind::Use { .. }
|
|
|
|
| ExprKind::NeverToAny { .. }
|
2019-04-16 17:36:41 +05:30
|
|
|
| ExprKind::Pointer { .. }
|
2018-09-06 22:34:26 +01:00
|
|
|
| ExprKind::Repeat { .. }
|
|
|
|
| ExprKind::Borrow { .. }
|
2019-04-20 18:06:03 +01:00
|
|
|
| ExprKind::AddressOf { .. }
|
2018-09-06 22:34:26 +01:00
|
|
|
| ExprKind::Match { .. }
|
2021-01-01 15:38:11 -03:00
|
|
|
| ExprKind::If { .. }
|
2018-09-06 22:34:26 +01:00
|
|
|
| ExprKind::Loop { .. }
|
|
|
|
| ExprKind::Block { .. }
|
2021-08-08 11:49:13 -03:00
|
|
|
| ExprKind::Let { .. }
|
2018-09-06 22:34:26 +01:00
|
|
|
| ExprKind::Assign { .. }
|
|
|
|
| ExprKind::AssignOp { .. }
|
|
|
|
| ExprKind::Break { .. }
|
|
|
|
| ExprKind::Continue { .. }
|
|
|
|
| ExprKind::Return { .. }
|
|
|
|
| ExprKind::Literal { .. }
|
2022-03-11 12:07:53 +01:00
|
|
|
| ExprKind::NamedConst { .. }
|
2022-03-23 08:47:11 +01:00
|
|
|
| ExprKind::NonHirLiteral { .. }
|
2022-03-11 12:07:53 +01:00
|
|
|
| ExprKind::ConstParam { .. }
|
2020-10-06 17:51:15 -03:00
|
|
|
| ExprKind::ConstBlock { .. }
|
2019-11-18 23:04:06 +00:00
|
|
|
| ExprKind::StaticRef { .. }
|
2020-02-14 18:17:50 +00:00
|
|
|
| ExprKind::InlineAsm { .. }
|
2018-09-06 22:34:26 +01:00
|
|
|
| ExprKind::Yield { .. }
|
2020-05-02 21:44:25 +02:00
|
|
|
| ExprKind::ThreadLocalRef(_)
|
2018-09-06 22:34:26 +01:00
|
|
|
| ExprKind::Call { .. } => {
|
2017-12-01 14:39:51 +02:00
|
|
|
// these are not places, so we need to make a temporary.
|
2020-10-26 21:02:48 -04:00
|
|
|
debug_assert!(!matches!(Category::of(&expr.kind), Some(Category::Place)));
|
2018-09-06 22:34:26 +01:00
|
|
|
let temp =
|
|
|
|
unpack!(block = this.as_temp(block, expr.temp_lifetime, expr, mutability));
|
2019-09-30 13:09:10 -03:00
|
|
|
block.and(PlaceBuilder::from(temp))
|
2015-08-18 17:59:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-19 21:00:21 +01:00
|
|
|
|
2020-11-18 22:54:31 -05:00
|
|
|
/// Lower a captured upvar. Note we might not know the actual capture index,
|
|
|
|
/// so we create a place starting from `PlaceBase::Upvar`, which will be resolved
|
2021-04-19 15:57:08 +03:00
|
|
|
/// once all projections that allow us to identify a capture have been applied.
|
2020-11-18 22:54:31 -05:00
|
|
|
fn lower_captured_upvar(
|
2020-11-17 01:52:14 -05:00
|
|
|
&mut self,
|
|
|
|
block: BasicBlock,
|
|
|
|
upvar_id: ty::UpvarId,
|
2020-11-18 22:54:31 -05:00
|
|
|
) -> BlockAnd<PlaceBuilder<'tcx>> {
|
2020-11-17 01:52:14 -05:00
|
|
|
let closure_ty = self
|
2021-03-03 16:35:54 +01:00
|
|
|
.typeck_results
|
|
|
|
.node_type(self.tcx.hir().local_def_id_to_hir_id(upvar_id.closure_expr_id));
|
2020-11-17 01:52:14 -05:00
|
|
|
|
2020-11-18 22:54:31 -05:00
|
|
|
let closure_kind = if let ty::Closure(_, closure_substs) = closure_ty.kind() {
|
2021-03-03 16:35:54 +01:00
|
|
|
self.infcx.closure_kind(closure_substs).unwrap()
|
2020-11-18 22:54:31 -05:00
|
|
|
} else {
|
|
|
|
// Generators are considered FnOnce.
|
|
|
|
ty::ClosureKind::FnOnce
|
2020-11-17 01:52:14 -05:00
|
|
|
};
|
|
|
|
|
2020-11-18 22:54:31 -05:00
|
|
|
block.and(PlaceBuilder::from(PlaceBase::Upvar {
|
|
|
|
var_hir_id: upvar_id.var_path.hir_id,
|
|
|
|
closure_def_id: upvar_id.closure_expr_id.to_def_id(),
|
|
|
|
closure_kind,
|
|
|
|
}))
|
2020-11-17 01:52:14 -05:00
|
|
|
}
|
|
|
|
|
2019-10-19 21:00:21 +01:00
|
|
|
/// Lower an index expression
|
|
|
|
///
|
|
|
|
/// This has two complications;
|
|
|
|
///
|
|
|
|
/// * We need to do a bounds check.
|
|
|
|
/// * We need to ensure that the bounds check can't be invalidated using an
|
|
|
|
/// expression like `x[1][{x = y; 2}]`. We use fake borrows here to ensure
|
|
|
|
/// that this is the case.
|
|
|
|
fn lower_index_expression(
|
|
|
|
&mut self,
|
|
|
|
mut block: BasicBlock,
|
2021-04-03 19:58:46 +02:00
|
|
|
base: &Expr<'tcx>,
|
|
|
|
index: &Expr<'tcx>,
|
2019-10-19 21:00:21 +01:00
|
|
|
mutability: Mutability,
|
|
|
|
fake_borrow_temps: Option<&mut Vec<Local>>,
|
|
|
|
temp_lifetime: Option<region::Scope>,
|
|
|
|
expr_span: Span,
|
|
|
|
source_info: SourceInfo,
|
|
|
|
) -> BlockAnd<PlaceBuilder<'tcx>> {
|
|
|
|
let base_fake_borrow_temps = &mut Vec::new();
|
|
|
|
let is_outermost_index = fake_borrow_temps.is_none();
|
|
|
|
let fake_borrow_temps = fake_borrow_temps.unwrap_or(base_fake_borrow_temps);
|
|
|
|
|
2020-11-18 22:54:31 -05:00
|
|
|
let mut base_place =
|
2021-02-24 21:29:09 +01:00
|
|
|
unpack!(block = self.expr_as_place(block, base, mutability, Some(fake_borrow_temps),));
|
2019-10-19 21:00:21 +01:00
|
|
|
|
|
|
|
// Making this a *fresh* temporary means we do not have to worry about
|
|
|
|
// the index changing later: Nothing will ever change this temporary.
|
|
|
|
// The "retagging" transformation (for Stacked Borrows) relies on this.
|
|
|
|
let idx = unpack!(block = self.as_temp(block, temp_lifetime, index, Mutability::Not,));
|
|
|
|
|
2021-02-18 19:02:07 -05:00
|
|
|
block = self.bounds_check(block, base_place.clone(), idx, expr_span, source_info);
|
2019-10-19 21:00:21 +01:00
|
|
|
|
|
|
|
if is_outermost_index {
|
|
|
|
self.read_fake_borrows(block, fake_borrow_temps, source_info)
|
|
|
|
} else {
|
2021-03-03 16:35:54 +01:00
|
|
|
base_place = base_place.expect_upvars_resolved(self.tcx, self.typeck_results);
|
2019-10-19 21:00:21 +01:00
|
|
|
self.add_fake_borrows_of_base(
|
|
|
|
&base_place,
|
|
|
|
block,
|
|
|
|
fake_borrow_temps,
|
|
|
|
expr_span,
|
|
|
|
source_info,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
block.and(base_place.index(idx))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bounds_check(
|
|
|
|
&mut self,
|
|
|
|
block: BasicBlock,
|
2021-02-18 19:02:07 -05:00
|
|
|
slice: PlaceBuilder<'tcx>,
|
2019-10-19 21:00:21 +01:00
|
|
|
index: Local,
|
|
|
|
expr_span: Span,
|
|
|
|
source_info: SourceInfo,
|
|
|
|
) -> BasicBlock {
|
2021-03-03 16:35:54 +01:00
|
|
|
let usize_ty = self.tcx.types.usize;
|
|
|
|
let bool_ty = self.tcx.types.bool;
|
2019-10-19 21:00:21 +01:00
|
|
|
// bounds check:
|
|
|
|
let len = self.temp(usize_ty, expr_span);
|
|
|
|
let lt = self.temp(bool_ty, expr_span);
|
|
|
|
|
|
|
|
// len = len(slice)
|
2021-02-18 19:02:07 -05:00
|
|
|
self.cfg.push_assign(
|
|
|
|
block,
|
|
|
|
source_info,
|
|
|
|
len,
|
2021-02-25 18:03:41 -05:00
|
|
|
Rvalue::Len(slice.into_place(self.tcx, self.typeck_results)),
|
2021-02-18 19:02:07 -05:00
|
|
|
);
|
2019-10-19 21:00:21 +01:00
|
|
|
// lt = idx < len
|
|
|
|
self.cfg.push_assign(
|
|
|
|
block,
|
|
|
|
source_info,
|
2020-03-31 14:08:48 -03:00
|
|
|
lt,
|
2021-03-05 09:32:47 +00:00
|
|
|
Rvalue::BinaryOp(
|
|
|
|
BinOp::Lt,
|
2021-08-05 03:16:19 +02:00
|
|
|
Box::new((Operand::Copy(Place::from(index)), Operand::Copy(len))),
|
2021-03-05 09:32:47 +00:00
|
|
|
),
|
2019-10-19 21:00:21 +01:00
|
|
|
);
|
|
|
|
let msg = BoundsCheck { len: Operand::Move(len), index: Operand::Copy(Place::from(index)) };
|
|
|
|
// assert!(lt, "...")
|
|
|
|
self.assert(block, Operand::Move(lt), true, msg, expr_span)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_fake_borrows_of_base(
|
|
|
|
&mut self,
|
|
|
|
base_place: &PlaceBuilder<'tcx>,
|
|
|
|
block: BasicBlock,
|
|
|
|
fake_borrow_temps: &mut Vec<Local>,
|
|
|
|
expr_span: Span,
|
|
|
|
source_info: SourceInfo,
|
|
|
|
) {
|
2021-03-03 16:35:54 +01:00
|
|
|
let tcx = self.tcx;
|
2020-11-18 22:54:31 -05:00
|
|
|
let local = match base_place.base {
|
|
|
|
PlaceBase::Local(local) => local,
|
2021-01-09 12:00:45 -05:00
|
|
|
PlaceBase::Upvar { .. } => bug!("Expected PlacseBase::Local found Upvar"),
|
2020-11-18 22:54:31 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let place_ty = Place::ty_from(local, &base_place.projection, &self.local_decls, tcx);
|
2020-08-03 00:49:11 +02:00
|
|
|
if let ty::Slice(_) = place_ty.ty.kind() {
|
2019-10-19 21:00:21 +01:00
|
|
|
// We need to create fake borrows to ensure that the bounds
|
|
|
|
// check that we just did stays valid. Since we can't assign to
|
|
|
|
// unsized values, we only need to ensure that none of the
|
|
|
|
// pointers in the base place are modified.
|
|
|
|
for (idx, elem) in base_place.projection.iter().enumerate().rev() {
|
|
|
|
match elem {
|
|
|
|
ProjectionElem::Deref => {
|
|
|
|
let fake_borrow_deref_ty = Place::ty_from(
|
2020-11-18 22:54:31 -05:00
|
|
|
local,
|
2019-10-19 21:00:21 +01:00
|
|
|
&base_place.projection[..idx],
|
|
|
|
&self.local_decls,
|
|
|
|
tcx,
|
|
|
|
)
|
|
|
|
.ty;
|
|
|
|
let fake_borrow_ty =
|
|
|
|
tcx.mk_imm_ref(tcx.lifetimes.re_erased, fake_borrow_deref_ty);
|
|
|
|
let fake_borrow_temp =
|
2020-05-06 10:17:38 +10:00
|
|
|
self.local_decls.push(LocalDecl::new(fake_borrow_ty, expr_span));
|
2019-10-19 21:00:21 +01:00
|
|
|
let projection = tcx.intern_place_elems(&base_place.projection[..idx]);
|
|
|
|
self.cfg.push_assign(
|
|
|
|
block,
|
|
|
|
source_info,
|
2020-03-31 14:08:48 -03:00
|
|
|
fake_borrow_temp.into(),
|
2019-10-19 21:00:21 +01:00
|
|
|
Rvalue::Ref(
|
|
|
|
tcx.lifetimes.re_erased,
|
|
|
|
BorrowKind::Shallow,
|
2020-11-18 22:54:31 -05:00
|
|
|
Place { local, projection },
|
2019-10-19 21:00:21 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
fake_borrow_temps.push(fake_borrow_temp);
|
|
|
|
}
|
|
|
|
ProjectionElem::Index(_) => {
|
|
|
|
let index_ty = Place::ty_from(
|
2020-11-18 22:54:31 -05:00
|
|
|
local,
|
2019-10-19 21:00:21 +01:00
|
|
|
&base_place.projection[..idx],
|
|
|
|
&self.local_decls,
|
|
|
|
tcx,
|
|
|
|
);
|
2020-08-03 00:49:11 +02:00
|
|
|
match index_ty.ty.kind() {
|
2019-10-19 21:00:21 +01:00
|
|
|
// The previous index expression has already
|
|
|
|
// done any index expressions needed here.
|
|
|
|
ty::Slice(_) => break,
|
|
|
|
ty::Array(..) => (),
|
|
|
|
_ => bug!("unexpected index base"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ProjectionElem::Field(..)
|
|
|
|
| ProjectionElem::Downcast(..)
|
|
|
|
| ProjectionElem::ConstantIndex { .. }
|
|
|
|
| ProjectionElem::Subslice { .. } => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_fake_borrows(
|
|
|
|
&mut self,
|
2019-12-15 16:11:01 +01:00
|
|
|
bb: BasicBlock,
|
2019-10-19 21:00:21 +01:00
|
|
|
fake_borrow_temps: &mut Vec<Local>,
|
|
|
|
source_info: SourceInfo,
|
|
|
|
) {
|
|
|
|
// All indexes have been evaluated now, read all of the
|
|
|
|
// fake borrows so that they are live across those index
|
|
|
|
// expressions.
|
|
|
|
for temp in fake_borrow_temps {
|
2019-12-15 16:11:01 +01:00
|
|
|
self.cfg.push_fake_read(bb, source_info, FakeReadCause::ForIndex, Place::from(*temp));
|
2019-10-19 21:00:21 +01:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 17:59:21 -04:00
|
|
|
}
|
2021-06-27 02:22:46 -04:00
|
|
|
|
|
|
|
/// Precise capture is enabled if the feature gate `capture_disjoint_fields` is enabled or if
|
|
|
|
/// user is using Rust Edition 2021 or higher.
|
|
|
|
fn enable_precise_capture(tcx: TyCtxt<'_>, closure_span: Span) -> bool {
|
|
|
|
tcx.features().capture_disjoint_fields || closure_span.rust_2021()
|
|
|
|
}
|