Skip to content

Commit ac8c3bf

Browse files
committed
Auto merge of rust-lang#86966 - JohnTitor:rollup-uiqj2vc, r=JohnTitor
Rollup of 9 pull requests Successful merges: - rust-lang#86639 (Support lint tool names in rustc command line options) - rust-lang#86812 (Recover from `&dyn mut ...` parse errors) - rust-lang#86917 (Add doc comment for `impl From<LayoutError> for TryReserveError`) - rust-lang#86925 (Add self to mailmap) - rust-lang#86927 (Sync rustc_codegen_cranelift) - rust-lang#86932 (Fix ICE when misplaced visibility cannot be properly parsed) - rust-lang#86933 (Clean up rustdoc static files) - rust-lang#86955 (Fix typo in `ops::Drop` docs) - rust-lang#86956 (Revert "Add "every" as a doc alias for "all".") Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents d2b04f0 + 01474ad commit ac8c3bf

File tree

120 files changed

+1521
-531
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+1521
-531
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ Heather <heather@cynede.net> <Cynede@Gentoo.org>
114114
Heather <heather@cynede.net> <Heather@cynede.net>
115115
Herman J. Radtke III <herman@hermanradtke.com> Herman J. Radtke III <hermanradtke@gmail.com>
116116
Ilyong Cho <ilyoan@gmail.com>
117+
inquisitivecrystal <22333129+inquisitivecrystal@users.noreply.github.com>
117118
Ivan Ivaschenko <defuz.net@gmail.com>
118119
J. J. Weber <jjweber@gmail.com>
119120
Jakub Adam Wieczorek <jakub.adam.wieczorek@gmail.com> <jakub.bukaj@yahoo.com>

compiler/rustc_codegen_cranelift/.cirrus.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ task:
1414
- . $HOME/.cargo/env
1515
- git config --global user.email "user@example.com"
1616
- git config --global user.name "User"
17-
- ./prepare.sh
17+
- ./y.rs prepare
1818
test_script:
1919
- . $HOME/.cargo/env
2020
- # Enable backtraces for easier debugging

compiler/rustc_codegen_cranelift/.github/workflows/main.yml

+72-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- os: ubuntu-latest
2020
env:
2121
TARGET_TRIPLE: x86_64-pc-windows-gnu
22+
- os: ubuntu-latest
23+
env:
24+
TARGET_TRIPLE: aarch64-unknown-linux-gnu
2225

2326
steps:
2427
- uses: actions/checkout@v2
@@ -49,11 +52,19 @@ jobs:
4952
sudo apt-get install -y gcc-mingw-w64-x86-64 wine-stable
5053
rustup target add x86_64-pc-windows-gnu
5154
55+
- name: Install AArch64 toolchain and qemu
56+
if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'aarch64-unknown-linux-gnu'
57+
run: |
58+
sudo apt-get install -y gcc-aarch64-linux-gnu qemu-user
59+
5260
- name: Prepare dependencies
5361
run: |
5462
git config --global user.email "user@example.com"
5563
git config --global user.name "User"
56-
./prepare.sh
64+
./y.rs prepare
65+
66+
- name: Build
67+
run: ./y.rs build --sysroot none
5768

5869
- name: Test
5970
env:
@@ -87,3 +98,63 @@ jobs:
8798
with:
8899
name: cg_clif-${{ runner.os }}-cross-x86_64-mingw
89100
path: cg_clif.tar.xz
101+
102+
build_windows:
103+
runs-on: windows-latest
104+
timeout-minutes: 60
105+
106+
steps:
107+
- uses: actions/checkout@v2
108+
109+
#- name: Cache cargo installed crates
110+
# uses: actions/cache@v2
111+
# with:
112+
# path: ~/.cargo/bin
113+
# key: ${{ runner.os }}-cargo-installed-crates
114+
115+
#- name: Cache cargo registry and index
116+
# uses: actions/cache@v2
117+
# with:
118+
# path: |
119+
# ~/.cargo/registry
120+
# ~/.cargo/git
121+
# key: ${{ runner.os }}-cargo-registry-and-index-${{ hashFiles('**/Cargo.lock') }}
122+
123+
#- name: Cache cargo target dir
124+
# uses: actions/cache@v2
125+
# with:
126+
# path: target
127+
# key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }}
128+
129+
- name: Prepare dependencies
130+
run: |
131+
git config --global user.email "user@example.com"
132+
git config --global user.name "User"
133+
git config --global core.autocrlf false
134+
rustup set default-host x86_64-pc-windows-gnu
135+
rustc y.rs -o y.exe -g
136+
./y.exe prepare
137+
138+
- name: Build
139+
#name: Test
140+
run: |
141+
# Enable backtraces for easier debugging
142+
#export RUST_BACKTRACE=1
143+
144+
# Reduce amount of benchmark runs as they are slow
145+
#export COMPILE_RUNS=2
146+
#export RUN_RUNS=2
147+
148+
# Enable extra checks
149+
#export CG_CLIF_ENABLE_VERIFIER=1
150+
151+
./y.exe build
152+
153+
#- name: Package prebuilt cg_clif
154+
# run: tar cvfJ cg_clif.tar.xz build
155+
156+
#- name: Upload prebuilt cg_clif
157+
# uses: actions/upload-artifact@v2
158+
# with:
159+
# name: cg_clif-${{ runner.os }}
160+
# path: cg_clif.tar.xz

