]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_build/src/check_unsafety.rs
Auto merge of #91837 - Kobzol:stable-hash-map-avoid-sort, r=the8472
[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::LlvmInlineAsm { .. }
333             | ExprKind::LogicalOp { .. }
334             | ExprKind::Use { .. } => {
335                 // We don't need to save the old value and restore it
336                 // because all the place expressions can't have more
337                 // than one child.
338                 self.assignment_info = None;
339             }
340         };
341         match expr.kind {
342             ExprKind::Scope { value, lint_level: LintLevel::Explicit(hir_id), region_scope: _ } => {
343                 let prev_id = self.hir_context;
344                 self.hir_context = hir_id;
345                 self.visit_expr(&self.thir[value]);
346                 self.hir_context = prev_id;
347                 return; // don't visit the whole expression
348             }
349             ExprKind::Call { fun, ty: _, args: _, from_hir_call: _, fn_span: _ } => {
350                 if self.thir[fun].ty.fn_sig(self.tcx).unsafety() == hir::Unsafety::Unsafe {
351                     self.requires_unsafe(expr.span, CallToUnsafeFunction);
352                 } else if let &ty::FnDef(func_did, _) = self.thir[fun].ty.kind() {
353                     // If the called function has target features the calling function hasn't,
354                     // the call requires `unsafe`. Don't check this on wasm
355                     // targets, though. For more information on wasm see the
356                     // is_like_wasm check in typeck/src/collect.rs
357                     if !self.tcx.sess.target.options.is_like_wasm
358                         && !self
359                             .tcx
360                             .codegen_fn_attrs(func_did)
361                             .target_features
362                             .iter()
363                             .all(|feature| self.body_target_features.contains(feature))
364                     {
365                         self.requires_unsafe(expr.span, CallToFunctionWith);
366                     }
367                 }
368             }
369             ExprKind::Deref { arg } => {
370                 if let ExprKind::StaticRef { def_id, .. } = self.thir[arg].kind {
371                     if self.tcx.is_mutable_static(def_id) {
372                         self.requires_unsafe(expr.span, UseOfMutableStatic);
373                     } else if self.tcx.is_foreign_item(def_id) {
374                         self.requires_unsafe(expr.span, UseOfExternStatic);
375                     }
376                 } else if self.thir[arg].ty.is_unsafe_ptr() {
377                     self.requires_unsafe(expr.span, DerefOfRawPointer);
378                 }
379             }
380             ExprKind::InlineAsm { .. } | ExprKind::LlvmInlineAsm { .. } => {
381                 self.requires_unsafe(expr.span, UseOfInlineAssembly);
382             }
383             ExprKind::Adt(box Adt {
384                 adt_def,
385                 variant_index: _,
386                 substs: _,
387                 user_ty: _,
388                 fields: _,
389                 base: _,
390             }) => match self.tcx.layout_scalar_valid_range(adt_def.did) {
391                 (Bound::Unbounded, Bound::Unbounded) => {}
392                 _ => self.requires_unsafe(expr.span, InitializingTypeWith),
393             },
394             ExprKind::Closure {
395                 closure_id,
396                 substs: _,
397                 upvars: _,
398                 movability: _,
399                 fake_reads: _,
400             } => {
401                 let closure_id = closure_id.expect_local();
402                 let closure_def = if let Some((did, const_param_id)) =
403                     ty::WithOptConstParam::try_lookup(closure_id, self.tcx)
404                 {
405                     ty::WithOptConstParam { did, const_param_did: Some(const_param_id) }
406                 } else {
407                     ty::WithOptConstParam::unknown(closure_id)
408                 };
409                 let (closure_thir, expr) = self.tcx.thir_body(closure_def);
410                 let closure_thir = &closure_thir.borrow();
411                 let hir_context = self.tcx.hir().local_def_id_to_hir_id(closure_id);
412                 let mut closure_visitor =
413                     UnsafetyVisitor { thir: closure_thir, hir_context, ..*self };
414                 closure_visitor.visit_expr(&closure_thir[expr]);
415                 // Unsafe blocks can be used in closures, make sure to take it into account
416                 self.safety_context = closure_visitor.safety_context;
417             }
418             ExprKind::Field { lhs, .. } => {
419                 let lhs = &self.thir[lhs];
420                 if let ty::Adt(adt_def, _) = lhs.ty.kind() {
421                     if adt_def.is_union() {
422                         if let Some((assigned_ty, assignment_span)) = self.assignment_info {
423                             // To avoid semver hazard, we only consider `Copy` and `ManuallyDrop` non-dropping.
424                             if !(assigned_ty
425                                 .ty_adt_def()
426                                 .map_or(false, |adt| adt.is_manually_drop())
427                                 || assigned_ty
428                                     .is_copy_modulo_regions(self.tcx.at(expr.span), self.param_env))
429                             {
430                                 self.requires_unsafe(assignment_span, AssignToDroppingUnionField);
431                             } else {
432                                 // write to non-drop union field, safe
433                             }
434                         } else {
435                             self.requires_unsafe(expr.span, AccessToUnionField);
436                         }
437                     }
438                 }
439             }
440             ExprKind::Assign { lhs, rhs } | ExprKind::AssignOp { lhs, rhs, .. } => {
441                 let lhs = &self.thir[lhs];
442                 // First, check whether we are mutating a layout constrained field
443                 let mut visitor = LayoutConstrainedPlaceVisitor::new(self.thir, self.tcx);
444                 visit::walk_expr(&mut visitor, lhs);
445                 if visitor.found {
446                     self.requires_unsafe(expr.span, MutationOfLayoutConstrainedField);
447                 }
448
449                 // Second, check for accesses to union fields
450                 // don't have any special handling for AssignOp since it causes a read *and* write to lhs
451                 if matches!(expr.kind, ExprKind::Assign { .. }) {
452                     self.assignment_info = Some((lhs.ty, expr.span));
453                     visit::walk_expr(self, lhs);
454                     self.assignment_info = None;
455                     visit::walk_expr(self, &self.thir()[rhs]);
456                     return; // we have already visited everything by now
457                 }
458             }
459             ExprKind::Borrow { borrow_kind, arg } => {
460                 let mut visitor = LayoutConstrainedPlaceVisitor::new(self.thir, self.tcx);
461                 visit::walk_expr(&mut visitor, expr);
462                 if visitor.found {
463                     match borrow_kind {
464                         BorrowKind::Shallow | BorrowKind::Shared | BorrowKind::Unique
465                             if !self.thir[arg]
466                                 .ty
467                                 .is_freeze(self.tcx.at(self.thir[arg].span), self.param_env) =>
468                         {
469                             self.requires_unsafe(expr.span, BorrowOfLayoutConstrainedField)
470                         }
471                         BorrowKind::Mut { .. } => {
472                             self.requires_unsafe(expr.span, MutationOfLayoutConstrainedField)
473                         }
474                         BorrowKind::Shallow | BorrowKind::Shared | BorrowKind::Unique => {}
475                     }
476                 }
477             }
478             ExprKind::Let { expr: expr_id, .. } => {
479                 let let_expr = &self.thir[expr_id];
480                 if let ty::Adt(adt_def, _) = let_expr.ty.kind() {
481                     if adt_def.is_union() {
482                         self.requires_unsafe(expr.span, AccessToUnionField);
483                     }
484                 }
485             }
486             _ => {}
487         }
488         visit::walk_expr(self, expr);
489     }
490 }
491
492 #[derive(Clone, Copy)]
493 enum SafetyContext {
494     Safe,
495     BuiltinUnsafeBlock,
496     UnsafeFn,
497     UnsafeBlock { span: Span, hir_id: hir::HirId, used: bool },
498 }
499
500 #[derive(Clone, Copy)]
501 enum BodyUnsafety {
502     /// The body is not unsafe.
503     Safe,
504     /// The body is an unsafe function. The span points to
505     /// the signature of the function.
506     Unsafe(Span),
507 }
508
509 impl BodyUnsafety {
510     /// Returns whether the body is unsafe.
511     fn is_unsafe(&self) -> bool {
512         matches!(self, BodyUnsafety::Unsafe(_))
513     }
514
515     /// If the body is unsafe, returns the `Span` of its signature.
516     fn unsafe_fn_sig_span(self) -> Option<Span> {
517         match self {
518             BodyUnsafety::Unsafe(span) => Some(span),
519             BodyUnsafety::Safe => None,
520         }
521     }
522 }
523
524 #[derive(Clone, Copy, PartialEq)]
525 enum UnsafeOpKind {
526     CallToUnsafeFunction,
527     UseOfInlineAssembly,
528     InitializingTypeWith,
529     UseOfMutableStatic,
530     UseOfExternStatic,
531     DerefOfRawPointer,
532     AssignToDroppingUnionField,
533     AccessToUnionField,
534     MutationOfLayoutConstrainedField,
535     BorrowOfLayoutConstrainedField,
536     CallToFunctionWith,
537 }
538
539 use UnsafeOpKind::*;
540
541 impl UnsafeOpKind {
542     pub fn description_and_note(&self) -> (&'static str, &'static str) {
543         match self {
544             CallToUnsafeFunction => (
545                 "call to unsafe function",
546                 "consult the function's documentation for information on how to avoid undefined \
547                  behavior",
548             ),
549             UseOfInlineAssembly => (
550                 "use of inline assembly",
551                 "inline assembly is entirely unchecked and can cause undefined behavior",
552             ),
553             InitializingTypeWith => (
554                 "initializing type with `rustc_layout_scalar_valid_range` attr",
555                 "initializing a layout restricted type's field with a value outside the valid \
556                  range is undefined behavior",
557             ),
558             UseOfMutableStatic => (
559                 "use of mutable static",
560                 "mutable statics can be mutated by multiple threads: aliasing violations or data \
561                  races will cause undefined behavior",
562             ),
563             UseOfExternStatic => (
564                 "use of extern static",
565                 "extern statics are not controlled by the Rust type system: invalid data, \
566                  aliasing violations or data races will cause undefined behavior",
567             ),
568             DerefOfRawPointer => (
569                 "dereference of raw pointer",
570                 "raw pointers may be null, dangling or unaligned; they can violate aliasing rules \
571                  and cause data races: all of these are undefined behavior",
572             ),
573             AssignToDroppingUnionField => (
574                 "assignment to union field that might need dropping",
575                 "the previous content of the field will be dropped, which causes undefined \
576                  behavior if the field was not properly initialized",
577             ),
578             AccessToUnionField => (
579                 "access to union field",
580                 "the field may not be properly initialized: using uninitialized data will cause \
581                  undefined behavior",
582             ),
583             MutationOfLayoutConstrainedField => (
584                 "mutation of layout constrained field",
585                 "mutating layout constrained fields cannot statically be checked for valid values",
586             ),
587             BorrowOfLayoutConstrainedField => (
588                 "borrow of layout constrained field with interior mutability",
589                 "references to fields of layout constrained fields lose the constraints. Coupled \
590                  with interior mutability, the field can be changed to invalid values",
591             ),
592             CallToFunctionWith => (
593                 "call to function with `#[target_feature]`",
594                 "can only be called if the required target features are available",
595             ),
596         }
597     }
598 }
599
600 pub fn check_unsafety<'tcx>(tcx: TyCtxt<'tcx>, def: ty::WithOptConstParam<LocalDefId>) {
601     // THIR unsafeck is gated under `-Z thir-unsafeck`
602     if !tcx.sess.opts.debugging_opts.thir_unsafeck {
603         return;
604     }
605
606     // Closures are handled by their owner, if it has a body
607     if tcx.is_closure(def.did.to_def_id()) {
608         let hir = tcx.hir();
609         let owner = hir.enclosing_body_owner(hir.local_def_id_to_hir_id(def.did));
610         tcx.ensure().thir_check_unsafety(hir.local_def_id(owner));
611         return;
612     }
613
614     let (thir, expr) = tcx.thir_body(def);
615     let thir = &thir.borrow();
616     // If `thir` is empty, a type error occured, skip this body.
617     if thir.exprs.is_empty() {
618         return;
619     }
620
621     let hir_id = tcx.hir().local_def_id_to_hir_id(def.did);
622     let body_unsafety = tcx.hir().fn_sig_by_hir_id(hir_id).map_or(BodyUnsafety::Safe, |fn_sig| {
623         if fn_sig.header.unsafety == hir::Unsafety::Unsafe {
624             BodyUnsafety::Unsafe(fn_sig.span)
625         } else {
626             BodyUnsafety::Safe
627         }
628     });
629     let body_target_features = &tcx.codegen_fn_attrs(def.did).target_features;
630     let safety_context =
631         if body_unsafety.is_unsafe() { SafetyContext::UnsafeFn } else { SafetyContext::Safe };
632     let mut visitor = UnsafetyVisitor {
633         tcx,
634         thir,
635         safety_context,
636         hir_context: hir_id,
637         body_unsafety,
638         body_target_features,
639         assignment_info: None,
640         in_union_destructure: false,
641         param_env: tcx.param_env(def.did),
642         inside_adt: false,
643     };
644     visitor.visit_expr(&thir[expr]);
645 }
646
647 crate fn thir_check_unsafety<'tcx>(tcx: TyCtxt<'tcx>, def_id: LocalDefId) {
648     if let Some(def) = ty::WithOptConstParam::try_lookup(def_id, tcx) {
649         tcx.thir_check_unsafety_for_const_arg(def)
650     } else {
651         check_unsafety(tcx, ty::WithOptConstParam::unknown(def_id))
652     }
653 }
654
655 crate fn thir_check_unsafety_for_const_arg<'tcx>(
656     tcx: TyCtxt<'tcx>,
657     (did, param_did): (LocalDefId, DefId),
658 ) {
659     check_unsafety(tcx, ty::WithOptConstParam { did, const_param_did: Some(param_did) })
660 }