-
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
Sync rustc_codegen_cranelift #107269
Sync rustc_codegen_cranelift #107269
Conversation
It's not about "uninit" anymore but about "filling with 0x01 bytes" so the name should at least try to reflect that.
Was accidentally removed in 808cba2
These are the last remaining platform intrinsics necessary for portable-simd.
v2 depends on Node.js 12 which will be removed from GHA in the near future
This may also have been the root cause of rust-lang#1310.
This reverts commit b5ac64b. It entirely breaks PrintOnPanic as ICE seems to be considered a fatal error too.
Fixes part of rust-lang#1319
…, r=RalfJung Rename `assert_uninit_valid` intrinsic It's not about "uninit" anymore but about "filling with 0x01 bytes" so the name should at least try to reflect that. This is actually not fully correct though, as it does still panic for all uninit with `-Zstrict-init-checks`. I'm not sure what the best way is to deal with that not causing confusion. I guess we could just remove the flag? I don't think having it makes a lot of sense anymore with the direction that we have chose to go. It could be relevant again if rust-lang#100423 lands so removing it may be a bit over eager. r? `@RalfJung`
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
c8f0e97
to
3808bc4
Compare
@bjorn3 LGTM |
Thabks for taking a look! @bors r+ |
…bjorn3 Sync rustc_codegen_cranelift For cg_clif itself there have been a couple of bug fixes since the last sync, a Cranelift update and implemented all remaining simd platform intrinsics used by `std::simd`. (`std::arch` still misses a lot though) Most of the diff is from reworking of the cg_clif build system though. r? `@ghost` `@rustbot` label +A-codegen +A-cranelift +T-compiler
might fail in a rollup, let's find out |
⌛ Testing commit 3808bc4 with merge fe19f9f89a52ddfbe4b0c21d2a7e573e6b9e259c... |
💔 Test failed - checks-actions |
@bors retry issue with crates.io api |
☀️ Test successful - checks-actions |
Finished benchmarking commit (a2d002a): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. |
…orn3 Sync rustc_codegen_cranelift For cg_clif itself there have been a couple of bug fixes since the last sync, a Cranelift update and implemented all remaining simd platform intrinsics used by `std::simd`. (`std::arch` still misses a lot though) Most of the diff is from reworking of the cg_clif build system though. r? `@ghost` `@rustbot` label +A-codegen +A-cranelift +T-compiler
For cg_clif itself there have been a couple of bug fixes since the last sync, a Cranelift update and implemented all remaining simd platform intrinsics used by
std::simd
. (std::arch
still misses a lot though) Most of the diff is from reworking of the cg_clif build system though.r? @ghost
@rustbot label +A-codegen +A-cranelift +T-compiler