Skip to content

Commit 4354192

Browse files
committed
Auto merge of #114201 - Centri3:explicit-repr-rust, r=WaffleLapkin
Allow explicit `#[repr(Rust)]` This is identical to no `repr()` at all. For `Rust, packed` and `Rust, align(x)`, it should be the same as no `Rust` at all (as, afaik, `#[repr(align(16))]` uses the Rust ABI.) The main use case for this is being able to explicitly say "I want to use the Rust ABI" in very very rare circumstances where the first obvious choice would be the C ABI yet is undesirable, which is already possible with functions as `extern "Rust"`. This would be useful for silencing rust-lang/rust-clippy#11253. It's also more consistent with `extern`. The lack of this also tripped me up a bit when I was new to Rust, as I expected this to be possible.
2 parents 58eefc3 + 1f7bad0 commit 4354192

File tree

7 files changed

+24
-8
lines changed

7 files changed

+24
-8
lines changed

compiler/rustc_attr/src/builtin.rs

+2
Original file line numberDiff line numberDiff line change
@@ -937,6 +937,7 @@ pub fn find_deprecation(
937937
#[derive(PartialEq, Debug, Encodable, Decodable, Copy, Clone)]
938938
pub enum ReprAttr {
939939
ReprInt(IntType),
940+
ReprRust,
940941
ReprC,
941942
ReprPacked(u32),
942943
ReprSimd,
@@ -985,6 +986,7 @@ pub fn parse_repr_attr(sess: &Session, attr: &Attribute) -> Vec<ReprAttr> {
985986
let mut recognised = false;
986987
if item.is_word() {
987988
let hint = match item.name_or_empty() {
989+
sym::Rust => Some(ReprRust),
988990
sym::C => Some(ReprC),
989991
sym::packed => Some(ReprPacked(1)),
990992
sym::simd => Some(ReprSimd),

compiler/rustc_middle/src/ty/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2150,6 +2150,7 @@ impl<'tcx> TyCtxt<'tcx> {
21502150
for attr in self.get_attrs(did, sym::repr) {
21512151
for r in attr::parse_repr_attr(&self.sess, attr) {
21522152
flags.insert(match r {
2153+
attr::ReprRust => ReprFlags::empty(),
21532154
attr::ReprC => ReprFlags::IS_C,
21542155
attr::ReprPacked(pack) => {
21552156
let pack = Align::from_bytes(pack as u64).unwrap();

compiler/rustc_passes/messages.ftl

+1-1
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ passes_unrecognized_field =
721721
722722
passes_unrecognized_repr_hint =
723723
unrecognized representation hint
724-
.help = valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
724+
.help = valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
725725
726726
passes_unused =
727727
unused attribute

compiler/rustc_passes/src/check_attr.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1732,6 +1732,7 @@ impl CheckAttrVisitor<'_> {
17321732
}
17331733

17341734
match hint.name_or_empty() {
1735+
sym::Rust => {}
17351736
sym::C => {
17361737
is_c = true;
17371738
match target {

tests/ui/abi/explicit_repr_rust.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// check-pass
2+
3+
#[repr(Rust)]
4+
struct A;
5+
6+
#[repr(Rust, align(16))]
7+
struct B;
8+
9+
#[repr(Rust, packed)]
10+
struct C;
11+
12+
fn main() {}

tests/ui/issues/issue-43988.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ error[E0552]: unrecognized representation hint
3232
LL | #[repr(nothing)]
3333
| ^^^^^^^
3434
|
35-
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
35+
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
3636

3737
error[E0552]: unrecognized representation hint
3838
--> $DIR/issue-43988.rs:18:12
3939
|
4040
LL | #[repr(something_not_real)]
4141
| ^^^^^^^^^^^^^^^^^^
4242
|
43-
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
43+
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
4444

4545
error[E0518]: attribute should be applied to function or closure
4646
--> $DIR/issue-43988.rs:30:5

tests/ui/repr/invalid_repr_list_help.stderr

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@ error[E0552]: unrecognized representation hint
44
LL | #[repr(uwu)]
55
| ^^^
66
|
7-
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
7+
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
88

99
error[E0552]: unrecognized representation hint
1010
--> $DIR/invalid_repr_list_help.rs:6:8
1111
|
1212
LL | #[repr(uwu = "a")]
1313
| ^^^^^^^^^
1414
|
15-
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
15+
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
1616

1717
error[E0552]: unrecognized representation hint
1818
--> $DIR/invalid_repr_list_help.rs:9:8
1919
|
2020
LL | #[repr(uwu(4))]
2121
| ^^^^^^
2222
|
23-
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
23+
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
2424

2525
error[E0552]: unrecognized representation hint
2626
--> $DIR/invalid_repr_list_help.rs:14:8
2727
|
2828
LL | #[repr(uwu, u8)]
2929
| ^^^
3030
|
31-
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
31+
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
3232

3333
warning: unknown `doc` attribute `owo`
3434
--> $DIR/invalid_repr_list_help.rs:20:7
@@ -46,7 +46,7 @@ error[E0552]: unrecognized representation hint
4646
LL | #[repr(uwu)]
4747
| ^^^
4848
|
49-
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
49+
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
5050

5151
error: aborting due to 5 previous errors; 1 warning emitted
5252

0 commit comments

Comments
 (0)