Skip to content
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

document #[used] #361

Merged
merged 5 commits into from
Mar 11, 2019
Merged

document #[used] #361

merged 5 commits into from
Mar 11, 2019

Conversation

japaric
Copy link
Member

@japaric japaric commented Jun 20, 2018

r? @oli-obk or @steveklabnik

I'm not 100% sure about grouping all those features under an "ABI" section, but having a single #[used] section seemed overkill. I'm open to suggestions about grouping features differently, e.g. using a different section name.

Required by rust-lang/rust#51363

@steveklabnik
Copy link
Member

I'm not 100% sure about grouping all those features under an "ABI" section, but having a single #[used] section seemed overkill. I'm open to suggestions about grouping features differently, e.g. using a different section name.

Hmm, yeah. I feel.. the same. Wonder if anyone else has thoughts.

Copy link
Contributor

@Havvy Havvy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An ABI page seems okay to me, especially with the outline of what goes there. The "used" page on the other hand is way too specific for its own page.

You'll also want to add the used attribute to the attributes page and link to where the documentation for it lands. I do think that ultimately all attribute docs should be scattered around the reference where they make sense and not just bunched into attributes.md, so having a few under abi.md sounds good to me.

src/used.md Outdated

The `#[used]` attribute can only be applied to `static` variables. This attribute forces the
compiler to keep the variable in the output object file (.o, .rlib, etc.) even if the variable is
not *used*, or referenced, by any other item in the crate. Without this attribute the compiler is
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We use italics to denote definitions. But it doesn't look like "used" is being defined here.

src/used.md Outdated

The `#[used]` attribute can only be applied to `static` variables. This attribute forces the
compiler to keep the variable in the output object file (.o, .rlib, etc.) even if the variable is
not *used*, or referenced, by any other item in the crate. Without this attribute the compiler is
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This whole line that starts with "Without" is literally just the negation of the previous statement, and feels extremely redundant to me.

src/used.md Outdated
The `#[used]` attribute can only be applied to `static` variables. This attribute forces the
compiler to keep the variable in the output object file (.o, .rlib, etc.) even if the variable is
not *used*, or referenced, by any other item in the crate. Without this attribute the compiler is
free to remove variable if it's *unused*, or dead, when optimizations are enabled.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The language doesn't really have any guarantees about optimized vs. unoptimized behaviour. E.g., it wouldn't be a breaking change if we removed unused items from the binary in debug builds, AFAIK. As such, the "when optimizations are enabled" part should not be stated at all.

src/used.md Outdated
```

``` console
$ # with optimizations
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definitely should not show the differences between optimized and unoptimized here. A different compiler can make different choices here.

src/abi.md Outdated
@@ -0,0 +1,9 @@
# Application Binary Interface (ABI)

This section documents (or will document) features that affect the ABI of a Rust program / binary,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We avoid talking about future plans in the reference. Both the parentheticals here should be removed.

src/abi.md Outdated
This section documents (or will document) features that affect the ABI of a Rust program / binary,
rlib, dylib, etc. A (likely incomplete) list of such features is shown below:

- #[used]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should have code backticks for these.

src/used.md Outdated
@@ -0,0 +1,62 @@
## #[used]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's no reason for this to have its own page. Or anything listed in the ABI section. I'd suggest merging the two pages.

@japaric
Copy link
Member Author

japaric commented Jun 22, 2018

@Havvy Thanks for the review. I think I have addressed all your comments in the last commit. Let me know if I missed something.

Havvy
Havvy previously requested changes Jun 22, 2018
Copy link
Contributor

@Havvy Havvy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other than the nits and the whitespace thing, looks good to me.

@@ -1,24 +1,24 @@
# Attributes

> **<sup>Syntax</sup>**
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This whitespace is important. (I've made the same mistake before.)

src/abi.md Outdated
#[used]
static FOO: u32 = 0;

// removed because it's unused
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"removed" -> "removable"

src/abi.md Outdated
&QUUX
}

// removed because it's referenced by a private, unused (dead) function
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"removed" -> "removable"

src/abi.md Outdated
- `#[used]`
- `extern "$ABI" fn`

## `#[used]`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"The `used` attribute". Attribute names are just the name, not the attribute syntax with it.

src/abi.md Outdated
@@ -0,0 +1,60 @@
# Application Binary Interface (ABI)

This section documents features that affect the ABI of a Rust program / binary, rlib, dylib, etc. A
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still a slash here. We try to keep terminology precise in the reference, and the "program / binary" looks very imprecise.

@Havvy Havvy added the RFC Stabilization Docs Documentation required for stabilizing a feature label Jun 22, 2018
@alercah alercah assigned alercah and japaric and unassigned alercah Aug 3, 2018
@steveklabnik
Copy link
Member

