-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Initial support for riscv32{e|em|emc}_unknown_none_elf #130555
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b22b348
Add targets: riscv32{e|em|emc}
hegza 7a0bac4
Add comment: data_layout
hegza 04099b6
Update target fns to latest main
hegza f303782
doc: platform-support.md: Document port
hegza 66b3d0b
Work around the stage0 sanity check
hegza fe658e1
Add assembly tests to satisfy 'tidy'
hegza 346afc7
Add UI test to verify invalid loads are not generated
hegza 6edd0b3
Add platform support doc for rv32e
hegza File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
compiler/rustc_target/src/spec/targets/riscv32e_unknown_none_elf.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
use crate::spec::{Cc, LinkerFlavor, Lld, PanicStrategy, RelocModel, Target, TargetOptions}; | ||
|
||
pub(crate) fn target() -> Target { | ||
Target { | ||
// The below `data_layout` is explicitly specified by the ilp32e ABI in LLVM. See also | ||
// `options.llvm_abiname`. | ||
data_layout: "e-m:e-p:32:32-i64:64-n32-S32".into(), | ||
llvm_target: "riscv32".into(), | ||
metadata: crate::spec::TargetMetadata { | ||
description: Some("Bare RISC-V (RV32E ISA)".into()), | ||
tier: Some(3), | ||
host_tools: Some(false), | ||
std: Some(false), | ||
}, | ||
pointer_width: 32, | ||
arch: "riscv32".into(), | ||
|
||
options: TargetOptions { | ||
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes), | ||
linker: Some("rust-lld".into()), | ||
cpu: "generic-rv32".into(), | ||
// The ilp32e ABI specifies the `data_layout` | ||
llvm_abiname: "ilp32e".into(), | ||
max_atomic_width: Some(32), | ||
atomic_cas: false, | ||
features: "+e,+forced-atomics".into(), | ||
panic_strategy: PanicStrategy::Abort, | ||
relocation_model: RelocModel::Static, | ||
emit_debug_gdb_scripts: false, | ||
eh_frame_header: false, | ||
..Default::default() | ||
}, | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
compiler/rustc_target/src/spec/targets/riscv32em_unknown_none_elf.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
use crate::spec::{Cc, LinkerFlavor, Lld, PanicStrategy, RelocModel, Target, TargetOptions}; | ||
|
||
pub(crate) fn target() -> Target { | ||
Target { | ||
// The below `data_layout` is explicitly specified by the ilp32e ABI in LLVM. See also | ||
// `options.llvm_abiname`. | ||
data_layout: "e-m:e-p:32:32-i64:64-n32-S32".into(), | ||
llvm_target: "riscv32".into(), | ||
metadata: crate::spec::TargetMetadata { | ||
description: Some("Bare RISC-V (RV32EM ISA)".into()), | ||
tier: Some(3), | ||
host_tools: Some(false), | ||
std: Some(false), | ||
}, | ||
pointer_width: 32, | ||
arch: "riscv32".into(), | ||
|
||
options: TargetOptions { | ||
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes), | ||
linker: Some("rust-lld".into()), | ||
cpu: "generic-rv32".into(), | ||
// The ilp32e ABI specifies the `data_layout` | ||
llvm_abiname: "ilp32e".into(), | ||
max_atomic_width: Some(32), | ||
atomic_cas: false, | ||
features: "+e,+m,+forced-atomics".into(), | ||
panic_strategy: PanicStrategy::Abort, | ||
relocation_model: RelocModel::Static, | ||
emit_debug_gdb_scripts: false, | ||
eh_frame_header: false, | ||
..Default::default() | ||
}, | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
compiler/rustc_target/src/spec/targets/riscv32emc_unknown_none_elf.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
use crate::spec::{Cc, LinkerFlavor, Lld, PanicStrategy, RelocModel, Target, TargetOptions}; | ||
|
||
pub(crate) fn target() -> Target { | ||
Target { | ||
// The below `data_layout` is explicitly specified by the ilp32e ABI in LLVM. See also | ||
// `options.llvm_abiname`. | ||
data_layout: "e-m:e-p:32:32-i64:64-n32-S32".into(), | ||
llvm_target: "riscv32".into(), | ||
metadata: crate::spec::TargetMetadata { | ||
description: Some("Bare RISC-V (RV32EMC ISA)".into()), | ||
tier: Some(3), | ||
host_tools: Some(false), | ||
std: Some(false), | ||
}, | ||
pointer_width: 32, | ||
arch: "riscv32".into(), | ||
|
||
options: TargetOptions { | ||
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes), | ||
linker: Some("rust-lld".into()), | ||
cpu: "generic-rv32".into(), | ||
// The ilp32e ABI specifies the `data_layout` | ||
llvm_abiname: "ilp32e".into(), | ||
max_atomic_width: Some(32), | ||
atomic_cas: false, | ||
features: "+e,+m,+c,+forced-atomics".into(), | ||
panic_strategy: PanicStrategy::Abort, | ||
relocation_model: RelocModel::Static, | ||
emit_debug_gdb_scripts: false, | ||
eh_frame_header: false, | ||
..Default::default() | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/doc/rustc/src/platform-support/riscv32e-unknown-none-elf.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# `riscv32{e,em,emc}-unknown-none-elf` | ||
|
||
**Tier: 3** | ||
|
||
Bare-metal target for RISC-V CPUs with the RV32E, RV32EM and RV32EMC ISAs. | ||
|
||
## Target maintainers | ||
|
||
* Henri Lunnikivi, <henri.lunnikivi@gmail.com>, [@hegza](https://github.com/hegza) | ||
|
||
## Requirements | ||
|
||
The target is cross-compiled, and uses static linking. No external toolchain is | ||
required and the default `rust-lld` linker works, but you must specify a linker | ||
script. | ||
|
||
## Building the target | ||
|
||
This target is included in Rust and can be installed via `rustup`. | ||
|
||
## Testing | ||
|
||
This is a cross-compiled `no-std` target, which must be run either in a | ||
simulator or by programming them onto suitable hardware. It is not possible to | ||
run the Rust test-suite on this target. | ||
|
||
## Cross-compilation toolchains and C code | ||
|
||
This target supports C code. If interlinking with C or C++, you may need to use | ||
`riscv32-unknown-elf-gcc` as a linker instead of `rust-lld`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:43:11 | ||
| | ||
LL | asm!("li x16, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x16, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:46:11 | ||
| | ||
LL | asm!("li x17, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x17, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:49:11 | ||
| | ||
LL | asm!("li x18, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x18, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:52:11 | ||
| | ||
LL | asm!("li x19, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x19, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:55:11 | ||
| | ||
LL | asm!("li x20, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x20, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:58:11 | ||
| | ||
LL | asm!("li x21, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x21, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:61:11 | ||
| | ||
LL | asm!("li x22, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x22, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:64:11 | ||
| | ||
LL | asm!("li x23, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x23, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:67:11 | ||
| | ||
LL | asm!("li x24, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x24, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:70:11 | ||
| | ||
LL | asm!("li x25, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x25, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:73:11 | ||
| | ||
LL | asm!("li x26, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x26, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:76:11 | ||
| | ||
LL | asm!("li x27, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x27, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:79:11 | ||
| | ||
LL | asm!("li x28, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x28, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:82:11 | ||
| | ||
LL | asm!("li x29, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x29, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:85:11 | ||
| | ||
LL | asm!("li x30, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x30, 0 | ||
| ^ | ||
|
||
error: invalid operand for instruction | ||
--> $DIR/riscv32e-registers.rs:88:11 | ||
| | ||
LL | asm!("li x31, 0"); | ||
| ^ | ||
| | ||
note: instantiated into assembly here | ||
--> <inline asm>:1:5 | ||
| | ||
LL | li x31, 0 | ||
| ^ | ||
|
||
error: aborting due to 16 previous errors | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Sometimes we get PRs that mass-change the
data_layout
string for a bunch of targets, and we had difficulty figuring out why thisdata_layout
was being rejected. So, like all things that got a "huh, that's funny", we could use a comment here. Can you leave a note that specifies that RISCV32E'starget.data_layout
here is tied to thellvm_abiname: "ilp32e"
? Most target specs don't explicitly use that field, and "ilp32e" is close to "ilp32f", anyways, so calling attention to any Levenshtein-1 mistakes is usually good.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.
Relevant commentary added.