Skip to content

Commit a42eca4

Browse files
committed
generator layout: ignore fake borrows
1 parent bf360d4 commit a42eca4

File tree

3 files changed

+42
-3
lines changed

3 files changed

+42
-3
lines changed

compiler/rustc_mir_dataflow/src/impls/borrowed_locals.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ use rustc_middle::mir::*;
55
use crate::{AnalysisDomain, GenKill, GenKillAnalysis};
66

77
/// A dataflow analysis that tracks whether a pointer or reference could possibly exist that points
8-
/// to a given local.
8+
/// to a given local. This analysis ignores fake borrows, so it should not be used by
9+
/// borrowck.
910
///
1011
/// At present, this is used as a very limited form of alias analysis. For example,
1112
/// `MaybeBorrowedLocals` is used to compute which locals are live during a yield expression for
@@ -91,13 +92,17 @@ where
9192
self.super_rvalue(rvalue, location);
9293

9394
match rvalue {
94-
Rvalue::AddressOf(_, borrowed_place) | Rvalue::Ref(_, _, borrowed_place) => {
95+
// We ignore fake borrows as these get removed after analysis and shouldn't effect
96+
// the layout of generators.
97+
Rvalue::AddressOf(_, borrowed_place)
98+
| Rvalue::Ref(_, BorrowKind::Mut { .. } | BorrowKind::Shared, borrowed_place) => {
9599
if !borrowed_place.is_indirect() {
96100
self.trans.gen(borrowed_place.local);
97101
}
98102
}
99103

100104
Rvalue::Cast(..)
105+
| Rvalue::Ref(_, BorrowKind::Shallow, _)
101106
| Rvalue::ShallowInitBox(..)
102107
| Rvalue::Use(..)
103108
| Rvalue::ThreadLocalRef(..)

compiler/rustc_mir_transform/src/cleanup_post_borrowck.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! - [`AscribeUserType`]
66
//! - [`FakeRead`]
7-
//! - [`Assign`] statements with a [`Shallow`] borrow
7+
//! - [`Assign`] statements with a [`Fake`] borrow
88
//!
99
//! [`AscribeUserType`]: rustc_middle::mir::StatementKind::AscribeUserType
1010
//! [`Assign`]: rustc_middle::mir::StatementKind::Assign
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// check-pass
2+
// edition: 2021
3+
4+
// regression test for #117059
5+
struct SendNotSync(*const ());
6+
unsafe impl Send for SendNotSync {}
7+
// impl !Sync for SendNotSync {} // automatically disabled
8+
9+
struct Inner {
10+
stream: SendNotSync,
11+
state: bool,
12+
}
13+
14+
struct SendSync;
15+
impl std::ops::Deref for SendSync {
16+
type Target = Inner;
17+
fn deref(&self) -> &Self::Target {
18+
todo!();
19+
}
20+
}
21+
22+
async fn next() {
23+
let inner = SendSync;
24+
match inner.state {
25+
true if false => {}
26+
false => async {}.await,
27+
_ => {}
28+
}
29+
}
30+
31+
fn is_send<T: Send>(_: T) {}
32+
fn main() {
33+
is_send(next())
34+
}

0 commit comments

Comments
 (0)