mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
Comment why normalization is needed for debug assertions
This commit is contained in:
parent
dd51b36fb2
commit
6e6fe30d0f
@ -554,6 +554,13 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
|
|||||||
val: &mir::ConstantKind<'tcx>,
|
val: &mir::ConstantKind<'tcx>,
|
||||||
layout: Option<TyAndLayout<'tcx>>,
|
layout: Option<TyAndLayout<'tcx>>,
|
||||||
) -> InterpResult<'tcx, OpTy<'tcx, M::Provenance>> {
|
) -> InterpResult<'tcx, OpTy<'tcx, M::Provenance>> {
|
||||||
|
// FIXME(const_prop): normalization needed b/c const prop lint in
|
||||||
|
// `mir_drops_elaborated_and_const_checked`, which happens before
|
||||||
|
// optimized MIR. Only after optimizing the MIR can we guarantee
|
||||||
|
// that the `RevealAll` pass has happened and that the body's consts
|
||||||
|
// are normalized, so any call to resolve before that needs to be
|
||||||
|
// manually normalized.
|
||||||
|
let val = self.tcx.normalize_erasing_regions(self.param_env, *val);
|
||||||
match val {
|
match val {
|
||||||
mir::ConstantKind::Ty(ct) => {
|
mir::ConstantKind::Ty(ct) => {
|
||||||
match ct.kind() {
|
match ct.kind() {
|
||||||
@ -585,7 +592,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mir::ConstantKind::Val(val, ty) => self.const_val_to_op(*val, *ty, layout),
|
mir::ConstantKind::Val(val, ty) => self.const_val_to_op(val, ty, layout),
|
||||||
mir::ConstantKind::Unevaluated(uv, _) => {
|
mir::ConstantKind::Unevaluated(uv, _) => {
|
||||||
let instance = self.resolve(uv.def, uv.substs)?;
|
let instance = self.resolve(uv.def, uv.substs)?;
|
||||||
Ok(self.eval_to_allocation(GlobalId { instance, promoted: uv.promoted })?.into())
|
Ok(self.eval_to_allocation(GlobalId { instance, promoted: uv.promoted })?.into())
|
||||||
|
@ -483,7 +483,12 @@ impl<'a, 'tcx> PatCtxt<'a, 'tcx> {
|
|||||||
// Use `Reveal::All` here because patterns are always monomorphic even if their function
|
// Use `Reveal::All` here because patterns are always monomorphic even if their function
|
||||||
// isn't.
|
// isn't.
|
||||||
let param_env_reveal_all = self.param_env.with_reveal_all_normalized(self.tcx);
|
let param_env_reveal_all = self.param_env.with_reveal_all_normalized(self.tcx);
|
||||||
let substs = self.typeck_results.node_substs(id);
|
// N.B. There is no guarantee that substs collected in typeck results are fully normalized,
|
||||||
|
// so they need to be normalized in order to pass to `Instance::resolve`, which will ICE
|
||||||
|
// if given unnormalized types.
|
||||||
|
let substs = self
|
||||||
|
.tcx
|
||||||
|
.normalize_erasing_regions(param_env_reveal_all, self.typeck_results.node_substs(id));
|
||||||
let instance = match ty::Instance::resolve(self.tcx, param_env_reveal_all, def_id, substs) {
|
let instance = match ty::Instance::resolve(self.tcx, param_env_reveal_all, def_id, substs) {
|
||||||
Ok(Some(i)) => i,
|
Ok(Some(i)) => i,
|
||||||
Ok(None) => {
|
Ok(None) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user