-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Rollup of 10 pull requests #93009
Rollup of 10 pull requests #93009
Commits on Nov 2, 2021
-
Clarify how to quote and respond to the target tier policy requirements
Several times, people have seemed unclear on how to respond to some of the policy requirements, particularly those that just state things the target developers must *not* do (e.g. not posting to PRs that break the target). Add a note that such requirements just need acknowledgement, nothing more. Make quoting and responding a "must" rather than an "is encouraged to", since it's easier to review the requirements that way.
Configuration menu - View commit details
-
Copy full SHA for 470b49b - Browse repository at this point
Copy the full SHA 470b49bView commit details -
Clarify dependency requirements in the face of cross-compilation
The requirement on dependencies was phrased in terms of "host tools", but it was also intended to apply equally to targets that only support cross-compilation. Only the exception (for libraries commonly needed for binaries on the target) was intended to apply to host tools. Reword the requirement to talk about the dependencies required for "compiling, linking,and emitting functional binaries, libraries, or other code for the target", rather than generically in terms of dependencies for rustc/cargo. This doesn't change the net effect of the requirements, since other requirements already stated that the target can't make the Rust toolchain depend on proprietary libraries. However, this should make the requirements clearer.
Configuration menu - View commit details
-
Copy full SHA for 9a016ba - Browse repository at this point
Copy the full SHA 9a016baView commit details -
Clarify documentation about running binaries
The requirement for target documentation talks about "running tests", but tier 3 targets often don't support running the full testsuite, and in practice the documentation for how to run an individual binary may be more useful. Change "running tests" to "running binaries, or running tests".
Configuration menu - View commit details
-
Copy full SHA for 1aeb3f9 - Browse repository at this point
Copy the full SHA 1aeb3f9View commit details -
Point to platform-support/ for target-specific documentation
Explain that target-specific documentation should appear in a subdirectory of platform-support, with a link from the target's entry on the platform-support page.
Configuration menu - View commit details
-
Copy full SHA for 10420ef - Browse repository at this point
Copy the full SHA 10420efView commit details -
Configuration menu - View commit details
-
Copy full SHA for f863e4c - Browse repository at this point
Copy the full SHA f863e4cView commit details
Commits on Jan 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 5ab40c8 - Browse repository at this point
Copy the full SHA 5ab40c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for e6bc0ac - Browse repository at this point
Copy the full SHA e6bc0acView commit details -
Configuration menu - View commit details
-
Copy full SHA for 268ae9a - Browse repository at this point
Copy the full SHA 268ae9aView commit details -
Apply suggestions from code review
Use "(associated) function" terminology instead of "method". Co-authored-by: Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 96b2f8a - Browse repository at this point
Copy the full SHA 96b2f8aView commit details
Commits on Jan 10, 2022
-
Fix
#[rustc_must_implement_one_of]
This adds the old, pre 90639 `is_implemented` that previously only was true if the implementation of the item was from the given impl block and not from the trait default.
Configuration menu - View commit details
-
Copy full SHA for f64daff - Browse repository at this point
Copy the full SHA f64daffView commit details
Commits on Jan 11, 2022
-
Add a test for ungated
#[rustc_must_implement_one_of]
This test checks that `#[rustc_must_implement_one_of]` is gated behind `#![feature(rustc_attrs)]`.
Configuration menu - View commit details
-
Copy full SHA for 4ccfa97 - Browse repository at this point
Copy the full SHA 4ccfa97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 842bf71 - Browse repository at this point
Copy the full SHA 842bf71View commit details
Commits on Jan 12, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 68515cb - Browse repository at this point
Copy the full SHA 68515cbView commit details
Commits on Jan 14, 2022
-
Remove LLVMRustMarkAllFunctionsNounwind
This was originally introduced in rust-lang#10916 as a way to remove all landing pads when performing LTO. However this is no longer necessary today since rustc properly marks all functions and call-sites as nounwind where appropriate. In fact this is incorrect in the presence of `extern "C-unwind"` which must create a landing pad when compiled with `-C panic=abort` so that foreign exceptions are caught and properly turned into aborts.
Configuration menu - View commit details
-
Copy full SHA for 606d9c0 - Browse repository at this point
Copy the full SHA 606d9c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for c30ec5a - Browse repository at this point
Copy the full SHA c30ec5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f9174e1 - Browse repository at this point
Copy the full SHA f9174e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28edd7a - Browse repository at this point
Copy the full SHA 28edd7aView commit details
Commits on Jan 15, 2022
-
Enable wrapping words by default
Faced with a very long word, browsers will let it overflow its box horizontally rather than break it in the middle. We essentially never want that behavior. We would rather break the word and keep it inside its horizontal limits. So we apply a default overflow-wrap: break-word/anywhere to the document as a while. In some contexts we would rather add a horizontal scrollbar (code blocks), or elide the excess text with an ellipsis (sidebar). Those still work as expected.
Configuration menu - View commit details
-
Copy full SHA for 4d5a6c9 - Browse repository at this point
Copy the full SHA 4d5a6c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07fd90e - Browse repository at this point
Copy the full SHA 07fd90eView commit details
Commits on Jan 16, 2022
-
Add
log2
andlog10
toNonZeroU*
This version is nice in that it doesn't need to worry about zeros, and thus doesn't have any error cases.
Configuration menu - View commit details
-
Copy full SHA for 3dfcc66 - Browse repository at this point
Copy the full SHA 3dfcc66View commit details -
Use
carrying_{mul|add}
innum::bignum
Now that we have (unstable) methods for this, we don't need the bespoke trait methods for it in the `bignum` implementation.
Configuration menu - View commit details
-
Copy full SHA for e0e15c9 - Browse repository at this point
Copy the full SHA e0e15c9View commit details
Commits on Jan 17, 2022
-
rustc_codegen_llvm: Remove (almost) unused span parameter from many f…
…unctions in metadata.rs.
Configuration menu - View commit details
-
Copy full SHA for 9a79ab6 - Browse repository at this point
Copy the full SHA 9a79ab6View commit details -
Rollup merge of rust-lang#90498 - joshtriplett:target-tier-policy-dra…
…ft-updates, r=Mark-Simulacrum Clarifications in the target tier policy We've added several targets since the introduction of the target tier policy. Based on experiences of those adding such targets, and discussions around such additions, clarify the target tier policy to make it easier to follow and work with. None of these changes substantively change the requirements on targets. (In some cases the changes do direct target submitters to follow specific process requirements for the addition of a target, such as how to respond to requirements, where to put target-specific documentation, or what should appear in that documentation. Those changes are procedural in nature and document the procedures we already direct people to follow.) - Clarify how to quote and respond to the target tier policy requirements. Several times, people have seemed unclear on how to respond to some of the policy requirements, particularly those that just state things the target developers must *not* do (e.g. not posting to PRs that break the target). Add a note that such requirements just need acknowledgement, nothing more. - Clarify dependency requirements in the face of cross-compilation. I previously phrased this confusingly in terms of "host tools", since that is the case where an exception applies (allowing proprietary target libraries commonly used by binaries for the target). Rephrase it to apply equally to cross-compilation. This doesn't change the net effect of the requirements, since other requirements already cover the dependencies of the Rust toolchain. - Clarify documentation about running binaries. The requirement for target documentation talks about "running tests", but tier 3 targets often don't support running the full testsuite, and in practice the documentation for how to run an individual binary may be more useful. Change "running tests" to "running binaries, or running tests". - Explain where to place target-specific documentation (a subdirectory of platform-support, with a link from the platform-support entry for the target). - Add a template for target-specific documentation.
Configuration menu - View commit details
-
Copy full SHA for 67bcbde - Browse repository at this point
Copy the full SHA 67bcbdeView commit details -
Rollup merge of rust-lang#92164 - WaffleLapkin:rustc_must_implement_o…
…ne_of_attr, r=Aaron1011 Implement `#[rustc_must_implement_one_of]` attribute This PR adds a new attribute — `#[rustc_must_implement_one_of]` that allows changing the "minimal complete definition" of a trait. It's similar to GHC's minimal `{-# MINIMAL #-}` pragma, though `#[rustc_must_implement_one_of]` is weaker atm. Such attribute was long wanted. It can be, for example, used in `Read` trait to make transitions to recently added `read_buf` easier: ```rust #[rustc_must_implement_one_of(read, read_buf)] pub trait Read { fn read(&mut self, buf: &mut [u8]) -> Result<usize> { let mut buf = ReadBuf::new(buf); self.read_buf(&mut buf)?; Ok(buf.filled_len()) } fn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<()> { default_read_buf(|b| self.read(b), buf) } } impl Read for Ty0 {} //^ This will fail to compile even though all `Read` methods have default implementations // Both of these will compile just fine impl Read for Ty1 { fn read(&mut self, buf: &mut [u8]) -> Result<usize> { /* ... */ } } impl Read for Ty2 { fn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<()> { /* ... */ } } ``` For now, this is implemented as an internal attribute to start experimenting on the design of this feature. In the future we may want to extend it: - Allow arbitrary requirements like `a | (b & c)` - Allow multiple requirements like - ```rust #[rustc_must_implement_one_of(a, b)] #[rustc_must_implement_one_of(c, d)] ``` - Make it appear in rustdoc documentation - Change the syntax? - Etc Eventually, we should make an RFC and make this (or rather similar) attribute public. --- I'm fairly new to compiler development and not at all sure if the implementation makes sense, but at least it passes tests :)
Configuration menu - View commit details
-
Copy full SHA for 32d85c0 - Browse repository at this point
Copy the full SHA 32d85c0View commit details -
Rollup merge of rust-lang#92729 - michaelwoerister:remove-unused-span…
…-debuginfo, r=petrochenkov rustc_codegen_llvm: Remove (almost) unused span parameter from many functions in metadata.rs Many functions and intermediate data structures in `rustc_codegen_llvm/src/debuginfo/metadata.rs` take a span parameter that is only used for providing a span to a `span_bug!()` invocation, in case the debuginfo typemap gets corrupted. However, this span does not really convey useful information as it just points to the first point a type is used -- and half of the time is initialized to `DUMMY_SP`. This PR removes this span parameter from the module. It also removes the following unused parameters from `composite_type_metadata()` together with an outdated comment: ```rust // Ignore source location information as long as it // can't be reconstructed for non-local crates. _file_metadata: &'ll DIFile, _definition_span: Span, ```
Configuration menu - View commit details
-
Copy full SHA for 97743d9 - Browse repository at this point
Copy the full SHA 97743d9View commit details -
Rollup merge of rust-lang#92752 - jamestiotio:error-codes-typos, r=na…
…gisa Correct minor typos in some long error code explanations Just a little nitpick to improve the long explanations of the error codes. 😊
Configuration menu - View commit details
-
Copy full SHA for 4de63e7 - Browse repository at this point
Copy the full SHA 4de63e7View commit details -
Rollup merge of rust-lang#92801 - jsha:overflow-wrap, r=GuillaumeGomez
Enable wrapping words by default Faced with a very long word, browsers will let it overflow its box horizontally rather than break it in the middle. We essentially never want that behavior. We would rather break the word and keep it inside its horizontal limits. So we apply a default overflow-wrap: break-word/anywhere to the document as a while. In some contexts we would rather add a horizontal scrollbar (code blocks), or elide the excess text with an ellipsis (sidebar). Those still work as expected. Fixes rust-lang#92771 [Some related discussion](https://rust-lang.zulipchat.com/#narrow/stream/266220-rustdoc/topic/wrap.20.2F.20overflow.20.2F.20scroll) and a related issue: rust-lang#92421. Demo: https://rustdoc.crud.net/jsha/overflow-wrap/std/iter/trait.Iterator.html#method.try_find r? ``@GuillaumeGomez``
Configuration menu - View commit details
-
Copy full SHA for 51aa20d - Browse repository at this point
Copy the full SHA 51aa20dView commit details -
Rollup merge of rust-lang#92825 - pierwill:rustc-version-force-rename…
…, r=Mark-Simulacrum Rename environment variable for overriding rustc version
Configuration menu - View commit details
-
Copy full SHA for 6acb704 - Browse repository at this point
Copy the full SHA 6acb704View commit details -
Rollup merge of rust-lang#92877 - Amanieu:remove_llvm_nounwind, r=Mar…
…k-Simulacrum Remove LLVMRustMarkAllFunctionsNounwind This was originally introduced in rust-lang#10916 as a way to remove all landing pads when performing LTO. However this is no longer necessary today since rustc properly marks all functions and call-sites as nounwind where appropriate. In fact this is incorrect in the presence of `extern "C-unwind"` which must create a landing pad when compiled with `-C panic=abort` so that foreign exceptions are caught and properly turned into aborts.
Configuration menu - View commit details
-
Copy full SHA for 7f02604 - Browse repository at this point
Copy the full SHA 7f02604View commit details -
Rollup merge of rust-lang#92936 - vacuus:html-markdown-parse, r=Guill…
…aumeGomez rustdoc: Remove `collect` in `html::markdown::parse`
Configuration menu - View commit details
-
Copy full SHA for 25f73b7 - Browse repository at this point
Copy the full SHA 25f73b7View commit details -
Rollup merge of rust-lang#92956 - scottmcm:nonzero-log2, r=dtolnay
Add `log2` and `log10` to `NonZeroU*` This version is nice in that it doesn't need to worry about zeros, and thus doesn't have any error cases. cc `int_log` tracking issue rust-lang#70887 (I didn't add them to `NonZeroI*` despite it being on `i*` since allowing negatives bring back the error cases again.)
Configuration menu - View commit details
-
Copy full SHA for 731af70 - Browse repository at this point
Copy the full SHA 731af70View commit details -
Rollup merge of rust-lang#92960 - scottmcm:carrying-bignum, r=Mark-Si…
…mulacrum Use `carrying_{mul|add}` in `num::bignum` Now that we have (unstable) methods for this, we don't need the bespoke trait methods for it in the `bignum` implementation. cc rust-lang#85532
Configuration menu - View commit details
-
Copy full SHA for 68d47de - Browse repository at this point
Copy the full SHA 68d47deView commit details