ping @japaric ! Are you able to update with the feedback?

@Centril
Copy link
Contributor

Centril commented Jan 10, 2019

ping @japaric -- any progress?

@ehuss ehuss mentioned this pull request Mar 8, 2019
6 tasks
japaric and others added 3 commits March 10, 2019 17:54
- Address review comments.
- Add links to other parts of the reference.
- Remove "list of features", will move these attributes in a future PR.
- Remove feature(used), not needed.
- Remove `pub` from QUUX. Otherwise it is the same as BAZ. I believe this
  was trying to illustrate that a private static accessed from a public
  function counts as "used".
@ehuss
Copy link
Contributor

ehuss commented Mar 11, 2019

I have rebased this PR and addressed the review comments. I also made a few minor changes (explained in the last commit). I think it would be good to move the other attributes to the abi page later in a separate PR (export_name, link_section, and no_mangle).

Copy link
Contributor

@Centril Centril left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aside from the following nits, it LGTM.

src/attributes.md Outdated Show resolved Hide resolved
src/abi.md Outdated Show resolved Hide resolved
src/abi.md Outdated Show resolved Hide resolved
src/abi.md Outdated Show resolved Hide resolved
src/abi.md Outdated Show resolved Hide resolved
src/abi.md Outdated Show resolved Hide resolved
src/abi.md Outdated Show resolved Hide resolved
src/abi.md Outdated Show resolved Hide resolved
@Centril
Copy link
Contributor

Centril commented Mar 11, 2019

@ehuss Merge when you are happy :)

src/abi.md Outdated
#[allow(dead_code)]
static BAR: u32 = 0;

// This is kept because it is referenced by a public, reachable function:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be on QUUX, not BAZ. BAZ is kept because it is a public static.

@@ -204,6 +204,8 @@ which can be used to control type layout.
object file that this item's contents will be placed into.
- `no_mangle` - on any item, do not apply the standard name mangling. Set the
symbol for this item to its identifier.
- [`used`] - on statics, this forces the compiler to keep the variable in the
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't like adding more attributes to the misc. attributes section. Could we rename Misc. attributes to "Object file attributes"? We could throw no_main, no_start and windows_subsystem in that heading too possibly (I really don't know much about object files...so taking a guess here). Where global_allocator goes, I don't know. Perchance just make it its own section?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm looking at regrouping and updating the attributes on the attributes page. I'd like to do that in a separate PR, if that's OK? I've opened issue #534 to discuss this further, I'd be happy if you could leave some feedback since you've done most of the initial work on this.

@Havvy Havvy merged commit 2f9a1f2 into rust-lang:master Mar 11, 2019
@Havvy
Copy link
Contributor

Havvy commented Mar 11, 2019

💟 Thanks @japaric for getting this started and @ehuss for getting it finished.

Centril added a commit to Centril/rust that referenced this pull request Mar 29, 2019
Update books

Update reference, book, rust-by-example, edition-guide, embedded-book

## reference

