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

Add riscv64gc-unknown-hermit Tier 3 target #89424

Conversation

simonschoening
Copy link
Contributor

This pull request adds the riscv64gc-unknown-hermit target and is based on existing targets (hermit, riscv64gc).

I understand that Tier 3 targets must meet certain requirements. Adding this target introduces no new dependencies
or changes affecting other targets.

@rust-highfive
Copy link
Collaborator

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @nagisa (or someone else) soon.

Please see the contribution instructions for more information.

@rust-highfive
Copy link
Collaborator

⚠️ Warning ⚠️

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Oct 1, 2021
@rust-log-analyzer

This comment has been minimized.

base.features = "+m,+a,+f,+d,+c".to_string();
base.code_model = Some(CodeModel::Medium);
base.relocation_model = RelocModel::Pic;
base.tls_model = TlsModel::LocalExec;
Copy link
Member

Choose a reason for hiding this comment

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

Why is this TLS model used by default? Does the target not support InitialExec?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I don't think that InitialExec is needed since the target is not used to build shared libraries.

compiler/rustc_target/src/spec/riscv64gc_unknown_hermit.rs Outdated Show resolved Hide resolved
@nagisa
Copy link
Member

nagisa commented Oct 2, 2021

Please quote the corresponding requirements verbatim from the tier 3 target tier policy to explain how the target meets those requirements (just a comment here is fine).

Adding a page to src/doc/rustc/src/platform-support/ would also be nice, though not required.

@rust-log-analyzer

This comment has been minimized.

@simonschoening
Copy link
Contributor Author

simonschoening commented Oct 2, 2021

  • 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.)

Yes, that's me. I am working on the riscv64 port of RustyHermit.

  • 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.

The naming riscv64gc-unknown-hermit is consistent with already existing targets like x86_64-unknown-hermit and riscv64gc-unknown-linux-gnu.

  • 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.
    • Anything added to the Rust repository must be under the standard Rust
      license (MIT OR Apache-2.0).
    • 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.
    • If the target supports building host tools (such as rustc or cargo),
      those host tools must not depend on proprietary (non-FOSS) libraries, other
      than ordinary runtime libraries supplied by the platform and commonly used
      by other binaries built for the target. 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.
    • Targets should not require proprietary (non-FOSS) components to link a
      functional binary or library.
    • "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.

This is not a problem. The changes for the new target are very small and do not include any new dependencies.

  • 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 understand.

  • 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.

Not all parts of std are implemented.

  • 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 tests (even if they do not pass), the documentation must
    explain how to run tests for the target, using emulation if possible or
    dedicated hardware if necessary.

This is still very work-in-progress. RustyHermit will be usable on RISC-V like on x86-64.
A small documentation on using RustyHermit is given in the README.md of the rusty-hermit repository).

The riscv64 port is available here. Building the programs in the example/ folder already works using the new target triple and disabling the default features. Supported features are smp and smoltcp.

The kernel can be used with the hypervisor uhyve (but only on Linux with KVM support running on RISC-V cores supporting the Hypervisor extension).

With rusty-loader located in loader/, RustyHermit can be run on qemu with the OpenSBI firmware and possibly real hardware with a SBI compatible firmware.
A simple driver is used to support the NIC of qemu machine sifive_u.

  • 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.

I understand.

  • 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.

There are no changes affecting other targets.

@simonschoening simonschoening requested a review from nagisa October 4, 2021 12:55
@joshtriplett
Copy link
Member

Can you please add the platform documentation as a markdown file linked from the target's entry in platform-support?

@nagisa
Copy link
Member

nagisa commented Oct 8, 2021

As requested by Josh above, please add an entry to src/doc/rustc/src/platform-support (I know I said its not required in my previous comment, but since its been asked for twice, it seems like adding one would make this go more smoothly).

r=me afterwards.

@nagisa nagisa added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Oct 9, 2021
@apiraino apiraino added the T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. label Oct 14, 2021
@JohnCSimon
Copy link
Member

triage:
Looks like the author did the requested comments but didn't set to review.

@rustbot label: -S-waiting-on-author +S-waiting-on-review

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Nov 30, 2021
@bors
Copy link
Contributor

bors commented Dec 6, 2021

☔ The latest upstream changes (presumably #91284) made this pull request unmergeable. Please resolve the merge conflicts.

@nagisa
Copy link
Member

nagisa commented Dec 8, 2021

Looks like the author did the requested comments but didn't set to review.

That is not the case. What @joshtriplett was requesting is a file under src/doc/rustc/src/platform-support/ with a target description, much like e.g. https://github.com/rust-lang/rust/blob/master/src/doc/rustc/src/platform-support/x86_64-unknown-none.md. @simonschoening, can you make sure such a file is added?

In addition to this for this to be mergeable, you will need to rebase your PR branch, rather than merging in the master. See https://rustc-dev-guide.rust-lang.org/git.html#rebasing-and-conflicts

@simonschoening simonschoening force-pushed the riscv64gc-unknown-hermit branch from 2805718 to e52b122 Compare December 9, 2021 10:37
@sanxiyn sanxiyn added the O-riscv Target: RISC-V architecture label Dec 9, 2021
@nagisa nagisa added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Dec 27, 2021
@simonschoening simonschoening force-pushed the riscv64gc-unknown-hermit branch from e52b122 to 1ca12bf Compare January 18, 2022 17:35
@JohnCSimon JohnCSimon added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Feb 6, 2022
@simonschoening
Copy link
Contributor Author

@stlankes will revise and re-open the pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
O-riscv Target: RISC-V architecture S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants