Skip to content

Commit 4d5ffc4

Browse files
authored
Rollup merge of #91984 - Aaron1011:rustc-middle-lifetime, r=oli-obk
Remove `in_band_lifetimes` from `rustc_middle` See #91867 This was mostly straightforward. In several places, I take advantage of the fact that lifetimes are non-hygenic: a macro declares the 'tcx' lifetime, which is then used in types passed in as macro arguments.
2 parents 6d26895 + a5b3dfe commit 4d5ffc4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+122
-111
lines changed

compiler/rustc_macros/src/type_foldable.rs

+5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
use quote::quote;
2+
use syn::parse_quote;
23

34
pub fn type_foldable_derive(mut s: synstructure::Structure<'_>) -> proc_macro2::TokenStream {
45
if let syn::Data::Union(_) = s.ast().data {
56
panic!("cannot derive on union")
67
}
78

9+
if !s.ast().generics.lifetimes().any(|lt| lt.lifetime.ident == "tcx") {
10+
s.add_impl_generic(parse_quote! { 'tcx });
11+
}
12+
813
s.add_bounds(synstructure::AddBounds::Generics);
914
let body_visit = s.each(|bind| {
1015
quote! {

compiler/rustc_middle/src/dep_graph/dep_node.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ crate fn make_compile_codegen_unit(tcx: TyCtxt<'_>, name: Symbol) -> DepNode {
201201

202202
// WARNING: `construct` is generic and does not know that `CompileMonoItem` takes `MonoItem`s as keys.
203203
// Be very careful changing this type signature!
204-
crate fn make_compile_mono_item(tcx: TyCtxt<'tcx>, mono_item: &MonoItem<'tcx>) -> DepNode {
204+
crate fn make_compile_mono_item<'tcx>(tcx: TyCtxt<'tcx>, mono_item: &MonoItem<'tcx>) -> DepNode {
205205
DepNode::construct(tcx, DepKind::CompileMonoItem, mono_item)
206206
}
207207

@@ -264,7 +264,7 @@ impl DepNodeExt for DepNode {
264264
/// DepNode. Condition (2) might not be fulfilled if a DepNode
265265
/// refers to something from the previous compilation session that
266266
/// has been removed.
267-
fn extract_def_id(&self, tcx: TyCtxt<'tcx>) -> Option<DefId> {
267+
fn extract_def_id<'tcx>(&self, tcx: TyCtxt<'tcx>) -> Option<DefId> {
268268
if self.kind.fingerprint_style(tcx) == FingerprintStyle::DefPathHash {
269269
Some(tcx.def_path_hash_to_def_id(DefPathHash(self.hash.into())))
270270
} else {

compiler/rustc_middle/src/infer/canonical.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub struct OriginalQueryValues<'tcx> {
7575
pub var_values: SmallVec<[GenericArg<'tcx>; 8]>,
7676
}
7777

78-
impl Default for OriginalQueryValues<'tcx> {
78+
impl<'tcx> Default for OriginalQueryValues<'tcx> {
7979
fn default() -> Self {
8080
let mut universe_map = SmallVec::default();
8181
universe_map.push(ty::UniverseIndex::ROOT);

compiler/rustc_middle/src/infer/unify_key.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ impl<'tcx> UnifyValue for ConstVarValue<'tcx> {
164164

165165
impl<'tcx> EqUnifyValue for &'tcx ty::Const<'tcx> {}
166166

167-
pub fn replace_if_possible<V, L>(
167+
pub fn replace_if_possible<'tcx, V, L>(
168168
table: &mut UnificationTable<InPlace<ty::ConstVid<'tcx>, V, L>>,
169169
c: &'tcx ty::Const<'tcx>,
170170
) -> &'tcx ty::Const<'tcx>

compiler/rustc_middle/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
#![feature(let_else)]
4545
#![feature(min_specialization)]
4646
#![feature(trusted_len)]
47-
#![feature(in_band_lifetimes)]
4847
#![feature(crate_visibility_modifier)]
4948
#![feature(associated_type_bounds)]
5049
#![feature(rustc_attrs)]

compiler/rustc_middle/src/lint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ pub fn struct_lint_level<'s, 'd>(
212212
) {
213213
// Avoid codegen bloat from monomorphization by immediately doing dyn dispatch of `decorate` to
214214
// the "real" work.
215-
fn struct_lint_level_impl(
215+
fn struct_lint_level_impl<'s, 'd>(
216216
sess: &'s Session,
217217
lint: &'static Lint,
218218
level: Level,

compiler/rustc_middle/src/middle/stability.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ pub fn deprecation_message_and_lint(
229229
)
230230
}
231231

232-
pub fn early_report_deprecation(
232+
pub fn early_report_deprecation<'a>(
233233
lint_buffer: &'a mut LintBuffer,
234234
message: &str,
235235
suggestion: Option<Symbol>,

compiler/rustc_middle/src/mir/interpret/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl fmt::Display for InterpErrorInfo<'_> {
6363
}
6464
}
6565

66-
impl InterpErrorInfo<'tcx> {
66+
impl<'tcx> InterpErrorInfo<'tcx> {
6767
pub fn print_backtrace(&self) {
6868
if let Some(backtrace) = self.0.backtrace.as_ref() {
6969
print_backtrace(backtrace);

compiler/rustc_middle/src/mir/interpret/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ pub struct GlobalId<'tcx> {
145145
pub promoted: Option<mir::Promoted>,
146146
}
147147

148-
impl GlobalId<'tcx> {
148+
impl<'tcx> GlobalId<'tcx> {
149149
pub fn display(self, tcx: TyCtxt<'tcx>) -> String {
150150
let instance_name = with_no_trimmed_paths(|| tcx.def_path_str(self.instance.def.def_id()));
151151
if let Some(promoted) = self.promoted {
@@ -273,7 +273,7 @@ pub struct AllocDecodingSession<'s> {
273273

274274
impl<'s> AllocDecodingSession<'s> {
275275
/// Decodes an `AllocId` in a thread-safe way.
276-
pub fn decode_alloc_id<D>(&self, decoder: &mut D) -> Result<AllocId, D::Error>
276+
pub fn decode_alloc_id<'tcx, D>(&self, decoder: &mut D) -> Result<AllocId, D::Error>
277277
where
278278
D: TyDecoder<'tcx>,
279279
{
@@ -390,7 +390,7 @@ pub enum GlobalAlloc<'tcx> {
390390
Memory(&'tcx Allocation),
391391
}
392392

393-
impl GlobalAlloc<'tcx> {
393+
impl<'tcx> GlobalAlloc<'tcx> {
394394
/// Panics if the `GlobalAlloc` does not refer to an `GlobalAlloc::Memory`
395395
#[track_caller]
396396
#[inline]

compiler/rustc_middle/src/mir/mod.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -2033,7 +2033,7 @@ impl SourceScope {
20332033
/// Finds the original HirId this MIR item came from.
20342034
/// This is necessary after MIR optimizations, as otherwise we get a HirId
20352035
/// from the function that was inlined instead of the function call site.
2036-
pub fn lint_root(
2036+
pub fn lint_root<'tcx>(
20372037
self,
20382038
source_scopes: &IndexVec<SourceScope, SourceScopeData<'tcx>>,
20392039
) -> Option<HirId> {
@@ -2543,7 +2543,7 @@ pub enum ConstantKind<'tcx> {
25432543
Val(interpret::ConstValue<'tcx>, Ty<'tcx>),
25442544
}
25452545

2546-
impl Constant<'tcx> {
2546+
impl<'tcx> Constant<'tcx> {
25472547
pub fn check_static_ptr(&self, tcx: TyCtxt<'_>) -> Option<DefId> {
25482548
match self.literal.const_for_ty()?.val.try_to_scalar() {
25492549
Some(Scalar::Ptr(ptr, _size)) => match tcx.global_alloc(ptr.provenance) {
@@ -2562,14 +2562,14 @@ impl Constant<'tcx> {
25622562
}
25632563
}
25642564

2565-
impl From<&'tcx ty::Const<'tcx>> for ConstantKind<'tcx> {
2565+
impl<'tcx> From<&'tcx ty::Const<'tcx>> for ConstantKind<'tcx> {
25662566
#[inline]
25672567
fn from(ct: &'tcx ty::Const<'tcx>) -> Self {
25682568
Self::Ty(ct)
25692569
}
25702570
}
25712571

2572-
impl ConstantKind<'tcx> {
2572+
impl<'tcx> ConstantKind<'tcx> {
25732573
/// Returns `None` if the constant is not trivially safe for use in the type system.
25742574
pub fn const_for_ty(&self) -> Option<&'tcx ty::Const<'tcx>> {
25752575
match self {
@@ -2851,7 +2851,7 @@ impl<'tcx> Display for ConstantKind<'tcx> {
28512851
}
28522852
}
28532853

2854-
fn pretty_print_const(
2854+
fn pretty_print_const<'tcx>(
28552855
c: &ty::Const<'tcx>,
28562856
fmt: &mut Formatter<'_>,
28572857
print_types: bool,
@@ -2866,7 +2866,7 @@ fn pretty_print_const(
28662866
})
28672867
}
28682868

2869-
fn pretty_print_const_value(
2869+
fn pretty_print_const_value<'tcx>(
28702870
val: interpret::ConstValue<'tcx>,
28712871
ty: Ty<'tcx>,
28722872
fmt: &mut Formatter<'_>,
@@ -2913,12 +2913,12 @@ impl<'a, 'b> graph::GraphSuccessors<'b> for Body<'a> {
29132913
type Iter = iter::Cloned<Successors<'b>>;
29142914
}
29152915

2916-
impl graph::GraphPredecessors<'graph> for Body<'tcx> {
2916+
impl<'tcx, 'graph> graph::GraphPredecessors<'graph> for Body<'tcx> {
29172917
type Item = BasicBlock;
29182918
type Iter = std::iter::Copied<std::slice::Iter<'graph, BasicBlock>>;
29192919
}
29202920

2921-
impl graph::WithPredecessors for Body<'tcx> {
2921+
impl<'tcx> graph::WithPredecessors for Body<'tcx> {
29222922
#[inline]
29232923
fn predecessors(&self, node: Self::Node) -> <Self as graph::GraphPredecessors<'_>>::Iter {
29242924
self.predecessors()[node].iter().copied()

compiler/rustc_middle/src/mir/mono.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ pub struct CodegenUnitNameBuilder<'tcx> {
431431
cache: FxHashMap<CrateNum, String>,
432432
}
433433

434-
impl CodegenUnitNameBuilder<'tcx> {
434+
impl<'tcx> CodegenUnitNameBuilder<'tcx> {
435435
pub fn new(tcx: TyCtxt<'tcx>) -> Self {
436436
CodegenUnitNameBuilder { tcx, cache: Default::default() }
437437
}

compiler/rustc_middle/src/mir/pretty.rs

+12-10
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ fn dump_matched_mir_node<'tcx, F>(
167167

168168
/// Returns the file basename portion (without extension) of a filename path
169169
/// where we should dump a MIR representation output files.
170-
fn dump_file_basename(
171-
tcx: TyCtxt<'_>,
170+
fn dump_file_basename<'tcx>(
171+
tcx: TyCtxt<'tcx>,
172172
pass_num: Option<&dyn Display>,
173173
pass_name: &str,
174174
disambiguator: &dyn Display,
@@ -251,8 +251,8 @@ fn create_dump_file_with_basename(
251251
/// bit of MIR-related data. Used by `mir-dump`, but also by other
252252
/// bits of code (e.g., NLL inference) that dump graphviz data or
253253
/// other things, and hence takes the extension as an argument.
254-
pub fn create_dump_file(
255-
tcx: TyCtxt<'_>,
254+
pub fn create_dump_file<'tcx>(
255+
tcx: TyCtxt<'tcx>,
256256
extension: &str,
257257
pass_num: Option<&dyn Display>,
258258
pass_name: &str,
@@ -419,15 +419,15 @@ struct ExtraComments<'tcx> {
419419
comments: Vec<String>,
420420
}
421421

422-
impl ExtraComments<'tcx> {
422+
impl<'tcx> ExtraComments<'tcx> {
423423
fn push(&mut self, lines: &str) {
424424
for line in lines.split('\n') {
425425
self.comments.push(line.to_string());
426426
}
427427
}
428428
}
429429

430-
fn use_verbose(ty: &&TyS<'tcx>, fn_def: bool) -> bool {
430+
fn use_verbose<'tcx>(ty: &&TyS<'tcx>, fn_def: bool) -> bool {
431431
match ty.kind() {
432432
ty::Int(_) | ty::Uint(_) | ty::Bool | ty::Char | ty::Float(_) => false,
433433
// Unit type
@@ -439,7 +439,7 @@ fn use_verbose(ty: &&TyS<'tcx>, fn_def: bool) -> bool {
439439
}
440440
}
441441

442-
impl Visitor<'tcx> for ExtraComments<'tcx> {
442+
impl<'tcx> Visitor<'tcx> for ExtraComments<'tcx> {
443443
fn visit_constant(&mut self, constant: &Constant<'tcx>, location: Location) {
444444
self.super_constant(constant, location);
445445
let Constant { span, user_ty, literal } = constant;
@@ -762,7 +762,7 @@ pub fn write_allocations<'tcx>(
762762
/// After the hex dump, an ascii dump follows, replacing all unprintable characters (control
763763
/// characters or characters whose value is larger than 127) with a `.`
764764
/// This also prints relocations adequately.
765-
pub fn display_allocation<Tag, Extra>(
765+
pub fn display_allocation<'a, 'tcx, Tag, Extra>(
766766
tcx: TyCtxt<'tcx>,
767767
alloc: &'a Allocation<Tag, Extra>,
768768
) -> RenderAllocation<'a, 'tcx, Tag, Extra> {
@@ -775,7 +775,9 @@ pub struct RenderAllocation<'a, 'tcx, Tag, Extra> {
775775
alloc: &'a Allocation<Tag, Extra>,
776776
}
777777

778-
impl<Tag: Provenance, Extra> std::fmt::Display for RenderAllocation<'a, 'tcx, Tag, Extra> {
778+
impl<'a, 'tcx, Tag: Provenance, Extra> std::fmt::Display
779+
for RenderAllocation<'a, 'tcx, Tag, Extra>
780+
{
779781
fn fmt(&self, w: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
780782
let RenderAllocation { tcx, alloc } = *self;
781783
write!(w, "size: {}, align: {})", alloc.size().bytes(), alloc.align.bytes())?;
@@ -818,7 +820,7 @@ fn write_allocation_newline(
818820
/// The `prefix` argument allows callers to add an arbitrary prefix before each line (even if there
819821
/// is only one line). Note that your prefix should contain a trailing space as the lines are
820822
/// printed directly after it.
821-
fn write_allocation_bytes<Tag: Provenance, Extra>(
823+
fn write_allocation_bytes<'tcx, Tag: Provenance, Extra>(
822824
tcx: TyCtxt<'tcx>,
823825
alloc: &Allocation<Tag, Extra>,
824826
w: &mut dyn std::fmt::Write,

compiler/rustc_middle/src/mir/traversal.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ pub fn reachable<'a, 'tcx>(
300300
}
301301

302302
/// Returns a `BitSet` containing all basic blocks reachable from the `START_BLOCK`.
303-
pub fn reachable_as_bitset(body: &Body<'tcx>) -> BitSet<BasicBlock> {
303+
pub fn reachable_as_bitset<'tcx>(body: &Body<'tcx>) -> BitSet<BasicBlock> {
304304
let mut iter = preorder(body);
305305
(&mut iter).for_each(drop);
306306
iter.visited

compiler/rustc_middle/src/mir/visit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ macro_rules! visit_place_fns {
965965
}
966966
}
967967

968-
fn process_projection(
968+
fn process_projection<'a>(
969969
&mut self,
970970
projection: &'a [PlaceElem<'tcx>],
971971
location: Location,

compiler/rustc_middle/src/traits/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ impl<'tcx> fmt::Debug for ObligationCause<'tcx> {
101101
}
102102
}
103103

104-
impl Deref for ObligationCause<'tcx> {
104+
impl<'tcx> Deref for ObligationCause<'tcx> {
105105
type Target = ObligationCauseData<'tcx>;
106106

107107
#[inline(always)]

compiler/rustc_middle/src/traits/specialization_graph.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ impl<'tcx> Ancestors<'tcx> {
216216
///
217217
/// Returns `Err` if an error was reported while building the specialization
218218
/// graph.
219-
pub fn ancestors(
219+
pub fn ancestors<'tcx>(
220220
tcx: TyCtxt<'tcx>,
221221
trait_def_id: DefId,
222222
start_from_impl: DefId,

compiler/rustc_middle/src/traits/structural_impls.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl<N: fmt::Debug> fmt::Debug for traits::ImplSourceBuiltinData<N> {
7474
}
7575
}
7676

77-
impl<N: fmt::Debug> fmt::Debug for traits::ImplSourceTraitUpcastingData<'tcx, N> {
77+
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::ImplSourceTraitUpcastingData<'tcx, N> {
7878
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
7979
write!(
8080
f,

compiler/rustc_middle/src/ty/_match.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ pub struct Match<'tcx> {
2323
param_env: ty::ParamEnv<'tcx>,
2424
}
2525

26-
impl Match<'tcx> {
26+
impl<'tcx> Match<'tcx> {
2727
pub fn new(tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>) -> Match<'tcx> {
2828
Match { tcx, param_env }
2929
}
3030
}
3131

32-
impl TypeRelation<'tcx> for Match<'tcx> {
32+
impl<'tcx> TypeRelation<'tcx> for Match<'tcx> {
3333
fn tag(&self) -> &'static str {
3434
"Match"
3535
}

compiler/rustc_middle/src/ty/adjustment.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub struct Adjustment<'tcx> {
8383
pub target: Ty<'tcx>,
8484
}
8585

86-
impl Adjustment<'tcx> {
86+
impl<'tcx> Adjustment<'tcx> {
8787
pub fn is_region_borrow(&self) -> bool {
8888
matches!(self.kind, Adjust::Borrow(AutoBorrow::Ref(..)))
8989
}

compiler/rustc_middle/src/ty/assoc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ impl<'tcx> AssocItems<'tcx> {
139139
/// Multiple items may have the same name if they are in different `Namespace`s. For example,
140140
/// an associated type can have the same name as a method. Use one of the `find_by_name_and_*`
141141
/// methods below if you know which item you are looking for.
142-
pub fn filter_by_name(
142+
pub fn filter_by_name<'a>(
143143
&'a self,
144144
tcx: TyCtxt<'a>,
145145
ident: Ident,

compiler/rustc_middle/src/ty/closure.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ pub struct CapturedPlace<'tcx> {
156156
pub mutability: hir::Mutability,
157157
}
158158

159-
impl CapturedPlace<'tcx> {
159+
impl<'tcx> CapturedPlace<'tcx> {
160160
pub fn to_string(&self, tcx: TyCtxt<'tcx>) -> String {
161161
place_to_string_for_capture(tcx, &self.place)
162162
}
@@ -328,7 +328,7 @@ pub struct CaptureInfo<'tcx> {
328328
pub capture_kind: UpvarCapture<'tcx>,
329329
}
330330

331-
pub fn place_to_string_for_capture(tcx: TyCtxt<'tcx>, place: &HirPlace<'tcx>) -> String {
331+
pub fn place_to_string_for_capture<'tcx>(tcx: TyCtxt<'tcx>, place: &HirPlace<'tcx>) -> String {
332332
let mut curr_string: String = match place.base {
333333
HirPlaceBase::Upvar(upvar_id) => tcx.hir().name(upvar_id.var_path.hir_id).to_string(),
334334
_ => bug!("Capture_information should only contain upvars"),

compiler/rustc_middle/src/ty/codec.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ pub trait RefDecodable<'tcx, D: TyDecoder<'tcx>> {
7676
}
7777

7878
/// Encode the given value or a previously cached shorthand.
79-
pub fn encode_with_shorthand<E, T, M>(encoder: &mut E, value: &T, cache: M) -> Result<(), E::Error>
79+
pub fn encode_with_shorthand<'tcx, E, T, M>(
80+
encoder: &mut E,
81+
value: &T,
82+
cache: M,
83+
) -> Result<(), E::Error>
8084
where
8185
E: TyEncoder<'tcx>,
8286
M: for<'b> Fn(&'b mut E) -> &'b mut FxHashMap<T, usize>,

compiler/rustc_middle/src/ty/consts/int.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl ScalarInt {
234234
}
235235

236236
#[inline]
237-
pub fn try_to_machine_usize(&self, tcx: TyCtxt<'tcx>) -> Result<u64, Size> {
237+
pub fn try_to_machine_usize<'tcx>(&self, tcx: TyCtxt<'tcx>) -> Result<u64, Size> {
238238
Ok(self.to_bits(tcx.data_layout.pointer_size)? as u64)
239239
}
240240
}

compiler/rustc_middle/src/ty/consts/valtree.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub enum ValTree<'tcx> {
2727
Branch(&'tcx [ValTree<'tcx>]),
2828
}
2929

30-
impl ValTree<'tcx> {
30+
impl<'tcx> ValTree<'tcx> {
3131
pub fn zst() -> Self {
3232
Self::Branch(&[])
3333
}

0 commit comments

Comments
 (0)