Skip to content

Commit 9938349

Browse files
authored
Rollup merge of #128925 - dingxiangfei2009:smart-ptr-helper-attr, r=compiler-errors
derive(SmartPointer): register helper attributes Fix #128888 This PR enables built-in macros to register helper attributes, if any, to support correct name resolution in the correct lexical scope under the macros. Also, `#[pointee]` is moved into the scope under `derive(SmartPointer)`. cc `@Darksonn` `@davidtwco`
2 parents 442ba18 + 5534cb0 commit 9938349

9 files changed

+165
-19
lines changed

compiler/rustc_feature/src/builtin_attrs.rs

-6
Original file line numberDiff line numberDiff line change
@@ -578,12 +578,6 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
578578
EncodeCrossCrate::No, coroutines, experimental!(coroutines)
579579
),
580580

581-
// `#[pointee]` attribute to designate the pointee type in SmartPointer derive-macro
582-
gated!(
583-
pointee, Normal, template!(Word), ErrorFollowing,
584-
EncodeCrossCrate::No, derive_smart_pointer, experimental!(pointee)
585-
),
586-
587581
// RFC 3543
588582
// `#[patchable_function_entry(prefix_nops = m, entry_nops = n)]`
589583
gated!(

library/core/src/marker.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ pub trait FnPtr: Copy + Clone {
10601060
}
10611061

10621062
/// Derive macro generating impls of traits related to smart pointers.
1063-
#[rustc_builtin_macro]
1063+
#[rustc_builtin_macro(SmartPointer, attributes(pointee))]
10641064
#[allow_internal_unstable(dispatch_from_dyn, coerce_unsized, unsize)]
10651065
#[unstable(feature = "derive_smart_pointer", issue = "123430")]
10661066
pub macro SmartPointer($item:item) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
//@ force-host
2+
//@ no-prefer-dynamic
3+
4+
#![crate_type = "proc-macro"]
5+
#![feature(proc_macro_quote)]
6+
7+
extern crate proc_macro;
8+
9+
use proc_macro::{quote, TokenStream};
10+
11+
#[proc_macro_derive(AnotherMacro, attributes(pointee))]
12+
pub fn derive(_input: TokenStream) -> TokenStream {
13+
quote! {
14+
const _: () = {
15+
const ANOTHER_MACRO_DERIVED: () = ();
16+
};
17+
}
18+
.into()
19+
}
20+
21+
#[proc_macro_attribute]
22+
pub fn pointee(
23+
_attr: proc_macro::TokenStream,
24+
_item: proc_macro::TokenStream,
25+
) -> proc_macro::TokenStream {
26+
quote! {
27+
const _: () = {
28+
const POINTEE_MACRO_ATTR_DERIVED: () = ();
29+
};
30+
}
31+
.into()
32+
}
33+
34+
#[proc_macro_attribute]
35+
pub fn default(
36+
_attr: proc_macro::TokenStream,
37+
_item: proc_macro::TokenStream,
38+
) -> proc_macro::TokenStream {
39+
quote! {
40+
const _: () = {
41+
const DEFAULT_MACRO_ATTR_DERIVED: () = ();
42+
};
43+
}
44+
.into()
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//@ check-pass
2+
//@ aux-build: another-proc-macro.rs
3+
//@ compile-flags: -Zunpretty=expanded
4+
5+
#![feature(derive_smart_pointer)]
6+
7+
#[macro_use]
8+
extern crate another_proc_macro;
9+
10+
use another_proc_macro::{pointee, AnotherMacro};
11+
12+
#[derive(core::marker::SmartPointer)]
13+
#[repr(transparent)]
14+
pub struct Ptr<'a, #[pointee] T: ?Sized> {
15+
data: &'a mut T,
16+
}
17+
18+
#[pointee]
19+
fn f() {}
20+
21+
#[derive(AnotherMacro)]
22+
#[pointee]
23+
struct MyStruct;
24+
25+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#![feature(prelude_import)]
2+
#![no_std]
3+
//@ check-pass
4+
//@ aux-build: another-proc-macro.rs
5+
//@ compile-flags: -Zunpretty=expanded
6+
7+
#![feature(derive_smart_pointer)]
8+
#[prelude_import]
9+
use ::std::prelude::rust_2015::*;
10+
#[macro_use]
11+
extern crate std;
12+
13+
#[macro_use]
14+
extern crate another_proc_macro;
15+
16+
use another_proc_macro::{pointee, AnotherMacro};
17+
18+
#[repr(transparent)]
19+
pub struct Ptr<'a, #[pointee] T: ?Sized> {
20+
data: &'a mut T,
21+
}
22+
#[automatically_derived]
23+
impl<'a, T: ?Sized + ::core::marker::Unsize<__S>, __S: ?Sized>
24+
::core::ops::DispatchFromDyn<Ptr<'a, __S>> for Ptr<'a, T> {
25+
}
26+
#[automatically_derived]
27+
impl<'a, T: ?Sized + ::core::marker::Unsize<__S>, __S: ?Sized>
28+
::core::ops::CoerceUnsized<Ptr<'a, __S>> for Ptr<'a, T> {
29+
}
30+
31+
32+
33+
const _: () =
34+
{
35+
const POINTEE_MACRO_ATTR_DERIVED: () = ();
36+
};
37+
#[pointee]
38+
struct MyStruct;
39+
const _: () =
40+
{
41+
const ANOTHER_MACRO_DERIVED: () = ();
42+
};
43+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// This test certify that we can mix attribute macros from Rust and external proc-macros.
2+
// For instance, `#[derive(Default)]` uses `#[default]` and `#[derive(SmartPointer)]` uses
3+
// `#[pointee]`.
4+
// The scoping rule should allow the use of the said two attributes when external proc-macros
5+
// are in scope.
6+
7+
//@ check-pass
8+
//@ aux-build: another-proc-macro.rs
9+
//@ compile-flags: -Zunpretty=expanded
10+
11+
#![feature(derive_smart_pointer)]
12+
13+
#[macro_use]
14+
extern crate another_proc_macro;
15+
16+
#[pointee]
17+
fn f() {}
18+
19+
#[default]
20+
fn g() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#![feature(prelude_import)]
2+
#![no_std]
3+
// This test certify that we can mix attribute macros from Rust and external proc-macros.
4+
// For instance, `#[derive(Default)]` uses `#[default]` and `#[derive(SmartPointer)]` uses
5+
// `#[pointee]`.
6+
// The scoping rule should allow the use of the said two attributes when external proc-macros
7+
// are in scope.
8+
9+
//@ check-pass
10+
//@ aux-build: another-proc-macro.rs
11+
//@ compile-flags: -Zunpretty=expanded
12+
13+
#![feature(derive_smart_pointer)]
14+
#[prelude_import]
15+
use ::std::prelude::rust_2015::*;
16+
#[macro_use]
17+
extern crate std;
18+
19+
#[macro_use]
20+
extern crate another_proc_macro;
21+
22+
23+
const _: () =
24+
{
25+
const POINTEE_MACRO_ATTR_DERIVED: () = ();
26+
};
27+
const _: () =
28+
{
29+
const DEFAULT_MACRO_ATTR_DERIVED: () = ();
30+
};

