1#![allow(rustc::diagnostic_outside_of_impl)]
3#![allow(rustc::untranslatable_diagnostic)]
4#![feature(assert_matches)]
5#![feature(box_patterns)]
6#![feature(if_let_guard)]
7#![feature(iter_intersperse)]
8#![feature(never_type)]
9mod _match;
12mod autoderef;
13mod callee;
14pub mod cast;
16mod check;
17mod closure;
18mod coercion;
19mod demand;
20mod diverges;
21mod errors;
22mod expectation;
23mod expr;
24mod inline_asm;
25pub mod expr_use_visitor;
27mod fallback;
28mod fn_ctxt;
29mod gather_locals;
30mod intrinsicck;
31mod loops;
32mod method;
33mod naked_functions;
34mod op;
35mod opaque_types;
36mod pat;
37mod place_op;
38mod rvalue_scopes;
39mod typeck_root_ctxt;
40mod upvar;
41mod writeback;
42
43pub use coercion::can_coerce;
44use fn_ctxt::FnCtxt;
45use rustc_data_structures::unord::UnordSet;
46use rustc_errors::codes::*;
47use rustc_errors::{Applicability, ErrorGuaranteed, pluralize, struct_span_code_err};
48use rustc_hir as hir;
49use rustc_hir::def::{DefKind, Res};
50use rustc_hir::{HirId, HirIdMap, Node};
51use rustc_hir_analysis::check::{check_abi, check_custom_abi};
52use rustc_hir_analysis::hir_ty_lowering::HirTyLowerer;
53use rustc_infer::traits::{ObligationCauseCode, ObligationInspector, WellFormedLoc};
54use rustc_middle::query::Providers;
55use rustc_middle::ty::{self, Ty, TyCtxt};
56use rustc_middle::{bug, span_bug};
57use rustc_session::config;
58use rustc_span::def_id::LocalDefId;
59use rustc_span::{Span, sym};
60use tracing::{debug, instrument};
61use typeck_root_ctxt::TypeckRootCtxt;
62
63use crate::check::check_fn;
64use crate::coercion::DynamicCoerceMany;
65use crate::diverges::Diverges;
66use crate::expectation::Expectation;
67use crate::fn_ctxt::LoweredTy;
68use crate::gather_locals::GatherLocalsVisitor;
69
70rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
71
72#[macro_export]
73macro_rules! type_error_struct {
74 ($dcx:expr, $span:expr, $typ:expr, $code:expr, $($message:tt)*) => ({
75 let mut err = rustc_errors::struct_span_code_err!($dcx, $span, $code, $($message)*);
76
77 if $typ.references_error() {
78 err.downgrade_to_delayed_bug();
79 }
80
81 err
82 })
83}
84
85fn used_trait_imports(tcx: TyCtxt<'_>, def_id: LocalDefId) -> &UnordSet<LocalDefId> {
86 &tcx.typeck(def_id).used_trait_imports
87}
88
89fn typeck<'tcx>(tcx: TyCtxt<'tcx>, def_id: LocalDefId) -> &'tcx ty::TypeckResults<'tcx> {
90 typeck_with_inspect(tcx, def_id, None)
91}
92
93pub fn inspect_typeck<'tcx>(
98 tcx: TyCtxt<'tcx>,
99 def_id: LocalDefId,
100 inspect: ObligationInspector<'tcx>,
101) -> &'tcx ty::TypeckResults<'tcx> {
102 typeck_with_inspect(tcx, def_id, Some(inspect))
103}
104
105#[instrument(level = "debug", skip(tcx, inspector), ret)]
106fn typeck_with_inspect<'tcx>(
107 tcx: TyCtxt<'tcx>,
108 def_id: LocalDefId,
109 inspector: Option<ObligationInspector<'tcx>>,
110) -> &'tcx ty::TypeckResults<'tcx> {
111 let typeck_root_def_id = tcx.typeck_root_def_id(def_id.to_def_id()).expect_local();
114 if typeck_root_def_id != def_id {
115 return tcx.typeck(typeck_root_def_id);
116 }
117
118 let id = tcx.local_def_id_to_hir_id(def_id);
119 let node = tcx.hir_node(id);
120 let span = tcx.def_span(def_id);
121
122 let body_id = node.body_id().unwrap_or_else(|| {
124 span_bug!(span, "can't type-check body of {:?}", def_id);
125 });
126 let body = tcx.hir_body(body_id);
127
128 let param_env = tcx.param_env(def_id);
129
130 let root_ctxt = TypeckRootCtxt::new(tcx, def_id);
131 if let Some(inspector) = inspector {
132 root_ctxt.infcx.attach_obligation_inspector(inspector);
133 }
134 let mut fcx = FnCtxt::new(&root_ctxt, param_env, def_id);
135
136 if let hir::Node::Item(hir::Item { kind: hir::ItemKind::GlobalAsm { .. }, .. }) = node {
137 let ty = fcx.check_expr(body.value);
140 fcx.write_ty(id, ty);
141 } else if let Some(hir::FnSig { header, decl, span: fn_sig_span }) = node.fn_sig() {
142 let fn_sig = if decl.output.is_suggestable_infer_ty().is_some() {
143 fcx.lowerer().lower_fn_ty(id, header.safety(), header.abi, decl, None, None)
148 } else {
149 tcx.fn_sig(def_id).instantiate_identity()
150 };
151
152 check_abi(tcx, id, span, fn_sig.abi());
153 check_custom_abi(tcx, def_id, fn_sig.skip_binder(), *fn_sig_span);
154
155 loops::check(tcx, def_id, body);
156
157 let mut fn_sig = tcx.liberate_late_bound_regions(def_id.to_def_id(), fn_sig);
159
160 let arg_span =
166 |idx| decl.inputs.get(idx).map_or(decl.output.span(), |arg: &hir::Ty<'_>| arg.span);
167
168 fn_sig.inputs_and_output = tcx.mk_type_list_from_iter(
169 fn_sig
170 .inputs_and_output
171 .iter()
172 .enumerate()
173 .map(|(idx, ty)| fcx.normalize(arg_span(idx), ty)),
174 );
175
176 if tcx.has_attr(def_id, sym::naked) {
177 naked_functions::typeck_naked_fn(tcx, def_id, body);
178 }
179
180 check_fn(&mut fcx, fn_sig, None, decl, def_id, body, tcx.features().unsized_fn_params());
181 } else {
182 let expected_type = if let Some(infer_ty) = infer_type_if_missing(&fcx, node) {
183 infer_ty
184 } else if let Some(ty) = node.ty()
185 && ty.is_suggestable_infer_ty()
186 {
187 fcx.lowerer().lower_ty(ty)
192 } else {
193 tcx.type_of(def_id).instantiate_identity()
194 };
195
196 loops::check(tcx, def_id, body);
197
198 let expected_type = fcx.normalize(body.value.span, expected_type);
199
200 let wf_code = ObligationCauseCode::WellFormed(Some(WellFormedLoc::Ty(def_id)));
201 fcx.register_wf_obligation(expected_type.into(), body.value.span, wf_code);
202
203 fcx.check_expr_coercible_to_type(body.value, expected_type, None);
204
205 fcx.write_ty(id, expected_type);
206 };
207
208 fcx.check_repeat_exprs();
219
220 fcx.type_inference_fallback();
221
222 fcx.check_casts();
225 fcx.select_obligations_where_possible(|_| {});
226
227 fcx.closure_analyze(body);
230 assert!(fcx.deferred_call_resolutions.borrow().is_empty());
231 fcx.resolve_rvalue_scopes(def_id.to_def_id());
234
235 for (ty, span, code) in fcx.deferred_sized_obligations.borrow_mut().drain(..) {
236 let ty = fcx.normalize(span, ty);
237 fcx.require_type_is_sized(ty, span, code);
238 }
239
240 fcx.select_obligations_where_possible(|_| {});
241
242 debug!(pending_obligations = ?fcx.fulfillment_cx.borrow().pending_obligations());
243
244 fcx.resolve_coroutine_interiors();
246
247 debug!(pending_obligations = ?fcx.fulfillment_cx.borrow().pending_obligations());
248
249 if let None = fcx.infcx.tainted_by_errors() {
250 fcx.report_ambiguity_errors();
251 }
252
253 if let None = fcx.infcx.tainted_by_errors() {
254 fcx.check_transmutes();
255 }
256
257 fcx.check_asms();
258
259 let typeck_results = fcx.resolve_type_vars_in_body(body);
260
261 fcx.detect_opaque_types_added_during_writeback();
262
263 assert_eq!(typeck_results.hir_owner, id.owner);
266
267 typeck_results
268}
269
270fn infer_type_if_missing<'tcx>(fcx: &FnCtxt<'_, 'tcx>, node: Node<'tcx>) -> Option<Ty<'tcx>> {
271 let tcx = fcx.tcx;
272 let def_id = fcx.body_id;
273 let expected_type = if let Some(&hir::Ty { kind: hir::TyKind::Infer(()), span, .. }) = node.ty()
274 {
275 if let Some(item) = tcx.opt_associated_item(def_id.into())
276 && let ty::AssocKind::Const { .. } = item.kind
277 && let ty::AssocItemContainer::Impl = item.container
278 && let Some(trait_item_def_id) = item.trait_item_def_id
279 {
280 let impl_def_id = item.container_id(tcx);
281 let impl_trait_ref = tcx.impl_trait_ref(impl_def_id).unwrap().instantiate_identity();
282 let args = ty::GenericArgs::identity_for_item(tcx, def_id).rebase_onto(
283 tcx,
284 impl_def_id,
285 impl_trait_ref.args,
286 );
287 tcx.check_args_compatible(trait_item_def_id, args)
288 .then(|| tcx.type_of(trait_item_def_id).instantiate(tcx, args))
289 } else {
290 Some(fcx.next_ty_var(span))
291 }
292 } else if let Node::AnonConst(_) = node {
293 let id = tcx.local_def_id_to_hir_id(def_id);
294 match tcx.parent_hir_node(id) {
295 Node::Ty(&hir::Ty { kind: hir::TyKind::Typeof(ref anon_const), span, .. })
296 if anon_const.hir_id == id =>
297 {
298 Some(fcx.next_ty_var(span))
299 }
300 Node::Expr(&hir::Expr { kind: hir::ExprKind::InlineAsm(asm), span, .. })
301 | Node::Item(&hir::Item { kind: hir::ItemKind::GlobalAsm { asm, .. }, span, .. }) => {
302 asm.operands.iter().find_map(|(op, _op_sp)| match op {
303 hir::InlineAsmOperand::Const { anon_const } if anon_const.hir_id == id => {
304 Some(fcx.next_ty_var(span))
305 }
306 _ => None,
307 })
308 }
309 _ => None,
310 }
311 } else {
312 None
313 };
314 expected_type
315}
316
317#[derive(Debug, PartialEq, Copy, Clone)]
321struct CoroutineTypes<'tcx> {
322 resume_ty: Ty<'tcx>,
324
325 yield_ty: Ty<'tcx>,
327}
328
329#[derive(Copy, Clone, Debug, PartialEq, Eq)]
330pub enum Needs {
331 MutPlace,
332 None,
333}
334
335impl Needs {
336 fn maybe_mut_place(m: hir::Mutability) -> Self {
337 match m {
338 hir::Mutability::Mut => Needs::MutPlace,
339 hir::Mutability::Not => Needs::None,
340 }
341 }
342}
343
344#[derive(Debug, Copy, Clone)]
345pub enum PlaceOp {
346 Deref,
347 Index,
348}
349
350pub struct BreakableCtxt<'tcx> {
351 may_break: bool,
352
353 coerce: Option<DynamicCoerceMany<'tcx>>,
356}
357
358pub struct EnclosingBreakables<'tcx> {
359 stack: Vec<BreakableCtxt<'tcx>>,
360 by_id: HirIdMap<usize>,
361}
362
363impl<'tcx> EnclosingBreakables<'tcx> {
364 fn find_breakable(&mut self, target_id: HirId) -> &mut BreakableCtxt<'tcx> {
365 self.opt_find_breakable(target_id).unwrap_or_else(|| {
366 bug!("could not find enclosing breakable with id {}", target_id);
367 })
368 }
369
370 fn opt_find_breakable(&mut self, target_id: HirId) -> Option<&mut BreakableCtxt<'tcx>> {
371 match self.by_id.get(&target_id) {
372 Some(ix) => Some(&mut self.stack[*ix]),
373 None => None,
374 }
375 }
376}
377
378fn report_unexpected_variant_res(
379 tcx: TyCtxt<'_>,
380 res: Res,
381 expr: Option<&hir::Expr<'_>>,
382 qpath: &hir::QPath<'_>,
383 span: Span,
384 err_code: ErrCode,
385 expected: &str,
386) -> ErrorGuaranteed {
387 let res_descr = match res {
388 Res::Def(DefKind::Variant, _) => "struct variant",
389 _ => res.descr(),
390 };
391 let path_str = rustc_hir_pretty::qpath_to_string(&tcx, qpath);
392 let mut err = tcx
393 .dcx()
394 .struct_span_err(span, format!("expected {expected}, found {res_descr} `{path_str}`"))
395 .with_code(err_code);
396 match res {
397 Res::Def(DefKind::Fn | DefKind::AssocFn, _) if err_code == E0164 => {
398 let patterns_url = "https://doc.rust-lang.org/book/ch19-00-patterns.html";
399 err.with_span_label(span, "`fn` calls are not allowed in patterns")
400 .with_help(format!("for more information, visit {patterns_url}"))
401 }
402 Res::Def(DefKind::Variant, _) if let Some(expr) = expr => {
403 err.span_label(span, format!("not a {expected}"));
404 let variant = tcx.expect_variant_res(res);
405 let sugg = if variant.fields.is_empty() {
406 " {}".to_string()
407 } else {
408 format!(
409 " {{ {} }}",
410 variant
411 .fields
412 .iter()
413 .map(|f| format!("{}: /* value */", f.name))
414 .collect::<Vec<_>>()
415 .join(", ")
416 )
417 };
418 let descr = "you might have meant to create a new value of the struct";
419 let mut suggestion = vec![];
420 match tcx.parent_hir_node(expr.hir_id) {
421 hir::Node::Expr(hir::Expr {
422 kind: hir::ExprKind::Call(..),
423 span: call_span,
424 ..
425 }) => {
426 suggestion.push((span.shrink_to_hi().with_hi(call_span.hi()), sugg));
427 }
428 hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Binary(..), hir_id, .. }) => {
429 suggestion.push((expr.span.shrink_to_lo(), "(".to_string()));
430 if let hir::Node::Expr(drop_temps) = tcx.parent_hir_node(*hir_id)
431 && let hir::ExprKind::DropTemps(_) = drop_temps.kind
432 && let hir::Node::Expr(parent) = tcx.parent_hir_node(drop_temps.hir_id)
433 && let hir::ExprKind::If(condition, block, None) = parent.kind
434 && condition.hir_id == drop_temps.hir_id
435 && let hir::ExprKind::Block(block, _) = block.kind
436 && block.stmts.is_empty()
437 && let Some(expr) = block.expr
438 && let hir::ExprKind::Path(..) = expr.kind
439 {
440 suggestion.push((block.span.shrink_to_hi(), ")".to_string()));
445 } else {
446 suggestion.push((span.shrink_to_hi().with_hi(expr.span.hi()), sugg));
447 }
448 }
449 _ => {
450 suggestion.push((span.shrink_to_hi(), sugg));
451 }
452 }
453
454 err.multipart_suggestion_verbose(descr, suggestion, Applicability::HasPlaceholders);
455 err
456 }
457 Res::Def(DefKind::Variant, _) if expr.is_none() => {
458 err.span_label(span, format!("not a {expected}"));
459
460 let fields = &tcx.expect_variant_res(res).fields.raw;
461 let span = qpath.span().shrink_to_hi().to(span.shrink_to_hi());
462 let (msg, sugg) = if fields.is_empty() {
463 ("use the struct variant pattern syntax".to_string(), " {}".to_string())
464 } else {
465 let msg = format!(
466 "the struct variant's field{s} {are} being ignored",
467 s = pluralize!(fields.len()),
468 are = pluralize!("is", fields.len())
469 );
470 let fields = fields
471 .iter()
472 .map(|field| format!("{}: _", field.ident(tcx)))
473 .collect::<Vec<_>>()
474 .join(", ");
475 let sugg = format!(" {{ {} }}", fields);
476 (msg, sugg)
477 };
478
479 err.span_suggestion_verbose(
480 qpath.span().shrink_to_hi().to(span.shrink_to_hi()),
481 msg,
482 sugg,
483 Applicability::HasPlaceholders,
484 );
485 err
486 }
487 _ => err.with_span_label(span, format!("not a {expected}")),
488 }
489 .emit()
490}
491
492#[derive(Copy, Clone, Eq, PartialEq)]
512enum TupleArgumentsFlag {
513 DontTupleArguments,
514 TupleArguments,
515}
516
517fn fatally_break_rust(tcx: TyCtxt<'_>, span: Span) -> ! {
518 let dcx = tcx.dcx();
519 let mut diag = dcx.struct_span_bug(
520 span,
521 "It looks like you're trying to break rust; would you like some ICE?",
522 );
523 diag.note("the compiler expectedly panicked. this is a feature.");
524 diag.note(
525 "we would appreciate a joke overview: \
526 https://github.com/rust-lang/rust/issues/43162#issuecomment-320764675",
527 );
528 diag.note(format!("rustc {} running on {}", tcx.sess.cfg_version, config::host_tuple(),));
529 if let Some((flags, excluded_cargo_defaults)) = rustc_session::utils::extra_compiler_flags() {
530 diag.note(format!("compiler flags: {}", flags.join(" ")));
531 if excluded_cargo_defaults {
532 diag.note("some of the compiler flags provided by cargo are hidden");
533 }
534 }
535 diag.emit()
536}
537
538pub fn provide(providers: &mut Providers) {
539 method::provide(providers);
540 *providers = Providers { typeck, used_trait_imports, ..*providers };
541}