-
Notifications
You must be signed in to change notification settings - Fork 13.8k
rustc_target: introduce Architecture #147645
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
base: master
Are you sure you want to change the base?
Conversation
These commits modify compiler targets. Some changes occurred in compiler/rustc_attr_parsing Some changes occurred in cfg and check-cfg configuration cc @Urgau Some changes occurred in compiler/rustc_codegen_cranelift cc @bjorn3 Some changes occurred in compiler/rustc_codegen_ssa Some changes occurred in compiler/rustc_codegen_gcc |
r? @nnethercote rustbot has assigned @nnethercote. Use |
289dc7b
to
23b2e59
Compare
This comment has been minimized.
This comment has been minimized.
Improve type safety by using an enum rather than strings.
This seems like a good change, but I think it's large enough that it should have an MCP, meeting the criteria of "Significant internal refactorings/changes" -- it's a simple change, but one that touches a lot of files. |
Done: rust-lang/compiler-team#926. |
I'm curious if this has any performance impact, let's see. @bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
rustc_target: introduce Architecture
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (3a048fa): comparison URL. Overall result: ❌✅ regressions and improvements - no action neededBenchmarking this pull request means it may be perf-sensitive – we'll automatically label it not fit for rolling up. You can override this, but we strongly advise not to, due to possible changes in compiler perf. @bors rollup=never Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)Results (primary -2.1%, secondary 1.1%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (primary 2.1%, secondary 0.1%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeResults (secondary -0.0%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Bootstrap: 473.51s -> 474.979s (0.31%) |
☔ The latest upstream changes (presumably #147692) made this pull request unmergeable. Please resolve the merge conflicts. |
Improve type safety by using an enum rather than strings.