Uh oh!
There was an error while loading. Please reload this page.
Pass end position of span through inline ASM cookie - #129181
Conversation
rustbot
commented
Aug 17, 2024
This comment has been minimized.
This comment has been minimized.
beetrees
commented
Aug 17, 2024
Should now be ready. I've set a try-job for LLVM 18 since it's not tested in PR CI if someone could do a |
bors
commented
Sep 19, 2024
☔ The latest upstream changes (presumably #130534) made this pull request unmergeable. Please resolve the merge conflicts. |
Uh oh!
There was an error while loading. Please reload this page.
pnkfelix
commented
Oct 4, 2024
Sorry for the delay in review. I posted a suggestion for the comments, but its not needed to pass review. so r=me once this is rebased. |
pnkfelix
commented
Oct 4, 2024
@bors try |
pnkfelix
commented
Oct 4, 2024
(or wait, does is a try build done against a merge, which will obviously fail here? Sorry again.) |
bors
commented
Oct 4, 2024
🔒 Merge conflict This pull request and the master branch diverged in a way that cannot be automatically merged. Please rebase on top of the latest master branch, and let the reviewer approve again. How do I rebase?Assuming
You may also read Git Rebasing to Resolve Conflicts by Drew Blessing for a short tutorial. Please avoid the "Resolve conflicts" button on GitHub. It uses Sometimes step 4 will complete without asking for resolution. This is usually due to difference between how Error message |
pnkfelix
commented
Oct 4, 2024
@rustbot author just switching to waiting-on-author for the rebase of the PR. |
beetrees
commented
Oct 12, 2024
Rebased @rustbot ready |
pnkfelix
commented
Oct 16, 2024
@bors r+ |
bors
commented
Oct 16, 2024
Pass end position of span through inline ASM cookie Before this PR, only the start position of the span was passed though the inline ASM cookie to diagnostics. LLVM 19 has full support for 64-bit inline ASM cookies; this PR uses that to pass the end position of the span in the upper 32 bits, meaning inline ASM diagnostics now point at the entire line the error occurred on, not just the first character of it.
Rollup of 10 pull requests Successful merges: - rust-lang#129181 (Pass end position of span through inline ASM cookie) - rust-lang#130989 (Don't check unsize goal in MIR validation when opaques remain) - rust-lang#131657 (Rustfmt `for<'a> async` correctly) - rust-lang#131691 (Delay ambiguous intra-doc link resolution after `Cache` has been populated) - rust-lang#131730 (Refactor some `core::fmt` macros) - rust-lang#131751 (Rename `can_coerce` to `may_coerce`, and then structurally resolve correctly in the probe) - rust-lang#131753 (Unify `secondary_span` and `swap_secondary_and_primary` args in `note_type_err`) - rust-lang#131776 (Emscripten: Xfail backtrace ui tests) - rust-lang#131777 (Fix trivially_copy_pass_by_ref in stable_mir) - rust-lang#131778 (Fix needless_lifetimes in stable_mir) r? `@ghost` `@rustbot` modify labels: rollup
matthiaskrgr
commented
Oct 16, 2024
@bors r- rollup=iffy |
Urgau
commented
Oct 16, 2024
Failed in rollup #131785 (comment) |
beetrees
commented
Oct 16, 2024
Should be fixed now. @rustbot ready |
bors
commented
Nov 4, 2024
☔ The latest upstream changes (presumably #132581) made this pull request unmergeable. Please resolve the merge conflicts. |
compiler-errors
commented
Dec 11, 2024
@bors r=pnkfelix,compiler-errors |
bors
commented
Dec 11, 2024
bors
commented
Dec 12, 2024
bors
commented
Dec 12, 2024
☀️ Test successful - checks-actions |
rust-timer
commented
Dec 12, 2024
Finished benchmarking commit (903d297): 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)Results (primary -0.7%, secondary -0.2%)This 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.
CyclesResults (secondary -3.4%)This 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.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 769.999s -> 769.893s (-0.01%) |
Before this PR, only the start position of the span was passed though the inline ASM cookie to diagnostics. LLVM 19 has full support for 64-bit inline ASM cookies; this PR uses that to pass the end position of the span in the upper 32 bits, meaning inline ASM diagnostics now point at the entire line the error occurred on, not just the first character of it.