Skip to content

Commit 4f7ffbf

Browse files
committed
Fix const core::panic!(non_literal_str).
1 parent 500ddc5 commit 4f7ffbf

File tree

6 files changed

+15
-3
lines changed

6 files changed

+15
-3
lines changed

compiler/rustc_hir/src/lang_items.rs

+1
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ language_item_table! {
263263
// is required to define it somewhere. Additionally, there are restrictions on crates that use
264264
// a weak lang item, but do not have it defined.
265265
Panic, sym::panic, panic_fn, Target::Fn;
266+
PanicStr, sym::panic_str, panic_str, Target::Fn;
266267
PanicBoundsCheck, sym::panic_bounds_check, panic_bounds_check_fn, Target::Fn;
267268
PanicInfo, sym::panic_info, panic_info, Target::Struct;
268269
PanicLocation, sym::panic_location, panic_location, Target::Struct;

compiler/rustc_mir/src/const_eval/machine.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,10 @@ impl<'mir, 'tcx> InterpCx<'mir, 'tcx, CompileTimeInterpreter<'mir, 'tcx>> {
7070
) -> InterpResult<'tcx> {
7171
let def_id = instance.def_id();
7272
if Some(def_id) == self.tcx.lang_items().panic_fn()
73+
|| Some(def_id) == self.tcx.lang_items().panic_str()
7374
|| Some(def_id) == self.tcx.lang_items().begin_panic_fn()
7475
{
75-
// &'static str
76+
// &str
7677
assert!(args.len() == 1);
7778

7879
let msg_place = self.deref_operand(args[0])?;

compiler/rustc_mir/src/transform/check_consts/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ impl ConstCx<'mir, 'tcx> {
7474

7575
/// Returns `true` if this `DefId` points to one of the official `panic` lang items.
7676
pub fn is_lang_panic_fn(tcx: TyCtxt<'tcx>, def_id: DefId) -> bool {
77-
Some(def_id) == tcx.lang_items().panic_fn() || Some(def_id) == tcx.lang_items().begin_panic_fn()
77+
Some(def_id) == tcx.lang_items().panic_fn()
78+
|| Some(def_id) == tcx.lang_items().panic_str()
79+
|| Some(def_id) == tcx.lang_items().begin_panic_fn()
7880
}
7981

8082
pub fn allow_internal_unstable(tcx: TyCtxt<'tcx>, def_id: DefId, feature_gate: Symbol) -> bool {

compiler/rustc_span/src/symbol.rs

+1
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,7 @@ symbols! {
777777
panic_info,
778778
panic_location,
779779
panic_runtime,
780+
panic_str,
780781
panic_unwind,
781782
param_attrs,
782783
parent_trait,

library/core/src/macros/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ macro_rules! panic {
1010
$crate::panicking::panic($msg)
1111
);
1212
($msg:expr) => (
13-
$crate::panic!("{}", $crate::convert::identity::<&str>($msg))
13+
$crate::panicking::panic_str($msg)
1414
);
1515
($msg:expr,) => (
1616
$crate::panic!($msg)

library/core/src/panicking.rs

+7
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ pub fn panic(expr: &'static str) -> ! {
5050
panic_fmt(fmt::Arguments::new_v1(&[expr], &[]));
5151
}
5252

53+
#[inline]
54+
#[track_caller]
55+
#[cfg_attr(not(bootstrap), lang = "panic_str")] // needed for const-evaluated panics
56+
pub fn panic_str(expr: &str) -> ! {
57+
panic_fmt(format_args!("{}", expr));
58+
}
59+
5360
#[cold]
5461
#[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
5562
#[track_caller]

0 commit comments

Comments
 (0)