3
3
use rustc_abi:: { BackendRepr , RegKind } ;
4
4
use rustc_hir:: CRATE_HIR_ID ;
5
5
use rustc_middle:: mir:: { self , traversal} ;
6
- use rustc_middle:: ty:: { self , Instance , InstanceKind , Ty , TyCtxt } ;
7
- use rustc_session:: lint:: builtin:: ABI_UNSUPPORTED_VECTOR_TYPES ;
6
+ use rustc_middle:: ty:: layout:: LayoutCx ;
7
+ use rustc_middle:: ty:: { self , Instance , InstanceKind , Ty , TyCtxt , TypingEnv } ;
8
+ use rustc_session:: lint:: builtin:: { ABI_UNSUPPORTED_VECTOR_TYPES , WASM_C_ABI } ;
8
9
use rustc_span:: def_id:: DefId ;
9
10
use rustc_span:: { DUMMY_SP , Span , Symbol , sym} ;
10
- use rustc_target:: callconv:: { Conv , FnAbi , PassMode } ;
11
+ use rustc_target:: callconv:: { ArgAbi , Conv , FnAbi , PassMode } ;
12
+ use rustc_target:: spec:: { HasWasmCAbiOpt , WasmCAbi } ;
11
13
12
14
use crate :: errors;
13
15
@@ -26,13 +28,15 @@ fn uses_vector_registers(mode: &PassMode, repr: &BackendRepr) -> bool {
26
28
/// for a certain function.
27
29
/// `is_call` indicates whether this is a call-site check or a definition-site check;
28
30
/// this is only relevant for the wording in the emitted error.
29
- fn do_check_abi < ' tcx > (
31
+ fn do_check_simd_vector_abi < ' tcx > (
30
32
tcx : TyCtxt < ' tcx > ,
31
33
abi : & FnAbi < ' tcx , Ty < ' tcx > > ,
32
34
def_id : DefId ,
33
35
is_call : bool ,
34
36
span : impl Fn ( ) -> Span ,
35
37
) {
38
+ // We check this on all functions, including those using the "Rust" ABI.
39
+ // For the "Rust" ABI it would be a bug if the lint ever triggered, but better safe than sorry.
36
40
let feature_def = tcx. sess . target . features_for_correct_vector_abi ( ) ;
37
41
let codegen_attrs = tcx. codegen_fn_attrs ( def_id) ;
38
42
let have_feature = |feat : Symbol | {
@@ -88,6 +92,59 @@ fn do_check_abi<'tcx>(
88
92
}
89
93
}
90
94
95
+ fn wasm_abi_safe < ' tcx > ( tcx : TyCtxt < ' tcx > , arg : & ArgAbi < ' tcx , Ty < ' tcx > > ) -> bool {
96
+ if matches ! ( arg. layout. backend_repr, BackendRepr :: Scalar ( _) ) {
97
+ return true ;
98
+ }
99
+
100
+ // This matches `unwrap_trivial_aggregate` in the wasm ABI logic.`
101
+ if arg. layout . is_aggregate ( ) {
102
+ let cx = LayoutCx :: new ( tcx, TypingEnv :: fully_monomorphized ( ) ) ;
103
+ if let Some ( unit) = arg. layout . homogeneous_aggregate ( & cx) . ok ( ) . and_then ( |ha| ha. unit ( ) ) {
104
+ let size = arg. layout . size ;
105
+ if unit. size == size {
106
+ return true ;
107
+ }
108
+ }
109
+ }
110
+
111
+ false
112
+ }
113
+
114
+ /// Warns against usage of `extern "C"` on wasm32-unknown-unknown that is affected by the
115
+ /// ABI transition.
116
+ fn do_check_wasm_abi < ' tcx > (
117
+ tcx : TyCtxt < ' tcx > ,
118
+ abi : & FnAbi < ' tcx , Ty < ' tcx > > ,
119
+ is_call : bool ,
120
+ span : impl Fn ( ) -> Span ,
121
+ ) {
122
+ // Only proceed for `extern "C" fn`` on wasm32-unknown-unknown (same check as what `adjust_for_foreign_abi` uses to call `compute_wasm_abi_info`).
123
+ if !( tcx. sess . target . arch == "wasm32"
124
+ && tcx. sess . target . os == "unknown"
125
+ && tcx. wasm_c_abi_opt ( ) == WasmCAbi :: Legacy
126
+ && abi. conv == Conv :: C )
127
+ {
128
+ return ;
129
+ }
130
+ // Warn against all types whose ABI will change. That's all arguments except for things passed as scalars.
131
+ // Return values are not affected by this change.
132
+ for arg_abi in abi. args . iter ( ) {
133
+ if wasm_abi_safe ( tcx, arg_abi) {
134
+ continue ;
135
+ }
136
+ let span = span ( ) ;
137
+ tcx. emit_node_span_lint (
138
+ WASM_C_ABI ,
139
+ CRATE_HIR_ID ,
140
+ span,
141
+ errors:: WasmCAbiTransition { ty : arg_abi. layout . ty , is_call } ,
142
+ ) ;
143
+ // Let's only warn once per function.
144
+ break ;
145
+ }
146
+ }
147
+
91
148
/// Checks that the ABI of a given instance of a function does not contain vector-passed arguments
92
149
/// or return values for which the corresponding target feature is not enabled.
93
150
fn check_instance_abi < ' tcx > ( tcx : TyCtxt < ' tcx > , instance : Instance < ' tcx > ) {
@@ -98,13 +155,10 @@ fn check_instance_abi<'tcx>(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) {
98
155
// function.
99
156
return ;
100
157
} ;
101
- do_check_abi (
102
- tcx,
103
- abi,
104
- instance. def_id ( ) ,
105
- /*is_call*/ false ,
106
- || tcx. def_span ( instance. def_id ( ) ) ,
107
- )
158
+ do_check_simd_vector_abi ( tcx, abi, instance. def_id ( ) , /*is_call*/ false , || {
159
+ tcx. def_span ( instance. def_id ( ) )
160
+ } ) ;
161
+ do_check_wasm_abi ( tcx, abi, /*is_call*/ false , || tcx. def_span ( instance. def_id ( ) ) ) ;
108
162
}
109
163
110
164
/// Checks that a call expression does not try to pass a vector-passed argument which requires a
@@ -141,7 +195,8 @@ fn check_call_site_abi<'tcx>(
141
195
// ABI failed to compute; this will not get through codegen.
142
196
return ;
143
197
} ;
144
- do_check_abi ( tcx, callee_abi, caller. def_id ( ) , /*is_call*/ true , || span) ;
198
+ do_check_simd_vector_abi ( tcx, callee_abi, caller. def_id ( ) , /*is_call*/ true , || span) ;
199
+ do_check_wasm_abi ( tcx, callee_abi, /*is_call*/ true , || span) ;
145
200
}
146
201
147
202
fn check_callees_abi < ' tcx > ( tcx : TyCtxt < ' tcx > , instance : Instance < ' tcx > , body : & mir:: Body < ' tcx > ) {
0 commit comments