compiler/rustc_codegen_cranelift/.github/workflows/rustc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
git config --global user.email "user@example.com"
3636
git config --global user.name "User"
37-
./prepare.sh
37+
./y.rs prepare
3838
3939
- name: Test
4040
run: |
@@ -72,7 +72,7 @@ jobs:
7272
run: |
7373
git config --global user.email "user@example.com"
7474
git config --global user.name "User"
75-
./prepare.sh
75+
./y.rs prepare
7676
7777
- name: Test
7878
run: |

compiler/rustc_codegen_cranelift/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ perf.data
66
perf.data.old
77
*.events
88
*.string*
9+
/y.bin
910
/build
1011
/build_sysroot/sysroot_src
1112
/build_sysroot/compiler-builtins
13+
/build_sysroot/rustc_version
1214
/rust
1315
/rand
1416
/regex

compiler/rustc_codegen_cranelift/.vscode/settings.json

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
// source for rustc_* is not included in the rust-src component; disable the errors about this
33
"rust-analyzer.diagnostics.disabled": ["unresolved-extern-crate", "unresolved-macro-call"],
4-
"rust-analyzer.assist.importMergeBehavior": "last",
4+
"rust-analyzer.assist.importGranularity": "module",
5+
"rust-analyzer.assist.importEnforceGranularity": true,
6+
"rust-analyzer.assist.importPrefix": "crate",
57
"rust-analyzer.cargo.runBuildScripts": true,
68
"rust-analyzer.linkedProjects": [
79
"./Cargo.toml",
@@ -49,6 +51,23 @@
4951
"cfg": [],
5052
},
5153
]
54+
},
55+
{
56+
"roots": ["./y.rs"],
57+
"crates": [
58+
{
59+
"root_module": "./y.rs",
60+
"edition": "2018",
61+
"deps": [{ "crate": 1, "name": "std" }],
62+
"cfg": [],
63+
},
64+
{
65+
"root_module": "./build_sysroot/sysroot_src/library/std/src/lib.rs",
66+
"edition": "2018",
67+
"deps": [],
68+
"cfg": [],
69+
},
70+
]
5271
}
5372
]
5473
}

compiler/rustc_codegen_cranelift/Cargo.lock

+32-24
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
3333

3434
[[package]]
3535
name = "cranelift-bforest"
36-
version = "0.74.0"
37-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
36+
version = "0.75.0"
37+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
3838
dependencies = [
3939
"cranelift-entity",
4040
]
4141

