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 3e8187f

Browse files
committedMar 27, 2024
CFI: Only encode Coroutine Parent Args
Fixes #122705
1 parent 10a7aa1 commit 3e8187f

File tree

2 files changed

+42
-3
lines changed

2 files changed

+42
-3
lines changed
 

‎compiler/rustc_symbol_mangling/src/typeid/typeid_itanium_cxx_abi.rs

+12-3
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,7 @@ fn encode_ty<'tcx>(
641641
}
642642

643643
// Function types
644-
ty::FnDef(def_id, args)
645-
| ty::Closure(def_id, args)
646-
| ty::CoroutineClosure(def_id, args) => {
644+
ty::FnDef(def_id, args) | ty::Closure(def_id, args) => {
647645
// u<length><name>[I<element-type1..element-typeN>E], where <element-type> is <subst>,
648646
// as vendor extended type.
649647
let mut s = String::new();
@@ -653,6 +651,17 @@ fn encode_ty<'tcx>(
653651
compress(dict, DictKey::Ty(ty, TyQ::None), &mut s);
654652
typeid.push_str(&s);
655653
}
654+
ty::CoroutineClosure(def_id, args) => {
655+
// u<length><name>[I<element-type1..element-typeN>E], where <element-type> is <subst>,
656+
// as vendor extended type.
657+
let mut s = String::new();
658+
let name = encode_ty_name(tcx, *def_id);
659+
let _ = write!(s, "u{}{}", name.len(), &name);
660+
let parent_args = tcx.mk_args(args.as_coroutine_closure().parent_args());
661+
s.push_str(&encode_args(tcx, parent_args, dict, options));
662+
compress(dict, DictKey::Ty(ty, TyQ::None), &mut s);
663+
typeid.push_str(&s);
664+
}
656665

657666
ty::Coroutine(def_id, args, ..) => {
658667
// u<length><name>[I<element-type1..element-typeN>E], where <element-type> is <subst>,
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Check various forms of dynamic closure calls
2+
3+
//@ edition: 2021
4+
//@ revisions: cfi kcfi
5+
// FIXME(#122848) Remove only-linux once OSX CFI binaries work
6+
//@ only-linux
7+
//@ [cfi] needs-sanitizer-cfi
8+
//@ [kcfi] needs-sanitizer-kcfi
9+
//@ compile-flags: -C target-feature=-crt-static
10+
//@ [cfi] compile-flags: -C codegen-units=1 -C lto -C prefer-dynamic=off -C opt-level=0
11+
//@ [cfi] compile-flags: -Z sanitizer=cfi
12+
//@ [kcfi] compile-flags: -Z sanitizer=kcfi
13+
//@ run-pass
14+
15+
#![feature(async_closure)]
16+
#![feature(async_fn_traits)]
17+
18+
use std::ops::AsyncFn;
19+
20+
#[inline(never)]
21+
fn identity<T>(x: T) -> T { x }
22+
23+
// We can't actually create a `dyn AsyncFn()`, because it's not object-safe, but we should check
24+
// that we don't bug out when we encounter one.
25+
26+
fn main() {
27+
let f = identity(async || ());
28+
let _ = f.async_call(());
29+
let _ = f();
30+
}

0 commit comments

Comments
 (0)
Please sign in to comment.