Auto merge of #65087 - Centril:rollup-skxq0zr, r=Centril
Rollup of 5 pull requests Successful merges: - #64749 (Fix most remaining Polonius test differences) - #64817 (Replace ClosureSubsts with SubstsRef) - #64874 (Simplify ExprUseVisitor) - #65026 (metadata: Some crate loading cleanup) - #65073 (Remove `borrowck_graphviz_postflow` from test) Failed merges: r? @ghost
This commit is contained in:
commit
9e35a2811d
96 changed files with 526 additions and 2143 deletions
|
@ -220,7 +220,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
|
|||
|
||||
let ty_msg = match local_visitor.found_ty {
|
||||
Some(ty::TyS { kind: ty::Closure(def_id, substs), .. }) => {
|
||||
let fn_sig = substs.closure_sig(*def_id, self.tcx);
|
||||
let fn_sig = substs.as_closure().sig(*def_id, self.tcx);
|
||||
let args = closure_args(&fn_sig);
|
||||
let ret = fn_sig.output().skip_binder().to_string();
|
||||
format!(" for the closure `fn({}) -> {}`", args, ret)
|
||||
|
@ -255,7 +255,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
|
|||
|
||||
let suffix = match local_visitor.found_ty {
|
||||
Some(ty::TyS { kind: ty::Closure(def_id, substs), .. }) => {
|
||||
let fn_sig = substs.closure_sig(*def_id, self.tcx);
|
||||
let fn_sig = substs.as_closure().sig(*def_id, self.tcx);
|
||||
let ret = fn_sig.output().skip_binder().to_string();
|
||||
|
||||
if let Some(ExprKind::Closure(_, decl, body_id, ..)) = local_visitor.found_closure {
|
||||
|
|
|
@ -1504,9 +1504,9 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
|
|||
pub fn closure_kind(
|
||||
&self,
|
||||
closure_def_id: DefId,
|
||||
closure_substs: ty::ClosureSubsts<'tcx>,
|
||||
closure_substs: SubstsRef<'tcx>,
|
||||
) -> Option<ty::ClosureKind> {
|
||||
let closure_kind_ty = closure_substs.closure_kind_ty(closure_def_id, self.tcx);
|
||||
let closure_kind_ty = closure_substs.as_closure().kind_ty(closure_def_id, self.tcx);
|
||||
let closure_kind_ty = self.shallow_resolve(closure_kind_ty);
|
||||
closure_kind_ty.to_opt_closure_kind()
|
||||
}
|
||||
|
@ -1518,9 +1518,9 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
|
|||
pub fn closure_sig(
|
||||
&self,
|
||||
def_id: DefId,
|
||||
substs: ty::ClosureSubsts<'tcx>,
|
||||
substs: SubstsRef<'tcx>,
|
||||
) -> ty::PolyFnSig<'tcx> {
|
||||
let closure_sig_ty = substs.closure_sig_ty(def_id, self.tcx);
|
||||
let closure_sig_ty = substs.as_closure().sig_ty(def_id, self.tcx);
|
||||
let closure_sig_ty = self.shallow_resolve(closure_sig_ty);
|
||||
closure_sig_ty.fn_sig(self.tcx)
|
||||
}
|
||||
|
|
|
@ -722,11 +722,11 @@ where
|
|||
ty::Closure(def_id, ref substs) => {
|
||||
// Skip lifetime parameters of the enclosing item(s)
|
||||
|
||||
for upvar_ty in substs.upvar_tys(def_id, self.tcx) {
|
||||
for upvar_ty in substs.as_closure().upvar_tys(def_id, self.tcx) {
|
||||
upvar_ty.visit_with(self);
|
||||
}
|
||||
|
||||
substs.closure_sig_ty(def_id, self.tcx).visit_with(self);
|
||||
substs.as_closure().sig_ty(def_id, self.tcx).visit_with(self);
|
||||
}
|
||||
|
||||
ty::Generator(def_id, ref substs, _) => {
|
||||
|
@ -886,7 +886,7 @@ impl TypeFolder<'tcx> for ReverseMapper<'tcx> {
|
|||
|
||||
let generics = self.tcx.generics_of(def_id);
|
||||
let substs =
|
||||
self.tcx.mk_substs(substs.substs.iter().enumerate().map(|(index, &kind)| {
|
||||
self.tcx.mk_substs(substs.iter().enumerate().map(|(index, &kind)| {
|
||||
if index < generics.parent_count {
|
||||
// Accommodate missing regions in the parent kinds...
|
||||
self.fold_kind_mapping_missing_regions_to_empty(kind)
|
||||
|
@ -896,7 +896,7 @@ impl TypeFolder<'tcx> for ReverseMapper<'tcx> {
|
|||
}
|
||||
}));
|
||||
|
||||
self.tcx.mk_closure(def_id, ty::ClosureSubsts { substs })
|
||||
self.tcx.mk_closure(def_id, substs)
|
||||
}
|
||||
|
||||
ty::Generator(def_id, substs, movability) => {
|
||||
|
|
|
@ -148,9 +148,7 @@ pub enum ExternCrateSource {
|
|||
/// such ids
|
||||
DefId,
|
||||
),
|
||||
// Crate is loaded by `use`.
|
||||
Use,
|
||||
/// Crate is implicitly loaded by an absolute path.
|
||||
/// Crate is implicitly loaded by a path resolving through extern prelude.
|
||||
Path,
|
||||
}
|
||||
|
||||
|
|
|
@ -2,25 +2,20 @@
|
|||
//! normal visitor, which just walks the entire body in one shot, the
|
||||
//! `ExprUseVisitor` determines how expressions are being used.
|
||||
|
||||
pub use self::LoanCause::*;
|
||||
pub use self::ConsumeMode::*;
|
||||
pub use self::MoveReason::*;
|
||||
pub use self::MatchMode::*;
|
||||
use self::TrackMatchMode::*;
|
||||
use self::OverloadedCallType::*;
|
||||
|
||||
use crate::hir::def::{CtorOf, Res, DefKind};
|
||||
use crate::hir::def::Res;
|
||||
use crate::hir::def_id::DefId;
|
||||
use crate::hir::ptr::P;
|
||||
use crate::infer::InferCtxt;
|
||||
use crate::middle::mem_categorization as mc;
|
||||
use crate::middle::region;
|
||||
use crate::ty::{self, DefIdTree, TyCtxt, adjustment};
|
||||
use crate::ty::{self, TyCtxt, adjustment};
|
||||
|
||||
use crate::hir::{self, PatKind};
|
||||
use std::rc::Rc;
|
||||
use syntax_pos::Span;
|
||||
use crate::util::nodemap::ItemLocalSet;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// The Delegate trait
|
||||
|
@ -30,161 +25,19 @@ use crate::util::nodemap::ItemLocalSet;
|
|||
pub trait Delegate<'tcx> {
|
||||
// The value found at `cmt` is either copied or moved, depending
|
||||
// on mode.
|
||||
fn consume(&mut self,
|
||||
consume_id: hir::HirId,
|
||||
consume_span: Span,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
mode: ConsumeMode);
|
||||
fn consume(&mut self, cmt: &mc::cmt_<'tcx>, mode: ConsumeMode);
|
||||
|
||||
// The value found at `cmt` has been determined to match the
|
||||
// pattern binding `matched_pat`, and its subparts are being
|
||||
// copied or moved depending on `mode`. Note that `matched_pat`
|
||||
// is called on all variant/structs in the pattern (i.e., the
|
||||
// interior nodes of the pattern's tree structure) while
|
||||
// consume_pat is called on the binding identifiers in the pattern
|
||||
// (which are leaves of the pattern's tree structure).
|
||||
//
|
||||
// Note that variants/structs and identifiers are disjoint; thus
|
||||
// `matched_pat` and `consume_pat` are never both called on the
|
||||
// same input pattern structure (though of `consume_pat` can be
|
||||
// called on a subpart of an input passed to `matched_pat).
|
||||
fn matched_pat(&mut self,
|
||||
matched_pat: &hir::Pat,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
mode: MatchMode);
|
||||
|
||||
// The value found at `cmt` is either copied or moved via the
|
||||
// pattern binding `consume_pat`, depending on mode.
|
||||
fn consume_pat(&mut self,
|
||||
consume_pat: &hir::Pat,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
mode: ConsumeMode);
|
||||
|
||||
// The value found at `borrow` is being borrowed at the point
|
||||
// `borrow_id` for the region `loan_region` with kind `bk`.
|
||||
fn borrow(&mut self,
|
||||
borrow_id: hir::HirId,
|
||||
borrow_span: Span,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
loan_region: ty::Region<'tcx>,
|
||||
bk: ty::BorrowKind,
|
||||
loan_cause: LoanCause);
|
||||
|
||||
// The local variable `id` is declared but not initialized.
|
||||
fn decl_without_init(&mut self,
|
||||
id: hir::HirId,
|
||||
span: Span);
|
||||
// The value found at `cmt` is being borrowed with kind `bk`.
|
||||
fn borrow(&mut self, cmt: &mc::cmt_<'tcx>, bk: ty::BorrowKind);
|
||||
|
||||
// The path at `cmt` is being assigned to.
|
||||
fn mutate(&mut self,
|
||||
assignment_id: hir::HirId,
|
||||
assignment_span: Span,
|
||||
assignee_cmt: &mc::cmt_<'tcx>,
|
||||
mode: MutateMode);
|
||||
|
||||
// A nested closure or generator - only one layer deep.
|
||||
fn nested_body(&mut self, _body_id: hir::BodyId) {}
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
pub enum LoanCause {
|
||||
ClosureCapture(Span),
|
||||
AddrOf,
|
||||
AutoRef,
|
||||
AutoUnsafe,
|
||||
RefBinding,
|
||||
OverloadedOperator,
|
||||
ClosureInvocation,
|
||||
ForLoop,
|
||||
MatchDiscriminant
|
||||
fn mutate(&mut self, assignee_cmt: &mc::cmt_<'tcx>);
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
pub enum ConsumeMode {
|
||||
Copy, // reference to x where x has a type that copies
|
||||
Move(MoveReason), // reference to x where x has a type that moves
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
pub enum MoveReason {
|
||||
DirectRefMove,
|
||||
PatBindingMove,
|
||||
CaptureMove,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
pub enum MatchMode {
|
||||
NonBindingMatch,
|
||||
BorrowingMatch,
|
||||
CopyingMatch,
|
||||
MovingMatch,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
enum TrackMatchMode {
|
||||
Unknown,
|
||||
Definite(MatchMode),
|
||||
Conflicting,
|
||||
}
|
||||
|
||||
impl TrackMatchMode {
|
||||
// Builds up the whole match mode for a pattern from its constituent
|
||||
// parts. The lattice looks like this:
|
||||
//
|
||||
// Conflicting
|
||||
// / \
|
||||
// / \
|
||||
// Borrowing Moving
|
||||
// \ /
|
||||
// \ /
|
||||
// Copying
|
||||
// |
|
||||
// NonBinding
|
||||
// |
|
||||
// Unknown
|
||||
//
|
||||
// examples:
|
||||
//
|
||||
// * `(_, some_int)` pattern is Copying, since
|
||||
// NonBinding + Copying => Copying
|
||||
//
|
||||
// * `(some_int, some_box)` pattern is Moving, since
|
||||
// Copying + Moving => Moving
|
||||
//
|
||||
// * `(ref x, some_box)` pattern is Conflicting, since
|
||||
// Borrowing + Moving => Conflicting
|
||||
//
|
||||
// Note that the `Unknown` and `Conflicting` states are
|
||||
// represented separately from the other more interesting
|
||||
// `Definite` states, which simplifies logic here somewhat.
|
||||
fn lub(&mut self, mode: MatchMode) {
|
||||
*self = match (*self, mode) {
|
||||
// Note that clause order below is very significant.
|
||||
(Unknown, new) => Definite(new),
|
||||
(Definite(old), new) if old == new => Definite(old),
|
||||
|
||||
(Definite(old), NonBindingMatch) => Definite(old),
|
||||
(Definite(NonBindingMatch), new) => Definite(new),
|
||||
|
||||
(Definite(old), CopyingMatch) => Definite(old),
|
||||
(Definite(CopyingMatch), new) => Definite(new),
|
||||
|
||||
(Definite(_), _) => Conflicting,
|
||||
(Conflicting, _) => *self,
|
||||
};
|
||||
}
|
||||
|
||||
fn match_mode(&self) -> MatchMode {
|
||||
match *self {
|
||||
Unknown => NonBindingMatch,
|
||||
Definite(mode) => mode,
|
||||
Conflicting => {
|
||||
// Conservatively return MovingMatch to let the
|
||||
// compiler continue to make progress.
|
||||
MovingMatch
|
||||
}
|
||||
}
|
||||
}
|
||||
Move, // reference to x where x has a type that moves
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
|
@ -261,9 +114,6 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
/// - `param_env` --- parameter environment for trait lookups (esp. pertaining to `Copy`)
|
||||
/// - `region_scope_tree` --- region scope tree for the code being analyzed
|
||||
/// - `tables` --- typeck results for the code being analyzed
|
||||
/// - `rvalue_promotable_map` --- if you care about rvalue promotion, then provide
|
||||
/// the map here (it can be computed with `tcx.rvalue_promotable_map(def_id)`).
|
||||
/// `None` means that rvalues will be given more conservative lifetimes.
|
||||
///
|
||||
/// See also `with_infer`, which is used *during* typeck.
|
||||
pub fn new(
|
||||
|
@ -273,15 +123,13 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
param_env: ty::ParamEnv<'tcx>,
|
||||
region_scope_tree: &'a region::ScopeTree,
|
||||
tables: &'a ty::TypeckTables<'tcx>,
|
||||
rvalue_promotable_map: Option<&'tcx ItemLocalSet>,
|
||||
) -> Self {
|
||||
ExprUseVisitor {
|
||||
mc: mc::MemCategorizationContext::new(tcx,
|
||||
param_env,
|
||||
body_owner,
|
||||
region_scope_tree,
|
||||
tables,
|
||||
rvalue_promotable_map),
|
||||
tables),
|
||||
delegate,
|
||||
param_env,
|
||||
}
|
||||
|
@ -317,16 +165,9 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
let param_ty = return_if_err!(self.mc.pat_ty_adjusted(¶m.pat));
|
||||
debug!("consume_body: param_ty = {:?}", param_ty);
|
||||
|
||||
let fn_body_scope_r =
|
||||
self.tcx().mk_region(ty::ReScope(
|
||||
region::Scope {
|
||||
id: body.value.hir_id.local_id,
|
||||
data: region::ScopeData::Node
|
||||
}));
|
||||
let param_cmt = Rc::new(self.mc.cat_rvalue(
|
||||
param.hir_id,
|
||||
param.pat.span,
|
||||
fn_body_scope_r, // Parameters live only as long as the fn body.
|
||||
param_ty));
|
||||
|
||||
self.walk_irrefutable_pat(param_cmt, ¶m.pat);
|
||||
|
@ -339,15 +180,11 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
self.mc.tcx
|
||||
}
|
||||
|
||||
fn delegate_consume(&mut self,
|
||||
consume_id: hir::HirId,
|
||||
consume_span: Span,
|
||||
cmt: &mc::cmt_<'tcx>) {
|
||||
debug!("delegate_consume(consume_id={}, cmt={:?})",
|
||||
consume_id, cmt);
|
||||
fn delegate_consume(&mut self, cmt: &mc::cmt_<'tcx>) {
|
||||
debug!("delegate_consume(cmt={:?})", cmt);
|
||||
|
||||
let mode = copy_or_move(&self.mc, self.param_env, cmt, DirectRefMove);
|
||||
self.delegate.consume(consume_id, consume_span, cmt, mode);
|
||||
let mode = copy_or_move(&self.mc, self.param_env, cmt);
|
||||
self.delegate.consume(cmt, mode);
|
||||
}
|
||||
|
||||
fn consume_exprs(&mut self, exprs: &[hir::Expr]) {
|
||||
|
@ -360,30 +197,21 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
debug!("consume_expr(expr={:?})", expr);
|
||||
|
||||
let cmt = return_if_err!(self.mc.cat_expr(expr));
|
||||
self.delegate_consume(expr.hir_id, expr.span, &cmt);
|
||||
self.delegate_consume(&cmt);
|
||||
self.walk_expr(expr);
|
||||
}
|
||||
|
||||
fn mutate_expr(&mut self,
|
||||
span: Span,
|
||||
assignment_expr: &hir::Expr,
|
||||
expr: &hir::Expr,
|
||||
mode: MutateMode) {
|
||||
fn mutate_expr(&mut self, expr: &hir::Expr) {
|
||||
let cmt = return_if_err!(self.mc.cat_expr(expr));
|
||||
self.delegate.mutate(assignment_expr.hir_id, span, &cmt, mode);
|
||||
self.delegate.mutate(&cmt);
|
||||
self.walk_expr(expr);
|
||||
}
|
||||
|
||||
fn borrow_expr(&mut self,
|
||||
expr: &hir::Expr,
|
||||
r: ty::Region<'tcx>,
|
||||
bk: ty::BorrowKind,
|
||||
cause: LoanCause) {
|
||||
debug!("borrow_expr(expr={:?}, r={:?}, bk={:?})",
|
||||
expr, r, bk);
|
||||
fn borrow_expr(&mut self, expr: &hir::Expr, bk: ty::BorrowKind) {
|
||||
debug!("borrow_expr(expr={:?}, bk={:?})", expr, bk);
|
||||
|
||||
let cmt = return_if_err!(self.mc.cat_expr(expr));
|
||||
self.delegate.borrow(expr.hir_id, expr.span, &cmt, r, bk, cause);
|
||||
self.delegate.borrow(&cmt, bk);
|
||||
|
||||
self.walk_expr(expr)
|
||||
}
|
||||
|
@ -401,24 +229,24 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
hir::ExprKind::Path(_) => { }
|
||||
|
||||
hir::ExprKind::Type(ref subexpr, _) => {
|
||||
self.walk_expr(&subexpr)
|
||||
self.walk_expr(subexpr)
|
||||
}
|
||||
|
||||
hir::ExprKind::Unary(hir::UnDeref, ref base) => { // *base
|
||||
self.select_from_expr(&base);
|
||||
self.select_from_expr(base);
|
||||
}
|
||||
|
||||
hir::ExprKind::Field(ref base, _) => { // base.f
|
||||
self.select_from_expr(&base);
|
||||
self.select_from_expr(base);
|
||||
}
|
||||
|
||||
hir::ExprKind::Index(ref lhs, ref rhs) => { // lhs[rhs]
|
||||
self.select_from_expr(&lhs);
|
||||
self.consume_expr(&rhs);
|
||||
self.select_from_expr(lhs);
|
||||
self.consume_expr(rhs);
|
||||
}
|
||||
|
||||
hir::ExprKind::Call(ref callee, ref args) => { // callee(args)
|
||||
self.walk_callee(expr, &callee);
|
||||
self.walk_callee(expr, callee);
|
||||
self.consume_exprs(args);
|
||||
}
|
||||
|
||||
|
@ -436,14 +264,11 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
|
||||
hir::ExprKind::Match(ref discr, ref arms, _) => {
|
||||
let discr_cmt = Rc::new(return_if_err!(self.mc.cat_expr(&discr)));
|
||||
let r = self.tcx().lifetimes.re_empty;
|
||||
self.borrow_expr(&discr, r, ty::ImmBorrow, MatchDiscriminant);
|
||||
self.borrow_expr(&discr, ty::ImmBorrow);
|
||||
|
||||
// treatment of the discriminant is handled while walking the arms.
|
||||
for arm in arms {
|
||||
let mode = self.arm_move_mode(discr_cmt.clone(), arm);
|
||||
let mode = mode.match_mode();
|
||||
self.walk_arm(discr_cmt.clone(), arm, mode);
|
||||
self.walk_arm(discr_cmt.clone(), arm);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -454,11 +279,8 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
hir::ExprKind::AddrOf(m, ref base) => { // &base
|
||||
// make sure that the thing we are pointing out stays valid
|
||||
// for the lifetime `scope_r` of the resulting ptr:
|
||||
let expr_ty = return_if_err!(self.mc.expr_ty(expr));
|
||||
if let ty::Ref(r, _, _) = expr_ty.kind {
|
||||
let bk = ty::BorrowKind::from_mutbl(m);
|
||||
self.borrow_expr(&base, r, bk, AddrOf);
|
||||
}
|
||||
let bk = ty::BorrowKind::from_mutbl(m);
|
||||
self.borrow_expr(&base, bk);
|
||||
}
|
||||
|
||||
hir::ExprKind::InlineAsm(ref ia, ref outputs, ref inputs) => {
|
||||
|
@ -466,16 +288,7 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
if o.is_indirect {
|
||||
self.consume_expr(output);
|
||||
} else {
|
||||
self.mutate_expr(
|
||||
output.span,
|
||||
expr,
|
||||
output,
|
||||
if o.is_rw {
|
||||
MutateMode::WriteAndRead
|
||||
} else {
|
||||
MutateMode::JustWrite
|
||||
},
|
||||
);
|
||||
self.mutate_expr(output);
|
||||
}
|
||||
}
|
||||
self.consume_exprs(inputs);
|
||||
|
@ -486,65 +299,64 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
hir::ExprKind::Err => {}
|
||||
|
||||
hir::ExprKind::Loop(ref blk, _, _) => {
|
||||
self.walk_block(&blk);
|
||||
self.walk_block(blk);
|
||||
}
|
||||
|
||||
hir::ExprKind::Unary(_, ref lhs) => {
|
||||
self.consume_expr(&lhs);
|
||||
self.consume_expr(lhs);
|
||||
}
|
||||
|
||||
hir::ExprKind::Binary(_, ref lhs, ref rhs) => {
|
||||
self.consume_expr(&lhs);
|
||||
self.consume_expr(&rhs);
|
||||
self.consume_expr(lhs);
|
||||
self.consume_expr(rhs);
|
||||
}
|
||||
|
||||
hir::ExprKind::Block(ref blk, _) => {
|
||||
self.walk_block(&blk);
|
||||
self.walk_block(blk);
|
||||
}
|
||||
|
||||
hir::ExprKind::Break(_, ref opt_expr) | hir::ExprKind::Ret(ref opt_expr) => {
|
||||
if let Some(ref expr) = *opt_expr {
|
||||
self.consume_expr(&expr);
|
||||
self.consume_expr(expr);
|
||||
}
|
||||
}
|
||||
|
||||
hir::ExprKind::Assign(ref lhs, ref rhs) => {
|
||||
self.mutate_expr(expr.span, expr, &lhs, MutateMode::JustWrite);
|
||||
self.consume_expr(&rhs);
|
||||
self.mutate_expr(lhs);
|
||||
self.consume_expr(rhs);
|
||||
}
|
||||
|
||||
hir::ExprKind::Cast(ref base, _) => {
|
||||
self.consume_expr(&base);
|
||||
self.consume_expr(base);
|
||||
}
|
||||
|
||||
hir::ExprKind::DropTemps(ref expr) => {
|
||||
self.consume_expr(&expr);
|
||||
self.consume_expr(expr);
|
||||
}
|
||||
|
||||
hir::ExprKind::AssignOp(_, ref lhs, ref rhs) => {
|
||||
if self.mc.tables.is_method_call(expr) {
|
||||
self.consume_expr(lhs);
|
||||
} else {
|
||||
self.mutate_expr(expr.span, expr, &lhs, MutateMode::WriteAndRead);
|
||||
self.mutate_expr(lhs);
|
||||
}
|
||||
self.consume_expr(&rhs);
|
||||
self.consume_expr(rhs);
|
||||
}
|
||||
|
||||
hir::ExprKind::Repeat(ref base, _) => {
|
||||
self.consume_expr(&base);
|
||||
self.consume_expr(base);
|
||||
}
|
||||
|
||||
hir::ExprKind::Closure(_, _, body_id, fn_decl_span, _) => {
|
||||
self.delegate.nested_body(body_id);
|
||||
hir::ExprKind::Closure(_, _, _, fn_decl_span, _) => {
|
||||
self.walk_captures(expr, fn_decl_span);
|
||||
}
|
||||
|
||||
hir::ExprKind::Box(ref base) => {
|
||||
self.consume_expr(&base);
|
||||
self.consume_expr(base);
|
||||
}
|
||||
|
||||
hir::ExprKind::Yield(ref value, _) => {
|
||||
self.consume_expr(&value);
|
||||
self.consume_expr(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -560,24 +372,12 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
ty::Error => { }
|
||||
_ => {
|
||||
if let Some(def_id) = self.mc.tables.type_dependent_def_id(call.hir_id) {
|
||||
let call_scope = region::Scope {
|
||||
id: call.hir_id.local_id,
|
||||
data: region::ScopeData::Node
|
||||
};
|
||||
match OverloadedCallType::from_method_id(self.tcx(), def_id) {
|
||||
FnMutOverloadedCall => {
|
||||
let call_scope_r = self.tcx().mk_region(ty::ReScope(call_scope));
|
||||
self.borrow_expr(callee,
|
||||
call_scope_r,
|
||||
ty::MutBorrow,
|
||||
ClosureInvocation);
|
||||
self.borrow_expr(callee, ty::MutBorrow);
|
||||
}
|
||||
FnOverloadedCall => {
|
||||
let call_scope_r = self.tcx().mk_region(ty::ReScope(call_scope));
|
||||
self.borrow_expr(callee,
|
||||
call_scope_r,
|
||||
ty::ImmBorrow,
|
||||
ClosureInvocation);
|
||||
self.borrow_expr(callee, ty::ImmBorrow);
|
||||
}
|
||||
FnOnceOverloadedCall => self.consume_expr(callee),
|
||||
}
|
||||
|
@ -608,22 +408,14 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
}
|
||||
|
||||
fn walk_local(&mut self, local: &hir::Local) {
|
||||
match local.init {
|
||||
None => {
|
||||
local.pat.each_binding(|_, hir_id, span, _| {
|
||||
self.delegate.decl_without_init(hir_id, span);
|
||||
})
|
||||
}
|
||||
|
||||
Some(ref expr) => {
|
||||
// Variable declarations with
|
||||
// initializers are considered
|
||||
// "assigns", which is handled by
|
||||
// `walk_pat`:
|
||||
self.walk_expr(&expr);
|
||||
let init_cmt = Rc::new(return_if_err!(self.mc.cat_expr(&expr)));
|
||||
self.walk_irrefutable_pat(init_cmt, &local.pat);
|
||||
}
|
||||
if let Some(ref expr) = local.init {
|
||||
// Variable declarations with
|
||||
// initializers are considered
|
||||
// "assigns", which is handled by
|
||||
// `walk_pat`:
|
||||
self.walk_expr(&expr);
|
||||
let init_cmt = Rc::new(return_if_err!(self.mc.cat_expr(&expr)));
|
||||
self.walk_irrefutable_pat(init_cmt, &local.pat);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -673,7 +465,7 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
with_field.ident,
|
||||
with_field.ty(self.tcx(), substs)
|
||||
);
|
||||
self.delegate_consume(with_expr.hir_id, with_expr.span, &cmt_field);
|
||||
self.delegate_consume(&cmt_field);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -708,7 +500,7 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
adjustment::Adjust::Pointer(_) => {
|
||||
// Creating a closure/fn-pointer or unsizing consumes
|
||||
// the input and stores it into the resulting rvalue.
|
||||
self.delegate_consume(expr.hir_id, expr.span, &cmt);
|
||||
self.delegate_consume(&cmt);
|
||||
}
|
||||
|
||||
adjustment::Adjust::Deref(None) => {}
|
||||
|
@ -720,7 +512,7 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
// this is an autoref of `x`.
|
||||
adjustment::Adjust::Deref(Some(ref deref)) => {
|
||||
let bk = ty::BorrowKind::from_mutbl(deref.mutbl);
|
||||
self.delegate.borrow(expr.hir_id, expr.span, &cmt, deref.region, bk, AutoRef);
|
||||
self.delegate.borrow(&cmt, bk);
|
||||
}
|
||||
|
||||
adjustment::Adjust::Borrow(ref autoref) => {
|
||||
|
@ -744,13 +536,8 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
autoref);
|
||||
|
||||
match *autoref {
|
||||
adjustment::AutoBorrow::Ref(r, m) => {
|
||||
self.delegate.borrow(expr.hir_id,
|
||||
expr.span,
|
||||
cmt_base,
|
||||
r,
|
||||
ty::BorrowKind::from_mutbl(m.into()),
|
||||
AutoRef);
|
||||
adjustment::AutoBorrow::Ref(_, m) => {
|
||||
self.delegate.borrow(cmt_base, ty::BorrowKind::from_mutbl(m.into()));
|
||||
}
|
||||
|
||||
adjustment::AutoBorrow::RawPtr(m) => {
|
||||
|
@ -758,33 +545,14 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
expr.hir_id,
|
||||
cmt_base);
|
||||
|
||||
// Converting from a &T to *T (or &mut T to *mut T) is
|
||||
// treated as borrowing it for the enclosing temporary
|
||||
// scope.
|
||||
let r = self.tcx().mk_region(ty::ReScope(
|
||||
region::Scope {
|
||||
id: expr.hir_id.local_id,
|
||||
data: region::ScopeData::Node
|
||||
}));
|
||||
|
||||
self.delegate.borrow(expr.hir_id,
|
||||
expr.span,
|
||||
cmt_base,
|
||||
r,
|
||||
ty::BorrowKind::from_mutbl(m),
|
||||
AutoUnsafe);
|
||||
self.delegate.borrow(cmt_base, ty::BorrowKind::from_mutbl(m));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn arm_move_mode(&mut self, discr_cmt: mc::cmt<'tcx>, arm: &hir::Arm) -> TrackMatchMode {
|
||||
let mut mode = Unknown;
|
||||
self.determine_pat_move_mode(discr_cmt.clone(), &arm.pat, &mut mode);
|
||||
mode
|
||||
}
|
||||
|
||||
fn walk_arm(&mut self, discr_cmt: mc::cmt<'tcx>, arm: &hir::Arm, mode: MatchMode) {
|
||||
self.walk_pat(discr_cmt.clone(), &arm.pat, mode);
|
||||
fn walk_arm(&mut self, discr_cmt: mc::cmt<'tcx>, arm: &hir::Arm) {
|
||||
self.walk_pat(discr_cmt.clone(), &arm.pat);
|
||||
|
||||
if let Some(hir::Guard::If(ref e)) = arm.guard {
|
||||
self.consume_expr(e)
|
||||
|
@ -796,44 +564,12 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
/// Walks a pat that occurs in isolation (i.e., top-level of fn argument or
|
||||
/// let binding, and *not* a match arm or nested pat.)
|
||||
fn walk_irrefutable_pat(&mut self, cmt_discr: mc::cmt<'tcx>, pat: &hir::Pat) {
|
||||
let mut mode = Unknown;
|
||||
self.determine_pat_move_mode(cmt_discr.clone(), pat, &mut mode);
|
||||
let mode = mode.match_mode();
|
||||
self.walk_pat(cmt_discr, pat, mode);
|
||||
self.walk_pat(cmt_discr, pat);
|
||||
}
|
||||
|
||||
/// Identifies any bindings within `pat` and accumulates within
|
||||
/// `mode` whether the overall pattern/match structure is a move,
|
||||
/// copy, or borrow.
|
||||
fn determine_pat_move_mode(&mut self,
|
||||
cmt_discr: mc::cmt<'tcx>,
|
||||
pat: &hir::Pat,
|
||||
mode: &mut TrackMatchMode) {
|
||||
debug!("determine_pat_move_mode cmt_discr={:?} pat={:?}", cmt_discr, pat);
|
||||
|
||||
return_if_err!(self.mc.cat_pattern(cmt_discr, pat, |cmt_pat, pat| {
|
||||
if let PatKind::Binding(..) = pat.kind {
|
||||
let bm = *self.mc.tables.pat_binding_modes()
|
||||
.get(pat.hir_id)
|
||||
.expect("missing binding mode");
|
||||
match bm {
|
||||
ty::BindByReference(..) =>
|
||||
mode.lub(BorrowingMatch),
|
||||
ty::BindByValue(..) => {
|
||||
match copy_or_move(&self.mc, self.param_env, &cmt_pat, PatBindingMove) {
|
||||
Copy => mode.lub(CopyingMatch),
|
||||
Move(..) => mode.lub(MovingMatch),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
/// The core driver for walking a pattern; `match_mode` must be
|
||||
/// established up front, e.g., via `determine_pat_move_mode` (see
|
||||
/// also `walk_irrefutable_pat` for patterns that stand alone).
|
||||
fn walk_pat(&mut self, cmt_discr: mc::cmt<'tcx>, pat: &hir::Pat, match_mode: MatchMode) {
|
||||
/// The core driver for walking a pattern
|
||||
fn walk_pat(&mut self, cmt_discr: mc::cmt<'tcx>, pat: &hir::Pat) {
|
||||
debug!("walk_pat(cmt_discr={:?}, pat={:?})", cmt_discr, pat);
|
||||
|
||||
let tcx = self.tcx();
|
||||
|
@ -841,10 +577,9 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
return_if_err!(mc.cat_pattern(cmt_discr.clone(), pat, |cmt_pat, pat| {
|
||||
if let PatKind::Binding(_, canonical_id, ..) = pat.kind {
|
||||
debug!(
|
||||
"walk_pat: binding cmt_pat={:?} pat={:?} match_mode={:?}",
|
||||
"walk_pat: binding cmt_pat={:?} pat={:?}",
|
||||
cmt_pat,
|
||||
pat,
|
||||
match_mode,
|
||||
);
|
||||
if let Some(&bm) = mc.tables.pat_binding_modes().get(pat.hir_id) {
|
||||
debug!("walk_pat: pat.hir_id={:?} bm={:?}", pat.hir_id, bm);
|
||||
|
@ -857,21 +592,19 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
// binding being produced.
|
||||
let def = Res::Local(canonical_id);
|
||||
if let Ok(ref binding_cmt) = mc.cat_res(pat.hir_id, pat.span, pat_ty, def) {
|
||||
delegate.mutate(pat.hir_id, pat.span, binding_cmt, MutateMode::Init);
|
||||
delegate.mutate(binding_cmt);
|
||||
}
|
||||
|
||||
// It is also a borrow or copy/move of the value being matched.
|
||||
match bm {
|
||||
ty::BindByReference(m) => {
|
||||
if let ty::Ref(r, _, _) = pat_ty.kind {
|
||||
let bk = ty::BorrowKind::from_mutbl(m);
|
||||
delegate.borrow(pat.hir_id, pat.span, &cmt_pat, r, bk, RefBinding);
|
||||
}
|
||||
let bk = ty::BorrowKind::from_mutbl(m);
|
||||
delegate.borrow(&cmt_pat, bk);
|
||||
}
|
||||
ty::BindByValue(..) => {
|
||||
let mode = copy_or_move(mc, param_env, &cmt_pat, PatBindingMove);
|
||||
let mode = copy_or_move(mc, param_env, &cmt_pat);
|
||||
debug!("walk_pat binding consuming pat");
|
||||
delegate.consume_pat(pat, &cmt_pat, mode);
|
||||
delegate.consume(&cmt_pat, mode);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -879,45 +612,6 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
}
|
||||
}
|
||||
}));
|
||||
|
||||
// Do a second pass over the pattern, calling `matched_pat` on
|
||||
// the interior nodes (enum variants and structs), as opposed
|
||||
// to the above loop's visit of than the bindings that form
|
||||
// the leaves of the pattern tree structure.
|
||||
return_if_err!(mc.cat_pattern(cmt_discr, pat, |cmt_pat, pat| {
|
||||
let qpath = match pat.kind {
|
||||
PatKind::Path(ref qpath) |
|
||||
PatKind::TupleStruct(ref qpath, ..) |
|
||||
PatKind::Struct(ref qpath, ..) => qpath,
|
||||
_ => return
|
||||
};
|
||||
let res = mc.tables.qpath_res(qpath, pat.hir_id);
|
||||
match res {
|
||||
Res::Def(DefKind::Ctor(CtorOf::Variant, ..), variant_ctor_did) => {
|
||||
let variant_did = mc.tcx.parent(variant_ctor_did).unwrap();
|
||||
let downcast_cmt = mc.cat_downcast_if_needed(pat, cmt_pat, variant_did);
|
||||
|
||||
debug!("variantctor downcast_cmt={:?} pat={:?}", downcast_cmt, pat);
|
||||
delegate.matched_pat(pat, &downcast_cmt, match_mode);
|
||||
}
|
||||
Res::Def(DefKind::Variant, variant_did) => {
|
||||
let downcast_cmt = mc.cat_downcast_if_needed(pat, cmt_pat, variant_did);
|
||||
|
||||
debug!("variant downcast_cmt={:?} pat={:?}", downcast_cmt, pat);
|
||||
delegate.matched_pat(pat, &downcast_cmt, match_mode);
|
||||
}
|
||||
Res::Def(DefKind::Struct, _)
|
||||
| Res::Def(DefKind::Ctor(..), _)
|
||||
| Res::Def(DefKind::Union, _)
|
||||
| Res::Def(DefKind::TyAlias, _)
|
||||
| Res::Def(DefKind::AssocTy, _)
|
||||
| Res::SelfTy(..) => {
|
||||
debug!("struct cmt_pat={:?} pat={:?}", cmt_pat, pat);
|
||||
delegate.matched_pat(pat, &cmt_pat, match_mode);
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
fn walk_captures(&mut self, closure_expr: &hir::Expr, fn_decl_span: Span) {
|
||||
|
@ -925,7 +619,7 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
|
||||
let closure_def_id = self.tcx().hir().local_def_id(closure_expr.hir_id);
|
||||
if let Some(upvars) = self.tcx().upvars(closure_def_id) {
|
||||
for (&var_id, upvar) in upvars.iter() {
|
||||
for &var_id in upvars.keys() {
|
||||
let upvar_id = ty::UpvarId {
|
||||
var_path: ty::UpvarPath { hir_id: var_id },
|
||||
closure_expr_id: closure_def_id.to_local(),
|
||||
|
@ -936,19 +630,11 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
|
|||
var_id));
|
||||
match upvar_capture {
|
||||
ty::UpvarCapture::ByValue => {
|
||||
let mode = copy_or_move(&self.mc,
|
||||
self.param_env,
|
||||
&cmt_var,
|
||||
CaptureMove);
|
||||
self.delegate.consume(closure_expr.hir_id, upvar.span, &cmt_var, mode);
|
||||
let mode = copy_or_move(&self.mc, self.param_env, &cmt_var);
|
||||
self.delegate.consume(&cmt_var, mode);
|
||||
}
|
||||
ty::UpvarCapture::ByRef(upvar_borrow) => {
|
||||
self.delegate.borrow(closure_expr.hir_id,
|
||||
fn_decl_span,
|
||||
&cmt_var,
|
||||
upvar_borrow.region,
|
||||
upvar_borrow.kind,
|
||||
ClosureCapture(upvar.span));
|
||||
self.delegate.borrow(&cmt_var, upvar_borrow.kind);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -971,10 +657,9 @@ fn copy_or_move<'a, 'tcx>(
|
|||
mc: &mc::MemCategorizationContext<'a, 'tcx>,
|
||||
param_env: ty::ParamEnv<'tcx>,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
move_reason: MoveReason,
|
||||
) -> ConsumeMode {
|
||||
if !mc.type_is_copy_modulo_regions(param_env, cmt.ty, cmt.span) {
|
||||
Move(move_reason)
|
||||
Move
|
||||
} else {
|
||||
Copy
|
||||
}
|
||||
|
|
|
@ -79,12 +79,11 @@ use std::fmt;
|
|||
use std::hash::{Hash, Hasher};
|
||||
use rustc_data_structures::fx::FxIndexMap;
|
||||
use std::rc::Rc;
|
||||
use crate::util::nodemap::ItemLocalSet;
|
||||
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
pub enum Categorization<'tcx> {
|
||||
Rvalue(ty::Region<'tcx>), // temporary val, argument is its scope
|
||||
ThreadLocal(ty::Region<'tcx>), // value that cannot move, but still restricted in scope
|
||||
Rvalue, // temporary val
|
||||
ThreadLocal, // value that cannot move, but still restricted in scope
|
||||
StaticItem,
|
||||
Upvar(Upvar), // upvar referenced by closure env
|
||||
Local(hir::HirId), // local variable
|
||||
|
@ -219,7 +218,6 @@ pub struct MemCategorizationContext<'a, 'tcx> {
|
|||
pub upvars: Option<&'tcx FxIndexMap<hir::HirId, hir::Upvar>>,
|
||||
pub region_scope_tree: &'a region::ScopeTree,
|
||||
pub tables: &'a ty::TypeckTables<'tcx>,
|
||||
rvalue_promotable_map: Option<&'tcx ItemLocalSet>,
|
||||
infcx: Option<&'a InferCtxt<'a, 'tcx>>,
|
||||
}
|
||||
|
||||
|
@ -335,7 +333,6 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
body_owner: DefId,
|
||||
region_scope_tree: &'a region::ScopeTree,
|
||||
tables: &'a ty::TypeckTables<'tcx>,
|
||||
rvalue_promotable_map: Option<&'tcx ItemLocalSet>,
|
||||
) -> MemCategorizationContext<'a, 'tcx> {
|
||||
MemCategorizationContext {
|
||||
tcx,
|
||||
|
@ -343,7 +340,6 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
upvars: tcx.upvars(body_owner),
|
||||
region_scope_tree,
|
||||
tables,
|
||||
rvalue_promotable_map,
|
||||
infcx: None,
|
||||
param_env,
|
||||
}
|
||||
|
@ -369,19 +365,12 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
) -> MemCategorizationContext<'a, 'tcx> {
|
||||
let tcx = infcx.tcx;
|
||||
|
||||
// Subtle: we can't do rvalue promotion analysis until the
|
||||
// typeck phase is complete, which means that you can't trust
|
||||
// the rvalue lifetimes that result, but that's ok, since we
|
||||
// don't need to know those during type inference.
|
||||
let rvalue_promotable_map = None;
|
||||
|
||||
MemCategorizationContext {
|
||||
tcx,
|
||||
body_owner,
|
||||
upvars: tcx.upvars(body_owner),
|
||||
region_scope_tree,
|
||||
tables,
|
||||
rvalue_promotable_map,
|
||||
infcx: Some(infcx),
|
||||
param_env,
|
||||
}
|
||||
|
@ -664,8 +653,7 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
.any(|attr| attr.check_name(sym::thread_local));
|
||||
|
||||
let cat = if is_thread_local {
|
||||
let re = self.temporary_scope(hir_id.local_id);
|
||||
Categorization::ThreadLocal(re)
|
||||
Categorization::ThreadLocal
|
||||
} else {
|
||||
Categorization::StaticItem
|
||||
};
|
||||
|
@ -740,16 +728,18 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
let ty = self.node_ty(fn_hir_id)?;
|
||||
let kind = match ty.kind {
|
||||
ty::Generator(..) => ty::ClosureKind::FnOnce,
|
||||
ty::Closure(closure_def_id, closure_substs) => {
|
||||
ty::Closure(closure_def_id, substs) => {
|
||||
match self.infcx {
|
||||
// During upvar inference we may not know the
|
||||
// closure kind, just use the LATTICE_BOTTOM value.
|
||||
Some(infcx) =>
|
||||
infcx.closure_kind(closure_def_id, closure_substs)
|
||||
.unwrap_or(ty::ClosureKind::LATTICE_BOTTOM),
|
||||
infcx.closure_kind(
|
||||
closure_def_id,
|
||||
substs
|
||||
).unwrap_or(ty::ClosureKind::LATTICE_BOTTOM),
|
||||
|
||||
None =>
|
||||
closure_substs.closure_kind(closure_def_id, self.tcx),
|
||||
substs.as_closure().kind(closure_def_id, self.tcx),
|
||||
}
|
||||
}
|
||||
_ => span_bug!(span, "unexpected type for fn in mem_categorization: {:?}", ty),
|
||||
|
@ -876,16 +866,6 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
ret
|
||||
}
|
||||
|
||||
/// Returns the lifetime of a temporary created by expr with id `id`.
|
||||
/// This could be `'static` if `id` is part of a constant expression.
|
||||
pub fn temporary_scope(&self, id: hir::ItemLocalId) -> ty::Region<'tcx> {
|
||||
let scope = self.region_scope_tree.temporary_scope(id);
|
||||
self.tcx.mk_region(match scope {
|
||||
Some(scope) => ty::ReScope(scope),
|
||||
None => ty::ReStatic
|
||||
})
|
||||
}
|
||||
|
||||
pub fn cat_rvalue_node(&self,
|
||||
hir_id: hir::HirId,
|
||||
span: Span,
|
||||
|
@ -894,28 +874,7 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
debug!("cat_rvalue_node(id={:?}, span={:?}, expr_ty={:?})",
|
||||
hir_id, span, expr_ty);
|
||||
|
||||
let promotable = self.rvalue_promotable_map.as_ref().map(|m| m.contains(&hir_id.local_id))
|
||||
.unwrap_or(false);
|
||||
|
||||
debug!("cat_rvalue_node: promotable = {:?}", promotable);
|
||||
|
||||
// Always promote `[T; 0]` (even when e.g., borrowed mutably).
|
||||
let promotable = match expr_ty.kind {
|
||||
ty::Array(_, len) if len.try_eval_usize(self.tcx, self.param_env) == Some(0) => true,
|
||||
_ => promotable,
|
||||
};
|
||||
|
||||
debug!("cat_rvalue_node: promotable = {:?} (2)", promotable);
|
||||
|
||||
// Compute maximum lifetime of this rvalue. This is 'static if
|
||||
// we can promote to a constant, otherwise equal to enclosing temp
|
||||
// lifetime.
|
||||
let re = if promotable {
|
||||
self.tcx.lifetimes.re_static
|
||||
} else {
|
||||
self.temporary_scope(hir_id.local_id)
|
||||
};
|
||||
let ret = self.cat_rvalue(hir_id, span, re, expr_ty);
|
||||
let ret = self.cat_rvalue(hir_id, span, expr_ty);
|
||||
debug!("cat_rvalue_node ret {:?}", ret);
|
||||
ret
|
||||
}
|
||||
|
@ -923,12 +882,11 @@ impl<'a, 'tcx> MemCategorizationContext<'a, 'tcx> {
|
|||
pub fn cat_rvalue(&self,
|
||||
cmt_hir_id: hir::HirId,
|
||||
span: Span,
|
||||
temp_scope: ty::Region<'tcx>,
|
||||
expr_ty: Ty<'tcx>) -> cmt_<'tcx> {
|
||||
let ret = cmt_ {
|
||||
hir_id: cmt_hir_id,
|
||||
span:span,
|
||||
cat:Categorization::Rvalue(temp_scope),
|
||||
cat:Categorization::Rvalue,
|
||||
mutbl:McDeclared,
|
||||
ty:expr_ty,
|
||||
note: NoteNone
|
||||
|
@ -1376,9 +1334,9 @@ impl<'tcx> cmt_<'tcx> {
|
|||
//! determines how long the value in `self` remains live.
|
||||
|
||||
match self.cat {
|
||||
Categorization::Rvalue(..) |
|
||||
Categorization::Rvalue |
|
||||
Categorization::StaticItem |
|
||||
Categorization::ThreadLocal(..) |
|
||||
Categorization::ThreadLocal |
|
||||
Categorization::Local(..) |
|
||||
Categorization::Deref(_, UnsafePtr(..)) |
|
||||
Categorization::Deref(_, BorrowedPtr(..)) |
|
||||
|
@ -1409,8 +1367,8 @@ impl<'tcx> cmt_<'tcx> {
|
|||
b.freely_aliasable()
|
||||
}
|
||||
|
||||
Categorization::Rvalue(..) |
|
||||
Categorization::ThreadLocal(..) |
|
||||
Categorization::Rvalue |
|
||||
Categorization::ThreadLocal |
|
||||
Categorization::Local(..) |
|
||||
Categorization::Upvar(..) |
|
||||
Categorization::Deref(_, UnsafePtr(..)) => { // yes, it's aliasable, but...
|
||||
|
@ -1457,10 +1415,10 @@ impl<'tcx> cmt_<'tcx> {
|
|||
Categorization::StaticItem => {
|
||||
"static item".into()
|
||||
}
|
||||
Categorization::ThreadLocal(..) => {
|
||||
Categorization::ThreadLocal => {
|
||||
"thread-local static item".into()
|
||||
}
|
||||
Categorization::Rvalue(..) => {
|
||||
Categorization::Rvalue => {
|
||||
"non-place".into()
|
||||
}
|
||||
Categorization::Local(vid) => {
|
||||
|
|
|
@ -15,7 +15,7 @@ use crate::ty::layout::VariantIdx;
|
|||
use crate::ty::print::{FmtPrinter, Printer};
|
||||
use crate::ty::subst::{Subst, SubstsRef};
|
||||
use crate::ty::{
|
||||
self, AdtDef, CanonicalUserTypeAnnotations, ClosureSubsts, GeneratorSubsts, Region, Ty, TyCtxt,
|
||||
self, AdtDef, CanonicalUserTypeAnnotations, GeneratorSubsts, Region, Ty, TyCtxt,
|
||||
UserTypeAnnotationIndex,
|
||||
};
|
||||
|
||||
|
@ -2188,7 +2188,7 @@ pub enum AggregateKind<'tcx> {
|
|||
/// active field index would identity the field `c`
|
||||
Adt(&'tcx AdtDef, VariantIdx, SubstsRef<'tcx>, Option<UserTypeAnnotationIndex>, Option<usize>),
|
||||
|
||||
Closure(DefId, ClosureSubsts<'tcx>),
|
||||
Closure(DefId, SubstsRef<'tcx>),
|
||||
Generator(DefId, GeneratorSubsts<'tcx>, hir::GeneratorMovability),
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::ty::subst::SubstsRef;
|
||||
use crate::ty::{CanonicalUserTypeAnnotation, ClosureSubsts, GeneratorSubsts, Ty};
|
||||
use crate::ty::{CanonicalUserTypeAnnotation, GeneratorSubsts, Ty};
|
||||
use crate::mir::*;
|
||||
use syntax_pos::Span;
|
||||
|
||||
|
@ -230,12 +230,6 @@ macro_rules! make_mir_visitor {
|
|||
self.super_substs(substs);
|
||||
}
|
||||
|
||||
fn visit_closure_substs(&mut self,
|
||||
substs: & $($mutability)? ClosureSubsts<'tcx>,
|
||||
_: Location) {
|
||||
self.super_closure_substs(substs);
|
||||
}
|
||||
|
||||
fn visit_generator_substs(&mut self,
|
||||
substs: & $($mutability)? GeneratorSubsts<'tcx>,
|
||||
_: Location) {
|
||||
|
@ -627,7 +621,7 @@ macro_rules! make_mir_visitor {
|
|||
_,
|
||||
closure_substs
|
||||
) => {
|
||||
self.visit_closure_substs(closure_substs, location);
|
||||
self.visit_substs(closure_substs, location);
|
||||
}
|
||||
AggregateKind::Generator(
|
||||
_,
|
||||
|
@ -856,10 +850,6 @@ macro_rules! make_mir_visitor {
|
|||
_substs: & $($mutability)? GeneratorSubsts<'tcx>) {
|
||||
}
|
||||
|
||||
fn super_closure_substs(&mut self,
|
||||
_substs: & $($mutability)? ClosureSubsts<'tcx>) {
|
||||
}
|
||||
|
||||
// Convenience methods
|
||||
|
||||
fn visit_location(&mut self, body: & $($mutability)? Body<'tcx>, location: Location) {
|
||||
|
|
|
@ -94,6 +94,7 @@ rustc_queries! {
|
|||
/// of the MIR qualify_consts pass. The actual meaning of
|
||||
/// the value isn't known except to the pass itself.
|
||||
query mir_const_qualif(key: DefId) -> (u8, &'tcx BitSet<mir::Local>) {
|
||||
desc { |tcx| "const checking `{}`", tcx.def_path_str(key) }
|
||||
cache_on_disk_if { key.is_local() }
|
||||
}
|
||||
|
||||
|
@ -530,19 +531,6 @@ rustc_queries! {
|
|||
|
||||
TypeChecking {
|
||||
query trait_of_item(_: DefId) -> Option<DefId> {}
|
||||
query const_is_rvalue_promotable_to_static(key: DefId) -> bool {
|
||||
desc { |tcx|
|
||||
"const checking if rvalue is promotable to static `{}`",
|
||||
tcx.def_path_str(key)
|
||||
}
|
||||
cache_on_disk_if { true }
|
||||
}
|
||||
query rvalue_promotable_map(key: DefId) -> &'tcx ItemLocalSet {
|
||||
desc { |tcx|
|
||||
"checking which parts of `{}` are promotable to static",
|
||||
tcx.def_path_str(key)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Codegen {
|
||||
|
|
|
@ -619,7 +619,7 @@ pub struct VtableGeneratorData<'tcx, N> {
|
|||
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, HashStable)]
|
||||
pub struct VtableClosureData<'tcx, N> {
|
||||
pub closure_def_id: DefId,
|
||||
pub substs: ty::ClosureSubsts<'tcx>,
|
||||
pub substs: SubstsRef<'tcx>,
|
||||
/// Nested obligations. This can be non-empty if the closure
|
||||
/// signature contains associated types.
|
||||
pub nested: Vec<N>
|
||||
|
|
|
@ -1334,7 +1334,8 @@ fn confirm_closure_candidate<'cx, 'tcx>(
|
|||
) -> Progress<'tcx> {
|
||||
let tcx = selcx.tcx();
|
||||
let infcx = selcx.infcx();
|
||||
let closure_sig_ty = vtable.substs.closure_sig_ty(vtable.closure_def_id, tcx);
|
||||
let closure_sig_ty = vtable.substs
|
||||
.as_closure().sig_ty(vtable.closure_def_id, tcx);
|
||||
let closure_sig = infcx.shallow_resolve(closure_sig_ty).fn_sig(tcx);
|
||||
let Normalized {
|
||||
value: closure_sig,
|
||||
|
|
|
@ -213,6 +213,7 @@ pub fn trivial_dropck_outlives<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> bool {
|
|||
// check if *any* of those are trivial.
|
||||
ty::Tuple(ref tys) => tys.iter().all(|t| trivial_dropck_outlives(tcx, t.expect_ty())),
|
||||
ty::Closure(def_id, ref substs) => substs
|
||||
.as_closure()
|
||||
.upvar_tys(def_id, tcx)
|
||||
.all(|t| trivial_dropck_outlives(tcx, t)),
|
||||
|
||||
|
|
|
@ -2051,7 +2051,10 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
|
|||
"assemble_unboxed_candidates: kind={:?} obligation={:?}",
|
||||
kind, obligation
|
||||
);
|
||||
match self.infcx.closure_kind(closure_def_id, closure_substs) {
|
||||
match self.infcx.closure_kind(
|
||||
closure_def_id,
|
||||
closure_substs
|
||||
) {
|
||||
Some(closure_kind) => {
|
||||
debug!(
|
||||
"assemble_unboxed_candidates: closure_kind = {:?}",
|
||||
|
@ -2669,7 +2672,7 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
|
|||
ty::Closure(def_id, substs) => {
|
||||
// (*) binder moved here
|
||||
Where(ty::Binder::bind(
|
||||
substs.upvar_tys(def_id, self.tcx()).collect(),
|
||||
substs.as_closure().upvar_tys(def_id, self.tcx()).collect(),
|
||||
))
|
||||
}
|
||||
|
||||
|
@ -2753,7 +2756,9 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
|
|||
tys.iter().map(|k| k.expect_ty()).collect()
|
||||
}
|
||||
|
||||
ty::Closure(def_id, ref substs) => substs.upvar_tys(def_id, self.tcx()).collect(),
|
||||
ty::Closure(def_id, ref substs) => substs.as_closure()
|
||||
.upvar_tys(def_id, self.tcx())
|
||||
.collect(),
|
||||
|
||||
ty::Generator(def_id, ref substs, _) => {
|
||||
let witness = substs.witness(def_id, self.tcx());
|
||||
|
@ -3370,17 +3375,22 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
|
|||
)?);
|
||||
|
||||
// FIXME: chalk
|
||||
|
||||
if !self.tcx().sess.opts.debugging_opts.chalk {
|
||||
obligations.push(Obligation::new(
|
||||
obligation.cause.clone(),
|
||||
obligation.param_env,
|
||||
ty::Predicate::ClosureKind(closure_def_id, substs, kind),
|
||||
ty::Predicate::ClosureKind(
|
||||
closure_def_id,
|
||||
substs,
|
||||
kind
|
||||
),
|
||||
));
|
||||
}
|
||||
|
||||
Ok(VtableClosureData {
|
||||
closure_def_id,
|
||||
substs: substs.clone(),
|
||||
substs: substs,
|
||||
nested: obligations,
|
||||
})
|
||||
}
|
||||
|
@ -3869,7 +3879,7 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
|
|||
&mut self,
|
||||
obligation: &TraitObligation<'tcx>,
|
||||
closure_def_id: DefId,
|
||||
substs: ty::ClosureSubsts<'tcx>,
|
||||
substs: SubstsRef<'tcx>,
|
||||
) -> ty::PolyTraitRef<'tcx> {
|
||||
debug!(
|
||||
"closure_trait_ref_unnormalized(obligation={:?}, closure_def_id={:?}, substs={:?})",
|
||||
|
|
|
@ -29,7 +29,7 @@ use crate::traits;
|
|||
use crate::traits::{Clause, Clauses, GoalKind, Goal, Goals};
|
||||
use crate::ty::{self, DefIdTree, Ty, TypeAndMut};
|
||||
use crate::ty::{TyS, TyKind, List};
|
||||
use crate::ty::{AdtKind, AdtDef, ClosureSubsts, GeneratorSubsts, Region, Const};
|
||||
use crate::ty::{AdtKind, AdtDef, GeneratorSubsts, Region, Const};
|
||||
use crate::ty::{PolyFnSig, InferTy, ParamTy, ProjectionTy, ExistentialPredicate, Predicate};
|
||||
use crate::ty::RegionKind;
|
||||
use crate::ty::{TyVar, TyVid, IntVar, IntVid, FloatVar, FloatVid, ConstVid};
|
||||
|
@ -2502,7 +2502,7 @@ impl<'tcx> TyCtxt<'tcx> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
pub fn mk_closure(self, closure_id: DefId, closure_substs: ClosureSubsts<'tcx>)
|
||||
pub fn mk_closure(self, closure_id: DefId, closure_substs: SubstsRef<'tcx>)
|
||||
-> Ty<'tcx> {
|
||||
self.mk_ty(Closure(closure_id, closure_substs))
|
||||
}
|
||||
|
|
|
@ -106,7 +106,7 @@ impl FlagComputation {
|
|||
&ty::Closure(_, ref substs) => {
|
||||
self.add_flags(TypeFlags::HAS_TY_CLOSURE);
|
||||
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES);
|
||||
self.add_substs(&substs.substs);
|
||||
self.add_substs(substs);
|
||||
}
|
||||
|
||||
&ty::Bound(debruijn, _) => {
|
||||
|
|
|
@ -59,7 +59,7 @@ impl<'tcx> Instance<'tcx> {
|
|||
// Shims currently have type FnPtr. Not sure this should remain.
|
||||
ty::FnPtr(_) => ty.fn_sig(tcx),
|
||||
ty::Closure(def_id, substs) => {
|
||||
let sig = substs.closure_sig(def_id, tcx);
|
||||
let sig = substs.as_closure().sig(def_id, tcx);
|
||||
|
||||
let env_ty = tcx.closure_env_ty(def_id, substs).unwrap();
|
||||
sig.map_bound(|sig| tcx.mk_fn_sig(
|
||||
|
@ -315,14 +315,14 @@ impl<'tcx> Instance<'tcx> {
|
|||
pub fn resolve_closure(
|
||||
tcx: TyCtxt<'tcx>,
|
||||
def_id: DefId,
|
||||
substs: ty::ClosureSubsts<'tcx>,
|
||||
substs: ty::SubstsRef<'tcx>,
|
||||
requested_kind: ty::ClosureKind,
|
||||
) -> Instance<'tcx> {
|
||||
let actual_kind = substs.closure_kind(def_id, tcx);
|
||||
let actual_kind = substs.as_closure().kind(def_id, tcx);
|
||||
|
||||
match needs_fn_once_adapter_shim(actual_kind, requested_kind) {
|
||||
Ok(true) => Instance::fn_once_adapter_instance(tcx, def_id, substs),
|
||||
_ => Instance::new(def_id, substs.substs)
|
||||
_ => Instance::new(def_id, substs)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -335,7 +335,7 @@ impl<'tcx> Instance<'tcx> {
|
|||
pub fn fn_once_adapter_instance(
|
||||
tcx: TyCtxt<'tcx>,
|
||||
closure_did: DefId,
|
||||
substs: ty::ClosureSubsts<'tcx>,
|
||||
substs: ty::SubstsRef<'tcx>,
|
||||
) -> Instance<'tcx> {
|
||||
debug!("fn_once_adapter_shim({:?}, {:?})",
|
||||
closure_did,
|
||||
|
@ -348,7 +348,7 @@ impl<'tcx> Instance<'tcx> {
|
|||
|
||||
let self_ty = tcx.mk_closure(closure_did, substs);
|
||||
|
||||
let sig = substs.closure_sig(closure_did, tcx);
|
||||
let sig = substs.as_closure().sig(closure_did, tcx);
|
||||
let sig = tcx.normalize_erasing_late_bound_regions(ty::ParamEnv::reveal_all(), &sig);
|
||||
assert_eq!(sig.inputs().len(), 1);
|
||||
let substs = tcx.mk_substs_trait(self_ty, &[sig.inputs()[0].into()]);
|
||||
|
|
|
@ -674,7 +674,7 @@ impl<'tcx> LayoutCx<'tcx, TyCtxt<'tcx>> {
|
|||
ty::Generator(def_id, substs, _) => self.generator_layout(ty, def_id, &substs)?,
|
||||
|
||||
ty::Closure(def_id, ref substs) => {
|
||||
let tys = substs.upvar_tys(def_id, tcx);
|
||||
let tys = substs.as_closure().upvar_tys(def_id, tcx);
|
||||
univariant(&tys.map(|ty| self.layout_of(ty)).collect::<Result<Vec<_>, _>>()?,
|
||||
&ReprOptions::default(),
|
||||
StructKind::AlwaysSized)?
|
||||
|
@ -2147,7 +2147,7 @@ where
|
|||
|
||||
// Tuples, generators and closures.
|
||||
ty::Closure(def_id, ref substs) => {
|
||||
substs.upvar_tys(def_id, tcx).nth(i).unwrap()
|
||||
substs.as_closure().upvar_tys(def_id, tcx).nth(i).unwrap()
|
||||
}
|
||||
|
||||
ty::Generator(def_id, ref substs, _) => {
|
||||
|
|
|
@ -1111,7 +1111,7 @@ pub enum Predicate<'tcx> {
|
|||
/// No direct syntax. May be thought of as `where T: FnFoo<...>`
|
||||
/// for some substitutions `...` and `T` being a closure type.
|
||||
/// Satisfied (or refuted) once we know the closure's kind.
|
||||
ClosureKind(DefId, ClosureSubsts<'tcx>, ClosureKind),
|
||||
ClosureKind(DefId, SubstsRef<'tcx>, ClosureKind),
|
||||
|
||||
/// `T1 <: T2`
|
||||
Subtype(PolySubtypePredicate<'tcx>),
|
||||
|
@ -1458,7 +1458,7 @@ impl<'tcx> Predicate<'tcx> {
|
|||
WalkTysIter::None
|
||||
}
|
||||
ty::Predicate::ClosureKind(_closure_def_id, closure_substs, _kind) => {
|
||||
WalkTysIter::Types(closure_substs.substs.types())
|
||||
WalkTysIter::Types(closure_substs.types())
|
||||
}
|
||||
ty::Predicate::ConstEvaluatable(_, substs) => {
|
||||
WalkTysIter::Types(substs.types())
|
||||
|
|
|
@ -62,7 +62,7 @@ impl<'tcx> TyCtxt<'tcx> {
|
|||
// projection).
|
||||
match ty.kind {
|
||||
ty::Closure(def_id, ref substs) => {
|
||||
for upvar_ty in substs.upvar_tys(def_id, *self) {
|
||||
for upvar_ty in substs.as_closure().upvar_tys(def_id, *self) {
|
||||
self.compute_components(upvar_ty, out);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
use rustc::hir::def_id::DefId;
|
||||
use rustc::mir::interpret::ConstValue;
|
||||
use rustc::ty::subst::SubstsRef;
|
||||
use rustc::ty::{self, ClosureSubsts, Const, GeneratorSubsts, Instance, Ty, TyCtxt};
|
||||
use rustc::ty::{self, Const, GeneratorSubsts, Instance, Ty, TyCtxt};
|
||||
use rustc::{bug, hir};
|
||||
use std::fmt::Write;
|
||||
use std::iter;
|
||||
|
@ -154,8 +154,8 @@ impl DefPathBasedNames<'tcx> {
|
|||
self.push_type_name(sig.output(), output, debug);
|
||||
}
|
||||
}
|
||||
ty::Generator(def_id, GeneratorSubsts { ref substs }, _)
|
||||
| ty::Closure(def_id, ClosureSubsts { ref substs }) => {
|
||||
ty::Generator(def_id, GeneratorSubsts { substs }, _)
|
||||
| ty::Closure(def_id, substs) => {
|
||||
self.push_def_path(def_id, output);
|
||||
let generics = self.tcx.generics_of(self.tcx.closure_base_def_id(def_id));
|
||||
let substs = substs.truncate_to(self.tcx, generics);
|
||||
|
|
|
@ -649,7 +649,7 @@ pub trait PrettyPrinter<'tcx>:
|
|||
p!(in_binder(&types));
|
||||
}
|
||||
ty::Closure(did, substs) => {
|
||||
let upvar_tys = substs.upvar_tys(did, self.tcx());
|
||||
let upvar_tys = substs.as_closure().upvar_tys(did, self.tcx());
|
||||
p!(write("[closure"));
|
||||
|
||||
// FIXME(eddyb) should use `def_span`.
|
||||
|
@ -689,8 +689,8 @@ pub trait PrettyPrinter<'tcx>:
|
|||
if self.tcx().sess.verbose() {
|
||||
p!(write(
|
||||
" closure_kind_ty={:?} closure_sig_ty={:?}",
|
||||
substs.closure_kind_ty(did, self.tcx()),
|
||||
substs.closure_sig_ty(did, self.tcx())
|
||||
substs.as_closure().kind(did, self.tcx()),
|
||||
substs.as_closure().sig_ty(did, self.tcx())
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ use crate::ty::{self, CrateInherentImpls, ParamEnvAnd, Ty, TyCtxt, AdtSizedConst
|
|||
use crate::ty::steal::Steal;
|
||||
use crate::ty::util::NeedsDrop;
|
||||
use crate::ty::subst::SubstsRef;
|
||||
use crate::util::nodemap::{DefIdSet, DefIdMap, ItemLocalSet};
|
||||
use crate::util::nodemap::{DefIdSet, DefIdMap};
|
||||
use crate::util::common::ErrorReported;
|
||||
use crate::util::profiling::ProfileCategory::*;
|
||||
|
||||
|
|
|
@ -442,7 +442,7 @@ pub fn super_relate_tys<R: TypeRelation<'tcx>>(
|
|||
// the (anonymous) type of the same closure expression. So
|
||||
// all of their regions should be equated.
|
||||
let substs = relation.relate(&a_substs, &b_substs)?;
|
||||
Ok(tcx.mk_closure(a_id, substs))
|
||||
Ok(tcx.mk_closure(a_id, &substs))
|
||||
}
|
||||
|
||||
(&ty::RawPtr(ref a_mt), &ty::RawPtr(ref b_mt)) =>
|
||||
|
|
|
@ -159,7 +159,7 @@ pub enum TyKind<'tcx> {
|
|||
|
||||
/// The anonymous type of a closure. Used to represent the type of
|
||||
/// `|a| a`.
|
||||
Closure(DefId, ClosureSubsts<'tcx>),
|
||||
Closure(DefId, SubstsRef<'tcx>),
|
||||
|
||||
/// The anonymous type of a generator. Used to represent the type of
|
||||
/// `|a| yield a`.
|
||||
|
@ -305,8 +305,8 @@ static_assert_size!(TyKind<'_>, 24);
|
|||
/// type parameters is similar, but the role of CK and CS are
|
||||
/// different. CK represents the "yield type" and CS represents the
|
||||
/// "return type" of the generator.
|
||||
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
|
||||
Debug, RustcEncodable, RustcDecodable, HashStable)]
|
||||
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug,
|
||||
RustcEncodable, RustcDecodable, HashStable)]
|
||||
pub struct ClosureSubsts<'tcx> {
|
||||
/// Lifetime and type parameters from the enclosing function,
|
||||
/// concatenated with the types of the upvars.
|
||||
|
@ -357,7 +357,7 @@ impl<'tcx> ClosureSubsts<'tcx> {
|
|||
/// Returns the closure kind for this closure; may return a type
|
||||
/// variable during inference. To get the closure kind during
|
||||
/// inference, use `infcx.closure_kind(def_id, substs)`.
|
||||
pub fn closure_kind_ty(self, def_id: DefId, tcx: TyCtxt<'_>) -> Ty<'tcx> {
|
||||
pub fn kind_ty(self, def_id: DefId, tcx: TyCtxt<'_>) -> Ty<'tcx> {
|
||||
self.split(def_id, tcx).closure_kind_ty
|
||||
}
|
||||
|
||||
|
@ -365,7 +365,7 @@ impl<'tcx> ClosureSubsts<'tcx> {
|
|||
/// closure; may contain type variables during inference. To get
|
||||
/// the closure signature during inference, use
|
||||
/// `infcx.fn_sig(def_id)`.
|
||||
pub fn closure_sig_ty(self, def_id: DefId, tcx: TyCtxt<'_>) -> Ty<'tcx> {
|
||||
pub fn sig_ty(self, def_id: DefId, tcx: TyCtxt<'_>) -> Ty<'tcx> {
|
||||
self.split(def_id, tcx).closure_sig_ty
|
||||
}
|
||||
|
||||
|
@ -374,7 +374,7 @@ impl<'tcx> ClosureSubsts<'tcx> {
|
|||
/// there are no type variables.
|
||||
///
|
||||
/// If you have an inference context, use `infcx.closure_kind()`.
|
||||
pub fn closure_kind(self, def_id: DefId, tcx: TyCtxt<'tcx>) -> ty::ClosureKind {
|
||||
pub fn kind(self, def_id: DefId, tcx: TyCtxt<'tcx>) -> ty::ClosureKind {
|
||||
self.split(def_id, tcx).closure_kind_ty.to_opt_closure_kind().unwrap()
|
||||
}
|
||||
|
||||
|
@ -383,8 +383,8 @@ impl<'tcx> ClosureSubsts<'tcx> {
|
|||
/// there are no type variables.
|
||||
///
|
||||
/// If you have an inference context, use `infcx.closure_sig()`.
|
||||
pub fn closure_sig(self, def_id: DefId, tcx: TyCtxt<'tcx>) -> ty::PolyFnSig<'tcx> {
|
||||
let ty = self.closure_sig_ty(def_id, tcx);
|
||||
pub fn sig(&self, def_id: DefId, tcx: TyCtxt<'tcx>) -> ty::PolyFnSig<'tcx> {
|
||||
let ty = self.sig_ty(def_id, tcx);
|
||||
match ty.kind {
|
||||
ty::FnPtr(sig) => sig,
|
||||
_ => bug!("closure_sig_ty is not a fn-ptr: {:?}", ty.kind),
|
||||
|
@ -569,7 +569,7 @@ impl<'tcx> GeneratorSubsts<'tcx> {
|
|||
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub enum UpvarSubsts<'tcx> {
|
||||
Closure(ClosureSubsts<'tcx>),
|
||||
Closure(SubstsRef<'tcx>),
|
||||
Generator(GeneratorSubsts<'tcx>),
|
||||
}
|
||||
|
||||
|
@ -578,10 +578,10 @@ impl<'tcx> UpvarSubsts<'tcx> {
|
|||
pub fn upvar_tys(
|
||||
self,
|
||||
def_id: DefId,
|
||||
tcx: TyCtxt<'_>,
|
||||
tcx: TyCtxt<'tcx>,
|
||||
) -> impl Iterator<Item = Ty<'tcx>> + 'tcx {
|
||||
let upvar_kinds = match self {
|
||||
UpvarSubsts::Closure(substs) => substs.split(def_id, tcx).upvar_kinds,
|
||||
UpvarSubsts::Closure(substs) => substs.as_closure().split(def_id, tcx).upvar_kinds,
|
||||
UpvarSubsts::Generator(substs) => substs.split(def_id, tcx).upvar_kinds,
|
||||
};
|
||||
upvar_kinds.iter().map(|t| {
|
||||
|
@ -2148,7 +2148,7 @@ impl<'tcx> TyS<'tcx> {
|
|||
Adt(_, substs) | Opaque(_, substs) => {
|
||||
out.extend(substs.regions())
|
||||
}
|
||||
Closure(_, ClosureSubsts { ref substs }) |
|
||||
Closure(_, ref substs ) |
|
||||
Generator(_, GeneratorSubsts { ref substs }, _) => {
|
||||
out.extend(substs.regions())
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ use crate::infer::canonical::Canonical;
|
|||
use crate::ty::{self, Lift, List, Ty, TyCtxt, InferConst, ParamConst};
|
||||
use crate::ty::fold::{TypeFoldable, TypeFolder, TypeVisitor};
|
||||
use crate::mir::interpret::ConstValue;
|
||||
use crate::ty::sty::ClosureSubsts;
|
||||
|
||||
use rustc_serialize::{self, Encodable, Encoder, Decodable, Decoder};
|
||||
use syntax_pos::{Span, DUMMY_SP};
|
||||
|
@ -183,6 +184,16 @@ pub type InternalSubsts<'tcx> = List<GenericArg<'tcx>>;
|
|||
pub type SubstsRef<'tcx> = &'tcx InternalSubsts<'tcx>;
|
||||
|
||||
impl<'a, 'tcx> InternalSubsts<'tcx> {
|
||||
/// Interpret these substitutions as the substitutions of a closure type.
|
||||
/// Closure substitutions have a particular structure controlled by the
|
||||
/// compiler that encodes information like the signature and closure kind;
|
||||
/// see `ty::ClosureSubsts` struct for more comments.
|
||||
pub fn as_closure(&'a self) -> ClosureSubsts<'a> {
|
||||
ClosureSubsts {
|
||||
substs: self,
|
||||
}
|
||||
}
|
||||
|
||||
/// Creates a `InternalSubsts` that maps each generic parameter to itself.
|
||||
pub fn identity_for_item(tcx: TyCtxt<'tcx>, def_id: DefId) -> SubstsRef<'tcx> {
|
||||
Self::for_item(tcx, def_id, |param, _| {
|
||||
|
|
|
@ -642,12 +642,12 @@ impl<'tcx> TyCtxt<'tcx> {
|
|||
/// wrapped in a binder.
|
||||
pub fn closure_env_ty(self,
|
||||
closure_def_id: DefId,
|
||||
closure_substs: ty::ClosureSubsts<'tcx>)
|
||||
closure_substs: SubstsRef<'tcx>)
|
||||
-> Option<ty::Binder<Ty<'tcx>>>
|
||||
{
|
||||
let closure_ty = self.mk_closure(closure_def_id, closure_substs);
|
||||
let env_region = ty::ReLateBound(ty::INNERMOST, ty::BrEnv);
|
||||
let closure_kind_ty = closure_substs.closure_kind_ty(closure_def_id, self);
|
||||
let closure_kind_ty = closure_substs.as_closure().kind_ty(closure_def_id, self);
|
||||
let closure_kind = closure_kind_ty.to_opt_closure_kind()?;
|
||||
let env_ty = match closure_kind {
|
||||
ty::ClosureKind::Fn => self.mk_imm_ref(self.mk_region(env_region), closure_ty),
|
||||
|
@ -1108,7 +1108,9 @@ fn needs_drop_raw<'tcx>(tcx: TyCtxt<'tcx>, query: ty::ParamEnvAnd<'tcx, Ty<'tcx>
|
|||
// Structural recursion.
|
||||
ty::Array(ty, _) | ty::Slice(ty) => needs_drop(ty),
|
||||
|
||||
ty::Closure(def_id, ref substs) => substs.upvar_tys(def_id, tcx).any(needs_drop),
|
||||
ty::Closure(def_id, ref substs) => {
|
||||
substs.as_closure().upvar_tys(def_id, tcx).any(needs_drop)
|
||||
}
|
||||
|
||||
// Pessimistically assume that all generators will require destructors
|
||||
// as we don't know if a destructor is a noop or not until after the MIR
|
||||
|
|
|
@ -111,7 +111,7 @@ fn push_subtypes<'tcx>(stack: &mut TypeWalkerStack<'tcx>, parent_ty: Ty<'tcx>) {
|
|||
stack.extend(substs.types().rev());
|
||||
}
|
||||
ty::Closure(_, ref substs) => {
|
||||
stack.extend(substs.substs.types().rev());
|
||||
stack.extend(substs.types().rev());
|
||||
}
|
||||
ty::Generator(_, ref substs, _) => {
|
||||
stack.extend(substs.substs.types().rev());
|
||||
|
|
|
@ -347,7 +347,7 @@ impl<'a, 'tcx> WfPredicates<'a, 'tcx> {
|
|||
// anyway, except via auto trait matching (which
|
||||
// only inspects the upvar types).
|
||||
subtys.skip_current_subtree(); // subtree handled by compute_projection
|
||||
for upvar_ty in substs.upvar_tys(def_id, self.infcx.tcx) {
|
||||
for upvar_ty in substs.as_closure().upvar_tys(def_id, self.infcx.tcx) {
|
||||
self.compute(upvar_ty);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ use super::utils::{debug_context, DIB, span_start,
|
|||
get_namespace_for_item, create_DIArray, is_node_local_to_unit};
|
||||
use super::namespace::mangled_name_of_instance;
|
||||
use super::type_names::compute_debuginfo_type_name;
|
||||
use super::{CrateDebugContext};
|
||||
use super::CrateDebugContext;
|
||||
use crate::abi;
|
||||
use crate::value::Value;
|
||||
use rustc_codegen_ssa::traits::*;
|
||||
|
@ -682,7 +682,7 @@ pub fn type_metadata(
|
|||
|
||||
}
|
||||
ty::Closure(def_id, substs) => {
|
||||
let upvar_tys : Vec<_> = substs.upvar_tys(def_id, cx.tcx).collect();
|
||||
let upvar_tys : Vec<_> = substs.as_closure().upvar_tys(def_id, cx.tcx).collect();
|
||||
let containing_scope = get_namespace_for_item(cx, def_id);
|
||||
prepare_tuple_metadata(cx,
|
||||
t,
|
||||
|
|
|
@ -615,7 +615,8 @@ fn arg_local_refs<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
|
|||
};
|
||||
|
||||
let (def_id, upvar_substs) = match closure_layout.ty.kind {
|
||||
ty::Closure(def_id, substs) => (def_id, UpvarSubsts::Closure(substs)),
|
||||
ty::Closure(def_id, substs) => (def_id,
|
||||
UpvarSubsts::Closure(substs)),
|
||||
ty::Generator(def_id, substs, _) => (def_id, UpvarSubsts::Generator(substs)),
|
||||
_ => bug!("upvar debuginfo with non-closure arg0 type `{}`", closure_layout.ty)
|
||||
};
|
||||
|
|
|
@ -201,7 +201,10 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
|
|||
match operand.layout.ty.kind {
|
||||
ty::Closure(def_id, substs) => {
|
||||
let instance = Instance::resolve_closure(
|
||||
bx.cx().tcx(), def_id, substs, ty::ClosureKind::FnOnce);
|
||||
bx.cx().tcx(),
|
||||
def_id,
|
||||
substs,
|
||||
ty::ClosureKind::FnOnce);
|
||||
OperandValue::Immediate(bx.cx().get_fn(instance))
|
||||
}
|
||||
_ => {
|
||||
|
|
|
@ -224,7 +224,7 @@ impl Printer<'tcx> for SymbolPrinter<'tcx> {
|
|||
ty::Opaque(def_id, substs) |
|
||||
ty::Projection(ty::ProjectionTy { item_def_id: def_id, substs }) |
|
||||
ty::UnnormalizedProjection(ty::ProjectionTy { item_def_id: def_id, substs }) |
|
||||
ty::Closure(def_id, ty::ClosureSubsts { substs }) |
|
||||
ty::Closure(def_id, substs) |
|
||||
ty::Generator(def_id, ty::GeneratorSubsts { substs }, _) => {
|
||||
self.print_def_path(def_id, substs)
|
||||
}
|
||||
|
|
|
@ -414,7 +414,7 @@ impl Printer<'tcx> for SymbolMangler<'tcx> {
|
|||
ty::Opaque(def_id, substs) |
|
||||
ty::Projection(ty::ProjectionTy { item_def_id: def_id, substs }) |
|
||||
ty::UnnormalizedProjection(ty::ProjectionTy { item_def_id: def_id, substs }) |
|
||||
ty::Closure(def_id, ty::ClosureSubsts { substs }) |
|
||||
ty::Closure(def_id, substs) |
|
||||
ty::Generator(def_id, ty::GeneratorSubsts { substs }, _) => {
|
||||
self = self.print_def_path(def_id, substs)?;
|
||||
}
|
||||
|
|
|
@ -917,9 +917,8 @@ fn analysis(tcx: TyCtxt<'_>, cnum: CrateNum) -> Result<()> {
|
|||
|
||||
time(sess, "misc checking 2", || {
|
||||
parallel!({
|
||||
time(sess, "rvalue promotion + match checking", || {
|
||||
time(sess, "match checking", || {
|
||||
tcx.par_body_owners(|def_id| {
|
||||
tcx.ensure().const_is_rvalue_promotable_to_static(def_id);
|
||||
tcx.ensure().check_match(def_id);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use crate::cstore::{self, CStore, CrateSource, MetadataBlob};
|
||||
use crate::locator::{self, CratePaths};
|
||||
use crate::schema::{CrateRoot};
|
||||
use crate::schema::{CrateRoot, CrateDep};
|
||||
use rustc_data_structures::sync::{Lrc, RwLock, Lock};
|
||||
|
||||
use rustc::hir::def_id::CrateNum;
|
||||
|
@ -20,7 +20,7 @@ use rustc::hir::map::Definitions;
|
|||
use rustc::hir::def_id::LOCAL_CRATE;
|
||||
|
||||
use std::ops::Deref;
|
||||
use std::path::PathBuf;
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::{cmp, fs};
|
||||
|
||||
use syntax::ast;
|
||||
|
@ -112,7 +112,7 @@ impl<'a> CrateLoader<'a> {
|
|||
-> Option<CrateNum> {
|
||||
let mut ret = None;
|
||||
self.cstore.iter_crate_data(|cnum, data| {
|
||||
if data.name != name { return }
|
||||
if data.root.name != name { return }
|
||||
|
||||
match hash {
|
||||
Some(hash) if *hash == data.root.hash => { ret = Some(cnum); return }
|
||||
|
@ -190,8 +190,7 @@ impl<'a> CrateLoader<'a> {
|
|||
fn register_crate(
|
||||
&mut self,
|
||||
host_lib: Option<Library>,
|
||||
root: &Option<CratePaths>,
|
||||
ident: Symbol,
|
||||
root: Option<&CratePaths>,
|
||||
span: Span,
|
||||
lib: Library,
|
||||
dep_kind: DepKind,
|
||||
|
@ -204,26 +203,25 @@ impl<'a> CrateLoader<'a> {
|
|||
.map(|e| e.is_private_dep)
|
||||
.unwrap_or(false);
|
||||
|
||||
info!("register crate `extern crate {} as {}` (private_dep = {})",
|
||||
crate_root.name, ident, private_dep);
|
||||
|
||||
info!("register crate `{}` (private_dep = {})", crate_root.name, private_dep);
|
||||
|
||||
// Claim this crate number and cache it
|
||||
let cnum = self.cstore.alloc_new_crate_num();
|
||||
|
||||
// Maintain a reference to the top most crate.
|
||||
// Stash paths for top-most crate locally if necessary.
|
||||
let crate_paths = if root.is_none() {
|
||||
Some(CratePaths {
|
||||
ident: ident.to_string(),
|
||||
let crate_paths;
|
||||
let root = if let Some(root) = root {
|
||||
root
|
||||
} else {
|
||||
crate_paths = CratePaths {
|
||||
ident: crate_root.name.to_string(),
|
||||
dylib: lib.dylib.clone().map(|p| p.0),
|
||||
rlib: lib.rlib.clone().map(|p| p.0),
|
||||
rmeta: lib.rmeta.clone().map(|p| p.0),
|
||||
})
|
||||
} else {
|
||||
None
|
||||
};
|
||||
&crate_paths
|
||||
};
|
||||
// Maintain a reference to the top most crate.
|
||||
let root = if root.is_some() { root } else { &crate_paths };
|
||||
|
||||
let Library { dylib, rlib, rmeta, metadata } = lib;
|
||||
let cnum_map = self.resolve_crate_deps(root, &crate_root, &metadata, cnum, span, dep_kind);
|
||||
|
@ -231,13 +229,14 @@ impl<'a> CrateLoader<'a> {
|
|||
let dependencies: Vec<CrateNum> = cnum_map.iter().cloned().collect();
|
||||
|
||||
let raw_proc_macros = crate_root.proc_macro_data.map(|_| {
|
||||
if self.sess.opts.debugging_opts.dual_proc_macros {
|
||||
let host_lib = host_lib.as_ref().unwrap();
|
||||
self.dlsym_proc_macros(host_lib.dylib.as_ref().map(|p| p.0.clone()),
|
||||
&host_lib.metadata.get_root(), span)
|
||||
} else {
|
||||
self.dlsym_proc_macros(dylib.clone().map(|p| p.0), &crate_root, span)
|
||||
}
|
||||
let temp_root;
|
||||
let (dlsym_dylib, dlsym_root) = match &host_lib {
|
||||
Some(host_lib) =>
|
||||
(&host_lib.dylib, { temp_root = host_lib.metadata.get_root(); &temp_root }),
|
||||
None => (&dylib, &crate_root),
|
||||
};
|
||||
let dlsym_dylib = dlsym_dylib.as_ref().expect("no dylib for a proc-macro crate");
|
||||
self.dlsym_proc_macros(&dlsym_dylib.0, dlsym_root.disambiguator, span)
|
||||
});
|
||||
|
||||
let interpret_alloc_index: Vec<u32> = crate_root.interpret_alloc_index
|
||||
|
@ -254,8 +253,6 @@ impl<'a> CrateLoader<'a> {
|
|||
});
|
||||
|
||||
let cmeta = cstore::CrateMetadata {
|
||||
name: crate_root.name,
|
||||
imported_name: ident,
|
||||
extern_crate: Lock::new(None),
|
||||
def_path_table: Lrc::new(def_path_table),
|
||||
trait_impls,
|
||||
|
@ -274,7 +271,6 @@ impl<'a> CrateLoader<'a> {
|
|||
},
|
||||
private_dep,
|
||||
span,
|
||||
host_lib,
|
||||
raw_proc_macros
|
||||
};
|
||||
|
||||
|
@ -340,16 +336,27 @@ impl<'a> CrateLoader<'a> {
|
|||
|
||||
fn resolve_crate<'b>(
|
||||
&'b mut self,
|
||||
root: &'b Option<CratePaths>,
|
||||
ident: Symbol,
|
||||
name: Symbol,
|
||||
hash: Option<&'b Svh>,
|
||||
extra_filename: Option<&'b str>,
|
||||
span: Span,
|
||||
path_kind: PathKind,
|
||||
dep_kind: DepKind,
|
||||
dep: Option<(&'b CratePaths, &'b CrateDep)>,
|
||||
) -> (CrateNum, Lrc<cstore::CrateMetadata>) {
|
||||
self.maybe_resolve_crate(name, span, dep_kind, dep).unwrap_or_else(|err| err.report())
|
||||
}
|
||||
|
||||
fn maybe_resolve_crate<'b>(
|
||||
&'b mut self,
|
||||
name: Symbol,
|
||||
span: Span,
|
||||
mut dep_kind: DepKind,
|
||||
dep: Option<(&'b CratePaths, &'b CrateDep)>,
|
||||
) -> Result<(CrateNum, Lrc<cstore::CrateMetadata>), LoadError<'b>> {
|
||||
info!("resolving crate `extern crate {} as {}`", name, ident);
|
||||
info!("resolving crate `{}`", name);
|
||||
let (root, hash, extra_filename, path_kind) = match dep {
|
||||
Some((root, dep)) =>
|
||||
(Some(root), Some(&dep.hash), Some(&dep.extra_filename[..]), PathKind::Dependency),
|
||||
None => (None, None, None, PathKind::Crate),
|
||||
};
|
||||
let result = if let Some(cnum) = self.existing_match(name, hash, path_kind) {
|
||||
(LoadResult::Previous(cnum), None)
|
||||
} else {
|
||||
|
@ -357,7 +364,6 @@ impl<'a> CrateLoader<'a> {
|
|||
let mut locate_ctxt = locator::Context {
|
||||
sess: self.sess,
|
||||
span,
|
||||
ident,
|
||||
crate_name: name,
|
||||
hash,
|
||||
extra_filename,
|
||||
|
@ -393,7 +399,7 @@ impl<'a> CrateLoader<'a> {
|
|||
Ok((cnum, data))
|
||||
}
|
||||
(LoadResult::Loaded(library), host_library) => {
|
||||
Ok(self.register_crate(host_library, root, ident, span, library, dep_kind, name))
|
||||
Ok(self.register_crate(host_library, root, span, library, dep_kind, name))
|
||||
}
|
||||
_ => panic!()
|
||||
}
|
||||
|
@ -469,7 +475,7 @@ impl<'a> CrateLoader<'a> {
|
|||
|
||||
// Go through the crate metadata and load any crates that it references
|
||||
fn resolve_crate_deps(&mut self,
|
||||
root: &Option<CratePaths>,
|
||||
root: &CratePaths,
|
||||
crate_root: &CrateRoot<'_>,
|
||||
metadata: &MetadataBlob,
|
||||
krate: CrateNum,
|
||||
|
@ -484,9 +490,7 @@ impl<'a> CrateLoader<'a> {
|
|||
// The map from crate numbers in the crate we're resolving to local crate numbers.
|
||||
// We map 0 and all other holes in the map to our parent crate. The "additional"
|
||||
// self-dependencies should be harmless.
|
||||
std::iter::once(krate).chain(crate_root.crate_deps
|
||||
.decode(metadata)
|
||||
.map(|dep| {
|
||||
std::iter::once(krate).chain(crate_root.crate_deps.decode(metadata).map(|dep| {
|
||||
info!("resolving dep crate {} hash: `{}` extra filename: `{}`", dep.name, dep.hash,
|
||||
dep.extra_filename);
|
||||
if dep.kind == DepKind::UnexportedMacrosOnly {
|
||||
|
@ -496,17 +500,12 @@ impl<'a> CrateLoader<'a> {
|
|||
DepKind::MacrosOnly => DepKind::MacrosOnly,
|
||||
_ => dep.kind,
|
||||
};
|
||||
let (local_cnum, ..) = self.resolve_crate(
|
||||
root, dep.name, dep.name, Some(&dep.hash), Some(&dep.extra_filename), span,
|
||||
PathKind::Dependency, dep_kind,
|
||||
).unwrap_or_else(|err| err.report());
|
||||
local_cnum
|
||||
self.resolve_crate(dep.name, span, dep_kind, Some((root, &dep))).0
|
||||
})).collect()
|
||||
}
|
||||
|
||||
fn read_extension_crate(&mut self, span: Span, orig_name: Symbol, rename: Symbol)
|
||||
-> ExtensionCrate {
|
||||
info!("read extension crate `extern crate {} as {}`", orig_name, rename);
|
||||
fn read_extension_crate(&mut self, name: Symbol, span: Span) -> ExtensionCrate {
|
||||
info!("read extension crate `{}`", name);
|
||||
let target_triple = self.sess.opts.target_triple.clone();
|
||||
let host_triple = TargetTriple::from_triple(config::host_triple());
|
||||
let is_cross = target_triple != host_triple;
|
||||
|
@ -514,14 +513,13 @@ impl<'a> CrateLoader<'a> {
|
|||
let mut locate_ctxt = locator::Context {
|
||||
sess: self.sess,
|
||||
span,
|
||||
ident: orig_name,
|
||||
crate_name: rename,
|
||||
crate_name: name,
|
||||
hash: None,
|
||||
extra_filename: None,
|
||||
filesearch: self.sess.host_filesearch(PathKind::Crate),
|
||||
target: &self.sess.host,
|
||||
triple: host_triple,
|
||||
root: &None,
|
||||
root: None,
|
||||
rejected_via_hash: vec![],
|
||||
rejected_via_triple: vec![],
|
||||
rejected_via_kind: vec![],
|
||||
|
@ -570,17 +568,13 @@ impl<'a> CrateLoader<'a> {
|
|||
}
|
||||
|
||||
fn dlsym_proc_macros(&self,
|
||||
dylib: Option<PathBuf>,
|
||||
root: &CrateRoot<'_>,
|
||||
path: &Path,
|
||||
disambiguator: CrateDisambiguator,
|
||||
span: Span
|
||||
) -> &'static [ProcMacro] {
|
||||
use std::env;
|
||||
use crate::dynamic_lib::DynamicLibrary;
|
||||
|
||||
let path = match dylib {
|
||||
Some(dylib) => dylib,
|
||||
None => span_bug!(span, "proc-macro crate not dylib"),
|
||||
};
|
||||
// Make sure the path contains a / or the linker will search for it.
|
||||
let path = env::current_dir().unwrap().join(path);
|
||||
let lib = match DynamicLibrary::open(Some(&path)) {
|
||||
|
@ -588,7 +582,7 @@ impl<'a> CrateLoader<'a> {
|
|||
Err(err) => self.sess.span_fatal(span, &err),
|
||||
};
|
||||
|
||||
let sym = self.sess.generate_proc_macro_decls_symbol(root.disambiguator);
|
||||
let sym = self.sess.generate_proc_macro_decls_symbol(disambiguator);
|
||||
let decls = unsafe {
|
||||
let sym = match lib.symbol(&sym) {
|
||||
Ok(f) => f,
|
||||
|
@ -610,7 +604,7 @@ impl<'a> CrateLoader<'a> {
|
|||
span: Span,
|
||||
name: Symbol)
|
||||
-> Option<(PathBuf, CrateDisambiguator)> {
|
||||
let ekrate = self.read_extension_crate(span, name, name);
|
||||
let ekrate = self.read_extension_crate(name, span);
|
||||
|
||||
if ekrate.target_only {
|
||||
// Need to abort before syntax expansion.
|
||||
|
@ -701,10 +695,7 @@ impl<'a> CrateLoader<'a> {
|
|||
};
|
||||
info!("panic runtime not found -- loading {}", name);
|
||||
|
||||
let dep_kind = DepKind::Implicit;
|
||||
let (cnum, data) =
|
||||
self.resolve_crate(&None, name, name, None, None, DUMMY_SP, PathKind::Crate, dep_kind)
|
||||
.unwrap_or_else(|err| err.report());
|
||||
let (cnum, data) = self.resolve_crate(name, DUMMY_SP, DepKind::Implicit, None);
|
||||
|
||||
// Sanity check the loaded crate to ensure it is indeed a panic runtime
|
||||
// and the panic strategy is indeed what we thought it was.
|
||||
|
@ -794,26 +785,21 @@ impl<'a> CrateLoader<'a> {
|
|||
|
||||
let mut uses_std = false;
|
||||
self.cstore.iter_crate_data(|_, data| {
|
||||
if data.name == sym::std {
|
||||
if data.root.name == sym::std {
|
||||
uses_std = true;
|
||||
}
|
||||
});
|
||||
|
||||
if uses_std {
|
||||
let name = match *sanitizer {
|
||||
let name = Symbol::intern(match sanitizer {
|
||||
Sanitizer::Address => "rustc_asan",
|
||||
Sanitizer::Leak => "rustc_lsan",
|
||||
Sanitizer::Memory => "rustc_msan",
|
||||
Sanitizer::Thread => "rustc_tsan",
|
||||
};
|
||||
});
|
||||
info!("loading sanitizer: {}", name);
|
||||
|
||||
let symbol = Symbol::intern(name);
|
||||
let dep_kind = DepKind::Explicit;
|
||||
let (_, data) =
|
||||
self.resolve_crate(&None, symbol, symbol, None, None, DUMMY_SP,
|
||||
PathKind::Crate, dep_kind)
|
||||
.unwrap_or_else(|err| err.report());
|
||||
let data = self.resolve_crate(name, DUMMY_SP, DepKind::Explicit, None).1;
|
||||
|
||||
// Sanity check the loaded crate to ensure it is indeed a sanitizer runtime
|
||||
if !data.root.sanitizer_runtime {
|
||||
|
@ -832,12 +818,8 @@ impl<'a> CrateLoader<'a> {
|
|||
{
|
||||
info!("loading profiler");
|
||||
|
||||
let symbol = Symbol::intern("profiler_builtins");
|
||||
let dep_kind = DepKind::Implicit;
|
||||
let (_, data) =
|
||||
self.resolve_crate(&None, symbol, symbol, None, None, DUMMY_SP,
|
||||
PathKind::Crate, dep_kind)
|
||||
.unwrap_or_else(|err| err.report());
|
||||
let name = Symbol::intern("profiler_builtins");
|
||||
let data = self.resolve_crate(name, DUMMY_SP, DepKind::Implicit, None).1;
|
||||
|
||||
// Sanity check the loaded crate to ensure it is indeed a profiler runtime
|
||||
if !data.root.profiler_runtime {
|
||||
|
@ -1004,7 +986,7 @@ impl<'a> CrateLoader<'a> {
|
|||
ast::ItemKind::ExternCrate(orig_name) => {
|
||||
debug!("resolving extern crate stmt. ident: {} orig_name: {:?}",
|
||||
item.ident, orig_name);
|
||||
let orig_name = match orig_name {
|
||||
let name = match orig_name {
|
||||
Some(orig_name) => {
|
||||
crate::validate_crate_name(Some(self.sess), &orig_name.as_str(),
|
||||
Some(item.span));
|
||||
|
@ -1018,10 +1000,7 @@ impl<'a> CrateLoader<'a> {
|
|||
DepKind::Explicit
|
||||
};
|
||||
|
||||
let (cnum, ..) = self.resolve_crate(
|
||||
&None, item.ident.name, orig_name, None, None,
|
||||
item.span, PathKind::Crate, dep_kind,
|
||||
).unwrap_or_else(|err| err.report());
|
||||
let cnum = self.resolve_crate(name, item.span, dep_kind, None).0;
|
||||
|
||||
let def_id = definitions.opt_local_def_id(item.id).unwrap();
|
||||
let path_len = definitions.def_path(def_id.index).data.len();
|
||||
|
@ -1047,9 +1026,7 @@ impl<'a> CrateLoader<'a> {
|
|||
name: Symbol,
|
||||
span: Span,
|
||||
) -> CrateNum {
|
||||
let cnum = self.resolve_crate(
|
||||
&None, name, name, None, None, span, PathKind::Crate, DepKind::Explicit
|
||||
).unwrap_or_else(|err| err.report()).0;
|
||||
let cnum = self.resolve_crate(name, span, DepKind::Explicit, None).0;
|
||||
|
||||
self.update_extern_crate(
|
||||
cnum,
|
||||
|
@ -1071,9 +1048,7 @@ impl<'a> CrateLoader<'a> {
|
|||
name: Symbol,
|
||||
span: Span,
|
||||
) -> Option<CrateNum> {
|
||||
let cnum = self.resolve_crate(
|
||||
&None, name, name, None, None, span, PathKind::Crate, DepKind::Explicit
|
||||
).ok()?.0;
|
||||
let cnum = self.maybe_resolve_crate(name, span, DepKind::Explicit, None).ok()?.0;
|
||||
|
||||
self.update_extern_crate(
|
||||
cnum,
|
||||
|
|
|
@ -12,7 +12,6 @@ use rustc::util::nodemap::{FxHashMap, NodeMap};
|
|||
use rustc_data_structures::sync::{Lrc, RwLock, Lock};
|
||||
use syntax::ast;
|
||||
use syntax::ext::base::SyntaxExtension;
|
||||
use syntax::symbol::Symbol;
|
||||
use syntax_pos;
|
||||
|
||||
pub use rustc::middle::cstore::{NativeLibrary, NativeLibraryKind, LinkagePreference};
|
||||
|
@ -28,7 +27,6 @@ pub use crate::cstore_impl::{provide, provide_extern};
|
|||
pub type CrateNumMap = IndexVec<CrateNum, CrateNum>;
|
||||
|
||||
pub use rustc_data_structures::sync::MetadataRef;
|
||||
use crate::creader::Library;
|
||||
use syntax_pos::Span;
|
||||
use proc_macro::bridge::client::ProcMacro;
|
||||
|
||||
|
@ -46,13 +44,6 @@ pub struct ImportedSourceFile {
|
|||
}
|
||||
|
||||
pub struct CrateMetadata {
|
||||
/// Original name of the crate.
|
||||
pub name: Symbol,
|
||||
|
||||
/// Name of the crate as imported. I.e., if imported with
|
||||
/// `extern crate foo as bar;` this will be `bar`.
|
||||
pub imported_name: Symbol,
|
||||
|
||||
/// Information about the extern crate that caused this crate to
|
||||
/// be loaded. If this is `None`, then the crate was injected
|
||||
/// (e.g., by the allocator)
|
||||
|
@ -89,7 +80,6 @@ pub struct CrateMetadata {
|
|||
/// for purposes of the 'exported_private_dependencies' lint
|
||||
pub private_dep: bool,
|
||||
|
||||
pub host_lib: Option<Library>,
|
||||
pub span: Span,
|
||||
|
||||
pub raw_proc_macros: Option<&'static [ProcMacro]>,
|
||||
|
|
|
@ -154,9 +154,6 @@ provide! { <'tcx> tcx, def_id, other, cdata,
|
|||
rendered_const => { cdata.get_rendered_const(def_id.index) }
|
||||
impl_parent => { cdata.get_parent_impl(def_id.index) }
|
||||
trait_of_item => { cdata.get_trait_of_item(def_id.index) }
|
||||
const_is_rvalue_promotable_to_static => {
|
||||
cdata.const_is_rvalue_promotable_to_static(def_id.index)
|
||||
}
|
||||
is_mir_available => { cdata.is_item_mir_available(def_id.index) }
|
||||
|
||||
dylib_dependency_formats => { cdata.get_dylib_dependency_formats(tcx) }
|
||||
|
@ -220,7 +217,7 @@ provide! { <'tcx> tcx, def_id, other, cdata,
|
|||
let r = *cdata.dep_kind.lock();
|
||||
r
|
||||
}
|
||||
crate_name => { cdata.name }
|
||||
crate_name => { cdata.root.name }
|
||||
item_children => {
|
||||
let mut result = SmallVec::<[_; 8]>::new();
|
||||
cdata.each_child_of_item(def_id.index, |child| result.push(child), tcx.sess);
|
||||
|
@ -453,8 +450,7 @@ impl cstore::CStore {
|
|||
}
|
||||
|
||||
let def = data.get_macro(id.index);
|
||||
let macro_full_name = data.def_path(id.index)
|
||||
.to_string_friendly(|_| data.imported_name);
|
||||
let macro_full_name = data.def_path(id.index).to_string_friendly(|_| data.root.name);
|
||||
let source_name = FileName::Macros(macro_full_name);
|
||||
|
||||
let source_file = sess.parse_sess.source_map().new_source_file(source_name, def.body);
|
||||
|
@ -504,7 +500,7 @@ impl CrateStore for cstore::CStore {
|
|||
|
||||
fn crate_name_untracked(&self, cnum: CrateNum) -> Symbol
|
||||
{
|
||||
self.get_crate_data(cnum).name
|
||||
self.get_crate_data(cnum).root.name
|
||||
}
|
||||
|
||||
fn crate_is_private_dep_untracked(&self, cnum: CrateNum) -> bool {
|
||||
|
|
|
@ -473,7 +473,7 @@ impl<'a, 'tcx> CrateMetadata {
|
|||
None => {
|
||||
bug!("entry: id not found: {:?} in crate {:?} with number {}",
|
||||
item_id,
|
||||
self.name,
|
||||
self.root.name,
|
||||
self.cnum)
|
||||
}
|
||||
Some(d) => d.decode(self),
|
||||
|
@ -543,18 +543,13 @@ impl<'a, 'tcx> CrateMetadata {
|
|||
name, SyntaxExtensionKind::Bang(Box::new(BangProcMacro { client })), Vec::new()
|
||||
)
|
||||
};
|
||||
let edition = if sess.opts.debugging_opts.dual_proc_macros {
|
||||
self.host_lib.as_ref().unwrap().metadata.get_root().edition
|
||||
} else {
|
||||
self.root.edition
|
||||
};
|
||||
|
||||
SyntaxExtension::new(
|
||||
&sess.parse_sess,
|
||||
kind,
|
||||
self.get_span(id, sess),
|
||||
helper_attrs,
|
||||
edition,
|
||||
self.root.edition,
|
||||
Symbol::intern(name),
|
||||
&self.get_attributes(&self.entry(id), sess),
|
||||
)
|
||||
|
@ -915,14 +910,6 @@ impl<'a, 'tcx> CrateMetadata {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn const_is_rvalue_promotable_to_static(&self, id: DefIndex) -> bool {
|
||||
match self.entry(id).kind {
|
||||
EntryKind::AssocConst(_, data, _) |
|
||||
EntryKind::Const(data, _) => data.ast_promotable,
|
||||
_ => bug!(),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn is_item_mir_available(&self, id: DefIndex) -> bool {
|
||||
!self.is_proc_macro(id) &&
|
||||
self.maybe_entry(id).and_then(|item| item.decode(self).mir).is_some()
|
||||
|
|
|
@ -861,18 +861,11 @@ impl EncodeContext<'tcx> {
|
|||
|
||||
let kind = match trait_item.kind {
|
||||
ty::AssocKind::Const => {
|
||||
let const_qualif =
|
||||
if let hir::TraitItemKind::Const(_, Some(body)) = ast_item.kind {
|
||||
self.const_qualif(0, body)
|
||||
} else {
|
||||
ConstQualif { mir: 0, ast_promotable: false }
|
||||
};
|
||||
|
||||
let rendered =
|
||||
hir::print::to_string(self.tcx.hir(), |s| s.print_trait_item(ast_item));
|
||||
let rendered_const = self.lazy(RenderedConst(rendered));
|
||||
|
||||
EntryKind::AssocConst(container, const_qualif, rendered_const)
|
||||
EntryKind::AssocConst(container, ConstQualif { mir: 0 }, rendered_const)
|
||||
}
|
||||
ty::AssocKind::Method => {
|
||||
let fn_data = if let hir::TraitItemKind::Method(method_sig, m) = &ast_item.kind {
|
||||
|
@ -946,13 +939,6 @@ impl EncodeContext<'tcx> {
|
|||
!self.tcx.sess.opts.output_types.should_codegen()
|
||||
}
|
||||
|
||||
fn const_qualif(&self, mir: u8, body_id: hir::BodyId) -> ConstQualif {
|
||||
let body_owner_def_id = self.tcx.hir().body_owner_def_id(body_id);
|
||||
let ast_promotable = self.tcx.const_is_rvalue_promotable_to_static(body_owner_def_id);
|
||||
|
||||
ConstQualif { mir, ast_promotable }
|
||||
}
|
||||
|
||||
fn encode_info_for_impl_item(&mut self, def_id: DefId) -> Entry<'tcx> {
|
||||
debug!("EncodeContext::encode_info_for_impl_item({:?})", def_id);
|
||||
let tcx = self.tcx;
|
||||
|
@ -974,7 +960,7 @@ impl EncodeContext<'tcx> {
|
|||
let mir = self.tcx.at(ast_item.span).mir_const_qualif(def_id).0;
|
||||
|
||||
EntryKind::AssocConst(container,
|
||||
self.const_qualif(mir, body_id),
|
||||
ConstQualif { mir },
|
||||
self.encode_rendered_const_for_body(body_id))
|
||||
} else {
|
||||
bug!()
|
||||
|
@ -1123,7 +1109,7 @@ impl EncodeContext<'tcx> {
|
|||
hir::ItemKind::Const(_, body_id) => {
|
||||
let mir = tcx.at(item.span).mir_const_qualif(def_id).0;
|
||||
EntryKind::Const(
|
||||
self.const_qualif(mir, body_id),
|
||||
ConstQualif { mir },
|
||||
self.encode_rendered_const_for_body(body_id)
|
||||
)
|
||||
}
|
||||
|
@ -1437,7 +1423,7 @@ impl EncodeContext<'tcx> {
|
|||
}
|
||||
|
||||
ty::Closure(def_id, substs) => {
|
||||
let sig = substs.closure_sig(def_id, self.tcx);
|
||||
let sig = substs.as_closure().sig(def_id, self.tcx);
|
||||
let data = ClosureData { sig: self.lazy(sig) };
|
||||
EntryKind::Closure(self.lazy(data))
|
||||
}
|
||||
|
@ -1475,7 +1461,7 @@ impl EncodeContext<'tcx> {
|
|||
let mir = tcx.mir_const_qualif(def_id).0;
|
||||
|
||||
Entry {
|
||||
kind: EntryKind::Const(self.const_qualif(mir, body_id), const_data),
|
||||
kind: EntryKind::Const(ConstQualif { mir }, const_data),
|
||||
visibility: self.lazy(ty::Visibility::Public),
|
||||
span: self.lazy(tcx.def_span(def_id)),
|
||||
attributes: Lazy::empty(),
|
||||
|
|
|
@ -254,7 +254,6 @@ pub struct CrateMismatch {
|
|||
pub struct Context<'a> {
|
||||
pub sess: &'a Session,
|
||||
pub span: Span,
|
||||
pub ident: Symbol,
|
||||
pub crate_name: Symbol,
|
||||
pub hash: Option<&'a Svh>,
|
||||
pub extra_filename: Option<&'a str>,
|
||||
|
@ -262,7 +261,7 @@ pub struct Context<'a> {
|
|||
pub target: &'a Target,
|
||||
pub triple: TargetTriple,
|
||||
pub filesearch: FileSearch<'a>,
|
||||
pub root: &'a Option<CratePaths>,
|
||||
pub root: Option<&'a CratePaths>,
|
||||
pub rejected_via_hash: Vec<CrateMismatch>,
|
||||
pub rejected_via_triple: Vec<CrateMismatch>,
|
||||
pub rejected_via_kind: Vec<CrateMismatch>,
|
||||
|
@ -323,8 +322,8 @@ impl<'a> Context<'a> {
|
|||
|
||||
pub fn report_errs(self) -> ! {
|
||||
let add = match self.root {
|
||||
&None => String::new(),
|
||||
&Some(ref r) => format!(" which `{}` depends on", r.ident),
|
||||
None => String::new(),
|
||||
Some(r) => format!(" which `{}` depends on", r.ident),
|
||||
};
|
||||
let mut msg = "the following crate versions were found:".to_string();
|
||||
let mut err = if !self.rejected_via_hash.is_empty() {
|
||||
|
@ -332,16 +331,16 @@ impl<'a> Context<'a> {
|
|||
self.span,
|
||||
E0460,
|
||||
"found possibly newer version of crate `{}`{}",
|
||||
self.ident,
|
||||
self.crate_name,
|
||||
add);
|
||||
err.note("perhaps that crate needs to be recompiled?");
|
||||
let mismatches = self.rejected_via_hash.iter();
|
||||
for &CrateMismatch { ref path, .. } in mismatches {
|
||||
msg.push_str(&format!("\ncrate `{}`: {}", self.ident, path.display()));
|
||||
msg.push_str(&format!("\ncrate `{}`: {}", self.crate_name, path.display()));
|
||||
}
|
||||
match self.root {
|
||||
&None => {}
|
||||
&Some(ref r) => {
|
||||
None => {}
|
||||
Some(r) => {
|
||||
for path in r.paths().iter() {
|
||||
msg.push_str(&format!("\ncrate `{}`: {}", r.ident, path.display()));
|
||||
}
|
||||
|
@ -355,13 +354,13 @@ impl<'a> Context<'a> {
|
|||
E0461,
|
||||
"couldn't find crate `{}` \
|
||||
with expected target triple {}{}",
|
||||
self.ident,
|
||||
self.crate_name,
|
||||
self.triple,
|
||||
add);
|
||||
let mismatches = self.rejected_via_triple.iter();
|
||||
for &CrateMismatch { ref path, ref got } in mismatches {
|
||||
msg.push_str(&format!("\ncrate `{}`, target triple {}: {}",
|
||||
self.ident,
|
||||
self.crate_name,
|
||||
got,
|
||||
path.display()));
|
||||
}
|
||||
|
@ -372,12 +371,12 @@ impl<'a> Context<'a> {
|
|||
self.span,
|
||||
E0462,
|
||||
"found staticlib `{}` instead of rlib or dylib{}",
|
||||
self.ident,
|
||||
self.crate_name,
|
||||
add);
|
||||
err.help("please recompile that crate using --crate-type lib");
|
||||
let mismatches = self.rejected_via_kind.iter();
|
||||
for &CrateMismatch { ref path, .. } in mismatches {
|
||||
msg.push_str(&format!("\ncrate `{}`: {}", self.ident, path.display()));
|
||||
msg.push_str(&format!("\ncrate `{}`: {}", self.crate_name, path.display()));
|
||||
}
|
||||
err.note(&msg);
|
||||
err
|
||||
|
@ -387,14 +386,14 @@ impl<'a> Context<'a> {
|
|||
E0514,
|
||||
"found crate `{}` compiled by an incompatible version \
|
||||
of rustc{}",
|
||||
self.ident,
|
||||
self.crate_name,
|
||||
add);
|
||||
err.help(&format!("please recompile that crate using this compiler ({})",
|
||||
rustc_version()));
|
||||
let mismatches = self.rejected_via_version.iter();
|
||||
for &CrateMismatch { ref path, ref got } in mismatches {
|
||||
msg.push_str(&format!("\ncrate `{}` compiled by {}: {}",
|
||||
self.ident,
|
||||
self.crate_name,
|
||||
got,
|
||||
path.display()));
|
||||
}
|
||||
|
@ -405,10 +404,10 @@ impl<'a> Context<'a> {
|
|||
self.span,
|
||||
E0463,
|
||||
"can't find crate for `{}`{}",
|
||||
self.ident,
|
||||
self.crate_name,
|
||||
add);
|
||||
|
||||
if (self.ident == sym::std || self.ident == sym::core)
|
||||
if (self.crate_name == sym::std || self.crate_name == sym::core)
|
||||
&& self.triple != TargetTriple::from_triple(config::host_triple()) {
|
||||
err.note(&format!("the `{}` target may not be installed", self.triple));
|
||||
}
|
||||
|
|
|
@ -274,7 +274,6 @@ pub enum EntryKind<'tcx> {
|
|||
#[derive(Clone, Copy, RustcEncodable, RustcDecodable)]
|
||||
pub struct ConstQualif {
|
||||
pub mir: u8,
|
||||
pub ast_promotable: bool,
|
||||
}
|
||||
|
||||
/// Contains a constant which has been rendered to a String.
|
||||
|
|
|
@ -341,7 +341,8 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
|
|||
ty::Closure(def_id, closure_substs)
|
||||
if def_id == self.mir_def_id && upvar_field.is_some()
|
||||
=> {
|
||||
let closure_kind_ty = closure_substs.closure_kind_ty(def_id, self.infcx.tcx);
|
||||
let closure_kind_ty = closure_substs
|
||||
.as_closure().kind_ty(def_id, self.infcx.tcx);
|
||||
let closure_kind = closure_kind_ty.to_opt_closure_kind();
|
||||
let capture_description = match closure_kind {
|
||||
Some(ty::ClosureKind::Fn) => {
|
||||
|
|
|
@ -12,7 +12,7 @@ use rustc::mir::{
|
|||
SourceInfo, Statement, StatementKind, Terminator, TerminatorKind, UserTypeProjection,
|
||||
};
|
||||
use rustc::ty::fold::TypeFoldable;
|
||||
use rustc::ty::{self, ClosureSubsts, GeneratorSubsts, RegionVid, Ty};
|
||||
use rustc::ty::{self, GeneratorSubsts, RegionVid, Ty};
|
||||
use rustc::ty::subst::SubstsRef;
|
||||
|
||||
pub(super) fn generate_constraints<'cx, 'tcx>(
|
||||
|
@ -98,13 +98,6 @@ impl<'cg, 'cx, 'tcx> Visitor<'tcx> for ConstraintGeneration<'cg, 'cx, 'tcx> {
|
|||
self.super_generator_substs(substs);
|
||||
}
|
||||
|
||||
/// We sometimes have `closure_substs` within an rvalue, or within a
|
||||
/// call. Make them live at the location where they appear.
|
||||
fn visit_closure_substs(&mut self, substs: &ClosureSubsts<'tcx>, location: Location) {
|
||||
self.add_regular_live_constraint(*substs, location);
|
||||
self.super_closure_substs(substs);
|
||||
}
|
||||
|
||||
fn visit_statement(
|
||||
&mut self,
|
||||
statement: &Statement<'tcx>,
|
||||
|
|
|
@ -875,7 +875,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
|
|||
if let Some(ty::ReFree(free_region)) = self.to_error_region(fr) {
|
||||
if let ty::BoundRegion::BrEnv = free_region.bound_region {
|
||||
if let DefiningTy::Closure(def_id, substs) = self.universal_regions.defining_ty {
|
||||
let closure_kind_ty = substs.closure_kind_ty(def_id, infcx.tcx);
|
||||
let closure_kind_ty = substs.as_closure().kind_ty(def_id, infcx.tcx);
|
||||
return Some(ty::ClosureKind::FnMut) == closure_kind_ty.to_opt_closure_kind();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -300,7 +300,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
|
|||
};
|
||||
let region_name = self.synthesize_region_name(renctx);
|
||||
|
||||
let closure_kind_ty = substs.closure_kind_ty(def_id, tcx);
|
||||
let closure_kind_ty = substs.as_closure().kind_ty(def_id, tcx);
|
||||
let note = match closure_kind_ty.to_opt_closure_kind() {
|
||||
Some(ty::ClosureKind::Fn) => {
|
||||
"closure implements `Fn`, so references to captured variables \
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use rustc::ty::subst::SubstsRef;
|
||||
use rustc::ty::{self, ClosureSubsts, GeneratorSubsts, Ty, TypeFoldable};
|
||||
use rustc::ty::{self, GeneratorSubsts, Ty, TypeFoldable};
|
||||
use rustc::mir::{Location, Body, Promoted};
|
||||
use rustc::mir::visit::{MutVisitor, TyContext};
|
||||
use rustc::infer::{InferCtxt, NLLRegionVariableOrigin};
|
||||
|
@ -96,16 +96,4 @@ impl<'a, 'tcx> MutVisitor<'tcx> for NLLVisitor<'a, 'tcx> {
|
|||
|
||||
debug!("visit_generator_substs: substs={:?}", substs);
|
||||
}
|
||||
|
||||
fn visit_closure_substs(&mut self, substs: &mut ClosureSubsts<'tcx>, location: Location) {
|
||||
debug!(
|
||||
"visit_closure_substs(substs={:?}, location={:?})",
|
||||
substs,
|
||||
location
|
||||
);
|
||||
|
||||
*substs = self.renumber_regions(substs);
|
||||
|
||||
debug!("visit_closure_substs: substs={:?}", substs);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -70,6 +70,10 @@ impl LocalUseMap {
|
|||
appearances: IndexVec::new(),
|
||||
};
|
||||
|
||||
if live_locals.is_empty() {
|
||||
return local_use_map;
|
||||
}
|
||||
|
||||
let mut locals_with_use_data: IndexVec<Local, bool> =
|
||||
IndexVec::from_elem_n(false, body.local_decls.len());
|
||||
live_locals.iter().for_each(|&local| locals_with_use_data[local] = true);
|
||||
|
|
|
@ -36,31 +36,39 @@ pub(super) fn generate<'tcx>(
|
|||
) {
|
||||
debug!("liveness::generate");
|
||||
|
||||
let live_locals: Vec<Local> = if AllFacts::enabled(typeck.tcx()) {
|
||||
// If "dump facts from NLL analysis" was requested perform
|
||||
// the liveness analysis for all `Local`s. This case opens
|
||||
// the possibility of the variables being analyzed in `trace`
|
||||
// to be *any* `Local`, not just the "live" ones, so we can't
|
||||
// make any assumptions past this point as to the characteristics
|
||||
// of the `live_locals`.
|
||||
// FIXME: Review "live" terminology past this point, we should
|
||||
// not be naming the `Local`s as live.
|
||||
body.local_decls.indices().collect()
|
||||
let free_regions = regions_that_outlive_free_regions(
|
||||
typeck.infcx.num_region_vars(),
|
||||
&typeck.borrowck_context.universal_regions,
|
||||
&typeck.borrowck_context.constraints.outlives_constraints,
|
||||
);
|
||||
let live_locals = compute_live_locals(typeck.tcx(), &free_regions, body);
|
||||
let facts_enabled = AllFacts::enabled(typeck.tcx());
|
||||
|
||||
|
||||
let polonius_drop_used = if facts_enabled {
|
||||
let mut drop_used = Vec::new();
|
||||
polonius::populate_access_facts(
|
||||
typeck,
|
||||
body,
|
||||
location_table,
|
||||
move_data,
|
||||
&mut drop_used,
|
||||
);
|
||||
Some(drop_used)
|
||||
} else {
|
||||
let free_regions = {
|
||||
regions_that_outlive_free_regions(
|
||||
typeck.infcx.num_region_vars(),
|
||||
&typeck.borrowck_context.universal_regions,
|
||||
&typeck.borrowck_context.constraints.outlives_constraints,
|
||||
)
|
||||
};
|
||||
compute_live_locals(typeck.tcx(), &free_regions, body)
|
||||
None
|
||||
};
|
||||
|
||||
if !live_locals.is_empty() {
|
||||
trace::trace(typeck, body, elements, flow_inits, move_data, live_locals);
|
||||
|
||||
polonius::populate_access_facts(typeck, body, location_table, move_data);
|
||||
if !live_locals.is_empty() || facts_enabled {
|
||||
trace::trace(
|
||||
typeck,
|
||||
body,
|
||||
elements,
|
||||
flow_inits,
|
||||
move_data,
|
||||
live_locals,
|
||||
polonius_drop_used,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ struct UseFactsExtractor<'me> {
|
|||
var_defined: &'me mut VarPointRelations,
|
||||
var_used: &'me mut VarPointRelations,
|
||||
location_table: &'me LocationTable,
|
||||
var_drop_used: &'me mut VarPointRelations,
|
||||
var_drop_used: &'me mut Vec<(Local, Location)>,
|
||||
move_data: &'me MoveData<'me>,
|
||||
path_accessed_at: &'me mut MovePathPointRelations,
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ impl UseFactsExtractor<'_> {
|
|||
|
||||
fn insert_drop_use(&mut self, local: Local, location: Location) {
|
||||
debug!("LivenessFactsExtractor::insert_drop_use()");
|
||||
self.var_drop_used.push((local, self.location_to_index(location)));
|
||||
self.var_drop_used.push((local, location));
|
||||
}
|
||||
|
||||
fn insert_path_access(&mut self, path: MovePathIndex, location: Location) {
|
||||
|
@ -100,6 +100,7 @@ pub(super) fn populate_access_facts(
|
|||
body: &Body<'tcx>,
|
||||
location_table: &LocationTable,
|
||||
move_data: &MoveData<'_>,
|
||||
drop_used: &mut Vec<(Local, Location)>,
|
||||
) {
|
||||
debug!("populate_var_liveness_facts()");
|
||||
|
||||
|
@ -107,12 +108,16 @@ pub(super) fn populate_access_facts(
|
|||
UseFactsExtractor {
|
||||
var_defined: &mut facts.var_defined,
|
||||
var_used: &mut facts.var_used,
|
||||
var_drop_used: &mut facts.var_drop_used,
|
||||
var_drop_used: drop_used,
|
||||
path_accessed_at: &mut facts.path_accessed_at,
|
||||
location_table,
|
||||
move_data,
|
||||
}
|
||||
.visit_body(body);
|
||||
|
||||
facts.var_drop_used.extend(drop_used.iter().map(|&(local, location)| {
|
||||
(local, location_table.mid_index(location))
|
||||
}));
|
||||
}
|
||||
|
||||
for (local, local_decl) in body.local_decls.iter_enumerated() {
|
||||
|
|
|
@ -13,7 +13,7 @@ use rustc::traits::query::type_op::outlives::DropckOutlives;
|
|||
use rustc::traits::query::type_op::TypeOp;
|
||||
use rustc::ty::{Ty, TypeFoldable};
|
||||
use rustc_index::bit_set::HybridBitSet;
|
||||
use rustc_data_structures::fx::FxHashMap;
|
||||
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
||||
use std::rc::Rc;
|
||||
|
||||
/// This is the heart of the liveness computation. For each variable X
|
||||
|
@ -37,6 +37,7 @@ pub(super) fn trace(
|
|||
flow_inits: &mut FlowAtLocation<'tcx, MaybeInitializedPlaces<'_, 'tcx>>,
|
||||
move_data: &MoveData<'tcx>,
|
||||
live_locals: Vec<Local>,
|
||||
polonius_drop_used: Option<Vec<(Local, Location)>>,
|
||||
) {
|
||||
debug!("trace()");
|
||||
|
||||
|
@ -52,7 +53,13 @@ pub(super) fn trace(
|
|||
drop_data: FxHashMap::default(),
|
||||
};
|
||||
|
||||
LivenessResults::new(cx).compute_for_all_locals(live_locals);
|
||||
let mut results = LivenessResults::new(cx);
|
||||
|
||||
if let Some(drop_used) = polonius_drop_used {
|
||||
results.add_extra_drop_facts(drop_used, live_locals.iter().copied().collect())
|
||||
}
|
||||
|
||||
results.compute_for_all_locals(live_locals);
|
||||
}
|
||||
|
||||
/// Contextual state for the type-liveness generator.
|
||||
|
@ -145,6 +152,32 @@ impl LivenessResults<'me, 'typeck, 'flow, 'tcx> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Add extra drop facts needed for Polonius.
|
||||
///
|
||||
/// Add facts for all locals with free regions, since regions may outlive
|
||||
/// the function body only at certain nodes in the CFG.
|
||||
fn add_extra_drop_facts(
|
||||
&mut self,
|
||||
drop_used: Vec<(Local, Location)>,
|
||||
live_locals: FxHashSet<Local>,
|
||||
) {
|
||||
let locations = HybridBitSet::new_empty(self.cx.elements.num_points());
|
||||
|
||||
for (local, location) in drop_used {
|
||||
if !live_locals.contains(&local) {
|
||||
let local_ty = self.cx.body.local_decls[local].ty;
|
||||
if local_ty.has_free_regions() {
|
||||
self.cx.add_drop_live_facts_for(
|
||||
local,
|
||||
local_ty,
|
||||
&[location],
|
||||
&locations,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Clear the value of fields that are "per local variable".
|
||||
fn reset_local_state(&mut self) {
|
||||
self.defs.clear();
|
||||
|
|
|
@ -276,7 +276,17 @@ impl<'a, 'b, 'tcx> Visitor<'tcx> for TypeVerifier<'a, 'b, 'tcx> {
|
|||
|
||||
fn visit_constant(&mut self, constant: &Constant<'tcx>, location: Location) {
|
||||
self.super_constant(constant, location);
|
||||
self.sanitize_type(constant, constant.literal.ty);
|
||||
let ty = self.sanitize_type(constant, constant.literal.ty);
|
||||
|
||||
self.cx.infcx.tcx.for_each_free_region(&ty, |live_region| {
|
||||
let live_region_vid =
|
||||
self.cx.borrowck_context.universal_regions.to_region_vid(live_region);
|
||||
self.cx
|
||||
.borrowck_context
|
||||
.constraints
|
||||
.liveness_constraints
|
||||
.add_element(live_region_vid, location);
|
||||
});
|
||||
|
||||
if let Some(annotation_index) = constant.user_ty {
|
||||
if let Err(terr) = self.cx.relate_type_and_user_type(
|
||||
|
@ -528,25 +538,37 @@ impl<'a, 'b, 'tcx> TypeVerifier<'a, 'b, 'tcx> {
|
|||
|
||||
let parent_body = mem::replace(&mut self.body, promoted_body);
|
||||
|
||||
// Use new sets of constraints and closure bounds so that we can
|
||||
// modify their locations.
|
||||
let all_facts = &mut None;
|
||||
let mut constraints = Default::default();
|
||||
let mut closure_bounds = Default::default();
|
||||
let mut liveness_constraints = LivenessValues::new(
|
||||
Rc::new(RegionValueElements::new(promoted_body)),
|
||||
);
|
||||
// Don't try to add borrow_region facts for the promoted MIR
|
||||
mem::swap(self.cx.borrowck_context.all_facts, all_facts);
|
||||
|
||||
// Use a new sets of constraints and closure bounds so that we can
|
||||
// modify their locations.
|
||||
mem::swap(
|
||||
&mut self.cx.borrowck_context.constraints.outlives_constraints,
|
||||
&mut constraints
|
||||
);
|
||||
mem::swap(
|
||||
&mut self.cx.borrowck_context.constraints.closure_bounds_mapping,
|
||||
&mut closure_bounds
|
||||
);
|
||||
let mut swap_constraints = |this: &mut Self| {
|
||||
mem::swap(this.cx.borrowck_context.all_facts, all_facts);
|
||||
mem::swap(
|
||||
&mut this.cx.borrowck_context.constraints.outlives_constraints,
|
||||
&mut constraints
|
||||
);
|
||||
mem::swap(
|
||||
&mut this.cx.borrowck_context.constraints.closure_bounds_mapping,
|
||||
&mut closure_bounds
|
||||
);
|
||||
mem::swap(
|
||||
&mut this.cx.borrowck_context.constraints.liveness_constraints,
|
||||
&mut liveness_constraints
|
||||
);
|
||||
};
|
||||
|
||||
swap_constraints(self);
|
||||
|
||||
self.visit_body(promoted_body);
|
||||
|
||||
|
||||
if !self.errors_reported {
|
||||
// if verifier failed, don't do further checks to avoid ICEs
|
||||
self.cx.typeck_mir(promoted_body);
|
||||
|
@ -554,23 +576,15 @@ impl<'a, 'b, 'tcx> TypeVerifier<'a, 'b, 'tcx> {
|
|||
|
||||
self.body = parent_body;
|
||||
// Merge the outlives constraints back in, at the given location.
|
||||
mem::swap(self.cx.borrowck_context.all_facts, all_facts);
|
||||
mem::swap(
|
||||
&mut self.cx.borrowck_context.constraints.outlives_constraints,
|
||||
&mut constraints
|
||||
);
|
||||
mem::swap(
|
||||
&mut self.cx.borrowck_context.constraints.closure_bounds_mapping,
|
||||
&mut closure_bounds
|
||||
);
|
||||
swap_constraints(self);
|
||||
|
||||
let locations = location.to_locations();
|
||||
for constraint in constraints.outlives().iter() {
|
||||
let mut constraint = *constraint;
|
||||
constraint.locations = locations;
|
||||
if let ConstraintCategory::Return
|
||||
| ConstraintCategory::UseAsConst
|
||||
| ConstraintCategory::UseAsStatic = constraint.category
|
||||
| ConstraintCategory::UseAsConst
|
||||
| ConstraintCategory::UseAsStatic = constraint.category
|
||||
{
|
||||
// "Returning" from a promoted is an assigment to a
|
||||
// temporary from the user's point of view.
|
||||
|
@ -578,6 +592,10 @@ impl<'a, 'b, 'tcx> TypeVerifier<'a, 'b, 'tcx> {
|
|||
}
|
||||
self.cx.borrowck_context.constraints.outlives_constraints.push(constraint)
|
||||
}
|
||||
for live_region in liveness_constraints.rows() {
|
||||
self.cx.borrowck_context.constraints.liveness_constraints
|
||||
.add_element(live_region, location);
|
||||
}
|
||||
|
||||
if !closure_bounds.is_empty() {
|
||||
let combined_bounds_mapping = closure_bounds
|
||||
|
@ -763,10 +781,10 @@ impl<'a, 'b, 'tcx> TypeVerifier<'a, 'b, 'tcx> {
|
|||
ty::Adt(adt_def, substs) if !adt_def.is_enum() =>
|
||||
(&adt_def.variants[VariantIdx::new(0)], substs),
|
||||
ty::Closure(def_id, substs) => {
|
||||
return match substs.upvar_tys(def_id, tcx).nth(field.index()) {
|
||||
return match substs.as_closure().upvar_tys(def_id, tcx).nth(field.index()) {
|
||||
Some(ty) => Ok(ty),
|
||||
None => Err(FieldAccessError::OutOfRange {
|
||||
field_count: substs.upvar_tys(def_id, tcx).count(),
|
||||
field_count: substs.as_closure().upvar_tys(def_id, tcx).count(),
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
@ -1934,10 +1952,10 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
|
|||
}
|
||||
}
|
||||
AggregateKind::Closure(def_id, substs) => {
|
||||
match substs.upvar_tys(def_id, tcx).nth(field_index) {
|
||||
match substs.as_closure().upvar_tys(def_id, tcx).nth(field_index) {
|
||||
Some(ty) => Ok(ty),
|
||||
None => Err(FieldAccessError::OutOfRange {
|
||||
field_count: substs.upvar_tys(def_id, tcx).count(),
|
||||
field_count: substs.as_closure().upvar_tys(def_id, tcx).count(),
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
@ -2050,7 +2068,7 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
|
|||
CastKind::Pointer(PointerCast::ClosureFnPointer(unsafety)) => {
|
||||
let sig = match op.ty(body, tcx).kind {
|
||||
ty::Closure(def_id, substs) => {
|
||||
substs.closure_sig_ty(def_id, tcx).fn_sig(tcx)
|
||||
substs.as_closure().sig_ty(def_id, tcx).fn_sig(tcx)
|
||||
}
|
||||
_ => bug!(),
|
||||
};
|
||||
|
@ -2522,7 +2540,7 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
|
|||
// desugaring. A closure gets desugared to a struct, and
|
||||
// these extra requirements are basically like where
|
||||
// clauses on the struct.
|
||||
AggregateKind::Closure(def_id, ty::ClosureSubsts { substs })
|
||||
AggregateKind::Closure(def_id, substs)
|
||||
| AggregateKind::Generator(def_id, ty::GeneratorSubsts { substs }, _) => {
|
||||
self.prove_closure_bounds(tcx, *def_id, substs, location)
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ use rustc::infer::{InferCtxt, NLLRegionVariableOrigin};
|
|||
use rustc::middle::lang_items;
|
||||
use rustc::ty::fold::TypeFoldable;
|
||||
use rustc::ty::subst::{InternalSubsts, SubstsRef, Subst};
|
||||
use rustc::ty::{self, ClosureSubsts, GeneratorSubsts, RegionVid, Ty, TyCtxt};
|
||||
use rustc::ty::{self, GeneratorSubsts, RegionVid, Ty, TyCtxt};
|
||||
use rustc::util::nodemap::FxHashMap;
|
||||
use rustc_index::vec::{Idx, IndexVec};
|
||||
use rustc_errors::DiagnosticBuilder;
|
||||
|
@ -85,7 +85,7 @@ pub struct UniversalRegions<'tcx> {
|
|||
pub enum DefiningTy<'tcx> {
|
||||
/// The MIR is a closure. The signature is found via
|
||||
/// `ClosureSubsts::closure_sig_ty`.
|
||||
Closure(DefId, ty::ClosureSubsts<'tcx>),
|
||||
Closure(DefId, SubstsRef<'tcx>),
|
||||
|
||||
/// The MIR is a generator. The signature is that generators take
|
||||
/// no parameters and return the result of
|
||||
|
@ -109,7 +109,9 @@ impl<'tcx> DefiningTy<'tcx> {
|
|||
/// match up with the upvar order in the HIR, typesystem, and MIR.
|
||||
pub fn upvar_tys(self, tcx: TyCtxt<'tcx>) -> impl Iterator<Item = Ty<'tcx>> + 'tcx {
|
||||
match self {
|
||||
DefiningTy::Closure(def_id, substs) => Either::Left(substs.upvar_tys(def_id, tcx)),
|
||||
DefiningTy::Closure(def_id, substs) => Either::Left(
|
||||
substs.as_closure().upvar_tys(def_id, tcx)
|
||||
),
|
||||
DefiningTy::Generator(def_id, substs, _) => {
|
||||
Either::Right(Either::Left(substs.upvar_tys(def_id, tcx)))
|
||||
}
|
||||
|
@ -312,7 +314,7 @@ impl<'tcx> UniversalRegions<'tcx> {
|
|||
err.note(&format!(
|
||||
"defining type: {:?} with closure substs {:#?}",
|
||||
def_id,
|
||||
&substs.substs[..]
|
||||
&substs[..]
|
||||
));
|
||||
|
||||
// FIXME: It'd be nice to print the late-bound regions
|
||||
|
@ -546,7 +548,7 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
|
|||
let closure_base_def_id = tcx.closure_base_def_id(self.mir_def_id);
|
||||
let identity_substs = InternalSubsts::identity_for_item(tcx, closure_base_def_id);
|
||||
let fr_substs = match defining_ty {
|
||||
DefiningTy::Closure(_, ClosureSubsts { ref substs })
|
||||
DefiningTy::Closure(_, ref substs)
|
||||
| DefiningTy::Generator(_, GeneratorSubsts { ref substs }, _) => {
|
||||
// In the case of closures, we rely on the fact that
|
||||
// the first N elements in the ClosureSubsts are
|
||||
|
@ -582,7 +584,7 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
|
|||
match defining_ty {
|
||||
DefiningTy::Closure(def_id, substs) => {
|
||||
assert_eq!(self.mir_def_id, def_id);
|
||||
let closure_sig = substs.closure_sig_ty(def_id, tcx).fn_sig(tcx);
|
||||
let closure_sig = substs.as_closure().sig_ty(def_id, tcx).fn_sig(tcx);
|
||||
let inputs_and_output = closure_sig.inputs_and_output();
|
||||
let closure_ty = tcx.closure_env_ty(def_id, substs).unwrap();
|
||||
ty::Binder::fuse(
|
||||
|
|
|
@ -506,7 +506,8 @@ fn make_mirror_unadjusted<'a, 'tcx>(
|
|||
hir::ExprKind::Closure(..) => {
|
||||
let closure_ty = cx.tables().expr_ty(expr);
|
||||
let (def_id, substs, movability) = match closure_ty.kind {
|
||||
ty::Closure(def_id, substs) => (def_id, UpvarSubsts::Closure(substs), None),
|
||||
ty::Closure(def_id, substs) => (def_id,
|
||||
UpvarSubsts::Closure(substs), None),
|
||||
ty::Generator(def_id, substs, movability) => {
|
||||
(def_id, UpvarSubsts::Generator(substs), Some(movability))
|
||||
}
|
||||
|
@ -1011,7 +1012,7 @@ fn convert_var(
|
|||
});
|
||||
Expr {
|
||||
ty: closure_ty,
|
||||
temp_lifetime: temp_lifetime,
|
||||
temp_lifetime,
|
||||
span: expr.span,
|
||||
kind: ExprKind::Deref {
|
||||
arg: Expr {
|
||||
|
|
|
@ -67,7 +67,7 @@ impl<'tcx> Printer<'tcx> for AbsolutePathPrinter<'tcx> {
|
|||
| ty::Opaque(def_id, substs)
|
||||
| ty::Projection(ty::ProjectionTy { item_def_id: def_id, substs })
|
||||
| ty::UnnormalizedProjection(ty::ProjectionTy { item_def_id: def_id, substs })
|
||||
| ty::Closure(def_id, ty::ClosureSubsts { substs })
|
||||
| ty::Closure(def_id, substs)
|
||||
| ty::Generator(def_id, ty::GeneratorSubsts { substs }, _)
|
||||
=> self.print_def_path(def_id, substs),
|
||||
ty::Foreign(def_id) => self.print_def_path(def_id, &[]),
|
||||
|
|
|
@ -581,7 +581,8 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirNeighborCollector<'a, 'tcx> {
|
|||
match source_ty.kind {
|
||||
ty::Closure(def_id, substs) => {
|
||||
let instance = Instance::resolve_closure(
|
||||
self.tcx, def_id, substs, ty::ClosureKind::FnOnce);
|
||||
self.tcx, def_id,
|
||||
substs, ty::ClosureKind::FnOnce);
|
||||
if should_monomorphize_locally(self.tcx, &instance) {
|
||||
self.output.push(create_fn_mono_item(instance));
|
||||
}
|
||||
|
|
|
@ -320,7 +320,7 @@ fn build_clone_shim<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, self_ty: Ty<'tcx>) -
|
|||
ty::Closure(def_id, substs) => {
|
||||
builder.tuple_like_shim(
|
||||
dest, src,
|
||||
substs.upvar_tys(def_id, tcx)
|
||||
substs.as_closure().upvar_tys(def_id, tcx)
|
||||
)
|
||||
}
|
||||
ty::Tuple(..) => builder.tuple_like_shim(dest, src, self_ty.tuple_fields()),
|
||||
|
|
|
@ -788,7 +788,7 @@ where
|
|||
let ty = self.place_ty(self.place);
|
||||
match ty.kind {
|
||||
ty::Closure(def_id, substs) => {
|
||||
let tys : Vec<_> = substs.upvar_tys(def_id, self.tcx()).collect();
|
||||
let tys : Vec<_> = substs.as_closure().upvar_tys(def_id, self.tcx()).collect();
|
||||
self.open_drop_for_tuple(&tys)
|
||||
}
|
||||
// Note that `elaborate_drops` only drops the upvars of a generator,
|
||||
|
|
|
@ -19,12 +19,10 @@ use rustc::ty::query::Providers;
|
|||
pub mod error_codes;
|
||||
|
||||
pub mod ast_validation;
|
||||
pub mod rvalue_promotion;
|
||||
pub mod hir_stats;
|
||||
pub mod layout_test;
|
||||
pub mod loops;
|
||||
|
||||
pub fn provide(providers: &mut Providers<'_>) {
|
||||
rvalue_promotion::provide(providers);
|
||||
loops::provide(providers);
|
||||
}
|
||||
|
|
|
@ -1,658 +0,0 @@
|
|||
// Verifies that the types and values of const and static items
|
||||
// are safe. The rules enforced by this module are:
|
||||
//
|
||||
// - For each *mutable* static item, it checks that its **type**:
|
||||
// - doesn't have a destructor
|
||||
// - doesn't own a box
|
||||
//
|
||||
// - For each *immutable* static item, it checks that its **value**:
|
||||
// - doesn't own a box
|
||||
// - doesn't contain a struct literal or a call to an enum variant / struct constructor where
|
||||
// - the type of the struct/enum has a dtor
|
||||
//
|
||||
// Rules Enforced Elsewhere:
|
||||
// - It's not possible to take the address of a static item with unsafe interior. This is enforced
|
||||
// by borrowck::gather_loans
|
||||
|
||||
use rustc::ty::cast::CastTy;
|
||||
use rustc::hir::def::{Res, DefKind, CtorKind};
|
||||
use rustc::hir::def_id::DefId;
|
||||
use rustc::middle::expr_use_visitor as euv;
|
||||
use rustc::middle::mem_categorization as mc;
|
||||
use rustc::middle::mem_categorization::Categorization;
|
||||
use rustc::ty::{self, Ty, TyCtxt};
|
||||
use rustc::ty::query::Providers;
|
||||
use rustc::ty::subst::{InternalSubsts, SubstsRef};
|
||||
use rustc::util::nodemap::{ItemLocalSet, HirIdSet};
|
||||
use rustc::hir;
|
||||
use syntax::symbol::sym;
|
||||
use syntax_pos::{Span, DUMMY_SP};
|
||||
use log::debug;
|
||||
use Promotability::*;
|
||||
use std::ops::{BitAnd, BitAndAssign, BitOr};
|
||||
|
||||
pub fn provide(providers: &mut Providers<'_>) {
|
||||
*providers = Providers {
|
||||
rvalue_promotable_map,
|
||||
const_is_rvalue_promotable_to_static,
|
||||
..*providers
|
||||
};
|
||||
}
|
||||
|
||||
fn const_is_rvalue_promotable_to_static(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
|
||||
assert!(def_id.is_local());
|
||||
|
||||
let hir_id = tcx.hir().as_local_hir_id(def_id)
|
||||
.expect("rvalue_promotable_map invoked with non-local def-id");
|
||||
let body_id = tcx.hir().body_owned_by(hir_id);
|
||||
tcx.rvalue_promotable_map(def_id).contains(&body_id.hir_id.local_id)
|
||||
}
|
||||
|
||||
fn rvalue_promotable_map(tcx: TyCtxt<'_>, def_id: DefId) -> &ItemLocalSet {
|
||||
let outer_def_id = tcx.closure_base_def_id(def_id);
|
||||
if outer_def_id != def_id {
|
||||
return tcx.rvalue_promotable_map(outer_def_id);
|
||||
}
|
||||
|
||||
let mut visitor = CheckCrateVisitor {
|
||||
tcx,
|
||||
tables: &ty::TypeckTables::empty(None),
|
||||
in_fn: false,
|
||||
in_static: false,
|
||||
mut_rvalue_borrows: Default::default(),
|
||||
param_env: ty::ParamEnv::empty(),
|
||||
identity_substs: InternalSubsts::empty(),
|
||||
result: ItemLocalSet::default(),
|
||||
};
|
||||
|
||||
// `def_id` should be a `Body` owner
|
||||
let hir_id = tcx.hir().as_local_hir_id(def_id)
|
||||
.expect("rvalue_promotable_map invoked with non-local def-id");
|
||||
let body_id = tcx.hir().body_owned_by(hir_id);
|
||||
let _ = visitor.check_nested_body(body_id);
|
||||
|
||||
tcx.arena.alloc(visitor.result)
|
||||
}
|
||||
|
||||
struct CheckCrateVisitor<'a, 'tcx> {
|
||||
tcx: TyCtxt<'tcx>,
|
||||
in_fn: bool,
|
||||
in_static: bool,
|
||||
mut_rvalue_borrows: HirIdSet,
|
||||
param_env: ty::ParamEnv<'tcx>,
|
||||
identity_substs: SubstsRef<'tcx>,
|
||||
tables: &'a ty::TypeckTables<'tcx>,
|
||||
result: ItemLocalSet,
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
#[derive(Debug, Clone, Copy, PartialEq)]
|
||||
enum Promotability {
|
||||
Promotable,
|
||||
NotPromotable
|
||||
}
|
||||
|
||||
impl BitAnd for Promotability {
|
||||
type Output = Self;
|
||||
|
||||
fn bitand(self, rhs: Self) -> Self {
|
||||
match (self, rhs) {
|
||||
(Promotable, Promotable) => Promotable,
|
||||
_ => NotPromotable,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl BitAndAssign for Promotability {
|
||||
fn bitand_assign(&mut self, rhs: Self) {
|
||||
*self = *self & rhs
|
||||
}
|
||||
}
|
||||
|
||||
impl BitOr for Promotability {
|
||||
type Output = Self;
|
||||
|
||||
fn bitor(self, rhs: Self) -> Self {
|
||||
match (self, rhs) {
|
||||
(NotPromotable, NotPromotable) => NotPromotable,
|
||||
_ => Promotable,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx> CheckCrateVisitor<'a, 'tcx> {
|
||||
// Returns true iff all the values of the type are promotable.
|
||||
fn type_promotability(&mut self, ty: Ty<'tcx>) -> Promotability {
|
||||
debug!("type_promotability({})", ty);
|
||||
|
||||
if ty.is_freeze(self.tcx, self.param_env, DUMMY_SP) &&
|
||||
!ty.needs_drop(self.tcx, self.param_env) {
|
||||
Promotable
|
||||
} else {
|
||||
NotPromotable
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_const_fn_call(
|
||||
&mut self,
|
||||
def_id: DefId,
|
||||
) -> Promotability {
|
||||
if self.tcx.is_promotable_const_fn(def_id) {
|
||||
Promotable
|
||||
} else {
|
||||
NotPromotable
|
||||
}
|
||||
}
|
||||
|
||||
/// While the `ExprUseVisitor` walks, we will identify which
|
||||
/// expressions are borrowed, and insert their IDs into this
|
||||
/// table. Actually, we insert the "borrow-id", which is normally
|
||||
/// the ID of the expression being borrowed: but in the case of
|
||||
/// `ref mut` borrows, the `id` of the pattern is
|
||||
/// inserted. Therefore, later we remove that entry from the table
|
||||
/// and transfer it over to the value being matched. This will
|
||||
/// then prevent said value from being promoted.
|
||||
fn remove_mut_rvalue_borrow(&mut self, pat: &hir::Pat) -> bool {
|
||||
let mut any_removed = false;
|
||||
pat.walk(|p| {
|
||||
any_removed |= self.mut_rvalue_borrows.remove(&p.hir_id);
|
||||
true
|
||||
});
|
||||
any_removed
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx> CheckCrateVisitor<'a, 'tcx> {
|
||||
fn check_nested_body(&mut self, body_id: hir::BodyId) -> Promotability {
|
||||
let item_id = self.tcx.hir().body_owner(body_id);
|
||||
let item_def_id = self.tcx.hir().local_def_id(item_id);
|
||||
|
||||
let outer_in_fn = self.in_fn;
|
||||
let outer_tables = self.tables;
|
||||
let outer_param_env = self.param_env;
|
||||
let outer_identity_substs = self.identity_substs;
|
||||
|
||||
self.in_fn = false;
|
||||
self.in_static = false;
|
||||
|
||||
match self.tcx.hir().body_owner_kind(item_id) {
|
||||
hir::BodyOwnerKind::Closure |
|
||||
hir::BodyOwnerKind::Fn => self.in_fn = true,
|
||||
hir::BodyOwnerKind::Static(_) => self.in_static = true,
|
||||
_ => {}
|
||||
};
|
||||
|
||||
|
||||
self.tables = self.tcx.typeck_tables_of(item_def_id);
|
||||
self.param_env = self.tcx.param_env(item_def_id);
|
||||
self.identity_substs = InternalSubsts::identity_for_item(self.tcx, item_def_id);
|
||||
|
||||
let body = self.tcx.hir().body(body_id);
|
||||
|
||||
let tcx = self.tcx;
|
||||
let param_env = self.param_env;
|
||||
let region_scope_tree = self.tcx.region_scope_tree(item_def_id);
|
||||
let tables = self.tables;
|
||||
euv::ExprUseVisitor::new(
|
||||
self,
|
||||
tcx,
|
||||
item_def_id,
|
||||
param_env,
|
||||
®ion_scope_tree,
|
||||
tables,
|
||||
None,
|
||||
).consume_body(body);
|
||||
|
||||
let body_promotable = self.check_expr(&body.value);
|
||||
self.in_fn = outer_in_fn;
|
||||
self.tables = outer_tables;
|
||||
self.param_env = outer_param_env;
|
||||
self.identity_substs = outer_identity_substs;
|
||||
body_promotable
|
||||
}
|
||||
|
||||
fn check_stmt(&mut self, stmt: &'tcx hir::Stmt) -> Promotability {
|
||||
match stmt.kind {
|
||||
hir::StmtKind::Local(ref local) => {
|
||||
if self.remove_mut_rvalue_borrow(&local.pat) {
|
||||
if let Some(init) = &local.init {
|
||||
self.mut_rvalue_borrows.insert(init.hir_id);
|
||||
}
|
||||
}
|
||||
|
||||
if let Some(ref expr) = local.init {
|
||||
let _ = self.check_expr(&expr);
|
||||
}
|
||||
NotPromotable
|
||||
}
|
||||
// Item statements are allowed
|
||||
hir::StmtKind::Item(..) => Promotable,
|
||||
hir::StmtKind::Expr(ref box_expr) |
|
||||
hir::StmtKind::Semi(ref box_expr) => {
|
||||
let _ = self.check_expr(box_expr);
|
||||
NotPromotable
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn check_expr(&mut self, ex: &'tcx hir::Expr) -> Promotability {
|
||||
let node_ty = self.tables.node_type(ex.hir_id);
|
||||
let mut outer = check_expr_kind(self, ex, node_ty);
|
||||
outer &= check_adjustments(self, ex);
|
||||
|
||||
// Handle borrows on (or inside the autorefs of) this expression.
|
||||
if self.mut_rvalue_borrows.remove(&ex.hir_id) {
|
||||
outer = NotPromotable
|
||||
}
|
||||
|
||||
if outer == Promotable {
|
||||
self.result.insert(ex.hir_id.local_id);
|
||||
}
|
||||
outer
|
||||
}
|
||||
|
||||
fn check_block(&mut self, block: &'tcx hir::Block) -> Promotability {
|
||||
let mut iter_result = Promotable;
|
||||
for index in block.stmts.iter() {
|
||||
iter_result &= self.check_stmt(index);
|
||||
}
|
||||
match block.expr {
|
||||
Some(ref box_expr) => iter_result & self.check_expr(&*box_expr),
|
||||
None => iter_result,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// This function is used to enforce the constraints on
|
||||
/// const/static items. It walks through the *value*
|
||||
/// of the item walking down the expression and evaluating
|
||||
/// every nested expression. If the expression is not part
|
||||
/// of a const/static item, it is qualified for promotion
|
||||
/// instead of producing errors.
|
||||
fn check_expr_kind<'a, 'tcx>(
|
||||
v: &mut CheckCrateVisitor<'a, 'tcx>,
|
||||
e: &'tcx hir::Expr, node_ty: Ty<'tcx>) -> Promotability {
|
||||
|
||||
let ty_result = match node_ty.kind {
|
||||
ty::Adt(def, _) if def.has_dtor(v.tcx) => {
|
||||
NotPromotable
|
||||
}
|
||||
_ => Promotable
|
||||
};
|
||||
|
||||
let kind_result = match e.kind {
|
||||
hir::ExprKind::Box(ref expr) => {
|
||||
let _ = v.check_expr(&expr);
|
||||
NotPromotable
|
||||
}
|
||||
hir::ExprKind::Unary(op, ref expr) => {
|
||||
let expr_promotability = v.check_expr(expr);
|
||||
if v.tables.is_method_call(e) || op == hir::UnDeref {
|
||||
return NotPromotable;
|
||||
}
|
||||
expr_promotability
|
||||
}
|
||||
hir::ExprKind::Binary(op, ref lhs, ref rhs) => {
|
||||
let lefty = v.check_expr(lhs);
|
||||
let righty = v.check_expr(rhs);
|
||||
if v.tables.is_method_call(e) {
|
||||
return NotPromotable;
|
||||
}
|
||||
match v.tables.node_type(lhs.hir_id).kind {
|
||||
ty::RawPtr(_) | ty::FnPtr(..) => {
|
||||
assert!(op.node == hir::BinOpKind::Eq || op.node == hir::BinOpKind::Ne ||
|
||||
op.node == hir::BinOpKind::Le || op.node == hir::BinOpKind::Lt ||
|
||||
op.node == hir::BinOpKind::Ge || op.node == hir::BinOpKind::Gt);
|
||||
|
||||
NotPromotable
|
||||
}
|
||||
_ => lefty & righty
|
||||
}
|
||||
}
|
||||
hir::ExprKind::Cast(ref from, _) => {
|
||||
let expr_promotability = v.check_expr(from);
|
||||
debug!("checking const cast(id={})", from.hir_id);
|
||||
let cast_in = CastTy::from_ty(v.tables.expr_ty(from));
|
||||
let cast_out = CastTy::from_ty(v.tables.expr_ty(e));
|
||||
match (cast_in, cast_out) {
|
||||
(Some(CastTy::FnPtr), Some(CastTy::Int(_))) |
|
||||
(Some(CastTy::Ptr(_)), Some(CastTy::Int(_))) => NotPromotable,
|
||||
(_, _) => expr_promotability
|
||||
}
|
||||
}
|
||||
hir::ExprKind::Path(ref qpath) => {
|
||||
let res = v.tables.qpath_res(qpath, e.hir_id);
|
||||
match res {
|
||||
Res::Def(DefKind::Ctor(..), _)
|
||||
| Res::Def(DefKind::Fn, _)
|
||||
| Res::Def(DefKind::Method, _)
|
||||
| Res::SelfCtor(..) =>
|
||||
Promotable,
|
||||
|
||||
// References to a static that are themselves within a static
|
||||
// are inherently promotable with the exception
|
||||
// of "#[thread_local]" statics, which may not
|
||||
// outlive the current function
|
||||
Res::Def(DefKind::Static, did) => {
|
||||
|
||||
if v.in_static {
|
||||
for attr in &v.tcx.get_attrs(did)[..] {
|
||||
if attr.check_name(sym::thread_local) {
|
||||
debug!("reference to `Static(id={:?})` is unpromotable \
|
||||
due to a `#[thread_local]` attribute", did);
|
||||
return NotPromotable;
|
||||
}
|
||||
}
|
||||
Promotable
|
||||
} else {
|
||||
debug!("reference to `Static(id={:?})` is unpromotable as it is not \
|
||||
referenced from a static", did);
|
||||
NotPromotable
|
||||
}
|
||||
}
|
||||
|
||||
Res::Def(DefKind::Const, did) |
|
||||
Res::Def(DefKind::AssocConst, did) => {
|
||||
let promotable = if v.tcx.trait_of_item(did).is_some() {
|
||||
// Don't peek inside trait associated constants.
|
||||
NotPromotable
|
||||
} else if v.tcx.at(e.span).const_is_rvalue_promotable_to_static(did) {
|
||||
Promotable
|
||||
} else {
|
||||
NotPromotable
|
||||
};
|
||||
// Just in case the type is more specific than the definition,
|
||||
// e.g., impl associated const with type parameters, check it.
|
||||
// Also, trait associated consts are relaxed by this.
|
||||
promotable | v.type_promotability(node_ty)
|
||||
}
|
||||
_ => NotPromotable
|
||||
}
|
||||
}
|
||||
hir::ExprKind::Call(ref callee, ref hirvec) => {
|
||||
let mut call_result = v.check_expr(callee);
|
||||
for index in hirvec.iter() {
|
||||
call_result &= v.check_expr(index);
|
||||
}
|
||||
let mut callee = &**callee;
|
||||
loop {
|
||||
callee = match callee.kind {
|
||||
hir::ExprKind::Block(ref block, _) => match block.expr {
|
||||
Some(ref tail) => &tail,
|
||||
None => break
|
||||
},
|
||||
_ => break
|
||||
};
|
||||
}
|
||||
// The callee is an arbitrary expression, it doesn't necessarily have a definition.
|
||||
let def = if let hir::ExprKind::Path(ref qpath) = callee.kind {
|
||||
v.tables.qpath_res(qpath, callee.hir_id)
|
||||
} else {
|
||||
Res::Err
|
||||
};
|
||||
let def_result = match def {
|
||||
Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) |
|
||||
Res::SelfCtor(..) => Promotable,
|
||||
Res::Def(DefKind::Fn, did) => v.handle_const_fn_call(did),
|
||||
Res::Def(DefKind::Method, did) => {
|
||||
match v.tcx.associated_item(did).container {
|
||||
ty::ImplContainer(_) => v.handle_const_fn_call(did),
|
||||
ty::TraitContainer(_) => NotPromotable,
|
||||
}
|
||||
}
|
||||
_ => NotPromotable,
|
||||
};
|
||||
def_result & call_result
|
||||
}
|
||||
hir::ExprKind::MethodCall(ref _pathsegment, ref _span, ref hirvec) => {
|
||||
let mut method_call_result = Promotable;
|
||||
for index in hirvec.iter() {
|
||||
method_call_result &= v.check_expr(index);
|
||||
}
|
||||
if let Some(def_id) = v.tables.type_dependent_def_id(e.hir_id) {
|
||||
match v.tcx.associated_item(def_id).container {
|
||||
ty::ImplContainer(_) => method_call_result & v.handle_const_fn_call(def_id),
|
||||
ty::TraitContainer(_) => NotPromotable,
|
||||
}
|
||||
} else {
|
||||
v.tcx.sess.delay_span_bug(e.span, "no type-dependent def for method call");
|
||||
NotPromotable
|
||||
}
|
||||
}
|
||||
hir::ExprKind::Struct(ref _qpath, ref hirvec, ref option_expr) => {
|
||||
let mut struct_result = Promotable;
|
||||
for index in hirvec.iter() {
|
||||
struct_result &= v.check_expr(&index.expr);
|
||||
}
|
||||
if let Some(ref expr) = *option_expr {
|
||||
struct_result &= v.check_expr(&expr);
|
||||
}
|
||||
if let ty::Adt(adt, ..) = v.tables.expr_ty(e).kind {
|
||||
// unsafe_cell_type doesn't necessarily exist with no_core
|
||||
if Some(adt.did) == v.tcx.lang_items().unsafe_cell_type() {
|
||||
return NotPromotable;
|
||||
}
|
||||
}
|
||||
struct_result
|
||||
}
|
||||
|
||||
hir::ExprKind::Lit(_) |
|
||||
hir::ExprKind::Err => Promotable,
|
||||
|
||||
hir::ExprKind::AddrOf(_, ref expr) |
|
||||
hir::ExprKind::Repeat(ref expr, _) |
|
||||
hir::ExprKind::Type(ref expr, _) |
|
||||
hir::ExprKind::DropTemps(ref expr) => {
|
||||
v.check_expr(&expr)
|
||||
}
|
||||
|
||||
hir::ExprKind::Closure(_capture_clause, ref _box_fn_decl,
|
||||
body_id, _span, _option_generator_movability) => {
|
||||
let nested_body_promotable = v.check_nested_body(body_id);
|
||||
// Paths in constant contexts cannot refer to local variables,
|
||||
// as there are none, and thus closures can't have upvars there.
|
||||
let closure_def_id = v.tcx.hir().local_def_id(e.hir_id);
|
||||
if !v.tcx.upvars(closure_def_id).map_or(true, |v| v.is_empty()) {
|
||||
NotPromotable
|
||||
} else {
|
||||
nested_body_promotable
|
||||
}
|
||||
}
|
||||
|
||||
hir::ExprKind::Field(ref expr, _ident) => {
|
||||
let expr_promotability = v.check_expr(&expr);
|
||||
if let Some(def) = v.tables.expr_ty(expr).ty_adt_def() {
|
||||
if def.is_union() {
|
||||
return NotPromotable;
|
||||
}
|
||||
}
|
||||
expr_promotability
|
||||
}
|
||||
|
||||
hir::ExprKind::Block(ref box_block, ref _option_label) => {
|
||||
v.check_block(box_block)
|
||||
}
|
||||
|
||||
hir::ExprKind::Index(ref lhs, ref rhs) => {
|
||||
let lefty = v.check_expr(lhs);
|
||||
let righty = v.check_expr(rhs);
|
||||
if v.tables.is_method_call(e) {
|
||||
return NotPromotable;
|
||||
}
|
||||
lefty & righty
|
||||
}
|
||||
|
||||
hir::ExprKind::Array(ref hirvec) => {
|
||||
let mut array_result = Promotable;
|
||||
for index in hirvec.iter() {
|
||||
array_result &= v.check_expr(index);
|
||||
}
|
||||
array_result
|
||||
}
|
||||
|
||||
hir::ExprKind::Tup(ref hirvec) => {
|
||||
let mut tup_result = Promotable;
|
||||
for index in hirvec.iter() {
|
||||
tup_result &= v.check_expr(index);
|
||||
}
|
||||
tup_result
|
||||
}
|
||||
|
||||
// Conditional control flow (possible to implement).
|
||||
hir::ExprKind::Match(ref expr, ref arms, ref _match_source) => {
|
||||
// Compute the most demanding borrow from all the arms'
|
||||
// patterns and set that on the discriminator.
|
||||
if arms.iter().fold(false, |_, arm| v.remove_mut_rvalue_borrow(&arm.pat)) {
|
||||
v.mut_rvalue_borrows.insert(expr.hir_id);
|
||||
}
|
||||
|
||||
let _ = v.check_expr(expr);
|
||||
for index in arms.iter() {
|
||||
let _ = v.check_expr(&*index.body);
|
||||
if let Some(hir::Guard::If(ref expr)) = index.guard {
|
||||
let _ = v.check_expr(&expr);
|
||||
}
|
||||
}
|
||||
NotPromotable
|
||||
}
|
||||
|
||||
hir::ExprKind::Loop(ref box_block, ref _option_label, ref _loop_source) => {
|
||||
let _ = v.check_block(box_block);
|
||||
NotPromotable
|
||||
}
|
||||
|
||||
// More control flow (also not very meaningful).
|
||||
hir::ExprKind::Break(_, ref option_expr) | hir::ExprKind::Ret(ref option_expr) => {
|
||||
if let Some(ref expr) = *option_expr {
|
||||
let _ = v.check_expr(&expr);
|
||||
}
|
||||
NotPromotable
|
||||
}
|
||||
|
||||
hir::ExprKind::Continue(_) => {
|
||||
NotPromotable
|
||||
}
|
||||
|
||||
// Generator expressions
|
||||
hir::ExprKind::Yield(ref expr, _) => {
|
||||
let _ = v.check_expr(&expr);
|
||||
NotPromotable
|
||||
}
|
||||
|
||||
// Expressions with side-effects.
|
||||
hir::ExprKind::AssignOp(_, ref lhs, ref rhs) | hir::ExprKind::Assign(ref lhs, ref rhs) => {
|
||||
let _ = v.check_expr(lhs);
|
||||
let _ = v.check_expr(rhs);
|
||||
NotPromotable
|
||||
}
|
||||
|
||||
hir::ExprKind::InlineAsm(ref _inline_asm, ref hirvec_lhs, ref hirvec_rhs) => {
|
||||
for index in hirvec_lhs.iter().chain(hirvec_rhs.iter()) {
|
||||
let _ = v.check_expr(index);
|
||||
}
|
||||
NotPromotable
|
||||
}
|
||||
};
|
||||
ty_result & kind_result
|
||||
}
|
||||
|
||||
/// Checks the adjustments of an expression.
|
||||
fn check_adjustments<'a, 'tcx>(
|
||||
v: &mut CheckCrateVisitor<'a, 'tcx>,
|
||||
e: &hir::Expr) -> Promotability {
|
||||
use rustc::ty::adjustment::*;
|
||||
|
||||
let mut adjustments = v.tables.expr_adjustments(e).iter().peekable();
|
||||
while let Some(adjustment) = adjustments.next() {
|
||||
match adjustment.kind {
|
||||
Adjust::NeverToAny |
|
||||
Adjust::Pointer(_) |
|
||||
Adjust::Borrow(_) => {}
|
||||
|
||||
Adjust::Deref(_) => {
|
||||
if let Some(next_adjustment) = adjustments.peek() {
|
||||
if let Adjust::Borrow(_) = next_adjustment.kind {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
return NotPromotable;
|
||||
}
|
||||
}
|
||||
}
|
||||
Promotable
|
||||
}
|
||||
|
||||
impl<'a, 'tcx> euv::Delegate<'tcx> for CheckCrateVisitor<'a, 'tcx> {
|
||||
fn consume(&mut self,
|
||||
_consume_id: hir::HirId,
|
||||
_consume_span: Span,
|
||||
_cmt: &mc::cmt_<'_>,
|
||||
_mode: euv::ConsumeMode) {}
|
||||
|
||||
fn borrow(&mut self,
|
||||
borrow_id: hir::HirId,
|
||||
_borrow_span: Span,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
_loan_region: ty::Region<'tcx>,
|
||||
bk: ty::BorrowKind,
|
||||
loan_cause: euv::LoanCause) {
|
||||
debug!(
|
||||
"borrow(borrow_id={:?}, cmt={:?}, bk={:?}, loan_cause={:?})",
|
||||
borrow_id,
|
||||
cmt,
|
||||
bk,
|
||||
loan_cause,
|
||||
);
|
||||
|
||||
// Kind of hacky, but we allow Unsafe coercions in constants.
|
||||
// These occur when we convert a &T or *T to a *U, as well as
|
||||
// when making a thin pointer (e.g., `*T`) into a fat pointer
|
||||
// (e.g., `*Trait`).
|
||||
if let euv::LoanCause::AutoUnsafe = loan_cause {
|
||||
return;
|
||||
}
|
||||
|
||||
let mut cur = cmt;
|
||||
loop {
|
||||
match cur.cat {
|
||||
Categorization::ThreadLocal(..) |
|
||||
Categorization::Rvalue(..) => {
|
||||
if loan_cause == euv::MatchDiscriminant {
|
||||
// Ignore the dummy immutable borrow created by EUV.
|
||||
break;
|
||||
}
|
||||
if bk.to_mutbl_lossy() == hir::MutMutable {
|
||||
self.mut_rvalue_borrows.insert(borrow_id);
|
||||
}
|
||||
break;
|
||||
}
|
||||
Categorization::StaticItem => {
|
||||
break;
|
||||
}
|
||||
Categorization::Deref(ref cmt, _) |
|
||||
Categorization::Downcast(ref cmt, _) |
|
||||
Categorization::Interior(ref cmt, _) => {
|
||||
cur = cmt;
|
||||
}
|
||||
|
||||
Categorization::Upvar(..) |
|
||||
Categorization::Local(..) => break,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn decl_without_init(&mut self, _id: hir::HirId, _span: Span) {}
|
||||
fn mutate(&mut self,
|
||||
_assignment_id: hir::HirId,
|
||||
_assignment_span: Span,
|
||||
_assignee_cmt: &mc::cmt_<'_>,
|
||||
_mode: euv::MutateMode) {
|
||||
}
|
||||
|
||||
fn matched_pat(&mut self, _: &hir::Pat, _: &mc::cmt_<'_>, _: euv::MatchMode) {}
|
||||
|
||||
fn consume_pat(&mut self,
|
||||
_consume_pat: &hir::Pat,
|
||||
_cmt: &mc::cmt_<'_>,
|
||||
_mode: euv::ConsumeMode) {}
|
||||
}
|
|
@ -266,7 +266,10 @@ crate fn assemble_builtin_copy_clone_impls<'tcx>(
|
|||
let closure_ty = generic_types::closure(tcx, def_id);
|
||||
let upvar_tys: Vec<_> = match &closure_ty.kind {
|
||||
ty::Closure(_, substs) => {
|
||||
substs.upvar_tys(def_id, tcx).map(|ty| GenericArg::from(ty)).collect()
|
||||
substs.as_closure()
|
||||
.upvar_tys(def_id, tcx)
|
||||
.map(|ty| GenericArg::from(ty))
|
||||
.collect()
|
||||
},
|
||||
_ => bug!(),
|
||||
};
|
||||
|
|
|
@ -193,7 +193,7 @@ fn dtorck_constraint_for_ty<'tcx>(
|
|||
.map(|ty| dtorck_constraint_for_ty(tcx, span, for_ty, depth + 1, ty.expect_ty()))
|
||||
.collect(),
|
||||
|
||||
ty::Closure(def_id, substs) => substs
|
||||
ty::Closure(def_id, substs) => substs.as_closure()
|
||||
.upvar_tys(def_id, tcx)
|
||||
.map(|ty| dtorck_constraint_for_ty(tcx, span, for_ty, depth + 1, ty))
|
||||
.collect(),
|
||||
|
|
|
@ -69,9 +69,7 @@ crate fn fn_def(tcx: TyCtxt<'tcx>, def_id: DefId) -> Ty<'tcx> {
|
|||
}
|
||||
|
||||
crate fn closure(tcx: TyCtxt<'tcx>, def_id: DefId) -> Ty<'tcx> {
|
||||
tcx.mk_closure(def_id, ty::ClosureSubsts {
|
||||
substs: InternalSubsts::bound_vars_for_item(tcx, def_id),
|
||||
})
|
||||
tcx.mk_closure(def_id, InternalSubsts::bound_vars_for_item(tcx, def_id))
|
||||
}
|
||||
|
||||
crate fn generator(tcx: TyCtxt<'tcx>, def_id: DefId) -> Ty<'tcx> {
|
||||
|
|
|
@ -7,6 +7,7 @@ use hir::def::Res;
|
|||
use hir::def_id::{DefId, LOCAL_CRATE};
|
||||
use rustc::ty::adjustment::{Adjust, Adjustment, AllowTwoPhase, AutoBorrow, AutoBorrowMutability};
|
||||
use rustc::ty::{self, Ty, TyCtxt, TypeFoldable};
|
||||
use rustc::ty::subst::SubstsRef;
|
||||
use rustc::{infer, traits};
|
||||
use rustc::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
|
||||
use rustc_target::spec::abi;
|
||||
|
@ -480,7 +481,7 @@ pub struct DeferredCallResolution<'tcx> {
|
|||
adjustments: Vec<Adjustment<'tcx>>,
|
||||
fn_sig: ty::FnSig<'tcx>,
|
||||
closure_def_id: DefId,
|
||||
closure_substs: ty::ClosureSubsts<'tcx>,
|
||||
closure_substs: SubstsRef<'tcx>,
|
||||
}
|
||||
|
||||
impl<'a, 'tcx> DeferredCallResolution<'tcx> {
|
||||
|
|
|
@ -132,7 +132,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
return self.tcx.mk_generator(expr_def_id, substs, movability);
|
||||
}
|
||||
|
||||
let substs = ty::ClosureSubsts { substs };
|
||||
let closure_type = self.tcx.mk_closure(expr_def_id, substs);
|
||||
|
||||
debug!(
|
||||
|
@ -161,14 +160,14 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
self.demand_eqtype(
|
||||
expr.span,
|
||||
sig_fn_ptr_ty,
|
||||
substs.closure_sig_ty(expr_def_id, self.tcx),
|
||||
substs.as_closure().sig_ty(expr_def_id, self.tcx),
|
||||
);
|
||||
|
||||
if let Some(kind) = opt_kind {
|
||||
self.demand_eqtype(
|
||||
expr.span,
|
||||
kind.to_ty(self.tcx),
|
||||
substs.closure_kind_ty(expr_def_id, self.tcx),
|
||||
substs.as_closure().kind_ty(expr_def_id, self.tcx),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ use rustc::traits::{self, ObligationCause, ObligationCauseCode};
|
|||
use rustc::ty::adjustment::{
|
||||
Adjustment, Adjust, AllowTwoPhase, AutoBorrow, AutoBorrowMutability, PointerCast
|
||||
};
|
||||
use rustc::ty::{self, TypeAndMut, Ty, ClosureSubsts};
|
||||
use rustc::ty::{self, TypeAndMut, Ty, subst::SubstsRef};
|
||||
use rustc::ty::fold::TypeFoldable;
|
||||
use rustc::ty::error::TypeError;
|
||||
use rustc::ty::relate::RelateResult;
|
||||
|
@ -727,7 +727,7 @@ impl<'f, 'tcx> Coerce<'f, 'tcx> {
|
|||
fn coerce_closure_to_fn(&self,
|
||||
a: Ty<'tcx>,
|
||||
def_id_a: DefId,
|
||||
substs_a: ClosureSubsts<'tcx>,
|
||||
substs_a: SubstsRef<'tcx>,
|
||||
b: Ty<'tcx>)
|
||||
-> CoerceResult<'tcx> {
|
||||
//! Attempts to coerce from the type of a non-capturing closure
|
||||
|
|
|
@ -3,10 +3,10 @@ use crate::check::regionck::RegionCtxt;
|
|||
use crate::hir;
|
||||
use crate::hir::def_id::DefId;
|
||||
use rustc::infer::outlives::env::OutlivesEnvironment;
|
||||
use rustc::infer::{self, InferOk, SuppressRegionErrors};
|
||||
use rustc::infer::{InferOk, SuppressRegionErrors};
|
||||
use rustc::middle::region;
|
||||
use rustc::traits::{ObligationCause, TraitEngine, TraitEngineExt};
|
||||
use rustc::ty::subst::{Subst, SubstsRef, GenericArgKind};
|
||||
use rustc::ty::subst::{Subst, SubstsRef};
|
||||
use rustc::ty::{self, Ty, TyCtxt};
|
||||
use crate::util::common::ErrorReported;
|
||||
|
||||
|
@ -233,87 +233,21 @@ fn ensure_drop_predicates_are_implied_by_item_defn<'tcx>(
|
|||
result
|
||||
}
|
||||
|
||||
/// This function confirms that the type
|
||||
/// expression `typ` conforms to the "Drop Check Rule" from the Sound
|
||||
/// Generic Drop RFC (#769).
|
||||
///
|
||||
/// ----
|
||||
///
|
||||
/// The simplified (*) Drop Check Rule is the following:
|
||||
///
|
||||
/// Let `v` be some value (either temporary or named) and 'a be some
|
||||
/// lifetime (scope). If the type of `v` owns data of type `D`, where
|
||||
///
|
||||
/// * (1.) `D` has a lifetime- or type-parametric Drop implementation,
|
||||
/// (where that `Drop` implementation does not opt-out of
|
||||
/// this check via the `may_dangle`
|
||||
/// attribute), and
|
||||
/// * (2.) the structure of `D` can reach a reference of type `&'a _`,
|
||||
///
|
||||
/// then 'a must strictly outlive the scope of v.
|
||||
///
|
||||
/// ----
|
||||
///
|
||||
/// This function is meant to by applied to the type for every
|
||||
/// expression in the program.
|
||||
///
|
||||
/// ----
|
||||
///
|
||||
/// (*) The qualifier "simplified" is attached to the above
|
||||
/// definition of the Drop Check Rule, because it is a simplification
|
||||
/// of the original Drop Check rule, which attempted to prove that
|
||||
/// some `Drop` implementations could not possibly access data even if
|
||||
/// it was technically reachable, due to parametricity.
|
||||
///
|
||||
/// However, (1.) parametricity on its own turned out to be a
|
||||
/// necessary but insufficient condition, and (2.) future changes to
|
||||
/// the language are expected to make it impossible to ensure that a
|
||||
/// `Drop` implementation is actually parametric with respect to any
|
||||
/// particular type parameter. (In particular, impl specialization is
|
||||
/// expected to break the needed parametricity property beyond
|
||||
/// repair.)
|
||||
///
|
||||
/// Therefore, we have scaled back Drop-Check to a more conservative
|
||||
/// rule that does not attempt to deduce whether a `Drop`
|
||||
/// implementation could not possible access data of a given lifetime;
|
||||
/// instead Drop-Check now simply assumes that if a destructor has
|
||||
/// access (direct or indirect) to a lifetime parameter, then that
|
||||
/// lifetime must be forced to outlive that destructor's dynamic
|
||||
/// extent. We then provide the `may_dangle`
|
||||
/// attribute as a way for destructor implementations to opt-out of
|
||||
/// this conservative assumption (and thus assume the obligation of
|
||||
/// ensuring that they do not access data nor invoke methods of
|
||||
/// values that have been previously dropped).
|
||||
pub fn check_safety_of_destructor_if_necessary<'a, 'tcx>(
|
||||
/// This function is not only checking that the dropck obligations are met for
|
||||
/// the given type, but it's also currently preventing non-regular recursion in
|
||||
/// types from causing stack overflows (dropck_no_diverge_on_nonregular_*.rs).
|
||||
crate fn check_drop_obligations<'a, 'tcx>(
|
||||
rcx: &mut RegionCtxt<'a, 'tcx>,
|
||||
ty: Ty<'tcx>,
|
||||
span: Span,
|
||||
body_id: hir::HirId,
|
||||
scope: region::Scope,
|
||||
) -> Result<(), ErrorReported> {
|
||||
debug!("check_safety_of_destructor_if_necessary typ: {:?} scope: {:?}",
|
||||
ty, scope);
|
||||
debug!("check_drop_obligations typ: {:?}", ty);
|
||||
|
||||
let parent_scope = match rcx.region_scope_tree.opt_encl_scope(scope) {
|
||||
Some(parent_scope) => parent_scope,
|
||||
// If no enclosing scope, then it must be the root scope
|
||||
// which cannot be outlived.
|
||||
None => return Ok(()),
|
||||
};
|
||||
let parent_scope = rcx.tcx.mk_region(ty::ReScope(parent_scope));
|
||||
let origin = || infer::SubregionOrigin::SafeDestructor(span);
|
||||
let cause = &ObligationCause::misc(span, body_id);
|
||||
let infer_ok = rcx.infcx.at(cause, rcx.fcx.param_env).dropck_outlives(ty);
|
||||
debug!("dropck_outlives = {:#?}", infer_ok);
|
||||
let kinds = rcx.fcx.register_infer_ok_obligations(infer_ok);
|
||||
for kind in kinds {
|
||||
match kind.unpack() {
|
||||
GenericArgKind::Lifetime(r) => rcx.sub_regions(origin(), parent_scope, r),
|
||||
GenericArgKind::Type(ty) => rcx.type_must_outlive(origin(), ty, parent_scope),
|
||||
GenericArgKind::Const(_) => {
|
||||
// Generic consts don't add constraints.
|
||||
}
|
||||
}
|
||||
}
|
||||
rcx.fcx.register_infer_ok_obligations(infer_ok);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
@ -4217,7 +4217,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
ty::Closure(def_id, substs) => {
|
||||
// We don't use `closure_sig` to account for malformed closures like
|
||||
// `|_: [_; continue]| {}` and instead we don't suggest anything.
|
||||
let closure_sig_ty = substs.closure_sig_ty(def_id, self.tcx);
|
||||
let closure_sig_ty = substs.as_closure().sig_ty(def_id, self.tcx);
|
||||
(def_id, match closure_sig_ty.kind {
|
||||
ty::FnPtr(sig) => sig,
|
||||
_ => return false,
|
||||
|
|
|
@ -347,13 +347,7 @@ impl<'a, 'tcx> RegionCtxt<'a, 'tcx> {
|
|||
);
|
||||
self.outlives_environment
|
||||
.save_implied_bounds(body_id.hir_id);
|
||||
self.link_fn_params(
|
||||
region::Scope {
|
||||
id: body.value.hir_id.local_id,
|
||||
data: region::ScopeData::Node,
|
||||
},
|
||||
&body.params,
|
||||
);
|
||||
self.link_fn_params(&body.params);
|
||||
self.visit_body(body);
|
||||
self.visit_region_obligations(body_id.hir_id);
|
||||
|
||||
|
@ -430,8 +424,8 @@ impl<'a, 'tcx> RegionCtxt<'a, 'tcx> {
|
|||
|
||||
let typ = self.resolve_node_type(hir_id);
|
||||
let body_id = self.body_id;
|
||||
let _ = dropck::check_safety_of_destructor_if_necessary(
|
||||
self, typ, span, body_id, var_scope,
|
||||
let _ = dropck::check_drop_obligations(
|
||||
self, typ, span, body_id,
|
||||
);
|
||||
})
|
||||
}
|
||||
|
@ -928,29 +922,15 @@ impl<'a, 'tcx> RegionCtxt<'a, 'tcx> {
|
|||
}
|
||||
|
||||
fn check_safety_of_rvalue_destructor_if_necessary(&mut self, cmt: &mc::cmt_<'tcx>, span: Span) {
|
||||
if let Categorization::Rvalue(region) = cmt.cat {
|
||||
match *region {
|
||||
ty::ReScope(rvalue_scope) => {
|
||||
let typ = self.resolve_type(cmt.ty);
|
||||
let body_id = self.body_id;
|
||||
let _ = dropck::check_safety_of_destructor_if_necessary(
|
||||
self,
|
||||
typ,
|
||||
span,
|
||||
body_id,
|
||||
rvalue_scope,
|
||||
);
|
||||
}
|
||||
ty::ReStatic => {}
|
||||
_ => {
|
||||
span_bug!(
|
||||
span,
|
||||
"unexpected rvalue region in rvalue \
|
||||
destructor safety checking: `{:?}`",
|
||||
region
|
||||
);
|
||||
}
|
||||
}
|
||||
if let Categorization::Rvalue = cmt.cat {
|
||||
let typ = self.resolve_type(cmt.ty);
|
||||
let body_id = self.body_id;
|
||||
let _ = dropck::check_drop_obligations(
|
||||
self,
|
||||
typ,
|
||||
span,
|
||||
body_id,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1074,13 +1054,11 @@ impl<'a, 'tcx> RegionCtxt<'a, 'tcx> {
|
|||
/// Computes the guarantors for any ref bindings in a match and
|
||||
/// then ensures that the lifetime of the resulting pointer is
|
||||
/// linked to the lifetime of its guarantor (if any).
|
||||
fn link_fn_params(&self, body_scope: region::Scope, params: &[hir::Param]) {
|
||||
debug!("regionck::link_fn_params(body_scope={:?})", body_scope);
|
||||
fn link_fn_params(&self, params: &[hir::Param]) {
|
||||
for param in params {
|
||||
let param_ty = self.node_ty(param.hir_id);
|
||||
let re_scope = self.tcx.mk_region(ty::ReScope(body_scope));
|
||||
let param_cmt = self.with_mc(|mc| {
|
||||
Rc::new(mc.cat_rvalue(param.hir_id, param.pat.span, re_scope, param_ty))
|
||||
Rc::new(mc.cat_rvalue(param.hir_id, param.pat.span, param_ty))
|
||||
});
|
||||
debug!("param_ty={:?} param_cmt={:?} param={:?}", param_ty, param_cmt, param);
|
||||
self.link_pattern(param_cmt, ¶m.pat);
|
||||
|
@ -1222,8 +1200,8 @@ impl<'a, 'tcx> RegionCtxt<'a, 'tcx> {
|
|||
| Categorization::StaticItem
|
||||
| Categorization::Upvar(..)
|
||||
| Categorization::Local(..)
|
||||
| Categorization::ThreadLocal(..)
|
||||
| Categorization::Rvalue(..) => {
|
||||
| Categorization::ThreadLocal
|
||||
| Categorization::Rvalue => {
|
||||
// These are all "base cases" with independent lifetimes
|
||||
// that are not subject to inference
|
||||
return;
|
||||
|
|
|
@ -96,7 +96,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
// Extract the type of the closure.
|
||||
let ty = self.node_ty(closure_hir_id);
|
||||
let (closure_def_id, substs) = match ty.kind {
|
||||
ty::Closure(def_id, substs) => (def_id, UpvarSubsts::Closure(substs)),
|
||||
ty::Closure(def_id, substs) => (
|
||||
def_id,
|
||||
UpvarSubsts::Closure(substs)
|
||||
),
|
||||
ty::Generator(def_id, substs, _) => (def_id, UpvarSubsts::Generator(substs)),
|
||||
ty::Error => {
|
||||
// #51714: skip analysis when we have already encountered type errors
|
||||
|
@ -190,7 +193,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
// Unify the (as yet unbound) type variable in the closure
|
||||
// substs with the kind we inferred.
|
||||
let inferred_kind = delegate.current_closure_kind;
|
||||
let closure_kind_ty = closure_substs.closure_kind_ty(closure_def_id, self.tcx);
|
||||
let closure_kind_ty = closure_substs
|
||||
.as_closure().kind_ty(closure_def_id, self.tcx);
|
||||
self.demand_eqtype(span, inferred_kind.to_ty(self.tcx), closure_kind_ty);
|
||||
|
||||
// If we have an origin, store it.
|
||||
|
@ -321,7 +325,7 @@ impl<'a, 'tcx> InferBorrowKind<'a, 'tcx> {
|
|||
euv::Copy => {
|
||||
return;
|
||||
}
|
||||
euv::Move(_) => {}
|
||||
euv::Move => {}
|
||||
}
|
||||
|
||||
let tcx = self.fcx.tcx;
|
||||
|
@ -408,8 +412,8 @@ impl<'a, 'tcx> InferBorrowKind<'a, 'tcx> {
|
|||
|
||||
Categorization::Deref(_, mc::UnsafePtr(..))
|
||||
| Categorization::StaticItem
|
||||
| Categorization::ThreadLocal(..)
|
||||
| Categorization::Rvalue(..)
|
||||
| Categorization::ThreadLocal
|
||||
| Categorization::Rvalue
|
||||
| Categorization::Local(_)
|
||||
| Categorization::Upvar(..) => {
|
||||
return;
|
||||
|
@ -439,8 +443,8 @@ impl<'a, 'tcx> InferBorrowKind<'a, 'tcx> {
|
|||
|
||||
Categorization::Deref(_, mc::UnsafePtr(..))
|
||||
| Categorization::StaticItem
|
||||
| Categorization::ThreadLocal(..)
|
||||
| Categorization::Rvalue(..)
|
||||
| Categorization::ThreadLocal
|
||||
| Categorization::Rvalue
|
||||
| Categorization::Local(_)
|
||||
| Categorization::Upvar(..) => {}
|
||||
}
|
||||
|
@ -582,48 +586,13 @@ impl<'a, 'tcx> InferBorrowKind<'a, 'tcx> {
|
|||
}
|
||||
|
||||
impl<'a, 'tcx> euv::Delegate<'tcx> for InferBorrowKind<'a, 'tcx> {
|
||||
fn consume(
|
||||
&mut self,
|
||||
_consume_id: hir::HirId,
|
||||
_consume_span: Span,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
mode: euv::ConsumeMode,
|
||||
) {
|
||||
fn consume(&mut self, cmt: &mc::cmt_<'tcx>,mode: euv::ConsumeMode) {
|
||||
debug!("consume(cmt={:?},mode={:?})", cmt, mode);
|
||||
self.adjust_upvar_borrow_kind_for_consume(cmt, mode);
|
||||
}
|
||||
|
||||
fn matched_pat(
|
||||
&mut self,
|
||||
_matched_pat: &hir::Pat,
|
||||
_cmt: &mc::cmt_<'tcx>,
|
||||
_mode: euv::MatchMode,
|
||||
) {
|
||||
}
|
||||
|
||||
fn consume_pat(
|
||||
&mut self,
|
||||
_consume_pat: &hir::Pat,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
mode: euv::ConsumeMode,
|
||||
) {
|
||||
debug!("consume_pat(cmt={:?},mode={:?})", cmt, mode);
|
||||
self.adjust_upvar_borrow_kind_for_consume(cmt, mode);
|
||||
}
|
||||
|
||||
fn borrow(
|
||||
&mut self,
|
||||
borrow_id: hir::HirId,
|
||||
_borrow_span: Span,
|
||||
cmt: &mc::cmt_<'tcx>,
|
||||
_loan_region: ty::Region<'tcx>,
|
||||
bk: ty::BorrowKind,
|
||||
_loan_cause: euv::LoanCause,
|
||||
) {
|
||||
debug!(
|
||||
"borrow(borrow_id={}, cmt={:?}, bk={:?})",
|
||||
borrow_id, cmt, bk
|
||||
);
|
||||
fn borrow(&mut self, cmt: &mc::cmt_<'tcx>, bk: ty::BorrowKind) {
|
||||
debug!("borrow(cmt={:?}, bk={:?})", cmt, bk);
|
||||
|
||||
match bk {
|
||||
ty::ImmBorrow => {}
|
||||
|
@ -636,15 +605,7 @@ impl<'a, 'tcx> euv::Delegate<'tcx> for InferBorrowKind<'a, 'tcx> {
|
|||
}
|
||||
}
|
||||
|
||||
fn decl_without_init(&mut self, _id: hir::HirId, _span: Span) {}
|
||||
|
||||
fn mutate(
|
||||
&mut self,
|
||||
_assignment_id: hir::HirId,
|
||||
_assignment_span: Span,
|
||||
assignee_cmt: &mc::cmt_<'tcx>,
|
||||
_mode: euv::MutateMode,
|
||||
) {
|
||||
fn mutate(&mut self, assignee_cmt: &mc::cmt_<'tcx>) {
|
||||
debug!("mutate(assignee_cmt={:?})", assignee_cmt);
|
||||
|
||||
self.adjust_upvar_borrow_kind_for_mut(assignee_cmt);
|
||||
|
|
|
@ -1362,10 +1362,7 @@ pub fn checked_type_of(tcx: TyCtxt<'_>, def_id: DefId, fail: bool) -> Option<Ty<
|
|||
return Some(tcx.typeck_tables_of(def_id).node_type(hir_id));
|
||||
}
|
||||
|
||||
let substs = ty::ClosureSubsts {
|
||||
substs: InternalSubsts::identity_for_item(tcx, def_id),
|
||||
};
|
||||
|
||||
let substs = InternalSubsts::identity_for_item(tcx, def_id);
|
||||
tcx.mk_closure(def_id, substs)
|
||||
}
|
||||
|
||||
|
@ -1858,7 +1855,7 @@ fn fn_sig(tcx: TyCtxt<'_>, def_id: DefId) -> ty::PolyFnSig<'_> {
|
|||
// the signature of a closure, you should use the
|
||||
// `closure_sig` method on the `ClosureSubsts`:
|
||||
//
|
||||
// closure_substs.closure_sig(def_id, tcx)
|
||||
// closure_substs.sig(def_id, tcx)
|
||||
//
|
||||
// or, inside of an inference context, you can use
|
||||
//
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
error[E0597]: `x` does not live long enough
|
||||
--> $DIR/async-borrowck-escaping-closure-error.rs:5:24
|
||||
|
|
||||
LL | Box::new((async || x)())
|
||||
| -------------------^----
|
||||
| | | |
|
||||
| | | borrowed value does not live long enough
|
||||
| | value captured here
|
||||
| borrow later used here
|
||||
LL |
|
||||
LL | }
|
||||
| - `x` dropped here while still borrowed
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0597`.
|
|
@ -1,16 +0,0 @@
|
|||
error[E0597]: `books` does not live long enough
|
||||
--> $DIR/borrowck-escaping-closure-error-2.rs:11:17
|
||||
|
|
||||
LL | Box::new(|| books.push(4))
|
||||
| ------------^^^^^---------
|
||||
| | | |
|
||||
| | | borrowed value does not live long enough
|
||||
| | value captured here
|
||||
| borrow later used here
|
||||
LL |
|
||||
LL | }
|
||||
| - `books` dropped here while still borrowed
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0597`.
|
|
@ -1,59 +0,0 @@
|
|||
error[E0716]: temporary value dropped while borrowed
|
||||
--> $DIR/promote-ref-mut-in-let-issue-46557.rs:5:21
|
||||
|
|
||||
LL | let ref mut x = 1234543;
|
||||
| ^^^^^^^ creates a temporary which is freed while still in use
|
||||
LL | x
|
||||
| - borrow later used here
|
||||
LL | }
|
||||
| - temporary value is freed at the end of this statement
|
||||
|
|
||||
= note: consider using a `let` binding to create a longer lived value
|
||||
|
||||
error[E0716]: temporary value dropped while borrowed
|
||||
--> $DIR/promote-ref-mut-in-let-issue-46557.rs:10:25
|
||||
|
|
||||
LL | let (ref mut x, ) = (1234543, );
|
||||
| ^^^^^^^^^^^ creates a temporary which is freed while still in use
|
||||
LL | x
|
||||
| - borrow later used here
|
||||
LL | }
|
||||
| - temporary value is freed at the end of this statement
|
||||
|
|
||||
= note: consider using a `let` binding to create a longer lived value
|
||||
|
||||
error[E0515]: cannot return value referencing temporary value
|
||||
--> $DIR/promote-ref-mut-in-let-issue-46557.rs:15:5
|
||||
|
|
||||
LL | match 1234543 {
|
||||
| ^ ------- temporary value created here
|
||||
| _____|
|
||||
| |
|
||||
LL | | ref mut x => x
|
||||
LL | | }
|
||||
| |_____^ returns a value referencing data owned by the current function
|
||||
|
||||
error[E0515]: cannot return value referencing temporary value
|
||||
--> $DIR/promote-ref-mut-in-let-issue-46557.rs:21:5
|
||||
|
|
||||
LL | match (123443,) {
|
||||
| ^ --------- temporary value created here
|
||||
| _____|
|
||||
| |
|
||||
LL | | (ref mut x,) => x,
|
||||
LL | | }
|
||||
| |_____^ returns a value referencing data owned by the current function
|
||||
|
||||
error[E0515]: cannot return reference to temporary value
|
||||
--> $DIR/promote-ref-mut-in-let-issue-46557.rs:27:5
|
||||
|
|
||||
LL | &mut 1234543
|
||||
| ^^^^^-------
|
||||
| | |
|
||||
| | temporary value created here
|
||||
| returns a reference to data owned by the current function
|
||||
|
||||
error: aborting due to 5 previous errors
|
||||
|
||||
Some errors have detailed explanations: E0515, E0716.
|
||||
For more information about an error, try `rustc --explain E0515`.
|
|
@ -1,16 +0,0 @@
|
|||
error[E0716]: temporary value dropped while borrowed
|
||||
--> $DIR/return-local-binding-from-desugaring.rs:26:18
|
||||
|
|
||||
LL | for ref x in xs {
|
||||
| ^^ creates a temporary which is freed while still in use
|
||||
...
|
||||
LL | }
|
||||
| - temporary value is freed at the end of this statement
|
||||
LL | result
|
||||
| ------ borrow later used here
|
||||
|
|
||||
= note: consider using a `let` binding to create a longer lived value
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0716`.
|
|
@ -1,148 +0,0 @@
|
|||
error[E0503]: cannot use `self.cx` because it was mutably borrowed
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:21:23
|
||||
|
|
||||
LL | let _mut_borrow = &mut *self;
|
||||
| ---------- borrow of `*self` occurs here
|
||||
LL | let _access = self.cx;
|
||||
| ^^^^^^^ use of borrowed `*self`
|
||||
LL |
|
||||
LL | _mut_borrow;
|
||||
| ----------- borrow later used here
|
||||
|
||||
error[E0502]: cannot borrow `*self` as mutable because it is also borrowed as immutable
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:57:17
|
||||
|
|
||||
LL | self.hash_expr(&self.cx_mut.body(eid).value);
|
||||
| ^^^^^---------^^-----------^^^^^^^^^^^^^^^^^
|
||||
| | | |
|
||||
| | | immutable borrow occurs here
|
||||
| | immutable borrow later used by call
|
||||
| mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `reg.sess_mut` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:119:51
|
||||
|
|
||||
LL | reg.register_static(Box::new(TrivialPass::new(&mut reg.sess_mut)));
|
||||
| --- --------------- ^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
|
||||
| | |
|
||||
| | first borrow later used by call
|
||||
| first mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `reg.sess_mut` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:122:54
|
||||
|
|
||||
LL | reg.register_bound(Box::new(TrivialPass::new_mut(&mut reg.sess_mut)));
|
||||
| --- -------------- ^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
|
||||
| | |
|
||||
| | first borrow later used by call
|
||||
| first mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `reg.sess_mut` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:125:53
|
||||
|
|
||||
LL | reg.register_univ(Box::new(TrivialPass::new_mut(&mut reg.sess_mut)));
|
||||
| --- ------------- ^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
|
||||
| | |
|
||||
| | first borrow later used by call
|
||||
| first mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `reg.sess_mut` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:128:44
|
||||
|
|
||||
LL | reg.register_ref(&TrivialPass::new_mut(&mut reg.sess_mut));
|
||||
| --- ------------ ^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
|
||||
| | |
|
||||
| | first borrow later used by call
|
||||
| first mutable borrow occurs here
|
||||
|
||||
error[E0502]: cannot borrow `*reg` as mutable because it is also borrowed as immutable
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:138:5
|
||||
|
|
||||
LL | reg.register_bound(Box::new(CapturePass::new(®.sess_mut)));
|
||||
| ^^^^--------------^^^^^^^^^^^^^^^^^^^^^^^^^^^-------------^^^
|
||||
| | | |
|
||||
| | | immutable borrow occurs here
|
||||
| | immutable borrow later used by call
|
||||
| mutable borrow occurs here
|
||||
|
||||
error[E0502]: cannot borrow `*reg` as mutable because it is also borrowed as immutable
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:141:5
|
||||
|
|
||||
LL | reg.register_univ(Box::new(CapturePass::new(®.sess_mut)));
|
||||
| ^^^^-------------^^^^^^^^^^^^^^^^^^^^^^^^^^^-------------^^^
|
||||
| | | |
|
||||
| | | immutable borrow occurs here
|
||||
| | immutable borrow later used by call
|
||||
| mutable borrow occurs here
|
||||
|
||||
error[E0502]: cannot borrow `*reg` as mutable because it is also borrowed as immutable
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:144:5
|
||||
|
|
||||
LL | reg.register_ref(&CapturePass::new(®.sess_mut));
|
||||
| ^^^^------------^^^^^^^^^^^^^^^^^^^-------------^^
|
||||
| | | |
|
||||
| | | immutable borrow occurs here
|
||||
| | immutable borrow later used by call
|
||||
| mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `*reg` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:154:5
|
||||
|
|
||||
LL | reg.register_bound(Box::new(CapturePass::new_mut(&mut reg.sess_mut)));
|
||||
| ^^^^--------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-----------------^^^
|
||||
| | | |
|
||||
| | | first mutable borrow occurs here
|
||||
| | first borrow later used by call
|
||||
| second mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `reg.sess_mut` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:154:54
|
||||
|
|
||||
LL | reg.register_bound(Box::new(CapturePass::new_mut(&mut reg.sess_mut)));
|
||||
| --- -------------- ^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
|
||||
| | |
|
||||
| | first borrow later used by call
|
||||
| first mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `*reg` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:158:5
|
||||
|
|
||||
LL | reg.register_univ(Box::new(CapturePass::new_mut(&mut reg.sess_mut)));
|
||||
| ^^^^-------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-----------------^^^
|
||||
| | | |
|
||||
| | | first mutable borrow occurs here
|
||||
| | first borrow later used by call
|
||||
| second mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `reg.sess_mut` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:158:53
|
||||
|
|
||||
LL | reg.register_univ(Box::new(CapturePass::new_mut(&mut reg.sess_mut)));
|
||||
| --- ------------- ^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
|
||||
| | |
|
||||
| | first borrow later used by call
|
||||
| first mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `*reg` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:162:5
|
||||
|
|
||||
LL | reg.register_ref(&CapturePass::new_mut(&mut reg.sess_mut));
|
||||
| ^^^^------------^^^^^^^^^^^^^^^^^^^^^^^-----------------^^
|
||||
| | | |
|
||||
| | | first mutable borrow occurs here
|
||||
| | first borrow later used by call
|
||||
| second mutable borrow occurs here
|
||||
|
||||
error[E0499]: cannot borrow `reg.sess_mut` as mutable more than once at a time
|
||||
--> $DIR/two-phase-surprise-no-conflict.rs:162:44
|
||||
|
|
||||
LL | reg.register_ref(&CapturePass::new_mut(&mut reg.sess_mut));
|
||||
| --- ------------ ^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
|
||||
| | |
|
||||
| | first borrow later used by call
|
||||
| first mutable borrow occurs here
|
||||
|
||||
error: aborting due to 15 previous errors
|
||||
|
||||
Some errors have detailed explanations: E0499, E0502, E0503.
|
||||
For more information about an error, try `rustc --explain E0499`.
|
|
@ -1,29 +0,0 @@
|
|||
error[E0597]: `y` does not live long enough
|
||||
--> $DIR/promote_const_let.rs:4:9
|
||||
|
|
||||
LL | let x: &'static u32 = {
|
||||
| - borrow later stored here
|
||||
LL | let y = 42;
|
||||
LL | &y
|
||||
| ^^ borrowed value does not live long enough
|
||||
LL | };
|
||||
| - `y` dropped here while still borrowed
|
||||
|
||||
error[E0716]: temporary value dropped while borrowed
|
||||
--> $DIR/promote_const_let.rs:6:28
|
||||
|
|
||||
LL | let x: &'static u32 = &{
|
||||
| ____________------------____^
|
||||
| | |
|
||||
| | type annotation requires that borrow lasts for `'static`
|
||||
LL | | let y = 42;
|
||||
LL | | y
|
||||
LL | | };
|
||||
| |_____^ creates a temporary which is freed while still in use
|
||||
LL | }
|
||||
| - temporary value is freed at the end of this statement
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
Some errors have detailed explanations: E0597, E0716.
|
||||
For more information about an error, try `rustc --explain E0597`.
|
|
@ -1,78 +0,0 @@
|
|||
error[E0597]: `o2` does not live long enough
|
||||
--> $DIR/dropck_trait_cycle_checked.rs:111:13
|
||||
|
|
||||
LL | o1.set0(&o2);
|
||||
| ^^^ borrowed value does not live long enough
|
||||
...
|
||||
LL | }
|
||||
| -
|
||||
| |
|
||||
| `o2` dropped here while still borrowed
|
||||
| borrow might be used here, when `o1` is dropped and runs the destructor for type `std::boxed::Box<dyn Obj<'_>>`
|
||||
|
|
||||
= note: values in a scope are dropped in the opposite order they are defined
|
||||
|
||||
error[E0597]: `o3` does not live long enough
|
||||
--> $DIR/dropck_trait_cycle_checked.rs:112:13
|
||||
|
|
||||
LL | o1.set1(&o3);
|
||||
| ^^^ borrowed value does not live long enough
|
||||
...
|
||||
LL | }
|
||||
| -
|
||||
| |
|
||||
| `o3` dropped here while still borrowed
|
||||
| borrow might be used here, when `o1` is dropped and runs the destructor for type `std::boxed::Box<dyn Obj<'_>>`
|
||||
|
|
||||
= note: values in a scope are dropped in the opposite order they are defined
|
||||
|
||||
error[E0597]: `o2` does not live long enough
|
||||
--> $DIR/dropck_trait_cycle_checked.rs:113:13
|
||||
|
|
||||
LL | let (o1, o2, o3): (Box<dyn Obj>, Box<dyn Obj>, Box<dyn Obj>) = (O::new(), O::new(), O::new());
|
||||
| -------- cast requires that `o2` is borrowed for `'static`
|
||||
...
|
||||
LL | o2.set0(&o2);
|
||||
| ^^^ borrowed value does not live long enough
|
||||
...
|
||||
LL | }
|
||||
| - `o2` dropped here while still borrowed
|
||||
|
||||
error[E0597]: `o3` does not live long enough
|
||||
--> $DIR/dropck_trait_cycle_checked.rs:114:13
|
||||
|
|
||||
LL | let (o1, o2, o3): (Box<dyn Obj>, Box<dyn Obj>, Box<dyn Obj>) = (O::new(), O::new(), O::new());
|
||||
| -------- cast requires that `o3` is borrowed for `'static`
|
||||
...
|
||||
LL | o2.set1(&o3);
|
||||
| ^^^ borrowed value does not live long enough
|
||||
...
|
||||
LL | }
|
||||
| - `o3` dropped here while still borrowed
|
||||
|
||||
error[E0597]: `o1` does not live long enough
|
||||
--> $DIR/dropck_trait_cycle_checked.rs:115:13
|
||||
|
|
||||
LL | o3.set0(&o1);
|
||||
| ^^^ borrowed value does not live long enough
|
||||
LL | o3.set1(&o2);
|
||||
LL | }
|
||||
| -
|
||||
| |
|
||||
| `o1` dropped here while still borrowed
|
||||
| borrow might be used here, when `o1` is dropped and runs the destructor for type `std::boxed::Box<dyn Obj<'_>>`
|
||||
|
||||
error[E0597]: `o2` does not live long enough
|
||||
--> $DIR/dropck_trait_cycle_checked.rs:116:13
|
||||
|
|
||||
LL | let (o1, o2, o3): (Box<dyn Obj>, Box<dyn Obj>, Box<dyn Obj>) = (O::new(), O::new(), O::new());
|
||||
| -------- cast requires that `o2` is borrowed for `'static`
|
||||
...
|
||||
LL | o3.set1(&o2);
|
||||
| ^^^ borrowed value does not live long enough
|
||||
LL | }
|
||||
| - `o2` dropped here while still borrowed
|
||||
|
||||
error: aborting due to 6 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0597`.
|
|
@ -1,20 +0,0 @@
|
|||
error[E0597]: `b` does not live long enough
|
||||
--> $DIR/ref-escapes-but-not-over-yield.rs:11:13
|
||||
|
|
||||
LL | let mut b = move || {
|
||||
| _________________-
|
||||
LL | | yield();
|
||||
LL | | let b = 5;
|
||||
LL | | a = &b;
|
||||
| | ^^ borrowed value does not live long enough
|
||||
LL | |
|
||||
LL | | };
|
||||
| | -
|
||||
| | |
|
||||
| | `b` dropped here while still borrowed
|
||||
| |_____... and the borrow might be used here, when that temporary is dropped and runs the destructor for generator
|
||||
| a temporary with access to the borrow is created here ...
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0597`.
|
8
src/test/ui/hrtb/due-to-where-clause.nll.stderr
Normal file
8
src/test/ui/hrtb/due-to-where-clause.nll.stderr
Normal file
|
@ -0,0 +1,8 @@
|
|||
error: higher-ranked subtype error
|
||||
--> $DIR/due-to-where-clause.rs:2:5
|
||||
|
|
||||
LL | test::<FooS>(&mut 42);
|
||||
| ^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: aborting due to previous error
|
||||
|
|
@ -1,6 +1,3 @@
|
|||
// ignore-compare-mode-nll
|
||||
// ^ This code works in nll mode.
|
||||
|
||||
fn main() {
|
||||
test::<FooS>(&mut 42); //~ ERROR implementation of `Foo` is not general enough
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
error: implementation of `Foo` is not general enough
|
||||
--> $DIR/due-to-where-clause.rs:5:5
|
||||
--> $DIR/due-to-where-clause.rs:2:5
|
||||
|
|
||||
LL | test::<FooS>(&mut 42);
|
||||
| ^^^^^^^^^^^^ implementation of `Foo` is not general enough
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
error[E0391]: cycle detected when processing `FOO`
|
||||
error[E0391]: cycle detected when const checking `FOO`
|
||||
--> $DIR/issue-17252.rs:1:20
|
||||
|
|
||||
LL | const FOO: usize = FOO;
|
||||
| ^^^
|
||||
|
|
||||
= note: ...which again requires processing `FOO`, completing the cycle
|
||||
note: cycle used when processing `main::{{constant}}#0`
|
||||
= note: ...which again requires const checking `FOO`, completing the cycle
|
||||
note: cycle used when const checking `main::{{constant}}#0`
|
||||
--> $DIR/issue-17252.rs:4:18
|
||||
|
|
||||
LL | let _x: [u8; FOO]; // caused stack overflow prior to fix
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
error[E0391]: cycle detected when processing `X::A::{{constant}}#0`
|
||||
error[E0391]: cycle detected when const checking `X::A::{{constant}}#0`
|
||||
--> $DIR/issue-23302-1.rs:4:9
|
||||
|
|
||||
LL | A = X::A as isize,
|
||||
| ^^^^^^^^^^^^^
|
||||
|
|
||||
= note: ...which again requires processing `X::A::{{constant}}#0`, completing the cycle
|
||||
= note: ...which again requires const checking `X::A::{{constant}}#0`, completing the cycle
|
||||
note: cycle used when processing `X::A::{{constant}}#0`
|
||||
--> $DIR/issue-23302-1.rs:4:9
|
||||
|
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
error[E0391]: cycle detected when processing `Y::A::{{constant}}#0`
|
||||
error[E0391]: cycle detected when const checking `Y::A::{{constant}}#0`
|
||||
--> $DIR/issue-23302-2.rs:4:9
|
||||
|
|
||||
LL | A = Y::B as isize,
|
||||
| ^^^^^^^^^^^^^
|
||||
|
|
||||
= note: ...which again requires processing `Y::A::{{constant}}#0`, completing the cycle
|
||||
= note: ...which again requires const checking `Y::A::{{constant}}#0`, completing the cycle
|
||||
note: cycle used when processing `Y::A::{{constant}}#0`
|
||||
--> $DIR/issue-23302-2.rs:4:9
|
||||
|
|
||||
|
|
|
@ -1,26 +1,20 @@
|
|||
error[E0391]: cycle detected when const checking if rvalue is promotable to static `A`
|
||||
--> $DIR/issue-23302-3.rs:1:1
|
||||
|
|
||||
LL | const A: i32 = B;
|
||||
| ^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
note: ...which requires checking which parts of `A` are promotable to static...
|
||||
error[E0391]: cycle detected when const checking `A`
|
||||
--> $DIR/issue-23302-3.rs:1:16
|
||||
|
|
||||
LL | const A: i32 = B;
|
||||
| ^
|
||||
note: ...which requires const checking if rvalue is promotable to static `B`...
|
||||
--> $DIR/issue-23302-3.rs:3:1
|
||||
|
|
||||
LL | const B: i32 = A;
|
||||
| ^^^^^^^^^^^^^^^^^
|
||||
note: ...which requires checking which parts of `B` are promotable to static...
|
||||
note: ...which requires const checking `B`...
|
||||
--> $DIR/issue-23302-3.rs:3:16
|
||||
|
|
||||
LL | const B: i32 = A;
|
||||
| ^
|
||||
= note: ...which again requires const checking if rvalue is promotable to static `A`, completing the cycle
|
||||
= note: cycle used when running analysis passes on this crate
|
||||
= note: ...which again requires const checking `A`, completing the cycle
|
||||
note: cycle used when processing `A`
|
||||
--> $DIR/issue-23302-3.rs:1:1
|
||||
|
|
||||
LL | const A: i32 = B;
|
||||
| ^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
error[E0391]: cycle detected when processing `Foo::B::{{constant}}#0`
|
||||
error[E0391]: cycle detected when const checking `Foo::B::{{constant}}#0`
|
||||
--> $DIR/issue-36163.rs:4:9
|
||||
|
|
||||
LL | B = A,
|
||||
| ^
|
||||
|
|
||||
note: ...which requires processing `A`...
|
||||
note: ...which requires const checking `A`...
|
||||
--> $DIR/issue-36163.rs:1:18
|
||||
|
|
||||
LL | const A: isize = Foo::B as isize;
|
||||
| ^^^^^^^^^^^^^^^
|
||||
= note: ...which again requires processing `Foo::B::{{constant}}#0`, completing the cycle
|
||||
= note: ...which again requires const checking `Foo::B::{{constant}}#0`, completing the cycle
|
||||
note: cycle used when processing `Foo::B::{{constant}}#0`
|
||||
--> $DIR/issue-36163.rs:4:9
|
||||
|
|
||||
|
|
|
@ -12,7 +12,6 @@ struct PartialInteriorMut {
|
|||
}
|
||||
|
||||
#[rustc_mir(rustc_peek_indirectly_mutable,stop_after_dataflow)]
|
||||
#[rustc_mir(borrowck_graphviz_postflow="indirect.dot")]
|
||||
const BOO: i32 = {
|
||||
let x = PartialInteriorMut {
|
||||
zst: [],
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
error: rustc_peek: bit not set
|
||||
--> $DIR/indirect-mutation-offset.rs:35:14
|
||||
--> $DIR/indirect-mutation-offset.rs:34:14
|
||||
|
|
||||
LL | unsafe { rustc_peek(x) };
|
||||
| ^^^^^^^^^^^^^
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
error[E0502]: cannot borrow `*map` as mutable because it is also borrowed as immutable
|
||||
--> $DIR/get_default.rs:32:17
|
||||
|
|
||||
LL | fn err(map: &mut Map) -> &String {
|
||||
| - let's call the lifetime of this reference `'1`
|
||||
LL | loop {
|
||||
LL | match map.get() {
|
||||
| --- immutable borrow occurs here
|
||||
LL | Some(v) => {
|
||||
|
@ -8,7 +11,7 @@ LL | map.set(String::new()); // Both AST and MIR error here
|
|||
| ^^^ mutable borrow occurs here
|
||||
LL |
|
||||
LL | return v;
|
||||
| - immutable borrow later used here
|
||||
| - returning this value requires that `*map` is borrowed for `'1`
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
error[E0506]: cannot assign to `data.0` because it is borrowed
|
||||
--> $DIR/loan_ends_mid_block_pair.rs:12:5
|
||||
|
|
||||
LL | let c = &mut data.0;
|
||||
| ----------- borrow of `data.0` occurs here
|
||||
LL | capitalize(c);
|
||||
LL | data.0 = 'e';
|
||||
| ^^^^^^^^^^^^ assignment to borrowed `data.0` occurs here
|
||||
...
|
||||
LL | capitalize(c);
|
||||
| - borrow later used here
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0506`.
|
|
@ -17,12 +17,14 @@ LL | let w = y;
|
|||
error[E0505]: cannot move out of `x` because it is borrowed
|
||||
--> $DIR/polonius-smoke-test.rs:19:13
|
||||
|
|
||||
LL | pub fn use_while_mut_fr(x: &mut i32) -> &mut i32 {
|
||||
| - let's call the lifetime of this reference `'1`
|
||||
LL | let y = &mut *x;
|
||||
| ------- borrow of `*x` occurs here
|
||||
LL | let z = x;
|
||||
| ^ move out of `x` occurs here
|
||||
LL | y
|
||||
| - borrow later used here
|
||||
| - returning this value requires that `*x` is borrowed for `'1`
|
||||
|
||||
error[E0505]: cannot move out of `s` because it is borrowed
|
||||
--> $DIR/polonius-smoke-test.rs:43:5
|
||||
|
|
8
src/test/ui/nll/promoted-liveness.rs
Normal file
8
src/test/ui/nll/promoted-liveness.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
// Test that promoted that have larger mir bodies than their containing function
|
||||
// don't cause an ICE.
|
||||
|
||||
// check-pass
|
||||
|
||||
fn main() {
|
||||
&["0", "1", "2", "3", "4", "5", "6", "7"];
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
error[E0716]: temporary value dropped while borrowed
|
||||
--> $DIR/return-ref-mut-issue-46557.rs:4:21
|
||||
|
|
||||
LL | let ref mut x = 1234543;
|
||||
| ^^^^^^^ creates a temporary which is freed while still in use
|
||||
LL | x
|
||||
| - borrow later used here
|
||||
LL | }
|
||||
| - temporary value is freed at the end of this statement
|
||||
|
|
||||
= note: consider using a `let` binding to create a longer lived value
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0716`.
|
|
@ -1,60 +0,0 @@
|
|||
error[E0597]: `factorial` does not live long enough
|
||||
--> $DIR/unboxed-closures-failed-recursive-fn-1.rs:15:17
|
||||
|
|
||||
LL | let f = |x: u32| -> u32 {
|
||||
| --------------- value captured here
|
||||
LL | let g = factorial.as_ref().unwrap();
|
||||
| ^^^^^^^^^ borrowed value does not live long enough
|
||||
...
|
||||
LL | }
|
||||
| -
|
||||
| |
|
||||
| `factorial` dropped here while still borrowed
|
||||
| borrow might be used here, when `factorial` is dropped and runs the destructor for type `std::option::Option<std::boxed::Box<dyn std::ops::Fn(u32) -> u32>>`
|
||||
|
||||
error[E0506]: cannot assign to `factorial` because it is borrowed
|
||||
--> $DIR/unboxed-closures-failed-recursive-fn-1.rs:20:5
|
||||
|
|
||||
LL | let f = |x: u32| -> u32 {
|
||||
| --------------- borrow of `factorial` occurs here
|
||||
LL | let g = factorial.as_ref().unwrap();
|
||||
| --------- borrow occurs due to use in closure
|
||||
...
|
||||
LL | factorial = Some(Box::new(f));
|
||||
| ^^^^^^^^^
|
||||
| |
|
||||
| assignment to borrowed `factorial` occurs here
|
||||
| borrow later used here
|
||||
|
||||
error[E0597]: `factorial` does not live long enough
|
||||
--> $DIR/unboxed-closures-failed-recursive-fn-1.rs:28:17
|
||||
|
|
||||
LL | let f = |x: u32| -> u32 {
|
||||
| --------------- value captured here
|
||||
LL | let g = factorial.as_ref().unwrap();
|
||||
| ^^^^^^^^^ borrowed value does not live long enough
|
||||
...
|
||||
LL | }
|
||||
| -
|
||||
| |
|
||||
| `factorial` dropped here while still borrowed
|
||||
| borrow might be used here, when `factorial` is dropped and runs the destructor for type `std::option::Option<std::boxed::Box<dyn std::ops::Fn(u32) -> u32>>`
|
||||
|
||||
error[E0506]: cannot assign to `factorial` because it is borrowed
|
||||
--> $DIR/unboxed-closures-failed-recursive-fn-1.rs:33:5
|
||||
|
|
||||
LL | let f = |x: u32| -> u32 {
|
||||
| --------------- borrow of `factorial` occurs here
|
||||
LL | let g = factorial.as_ref().unwrap();
|
||||
| --------- borrow occurs due to use in closure
|
||||
...
|
||||
LL | factorial = Some(Box::new(f));
|
||||
| ^^^^^^^^^
|
||||
| |
|
||||
| assignment to borrowed `factorial` occurs here
|
||||
| borrow later used here
|
||||
|
||||
error: aborting due to 4 previous errors
|
||||
|
||||
Some errors have detailed explanations: E0506, E0597.
|
||||
For more information about an error, try `rustc --explain E0506`.
|
|
@ -1,4 +1,4 @@
|
|||
// error-pattern:can't find crate for `extra`
|
||||
// error-pattern:can't find crate for `fake_crate`
|
||||
|
||||
extern crate fake_crate as extra;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
error[E0463]: can't find crate for `extra`
|
||||
error[E0463]: can't find crate for `fake_crate`
|
||||
--> $DIR/use-meta-mismatch.rs:3:1
|
||||
|
|
||||
LL | extern crate fake_crate as extra;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue