-
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 #104306
Rollup of 10 pull requests #104306
Commits on Sep 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a052f2c - Browse repository at this point
Copy the full SHA a052f2cView commit details
Commits on Oct 13, 2022
-
Don't internalize __llvm_profile_counter_bias
Currently, LLVM profiling runtime counter relocation cannot be used by rust during LTO because symbols are being internalized before all symbol information is known. This mode makes LLVM emit a __llvm_profile_counter_bias symbol which is referenced by the profiling initialization, which itself is pulled in by the rust driver here [1]. It is enabled with -Cllvm-args=-runtime-counter-relocation for platforms which are opt-in to this mode like Linux. On these platforms there will be no link error, rather just surprising behavior for a user which request runtime counter relocation. The profiling runtime will not see that symbol go on as if it were never there. On Fuchsia, the profiling runtime must have this symbol which will cause a hard link error. As an aside, I don't have enough context as to why rust's LTO model is how it is. AFAICT, the internalize pass is only safe to run at link time when all symbol information is actually known, this being an example as to why. I think special casing this symbol as a known one that LLVM can emit which should not have it's visbility de-escalated should be fine given how seldom this pattern of defining an undefined symbol to get initilization code pulled in is. From a quick grep, __llvm_profile_runtime is the only symbol that rustc does this for. [1] https://github.com/rust-lang/rust/blob/0265a3e93bf1b89d97cae113ed214954d5c35e22/compiler/rustc_codegen_ssa/src/back/linker.rs#L598
Configuration menu - View commit details
-
Copy full SHA for 2f7b4d9 - Browse repository at this point
Copy the full SHA 2f7b4d9View commit details
Commits on Nov 8, 2022
-
run-make-fulldeps: fix split debuginfo test
Add lots of comments to this test and enable parts of the test that were added but never ran. Signed-off-by: David Wood <david.wood@huawei.com>
Configuration menu - View commit details
-
Copy full SHA for 9bcc083 - Browse repository at this point
Copy the full SHA 9bcc083View commit details -
llvm: dwo only emitted when object code emitted
`CompiledModule` should not think a DWARF object was emitted when a bitcode-only compilation has happened, this can confuse archive file creation (which expects to create an archive containing non-existent dwo files). Signed-off-by: David Wood <david.wood@huawei.com>
Configuration menu - View commit details
-
Copy full SHA for 29dc083 - Browse repository at this point
Copy the full SHA 29dc083View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e0bcd9 - Browse repository at this point
Copy the full SHA 0e0bcd9View commit details
Commits on Nov 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3074678 - Browse repository at this point
Copy the full SHA 3074678View commit details
Commits on Nov 11, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c467006 - Browse repository at this point
Copy the full SHA c467006View commit details -
Configuration menu - View commit details
-
Copy full SHA for 004986b - Browse repository at this point
Copy the full SHA 004986bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6018f11 - Browse repository at this point
Copy the full SHA 6018f11View commit details -
Add no_std AArch64 support for the QNX Neutrino (nto) 7.1 RTOS
This change allows to compile no_std applications for the QNX Neutrino realtime operating system for ARM 64 bit CPUs. Tested with QNX Neutrino 7.1.
Configuration menu - View commit details
-
Copy full SHA for 84e1fbc - Browse repository at this point
Copy the full SHA 84e1fbcView commit details -
Configuration menu - View commit details
-
Copy full SHA for ae71df9 - Browse repository at this point
Copy the full SHA ae71df9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 014f7f4 - Browse repository at this point
Copy the full SHA 014f7f4View commit details -
Don't add message that will never be shown to users
It will still be used in json, as seen by the ui test changes
Configuration menu - View commit details
-
Copy full SHA for 21ce587 - Browse repository at this point
Copy the full SHA 21ce587View commit details -
Configuration menu - View commit details
-
Copy full SHA for df2adc4 - Browse repository at this point
Copy the full SHA df2adc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for f149837 - Browse repository at this point
Copy the full SHA f149837View commit details -
Issue error when
-C link-self-contained
option is used on unsupport……ed platforms Document supported targets for `-C link-self-contained` Move `LinkSelfContainedDefault::True` from wasm_base to wasm32_wasi
Configuration menu - View commit details
-
Copy full SHA for f6d7f08 - Browse repository at this point
Copy the full SHA f6d7f08View commit details -
9 commits in 9286a1beba5b28b115bad67de2ae91fb1c61eb0b..a3dfea71ca0c888a88111086898aa833c291d497 2022-11-04 06:41:49 +0000 to 2022-11-11 03:50:47 +0000 - fix: return non UTF-8 error message (rust-lang/cargo#11321) - Extract `two_kinds_of_msg_format_err` message to de-duplicate it (rust-lang/cargo#11358) - Propagate change of artifact bin dep to its parent fingerprint (rust-lang/cargo#11353) - Fix not a hyperlink warnings (rust-lang/cargo#11357) - Fix wait-for-publish with sparse registry (rust-lang/cargo#11356) - Add `rm` alias to configuration docs (rust-lang/cargo#11351) - Add `registries.crates-io.protocol` docs (rust-lang/cargo#11350) - test(features2): test to prevent regressing of optional host deps of dep (rust-lang/cargo#11342) - Bump to 0.68.0, update changelog (rust-lang/cargo#11340)
Configuration menu - View commit details
-
Copy full SHA for 934c414 - Browse repository at this point
Copy the full SHA 934c414View commit details -
Rollup merge of rust-lang#102049 - fee1-dead-contrib:derive_const, r=…
…oli-obk Add the `#[derive_const]` attribute Closes rust-lang#102371. This is a minimal patchset for the attribute to work. There are no restrictions on what traits this attribute applies to. r? ```@oli-obk```
Configuration menu - View commit details
-
Copy full SHA for f88bbba - Browse repository at this point
Copy the full SHA f88bbbaView commit details -
Rollup merge of rust-lang#102701 - flba-eb:add_qnx_nostd_support, r=c…
…jgillot Add tier 3 no_std AArch64/x86_64 support for the QNX Neutrino RTOS This change allows to compile `no_std` applications for the QNX Neutrino Real-time operating system for ARM 64 bit CPUs. Tested with QNX Neutrino 7.1. Partially discussed in [zulip](https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Adding.20QNX.20as.20target). --- > ## Tier 3 target policy > > At this tier, the Rust project provides no official support for a target, so we place minimal requirements on the introduction of targets. > >A proposed new tier 3 target must be reviewed and approved by a member of the compiler team based on these requirements. The reviewer may choose to gauge broader compiler team consensus via a [Major Change Proposal (MCP)][MCP]. > >A proposed target or target-specific patch that substantially changes code shared with other targets (not just target-specific code) must be reviewed and approved by the appropriate team for that shared code before acceptance. > >- A tier 3 target must have a designated developer or developers (the "target maintainers") on record to be CCed when issues arise regarding the target. (The mechanism to track and CC such developers may evolve over time.) See also nto-qnx.md; designated developers are: - Florian Bartels, `Florian.Bartels@elektrobit.com`, https://github.com/flba-eb - Tristan Roach, `TRoach@blackberry.com`, https://github.com/gh-tr > - Targets must use naming consistent with any existing targets; for instance, a target for the same CPU or OS as an existing Rust target should use the same name for that CPU or OS. Targets should normally use the same names and naming conventions as used elsewhere in the broader ecosystem beyond Rust (such as in other toolchains), unless they have a very good reason to diverge. Changing the name of a target can be highly disruptive, especially once the target reaches a higher tier, so getting the name right is important even for a tier 3 target. > - Target names should not introduce undue confusion or ambiguity unless absolutely necessary to maintain ecosystem compatibility. For example, if the name of the target makes people extremely likely to form incorrect beliefs about what it targets, the name should be changed or augmented to disambiguate it. `aarch64-unknown-nto-qnx7.1.0` and `x86_64-pc-nto-qnx7.1.0` have been chosen as these strings are used in the official QNX Neutrino toolchain (for `C`/`C++`). It should also harmonize with the other Rust targets. The version (`7.1.0 `) is needed because libc needs to distinguish between different versions (`target_env` is set to `710` for QNX Neutrino 7.1): For example, functions are removed from 7.0 to 7.1, sometimes the signature of functions is slightly changed or size/alignment of structs. I'm expecting the same for future versions. This works very well in e.g. `libc` (tested with 7.0 which I'm not going to support). > - Tier 3 targets may have unusual requirements to build or use, but must not create legal issues or impose onerous legal terms for the Rust project or for Rust developers or users. > - The target must not introduce license incompatibilities. No issue as far as I can see. > - Anything added to the Rust repository must be under the standard Rust license (`MIT OR Apache-2.0`). Ok > - The target must not cause the Rust tools or libraries built for any other host (even when supporting cross-compilation to the target) to depend on any new dependency less permissive than the Rust licensing policy. This applies whether the dependency is a Rust crate that would require adding new license exceptions (as specified by the `tidy` tool in the rust-lang/rust repository), or whether the dependency is a native library or binary. In other words, the introduction of the target must not cause a user installing or running a version of Rust or the Rust tools to be subject to any new license requirements. No change for host tools. When cross-compiling for QNX Neutrino, the compiler/linker driver "qcc" is called. It should be possible (but not tested) to use other (OSS) compilers/linkers to produce working binaries. > - Compiling, linking, and emitting functional binaries, libraries, or other code for the target (whether hosted on the target itself or cross-compiling from another target) must not depend on proprietary (non-FOSS) libraries. Host tools built for the target itself may depend on the ordinary runtime libraries supplied by the platform and commonly used by other applications built for the target, but those libraries must not be required for code generation for the target; cross-compilation to the target must not require such libraries at all. For instance, `rustc` built for the target may depend on a common proprietary C runtime library or console output library, but must not depend on a proprietary code generation library or code optimization library. Rust's license permits such combinations, but the Rust project has no interest in maintaining such combinations within the scope of Rust itself, even at tier 3. Only rustc is required for code generation (i.e. no additional libraries to generate code). Linking of executables requires the ordinary runtime libraries `crt` and `libc`. > - "onerous" here is an intentionally subjective term. At a minimum, "onerous" legal/licensing terms include but are *not* limited to: non-disclosure requirements, non-compete requirements, contributor license agreements (CLAs) or equivalent, "non-commercial"/"research-only"/etc terms, requirements conditional on the employer or employment of any particular Rust developers, revocable terms, any requirements that create liability for the Rust project or its developers or users, or any requirements that adversely affect the livelihood or prospects of the Rust project or its developers or users. >- Neither this policy nor any decisions made regarding targets shall create any binding agreement or estoppel by any party. If any member of an approving Rust team serves as one of the maintainers of a target, or has any legal or employment requirement (explicit or implicit) that might affect their decisions regarding a target, they must recuse themselves from any approval decisions regarding the target's tier status, though they may otherwise participate in discussions. > - This requirement does not prevent part or all of this policy from being cited in an explicit contract or work agreement (e.g. to implement or maintain support for a target). This requirement exists to ensure that a developer or team responsible for reviewing and approving a target does not face any legal threats or obligations that would prevent them from freely exercising their judgment in such approval, even if such judgment involves subjective matters or goes beyond the letter of these requirements. I see no issues with any of the above. >- Tier 3 targets should attempt to implement as much of the standard libraries as possible and appropriate (`core` for most targets, `alloc` for targets that can support dynamic memory allocation, `std` for targets with an operating system or equivalent layer of system-provided functionality), but may leave some code unimplemented (either unavailable or stubbed out as appropriate), whether because the target makes it impossible to implement or challenging to implement. The authors of pull requests are not obligated to avoid calling any portions of the standard library on the basis of a tier 3 target not implementing those portions. `core` and `alloc` should be working (no change required). `std` implementation is ongoing and will be provided separately. >- The target must provide documentation for the Rust community explaining how to build for the target, using cross-compilation if possible. If the target supports running binaries, or running tests (even if they do not pass), the documentation must explain how to run such binaries or tests for the target, using emulation if possible or dedicated hardware if necessary. see nto-qnx.md >- Tier 3 targets must not impose burden on the authors of pull requests, or other developers in the community, to maintain the target. In particular, do not post comments (automated or manual) on a PR that derail or suggest a block on the PR based on a tier 3 target. Do not send automated messages or notifications (via any medium, including via ```@`)`` to a PR author or others involved with a PR regarding a tier 3 target, unless they have opted into such messages. > - Backlinks such as those generated by the issue/PR tracker when linking to an issue or PR are not considered a violation of this policy, within reason. However, such messages (even on a separate repository) must not generate notifications to anyone involved with a PR who has not requested such notifications. Ok >- Patches adding or updating tier 3 targets must not break any existing tier 2 or tier 1 target, and must not knowingly break another tier 3 target without approval of either the compiler team or the maintainers of the other tier 3 target. > - In particular, this may come up when working on closely related targets, such as variations of the same architecture with different features. Avoid introducing unconditional uses of features that another variation of the target may not have; use conditional compilation or runtime detection, as appropriate, to let each target run code supported by that target. Ok
Configuration menu - View commit details
-
Copy full SHA for 988a938 - Browse repository at this point
Copy the full SHA 988a938View commit details -
Rollup merge of rust-lang#102900 - abrachet:master, r=bjorn3
Don't internalize __llvm_profile_counter_bias Currently, LLVM profiling runtime counter relocation cannot be used by rust during LTO because symbols are being internalized before all symbol information is known. This mode makes LLVM emit a __llvm_profile_counter_bias symbol which is referenced by the profiling initialization, which itself is pulled in by the rust driver here [1]. It is enabled with -Cllvm-args=-runtime-counter-relocation for platforms which are opt-in to this mode like Linux. On these platforms there will be no link error, rather just surprising behavior for a user which request runtime counter relocation. The profiling runtime will not see that symbol go on as if it were never there. On Fuchsia, the profiling runtime must have this symbol which will cause a hard link error. As an aside, I don't have enough context as to why rust's LTO model is how it is. AFAICT, the internalize pass is only safe to run at link time when all symbol information is actually known, this being an example as to why. I think special casing this symbol as a known one that LLVM can emit which should not have it's visbility de-escalated should be fine given how seldom this pattern of defining an undefined symbol to get initilization code pulled in is. From a quick grep, __llvm_profile_runtime is the only symbol that rustc does this for. [1] https://github.com/rust-lang/rust/blob/0265a3e93bf1b89d97cae113ed214954d5c35e22/compiler/rustc_codegen_ssa/src/back/linker.rs#L598
Configuration menu - View commit details
-
Copy full SHA for 4759140 - Browse repository at this point
Copy the full SHA 4759140View commit details -
Rollup merge of rust-lang#103970 - oli-obk:unhide_unknown_spans, r=es…
…tebank Unhide unknown spans r? `@estebank`
Configuration menu - View commit details
-
Copy full SHA for 20d7207 - Browse repository at this point
Copy the full SHA 20d7207View commit details -
Rollup merge of rust-lang#104105 - davidtwco:split-dwarf-lto, r=micha…
…elwoerister llvm: dwo only emitted when object code emitted Fixes rust-lang#103932. `CompiledModule` should not think a DWARF object was emitted when a bitcode-only compilation has happened, this can confuse archive file creation (which expects to create an archive containing non-existent dwo files). r? ```@michaelwoerister```
Configuration menu - View commit details
-
Copy full SHA for cbffebb - Browse repository at this point
Copy the full SHA cbffebbView commit details -
Rollup merge of rust-lang#104110 - krasimirgg:msan-16, r=nagisa
prevent uninitialized access in black_box for zero-sized-types Don't read the pointer location in black_box for zero sized types, just emit a memory clobber instead. Addresses rust-lang#103304 when rust is build against LLVM at HEAD. Zulip thread: https://rust-lang.zulipchat.com/#narrow/stream/187780-t-compiler.2Fwg-llvm/topic/.28with.20llvm.20at.20HEAD.29.3A.20msan.20error.20in.20core.3A.3Ahint.3A.3Ablack_box
Configuration menu - View commit details
-
Copy full SHA for 401963b - Browse repository at this point
Copy the full SHA 401963bView commit details -
Rollup merge of rust-lang#104117 - crlf0710:update_feature_gate, r=ja…
…ckh726 Mark `trait_upcasting` feature no longer incomplete. This marks the `trait_upcasting` feature no longer incomplete since rust-lang#101336 has been settled for a little while. r? ```@jackh726```
Configuration menu - View commit details
-
Copy full SHA for 83b5e07 - Browse repository at this point
Copy the full SHA 83b5e07View commit details -
Rollup merge of rust-lang#104137 - StackDoubleFlow:err-lsc-unsupporte…
…d, r=petrochenkov Issue error when -C link-self-contained option is used on unsupported platforms The documentation was also updated to reflect this. I'm assuming the supported platforms are the same as initially written in [RELEASES.md](https://github.com/rust-lang/rust/blob/master/RELEASES.md#compiler-17). Fixes rust-lang#103576
Configuration menu - View commit details
-
Copy full SHA for 02a768b - Browse repository at this point
Copy the full SHA 02a768bView commit details -
Rollup merge of rust-lang#104144 - TaKO8Ki:suggest-removing-unnecessa…
…ry-dot, r=fee1-dead Suggest removing unnecessary `.` to use a floating point literal Fixes a part of rust-lang#101883
Configuration menu - View commit details
-
Copy full SHA for 081cc38 - Browse repository at this point
Copy the full SHA 081cc38View commit details -
Rollup merge of rust-lang#104302 - weihanglo:update-cargo, r=weihanglo
Update cargo 9 commits in 9286a1beba5b28b115bad67de2ae91fb1c61eb0b..a3dfea71ca0c888a88111086898aa833c291d497 2022-11-04 06:41:49 +0000 to 2022-11-11 03:50:47 +0000 - fix: return non UTF-8 error message (rust-lang/cargo#11321) - Extract `two_kinds_of_msg_format_err` message to de-duplicate it (rust-lang/cargo#11358) - Propagate change of artifact bin dep to its parent fingerprint (rust-lang/cargo#11353) - Fix not a hyperlink warnings (rust-lang/cargo#11357) - Fix wait-for-publish with sparse registry (rust-lang/cargo#11356) - Add `rm` alias to configuration docs (rust-lang/cargo#11351) - Add `registries.crates-io.protocol` docs (rust-lang/cargo#11350) - test(features2): test to prevent regressing of optional host deps of dep (rust-lang/cargo#11342) - Bump to 0.68.0, update changelog (rust-lang/cargo#11340) r? ``@ghost``
Configuration menu - View commit details
-
Copy full SHA for 82f5085 - Browse repository at this point
Copy the full SHA 82f5085View commit details