diff options
| author | bors <bors@rust-lang.org> | 2025-09-01 10:54:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-09-01 10:54:40 +0000 |
| commit | c0bb3b98bb7aac24a37635e5d36d961e0b14f435 (patch) | |
| tree | 61c53e7080714662cea1a0730b225b5778ab66b2 /tests/coverage/async.rs | |
| parent | 84a17470220e7adf249b18d7c0178dfbede89462 (diff) | |
| parent | c2c58cbc65343f1a227885c7a5893f3e6d616e82 (diff) | |
| download | rust-c0bb3b98bb7aac24a37635e5d36d961e0b14f435.tar.gz rust-c0bb3b98bb7aac24a37635e5d36d961e0b14f435.zip | |
Auto merge of #143290 - azhogin:azhogin/link-pub-async-impls, r=oli-obk
pub async fn impl is monomorphized when func itself is monomorphized
Implentation coroutine (`func::{closure#0}`) is monomorphized, when func itself is monomorphized.
Currently, when `pub async fn foo(..)` is exported from lib and used in several dependent crates, only 'header' function is monomorphized in the defining crate. 'header' function, returning coroutine object, is monomorphized, but the coroutine's poll function (which actually implements all the logic for the function) is not. In such situation, `func::{closure#0}` will be monomorphized in every dependency.
This PR adds monomorphization for `func::{closure#0}` (coroutine poll function), when func itself is monomorphized.
Simple test with one lib async function and ten dependent crates (executable) that use the function, shows 5-7% compilation time improvement (single-threaded).
Diffstat (limited to 'tests/coverage/async.rs')
| -rw-r--r-- | tests/coverage/async.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/coverage/async.rs b/tests/coverage/async.rs index da0a1c0b6f0..777ad7ce7c0 100644 --- a/tests/coverage/async.rs +++ b/tests/coverage/async.rs @@ -24,7 +24,7 @@ async fn f() -> u8 { 1 } async fn foo() -> [bool; 10] { [false; 10] } // unused function; executor does not block on `h()` -pub async fn g(x: u8) { +async fn g(x: u8) { match x { y if e().await == y => (), y if f().await == y => (), |
