@@ -125,6 +125,11 @@ pub(crate) enum DefiningTy<'tcx> {
125
125
/// The MIR represents an inline const. The signature has no inputs and a
126
126
/// single return value found via `InlineConstArgs::ty`.
127
127
InlineConst ( DefId , GenericArgsRef < ' tcx > ) ,
128
+
129
+ // Fake body for a global asm. Not particularly useful or interesting,
130
+ // but we need it so we can properly store the typeck results of the asm
131
+ // operands, which aren't associated with a body otherwise.
132
+ GlobalAsm ( DefId ) ,
128
133
}
129
134
130
135
impl < ' tcx > DefiningTy < ' tcx > {
@@ -137,9 +142,10 @@ impl<'tcx> DefiningTy<'tcx> {
137
142
DefiningTy :: Closure ( _, args) => args. as_closure ( ) . upvar_tys ( ) ,
138
143
DefiningTy :: CoroutineClosure ( _, args) => args. as_coroutine_closure ( ) . upvar_tys ( ) ,
139
144
DefiningTy :: Coroutine ( _, args) => args. as_coroutine ( ) . upvar_tys ( ) ,
140
- DefiningTy :: FnDef ( ..) | DefiningTy :: Const ( ..) | DefiningTy :: InlineConst ( ..) => {
141
- ty:: List :: empty ( )
142
- }
145
+ DefiningTy :: FnDef ( ..)
146
+ | DefiningTy :: Const ( ..)
147
+ | DefiningTy :: InlineConst ( ..)
148
+ | DefiningTy :: GlobalAsm ( _) => ty:: List :: empty ( ) ,
143
149
}
144
150
}
145
151
@@ -151,7 +157,10 @@ impl<'tcx> DefiningTy<'tcx> {
151
157
DefiningTy :: Closure ( ..)
152
158
| DefiningTy :: CoroutineClosure ( ..)
153
159
| DefiningTy :: Coroutine ( ..) => 1 ,
154
- DefiningTy :: FnDef ( ..) | DefiningTy :: Const ( ..) | DefiningTy :: InlineConst ( ..) => 0 ,
160
+ DefiningTy :: FnDef ( ..)
161
+ | DefiningTy :: Const ( ..)
162
+ | DefiningTy :: InlineConst ( ..)
163
+ | DefiningTy :: GlobalAsm ( _) => 0 ,
155
164
}
156
165
}
157
166
@@ -170,7 +179,8 @@ impl<'tcx> DefiningTy<'tcx> {
170
179
| DefiningTy :: Coroutine ( def_id, ..)
171
180
| DefiningTy :: FnDef ( def_id, ..)
172
181
| DefiningTy :: Const ( def_id, ..)
173
- | DefiningTy :: InlineConst ( def_id, ..) => def_id,
182
+ | DefiningTy :: InlineConst ( def_id, ..)
183
+ | DefiningTy :: GlobalAsm ( def_id) => def_id,
174
184
}
175
185
}
176
186
}
@@ -410,6 +420,7 @@ impl<'tcx> UniversalRegions<'tcx> {
410
420
tcx. def_path_str_with_args( def_id, args) ,
411
421
) ) ;
412
422
}
423
+ DefiningTy :: GlobalAsm ( _) => unreachable ! ( ) ,
413
424
}
414
425
}
415
426
@@ -629,6 +640,8 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
629
640
DefiningTy :: InlineConst ( self . mir_def . to_def_id ( ) , args)
630
641
}
631
642
}
643
+
644
+ BodyOwnerKind :: GlobalAsm => DefiningTy :: GlobalAsm ( self . mir_def . to_def_id ( ) ) ,
632
645
}
633
646
}
634
647
@@ -662,6 +675,8 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
662
675
}
663
676
664
677
DefiningTy :: FnDef ( _, args) | DefiningTy :: Const ( _, args) => args,
678
+
679
+ DefiningTy :: GlobalAsm ( _) => ty:: List :: empty ( ) ,
665
680
} ;
666
681
667
682
let global_mapping = iter:: once ( ( tcx. lifetimes . re_static , fr_static) ) ;
@@ -798,6 +813,10 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
798
813
let ty = args. as_inline_const ( ) . ty ( ) ;
799
814
ty:: Binder :: dummy ( tcx. mk_type_list ( & [ ty] ) )
800
815
}
816
+
817
+ DefiningTy :: GlobalAsm ( def_id) => {
818
+ ty:: Binder :: dummy ( tcx. mk_type_list ( & [ tcx. type_of ( def_id) . instantiate_identity ( ) ] ) )
819
+ }
801
820
} ;
802
821
803
822
// FIXME(#129952): We probably want a more principled approach here.
0 commit comments