Skip to content

Commit 42014b4

Browse files
authored
Rollup merge of #137505 - tgross35:builtins-cannot-call-error, r=compiler-errors
Add a span to `CompilerBuiltinsCannotCall` Currently, this error emit a diagnostic with no context like: error: `compiler_builtins` cannot call functions through upstream monomorphizations; encountered invalid call from `<math::libm::support::hex_float::Hexf<i32> as core::fmt::LowerHex>::fmt` to `core::fmt::num::<impl core::fmt::LowerHex for i32>::fmt` With this change, it at least usually points to the problematic function: error: `compiler_builtins` cannot call functions through upstream monomorphizations; encountered invalid call from `<math::libm::support::hex_float::Hexf<i32> as core::fmt::LowerHex>::fmt` to `core::fmt::num::<impl core::fmt::LowerHex for i32>::fmt` --> src/../libm/src/math/support/hex_float.rs:270:5 | 270 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
2 parents c9411ea + 7a2db88 commit 42014b4

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

compiler/rustc_codegen_cranelift/src/abi/mod.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -402,9 +402,13 @@ pub(crate) fn codegen_terminator_call<'tcx>(
402402

403403
if is_call_from_compiler_builtins_to_upstream_monomorphization(fx.tcx, instance) {
404404
if target.is_some() {
405-
let caller = with_no_trimmed_paths!(fx.tcx.def_path_str(fx.instance.def_id()));
406-
let callee = with_no_trimmed_paths!(fx.tcx.def_path_str(def_id));
407-
fx.tcx.dcx().emit_err(CompilerBuiltinsCannotCall { caller, callee });
405+
let caller_def = fx.instance.def_id();
406+
let e = CompilerBuiltinsCannotCall {
407+
span: fx.tcx.def_span(caller_def),
408+
caller: with_no_trimmed_paths!(fx.tcx.def_path_str(caller_def)),
409+
callee: with_no_trimmed_paths!(fx.tcx.def_path_str(def_id)),
410+
};
411+
fx.tcx.dcx().emit_err(e);
408412
} else {
409413
fx.bcx.ins().trap(TrapCode::user(2).unwrap());
410414
return;

compiler/rustc_codegen_ssa/src/errors.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,8 @@ pub(crate) struct ErrorCreatingRemarkDir {
11801180
pub struct CompilerBuiltinsCannotCall {
11811181
pub caller: String,
11821182
pub callee: String,
1183+
#[primary_span]
1184+
pub span: Span,
11831185
}
11841186

11851187
#[derive(Diagnostic)]

compiler/rustc_codegen_ssa/src/mir/block.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,13 @@ impl<'a, 'tcx> TerminatorCodegenHelper<'tcx> {
165165
if let Some(instance) = instance {
166166
if is_call_from_compiler_builtins_to_upstream_monomorphization(tcx, instance) {
167167
if destination.is_some() {
168-
let caller = with_no_trimmed_paths!(tcx.def_path_str(fx.instance.def_id()));
169-
let callee = with_no_trimmed_paths!(tcx.def_path_str(instance.def_id()));
170-
tcx.dcx().emit_err(CompilerBuiltinsCannotCall { caller, callee });
168+
let caller_def = fx.instance.def_id();
169+
let e = CompilerBuiltinsCannotCall {
170+
span: tcx.def_span(caller_def),
171+
caller: with_no_trimmed_paths!(tcx.def_path_str(caller_def)),
172+
callee: with_no_trimmed_paths!(tcx.def_path_str(instance.def_id())),
173+
};
174+
tcx.dcx().emit_err(e);
171175
} else {
172176
info!(
173177
"compiler_builtins call to diverging function {:?} replaced with abort",

0 commit comments

Comments
 (0)