remove unused tcx argument
This commit is contained in:
parent
5e2f337e6b
commit
2e2ea26a83
@ -44,7 +44,6 @@
|
||||
|
||||
use rustc::mir::visit::Visitor;
|
||||
use rustc::mir::*;
|
||||
use rustc::ty::TyCtxt;
|
||||
|
||||
use rustc_data_structures::indexed_vec::Idx;
|
||||
use rustc_data_structures::unify as ut;
|
||||
@ -54,8 +53,8 @@
|
||||
}
|
||||
|
||||
impl EscapingLocals {
|
||||
crate fn compute(tcx: TyCtxt<'_, '_, 'tcx>, mir: &Mir<'tcx>) -> Self {
|
||||
let mut visitor = GatherAssignedLocalsVisitor::new(tcx, mir);
|
||||
crate fn compute(mir: &Mir<'tcx>) -> Self {
|
||||
let mut visitor = GatherAssignedLocalsVisitor::new();
|
||||
visitor.visit_mir(mir);
|
||||
|
||||
EscapingLocals {
|
||||
@ -74,10 +73,8 @@ impl EscapingLocals {
|
||||
|
||||
/// The MIR visitor gathering the union-find of the locals used in
|
||||
/// assignments.
|
||||
struct GatherAssignedLocalsVisitor<'cx, 'gcx: 'tcx, 'tcx: 'cx> {
|
||||
struct GatherAssignedLocalsVisitor {
|
||||
unification_table: ut::UnificationTable<ut::InPlace<AssignedLocal>>,
|
||||
tcx: TyCtxt<'cx, 'gcx, 'tcx>,
|
||||
mir: &'cx Mir<'tcx>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
|
||||
@ -107,12 +104,10 @@ fn from(item: Local) -> Self {
|
||||
}
|
||||
}
|
||||
|
||||
impl GatherAssignedLocalsVisitor<'cx, 'gcx, 'tcx> {
|
||||
fn new(tcx: TyCtxt<'cx, 'gcx, 'tcx>, mir: &'cx Mir<'tcx>) -> Self {
|
||||
impl GatherAssignedLocalsVisitor {
|
||||
fn new() -> Self {
|
||||
Self {
|
||||
unification_table: ut::UnificationTable::new(),
|
||||
tcx,
|
||||
mir,
|
||||
}
|
||||
}
|
||||
|
||||
@ -154,7 +149,7 @@ fn find_local_in_operand(op: &Operand) -> Option<Local> {
|
||||
}
|
||||
}
|
||||
|
||||
impl Visitor<'tcx> for GatherAssignedLocalsVisitor<'_, '_, 'tcx> {
|
||||
impl Visitor<'tcx> for GatherAssignedLocalsVisitor {
|
||||
fn visit_mir(&mut self, mir: &Mir<'tcx>) {
|
||||
// We need as many union-find keys as there are locals
|
||||
for _ in 0..mir.local_decls.len() {
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
use borrow_check::nll::escaping_locals::EscapingLocals;
|
||||
use rustc::mir::{Local, Mir};
|
||||
use rustc::ty::{TyCtxt, TypeFoldable};
|
||||
use rustc::ty::TypeFoldable;
|
||||
use rustc_data_structures::indexed_vec::IndexVec;
|
||||
use util::liveness::LiveVariableMap;
|
||||
|
||||
@ -55,8 +55,8 @@ fn num_variables(&self) -> usize {
|
||||
impl NllLivenessMap {
|
||||
/// Iterates over the variables in Mir and assigns each Local whose type contains
|
||||
/// regions a LocalWithRegion index. Returns a map for converting back and forth.
|
||||
crate fn compute(tcx: TyCtxt<'_, '_, 'tcx>, mir: &Mir<'tcx>) -> Self {
|
||||
let mut escaping_locals = EscapingLocals::compute(tcx, mir);
|
||||
crate fn compute(mir: &Mir<'tcx>) -> Self {
|
||||
let mut escaping_locals = EscapingLocals::compute(mir);
|
||||
|
||||
let mut to_local = IndexVec::default();
|
||||
let mut escapes_into_return = 0;
|
||||
|
@ -109,7 +109,7 @@ pub(in borrow_check) fn compute_regions<'cx, 'gcx, 'tcx>(
|
||||
let elements = &Rc::new(RegionValueElements::new(mir));
|
||||
|
||||
// Run the MIR type-checker.
|
||||
let liveness_map = NllLivenessMap::compute(infcx.tcx, &mir);
|
||||
let liveness_map = NllLivenessMap::compute(&mir);
|
||||
let liveness = LivenessResults::compute(mir, &liveness_map);
|
||||
let (constraint_sets, universal_region_relations) = type_check::type_check(
|
||||
infcx,
|
||||
|
Loading…
Reference in New Issue
Block a user