-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rollup of 7 pull requests #95913
Rollup of 7 pull requests #95913
Commits on Feb 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ad430f5 - Browse repository at this point
Copy the full SHA ad430f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52dd0b6 - Browse repository at this point
Copy the full SHA 52dd0b6View commit details
Commits on Apr 2, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a867b8d - Browse repository at this point
Copy the full SHA a867b8dView commit details -
This is currently a wrapper to `SymbolExportLevel` but it allows later addition of extra information.
Configuration menu - View commit details
-
Copy full SHA for aa8413c - Browse repository at this point
Copy the full SHA aa8413cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 08b7029 - Browse repository at this point
Copy the full SHA 08b7029View commit details
Commits on Apr 5, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fefc69a - Browse repository at this point
Copy the full SHA fefc69aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3730fe3 - Browse repository at this point
Copy the full SHA 3730fe3View commit details
Commits on Apr 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 77f610e - Browse repository at this point
Copy the full SHA 77f610eView commit details -
Switch to the 'normal' basic block for writing asm outputs if needed.
We may sometimes emit an `invoke` instead of a `call` for inline assembly during the MIR -> LLVM IR lowering. But we failed to update the IR builder's current basic block before writing the results to the outputs. This would result in invalid IR because the basic block would end in a `store` instruction, which isn't a valid terminator.
Configuration menu - View commit details
-
Copy full SHA for bf3ef0d - Browse repository at this point
Copy the full SHA bf3ef0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b2f360 - Browse repository at this point
Copy the full SHA 0b2f360View commit details -
Configuration menu - View commit details
-
Copy full SHA for 460054c - Browse repository at this point
Copy the full SHA 460054cView commit details
Commits on Apr 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 98cd818 - Browse repository at this point
Copy the full SHA 98cd818View commit details -
Configuration menu - View commit details
-
Copy full SHA for 80152ed - Browse repository at this point
Copy the full SHA 80152edView commit details -
Allow usage of sudo while not accessing root
gimbles committedApr 10, 2022 Configuration menu - View commit details
-
Copy full SHA for 386ca6a - Browse repository at this point
Copy the full SHA 386ca6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for dfe13db - Browse repository at this point
Copy the full SHA dfe13dbView commit details
Commits on Apr 11, 2022
-
Rollup merge of rust-lang#94243 - compiler-errors:compiler-flags-typo…
…, r=Mark-Simulacrum `s/compiler-flags/compile-flags` in compiletest Also make compiletest panic so this doesn't happen in the future! I literally always forget which it's called, so I wanted to make my life easier in the future. Also open to the possibility of parsing both.
Configuration menu - View commit details
-
Copy full SHA for d10673b - Browse repository at this point
Copy the full SHA d10673bView commit details -
Rollup merge of rust-lang#95604 - nbdd0121:used2, r=petrochenkov
Generate synthetic object file to ensure all exported and used symbols participate in the linking Fix rust-lang#50007 and rust-lang#47384 This is the synthetic object file approach that I described in rust-lang#95363 (comment), allowing all exported and used symbols to be linked while still allowing them to be GCed. Related rust-lang#93791, rust-lang#95363 r? ``@petrochenkov`` cc ``@carbotaniuman``
Configuration menu - View commit details
-
Copy full SHA for f138648 - Browse repository at this point
Copy the full SHA f138648View commit details -
Rollup merge of rust-lang#95671 - gimbles:master, r=Mark-Simulacrum
feat: Allow usage of sudo [while not accessing root] in x.py # Fixes This PR should fix rust-lang#93344 # Info Allows usage of sudo (while not accessing root) in x.py
Configuration menu - View commit details
-
Copy full SHA for 365cc2f - Browse repository at this point
Copy the full SHA 365cc2fView commit details -
Rollup merge of rust-lang#95758 - compiler-errors:issue-54771, r=este…
…bank Only suggest removing semicolon when expression is compatible with `impl Trait` rust-lang#54771 (comment) > It still needs checking that the last statement's expr can actually conform to the trait, but the naïve behavior is there. Only suggest removing a semicolon when the type behind the semicolon actually implements the trait in an RPIT `-> impl Trait`. Also upgrade the label that suggests removing the semicolon to a suggestion (should it be verbose?). cc rust-lang#54771
Configuration menu - View commit details
-
Copy full SHA for 16461fd - Browse repository at this point
Copy the full SHA 16461fdView commit details -
Rollup merge of rust-lang#95861 - ChrisDenton:windows7-support, r=Dyl…
…an-DPC Note that CI tests Windows 10 Currently being [discussed on Zulip](https://rust-lang.zulipchat.com/#narrow/stream/219381-t-libs/topic/Windows.207). r? ``@joshtriplett``
Configuration menu - View commit details
-
Copy full SHA for de7adb4 - Browse repository at this point
Copy the full SHA de7adb4View commit details -
Rollup merge of rust-lang#95864 - luqmana:inline-asm-unwind-store-mis…
…compile, r=Amanieu Fix miscompilation of inline assembly with outputs in cases where we emit an invoke instead of call instruction. We ran into this bug where rustc would segfault while trying to compile certain uses of inline assembly. Here is a simple repro that demonstrates the issue: ```rust #![feature(asm_unwind)] fn main() { let _x = String::from("string here just cause we need something with a non-trivial drop"); let foo: u64; unsafe { std::arch::asm!( "mov {}, 1", out(reg) foo, options(may_unwind) ); } println!("{}", foo); } ``` ([playground link](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=7d6641e83370d2536a07234aca2498ff)) But crucially `feature(asm_unwind)` is not actually needed and this can be triggered on stable as a result of the way async functions/generators are handled in the compiler. e.g.: ```rust extern crate futures; // 0.3.21 async fn bar() { let foo: u64; unsafe { std::arch::asm!( "mov {}, 1", out(reg) foo, ); } println!("{}", foo); } fn main() { futures::executor::block_on(bar()); } ``` ([playground link](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=1c7781c34dd4a3e80ae4bd936a0c82fc)) An example of the incorrect LLVM generated: ```llvm bb1: ; preds = %start %1 = invoke i64 asm sideeffect alignstack inteldialect unwind "mov ${0:q}, 1", "=&r,~{dirflag},~{fpsr},~{flags},~{memory}"() to label %bb2 unwind label %cleanup, !srcloc !9 store i64 %1, i64* %foo, align 8 bb2: [...snip...] ``` The store should not be placed after the asm invoke but rather should be in the normal control flow basic block (`bb2` in this case). [Here](https://gist.github.com/luqmana/be1af5b64d2cda5a533e3e23a7830b44) is a writeup of the investigation that lead to finding this.
Configuration menu - View commit details
-
Copy full SHA for 5470c2c - Browse repository at this point
Copy the full SHA 5470c2cView commit details -
Rollup merge of rust-lang#95881 - TaKO8Ki:use-to-string-instead-of-fo…
…rmat, r=compiler-errors Use `to_string` instead of `format!`
Configuration menu - View commit details
-
Copy full SHA for 1664dcf - Browse repository at this point
Copy the full SHA 1664dcfView commit details