Skip to content

Commit 69e8455

Browse files
committed
refactor check_{lang,library}_ub: use a single intrinsics, put policy into library
1 parent 9003461 commit 69e8455

File tree

21 files changed

+62
-99
lines changed

21 files changed

+62
-99
lines changed

compiler/rustc_borrowck/src/type_check/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2000,7 +2000,7 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
20002000
ConstraintCategory::SizedBound,
20012001
);
20022002
}
2003-
&Rvalue::NullaryOp(NullOp::UbCheck(_), _) => {}
2003+
&Rvalue::NullaryOp(NullOp::UbChecks, _) => {}
20042004

20052005
Rvalue::ShallowInitBox(operand, ty) => {
20062006
self.check_operand(operand, location);

compiler/rustc_codegen_ssa/src/mir/rvalue.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
685685
let val = layout.offset_of_subfield(bx.cx(), fields.iter()).bytes();
686686
bx.cx().const_usize(val)
687687
}
688-
mir::NullOp::UbCheck(_) => {
688+
mir::NullOp::UbChecks => {
689689
// In codegen, we want to check for language UB and library UB
690690
let val = bx.tcx().sess.opts.debug_assertions;
691691
bx.cx().const_bool(val)

compiler/rustc_const_eval/src/interpret/step.rs

+1-11
Original file line numberDiff line numberDiff line change
@@ -258,17 +258,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
258258
let val = layout.offset_of_subfield(self, fields.iter()).bytes();
259259
Scalar::from_target_usize(val, self)
260260
}
261-
mir::NullOp::UbCheck(kind) => {
262-
// We want to enable checks for library UB, because the interpreter doesn't
263-
// know about those on its own.
264-
// But we want to disable checks for language UB, because the interpreter
265-
// has its own better checks for that.
266-
let should_check = match kind {
267-
mir::UbKind::LibraryUb => self.tcx.sess.opts.debug_assertions,
268-
mir::UbKind::LanguageUb => false,
269-
};
270-
Scalar::from_bool(should_check)
271-
}
261+
mir::NullOp::UbChecks => Scalar::from_bool(self.tcx.sess.opts.debug_assertions),
272262
};
273263
self.write_scalar(val, &dest)?;
274264
}

compiler/rustc_const_eval/src/transform/check_consts/check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ impl<'tcx> Visitor<'tcx> for Checker<'_, 'tcx> {
558558
Rvalue::Cast(_, _, _) => {}
559559

560560
Rvalue::NullaryOp(
561-
NullOp::SizeOf | NullOp::AlignOf | NullOp::OffsetOf(_) | NullOp::UbCheck(_),
561+
NullOp::SizeOf | NullOp::AlignOf | NullOp::OffsetOf(_) | NullOp::UbChecks,
562562
_,
563563
) => {}
564564
Rvalue::ShallowInitBox(_, _) => {}

compiler/rustc_const_eval/src/transform/validate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ impl<'a, 'tcx> Visitor<'tcx> for TypeChecker<'a, 'tcx> {
11571157
Rvalue::Repeat(_, _)
11581158
| Rvalue::ThreadLocalRef(_)
11591159
| Rvalue::AddressOf(_, _)
1160-
| Rvalue::NullaryOp(NullOp::SizeOf | NullOp::AlignOf | NullOp::UbCheck(_), _)
1160+
| Rvalue::NullaryOp(NullOp::SizeOf | NullOp::AlignOf | NullOp::UbChecks, _)
11611161
| Rvalue::Discriminant(_) => {}
11621162
}
11631163
self.super_rvalue(rvalue, location);

