Skip to content

Commit 117b734

Browse files
authored
Rollup merge of rust-lang#73833 - bjorn3:remove_gcx_enter_local, r=matthewjasper
Remove GlobalCtxt::enter_local
2 parents 5304511 + 4d978af commit 117b734

File tree

2 files changed

+22
-46
lines changed

2 files changed

+22
-46
lines changed

src/librustc_infer/infer/mod.rs

+17-19
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ impl<'tcx> fmt::Display for FixupError<'tcx> {
570570
/// Necessary because we can't write the following bound:
571571
/// `F: for<'b, 'tcx> where 'tcx FnOnce(InferCtxt<'b, 'tcx>)`.
572572
pub struct InferCtxtBuilder<'tcx> {
573-
global_tcx: TyCtxt<'tcx>,
573+
tcx: TyCtxt<'tcx>,
574574
fresh_tables: Option<RefCell<ty::TypeckTables<'tcx>>>,
575575
}
576576

@@ -580,7 +580,7 @@ pub trait TyCtxtInferExt<'tcx> {
580580

581581
impl TyCtxtInferExt<'tcx> for TyCtxt<'tcx> {
582582
fn infer_ctxt(self) -> InferCtxtBuilder<'tcx> {
583-
InferCtxtBuilder { global_tcx: self, fresh_tables: None }
583+
InferCtxtBuilder { tcx: self, fresh_tables: None }
584584
}
585585
}
586586

@@ -616,24 +616,22 @@ impl<'tcx> InferCtxtBuilder<'tcx> {
616616
}
617617

618618
pub fn enter<R>(&mut self, f: impl for<'a> FnOnce(InferCtxt<'a, 'tcx>) -> R) -> R {
619-
let InferCtxtBuilder { global_tcx, ref fresh_tables } = *self;
619+
let InferCtxtBuilder { tcx, ref fresh_tables } = *self;
620620
let in_progress_tables = fresh_tables.as_ref();
621-
global_tcx.enter_local(|tcx| {
622-
f(InferCtxt {
623-
tcx,
624-
in_progress_tables,
625-
inner: RefCell::new(InferCtxtInner::new()),
626-
lexical_region_resolutions: RefCell::new(None),
627-
selection_cache: Default::default(),
628-
evaluation_cache: Default::default(),
629-
reported_trait_errors: Default::default(),
630-
reported_closure_mismatch: Default::default(),
631-
tainted_by_errors_flag: Cell::new(false),
632-
err_count_on_creation: tcx.sess.err_count(),
633-
in_snapshot: Cell::new(false),
634-
skip_leak_check: Cell::new(false),
635-
universe: Cell::new(ty::UniverseIndex::ROOT),
636-
})
621+
f(InferCtxt {
622+
tcx,
623+
in_progress_tables,
624+
inner: RefCell::new(InferCtxtInner::new()),
625+
lexical_region_resolutions: RefCell::new(None),
626+
selection_cache: Default::default(),
627+
evaluation_cache: Default::default(),
628+
reported_trait_errors: Default::default(),
629+
reported_closure_mismatch: Default::default(),
630+
tainted_by_errors_flag: Cell::new(false),
631+
err_count_on_creation: tcx.sess.err_count(),
632+
in_snapshot: Cell::new(false),
633+
skip_leak_check: Cell::new(false),
634+
universe: Cell::new(ty::UniverseIndex::ROOT),
637635
})
638636
}
639637
}

src/librustc_middle/ty/context.rs

+5-27
Original file line numberDiff line numberDiff line change
@@ -1560,28 +1560,6 @@ impl<'tcx> TyCtxt<'tcx> {
15601560
}
15611561
}
15621562

1563-
impl<'tcx> GlobalCtxt<'tcx> {
1564-
/// Calls the closure with a local `TyCtxt` using the given arena.
1565-
/// `interners` is a slot passed so we can create a CtxtInterners
1566-
/// with the same lifetime as `arena`.
1567-
pub fn enter_local<F, R>(&'tcx self, f: F) -> R
1568-
where
1569-
F: FnOnce(TyCtxt<'tcx>) -> R,
1570-
{
1571-
let tcx = TyCtxt { gcx: self };
1572-
ty::tls::with_related_context(tcx, |icx| {
1573-
let new_icx = ty::tls::ImplicitCtxt {
1574-
tcx,
1575-
query: icx.query,
1576-
diagnostics: icx.diagnostics,
1577-
layout_depth: icx.layout_depth,
1578-
task_deps: icx.task_deps,
1579-
};
1580-
ty::tls::enter_context(&new_icx, |_| f(tcx))
1581-
})
1582-
}
1583-
}
1584-
15851563
/// A trait implemented for all `X<'a>` types that can be safely and
15861564
/// efficiently converted to `X<'tcx>` as long as they are part of the
15871565
/// provided `TyCtxt<'tcx>`.
@@ -1818,11 +1796,11 @@ pub mod tls {
18181796
with_context_opt(|opt_context| f(opt_context.expect("no ImplicitCtxt stored in tls")))
18191797
}
18201798

1821-
/// Allows access to the current `ImplicitCtxt` whose tcx field has the same global
1822-
/// interner as the tcx argument passed in. This means the closure is given an `ImplicitCtxt`
1823-
/// with the same `'tcx` lifetime as the `TyCtxt` passed in.
1824-
/// This will panic if you pass it a `TyCtxt` which has a different global interner from
1825-
/// the current `ImplicitCtxt`'s `tcx` field.
1799+
/// Allows access to the current `ImplicitCtxt` whose tcx field is the same as the tcx argument
1800+
/// passed in. This means the closure is given an `ImplicitCtxt` with the same `'tcx` lifetime
1801+
/// as the `TyCtxt` passed in.
1802+
/// This will panic if you pass it a `TyCtxt` which is different from the current
1803+
/// `ImplicitCtxt`'s `tcx` field.
18261804
#[inline]
18271805
pub fn with_related_context<'tcx, F, R>(tcx: TyCtxt<'tcx>, f: F) -> R
18281806
where

0 commit comments

Comments
 (0)