mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
Auto merge of #123502 - bjorn3:sync_cg_clif-2024-04-05, r=bjorn3
Subtree sync for rustc_codegen_cranelift This fixes an ICE when compiling unchecked_shl/unchecked_shr. r? `@ghost` `@rustbot` label +A-codegen +A-cranelift +T-compiler
This commit is contained in:
commit
ea40fa210b
@ -13,4 +13,7 @@ task:
|
|||||||
- ./y.sh prepare
|
- ./y.sh prepare
|
||||||
test_script:
|
test_script:
|
||||||
- . $HOME/.cargo/env
|
- . $HOME/.cargo/env
|
||||||
|
# Disabling incr comp reduces cache size and incr comp doesn't save as much
|
||||||
|
# on CI anyway.
|
||||||
|
- export CARGO_BUILD_INCREMENTAL=false
|
||||||
- ./y.sh test
|
- ./y.sh test
|
||||||
|
@ -3,6 +3,8 @@ name: Abi-cafe
|
|||||||
on:
|
on:
|
||||||
- push
|
- push
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
abi_cafe:
|
abi_cafe:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
@ -4,6 +4,20 @@ on:
|
|||||||
- push
|
- push
|
||||||
- pull_request
|
- pull_request
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
|
env:
|
||||||
|
# Disabling incr comp reduces cache size and incr comp doesn't save as much
|
||||||
|
# on CI anyway.
|
||||||
|
CARGO_BUILD_INCREMENTAL: false
|
||||||
|
# Rust's CI denies warnings. Deny them here too to ensure subtree syncs don't
|
||||||
|
# fail because of warnings.
|
||||||
|
RUSTFLAGS: "-Dwarnings"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
rustfmt:
|
rustfmt:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -23,15 +37,15 @@ jobs:
|
|||||||
cargo fmt --check
|
cargo fmt --check
|
||||||
rustfmt --check build_system/main.rs
|
rustfmt --check build_system/main.rs
|
||||||
rustfmt --check example/*
|
rustfmt --check example/*
|
||||||
|
rustfmt --check scripts/*.rs
|
||||||
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
|
|
||||||
defaults:
|
env:
|
||||||
run:
|
CG_CLIF_EXPENSIVE_CHECKS: 1
|
||||||
shell: bash
|
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
@ -47,15 +61,19 @@ jobs:
|
|||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
TARGET_TRIPLE: x86_64-pc-windows-gnu
|
TARGET_TRIPLE: x86_64-pc-windows-gnu
|
||||||
|
apt_deps: gcc-mingw-w64-x86-64 wine-stable
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
TARGET_TRIPLE: aarch64-unknown-linux-gnu
|
TARGET_TRIPLE: aarch64-unknown-linux-gnu
|
||||||
|
apt_deps: gcc-aarch64-linux-gnu qemu-user
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
TARGET_TRIPLE: s390x-unknown-linux-gnu
|
TARGET_TRIPLE: s390x-unknown-linux-gnu
|
||||||
|
apt_deps: gcc-s390x-linux-gnu qemu-user
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
TARGET_TRIPLE: riscv64gc-unknown-linux-gnu
|
TARGET_TRIPLE: riscv64gc-unknown-linux-gnu
|
||||||
|
apt_deps: gcc-riscv64-linux-gnu qemu-user
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
env:
|
env:
|
||||||
TARGET_TRIPLE: x86_64-pc-windows-msvc
|
TARGET_TRIPLE: x86_64-pc-windows-msvc
|
||||||
@ -80,29 +98,11 @@ jobs:
|
|||||||
if: matrix.os == 'windows-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
|
if: matrix.os == 'windows-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
|
||||||
run: rustup set default-host x86_64-pc-windows-gnu
|
run: rustup set default-host x86_64-pc-windows-gnu
|
||||||
|
|
||||||
- name: Install MinGW toolchain and wine
|
- name: Install toolchain and emulator
|
||||||
if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
|
if: matrix.apt_deps != null
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y gcc-mingw-w64-x86-64 wine-stable
|
sudo apt-get install -y ${{ matrix.apt_deps }}
|
||||||
|
|
||||||
- name: Install AArch64 toolchain and qemu
|
|
||||||
if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'aarch64-unknown-linux-gnu'
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y gcc-aarch64-linux-gnu qemu-user
|
|
||||||
|
|
||||||
- name: Install s390x toolchain and qemu
|
|
||||||
if: matrix.env.TARGET_TRIPLE == 's390x-unknown-linux-gnu'
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y gcc-s390x-linux-gnu qemu-user
|
|
||||||
|
|
||||||
- name: Install riscv64gc toolchain and qemu
|
|
||||||
if: matrix.env.TARGET_TRIPLE == 'riscv64gc-unknown-linux-gnu'
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y gcc-riscv64-linux-gnu qemu-user
|
|
||||||
|
|
||||||
- name: Prepare dependencies
|
- name: Prepare dependencies
|
||||||
run: ./y.sh prepare
|
run: ./y.sh prepare
|
||||||
@ -142,10 +142,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
@ -168,10 +164,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
@ -193,20 +185,16 @@ jobs:
|
|||||||
run: ./y.sh prepare
|
run: ./y.sh prepare
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: CI_OPT=1 ./y.sh build --sysroot none
|
run: ./y.sh build --sysroot none
|
||||||
|
|
||||||
- name: Benchmark
|
- name: Benchmark
|
||||||
run: CI_OPT=1 ./y.sh bench
|
run: ./y.sh bench
|
||||||
|
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@ -252,10 +240,10 @@ jobs:
|
|||||||
run: ./y.sh prepare
|
run: ./y.sh prepare
|
||||||
|
|
||||||
- name: Build backend
|
- name: Build backend
|
||||||
run: CI_OPT=1 ./y.sh build --sysroot none
|
run: ./y.sh build --sysroot none
|
||||||
|
|
||||||
- name: Build sysroot
|
- name: Build sysroot
|
||||||
run: CI_OPT=1 ./y.sh build
|
run: ./y.sh build
|
||||||
|
|
||||||
- name: Package prebuilt cg_clif
|
- name: Package prebuilt cg_clif
|
||||||
run: tar cvfJ cg_clif.tar.xz dist
|
run: tar cvfJ cg_clif.tar.xz dist
|
||||||
|
@ -3,6 +3,8 @@ name: Various rustc tests
|
|||||||
on:
|
on:
|
||||||
- push
|
- push
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
bootstrap_rustc:
|
bootstrap_rustc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -101,27 +101,7 @@ For additional ways to use rustc_codegen_cranelift like the JIT mode see [usage.
|
|||||||
|
|
||||||
## Building and testing with changes in rustc code
|
## Building and testing with changes in rustc code
|
||||||
|
|
||||||
This is useful when changing code in `rustc_codegen_cranelift` as part of changing [main Rust repository](https://github.com/rust-lang/rust/).
|
See [rustc_testing.md](docs/rustc_testing.md).
|
||||||
This can happen, for example, when you are implementing a new compiler intrinsic.
|
|
||||||
|
|
||||||
Instruction below uses `$RustCheckoutDir` as substitute for any folder where you cloned Rust repository.
|
|
||||||
|
|
||||||
You need to do this steps to successfully compile and use the cranelift backend with your changes in rustc code:
|
|
||||||
|
|
||||||
1. `cd $RustCheckoutDir`
|
|
||||||
2. Run `python x.py setup` and choose option for compiler (`b`).
|
|
||||||
3. Build compiler and necessary tools: `python x.py build --stage=2 compiler library/std src/tools/rustdoc src/tools/rustfmt`
|
|
||||||
* (Optional) You can also build cargo by adding `src/tools/cargo` to previous command.
|
|
||||||
4. Copy cargo from a nightly toolchain: `cp $(rustup +nightly which cargo) ./build/host/stage2/bin/cargo`. Note that you would need to do this every time you rebuilt `rust` repository.
|
|
||||||
5. Link your new `rustc` to toolchain: `rustup toolchain link stage2 ./build/host/stage2/`.
|
|
||||||
6. (Windows only) compile the build system: `rustc +stage2 -O build_system/main.rs -o y.exe`.
|
|
||||||
7. You need to prefix every `./y.sh` (or `y` if you built `build_system/main.rs` as `y`) command by `rustup run stage2` to make cg_clif use your local changes in rustc.
|
|
||||||
* `rustup run stage2 ./y.sh prepare`
|
|
||||||
* `rustup run stage2 ./y.sh build`
|
|
||||||
* (Optional) run tests: `rustup run stage2 ./y.sh test`
|
|
||||||
8. Now you can use your cg_clif build to compile other Rust programs, e.g. you can open any Rust crate and run commands like `$RustCheckoutDir/compiler/rustc_codegen_cranelift/dist/cargo-clif build --release`.
|
|
||||||
|
|
||||||
You can also set `rust-analyzer.rustc.source` to your rust workspace to get rust-analyzer to understand your changes.
|
|
||||||
|
|
||||||
## Not yet supported
|
## Not yet supported
|
||||||
|
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
|
use std::env;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::path::{Dirs, RelPath};
|
use crate::path::{Dirs, RelPath};
|
||||||
use crate::rustc_info::get_file_name;
|
use crate::rustc_info::get_file_name;
|
||||||
use crate::shared_utils::{rustflags_from_env, rustflags_to_cmd_env};
|
use crate::shared_utils::{rustflags_from_env, rustflags_to_cmd_env};
|
||||||
use crate::utils::{is_ci, is_ci_opt, maybe_incremental, CargoProject, Compiler, LogGroup};
|
use crate::utils::{CargoProject, Compiler, LogGroup};
|
||||||
|
|
||||||
pub(crate) static CG_CLIF: CargoProject = CargoProject::new(&RelPath::SOURCE, "cg_clif");
|
pub(crate) static CG_CLIF: CargoProject = CargoProject::new(&RelPath::SOURCE, "cg_clif");
|
||||||
|
|
||||||
@ -16,20 +17,15 @@ pub(crate) fn build_backend(
|
|||||||
let _group = LogGroup::guard("Build backend");
|
let _group = LogGroup::guard("Build backend");
|
||||||
|
|
||||||
let mut cmd = CG_CLIF.build(&bootstrap_host_compiler, dirs);
|
let mut cmd = CG_CLIF.build(&bootstrap_host_compiler, dirs);
|
||||||
maybe_incremental(&mut cmd);
|
|
||||||
|
|
||||||
let mut rustflags = rustflags_from_env("RUSTFLAGS");
|
let mut rustflags = rustflags_from_env("RUSTFLAGS");
|
||||||
|
|
||||||
rustflags.push("-Zallow-features=rustc_private".to_owned());
|
rustflags.push("-Zallow-features=rustc_private".to_owned());
|
||||||
|
|
||||||
if is_ci() {
|
if env::var("CG_CLIF_EXPENSIVE_CHECKS").is_ok() {
|
||||||
// Deny warnings on CI
|
// Enabling debug assertions implicitly enables the clif ir verifier
|
||||||
rustflags.push("-Dwarnings".to_owned());
|
cmd.env("CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS", "true");
|
||||||
|
cmd.env("CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS", "true");
|
||||||
if !is_ci_opt() {
|
|
||||||
cmd.env("CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS", "true");
|
|
||||||
cmd.env("CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS", "true");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if use_unstable_features {
|
if use_unstable_features {
|
||||||
|
@ -6,8 +6,7 @@ use std::process::Command;
|
|||||||
use crate::path::{Dirs, RelPath};
|
use crate::path::{Dirs, RelPath};
|
||||||
use crate::rustc_info::get_file_name;
|
use crate::rustc_info::get_file_name;
|
||||||
use crate::utils::{
|
use crate::utils::{
|
||||||
maybe_incremental, remove_dir_if_exists, spawn_and_wait, try_hard_link, CargoProject, Compiler,
|
remove_dir_if_exists, spawn_and_wait, try_hard_link, CargoProject, Compiler, LogGroup,
|
||||||
LogGroup,
|
|
||||||
};
|
};
|
||||||
use crate::{config, CodegenBackend, SysrootKind};
|
use crate::{config, CodegenBackend, SysrootKind};
|
||||||
|
|
||||||
@ -270,7 +269,6 @@ fn build_clif_sysroot_for_triple(
|
|||||||
}
|
}
|
||||||
compiler.rustflags.extend(rustflags);
|
compiler.rustflags.extend(rustflags);
|
||||||
let mut build_cmd = STANDARD_LIBRARY.build(&compiler, dirs);
|
let mut build_cmd = STANDARD_LIBRARY.build(&compiler, dirs);
|
||||||
maybe_incremental(&mut build_cmd);
|
|
||||||
if channel == "release" {
|
if channel == "release" {
|
||||||
build_cmd.arg("--release");
|
build_cmd.arg("--release");
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ use std::env;
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::process;
|
use std::process;
|
||||||
|
|
||||||
use self::utils::{is_ci, is_ci_opt, Compiler};
|
use self::utils::Compiler;
|
||||||
|
|
||||||
mod abi_cafe;
|
mod abi_cafe;
|
||||||
mod bench;
|
mod bench;
|
||||||
@ -60,14 +60,9 @@ fn main() {
|
|||||||
}
|
}
|
||||||
env::set_var("CG_CLIF_DISABLE_INCR_CACHE", "1");
|
env::set_var("CG_CLIF_DISABLE_INCR_CACHE", "1");
|
||||||
|
|
||||||
if is_ci() {
|
// Force incr comp even in release mode unless in CI or incremental builds are explicitly disabled
|
||||||
// Disabling incr comp reduces cache size and incr comp doesn't save as much on CI anyway
|
if env::var_os("CARGO_BUILD_INCREMENTAL").is_none() {
|
||||||
env::set_var("CARGO_BUILD_INCREMENTAL", "false");
|
env::set_var("CARGO_BUILD_INCREMENTAL", "true");
|
||||||
|
|
||||||
if !is_ci_opt() {
|
|
||||||
// Enable the Cranelift verifier
|
|
||||||
env::set_var("CG_CLIF_ENABLE_VERIFIER", "1");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut args = env::args().skip(1);
|
let mut args = env::args().skip(1);
|
||||||
|
@ -15,7 +15,6 @@ pub(crate) fn prepare(dirs: &Dirs) {
|
|||||||
RelPath::DOWNLOAD.ensure_exists(dirs);
|
RelPath::DOWNLOAD.ensure_exists(dirs);
|
||||||
crate::tests::RAND_REPO.fetch(dirs);
|
crate::tests::RAND_REPO.fetch(dirs);
|
||||||
crate::tests::REGEX_REPO.fetch(dirs);
|
crate::tests::REGEX_REPO.fetch(dirs);
|
||||||
crate::tests::PORTABLE_SIMD_REPO.fetch(dirs);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn prepare_stdlib(dirs: &Dirs, rustc: &Path) {
|
pub(crate) fn prepare_stdlib(dirs: &Dirs, rustc: &Path) {
|
||||||
|
@ -130,16 +130,10 @@ pub(crate) static REGEX_REPO: GitRepo = GitRepo::github(
|
|||||||
|
|
||||||
pub(crate) static REGEX: CargoProject = CargoProject::new(®EX_REPO.source_dir(), "regex_target");
|
pub(crate) static REGEX: CargoProject = CargoProject::new(®EX_REPO.source_dir(), "regex_target");
|
||||||
|
|
||||||
pub(crate) static PORTABLE_SIMD_REPO: GitRepo = GitRepo::github(
|
pub(crate) static PORTABLE_SIMD_SRC: RelPath = RelPath::BUILD.join("coretests");
|
||||||
"rust-lang",
|
|
||||||
"portable-simd",
|
|
||||||
"5794c837bc605c4cd9dbb884285976dfdb293cce",
|
|
||||||
"a64d8fdd0ed0d9c4",
|
|
||||||
"portable-simd",
|
|
||||||
);
|
|
||||||
|
|
||||||
pub(crate) static PORTABLE_SIMD: CargoProject =
|
pub(crate) static PORTABLE_SIMD: CargoProject =
|
||||||
CargoProject::new(&PORTABLE_SIMD_REPO.source_dir(), "portable-simd_target");
|
CargoProject::new(&PORTABLE_SIMD_SRC, "portable-simd_target");
|
||||||
|
|
||||||
static LIBCORE_TESTS_SRC: RelPath = RelPath::BUILD.join("coretests");
|
static LIBCORE_TESTS_SRC: RelPath = RelPath::BUILD.join("coretests");
|
||||||
|
|
||||||
@ -221,7 +215,12 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
|
|||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
TestCase::custom("test.portable-simd", &|runner| {
|
TestCase::custom("test.portable-simd", &|runner| {
|
||||||
PORTABLE_SIMD_REPO.patch(&runner.dirs);
|
apply_patches(
|
||||||
|
&runner.dirs,
|
||||||
|
"portable-simd",
|
||||||
|
&runner.stdlib_source.join("library/portable-simd"),
|
||||||
|
&PORTABLE_SIMD_SRC.to_path(&runner.dirs),
|
||||||
|
);
|
||||||
|
|
||||||
PORTABLE_SIMD.clean(&runner.dirs);
|
PORTABLE_SIMD.clean(&runner.dirs);
|
||||||
|
|
||||||
|
@ -254,14 +254,6 @@ pub(crate) fn copy_dir_recursively(from: &Path, to: &Path) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn is_ci() -> bool {
|
|
||||||
env::var("CI").is_ok()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn is_ci_opt() -> bool {
|
|
||||||
env::var("CI_OPT").is_ok()
|
|
||||||
}
|
|
||||||
|
|
||||||
static IN_GROUP: AtomicBool = AtomicBool::new(false);
|
static IN_GROUP: AtomicBool = AtomicBool::new(false);
|
||||||
pub(crate) struct LogGroup {
|
pub(crate) struct LogGroup {
|
||||||
is_gha: bool,
|
is_gha: bool,
|
||||||
@ -288,13 +280,3 @@ impl Drop for LogGroup {
|
|||||||
IN_GROUP.store(false, Ordering::SeqCst);
|
IN_GROUP.store(false, Ordering::SeqCst);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn maybe_incremental(cmd: &mut Command) {
|
|
||||||
if is_ci() || std::env::var("CARGO_BUILD_INCREMENTAL").map_or(false, |val| val == "false") {
|
|
||||||
// Disabling incr comp reduces cache size and incr comp doesn't save as much on CI anyway
|
|
||||||
cmd.env("CARGO_BUILD_INCREMENTAL", "false");
|
|
||||||
} else {
|
|
||||||
// Force incr comp even in release mode unless in CI or incremental builds are explicitly disabled
|
|
||||||
cmd.env("CARGO_BUILD_INCREMENTAL", "true");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
23
compiler/rustc_codegen_cranelift/docs/rustc_testing.md
Normal file
23
compiler/rustc_codegen_cranelift/docs/rustc_testing.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Building and testing with changes in rustc code
|
||||||
|
|
||||||
|
This is useful when changing code in `rustc_codegen_cranelift` as part of changing [main Rust repository](https://github.com/rust-lang/rust/).
|
||||||
|
This can happen, for example, when you are implementing a new compiler intrinsic.
|
||||||
|
|
||||||
|
Instruction below uses `$RustCheckoutDir` as substitute for any folder where you cloned Rust repository.
|
||||||
|
|
||||||
|
You need to do this steps to successfully compile and use the cranelift backend with your changes in rustc code:
|
||||||
|
|
||||||
|
1. `cd $RustCheckoutDir`
|
||||||
|
2. Run `python x.py setup` and choose option for compiler (`b`).
|
||||||
|
3. Build compiler and necessary tools: `python x.py build --stage=2 compiler library/std src/tools/rustdoc src/tools/rustfmt`
|
||||||
|
* (Optional) You can also build cargo by adding `src/tools/cargo` to previous command.
|
||||||
|
4. Copy cargo from a nightly toolchain: `cp $(rustup +nightly which cargo) ./build/host/stage2/bin/cargo`. Note that you would need to do this every time you rebuilt `rust` repository.
|
||||||
|
5. Link your new `rustc` to toolchain: `rustup toolchain link stage2 ./build/host/stage2/`.
|
||||||
|
6. (Windows only) compile the build system: `rustc +stage2 -O build_system/main.rs -o y.exe`.
|
||||||
|
7. You need to prefix every `./y.sh` (or `y` if you built `build_system/main.rs` as `y`) command by `rustup run stage2` to make cg_clif use your local changes in rustc.
|
||||||
|
* `rustup run stage2 ./y.sh prepare`
|
||||||
|
* `rustup run stage2 ./y.sh build`
|
||||||
|
* (Optional) run tests: `rustup run stage2 ./y.sh test`
|
||||||
|
8. Now you can use your cg_clif build to compile other Rust programs, e.g. you can open any Rust crate and run commands like `$RustCheckoutDir/compiler/rustc_codegen_cranelift/dist/cargo-clif build --release`.
|
||||||
|
|
||||||
|
You can also set `rust-analyzer.rustc.source` to your rust workspace to get rust-analyzer to understand your changes.
|
@ -90,8 +90,9 @@ unsafe impl Sync for i16 {}
|
|||||||
unsafe impl Sync for i32 {}
|
unsafe impl Sync for i32 {}
|
||||||
unsafe impl Sync for isize {}
|
unsafe impl Sync for isize {}
|
||||||
unsafe impl Sync for char {}
|
unsafe impl Sync for char {}
|
||||||
|
unsafe impl Sync for f32 {}
|
||||||
unsafe impl<'a, T: ?Sized> Sync for &'a T {}
|
unsafe impl<'a, T: ?Sized> Sync for &'a T {}
|
||||||
unsafe impl Sync for [u8; 16] {}
|
unsafe impl<T: Sync, const N: usize> Sync for [T; N] {}
|
||||||
|
|
||||||
#[lang = "freeze"]
|
#[lang = "freeze"]
|
||||||
unsafe auto trait Freeze {}
|
unsafe auto trait Freeze {}
|
||||||
@ -467,7 +468,6 @@ pub fn panic(_msg: &'static str) -> ! {
|
|||||||
|
|
||||||
macro_rules! panic_const {
|
macro_rules! panic_const {
|
||||||
($($lang:ident = $message:expr,)+) => {
|
($($lang:ident = $message:expr,)+) => {
|
||||||
#[cfg(not(bootstrap))]
|
|
||||||
pub mod panic_const {
|
pub mod panic_const {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "nightly-2024-03-28"
|
channel = "nightly-2024-04-05"
|
||||||
components = ["rust-src", "rustc-dev", "llvm-tools"]
|
components = ["rust-src", "rustc-dev", "llvm-tools"]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#![forbid(unsafe_code)]/* This line is ignored by bash
|
#![rustfmt::skip]/* This line is ignored by bash
|
||||||
# This block is ignored by rustc
|
# This block is ignored by rustc
|
||||||
pushd $(dirname "$0")/../
|
pushd $(dirname "$0")/../
|
||||||
RUSTC="$(pwd)/dist/rustc-clif"
|
RUSTC="$(pwd)/dist/rustc-clif"
|
||||||
@ -26,11 +26,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||||||
}
|
}
|
||||||
let profile = std::fs::read_to_string(profile_name)
|
let profile = std::fs::read_to_string(profile_name)
|
||||||
.map_err(|err| format!("Failed to read profile {}", err))?;
|
.map_err(|err| format!("Failed to read profile {}", err))?;
|
||||||
let mut output = std::fs::OpenOptions::new()
|
let mut output =
|
||||||
.create(true)
|
std::fs::OpenOptions::new().create(true).write(true).truncate(true).open(output_name)?;
|
||||||
.write(true)
|
|
||||||
.truncate(true)
|
|
||||||
.open(output_name)?;
|
|
||||||
|
|
||||||
for line in profile.lines() {
|
for line in profile.lines() {
|
||||||
let mut stack = &line[..line.rfind(" ").unwrap()];
|
let mut stack = &line[..line.rfind(" ").unwrap()];
|
||||||
|
@ -130,7 +130,7 @@ pub(crate) fn codegen_int_binop<'tcx>(
|
|||||||
in_lhs: CValue<'tcx>,
|
in_lhs: CValue<'tcx>,
|
||||||
in_rhs: CValue<'tcx>,
|
in_rhs: CValue<'tcx>,
|
||||||
) -> CValue<'tcx> {
|
) -> CValue<'tcx> {
|
||||||
if bin_op != BinOp::Shl && bin_op != BinOp::Shr {
|
if !matches!(bin_op, BinOp::Shl | BinOp::ShlUnchecked | BinOp::Shr | BinOp::ShrUnchecked) {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
in_lhs.layout().ty,
|
in_lhs.layout().ty,
|
||||||
in_rhs.layout().ty,
|
in_rhs.layout().ty,
|
||||||
|
Loading…
Reference in New Issue
Block a user