Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ddea0bb

Browse files
committedFeb 8, 2025·
Auto merge of rust-lang#136734 - matthiaskrgr:rollup-e6v3wwe, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - rust-lang#131282 (std: detect stack overflows in TLS destructors on UNIX) - rust-lang#135696 (std: move `io` module out of `pal`, get rid of `sys_common::io`) - rust-lang#136099 (Optimize `Rc::<str>::default()` implementation) - rust-lang#136200 (Generate correct terminate block under Wasm EH) - rust-lang#136626 (create `initial_rustdoc` field in `Build`) - rust-lang#136657 (Make empty-line-after an early clippy lint) - rust-lang#136679 (ci: Use largedisk for loongarch) - rust-lang#136715 (Subtree sync for rustc_codegen_cranelift) r? `@ghost` `@rustbot` modify labels: rollup
2 parents d2f335d + cad519b commit ddea0bb

Some content is hidden

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

81 files changed

+1150
-1046
lines changed
 

‎compiler/rustc_codegen_cranelift/Cargo.lock

+30-30
Original file line numberDiff line numberDiff line change
@@ -43,24 +43,24 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
4343

4444
[[package]]
4545
name = "cranelift-bforest"
46-
version = "0.115.0"
46+
version = "0.116.1"
4747
source = "registry+https://github.com/rust-lang/crates.io-index"
48-
checksum = "ac89549be94911dd0e839b4a7db99e9ed29c17517e1c026f61066884c168aa3c"
48+
checksum = "e15d04a0ce86cb36ead88ad68cf693ffd6cda47052b9e0ac114bc47fd9cd23c4"
4949
dependencies = [
5050
"cranelift-entity",
5151
]
5252

5353
[[package]]
5454
name = "cranelift-bitset"
55-
version = "0.115.0"
55+
version = "0.116.1"
5656
source = "registry+https://github.com/rust-lang/crates.io-index"
57-
checksum = "b9bd49369f76c77e34e641af85d0956869237832c118964d08bf5f51f210875a"
57+
checksum = "7c6e3969a7ce267259ce244b7867c5d3bc9e65b0a87e81039588dfdeaede9f34"
5858

5959
[[package]]
6060
name = "cranelift-codegen"
61-
version = "0.115.0"
61+
version = "0.116.1"
6262
source = "registry+https://github.com/rust-lang/crates.io-index"
63-
checksum = "fd96ce9cf8efebd7f5ab8ced5a0ce44250280bbae9f593d74a6d7effc3582a35"
63+
checksum = "2c22032c4cb42558371cf516bb47f26cdad1819d3475c133e93c49f50ebf304e"
6464
dependencies = [
6565
"bumpalo",
6666
"cranelift-bforest",
@@ -82,42 +82,42 @@ dependencies = [
8282

8383
[[package]]
8484
name = "cranelift-codegen-meta"
85-
version = "0.115.0"
85+
version = "0.116.1"
8686
source = "registry+https://github.com/rust-lang/crates.io-index"
87-
checksum = "5a68e358827afe4bfb6239fcbf6fbd5ac56206ece8a99c8f5f9bbd518773281a"
87+
checksum = "c904bc71c61b27fc57827f4a1379f29de64fe95653b620a3db77d59655eee0b8"
8888
dependencies = [
8989
"cranelift-codegen-shared",
9090
]
9191

9292
[[package]]
9393
name = "cranelift-codegen-shared"
94-
version = "0.115.0"
94+
version = "0.116.1"
9595
source = "registry+https://github.com/rust-lang/crates.io-index"
96-
checksum = "e184c9767afbe73d50c55ec29abcf4c32f9baf0d9d22b86d58c4d55e06dee181"
96+
checksum = "40180f5497572f644ce88c255480981ae2ec1d7bb4d8e0c0136a13b87a2f2ceb"
9797

9898
[[package]]
9999
name = "cranelift-control"
100-
version = "0.115.0"
100+
version = "0.116.1"
101101
source = "registry+https://github.com/rust-lang/crates.io-index"
102-
checksum = "5cc7664f2a66f053e33f149e952bb5971d138e3af637f5097727ed6dc0ed95dd"
102+
checksum = "26d132c6d0bd8a489563472afc171759da0707804a65ece7ceb15a8c6d7dd5ef"
103103
dependencies = [
104104
"arbitrary",
105105
]
106106

107107
[[package]]
108108
name = "cranelift-entity"
109-
version = "0.115.0"
109+
version = "0.116.1"
110110
source = "registry+https://github.com/rust-lang/crates.io-index"
111-
checksum = "118597e3a9cf86c3556fa579a7a23b955fa18231651a52a77a2475d305a9cf84"
111+
checksum = "4b2d0d9618275474fbf679dd018ac6e009acbd6ae6850f6a67be33fb3b00b323"
112112
dependencies = [
113113
"cranelift-bitset",
114114
]
115115

116116
[[package]]
117117
name = "cranelift-frontend"
118-
version = "0.115.0"
118+
version = "0.116.1"
119119
source = "registry+https://github.com/rust-lang/crates.io-index"
120-
checksum = "7638ea1efb069a0aa18d8ee67401b6b0d19f6bfe5de5e9ede348bfc80bb0d8c7"
120+
checksum = "4fac41e16729107393174b0c9e3730fb072866100e1e64e80a1a963b2e484d57"
121121
dependencies = [
122122
"cranelift-codegen",
123123
"log",
@@ -127,15 +127,15 @@ dependencies = [
127127

128128
[[package]]
129129
name = "cranelift-isle"
130-
version = "0.115.0"
130+
version = "0.116.1"
131131
source = "registry+https://github.com/rust-lang/crates.io-index"
132-
checksum = "15c53e1152a0b01c4ed2b1e0535602b8e86458777dd9d18b28732b16325c7dc0"
132+
checksum = "1ca20d576e5070044d0a72a9effc2deacf4d6aa650403189d8ea50126483944d"
133133

134134
[[package]]
135135
name = "cranelift-jit"
136-
version = "0.115.0"
136+
version = "0.116.1"
137137
source = "registry+https://github.com/rust-lang/crates.io-index"
138-
checksum = "36972cab12ff246afe8d45b6a427669cf814bd393c661e5e8a8dedc26a81c73f"
138+
checksum = "5e65c42755a719b09662b00c700daaf76cc35d5ace1f5c002ad404b591ff1978"
139139
dependencies = [
140140
"anyhow",
141141
"cranelift-codegen",
@@ -153,9 +153,9 @@ dependencies = [
153153

154154
[[package]]
155155
name = "cranelift-module"
156-
version = "0.115.0"
156+
version = "0.116.1"
157157
source = "registry+https://github.com/rust-lang/crates.io-index"
158-
checksum = "11841b3f54ac480db1e8e8d5678ba901a13b387012d315e3f8fba3e7b7a80447"
158+
checksum = "4d55612bebcf16ff7306c8a6f5bdb6d45662b8aa1ee058ecce8807ad87db719b"
159159
dependencies = [
160160
"anyhow",
161161
"cranelift-codegen",
@@ -164,9 +164,9 @@ dependencies = [
164164

165165
[[package]]
166166
name = "cranelift-native"
167-
version = "0.115.0"
167+
version = "0.116.1"
168168
source = "registry+https://github.com/rust-lang/crates.io-index"
169-
checksum = "7b7d8f895444fa52dd7bdd0bed11bf007a7fb43af65a6deac8fcc4094c6372f7"
169+
checksum = "b8dee82f3f1f2c4cba9177f1cc5e350fe98764379bcd29340caa7b01f85076c7"
170170
dependencies = [
171171
"cranelift-codegen",
172172
"libc",
@@ -175,9 +175,9 @@ dependencies = [
175175

176176
[[package]]
177177
name = "cranelift-object"
178-
version = "0.115.0"
178+
version = "0.116.1"
179179
source = "registry+https://github.com/rust-lang/crates.io-index"
180-
checksum = "8e235ddfd19f100855ad03358c7ae0a13070c38a000701054cab46458cca6e81"
180+
checksum = "aad5a6d3e379493c3f8b35dc61c93d0bf5f27003bbe20614e0200b0ec372ef52"
181181
dependencies = [
182182
"anyhow",
183183
"cranelift-codegen",
@@ -413,9 +413,9 @@ dependencies = [
413413

414414
[[package]]
415415
name = "target-lexicon"
416-
version = "0.12.16"
416+
version = "0.13.1"
417417
source = "registry+https://github.com/rust-lang/crates.io-index"
418-
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
418+
checksum = "dc12939a1c9b9d391e0b7135f72fd30508b73450753e28341fed159317582a77"
419419

420420
[[package]]
421421
name = "unicode-ident"
@@ -425,9 +425,9 @@ checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
425425

426426
[[package]]
427427
name = "wasmtime-jit-icache-coherence"
428-
version = "28.0.0"
428+
version = "29.0.1"
429429
source = "registry+https://github.com/rust-lang/crates.io-index"
430-
checksum = "d40d7722b9e1fbeae135715710a8a2570b1e6cf72b74dd653962d89831c6c70d"
430+
checksum = "ec5e8552e01692e6c2e5293171704fed8abdec79d1a6995a0870ab190e5747d1"
431431
dependencies = [
432432
"anyhow",
433433
"cfg-if",

‎compiler/rustc_codegen_cranelift/Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ crate-type = ["dylib"]
88

99
[dependencies]
1010
# These have to be in sync with each other
11-
cranelift-codegen = { version = "0.115.0", default-features = false, features = ["std", "unwind", "all-native-arch"] }
12-
cranelift-frontend = { version = "0.115.0" }
13-
cranelift-module = { version = "0.115.0" }
14-
cranelift-native = { version = "0.115.0" }
15-
cranelift-jit = { version = "0.115.0", optional = true }
16-
cranelift-object = { version = "0.115.0" }
17-
target-lexicon = "0.12.0"
11+
cranelift-codegen = { version = "0.116.0", default-features = false, features = ["std", "unwind", "all-native-arch"] }
12+
cranelift-frontend = { version = "0.116.0" }
13+
cranelift-module = { version = "0.116.0" }
14+
cranelift-native = { version = "0.116.0" }
15+
cranelift-jit = { version = "0.116.0", optional = true }
16+
cranelift-object = { version = "0.116.0" }
17+
target-lexicon = "0.13"
1818
gimli = { version = "0.31", default-features = false, features = ["write"] }
1919
object = { version = "0.36", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2020

@@ -24,12 +24,12 @@ smallvec = "1.8.1"
2424

2525
[patch.crates-io]
2626
# Uncomment to use an unreleased version of cranelift
27-
#cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-28.0.0", version = "0.115.0" }
28-
#cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-28.0.0", version = "0.115.0" }
29-
#cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-28.0.0", version = "0.115.0" }
30-
#cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-28.0.0", version = "0.115.0" }
31-
#cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-28.0.0", version = "0.115.0" }
32-
#cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-28.0.0", version = "0.115.0" }
27+
#cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-29.0.0", version = "0.116.0" }
28+
#cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-29.0.0", version = "0.116.0" }
29+
#cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-29.0.0", version = "0.116.0" }
30+
#cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-29.0.0", version = "0.116.0" }
31+
#cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-29.0.0", version = "0.116.0" }
32+
#cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "release-29.0.0", version = "0.116.0" }
3333

3434
# Uncomment to use local checkout of cranelift
3535
#cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }

0 commit comments

Comments
 (0)
Please sign in to comment.