Skip to content

Commit f18804e

Browse files
committed
Disallow scalable vectors in async fn.
Scalable vectors are unsized types so we can't hold them across an await point. Also clean up the tests to remove unsized features from tests as a user shouldn't have to enable them when using scalable vectors.
1 parent 1adf6ca commit f18804e

File tree

8 files changed

+87
-20
lines changed

8 files changed

+87
-20
lines changed

compiler/rustc_hir_analysis/src/check/check.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1740,6 +1740,7 @@ pub(super) fn check_coroutine_obligations(
17401740
}
17411741

17421742
let errors = ocx.select_all_or_error();
1743+
17431744
debug!(?errors);
17441745
if !errors.is_empty() {
17451746
return Err(infcx.err_ctxt().report_fulfillment_errors(errors));

compiler/rustc_hir_typeck/src/upvar.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
496496
let final_upvar_tys = self.final_upvar_tys(closure_def_id);
497497
debug!(?closure_hir_id, ?args, ?final_upvar_tys);
498498

499-
if self.tcx.features().unsized_locals || self.tcx.features().unsized_fn_params {
499+
if self.tcx.features().unsized_locals
500+
|| self.tcx.features().unsized_fn_params
501+
|| self.tcx.features().repr_scalable
502+
{
500503
for capture in
501504
self.typeck_results.borrow().closure_min_captures_flattened(closure_def_id)
502505
{

compiler/rustc_mir_transform/src/coroutine.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,11 @@ fn check_field_tys_sized<'tcx>(
15991599
) {
16001600
// No need to check if unsized_locals/unsized_fn_params is disabled,
16011601
// since we will error during typeck.
1602-
if !tcx.features().unsized_locals && !tcx.features().unsized_fn_params {
1602+
// repr scalable will also allow unsized locals so if that's enabled we also have to check.
1603+
if !tcx.features().unsized_locals
1604+
&& !tcx.features().unsized_fn_params
1605+
&& !tcx.features().repr_scalable
1606+
{
16031607
return;
16041608
}
16051609

tests/codegen/simd/allow-scalable-references.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@
33

44
#![crate_type = "lib"]
55
#![allow(incomplete_features, internal_features, improper_ctypes)]
6-
#![feature(
7-
repr_simd,
8-
repr_scalable,
9-
simd_ffi,
10-
unsized_locals,
11-
unsized_fn_params,
12-
link_llvm_intrinsics
13-
)]
6+
#![feature(repr_simd, repr_scalable, simd_ffi, link_llvm_intrinsics)]
147

158
#[repr(simd, scalable(4))]
169
#[allow(non_camel_case_types)]

tests/ui/simd/scalable/disallow-capture-closure.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//@ only-aarch64
2+
13
#![allow(incomplete_features, internal_features, improper_ctypes)]
24
#![feature(
35
repr_simd,
@@ -40,8 +42,10 @@ fn run(f: impl Fn() -> ()) {
4042
}
4143

4244
fn main() {
43-
let a = svdup_n_s32(42);
44-
run(move || {
45-
svxar_n_s32::<2>(a, a); //~ ERROR E0277
46-
});
45+
unsafe {
46+
let a = svdup_n_s32(42);
47+
run(move || {
48+
svxar_n_s32::<2>(a, a); //~ ERROR E0277
49+
});
50+
}
4751
}

tests/ui/simd/scalable/disallow-capture-closure.stderr

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
error[E0277]: the size for values of type `[i32]` cannot be known at compilation time
2-
--> $DIR/disallow-capture-closure.rs:45:26
2+
--> $DIR/disallow-capture-closure.rs:48:30
33
|
4-
LL | run(move || {
5-
| -- this closure captures all values by move
6-
LL | svxar_n_s32::<2>(a, a);
7-
| ^ doesn't have a size known at compile-time
4+
LL | run(move || {
5+
| -- this closure captures all values by move
6+
LL | svxar_n_s32::<2>(a, a);
7+
| ^ doesn't have a size known at compile-time
88
|
99
= help: within `svint32_t`, the trait `Sized` is not implemented for `[i32]`, which is required by `svint32_t: Sized`
1010
note: required because it appears within the type `svint32_t`
11-
--> $DIR/disallow-capture-closure.rs:13:12
11+
--> $DIR/disallow-capture-closure.rs:15:12
1212
|
1313
LL | pub struct svint32_t {
1414
| ^^^^^^^^^

tests/ui/simd/scalable/no-async.rs

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
//@ only-aarch64
2+
//@ edition:2021
3+
4+
#![allow(incomplete_features, internal_features, improper_ctypes)]
5+
#![feature(
6+
core_intrinsics,
7+
repr_simd,
8+
repr_scalable,
9+
simd_ffi,
10+
link_llvm_intrinsics
11+
)]
12+
13+
use core::intrinsics::simd::simd_reinterpret;
14+
15+
#[repr(simd, scalable(4))]
16+
#[allow(non_camel_case_types)]
17+
pub struct svint32_t {
18+
_ty: [i32],
19+
}
20+
21+
#[target_feature(enable = "sve")]
22+
pub unsafe fn svdup_n_s32(op: i32) -> svint32_t {
23+
extern "C" {
24+
#[cfg_attr(target_arch = "aarch64", link_name = "llvm.aarch64.sve.dup.x.nxv4i32")]
25+
fn _svdup_n_s32(op: i32) -> svint32_t;
26+
}
27+
unsafe { _svdup_n_s32(op) }
28+
}
29+
30+
async fn another() -> i32 {
31+
42
32+
}
33+
34+
#[no_mangle]
35+
pub async fn test_function() {
36+
unsafe {
37+
let x = svdup_n_s32(1); //~ ERROR E0277
38+
let temp = another().await;
39+
let y: svint32_t = simd_reinterpret(x);
40+
}
41+
}
42+
43+
fn main() {
44+
let _ = test_function();
45+
}
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
error[E0277]: the size for values of type `[i32]` cannot be known at compilation time
2+
--> $DIR/no-async.rs:37:13
3+
|
4+
LL | let x = svdup_n_s32(1);
5+
| ^ doesn't have a size known at compile-time
6+
|
7+
= help: within `svint32_t`, the trait `Sized` is not implemented for `[i32]`, which is required by `svint32_t: Sized`
8+
note: required because it appears within the type `svint32_t`
9+
--> $DIR/no-async.rs:17:12
10+
|
11+
LL | pub struct svint32_t {
12+
| ^^^^^^^^^
13+
= note: all values live across `await` must have a statically known size
14+
15+
error: aborting due to 1 previous error
16+
17+
For more information about this error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)