636 lines
23 KiB
Rust
636 lines
23 KiB
Rust
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
// 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::CastKind;
|
|
use rustc_const_eval::ConstContext;
|
|
use rustc::middle::const_val::ConstEvalErr;
|
|
use rustc::middle::const_val::ErrKind::{IndexOpFeatureGated, UnimplementedConstVal, MiscCatchAll};
|
|
use rustc::middle::const_val::ErrKind::{ErroneousReferencedConstant, MiscBinaryOp, NonConstPath};
|
|
use rustc::middle::const_val::ErrKind::{TypeckError, Math, LayoutError};
|
|
use rustc_const_math::{ConstMathErr, Op};
|
|
use rustc::hir::def::{Def, CtorKind};
|
|
use rustc::hir::def_id::DefId;
|
|
use rustc::hir::map::blocks::FnLikeNode;
|
|
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::maps::{queries, Providers};
|
|
use rustc::ty::subst::Substs;
|
|
use rustc::traits::Reveal;
|
|
use rustc::util::common::ErrorReported;
|
|
use rustc::util::nodemap::{ItemLocalSet, NodeSet};
|
|
use rustc::lint::builtin::CONST_ERR;
|
|
use rustc::hir::{self, PatKind, RangeEnd};
|
|
use std::rc::Rc;
|
|
use syntax::ast;
|
|
use syntax_pos::{Span, DUMMY_SP};
|
|
use rustc::hir::intravisit::{self, Visitor, NestedVisitorMap};
|
|
|
|
use std::cmp::Ordering;
|
|
|
|
pub fn provide(providers: &mut Providers) {
|
|
*providers = Providers {
|
|
rvalue_promotable_map,
|
|
const_is_rvalue_promotable_to_static,
|
|
..*providers
|
|
};
|
|
}
|
|
|
|
pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
|
|
for &body_id in &tcx.hir.krate().body_ids {
|
|
let def_id = tcx.hir.body_owner_def_id(body_id);
|
|
tcx.const_is_rvalue_promotable_to_static(def_id);
|
|
}
|
|
tcx.sess.abort_if_errors();
|
|
}
|
|
|
|
fn const_is_rvalue_promotable_to_static<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
def_id: DefId)
|
|
-> bool
|
|
{
|
|
assert!(def_id.is_local());
|
|
|
|
let node_id = tcx.hir.as_local_node_id(def_id)
|
|
.expect("rvalue_promotable_map invoked with non-local def-id");
|
|
let body_id = tcx.hir.body_owned_by(node_id);
|
|
let body_hir_id = tcx.hir.node_to_hir_id(body_id.node_id);
|
|
tcx.rvalue_promotable_map(def_id).contains(&body_hir_id.local_id)
|
|
}
|
|
|
|
fn rvalue_promotable_map<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
def_id: DefId)
|
|
-> Rc<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,
|
|
promotable: false,
|
|
mut_rvalue_borrows: NodeSet(),
|
|
param_env: ty::ParamEnv::empty(Reveal::UserFacing),
|
|
identity_substs: Substs::empty(),
|
|
result: ItemLocalSet(),
|
|
};
|
|
|
|
// `def_id` should be a `Body` owner
|
|
let node_id = tcx.hir.as_local_node_id(def_id)
|
|
.expect("rvalue_promotable_map invoked with non-local def-id");
|
|
let body_id = tcx.hir.body_owned_by(node_id);
|
|
visitor.visit_nested_body(body_id);
|
|
|
|
Rc::new(visitor.result)
|
|
}
|
|
|
|
struct CheckCrateVisitor<'a, 'tcx: 'a> {
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
in_fn: bool,
|
|
in_static: bool,
|
|
promotable: bool,
|
|
mut_rvalue_borrows: NodeSet,
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
identity_substs: &'tcx Substs<'tcx>,
|
|
tables: &'a ty::TypeckTables<'tcx>,
|
|
result: ItemLocalSet,
|
|
}
|
|
|
|
impl<'a, 'gcx> CheckCrateVisitor<'a, 'gcx> {
|
|
fn const_cx(&self) -> ConstContext<'a, 'gcx> {
|
|
ConstContext::new(self.tcx, self.param_env.and(self.identity_substs), self.tables)
|
|
}
|
|
|
|
fn check_const_eval(&self, expr: &'gcx hir::Expr) {
|
|
if let Err(err) = self.const_cx().eval(expr) {
|
|
match err.kind {
|
|
UnimplementedConstVal(_) => {}
|
|
IndexOpFeatureGated => {}
|
|
ErroneousReferencedConstant(_) => {}
|
|
TypeckError => {}
|
|
MiscCatchAll => {}
|
|
_ => {
|
|
self.tcx.lint_node(CONST_ERR,
|
|
expr.id,
|
|
expr.span,
|
|
&format!("constant evaluation error: {}",
|
|
err.description().into_oneline()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Returns true iff all the values of the type are promotable.
|
|
fn type_has_only_promotable_values(&mut self, ty: Ty<'gcx>) -> bool {
|
|
ty.is_freeze(self.tcx, self.param_env, DUMMY_SP) &&
|
|
!ty.needs_drop(self.tcx, self.param_env)
|
|
}
|
|
|
|
fn handle_const_fn_call(&mut self, def_id: DefId, ret_ty: Ty<'gcx>) {
|
|
self.promotable &= self.type_has_only_promotable_values(ret_ty);
|
|
|
|
self.promotable &= if let Some(fn_id) = self.tcx.hir.as_local_node_id(def_id) {
|
|
FnLikeNode::from_node(self.tcx.hir.get(fn_id)).map_or(false, |fn_like| {
|
|
fn_like.constness() == hir::Constness::Const
|
|
})
|
|
} else {
|
|
self.tcx.is_const_fn(def_id)
|
|
};
|
|
}
|
|
}
|
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for CheckCrateVisitor<'a, 'tcx> {
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
|
// note that we *do* visit nested bodies, because we override `visit_nested_body` below
|
|
NestedVisitorMap::None
|
|
}
|
|
|
|
fn visit_nested_body(&mut self, body_id: hir::BodyId) {
|
|
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::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 = Substs::identity_for_item(self.tcx, item_def_id);
|
|
|
|
let body = self.tcx.hir.body(body_id);
|
|
if !self.in_fn {
|
|
self.check_const_eval(&body.value);
|
|
}
|
|
|
|
let tcx = self.tcx;
|
|
let param_env = self.param_env;
|
|
let region_scope_tree = self.tcx.region_scope_tree(item_def_id);
|
|
euv::ExprUseVisitor::new(self, tcx, param_env, ®ion_scope_tree, self.tables, None)
|
|
.consume_body(body);
|
|
|
|
self.visit_body(body);
|
|
|
|
self.in_fn = outer_in_fn;
|
|
self.tables = outer_tables;
|
|
self.param_env = outer_param_env;
|
|
self.identity_substs = outer_identity_substs;
|
|
}
|
|
|
|
fn visit_pat(&mut self, p: &'tcx hir::Pat) {
|
|
match p.node {
|
|
PatKind::Lit(ref lit) => {
|
|
self.check_const_eval(lit);
|
|
}
|
|
PatKind::Range(ref start, ref end, RangeEnd::Excluded) => {
|
|
match self.const_cx().compare_lit_exprs(p.span, start, end) {
|
|
Ok(Ordering::Less) => {}
|
|
Ok(Ordering::Equal) |
|
|
Ok(Ordering::Greater) => {
|
|
span_err!(self.tcx.sess,
|
|
start.span,
|
|
E0579,
|
|
"lower range bound must be less than upper");
|
|
}
|
|
Err(ErrorReported) => {}
|
|
}
|
|
}
|
|
PatKind::Range(ref start, ref end, RangeEnd::Included) => {
|
|
match self.const_cx().compare_lit_exprs(p.span, start, end) {
|
|
Ok(Ordering::Less) |
|
|
Ok(Ordering::Equal) => {}
|
|
Ok(Ordering::Greater) => {
|
|
struct_span_err!(self.tcx.sess, start.span, E0030,
|
|
"lower range bound must be less than or equal to upper")
|
|
.span_label(start.span, "lower bound larger than upper bound")
|
|
.emit();
|
|
}
|
|
Err(ErrorReported) => {}
|
|
}
|
|
}
|
|
_ => {}
|
|
}
|
|
intravisit::walk_pat(self, p);
|
|
}
|
|
|
|
fn visit_stmt(&mut self, stmt: &'tcx hir::Stmt) {
|
|
match stmt.node {
|
|
hir::StmtDecl(ref decl, _) => {
|
|
match decl.node {
|
|
hir::DeclLocal(_) => {
|
|
self.promotable = false;
|
|
}
|
|
// Item statements are allowed
|
|
hir::DeclItem(_) => {}
|
|
}
|
|
}
|
|
hir::StmtExpr(..) |
|
|
hir::StmtSemi(..) => {
|
|
self.promotable = false;
|
|
}
|
|
}
|
|
intravisit::walk_stmt(self, stmt);
|
|
}
|
|
|
|
fn visit_expr(&mut self, ex: &'tcx hir::Expr) {
|
|
let outer = self.promotable;
|
|
self.promotable = true;
|
|
|
|
let node_ty = self.tables.node_id_to_type(ex.hir_id);
|
|
check_expr(self, ex, node_ty);
|
|
check_adjustments(self, ex);
|
|
|
|
if let hir::ExprMatch(ref discr, ref arms, _) = ex.node {
|
|
// Compute the most demanding borrow from all the arms'
|
|
// patterns and set that on the discriminator.
|
|
let mut mut_borrow = false;
|
|
for pat in arms.iter().flat_map(|arm| &arm.pats) {
|
|
if self.mut_rvalue_borrows.remove(&pat.id) {
|
|
mut_borrow = true;
|
|
}
|
|
}
|
|
if mut_borrow {
|
|
self.mut_rvalue_borrows.insert(discr.id);
|
|
}
|
|
}
|
|
|
|
intravisit::walk_expr(self, ex);
|
|
|
|
// Handle borrows on (or inside the autorefs of) this expression.
|
|
if self.mut_rvalue_borrows.remove(&ex.id) {
|
|
self.promotable = false;
|
|
}
|
|
|
|
if self.in_fn && self.promotable {
|
|
match self.const_cx().eval(ex) {
|
|
Ok(_) => {}
|
|
Err(ConstEvalErr { kind: UnimplementedConstVal(_), .. }) |
|
|
Err(ConstEvalErr { kind: MiscCatchAll, .. }) |
|
|
Err(ConstEvalErr { kind: MiscBinaryOp, .. }) |
|
|
Err(ConstEvalErr { kind: NonConstPath, .. }) |
|
|
Err(ConstEvalErr { kind: ErroneousReferencedConstant(_), .. }) |
|
|
Err(ConstEvalErr { kind: Math(ConstMathErr::Overflow(Op::Shr)), .. }) |
|
|
Err(ConstEvalErr { kind: Math(ConstMathErr::Overflow(Op::Shl)), .. }) |
|
|
Err(ConstEvalErr { kind: IndexOpFeatureGated, .. }) => {}
|
|
Err(ConstEvalErr { kind: TypeckError, .. }) => {}
|
|
Err(ConstEvalErr {
|
|
kind: LayoutError(ty::layout::LayoutError::Unknown(_)), ..
|
|
}) => {}
|
|
Err(msg) => {
|
|
self.tcx.lint_node(CONST_ERR,
|
|
ex.id,
|
|
msg.span,
|
|
&msg.description().into_oneline().into_owned());
|
|
}
|
|
}
|
|
}
|
|
|
|
if self.promotable {
|
|
self.result.insert(ex.hir_id.local_id);
|
|
}
|
|
self.promotable &= outer;
|
|
}
|
|
}
|
|
|
|
/// 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<'a, 'tcx>(v: &mut CheckCrateVisitor<'a, 'tcx>, e: &hir::Expr, node_ty: Ty<'tcx>) {
|
|
match node_ty.sty {
|
|
ty::TyAdt(def, _) if def.has_dtor(v.tcx) => {
|
|
v.promotable = false;
|
|
}
|
|
_ => {}
|
|
}
|
|
|
|
match e.node {
|
|
hir::ExprUnary(..) |
|
|
hir::ExprBinary(..) |
|
|
hir::ExprIndex(..) if v.tables.is_method_call(e) => {
|
|
v.promotable = false;
|
|
}
|
|
hir::ExprBox(_) => {
|
|
v.promotable = false;
|
|
}
|
|
hir::ExprUnary(op, ref inner) => {
|
|
match v.tables.node_id_to_type(inner.hir_id).sty {
|
|
ty::TyRawPtr(_) => {
|
|
assert!(op == hir::UnDeref);
|
|
|
|
v.promotable = false;
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
hir::ExprBinary(op, ref lhs, _) => {
|
|
match v.tables.node_id_to_type(lhs.hir_id).sty {
|
|
ty::TyRawPtr(_) => {
|
|
assert!(op.node == hir::BiEq || op.node == hir::BiNe ||
|
|
op.node == hir::BiLe || op.node == hir::BiLt ||
|
|
op.node == hir::BiGe || op.node == hir::BiGt);
|
|
|
|
v.promotable = false;
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
hir::ExprCast(ref from, _) => {
|
|
debug!("Checking const cast(id={})", from.id);
|
|
match v.tables.cast_kinds().get(from.hir_id) {
|
|
None => span_bug!(e.span, "no kind for cast"),
|
|
Some(&CastKind::PtrAddrCast) | Some(&CastKind::FnPtrAddrCast) => {
|
|
v.promotable = false;
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
hir::ExprPath(ref qpath) => {
|
|
let def = v.tables.qpath_def(qpath, e.hir_id);
|
|
match def {
|
|
Def::VariantCtor(..) | Def::StructCtor(..) |
|
|
Def::Fn(..) | Def::Method(..) => {}
|
|
|
|
// References to a static that are themselves within a static
|
|
// are inherently promotable with the exception
|
|
// of "#[thread_loca]" statics, which may not
|
|
// outlive the current function
|
|
Def::Static(did, _) => {
|
|
|
|
if v.in_static {
|
|
let mut thread_local = false;
|
|
|
|
for attr in &v.tcx.get_attrs(did)[..] {
|
|
if attr.check_name("thread_local") {
|
|
debug!("Reference to Static(id={:?}) is unpromotable \
|
|
due to a #[thread_local] attribute", did);
|
|
v.promotable = false;
|
|
thread_local = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if !thread_local {
|
|
debug!("Allowing promotion of reference to Static(id={:?})", did);
|
|
}
|
|
} else {
|
|
debug!("Reference to Static(id={:?}) is unpromotable as it is not \
|
|
referenced from a static", did);
|
|
v.promotable = false;
|
|
|
|
}
|
|
}
|
|
|
|
Def::Const(did) |
|
|
Def::AssociatedConst(did) => {
|
|
let promotable = if v.tcx.trait_of_item(did).is_some() {
|
|
// Don't peek inside trait associated constants.
|
|
false
|
|
} else {
|
|
queries::const_is_rvalue_promotable_to_static::try_get(v.tcx, e.span, did)
|
|
.unwrap_or_else(|mut err| {
|
|
// A cycle between constants ought to be reported elsewhere.
|
|
err.cancel();
|
|
v.tcx.sess.delay_span_bug(
|
|
e.span,
|
|
&format!("cycle encountered during const qualification: {:?}",
|
|
did));
|
|
false
|
|
})
|
|
};
|
|
|
|
// 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.
|
|
v.promotable &= promotable || v.type_has_only_promotable_values(node_ty);
|
|
}
|
|
|
|
_ => {
|
|
v.promotable = false;
|
|
}
|
|
}
|
|
}
|
|
hir::ExprCall(ref callee, _) => {
|
|
let mut callee = &**callee;
|
|
loop {
|
|
callee = match callee.node {
|
|
hir::ExprBlock(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::ExprPath(ref qpath) = callee.node {
|
|
v.tables.qpath_def(qpath, callee.hir_id)
|
|
} else {
|
|
Def::Err
|
|
};
|
|
match def {
|
|
Def::StructCtor(_, CtorKind::Fn) |
|
|
Def::VariantCtor(_, CtorKind::Fn) => {}
|
|
Def::Fn(did) => {
|
|
v.handle_const_fn_call(did, node_ty)
|
|
}
|
|
Def::Method(did) => {
|
|
match v.tcx.associated_item(did).container {
|
|
ty::ImplContainer(_) => {
|
|
v.handle_const_fn_call(did, node_ty)
|
|
}
|
|
ty::TraitContainer(_) => v.promotable = false
|
|
}
|
|
}
|
|
_ => v.promotable = false
|
|
}
|
|
}
|
|
hir::ExprMethodCall(..) => {
|
|
let def_id = v.tables.type_dependent_defs()[e.hir_id].def_id();
|
|
match v.tcx.associated_item(def_id).container {
|
|
ty::ImplContainer(_) => v.handle_const_fn_call(def_id, node_ty),
|
|
ty::TraitContainer(_) => v.promotable = false
|
|
}
|
|
}
|
|
hir::ExprStruct(..) => {
|
|
if let ty::TyAdt(adt, ..) = v.tables.expr_ty(e).sty {
|
|
// unsafe_cell_type doesn't necessarily exist with no_core
|
|
if Some(adt.did) == v.tcx.lang_items().unsafe_cell_type() {
|
|
v.promotable = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
hir::ExprLit(_) |
|
|
hir::ExprAddrOf(..) |
|
|
hir::ExprRepeat(..) => {}
|
|
|
|
hir::ExprClosure(..) => {
|
|
// Paths in constant contexts cannot refer to local variables,
|
|
// as there are none, and thus closures can't have upvars there.
|
|
if v.tcx.with_freevars(e.id, |fv| !fv.is_empty()) {
|
|
v.promotable = false;
|
|
}
|
|
}
|
|
|
|
hir::ExprBlock(_) |
|
|
hir::ExprIndex(..) |
|
|
hir::ExprField(..) |
|
|
hir::ExprTupField(..) |
|
|
hir::ExprArray(_) |
|
|
hir::ExprType(..) |
|
|
hir::ExprTup(..) => {}
|
|
|
|
// Conditional control flow (possible to implement).
|
|
hir::ExprMatch(..) |
|
|
hir::ExprIf(..) |
|
|
|
|
// Loops (not very meaningful in constants).
|
|
hir::ExprWhile(..) |
|
|
hir::ExprLoop(..) |
|
|
|
|
// More control flow (also not very meaningful).
|
|
hir::ExprBreak(..) |
|
|
hir::ExprAgain(_) |
|
|
hir::ExprRet(_) |
|
|
|
|
// Generator expressions
|
|
hir::ExprYield(_) |
|
|
|
|
// Expressions with side-effects.
|
|
hir::ExprAssign(..) |
|
|
hir::ExprAssignOp(..) |
|
|
hir::ExprInlineAsm(..) => {
|
|
v.promotable = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Check the adjustments of an expression
|
|
fn check_adjustments<'a, 'tcx>(v: &mut CheckCrateVisitor<'a, 'tcx>, e: &hir::Expr) {
|
|
use rustc::ty::adjustment::*;
|
|
|
|
for adjustment in v.tables.expr_adjustments(e) {
|
|
match adjustment.kind {
|
|
Adjust::NeverToAny |
|
|
Adjust::ReifyFnPointer |
|
|
Adjust::UnsafeFnPointer |
|
|
Adjust::ClosureFnPointer |
|
|
Adjust::MutToConstPointer |
|
|
Adjust::Borrow(_) |
|
|
Adjust::Unsize => {}
|
|
|
|
Adjust::Deref(ref overloaded) => {
|
|
if overloaded.is_some() {
|
|
v.promotable = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'a, 'gcx, 'tcx> euv::Delegate<'tcx> for CheckCrateVisitor<'a, 'gcx> {
|
|
fn consume(&mut self,
|
|
_consume_id: ast::NodeId,
|
|
_consume_span: Span,
|
|
_cmt: mc::cmt,
|
|
_mode: euv::ConsumeMode) {}
|
|
|
|
fn borrow(&mut self,
|
|
borrow_id: ast::NodeId,
|
|
_borrow_span: Span,
|
|
cmt: mc::cmt<'tcx>,
|
|
_loan_region: ty::Region<'tcx>,
|
|
bk: ty::BorrowKind,
|
|
loan_cause: euv::LoanCause) {
|
|
// 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`).
|
|
match loan_cause {
|
|
euv::LoanCause::AutoUnsafe => {
|
|
return;
|
|
}
|
|
_ => {}
|
|
}
|
|
|
|
let mut cur = &cmt;
|
|
loop {
|
|
match cur.cat {
|
|
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: ast::NodeId, _span: Span) {}
|
|
fn mutate(&mut self,
|
|
_assignment_id: ast::NodeId,
|
|
_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) {}
|
|
}
|