15 commits in 41493ff..27ad493
2019-03-05 12:32:22 +0100 to 2019-03-26 02:06:15 +0100
- Document wasm_import_module for #[link]. (rust-lang/reference#554)
- Fix tidy error. (rust-lang/reference#552)
- Some minor contributing updates. (rust-lang/reference#551)
- Document `type_length_limit`. (rust-lang/reference#546)
- Add some terms to the glossary. (rust-lang/reference#547)
- Document `target_feature` and `cfg_target_feature`. (rust-lang/reference#545)
- Remove undocumented page (rust-lang/reference#539)
- Reorg and update attributes (rust-lang/reference#537)
- Fix some minor link errors. (rust-lang/reference#538)
- Add linkchecker. (rust-lang/reference#521)
- Expand docs on Macros By Example. (rust-lang/reference#511)
- document #[panic_handler] (rust-lang/reference#362)
- document #[used] (rust-lang/reference#361)
- Note that UB is program-global (rust-lang/reference#490)
- Fix copy-paste error in procedural-macros.md (rust-lang/reference#533)

## book

16 commits in 9cffbeabec3bcec42d09432bfe7705125c848889..b93ec30bbc7b1b5c2f44223249ab359bed2ed5a6
2019-03-02 08:22:41 -0500 to 2019-03-26 16:54:10 -0400
- Unignore example that now compiles
- Fix code snippet (rust-lang/book#1863)
- Fix mdbook link text in readme (rust-lang/book#1881)
- Wrap to 80 cols
- Make sentence more complete (rust-lang/book#1885)
- consistenly use increment and decrement (rust-lang/book#1884)
- Fix link to Reference's conditional-compilation. (rust-lang/book#1878)
- Fix subject/verb agreement
- Remove nostarch snapshot files that have been incorporated and checked
- haha teach the dictionary steve's name
- Add authorship info to the front page
- fix accidental &lt;ol&gt;'s (rust-lang/book#1866)
- Edits to Macros (rust-lang/book#1848)
- Mention `lock` returns `MutexGuard` wrapped in a `LockResult`
- Add an example that illustrates NLL (rust-lang/book#1842)
- change the parameter name from `type` to `kind` (rust-lang/book#1845)

## rust-by-example

33 commits in 2ce92beabb912d417a7314d6da83ac9b50dc2afb..f68ef3d0f4959f6a7d92a08d9994b117f0f4d32d
2018-11-20 10:10:23 -0500 to 2019-03-12 15:32:12 -0300
- Fix some broken links. (rust-lang/rust-by-example#1161)
- Update links in README (rust-lang/rust-by-example#1167)
- Add score/lifetimes/trait.md (rust-lang/rust-by-example#1168)
- Fix rust-lang/rust-by-example#1147 - No more `open_mode` method (rust-lang/rust-by-example#1164)
- Fix for loop description in list print example (rust-lang/rust-by-example#1162)
- Add link to Cargo chapter in the index page (rust-lang/rust-by-example#1159)
- Fix grammar in sentence about integer notation (rust-lang/rust-by-example#1157)
- Do not use deprecated functions from `std::error::Error` trait (rust-lang/rust-by-example#1151)
- Update new_types.md to clarify conversion to base type (rust-lang/rust-by-example#1148)
- Fix compatibility with Rust 2018 (rust-lang/rust-by-example#1150)
- Hello: Fix hint link in `fmt` chapter. (rust-lang/rust-by-example#1146)
- Clarify pub(restricted) example a bit (rust-lang/rust-by-example#1133)
- Add "literal" to list of macro designators (rust-lang/rust-by-example#1153)
- Minor fixes for the macros chapter (rust-lang/rust-by-example#1113)
- Use new book links instead of the old second-edition ones (rust-lang/rust-by-example#1143)
- Recommend implementing Display over ToString (rust-lang/rust-by-example#1145)
- Remove unused import and format with `rustfmt` (rust-lang/rust-by-example#1144)
- fix typo (rust-lang/rust-by-example#1142)
- Update syntax for 2018 Edition (rust-lang/rust-by-example#1136)
- Added two missing full stops (rust-lang/rust-by-example#1138)
- Removed unnecessary spaces before macro designators in macros/dry (rust-lang/rust-by-example#1139)
- fix install mdbook command (rust-lang/rust-by-example#1128)
- Changed word `function` to `type` in comment of fn area (rust-lang/rust-by-example#1132)
- Added two missing backticks in generics/multi_bounds (rust-lang/rust-by-example#1129)
- Fixed small logic error in error/option_unwrap/and_then (rust-lang/rust-by-example#1127)
- Fix typo (rust-lang/rust-by-example#1125)
- The code of conduct link was dead. I fixed it. (rust-lang/rust-by-example#1122)
- I added a space in the Display fmt for Complex (rust-lang/rust-by-example#1123)
- Fix Rust install link in the index (rust-lang/rust-by-example#1124)
- Update cargo conventions section (rust-lang/rust-by-example#1121)
- Fixed curly braces in the `To and from Strings` chapter to be parentheses (rust-lang/rust-by-example#1120)
- Edit a typo (rust-lang/rust-by-example#1119)
- Fixes rust-lang/rust-by-example#1115 by correcting the typo from into_iterator to into_iter (rust-lang/rust-by-example#1118)

## edition-guide

1 commits in aa0022c875907886cae8f3ef8e9ebf6e2a5e728d..b56ddb11548450a6df4edd1ed571b2bc304eb9e6
2019-02-27 22:10:39 -0800 to 2019-03-10 10:23:16 +0100
- Links fixes (rust-lang/edition-guide#133)

## embedded-book

6 commits in 9e656ead82bfe869493dec82653a52e27fa6a05c..07fd3880ea0874d82b1d9ed30ad3427ec98b4e8a
2019-03-03 16:03:26 +0000 to 2019-03-27 15:40:52 +0000
- Fix test errors.  (rust-embedded/book#180)
- Update qemu.md  (rust-embedded/book#170)
- Update no-std.md to remove obsolete FAQ link  (rust-embedded/book#177)
- We've come a long way :)  (rust-embedded/book#176)
- Correct link to team  (rust-embedded/book#175)
- Update some book links to their new homes.  (rust-embedded/book#173)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
RFC Stabilization Docs Documentation required for stabilizing a feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants