Rename InstanceDef -> InstanceKind
This commit is contained in:
parent
55cac26a9e
commit
342c1b03d6
53 changed files with 421 additions and 418 deletions
|
@ -5,7 +5,7 @@ use rustc_middle::query::Providers;
|
|||
use rustc_middle::ty::layout::{
|
||||
fn_can_unwind, FnAbiError, HasParamEnv, HasTyCtxt, LayoutCx, LayoutOf, TyAndLayout,
|
||||
};
|
||||
use rustc_middle::ty::{self, InstanceDef, Ty, TyCtxt};
|
||||
use rustc_middle::ty::{self, InstanceKind, Ty, TyCtxt};
|
||||
use rustc_session::config::OptLevel;
|
||||
use rustc_span::def_id::DefId;
|
||||
use rustc_target::abi::call::{
|
||||
|
@ -33,7 +33,7 @@ fn fn_sig_for_fn_abi<'tcx>(
|
|||
instance: ty::Instance<'tcx>,
|
||||
param_env: ty::ParamEnv<'tcx>,
|
||||
) -> ty::PolyFnSig<'tcx> {
|
||||
if let InstanceDef::ThreadLocalShim(..) = instance.def {
|
||||
if let InstanceKind::ThreadLocalShim(..) = instance.def {
|
||||
return ty::Binder::dummy(tcx.mk_fn_sig(
|
||||
[],
|
||||
tcx.thread_local_ptr_ty(instance.def_id()),
|
||||
|
@ -63,7 +63,7 @@ fn fn_sig_for_fn_abi<'tcx>(
|
|||
_ => unreachable!(),
|
||||
};
|
||||
|
||||
if let ty::InstanceDef::VTableShim(..) = instance.def {
|
||||
if let ty::InstanceKind::VTableShim(..) = instance.def {
|
||||
// Modify `fn(self, ...)` to `fn(self: *mut Self, ...)`.
|
||||
sig = sig.map_bound(|mut sig| {
|
||||
let mut inputs_and_output = sig.inputs_and_output.to_vec();
|
||||
|
@ -121,7 +121,7 @@ fn fn_sig_for_fn_abi<'tcx>(
|
|||
let mut coroutine_kind = args.as_coroutine_closure().kind();
|
||||
|
||||
let env_ty =
|
||||
if let InstanceDef::ConstructCoroutineInClosureShim { receiver_by_ref, .. } =
|
||||
if let InstanceKind::ConstructCoroutineInClosureShim { receiver_by_ref, .. } =
|
||||
instance.def
|
||||
{
|
||||
coroutine_kind = ty::ClosureKind::FnOnce;
|
||||
|
@ -174,7 +174,7 @@ fn fn_sig_for_fn_abi<'tcx>(
|
|||
// make sure we respect the `target_kind` in that shim.
|
||||
// FIXME(async_closures): This shouldn't be needed, and we should be populating
|
||||
// a separate def-id for these bodies.
|
||||
if let InstanceDef::CoroutineKindShim { .. } = instance.def {
|
||||
if let InstanceKind::CoroutineKindShim { .. } = instance.def {
|
||||
// Grab the parent coroutine-closure. It has the same args for the purposes
|
||||
// of instantiation, so this will be okay to do.
|
||||
let ty::CoroutineClosure(_, coroutine_closure_args) = *tcx
|
||||
|
@ -386,7 +386,7 @@ fn fn_abi_of_instance<'tcx>(
|
|||
extra_args,
|
||||
caller_location,
|
||||
Some(instance.def_id()),
|
||||
matches!(instance.def, ty::InstanceDef::Virtual(..)),
|
||||
matches!(instance.def, ty::InstanceKind::Virtual(..)),
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ fn resolve_instance<'tcx>(
|
|||
} else {
|
||||
let def = if tcx.intrinsic(def_id).is_some() {
|
||||
debug!(" => intrinsic");
|
||||
ty::InstanceDef::Intrinsic(def_id)
|
||||
ty::InstanceKind::Intrinsic(def_id)
|
||||
} else if tcx.is_lang_item(def_id, LangItem::DropInPlace) {
|
||||
let ty = args.type_at(0);
|
||||
|
||||
|
@ -53,10 +53,10 @@ fn resolve_instance<'tcx>(
|
|||
_ => return Ok(None),
|
||||
}
|
||||
|
||||
ty::InstanceDef::DropGlue(def_id, Some(ty))
|
||||
ty::InstanceKind::DropGlue(def_id, Some(ty))
|
||||
} else {
|
||||
debug!(" => trivial drop glue");
|
||||
ty::InstanceDef::DropGlue(def_id, None)
|
||||
ty::InstanceKind::DropGlue(def_id, None)
|
||||
}
|
||||
} else if tcx.is_lang_item(def_id, LangItem::AsyncDropInPlace) {
|
||||
let ty = args.type_at(0);
|
||||
|
@ -75,15 +75,15 @@ fn resolve_instance<'tcx>(
|
|||
_ => return Ok(None),
|
||||
}
|
||||
debug!(" => nontrivial async drop glue ctor");
|
||||
ty::InstanceDef::AsyncDropGlueCtorShim(def_id, Some(ty))
|
||||
ty::InstanceKind::AsyncDropGlueCtorShim(def_id, Some(ty))
|
||||
} else {
|
||||
debug!(" => trivial async drop glue ctor");
|
||||
ty::InstanceDef::AsyncDropGlueCtorShim(def_id, None)
|
||||
ty::InstanceKind::AsyncDropGlueCtorShim(def_id, None)
|
||||
}
|
||||
} else {
|
||||
debug!(" => free item");
|
||||
// FIXME(effects): we may want to erase the effect param if that is present on this item.
|
||||
ty::InstanceDef::Item(def_id)
|
||||
ty::InstanceKind::Item(def_id)
|
||||
};
|
||||
|
||||
Ok(Some(Instance { def, args }))
|
||||
|
@ -226,7 +226,7 @@ fn resolve_associated_item<'tcx>(
|
|||
.copied()
|
||||
.position(|def_id| def_id == trait_item_id);
|
||||
offset.map(|offset| Instance {
|
||||
def: ty::InstanceDef::Virtual(trait_item_id, vtable_base + offset),
|
||||
def: ty::InstanceKind::Virtual(trait_item_id, vtable_base + offset),
|
||||
args: rcvr_args,
|
||||
})
|
||||
}
|
||||
|
@ -248,7 +248,7 @@ fn resolve_associated_item<'tcx>(
|
|||
};
|
||||
|
||||
Some(Instance {
|
||||
def: ty::InstanceDef::CloneShim(trait_item_id, self_ty),
|
||||
def: ty::InstanceKind::CloneShim(trait_item_id, self_ty),
|
||||
args: rcvr_args,
|
||||
})
|
||||
} else {
|
||||
|
@ -265,7 +265,7 @@ fn resolve_associated_item<'tcx>(
|
|||
return Ok(None);
|
||||
}
|
||||
Some(Instance {
|
||||
def: ty::InstanceDef::FnPtrAddrShim(trait_item_id, self_ty),
|
||||
def: ty::InstanceKind::FnPtrAddrShim(trait_item_id, self_ty),
|
||||
args: rcvr_args,
|
||||
})
|
||||
} else {
|
||||
|
@ -283,7 +283,7 @@ fn resolve_associated_item<'tcx>(
|
|||
{
|
||||
// For compiler developers who'd like to add new items to `Fn`/`FnMut`/`FnOnce`,
|
||||
// you either need to generate a shim body, or perhaps return
|
||||
// `InstanceDef::Item` pointing to a trait default method body if
|
||||
// `InstanceKind::Item` pointing to a trait default method body if
|
||||
// it is given a default implementation by the trait.
|
||||
bug!(
|
||||
"no definition for `{trait_ref}::{}` for built-in callable type",
|
||||
|
@ -295,7 +295,7 @@ fn resolve_associated_item<'tcx>(
|
|||
Some(Instance::resolve_closure(tcx, closure_def_id, args, target_kind))
|
||||
}
|
||||
ty::FnDef(..) | ty::FnPtr(..) => Some(Instance {
|
||||
def: ty::InstanceDef::FnPtrShim(trait_item_id, rcvr_args.type_at(0)),
|
||||
def: ty::InstanceKind::FnPtrShim(trait_item_id, rcvr_args.type_at(0)),
|
||||
args: rcvr_args,
|
||||
}),
|
||||
ty::CoroutineClosure(coroutine_closure_def_id, args) => {
|
||||
|
@ -308,7 +308,7 @@ fn resolve_associated_item<'tcx>(
|
|||
Some(Instance::new(coroutine_closure_def_id, args))
|
||||
} else {
|
||||
Some(Instance {
|
||||
def: ty::InstanceDef::ConstructCoroutineInClosureShim {
|
||||
def: ty::InstanceKind::ConstructCoroutineInClosureShim {
|
||||
coroutine_closure_def_id,
|
||||
receiver_by_ref: target_kind != ty::ClosureKind::FnOnce,
|
||||
},
|
||||
|
@ -331,7 +331,7 @@ fn resolve_associated_item<'tcx>(
|
|||
// If we're computing `AsyncFnOnce` for a by-ref closure then
|
||||
// construct a new body that has the right return types.
|
||||
Some(Instance {
|
||||
def: ty::InstanceDef::ConstructCoroutineInClosureShim {
|
||||
def: ty::InstanceKind::ConstructCoroutineInClosureShim {
|
||||
coroutine_closure_def_id,
|
||||
receiver_by_ref: false,
|
||||
},
|
||||
|
@ -345,7 +345,7 @@ fn resolve_associated_item<'tcx>(
|
|||
Some(Instance::resolve_closure(tcx, closure_def_id, args, target_kind))
|
||||
}
|
||||
ty::FnDef(..) | ty::FnPtr(..) => Some(Instance {
|
||||
def: ty::InstanceDef::FnPtrShim(trait_item_id, rcvr_args.type_at(0)),
|
||||
def: ty::InstanceKind::FnPtrShim(trait_item_id, rcvr_args.type_at(0)),
|
||||
args: rcvr_args,
|
||||
}),
|
||||
_ => bug!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue