@@ -29,7 +29,7 @@ use stable_mir::{Crate, CrateItem, CrateNum, DefId, Error, Filename, ItemKind, S
29
29
use std:: cell:: RefCell ;
30
30
use std:: iter;
31
31
32
- use crate :: rustc_internal:: { internal , RustcInternal } ;
32
+ use crate :: rustc_internal:: RustcInternal ;
33
33
use crate :: rustc_smir:: builder:: BodyBuilder ;
34
34
use crate :: rustc_smir:: { alloc, new_item_kind, smir_crate, Stable , Tables } ;
35
35
@@ -74,9 +74,8 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
74
74
75
75
fn trait_decls ( & self , crate_num : CrateNum ) -> stable_mir:: TraitDecls {
76
76
let mut tables = self . 0 . borrow_mut ( ) ;
77
- tables
78
- . tcx
79
- . traits ( crate_num. internal ( & mut * tables) )
77
+ let tcx = tables. tcx ;
78
+ tcx. traits ( crate_num. internal ( & mut * tables, tcx) )
80
79
. iter ( )
81
80
. map ( |trait_def_id| tables. trait_def ( * trait_def_id) )
82
81
. collect ( )
@@ -101,9 +100,8 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
101
100
102
101
fn trait_impls ( & self , crate_num : CrateNum ) -> stable_mir:: ImplTraitDecls {
103
102
let mut tables = self . 0 . borrow_mut ( ) ;
104
- tables
105
- . tcx
106
- . trait_impls_in_crate ( crate_num. internal ( & mut * tables) )
103
+ let tcx = tables. tcx ;
104
+ tcx. trait_impls_in_crate ( crate_num. internal ( & mut * tables, tcx) )
107
105
. iter ( )
108
106
. map ( |impl_def_id| tables. impl_def ( * impl_def_id) )
109
107
. collect ( )
@@ -229,57 +227,68 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
229
227
230
228
fn adt_kind ( & self , def : AdtDef ) -> AdtKind {
231
229
let mut tables = self . 0 . borrow_mut ( ) ;
232
- def. internal ( & mut * tables) . adt_kind ( ) . stable ( & mut * tables)
230
+ let tcx = tables. tcx ;
231
+ def. internal ( & mut * tables, tcx) . adt_kind ( ) . stable ( & mut * tables)
233
232
}
234
233
235
234
fn adt_is_box ( & self , def : AdtDef ) -> bool {
236
235
let mut tables = self . 0 . borrow_mut ( ) ;
237
- def. internal ( & mut * tables) . is_box ( )
236
+ let tcx = tables. tcx ;
237
+ def. internal ( & mut * tables, tcx) . is_box ( )
238
238
}
239
239
240
240
fn adt_is_simd ( & self , def : AdtDef ) -> bool {
241
241
let mut tables = self . 0 . borrow_mut ( ) ;
242
- def. internal ( & mut * tables) . repr ( ) . simd ( )
242
+ let tcx = tables. tcx ;
243
+ def. internal ( & mut * tables, tcx) . repr ( ) . simd ( )
243
244
}
244
245
245
246
fn adt_is_cstr ( & self , def : AdtDef ) -> bool {
246
247
let mut tables = self . 0 . borrow_mut ( ) ;
247
- let def_id = def. 0 . internal ( & mut * tables) ;
248
+ let tcx = tables. tcx ;
249
+ let def_id = def. 0 . internal ( & mut * tables, tcx) ;
248
250
tables. tcx . lang_items ( ) . c_str ( ) == Some ( def_id)
249
251
}
250
252
251
253
fn fn_sig ( & self , def : FnDef , args : & GenericArgs ) -> PolyFnSig {
252
254
let mut tables = self . 0 . borrow_mut ( ) ;
253
- let def_id = def. 0 . internal ( & mut * tables) ;
254
- let sig = tables. tcx . fn_sig ( def_id) . instantiate ( tables. tcx , args. internal ( & mut * tables) ) ;
255
+ let tcx = tables. tcx ;
256
+ let def_id = def. 0 . internal ( & mut * tables, tcx) ;
257
+ let sig =
258
+ tables. tcx . fn_sig ( def_id) . instantiate ( tables. tcx , args. internal ( & mut * tables, tcx) ) ;
255
259
sig. stable ( & mut * tables)
256
260
}
257
261
258
262
fn closure_sig ( & self , args : & GenericArgs ) -> PolyFnSig {
259
263
let mut tables = self . 0 . borrow_mut ( ) ;
260
- let args_ref = args. internal ( & mut * tables) ;
264
+ let tcx = tables. tcx ;
265
+ let args_ref = args. internal ( & mut * tables, tcx) ;
261
266
let sig = args_ref. as_closure ( ) . sig ( ) ;
262
267
sig. stable ( & mut * tables)
263
268
}
264
269
265
270
fn adt_variants_len ( & self , def : AdtDef ) -> usize {
266
271
let mut tables = self . 0 . borrow_mut ( ) ;
267
- def. internal ( & mut * tables) . variants ( ) . len ( )
272
+ let tcx = tables. tcx ;
273
+ def. internal ( & mut * tables, tcx) . variants ( ) . len ( )
268
274
}
269
275
270
276
fn variant_name ( & self , def : VariantDef ) -> Symbol {
271
277
let mut tables = self . 0 . borrow_mut ( ) ;
272
- def. internal ( & mut * tables) . name . to_string ( )
278
+ let tcx = tables. tcx ;
279
+ def. internal ( & mut * tables, tcx) . name . to_string ( )
273
280
}
274
281
275
282
fn variant_fields ( & self , def : VariantDef ) -> Vec < FieldDef > {
276
283
let mut tables = self . 0 . borrow_mut ( ) ;
277
- def. internal ( & mut * tables) . fields . iter ( ) . map ( |f| f. stable ( & mut * tables) ) . collect ( )
284
+ let tcx = tables. tcx ;
285
+ def. internal ( & mut * tables, tcx) . fields . iter ( ) . map ( |f| f. stable ( & mut * tables) ) . collect ( )
278
286
}
279
287
280
288
fn eval_target_usize ( & self , cnst : & Const ) -> Result < u64 , Error > {
281
289
let mut tables = self . 0 . borrow_mut ( ) ;
282
- let mir_const = cnst. internal ( & mut * tables) ;
290
+ let tcx = tables. tcx ;
291
+ let mir_const = cnst. internal ( & mut * tables, tcx) ;
283
292
mir_const
284
293
. try_eval_target_usize ( tables. tcx , ParamEnv :: empty ( ) )
285
294
. ok_or_else ( || Error :: new ( format ! ( "Const `{cnst:?}` cannot be encoded as u64" ) ) )
@@ -299,30 +308,36 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
299
308
300
309
fn new_rigid_ty ( & self , kind : RigidTy ) -> stable_mir:: ty:: Ty {
301
310
let mut tables = self . 0 . borrow_mut ( ) ;
302
- let internal_kind = kind. internal ( & mut * tables) ;
311
+ let tcx = tables. tcx ;
312
+ let internal_kind = kind. internal ( & mut * tables, tcx) ;
303
313
tables. tcx . mk_ty_from_kind ( internal_kind) . stable ( & mut * tables)
304
314
}
305
315
306
316
fn new_box_ty ( & self , ty : stable_mir:: ty:: Ty ) -> stable_mir:: ty:: Ty {
307
317
let mut tables = self . 0 . borrow_mut ( ) ;
308
- let inner = ty. internal ( & mut * tables) ;
318
+ let tcx = tables. tcx ;
319
+ let inner = ty. internal ( & mut * tables, tcx) ;
309
320
ty:: Ty :: new_box ( tables. tcx , inner) . stable ( & mut * tables)
310
321
}
311
322
312
323
fn def_ty ( & self , item : stable_mir:: DefId ) -> stable_mir:: ty:: Ty {
313
324
let mut tables = self . 0 . borrow_mut ( ) ;
314
- tables. tcx . type_of ( item. internal ( & mut * tables) ) . instantiate_identity ( ) . stable ( & mut * tables)
325
+ let tcx = tables. tcx ;
326
+ tcx. type_of ( item. internal ( & mut * tables, tcx) ) . instantiate_identity ( ) . stable ( & mut * tables)
315
327
}
316
328
317
329
fn def_ty_with_args ( & self , item : stable_mir:: DefId , args : & GenericArgs ) -> stable_mir:: ty:: Ty {
318
330
let mut tables = self . 0 . borrow_mut ( ) ;
319
- let args = args. internal ( & mut * tables) ;
320
- let def_ty = tables. tcx . type_of ( item. internal ( & mut * tables) ) ;
331
+ let tcx = tables. tcx ;
332
+ let args = args. internal ( & mut * tables, tcx) ;
333
+ let def_ty = tables. tcx . type_of ( item. internal ( & mut * tables, tcx) ) ;
321
334
def_ty. instantiate ( tables. tcx , args) . stable ( & mut * tables)
322
335
}
323
336
324
337
fn const_literal ( & self , cnst : & stable_mir:: ty:: Const ) -> String {
325
- internal ( cnst) . to_string ( )
338
+ let mut tables = self . 0 . borrow_mut ( ) ;
339
+ let tcx = tables. tcx ;
340
+ cnst. internal ( & mut * tables, tcx) . to_string ( )
326
341
}
327
342
328
343
fn span_of_an_item ( & self , def_id : stable_mir:: DefId ) -> Span {
@@ -337,7 +352,8 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
337
352
338
353
fn rigid_ty_discriminant_ty ( & self , ty : & RigidTy ) -> stable_mir:: ty:: Ty {
339
354
let mut tables = self . 0 . borrow_mut ( ) ;
340
- let internal_kind = ty. internal ( & mut * tables) ;
355
+ let tcx = tables. tcx ;
356
+ let internal_kind = ty. internal ( & mut * tables, tcx) ;
341
357
let internal_ty = tables. tcx . mk_ty_from_kind ( internal_kind) ;
342
358
internal_ty. discriminant_ty ( tables. tcx ) . stable ( & mut * tables)
343
359
}
@@ -407,8 +423,9 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
407
423
args : & stable_mir:: ty:: GenericArgs ,
408
424
) -> Option < stable_mir:: mir:: mono:: Instance > {
409
425
let mut tables = self . 0 . borrow_mut ( ) ;
410
- let def_id = def. 0 . internal ( & mut * tables) ;
411
- let args_ref = args. internal ( & mut * tables) ;
426
+ let tcx = tables. tcx ;
427
+ let def_id = def. 0 . internal ( & mut * tables, tcx) ;
428
+ let args_ref = args. internal ( & mut * tables, tcx) ;
412
429
match Instance :: resolve ( tables. tcx , ParamEnv :: reveal_all ( ) , def_id, args_ref) {
413
430
Ok ( Some ( instance) ) => Some ( instance. stable ( & mut * tables) ) ,
414
431
Ok ( None ) | Err ( _) => None ,
@@ -417,7 +434,8 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
417
434
418
435
fn resolve_drop_in_place ( & self , ty : stable_mir:: ty:: Ty ) -> stable_mir:: mir:: mono:: Instance {
419
436
let mut tables = self . 0 . borrow_mut ( ) ;
420
- let internal_ty = ty. internal ( & mut * tables) ;
437
+ let tcx = tables. tcx ;
438
+ let internal_ty = ty. internal ( & mut * tables, tcx) ;
421
439
let instance = Instance :: resolve_drop_in_place ( tables. tcx , internal_ty) ;
422
440
instance. stable ( & mut * tables)
423
441
}
@@ -428,8 +446,9 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
428
446
args : & GenericArgs ,
429
447
) -> Option < stable_mir:: mir:: mono:: Instance > {
430
448
let mut tables = self . 0 . borrow_mut ( ) ;
431
- let def_id = def. 0 . internal ( & mut * tables) ;
432
- let args_ref = args. internal ( & mut * tables) ;
449
+ let tcx = tables. tcx ;
450
+ let def_id = def. 0 . internal ( & mut * tables, tcx) ;
451
+ let args_ref = args. internal ( & mut * tables, tcx) ;
433
452
Instance :: resolve_for_fn_ptr ( tables. tcx , ParamEnv :: reveal_all ( ) , def_id, args_ref)
434
453
. stable ( & mut * tables)
435
454
}
@@ -441,36 +460,44 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
441
460
kind : ClosureKind ,
442
461
) -> Option < stable_mir:: mir:: mono:: Instance > {
443
462
let mut tables = self . 0 . borrow_mut ( ) ;
444
- let def_id = def. 0 . internal ( & mut * tables) ;
445
- let args_ref = args. internal ( & mut * tables) ;
446
- let closure_kind = kind. internal ( & mut * tables) ;
463
+ let tcx = tables. tcx ;
464
+ let def_id = def. 0 . internal ( & mut * tables, tcx) ;
465
+ let args_ref = args. internal ( & mut * tables, tcx) ;
466
+ let closure_kind = kind. internal ( & mut * tables, tcx) ;
447
467
Instance :: resolve_closure ( tables. tcx , def_id, args_ref, closure_kind) . stable ( & mut * tables)
448
468
}
449
469
450
470
fn eval_instance ( & self , def : InstanceDef , const_ty : Ty ) -> Result < Allocation , Error > {
451
471
let mut tables = self . 0 . borrow_mut ( ) ;
452
472
let instance = tables. instances [ def] ;
453
- let result = tables. tcx . const_eval_instance (
473
+ let tcx = tables. tcx ;
474
+ let result = tcx. const_eval_instance (
454
475
ParamEnv :: reveal_all ( ) ,
455
476
instance,
456
- Some ( tables . tcx . def_span ( instance. def_id ( ) ) ) ,
477
+ Some ( tcx. def_span ( instance. def_id ( ) ) ) ,
457
478
) ;
458
479
result
459
480
. map ( |const_val| {
460
- alloc:: try_new_allocation ( const_ty. internal ( & mut * tables) , const_val, & mut * tables)
481
+ alloc:: try_new_allocation (
482
+ const_ty. internal ( & mut * tables, tcx) ,
483
+ const_val,
484
+ & mut * tables,
485
+ )
461
486
} )
462
487
. map_err ( |e| e. stable ( & mut * tables) ) ?
463
488
}
464
489
465
490
fn eval_static_initializer ( & self , def : StaticDef ) -> Result < Allocation , Error > {
466
491
let mut tables = self . 0 . borrow_mut ( ) ;
467
- let def_id = def. 0 . internal ( & mut * tables) ;
492
+ let tcx = tables. tcx ;
493
+ let def_id = def. 0 . internal ( & mut * tables, tcx) ;
468
494
tables. tcx . eval_static_initializer ( def_id) . stable ( & mut * tables)
469
495
}
470
496
471
497
fn global_alloc ( & self , alloc : stable_mir:: mir:: alloc:: AllocId ) -> GlobalAlloc {
472
498
let mut tables = self . 0 . borrow_mut ( ) ;
473
- let alloc_id = alloc. internal ( & mut * tables) ;
499
+ let tcx = tables. tcx ;
500
+ let alloc_id = alloc. internal ( & mut * tables, tcx) ;
474
501
tables. tcx . global_alloc ( alloc_id) . stable ( & mut * tables)
475
502
}
476
503
@@ -480,9 +507,11 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
480
507
) -> Option < stable_mir:: mir:: alloc:: AllocId > {
481
508
let mut tables = self . 0 . borrow_mut ( ) ;
482
509
let GlobalAlloc :: VTable ( ty, trait_ref) = global_alloc else { return None } ;
483
- let alloc_id = tables
484
- . tcx
485
- . vtable_allocation ( ( ty. internal ( & mut * tables) , trait_ref. internal ( & mut * tables) ) ) ;
510
+ let tcx = tables. tcx ;
511
+ let alloc_id = tables. tcx . vtable_allocation ( (
512
+ ty. internal ( & mut * tables, tcx) ,
513
+ trait_ref. internal ( & mut * tables, tcx) ,
514
+ ) ) ;
486
515
Some ( alloc_id. stable ( & mut * tables) )
487
516
}
488
517
@@ -510,14 +539,16 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
510
539
511
540
fn ty_layout ( & self , ty : Ty ) -> Result < Layout , Error > {
512
541
let mut tables = self . 0 . borrow_mut ( ) ;
513
- let ty = ty. internal ( & mut * tables) ;
542
+ let tcx = tables. tcx ;
543
+ let ty = ty. internal ( & mut * tables, tcx) ;
514
544
let layout = tables. layout_of ( ty) ?. layout ;
515
545
Ok ( layout. stable ( & mut * tables) )
516
546
}
517
547
518
548
fn layout_shape ( & self , id : Layout ) -> LayoutShape {
519
549
let mut tables = self . 0 . borrow_mut ( ) ;
520
- id. internal ( & mut * tables) . 0 . stable ( & mut * tables)
550
+ let tcx = tables. tcx ;
551
+ id. internal ( & mut * tables, tcx) . 0 . stable ( & mut * tables)
521
552
}
522
553
}
523
554
0 commit comments