remove support for extern-block const intrinsics

This commit is contained in:
Ralf Jung 2024-11-01 22:19:42 +01:00
parent 7934f26613
commit 10723c2896
16 changed files with 119 additions and 225 deletions

View File

@ -273,8 +273,7 @@ pub fn find_stability(
/// Collects stability info from `rustc_const_stable`/`rustc_const_unstable`/`rustc_promotable` /// Collects stability info from `rustc_const_stable`/`rustc_const_unstable`/`rustc_promotable`
/// attributes in `attrs`. Returns `None` if no stability attributes are found. /// attributes in `attrs`. Returns `None` if no stability attributes are found.
/// ///
/// `is_const_fn` indicates whether this is a function marked as `const`. It will always /// `is_const_fn` indicates whether this is a function marked as `const`.
/// be false for intrinsics in an `extern` block!
pub fn find_const_stability( pub fn find_const_stability(
sess: &Session, sess: &Session,
attrs: &[Attribute], attrs: &[Attribute],
@ -330,7 +329,7 @@ pub fn find_const_stability(
} }
} }
// Merge promotable and not_exposed_on_stable into stability info // Merge promotable and const_stable_indirect into stability info
if promotable { if promotable {
match &mut const_stab { match &mut const_stab {
Some((stab, _)) => stab.promotable = promotable, Some((stab, _)) => stab.promotable = promotable,
@ -352,10 +351,7 @@ pub fn find_const_stability(
}) })
} }
} }
_ => { _ => {}
// We ignore the `#[rustc_const_stable_indirect]` here, it should be picked up by
// the `default_const_unstable` logic.
}
} }
} }
// Make sure if `const_stable_indirect` is present, that is recorded. Also make sure all `const // Make sure if `const_stable_indirect` is present, that is recorded. Also make sure all `const

View File

