@@ -175,7 +175,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
175
175
Drop { place, target, unwind, replace : _ } => {
176
176
let place = self . eval_place ( place) ?;
177
177
let instance = Instance :: resolve_drop_in_place ( * self . tcx , place. layout . ty ) ;
178
- if let ty:: InstanceDef :: DropGlue ( _, None ) = instance. def {
178
+ if let ty:: InstanceKind :: DropGlue ( _, None ) = instance. def {
179
179
// This is the branch we enter if and only if the dropped type has no drop glue
180
180
// whatsoever. This can happen as a result of monomorphizing a drop of a
181
181
// generic. In order to make sure that generic and non-generic code behaves
@@ -550,7 +550,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
550
550
} ;
551
551
552
552
match instance. def {
553
- ty:: InstanceDef :: Intrinsic ( def_id) => {
553
+ ty:: InstanceKind :: Intrinsic ( def_id) => {
554
554
assert ! ( self . tcx. intrinsic( def_id) . is_some( ) ) ;
555
555
// FIXME: Should `InPlace` arguments be reset to uninit?
556
556
if let Some ( fallback) = M :: call_intrinsic (
@@ -562,7 +562,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
562
562
unwind,
563
563
) ? {
564
564
assert ! ( !self . tcx. intrinsic( fallback. def_id( ) ) . unwrap( ) . must_be_overridden) ;
565
- assert ! ( matches!( fallback. def, ty:: InstanceDef :: Item ( _) ) ) ;
565
+ assert ! ( matches!( fallback. def, ty:: InstanceKind :: Item ( _) ) ) ;
566
566
return self . eval_fn_call (
567
567
FnVal :: Instance ( fallback) ,
568
568
( caller_abi, caller_fn_abi) ,
@@ -576,18 +576,18 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
576
576
Ok ( ( ) )
577
577
}
578
578
}
579
- ty:: InstanceDef :: VTableShim ( ..)
580
- | ty:: InstanceDef :: ReifyShim ( ..)
581
- | ty:: InstanceDef :: ClosureOnceShim { .. }
582
- | ty:: InstanceDef :: ConstructCoroutineInClosureShim { .. }
583
- | ty:: InstanceDef :: CoroutineKindShim { .. }
584
- | ty:: InstanceDef :: FnPtrShim ( ..)
585
- | ty:: InstanceDef :: DropGlue ( ..)
586
- | ty:: InstanceDef :: CloneShim ( ..)
587
- | ty:: InstanceDef :: FnPtrAddrShim ( ..)
588
- | ty:: InstanceDef :: ThreadLocalShim ( ..)
589
- | ty:: InstanceDef :: AsyncDropGlueCtorShim ( ..)
590
- | ty:: InstanceDef :: Item ( _) => {
579
+ ty:: InstanceKind :: VTableShim ( ..)
580
+ | ty:: InstanceKind :: ReifyShim ( ..)
581
+ | ty:: InstanceKind :: ClosureOnceShim { .. }
582
+ | ty:: InstanceKind :: ConstructCoroutineInClosureShim { .. }
583
+ | ty:: InstanceKind :: CoroutineKindShim { .. }
584
+ | ty:: InstanceKind :: FnPtrShim ( ..)
585
+ | ty:: InstanceKind :: DropGlue ( ..)
586
+ | ty:: InstanceKind :: CloneShim ( ..)
587
+ | ty:: InstanceKind :: FnPtrAddrShim ( ..)
588
+ | ty:: InstanceKind :: ThreadLocalShim ( ..)
589
+ | ty:: InstanceKind :: AsyncDropGlueCtorShim ( ..)
590
+ | ty:: InstanceKind :: Item ( _) => {
591
591
// We need MIR for this fn
592
592
let Some ( ( body, instance) ) = M :: find_mir_or_eval_fn (
593
593
self ,
@@ -786,9 +786,9 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
786
786
Ok ( ( ) ) => Ok ( ( ) ) ,
787
787
}
788
788
}
789
- // `InstanceDef ::Virtual` does not have callable MIR. Calls to `Virtual` instances must be
789
+ // `InstanceKind ::Virtual` does not have callable MIR. Calls to `Virtual` instances must be
790
790
// codegen'd / interpreted as virtual calls through the vtable.
791
- ty:: InstanceDef :: Virtual ( def_id, idx) => {
791
+ ty:: InstanceKind :: Virtual ( def_id, idx) => {
792
792
let mut args = args. to_vec ( ) ;
793
793
// We have to implement all "object safe receivers". So we have to go search for a
794
794
// pointer or `dyn Trait` type, but it could be wrapped in newtypes. So recursively
@@ -965,7 +965,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
965
965
let place = self . force_allocation ( place) ?;
966
966
967
967
// We behave a bit different from codegen here.
968
- // Codegen creates an `InstanceDef ::Virtual` with index 0 (the slot of the drop method) and
968
+ // Codegen creates an `InstanceKind ::Virtual` with index 0 (the slot of the drop method) and
969
969
// then dispatches that to the normal call machinery. However, our call machinery currently
970
970
// only supports calling `VtblEntry::Method`; it would choke on a `MetadataDropInPlace`. So
971
971
// instead we do the virtual call stuff ourselves. It's easier here than in `eval_fn_call`
0 commit comments