Skip to content

Commit e2ea771

Browse files
committed
Eliminate DefiningAnchor::Error, it is indistinguishable from DefiningAnchor::Bind with an empty list
1 parent c20083e commit e2ea771

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
lines changed

compiler/rustc_borrowck/src/region_infer/opaque_types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ fn check_opaque_type_well_formed<'tcx>(
311311
parent_def_id = tcx.local_parent(parent_def_id);
312312
}
313313

314-
// FIXME(-Znext-solver): We probably should use `DefiningAnchor::Error`
314+
// FIXME(-Znext-solver): We probably should use `DefiningAnchor::Bind(&[])`
315315
// and prepopulate this `InferCtxt` with known opaque values, rather than
316316
// using the `Bind` anchor here. For now it's fine.
317317
let infcx = tcx

compiler/rustc_infer/src/infer/mod.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ pub struct InferCtxt<'tcx> {
242242
/// short lived InferCtxt within queries. The opaque type obligations are forwarded
243243
/// to the outside until the end up in an `InferCtxt` for typeck or borrowck.
244244
///
245-
/// Its default value is `DefiningAnchor::Error`, this way it is easier to catch errors that
245+
/// Its default value is `DefiningAnchor::Bind(&[])`, which means no opaque types may be defined.
246+
/// This way it is easier to catch errors that
246247
/// might come up during inference or typeck.
247248
pub defining_use_anchor: DefiningAnchor<'tcx>,
248249

@@ -620,7 +621,7 @@ impl<'tcx> TyCtxt<'tcx> {
620621
fn infer_ctxt(self) -> InferCtxtBuilder<'tcx> {
621622
InferCtxtBuilder {
622623
tcx: self,
623-
defining_use_anchor: DefiningAnchor::Error,
624+
defining_use_anchor: DefiningAnchor::Bind(ty::List::empty()),
624625
considering_regions: true,
625626
skip_leak_check: false,
626627
intercrate: false,
@@ -1208,13 +1209,11 @@ impl<'tcx> InferCtxt<'tcx> {
12081209

12091210
#[instrument(level = "debug", skip(self), ret)]
12101211
pub fn take_opaque_types(&self) -> opaque_types::OpaqueTypeMap<'tcx> {
1211-
debug_assert_ne!(self.defining_use_anchor, DefiningAnchor::Error);
12121212
std::mem::take(&mut self.inner.borrow_mut().opaque_type_storage.opaque_types)
12131213
}
12141214

12151215
#[instrument(level = "debug", skip(self), ret)]
12161216
pub fn clone_opaque_types(&self) -> opaque_types::OpaqueTypeMap<'tcx> {
1217-
debug_assert_ne!(self.defining_use_anchor, DefiningAnchor::Error);
12181217
self.inner.borrow().opaque_type_storage.opaque_types.clone()
12191218
}
12201219

compiler/rustc_infer/src/infer/opaque_types/mod.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,6 @@ impl<'tcx> InferCtxt<'tcx> {
150150
}
151151
}
152152
DefiningAnchor::Bubble => {}
153-
DefiningAnchor::Error => {
154-
return None;
155-
}
156153
}
157154
if let ty::Alias(ty::Opaque, ty::AliasTy { def_id: b_def_id, .. }) = *b.kind() {
158155
// We could accept this, but there are various ways to handle this situation, and we don't
@@ -379,7 +376,7 @@ impl<'tcx> InferCtxt<'tcx> {
379376
#[instrument(skip(self), level = "trace", ret)]
380377
pub fn opaque_type_origin(&self, def_id: LocalDefId) -> Option<OpaqueTyOrigin> {
381378
let defined_opaque_types = match self.defining_use_anchor {
382-
DefiningAnchor::Bubble | DefiningAnchor::Error => return None,
379+
DefiningAnchor::Bubble => return None,
383380
DefiningAnchor::Bind(bind) => bind,
384381
};
385382

compiler/rustc_middle/src/traits/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1004,6 +1004,10 @@ pub enum CodegenObligationError {
10041004
pub enum DefiningAnchor<'tcx> {
10051005
/// Define opaques which are in-scope of the current item being analyzed.
10061006
/// Also, eagerly replace these opaque types in `replace_opaque_types_with_inference_vars`.
1007+
///
1008+
/// If the list is empty, do not allow any opaques to be defined. This is used to catch type mismatch
1009+
/// errors when handling opaque types, and also should be used when we would
1010+
/// otherwise reveal opaques (such as [`Reveal::All`] reveal mode).
10071011
Bind(&'tcx ty::List<LocalDefId>),
10081012
/// In contexts where we don't currently know what opaques are allowed to be
10091013
/// defined, such as (old solver) canonical queries, we will simply allow
@@ -1013,10 +1017,6 @@ pub enum DefiningAnchor<'tcx> {
10131017
/// We do not eagerly replace opaque types in `replace_opaque_types_with_inference_vars`,
10141018
/// which may affect what predicates pass and fail in the old trait solver.
10151019
Bubble,
1016-
/// Do not allow any opaques to be defined. This is used to catch type mismatch
1017-
/// errors when handling opaque types, and also should be used when we would
1018-
/// otherwise reveal opaques (such as [`Reveal::All`] reveal mode).
1019-
Error,
10201020
}
10211021

10221022
impl<'tcx> DefiningAnchor<'tcx> {

compiler/rustc_trait_selection/src/solve/eval_ctxt/mod.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use rustc_middle::traits::solve::{
1616
CanonicalInput, CanonicalResponse, Certainty, IsNormalizesToHack, PredefinedOpaques,
1717
PredefinedOpaquesData, QueryResult,
1818
};
19-
use rustc_middle::traits::{specialization_graph, DefiningAnchor};
19+
use rustc_middle::traits::specialization_graph;
2020
use rustc_middle::ty::{
2121
self, InferCtxtLike, OpaqueTypeKey, Ty, TyCtxt, TypeFoldable, TypeSuperVisitable,
2222
TypeVisitable, TypeVisitableExt, TypeVisitor,
@@ -258,10 +258,7 @@ impl<'a, 'tcx> EvalCtxt<'a, 'tcx> {
258258
// instead of taking them. This would cause an ICE here, since we have
259259
// assertions against dropping an `InferCtxt` without taking opaques.
260260
// FIXME: Once we remove support for the old impl we can remove this.
261-
if input.anchor != DefiningAnchor::Error {
262-
// This seems ok, but fragile.
263-
let _ = infcx.take_opaque_types();
264-
}
261+
let _ = infcx.take_opaque_types();
265262

266263
result
267264
}

0 commit comments

Comments
 (0)