Skip to content

Commit d765fb8

Browse files
committed
add comments explaining where post-mono const eval errors abort compilation
1 parent 39db6a0 commit d765fb8

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

compiler/rustc_codegen_cranelift/src/constant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pub(crate) fn eval_mir_constant<'tcx>(
7171
// This cannot fail because we checked all required_consts in advance.
7272
let val = cv
7373
.eval(fx.tcx, ty::ParamEnv::reveal_all(), Some(constant.span))
74-
.expect("erroneous constant not captured by required_consts");
74+
.expect("erroneous constant missed by mono item collection");
7575
(val, cv.ty())
7676
}
7777

compiler/rustc_codegen_ssa/src/mir/constant.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
2121
}
2222

2323
pub fn eval_mir_constant(&self, constant: &mir::ConstOperand<'tcx>) -> mir::ConstValue<'tcx> {
24-
// `MirUsedCollector` visited all constants before codegen began, so if we got here there
25-
// can be no more constants that fail to evaluate.
24+
// `MirUsedCollector` visited all required_consts before codegen began, so if we got here
25+
// there can be no more constants that fail to evaluate.
2626
self.monomorphize(constant.const_)
2727
.eval(self.cx.tcx(), ty::ParamEnv::reveal_all(), Some(constant.span))
28-
.expect("erroneous constant not captured by required_consts")
28+
.expect("erroneous constant missed by mono item collection")
2929
}
3030

3131
/// This is a convenience helper for `simd_shuffle_indices`. It has the precondition

compiler/rustc_codegen_ssa/src/mir/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ pub fn codegen_mir<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
211211

212212
// It may seem like we should iterate over `required_consts` to ensure they all successfully
213213
// evaluate; however, the `MirUsedCollector` already did that during the collection phase of
214-
// monomorphization so we don't have to do it again.
214+
// monomorphization, and if there is an error during collection then codegen never starts -- so
215+
// we don't have to do it again.
215216

216217
fx.per_local_var_debug_info = fx.compute_per_local_var_debug_info(&mut start_bx);
217218

compiler/rustc_monomorphize/src/collector.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -814,13 +814,16 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirUsedCollector<'a, 'tcx> {
814814
self.super_rvalue(rvalue, location);
815815
}
816816

817-
/// This does not walk the constant, as it has been handled entirely here and trying
818-
/// to walk it would attempt to evaluate the `ty::Const` inside, which doesn't necessarily
819-
/// work, as some constants cannot be represented in the type system.
817+
/// This does not walk the MIR of the constant as that is not needed for codegen, all we need is
818+
/// to ensure that the constant evaluates successfully and walk the result.
820819
#[instrument(skip(self), level = "debug")]
821820
fn visit_constant(&mut self, constant: &mir::ConstOperand<'tcx>, location: Location) {
822821
let const_ = self.monomorphize(constant.const_);
823822
let param_env = ty::ParamEnv::reveal_all();
823+
// Evaluate the constant. This makes const eval failure a collection-time error (rather than
824+
// a codegen-time error). rustc stops after collection if there was an error, so this
825+
// ensures codegen never has to worry about failing consts.
826+
// (codegen relies on this and ICEs will happen if this is violated.)
824827
let val = match const_.eval(self.tcx, param_env, None) {
825828
Ok(v) => v,
826829
Err(ErrorHandled::Reported(..)) => return,

compiler/rustc_monomorphize/src/partitioning.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1114,6 +1114,9 @@ fn collect_and_partition_mono_items(tcx: TyCtxt<'_>, (): ()) -> (&DefIdSet, &[Co
11141114

11151115
let (items, usage_map) = collector::collect_crate_mono_items(tcx, collection_mode);
11161116

1117+
// If there was an error during collection (e.g. from one of the constants we evaluated),
1118+
// then we stop here. This way codegen does not have to worry about failing constants.
1119+
// (codegen relies on this and ICEs will happen if this is violated.)
11171120
tcx.dcx().abort_if_errors();
11181121

11191122
let (codegen_units, _) = tcx.sess.time("partition_and_assert_distinct_symbols", || {

0 commit comments

Comments
 (0)