]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_build/src/check_unsafety.rs
Auto merge of #94477 - matthiaskrgr:rollup-8h29qek, r=matthiaskrgr
[rust.git] / compiler / rustc_mir_build / src / check_unsafety.rs
1 use crate::build::ExprCategory;
2 use rustc_middle::thir::visit::{self, Visitor};
3
4 use rustc_errors::struct_span_err;
5 use rustc_hir as hir;
6 use rustc_middle::mir::BorrowKind;
7 use rustc_middle::thir::*;
8 use rustc_middle::ty::{self, ParamEnv, Ty, TyCtxt};
9 use rustc_session::lint::builtin::{UNSAFE_OP_IN_UNSAFE_FN, UNUSED_UNSAFE};
10 use rustc_session::lint::Level;
11 use rustc_span::def_id::{DefId, LocalDefId};
12 use rustc_span::symbol::Symbol;
13 use rustc_span::Span;
14
15 use std::ops::Bound;
16
17 struct UnsafetyVisitor<'a, 'tcx> {
18     tcx: TyCtxt<'tcx>,
19     thir: &'a Thir<'tcx>,
20     /// The `HirId` of the current scope, which would be the `HirId`
21     /// of the current HIR node, modulo adjustments. Used for lint levels.
22     hir_context: hir::HirId,
23     /// The current "safety context". This notably tracks whether we are in an
24     /// `unsafe` block, and whether it has been used.
25     safety_context: SafetyContext,
26     body_unsafety: BodyUnsafety,
27     /// The `#[target_feature]` attributes of the body. Used for checking
28     /// calls to functions with `#[target_feature]` (RFC 2396).
29     body_target_features: &'tcx Vec<Symbol>,
30     /// When inside the LHS of an assignment to a field, this is the type
31     /// of the LHS and the span of the assignment expression.
32     assignment_info: Option<(Ty<'tcx>, Span)>,
33     in_union_destructure: bool,
34     param_env: ParamEnv<'tcx>,
35     inside_adt: bool,
36 }
37
38 impl<'tcx> UnsafetyVisitor<'_, 'tcx> {
39     fn in_safety_context(&mut self, safety_context: SafetyContext, f: impl FnOnce(&mut Self)) {
40         if let (
41             SafetyContext::UnsafeBlock { span: enclosing_span, .. },
42             SafetyContext::UnsafeBlock { span: block_span, hir_id, .. },
43         ) = (self.safety_context, safety_context)
44         {
45             self.warn_unused_unsafe(
46                 hir_id,
47                 block_span,
48                 Some((self.tcx.sess.source_map().guess_head_span(enclosing_span), "block")),
49             );
50             f(self);
51         } else {
52             let prev_context = self.safety_context;
53             self.safety_context = safety_context;
54
55             f(self);
56
57             if let SafetyContext::UnsafeBlock { used: false, span, hir_id } = self.safety_context {
58                 self.warn_unused_unsafe(
59                     hir_id,
60                     span,
61                     if self.unsafe_op_in_unsafe_fn_allowed() {
62                         self.body_unsafety.unsafe_fn_sig_span().map(|span| (span, "fn"))
63                     } else {
64                         None
65                     },
66                 );
67             }
68             self.safety_context = prev_context;
69         }
70     }
71
72     fn requires_unsafe(&mut self, span: Span, kind: UnsafeOpKind) {
73         let (description, note) = kind.description_and_note();
74         let unsafe_op_in_unsafe_fn_allowed = self.unsafe_op_in_unsafe_fn_allowed();
75         match self.safety_context {
76             SafetyContext::BuiltinUnsafeBlock => {}
77             SafetyContext::UnsafeBlock { ref mut used, .. } => {
78                 if !self.body_unsafety.is_unsafe() || !unsafe_op_in_unsafe_fn_allowed {
79                     // Mark this block as useful
80                     *used = true;
81                 }
82             }
83             SafetyContext::UnsafeFn if unsafe_op_in_unsafe_fn_allowed => {}
84             SafetyContext::UnsafeFn => {
85                 // unsafe_op_in_unsafe_fn is disallowed
86                 self.tcx.struct_span_lint_hir(
87                     UNSAFE_OP_IN_UNSAFE_FN,
88                     self.hir_context,
89                     span,
90                     |lint| {
91                         lint.build(&format!(
92                             "{} is unsafe and requires unsafe block (error E0133)",
93                             description,
94                         ))
95                         .span_label(span, description)
96                         .note(note)
97                         .emit();
98                     },
99                 )
100             }
101             SafetyContext::Safe => {
102                 let fn_sugg = if unsafe_op_in_unsafe_fn_allowed { " function or" } else { "" };
103                 struct_span_err!(
104                     self.tcx.sess,
105                     span,
106                     E0133,
107                     "{} is unsafe and requires unsafe{} block",
108                     description,
109                     fn_sugg,
110                 )
111                 .span_label(span, description)
112                 .note(note)
113                 .emit();
114             }
115         }
116     }
117
118     fn warn_unused_unsafe(
119         &self,
120         hir_id: hir::HirId,
121         block_span: Span,
122         enclosing_unsafe: Option<(Span, &'static str)>,
123     ) {
124         let block_span = self.tcx.sess.source_map().guess_head_span(block_span);
125         self.tcx.struct_span_lint_hir(UNUSED_UNSAFE, hir_id, block_span, |lint| {
126             let msg = "unnecessary `unsafe` block";
127             let mut db = lint.build(msg);
128             db.span_label(block_span, msg);
129             if let Some((span, kind)) = enclosing_unsafe {
130                 db.span_label(span, format!("because it's nested under this `unsafe` {}", kind));
131             }
132             db.emit();
133         });
134     }
135
136     /// Whether the `unsafe_op_in_unsafe_fn` lint is `allow`ed at the current HIR node.
137     fn unsafe_op_in_unsafe_fn_allowed(&self) -> bool {
138         self.tcx.lint_level_at_node(UNSAFE_OP_IN_UNSAFE_FN, self.hir_context).0 == Level::Allow
139     }
140 }
141
142 // Searches for accesses to layout constrained fields.
143 struct LayoutConstrainedPlaceVisitor<'a, 'tcx> {
144     found: bool,
145     thir: &'a Thir<'tcx>,
146     tcx: TyCtxt<'tcx>,
147 }
148
149 impl<'a, 'tcx> LayoutConstrainedPlaceVisitor<'a, 'tcx> {
150     fn new(thir: &'a Thir<'tcx>, tcx: TyCtxt<'tcx>) -> Self {
151         Self { found: false, thir, tcx }
152     }
153 }
154
155 impl<'a, 'tcx> Visitor<'a, 'tcx> for LayoutConstrainedPlaceVisitor<'a, 'tcx> {
156     fn thir(&self) -> &'a Thir<'tcx> {
157         self.thir
158     }
159
160     fn visit_expr(&mut self, expr: &Expr<'tcx>) {
161         match expr.kind {
162             ExprKind::Field { lhs, .. } => {
163                 if let ty::Adt(adt_def, _) = self.thir[lhs].ty.kind() {
164                     if (Bound::Unbounded, Bound::Unbounded)
165                         != self.tcx.layout_scalar_valid_range(adt_def.did)
166                     {
167                         self.found = true;
168                     }
169                 }
170                 visit::walk_expr(self, expr);
171             }
172
173             // Keep walking through the expression as long as we stay in the same
174             // place, i.e. the expression is a place expression and not a dereference
175             // (since dereferencing something leads us to a different place).
176             ExprKind::Deref { .. } => {}
177             ref kind if ExprCategory::of(kind).map_or(true, |cat| cat == ExprCategory::Place) => {
178                 visit::walk_expr(self, expr);
179             }
180
181             _ => {}
182         }
183     }
184 }
185
186 impl<'a, 'tcx> Visitor<'a, 'tcx> for UnsafetyVisitor<'a, 'tcx> {
187     fn thir(&self) -> &'a Thir<'tcx> {
188         &self.thir
189     }
190
191     fn visit_block(&mut self, block: &Block) {
192         match block.safety_mode {
193             // compiler-generated unsafe code should not count towards the usefulness of
194             // an outer unsafe block
195             BlockSafety::BuiltinUnsafe => {
196                 self.in_safety_context(SafetyContext::BuiltinUnsafeBlock, |this| {
197                     visit::walk_block(this, block)
198                 });
199             }
200             BlockSafety::ExplicitUnsafe(hir_id) => {
201                 self.in_safety_context(
202                     SafetyContext::UnsafeBlock { span: block.span, hir_id, used: false },
203                     |this| visit::walk_block(this, block),
204                 );
205             }
206             BlockSafety::Safe => {
207                 visit::walk_block(self, block);
208             }
209         }
210     }
211
212     fn visit_pat(&mut self, pat: &Pat<'tcx>) {
213         if self.in_union_destructure {
214             match *pat.kind {
215                 // binding to a variable allows getting stuff out of variable
216                 PatKind::Binding { .. }
217                 // match is conditional on having this value
218                 | PatKind::Constant { .. }
219                 | PatKind::Variant { .. }
220                 | PatKind::Leaf { .. }
221                 | PatKind::Deref { .. }
222                 | PatKind::Range { .. }
223                 | PatKind::Slice { .. }
224                 | PatKind::Array { .. } => {
225                     self.requires_unsafe(pat.span, AccessToUnionField);
226                     return; // we can return here since this already requires unsafe
227                 }
228                 // wildcard doesn't take anything
229                 PatKind::Wild |
230                 // these just wrap other patterns
231                 PatKind::Or { .. } |
232                 PatKind::AscribeUserType { .. } => {}
233             }
234         };
235
236         match &*pat.kind {
237             PatKind::Leaf { .. } => {
238                 if let ty::Adt(adt_def, ..) = pat.ty.kind() {
239                     if adt_def.is_union() {
240                         let old_in_union_destructure =
241                             std::mem::replace(&mut self.in_union_destructure, true);
242                         visit::walk_pat(self, pat);
243                         self.in_union_destructure = old_in_union_destructure;
244                     } else if (Bound::Unbounded, Bound::Unbounded)
245                         != self.tcx.layout_scalar_valid_range(adt_def.did)
246                     {
247                         let old_inside_adt = std::mem::replace(&mut self.inside_adt, true);
248                         visit::walk_pat(self, pat);
249                         self.inside_adt = old_inside_adt;
250                     } else {
251                         visit::walk_pat(self, pat);
252                     }
253                 } else {
254                     visit::walk_pat(self, pat);
255                 }
256             }
257             PatKind::Binding { mode: BindingMode::ByRef(borrow_kind), ty, .. } => {
258                 if self.inside_adt {
259                     let ty::Ref(_, ty, _) = ty.kind() else {
260                         span_bug!(
261                             pat.span,
262                             "BindingMode::ByRef in pattern, but found non-reference type {}",
263                             ty
264                         );
265                     };
266                     match borrow_kind {
267                         BorrowKind::Shallow | BorrowKind::Shared | BorrowKind::Unique => {
268                             if !ty.is_freeze(self.tcx.at(pat.span), self.param_env) {
269                                 self.requires_unsafe(pat.span, BorrowOfLayoutConstrainedField);
270                             }
271                         }
272                         BorrowKind::Mut { .. } => {
273                             self.requires_unsafe(pat.span, MutationOfLayoutConstrainedField);
274                         }
275                     }
276                 }
277                 visit::walk_pat(self, pat);
278             }
279             PatKind::Deref { .. } => {
280                 let old_inside_adt = std::mem::replace(&mut self.inside_adt, false);
281                 visit::walk_pat(self, pat);
282                 self.inside_adt = old_inside_adt;
283             }
284             _ => {
285                 visit::walk_pat(self, pat);
286             }
287         }
288     }
289
290     fn visit_expr(&mut self, expr: &Expr<'tcx>) {
291         // could we be in the LHS of an assignment to a field?
292         match expr.kind {
293             ExprKind::Field { .. }
294             | ExprKind::VarRef { .. }
295             | ExprKind::UpvarRef { .. }
296             | ExprKind::Scope { .. }
297             | ExprKind::Cast { .. } => {}
298
299             ExprKind::AddressOf { .. }
300             | ExprKind::Adt { .. }
301             | ExprKind::Array { .. }
302             | ExprKind::Binary { .. }
303             | ExprKind::Block { .. }
304             | ExprKind::Borrow { .. }
305             | ExprKind::Literal { .. }
306             | ExprKind::ConstBlock { .. }
307             | ExprKind::Deref { .. }
308             | ExprKind::Index { .. }
309             | ExprKind::NeverToAny { .. }
310             | ExprKind::PlaceTypeAscription { .. }
311             | ExprKind::ValueTypeAscription { .. }
312             | ExprKind::Pointer { .. }
313             | ExprKind::Repeat { .. }
314             | ExprKind::StaticRef { .. }
315             | ExprKind::ThreadLocalRef { .. }
316             | ExprKind::Tuple { .. }
317             | ExprKind::Unary { .. }
318             | ExprKind::Call { .. }
319             | ExprKind::Assign { .. }
320             | ExprKind::AssignOp { .. }
321             | ExprKind::Break { .. }
322             | ExprKind::Closure { .. }
323             | ExprKind::Continue { .. }
324             | ExprKind::Return { .. }
325             | ExprKind::Yield { .. }
326             | ExprKind::Loop { .. }
327             | ExprKind::Let { .. }
328             | ExprKind::Match { .. }
329             | ExprKind::Box { .. }
330             | ExprKind::If { .. }
331             | ExprKind::InlineAsm { .. }
332             | ExprKind::LogicalOp { .. }
333             | ExprKind::Use { .. } => {
334                 // We don't need to save the old value and restore it
335                 // because all the place expressions can't have more
336                 // than one child.
337                 self.assignment_info = None;
338             }
339         };
340         match expr.kind {
341             ExprKind::Scope { value, lint_level: LintLevel::Explicit(hir_id), region_scope: _ } => {
342                 let prev_id = self.hir_context;
343                 self.hir_context = hir_id;
344                 self.visit_expr(&self.thir[value]);
345                 self.hir_context = prev_id;
346                 return; // don't visit the whole expression
347             }
348             ExprKind::Call { fun, ty: _, args: _, from_hir_call: _, fn_span: _ } => {
349                 if self.thir[fun].ty.fn_sig(self.tcx).unsafety() == hir::Unsafety::Unsafe {
350                     self.requires_unsafe(expr.span, CallToUnsafeFunction);
351                 } else if let &ty::FnDef(func_did, _) = self.thir[fun].ty.kind() {
352                     // If the called function has target features the calling function hasn't,
353                     // the call requires `unsafe`. Don't check this on wasm
354                     // targets, though. For more information on wasm see the
355                     // is_like_wasm check in typeck/src/collect.rs
356                     if !self.tcx.sess.target.options.is_like_wasm
357                         && !self
358                             .tcx
359                             .codegen_fn_attrs(func_did)
360                             .target_features
361                             .iter()
362                             .all(|feature| self.body_target_features.contains(feature))
363                     {
364                         self.requires_unsafe(expr.span, CallToFunctionWith);
365                     }
366                 }
367             }
368             ExprKind::Deref { arg } => {
369                 if let ExprKind::StaticRef { def_id, .. } = self.thir[arg].kind {
370                     if self.tcx.is_mutable_static(def_id) {
371                         self.requires_unsafe(expr.span, UseOfMutableStatic);
372                     } else if self.tcx.is_foreign_item(def_id) {
373                         self.requires_unsafe(expr.span, UseOfExternStatic);
374                     }
375                 } else if self.thir[arg].ty.is_unsafe_ptr() {
376                     self.requires_unsafe(expr.span, DerefOfRawPointer);
377                 }
378             }
379             ExprKind::InlineAsm { .. } => {
380                 self.requires_unsafe(expr.span, UseOfInlineAssembly);
381             }
382             ExprKind::Adt(box Adt {
383                 adt_def,
384                 variant_index: _,
385                 substs: _,
386                 user_ty: _,
387                 fields: _,
388                 base: _,
389             }) => match self.tcx.layout_scalar_valid_range(adt_def.did) {
390                 (Bound::Unbounded, Bound::Unbounded) => {}
391                 _ => self.requires_unsafe(expr.span, InitializingTypeWith),
392             },
393             ExprKind::Closure {
394                 closure_id,
395                 substs: _,
396                 upvars: _,
397                 movability: _,
398                 fake_reads: _,
399             } => {
400                 let closure_id = closure_id.expect_local();
401                 let closure_def = if let Some((did, const_param_id)) =
402                     ty::WithOptConstParam::try_lookup(closure_id, self.tcx)
403                 {
404                     ty::WithOptConstParam { did, const_param_did: Some(const_param_id) }
405                 } else {
406                     ty::WithOptConstParam::unknown(closure_id)
407                 };
408                 let (closure_thir, expr) = self.tcx.thir_body(closure_def);
409                 let closure_thir = &closure_thir.borrow();
410                 let hir_context = self.tcx.hir().local_def_id_to_hir_id(closure_id);
411                 let mut closure_visitor =
412                     UnsafetyVisitor { thir: closure_thir, hir_context, ..*self };
413                 closure_visitor.visit_expr(&closure_thir[expr]);
414                 // Unsafe blocks can be used in closures, make sure to take it into account
415                 self.safety_context = closure_visitor.safety_context;
416             }
417             ExprKind::Field { lhs, .. } => {
418                 let lhs = &self.thir[lhs];
419                 if let ty::Adt(adt_def, _) = lhs.ty.kind() && adt_def.is_union() {
420                     if let Some((assigned_ty, assignment_span)) = self.assignment_info {
421                         // To avoid semver hazard, we only consider `Copy` and `ManuallyDrop` non-dropping.
422                         if !(assigned_ty
423                             .ty_adt_def()
424                             .map_or(false, |adt| adt.is_manually_drop())
425                             || assigned_ty
426                                 .is_copy_modulo_regions(self.tcx.at(expr.span), self.param_env))
427                         {
428                             self.requires_unsafe(assignment_span, AssignToDroppingUnionField);
429                         } else {
430                             // write to non-drop union field, safe
431                         }
432                     } else {
433                         self.requires_unsafe(expr.span, AccessToUnionField);
434                     }
435                 }
436             }
437             ExprKind::Assign { lhs, rhs } | ExprKind::AssignOp { lhs, rhs, .. } => {
438                 let lhs = &self.thir[lhs];
439                 // First, check whether we are mutating a layout constrained field
440                 let mut visitor = LayoutConstrainedPlaceVisitor::new(self.thir, self.tcx);
441                 visit::walk_expr(&mut visitor, lhs);
442                 if visitor.found {
443                     self.requires_unsafe(expr.span, MutationOfLayoutConstrainedField);
444                 }
445
446                 // Second, check for accesses to union fields
447                 // don't have any special handling for AssignOp since it causes a read *and* write to lhs
448                 if matches!(expr.kind, ExprKind::Assign { .. }) {
449                     self.assignment_info = Some((lhs.ty, expr.span));
450                     visit::walk_expr(self, lhs);
451                     self.assignment_info = None;
452                     visit::walk_expr(self, &self.thir()[rhs]);
453                     return; // we have already visited everything by now
454                 }
455             }
456             ExprKind::Borrow { borrow_kind, arg } => {
457                 let mut visitor = LayoutConstrainedPlaceVisitor::new(self.thir, self.tcx);
458                 visit::walk_expr(&mut visitor, expr);
459                 if visitor.found {
460                     match borrow_kind {
461                         BorrowKind::Shallow | BorrowKind::Shared | BorrowKind::Unique
462                             if !self.thir[arg]
463                                 .ty
464                                 .is_freeze(self.tcx.at(self.thir[arg].span), self.param_env) =>
465                         {
466                             self.requires_unsafe(expr.span, BorrowOfLayoutConstrainedField)
467                         }
468                         BorrowKind::Mut { .. } => {
469                             self.requires_unsafe(expr.span, MutationOfLayoutConstrainedField)
470                         }
471                         BorrowKind::Shallow | BorrowKind::Shared | BorrowKind::Unique => {}
472                     }
473                 }
474             }
475             ExprKind::Let { expr: expr_id, .. } => {
476                 let let_expr = &self.thir[expr_id];
477                 if let ty::Adt(adt_def, _) = let_expr.ty.kind() && adt_def.is_union() {
478                     self.requires_unsafe(expr.span, AccessToUnionField);
479                 }
480             }
481             _ => {}
482         }
483         visit::walk_expr(self, expr);
484     }
485 }
486
487 #[derive(Clone, Copy)]
488 enum SafetyContext {
489     Safe,
490     BuiltinUnsafeBlock,
491     UnsafeFn,
492     UnsafeBlock { span: Span, hir_id: hir::HirId, used: bool },
493 }
494
495 #[derive(Clone, Copy)]
496 enum BodyUnsafety {
497     /// The body is not unsafe.
498     Safe,
499     /// The body is an unsafe function. The span points to
500     /// the signature of the function.
501     Unsafe(Span),
502 }
503
504 impl BodyUnsafety {
505     /// Returns whether the body is unsafe.
506     fn is_unsafe(&self) -> bool {
507         matches!(self, BodyUnsafety::Unsafe(_))
508     }
509
510     /// If the body is unsafe, returns the `Span` of its signature.
511     fn unsafe_fn_sig_span(self) -> Option<Span> {
512         match self {
513             BodyUnsafety::Unsafe(span) => Some(span),
514             BodyUnsafety::Safe => None,
515         }
516     }
517 }
518
519 #[derive(Clone, Copy, PartialEq)]
520 enum UnsafeOpKind {
521     CallToUnsafeFunction,
522     UseOfInlineAssembly,
523     InitializingTypeWith,
524     UseOfMutableStatic,
525     UseOfExternStatic,
526     DerefOfRawPointer,
527     AssignToDroppingUnionField,
528     AccessToUnionField,
529     MutationOfLayoutConstrainedField,
530     BorrowOfLayoutConstrainedField,
531     CallToFunctionWith,
532 }
533
534 use UnsafeOpKind::*;
535
536 impl UnsafeOpKind {
537     pub fn description_and_note(&self) -> (&'static str, &'static str) {
538         match self {
539             CallToUnsafeFunction => (
540                 "call to unsafe function",
541                 "consult the function's documentation for information on how to avoid undefined \
542                  behavior",
543             ),
544             UseOfInlineAssembly => (
545                 "use of inline assembly",
546                 "inline assembly is entirely unchecked and can cause undefined behavior",
547             ),
548             InitializingTypeWith => (
549                 "initializing type with `rustc_layout_scalar_valid_range` attr",
550                 "initializing a layout restricted type's field with a value outside the valid \
551                  range is undefined behavior",
552             ),
553             UseOfMutableStatic => (
554                 "use of mutable static",
555                 "mutable statics can be mutated by multiple threads: aliasing violations or data \
556                  races will cause undefined behavior",
557             ),
558             UseOfExternStatic => (
559                 "use of extern static",
560                 "extern statics are not controlled by the Rust type system: invalid data, \
561                  aliasing violations or data races will cause undefined behavior",
562             ),
563             DerefOfRawPointer => (
564                 "dereference of raw pointer",
565                 "raw pointers may be null, dangling or unaligned; they can violate aliasing rules \
566                  and cause data races: all of these are undefined behavior",
567             ),
568             AssignToDroppingUnionField => (
569                 "assignment to union field that might need dropping",
570                 "the previous content of the field will be dropped, which causes undefined \
571                  behavior if the field was not properly initialized",
572             ),
573             AccessToUnionField => (
574                 "access to union field",
575                 "the field may not be properly initialized: using uninitialized data will cause \
576                  undefined behavior",
577             ),
578             MutationOfLayoutConstrainedField => (
579                 "mutation of layout constrained field",
580                 "mutating layout constrained fields cannot statically be checked for valid values",
581             ),
582             BorrowOfLayoutConstrainedField => (
583                 "borrow of layout constrained field with interior mutability",
584                 "references to fields of layout constrained fields lose the constraints. Coupled \
585                  with interior mutability, the field can be changed to invalid values",
586             ),
587             CallToFunctionWith => (
588                 "call to function with `#[target_feature]`",
589                 "can only be called if the required target features are available",
590             ),
591         }
592     }
593 }
594
595 pub fn check_unsafety<'tcx>(tcx: TyCtxt<'tcx>, def: ty::WithOptConstParam<LocalDefId>) {
596     // THIR unsafeck is gated under `-Z thir-unsafeck`
597     if !tcx.sess.opts.debugging_opts.thir_unsafeck {
598         return;
599     }
600
601     // Closures are handled by their owner, if it has a body
602     if tcx.is_closure(def.did.to_def_id()) {
603         let hir = tcx.hir();
604         let owner = hir.enclosing_body_owner(hir.local_def_id_to_hir_id(def.did));
605         tcx.ensure().thir_check_unsafety(hir.local_def_id(owner));
606         return;
607     }
608
609     let (thir, expr) = tcx.thir_body(def);
610     let thir = &thir.borrow();
611     // If `thir` is empty, a type error occured, skip this body.
612     if thir.exprs.is_empty() {
613         return;
614     }
615
616     let hir_id = tcx.hir().local_def_id_to_hir_id(def.did);
617     let body_unsafety = tcx.hir().fn_sig_by_hir_id(hir_id).map_or(BodyUnsafety::Safe, |fn_sig| {
618         if fn_sig.header.unsafety == hir::Unsafety::Unsafe {
619             BodyUnsafety::Unsafe(fn_sig.span)
620         } else {
621             BodyUnsafety::Safe
622         }
623     });
624     let body_target_features = &tcx.codegen_fn_attrs(def.did).target_features;
625     let safety_context =
626         if body_unsafety.is_unsafe() { SafetyContext::UnsafeFn } else { SafetyContext::Safe };
627     let mut visitor = UnsafetyVisitor {
628         tcx,
629         thir,
630         safety_context,
631         hir_context: hir_id,
632         body_unsafety,
633         body_target_features,
634         assignment_info: None,
635         in_union_destructure: false,
636         param_env: tcx.param_env(def.did),
637         inside_adt: false,
638     };
639     visitor.visit_expr(&thir[expr]);
640 }
641
642 crate fn thir_check_unsafety<'tcx>(tcx: TyCtxt<'tcx>, def_id: LocalDefId) {
643     if let Some(def) = ty::WithOptConstParam::try_lookup(def_id, tcx) {
644         tcx.thir_check_unsafety_for_const_arg(def)
645     } else {
646         check_unsafety(tcx, ty::WithOptConstParam::unknown(def_id))
647     }
648 }
649
650 crate fn thir_check_unsafety_for_const_arg<'tcx>(
651     tcx: TyCtxt<'tcx>,
652     (did, param_did): (LocalDefId, DefId),
653 ) {
654     check_unsafety(tcx, ty::WithOptConstParam { did, const_param_did: Some(param_did) })
655 }