Skip to content

Commit 1687743

Browse files
committed
stabilize naked_functions
1 parent 93257e2 commit 1687743

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+149
-273
lines changed

compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
#![feature(
2-
no_core,
3-
lang_items,
4-
never_type,
5-
linkage,
6-
extern_types,
7-
naked_functions,
8-
thread_local,
9-
repr_simd
10-
)]
1+
#![feature(no_core, lang_items, never_type, linkage, extern_types, thread_local, repr_simd)]
112
#![no_core]
123
#![allow(dead_code, non_camel_case_types, internal_features)]
134

compiler/rustc_error_codes/src/error_codes/E0787.md

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ An unsupported naked function definition.
33
Erroneous code example:
44

55
```compile_fail,E0787
6-
#![feature(naked_functions)]
7-
86
#[naked]
97
pub extern "C" fn f() -> u32 {
108
42

compiler/rustc_feature/src/accepted.rs

+2
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,8 @@ declare_features! (
296296
/// Allows patterns with concurrent by-move and by-ref bindings.
297297
/// For example, you can write `Foo(a, ref b)` where `a` is by-move and `b` is by-ref.
298298
(accepted, move_ref_pattern, "1.49.0", Some(68354)),
299+
/// Allows using `#[naked]` on functions.
300+
(accepted, naked_functions, "CURRENT_RUSTC_VERSION", Some(90957)),
299301
/// Allows specifying modifiers in the link attribute: `#[link(modifiers = "...")]`
300302
(accepted, native_link_modifiers, "1.61.0", Some(81490)),
301303
/// Allows specifying the bundle link modifier

compiler/rustc_feature/src/builtin_attrs.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,7 @@ pub static BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
428428
ungated!(unsafe no_mangle, Normal, template!(Word), WarnFollowing, EncodeCrossCrate::No),
429429
ungated!(used, Normal, template!(Word, List: "compiler|linker"), WarnFollowing, EncodeCrossCrate::No),
430430
ungated!(link_ordinal, Normal, template!(List: "ordinal"), ErrorPreceding, EncodeCrossCrate::Yes),
431+
ungated!(naked, Normal, template!(Word), WarnFollowing, EncodeCrossCrate::No),
431432

