Skip to content

Commit ed9d69b

Browse files
Rename struct_tail_erasing_lifetimes to struct_tail_for_codegen
1 parent f81549c commit ed9d69b

File tree

16 files changed

+22
-27
lines changed

16 files changed

+22
-27
lines changed

compiler/rustc_codegen_cranelift/src/common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ pub(crate) fn has_ptr_meta<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> bool {
107107
return false;
108108
}
109109

110-
let tail = tcx.struct_tail_erasing_lifetimes(ty, ParamEnv::reveal_all());
110+
let tail = tcx.struct_tail_for_codegen(ty, ParamEnv::reveal_all());
111111
match tail.kind() {
112112
ty::Foreign(..) => false,
113113
ty::Str | ty::Slice(..) | ty::Dynamic(..) => true,

compiler/rustc_codegen_cranelift/src/unsize.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub(crate) fn unsized_info<'tcx>(
2222
old_info: Option<Value>,
2323
) -> Value {
2424
let (source, target) =
25-
fx.tcx.struct_lockstep_tails_erasing_lifetimes(source, target, ParamEnv::reveal_all());
25+
fx.tcx.struct_lockstep_tails_for_codegen(source, target, ParamEnv::reveal_all());
2626
match (&source.kind(), &target.kind()) {
2727
(&ty::Array(_, len), &ty::Slice(_)) => fx
2828
.bcx

compiler/rustc_codegen_llvm/src/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
532532
#[instrument(level = "trace", skip(self))]
533533
fn load_operand(&mut self, place: PlaceRef<'tcx, &'ll Value>) -> OperandRef<'tcx, &'ll Value> {
534534
if place.layout.is_unsized() {
535-
let tail = self.tcx.struct_tail_erasing_lifetimes(place.layout.ty, self.param_env());
535+
let tail = self.tcx.struct_tail_for_codegen(place.layout.ty, self.param_env());
536536
if matches!(tail.kind(), ty::Foreign(..)) {
537537
// Unsized locals and, at least conceptually, even unsized arguments must be copied
538538
// around, which requires dynamically determining their size. Therefore, we cannot

compiler/rustc_codegen_llvm/src/debuginfo/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub(crate) fn fat_pointer_kind<'ll, 'tcx>(
6262
cx: &CodegenCx<'ll, 'tcx>,
6363
pointee_ty: Ty<'tcx>,
6464
) -> Option<FatPtrKind> {
65-
let pointee_tail_ty = cx.tcx.struct_tail_erasing_lifetimes(pointee_ty, cx.param_env());
65+
let pointee_tail_ty = cx.tcx.struct_tail_for_codegen(pointee_ty, cx.param_env());
6666
let layout = cx.layout_of(pointee_tail_ty);
6767
trace!(
6868
"fat_pointer_kind: {:?} has layout {:?} (is_unsized? {})",

compiler/rustc_codegen_ssa/src/base.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ pub fn unsized_info<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
143143
) -> Bx::Value {
144144
let cx = bx.cx();
145145
let (source, target) =
146-
cx.tcx().struct_lockstep_tails_erasing_lifetimes(source, target, bx.param_env());
146+
cx.tcx().struct_lockstep_tails_for_codegen(source, target, bx.param_env());
147147
match (source.kind(), target.kind()) {
148148
(&ty::Array(_, len), &ty::Slice(_)) => {
149149
cx.const_usize(len.eval_target_usize(cx.tcx(), ty::ParamEnv::reveal_all()))

compiler/rustc_codegen_ssa/src/traits/type_.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub trait DerivedTypeMethods<'tcx>: BaseTypeMethods<'tcx> + MiscMethods<'tcx> {
9191
return false;
9292
}
9393

94-
let tail = self.tcx().struct_tail_erasing_lifetimes(ty, param_env);
94+
let tail = self.tcx().struct_tail_for_codegen(ty, param_env);
9595
match tail.kind() {
9696
ty::Foreign(..) => false,
9797
ty::Str | ty::Slice(..) | ty::Dynamic(..) => true,

compiler/rustc_const_eval/src/interpret/call.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -678,9 +678,8 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
678678
} else {
679679
// Doesn't have to be a `dyn Trait`, but the unsized tail must be `dyn Trait`.
680680
// (For that reason we also cannot use `unpack_dyn_trait`.)
681-
let receiver_tail = self
682-
.tcx
683-
.struct_tail_erasing_lifetimes(receiver_place.layout.ty, self.param_env);
681+
let receiver_tail =
682+
self.tcx.struct_tail_for_codegen(receiver_place.layout.ty, self.param_env);
684683
let ty::Dynamic(receiver_trait, _, ty::Dyn) = receiver_tail.kind() else {
685684
span_bug!(
686685
self.cur_span(),

compiler/rustc_const_eval/src/interpret/cast.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
386386
) -> InterpResult<'tcx> {
387387
// A<Struct> -> A<Trait> conversion
388388
let (src_pointee_ty, dest_pointee_ty) =
389-
self.tcx.struct_lockstep_tails_erasing_lifetimes(source_ty, cast_ty, self.param_env);
389+
self.tcx.struct_lockstep_tails_for_codegen(source_ty, cast_ty, self.param_env);
390390

391391
match (&src_pointee_ty.kind(), &dest_pointee_ty.kind()) {
392392
(&ty::Array(_, length), &ty::Slice(_)) => {

compiler/rustc_const_eval/src/interpret/validity.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {
343343
meta: MemPlaceMeta<M::Provenance>,
344344
pointee: TyAndLayout<'tcx>,
345345
) -> InterpResult<'tcx> {
346-
let tail = self.ecx.tcx.struct_tail_erasing_lifetimes(pointee.ty, self.ecx.param_env);
346+
let tail = self.ecx.tcx.struct_tail_for_codegen(pointee.ty, self.ecx.param_env);
347347
match tail.kind() {
348348
ty::Dynamic(data, _, ty::Dyn) => {
349349
let vtable = meta.unwrap_meta().to_pointer(self.ecx)?;

compiler/rustc_const_eval/src/util/alignment.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ where
2222
};
2323

2424
let ty = place.ty(local_decls, tcx).ty;
25-
let unsized_tail = || tcx.struct_tail_erasing_lifetimes(ty, param_env);
25+
let unsized_tail = || tcx.struct_tail_for_codegen(ty, param_env);
2626
match tcx.layout_of(param_env.and(ty)) {
2727
Ok(layout)
2828
if layout.align.abi <= pack

compiler/rustc_hir_analysis/src/check/wfcheck.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ fn check_item_type(
12761276
UnsizedHandling::Forbid => true,
12771277
UnsizedHandling::Allow => false,
12781278
UnsizedHandling::AllowIfForeignTail => {
1279-
let tail = tcx.struct_tail_erasing_lifetimes(item_ty, wfcx.param_env);
1279+
let tail = tcx.struct_tail_for_codegen(item_ty, wfcx.param_env);
12801280
!matches!(tail.kind(), ty::Foreign(_))
12811281
}
12821282
};

compiler/rustc_middle/src/ty/layout.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ where
869869
metadata
870870
}
871871
} else {
872-
match tcx.struct_tail_erasing_lifetimes(pointee, cx.param_env()).kind() {
872+
match tcx.struct_tail_for_codegen(pointee, cx.param_env()).kind() {
873873
ty::Slice(_) | ty::Str => tcx.types.usize,
874874
ty::Dynamic(data, _, ty::Dyn) => mk_dyn_vtable(data.principal()),
875875
_ => bug!("TyAndLayout::field({:?}): not applicable", this),
@@ -1348,7 +1348,7 @@ impl<'tcx> TyCtxt<'tcx> {
13481348
layout = layout.field(&cx, index);
13491349
if !layout.is_sized() {
13501350
// If it is not sized, then the tail must still have at least a known static alignment.
1351-
let tail = self.struct_tail_erasing_lifetimes(layout.ty, param_env);
1351+
let tail = self.struct_tail_for_codegen(layout.ty, param_env);
13521352
if !matches!(tail.kind(), ty::Slice(..)) {
13531353
bug!(
13541354
"offset of not-statically-aligned field (type {:?}) cannot be computed statically",

compiler/rustc_middle/src/ty/util.rs

+4-8
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,7 @@ impl<'tcx> TyCtxt<'tcx> {
186186
/// Should only be called if `ty` has no inference variables and does not
187187
/// need its lifetimes preserved (e.g. as part of codegen); otherwise
188188
/// normalization attempt may cause compiler bugs.
189-
pub fn struct_tail_erasing_lifetimes(
190-
self,
191-
ty: Ty<'tcx>,
192-
param_env: ty::ParamEnv<'tcx>,
193-
) -> Ty<'tcx> {
189+
pub fn struct_tail_for_codegen(self, ty: Ty<'tcx>, param_env: ty::ParamEnv<'tcx>) -> Ty<'tcx> {
194190
let tcx = self;
195191
tcx.struct_tail_with_normalize(ty, |ty| tcx.normalize_erasing_regions(param_env, ty), || {})
196192
}
@@ -203,7 +199,7 @@ impl<'tcx> TyCtxt<'tcx> {
203199
/// handle `<T as Trait>::Assoc` and `impl Trait`); pass the identity
204200
/// function to indicate no normalization should take place.
205201
///
206-
/// See also `struct_tail_erasing_lifetimes`, which is suitable for use
202+
/// See also `struct_tail_for_codegen`, which is suitable for use
207203
/// during codegen.
208204
pub fn struct_tail_with_normalize(
209205
self,
@@ -278,7 +274,7 @@ impl<'tcx> TyCtxt<'tcx> {
278274
/// Should only be called if the types have no inference variables and do
279275
/// not need their lifetimes preserved (e.g., as part of codegen); otherwise,
280276
/// normalization attempt may cause compiler bugs.
281-
pub fn struct_lockstep_tails_erasing_lifetimes(
277+
pub fn struct_lockstep_tails_for_codegen(
282278
self,
283279
source: Ty<'tcx>,
284280
target: Ty<'tcx>,
@@ -296,7 +292,7 @@ impl<'tcx> TyCtxt<'tcx> {
296292
/// For `(Foo<Foo<T>>, Foo<dyn Trait>)`, the result will be `(Foo<T>, Trait)`,
297293
/// whereas struct_tail produces `T`, and `Trait`, respectively.
298294
///
299-
/// See also `struct_lockstep_tails_erasing_lifetimes`, which is suitable for use
295+
/// See also `struct_lockstep_tails_for_codegen`, which is suitable for use
300296
/// during codegen.
301297
pub fn struct_lockstep_tails_with_normalize(
302298
self,

compiler/rustc_monomorphize/src/collector.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ fn find_vtable_types_for_unsizing<'tcx>(
10191019
if ty.is_sized(tcx.tcx, param_env) {
10201020
return false;
10211021
}
1022-
let tail = tcx.struct_tail_erasing_lifetimes(ty, param_env);
1022+
let tail = tcx.struct_tail_for_codegen(ty, param_env);
10231023
match tail.kind() {
10241024
ty::Foreign(..) => false,
10251025
ty::Str | ty::Slice(..) | ty::Dynamic(..) => true,
@@ -1029,7 +1029,7 @@ fn find_vtable_types_for_unsizing<'tcx>(
10291029
if type_has_metadata(inner_source) {
10301030
(inner_source, inner_target)
10311031
} else {
1032-
tcx.struct_lockstep_tails_erasing_lifetimes(inner_source, inner_target, param_env)
1032+
tcx.struct_lockstep_tails_for_codegen(inner_source, inner_target, param_env)
10331033
}
10341034
};
10351035

compiler/rustc_ty_utils/src/abi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ fn fn_abi_sanity_check<'tcx>(
549549
// With metadata. Must be unsized and not on the stack.
550550
assert!(arg.layout.is_unsized() && !on_stack);
551551
// Also, must not be `extern` type.
552-
let tail = cx.tcx.struct_tail_erasing_lifetimes(arg.layout.ty, cx.param_env());
552+
let tail = cx.tcx.struct_tail_for_codegen(arg.layout.ty, cx.param_env());
553553
if matches!(tail.kind(), ty::Foreign(..)) {
554554
// These types do not have metadata, so having `meta_attrs` is bogus.
555555
// Conceptually, unsized arguments must be copied around, which requires dynamically

compiler/rustc_ty_utils/src/layout.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ fn layout_of_uncached<'tcx>(
244244

245245
metadata
246246
} else {
247-
let unsized_part = tcx.struct_tail_erasing_lifetimes(pointee, param_env);
247+
let unsized_part = tcx.struct_tail_for_codegen(pointee, param_env);
248248

249249
match unsized_part.kind() {
250250
ty::Foreign(..) => {

0 commit comments

Comments
 (0)