-
Notifications
You must be signed in to change notification settings - Fork 1.7k
RFC: Add #[repr(pack = "N")] #1399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
dea4612
c6e522b
c92aa33
898c791
6e269de
64f6229
cbb18a4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| - Feature Name: `repr_pack` | ||
| - Start Date: 2015-12-06 | ||
| - RFC PR: (leave this empty) | ||
| - Rust Issue: (leave this empty) | ||
|
|
||
| # Summary | ||
| [summary]: #summary | ||
|
|
||
| Extend the existing `#[repr]` attribute on structs with a `pack = "N"` option to | ||
| specify a custom packing for `struct` types. | ||
|
|
||
| # Motivation | ||
| [motivation]: #motivation | ||
|
|
||
| Many C/C++ compilers allow a packing to be specified for structs which | ||
| effectivally lowers the alignment for a struct and its fields (for example with | ||
| MSVC there is `#pragma pack(N)`). Such packing is used extensively in certain | ||
| C/C++ libraries (such as Windows API which uses it all over the place making | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. s/all over the place/pervasively/ |
||
| writing Rust libraries such as `winapi` a nightmare). | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. s/a nightmare/challenging/ |
||
|
|
||
| At the moment the only way to work around the lack of a proper | ||
| `#[repr(pack = "N")]` attribute is to use `#[repr(packed)]` and then manually | ||
| fill in padding which is a burdensome task. Even then that isn't quite right | ||
| because the overall alignment of the struct would end up as 1 even though it | ||
| needs to be N (or the default if that is smaller than N), so this fills in a gap | ||
| which is basically impossible to do in Rust at the moment. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. s/basically // |
||
|
|
||
| # Detailed design | ||
| [design]: #detailed-design | ||
|
|
||
| The `#[repr]` attribute on `struct`s will be extended to include a form such as: | ||
|
|
||
| ```rust | ||
| #[repr(pack = "2")] | ||
| struct LessAligned(i16, i32); | ||
| ``` | ||
|
|
||
| This structure will have an alignment of 2 and a size of 6, as well as the | ||
| second field having an offset of 2 instead of 4 from the base of the struct. | ||
| This is in contrast to without the attribute where the structure would have an | ||
| alignment of 4 and a size of 8, and the second field would have an offset of 4 | ||
| from the base of the struct. | ||
|
|
||
| Syntactically, the `repr` meta list will be extended to accept a meta item | ||
| name/value pair with the name "pack" and the value as a string which can be | ||
| parsed as a `u64`. The restrictions on where this attribute can be placed along | ||
| with the accepted values are: | ||
|
|
||
| * Custom packing can only be specified on `struct` declarations for now. | ||
| Specifying a different packing on perhaps `enum` or `type` definitions should | ||
| be a backwards-compatible extension. | ||
| * Packing values must be a power of two. | ||
|
|
||
| By specifying this attribute, the alignment of the struct would be the smaller | ||
| of the specified packing and the default alignment of the struct otherwise. The | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. s/otherwise// |
||
| alignments of each struct field for the purpose of positioning fields would also | ||
| be the smaller of the specified packing and the alignment of the type of that | ||
| field. If the specified packing is greater than or equal to the default | ||
| alignment of the struct, then the alignment and layout of the struct should be | ||
| unaffected. | ||
|
|
||
| When combined with `#[repr(C)]` the size alignment and layout of the struct | ||
| should match the equivalent struct in C. | ||
|
|
||
| `#[repr(packed)]` and `#[repr(pack = "1")]` should have identical behavior. | ||
|
|
||
| Because this lowers the effective alignment of fields in the same way that | ||
| `#[repr(packed)]` does (which caused https://github.com/rust-lang/rust/issues/27060 ), | ||
| while accessing a field should be safe, borrowing a field should be unsafe. | ||
|
|
||
| # Drawbacks | ||
| [drawbacks]: #drawbacks | ||
|
|
||
| This would unfortunately make my life easier even though one of the unstated | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove this paragraph. |
||
| goals of Rust is to make my life as difficult as possible when doing FFI with | ||
| Windows API. | ||
|
|
||
| # Alternatives | ||
| [alternatives]: #alternatives | ||
|
|
||
| * The alternative is not doing this and forcing people to continue using | ||
| `#[repr(packed)]` with manual padding. | ||
| * Alternatively a new attribute could be used such as `#[pack]`. | ||
| * `#[repr(packed)]` could be extended as either `#[repr(packed(N))]` or | ||
| `#[repr(packed = "N")]`. | ||
|
|
||
| # Unresolved questions | ||
| [unresolved]: #unresolved-questions | ||
|
|
||
| * The behavior specified here should match the behavior of MSVC at least. Does | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This must be resolved. Verify against the behavior of clang (or gcc).
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Specifically clang or gcc on a platform other than Windows. On Windows they are supposed to match the msvc ABI. |
||
| it match the behavior of other C/C++ compilers as well? | ||
| * Should it still be safe to borrow fields whose alignment is less than or equal | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should have the same behavior of |
||
| to the specified packing or should all field borrows be unsafe? | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/effectivally/effectively/