tests/ui/feature-gates/feature-gate-derive-smart-pointer.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use std::marker::SmartPointer; //~ ERROR use of unstable library feature 'derive
33
#[derive(SmartPointer)] //~ ERROR use of unstable library feature 'derive_smart_pointer'
44
#[repr(transparent)]
55
struct MyPointer<'a, #[pointee] T: ?Sized> {
6-
//~^ ERROR the `#[pointee]` attribute is an experimental feature
76
ptr: &'a T,
87
}
98

tests/ui/feature-gates/feature-gate-derive-smart-pointer.stderr

+1-11
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@ LL | #[derive(SmartPointer)]
88
= help: add `#![feature(derive_smart_pointer)]` to the crate attributes to enable
99
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
1010

11-
error[E0658]: the `#[pointee]` attribute is an experimental feature
12-
--> $DIR/feature-gate-derive-smart-pointer.rs:5:22
13-
|
14-
LL | struct MyPointer<'a, #[pointee] T: ?Sized> {
15-
| ^^^^^^^^^^
16-
|
17-
= note: see issue #123430 <https://github.com/rust-lang/rust/issues/123430> for more information
18-
= help: add `#![feature(derive_smart_pointer)]` to the crate attributes to enable
19-
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
20-
2111
error[E0658]: use of unstable library feature 'derive_smart_pointer'
2212
--> $DIR/feature-gate-derive-smart-pointer.rs:1:5
2313
|
@@ -28,6 +18,6 @@ LL | use std::marker::SmartPointer;
2818
= help: add `#![feature(derive_smart_pointer)]` to the crate attributes to enable
2919
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
3020

31-
error: aborting due to 3 previous errors
21+
error: aborting due to 2 previous errors
3222

3323
For more information about this error, try `rustc --explain E0658`.

0 commit comments

Comments
 (0)