compiler/rustc_hir_analysis/src/check/intrinsic.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,7 @@ pub fn intrinsic_operation_unsafety(tcx: TyCtxt<'_>, intrinsic_id: LocalDefId) -
127127
| sym::variant_count
128128
| sym::is_val_statically_known
129129
| sym::ptr_mask
130-
| sym::check_language_ub
131-
| sym::check_library_ub
130+
| sym::ub_checks
132131
| sym::fadd_algebraic
133132
| sym::fsub_algebraic
134133
| sym::fmul_algebraic
@@ -585,7 +584,7 @@ pub fn check_intrinsic_type(
585584
(0, 0, vec![Ty::new_imm_ptr(tcx, Ty::new_unit(tcx))], tcx.types.usize)
586585
}
587586

588-
sym::check_language_ub | sym::check_library_ub => (0, 1, Vec::new(), tcx.types.bool),
587+
sym::ub_checks => (0, 1, Vec::new(), tcx.types.bool),
589588

590589
sym::simd_eq
591590
| sym::simd_ne

compiler/rustc_middle/src/mir/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ impl<'tcx> Body<'tcx> {
762762
}
763763

764764
match rvalue {
765-
Rvalue::NullaryOp(NullOp::UbCheck(_), _) => {
765+
Rvalue::NullaryOp(NullOp::UbChecks, _) => {
766766
Some((tcx.sess.opts.debug_assertions as u128, targets))
767767
}
768768
Rvalue::Use(Operand::Constant(constant)) => {

compiler/rustc_middle/src/mir/pretty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ impl<'tcx> Debug for Rvalue<'tcx> {
944944
NullOp::SizeOf => write!(fmt, "SizeOf({t})"),
945945
NullOp::AlignOf => write!(fmt, "AlignOf({t})"),
946946
NullOp::OffsetOf(fields) => write!(fmt, "OffsetOf({t}, {fields:?})"),
947-
NullOp::UbCheck(kind) => write!(fmt, "UbCheck({kind:?})"),
947+
NullOp::UbChecks => write!(fmt, "UbChecks()"),
948948
}
949949
}
950950
ThreadLocalRef(did) => ty::tls::with(|tcx| {

compiler/rustc_middle/src/mir/syntax.rs

+3-10
Original file line numberDiff line numberDiff line change
@@ -1366,16 +1366,9 @@ pub enum NullOp<'tcx> {
13661366
AlignOf,
13671367
/// Returns the offset of a field
13681368
OffsetOf(&'tcx List<(VariantIdx, FieldIdx)>),
1369-
/// Returns whether we want to check for library UB or language UB at monomorphization time.
1370-
/// Both kinds of UB evaluate to `true` in codegen, and only library UB evalutes to `true` in
1371-
/// const-eval/Miri, because the interpreter has its own better checks for language UB.
1372-
UbCheck(UbKind),
1373-
}
1374-
1375-
#[derive(Clone, Copy, Debug, PartialEq, Eq, TyEncodable, TyDecodable, Hash, HashStable)]
1376-
pub enum UbKind {
1377-
LanguageUb,
1378-
LibraryUb,
1369+
/// Returns whether we want to check for UB at monomorphization time.
1370+
/// This returns the value of `cfg!(debug_assertions)`.
1371+
UbChecks,
13791372
}
13801373

13811374
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]

compiler/rustc_middle/src/mir/tcx.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ impl<'tcx> Rvalue<'tcx> {
194194
Rvalue::NullaryOp(NullOp::SizeOf | NullOp::AlignOf | NullOp::OffsetOf(..), _) => {
195195
tcx.types.usize
196196
}
197-
Rvalue::NullaryOp(NullOp::UbCheck(_), _) => tcx.types.bool,
197+
Rvalue::NullaryOp(NullOp::UbChecks, _) => tcx.types.bool,
198198
Rvalue::Aggregate(ref ak, ref ops) => match **ak {
199199
AggregateKind::Array(ty) => Ty::new_array(tcx, ty, ops.len() as u64),
200200
AggregateKind::Tuple => {

compiler/rustc_mir_dataflow/src/move_paths/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ impl<'b, 'a, 'tcx, F: Fn(Ty<'tcx>) -> bool> Gatherer<'b, 'a, 'tcx, F> {
433433
| Rvalue::Discriminant(..)
434434
| Rvalue::Len(..)
435435
| Rvalue::NullaryOp(
436-
NullOp::SizeOf | NullOp::AlignOf | NullOp::OffsetOf(..) | NullOp::UbCheck(_),
436+
NullOp::SizeOf | NullOp::AlignOf | NullOp::OffsetOf(..) | NullOp::UbChecks,
437437
_,
438438
) => {}
439439
}

compiler/rustc_mir_transform/src/gvn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ impl<'body, 'tcx> VnState<'body, 'tcx> {
488488
NullOp::OffsetOf(fields) => {
489489
layout.offset_of_subfield(&self.ecx, fields.iter()).bytes()
490490
}
491-
NullOp::UbCheck(_) => return None,
491+
NullOp::UbChecks => return None,
492492
};
493493
let usize_layout = self.ecx.layout_of(self.tcx.types.usize).unwrap();
494494
let imm = ImmTy::try_from_uint(val, usize_layout)?;

compiler/rustc_mir_transform/src/known_panics_lint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
639639
NullOp::OffsetOf(fields) => {
640640
op_layout.offset_of_subfield(self, fields.iter()).bytes()
641641
}
642-
NullOp::UbCheck(_) => return None,
642+
NullOp::UbChecks => return None,
643643
};
644644
ImmTy::from_scalar(Scalar::from_target_usize(val, self), layout).into()
645645
}

compiler/rustc_mir_transform/src/lower_intrinsics.rs

+2-19
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,13 @@ impl<'tcx> MirPass<'tcx> for LowerIntrinsics {
2020
sym::unreachable => {
2121
terminator.kind = TerminatorKind::Unreachable;
2222
}
23-
sym::check_language_ub => {
23+
sym::ub_checks => {
2424
let target = target.unwrap();
2525
block.statements.push(Statement {
2626
source_info: terminator.source_info,
2727
kind: StatementKind::Assign(Box::new((
2828
*destination,
29-
Rvalue::NullaryOp(
30-
NullOp::UbCheck(UbKind::LanguageUb),
31-
tcx.types.bool,
32-
),
33-
))),
34-
});
35-
terminator.kind = TerminatorKind::Goto { target };
36-
}
37-
sym::check_library_ub => {
38-
let target = target.unwrap();
39-
block.statements.push(Statement {
40-
source_info: terminator.source_info,
41-
kind: StatementKind::Assign(Box::new((
42-
*destination,
43-
Rvalue::NullaryOp(
44-
NullOp::UbCheck(UbKind::LibraryUb),
45-
tcx.types.bool,
46-
),
29+
Rvalue::NullaryOp(NullOp::UbChecks, tcx.types.bool),
4730
))),
4831
});
4932
terminator.kind = TerminatorKind::Goto { target };

compiler/rustc_mir_transform/src/promote_consts.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ impl<'tcx> Validator<'_, 'tcx> {
446446
NullOp::SizeOf => {}
447447
NullOp::AlignOf => {}
448448
NullOp::OffsetOf(_) => {}
449-
NullOp::UbCheck(_) => {}
449+
NullOp::UbChecks => {}
450450
},
451451

452452
Rvalue::ShallowInitBox(_, _) => return Err(Unpromotable),

compiler/rustc_smir/src/rustc_smir/convert/mir.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -251,19 +251,13 @@ impl<'tcx> Stable<'tcx> for mir::NullOp<'tcx> {
251251
type T = stable_mir::mir::NullOp;
252252
fn stable(&self, tables: &mut Tables<'_>) -> Self::T {
253253
use rustc_middle::mir::NullOp::*;
254-
use rustc_middle::mir::UbKind;
255254
match self {
256255
SizeOf => stable_mir::mir::NullOp::SizeOf,
257256
AlignOf => stable_mir::mir::NullOp::AlignOf,
258257
OffsetOf(indices) => stable_mir::mir::NullOp::OffsetOf(
259258
indices.iter().map(|idx| idx.stable(tables)).collect(),
260259
),
261-
UbCheck(UbKind::LanguageUb) => {
262-
stable_mir::mir::NullOp::UbCheck(stable_mir::mir::UbKind::LanguageUb)
263-
}
264-
UbCheck(UbKind::LibraryUb) => {
265-
stable_mir::mir::NullOp::UbCheck(stable_mir::mir::UbKind::LibraryUb)
266-
}
260+
UbChecks => stable_mir::mir::NullOp::UbChecks,
267261
}
268262
}
269263
}

compiler/rustc_span/src/symbol.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,6 @@ symbols! {
518518
cfi,
519519
cfi_encoding,
520520
char,
521-
check_language_ub,
522-
check_library_ub,
523521
client,
524522
clippy,
525523
clobber_abi,
@@ -1865,6 +1863,7 @@ symbols! {
18651863
u8_legacy_fn_max_value,
18661864
u8_legacy_fn_min_value,
18671865
u8_legacy_mod,
1866+
ub_checks,
18681867
unaligned_volatile_load,
18691868
unaligned_volatile_store,
18701869
unboxed_closures,

compiler/stable_mir/src/mir/body.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ impl Rvalue {
639639
Rvalue::NullaryOp(NullOp::SizeOf | NullOp::AlignOf | NullOp::OffsetOf(..), _) => {
640640
Ok(Ty::usize_ty())
641641
}
642-
Rvalue::NullaryOp(NullOp::UbCheck(_), _) => Ok(Ty::bool_ty()),
642+
Rvalue::NullaryOp(NullOp::UbChecks, _) => Ok(Ty::bool_ty()),
643643
Rvalue::Aggregate(ak, ops) => match *ak {
644644
AggregateKind::Array(ty) => Ty::try_new_array(ty, ops.len() as u64),
645645
AggregateKind::Tuple => Ok(Ty::new_tuple(
@@ -1007,13 +1007,7 @@ pub enum NullOp {
10071007
/// Returns the offset of a field.
10081008
OffsetOf(Vec<(VariantIdx, FieldIdx)>),
10091009
/// cfg!(debug_assertions), but at codegen time
1010-
UbCheck(UbKind),
1011-
}
1012-
1013-
#[derive(Clone, Debug, Eq, PartialEq)]
1014-
pub enum UbKind {
1015-
LanguageUb,
1016-
LibraryUb,
1010+
UbChecks,
10171011
}
10181012

10191013
impl Operand {

library/core/src/intrinsics.rs

+4-24
Original file line numberDiff line numberDiff line change
@@ -2629,38 +2629,18 @@ pub const fn is_val_statically_known<T: Copy>(_arg: T) -> bool {
26292629
false
26302630
}
26312631

2632-
/// Returns whether we should check for library UB. This evaluate to the value of `cfg!(debug_assertions)`
2633-
/// during monomorphization.
2632+
/// Returns whether we should perform some UB-checking at runtime. This evaluate to the value of
2633+
/// `cfg!(debug_assertions)` during monomorphization.
26342634
///
26352635
/// This intrinsic is evaluated after monomorphization, and therefore branching on this value can
26362636
/// be used to implement debug assertions that are included in the precompiled standard library,
26372637
/// but can be optimized out by builds that monomorphize the standard library code with debug
26382638
/// assertions disabled. This intrinsic is primarily used by [`assert_unsafe_precondition`].
2639-
///
2640-
/// We have separate intrinsics for library UB and language UB because checkers like the const-eval
2641-
/// interpreter and Miri already implement checks for language UB. Since such checkers do not know
2642-
/// about library preconditions, checks guarded by this intrinsic let them find more UB.
2643-
#[rustc_const_unstable(feature = "ub_checks", issue = "none")]
2644-
#[unstable(feature = "core_intrinsics", issue = "none")]
2645-
#[inline(always)]
2646-
#[cfg_attr(not(bootstrap), rustc_intrinsic)]
2647-
pub(crate) const fn check_library_ub() -> bool {
2648-
cfg!(debug_assertions)
2649-
}
2650-
2651-
/// Returns whether we should check for language UB. This evaluate to the value of `cfg!(debug_assertions)`
2652-
/// during monomorphization.
2653-
///
2654-
/// Since checks implemented at the source level must come strictly before the operation that
2655-
/// executes UB, if we enabled language UB checks in const-eval/Miri we would miss out on the
2656-
/// interpreter's improved diagnostics for the cases that our source-level checks catch.
2657-
///
2658-
/// See `check_library_ub` for more information.
2659-
#[rustc_const_unstable(feature = "ub_checks", issue = "none")]
2639+
#[rustc_const_unstable(feature = "const_ub_checks", issue = "none")]
26602640
#[unstable(feature = "core_intrinsics", issue = "none")]
26612641
#[inline(always)]
26622642
#[cfg_attr(not(bootstrap), rustc_intrinsic)]
2663-
pub(crate) const fn check_language_ub() -> bool {
2643+
pub(crate) const fn ub_checks() -> bool {
26642644
cfg!(debug_assertions)
26652645
}
26662646

library/core/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@
168168
#![feature(const_try)]
169169
#![feature(const_type_id)]
170170
#![feature(const_type_name)]
171+
#![feature(const_ub_checks)]
171172
#![feature(const_unicode_case_lookup)]
172173
#![feature(const_unsafecell_get_mut)]
173174
#![feature(const_waker)]

library/core/src/ub_checks.rs

+34-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Provides the [`assert_unsafe_precondition`] macro as well as some utility functions that cover
22
//! common preconditions.
33
4-
use crate::intrinsics::const_eval_select;
4+
use crate::intrinsics::{self, const_eval_select};
55

66
/// Check that the preconditions of an unsafe function are followed. The check is enabled at
77
/// runtime if debug assertions are enabled when the caller is monomorphized. In const-eval/Miri
@@ -45,7 +45,7 @@ use crate::intrinsics::const_eval_select;
4545
/// order to call it. Since the precompiled standard library is built with full debuginfo and these
4646
/// variables cannot be optimized out in MIR, an innocent-looking `let` can produce enough
4747
/// debuginfo to have a measurable compile-time impact on debug builds.
48-
#[allow_internal_unstable(ub_checks)] // permit this to be called in stably-const fn
48+
#[allow_internal_unstable(const_ub_checks)] // permit this to be called in stably-const fn
4949
macro_rules! assert_unsafe_precondition {
5050
($kind:ident, $message:expr, ($($name:ident:$ty:ty = $arg:expr),*$(,)?) => $e:expr $(,)?) => {
5151
{
@@ -69,7 +69,7 @@ macro_rules! assert_unsafe_precondition {
6969
#[cfg_attr(not(bootstrap), rustc_no_mir_inline)]
7070
#[cfg_attr(not(bootstrap), inline)]
7171
#[rustc_nounwind]
72-
#[rustc_const_unstable(feature = "ub_checks", issue = "none")]
72+
#[rustc_const_unstable(feature = "const_ub_checks", issue = "none")]
7373
const fn precondition_check($($name:$ty),*) {
7474
if !$e {
7575
::core::panicking::panic_nounwind(
@@ -78,14 +78,44 @@ macro_rules! assert_unsafe_precondition {
7878
}
7979
}
8080

81-
if ::core::intrinsics::$kind() {
81+
if ::core::ub_checks::$kind() {
8282
precondition_check($($arg,)*);
8383
}
8484
}
8585
};
8686
}
8787
pub(crate) use assert_unsafe_precondition;
8888

89+
/// Checking library UB is always enabled when UB-checking is done
90+
/// (and we use a reexport so that there is no unnecessary wrapper function).
91+
pub(crate) use intrinsics::ub_checks as check_library_ub;
92+
93+
/// Determines whether we should check for language UB.
94+
///
95+
/// The intention is to not do that when running in the interpreter, as that one has its own
96+
/// language UB checks which generally produce better errors.
97+
#[rustc_const_unstable(feature = "const_ub_checks", issue = "none")]
98+
pub(crate) const fn check_language_ub() -> bool {
99+
#[inline]
100+
fn runtime() -> bool {
101+
// Disable UB checks in Miri.
102+
!cfg!(miri)
103+
}
104+
105+
#[inline]
106+
const fn comptime() -> bool {
107+
// Always disable UB checks.
108+
false
109+
}
110+
111+
#[cfg_attr(not(bootstrap), allow(unused_unsafe))] // on bootstrap bump, remove unsafe block
112+
// SAFETY: `const_eval_select` is only used to toggle UB checks here, not to provide any
113+
// observable behavior differences.
114+
unsafe {
115+
intrinsics::ub_checks() && const_eval_select((), comptime, runtime)
116+
}
117+
}
118+
89119
/// Checks whether `ptr` is properly aligned with respect to
90120
/// `align_of::<T>()`.
91121
///

0 commit comments

Comments
 (0)