@ -25,15 +25,9 @@ fn constness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> hir::Constness {
hir::Constness::Const hir::Constness::Const
} }
hir::Node::Item(hir::Item { kind: hir::ItemKind::Impl(impl_), .. }) => impl_.constness, hir::Node::Item(hir::Item { kind: hir::ItemKind::Impl(impl_), .. }) => impl_.constness,
hir::Node::ForeignItem(hir::ForeignItem { kind: hir::ForeignItemKind::Fn(..), .. }) => { hir::Node::ForeignItem(_) => {
// Intrinsics use `rustc_const_{un,}stable` attributes to indicate constness. All other // Foreign items cannot be evaluated at compile-time.
// foreign items cannot be evaluated at compile-time. hir::Constness::NotConst
let is_const = if tcx.intrinsic(def_id).is_some() {
tcx.lookup_const_stability(def_id).is_some()
} else {
false
};
if is_const { hir::Constness::Const } else { hir::Constness::NotConst }
} }
hir::Node::Expr(e) if let hir::ExprKind::Closure(c) = e.kind => c.constness, hir::Node::Expr(e) if let hir::ExprKind::Closure(c) = e.kind => c.constness,
_ => { _ => {

View File

@ -106,7 +106,6 @@ fn annotate<F>(
def_id: LocalDefId, def_id: LocalDefId,
item_sp: Span, item_sp: Span,
fn_sig: Option<&'tcx hir::FnSig<'tcx>>, fn_sig: Option<&'tcx hir::FnSig<'tcx>>,
is_foreign_item: bool,
kind: AnnotationKind, kind: AnnotationKind,
inherit_deprecation: InheritDeprecation, inherit_deprecation: InheritDeprecation,
inherit_const_stability: InheritConstStability, inherit_const_stability: InheritConstStability,
@ -175,11 +174,7 @@ fn annotate<F>(
// implied), check if the function/method is const or the parent impl block is const. // implied), check if the function/method is const or the parent impl block is const.
if let Some(fn_sig) = fn_sig if let Some(fn_sig) = fn_sig
&& !fn_sig.header.is_const() && !fn_sig.header.is_const()
// We have to exclude foreign items as they might be intrinsics. Sadly we can't check
// their ABI; `fn_sig.abi` is *not* correct for foreign functions.
&& !is_foreign_item
&& const_stab.is_some() && const_stab.is_some()
&& (!self.in_trait_impl || !self.tcx.is_const_fn(def_id.to_def_id()))
{ {
self.tcx.dcx().emit_err(errors::MissingConstErr { fn_sig_span: fn_sig.span }); self.tcx.dcx().emit_err(errors::MissingConstErr { fn_sig_span: fn_sig.span });
} }
@ -398,7 +393,6 @@ fn visit_item(&mut self, i: &'tcx Item<'tcx>) {
ctor_def_id, ctor_def_id,
i.span, i.span,
None, None,
/* is_foreign_item */ false,
AnnotationKind::Required, AnnotationKind::Required,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,
@ -417,7 +411,6 @@ fn visit_item(&mut self, i: &'tcx Item<'tcx>) {
i.owner_id.def_id, i.owner_id.def_id,
i.span, i.span,
fn_sig, fn_sig,
/* is_foreign_item */ false,
kind, kind,
InheritDeprecation::Yes, InheritDeprecation::Yes,
const_stab_inherit, const_stab_inherit,
@ -437,7 +430,6 @@ fn visit_trait_item(&mut self, ti: &'tcx hir::TraitItem<'tcx>) {
ti.owner_id.def_id, ti.owner_id.def_id,
ti.span, ti.span,
fn_sig, fn_sig,
/* is_foreign_item */ false,
AnnotationKind::Required, AnnotationKind::Required,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,
@ -461,7 +453,6 @@ fn visit_impl_item(&mut self, ii: &'tcx hir::ImplItem<'tcx>) {
ii.owner_id.def_id, ii.owner_id.def_id,
ii.span, ii.span,
fn_sig, fn_sig,
/* is_foreign_item */ false,
kind, kind,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,
@ -477,7 +468,6 @@ fn visit_variant(&mut self, var: &'tcx Variant<'tcx>) {
var.def_id, var.def_id,
var.span, var.span,
None, None,
/* is_foreign_item */ false,
AnnotationKind::Required, AnnotationKind::Required,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,
@ -488,7 +478,6 @@ fn visit_variant(&mut self, var: &'tcx Variant<'tcx>) {
ctor_def_id, ctor_def_id,
var.span, var.span,
None, None,
/* is_foreign_item */ false,
AnnotationKind::Required, AnnotationKind::Required,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,
@ -507,7 +496,6 @@ fn visit_field_def(&mut self, s: &'tcx FieldDef<'tcx>) {
s.def_id, s.def_id,
s.span, s.span,
None, None,
/* is_foreign_item */ false,
AnnotationKind::Required, AnnotationKind::Required,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,
@ -527,7 +515,6 @@ fn visit_foreign_item(&mut self, i: &'tcx hir::ForeignItem<'tcx>) {
i.owner_id.def_id, i.owner_id.def_id,
i.span, i.span,
fn_sig, fn_sig,
/* is_foreign_item */ true,
AnnotationKind::Required, AnnotationKind::Required,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,
@ -550,7 +537,6 @@ fn visit_generic_param(&mut self, p: &'tcx hir::GenericParam<'tcx>) {
p.def_id, p.def_id,
p.span, p.span,
None, None,
/* is_foreign_item */ false,
kind, kind,
InheritDeprecation::No, InheritDeprecation::No,
InheritConstStability::No, InheritConstStability::No,
@ -712,7 +698,6 @@ fn stability_index(tcx: TyCtxt<'_>, (): ()) -> Index {
CRATE_DEF_ID, CRATE_DEF_ID,
tcx.hir().span(CRATE_HIR_ID), tcx.hir().span(CRATE_HIR_ID),
None, None,
/* is_foreign_item */ false,
AnnotationKind::Required, AnnotationKind::Required,
InheritDeprecation::Yes, InheritDeprecation::Yes,
InheritConstStability::No, InheritConstStability::No,

View File

@ -1,20 +1,26 @@
#![feature(intrinsics)] #![feature(intrinsics, rustc_attrs)]
#![feature(staged_api)] #![feature(staged_api)]
#![crate_name = "foo"] #![crate_name = "foo"]
#![stable(since="1.0.0", feature="rust1")] #![stable(since="1.0.0", feature="rust1")]
extern "rust-intrinsic" { //@ has 'foo/fn.transmute.html'
//@ has 'foo/fn.transmute.html' //@ has - '//pre[@class="rust item-decl"]' 'pub const unsafe fn transmute<T, U>(_: T) -> U'
//@ has - '//pre[@class="rust item-decl"]' 'pub const unsafe extern "rust-intrinsic" fn transmute<T, U>(_: T) -> U' #[stable(since="1.0.0", feature="rust1")]
#[stable(since="1.0.0", feature="rust1")] #[rustc_const_stable(feature = "const_transmute", since = "1.56.0")]
#[rustc_const_stable(feature = "const_transmute", since = "1.56.0")] #[rustc_intrinsic]
pub fn transmute<T, U>(_: T) -> U; #[rustc_intrinsic_must_be_overridden]
pub const unsafe fn transmute<T, U>(_: T) -> U {
loop {}
}
//@ has 'foo/fn.unreachable.html' //@ has 'foo/fn.unreachable.html'
//@ has - '//pre[@class="rust item-decl"]' 'pub unsafe extern "rust-intrinsic" fn unreachable() -> !' //@ has - '//pre[@class="rust item-decl"]' 'pub unsafe fn unreachable() -> !'
#[stable(since="1.0.0", feature="rust1")] #[stable(since="1.0.0", feature="rust1")]
pub fn unreachable() -> !; #[rustc_intrinsic]
#[rustc_intrinsic_must_be_overridden]
pub unsafe fn unreachable() -> ! {
loop {}
} }
extern "C" { extern "C" {

View File

@ -1,4 +1,4 @@
error[E0277]: expected a `FnOnce(&str)` closure, found `unsafe extern "rust-intrinsic" fn(_) -> _ {std::intrinsics::transmute::<_, _>}` error[E0277]: expected a `FnOnce(&str)` closure, found `unsafe fn(_) -> _ {std::intrinsics::transmute::<_, _>}`
--> $DIR/coerce-unsafe-to-closure.rs:2:44 --> $DIR/coerce-unsafe-to-closure.rs:2:44
| |
LL | let x: Option<&[u8]> = Some("foo").map(std::mem::transmute); LL | let x: Option<&[u8]> = Some("foo").map(std::mem::transmute);
@ -6,7 +6,7 @@ LL | let x: Option<&[u8]> = Some("foo").map(std::mem::transmute);
| | | |
| required by a bound introduced by this call | required by a bound introduced by this call
| |
= help: the trait `FnOnce(&str)` is not implemented for fn item `unsafe extern "rust-intrinsic" fn(_) -> _ {std::intrinsics::transmute::<_, _>}` = help: the trait `FnOnce(&str)` is not implemented for fn item `unsafe fn(_) -> _ {std::intrinsics::transmute::<_, _>}`
= note: unsafe function cannot be called generically without an unsafe block = note: unsafe function cannot be called generically without an unsafe block
note: required by a bound in `Option::<T>::map` note: required by a bound in `Option::<T>::map`
--> $SRC_DIR/core/src/option.rs:LL:COL --> $SRC_DIR/core/src/option.rs:LL:COL

View File

@ -1,26 +1,11 @@
#![feature(staged_api, rustc_attrs, intrinsics)] #![feature(staged_api, rustc_attrs, intrinsics)]
#![stable(since="1.0.0", feature = "stable")] #![stable(since="1.0.0", feature = "stable")]
#[stable(since="1.0.0", feature = "stable")] #[unstable(feature = "unstable", issue = "42")]
pub mod old_way { #[rustc_intrinsic]
extern "rust-intrinsic" { pub const unsafe fn size_of_val<T>(x: *const T) -> usize { 42 }
#[unstable(feature = "unstable", issue = "42")]
pub fn size_of_val<T>(x: *const T) -> usize;
#[unstable(feature = "unstable", issue = "42")] #[unstable(feature = "unstable", issue = "42")]
#[rustc_const_unstable(feature = "unstable", issue = "42")] #[rustc_const_unstable(feature = "unstable", issue = "42")]
pub fn min_align_of_val<T>(x: *const T) -> usize; #[rustc_intrinsic]
} pub const unsafe fn min_align_of_val<T>(x: *const T) -> usize { 42 }
}
#[stable(since="1.0.0", feature = "stable")]
pub mod new_way {
#[unstable(feature = "unstable", issue = "42")]
#[rustc_intrinsic]
pub const unsafe fn size_of_val<T>(x: *const T) -> usize { 42 }
#[unstable(feature = "unstable", issue = "42")]
#[rustc_const_unstable(feature = "unstable", issue = "42")]
#[rustc_intrinsic]
pub const unsafe fn min_align_of_val<T>(x: *const T) -> usize { 42 }
}

View File

@ -1,6 +1,6 @@
//@ run-pass //@ run-pass
#![feature(repr_simd)] #![feature(repr_simd)]
#![feature(intrinsics)] #![feature(intrinsics, rustc_attrs)]
#![feature(staged_api)] #![feature(staged_api)]
#![stable(feature = "foo", since = "1.3.37")] #![stable(feature = "foo", since = "1.3.37")]
#![allow(non_camel_case_types)] #![allow(non_camel_case_types)]
@ -10,14 +10,18 @@
#[repr(simd)] struct u16x2([u16; 2]); #[repr(simd)] struct u16x2([u16; 2]);
#[repr(simd)] struct f32x4([f32; 4]); #[repr(simd)] struct f32x4([f32; 4]);
extern "rust-intrinsic" { #[stable(feature = "foo", since = "1.3.37")]
#[stable(feature = "foo", since = "1.3.37")] #[rustc_const_stable(feature = "foo", since = "1.3.37")]
#[rustc_const_stable(feature = "foo", since = "1.3.37")] #[rustc_intrinsic]
fn simd_insert<T, U>(x: T, idx: u32, val: U) -> T; const unsafe fn simd_insert<T, U>(_x: T, _idx: u32, _val: U) -> T {
unimplemented!()
}
#[stable(feature = "foo", since = "1.3.37")] #[stable(feature = "foo", since = "1.3.37")]
#[rustc_const_stable(feature = "foo", since = "1.3.37")] #[rustc_const_stable(feature = "foo", since = "1.3.37")]
fn simd_extract<T, U>(x: T, idx: u32) -> U; #[rustc_intrinsic]
const unsafe fn simd_extract<T, U>(_x: T, _idx: u32) -> U {
unimplemented!()
} }
fn main() { fn main() {

View File

@ -14,63 +14,39 @@ fn main() {
const fn const_main() { const fn const_main() {
let x = 42; let x = 42;
unsafe { unsafe {
unstable_intrinsic::old_way::size_of_val(&x); unstable_intrinsic::size_of_val(&x);
//~^ERROR: unstable library feature `unstable`
//~|ERROR: cannot call non-const intrinsic
unstable_intrinsic::old_way::min_align_of_val(&x);
//~^ERROR: unstable library feature `unstable`
//~|ERROR: not yet stable as a const intrinsic
unstable_intrinsic::new_way::size_of_val(&x);
//~^ERROR: unstable library feature `unstable` //~^ERROR: unstable library feature `unstable`
//~|ERROR: cannot be (indirectly) exposed to stable //~|ERROR: cannot be (indirectly) exposed to stable
unstable_intrinsic::new_way::min_align_of_val(&x); unstable_intrinsic::min_align_of_val(&x);
//~^ERROR: unstable library feature `unstable` //~^ERROR: unstable library feature `unstable`
//~|ERROR: not yet stable as a const intrinsic //~|ERROR: not yet stable as a const intrinsic
old_way::size_of_val(&x); size_of_val(&x);
//~^ERROR: cannot call non-const intrinsic
old_way::min_align_of_val(&x);
//~^ERROR: cannot use `#[feature(local)]`
new_way::size_of_val(&x);
//~^ERROR: cannot be (indirectly) exposed to stable //~^ERROR: cannot be (indirectly) exposed to stable
new_way::min_align_of_val(&x); min_align_of_val(&x);
//~^ERROR: cannot use `#[feature(local)]` //~^ERROR: cannot use `#[feature(local)]`
} }
} }
#[stable(since="1.0.0", feature = "stable")] #[unstable(feature = "local", issue = "42")]
pub mod old_way { #[rustc_intrinsic]
extern "rust-intrinsic" { pub const unsafe fn size_of_val<T>(x: *const T) -> usize { 42 }
#[unstable(feature = "local", issue = "42")]
pub fn size_of_val<T>(x: *const T) -> usize;
#[unstable(feature = "local", issue = "42")] #[unstable(feature = "local", issue = "42")]
#[rustc_const_unstable(feature = "local", issue = "42")] #[rustc_const_unstable(feature = "local", issue = "42")]
pub fn min_align_of_val<T>(x: *const T) -> usize; #[rustc_intrinsic]
} pub const unsafe fn min_align_of_val<T>(x: *const T) -> usize { 42 }
}
#[stable(since="1.0.0", feature = "stable")]
pub mod new_way {
#[unstable(feature = "local", issue = "42")]
#[rustc_intrinsic]
pub const unsafe fn size_of_val<T>(x: *const T) -> usize { 42 }
#[unstable(feature = "local", issue = "42")]
#[rustc_const_unstable(feature = "local", issue = "42")]
#[rustc_intrinsic]
pub const unsafe fn min_align_of_val<T>(x: *const T) -> usize { 42 }
}
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")] #[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
#[inline] #[inline]
pub const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) { pub const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) {
// Const stability attributes are not inherited from parent items. // Const stability attributes are not inherited from parent items.
extern "rust-intrinsic" { #[rustc_intrinsic]
fn copy<T>(src: *const T, dst: *mut T, count: usize); const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) {
unimplemented!()
} }
unsafe { copy(src, dst, count) } unsafe { copy(src, dst, count) }
//~^ ERROR cannot call non-const intrinsic //~^ ERROR cannot be (indirectly) exposed to stable
} }

View File

@ -1,8 +1,8 @@
error[E0658]: use of unstable library feature `unstable` error[E0658]: use of unstable library feature `unstable`
--> $DIR/const-unstable-intrinsic.rs:17:9 --> $DIR/const-unstable-intrinsic.rs:17:9
| |
LL | unstable_intrinsic::old_way::size_of_val(&x); LL | unstable_intrinsic::size_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
= note: see issue #42 <https://github.com/rust-lang/rust/issues/42> for more information = note: see issue #42 <https://github.com/rust-lang/rust/issues/42> for more information
= help: add `#![feature(unstable)]` to the crate attributes to enable = help: add `#![feature(unstable)]` to the crate attributes to enable
@ -11,74 +11,42 @@ LL | unstable_intrinsic::old_way::size_of_val(&x);
error[E0658]: use of unstable library feature `unstable` error[E0658]: use of unstable library feature `unstable`
--> $DIR/const-unstable-intrinsic.rs:20:9 --> $DIR/const-unstable-intrinsic.rs:20:9
| |
LL | unstable_intrinsic::old_way::min_align_of_val(&x); LL | unstable_intrinsic::min_align_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
= note: see issue #42 <https://github.com/rust-lang/rust/issues/42> for more information = note: see issue #42 <https://github.com/rust-lang/rust/issues/42> for more information
= help: add `#![feature(unstable)]` to the crate attributes to enable = help: add `#![feature(unstable)]` to the crate attributes to enable
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
error[E0658]: use of unstable library feature `unstable` error: intrinsic `unstable_intrinsic::size_of_val` cannot be (indirectly) exposed to stable
--> $DIR/const-unstable-intrinsic.rs:23:9
|
LL | unstable_intrinsic::new_way::size_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #42 <https://github.com/rust-lang/rust/issues/42> for more information
= help: add `#![feature(unstable)]` to the crate attributes to enable
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
error[E0658]: use of unstable library feature `unstable`
--> $DIR/const-unstable-intrinsic.rs:26:9
|
LL | unstable_intrinsic::new_way::min_align_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #42 <https://github.com/rust-lang/rust/issues/42> for more information
= help: add `#![feature(unstable)]` to the crate attributes to enable
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
error: cannot call non-const intrinsic `size_of_val` in constant functions
--> $DIR/const-unstable-intrinsic.rs:17:9 --> $DIR/const-unstable-intrinsic.rs:17:9
| |
LL | unstable_intrinsic::old_way::size_of_val(&x); LL | unstable_intrinsic::size_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: `min_align_of_val` is not yet stable as a const intrinsic
--> $DIR/const-unstable-intrinsic.rs:20:9
|
LL | unstable_intrinsic::old_way::min_align_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(unstable)]` to the crate attributes to enable
error: intrinsic `unstable_intrinsic::new_way::size_of_val` cannot be (indirectly) exposed to stable
--> $DIR/const-unstable-intrinsic.rs:23:9
|
LL | unstable_intrinsic::new_way::size_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
= help: mark the caller as `#[rustc_const_unstable]`, or mark the intrinsic `#[rustc_const_stable_indirect]` (but this requires team approval) = help: mark the caller as `#[rustc_const_unstable]`, or mark the intrinsic `#[rustc_const_stable_indirect]` (but this requires team approval)
error: `min_align_of_val` is not yet stable as a const intrinsic error: `min_align_of_val` is not yet stable as a const intrinsic
--> $DIR/const-unstable-intrinsic.rs:26:9 --> $DIR/const-unstable-intrinsic.rs:20:9
| |
LL | unstable_intrinsic::new_way::min_align_of_val(&x); LL | unstable_intrinsic::min_align_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
= help: add `#![feature(unstable)]` to the crate attributes to enable = help: add `#![feature(unstable)]` to the crate attributes to enable
error: cannot call non-const intrinsic `size_of_val` in constant functions error: intrinsic `size_of_val` cannot be (indirectly) exposed to stable
--> $DIR/const-unstable-intrinsic.rs:30:9 --> $DIR/const-unstable-intrinsic.rs:24:9
| |
LL | old_way::size_of_val(&x); LL | size_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^
|
= help: mark the caller as `#[rustc_const_unstable]`, or mark the intrinsic `#[rustc_const_stable_indirect]` (but this requires team approval)
error: const function that might be (indirectly) exposed to stable cannot use `#[feature(local)]` error: const function that might be (indirectly) exposed to stable cannot use `#[feature(local)]`
--> $DIR/const-unstable-intrinsic.rs:32:9 --> $DIR/const-unstable-intrinsic.rs:26:9
| |
LL | old_way::min_align_of_val(&x); LL | min_align_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^
| |
help: if the function is not (yet) meant to be exposed to stable, add `#[rustc_const_unstable]` (this is what you probably want to do) help: if the function is not (yet) meant to be exposed to stable, add `#[rustc_const_unstable]` (this is what you probably want to do)
| |
@ -91,37 +59,14 @@ LL + #[rustc_allow_const_fn_unstable(local)]
LL | const fn const_main() { LL | const fn const_main() {
| |
error: intrinsic `new_way::size_of_val` cannot be (indirectly) exposed to stable error: intrinsic `copy::copy` cannot be (indirectly) exposed to stable
--> $DIR/const-unstable-intrinsic.rs:34:9 --> $DIR/const-unstable-intrinsic.rs:50:14
|
LL | new_way::size_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: mark the caller as `#[rustc_const_unstable]`, or mark the intrinsic `#[rustc_const_stable_indirect]` (but this requires team approval)
error: const function that might be (indirectly) exposed to stable cannot use `#[feature(local)]`
--> $DIR/const-unstable-intrinsic.rs:36:9
|
LL | new_way::min_align_of_val(&x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: if the function is not (yet) meant to be exposed to stable, add `#[rustc_const_unstable]` (this is what you probably want to do)
|
LL + #[rustc_const_unstable(feature = "...", issue = "...")]
LL | const fn const_main() {
|
help: otherwise, as a last resort `#[rustc_allow_const_fn_unstable]` can be used to bypass stability checks (this requires team approval)
|
LL + #[rustc_allow_const_fn_unstable(local)]
LL | const fn const_main() {
|
error: cannot call non-const intrinsic `copy` in constant functions
--> $DIR/const-unstable-intrinsic.rs:74:14
| |
LL | unsafe { copy(src, dst, count) } LL | unsafe { copy(src, dst, count) }
| ^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^
|
= help: mark the caller as `#[rustc_const_unstable]`, or mark the intrinsic `#[rustc_const_stable_indirect]` (but this requires team approval)
error: aborting due to 13 previous errors error: aborting due to 7 previous errors
For more information about this error, try `rustc --explain E0658`. For more information about this error, try `rustc --explain E0658`.

View File

@ -1,17 +1,21 @@
#![stable(feature = "dummy", since = "1.0.0")] #![stable(feature = "dummy", since = "1.0.0")]
// ignore-tidy-linelength // ignore-tidy-linelength
#![feature(intrinsics, staged_api)] #![feature(intrinsics, staged_api, rustc_attrs)]
use std::mem; use std::mem;
extern "rust-intrinsic" { #[stable(feature = "dummy", since = "1.0.0")]
#[stable(feature = "dummy", since = "1.0.0")] #[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")] #[rustc_intrinsic]
fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize); const unsafe fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize) {
unimplemented!()
}
#[stable(feature = "dummy", since = "1.0.0")] #[stable(feature = "dummy", since = "1.0.0")]
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")] #[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
fn copy<T>(src: *const T, dst: *mut T, count: usize); #[rustc_intrinsic]
const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) {
unimplemented!()
} }
const COPY_ZERO: () = unsafe { const COPY_ZERO: () = unsafe {

View File

@ -1,23 +1,23 @@
error[E0080]: evaluation of constant value failed error[E0080]: evaluation of constant value failed
--> $DIR/copy-intrinsic.rs:30:5 --> $DIR/copy-intrinsic.rs:34:5
| |
LL | copy_nonoverlapping(0x100 as *const i32, dangle, 1); LL | copy_nonoverlapping(0x100 as *const i32, dangle, 1);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ memory access failed: expected a pointer to 4 bytes of memory, but got 0x100[noalloc] which is a dangling pointer (it has no provenance) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ memory access failed: expected a pointer to 4 bytes of memory, but got 0x100[noalloc] which is a dangling pointer (it has no provenance)
error[E0080]: evaluation of constant value failed error[E0080]: evaluation of constant value failed
--> $DIR/copy-intrinsic.rs:39:5 --> $DIR/copy-intrinsic.rs:43:5
| |
LL | copy_nonoverlapping(dangle, 0x100 as *mut i32, 1); LL | copy_nonoverlapping(dangle, 0x100 as *mut i32, 1);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ memory access failed: expected a pointer to 4 bytes of memory, but got ALLOC0+0x28 which is at or beyond the end of the allocation of size 4 bytes | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ memory access failed: expected a pointer to 4 bytes of memory, but got ALLOC0+0x28 which is at or beyond the end of the allocation of size 4 bytes
error[E0080]: evaluation of constant value failed error[E0080]: evaluation of constant value failed
--> $DIR/copy-intrinsic.rs:46:5 --> $DIR/copy-intrinsic.rs:50:5
| |
LL | copy(&x, &mut y, 1usize << (mem::size_of::<usize>() * 8 - 1)); LL | copy(&x, &mut y, 1usize << (mem::size_of::<usize>() * 8 - 1));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ overflow computing total size of `copy` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ overflow computing total size of `copy`
error[E0080]: evaluation of constant value failed error[E0080]: evaluation of constant value failed
--> $DIR/copy-intrinsic.rs:52:5 --> $DIR/copy-intrinsic.rs:56:5
| |
LL | copy_nonoverlapping(&x, &mut y, 1usize << (mem::size_of::<usize>() * 8 - 1)); LL | copy_nonoverlapping(&x, &mut y, 1usize << (mem::size_of::<usize>() * 8 - 1));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ overflow computing total size of `copy_nonoverlapping` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ overflow computing total size of `copy_nonoverlapping`

View File

@ -7,9 +7,9 @@ LL | let _: unsafe extern "rust-intrinsic" fn(isize) -> usize = std::mem::tr
| expected due to this | expected due to this
| |
= note: expected fn pointer `unsafe extern "rust-intrinsic" fn(isize) -> usize` = note: expected fn pointer `unsafe extern "rust-intrinsic" fn(isize) -> usize`
found fn item `unsafe extern "rust-intrinsic" fn(_) -> _ {std::intrinsics::transmute::<_, _>}` found fn item `unsafe fn(_) -> _ {std::intrinsics::transmute::<_, _>}`
error[E0606]: casting `unsafe extern "rust-intrinsic" fn(_) -> _ {std::intrinsics::transmute::<_, _>}` as `unsafe extern "rust-intrinsic" fn(isize) -> usize` is invalid error[E0606]: casting `unsafe fn(_) -> _ {std::intrinsics::transmute::<_, _>}` as `unsafe extern "rust-intrinsic" fn(isize) -> usize` is invalid
--> $DIR/reify-intrinsic.rs:11:13 --> $DIR/reify-intrinsic.rs:11:13
| |
LL | let _ = std::mem::transmute as unsafe extern "rust-intrinsic" fn(isize) -> usize; LL | let _ = std::mem::transmute as unsafe extern "rust-intrinsic" fn(isize) -> usize;

View File

@ -21,11 +21,12 @@ enum Foo {
Bar, Bar,
} }
extern "rust-intrinsic" { #[stable(feature = "intrinsics_for_test", since = "3.3.3")]
#[stable(feature = "intrinsics_for_test", since = "3.3.3")] #[rustc_const_stable(feature = "intrinsics_for_test", since = "3.3.3")]
#[rustc_const_stable(feature = "intrinsics_for_test", since = "3.3.3")] #[rustc_intrinsic]
#[rustc_safe_intrinsic] #[rustc_intrinsic_must_be_overridden]
fn size_of<T>() -> usize; const fn size_of<T>() -> usize {
loop {}
} }
#[lang="sized"] #[lang="sized"]

View File

@ -36,10 +36,4 @@ fn fun() {}
pub const unsafe fn size_of_val<T>(x: *const T) -> usize { 42 } pub const unsafe fn size_of_val<T>(x: *const T) -> usize { 42 }
//~^ ERROR function has missing const stability attribute //~^ ERROR function has missing const stability attribute
extern "rust-intrinsic" {
#[stable(feature = "stable", since = "1.0.0")]
#[rustc_const_stable_indirect]
pub fn min_align_of_val<T>(x: *const T) -> usize;
}
fn main() {} fn main() {}

View File

@ -18,10 +18,12 @@ trait Sized {}
trait Copy {} trait Copy {}
impl Copy for bool {} impl Copy for bool {}
extern "rust-intrinsic" { #[stable(feature = "test", since = "1.0.0")]
#[stable(feature = "test", since = "1.0.0")] #[rustc_const_stable(feature = "test", since = "1.0.0")]
#[rustc_const_stable(feature = "test", since = "1.0.0")] #[rustc_intrinsic]
fn unreachable() -> !; #[rustc_intrinsic_must_be_overridden]
const unsafe fn unreachable() -> ! {
loop {}
} }
#[rustc_builtin_macro] #[rustc_builtin_macro]

View File

@ -16,10 +16,12 @@ trait Sized {}
trait Copy {} trait Copy {}
impl Copy for bool {} impl Copy for bool {}
extern "rust-intrinsic" { #[stable(feature = "test", since = "1.0.0")]
#[stable(feature = "test", since = "1.0.0")] #[rustc_const_stable(feature = "test", since = "1.0.0")]
#[rustc_const_stable(feature = "test", since = "1.0.0")] #[rustc_intrinsic]
fn unreachable() -> !; #[rustc_intrinsic_must_be_overridden]
const unsafe fn unreachable() -> ! {
loop {}
} }
#[rustc_builtin_macro] #[rustc_builtin_macro]