432433
// Limits:
433434
ungated!(
@@ -500,12 +501,6 @@ pub static BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
500501
// Unstable attributes:
501502
// ==========================================================================
502503

503-
// Linking:
504-
gated!(
505-
naked, Normal, template!(Word), WarnFollowing, EncodeCrossCrate::No,
506-
naked_functions, experimental!(naked)
507-
),
508-
509504
// Testing:
510505
gated!(
511506
test_runner, CrateLevel, template!(List: "path"), ErrorFollowing,

compiler/rustc_feature/src/unstable.rs

-2
Original file line numberDiff line numberDiff line change
@@ -566,8 +566,6 @@ declare_features! (
566566
(unstable, must_not_suspend, "1.57.0", Some(83310)),
567567
/// Allows `mut ref` and `mut ref mut` identifier patterns.
568568
(incomplete, mut_ref, "1.79.0", Some(123076)),
569-
/// Allows using `#[naked]` on functions.
570-
(unstable, naked_functions, "1.9.0", Some(90957)),
571569
/// Allows specifying the as-needed link modifier
572570
(unstable, native_link_modifiers_as_needed, "1.53.0", Some(81490)),
573571
/// Allow negative trait implementations.

compiler/rustc_lint_defs/src/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2836,7 +2836,7 @@ declare_lint! {
28362836
/// ### Example
28372837
///
28382838
/// ```rust
2839-
/// #![feature(asm_experimental_arch, naked_functions)]
2839+
/// #![feature(asm_experimental_arch)]
28402840
///
28412841
/// use std::arch::naked_asm;
28422842
///

library/core/src/arch.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub macro asm("assembly template", $(operands,)* $(options($(option),*))?) {
3232
///
3333
/// [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html
3434
/// [reference]: https://doc.rust-lang.org/nightly/reference/inline-assembly.html
35-
#[unstable(feature = "naked_functions", issue = "90957")]
35+
#[stable(feature = "naked_functions", since = "CURRENT_RUSTC_VERSION")]
3636
#[rustc_builtin_macro]
3737
pub macro naked_asm("assembly template", $(operands,)* $(options($(option),*))?) {
3838
/* compiler built-in */

src/doc/unstable-book/src/compiler-flags/sanitizer.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,7 @@ See the [Clang ControlFlowIntegrity documentation][clang-cfi] for more details.
245245
## Example 1: Redirecting control flow using an indirect branch/call to an invalid destination
246246
247247
```rust,ignore (making doc tests pass cross-platform is hard)
248-
#![feature(naked_functions)]
249-
250-
use std::arch::asm;
248+
use std::arch::naked_asm;
251249
use std::mem;
252250

253251
fn add_one(x: i32) -> i32 {
@@ -258,7 +256,7 @@ fn add_one(x: i32) -> i32 {
258256
pub extern "C" fn add_two(x: i32) {
259257
// x + 2 preceded by a landing pad/nop block
260258
unsafe {
261-
asm!(
259+
naked_asm!(
262260
"
263261
nop
264262
nop

tests/assembly/naked-functions/aarch64-naked-fn-no-bti-prolog.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//@ only-aarch64
55

66
#![crate_type = "lib"]
7-
#![feature(naked_functions)]
7+
88
use std::arch::naked_asm;
99

1010
// The problem at hand: Rust has adopted a fairly strict meaning for "naked functions",

tests/assembly/naked-functions/x86_64-naked-fn-no-cet-prolog.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//@ only-x86_64
55

66
#![crate_type = "lib"]
7-
#![feature(naked_functions)]
7+
88
use std::arch::naked_asm;
99

1010
// The problem at hand: Rust has adopted a fairly strict meaning for "naked functions",

tests/codegen/cffi/c-variadic-naked.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
#![crate_type = "lib"]
77
#![feature(c_variadic)]
8-
#![feature(naked_functions)]
98
#![no_std]
109

1110
#[naked]

tests/codegen/naked-asan.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#![crate_type = "lib"]
88
#![no_std]
9-
#![feature(abi_x86_interrupt, naked_functions)]
9+
#![feature(abi_x86_interrupt)]
1010

1111
pub fn caller() {
1212
page_fault_handler(1, 2);

tests/codegen/naked-fn/aligned.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//@ ignore-arm no "ret" mnemonic
44

55
#![crate_type = "lib"]
6-
#![feature(naked_functions, fn_align)]
6+
#![feature(fn_align)]
77
use std::arch::naked_asm;
88

99
// CHECK: .balign 16

tests/codegen/naked-fn/generics.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
//@ only-x86_64
33

44
#![crate_type = "lib"]
5-
#![feature(naked_functions, asm_const)]
65

76
use std::arch::naked_asm;
87

tests/codegen/naked-fn/instruction-set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//@ [thumb-mode] needs-llvm-components: arm
77

88
#![crate_type = "lib"]
9-
#![feature(no_core, lang_items, rustc_attrs, naked_functions)]
9+
#![feature(no_core, lang_items, rustc_attrs)]
1010
#![no_core]
1111

1212
extern crate minicore;

tests/codegen/naked-fn/naked-functions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//@[thumb] needs-llvm-components: arm
1414

1515
#![crate_type = "lib"]
16-
#![feature(no_core, lang_items, rustc_attrs, naked_functions)]
16+
#![feature(no_core, lang_items, rustc_attrs)]
1717
#![no_core]
1818

1919
extern crate minicore;

tests/run-make/naked-symbol-visibility/a_rust_dylib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(naked_functions, linkage)]
1+
#![feature(linkage)]
22
#![crate_type = "dylib"]
33

44
use std::arch::naked_asm;

tests/ui/asm/naked-asm-outside-naked-fn.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//@ ignore-nvptx64
44
//@ ignore-spirv
55

6-
#![feature(naked_functions)]
76
#![crate_type = "lib"]
87

98
use std::arch::naked_asm;

tests/ui/asm/naked-asm-outside-naked-fn.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
error: the `naked_asm!` macro can only be used in functions marked with `#[naked]`
2-
--> $DIR/naked-asm-outside-naked-fn.rs:21:14
2+
--> $DIR/naked-asm-outside-naked-fn.rs:20:14
33
|
44
LL | unsafe { naked_asm!("") }
55
| ^^^^^^^^^^^^^^
66

77
error: the `naked_asm!` macro can only be used in functions marked with `#[naked]`
8-
--> $DIR/naked-asm-outside-naked-fn.rs:26:18
8+
--> $DIR/naked-asm-outside-naked-fn.rs:25:18
99
|
1010
LL | unsafe { (|| naked_asm!(""))() }
1111
| ^^^^^^^^^^^^^^
1212

1313
error: the `naked_asm!` macro can only be used in functions marked with `#[naked]`
14-
--> $DIR/naked-asm-outside-naked-fn.rs:32:19
14+
--> $DIR/naked-asm-outside-naked-fn.rs:31:19
1515
|
1616
LL | unsafe { naked_asm!("") } ;
1717
| ^^^^^^^^^^^^^^

tests/ui/asm/naked-functions-ffi.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ check-pass
22
//@ needs-asm-support
3-
#![feature(naked_functions)]
43
#![crate_type = "lib"]
54

65
use std::arch::naked_asm;

tests/ui/asm/naked-functions-ffi.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
warning: `extern` fn uses type `char`, which is not FFI-safe
2-
--> $DIR/naked-functions-ffi.rs:9:28
2+
--> $DIR/naked-functions-ffi.rs:8:28
33
|
44
LL | pub extern "C" fn naked(p: char) -> u128 {
55
| ^^^^ not FFI-safe
@@ -9,7 +9,7 @@ LL | pub extern "C" fn naked(p: char) -> u128 {
99
= note: `#[warn(improper_ctypes_definitions)]` on by default
1010

1111
warning: `extern` fn uses type `u128`, which is not FFI-safe
12-
--> $DIR/naked-functions-ffi.rs:9:37
12+
--> $DIR/naked-functions-ffi.rs:8:37
1313
|
1414
LL | pub extern "C" fn naked(p: char) -> u128 {
1515
| ^^^^ not FFI-safe

tests/ui/asm/naked-functions-inline.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ needs-asm-support
2-
#![feature(naked_functions)]
32
#![crate_type = "lib"]
43

54
use std::arch::naked_asm;

tests/ui/asm/naked-functions-inline.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
error[E0736]: attribute incompatible with `#[naked]`
2-
--> $DIR/naked-functions-inline.rs:13:1
2+
--> $DIR/naked-functions-inline.rs:12:1
33
|
44
LL | #[naked]
55
| -------- function marked with `#[naked]` here
66
LL | #[inline]
77
| ^^^^^^^^^ the `inline` attribute is incompatible with `#[naked]`
88

99
error[E0736]: attribute incompatible with `#[naked]`
10-
--> $DIR/naked-functions-inline.rs:20:1
10+
--> $DIR/naked-functions-inline.rs:19:1
1111
|
1212
LL | #[naked]
1313
| -------- function marked with `#[naked]` here
1414
LL | #[inline(always)]
1515
| ^^^^^^^^^^^^^^^^^ the `inline` attribute is incompatible with `#[naked]`
1616

1717
error[E0736]: attribute incompatible with `#[naked]`
18-
--> $DIR/naked-functions-inline.rs:27:1
18+
--> $DIR/naked-functions-inline.rs:26:1
1919
|
2020
LL | #[naked]
2121
| -------- function marked with `#[naked]` here
2222
LL | #[inline(never)]
2323
| ^^^^^^^^^^^^^^^^ the `inline` attribute is incompatible with `#[naked]`
2424

2525
error[E0736]: attribute incompatible with `#[naked]`
26-
--> $DIR/naked-functions-inline.rs:34:19
26+
--> $DIR/naked-functions-inline.rs:33:19
2727
|
2828
LL | #[naked]
2929
| -------- function marked with `#[naked]` here

tests/ui/asm/naked-functions-instruction-set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//@ build-pass
66

77
#![crate_type = "lib"]
8-
#![feature(no_core, naked_functions)]
8+
#![feature(no_core)]
99
#![no_core]
1010

1111
extern crate minicore;

tests/ui/asm/naked-functions-testattrs.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
//@ compile-flags: --test
33

44
#![allow(undefined_naked_function_abi)]
5-
#![feature(naked_functions)]
65
#![feature(test)]
76
#![crate_type = "lib"]
87

tests/ui/asm/naked-functions-testattrs.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
error[E0736]: cannot use `#[naked]` with testing attributes
2-
--> $DIR/naked-functions-testattrs.rs:12:1
2+
--> $DIR/naked-functions-testattrs.rs:11:1
33
|
44
LL | #[test]
55
| ------- function marked with testing attribute here
66
LL | #[naked]
77
| ^^^^^^^^ `#[naked]` is incompatible with testing attributes
88

99
error[E0736]: cannot use `#[naked]` with testing attributes
10-
--> $DIR/naked-functions-testattrs.rs:20:1
10+
--> $DIR/naked-functions-testattrs.rs:19:1
1111
|
1212
LL | #[test]
1313
| ------- function marked with testing attribute here
1414
LL | #[naked]
1515
| ^^^^^^^^ `#[naked]` is incompatible with testing attributes
1616

1717
error[E0736]: cannot use `#[naked]` with testing attributes
18-
--> $DIR/naked-functions-testattrs.rs:28:1
18+
--> $DIR/naked-functions-testattrs.rs:27:1
1919
|
2020
LL | #[test]
2121
| ------- function marked with testing attribute here
2222
LL | #[naked]
2323
| ^^^^^^^^ `#[naked]` is incompatible with testing attributes
2424

2525
error[E0736]: cannot use `#[naked]` with testing attributes
26-
--> $DIR/naked-functions-testattrs.rs:35:1
26+
--> $DIR/naked-functions-testattrs.rs:34:1
2727
|
2828
LL | #[bench]
2929
| -------- function marked with testing attribute here

tests/ui/asm/naked-functions-unused.aarch64.stderr

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: unused variable: `a`
2-
--> $DIR/naked-functions-unused.rs:17:32
2+
--> $DIR/naked-functions-unused.rs:16:32
33
|
44
LL | pub extern "C" fn function(a: usize, b: usize) -> usize {
55
| ^ help: if this is intentional, prefix it with an underscore: `_a`
@@ -12,55 +12,55 @@ LL | #![deny(unused)]
1212
= note: `#[deny(unused_variables)]` implied by `#[deny(unused)]`
1313

1414
error: unused variable: `b`
15-
--> $DIR/naked-functions-unused.rs:17:42
15+
--> $DIR/naked-functions-unused.rs:16:42
1616
|
1717
LL | pub extern "C" fn function(a: usize, b: usize) -> usize {
1818
| ^ help: if this is intentional, prefix it with an underscore: `_b`
1919

2020
error: unused variable: `a`
21-
--> $DIR/naked-functions-unused.rs:28:38
21+
--> $DIR/naked-functions-unused.rs:27:38
2222
|
2323
LL | pub extern "C" fn associated(a: usize, b: usize) -> usize {
2424
| ^ help: if this is intentional, prefix it with an underscore: `_a`
2525

2626
error: unused variable: `b`
27-
--> $DIR/naked-functions-unused.rs:28:48
27+
--> $DIR/naked-functions-unused.rs:27:48
2828
|
2929
LL | pub extern "C" fn associated(a: usize, b: usize) -> usize {
3030
| ^ help: if this is intentional, prefix it with an underscore: `_b`
3131

3232
error: unused variable: `a`
33-
--> $DIR/naked-functions-unused.rs:36:41
33+
--> $DIR/naked-functions-unused.rs:35:41
3434
|
3535
LL | pub extern "C" fn method(&self, a: usize, b: usize) -> usize {
3636
| ^ help: if this is intentional, prefix it with an underscore: `_a`
3737

3838
error: unused variable: `b`
39-
--> $DIR/naked-functions-unused.rs:36:51
39+
--> $DIR/naked-functions-unused.rs:35:51
4040
|
4141
LL | pub extern "C" fn method(&self, a: usize, b: usize) -> usize {
4242
| ^ help: if this is intentional, prefix it with an underscore: `_b`
4343

4444
error: unused variable: `a`
45-
--> $DIR/naked-functions-unused.rs:46:40
45+
--> $DIR/naked-functions-unused.rs:45:40
4646
|
4747
LL | extern "C" fn trait_associated(a: usize, b: usize) -> usize {
4848
| ^ help: if this is intentional, prefix it with an underscore: `_a`
4949

5050
error: unused variable: `b`
51-
--> $DIR/naked-functions-unused.rs:46:50
51+
--> $DIR/naked-functions-unused.rs:45:50
5252
|
5353
LL | extern "C" fn trait_associated(a: usize, b: usize) -> usize {
5454
| ^ help: if this is intentional, prefix it with an underscore: `_b`
5555

5656
error: unused variable: `a`
57-
--> $DIR/naked-functions-unused.rs:54:43
57+
--> $DIR/naked-functions-unused.rs:53:43
5858
|
5959
LL | extern "C" fn trait_method(&self, a: usize, b: usize) -> usize {
6060
| ^ help: if this is intentional, prefix it with an underscore: `_a`
6161

6262
error: unused variable: `b`
63-
--> $DIR/naked-functions-unused.rs:54:53
63+
--> $DIR/naked-functions-unused.rs:53:53
6464
|
6565
LL | extern "C" fn trait_method(&self, a: usize, b: usize) -> usize {
6666
| ^ help: if this is intentional, prefix it with an underscore: `_b`

tests/ui/asm/naked-functions-unused.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//@[x86_64] only-x86_64
44
//@[aarch64] only-aarch64
55
#![deny(unused)]
6-
#![feature(naked_functions)]
76
#![crate_type = "lib"]
87

98
pub trait Trait {

0 commit comments

Comments
 (0)