@@ -9,7 +9,7 @@ use rustc_hir::Node;
9
9
use rustc_index:: vec:: IndexVec ;
10
10
use rustc_middle:: middle:: codegen_fn_attrs:: CodegenFnAttrFlags ;
11
11
use rustc_middle:: middle:: exported_symbols:: {
12
- metadata_symbol_name, ExportedSymbol , SymbolExportLevel ,
12
+ metadata_symbol_name, ExportedSymbol , SymbolExportInfo , SymbolExportKind , SymbolExportLevel ,
13
13
} ;
14
14
use rustc_middle:: ty:: query:: { ExternProviders , Providers } ;
15
15
use rustc_middle:: ty:: subst:: { GenericArgKind , SubstsRef } ;
@@ -42,7 +42,7 @@ pub fn crates_export_threshold(crate_types: &[CrateType]) -> SymbolExportLevel {
42
42
}
43
43
}
44
44
45
- fn reachable_non_generics_provider ( tcx : TyCtxt < ' _ > , cnum : CrateNum ) -> DefIdMap < SymbolExportLevel > {
45
+ fn reachable_non_generics_provider ( tcx : TyCtxt < ' _ > , cnum : CrateNum ) -> DefIdMap < SymbolExportInfo > {
46
46
assert_eq ! ( cnum, LOCAL_CRATE ) ;
47
47
48
48
if !tcx. sess . opts . output_types . should_codegen ( ) {
@@ -124,17 +124,38 @@ fn reachable_non_generics_provider(tcx: TyCtxt<'_>, cnum: CrateNum) -> DefIdMap<
124
124
} else {
125
125
symbol_export_level ( tcx, def_id. to_def_id ( ) )
126
126
} ;
127
+ let codegen_attrs = tcx. codegen_fn_attrs ( def_id. to_def_id ( ) ) ;
127
128
debug ! (
128
129
"EXPORTED SYMBOL (local): {} ({:?})" ,
129
130
tcx. symbol_name( Instance :: mono( tcx, def_id. to_def_id( ) ) ) ,
130
131
export_level
131
132
) ;
132
- ( def_id. to_def_id ( ) , export_level)
133
+ ( def_id. to_def_id ( ) , SymbolExportInfo {
134
+ level : export_level,
135
+ kind : if tcx. is_static ( def_id. to_def_id ( ) ) {
136
+ if codegen_attrs. flags . contains ( CodegenFnAttrFlags :: THREAD_LOCAL ) {
137
+ SymbolExportKind :: Tls
138
+ } else {
139
+ SymbolExportKind :: Data
140
+ }
141
+ } else {
142
+ SymbolExportKind :: Text
143
+ } ,
144
+ used : codegen_attrs. flags . contains ( CodegenFnAttrFlags :: USED )
145
+ || codegen_attrs. flags . contains ( CodegenFnAttrFlags :: USED_LINKER ) ,
146
+ } )
133
147
} )
134
148
. collect ( ) ;
135
149
136
150
if let Some ( id) = tcx. proc_macro_decls_static ( ( ) ) {
137
- reachable_non_generics. insert ( id. to_def_id ( ) , SymbolExportLevel :: C ) ;
151
+ reachable_non_generics. insert (
152
+ id. to_def_id ( ) ,
153
+ SymbolExportInfo {
154
+ level : SymbolExportLevel :: C ,
155
+ kind : SymbolExportKind :: Data ,
156
+ used : false ,
157
+ } ,
158
+ ) ;
138
159
}
139
160
140
161
reachable_non_generics
@@ -143,8 +164,8 @@ fn reachable_non_generics_provider(tcx: TyCtxt<'_>, cnum: CrateNum) -> DefIdMap<
143
164
fn is_reachable_non_generic_provider_local ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> bool {
144
165
let export_threshold = threshold ( tcx) ;
145
166
146
- if let Some ( & level ) = tcx. reachable_non_generics ( def_id. krate ) . get ( & def_id) {
147
- level. is_below_threshold ( export_threshold)
167
+ if let Some ( & info ) = tcx. reachable_non_generics ( def_id. krate ) . get ( & def_id) {
168
+ info . level . is_below_threshold ( export_threshold)
148
169
} else {
149
170
false
150
171
}
@@ -157,7 +178,7 @@ fn is_reachable_non_generic_provider_extern(tcx: TyCtxt<'_>, def_id: DefId) -> b
157
178
fn exported_symbols_provider_local < ' tcx > (
158
179
tcx : TyCtxt < ' tcx > ,
159
180
cnum : CrateNum ,
160
- ) -> & ' tcx [ ( ExportedSymbol < ' tcx > , SymbolExportLevel ) ] {
181
+ ) -> & ' tcx [ ( ExportedSymbol < ' tcx > , SymbolExportInfo ) ] {
161
182
assert_eq ! ( cnum, LOCAL_CRATE ) ;
162
183
163
184
if !tcx. sess . opts . output_types . should_codegen ( ) {
@@ -167,21 +188,35 @@ fn exported_symbols_provider_local<'tcx>(
167
188
let mut symbols: Vec < _ > = tcx
168
189
. reachable_non_generics ( LOCAL_CRATE )
169
190
. iter ( )
170
- . map ( |( & def_id, & level ) | ( ExportedSymbol :: NonGeneric ( def_id) , level ) )
191
+ . map ( |( & def_id, & info ) | ( ExportedSymbol :: NonGeneric ( def_id) , info ) )
171
192
. collect ( ) ;
172
193
173
194
if tcx. entry_fn ( ( ) ) . is_some ( ) {
174
195
let exported_symbol = ExportedSymbol :: NoDefId ( SymbolName :: new ( tcx, "main" ) ) ;
175
196
176
- symbols. push ( ( exported_symbol, SymbolExportLevel :: C ) ) ;
197
+ symbols. push ( (
198
+ exported_symbol,
199
+ SymbolExportInfo {
200
+ level : SymbolExportLevel :: C ,
201
+ kind : SymbolExportKind :: Text ,
202
+ used : false ,
203
+ } ,
204
+ ) ) ;
177
205
}
178
206
179
207
if tcx. allocator_kind ( ( ) ) . is_some ( ) {
180
208
for method in ALLOCATOR_METHODS {
181
209
let symbol_name = format ! ( "__rust_{}" , method. name) ;
182
210
let exported_symbol = ExportedSymbol :: NoDefId ( SymbolName :: new ( tcx, & symbol_name) ) ;
183
211
184
- symbols. push ( ( exported_symbol, SymbolExportLevel :: Rust ) ) ;
212
+ symbols. push ( (
213
+ exported_symbol,
214
+ SymbolExportInfo {
215
+ level : SymbolExportLevel :: Rust ,
216
+ kind : SymbolExportKind :: Text ,
217
+ used : false ,
218
+ } ,
219
+ ) ) ;
185
220
}
186
221
}
187
222
@@ -194,7 +229,14 @@ fn exported_symbols_provider_local<'tcx>(
194
229
195
230
symbols. extend ( PROFILER_WEAK_SYMBOLS . iter ( ) . map ( |sym| {
196
231
let exported_symbol = ExportedSymbol :: NoDefId ( SymbolName :: new ( tcx, sym) ) ;
197
- ( exported_symbol, SymbolExportLevel :: C )
232
+ (
233
+ exported_symbol,
234
+ SymbolExportInfo {
235
+ level : SymbolExportLevel :: C ,
236
+ kind : SymbolExportKind :: Data ,
237
+ used : false ,
238
+ } ,
239
+ )
198
240
} ) ) ;
199
241
}
200
242
@@ -204,15 +246,29 @@ fn exported_symbols_provider_local<'tcx>(
204
246
205
247
symbols. extend ( MSAN_WEAK_SYMBOLS . iter ( ) . map ( |sym| {
206
248
let exported_symbol = ExportedSymbol :: NoDefId ( SymbolName :: new ( tcx, sym) ) ;
207
- ( exported_symbol, SymbolExportLevel :: C )
249
+ (
250
+ exported_symbol,
251
+ SymbolExportInfo {
252
+ level : SymbolExportLevel :: C ,
253
+ kind : SymbolExportKind :: Data ,
254
+ used : false ,
255
+ } ,
256
+ )
208
257
} ) ) ;
209
258
}
210
259
211
260
if tcx. sess . crate_types ( ) . contains ( & CrateType :: Dylib ) {
212
261
let symbol_name = metadata_symbol_name ( tcx) ;
213
262
let exported_symbol = ExportedSymbol :: NoDefId ( SymbolName :: new ( tcx, & symbol_name) ) ;
214
263
215
- symbols. push ( ( exported_symbol, SymbolExportLevel :: Rust ) ) ;
264
+ symbols. push ( (
265
+ exported_symbol,
266
+ SymbolExportInfo {
267
+ level : SymbolExportLevel :: Rust ,
268
+ kind : SymbolExportKind :: Data ,
269
+ used : false ,
270
+ } ,
271
+ ) ) ;
216
272
}
217
273
218
274
if tcx. sess . opts . share_generics ( ) && tcx. local_crate_exports_generics ( ) {
@@ -245,7 +301,14 @@ fn exported_symbols_provider_local<'tcx>(
245
301
MonoItem :: Fn ( Instance { def : InstanceDef :: Item ( def) , substs } ) => {
246
302
if substs. non_erasable_generics ( ) . next ( ) . is_some ( ) {
247
303
let symbol = ExportedSymbol :: Generic ( def. did , substs) ;
248
- symbols. push ( ( symbol, SymbolExportLevel :: Rust ) ) ;
304
+ symbols. push ( (
305
+ symbol,
306
+ SymbolExportInfo {
307
+ level : SymbolExportLevel :: Rust ,
308
+ kind : SymbolExportKind :: Text ,
309
+ used : false ,
310
+ } ,
311
+ ) ) ;
249
312
}
250
313
}
251
314
MonoItem :: Fn ( Instance { def : InstanceDef :: DropGlue ( _, Some ( ty) ) , substs } ) => {
@@ -254,7 +317,14 @@ fn exported_symbols_provider_local<'tcx>(
254
317
substs. non_erasable_generics( ) . next( ) ,
255
318
Some ( GenericArgKind :: Type ( ty) )
256
319
) ;
257
- symbols. push ( ( ExportedSymbol :: DropGlue ( ty) , SymbolExportLevel :: Rust ) ) ;
320
+ symbols. push ( (
321
+ ExportedSymbol :: DropGlue ( ty) ,
322
+ SymbolExportInfo {
323
+ level : SymbolExportLevel :: Rust ,
324
+ kind : SymbolExportKind :: Text ,
325
+ used : false ,
326
+ } ,
327
+ ) ) ;
258
328
}
259
329
_ => {
260
330
// Any other symbols don't qualify for sharing
0 commit comments