Skip to content

Commit 2e3b295

Browse files
authored
Rollup merge of rust-lang#91901 - SylvanB:remove_in_band_lifetimes_rustc_symbol_mangling, r=jackh726
Remove `in_band_lifetimes` from `rustc_symbol_mangling` Helping out with rust-lang#91867
2 parents 50ab166 + b682dec commit 2e3b295

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

compiler/rustc_symbol_mangling/src/legacy.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use tracing::debug;
1313
use std::fmt::{self, Write};
1414
use std::mem::{self, discriminant};
1515

16-
pub(super) fn mangle(
16+
pub(super) fn mangle<'tcx>(
1717
tcx: TyCtxt<'tcx>,
1818
instance: Instance<'tcx>,
1919
instantiating_crate: Option<CrateNum>,
@@ -199,7 +199,7 @@ struct SymbolPrinter<'tcx> {
199199
// `PrettyPrinter` aka pretty printing of e.g. types in paths,
200200
// symbol names should have their own printing machinery.
201201

202-
impl Printer<'tcx> for &mut SymbolPrinter<'tcx> {
202+
impl<'tcx> Printer<'tcx> for &mut SymbolPrinter<'tcx> {
203203
type Error = fmt::Error;
204204

205205
type Path = Self;
@@ -345,7 +345,7 @@ impl Printer<'tcx> for &mut SymbolPrinter<'tcx> {
345345
}
346346
}
347347

348-
impl PrettyPrinter<'tcx> for &mut SymbolPrinter<'tcx> {
348+
impl<'tcx> PrettyPrinter<'tcx> for &mut SymbolPrinter<'tcx> {
349349
fn region_should_not_be_omitted(&self, _region: ty::Region<'_>) -> bool {
350350
false
351351
}

compiler/rustc_symbol_mangling/src/lib.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@
9090
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
9191
#![feature(never_type)]
9292
#![feature(nll)]
93-
#![feature(in_band_lifetimes)]
9493
#![feature(iter_zip)]
9594
#![recursion_limit = "256"]
9695

@@ -117,7 +116,7 @@ pub mod test;
117116
/// This function computes the symbol name for the given `instance` and the
118117
/// given instantiating crate. That is, if you know that instance X is
119118
/// instantiated in crate Y, this is the symbol name this instance would have.
120-
pub fn symbol_name_for_instance_in_crate(
119+
pub fn symbol_name_for_instance_in_crate<'tcx>(
121120
tcx: TyCtxt<'tcx>,
122121
instance: Instance<'tcx>,
123122
instantiating_crate: CrateNum,
@@ -132,7 +131,7 @@ pub fn provide(providers: &mut Providers) {
132131
// The `symbol_name` query provides the symbol name for calling a given
133132
// instance from the local crate. In particular, it will also look up the
134133
// correct symbol name of instances from upstream crates.
135-
fn symbol_name_provider(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) -> ty::SymbolName<'tcx> {
134+
fn symbol_name_provider<'tcx>(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) -> ty::SymbolName<'tcx> {
136135
let symbol_name = compute_symbol_name(tcx, instance, || {
137136
// This closure determines the instantiating crate for instances that
138137
// need an instantiating-crate-suffix for their symbol name, in order
@@ -152,14 +151,14 @@ fn symbol_name_provider(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) -> ty::Symb
152151
}
153152

154153
/// This function computes the typeid for the given function ABI.
155-
pub fn typeid_for_fnabi(tcx: TyCtxt<'tcx>, fn_abi: &FnAbi<'tcx, Ty<'tcx>>) -> String {
154+
pub fn typeid_for_fnabi<'tcx>(tcx: TyCtxt<'tcx>, fn_abi: &FnAbi<'tcx, Ty<'tcx>>) -> String {
156155
v0::mangle_typeid_for_fnabi(tcx, fn_abi)
157156
}
158157

159158
/// Computes the symbol name for the given instance. This function will call
160159
/// `compute_instantiating_crate` if it needs to factor the instantiating crate
161160
/// into the symbol name.
162-
fn compute_symbol_name(
161+
fn compute_symbol_name<'tcx>(
163162
tcx: TyCtxt<'tcx>,
164163
instance: Instance<'tcx>,
165164
compute_instantiating_crate: impl FnOnce() -> CrateNum,

compiler/rustc_symbol_mangling/src/test.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct SymbolNamesTest<'tcx> {
3131
tcx: TyCtxt<'tcx>,
3232
}
3333

34-
impl SymbolNamesTest<'tcx> {
34+
impl SymbolNamesTest<'_> {
3535
fn process_attrs(&mut self, def_id: LocalDefId) {
3636
let tcx = self.tcx;
3737
for attr in tcx.get_attrs(def_id.to_def_id()).iter() {
@@ -59,7 +59,7 @@ impl SymbolNamesTest<'tcx> {
5959
}
6060
}
6161

62-
impl hir::itemlikevisit::ItemLikeVisitor<'tcx> for SymbolNamesTest<'tcx> {
62+
impl<'tcx> hir::itemlikevisit::ItemLikeVisitor<'tcx> for SymbolNamesTest<'tcx> {
6363
fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
6464
self.process_attrs(item.def_id);
6565
}

compiler/rustc_symbol_mangling/src/v0.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use std::fmt::Write;
1717
use std::iter;
1818
use std::ops::Range;
1919

20-
pub(super) fn mangle(
20+
pub(super) fn mangle<'tcx>(
2121
tcx: TyCtxt<'tcx>,
2222
instance: Instance<'tcx>,
2323
instantiating_crate: Option<CrateNum>,
@@ -56,7 +56,7 @@ pub(super) fn mangle(
5656
std::mem::take(&mut cx.out)
5757
}
5858

59-
pub(super) fn mangle_typeid_for_fnabi(
59+
pub(super) fn mangle_typeid_for_fnabi<'tcx>(
6060
_tcx: TyCtxt<'tcx>,
6161
fn_abi: &FnAbi<'tcx, Ty<'tcx>>,
6262
) -> String {
@@ -118,7 +118,7 @@ struct SymbolMangler<'tcx> {
118118
consts: FxHashMap<&'tcx ty::Const<'tcx>, usize>,
119119
}
120120

121-
impl SymbolMangler<'tcx> {
121+
impl<'tcx> SymbolMangler<'tcx> {
122122
fn push(&mut self, s: &str) {
123123
self.out.push_str(s);
124124
}
@@ -250,7 +250,7 @@ impl SymbolMangler<'tcx> {
250250
}
251251
}
252252

253-
impl Printer<'tcx> for &mut SymbolMangler<'tcx> {
253+
impl<'tcx> Printer<'tcx> for &mut SymbolMangler<'tcx> {
254254
type Error = !;
255255

256256
type Path = Self;

0 commit comments

Comments
 (0)