1use std::cell::{Cell, RefCell};
7
8use rustc_hir::def::DefKind;
9use rustc_public_bridge::context::CompilerCtxt;
10use rustc_public_bridge::{Bridge, Tables};
11use tracing::debug;
12
13use crate::abi::{FnAbi, Layout, LayoutShape, ReprOptions};
14use crate::crate_def::Attribute;
15use crate::mir::alloc::{AllocId, GlobalAlloc};
16use crate::mir::mono::{Instance, InstanceDef, StaticDef};
17use crate::mir::{BinOp, Body, Place, UnOp};
18use crate::target::{MachineInfo, MachineSize};
19use crate::ty::{
20 AdtDef, AdtKind, Allocation, AssocItem, Asyncness, ClosureDef, ClosureKind, Constness,
21 CoroutineDef, Discr, FieldDef, FnDef, ForeignDef, ForeignItemKind, ForeignModule,
22 ForeignModuleDef, GenericArgs, GenericPredicates, Generics, ImplDef, ImplTrait, IntrinsicDef,
23 LineInfo, MirConst, PolyFnSig, RigidTy, Span, TraitDecl, TraitDef, TraitRef, Ty, TyConst,
24 TyConstId, TyKind, UintTy, VariantDef, VariantIdx, VtblEntry,
25};
26use crate::unstable::{RustcInternal, Stable, new_item_kind};
27use crate::{
28 AssocItems, Crate, CrateDef, CrateItem, CrateItems, CrateNum, DefId, Error, Filename,
29 ImplTraitDecls, ItemKind, Symbol, ThreadLocalIndex, TraitDecls, alloc, mir,
30};
31
32pub struct BridgeTys;
33
34impl Bridge for BridgeTys {
35 type DefId = crate::DefId;
36 type AllocId = crate::mir::alloc::AllocId;
37 type Span = crate::ty::Span;
38 type Ty = crate::ty::Ty;
39 type InstanceDef = crate::mir::mono::InstanceDef;
40 type TyConstId = crate::ty::TyConstId;
41 type MirConstId = crate::ty::MirConstId;
42 type Layout = crate::abi::Layout;
43
44 type Error = crate::Error;
45 type CrateItem = crate::CrateItem;
46 type AdtDef = crate::ty::AdtDef;
47 type ForeignModuleDef = crate::ty::ForeignModuleDef;
48 type ForeignDef = crate::ty::ForeignDef;
49 type FnDef = crate::ty::FnDef;
50 type ClosureDef = crate::ty::ClosureDef;
51 type CoroutineDef = crate::ty::CoroutineDef;
52 type CoroutineClosureDef = crate::ty::CoroutineClosureDef;
53 type AliasDef = crate::ty::AliasDef;
54 type ParamDef = crate::ty::ParamDef;
55 type BrNamedDef = crate::ty::BrNamedDef;
56 type TraitDef = crate::ty::TraitDef;
57 type GenericDef = crate::ty::GenericDef;
58 type ConstDef = crate::ty::ConstDef;
59 type ImplDef = crate::ty::ImplDef;
60 type RegionDef = crate::ty::RegionDef;
61 type CoroutineWitnessDef = crate::ty::CoroutineWitnessDef;
62 type AssocDef = crate::ty::AssocDef;
63 type OpaqueDef = crate::ty::OpaqueDef;
64 type Prov = crate::ty::Prov;
65 type StaticDef = crate::mir::mono::StaticDef;
66
67 type Allocation = crate::ty::Allocation;
68}
69
70pub(crate) struct CompilerInterface<'tcx> {
77 pub tables: RefCell<Tables<'tcx, BridgeTys>>,
78 pub cx: RefCell<CompilerCtxt<'tcx, BridgeTys>>,
79}
80
81impl<'tcx> CompilerInterface<'tcx> {
82 fn with_cx<R>(
83 &self,
84 f: impl FnOnce(&mut Tables<'tcx, BridgeTys>, &CompilerCtxt<'tcx, BridgeTys>) -> R,
85 ) -> R {
86 let mut tables = self.tables.borrow_mut();
87 let cx = self.cx.borrow();
88 f(&mut *tables, &*cx)
89 }
90
91 pub(crate) fn entry_fn(&self) -> Option<CrateItem> {
92 self.with_cx(|tables, cx| {
93 let did = cx.entry_fn();
94 Some(tables.crate_item(did?))
95 })
96 }
97
98 pub(crate) fn all_local_items(&self) -> CrateItems {
100 self.with_cx(|tables, cx| {
101 cx.all_local_items().iter().map(|did| tables.crate_item(*did)).collect()
102 })
103 }
104
105 pub(crate) fn mir_body(&self, item: DefId) -> mir::Body {
108 self.with_cx(|tables, cx| {
109 let did = tables[item];
110 cx.mir_body(did).stable(tables, cx)
111 })
112 }
113
114 pub(crate) fn has_body(&self, item: DefId) -> bool {
116 self.with_cx(|tables, cx| {
117 let def = item.internal(tables, cx.tcx);
118 cx.has_body(def)
119 })
120 }
121
122 pub(crate) fn foreign_modules(&self, crate_num: CrateNum) -> Vec<ForeignModuleDef> {
123 self.with_cx(|tables, cx| {
124 cx.foreign_modules(crate_num.internal(tables, cx.tcx))
125 .iter()
126 .map(|did| tables.foreign_module_def(*did))
127 .collect()
128 })
129 }
130
131 pub(crate) fn crate_functions(&self, crate_num: CrateNum) -> Vec<FnDef> {
133 self.with_cx(|tables, cx| {
134 let krate = crate_num.internal(tables, cx.tcx);
135 cx.crate_functions(krate).iter().map(|did| tables.fn_def(*did)).collect()
136 })
137 }
138
139 pub(crate) fn crate_adts(&self, crate_num: CrateNum) -> Vec<AdtDef> {
140 self.with_cx(|tables, cx| {
141 let krate = crate_num.internal(tables, cx.tcx);
142 cx.crate_adts(krate).iter().map(|did| tables.adt_def(*did)).collect()
143 })
144 }
145
146 pub(crate) fn crate_statics(&self, crate_num: CrateNum) -> Vec<StaticDef> {
148 self.with_cx(|tables, cx| {
149 let krate = crate_num.internal(tables, cx.tcx);
150 cx.crate_statics(krate).iter().map(|did| tables.static_def(*did)).collect()
151 })
152 }
153
154 pub(crate) fn foreign_module(&self, mod_def: ForeignModuleDef) -> ForeignModule {
155 self.with_cx(|tables, cx| {
156 let did = tables[mod_def.def_id()];
157 cx.foreign_module(did).stable(tables, cx)
158 })
159 }
160
161 pub(crate) fn foreign_items(&self, mod_def: ForeignModuleDef) -> Vec<ForeignDef> {
162 self.with_cx(|tables, cx| {
163 let did = tables[mod_def.def_id()];
164 cx.foreign_items(did).iter().map(|did| tables.foreign_def(*did)).collect()
165 })
166 }
167
168 pub(crate) fn all_trait_decls(&self) -> TraitDecls {
169 self.with_cx(|tables, cx| cx.all_trait_decls().map(|did| tables.trait_def(did)).collect())
170 }
171
172 pub(crate) fn trait_decls(&self, crate_num: CrateNum) -> TraitDecls {
173 self.with_cx(|tables, cx| {
174 let krate = crate_num.internal(tables, cx.tcx);
175 cx.trait_decls(krate).iter().map(|did| tables.trait_def(*did)).collect()
176 })
177 }
178
179 pub(crate) fn trait_decl(&self, trait_def: &TraitDef) -> TraitDecl {
180 self.with_cx(|tables, cx| {
181 let did = tables[trait_def.0];
182 cx.trait_decl(did).stable(tables, cx)
183 })
184 }
185
186 pub(crate) fn all_trait_impls(&self) -> ImplTraitDecls {
187 self.with_cx(|tables, cx| {
188 cx.all_trait_impls().iter().map(|did| tables.impl_def(*did)).collect()
189 })
190 }
191
192 pub(crate) fn trait_impls(&self, crate_num: CrateNum) -> ImplTraitDecls {
193 self.with_cx(|tables, cx| {
194 let krate = crate_num.internal(tables, cx.tcx);
195 cx.trait_impls(krate).iter().map(|did| tables.impl_def(*did)).collect()
196 })
197 }
198
199 pub(crate) fn trait_impl(&self, trait_impl: &ImplDef) -> ImplTrait {
200 self.with_cx(|tables, cx| {
201 let did = tables[trait_impl.0];
202 cx.trait_impl(did).stable(tables, cx)
203 })
204 }
205
206 pub(crate) fn generics_of(&self, def_id: DefId) -> Generics {
207 self.with_cx(|tables, cx| {
208 let did = tables[def_id];
209 cx.generics_of(did).stable(tables, cx)
210 })
211 }
212
213 pub(crate) fn inherent_impls(&self, adt: AdtDef) -> Vec<ImplDef> {
215 self.with_cx(|tables, cx| {
216 let def_id = tables[adt.0];
217 cx.inherent_impls(def_id).iter().map(|&did| tables.impl_def(did)).collect()
218 })
219 }
220
221 pub(crate) fn predicates_of(&self, def_id: DefId) -> GenericPredicates {
222 self.with_cx(|tables, cx| {
223 let did = tables[def_id];
224 let (parent, kinds) = cx.predicates_of(did);
225 crate::ty::GenericPredicates {
226 parent: parent.map(|did| tables.trait_def(did)),
227 predicates: kinds
228 .iter()
229 .map(|(kind, span)| (kind.stable(tables, cx), span.stable(tables, cx)))
230 .collect(),
231 }
232 })
233 }
234
235 pub(crate) fn explicit_predicates_of(&self, def_id: DefId) -> GenericPredicates {
236 self.with_cx(|tables, cx| {
237 let did = tables[def_id];
238 let (parent, kinds) = cx.explicit_predicates_of(did);
239 crate::ty::GenericPredicates {
240 parent: parent.map(|did| tables.trait_def(did)),
241 predicates: kinds
242 .iter()
243 .map(|(kind, span)| (kind.stable(tables, cx), span.stable(tables, cx)))
244 .collect(),
245 }
246 })
247 }
248
249 pub(crate) fn local_crate(&self) -> Crate {
251 self.with_cx(|_, cx| smir_crate(cx, cx.local_crate_num()))
252 }
253
254 pub(crate) fn external_crates(&self) -> Vec<Crate> {
256 self.with_cx(|_, cx| {
257 cx.external_crates().iter().map(|crate_num| smir_crate(cx, *crate_num)).collect()
258 })
259 }
260
261 pub(crate) fn find_crates(&self, name: &str) -> Vec<Crate> {
263 self.with_cx(|_, cx| {
264 cx.find_crates(name).iter().map(|crate_num| smir_crate(cx, *crate_num)).collect()
265 })
266 }
267
268 pub(crate) fn def_name(&self, def_id: DefId, trimmed: bool) -> Symbol {
270 self.with_cx(|tables, cx| {
271 let did = tables[def_id];
272 cx.def_name(did, trimmed)
273 })
274 }
275
276 pub(crate) fn def_parent(&self, def_id: DefId) -> Option<DefId> {
278 self.with_cx(|tables, cx| {
279 let did = tables[def_id];
280 cx.def_parent(did).map(|did| tables.create_def_id(did))
281 })
282 }
283
284 pub(crate) fn tool_attrs(&self, def_id: DefId, attr: &[Symbol]) -> Vec<Attribute> {
292 self.with_cx(|tables, cx| {
293 let did = tables[def_id];
294 cx.tool_attrs(did, attr)
295 .into_iter()
296 .map(|(attr_str, span)| Attribute::new(attr_str, span.stable(tables, cx)))
297 .collect()
298 })
299 }
300
301 pub(crate) fn all_tool_attrs(&self, def_id: DefId) -> Vec<Attribute> {
303 self.with_cx(|tables, cx| {
304 let did = tables[def_id];
305 cx.all_tool_attrs(did)
306 .into_iter()
307 .map(|(attr_str, span)| Attribute::new(attr_str, span.stable(tables, cx)))
308 .collect()
309 })
310 }
311
312 pub(crate) fn span_to_string(&self, span: Span) -> String {
314 self.with_cx(|tables, cx| {
315 let sp = tables.spans[span];
316 cx.span_to_string(sp)
317 })
318 }
319
320 pub(crate) fn get_filename(&self, span: &Span) -> Filename {
322 self.with_cx(|tables, cx| {
323 let sp = tables.spans[*span];
324 cx.get_filename(sp)
325 })
326 }
327
328 pub(crate) fn get_lines(&self, span: &Span) -> LineInfo {
330 self.with_cx(|tables, cx| {
331 let sp = tables.spans[*span];
332 let lines = cx.get_lines(sp);
333 LineInfo::from(lines)
334 })
335 }
336
337 pub(crate) fn item_kind(&self, item: CrateItem) -> ItemKind {
339 self.with_cx(|tables, cx| {
340 let did = tables[item.0];
341 new_item_kind(cx.def_kind(did))
342 })
343 }
344
345 pub(crate) fn is_foreign_item(&self, item: DefId) -> bool {
347 self.with_cx(|tables, cx| {
348 let did = tables[item];
349 cx.is_foreign_item(did)
350 })
351 }
352
353 pub(crate) fn foreign_item_kind(&self, def: ForeignDef) -> ForeignItemKind {
355 self.with_cx(|tables, cx| {
356 let def_id = tables[def.def_id()];
357 let def_kind = cx.foreign_item_kind(def_id);
358 match def_kind {
359 DefKind::Fn => ForeignItemKind::Fn(tables.fn_def(def_id)),
360 DefKind::Static { .. } => ForeignItemKind::Static(tables.static_def(def_id)),
361 DefKind::ForeignTy => {
362 use rustc_public_bridge::context::TyHelpers;
363 ForeignItemKind::Type(tables.intern_ty(cx.new_foreign(def_id)))
364 }
365 def_kind => {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("Unexpected kind for a foreign item: {0:?}",
def_kind)));
}unreachable!("Unexpected kind for a foreign item: {:?}", def_kind),
366 }
367 })
368 }
369
370 pub(crate) fn adt_kind(&self, def: AdtDef) -> AdtKind {
372 self.with_cx(|tables, cx| cx.adt_kind(def.internal(tables, cx.tcx)).stable(tables, cx))
373 }
374
375 pub(crate) fn adt_is_box(&self, def: AdtDef) -> bool {
377 self.with_cx(|tables, cx| cx.adt_is_box(def.internal(tables, cx.tcx)))
378 }
379
380 pub(crate) fn adt_is_simd(&self, def: AdtDef) -> bool {
382 self.with_cx(|tables, cx| cx.adt_is_simd(def.internal(tables, cx.tcx)))
383 }
384
385 pub(crate) fn adt_is_cstr(&self, def: AdtDef) -> bool {
387 self.with_cx(|tables, cx| cx.adt_is_cstr(def.0.internal(tables, cx.tcx)))
388 }
389
390 pub(crate) fn adt_repr(&self, def: AdtDef) -> ReprOptions {
392 self.with_cx(|tables, cx| cx.adt_repr(def.internal(tables, cx.tcx)).stable(tables, cx))
393 }
394
395 pub(crate) fn fn_sig(&self, def: FnDef, args: &GenericArgs) -> PolyFnSig {
397 self.with_cx(|tables, cx| {
398 let def_id = def.0.internal(tables, cx.tcx);
399 let args_ref = args.internal(tables, cx.tcx);
400 cx.fn_sig(def_id, args_ref).stable(tables, cx)
401 })
402 }
403
404 pub(crate) fn constness(&self, def: FnDef) -> Constness {
406 self.with_cx(|tables, cx| {
407 let def_id = def.0.internal(tables, cx.tcx);
408 cx.constness(def_id).stable(tables, cx)
409 })
410 }
411
412 pub(crate) fn asyncness(&self, def: FnDef) -> Asyncness {
414 self.with_cx(|tables, cx| {
415 let def_id = def.0.internal(tables, cx.tcx);
416 cx.asyncness(def_id).stable(tables, cx)
417 })
418 }
419
420 pub(crate) fn intrinsic(&self, item: DefId) -> Option<IntrinsicDef> {
422 self.with_cx(|tables, cx| {
423 let def_id = item.internal(tables, cx.tcx);
424 cx.intrinsic(def_id).map(|_| IntrinsicDef(item))
425 })
426 }
427
428 pub(crate) fn intrinsic_name(&self, def: IntrinsicDef) -> Symbol {
430 self.with_cx(|tables, cx| {
431 let def_id = def.0.internal(tables, cx.tcx);
432 cx.intrinsic_name(def_id)
433 })
434 }
435
436 pub(crate) fn closure_sig(&self, args: &GenericArgs) -> PolyFnSig {
438 self.with_cx(|tables, cx| {
439 let args_ref = args.internal(tables, cx.tcx);
440 cx.closure_sig(args_ref).stable(tables, cx)
441 })
442 }
443
444 pub(crate) fn adt_variants_len(&self, def: AdtDef) -> usize {
446 self.with_cx(|tables, cx| cx.adt_variants_len(def.internal(tables, cx.tcx)))
447 }
448
449 pub(crate) fn adt_discr_for_variant(&self, adt: AdtDef, variant: VariantIdx) -> Discr {
451 self.with_cx(|tables, cx| {
452 cx.adt_discr_for_variant(adt.internal(tables, cx.tcx), variant.internal(tables, cx.tcx))
453 .stable(tables, cx)
454 })
455 }
456
457 pub(crate) fn coroutine_discr_for_variant(
459 &self,
460 coroutine: CoroutineDef,
461 args: &GenericArgs,
462 variant: VariantIdx,
463 ) -> Discr {
464 self.with_cx(|tables, cx| {
465 let tcx = cx.tcx;
466 let def = coroutine.def_id().internal(tables, tcx);
467 let args_ref = args.internal(tables, tcx);
468 cx.coroutine_discr_for_variant(def, args_ref, variant.internal(tables, tcx))
469 .stable(tables, cx)
470 })
471 }
472
473 pub(crate) fn variant_name(&self, def: VariantDef) -> Symbol {
475 self.with_cx(|tables, cx| cx.variant_name(def.internal(tables, cx.tcx)))
476 }
477
478 pub(crate) fn variant_fields(&self, def: VariantDef) -> Vec<FieldDef> {
479 self.with_cx(|tables, cx| {
480 def.internal(tables, cx.tcx).fields.iter().map(|f| f.stable(tables, cx)).collect()
481 })
482 }
483
484 pub(crate) fn eval_target_usize(&self, mir_const: &MirConst) -> Result<u64, Error> {
486 self.with_cx(|tables, cx| {
487 let cnst = mir_const.internal(tables, cx.tcx);
488 cx.eval_target_usize(cnst)
489 })
490 }
491
492 pub(crate) fn eval_target_usize_ty(&self, ty_const: &TyConst) -> Result<u64, Error> {
493 self.with_cx(|tables, cx| {
494 let cnst = ty_const.internal(tables, cx.tcx);
495 cx.eval_target_usize_ty(cnst)
496 })
497 }
498
499 pub(crate) fn try_new_const_zst(&self, ty: Ty) -> Result<MirConst, Error> {
501 self.with_cx(|tables, cx| {
502 let ty_internal = ty.internal(tables, cx.tcx);
503 cx.try_new_const_zst(ty_internal).map(|cnst| cnst.stable(tables, cx))
504 })
505 }
506
507 pub(crate) fn new_const_str(&self, value: &str) -> MirConst {
509 self.with_cx(|tables, cx| cx.new_const_str(value).stable(tables, cx))
510 }
511
512 pub(crate) fn new_const_bool(&self, value: bool) -> MirConst {
514 self.with_cx(|tables, cx| cx.new_const_bool(value).stable(tables, cx))
515 }
516
517 pub(crate) fn try_new_const_uint(
519 &self,
520 value: u128,
521 uint_ty: UintTy,
522 ) -> Result<MirConst, Error> {
523 self.with_cx(|tables, cx| {
524 let ty = cx.ty_new_uint(uint_ty.internal(tables, cx.tcx));
525 cx.try_new_const_uint(value, ty).map(|cnst| cnst.stable(tables, cx))
526 })
527 }
528
529 pub(crate) fn try_new_ty_const_uint(
530 &self,
531 value: u128,
532 uint_ty: UintTy,
533 ) -> Result<TyConst, Error> {
534 self.with_cx(|tables, cx| {
535 let ty = cx.ty_new_uint(uint_ty.internal(tables, cx.tcx));
536 cx.try_new_ty_const_uint(value, ty).map(|cnst| cnst.stable(tables, cx))
537 })
538 }
539
540 pub(crate) fn new_rigid_ty(&self, kind: RigidTy) -> Ty {
542 self.with_cx(|tables, cx| {
543 let internal_kind = kind.internal(tables, cx.tcx);
544 cx.new_rigid_ty(internal_kind).stable(tables, cx)
545 })
546 }
547
548 pub(crate) fn new_box_ty(&self, ty: Ty) -> Ty {
550 self.with_cx(|tables, cx| {
551 let inner = ty.internal(tables, cx.tcx);
552 cx.new_box_ty(inner).stable(tables, cx)
553 })
554 }
555
556 pub(crate) fn def_ty(&self, item: DefId) -> Ty {
558 self.with_cx(|tables, cx| {
559 let inner = item.internal(tables, cx.tcx);
560 cx.def_ty(inner).stable(tables, cx)
561 })
562 }
563
564 pub(crate) fn def_ty_with_args(&self, item: DefId, args: &GenericArgs) -> Ty {
566 self.with_cx(|tables, cx| {
567 let inner = item.internal(tables, cx.tcx);
568 let args_ref = args.internal(tables, cx.tcx);
569 cx.def_ty_with_args(inner, args_ref).stable(tables, cx)
570 })
571 }
572
573 pub(crate) fn mir_const_pretty(&self, cnst: &MirConst) -> String {
575 self.with_cx(|tables, cx| cnst.internal(tables, cx.tcx).to_string())
576 }
577
578 pub(crate) fn span_of_a_def(&self, def_id: DefId) -> Span {
580 self.with_cx(|tables, cx| {
581 let did = tables[def_id];
582 cx.span_of_a_def(did).stable(tables, cx)
583 })
584 }
585
586 pub(crate) fn ty_const_pretty(&self, ct: TyConstId) -> String {
587 self.with_cx(|tables, cx| cx.ty_const_pretty(tables.ty_consts[ct]))
588 }
589
590 pub(crate) fn ty_pretty(&self, ty: Ty) -> String {
592 self.with_cx(|tables, cx| cx.ty_pretty(tables.types[ty]))
593 }
594
595 pub(crate) fn ty_kind(&self, ty: Ty) -> TyKind {
597 self.with_cx(|tables, cx| cx.ty_kind(tables.types[ty]).stable(tables, cx))
598 }
599
600 pub(crate) fn rigid_ty_discriminant_ty(&self, ty: &RigidTy) -> Ty {
602 self.with_cx(|tables, cx| {
603 let internal_kind = ty.internal(tables, cx.tcx);
604 cx.rigid_ty_discriminant_ty(internal_kind).stable(tables, cx)
605 })
606 }
607
608 pub(crate) fn instance_body(&self, instance: InstanceDef) -> Option<Body> {
610 self.with_cx(|tables, cx| {
611 let instance = tables.instances[instance];
612 cx.instance_body(instance).map(|body| body.stable(tables, cx))
613 })
614 }
615
616 pub(crate) fn instance_ty(&self, instance: InstanceDef) -> Ty {
618 self.with_cx(|tables, cx| {
619 let instance = tables.instances[instance];
620 cx.instance_ty(instance).stable(tables, cx)
621 })
622 }
623
624 pub(crate) fn instance_args(&self, def: InstanceDef) -> GenericArgs {
626 self.with_cx(|tables, cx| {
627 let instance = tables.instances[def];
628 cx.instance_args(instance).stable(tables, cx)
629 })
630 }
631
632 pub(crate) fn instance_def_id(&self, instance: InstanceDef) -> DefId {
634 self.with_cx(|tables, cx| {
635 let instance = tables.instances[instance];
636 cx.instance_def_id(instance, tables)
637 })
638 }
639
640 pub(crate) fn instance_mangled_name(&self, instance: InstanceDef) -> Symbol {
642 self.with_cx(|tables, cx| {
643 let instance = tables.instances[instance];
644 cx.instance_mangled_name(instance)
645 })
646 }
647
648 pub(crate) fn is_empty_drop_shim(&self, def: InstanceDef) -> bool {
650 self.with_cx(|tables, cx| {
651 let instance = tables.instances[def];
652 cx.is_empty_drop_shim(instance)
653 })
654 }
655
656 pub(crate) fn mono_instance(&self, def_id: DefId) -> Instance {
659 self.with_cx(|tables, cx| {
660 let did = tables[def_id];
661 cx.mono_instance(did).stable(tables, cx)
662 })
663 }
664
665 pub(crate) fn requires_monomorphization(&self, def_id: DefId) -> bool {
667 self.with_cx(|tables, cx| {
668 let did = tables[def_id];
669 cx.requires_monomorphization(did)
670 })
671 }
672
673 pub(crate) fn resolve_instance(&self, def: FnDef, args: &GenericArgs) -> Option<Instance> {
675 self.with_cx(|tables, cx| {
676 let def_id = def.0.internal(tables, cx.tcx);
677 let args_ref = args.internal(tables, cx.tcx);
678 cx.resolve_instance(def_id, args_ref).map(|inst| inst.stable(tables, cx))
679 })
680 }
681
682 pub(crate) fn resolve_drop_in_place(&self, ty: Ty) -> Instance {
684 self.with_cx(|tables, cx| {
685 let internal_ty = ty.internal(tables, cx.tcx);
686
687 cx.resolve_drop_in_place(internal_ty).stable(tables, cx)
688 })
689 }
690
691 pub(crate) fn resolve_for_fn_ptr(&self, def: FnDef, args: &GenericArgs) -> Option<Instance> {
693 self.with_cx(|tables, cx| {
694 let def_id = def.0.internal(tables, cx.tcx);
695 let args_ref = args.internal(tables, cx.tcx);
696 cx.resolve_for_fn_ptr(def_id, args_ref).stable(tables, cx)
697 })
698 }
699
700 pub(crate) fn resolve_closure(
702 &self,
703 def: ClosureDef,
704 args: &GenericArgs,
705 kind: ClosureKind,
706 ) -> Option<Instance> {
707 self.with_cx(|tables, cx| {
708 let def_id = def.0.internal(tables, cx.tcx);
709 let args_ref = args.internal(tables, cx.tcx);
710 let closure_kind = kind.internal(tables, cx.tcx);
711 cx.resolve_closure(def_id, args_ref, closure_kind).map(|inst| inst.stable(tables, cx))
712 })
713 }
714
715 pub(crate) fn eval_static_initializer(&self, def: StaticDef) -> Result<Allocation, Error> {
717 self.with_cx(|tables, cx| {
718 let def_id = def.0.internal(tables, cx.tcx);
719
720 cx.eval_static_initializer(def_id).stable(tables, cx)
721 })
722 }
723
724 pub(crate) fn eval_instance(
726 &self,
727 def: InstanceDef,
728 const_ty: Ty,
729 ) -> Result<Allocation, Error> {
730 self.with_cx(|tables, cx| {
731 let instance = tables.instances[def];
732 let const_ty = const_ty.internal(tables, cx.tcx);
733 cx.eval_instance(instance)
734 .map(|const_val| alloc::try_new_allocation(const_ty, const_val, tables, cx))
735 .map_err(|e| e.stable(tables, cx))?
736 })
737 }
738
739 pub(crate) fn global_alloc(&self, id: AllocId) -> GlobalAlloc {
741 self.with_cx(|tables, cx| {
742 let alloc_id = id.internal(tables, cx.tcx);
743 cx.global_alloc(alloc_id).stable(tables, cx)
744 })
745 }
746
747 pub(crate) fn vtable_allocation(&self, global_alloc: &GlobalAlloc) -> Option<AllocId> {
749 self.with_cx(|tables, cx| {
750 let GlobalAlloc::VTable(ty, trait_ref) = global_alloc else {
751 return None;
752 };
753 let ty = ty.internal(tables, cx.tcx);
754 let trait_ref = trait_ref.internal(tables, cx.tcx);
755 let alloc_id = cx.vtable_allocation(ty, trait_ref);
756 Some(alloc_id.stable(tables, cx))
757 })
758 }
759
760 pub(crate) fn krate(&self, def_id: DefId) -> Crate {
761 self.with_cx(|tables, cx| smir_crate(cx, tables[def_id].krate))
762 }
763
764 pub(crate) fn instance_name(&self, def: InstanceDef, trimmed: bool) -> Symbol {
765 self.with_cx(|tables, cx| {
766 let instance = tables.instances[def];
767 cx.instance_name(instance, trimmed)
768 })
769 }
770
771 pub(crate) fn target_info(&self) -> MachineInfo {
773 self.with_cx(|tables, cx| MachineInfo {
774 endian: cx.target_endian().stable(tables, cx),
775 pointer_width: MachineSize::from_bits(cx.target_pointer_size()),
776 })
777 }
778
779 pub(crate) fn instance_abi(&self, def: InstanceDef) -> Result<FnAbi, Error> {
781 self.with_cx(|tables, cx| {
782 let instance = tables.instances[def];
783 cx.instance_abi(instance).map(|fn_abi| fn_abi.stable(tables, cx))
784 })
785 }
786
787 pub(crate) fn fn_ptr_abi(&self, fn_ptr: PolyFnSig) -> Result<FnAbi, Error> {
789 self.with_cx(|tables, cx| {
790 let sig = fn_ptr.internal(tables, cx.tcx);
791 cx.fn_ptr_abi(sig).map(|fn_abi| fn_abi.stable(tables, cx))
792 })
793 }
794
795 pub(crate) fn ty_layout(&self, ty: Ty) -> Result<Layout, Error> {
797 self.with_cx(|tables, cx| {
798 let internal_ty = ty.internal(tables, cx.tcx);
799 cx.ty_layout(internal_ty).map(|layout| layout.stable(tables, cx))
800 })
801 }
802
803 pub(crate) fn layout_shape(&self, id: Layout) -> LayoutShape {
805 self.with_cx(|tables, cx| id.internal(tables, cx.tcx).0.stable(tables, cx))
806 }
807
808 pub(crate) fn place_pretty(&self, place: &Place) -> String {
810 self.with_cx(|tables, cx| ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:?}",
place.internal(tables, cx.tcx)))
})format!("{:?}", place.internal(tables, cx.tcx)))
811 }
812
813 pub(crate) fn binop_ty(&self, bin_op: BinOp, rhs: Ty, lhs: Ty) -> Ty {
815 self.with_cx(|tables, cx| {
816 let rhs_internal = rhs.internal(tables, cx.tcx);
817 let lhs_internal = lhs.internal(tables, cx.tcx);
818 let bin_op_internal = bin_op.internal(tables, cx.tcx);
819 cx.binop_ty(bin_op_internal, rhs_internal, lhs_internal).stable(tables, cx)
820 })
821 }
822
823 pub(crate) fn unop_ty(&self, un_op: UnOp, arg: Ty) -> Ty {
825 self.with_cx(|tables, cx| {
826 let un_op = un_op.internal(tables, cx.tcx);
827 let arg = arg.internal(tables, cx.tcx);
828 cx.unop_ty(un_op, arg).stable(tables, cx)
829 })
830 }
831
832 pub(crate) fn associated_item(&self, def_id: DefId) -> Option<AssocItem> {
834 self.with_cx(|tables, cx| {
835 let did = tables[def_id];
836 cx.associated_item(did).map(|assoc| assoc.stable(tables, cx))
837 })
838 }
839
840 pub(crate) fn associated_items(&self, def_id: DefId) -> AssocItems {
842 self.with_cx(|tables, cx| {
843 let did = tables[def_id];
844 cx.associated_items(did).iter().map(|assoc| assoc.stable(tables, cx)).collect()
845 })
846 }
847
848 pub(crate) fn vtable_entries(&self, trait_ref: &TraitRef) -> Vec<VtblEntry> {
850 self.with_cx(|tables, cx| {
851 cx.vtable_entries(trait_ref.internal(tables, cx.tcx))
852 .iter()
853 .map(|v| v.stable(tables, cx))
854 .collect()
855 })
856 }
857
858 pub(crate) fn vtable_entry(&self, trait_ref: &TraitRef, idx: usize) -> Option<VtblEntry> {
862 self.with_cx(|tables, cx| {
863 cx.vtable_entry(trait_ref.internal(tables, cx.tcx), idx).stable(tables, cx)
864 })
865 }
866}
867
868static TLV: ::scoped_tls::ScopedKey<Cell<*const ()>> =
::scoped_tls::ScopedKey {
inner: {
const FOO: ::std::thread::LocalKey<::std::cell::Cell<*const ()>> =
{
const __RUST_STD_INTERNAL_INIT: ::std::cell::Cell<*const ()>
=
{ ::std::cell::Cell::new(::std::ptr::null()) };
unsafe {
::std::thread::LocalKey::new(const {
if ::std::mem::needs_drop::<::std::cell::Cell<*const ()>>()
{
|_|
{
#[thread_local]
static __RUST_STD_INTERNAL_VAL:
::std::thread::local_impl::EagerStorage<::std::cell::Cell<*const ()>>
=
::std::thread::local_impl::EagerStorage::new(__RUST_STD_INTERNAL_INIT);
__RUST_STD_INTERNAL_VAL.get()
}
} else {
|_|
{
#[thread_local]
static __RUST_STD_INTERNAL_VAL: ::std::cell::Cell<*const ()>
=
__RUST_STD_INTERNAL_INIT;
&__RUST_STD_INTERNAL_VAL
}
}
})
}
};
&FOO
},
_marker: ::std::marker::PhantomData,
};scoped_tls::scoped_thread_local!(static TLV: Cell<*const ()>);
870
871#[cfg(feature = "rustc_internal")]
873pub(crate) fn run<'tcx, F, T>(interface: &CompilerInterface<'tcx>, f: F) -> Result<T, Error>
874where
875 F: FnOnce() -> T,
876{
877 if TLV.is_set() {
878 Err(Error::from("rustc_public already running"))
879 } else {
880 let ptr: *const () = (&raw const interface) as _;
881 TLV.set(&Cell::new(ptr), || Ok(f()))
882 }
883}
884
885pub(crate) fn with<R>(f: impl for<'tcx> FnOnce(&CompilerInterface<'tcx>) -> R) -> R {
890 if !TLV.is_set() {
::core::panicking::panic("assertion failed: TLV.is_set()")
};assert!(TLV.is_set());
891 TLV.with(|tlv| {
892 let ptr = tlv.get();
893 if !!ptr.is_null() {
::core::panicking::panic("assertion failed: !ptr.is_null()")
};assert!(!ptr.is_null());
894 f(unsafe { *(ptr as *const &CompilerInterface<'_>) })
895 })
896}
897
898fn smir_crate<'tcx>(
899 cx: &CompilerCtxt<'tcx, BridgeTys>,
900 crate_num: rustc_span::def_id::CrateNum,
901) -> Crate {
902 let name = cx.crate_name(crate_num);
903 let is_local = cx.crate_is_local(crate_num);
904 let id = CrateNum(cx.crate_num_id(crate_num), ThreadLocalIndex);
905 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_public/src/compiler_interface.rs:905",
"rustc_public::compiler_interface", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_public/src/compiler_interface.rs"),
::tracing_core::__macro_support::Option::Some(905u32),
::tracing_core::__macro_support::Option::Some("rustc_public::compiler_interface"),
::tracing_core::field::FieldSet::new(&["message",
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("name")
}> =
::tracing::__macro_support::FieldName::new("name");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("crate_num")
}> =
::tracing::__macro_support::FieldName::new("crate_num");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("smir_crate")
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&name)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&crate_num)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(?name, ?crate_num, "smir_crate");
906 Crate { id, name, is_local }
907}