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 9df04fd

Browse files
authoredSep 8, 2024··
Unrolled build for rust-lang#129847
Rollup merge of rust-lang#129847 - compiler-errors:async-cycle, r=davidtwco Do not call query to compute coroutine layout for synthetic body of async closure There is code in the MIR validator that attempts to prevent query cycles when inlining a coroutine into itself, and will use the coroutine layout directly from the body when it detects that's the same coroutine as the one that's being validated. After rust-lang#128506, this logic didn't take into account the fact that the coroutine def id will differ if it's the "by-move body" of an async closure. This PR implements that. Fixes rust-lang#129811
2 parents 12b26c1 + 384aed8 commit 9df04fd

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed
 

‎compiler/rustc_mir_transform/src/validate.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! Validates the MIR to ensure that invariants are upheld.
22
33
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
4+
use rustc_hir as hir;
45
use rustc_hir::LangItem;
56
use rustc_index::bit_set::BitSet;
67
use rustc_index::IndexVec;
@@ -714,7 +715,17 @@ impl<'a, 'tcx> Visitor<'tcx> for TypeChecker<'a, 'tcx> {
714715
// since we may be in the process of computing this MIR in the
715716
// first place.
716717
let layout = if def_id == self.caller_body.source.def_id() {
717-
// FIXME: This is not right for async closures.
718+
self.caller_body.coroutine_layout_raw()
719+
} else if let Some(hir::CoroutineKind::Desugared(
720+
_,
721+
hir::CoroutineSource::Closure,
722+
)) = self.tcx.coroutine_kind(def_id)
723+
&& let ty::ClosureKind::FnOnce =
724+
args.as_coroutine().kind_ty().to_opt_closure_kind().unwrap()
725+
&& self.caller_body.source.def_id()
726+
== self.tcx.coroutine_by_move_body_def_id(def_id)
727+
{
728+
// Same if this is the by-move body of a coroutine-closure.
718729
self.caller_body.coroutine_layout_raw()
719730
} else {
720731
self.tcx.coroutine_layout(def_id, args.as_coroutine().kind_ty())
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//@ check-pass
2+
//@ edition: 2021
3+
4+
#![feature(async_closure)]
5+
6+
// Make sure that we don't hit a query cycle when validating
7+
// the by-move coroutine body for an async closure.
8+
9+
use std::future::Future;
10+
11+
async fn test<Fut: Future>(operation: impl Fn() -> Fut) {
12+
operation().await;
13+
}
14+
15+
pub async fn orchestrate_simple_crud() {
16+
test(async || async {}.await).await;
17+
}
18+
19+
fn main() {}

0 commit comments

Comments
 (0)
Please sign in to comment.