4242
[[package]]
4343
name = "cranelift-codegen"
44-
version = "0.74.0"
45-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
44+
version = "0.75.0"
45+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
4646
dependencies = [
4747
"cranelift-bforest",
4848
"cranelift-codegen-meta",
@@ -57,27 +57,27 @@ dependencies = [
5757

5858
[[package]]
5959
name = "cranelift-codegen-meta"
60-
version = "0.74.0"
61-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
60+
version = "0.75.0"
61+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
6262
dependencies = [
6363
"cranelift-codegen-shared",
6464
"cranelift-entity",
6565
]
6666

6767
[[package]]
6868
name = "cranelift-codegen-shared"
69-
version = "0.74.0"
70-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
69+
version = "0.75.0"
70+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
7171

7272
[[package]]
7373
name = "cranelift-entity"
74-
version = "0.74.0"
75-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
74+
version = "0.75.0"
75+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
7676

7777
[[package]]
7878
name = "cranelift-frontend"
79-
version = "0.74.0"
80-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
79+
version = "0.75.0"
80+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
8181
dependencies = [
8282
"cranelift-codegen",
8383
"log",
@@ -87,8 +87,8 @@ dependencies = [
8787

8888
[[package]]
8989
name = "cranelift-jit"
90-
version = "0.74.0"
91-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
90+
version = "0.75.0"
91+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
9292
dependencies = [
9393
"anyhow",
9494
"cranelift-codegen",
@@ -104,8 +104,8 @@ dependencies = [
104104

105105
[[package]]
106106
name = "cranelift-module"
107-
version = "0.74.0"
108-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
107+
version = "0.75.0"
108+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
109109
dependencies = [
110110
"anyhow",
111111
"cranelift-codegen",
@@ -115,17 +115,18 @@ dependencies = [
115115

116116
[[package]]
117117
name = "cranelift-native"
118-
version = "0.74.0"
119-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
118+
version = "0.75.0"
119+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
120120
dependencies = [
121121
"cranelift-codegen",
122+
"libc",
122123
"target-lexicon",
123124
]
124125

125126
[[package]]
126127
name = "cranelift-object"
127-
version = "0.74.0"
128-
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#76c6b83f6a21a12a11d4f890490f8acb6329a600"
128+
version = "0.75.0"
129+
source = "git+https://github.com/bytecodealliance/wasmtime.git?branch=main#c71ad9490e7f3e19bbcae7e28bbe50f8a0b4a5d8"
129130
dependencies = [
130131
"anyhow",
131132
"cranelift-codegen",
@@ -171,9 +172,9 @@ dependencies = [
171172

172173
[[package]]
173174
name = "libc"
174-
version = "0.2.86"
175+
version = "0.2.97"
175176
source = "registry+https://github.com/rust-lang/crates.io-index"
176-
checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
177+
checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6"
177178

178179
[[package]]
179180
name = "libloading"
@@ -203,14 +204,21 @@ dependencies = [
203204
"libc",
204205
]
205206

207+
[[package]]
208+
name = "memchr"
209+
version = "2.4.0"
210+
source = "registry+https://github.com/rust-lang/crates.io-index"
211+
checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
212+
206213
[[package]]
207214
name = "object"
208-
version = "0.24.0"
215+
version = "0.25.3"
209216
source = "registry+https://github.com/rust-lang/crates.io-index"
210-
checksum = "1a5b3dd1c072ee7963717671d1ca129f1048fda25edea6b752bfc71ac8854170"
217+
checksum = "a38f2be3697a57b4060074ff41b44c16870d916ad7877c17696e063257482bc7"
211218
dependencies = [
212219
"crc32fast",
213220
"indexmap",
221+
"memchr",
214222
]
215223

216224
[[package]]

compiler/rustc_codegen_cranelift/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ crate-type = ["dylib"]
99

1010
[dependencies]
1111
# These have to be in sync with each other
12-
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", features = ["unwind"] }
12+
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", features = ["unwind", "all-arch"] }
1313
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
1414
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
1515
cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
1616
cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", optional = true }
1717
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
1818
target-lexicon = "0.12.0"
1919
gimli = { version = "0.24.0", default-features = false, features = ["write"]}
20-
object = { version = "0.24.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
20+
object = { version = "0.25.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2121

2222
ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "do_not_remove_cg_clif_ranlib" }
2323
indexmap = "1.0.2"

compiler/rustc_codegen_cranelift/Readme.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ If not please open an issue.
1010
```bash
1111
$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
1212
$ cd rustc_codegen_cranelift
13-
$ ./prepare.sh # download and patch sysroot src and install hyperfine for benchmarking
14-
$ ./build.sh
13+
$ ./y.rs prepare # download and patch sysroot src and install hyperfine for benchmarking
14+
$ ./y.rs build
1515
```
1616

1717
To run the test suite replace the last command with:
@@ -20,7 +20,7 @@ To run the test suite replace the last command with:
2020
$ ./test.sh
2121
```
2222

23-
This will implicitly build cg_clif too. Both `build.sh` and `test.sh` accept a `--debug` argument to
23+
This will implicitly build cg_clif too. Both `y.rs build` and `test.sh` accept a `--debug` argument to
2424
build in debug mode.
2525

2626
Alternatively you can download a pre built version from [GHA]. It is listed in the artifacts section
@@ -32,12 +32,12 @@ of workflow runs. Unfortunately due to GHA restrictions you need to be logged in
3232

3333
rustc_codegen_cranelift can be used as a near-drop-in replacement for `cargo build` or `cargo run` for existing projects.
3434

35-
Assuming `$cg_clif_dir` is the directory you cloned this repo into and you followed the instructions (`prepare.sh` and `build.sh` or `test.sh`).
35+
Assuming `$cg_clif_dir` is the directory you cloned this repo into and you followed the instructions (`y.rs prepare` and `y.rs build` or `test.sh`).
3636

3737
In the directory with your project (where you can do the usual `cargo build`), run:
3838

3939
```bash
40-
$ $cg_clif_dir/build/cargo.sh build
40+
$ $cg_clif_dir/build/cargo build
4141
```
4242

4343
This will build your project with rustc_codegen_cranelift instead of the usual LLVM backend.

0 commit comments

Comments
 (0)