1#![feature(assert_matches)]
3#![feature(box_patterns)]
4#![feature(if_let_guard)]
5#![feature(iter_intersperse)]
6#![feature(iter_order_by)]
7#![feature(never_type)]
8#![feature(trim_prefix_suffix)]
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 typeck_root_ctxt;
39mod upvar;
40mod writeback;
41
42pub use coercion::can_coerce;
43use fn_ctxt::FnCtxt;
44use rustc_data_structures::unord::UnordSet;
45use rustc_errors::codes::*;
46use rustc_errors::{Applicability, ErrorGuaranteed, pluralize, struct_span_code_err};
47use rustc_hir as hir;
48use rustc_hir::def::{DefKind, Res};
49use rustc_hir::{HirId, HirIdMap, Node};
50use rustc_hir_analysis::check::{check_abi, check_custom_abi};
51use rustc_hir_analysis::hir_ty_lowering::HirTyLowerer;
52use rustc_infer::traits::{ObligationCauseCode, ObligationInspector, WellFormedLoc};
53use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
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::Span;
59use rustc_span::def_id::LocalDefId;
60use tracing::{debug, instrument};
61use typeck_root_ctxt::TypeckRootCtxt;
62
63use crate::check::check_fn;
64use crate::coercion::CoerceMany;
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.codegen_fn_attrs(def_id).flags.contains(CodegenFnAttrFlags::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 if fcx.next_trait_solver() {
223 fcx.try_handle_opaque_type_uses_next();
224 }
225
226 fcx.type_inference_fallback();
227
228 fcx.check_casts();
231 fcx.select_obligations_where_possible(|_| {});
232
233 fcx.closure_analyze(body);
236 assert!(fcx.deferred_call_resolutions.borrow().is_empty());
237
238 for (ty, span, code) in fcx.deferred_sized_obligations.borrow_mut().drain(..) {
239 let ty = fcx.normalize(span, ty);
240 fcx.require_type_is_sized(ty, span, code);
241 }
242
243 fcx.select_obligations_where_possible(|_| {});
244
245 debug!(pending_obligations = ?fcx.fulfillment_cx.borrow().pending_obligations());
246
247 if fcx.next_trait_solver() {
250 fcx.handle_opaque_type_uses_next();
251 }
252
253 fcx.drain_stalled_coroutine_obligations();
256 if fcx.infcx.tainted_by_errors().is_none() {
257 fcx.report_ambiguity_errors();
258 }
259
260 fcx.check_asms();
261
262 let typeck_results = fcx.resolve_type_vars_in_body(body);
263
264 fcx.detect_opaque_types_added_during_writeback();
265
266 assert_eq!(typeck_results.hir_owner, id.owner);
269
270 typeck_results
271}
272
273fn infer_type_if_missing<'tcx>(fcx: &FnCtxt<'_, 'tcx>, node: Node<'tcx>) -> Option<Ty<'tcx>> {
274 let tcx = fcx.tcx;
275 let def_id = fcx.body_id;
276 let expected_type = if let Some(&hir::Ty { kind: hir::TyKind::Infer(()), span, .. }) = node.ty()
277 {
278 if let Some(item) = tcx.opt_associated_item(def_id.into())
279 && let ty::AssocKind::Const { .. } = item.kind
280 && let ty::AssocContainer::TraitImpl(Ok(trait_item_def_id)) = item.container
281 {
282 let impl_def_id = item.container_id(tcx);
283 let impl_trait_ref = tcx.impl_trait_ref(impl_def_id).instantiate_identity();
284 let args = ty::GenericArgs::identity_for_item(tcx, def_id).rebase_onto(
285 tcx,
286 impl_def_id,
287 impl_trait_ref.args,
288 );
289 tcx.check_args_compatible(trait_item_def_id, args)
290 .then(|| tcx.type_of(trait_item_def_id).instantiate(tcx, args))
291 } else {
292 Some(fcx.next_ty_var(span))
293 }
294 } else if let Node::AnonConst(_) = node {
295 let id = tcx.local_def_id_to_hir_id(def_id);
296 match tcx.parent_hir_node(id) {
297 Node::Expr(&hir::Expr { kind: hir::ExprKind::InlineAsm(asm), span, .. })
298 | Node::Item(&hir::Item { kind: hir::ItemKind::GlobalAsm { asm, .. }, span, .. }) => {
299 asm.operands.iter().find_map(|(op, _op_sp)| match op {
300 hir::InlineAsmOperand::Const { anon_const } if anon_const.hir_id == id => {
301 Some(fcx.next_ty_var(span))
302 }
303 _ => None,
304 })
305 }
306 _ => None,
307 }
308 } else {
309 None
310 };
311 expected_type
312}
313
314#[derive(Debug, PartialEq, Copy, Clone)]
318struct CoroutineTypes<'tcx> {
319 resume_ty: Ty<'tcx>,
321
322 yield_ty: Ty<'tcx>,
324}
325
326#[derive(Copy, Clone, Debug, PartialEq, Eq)]
327pub enum Needs {
328 MutPlace,
329 None,
330}
331
332impl Needs {
333 fn maybe_mut_place(m: hir::Mutability) -> Self {
334 match m {
335 hir::Mutability::Mut => Needs::MutPlace,
336 hir::Mutability::Not => Needs::None,
337 }
338 }
339}
340
341#[derive(Debug, Copy, Clone)]
342pub enum PlaceOp {
343 Deref,
344 Index,
345}
346
347pub struct BreakableCtxt<'tcx> {
348 may_break: bool,
349
350 coerce: Option<CoerceMany<'tcx>>,
353}
354
355pub struct EnclosingBreakables<'tcx> {
356 stack: Vec<BreakableCtxt<'tcx>>,
357 by_id: HirIdMap<usize>,
358}
359
360impl<'tcx> EnclosingBreakables<'tcx> {
361 fn find_breakable(&mut self, target_id: HirId) -> &mut BreakableCtxt<'tcx> {
362 self.opt_find_breakable(target_id).unwrap_or_else(|| {
363 bug!("could not find enclosing breakable with id {}", target_id);
364 })
365 }
366
367 fn opt_find_breakable(&mut self, target_id: HirId) -> Option<&mut BreakableCtxt<'tcx>> {
368 match self.by_id.get(&target_id) {
369 Some(ix) => Some(&mut self.stack[*ix]),
370 None => None,
371 }
372 }
373}
374
375fn report_unexpected_variant_res(
376 tcx: TyCtxt<'_>,
377 res: Res,
378 expr: Option<&hir::Expr<'_>>,
379 qpath: &hir::QPath<'_>,
380 span: Span,
381 err_code: ErrCode,
382 expected: &str,
383) -> ErrorGuaranteed {
384 let res_descr = match res {
385 Res::Def(DefKind::Variant, _) => "struct variant",
386 _ => res.descr(),
387 };
388 let path_str = rustc_hir_pretty::qpath_to_string(&tcx, qpath);
389 let mut err = tcx
390 .dcx()
391 .struct_span_err(span, format!("expected {expected}, found {res_descr} `{path_str}`"))
392 .with_code(err_code);
393 match res {
394 Res::Def(DefKind::Fn | DefKind::AssocFn, _) if err_code == E0164 => {
395 let patterns_url = "https://doc.rust-lang.org/book/ch19-00-patterns.html";
396 err.with_span_label(span, "`fn` calls are not allowed in patterns")
397 .with_help(format!("for more information, visit {patterns_url}"))
398 }
399 Res::Def(DefKind::Variant, _) if let Some(expr) = expr => {
400 err.span_label(span, format!("not a {expected}"));
401 let variant = tcx.expect_variant_res(res);
402 let sugg = if variant.fields.is_empty() {
403 " {}".to_string()
404 } else {
405 format!(
406 " {{ {} }}",
407 variant
408 .fields
409 .iter()
410 .map(|f| format!("{}: /* value */", f.name))
411 .collect::<Vec<_>>()
412 .join(", ")
413 )
414 };
415 let descr = "you might have meant to create a new value of the struct";
416 let mut suggestion = vec![];
417 match tcx.parent_hir_node(expr.hir_id) {
418 hir::Node::Expr(hir::Expr {
419 kind: hir::ExprKind::Call(..),
420 span: call_span,
421 ..
422 }) => {
423 suggestion.push((span.shrink_to_hi().with_hi(call_span.hi()), sugg));
424 }
425 hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Binary(..), hir_id, .. }) => {
426 suggestion.push((expr.span.shrink_to_lo(), "(".to_string()));
427 if let hir::Node::Expr(parent) = tcx.parent_hir_node(*hir_id)
428 && let hir::ExprKind::If(condition, block, None) = parent.kind
429 && condition.hir_id == *hir_id
430 && let hir::ExprKind::Block(block, _) = block.kind
431 && block.stmts.is_empty()
432 && let Some(expr) = block.expr
433 && let hir::ExprKind::Path(..) = expr.kind
434 {
435 suggestion.push((block.span.shrink_to_hi(), ")".to_string()));
440 } else {
441 suggestion.push((span.shrink_to_hi().with_hi(expr.span.hi()), sugg));
442 }
443 }
444 _ => {
445 suggestion.push((span.shrink_to_hi(), sugg));
446 }
447 }
448
449 err.multipart_suggestion_verbose(descr, suggestion, Applicability::HasPlaceholders);
450 err
451 }
452 Res::Def(DefKind::Variant, _) if expr.is_none() => {
453 err.span_label(span, format!("not a {expected}"));
454
455 let fields = &tcx.expect_variant_res(res).fields.raw;
456 let span = qpath.span().shrink_to_hi().to(span.shrink_to_hi());
457 let (msg, sugg) = if fields.is_empty() {
458 ("use the struct variant pattern syntax".to_string(), " {}".to_string())
459 } else {
460 let msg = format!(
461 "the struct variant's field{s} {are} being ignored",
462 s = pluralize!(fields.len()),
463 are = pluralize!("is", fields.len())
464 );
465 let fields = fields
466 .iter()
467 .map(|field| format!("{}: _", field.ident(tcx)))
468 .collect::<Vec<_>>()
469 .join(", ");
470 let sugg = format!(" {{ {} }}", fields);
471 (msg, sugg)
472 };
473
474 err.span_suggestion_verbose(
475 qpath.span().shrink_to_hi().to(span.shrink_to_hi()),
476 msg,
477 sugg,
478 Applicability::HasPlaceholders,
479 );
480 err
481 }
482 _ => err.with_span_label(span, format!("not a {expected}")),
483 }
484 .emit()
485}
486
487#[derive(Copy, Clone, Eq, PartialEq)]
507enum TupleArgumentsFlag {
508 DontTupleArguments,
509 TupleArguments,
510}
511
512fn fatally_break_rust(tcx: TyCtxt<'_>, span: Span) -> ! {
513 let dcx = tcx.dcx();
514 let mut diag = dcx.struct_span_bug(
515 span,
516 "It looks like you're trying to break rust; would you like some ICE?",
517 );
518 diag.note("the compiler expectedly panicked. this is a feature.");
519 diag.note(
520 "we would appreciate a joke overview: \
521 https://github.com/rust-lang/rust/issues/43162#issuecomment-320764675",
522 );
523 diag.note(format!("rustc {} running on {}", tcx.sess.cfg_version, config::host_tuple(),));
524 if let Some((flags, excluded_cargo_defaults)) = rustc_session::utils::extra_compiler_flags() {
525 diag.note(format!("compiler flags: {}", flags.join(" ")));
526 if excluded_cargo_defaults {
527 diag.note("some of the compiler flags provided by cargo are hidden");
528 }
529 }
530 diag.emit()
531}
532
533pub fn provide(providers: &mut Providers) {
535 *providers = Providers {
536 method_autoderef_steps: method::probe::method_autoderef_steps,
537 typeck,
538 used_trait_imports,
539 check_transmutes: intrinsicck::check_transmutes,
540 ..*providers
541 };
542}